Home
last modified time | relevance | path

Searched refs:lowTTL (Results 1 – 9 of 9) sorted by relevance

/dports/www/mediawiki135/mediawiki-1.35.5/includes/libs/objectcache/wancache/
H A DWANObjectCache.php1421 $lowTTL = $opts['lowTTL'] ?? min( self::LOW_TTL, $ttl );
1442 $this->worthRefreshExpiring( $curTTL, $lowTTL ) ||
2542 * @param float $lowTTL Consider a refresh when $curTTL is less than this
2545 protected function worthRefreshExpiring( $curTTL, $lowTTL ) { argument
2546 if ( $lowTTL <= 0 ) {
2548 } elseif ( $curTTL >= $lowTTL ) {
2554 $chance = ( 1 - $curTTL / $lowTTL );
2560 "worthRefreshExpiring($curTTL, $lowTTL): " .
/dports/misc/perkeep/perkeep-0.11/server/camnetdns/
H A Dcamnetdns.go80 lowTTL = 300 // in seconds const
222 if time.Now().Before(lastCamwebUpdate.Add(lowTTL * time.Second)) {
365 header.Ttl = lowTTL
/dports/www/mediawiki136/mediawiki-1.36.3/includes/libs/objectcache/wancache/
H A DWANObjectCache.php1584 $lowTTL = $opts['lowTTL'] ?? min( self::LOW_TTL, $ttl );
1604 $this->worthRefreshExpiring( $curTTL, $curInfo[self::KEY_TTL], $lowTTL ) ||
2785 * @param float $lowTTL Consider a refresh when $curTTL is less than this; the "low" threshold
2788 protected function worthRefreshExpiring( $curTTL, $logicalTTL, $lowTTL ) { argument
2789 if ( $lowTTL <= 0 ) {
2795 $effectiveLowTTL = min( $lowTTL, $logicalTTL ?: INF );
2807 "worthRefreshExpiring($curTTL, $logicalTTL, $lowTTL): " .
/dports/www/mediawiki137/mediawiki-1.37.1/includes/libs/objectcache/wancache/
H A DWANObjectCache.php1577 $lowTTL = $opts['lowTTL'] ?? min( self::LOW_TTL, $ttl );
1597 $this->worthRefreshExpiring( $curTTL, $curInfo[self::KEY_TTL], $lowTTL ) ||
2779 * @param float $lowTTL Consider a refresh when $curTTL is less than this; the "low" threshold
2782 protected function worthRefreshExpiring( $curTTL, $logicalTTL, $lowTTL ) { argument
2783 if ( $lowTTL <= 0 ) {
2789 $effectiveLowTTL = min( $lowTTL, $logicalTTL ?: INF );
2801 "worthRefreshExpiring($curTTL, $logicalTTL, $lowTTL): " .
/dports/net/honeyd/honeyd-1.5c/
H A Dpf.os379 S44:32:1:48:M*,N,N,S: Windows:98:lowTTL:Windows 98 (low TTL)
380 8192:32:1:48:M*,N,N,S: Windows:98:lowTTL:Windows 98 (low TTL)
/dports/mail/avenger/avenger-0.8.5/etc/
H A Dpf.os379 S44:32:1:48:M*,N,N,S: Windows:98:lowTTL:Windows 98 (low TTL)
380 8192:32:1:48:M*,N,N,S: Windows:98:lowTTL:Windows 98 (low TTL)
/dports/www/mediawiki137/mediawiki-1.37.1/tests/phpunit/unit/includes/libs/objectcache/
H A DWANObjectCacheTest.php2505 protected function worthRefreshExpiring( $curTTL, $logicalTTL, $lowTTL ) { argument
2506 return ( $curTTL > 0 && ( $curTTL + self::CLOCK_SKEW ) < $lowTTL );
/dports/www/mediawiki136/mediawiki-1.36.3/tests/phpunit/unit/includes/libs/objectcache/
H A DWANObjectCacheTest.php2503 protected function worthRefreshExpiring( $curTTL, $logicalTTL, $lowTTL ) { argument
2504 return ( $curTTL > 0 && ( $curTTL + self::CLOCK_SKEW ) < $lowTTL );
/dports/www/mediawiki135/mediawiki-1.35.5/tests/phpunit/includes/libs/objectcache/
H A DWANObjectCacheTest.php2497 protected function worthRefreshExpiring( $curTTL, $lowTTL ) { argument
2498 return ( $curTTL > 0 && ( $curTTL + self::CLOCK_SKEW ) < $lowTTL );