Searched refs:parent_schedule (Results 1 – 6 of 6) sorted by relevance
84 parent_key = job.parent_schedule92 parent_key = job.parent_schedule93 parent_schedule = parent_key.get()96 ((parent_schedule.priority == job.priority) and97 (parent_schedule.test_name == job.test_name) and98 (parent_schedule.period == job.period) and99 (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) and102 (parent_schedule.device_pab_account_id == job.pab_account_id)[all …]
109 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.key151 to_put.append(parent_schedule)
73 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)
37 if job.parent_schedule:38 schedule = job.parent_schedule.get()
296 parent_schedule = ndb.KeyProperty(kind="ScheduleModel") variable in JobModel
316 new_job.parent_schedule = schedule.key