Home | History | Annotate | Download | only in site_utils

Lines Matching full:interval

284     the first interval found.
316 the first interval found.
443 @param print_each_interval: boolean, whether to print each interval
449 result += ' Num entries found in this interval: %s\n' % (num_entries_found)
455 for interval, status_info in intervals_of_statuses.iteritems():
456 t0, t1 = interval
485 t_interval_start: beginning of interval for that status
486 t_interval_end: end of the interval for that status
578 t_start is the beginning of the interval where the DUT's has
580 t_end is the end of the interval where the DUT has that
601 interval = {'status': status_info['status'],
604 interval['log_url'] = get_log_url(hostname, status_info['metadata'])
605 interval.update(status_info['metadata'])
606 history.append(interval)
611 """Get a list of status interval from history details.
615 status interval, which can be used to calculate stats from
631 for interval in history:
632 start_time = time_utils.to_epoch_time(interval['start_time'])
633 end_time = time_utils.to_epoch_time(interval['end_time'])
634 metadata = copy.deepcopy(interval)
636 intervals[(start_time, end_time)] = {'status': interval['status'],
653 for status, interval in stats.iteritems():
656 total_time += interval
658 total_time_not_utilized += interval
677 for status, interval in stats.iteritems():
680 total_time += interval
682 total_time_not_available += interval