Searched +full:depends -(+path:inc +path:lang) -(+path:lib +path:plugins +path:lang) -(+path:lib +path:tpl +path:dokuwiki +path:lang) (Results 1 – 25 of 43) sorted by relevance
12
| /dokuwiki/inc/Cache/ |
| H A D | CacheRenderer.php | 27 // meta cache older than file it depends on? 64 // 0 : cache never expires (can be overridden) - no need to set depends['age'] 69 $this->depends['age'] = isset($this->depends['age']) ? 70 min($this->depends['age'], $conf['cachetime']) : $conf['cachetime']; 81 $this->depends['age'] = isset($this->depends['age']) ? 82 min($this->depends['age'], $valid['age']) : $valid['age']; 86 $this->depends['files'] = empty($this->depends['files']) ? 88 array_merge($files, $this->depends['files']);
|
| H A D | Cache.php | 18 public $depends = []; // array containing cache dependency information, variable in dokuwiki\\Cache\\Cache 69 * @param array $depends array of cache dependencies, support dependecies: 76 public function useCache($depends = []) argument 78 $this->depends = $depends; 97 * this function processes the following keys in the depends array 115 if (!empty($this->depends['purge'])) { 123 if (!empty($this->depends['age']) && ((time() - $this->_time) > $this->depends['age'])) { 127 if (!empty($this->depends['files'])) { 128 foreach ($this->depends['files'] as $file) { 131 } // cache older than files it depends on? [all …]
|
| H A D | CacheParser.php | 58 $this->depends['files'] = empty($this->depends['files']) ? 60 array_merge($files, $this->depends['files']);
|
| H A D | CacheImageMod.php | 42 * Caching depends on the source and the wiki config 49 $this->depends['files'] = array_merge(
|
| /dokuwiki/ |
| H A D | feed.php | 46 // prepare cache depends 47 $depends['files'] = getConfigFiles('main'); 48 $depends['age'] = $conf['rss_update']; 49 $depends['purge'] = $INPUT->bool('purge'); 57 if ($cache->useCache($depends)) {
|
| /dokuwiki/_test/tests/inc/ |
| H A D | io_savefile.test.php | 40 * @depends test_ext_zlib 47 * @depends test_ext_bz2
|
| H A D | io_readfile.test.php | 38 * @depends test_ext_zlib 48 * @depends test_ext_bz2
|
| H A D | io_getSizeFile.test.php | 38 * @depends test_ext_zlib 50 * @depends test_ext_bz2
|
| H A D | sort_with_collator.test.php | 212 * @depends testIntlExtensionAvailability 228 * @depends testIntlExtensionAvailability 246 * @depends testIntlExtensionAvailability 265 * @depends testIntlExtensionAvailability 287 * @depends testIntlExtensionAvailability 310 * @depends testIntlExtensionAvailability 336 * @depends testIntlExtensionAvailability
|
| H A D | io_replaceinfile.test.php | 52 * @depends test_ext_zlib 59 * @depends test_ext_bz2
|
| H A D | cache_use.test.php | 47 $this->assertNotEmpty($this->cache->depends['purge']);
|
| H A D | common_pageinfo.test.php | 153 … //compression in $info['filepath'] determined by wikiFN depends also on if the page exist
|
| /dokuwiki/_test/tests/test/ |
| H A D | reset.test.php | 27 * @depends testFirstRun
|
| H A D | globals.test.php | 30 * @depends testFirstRun
|
| H A D | scope.test.php | 20 * @depends testFirstRun
|
| /dokuwiki/vendor/geshi/geshi/ |
| H A D | build.xml | 40 <target name="pack" depends="" 66 <target name="pack-pear" depends="" 160 <target name="release" depends="check,pack,pack-pear,deploy-sf,gittag" 170 <target name="deploy-sf" depends="check,pack"
|
| /dokuwiki/inc/Extension/ |
| H A D | SyntaxPlugin.php | 92 * the output. How this is done depends on the renderer used (specified 95 * The contents of the $data array depends on what the handler() function above
|
| /dokuwiki/vendor/simplepie/simplepie/src/ |
| H A D | Cache.php | 50 * @return Base Type of object depends on scheme of `$location`
|
| /dokuwiki/conf/ |
| H A D | mysql.conf.php.example | 63 * %{pass} encrypted or clear text password (depends on 'encryptPass') 140 * %{pass} password (encrypted or clear text, depends on 'encryptPass') 216 * %{pass} password (encrypted or clear text, depends on 'encryptPass')
|
| /dokuwiki/lib/plugins/authpdo/_test/ |
| H A D | sqlite.test.php | 94 * @depends test_pdo_sqlite_support 113 * @depends test_pdo_sqlite_support
|
| H A D | mysql.test.php | 280 * @depends test_requirements
|
| /dokuwiki/inc/parser/ |
| H A D | xhtml.php | 219 * @return void|string writes to doc attribute or returns html depends on $returnonly 827 * @return void|string writes to doc attribute or returns html depends on $returnonly 846 * @return void|string writes to doc attribute or returns html depends on $returnonly 877 * @return void|string writes to doc attribute or returns html depends on $returnonly 966 * @return void|string writes to doc attribute or returns html depends on $returnonly 1031 * @return void|string writes to doc attribute or returns html depends on $returnonly 1088 * @return void|string writes to doc attribute or returns html depends on $returnonly 1129 * @return void|string writes to doc attribute or returns html depends on $returnonly 1183 * @return void|string writes to doc attribute or returns html depends on $return 1268 * @return void|string writes to doc attribute or returns html depends on $return
|
| /dokuwiki/vendor/geshi/geshi/src/geshi/ |
| H A D | cmake.php | 92 'COMPARE', 'CONFIGURE', 'DEFINED', 'DEPENDS', 'DIRECTORY',
|
| H A D | dos.php | 32 * cases it depends on the contex or enviroment status).
|
| /dokuwiki/lib/plugins/extension/ |
| H A D | Extension.php | 351 * Get a list of extension ids this extension depends on 357 return $this->getTag('depends', []);
|
12