Lines Matching refs:job
80 for job in jobs:
82 job.id, timeout_mins)
83 afe.run('abort_host_queue_entries', job=job.id)
118 def _yield_job_results(afe, tko, job): argument
130 entries = afe.run('get_host_queue_entries', job=job.id)
141 statuses = tko.get_job_test_statuses_from_db(job.id)
143 yield Status('ABORT', job.name)
162 job.id, job.owner, s.hostname, job.name,
170 s.test_finished_time, job.id,
171 job.owner, s.hostname, job.name,
188 remaining_child_jobs = set(job.id for job in
194 for job in new_finished_jobs:
196 remaining_child_jobs.remove(job.id)
197 for result in _yield_job_results(afe, tko, job):
230 for job in list(local_jobs):
231 if not afe.get_jobs(id=job.id, finished=True):
234 local_jobs.remove(job)
235 for result in _yield_job_results(afe, tko, job):