Searched refs:seconds (Results 1 - 3 of 3) sorted by relevance
/httpd/server/ |
H A D | util_time.c | 59 apr_int64_t seconds = apr_time_sec(t); local 61 &(cache[seconds & TIME_CACHE_MASK]); 68 * 'now - AP_TIME_RECENT_THRESHOLD' seconds ago). If the 78 if (cache_element->t >= seconds) { 82 * TIME_CACHE_SIZE seconds ago at the same time that 99 * the cache_element should both match the 'seconds' 110 if ((seconds != cache_element_snapshot.t) || 111 (seconds != cache_element_snapshot.t_validate)) { 137 cache_element->t = seconds; 139 cache_element->t_validate = seconds; [all...] |
/httpd/modules/cache/ |
H A D | mod_cache_socache.c | 1154 "commit_entity: Headers and body for URL %s cached for maximum of %d seconds.", 1306 apr_off_t seconds; local 1308 if (apr_strtoff(&seconds, arg, NULL, 10) != APR_SUCCESS || seconds < 0) { 1309 return "CacheSocacheMaxTime argument must be the maximum amount of time in seconds to cache an entry."; 1311 dconf->maxtime = apr_time_from_sec(seconds); 1320 apr_off_t seconds; local 1322 if (apr_strtoff(&seconds, arg, NULL, 10) != APR_SUCCESS || seconds < 0) { 1323 return "CacheSocacheMinTime argument must be the minimum amount of time in seconds t [all...] |
H A D | mod_cache.c | 2408 apr_int64_t seconds; local 2413 seconds = apr_atoi64(arg); 2414 if (seconds <= 0) { 2417 conf->lockmaxage = apr_time_from_sec(seconds); 2531 "The maximum time in seconds to cache a document"), 2533 "The minimum time in seconds to cache a document"), 2535 "The default time in seconds to cache a document"),
|
Completed in 44 milliseconds