Home
last modified time | relevance | path

Searched refs:cacheDir (Results 1 – 11 of 11) sorted by relevance

/plugin/davcal/vendor/sabre/dav/bin/
H A Dnaturalselection22 def run(cacheDir, threshold, sleep=5, simulate=False, min_erase = 0):
24 bytes = getbytesleft(cacheDir,threshold)
29 dir = os.listdir(cacheDir)
32 path = cacheDir + '/' + file
120 cacheDir = args[0]
123 print "Cache directory:", cacheDir
124 free = getfreespace(cacheDir);
130 cacheDir,
/plugin/tiledblog/
H A Dsyntax.php60 $cacheDir = $savedir."cache/tiledblog/";
61 if (!is_dir ($cacheDir)) {
62 @mkdir ($cacheDir);
63 @chmod ($cacheDir, 0775);
67 $this->sample ($renderer, $ns, $cacheDir);
70 $this->tile ($renderer, $ns, $cacheDir);
75 function sample (Doku_Renderer $renderer, $ns, $cacheDir) { argument
76 $filename = $cacheDir.md5($ns)."-sample.cache";
94 function tile (Doku_Renderer $renderer, $ns, $cacheDir) { argument
101 $filename = $cacheDir.md5($ns)."-tile.cache";
H A Dajax.php23 $cacheDir = $savedir."cache/tiledblog/"; variable
26 $baseName = $cacheDir.md5 ($_REQUEST ['tiledblog']['ns']);
34 $pathDir = rtrim ($cacheDir, "/") . "/";
/plugin/feedaggregator/
H A Daction.php60 $cacheDir = fullpath($conf['cachedir'].'/feedaggregator');
61 io_mkdir_p($cacheDir);
63 $simplepie->set_cache_location($cacheDir);
86 io_saveFile($cacheDir.'/output.html', $html);
/plugin/findologicxmlexport/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/
H A DFileCacheReader.php68 * @param string $cacheDir
73 public function __construct(Reader $reader, $cacheDir, $debug = false, $umask = 0002) argument
85 if (!is_dir($cacheDir) && !@mkdir($cacheDir, 0777 & (~$this->umask), true)) {
86 …gumentException(sprintf('The directory "%s" does not exist and could not be created.', $cacheDir));
89 $this->dir = rtrim($cacheDir, '\\/');
/plugin/findologicxmlexport/vendor/jms/serializer/src/
H A DSerializerBuilder.php121 private $cacheDir; variable in JMS\\Serializer\\SerializerBuilder
245 $this->cacheDir = $dir;
508 if (null !== $this->cacheDir) {
509 $this->createDir($this->cacheDir . '/annotations');
510 $annotationsCache = new FilesystemCache($this->cacheDir . '/annotations');
531 } elseif (null !== $this->cacheDir) {
532 $this->createDir($this->cacheDir . '/metadata');
533 $metadataFactory->setCache(new FileCache($this->cacheDir . '/metadata'));
/plugin/statistics/inc/
H A DBrowscap.php162 public $cacheDir = null; variable in Browscap
234 $this->cacheDir = dirname($cache_dir);
236 $this->cacheDir = $cache_dir;
239 $this->cacheDir .= DIRECTORY_SEPARATOR;
262 $cache_file = $this->cacheDir . $this->cacheFilename;
263 $ini_file = $this->cacheDir . $this->iniFilename;
487 $ini_path = $this->cacheDir . $this->iniFilename;
488 $cache_path = $this->cacheDir . $this->cacheFilename;
H A DStatisticsBrowscap.class.php14 $this->cacheDir = $conf['cachedir'] . '/';
/plugin/glossary/
H A Dglossary.class.php26 var $cacheDir; // cache directory for specific namespace variable in glossary
85 $this->cacheDir = $this->cacheRootDir.$this->md5ns."/";
86 glossary::createDirIsNeeded ($this->cacheDir);
89 $this->sampleFile = $this->cacheDir."sample.cache";
90 $this->listFile = $this->cacheDir."list.cache";
389 @unlink ($this->cacheDir."poll-".md5($md5id).".cache");
421 $cacheDir = $this->cacheRootDir.$nsMd5."/";
422 if (!is_dir ($cacheDir))
424 $pathDirObj = opendir ($cacheDir);
428 $pathFile = $cacheDir.$file;
[all …]
/plugin/zip/
H A Dadmin.php81 'cacheDir' => TMP_DIR
/plugin/schedule/
H A Dschedules.class.php34 var $cacheDir; // cache directory variable in schedules
97 $this->cacheDir = $this->scheduleRoot->cacheRootDir.$this->md5ns.'/';
176 if (!is_dir ($this->cacheDir))
178 $filename = $this->cacheDir.md5 ($key).'.cache';
189 scheduleRoot::createDirIsNeeded ($this->cacheDir);
190 $filename = $this->cacheDir.md5 ($key).'.cache';
199 $pathDir = $this->cacheDir;