| /plugin/authgooglesheets/vendor/google/auth/src/ |
| D | FetchAuthTokenCache.php | 70 if ($cached = $this->fetchAuthTokenFromCache()) { 71 return $cached; 138 $cached = $this->fetchAuthTokenFromCache(); 139 $accessToken = isset($cached['access_token']) ? $cached['access_token'] : null; 203 $cached = $this->fetchAuthTokenFromCache($authUri); 204 if ($cached) { 208 if (isset($cached['access_token'])) { 210 'Bearer ' . $cached['access_token'] 221 if (!$cached && $token = $this->fetcher->getLastReceivedToken()) { 246 $cached = $this->getCachedValue($cacheKey); [all …]
|
| /plugin/yuriigantt/3rd/dhtmlxgantt/sources/ext/ |
| D | dhtmlxgantt_smart_rendering.js | 283 cached:{}, property 286 if(!this.cached[cacheName]) 287 this.cached[cacheName] = null; 288 var cached = this.cached[cacheName]; 291 if(!cached){ 292 cached = this.cached[cacheName] = {}; 295 if(cached[id] === undefined){ 296 cached[id] = payload(id); 299 return cached[id]; 301 if(!cached){ [all …]
|
| /plugin/authgoogle/google/io/ |
| D | Google_IO.php | 117 * @param Google_HttpRequest $cached A previously cached response. 122 protected function checkMustRevaliadateCachedRequest($cached, $request) { argument 123 if (Google_CacheParser::mustRevalidate($cached)) { 125 if ($cached->getResponseHeader('etag')) { 128 $addHeaders['If-None-Match'] = $cached->getResponseHeader('etag'); 129 } elseif ($cached->getResponseHeader('date')) { 130 $addHeaders['If-Modified-Since'] = $cached->getResponseHeader('date'); 142 * @param Google_HttpRequest $cached A previously cached response. 145 protected function updateCachedRequest($cached, $responseHeaders) { argument 158 $cached->setResponseHeaders($endToEnd);
|
| D | Google_HttpStreamIO.php | 64 $cached = $this->getCachedRequest($request); 65 if ($cached !== false) { 66 if (!$this->checkMustRevaliadateCachedRequest($cached, $request)) { 67 return $cached; 121 if ($respHttpCode == 304 && $cached) { 123 $this->updateCachedRequest($cached, $responseHeaders); 124 return $cached;
|
| D | Google_CurlIO.php | 77 $cached = $this->getCachedRequest($request); 78 if ($cached !== false) { 79 if (!$this->checkMustRevaliadateCachedRequest($cached, $request)) { 80 return $cached; 130 if ($respHttpCode == 304 && $cached) { 132 $this->updateCachedRequest($cached, $responseHeaders); 133 return $cached;
|
| /plugin/elasticsearch/vendor/ezimuel/ringphp/src/Client/ |
| D | ClientUtils.php | 25 static $cached = null; 40 if ($cached) { 41 return $cached; 45 return $cached = $ca; 49 return $cached = $ca; 54 return $cached = $filename;
|
| /plugin/yuriigantt/3rd/dhtmlxgantt/ext/ |
| D | dhtmlxgantt_smart_rendering.js | 13 …cached:{},_takeFromCache:function(t,e,n){this.cached[n]||(this.cached[n]=null);var a=this.cached[n… property
|
| D | dhtmlxgantt_smart_rendering.js.map | 1 …cached","_takeFromCache","payload","cacheName","undefined","initCache","caches","method","calculat…
|
| /plugin/matrixnotifierwas/vendor/guzzlehttp/guzzle/src/ |
| D | HandlerStack.php | 30 private $cached; variable in GuzzleHttp\\HandlerStack 117 $this->cached = null; 137 $this->cached = null; 149 $this->cached = null; 187 $this->cached = null; 204 if ($this->cached === null) { 214 $this->cached = $prev; 217 return $this->cached; 236 $this->cached = null;
|
| D | Utils.php | 136 static $cached = null; 155 if ($cached) { 156 return $cached; 160 return $cached = $ca; 164 return $cached = $ca; 169 return $cached = $filename;
|
| /plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/ |
| D | HandlerStack.php | 21 private $cached; variable in GuzzleHttp\\HandlerStack 112 $this->cached = null; 134 $this->cached = null; 146 $this->cached = null; 180 $this->cached = null; 197 if (!$this->cached) { 206 $this->cached = $prev; 209 return $this->cached; 237 $this->cached = null;
|
| D | functions.php | 162 static $cached = null; 181 if ($cached) { 182 return $cached; 186 return $cached = $ca; 190 return $cached = $ca; 195 return $cached = $filename;
|
| /plugin/webcode/_test/data/pages/ |
| D | display.txt | 8 // cached 17 * The cached code blocked in the example below is written with this syntax. 20 console.log("A log from the cached block"); 29 * We should not see the cached code block (Only the bullet point of the list) 32 console.log("A log from the cached block."); 38 …* In the result, we should see two log line (one from the cached block and one from the visible on…
|
| /plugin/swiftmail/Swift/Message/ |
| D | Headers.php | 66 protected $cached = array(); variable in Swift_Message_Headers 82 foreach (array_keys($this->cached) as $k) $this->cached[$k] = null; 101 foreach (array_keys($this->cached) as $k) 103 $this->cached[$k] = null; 119 $this->cached[$lname] = null; 168 unset($this->cached[$lname]); 276 $this->cached[$lheader] = null; 377 if ($this->cached[$lname] !== null) return $this->cached[$lname]; 472 $this->cached[$lname] = implode("," . $this->LE . " ", $encoded_value); 475 …if (!empty($this->attributes[$lname])) $this->cached[$lname] .= $this->buildAttributes($this->cach… [all …]
|
| /plugin/botbouncer/lib/ |
| D | botbouncer.php | 385 $cached = $this->getCache('akismetKeyValid'); 386 if (empty($cached)) { 396 $this->addLogEntry('akismet.log','KEY CHECK (cached) '.$cached); 397 $this->dbg('akismet key (cached) '.$cached); 398 $keyValid = $cached; 423 $cached = $this->getCache('mollom'.md5(serialize($data))); 424 if (!empty($cached)) { 425 $isSpam = $cached; 505 $data['fromcache'] = '(cached)'; // for logging 696 $cached = $this->getCache('SFS'.$apiRequest); [all …]
|
| /plugin/authgooglesheets/vendor/google/auth/src/Middleware/ |
| D | ScopedAccessTokenMiddleware.php | 154 $cached = $this->getCachedValue($cacheKey); 156 if (!empty($cached)) { 157 return $cached;
|
| /plugin/calendar/ |
| D | get_system_stats.php | 146 preg_match('/Cached:\s+(\d+)/', $meminfo, $cached); 153 $cachedMB = isset($cached[1]) ? round($cached[1] / 1024, 1) : 0;
|
| /plugin/photogallery/phpThumb/ |
| D | phpThumb.config.php.default | 72 //$PHPTHUMB_CONFIG['cache_maxage'] = null; // never delete cached thumbnails based on la… 73 $PHPTHUMB_CONFIG['cache_maxage'] = 86400 * 30; // delete cached thumbnails that haven't been… 75 //$PHPTHUMB_CONFIG['cache_maxsize'] = null; // never delete cached thumbnails based on by… 76 …ast-recently-accessed cached thumbnails when more than [10MB] of cached files are present (value i… 78 …FIG['cache_maxfiles'] = null; // never delete cached thumbnails based on number of cached… 79 …te least-recently-accessed cached thumbnails when more than [200] cached files are present (value … 83 … // if true, source images obtained via HTTP are cached to $PHPTHUMB_CONFI… 87 … true, local source images will not be checked for modification date and cached image will be used… 88 … for modification date and cached image will be used if available, even if source image is changed… 96 $PHPTHUMB_CONFIG['cache_default_only_suffix'] = ''; // cached in normal phpThumb manner [all …]
|
| /plugin/linkcheck/ |
| D | README.md | 11 * Ajax calls are avoided for links that have been cached (For efficiency, this is only determined d… 15 * The plugin will collect the urls during render time. Previously cached pages may not be checked. …
|
| /plugin/issuelinks/ |
| D | pre-commit.hook.sh | 5 STAGED_FILES_CMD=`git diff --cached --name-only --diff-filter=ACMR HEAD | grep \\\\.php`
|
| /plugin/openlayersmap/lang/en/ |
| D | admin_intro.txt | 2 This page allows you to purge the cached tiles and maps that are used by the 'local' static maps ba…
|
| /plugin/openlayersmap/lang/es/ |
| D | admin_intro.txt | 2 FIXME (translate) This page allows you to purge the cached tiles and maps that are used by the 'loc…
|
| /plugin/calendar/classes/ |
| D | EventManager.php | 76 $cached = CalendarEventCache::getMonthEvents($namespace, $year, $month); 77 if ($cached !== null) { 78 return $cached;
|
| /plugin/tagfilter/script/ |
| D | jquery.history.js | 1 …cached=typeof h.getInternetExplorerMajorVersion.cached!="undefined"?h.getInternetExplorerMajorVers…
|
| /plugin/mdpage/vendor/cebe/markdown/tests/markdown-data/ |
| D | list_items_with_undefined_ref.md | 5 * [[\yii\caching\DbCache]]: uses a database table to store cached data. By default, it will create …
|