Home
last modified time | relevance | path

Searched refs:packageCache (Results 1 – 25 of 2010) sorted by relevance

12345678910>>...81

/dports/java/eclipse-ecj/eclipse-ecj-4.4.2_1/org/eclipse/jdt/internal/compiler/batch/
H A DClasspathJar.java38 protected Hashtable packageCache; field in ClasspathJar
148 if (this.packageCache != null) in isPackage()
149 return this.packageCache.containsKey(qualifiedPackageName); in isPackage()
151 this.packageCache = new Hashtable(41); in isPackage()
152 this.packageCache.put(Util.EMPTY_STRING, Util.EMPTY_STRING); in isPackage()
162 if (this.packageCache.containsKey(packageName)) in isPackage()
164 this.packageCache.put(packageName, packageName); in isPackage()
168 return this.packageCache.containsKey(qualifiedPackageName); in isPackage()
179 this.packageCache = null; in reset()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.core/org.eclipse.jdt.core/batch/org/eclipse/jdt/internal/compiler/batch/
H A DClasspathJar.java54 protected Set<String> packageCache; field in ClasspathJar
225 if (this.packageCache.contains(packageName)) in addToPackageCache()
227 this.packageCache.add(packageName); in addToPackageCache()
233 if (this.packageCache != null) in getModulesDeclaringPackage()
234 return singletonModuleNameIf(this.packageCache.contains(qualifiedPackageName)); in getModulesDeclaringPackage()
236 this.packageCache = new HashSet<>(41); in getModulesDeclaringPackage()
237 this.packageCache.add(Util.EMPTY_STRING); in getModulesDeclaringPackage()
243 return singletonModuleNameIf(this.packageCache.contains(qualifiedPackageName)); in getModulesDeclaringPackage()
294 this.packageCache = null; in reset()
H A DClasspathJep247.java52 protected Set<String> packageCache; field in ClasspathJep247
207 if (this.packageCache.contains(packageName)) in addToPackageCache()
209 this.packageCache.add(packageName); in addToPackageCache()
214 if (this.packageCache != null) in getModulesDeclaringPackage()
215 return singletonModuleNameIf(this.packageCache.contains(qualifiedPackageName)); in getModulesDeclaringPackage()
217 this.packageCache = new HashSet<>(41); in getModulesDeclaringPackage()
218 this.packageCache.add(Util.EMPTY_STRING); in getModulesDeclaringPackage()
259 return singletonModuleNameIf(this.packageCache.contains(qualifiedPackageName)); in getModulesDeclaringPackage()
H A DClasspathJmod.java140 if (this.packageCache != null) in getModulesDeclaringPackage()
141 return singletonModuleNameIf(this.packageCache.contains(qualifiedPackageName)); in getModulesDeclaringPackage()
143 this.packageCache = new HashSet<>(41); in getModulesDeclaringPackage()
144 this.packageCache.add(Util.EMPTY_STRING); in getModulesDeclaringPackage()
157 return singletonModuleNameIf(this.packageCache.contains(qualifiedPackageName)); in getModulesDeclaringPackage()
H A DClasspathMultiReleaseJar.java70 if (this.packageCache != null) in getModulesDeclaringPackage()
71 return singletonModuleNameIf(this.packageCache.contains(qualifiedPackageName)); in getModulesDeclaringPackage()
73 this.packageCache = new HashSet<>(41); in getModulesDeclaringPackage()
74 this.packageCache.add(Util.EMPTY_STRING); in getModulesDeclaringPackage()
117 return singletonModuleNameIf(this.packageCache.contains(qualifiedPackageName)); in getModulesDeclaringPackage()
H A DClasspathJep247Jdk12.java258 if (this.packageCache != null) in getModulesDeclaringPackage()
259 return singletonModuleNameIf(this.packageCache.contains(qualifiedPackageName)); in getModulesDeclaringPackage()
261 this.packageCache = new HashSet<>(41); in getModulesDeclaringPackage()
262 this.packageCache.add(Util.EMPTY_STRING); in getModulesDeclaringPackage()
303 return singletonModuleNameIf(this.packageCache.contains(qualifiedPackageName)); in getModulesDeclaringPackage()
/dports/lang/nim/nim-1.6.2/compiler/
H A Dpackagehandling.nim23 if conf.packageCache.hasKey(d):
24 #echo "from cache ", d, " |", packageCache[d], "|", path.splitFile.name
25 return conf.packageCache[d]
33 conf.packageCache[d] = result
/dports/deskutils/egroupware/egroupware/vendor/fxp/composer-asset-plugin/Tests/Package/Loader/
H A DLazyAssetPackageLoaderTest.php292 $packageCache = $this->lazyLoader->load($this->lazyPackage);
293 $this->assertFalse($packageCache);
364 $packageCache = $this->lazyLoader->load($this->lazyPackage);
365 $this->assertInstanceOf('Composer\Package\CompletePackageInterface', $packageCache);
366 $this->assertSame($package, $packageCache);
420 $packageCache = $this->lazyLoader->load($this->lazyPackage);
421 $this->assertFalse($packageCache);
/dports/net/google-cloud-sdk-app-engine-go/platform/google_appengine/goroot-1.9/src/cmd/go/internal/load/
H A Dpkg.go332 var packageCache = map[string]*Package{} var
335 for name := range packageCache {
336 delete(packageCache, name)
342 p := packageCache[arg]
344 delete(packageCache, p.Dir)
345 delete(packageCache, p.ImportPath)
353 p := packageCache[arg]
355 delete(packageCache, p.Dir)
356 delete(packageCache, p.ImportPath)
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.ui/org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/packageview/
H A DPackageCacheTest.java63 private PackageCache packageCache; field in PackageCacheTest
85 packageCache= new PackageCache(src); in setUp()
100 List<IPackageFragment> childrenOfPackage= packageCache.getDirectChildren(packageFragment); in testGetDirectChildren()
174 IPackageFragment singleChild= packageCache.getSingleChild(packageFragment); in actualSingleChildren()
193 if (packageCache.hasSingleChild(packageFragment)) { in actualPackagesWithSingleChild()
/dports/www/typo3-11/typo3_src-11.5.7/typo3/sysext/core/Classes/Package/
H A DPackageManager.php56 protected $packageCache; variable in TYPO3\\CMS\\Core\\Package\\PackageManager
128 * @param PackageCacheInterface $packageCache
131 public function setPackageCache(PackageCacheInterface $packageCache) argument
133 $this->packageCache = $packageCache;
158 return $this->packageCache->getIdentifier();
176 $this->packageCache->store($cacheEntry);
186 $cacheEntry = $this->packageCache->fetch();
753 $this->packageCache->invalidate();
/dports/devel/golint/lint-959b441/vendor/golang.org/x/tools/internal/lsp/cache/
H A Dview.go45 pcache *packageCache
59 type packageCache struct { struct
82 pcache: &packageCache{
/dports/www/typo3-11/typo3_src-11.5.7/typo3/sysext/core/Classes/Core/
H A DBootstrap.php109 $packageCache = static::createPackageCache($coreCache);
112 $packageCache
245 * @param PackageCacheInterface $packageCache
249 …createPackageManager($packageManagerClassName, PackageCacheInterface $packageCache): PackageManager argument
254 $packageManager->setPackageCache($packageCache);
/dports/www/mediawiki135/mediawiki-1.35.5/extensions/Scribunto/includes/engines/LuaCommon/lualib/
H A Dmw.lua3 local packageCache
28 if packageCache[modName] == 'missing' then
30 elseif packageCache[modName] == nil then
39 packageCache[modName] = 'missing'
43 packageCache[modName] = init
45 init = packageCache[modName]
89 packageCache = {}
/dports/www/mediawiki137/mediawiki-1.37.1/extensions/Scribunto/includes/engines/LuaCommon/lualib/
H A Dmw.lua3 local packageCache
28 if packageCache[modName] == 'missing' then
30 elseif packageCache[modName] == nil then
39 packageCache[modName] = 'missing'
43 packageCache[modName] = init
45 init = packageCache[modName]
89 packageCache = {}
/dports/www/mediawiki136/mediawiki-1.36.3/extensions/Scribunto/includes/engines/LuaCommon/lualib/
H A Dmw.lua3 local packageCache
28 if packageCache[modName] == 'missing' then
30 elseif packageCache[modName] == nil then
39 packageCache[modName] = 'missing'
43 packageCache[modName] = init
45 init = packageCache[modName]
89 packageCache = {}
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/annotation/
H A DRuntimeInlineAnnotationReader.java98 private final Map<Class<? extends Annotation>,Map<Package,Annotation>> packageCache = field in RuntimeInlineAnnotationReader
105 Map<Package,Annotation> cache = packageCache.get(a); in getPackageAnnotation()
108 packageCache.put(a,cache); in getPackageAnnotation()
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/annotation/
H A DRuntimeInlineAnnotationReader.java98 private final Map<Class<? extends Annotation>,Map<Package,Annotation>> packageCache = field in RuntimeInlineAnnotationReader
105 Map<Package,Annotation> cache = packageCache.get(a); in getPackageAnnotation()
108 packageCache.put(a,cache); in getPackageAnnotation()
/dports/www/typo3-9/typo3_src-9.5.31/typo3/sysext/core/Classes/Package/
H A DPackageManager.php188 $packageCache = [
198 'return ' . PHP_EOL . var_export($packageCache, true) . ';'
211 …ifier === null || !$this->coreCache->has($cacheEntryIdentifier) || !($packageCache = $this->coreCa…
214 $this->packageStatesConfiguration = $packageCache['packageStatesConfiguration'];
218 $this->packageAliasMap = $packageCache['packageAliasMap'];
219 $this->composerNameToPackageKeyMap = $packageCache['composerNameToPackageKeyMap'];
220 $this->packages = unserialize($packageCache['packageObjects'], [
229 $GLOBALS['TYPO3_LOADED_EXT'] = $packageCache['loadedExtArray'];
/dports/lang/gcc6-aux/gcc-6-20180516/libgo/go/cmd/go/
H A Dget.go118 for name := range packageCache {
119 delete(packageCache, name)
259 p := packageCache[arg]
261 delete(packageCache, p.Dir)
262 delete(packageCache, p.ImportPath)
/dports/lang/gnat_util/gcc-6-20180516/libgo/go/cmd/go/
H A Dget.go118 for name := range packageCache {
119 delete(packageCache, name)
259 p := packageCache[arg]
261 delete(packageCache, p.Dir)
262 delete(packageCache, p.ImportPath)
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/llgo/third_party/gofrontend/libgo/go/cmd/go/
H A Dget.go108 for name := range packageCache {
109 delete(packageCache, name)
249 p := packageCache[arg]
251 delete(packageCache, p.Dir)
252 delete(packageCache, p.ImportPath)
/dports/www/typo3-10/typo3_src-10.4.25/typo3/sysext/core/Classes/Package/
H A DPackageManager.php186 $packageCache = [
194 'return ' . PHP_EOL . var_export($packageCache, true) . ';'
207 …if ($cacheEntryIdentifier === null || ($packageCache = $this->coreCache->require($cacheEntryIdenti…
210 $this->packageStatesConfiguration = $packageCache['packageStatesConfiguration'];
214 $this->packageAliasMap = $packageCache['packageAliasMap'];
215 $this->composerNameToPackageKeyMap = $packageCache['composerNameToPackageKeyMap'];
216 $this->packages = unserialize($packageCache['packageObjects'], [
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.ui/org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/packageview/
H A DPackageCache.java75 PackageCache packageCache= getPackageCache(packageRoot); in getPackageCache() local
76 return packageCache; in getPackageCache()
/dports/ports-mgmt/octopkg/octopkg-0.3.1/src/
H A Dpackage.cpp517 …ListData> * Package::parsePackageTuple(const QStringList &packageTuples, QStringList &packageCache) in parsePackageTuple() argument
536 if (packageCache.contains(pkgName)) continue; in parsePackageTuple()
546 packageCache.append(pkgName); in parsePackageTuple()
601 if (packageTuples.count() > 0 && (!packageCache.contains(pkgName))) in parsePackageTuple()
613 packageCache.append(pkgName); in parsePackageTuple()
636 QStringList packageCache; in getRemotePackageList() local
649 res = parsePackageTuple(packageTuples, packageCache); in getRemotePackageList()
658 resComment = parsePackageTuple(packageTuplesComment, packageCache); in getRemotePackageList()

12345678910>>...81