Home
last modified time | relevance | path

Searched refs:cacheDuration (Results 1 – 5 of 5) sorted by relevance

/plugin/authgooglesheets/vendor/google/apiclient-services/src/Safebrowsing/
H A DGoogleSecuritySafebrowsingV4ThreatMatch.php25 public $cacheDuration; variable in Google\\Service\\Safebrowsing\\GoogleSecuritySafebrowsingV4ThreatMatch
45 public function setCacheDuration($cacheDuration) argument
47 $this->cacheDuration = $cacheDuration;
54 return $this->cacheDuration;
/plugin/adfs/phpsaml/lib/Saml2/
H A DMetadata.php20 * @param int|null $cacheDuration Duration of the cache in seconds
27 …builder($sp, $authnsign = false, $wsign = false, $validUntil = null, $cacheDuration = null, $conta… argument
35 if (!isset($cacheDuration)) {
36 $cacheDuration = self::TIME_CACHED;
160 cacheDuration="PT{$cacheDuration}S"
H A DSettings.php845 * @param int|null $cacheDuration Duration of the cache in seconds
852 …tion getSPMetadata($alwaysPublishEncryptionCert = false, $validUntil = null, $cacheDuration = null) argument
854 …estsSigned'], $this->_security['wantAssertionsSigned'], $validUntil, $cacheDuration, $this->getCon…
966 $validUntil = $cacheDuration = $expireTime = null;
972 $cacheDuration = $element->getAttribute('cacheDuration');
975 $expireTime = OneLogin_Saml2_Utils::getExpireTime($cacheDuration, $validUntil);
H A DUtils.php892 * @param string|null $cacheDuration The duration, as a string.
899 public static function getExpireTime($cacheDuration = null, $validUntil = null) argument
903 if ($cacheDuration !== null) {
904 $expireTime = self::parseDuration($cacheDuration, time());
/plugin/adfs/phpsaml/
H A DCHANGELOG173 * Fix bug on cacheDuration of the Metadata XML generated.