Lines Matching refs:end_time

99     @property end_time    Time the job or task finished execution.
151 def __init__(self, start_time, end_time):
153 self.end_time = parse_time(end_time)
242 def get_tasks(cls, afe, host_id, start_time, end_time):
253 @param end_time End time of the range of interest.
259 query_end = time_utils.epoch_time_to_date_string(end_time)
269 def get_status_task(cls, afe, host_id, end_time):
274 the given `end_time`.
278 @param end_time Find status as of this time.
284 query_end = time_utils.epoch_time_to_date_string(end_time)
362 def get_hqes(cls, afe, host_id, start_time, end_time):
373 @param end_time End time of the range of interest.
379 query_end = time_utils.epoch_time_to_date_string(end_time)
453 @property end_time End of the requested time interval, as a unix
465 `end_time`, ordered from latest to
467 @property _status_diagnosis The DUT's status as of `end_time`.
469 `end_time`.
474 def get_host_history(cls, afe, hostname, start_time, end_time):
485 @param end_time End time for the history's time interval.
491 return cls(afe, afehost, start_time, end_time)
495 def get_multiple_histories(cls, afe, start_time, end_time, labels=()):
501 @param end_time End time for the history's time interval.
515 return [cls(afe, h, start_time, end_time) for h in hosts]
518 def __init__(self, afe, afehost, start_time, end_time):
521 self.end_time = end_time
531 def _get_history(self, start_time, end_time):
534 self._afe, self._host.id, start_time, end_time)
536 self._afe, self._host.id, start_time, end_time)
545 self.end_time)
587 self._afe, self._host.id, self.end_time)
602 query_end = time_utils.epoch_time_to_date_string(self.end_time)
662 self._status_task.end_time < self.start_time and
668 def get_diagnosis_interval(host_id, end_time, success):
686 @param end_time Find the last eligible interval before this time.
704 query0 = query0.filter(time_finished__lte=end_time)
715 def get_status_task(host_id, end_time):
727 @param end_time End time of the range of interest.
742 time_finished__lte=end_time,