Home
last modified time | relevance | path

Searched refs:cache (Results 151 – 175 of 671) sorted by last modified time

12345678910>>...27

/plugin/indexmenu/
H A Daction.php75 * Check for pages changes and eventually purge cache.
88 /** @var cache_parser $cache */
89 $cache = &$event->data;
91 if (!isset($cache->page)) return;
92 //purge only xhtml cache
93 if ($cache->mode != "xhtml") return;
112 $cache->key .= "#" . $newkey;
113 $cache->cache = getCacheName($cache
[all...]
/plugin/actionrenderer/
H A Drenderer.php417 …media($src, $title = null, $align = null, $width = null, $height = null, $cache = null, $linking =… argument
423 …media($src, $title = null, $align = null, $width = null, $height = null, $cache = null, $linking =… argument
/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/google/auth/src/
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 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 …]
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/
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/
H A Dhelper.php320 $cache = new dokuwiki\Cache\Cache('validated', 'authgooglesheets');
322 if ($cache->retrieveCache()) {
332 if ($isValid) $cache->storeCache(time());
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"
/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/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/PHP/Reductions/
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];
H A DMontgomeryMult.php51 static $cache = [
56 if (($key = array_search($m, $cache[self::VARIABLE])) === false) {
57 $key = count($cache[self::VARIABLE]);
58 $cache[self::VARIABLE][] = $m;
59 $cache[self::DATA][] = self::modInverse67108864($m, $class);
70 $temp = $temp * $cache[self::DATA][$key];
/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/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/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/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/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/psr/cache/
H A DCHANGELOG.md9 - Make spacing consistent in phpdoc annotations php-fig/cache#9 - chalasr
10 - Fix grammar in phpdoc annotations php-fig/cache#10 - chalasr
11 …()` take an array of strings (`string[]`) compared to just `array` php-fig/cache#8 - GrahamCampbell
12 …valid parameters as well as an implementation of DateTimeInterface php-fig/cache#7 - GrahamCampbell
/plugin/authgooglesheets/vendor/google/auth/
H A DREADME.md195 // $creds = new FetchAuthTokenCache($creds, $cacheConfig, $cache);

12345678910>>...27