Home | History | Annotate | Download | only in crosperf

Lines Matching refs:eta

35     """Get the elapsed_time, ETA."""
47 # eta is calculated as:
48 # ETA = (num_jobs_not_yet_started * estimated_time_per_job)
62 # ETA can come out negative if the time spent on the current job is
65 # happens, we set the ETA to "Unknown."
74 eta = datetime.timedelta(seconds=eta_seconds)
76 eta = 'Unknown'
78 eta = 'Unknown'
80 strings.append('Current time: %s Elapsed: %s ETA: %s' %
82 datetime.timedelta(seconds=int(elapsed_time)), eta))