Searched refs:get_jobs (Results 1 – 20 of 20) sorted by relevance
/external/autotest/frontend/afe/ |
D | direct_afe_unittest.py | 14 jobs = afe.get_jobs() 25 jobs = afe.get_jobs()
|
D | rpc_interface_unittest.py | 115 jobs = rpc_interface.get_jobs(id=job_id) 127 jobs = rpc_interface.get_jobs(id=job_id) 188 self._check_job_ids(rpc_interface.get_jobs(not_yet_run=True), [queued]) 189 self._check_job_ids(rpc_interface.get_jobs(running=True), 192 self._check_job_ids(rpc_interface.get_jobs(finished=True), [complete]) 196 self.assertRaises(AssertionError, rpc_interface.get_jobs, 198 self.assertRaises(AssertionError, rpc_interface.get_jobs, 200 self.assertRaises(AssertionError, rpc_interface.get_jobs, 208 self._check_job_ids(rpc_interface.get_jobs(suite=True), [parent_job]) 209 self._check_job_ids(rpc_interface.get_jobs(sub=True), [child_jobs]) [all …]
|
D | rpc_interface.py | 1027 def get_jobs(not_yet_run=False, running=False, finished=False, function 1091 jobs = get_jobs(**filter_data)
|
/external/autotest/site_utils/suite_scheduler/ |
D | deduping_scheduler_unittest.py | 72 self.afe.get_jobs(name__istartswith=self._BUILD, 110 self.afe.get_jobs( 176 self.afe.get_jobs( 198 self.afe.get_jobs(name__istartswith=self._BUILD, 236 self.afe.get_jobs(name__istartswith=self._BUILD, 286 self.afe.get_jobs(name__istartswith=self._BUILD,
|
D | deduping_scheduler.py | 122 return not self._afe.get_jobs(
|
/external/autotest/server/cros/dynamic_suite/ |
D | job_status_unittest.py | 86 self.afe.get_jobs(id__in=list(job_id_set), 133 self.afe.get_jobs(parent_job_id=parent_job_id).AndReturn(jobs[:6]) 143 self.afe.get_jobs(id__in=list(job_id_set),
|
D | job_status.py | 165 return self._afe.get_jobs(id__in=list(self._job_ids), finished=True) 242 waiter.add_jobs(afe.get_jobs(parent_job_id=parent_job_id))
|
/external/autotest/server/lib/ |
D | suite_report.py | 174 suite_job = afe.get_jobs(id=suite_job_id)[0] 181 child_jobs = afe.get_jobs(parent_job_id=suite_job_id)
|
/external/autotest/site_utils/ |
D | run_suite.py | 1255 suite_job = self._afe.get_jobs(id=self._suite_job_id)[0] 1310 child_jobs = jobs or self._afe.get_jobs(parent_job_id=self._suite_job_id) 1493 jobs=self._afe.get_jobs(id=self._suite_job_id))) 1624 existing_job = afe.get_jobs(id=job_id, finished=True) 1628 existing_job = afe.get_jobs(id=job_id) 1731 while not afe.get_jobs(id=job_id, finished=True): 1873 return not afe.get_jobs(
|
D | test_runner_utils.py | 528 if not afe.get_jobs(): 532 last_job_id = afe.get_jobs()[-1].id 535 for job in afe.get_jobs():
|
D | job_directories.py | 193 entry = _AFE.get_jobs(id=self._id, finished=True)
|
D | test_push.py | 355 while not AFE.get_jobs(id=suite_job_id, finished=True): 640 if AFE.get_jobs(id=suite_id, finished=False):
|
D | run_suite_unittest.py | 121 self.afe.get_jobs = mock.MagicMock(side_effect=side_effect) 216 self.afe.get_jobs.assert_called_once_with(
|
D | diagnosis_utils.py | 349 incomplete_jobs = self.rpc_interface.get_jobs(
|
D | gs_offloader_unittest.py | 530 job_directories._AFE.get_jobs( 606 job_directories._AFE.get_jobs(
|
/external/autotest/utils/ |
D | tko_publish.py | 65 finished_jobs = afe.get_jobs(finished=True)
|
/external/autotest/contrib/ |
D | find_suite_tasks.py | 79 child_jobs = afe.get_jobs(parent_job_id=suite_job_id)
|
/external/autotest/frontend/afe/doctests/ |
D | 001_rpc_test.txt | 409 >>> data = rpc_interface.get_jobs() 513 # get_jobs_summary adds status counts to the rest of the get_jobs info 577 >>> data = rpc_interface.get_jobs(id=job_id)
|
/external/autotest/server/ |
D | frontend.py | 592 def get_jobs(self, summary=False, **dargs): member in AFE 678 return self.get_jobs(id=id)[0]
|
/external/autotest/server/hosts/ |
D | servo_host.py | 391 job = afe.get_jobs(id=hqe.job.id)
|