Home
last modified time | relevance | path

Searched full:cache (Results 51 – 75 of 2069) sorted by relevance

12345678910>>...83

/plugin/mantis/lib/
H A Dclass.wsdlcache.php43 * @param string $cache_dir directory for cache-files
54 * creates the filename used to cache a wsdl instance
57 * @return string The filename used to cache the instance
75 * gets a wsdl instance from the cache
88 $this->debug("Expired $wsdl ($filename) from cache");
95 $this->debug("$wsdl ($filename) not in cache (1)");
103 $this->debug("Got $wsdl ($filename) from cache");
106 $this->debug("$wsdl ($filename) not in cache (2)");
119 * @param string $filename The Filename of the Cache to lock
138 * adds a wsdl instance to the cache
[all …]
/dokuwiki/vendor/simplepie/simplepie/src/Cache/
H A DPsr16.php46 namespace SimplePie\Cache;
52 * Caches data into a PSR-16 cache implementation
61 * PSR-16 cache implementation
65 private $cache; variable in SimplePie\\Cache\\Psr16
68 * PSR-16 cache implementation
70 * @param CacheInterface $cache
72 public function __construct(CacheInterface $cache) argument
74 $this->cache = $cache;
78 * Fetches a value from the cache
[all...]
H A DBase.php46 namespace SimplePie\Cache;
49 * Base for cache objects
51 * Classes to be used with {@see \SimplePie\Cache::register()} are expected
61 * Feed cache type
68 * Image cache type
75 * Create a new cache object
78 * @param string $name Unique ID for the cache
84 * Save data to the cache
86 * @param array|\SimplePie\SimplePie $data Data to store in the cache. If passed a SimplePie object, only cache th
[all...]
/plugin/combo/vendor/salesforce/handlebars-php/src/Handlebars/Cache/
H A DAPC.php14 namespace Handlebars\Cache;
15 use Handlebars\Cache; alias
17 class APC implements Cache
21 * Get cache for $name if exist.
23 * @param string $name Cache id
25 * @return mixed data on hit, boolean false on cache not found
36 * Set a cache
38 * @param string $name cache id
49 * Remove cache
51 * @param string $name Cache i
[all...]
/plugin/footer/
H A Daction.php184 * Check for pages changes and eventually purge cache.
204 /** @var cache_parser $cache */
206 $cache = &$event->data;
209 if(!isset($cache->page)) return;
211 //purge only xhtml cache
213 if($cache->mode != "xhtml") return;
227 //Cache per user
233 //Cache per groups
243 $cache->key .= "#".$newkey;
245 $cache->cache = getCacheName($cache->key, $cache->ext);
[all …]
/template/twigstarter/vendor/twig/twig/src/Cache/
H A DCacheInterface.php12 namespace Twig\Cache;
15 * Interface implemented by cache classes.
18 * benefit from the PHP opcode cache. This interface is mostly useful if you
26 * Generates a cache key for the given template class name.
36 * Writes the compiled template to cache.
38 * @param string $key The cache key
44 * Loads a template from the cache.
46 * @param string $key The cache key
53 * @param string $key The cache key
60 class_alias('Twig\Cache\CacheInterface', 'Twig_CacheInterface');
/plugin/latexport/helpers/
H A Dinternal_media.php21 * @param string $cache cache|recache|nocache
40 /** cache|recache|nocache */
41 private $cache; variable in InternalMedia
53 * @param string $cache cache|recache|nocache
56 function __construct($src, $title, $align, $width, $height, $cache, $linking) { argument
63 $this->cache = $cache;
93 /** cache|recache|nocache */
95 return $this->cache;
/plugin/pwaoffline/
H A Dsw.js1 const cacheName = 'dokuwiki PWA cache';
38 caches.open(cacheName).then(function (cache) { argument
46 return cache.add(pageData.link)
76 // only cache important modes
92 // don't cache modes other than show
95 return caches.open(cacheName).then(function (cache) { argument
96 cache.put(request, response.clone());
107 return caches.open(cacheName).then(function (cache) { argument
108 cache.put(request, response.clone());
134 return caches.open(cacheName).then(function (cache) { argument
[all …]
/plugin/findologicxmlexport/vendor/jms/metadata/src/
H A DMetadataFactory.php7 use Metadata\Cache\CacheInterface;
21 private $cache; variable in Metadata\\MetadataFactory
60 public function setCache(CacheInterface $cache): void argument
62 $this->cache = $cache;
84 // check the cache
85 if (null !== $this->cache) {
97 $this->cache->evict($classMetadata->name);
111 if (null !== $this->cache) {
112 $this->cache->put($classMetadata);
118 if (null !== $this->cache && !$this->debug) {
[all …]
/plugin/combo/vendor/salesforce/handlebars-php/src/Handlebars/
H A DCache.php3 * Cache Interface
18 interface Cache interface
22 * Get cache for $name if exist.
24 * @param string $name Cache id
26 * @return mixed data on hit, boolean false on cache not found
31 * Set a cache
33 * @param string $name cache id
41 * Remove cache
43 * @param string $name Cache id
/plugin/sqlcomp/
H A Dsyntax.php193 $Cache = null;
197 $Cache = unserialize($Cache);
204 $Cache = $Cache["Table"];
213 $Cache["Table"] = $rs;
215 $Cache = serialize($Cache);
218 fwrite($handle,$Cache);
246 if(is_array($Cache)){
248 $Cache = $Cache[1];
265 if(isset($Cache)){
341 if($New == $Cache){
[all …]
/plugin/filelisting/action/
H A Dcache.php10 use dokuwiki\Cache\CacheRenderer;
43 /** @var CacheRenderer $cache */
44 $cache = $event->data;
46 if(!isset($cache->page)) return;
47 //purge only xhtml cache
48 if($cache->mode != 'xhtml') return;
50 $filelisting = p_get_metadata($cache->page, 'filelisting');
54 //and the cache invalidates every files change - just ignore it.
55 $cache->_nocache = true;
/plugin/stale/
H A DREADME.md1 # Stale Plugin - Making your Dokuwiki Cache Stale
5 …lugin](https://www.dokuwiki.org/plugin:stale) that aims to delete or make all DokuWiki Cache stale.
8 …e only the modified date, not the content) in order to make the rendering cache stale (ie HTML,...)
19 … that the plugins that are using the cache system, must make the cache dependent of their info fil…
21 Why ? Because these files are cache dependencies and if touched will then prohibit the use of the c…
25 You can stale the cache:
34 …* As [per request 2](https://github.com/ComboStrap/stale/issues/2), Make the cache stale, reload t…
/plugin/findologicxmlexport/vendor/jms/metadata/tests/
H A DMetadataFactoryTest.php124 $cache = $this->createMock('Metadata\Cache\CacheInterface');
125 $cache
131 $cache
136 $factory->setCache($cache);
217 $cache = $this->createMock('Metadata\Cache\CacheInterface');
218 $cache
226 $cache
235 $factory->setCache($cache);
258 $cache = $this->createMock('Metadata\Cache\CacheInterface');
259 $cache
[all …]
/plugin/findologicxmlexport/vendor/jms/metadata/tests/Cache/
H A DFileCacheTest.php5 namespace Metadata\Tests\Cache;
7 use Metadata\Cache\FileCache;
28 $cache = new FileCache($this->dir);
30 $this->assertNull($cache->load(TestObject::class));
31 $cache->put($metadata = new ClassMetadata(TestObject::class));
33 $this->assertEquals($metadata, $cache->load(TestObject::class));
35 $cache->evict(TestObject::class);
36 $this->assertNull($cache->load(TestObject::class));
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/
H A DEnvironmentTest.php12 use Twig\Cache\FilesystemCache;
75 'cache' => false,
192 $options = ['cache' => $cache, 'auto_reload' => false, 'debug' => false];
222 $cache = $this->getMockBuilder('\Twig\Cache\CacheInterface')->getMock();
224 … $twig = new Environment($loader, ['cache' => $cache, 'auto_reload' => true, 'debug' => false]);
228 $cache->expects($this->once())
231 $cache->expects($this->once())
249 $cache = $this->getMockBuilder('\Twig\Cache\CacheInterface')->getMock();
251 … $twig = new Environment($loader, ['cache' => $cache, 'auto_reload' => true, 'debug' => false]);
277 $cache = $this->getMockBuilder('\Twig\Cache\CacheInterface')->getMock();
[all …]
/plugin/tindexmenu/
H A Daction.php87 * Check for pages changes and eventually purge cache.
94 $cache = &$event->data;
96 if (!isset($cache->page)) return;
97 //purge only xhtml cache
98 if ($cache->mode != "xhtml") return;
105 //Cache per user
108 //Cache per groups
113 $cache->key .= "#".$newkey;
114 $cache->cache = getCacheName($cache->key, $cache->ext);
118 if (@filemtime($cache->cache) < @filemtime($conf['cachedir'].'/purgefile')) {
/plugin/cacherevisionseraser/lang/it/
H A Dlang.php13 $lang['menu'] = 'Cancella cache/revisioni';
14 $lang['title'] = 'Gestore pulizia Cache/Revisioni';
15 $lang['desc'] = 'Cancella cache del wiki e/o vecchie revisioni';
24 $lang['erasecachebtn'] = 'Avvio (cache)';
28 $lang['cachedesc'] = '[[ Opzioni Cache ]]';
32 $lang['cachedisabled'] = 'La cancellazione della cache � stata disabilita';
36 $lang['extdesc_js'] = 'files .js (Javascript presente in cache)';
37 $lang['extdesc_css'] = 'files .css (CSS-Sheet presente in cache)';
38 $lang['extdesc_mediaP'] = 'files .media.* (files media presenti in cache)';
62 $lang['cache_word'] = 'cache';
[all …]
/plugin/html2pdf/html2pdf/html2ps/
H A Dimage.class.php3 // Note that REAL cache should check for Last-Modified HTTP header at least;
5 // and curl extension is very rare, this implementation of cache is very simple.
6 // Cache is cleared after the script finishes it work!
12 // containing all cached objects; note that cache consumes memory!
118 // We cannot use the $url as an cache image name as it could be longer than
125 // Checks if cache directory is available
129 // image cache directory cannot be created or accessed
136 if (!mkdir(CACHE_DIR, 0700)) { die("Cache directory cannot be created"); }
154 // omg. Cache directory exists, but useless
156 die("Check cache directory permissions; cannot either read or write to directory cache");
[all …]
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Asset/
H A DAssetCache.php14 use Assetic\Cache\CacheInterface;
26 private $cache; variable in Assetic\\Asset\\AssetCache
28 public function __construct(AssetInterface $asset, CacheInterface $cache) argument
31 $this->cache = $cache;
52 if ($this->cache->has($cacheKey)) {
53 $this->asset->setContent($this->cache->get($cacheKey));
59 $this->cache->set($cacheKey, $this->asset->getContent());
65 if ($this->cache->has($cacheKey)) {
66 return $this->cache->get($cacheKey);
70 $this->cache->set($cacheKey, $content);
[all …]
/plugin/notification/action/
H A Dcache.php39 /** @var cache_renderer $cache */
40 $cache = $event->data;
42 if(!$cache->page) return;
43 //purge only xhtml cache
44 if($cache->mode != 'xhtml') return;
47 $notification = p_get_metadata($cache->page, 'plugin notification');
51 $cache->_nocache = true;
63 $cache->depends['files'] = array_merge($cache->depends['files'], $data['dependencies']);
64 $cache->_nocache = $data['_nocache'];
/plugin/prosemirror/parser/
H A DImageNode.php53 if (!empty($this->attrs['cache']) && $this->attrs['cache'] !== 'cache') {
54 $query[] = $this->attrs['cache'];
73 $cache = null, argument
85 $cache,
95 self::resolveMedia($src, $title, $align, $width, $height, $cache, $linking));
107 $cache = null, argument
123 if ($cache !== null && $cache
142 resolveMedia($src, $title = null, $align = null, $width = null, $height = null, $cache = null, $linking = null) global() argument
[all...]
/plugin/rrdgraph/
H A Dhelper.php16 * This class is derived from the DokuWiki cache class.
20 abstract class cache_rrdgraphbase extends cache {
32 * @param String $ext The extension of the cache file.
72 * This cache class manages the rrd recipe cache.
73 * This cache only times out if the recipe changes.
118 * @returns Returns the name and path of the cache file.
121 return $this->cache;
268 //-- Put the file into the cache.
270 $cache->storeCache(serialize($recipeData));
285 if ($cache->useCache()) {
[all …]
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Cache/
H A DCacheInterface.php12 namespace Assetic\Cache;
15 * Interface for a cache backend.
22 * Checks if the cache has a value for a key.
26 * @return Boolean Whether the cache has a value for this key
35 * @return string|null The value in the cache
40 * Sets a value in the cache.
43 * @param string $value The value to cache
48 * Removes a value from the cache.
/plugin/cacherevisionseraser/lang/es/
H A Dlang.php13 $lang['menu'] = 'Borrar cache/revisiones';
14 $lang['title'] = 'Borrar Cache/Revisiones';
15 $lang['desc'] = 'Borrar el cache del wiki y las revisiones viejas';
24 $lang['erasecachebtn'] = 'Comenzar (cache)';
28 $lang['cachedesc'] = '[[ Opciones de Cache ]]';
35 $lang['extdesc_xhtml'] = 'Archivos .xhtml (HTML en cache de páginas wiki)';
36 $lang['extdesc_js'] = 'Archivos .js (Javascript en cache)';
37 $lang['extdesc_css'] = 'Archivos .css (Hojas de estilo CSS en cache)';
38 $lang['extdesc_mediaP'] = 'Archivos .media.* (Archivos multimedia en cache)';
62 $lang['cache_word'] = 'cache';
[all …]

12345678910>>...83