Home
last modified time | relevance | path

Searched refs:get_jobs (Results 1 – 21 of 21) sorted by relevance

/external/autotest/frontend/afe/
Ddirect_afe_unittest.py14 jobs = afe.get_jobs()
25 jobs = afe.get_jobs()
Drpc_interface_unittest.py795 jobs = rpc_interface.get_jobs(id=job_id)
856 self._check_job_ids(rpc_interface.get_jobs(not_yet_run=True), [queued])
857 self._check_job_ids(rpc_interface.get_jobs(running=True),
860 self._check_job_ids(rpc_interface.get_jobs(finished=True), [complete])
864 self.assertRaises(AssertionError, rpc_interface.get_jobs,
866 self.assertRaises(AssertionError, rpc_interface.get_jobs,
868 self.assertRaises(AssertionError, rpc_interface.get_jobs,
876 self._check_job_ids(rpc_interface.get_jobs(suite=True), [parent_job])
877 self._check_job_ids(rpc_interface.get_jobs(sub=True), [child_jobs])
878 self._check_job_ids(rpc_interface.get_jobs(standalone=True),
Drpc_interface.py1190 def get_jobs(not_yet_run=False, running=False, finished=False, function
1254 jobs = get_jobs(**filter_data)
/external/skia/tools/skqp/
Dfind_commit_with_best_gold_results.py22 def get_jobs(): function
85 jobs = [j for j in get_jobs()]
/external/skia/bin/
Dtry.py36 def get_jobs(repo): function
71 jobs.append(get_jobs(REPO_INTERNAL))
/external/skqp/bin/
Dtry.py36 def get_jobs(repo): function
71 jobs.append(get_jobs(REPO_INTERNAL))
/external/autotest/server/lib/
Dsuite_report.py189 suite_job = afe.get_jobs(id=suite_job_id)[0]
196 child_jobs = afe.get_jobs(parent_job_id=suite_job_id)
/external/autotest/site_utils/
Djob_directories_unittest.py127 job_directories._AFE.get_jobs(
203 job_directories._AFE.get_jobs(
Dtest_runner_utils.py596 if not afe.get_jobs():
600 last_job_id = afe.get_jobs()[-1].id
603 job_queue = afe.get_jobs()
624 all_jobs = afe.get_jobs(not_yet_run=True, running=True)
Drun_suite.py1372 suite_job = self._afe.get_jobs(id=self._suite_job_id)[0]
1427 child_jobs = jobs or self._afe.get_jobs(parent_job_id=self._suite_job_id)
1619 jobs=self._afe.get_jobs(id=self._suite_job_id)))
1741 existing_job = afe.get_jobs(id=job_id, finished=True)
1745 existing_job = afe.get_jobs(id=job_id)
1842 while not afe.get_jobs(id=job_id, finished=True):
1974 afe_jobs = afe.get_jobs(
Dtest_push.py288 while not AFE.get_jobs(id=suite_job_id, finished=True):
512 if AFE.get_jobs(id=suite_id, finished=False):
Djob_directories.py191 entry = _cached_afe().get_jobs(id=self._id, finished=True)
Ddiagnosis_utils.py333 incomplete_jobs = self.rpc_interface.get_jobs(
Drun_suite_unittest.py158 self.afe.get_jobs = mock.MagicMock(side_effect=side_effect)
253 self.afe.get_jobs.assert_called_once_with(
/external/autotest/utils/
Dtko_publish.py65 finished_jobs = afe.get_jobs(finished=True)
/external/autotest/server/cros/dynamic_suite/
Djob_status_unittest.py86 self.afe.get_jobs(id__in=list(job_id_set),
Djob_status.py141 return self._afe.get_jobs(id__in=list(self._job_ids), finished=True)
Dsuite.py1164 jobs = self._afe.get_jobs(parent_job_id=self._suite_job_id)
/external/autotest/contrib/
Dfind_suite_tasks.py79 child_jobs = afe.get_jobs(parent_job_id=suite_job_id)
/external/autotest/frontend/afe/doctests/
D001_rpc_test.txt409 >>> 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/
Dfrontend.py563 def get_jobs(self, summary=False, **dargs): member in AFE
649 return self.get_jobs(id=id)[0]