Home
last modified time | relevance | path

Searched full:cache (Results 201 – 225 of 2069) sorted by path

12345678910>>...83

/plugin/authgooglesheets/vendor/google/apiclient-services/src/
H A DAcceleratedmobilepageurl.php26 * Retrieves the list of AMP URLs (and equivalent AMP Cache URLs) for a given
31 * <a href="https://developers.google.com/amp/cache/" target="_blank">Documentation</a>
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Acceleratedmobilepageurl/Resource/
H A DAmpUrls.php34 * Returns AMP URL(s) and equivalent [AMP Cache URL(s)](/amp/cache/overview#amp-
35 * cache-url-format). (ampUrls.batchGet)
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Apigee/Resource/
H A DOrganizationsEnvironmentsAnalyticsAdmin.php44 * read from the database or cache. Set to `true` to read the schema from the
45 * database. Defaults to cache.
H A DOrganizationsEnvironmentsCaches.php33 * Deletes a cache. (caches.delete)
35 * @param string $name Required. Cache resource name of the form: `organizations
H A DOrganizationsEnvironmentsStats.php34 * include traffic, message counts, API call latency, response size, and cache
H A DOrganizationsHostStats.php35 * size, and cache hits and counts. Dimensions let you view metrics in
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Compute/Resource/
H A DUrlMaps.php166 * Initiates a cache invalidation operation, invalidating the specified path,
/plugin/authgooglesheets/vendor/google/apiclient-services/src/PeopleService/Resource/
H A DOtherContacts.php119 * with an empty query to update the cache. See
H A DPeople.php288 * should send a warmup request with an empty query to update the cache. See
/plugin/authgooglesheets/vendor/google/apiclient-services/src/RemoteBuildExecution/Resource/
H A DActionResults.php38 * cache. (actionResults.get)
75 * insufficient storage space to add the entry to the cache.
90 * of this content in the overall cache. Generally, a lower value means a longer
H A DV2.php35 * will be returned: * Execution + CAS + Action Cache endpoints should return
37 * should return ExecutionCapabilities. * CAS + Action Cache only endpoints
/plugin/authgooglesheets/vendor/google/apiclient-services/src/SemanticTile/Resource/
H A DFeaturetiles.php64 * tile that is already in the client's cache. This field should be populated
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Spanner/Resource/
H A DProjectsInstancesDatabasesSessions.php53 * cache on the clients. See https://goo.gl/TgSFN2 for best practices on session
54 * cache management. (sessions.batchCreate)
/plugin/authgooglesheets/vendor/google/apiclient/
H A DREADME.md354 use Cache\Adapter\Filesystem\FilesystemCachePool;
359 $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));
H A Dcomposer.json22 "cache/filesystem-adapter": "^0.3.2|^1.1",
31 "cache/filesystem-adapter": "For caching certs and tokens (using Google\\Client::setCache)"
/plugin/authgooglesheets/vendor/google/apiclient/src/AccessToken/
H A DRevoke.php69 'Cache-Control' => 'no-store',
H A DVerify.php29 use Psr\Cache\CacheItemPoolInterface;
30 use Google\Auth\Cache\MemoryCacheItemPool;
56 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()) {
198 if ($cache) {
[all …]
/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.php13 use Psr\Cache\CacheItemPoolInterface;
20 protected $cache; variable in Google\\AuthHandler\\Guzzle5AuthHandler
23 public function __construct(CacheItemPoolInterface $cache = null, array $cacheConfig = []) argument
25 $this->cache = $cache;
34 // use the provided cache
35 if ($this->cache) {
39 $this->cache
78 $this->cache
H A DGuzzle6AuthHandler.php13 use Psr\Cache\CacheItemPoolInterface;
20 protected $cache; variable in Google\\AuthHandler\\Guzzle6AuthHandler
23 public function __construct(CacheItemPoolInterface $cache = null, array $cacheConfig = []) argument
25 $this->cache = $cache;
34 // use the provided cache
35 if ($this->cache) {
39 $this->cache
81 $this->cache
/plugin/authgooglesheets/vendor/google/apiclient/src/
H A DClient.php35 use Psr\Cache\CacheItemPoolInterface;
70 * @var CacheItemPoolInterface $cache
72 private $cache; variable in Google\\Client
162 // Cache class implementing Psr\Cache\CacheItemPoolInterface.
164 'cache' => null,
212 unset($this->config['cache']);
1085 * Set the Cache object
1090 $this->cache = $cache;
1098 if (!$this->cache) {
1102 return $this->cache;
[all …]
/plugin/authgooglesheets/vendor/google/auth/
H A DREADME.md195 // $creds = new FetchAuthTokenCache($creds, $cacheConfig, $cache);
H A Dcomposer.json17 "psr/cache": "^1.0|^2.0|^3.0"
H A Dphpstan.neon.dist10 - src/Cache/Item.php
/plugin/authgooglesheets/vendor/google/auth/src/
H A DAccessToken.php25 use Google\Auth\Cache\MemoryCacheItemPool;
33 use Psr\Cache\CacheItemPoolInterface;
63 private $cache; variable in Google\\Auth\\AccessToken
67 * @param CacheItemPoolInterface $cache [optional] A PSR-6 compatible cache implementation.
71 CacheItemPoolInterface $cache = null argument
75 $this->cache = $cache ?: new MemoryCacheItemPool();
305 'Cache-Control' => 'no-store',
329 $cacheItem = $this->cache->getItem($cacheKey);
351 // Don't want to cache bad data.
355 $this->cache->save($cacheItem);
[all …]

12345678910>>...83