Home
last modified time | relevance | path

Searched full:cache (Results 101 – 125 of 2069) sorted by last modified time

12345678910>>...83

/dokuwiki/inc/
H A Dcache.php3 use dokuwiki\Cache\Cache as NewCache;
4 use dokuwiki\Cache\CacheParser;
5 use dokuwiki\Cache\CacheInstructions;
6 use dokuwiki\Cache\CacheRenderer;
10 * @deprecated since 2019-02-02 use \dokuwiki\Cache\Cache instead!
12 class cache extends NewCache
22 * @deprecated since 2019-02-02 use \dokuwiki\Cache\CacheParser instead!
36 * @deprecated since 2019-02-02 use \dokuwiki\Cache\CacheRendere
11 class cache extends \dokuwiki\Cache\Cache global() class
[all...]
H A Dconfutils.php416 if (defined('DOKU_UNITTEST')) $useHeading = null; // don't cache during unit tests
H A DTaskRunner.php89 * Trims the recent changes cache (or imports the old changelog) as needed.
107 // Trims the recent changes cache to the last $conf['changes_days'] recent
154 // however the extra robustness in making the changelog cache self-correcting is worth it
/dokuwiki/vendor/geshi/geshi/src/geshi/
H A Dstonescript.php61 'animation', 'application', 'cache', 'camera', 'debug',
94 //Cache
H A Dtsql.php138 'BREAK', 'BROWSE', 'BUCKET_COUNT', 'BULK', 'BY', 'CACHE', 'CALL', 'CASCADE', 'CASCADED', 'CASE', 'CAST', 'CATALOG', 'CHARACTER', 'CHECK', 'CHECKCONSTRAINTS',
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/
H A DBigInteger.php
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/SFTP/
H A DStream.php616 * See <http://php.net/fflush>. Always returns true because \phpseclib3\Net\SFTP doesn't cache stuff before writing
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSFTP.php249 * Stat Cache
252 * we'll cache the results.
271 * Stat Cache Flag
717 * Disable the stat cache
726 * Enable the stat cache
735 * Clear the stat cache
1279 * Save files / directories to cache
1322 * Remove files / directories from cache
1349 * Checks cache for path
2894 * Uses cache i
[all...]
/dokuwiki/vendor/simplepie/simplepie/src/Cache/
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...]
H A DCallableNameFilter.php44 namespace SimplePie\Cache;
47 * Creating a cache filename with callables
65 * Method to create cache filename with.
81 * @param string $name The name for the cache will be most likly an url with query string
83 * @return string the new cache name
H A DMySQL.php46 namespace SimplePie\Cache;
78 * Cache ID
85 * Create a new cache object
88 * @param string $name Unique ID for the cache
105 $this->options = array_replace_recursive($this->options, \SimplePie\Cache::parse_URL($location));
149 * Save data to the cache
151 * @param array|\SimplePie\SimplePie $data Data to store in the cache. If passed a SimplePie object, only cache the $data property
270 * Retrieve the data saved to the cache
327 * Retrieve the last modified time for the cache
[all...]
H A DRedis.php46 namespace SimplePie\Cache;
71 protected $cache; variable in SimplePie\\Cache\\Redis
81 * Cache name
88 * Create a new cache object
91 * @param string $name Unique ID for the cache
96 //$this->cache = \flow\simple\cache\Redis::getRedisClientInstance();
97 $parsed = \SimplePie\Cache::parse_URL($location);
106 $this->cache = $redis;
121 * @param NativeRedis $cache
123 setRedisClient(NativeRedis $cache) global() argument
[all...]
/dokuwiki/vendor/simplepie/simplepie/
H A DCHANGELOG.md14 - New method `SimplePie\SimplePie::set_cache()` for providing a PSR-16 cache implementation by @Art4 in [#742](https://github.com/simplepie/simplepie/pull/742)
15 - New method `SimplePie\SimplePie::set_cache_namefilter()` for customize the cache key in [#762](https://github.com/simplepie/simplepie/pull/762)
16 - New class `SimplePie\Cache\CallableNameFilter` to provide a `callable` to customize the cache key in [#762](https://github.com/simplepie/simplepie/pull/762)
45 - The method `SimplePie\SimplePie::force_cache_fallback()` is deprecated, expired cache will not be used anymore
46 - The class `SimplePie\Cache` is deprecated, use implementation of `SimplePie\SimplePie::set_cache()` instead
47 - The class `SimplePie\Cache\DB` is deprecated, use implementation of `Psr\SimpleCache\CacheInterface` instead
48 - The class `SimplePie\Cache\File` is deprecated, use implementation of `Psr\SimpleCache\CacheInterface` instead
49 - The class `SimplePie\Cache\Memcache` is deprecated, use implementation of `Psr\SimpleCache\CacheInterface` instead
50 - The class `SimplePie\Cache\Memcache
[all...]
H A DREADME.markdown48 2. Make sure that the cache folder inside of the demo folder is server-writable.
/dokuwiki/vendor/simplepie/simplepie/src/
H A DCache.php48 use SimplePie\Cache\Base;
51 * Used to create cache objects
61 class Cache class
64 * Cache handler classes
71 'mysql' => 'SimplePie\Cache\MySQL',
72 'memcache' => 'SimplePie\Cache\Memcache',
73 'memcached' => 'SimplePie\Cache\Memcached',
74 'redis' => 'SimplePie\Cache\Redis'
85 * Create a new SimplePie\Cache object
88 * @param string $filename Unique identifier for cache objec
[all...]
H A DIRI.php717 static $cache;
719 $cache = null;
722 if (!$cache) {
723 $cache = [];
728 } elseif (isset($cache[$iri])) {
738 ] = $cache[$iri];
754 $cache[$iri] = [
797 static $cache;
799 $cache = null;
802 if (!$cache) {
[all...]
/dokuwiki/vendor/simplepie/simplepie/library/SimplePie/Cache/
H A DMySQL.php46 use SimplePie\Cache\MySQL;
48 class_exists('SimplePie\Cache\MySQL');
50 // @trigger_error(sprintf('Using the "SimplePie_Cache_MySQL" class is deprecated since SimplePie 1.7.0, use "SimplePie\Cache\MySQL" instead.'), \E_USER_DEPRECATED);
53 /** @deprecated since SimplePie 1.7.0, use "SimplePie\Cache\MySQL" instead */
H A DRedis.php6 * SimplePie Redis Cache Extension
15 use SimplePie\Cache\Redis;
17 class_exists('SimplePie\Cache\Redis');
19 // @trigger_error(sprintf('Using the "SimplePie_Cache_Redis" class is deprecated since SimplePie 1.7.0, use "SimplePie\Cache\Redis" instead.'), \E_USER_DEPRECATED);
22 /** @deprecated since SimplePie 1.7.0, use "SimplePie\Cache\Redis" instead */
/dokuwiki/vendor/geshi/geshi/src/
H A Dgeshi.php1594 * or the removed keyword will stay in cache and still be highlighted! On the other hand
1634 //NEW in 1.0.8, cache keyword regexp
1923 //Build the style cache needed to highlight numbers appropriate
1978 // cache symbol regexp
2039 // cache optimized regexp for keyword matching
2040 // remove old cache
2074 //Build the parse cache needed to highlight numbers appropriate
2187 // make sure the parse cache is up2date
2219 // make sure the cache is setup properly
2473 // cache commen
[all...]
/dokuwiki/conf/
H A Ddokuwiki.php161 $conf['readdircache'] = 0; //time cache in second for the readdir operation, 0 to deactivate.
/dokuwiki/lib/plugins/authldap/
H A Dauth.php23 /* @var array $users User data cache */
/dokuwiki/vendor/geshi/geshi/
H A DCHANGELOG496 * Cache Symbol Search Regexp and make Symbol Highlighting faster (milian)
620 - Optimized COMMENT_REGEXP by using an incremental regexp cache (Milian Wolff, BenBE)
/dokuwiki/lib/plugins/config/lang/de-informal/
H A Dlang.php166 $lang['jquerycdn'] = 'Sollen die jQuery und jQuery UI Skriptdateien von einem CDN geladen werden? Das verursacht zusätzliche HTTP Anfragen, aber die Dateien werden möglicherweise schneller geladen und Nutzer haben sie vielleicht bereits im Cache.';
/dokuwiki/lib/plugins/config/lang/en/
H A Dlang.php124 $lang['cachetime'] = 'Maximum age for cache (sec)';
139 $lang['fetchsize'] = 'Maximum size (bytes) fetch.php may download from external URLs, eg. to cache and resize external images.';
280 $lang['readdircache'] = 'Maximum age for readdir cache (sec)';
/dokuwiki/lib/plugins/config/lang/es/
H A Dlang.php230 $lang['readdircache'] = 'Tiempo máximo para la cache readdir (en segundos)';

12345678910>>...83