Home | History | Annotate | Download | only in site_utils

Lines Matching refs:age_limit

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)
1022 def _enqueue_offload(job, queue, age_limit):
1026 it finished, and the job is older than the `age_limit`
1036 @param age_limit Minimum age for a job to be offloaded. A value
1042 if not _is_expired(job, age_limit):