HomeSort by relevance Sort by last modified time
    Searched refs:age_limit (Results 1 - 4 of 4) sorted by null

  /external/autotest/site_utils/
job_directories.py 24 def is_job_expired(age_limit, timestamp):
27 @param age_limit: Minimum age, measured in days. If the value is
34 if age_limit <= 0:
37 expiration = job_time + datetime.timedelta(days=age_limit)
102 according to the `age_limit` parameter.
gs_offloader.py 761 def _is_expired(job, age_limit):
765 @param age_limit: Minimum age in days at which a job may be offloaded.
770 return job_directories.is_job_expired(age_limit, job_timestamp)
    [all...]
gs_offloader_unittest.py 260 def _make_timestamp(age_limit, is_expired):
266 `age_limit` days before the current time; otherwise, the
269 @param age_limit The number of days before expiration of the
272 relative to `age_limit`.
278 delta = datetime.timedelta(days=age_limit, seconds=seconds)
    [all...]
  /system/update_engine/
p2p_manager_unittest.cc 193 TimeDelta age_limit = TimeDelta::FromDays(5); local
197 fake_clock_.SetWallclockTime(cutoff_time + age_limit);
205 0 /* num_files_to_keep */, age_limit));

Completed in 93 milliseconds