Home | History | Annotate | Download | only in site_utils

Lines Matching defs:Timings

439 class Timings(object):
440 """Timings for important events during a suite.
461 # Timings related to staging artifacts on devserver.
536 'Suite timings:\n'
556 2. Computes timings for several start and end event pairs.
964 and timings by accessing the collector's public attributes. And output
981 4) Compute timings of the suite run.
1013 @var timings: A Timing object that records the suite's timings.
1040 self.timings = None
1170 """Record suite timings."""
1171 self.timings = Timings(self._suite_job_id)
1173 self.timings.RecordTiming(v)
1256 """Output test results, timings and web links."""
1269 # Output suite timings
1270 logging.info(self.timings)
1279 """Write test results, timings and web links into a dict.
1320 # Write the suite timings into |output_dict|
1323 'download_start' : str(self.timings.download_start_time),
1324 'payload_download_end' : str(self.timings.payload_end_time),
1325 'suite_start' : str(self.timings.suite_start_time),
1326 'artifact_download_end' : str(self.timings.artifact_end_time),
1327 'tests_start' : str(self.timings.tests_start_time),
1328 'tests_end' : str(self.timings.tests_end_time),
1353 Calculate suite timings.
1385 # Send timings to statsd.
1386 self.timings.SendResultsToStatsd(
1393 if (self.timings.tests_end_time is not None and
1394 self.timings.suite_start_time is not None):
1395 runtime_in_secs = (self.timings.tests_end_time -
1396 self.timings.suite_start_time).total_seconds()