Home
last modified time | relevance | path

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

/external/chromium-trace/catapult/third_party/pipeline/pipeline/
Dpipeline.py614 idempotence_key='', argument
651 if not idempotence_key:
652 idempotence_key = uuid.uuid4().hex
653 elif not isinstance(idempotence_key, unicode):
655 idempotence_key.encode('utf-8')
657 idempotence_key = hashlib.sha1(idempotence_key).hexdigest()
659 pipeline_key = db.Key.from_path(_PipelineRecord.kind(), idempotence_key)
673 self, idempotence_key, str(e)))
675 def start_test(self, idempotence_key=None, base_path='', **kwargs): argument
683 if not idempotence_key:
[all …]