Home
last modified time | relevance | path

Searched full:cache (Results 226 – 250 of 2069) sorted by path

12345678910>>...83

/plugin/authgooglesheets/vendor/google/auth/src/
H A DApplicationDefaultCredentials.php31 use Psr\Cache\CacheItemPoolInterface;
85 * @param CacheItemPoolInterface $cache A cache implementation, may be
94 CacheItemPoolInterface $cache = null argument
113 * @param CacheItemPoolInterface $cache A cache implementation, may be
140 * @param CacheItemPoolInterface $cache A cache implementation, may be
191 if (!is_null($cache)) {
208 * @param CacheItemPoolInterface $cache A cache implementation, may be
235 * @param CacheItemPoolInterface $cache A cache implementation, may be
259 * @param CacheItemPoolInterface $cache A cache implementation, may be
305 if (!is_null($cache)) {
[all …]
H A DCacheTrait.php20 use Psr\Cache\CacheItemPoolInterface;
37 private $cache; variable
40 * Gets the cached value if it is present in the cache when that is
49 if (is_null($this->cache)) {
58 $cacheItem = $this->cache->getItem($key);
65 * Saves the value in the cache when that is available.
73 if (is_null($this->cache)) {
82 $cacheItem = $this->cache->getItem($key);
85 return $this->cache->save($cacheItem);
H A DFetchAuthTokenCache.php20 use Psr\Cache\CacheItemPoolInterface;
42 * @param array<mixed> $cacheConfig Configuration for the cache
43 * @param CacheItemPoolInterface $cache
48 CacheItemPoolInterface $cache argument
51 $this->cache = $cache;
61 * Checks the cache for a valid auth token and fetches the auth tokens
135 // Pass the access token from cache to GCECredentials for signing a blob.
239 // TODO: correct caching; enable the cache to be cleared.
241 // if $authUri is set, use it as the cache key
271 // if $authUri is set, use it as the cache key
H A DFetchAuthTokenInterface.php34 * Obtains a key that can used to cache the results of #fetchAuthToken.
38 * @return string a key that may be used to cache the auth token.
H A DGCECache.php21 use Psr\Cache\CacheItemPoolInterface;
25 * is used automatically when you pass a `Psr\Cache\CacheItemPoolInterface`
26 * cache object to `ApplicationDefaultCredentials::getCredentials`.
45 * @param array<mixed> $cacheConfig Configuration for the cache
46 * @param CacheItemPoolInterface $cache
50 CacheItemPoolInterface $cache = null argument
52 $this->cache = $cache;
68 if (is_null($this->cache)) {
H A DOAuth2.php520 'Cache-Control' => 'no-store',
552 * Obtains a key that can used to cache the results of #fetchAuthToken.
556 * @return ?string a key that may be used to cache the auth token.
/plugin/authgooglesheets/vendor/google/auth/src/Cache/
H A DInvalidArgumentException.php18 namespace Google\Auth\Cache;
20 use Psr\Cache\InvalidArgumentException as PsrInvalidArgumentException;
H A DItem.php18 namespace Google\Auth\Cache;
23 use Psr\Cache\CacheItemInterface;
27 * A cache item.
H A DMemoryCacheItemPool.php18 namespace Google\Auth\Cache;
20 use Psr\Cache\CacheItemInterface;
21 use Psr\Cache\CacheItemPoolInterface;
24 * Simple in-memory cache implementation.
41 * @return CacheItemInterface The corresponding Cache Item.
52 * A traversable collection of Cache Items keyed by the cache keys of
53 * each item. A Cache item will be returned for each key, even if that
72 * True if item exists in the cache, false otherwise.
H A DSysVCacheItemPool.php17 namespace Google\Auth\Cache;
19 use Psr\Cache\CacheItemInterface;
20 use Psr\Cache\CacheItemPoolInterface;
H A DTypedItem.php18 namespace Google\Auth\Cache;
20 use Psr\Cache\CacheItemInterface;
23 * A cache item.
/plugin/authgooglesheets/vendor/google/auth/src/Credentials/
H A DInsecureCredentials.php48 * Returns the cache key. In this case it returns a null value, disabling
/plugin/authgooglesheets/vendor/google/auth/src/HttpHandler/
H A DHttpClientCache.php33 * Cache an HTTP Client for later calls.
/plugin/authgooglesheets/vendor/google/auth/src/Middleware/
H A DScopedAccessTokenMiddleware.php21 use Psr\Cache\CacheItemPoolInterface;
29 * string or an array of strings, as its value. If provided, a cache will be
57 * @param array<mixed> $cacheConfig configuration for the cache when it's present
58 * @param CacheItemPoolInterface $cache an implementation of CacheItemPoolInterface
64 CacheItemPoolInterface $cache = null argument
74 if (!is_null($cache)) {
75 $this->cache = $cache;
99 * $cache = new Memcache()
146 * Determine if token is available in the cache, if not call tokenFunc to
/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
740 * Added `Guzzle\Cache\CacheAdapterFactory::fromCache()` to more easily create cache adapters
776 `Guzzle\Plugin\Cache\DefaultCanCacheStrategy->canCacheRequest()` instead.
778 `Guzzle\Plugin\Cache\DefaultCanCacheStrategy->canCacheRequest()` instead.
781 * Marked `Guzzle\Cache\CacheAdapterFactory::factory()` as deprecated
793 * Always setting X-cache headers on cached responses
795 * `CacheStorageInterface::cache($key, Response $response, $ttl = null)` has changed to `cache(Reque…
1099 * Fixed ZF2 cache adapters
1228 * Updating ZF cache and log adapters and now using ZF's composer repository
[all …]
H A DUPGRADING.md242 ## Cache section in Guzzle Upgrade Guide
244 The `Guzzle\Cache` namespace has been removed. (Todo: No suitable replacement
245 has been implemented yet, but hoping to utilize a PSR cache interface).
431 - `GuzzleHttp\Message\Response::calculateAge()` and other cache specific
606 - `Guzzle\Http\Plugin\Cache\CachePlugin` has moved to
607 https://github.com/guzzle/cache-subscriber
688 - Marked `Guzzle\Cache\CacheAdapterFactory::factory()` as deprecated
752 ### Cache plugin breaking changes
756 - Always setting X-cache headers on cached responses
757 - Default cache TTLs are now handled by the CacheStorageInterface of a CachePlugin
[all …]
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/Handler/
H A DCurlFactory.php23 /** @var int Total number of idle handles to keep in cache */
/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/guzzlehttp/psr7/src/
H A DCachingStream.php8 * Stream decorator that can cache previously read bytes from a sequentially
26 …* @param StreamInterface $stream Stream to cache. The cursor is assumed to be at the beginning of …
H A DStream.php138 // Clear the stat cache if the stream has a URI
/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/paragonie/constant_time_encoding/src/
H A DEncoderInterface.php35 * Convert a binary string into a hexadecimal string without cache-timing
44 * Convert a binary string into a hexadecimal string without cache-timing
H A DEncoding.php211 * Convert a binary string into a hexadecimal string without cache-timing
224 * Convert a hexadecimal string into a binary string without cache-timing
237 * Convert a binary string into a hexadecimal string without cache-timing
250 * Convert a binary string into a hexadecimal string without cache-timing

12345678910>>...83