HomeSort by relevance Sort by last modified time
    Searched refs:job_idx (Results 1 - 11 of 11) sorted by null

  /external/autotest/frontend/health/
utils_unittest.py 62 job = models.Job(job_idx=1)
84 job = models.Job(job_idx=1)
107 job = models.Job(job_idx=1)
147 job = models.Job(job_idx=1)
169 job = models.Job(job_idx=1)
192 job = models.Job(job_idx=1)
215 job = models.Job(job_idx=1)
237 job = models.Job(job_idx=1)
254 job = models.Job(job_idx=1)
271 job = models.Job(job_idx=1
    [all...]
manual_check_passing_experimental.py 53 job = tko_models.Job(job_idx=1)
complete_failures_unittest.py 169 job = models.Job(job_idx=1)
196 job = models.Job(job_idx=1)
complete_failures_functional_test.py 99 job = models.Job(job_idx=1)
passing_experimental_functional_test.py 84 job = tko_models.Job(job_idx=1)
  /external/autotest/tko/
frontend.py 204 fields = ['test_idx', 'job_idx', 'test', 'subdir',
215 fields = ['test_idx', 'job_idx', 'test', 'subdir',
222 def __init__(self, db, test_idx, job_idx, testname, subdir, kernel_idx,
225 self.job = job(db, job_idx)
280 def __init__(self, db, job_idx):
281 where = {'job_idx' : job_idx}
285 self.job_idx = job_idx
db.py 361 job_idx = self.find_job(tag)
362 for test_idx in self.find_tests(job_idx):
369 where = {'job_idx' : job_idx}
403 self.update('tko_jobs', data, {'job_idx': job.index}, commit=commit)
426 data = {'job_idx':job.index, 'test':test.testname,
587 def find_test(self, job_idx, testname, subdir):
588 where = {'job_idx': job_idx , 'test': testname, 'subdir': subdir}
596 def find_tests(self, job_idx)
    [all...]
parse.py 109 from the retry job's keyvals, which is then converted to tko job_idx and
120 For example, assume Job(job_idx=105) are retried by Job(job_idx=108), after
123 test_idx| job_idx | test | ... | invalid | invalidates_test_idx
130 Note the invalid bits of the rows for Job(job_idx=105) are set to '1'.
131 And the 'invalidates_test_idx' fields of the rows for Job(job_idx=108)
135 tko job_idx. Tests associated with this job will
138 tko job_idx. The field 'invalidates_test_idx'
202 {"job_idx": old_job_idx})
296 afe_job_id=orig_afe_job_id).job_idx
    [all...]
  /external/autotest/frontend/tko/
rpc_interface.py 196 jobs_by_id = models.Job.objects.in_bulk([test_view['job_idx']
208 job = jobs_by_id[test_view['job_idx']]
467 ['Job Index', 'job_idx'],
models.py 172 job_idx = dbmodels.AutoField(primary_key=True) variable in class:Job
204 job = dbmodels.ForeignKey(Job, db_column='job_idx')
719 job_idx = dbmodels.IntegerField('job index', null=True, blank=True) variable in class:TestView
  /external/autotest/server/
server_job.py 364 job_idx = self.results_db.find_job(self._parse_job)
365 if job_idx is None:
370 self.job_model.index = job_idx
    [all...]

Completed in 160 milliseconds