Home
last modified time | relevance | path

Searched refs:_SlotRecord (Results 1 – 2 of 2) sorted by relevance

/external/chromium-trace/catapult/third_party/pipeline/pipeline/
Dpipeline.py78 _SlotRecord = models._SlotRecord variable
189 slot_key = db.Key.from_path(_SlotRecord.kind(), uuid.uuid4().hex)
255 if slot_record.status == _SlotRecord.FILLED:
257 self._filler_pipeline_key = _SlotRecord.filler.get_value_for_datastore(
1295 if slot_record is None or slot_record.status != _SlotRecord.FILLED:
1492 slot_record.status = _SlotRecord.FILLED
1587 if slot_record.status == _SlotRecord.FILLED:
1800 entities_to_put.append(_SlotRecord(
2032 (default_slot_record.status == _SlotRecord.FILLED and
2130 if (default_slot_record.status == _SlotRecord.WAITING and
[all …]
Dmodels.py120 class _SlotRecord(db.Model): class