Searched refs:job_ids (Results 1 – 9 of 9) sorted by relevance
/external/autotest/server/site_tests/moblab_StorageQual/ |
D | moblab_StorageQual.py | 125 job_ids = self._get_job_ids_from_suite_output(result.stderr) 127 logging.debug('Suite job ids %s', job_ids) 129 keyvals_per_host = self._get_keyval_files_per_host(host, job_ids) 201 job_ids = set() 208 job_ids.add(int(match.groups()[0])) 209 return job_ids 211 def _get_keyval_files_per_host(self, host, job_ids): argument 231 if int(job_id) not in job_ids:
|
/external/autotest/site_utils/ |
D | dump_suite_report.py | 52 job_ids = set(options.job_ids) 54 job_ids.add(options.provision_job_id) 58 for suite_job_id in job_ids:
|
D | test_push.py | 310 job_ids = [job.id for job in 313 for job_id in job_ids]
|
/external/autotest/frontend/afe/ |
D | models.py | 1331 def get_status_counts(self, job_ids): argument 1336 if not job_ids: 1338 id_list = '(%s)' % ','.join(str(job_id) for job_id in job_ids) 1346 all_job_counts = dict((job_id, {}) for job_id in job_ids) 1662 job_ids = cls._get_new_jobs_for_shard(shard, known_ids) 1663 if not job_ids: 1665 cls._assign_jobs_to_shard(job_ids, shard) 1666 return cls._jobs_with_ids(job_ids) 1684 def _assign_jobs_to_shard(cls, job_ids, shard): argument 1685 Job.objects.filter(pk__in=job_ids).update(shard=shard) [all …]
|
D | rpc_interface.py | 736 job_ids = list(models.Job.objects.filter( 741 if not job_ids: 745 afe_job_id__in=job_ids).exclude(
|
/external/autotest/cli/ |
D | job.py | 70 job_ids = [] 76 job_ids.append(job_id) 79 return (job_ids, job_names) 91 (job_ids, job_names) = self.__split_jobs_between_ids_names() 93 for items, tag in [(job_ids, tag_id),
|
/external/autotest/frontend/tko/ |
D | rpc_interface.py | 137 job_ids = set() 143 job_ids.add(job_id) 147 return list(job_ids)
|
/external/autotest/contrib/ |
D | compare_suite.py | 326 job_ids = [int(id) for id in args.jobs.split(',')] variable 330 models.Job.objects.filter(id__in=job_ids)] 338 for job_id in job_ids:
|
/external/autotest/server/cros/dynamic_suite/ |
D | suite.py | 1274 job_ids = [job.id for job in self._jobs] 1275 self._afe.run('abort_host_queue_entries', job__id__in=job_ids)
|