Home
last modified time | relevance | path

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 DCacheRenderer.php27 // 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 DCache.php18 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 DCacheParser.php58 $this->depends['files'] = empty($this->depends['files']) ?
60 array_merge($files, $this->depends['files']);
H A DCacheImageMod.php42 * Caching depends on the source and the wiki config
49 $this->depends['files'] = array_merge(
/dokuwiki/
H A Dfeed.php46 // 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 Dio_savefile.test.php40 * @depends test_ext_zlib
47 * @depends test_ext_bz2
H A Dio_readfile.test.php38 * @depends test_ext_zlib
48 * @depends test_ext_bz2
H A Dio_getSizeFile.test.php38 * @depends test_ext_zlib
50 * @depends test_ext_bz2
H A Dsort_with_collator.test.php212 * @depends testIntlExtensionAvailability
228 * @depends testIntlExtensionAvailability
246 * @depends testIntlExtensionAvailability
265 * @depends testIntlExtensionAvailability
287 * @depends testIntlExtensionAvailability
310 * @depends testIntlExtensionAvailability
336 * @depends testIntlExtensionAvailability
H A Dio_replaceinfile.test.php52 * @depends test_ext_zlib
59 * @depends test_ext_bz2
H A Dcache_use.test.php47 $this->assertNotEmpty($this->cache->depends['purge']);
H A Dcommon_pageinfo.test.php153 … //compression in $info['filepath'] determined by wikiFN depends also on if the page exist
/dokuwiki/_test/tests/test/
H A Dreset.test.php27 * @depends testFirstRun
H A Dglobals.test.php30 * @depends testFirstRun
H A Dscope.test.php20 * @depends testFirstRun
/dokuwiki/vendor/geshi/geshi/
H A Dbuild.xml40 <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 DSyntaxPlugin.php92 * 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 DCache.php50 * @return Base Type of object depends on scheme of `$location`
/dokuwiki/conf/
H A Dmysql.conf.php.example63 * %{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 Dsqlite.test.php94 * @depends test_pdo_sqlite_support
113 * @depends test_pdo_sqlite_support
H A Dmysql.test.php280 * @depends test_requirements
/dokuwiki/inc/parser/
H A Dxhtml.php219 * @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 Dcmake.php92 'COMPARE', 'CONFIGURE', 'DEFINED', 'DEPENDS', 'DIRECTORY',
H A Ddos.php32 * cases it depends on the contex or enviroment status).
/dokuwiki/lib/plugins/extension/
H A DExtension.php351 * Get a list of extension ids this extension depends on
357 return $this->getTag('depends', []);

12