Lines Matching refs:seconds
1154 "commit_entity: Headers and body for URL %s cached for maximum of %d seconds.",
1306 apr_off_t seconds;
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;
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 to cache an entry.";
1325 dconf->mintime = apr_time_from_sec(seconds);
1534 "The maximum cache expiry age to cache a document in seconds"),
1536 "The minimum cache expiry age to cache a document in seconds"),