Home
last modified time | relevance | path

Searched refs:cache (Results 26 – 50 of 671) sorted by path

12345678910>>...27

/plugin/authgooglesheets/
H A Dcomposer.lock91 "cache/filesystem-adapter": "^0.3.2|^1.1",
103 … "cache/filesystem-adapter": "For caching certs and tokens (using Google\\Client::setCache)"
200 "psr/cache": "^1.0|^2.0|^3.0",
830 "name": "psr/cache",
834 "url": "https://github.com/php-fig/cache.git",
839 …"url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf…
869 "cache",
874 "source": "https://github.com/php-fig/cache/tree/master"
H A Dhelper.php320 $cache = new dokuwiki\Cache\Cache('validated', 'authgooglesheets');
322 if ($cache->retrieveCache()) {
332 if ($isValid) $cache->storeCache(time());
/plugin/authgooglesheets/vendor/google/apiclient/
H A DREADME.md359 $cache = new FilesystemCachePool($filesystem);
360 $client->setCache($cache);
363 In this example we use [PHP Cache](http://www.php-cache.com/). Add this to your project with compos…
366 composer require cache/filesystem-adapter
376 $logger->debug(sprintf('new access token received at cache key %s', $cacheKey));
/plugin/authgooglesheets/vendor/google/apiclient/src/AccessToken/
H A DVerify.php56 private $cache; variable in Google\\AccessToken\\Verify
64 CacheItemPoolInterface $cache = null, argument
71 if (null === $cache) {
72 $cache = new MemoryCacheItemPool;
76 $this->cache = $cache;
143 return $this->cache;
187 if ($cache = $this->getCache()) {
188 $cacheItem = $cache->getItem('federated_signon_certs_v3');
198 if ($cache) {
201 $cache->save($cacheItem);
/plugin/authgooglesheets/vendor/google/apiclient/src/AuthHandler/
H A DAuthHandlerFactory.php32 public static function build($cache = null, array $cacheConfig = []) argument
43 return new Guzzle5AuthHandler($cache, $cacheConfig);
45 return new Guzzle6AuthHandler($cache, $cacheConfig);
47 return new Guzzle7AuthHandler($cache, $cacheConfig);
H A DGuzzle5AuthHandler.php20 protected $cache; variable in Google\\AuthHandler\\Guzzle5AuthHandler
23 public function __construct(CacheItemPoolInterface $cache = null, array $cacheConfig = []) argument
25 $this->cache = $cache;
35 if ($this->cache) {
39 $this->cache
78 $this->cache
H A DGuzzle6AuthHandler.php20 protected $cache; variable in Google\\AuthHandler\\Guzzle6AuthHandler
23 public function __construct(CacheItemPoolInterface $cache = null, array $cacheConfig = []) argument
25 $this->cache = $cache;
35 if ($this->cache) {
39 $this->cache
81 $this->cache
/plugin/authgooglesheets/vendor/google/apiclient/src/
H A DClient.php72 private $cache; variable in Google\\Client
1086 * @param CacheItemPoolInterface $cache
1088 public function setCache(CacheItemPoolInterface $cache) argument
1090 $this->cache = $cache;
1098 if (!$this->cache) {
1099 $this->cache = $this->createDefaultCache();
1102 return $this->cache;
/plugin/authgooglesheets/vendor/google/auth/
H A DREADME.md195 // $creds = new FetchAuthTokenCache($creds, $cacheConfig, $cache);
/plugin/authgooglesheets/vendor/google/auth/src/
H A DAccessToken.php329 $cacheItem = $this->cache->getItem($cacheKey);
355 $this->cache->save($cacheItem);
H A DApplicationDefaultCredentials.php85 * @param CacheItemPoolInterface $cache A cache implementation, may be
94 CacheItemPoolInterface $cache = null argument
124 CacheItemPoolInterface $cache = null, argument
155 CacheItemPoolInterface $cache = null, argument
184 } elseif (self::onGce($httpHandler, $cacheConfig, $cache)) {
191 if (!is_null($cache)) {
217 CacheItemPoolInterface $cache = null argument
244 CacheItemPoolInterface $cache = null argument
269 CacheItemPoolInterface $cache = null argument
298 } elseif (self::onGce($httpHandler, $cacheConfig, $cache)) {
[all …]
H A DCacheTrait.php37 private $cache; variable
49 if (is_null($this->cache)) {
58 $cacheItem = $this->cache->getItem($key);
73 if (is_null($this->cache)) {
82 $cacheItem = $this->cache->getItem($key);
85 return $this->cache->save($cacheItem);
H A DFetchAuthTokenCache.php43 * @param CacheItemPoolInterface $cache
48 CacheItemPoolInterface $cache argument
51 $this->cache = $cache;
H A DGCECache.php46 * @param CacheItemPoolInterface $cache
50 CacheItemPoolInterface $cache = null argument
52 $this->cache = $cache;
68 if (is_null($this->cache)) {
/plugin/authgooglesheets/vendor/google/auth/src/Middleware/
H A DScopedAccessTokenMiddleware.php58 * @param CacheItemPoolInterface $cache an implementation of CacheItemPoolInterface
64 CacheItemPoolInterface $cache = null argument
74 if (!is_null($cache)) {
75 $this->cache = $cache;
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/
H A DCHANGELOG.md661 * Various fixes to cache revalidation (#437 and 29797e5)
738 * CachePlugin now uses the Vary header to determine if a resource is a cache hit
793 * Always setting X-cache headers on cached responses
794 * Default cache TTLs are now handled by the CacheStorageInterface of a CachePlugin
795 * `CacheStorageInterface::cache($key, Response $response, $ttl = null)` has changed to `cache(Reque…
801 $plugin)` has changed to `DefaultRevalidation::__construct(CacheStorageInterface $cache,
854 * Deprecating ZF1 cache and log adapters. These will be removed in the next major version.
905 * Bug fix: Revalidating a cache entry prefers the Last-Modified over the Date header
1099 * Fixed ZF2 cache adapters
1228 * Updating ZF cache and log adapters and now using ZF's composer repository
[all …]
H A DUPGRADING.md245 has been implemented yet, but hoping to utilize a PSR cache interface).
431 - `GuzzleHttp\Message\Response::calculateAge()` and other cache specific
607 https://github.com/guzzle/cache-subscriber
756 - Always setting X-cache headers on cached responses
757 - Default cache TTLs are now handled by the CacheStorageInterface of a CachePlugin
758 - `CacheStorageInterface::cache($key, Response $response, $ttl = null)` has changed to `cache(Reque…
763 …idation::__construct(CacheKeyProviderInterface $cacheKey, CacheStorageInterface $cache, CachePlugin
764 $plugin)` has changed to `DefaultRevalidation::__construct(CacheStorageInterface $cache,
804 * Deprecated cache control specific methods on Guzzle\Http\Message\AbstractMessage. Use the CacheCo…
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/
H A DMessageFormatter.php71 $cache = [];
75 function (array $matches) use ($request, $response, $error, &$cache) {
76 if (isset($cache[$matches[1]])) {
77 return $cache[$matches[1]];
164 $cache[$matches[1]] = $result;
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Processor/
H A DGitProcessor.php31 private static $cache = null; variable in Monolog\\Processor\\GitProcessor
63 if (self::$cache) {
64 return self::$cache;
69 return self::$cache = [
75 return self::$cache = [];
H A DMercurialProcessor.php30 private static $cache = null; variable in Monolog\\Processor\\MercurialProcessor
62 if (self::$cache) {
63 return self::$cache;
69 return self::$cache = [
75 return self::$cache = [];
/plugin/authgooglesheets/vendor/paragonie/constant_time_encoding/
H A DREADME.md11 information about what you are encoding/decoding via processor cache
12 misses. Further reading on [cache-timing attacks](http://blog.ircmaxell.com/2014/11/its-all-about-t…
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/
H A DREADME.md93 php-cs-fixer fix --config=build/php-cs-fixer.php --diff --dry-run --using-cache=no
94 …psalm --config=build/psalm.xml --no-cache --long-progress --report-show-info=false --output-format…
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/BCMath/Reductions/
H A DBarrett.php68 static $cache = [
85 if (($key = array_search($m, $cache[self::VARIABLE])) === false) {
86 $key = count($cache[self::VARIABLE]);
87 $cache[self::VARIABLE][] = $m;
93 $cache[self::DATA][] = [
98 extract($cache[self::DATA][$key]);
155 static $cache = [
167 $key = count($cache[self::VARIABLE]);
168 $cache[self::VARIABLE][] = $n;
170 $cache[self::DATA][] = bcdiv($lhs, $n, 0);
[all …]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP/Reductions/
H A DBarrett.php55 static $cache = [
78 if (($key = array_search($m, $cache[self::VARIABLE])) === false) {
79 $key = count($cache[self::VARIABLE]);
80 $cache[self::VARIABLE][] = $m;
93 $cache[self::DATA][] = [
98 extract($cache[self::DATA][$key]);
150 static $cache = [
166 if (($key = array_search($n, $cache[self::VARIABLE])) === false) {
167 $key = count($cache[self::VARIABLE]);
168 $cache[self::VARIABLE][] = $n;
[all …]
H A DMontgomery.php61 static $cache = [
66 if (($key = array_search($n, $cache[self::VARIABLE])) === false) {
67 $key = count($cache[self::VARIABLE]);
68 $cache[self::VARIABLE][] = $x;
69 $cache[self::DATA][] = self::modInverse67108864($n, $class);
77 $temp = $result[self::VALUE][$i] * $cache[self::DATA][$key];

12345678910>>...27