Home
last modified time | relevance | path

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

12345678910>>...83

/plugin/include/
H A Daction.php5 * Action plugin component, for cache validity determination
208 * prepare the cache object for default _useCache action
213 /* @var cache_renderer $cache */
214 $cache =& $event->data;
216 if(!isset($cache->page)) return;
217 if(!isset($cache->mode) || $cache->mode == 'i') return;
219 $depends = p_get_metadata($cache->page, 'plugin_include');
222 dbglog('---- PLUGIN INCLUDE CACHE DEPENDS START ----');
224 dbglog('---- PLUGIN INCLUDE CACHE DEPEND
[all...]
/plugin/findologicxmlexport/vendor/twig/twig/src/Loader/
H A DArrayLoader.php20 * When using this loader with a cache mechanism, you should know that a new cache
21 * key is generated each time a template content "changes" (the cache key being the
22 * source code of the template). If you don't want to see your cache grows out of
23 * control, you need to take care of clearing the old cache file by yourself.
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Processor/
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 = [];
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 = [];
/plugin/mdpage/vendor/cebe/markdown/
H A D.travis.yml19 # cache composer cache
20 cache:
22 - $HOME/.composer/cache
/plugin/pycode/conf/
H A Dmetadata.php18 // "cache" = (int) value of the checkbox input:
19 // 0 = enable cache
20 // 1 = disable cache (default)
21 $meta["cache"] = array("onoff");
/plugin/latex/lang/en/
H A Dlang.php6 $lang['menu'] = 'LaTeX plugin tasks (clean image cache, diagnose problems)';
17 …r or image size), force-refresh (CTRL-F5) your browser's cache on each page (or clear your cache f…
26 $lang['fail7'] = 'Fail: error saving to cache.';
/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;
101 //Cache per user
106 //Cache per groups
112 $cache->key .= "#" . $newkey;
113 $cache
[all...]
/plugin/blog/
H A Daction.php217 * Expire the renderer cache of archive pages whenever a page is updated or a comment or linkback is added
226 /** @var cache_parser $cache */
227 $cache = $event->data;
228 if (!in_array($cache->mode, array('xhtml', 'metadata'))) return;
229 $page = $cache->page;
233 if (strpos($cache->file, $conf['datadir']) === 0) {
234 $page = pathID(substr($cache->file, strlen($conf['datadir'])+1));
244 $cache->depends['files'][] = $conf['cachedir'].'/purgefile';
245 $cache->depends['files'][] = $conf['metadir'].'/_comments.changes';
246 $cache
[all...]
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/
H A DFileCachingTest.php33 …nvironment(new ArrayLoader(['index' => 'index', 'index2' => 'index2']), ['cache' => $this->tmpDir]…
50 $this->assertFileExists($cacheFileName, 'Cache file does not exist.');
62 $this->assertFileExists($cacheFileName, 'Cache file does not exist.');
64 $this->assertFileNotExists($cacheFileName, 'Cache file was not cleared.');
/plugin/dokutexit/
H A Dlatex.php1344 function calc_cache($cache) { argument
1347 if(strtolower($cache) == 'nocache') return 0; //never cache
1348 if(strtolower($cache) == 'recache') return $conf['cachetime']; //use standard cache
1349 return -1; //cache endless
1368 if( $cache == 0 || // never cache
1369 ($mtime != 0 && $cache != -1) || // exists but no endless cache
1371 ($cache != -1 && $mtime < time()-$cache) // expired
1508 $ret .= ml($src,array('w'=>$width,'h'=>$height,'cache'=>$cache));
1536 //$ret .= ml($src,array('w'=>$width,'h'=>$height,'cache'=>$cache), true, '&', true);
1562 $ret .= '<img src="'.ml($src,array('w'=>$width,'h'=>$height,'cache'=>$cache)).'"';
[all …]
/dokuwiki/vendor/simplepie/simplepie/library/SimplePie/
H A DCache.php46 use SimplePie\Cache; alias
48 class_exists('SimplePie\Cache');
50 // @trigger_error(sprintf('Using the "SimplePie_Cache" class is deprecated since SimplePie 1.7.0, use "SimplePie\Cache" instead.'), \E_USER_DEPRECATED);
53 /** @deprecated since SimplePie 1.7.0, use "SimplePie\Cache" instead */
54 class SimplePie_Cache extends Cache
/plugin/doi/Resolver/
H A DAbstractResolver.php24 * The extension used for the cache file
91 $cache = getCacheName($id, '.' . $ext . '.json');
92 if (@filemtime($cache) > filemtime($file)) {
93 return json_decode(file_get_contents($cache), true);
97 file_put_contents($cache, json_encode($result));
/plugin/move/action/
H A Drewrite.php79 * Handle the cache events, it looks if a page needs to be rewritten so it can expire the cache of the page
86 /** @var $cache cache_parser */
87 $cache = $event->data;
88 $id = $cache->page;
91 $path = $cache->file;
105 $cache->depends['purge'] = true;
/plugin/refnotes/
H A Daction.php449 /* Touch local config file to expire the cache */
569 $cache = $event->data;
571 if (isset($cache->page) && ($cache->page == $ID)) {
572 if (isset($cache->mode) && (($cache->mode == 'xhtml') || ($cache->mode == 'i'))) {
576 $this->addDependencies($cache, array_keys($meta['dbref']));
583 * Add extra dependencies to the cache
585 private function addDependencies($cache,
556 addDependencies($cache, $depends) global() argument
[all...]
/plugin/extranet/
H A Daction.php68 $cache = $event->data;
69 $cache->key .= '#extranet';
70 $cache->cache = getCacheName($cache->key, $cache->ext);
/plugin/rrdgraph/inc/
H A Derrorimage.php28 * The output is directly sento to the webbrowser. It is equiped with cache inhibition headers.
56 header("Cache-Control: no-store, no-cache, must-revalidate, max-age=0");
57 header("Cache-Control: post-check=0, pre-check=0", false);
58 header("Pragma: no-cache");
/template/twigstarter/vendor/twig/twig/src/Loader/
H A DArrayLoader.php20 * When using this loader with a cache mechanism, you should know that a new cache
21 * key is generated each time a template content "changes" (the cache key being the
22 * source code of the template). If you don't want to see your cache grows out of
23 * control, you need to take care of clearing the old cache file by yourself.
/plugin/authgooglesheets/vendor/psr/cache/src/
H A DInvalidArgumentException.php3 namespace Psr\Cache;
6 * Exception interface for invalid cache arguments.
9 * exception class which implements Psr\Cache\InvalidArgumentException.
/plugin/rrdgraph/
H A Daction.php90 …* This handler is called BEFORE the cache is used and determins the dependencies of the page. It c…
97 $cache = &$event->data;
99 if (! (isset ( $cache->page ) && isset ( $cache->mode )))
102 …$dependencies = p_get_metadata ( $cache->page, 'plugin_' . $this->getPluginName () . ' dependencie…
106 $cache->depends ['files'] [] = wikiFN ( $dependency );
127 … //-- Load the rrdgraph helper. This helper contains the cache manager and other stuff used here.
/plugin/davcal/vendor/sabre/dav/lib/DAV/
H A DTree.php27 * This is the node cache. Accessed nodes are stored here.
32 protected $cache = []; variable in Sabre\\DAV\\Tree
56 if (isset($this->cache[$path])) return $this->cache[$path];
80 $this->cache[$path] = $node;
199 $this->cache[$basePath . $child->getName()] = $child;
227 // flushing the entire cache
229 foreach ($this->cache as $nodePath => $node) {
231 unset($this->cache[$nodePath]);
238 * This method tells the tree system to pre-fetch and cache a list of
273 $this->cache[$fullPath] = $childNode;
/plugin/diagrams/script/
H A DDiagramsEditor.js61 cache: 'no-cache',
89 cache: 'no-cache',
128 cache: 'no-cache',
158 cache: 'no-cache',
166 * Save the PNG cache for a diagram
182 cache
[all...]
/plugin/btable/
H A Dexport.php89 $cache = & $cache_cleanid;
91 // check if it's already in the memory cache
92 if (isset($cache[$raw_id])) {
93 return $cache[$raw_id];
125 $cache[$raw_id] = $id;
/plugin/authphpbb3/
H A Dauth.php58 // @var cache DokuWiki cache object.
60 // @var int Cache duration.
62 // @var int Cache extension file name.
64 // @var int Cache unit constant (in seconds).
257 $cache = new cache('authphpbb3_getUserData_' . $user, $this->_cache_ext_name);
263 $cache->removeCache();
297 $cache->storeCache(serialize($user_data));
299 $cache = null;
555 * Gets the phpBB configuration cache.
557 * @return object Cache of the phpBB configuration.
[all …]
/plugin/authgooglesheets/vendor/psr/cache/
H A DREADME.md1 PSR Cache
7 Note that this is not a Cache implementation of its own. It is merely an
8 interface that describes a Cache implementation. See the specification for more

12345678910>>...83