Home
last modified time | relevance | path

Searched refs:lifetime (Results 1 – 25 of 40) sorted by relevance

12

/plugin/evesso/phpoauthlib/src/OAuth/Common/Token/
H A DAbstractToken.php33 * @param int $lifetime
36 …public function __construct($accessToken = null, $refreshToken = null, $lifetime = null, $extraPar… argument
40 $this->setLifetime($lifetime);
101 * @param int $lifetime
103 public function setLifetime($lifetime) argument
105 if (0 === $lifetime || static::EOL_NEVER_EXPIRES === $lifetime) {
107 } elseif (null !== $lifetime) {
108 $this->endOfLife = intval($lifetime) + time();
H A DTokenInterface.php46 * @param int $lifetime
48 public function setLifetime($lifetime); argument
/plugin/oauth/vendor/lusitanian/oauth/src/OAuth/Common/Token/
H A DAbstractToken.php33 * @param int $lifetime
36 public function __construct($accessToken = null, $refreshToken = null, $lifetime = null, $extraParams = array()) argument
40 $this->setLifetime($lifetime);
101 * @param int $lifetime
103 public function setLifetime($lifetime) argument
105 if (0 === $lifetime || static::EOL_NEVER_EXPIRES === $lifetime) {
107 } elseif (null !== $lifetime) {
108 $this->endOfLife = intval($lifetime) + time();
H A DTokenInterface.php46 * @param int $lifetime
48 public function setLifetime($lifetime); argument
/plugin/authgooglesheets/vendor/google/apiclient-services/src/IAMCredentials/
H A DGenerateAccessTokenRequest.php30 public $lifetime; variable in Google\\Service\\IAMCredentials\\GenerateAccessTokenRequest
53 public function setLifetime($lifetime) argument
55 $this->lifetime = $lifetime;
62 return $this->lifetime;
/plugin/fedauth/Auth/OpenID/
H A DAssociation.php100 $lifetime = $expires_in;
102 $issued, $lifetime, $assoc_type);
122 * @param integer $lifetime This is the amount of time this
132 $handle, $secret, $issued, $lifetime, $assoc_type) argument
143 $this->lifetime = $lifetime;
160 return max(0, $this->issued + $this->lifetime - $now);
176 && ($this->lifetime == $other->lifetime)
193 'lifetime' => strval(intval($this->lifetime)),
238 $lifetime = $pairs['lifetime'];
247 $lifetime = intval($lifetime);
[all …]
H A DPostgreSQLStore.php78 function _set_assoc($server_url, $handle, $secret, $issued, $lifetime, argument
85 array($secret, $issued, $lifetime,
92 $issued, $lifetime, $assoc_type));
H A DSQLStore.php322 $lifetime, $assoc_type) argument
330 $lifetime,
342 $association->lifetime,
H A DMemcachedStore.php84 $association->issued + $association->lifetime);
H A DMDB2Store.php289 "value" => $association->lifetime
/plugin/openid/Auth/OpenID/
H A DAssociation.php99 $lifetime = $expires_in;
101 $issued, $lifetime, $assoc_type);
121 * @param integer $lifetime This is the amount of time this
131 $handle, $secret, $issued, $lifetime, $assoc_type) argument
142 $this->lifetime = $lifetime;
160 return max(0, $this->issued + $this->lifetime - $now);
177 && ($this->lifetime == $other->lifetime)
194 'lifetime' => strval(intval($this->lifetime)),
240 $lifetime = $pairs['lifetime'];
249 $lifetime = intval($lifetime);
[all …]
H A DPostgreSQLStore.php78 function _set_assoc($server_url, $handle, $secret, $issued, $lifetime, argument
88 $lifetime,
102 $lifetime,
H A DSQLStore.php340 * @param int $lifetime
345 $lifetime, $assoc_type) argument
353 $lifetime,
366 $association->lifetime,
H A DMemcachedStore.php93 $association->issued + $association->lifetime);
H A DPredisStore.php74 $newExpiration = ($association->issued + $association->lifetime);
H A DMDB2Store.php289 "value" => $association->lifetime
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Cache/
H A DExpiringCache.php22 private $lifetime; variable in Assetic\\Cache\\ExpiringCache
24 public function __construct(CacheInterface $cache, $lifetime) argument
27 $this->lifetime = $lifetime;
51 $this->cache->set($key.'.expires', time() + $this->lifetime);
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CertificateAuthorityService/
H A DSubjectDescription.php29 public $lifetime; variable in Google\\Service\\CertificateAuthorityService\\SubjectDescription
60 public function setLifetime($lifetime) argument
62 $this->lifetime = $lifetime;
69 return $this->lifetime;
H A DCertificate.php46 public $lifetime; variable in Google\\Service\\CertificateAuthorityService\\Certificate
161 public function setLifetime($lifetime) argument
163 $this->lifetime = $lifetime;
170 return $this->lifetime;
H A DCertificateAuthority.php54 public $lifetime; variable in Google\\Service\\CertificateAuthorityService\\CertificateAuthority
211 public function setLifetime($lifetime) argument
213 $this->lifetime = $lifetime;
220 return $this->lifetime;
/plugin/jplayer/vendor/james-heinrich/getid3/licenses/
H A Dlicense.commercial.txt10 per payment of the license fee, for the lifetime of that person or
/plugin/photogallery/phpThumb/licenses/
H A Dlicense.ptcl.txt10 per payment of the license fee, for the lifetime of that person or
/plugin/authgooglesheets/vendor/google/auth/src/
H A DApplicationDefaultCredentials.php336 foreach (['lifetime', 'prefix'] as $key) {
/plugin/socialshareprivacy2/JC/
H A DREADME.md71 Define lifetime of the cookie. Value can be a `Number` which will be interpreted as days from time …
/plugin/findologicxmlexport/vendor/phpspec/prophecy/
H A DREADME.md343 Predictions are a delayed behavior check for your prophecies. You see, during the entire lifetime
379 section, Prophecy records every call made during the double's entire lifetime. This means

12