Home
last modified time | relevance | path

Searched refs:lookupKey (Results 1 – 25 of 250) sorted by relevance

12345678910

/dports/dns/dnsdist/dnsdist-1.6.1/
H A Dtest-dnsdistkvs_cc.cc24 auto keys = lookupKey->getKeys(dq); in doKVSChecks()
45 keys = lookupKey->getKeys(v6ToMask); in doKVSChecks()
61 auto keys = lookupKey->getKeys(dq); in doKVSChecks()
70 keys = lookupKey->getKeys(notPDNS); in doKVSChecks()
78 keys = lookupKey->getKeys(subdomain); in doKVSChecks()
98 auto keys = lookupKey->getKeys(dq); in doKVSChecks()
106 keys = lookupKey->getKeys(notPDNS); in doKVSChecks()
134 auto keys = lookupKey->getKeys(dq); in doKVSChecks()
145 keys = lookupKey->getKeys(notPDNS); in doKVSChecks()
171 auto keys = lookupKey->getKeys(dq); in doKVSChecks()
[all …]
/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.web.portlet/src/main/java/org/springframework/web/portlet/handler/
H A DAbstractMapBasedHandlerMapping.java71 K lookupKey = getLookupKey(request); in getHandlerInternal() local
72 Object handler = this.handlerMap.get(lookupKey); in getHandlerInternal()
74 logger.debug("Key [" + lookupKey + "] -> handler [" + handler + "]"); in getHandlerInternal()
126 registerHandler(lookupKey, handler, null); in registerHandler()
140 …protected void registerHandler(K lookupKey, Object handler, PortletRequestMappingPredicate predica… in registerHandler() argument
143 Assert.notNull(lookupKey, "Lookup key must not be null"); in registerHandler()
156 Object mappedHandler = this.handlerMap.get(lookupKey); in registerHandler()
159 throw new IllegalStateException("Cannot map handler [" + handler + "] to key [" + lookupKey + in registerHandler()
170 this.handlerMap.put(lookupKey, predicateMap); in registerHandler()
176 this.handlerMap.put(lookupKey, resolvedHandler); in registerHandler()
[all …]
/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.jdbc/src/main/java/org/springframework/jdbc/datasource/lookup/
H A DIsolationLevelDataSourceRouter.java104 protected Object resolveSpecifiedLookupKey(Object lookupKey) { in resolveSpecifiedLookupKey() argument
105 if (lookupKey instanceof Integer) { in resolveSpecifiedLookupKey()
106 return lookupKey; in resolveSpecifiedLookupKey()
108 else if (lookupKey instanceof String) { in resolveSpecifiedLookupKey()
109 String constantName = (String) lookupKey; in resolveSpecifiedLookupKey()
117 …id lookup key - needs to be isolation level Integer or isolation level name String: " + lookupKey); in resolveSpecifiedLookupKey()
H A DAbstractRoutingDataSource.java116 Object lookupKey = resolveSpecifiedLookupKey(entry.getKey()); in afterPropertiesSet() local
118 this.resolvedDataSources.put(lookupKey, dataSource); in afterPropertiesSet()
134 protected Object resolveSpecifiedLookupKey(Object lookupKey) { in resolveSpecifiedLookupKey() argument
135 return lookupKey; in resolveSpecifiedLookupKey()
193 Object lookupKey = determineCurrentLookupKey(); in determineTargetDataSource() local
194 DataSource dataSource = this.resolvedDataSources.get(lookupKey); in determineTargetDataSource()
195 if (dataSource == null && (this.lenientFallback || lookupKey == null)) { in determineTargetDataSource()
199 …new IllegalStateException("Cannot determine target DataSource for lookup key [" + lookupKey + "]"); in determineTargetDataSource()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/net/System/Net/
H A D_PrefixLookup.cs122 public object Lookup(string lookupKey) in Lookup() argument
124 Debug.Assert(lookupKey != null, "PrefixLookup.Lookup; lookupKey must not be null"); in Lookup()
125 Debug.Assert(lookupKey.Length > 0, "PrefixLookup.Lookup; lookupKey must not be empty"); in Lookup()
127 if (lookupKey == null || lookupKey.Length == 0 || lruList.Count == 0) in Lookup()
150 if (prefix.Length > longestMatchPrefix && lookupKey.StartsWith(prefix)) in Lookup()
158 if (longestMatchPrefix == lookupKey.Length) in Lookup()
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/mlir/lib/Support/
H A DStorageUniquer.cpp48 LookupKey lookupKey{kind, hashValue, isEqual}; in getOrCreate() local
50 return getOrCreateUnsafe(kind, hashValue, lookupKey, ctorFn); in getOrCreate()
55 auto it = storageTypes.find_as(lookupKey); in getOrCreate()
62 return getOrCreateUnsafe(kind, hashValue, lookupKey, ctorFn); in getOrCreate()
66 getOrCreateUnsafe(unsigned kind, unsigned hashValue, LookupKey &lookupKey, in getOrCreateUnsafe()
68 auto existing = storageTypes.insert_as({}, lookupKey); in getOrCreateUnsafe()
114 LookupKey lookupKey{kind, hashValue, isEqual}; in erase() local
118 auto existing = storageTypes.find_as(lookupKey); in erase()
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/mongo/db/s/
H A Dcollection_metadata.cpp122 bool CollectionMetadata::getNextChunk(const BSONObj& lookupKey, ChunkType* chunk) const { in getNextChunk() argument
123 RangeMap::const_iterator upperChunkIt = _chunksMap.upper_bound(lookupKey); in getNextChunk()
132 if (lowerChunkIt != _chunksMap.end() && lowerChunkIt->second.woCompare(lookupKey) > 0) { in getNextChunk()
216 BSONObj lookupKey = origLookupKey; in getNextOrphanRange() local
218 while (lookupKey.woCompare(maxKey) < 0) { in getNextOrphanRange()
225 upperIt = map.upper_bound(lookupKey); in getNextOrphanRange()
236 if (lowerIt != map.end() && lowerIt->second.woCompare(lookupKey) > 0) { in getNextOrphanRange()
237 lookupKey = lowerIt->second; // note side effect in getNextOrphanRange()
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/mlir/lib/Support/
H A DStorageUniquer.cpp48 LookupKey lookupKey{kind, hashValue, isEqual}; in getOrCreate() local
53 auto it = storageTypes.find_as(lookupKey); in getOrCreate()
63 auto existing = storageTypes.insert_as({}, lookupKey); in getOrCreate()
103 LookupKey lookupKey{kind, hashValue, isEqual}; in erase() local
107 auto existing = storageTypes.find_as(lookupKey); in erase()
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/mlir/lib/Support/
H A DStorageUniquer.cpp140 ParametricStorageUniquer::LookupKey lookupKey{hashValue, isEqual}; in getOrCreate() local
142 return getOrCreateUnsafe(shard, lookupKey, ctorFn); in getOrCreate()
145 auto localIt = localCache->insert_as({hashValue}, lookupKey); in getOrCreate()
153 auto it = shard.instances.find_as(lookupKey); in getOrCreate()
161 return localInst = getOrCreateUnsafe(shard, lookupKey, ctorFn); in getOrCreate()
238 ParametricStorageUniquer::LookupKey lookupKey{hashValue, isEqual};
239 return getOrCreateUnsafe(shard, lookupKey, ctorFn);
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/mlir/lib/Support/
H A DStorageUniquer.cpp126 ParametricStorageUniquer::LookupKey lookupKey{hashValue, isEqual}; in getOrCreate() local
128 return getOrCreateUnsafe(shard, lookupKey, ctorFn); in getOrCreate()
131 auto localIt = localCache->insert_as({hashValue}, lookupKey); in getOrCreate()
139 auto it = shard.instances.find_as(lookupKey); in getOrCreate()
147 return localInst = getOrCreateUnsafe(shard, lookupKey, ctorFn); in getOrCreate()
217 ParametricStorageUniquer::LookupKey lookupKey{hashValue, isEqual};
218 return getOrCreateUnsafe(shard, lookupKey, ctorFn);
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/mlir/lib/Support/
H A DStorageUniquer.cpp140 ParametricStorageUniquer::LookupKey lookupKey{hashValue, isEqual}; in getOrCreate() local
142 return getOrCreateUnsafe(shard, lookupKey, ctorFn); in getOrCreate()
145 auto localIt = localCache->insert_as({hashValue}, lookupKey); in getOrCreate()
153 auto it = shard.instances.find_as(lookupKey); in getOrCreate()
161 return localInst = getOrCreateUnsafe(shard, lookupKey, ctorFn); in getOrCreate()
238 ParametricStorageUniquer::LookupKey lookupKey{hashValue, isEqual};
239 return getOrCreateUnsafe(shard, lookupKey, ctorFn);
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/mlir/lib/Support/
H A DStorageUniquer.cpp126 ParametricStorageUniquer::LookupKey lookupKey{hashValue, isEqual}; in getOrCreate() local
128 return getOrCreateUnsafe(shard, lookupKey, ctorFn); in getOrCreate()
131 auto localIt = localCache->insert_as({hashValue}, lookupKey); in getOrCreate()
139 auto it = shard.instances.find_as(lookupKey); in getOrCreate()
147 return localInst = getOrCreateUnsafe(shard, lookupKey, ctorFn); in getOrCreate()
217 ParametricStorageUniquer::LookupKey lookupKey{hashValue, isEqual};
218 return getOrCreateUnsafe(shard, lookupKey, ctorFn);
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/mlir/lib/Support/
H A DStorageUniquer.cpp140 ParametricStorageUniquer::LookupKey lookupKey{hashValue, isEqual}; in getOrCreate() local
142 return getOrCreateUnsafe(shard, lookupKey, ctorFn); in getOrCreate()
145 auto localIt = localCache->insert_as({hashValue}, lookupKey); in getOrCreate()
153 auto it = shard.instances.find_as(lookupKey); in getOrCreate()
161 return localInst = getOrCreateUnsafe(shard, lookupKey, ctorFn); in getOrCreate()
238 ParametricStorageUniquer::LookupKey lookupKey{hashValue, isEqual};
239 return getOrCreateUnsafe(shard, lookupKey, ctorFn);
/dports/devel/llvm12/llvm-project-12.0.1.src/mlir/lib/Support/
H A DStorageUniquer.cpp126 ParametricStorageUniquer::LookupKey lookupKey{hashValue, isEqual}; in getOrCreate() local
128 return getOrCreateUnsafe(shard, lookupKey, ctorFn); in getOrCreate()
131 auto localIt = localCache->insert_as({hashValue}, lookupKey); in getOrCreate()
139 auto it = shard.instances.find_as(lookupKey); in getOrCreate()
147 return localInst = getOrCreateUnsafe(shard, lookupKey, ctorFn); in getOrCreate()
217 ParametricStorageUniquer::LookupKey lookupKey{hashValue, isEqual};
218 return getOrCreateUnsafe(shard, lookupKey, ctorFn);
/dports/devel/llvm13/llvm-project-13.0.1.src/mlir/lib/Support/
H A DStorageUniquer.cpp140 ParametricStorageUniquer::LookupKey lookupKey{hashValue, isEqual}; in getOrCreate() local
142 return getOrCreateUnsafe(shard, lookupKey, ctorFn); in getOrCreate()
145 auto localIt = localCache->insert_as({hashValue}, lookupKey); in getOrCreate()
153 auto it = shard.instances.find_as(lookupKey); in getOrCreate()
161 return localInst = getOrCreateUnsafe(shard, lookupKey, ctorFn); in getOrCreate()
238 ParametricStorageUniquer::LookupKey lookupKey{hashValue, isEqual};
239 return getOrCreateUnsafe(shard, lookupKey, ctorFn);
/dports/devel/hs-git-annex/git-annex-8.20210903/Annex/
H A DWorkTree.hs25 lookupKey :: RawFilePath -> Annex (Maybe Key)
26 lookupKey = lookupKey' catkeyfile function
54 ifAnnexed file yes no = maybe no yes =<< lookupKey file
/dports/games/openmw/openmw-openmw-0.47.0/apps/wizard/
H A Dinisettings.cpp105 QString lookupKey(key); in writeFile() local
109 lookupKey = currentSection + QLatin1Char('/') + key; in writeFile()
111 … buffer.append(key + QLatin1Char('=') + mSettings[lookupKey].toString() + QLatin1String("\n")); in writeFile()
112 mSettings.remove(lookupKey); in writeFile()
/dports/www/nextcloud/nextcloud/3rdparty/giggsey/libphonenumber-for-php/src/prefixmapper/
H A DPhonePrefixMap.php42 return $this->lookupKey($phonePrefix);
45 public function lookupKey($key) function in libphonenumber\\prefixmapper\\PhonePrefixMap
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/libaddressinput/src/common/src/main/java/com/google/i18n/addressinput/common/
H A DFormController.java170 private LookupKey buildDataLookupKey(LookupKey lookupKey, String subKey) { in buildDataLookupKey() argument
171 String[] subKeys = lookupKey.toString().split(SLASH_DELIM); in buildDataLookupKey()
174 String key = lookupKey.toString() + SLASH_DELIM + subKey; in buildDataLookupKey()
193 LookupKey lookupKey = getDataKeyFor(addr); in isDefaultLanguage() local
194 AddressVerificationNodeData data = integratedData.getDefaultData(lookupKey.toString()); in isDefaultLanguage()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/libaddressinput/src/common/src/main/java/com/google/i18n/addressinput/common/
H A DFormController.java170 private LookupKey buildDataLookupKey(LookupKey lookupKey, String subKey) { in buildDataLookupKey() argument
171 String[] subKeys = lookupKey.toString().split(SLASH_DELIM); in buildDataLookupKey()
174 String key = lookupKey.toString() + SLASH_DELIM + subKey; in buildDataLookupKey()
193 LookupKey lookupKey = getDataKeyFor(addr); in isDefaultLanguage() local
194 AddressVerificationNodeData data = integratedData.getDefaultData(lookupKey.toString()); in isDefaultLanguage()
/dports/www/nextcloud/nextcloud/3rdparty/php-ds/php-ds/src/
H A DMap.php186 private function lookupKey($key) function in Ds\\Map
220 return $this->lookupKey($key) !== null;
280 if (($pair = $this->lookupKey($key))) {
349 $pair = $this->lookupKey($key);
674 $pair = $this->lookupKey($offset);
/dports/net/liveMedia/live/BasicUsageEnvironment/
H A DBasicHashTable.cpp59 TableEntry* entry = lookupKey(key, index); in Add()
78 TableEntry* entry = lookupKey(key, index); in Remove()
88 TableEntry* entry = lookupKey(key, index); in Lookup()
130 ::lookupKey(char const* key, unsigned& index) const { in lookupKey() function in BasicHashTable
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Web/System.Web.Handlers/
H A DAssemblyResourceLoader.cs272 string lookupKey; in GetResourceUrl()
276 lookupKey = resourceNameHash + (notifyScriptLoaded ? "t" : "f") + dbgTail; in GetResourceUrl()
279 lookupKey = resourceNameHash; in GetResourceUrl()
282 if (entry.Resources.TryGetValue (lookupKey, out res) && res != null) in GetResourceUrl()
288 lookupKey = resourceNameHash + (notifyScriptLoaded ? "t" : "f"); in GetResourceUrl()
290 if (entry.Resources.TryGetValue (lookupKey, out res) && res != null) in GetResourceUrl()
/dports/graphics/qgis/qgis-3.22.3/src/providers/hana/
H A Dqgshanaprimarykeys.cpp128 QVariantList QgsHanaPrimaryKeyContext::lookupKey( QgsFeatureId featureId ) in lookupKey() function in QgsHanaPrimaryKeyContext
236 QVariantList pkValues = primaryKeyCntx.lookupKey( featureId ); in buildWhereClause()
246 QVariantList pkValues = primaryKeyCntx.lookupKey( featureId ); in buildWhereClause()
284 QVariantList pkValues = primaryKeyCntx.lookupKey( featureId ); in buildWhereClause()
/dports/textproc/redisearch/RediSearch-2.2.5/src/
H A Dhighlight_processor.c127 out->lookupKey = srcField->lookupKey; in normalizeSettings()
256 const RSValue *fieldValue = RLookup_GetItem(spec->lookupKey, docParams->row); in processField()
264 RLookup_WriteOwnKey(spec->lookupKey, docParams->row, v); in processField()
329 spec.lookupKey = k; in hlpNext()

12345678910