Home
last modified time | relevance | path

Searched refs:lifetime_hours (Results 1 – 4 of 4) sorted by relevance

/external/autotest/scheduler/shard/
Dshard_client.py431 def loop(self, lifetime_hours): argument
437 while self._continue_looping(lifetime_hours, loop_start_time):
450 def _continue_looping(self, lifetime_hours, loop_start_time): argument
461 if (lifetime_hours is None
462 or time.time() - loop_start_time < lifetime_hours * 3600):
465 lifetime_hours)
560 _heartbeat_client.loop(options.lifetime_hours)
Dshard_client_unittest.py389 sut.loop(lifetime_hours=0.01)
/external/autotest/scheduler/
Dhost_scheduler.py499 if _lifetime_expired(options.lifetime_hours,
523 def _lifetime_expired(lifetime_hours, process_start_time): argument
529 if lifetime_hours is None:
531 if time.time() - process_start_time > lifetime_hours * 3600:
533 lifetime_hours)
Dmonitor_db.py189 if _lifetime_expired(options.lifetime_hours, process_start_time):
219 def _lifetime_expired(lifetime_hours, process_start_time): argument
225 if lifetime_hours is None:
227 if time.time() - process_start_time > lifetime_hours * 3600:
229 lifetime_hours)