Home
last modified time | relevance | path

Searched refs:cache (Results 326 – 350 of 671) sorted by path

1...<<11121314151617181920>>...27

/plugin/gh/
H A Dsyntax.php113 // check if there's a usable cache
115 $cache = getCacheName($raw, '.ghplugin');
116 $tcache = @filemtime($cache);
122 $text = io_readFile($cache);
133 io_saveFile($cache, $text);
136 $text = io_readFile($cache);
/plugin/ghissues/helper/
H A DapiCacheInterface.php68 $cache = new cache_ghissues_api($apiURL);
69 $this->checkCacheFreshness($apiURL, $cache);
70 return ($cache->cache);
76 if ( !isset($cache) ) {
77 $cache = new cache_ghissues_api($apiURL);
90 if ( !isset($cache) ) {
91 $cache = new cache_ghissues_api($apiURL);
109 $lastETag = $cache->retrieveETag();
149 if (!$cache->storeCache($newTable)) {
268 class cache_ghissues_api extends cache {
[all …]
/plugin/givemeyouremail/
H A Dsyntax.php91 $renderer->info['cache'] = false;
/plugin/glossary/
H A DTODO.txt3 * cache
H A Dscript.js201 cache: false,
218 cache: false,
/plugin/google_adsense2/
H A Dsyntax.php92 $renderer->info['cache'] = false;
/plugin/gpsies/
H A Dsyntax.php87 $renderer->info['cache'] = false;
/plugin/graphgear/
H A Dload.php14 $cache = getcachename($xmlid,'graphgear'); variable
15 $time = @filemtime($cache);
27 echo io_readFile($cache);
H A Dsyntax.php71 $cache = getcachename($xmlid,'graphgear');
72 io_saveFile($cache,$xml);
/plugin/graphviz/
H A Dimg.php14 $cache = $plugin->_imgfile($data); variable
15 if(!$cache) _fail();
22 echo io_readFile($cache,false);
H A Dsyntax.php122 $cache = $this->_cachename($data,'png');
125 if(!file_exists($cache)){
128 $ok = $this->_run($data,$in,$cache);
130 $ok = $this->_remote($data,$in,$cache);
138 $cache = media_resize_image($cache,'png',$data['width'],$data['height']);
142 if(!file_exists($cache)) return false;
144 return $cache;
/plugin/groupmgr/
H A Dsyntax.php136 $renderer->info['cache'] = false;
/plugin/hipchat/
H A Dcomposer.lock29 "guzzle/cache": "self.version",
39 "guzzle/plugin-cache": "self.version",
57 "zendframework/zend-cache": "2.0.*",
/plugin/html2pdf/html2pdf/html2ps/
H A DChangeLog43 * Fixed: CSS cache returns references to CSS objects instead of
1051 systems (cache directory permissions check)
1204 * Fixed: 'cache' directory permissing check did not test the
H A Dbox.generic.php57 static $cache = array();
58 if (!isset($cache[$code])) {
59 $cache[$code] =& CSS::get_handler($code);
62 $cache[$code]->replace_array($value, $this->_css);
71 static $cache = array();
72 if (!isset($cache[$code])) {
73 $cache[$code] =& CSS::get_handler($code);
76 $value =& $cache[$code]->get($this->_css);
H A Dcss.state.class.php139 static $cache = array();
140 if (!isset($cache[$code])) {
141 $cache[$code] =& CSS::get_handler($code);
143 $value =& $cache[$code]->get($this->_state[0]);
166 static $cache = array();
167 if (!isset($cache[$code])) {
168 $cache[$code] =& CSS::get_handler($code);
171 $cache[$code]->clearDefaultFlags($this);
/plugin/htmlokay/
H A Daction.php56 $cache =$event->data;
58 if (!isset($cache->page)) return;
59 if (isset($cache->mode) && $cache->mode == 'metadata') return;
60 $depends = p_get_metadata($cache->page, 'relation htmlokay');
61 $meta_file = metaFN($cache->page,'.meta');
63 if(!empty($cache->depends['files'])) {
64 $cache->depends['files'][] = $meta_file;
68 else $cache->depends['files'] = array($meta_file);
H A Dhelper.php220 $cache = new cache($ID, ".xhtml");
221 trigger_event('PARSER_CACHE_USE', $cache);
/plugin/icalevents/vendor/sabre/vobject/
H A D.travis.yml18 cache:
20 - $HOME/.composer/cache
/plugin/icalevents/vendor/sabre/xml/
H A D.travis.yml13 cache:
15 - $HOME/.composer/cache
/plugin/icalevents/vendor/sabre/xml/lib/
H A DService.php275 static $cache = [];
277 if (!isset($cache[$str])) {
283 $cache[$str] = [
289 return $cache[$str];
/plugin/icon/
H A DSVG.php34 $cache = getCacheName(
39 if (!file_exists($cache) || filemtime($cache) < filemtime(__FILE__)) {
44 io_saveFile($cache, $svg);
47 return $cache;
/plugin/imagemap/
H A DREADME49 folder. After installing, you must refresh the style cache. Go to the
H A Dsyntax.php88 list($state,$type,$src,$title,$name,$align,$width,$height,$cache) = $data;
93 $src = ml($src,array('w'=>$width,'h'=>$height,'cache'=>$cache));
/plugin/imagemapping/
H A DREADME56 folder. After installing, you must refresh the style cache. Go to the

1...<<11121314151617181920>>...27