- Sort Score
- Num 10 results
- Language All
Results 501 - 510 of 565 for getValue5 (0.09 seconds)
-
compat/maven-model-builder/src/test/java/org/apache/maven/model/interpolation/reflection/ReflectionValueExtractorTest.java
} public static class ValueHolder { private final Object value; public ValueHolder(Object value) { this.value = value; } public Object getValue() { return value; } } /** * <p>testRootPropertyRegression.</p> * * @throws Exception if any. */ @TestCreated: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jan 10 07:09:12 GMT 2025 - 16.9K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/AbstractUpgradeGoal.java
context.info("Saving modified POMs..."); for (Map.Entry<Path, Document> entry : pomMap.entrySet()) { Path pomPath = entry.getKey(); Document document = entry.getValue(); try { // Use domtrip for perfect formatting preservation String xmlContent = DomUtils.toXml(document); Files.writeString(pomPath, xmlContent);
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Nov 18 18:03:26 GMT 2025 - 12.5K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/ModelUpgradeStrategy.java
Set<Path> errorPoms = new HashSet<>(); for (Map.Entry<Path, Document> entry : pomMap.entrySet()) { Path pomPath = entry.getKey(); Document pomDocument = entry.getValue(); processedPoms.add(pomPath); String currentVersion = ModelVersionUtils.detectModelVersion(pomDocument); context.info(pomPath + " (current: " + currentVersion + ")");
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Nov 18 18:03:26 GMT 2025 - 16.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/util/QueryStringBuilder.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 12.3K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/ForwardingMap.java
Iterator<Entry<K, V>> entryIterator = entrySet().iterator(); while (entryIterator.hasNext()) { Entry<K, V> entry = entryIterator.next(); if (Objects.equals(entry.getKey(), key)) { V value = entry.getValue(); entryIterator.remove(); return value; } } return null; } /** * A sensible definition of {@link #clear} in terms of the {@code iterator} method of {@link
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Aug 06 17:32:30 GMT 2025 - 9.8K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/StringSearchModelInterpolator.java
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jan 10 07:09:12 GMT 2025 - 15.6K bytes - Click Count (0) -
src/test/java/jcifs/smb/SIDCacheImplTest.java
ArgumentCaptor<SID[]> captor = ArgumentCaptor.forClass(SID[].class); verify(cache, times(1)).resolveSids0(isNull(), same(ctx), captor.capture()); SID[] resolvedFirst = captor.getValue(); assertEquals(2, resolvedFirst.length); assertEquals("user1", ((SID) resolvedFirst[0]).acctName); assertEquals("user2", ((SID) resolvedFirst[1]).acctName);
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 14K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/service/SearchLogService.java
map.put(KEY, e.getKeyAsString()); final Cardinality value = e.getAggregations().get(USER_INFO_ID); map.put(COUNT, value.getValue()); return map; }).collect(Collectors.toList()); } else if (SearchLogPager.LOG_TYPE_SEARCH_USER_DAY.equalsIgnoreCase(pager.logType)) {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 32.7K bytes - Click Count (0) -
android/guava/src/com/google/common/reflect/ClassPath.java
ImmutableSet.Builder<LocationInfo> builder = ImmutableSet.builder(); for (Map.Entry<File, ClassLoader> entry : getClassPathEntries(classloader).entrySet()) { builder.add(new LocationInfo(entry.getKey(), entry.getValue())); } return builder.build(); } /** * Represents a single location (a directory or a jar file) in the class path and is responsible * for scanning resources from this location. */
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Jan 29 22:14:05 GMT 2026 - 24.8K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/BuildPlanExecutor.java
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Thu Oct 16 06:12:36 GMT 2025 - 55.1K bytes - Click Count (0)