Home
last modified time | relevance | path

Searched full:cache (Results 76 – 100 of 2069) sorted by last modified time

12345678910>>...83

/dokuwiki/inc/parser/
H A Drenderer.php34 'cache' => true, // may the rendered result cached?
67 $this->info['cache'] = true;
98 $this->info['cache'] = false;
671 * @param string $cache cache|recache|nocache
680 $cache = null,
693 * @param string $cache cache|recache|nocache
702 $cache = null,
715 * @param string $cache cach
606 internalmedia($src, $title = null, $align = null, $width = null, $height = null, $cache = null, $linking = null) global() argument
621 externalmedia($src, $title = null, $align = null, $width = null, $height = null, $cache = null, $linking = null) global() argument
635 internalmedialink($src, $title = null, $align = null, $width = null, $height = null, $cache = null) global() argument
649 externalmedialink($src, $title = null, $align = null, $width = null, $height = null, $cache = null) global() argument
[all...]
/dokuwiki/lib/exe/
H A Dfetch.php29 $CACHE = calc_cache($INPUT->str('cache'));
43 // check for permissions, preconditions and cache external files
53 'cache' => $CACHE,
118 $data['cache'],
27 $CACHE = calc_cache($INPUT->str('cache')); global() variable
H A Djquery.php3 use dokuwiki\Cache\Cache; alias
21 * uses cache or fills it
25 $cache = new Cache('jquery', '.js');
33 // check cache age & handle conditional request
34 // This may exit if a cache can be used
35 $cache_ok = $cache->useCache(['files' => $cache_files]);
36 http_cached($cache->cache,
[all...]
/dokuwiki/inc/
H A Dinit.php291 'cachedir' => 'cache',
317 // hardcoded changelog because it is now a cache that lives in meta
H A Dauth.php535 * @param bool $recache set to true to refresh the cache
570 static $cache = [];
572 if (!isset($cache[$cachekey]) || $recache) {
581 $cache[$cachekey] = $ok;
584 return $cache[$cachekey];
596 * @param bool $recache set to true to refresh the cache
842 $cache =& $cache_authname;
849 if (!isset($cache[$name][$skip_group])) {
851 $cache[$name][$skip_group] = '@' . preg_replace_callback(
857 $cache[
[all...]
/dokuwiki/lib/plugins/config/lang/pt/
H A Dlang.php113 $lang['cachetime'] = 'Idade máxima para cache (seg)';
124 $lang['fetchsize'] = 'Tamanho máximo (bytes) que o fetch.php pode baixar de URLs externas, ex. para cache e redimensionamento de imagens externas.';
174 $lang['jquerycdn'] = 'Os arquivos de script jQuery e jQuery UI devem ser carregados de um CDN? Isso gera solicitações HTTP adicionais mas os arquivos são carregados mais rapidamente e os usuários já podem tê-los armazenados em cache.';
226 $lang['readdircache'] = 'Idade máxima para a cache readdir (seg)';
/dokuwiki/lib/plugins/config/lang/sk/
H A Dlang.php99 $lang['cachetime'] = 'Maximálne trvanie cache (sek)';
204 $lang['readdircache'] = 'Maximálne trvanie readdir cache (sek)';
/dokuwiki/lib/plugins/config/lang/sr/
H A Dlang.php176 $lang['readdircache'] = 'Максимално време трајања за readdir cache (у секундама)';
/dokuwiki/vendor/composer/
H A DClassLoader.php359 * APCu prefix to use to cache found/not-found classes, if the extension is enabled.
/dokuwiki/lib/plugins/extension/helper/
H A Dextension.php771 * Purge the cache by touching the main configuration file
H A Drepository.php10 use dokuwiki\Cache\Cache;
26 * Initialize the repository (cache), fetches data for all installed plugins
37 $cache = new Cache('##extension_manager##' . $name, '.repo');
42 !$cache->useCache(['age' => 3600 * 24])
57 $cache = new Cache('##extension_manager##' . $extension['plugin'], '.repo');
58 $cache->storeCache(serialize($extension));
80 $cache
9 use dokuwiki\Cache\Cache; global() alias
[all...]
/dokuwiki/vendor/simplepie/simplepie/src/Cache/
H A DBaseDataCache.php46 namespace SimplePie\Cache;
51 * Adapter for deprecated \SimplePie\Cache\Base implementations
62 private $cache; variable in SimplePie\\Cache\\BaseDataCache
64 public function __construct(Base $cache) argument
66 $this->cache = $cache;
70 * Fetches a value from the cache.
77 * @param string $key The unique key of this item in the cache.
80 * @return array|mixed The value of the item from the cache, or $default in case of cache mis
[all...]
H A DDB.php46 namespace SimplePie\Cache;
122 class_alias('SimplePie\Cache\DB', 'SimplePie_Cache_DB');
H A DDataCache.php46 namespace SimplePie\Cache;
51 * Subset of PSR-16 Cache client for caching data arrays
66 * Fetches a value from the cache.
73 * @param string $key The unique key of this item in the cache.
76 * @return array|mixed The value of the item from the cache, or $default in case of cache miss.
84 * Persists data in the cache, uniquely referenced by a key with an optional expiration TTL time.
105 * Delete an item from the cache by its unique key.
112 * @param string $key The unique cache key of the item to delete.
H A DFile.php46 namespace SimplePie\Cache;
87 * Create a new cache object
90 * @param string $name Unique ID for the cache
102 * Save data to the cache
104 * @param array|\SimplePie\SimplePie $data Data to store in the cache. If passed a SimplePie object, only cache the $data property
121 * Retrieve the data saved to the cache
134 * Retrieve the last modified time for the cache
154 * Remove the cache
167 class_alias('SimplePie\Cache\Fil
[all...]
/dokuwiki/vendor/simplepie/simplepie/library/SimplePie/Cache/
H A DMemcached.php46 use SimplePie\Cache\Memcached;
48 class_exists('SimplePie\Cache\Memcached');
50 // @trigger_error(sprintf('Using the "SimplePie_Cache_Memcached" class is deprecated since SimplePie 1.7.0, use "SimplePie\Cache\Memcached" instead.'), \E_USER_DEPRECATED);
53 /** @deprecated since SimplePie 1.7.0, use "SimplePie\Cache\Memcached" instead */
/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
/dokuwiki/vendor/simplepie/simplepie/src/
H A DSanitize.php49 use SimplePie\Cache\Base;
50 use SimplePie\Cache\BaseDataCache;
51 use SimplePie\Cache\CallableNameFilter;
52 use SimplePie\Cache\DataCache;
53 use SimplePie\Cache\NameFilter;
80 public $cache_location = './cache';
96 private $cache = null; variable in SimplePie\\Sanitize
99 * @var int Cache duration (in seconds)
136 public function pass_cache_data($enable_cache = true, $cache_location = './cache', $cache_name_function = 'md5', $cache_class = 'SimplePie\Cache', DataCach argument
[all...]
H A DSimplePie.php50 use SimplePie\Cache\Base;
51 use SimplePie\Cache\BaseDataCache;
52 use SimplePie\Cache\CallableNameFilter;
53 use SimplePie\Cache\DataCache;
54 use SimplePie\Cache\NameFilter;
55 use SimplePie\Cache\Psr16;
516 private $cache = null; variable in SimplePie\\SimplePie
525 * @var bool Force SimplePie to fallback to expired cache, if enabled,
533 * @var int Cache duration (in seconds)
540 * @var int Auto-discovery cache duratio
889 set_cache(CacheInterface $cache) global() argument
1712 fetch_data(& $cache) global() argument
[all...]
/dokuwiki/vendor/marcusschwarz/lesserphp/
H A Dlessc.inc.php
/dokuwiki/vendor/openpsa/universalfeedcreator/lib/Creator/
H A DMBOXCreator.php98 * Generate a filename for the feed cache file. Overridden from FeedCreator to prevent XML data types.
100 * @return string the feed cache filename
/dokuwiki/vendor/geshi/geshi/src/geshi/
H A Dpostgresql.php55 'CACHE','CALLED','CASCADE','CASCADED','CASE','CAST','CATALOG',
H A Dprogress.php93 'SAVE CACHE','SCROLL','SEEK','SET',
267 'BYTES-READ','BYTES-WRITTEN','CACHE','CALL-NAME',
321 'KEEP-SECURITY-CACHE','KEY','KEYS','LABEL',
355 'PERSISTENT','PERSISTENT-CACHE-DISABLED','PERSISTENT-PROCEDURE','PFCOLOR',
/dokuwiki/
H A Dfeed.php15 use dokuwiki\Cache\Cache;
36 // the feed is dynamic - we need a cache for each combo
44 $cache = new Cache($key, '.feed');
46 // prepare cache depends
53 header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
57 if ($cache->useCache($depends)) {
58 http_conditionalRequest($cache->getTime());
59 if ($conf['allowdebug']) header("X-CacheUsed: $cache
13 use dokuwiki\Cache\Cache; global() alias
39 $cache = new Cache($key, '.feed'); global() variable
[all...]
/dokuwiki/inc/Utf8/
H A DTable.php87 // FIXME should we cache this to file system?

12345678910>>...83