Lines Matching refs:Timings
545 class Timings(object):
546 """Timings for important events during a suite.
567 # Timings related to staging artifacts on devserver.
642 'Suite timings:\n'
1038 and timings by accessing the collector's public attributes. And output
1055 4) Compute timings of the suite run.
1086 @var timings: A Timing object that records the suite's timings.
1113 self.timings = None
1263 """Record suite timings."""
1264 self.timings = Timings(self._suite_job_id)
1266 self.timings.RecordTiming(v)
1363 """Output test results, timings and web links."""
1370 # Output suite timings
1371 logging.info(self.timings)
1380 """Write test results, timings and web links into a dict.
1429 # Write the suite timings into |output_dict|
1430 timings = self.timings
1431 if timings is not None:
1434 'download_start' : str(timings.download_start_time),
1435 'payload_download_end' : str(timings.payload_end_time),
1436 'suite_start' : str(timings.suite_start_time),
1437 'artifact_download_end' : str(timings.artifact_end_time),
1438 'tests_start' : str(timings.tests_start_time),
1439 'tests_end' : str(timings.tests_end_time),
1455 Calculate suite timings.
1489 if (self.timings.tests_end_time is not None and
1490 self.timings.suite_start_time is not None):
1491 runtime_in_secs = (self.timings.tests_end_time -
1492 self.timings.suite_start_time).total_seconds()