Home
last modified time | relevance | path

Searched refs:parent_schedule (Results 1 – 6 of 6) sorted by relevance

/test/vti/test_serving/gae/webapp/src/tasks/
Dindexing_test.py84 parent_key = job.parent_schedule
92 parent_key = job.parent_schedule
93 parent_schedule = parent_key.get()
96 ((parent_schedule.priority == job.priority) and
97 (parent_schedule.test_name == job.test_name) and
98 (parent_schedule.period == job.period) and
99 (parent_schedule.build_storage_type == job.build_storage_type)
100 and (parent_schedule.manifest_branch == job.manifest_branch)
101 and (parent_schedule.build_target == job.build_target) and
102 (parent_schedule.device_pab_account_id == job.pab_account_id)
[all …]
Dindexing.py109 if not entity.parent_schedule:
148 parent_schedule = parent_schedules[0]
149 parent_schedule.children_jobs.append(entity.key)
150 entity.parent_schedule = parent_schedule.key
151 to_put.append(parent_schedule)
/test/vti/test_serving/gae/webapp/src/utils/
Dmodel_util_test.py73 parent_schedule = job.parent_schedule.get()
77 self.assertNotEqual(1, parent_schedule.error_count)
83 self.assertEqual(1, parent_schedule.error_count)
95 self.assertEqual(1 + num, parent_schedule.error_count)
117 parent_schedule = ready_job.parent_schedule.get()
119 self.assertEqual(1 + num, parent_schedule.error_count)
125 self.assertEqual(2 + num, parent_schedule.error_count)
Dmodel_util.py37 if job.parent_schedule:
38 schedule = job.parent_schedule.get()
/test/vti/test_serving/gae/webapp/src/proto/
Dmodel.py296 parent_schedule = ndb.KeyProperty(kind="ScheduleModel") variable in JobModel
/test/vti/test_serving/gae/webapp/src/scheduler/
Dschedule_worker.py316 new_job.parent_schedule = schedule.key