- Sort Score
- Num 10 results
- Language All
Results 221 - 230 of 318 for containsKey (0.08 seconds)
-
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/RemoteSnapshotMetadata.java
if (versioning != null) { for (SnapshotVersion sv : versioning.getSnapshotVersions()) { String key = getKey(sv.getClassifier(), sv.getExtension()); if (!versions.containsKey(key)) { versions.put(key, sv); } } } metadata.getVersioning().setSnapshotVersions(new ArrayList<>(versions.values()));
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 5.5K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/NoticeTask.java
if (noticeFiles != null) { for (File file : getNoticeFiles()) { String name = file.getName().replaceFirst("-NOTICE\\.txt$", ""); if (seen.containsKey(name)) { File prevFile = seen.get(name); String previousFileText = readFileToString(prevFile, "UTF-8");
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 01 09:19:30 GMT 2021 - 6.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/util/ComponentUtil.java
} throw new ContainerNotAvailableException(clazz.getCanonicalName()); } catch (final ComponentNotFoundException | AutoBindingFailureException e) { if (componentMap.containsKey(clazz.getCanonicalName())) { return (T) componentMap.get(clazz.getCanonicalName()); } throw e; } } /** * Gets a component by its name.Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 30.9K bytes - Click Count (0) -
guava-tests/test/com/google/common/math/BigDecimalMathTest.java
assertWithMessage("roundToDouble(%s, %s)", input, mode) .that(BigDecimalMath.roundToDouble(input, mode)) .isEqualTo(expectation); } if (!expectedValues.containsKey(UNNECESSARY)) { assertWithMessage("Expected roundUnnecessaryShouldThrow call") .that(unnecessaryShouldThrow) .isTrue(); assertThrows(
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Mar 03 05:21:26 GMT 2026 - 11K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/ds/AbstractDataStore.java
if (StringUtil.isEmpty(template)) { return StringUtil.EMPTY; } if (paramMap.containsKey(template)) { return paramMap.get(template); } return ComponentUtil.getScriptEngineFactory().getScriptEngine(scriptType).evaluate(template, paramMap); } /**
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 7.6K bytes - Click Count (0) -
src/main/java/jcifs/smb/SmbException.java
} static int getStatusByCode(final int errcode) { int statusCode; if ((errcode & 0xC0000000) != 0) { statusCode = errcode; } else if (dosErrorCodeStatuses.containsKey(errcode)) { statusCode = dosErrorCodeStatuses.get(errcode); } else { statusCode = NT_STATUS_UNSUCCESSFUL; } return statusCode; }Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 6.7K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/merge/MavenModelMerger.java
merged.put(key, element); } for (Repository element : recessive) { Object key = getRepositoryKey(element); if (!merged.containsKey(key)) { merged.put(key, element); } } target.setRepositories(new ArrayList<>(merged.values())); } } @Override
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Feb 25 08:27:34 GMT 2025 - 21.7K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/project/artifact/MavenMetadataSource.java
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Thu Sep 25 12:03:50 GMT 2025 - 30.4K bytes - Click Count (0) -
src/test/java/jcifs/internal/witness/MockWitnessService.java
* * @param registrationId the registration ID * @return true if registration exists */ public boolean hasRegistration(String registrationId) { return registrations.containsKey(registrationId); } /** * Simulate sending a witness notification * * @param eventType the event type * @param resourceName the resource name */Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 23 09:06:40 GMT 2025 - 8.2K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/precommit/ValidateJsonNoKeywordsTask.java
} final String apiName = rootNode.fieldNames().next(); for (String component : apiName.split("\\.")) { if (languagesByKeyword.containsKey(component)) { final Set<String> errorsForFile = errors.computeIfAbsent(file, _file -> new HashSet<>()); errorsForFile.add(Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 01 09:19:30 GMT 2021 - 7.6K bytes - Click Count (0)