- Sort Score
- Result 10 results
- Languages All
Results 451 - 460 of 1,672 for orResult (0.35 sec)
-
impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/ModelVersionUtilsTest.java
.version("1.0.0") .build(); Document document = Document.of(pomXml); String result = ModelVersionUtils.detectModelVersion(document); assertEquals("4.0.0", result); } @ParameterizedTest(name = "for {0}") @ValueSource(strings = {"4.0.0", "4.1.0", "4.2.0"}) @DisplayName("should detect model version")
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 18:03:26 UTC 2025 - 19.6K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/LifecycleExecutionPlanCalculatorStub.java
MojoExecution result = new MojoExecution(plugin, goal, executionId); result.setConfiguration(XmlNode.newInstance(executionId + "-" + goal)); result.setMojoDescriptor(mojoDescriptor); result.setLifecyclePhase(mojoDescriptor.getPhase()); return result; } public static MojoDescriptor createMojoDescriptor(String phaseName) {
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 12.6K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/internal/transformation/impl/ConsumerPomArtifactTransformerTest.java
DeployRequest request = createDeployRequestWithConsumerPom(); DeployRequest result = transformer.remapDeployArtifacts(session, request); // Should have both consumer POM (no classifier) and build POM (with "build" classifier) Collection<Artifact> artifacts = result.getArtifacts(); assertEquals(3, artifacts.size()); // original jar + consumer pom + build pom
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Nov 06 18:32:25 UTC 2025 - 13.3K bytes - Viewed (0) -
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/MavenMetadata.java
@Override public void merge(File existing, File result) throws RepositoryException { merge(existing != null ? existing.toPath() : null, result != null ? result.toPath() : null); } @Override public void merge(Path existing, Path result) throws RepositoryException { Metadata recessive = read(existing); merge(recessive); write(result, metadata); merged = true; }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 4.2K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/SetWithResolutionResult.java
implements ProjectArtifactsCache.ArtifactsSetWithResult { final DependencyResolutionResult result; final Set<Artifact> artifacts; public SetWithResolutionResult(DependencyResolutionResult result, Set<Artifact> artifacts) { this.result = result; this.artifacts = Collections.unmodifiableSet(artifacts); } @Override public Iterator<Artifact> iterator() {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/protwords/ApiAdminDictProtwordsAction.java
})) .status(ApiResult.Status.OK) .result()); } /** * Create a new protected words entry for the specified dictionary. * * @param dictId identifier of the dictionary * @param body create request payload * @return JSON response containing creation result and new entry ID */ // POST /api/admin/dict/protwords/setting/{dictId}Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/failureurl/ApiAdminFailureurlAction.java
return null; })).status(Status.OK).result()); } // DELETE /api/admin/failureurl/log/{id} /** * Deletes a failure URL log by ID. * * @param id the failure URL log ID to delete * @return JSON response with result status */ @Execute public JsonResponse<ApiResult> delete$log(final String id) {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 6.2K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/FluentIterableTest.java
assertEquals("[1, 2, 3, 4, 5, 6]", result.toString()); } public void testAppend_toEmpty() { FluentIterable<Integer> result = FluentIterable.<Integer>of().append(Lists.newArrayList(1, 2, 3)); assertEquals(asList(1, 2, 3), Lists.newArrayList(result)); } public void testAppend_emptyList() { FluentIterable<Integer> result =
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 30.5K bytes - Viewed (0) -
callbacks/helper.go
k = field.DBName } } if _, ok := result[k]; !ok { if v, ok := selectColumns[k]; (ok && v) || (!ok && !restricted) { result[k] = make([]interface{}, len(mapValues)) columns = append(columns, k) } else { continue } } result[k][idx] = v } } sort.Strings(columns) values.Values = make([][]interface{}, len(mapValues))Registered: Sun Dec 28 09:35:17 UTC 2025 - Last Modified: Thu Apr 14 12:32:57 UTC 2022 - 3.7K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbEnumerationUtilTest.java
SmbResource notAFile = mock(SmbResource.class); // Act boolean result = (boolean) invokePrivate(wrapper, "accept", new Class<?>[] { SmbResource.class }, notAFile); // Assert assertFalse(result); verify(delegate, never()).accept(any()); } @TestRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.1K bytes - Viewed (0)