Home
last modified time | relevance | path

Searched refs:cachePrefix (Results 1 – 25 of 76) sorted by relevance

1234

/dports/www/groupoffice/groupoffice-6.4.231-php-71/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/
H A DWincache.php35 private $cachePrefix = null; variable in PHPExcel_CachedObjectStorage_Wincache
58 if (wincache_ucache_exists($this->cachePrefix.$this->currentObjectID.'.cache')) {
59 …if (!wincache_ucache_set($this->cachePrefix.$this->currentObjectID.'.cache', $obj, $this->cacheTim…
111 $success = wincache_ucache_exists($this->cachePrefix.$pCoord.'.cache');
141 $obj = wincache_ucache_get($this->cachePrefix.$pCoord.'.cache', $success);
186 wincache_ucache_delete($this->cachePrefix.$pCoord.'.cache');
208 $obj = wincache_ucache_get($this->cachePrefix.$cellID.'.cache', $success);
220 $this->cachePrefix = $newCachePrefix;
255 if (is_null($this->cachePrefix)) {
257 $this->cachePrefix = substr(md5($baseUnique), 0, 8).'.';
[all …]
H A DMemcache.php35 private $cachePrefix = null; variable in PHPExcel_CachedObjectStorage_Memcache
65 …if (!$this->memcache->replace($this->cachePrefix . $this->currentObjectID . '.cache', $obj, null, …
66 …if (!$this->memcache->add($this->cachePrefix . $this->currentObjectID . '.cache', $obj, null, $thi…
115 $success = $this->memcache->get($this->cachePrefix.$pCoord.'.cache');
143 $obj = $this->memcache->get($this->cachePrefix . $pCoord . '.cache');
187 $this->memcache->delete($this->cachePrefix . $pCoord . '.cache');
208 $obj = $this->memcache->get($this->cachePrefix.$cellID.'.cache');
220 $this->cachePrefix = $newCachePrefix;
256 if (is_null($this->cachePrefix)) {
258 $this->cachePrefix = substr(md5($baseUnique), 0, 8) . '.';
[all …]
H A DAPC.php36 private $cachePrefix = null; variable in PHPExcel_CachedObjectStorage_APC
60 $this->cachePrefix . $this->currentObjectID . '.cache',
111 $success = apc_fetch($this->cachePrefix.$pCoord.'.cache');
139 $obj = apc_fetch($this->cachePrefix . $pCoord . '.cache');
184 apc_delete($this->cachePrefix.$pCoord.'.cache');
207 $obj = apc_fetch($this->cachePrefix . $cellID . '.cache');
219 $this->cachePrefix = $newCachePrefix;
253 if ($this->cachePrefix === null) {
255 $this->cachePrefix = substr(md5($baseUnique), 0, 8) . '.';
269 apc_delete($this->cachePrefix . $cellID . '.cache');
/dports/www/thirtybees/thirtybees-1.1.0/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/
H A DWincache.php35 private $cachePrefix = null; variable in PHPExcel_CachedObjectStorage_Wincache
58 if (wincache_ucache_exists($this->cachePrefix.$this->currentObjectID.'.cache')) {
59 …if (!wincache_ucache_set($this->cachePrefix.$this->currentObjectID.'.cache', $obj, $this->cacheTim…
111 $success = wincache_ucache_exists($this->cachePrefix.$pCoord.'.cache');
141 $obj = wincache_ucache_get($this->cachePrefix.$pCoord.'.cache', $success);
186 wincache_ucache_delete($this->cachePrefix.$pCoord.'.cache');
208 $obj = wincache_ucache_get($this->cachePrefix.$cellID.'.cache', $success);
220 $this->cachePrefix = $newCachePrefix;
255 if (is_null($this->cachePrefix)) {
257 $this->cachePrefix = substr(md5($baseUnique), 0, 8).'.';
[all …]
H A DMemcache.php35 private $cachePrefix = null; variable in PHPExcel_CachedObjectStorage_Memcache
65 …if (!$this->memcache->replace($this->cachePrefix . $this->currentObjectID . '.cache', $obj, null, …
66 …if (!$this->memcache->add($this->cachePrefix . $this->currentObjectID . '.cache', $obj, null, $thi…
115 $success = $this->memcache->get($this->cachePrefix.$pCoord.'.cache');
143 $obj = $this->memcache->get($this->cachePrefix . $pCoord . '.cache');
187 $this->memcache->delete($this->cachePrefix . $pCoord . '.cache');
208 $obj = $this->memcache->get($this->cachePrefix.$cellID.'.cache');
220 $this->cachePrefix = $newCachePrefix;
256 if (is_null($this->cachePrefix)) {
258 $this->cachePrefix = substr(md5($baseUnique), 0, 8) . '.';
[all …]
H A DAPC.php36 private $cachePrefix = null; variable in PHPExcel_CachedObjectStorage_APC
60 $this->cachePrefix . $this->currentObjectID . '.cache',
111 $success = apc_fetch($this->cachePrefix.$pCoord.'.cache');
139 $obj = apc_fetch($this->cachePrefix . $pCoord . '.cache');
184 apc_delete($this->cachePrefix.$pCoord.'.cache');
207 $obj = apc_fetch($this->cachePrefix . $cellID . '.cache');
219 $this->cachePrefix = $newCachePrefix;
253 if ($this->cachePrefix === null) {
255 $this->cachePrefix = substr(md5($baseUnique), 0, 8) . '.';
269 apc_delete($this->cachePrefix . $cellID . '.cache');
/dports/www/kanboard/kanboard-1.2.21/app/Decorator/
H A DMetadataCacheDecorator.php29 protected $cachePrefix; variable in Kanboard\\Decorator\\MetadataCacheDecorator
41 * @param string $cachePrefix
44 …public function __construct(CacheInterface $cache, MetadataModel $metadataModel, $cachePrefix, $en… argument
48 $this->cachePrefix = $cachePrefix;
94 return $this->cachePrefix.$this->entityId;
H A DUserCacheDecorator.php16 protected $cachePrefix = 'user_model:'; variable in Kanboard\\Decorator\\UserCacheDecorator
49 $key = $this->cachePrefix.$username;
H A DColumnRestrictionCacheDecorator.php16 protected $cachePrefix = 'column_restriction:'; variable in Kanboard\\Decorator\\ColumnRestrictionCacheDecorator
49 $key = $this->cachePrefix.$project_id.$role;
/dports/www/groupoffice/groupoffice-6.4.231-php-71/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Collection/
H A DCells.php59 private $cachePrefix; variable in PhpOffice\\PhpSpreadsheet\\Collection\\Cells
73 $this->cachePrefix = $this->getUniqueID();
132 $this->cache->delete($this->cachePrefix . $pCoord);
325 $oldCachePrefix = $newCollection->cachePrefix;
328 $newCollection->cachePrefix = $newCollection->getUniqueID();
330 … $newValues[str_replace($oldCachePrefix, $newCollection->cachePrefix, $oldKey)] = clone $value;
389 … $stored = $this->cache->set($this->cachePrefix . $this->currentCoordinate, $this->currentCell);
444 $cell = $this->cache->get($this->cachePrefix . $pCoord);
495 yield $this->cachePrefix . $coordinate;
/dports/www/dolibarr13/dolibarr-13.0.5/htdocs/includes/phpoffice/PhpSpreadsheet/Collection/
H A DCells.php58 private $cachePrefix; variable in PhpOffice\\PhpSpreadsheet\\Collection\\Cells
73 $this->cachePrefix = $this->getUniqueID();
134 $this->cache->delete($this->cachePrefix . $pCoord);
327 $oldCachePrefix = $newCollection->cachePrefix;
330 $newCollection->cachePrefix = $newCollection->getUniqueID();
332 … $newValues[str_replace($oldCachePrefix, $newCollection->cachePrefix, $oldKey)] = clone $value;
393 … $stored = $this->cache->set($this->cachePrefix . $this->currentCoordinate, $this->currentCell);
452 $cell = $this->cache->get($this->cachePrefix . $pCoord);
503 yield $this->cachePrefix . $coordinate;
/dports/www/dolibarr/dolibarr-14.0.3/htdocs/includes/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Collection/
H A DCells.php58 private $cachePrefix; variable in PhpOffice\\PhpSpreadsheet\\Collection\\Cells
73 $this->cachePrefix = $this->getUniqueID();
134 $this->cache->delete($this->cachePrefix . $pCoord);
327 $oldCachePrefix = $newCollection->cachePrefix;
330 $newCollection->cachePrefix = $newCollection->getUniqueID();
332 … $newValues[str_replace($oldCachePrefix, $newCollection->cachePrefix, $oldKey)] = clone $value;
393 … $stored = $this->cache->set($this->cachePrefix . $this->currentCoordinate, $this->currentCell);
452 $cell = $this->cache->get($this->cachePrefix . $pCoord);
503 yield $this->cachePrefix . $coordinate;
/dports/www/ilias/ILIAS-5.4.25/libs/composer/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Collection/
H A DCells.php59 private $cachePrefix; variable in PhpOffice\\PhpSpreadsheet\\Collection\\Cells
73 $this->cachePrefix = $this->getUniqueID();
132 $this->cache->delete($this->cachePrefix . $pCoord);
325 $oldCachePrefix = $newCollection->cachePrefix;
328 $newCollection->cachePrefix = $newCollection->getUniqueID();
330 … $newValues[str_replace($oldCachePrefix, $newCollection->cachePrefix, $oldKey)] = clone $value;
389 … $stored = $this->cache->set($this->cachePrefix . $this->currentCoordinate, $this->currentCell);
444 $cell = $this->cache->get($this->cachePrefix . $pCoord);
495 yield $this->cachePrefix . $coordinate;
/dports/finance/prestashop/prestashop/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Collection/
H A DCells.php58 private $cachePrefix; variable in PhpOffice\\PhpSpreadsheet\\Collection\\Cells
73 $this->cachePrefix = $this->getUniqueID();
134 $this->cache->delete($this->cachePrefix . $pCoord);
327 $oldCachePrefix = $newCollection->cachePrefix;
330 $newCollection->cachePrefix = $newCollection->getUniqueID();
332 … $newValues[str_replace($oldCachePrefix, $newCollection->cachePrefix, $oldKey)] = clone $value;
393 … $stored = $this->cache->set($this->cachePrefix . $this->currentCoordinate, $this->currentCell);
452 $cell = $this->cache->get($this->cachePrefix . $pCoord);
503 yield $this->cachePrefix . $coordinate;
/dports/www/moodle310/moodle/lib/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Collection/
H A DCells.php58 private $cachePrefix; variable in PhpOffice\\PhpSpreadsheet\\Collection\\Cells
73 $this->cachePrefix = $this->getUniqueID();
134 $this->cache->delete($this->cachePrefix . $pCoord);
327 $oldCachePrefix = $newCollection->cachePrefix;
330 $newCollection->cachePrefix = $newCollection->getUniqueID();
332 … $newValues[str_replace($oldCachePrefix, $newCollection->cachePrefix, $oldKey)] = clone $value;
393 … $stored = $this->cache->set($this->cachePrefix . $this->currentCoordinate, $this->currentCell);
452 $cell = $this->cache->get($this->cachePrefix . $pCoord);
503 yield $this->cachePrefix . $coordinate;
/dports/www/moodle311/moodle/lib/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Collection/
H A DCells.php59 private $cachePrefix; variable in PhpOffice\\PhpSpreadsheet\\Collection\\Cells
73 $this->cachePrefix = $this->getUniqueID();
132 $this->cache->delete($this->cachePrefix . $pCoord);
325 $oldCachePrefix = $newCollection->cachePrefix;
328 $newCollection->cachePrefix = $newCollection->getUniqueID();
330 … $newValues[str_replace($oldCachePrefix, $newCollection->cachePrefix, $oldKey)] = clone $value;
389 … $stored = $this->cache->set($this->cachePrefix . $this->currentCoordinate, $this->currentCell);
444 $cell = $this->cache->get($this->cachePrefix . $pCoord);
495 yield $this->cachePrefix . $coordinate;
/dports/www/moodle39/moodle/lib/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Collection/
H A DCells.php58 private $cachePrefix; variable in PhpOffice\\PhpSpreadsheet\\Collection\\Cells
73 $this->cachePrefix = $this->getUniqueID();
134 $this->cache->delete($this->cachePrefix . $pCoord);
327 $oldCachePrefix = $newCollection->cachePrefix;
330 $newCollection->cachePrefix = $newCollection->getUniqueID();
332 … $newValues[str_replace($oldCachePrefix, $newCollection->cachePrefix, $oldKey)] = clone $value;
393 … $stored = $this->cache->set($this->cachePrefix . $this->currentCoordinate, $this->currentCell);
452 $cell = $this->cache->get($this->cachePrefix . $pCoord);
503 yield $this->cachePrefix . $coordinate;
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/rt.equinox.p2/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/repository/
H A DCacheManagerTest.java41 private final String cachePrefix = "content"; //$NON-NLS-1$ field in CacheManagerTest
62 File cache = cacheManager.createCache(repositoryLocation, cachePrefix, new NullProgressMonitor()); in testRepositoryDowngraded()
68 …File cache2 = cacheManager.createCache(repositoryLocation, cachePrefix, new NullProgressMonitor()); in testRepositoryDowngraded()
76 File cache = cacheManager.createCache(repositoryLocation, cachePrefix, new NullProgressMonitor()); in testClientDifferentTimeZone()
83 …File cache2 = cacheManager.createCache(repositoryLocation, cachePrefix, new NullProgressMonitor()); in testClientDifferentTimeZone()
91 File cache = cacheManager.createCache(repositoryLocation, cachePrefix, new NullProgressMonitor()); in testRepositoryUpdate()
97 …File cache2 = cacheManager.createCache(repositoryLocation, cachePrefix, new NullProgressMonitor()); in testRepositoryUpdate()
/dports/databases/mariadb105-client/mariadb-10.5.15/storage/columnstore/columnstore/storage-manager/src/
H A DPrefixCache.cpp78 cachePrefix = conf->getValue("Cache", "path"); in PrefixCache()
79 if (cachePrefix.empty()) in PrefixCache()
84 cachePrefix /= firstDir; in PrefixCache()
88 bf::create_directories(cachePrefix); in PrefixCache()
133 bf::directory_iterator dir(cachePrefix); in populate()
148 else if (p != cachePrefix/downloader->getTmpPath()) in populate()
334 return cachePrefix; in getCachePath()
468 if (!bf::exists(cachePrefix / *it)) in _makeSpace()
470 assert(bf::exists(cachePrefix / *it)); in _makeSpace()
500 bf::path cachedFile = cachePrefix / *it; in _makeSpace()
[all …]
H A DCache.cpp79 cachePrefix = conf->getValue("Cache", "path"); in Cache()
80 if (cachePrefix.empty()) in Cache()
88 bf::create_directories(cachePrefix); in Cache()
92 … logger->log(LOG_CRIT, "Failed to create %s, got: %s", cachePrefix.string().c_str(), e.what()); in Cache()
151 return cachePrefix; in getCachePath()
161 return cachePrefix/prefix; in getCachePath()
/dports/databases/mariadb105-server/mariadb-10.5.15/storage/columnstore/columnstore/storage-manager/src/
H A DPrefixCache.cpp78 cachePrefix = conf->getValue("Cache", "path"); in PrefixCache()
79 if (cachePrefix.empty()) in PrefixCache()
84 cachePrefix /= firstDir; in PrefixCache()
88 bf::create_directories(cachePrefix); in PrefixCache()
133 bf::directory_iterator dir(cachePrefix); in populate()
148 else if (p != cachePrefix/downloader->getTmpPath()) in populate()
334 return cachePrefix; in getCachePath()
468 if (!bf::exists(cachePrefix / *it)) in _makeSpace()
470 assert(bf::exists(cachePrefix / *it)); in _makeSpace()
500 bf::path cachedFile = cachePrefix / *it; in _makeSpace()
[all …]
H A DCache.cpp79 cachePrefix = conf->getValue("Cache", "path"); in Cache()
80 if (cachePrefix.empty()) in Cache()
88 bf::create_directories(cachePrefix); in Cache()
92 … logger->log(LOG_CRIT, "Failed to create %s, got: %s", cachePrefix.string().c_str(), e.what()); in Cache()
151 return cachePrefix; in getCachePath()
161 return cachePrefix/prefix; in getCachePath()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.ServiceModel/System.ServiceModel.Channels/
H A DCachingCompiler.cs54 public const string cachePrefix = "@@Assembly"; field in System.ServiceModel.Channels.CachingCompiler
96 CompilerResults results = (CompilerResults) cache [cachePrefix + key]; in Compile()
104 bool acquired = AcquireCompilationTicket (cachePrefix + key, out ticket); in Compile()
108 results = (CompilerResults) cache [cachePrefix + key]; in Compile()
138 cache.Insert (cachePrefix + key, results, new CacheDependency (deps)); in Compile()
142 ReleaseCompilationTicket (cachePrefix + key); in Compile()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Web/System.Web.Compilation/
H A DCachingCompiler.cs49 const string cachePrefix = "@@Assembly"; field in System.Web.Compilation.CachingCompiler
61 string [] cacheKeys = new string [] { cachePrefix + filename }; in InsertType()
74 string key = cachePrefix + compiler.Parser.InputFile; in Compile()
120 string key = cachePrefix + compiler.Parser.PhysicalPath; in Compile()
172 CompilerResults results = (CompilerResults) cache [cachePrefix + key]; in Compile()
180 bool acquired = AcquireCompilationTicket (cachePrefix + key, out ticket); in Compile()
184 results = (CompilerResults) cache [cachePrefix + key]; in Compile()
216 cache.Insert (cachePrefix + key, results, new CacheDependency (deps)); in Compile()
220 ReleaseCompilationTicket (cachePrefix + key); in Compile()
/dports/www/elgg/elgg-3.3.23/vendor/cakephp/database/Schema/
H A DCachedCollection.php78 $cachePrefix = $this->_connection->configName();
81 $cachePrefix = $config['cacheKeyPrefix'];
84 return $cachePrefix . '_' . $name;

1234