- Sort Score
- Result 10 results
- Languages All
Results 1 - 9 of 9 for failFast (0.06 sec)
-
mockwebserver-deprecated/src/main/kotlin/okhttp3/mockwebserver/QueueDispatcher.kt
fun enqueueResponse(response: MockResponse) { delegate.enqueue(response.wrap()) } override fun shutdown() { delegate.close() } fun setFailFast(failFast: Boolean) { delegate.setFailFast(failFast) } fun setFailFast(failFastResponse: MockResponse?) { delegate.setFailFast(failFastResponse?.wrap()) }
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Sat Jun 14 16:09:26 UTC 2025 - 1.3K bytes - Viewed (0) -
mockwebserver/src/main/kotlin/mockwebserver3/QueueDispatcher.kt
public open fun clear() { responseQueue.clear() } public override fun close() { responseQueue.add(DEAD_LETTER) } public open fun setFailFast(failFast: Boolean) { setFailFast( failFastResponse = when { failFast -> MockResponse(code = HttpURLConnection.HTTP_NOT_FOUND) else -> null }, ) } public open fun setFailFast(failFastResponse: MockResponse?) {
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Sat Jun 14 16:09:26 UTC 2025 - 2.9K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/LayeredMavenOptions.java
public Optional<Boolean> relaxedChecksums() { return returnFirstPresentOrEmpty(MavenOptions::relaxedChecksums); } @Override public Optional<Boolean> failFast() { return returnFirstPresentOrEmpty(MavenOptions::failFast); } @Override public Optional<Boolean> failAtEnd() { return returnFirstPresentOrEmpty(MavenOptions::failAtEnd); } @Override
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jun 11 13:14:09 UTC 2025 - 5.4K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/CommonsCliMavenOptions.java
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Sep 25 17:39:57 UTC 2025 - 14.8K bytes - Viewed (0) -
api/maven-api-cli/src/main/java/org/apache/maven/api/cli/mvn/MavenOptions.java
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jun 11 13:14:09 UTC 2025 - 8K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/MavenInvoker.java
} else { return Files.isRegularFile(current) ? current : null; } } protected String determineReactorFailureBehaviour(MavenContext context) { if (context.options().failFast().isPresent()) { return MavenExecutionRequest.REACTOR_FAIL_FAST; } else if (context.options().failAtEnd().isPresent()) { return MavenExecutionRequest.REACTOR_FAIL_AT_END;Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Sep 11 17:20:46 UTC 2025 - 28.2K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/CLIManager.java
@Deprecated public static final String ALTERNATE_GLOBAL_TOOLCHAINS = "gt"; public static final String ALTERNATE_INSTALLATION_TOOLCHAINS = "it"; public static final String FAIL_FAST = "ff"; public static final String FAIL_ON_SEVERITY = "fos"; public static final String FAIL_AT_END = "fae"; public static final String FAIL_NEVER = "fn";Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Aug 06 04:56:48 UTC 2025 - 17.8K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/BuildPlanExecutor.java
* based on the reactor failure behavior. * <p> * This method works in conjunction with the filtering in executePlan(): * - For FAIL_FAST: Sets ReactorBuildStatus to halted, which causes executePlan to only process after:* steps * - For FAIL_AT_END: Blacklists the project and its dependents, which causes executePlan to skip themRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Oct 16 06:12:36 UTC 2025 - 55.1K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java
} else { return executionListener; } } private String determineReactorFailureBehaviour(final CommandLine commandLine) { if (commandLine.hasOption(CLIManager.FAIL_FAST)) { return MavenExecutionRequest.REACTOR_FAIL_FAST; } else if (commandLine.hasOption(CLIManager.FAIL_AT_END)) { return MavenExecutionRequest.REACTOR_FAIL_AT_END;Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon Oct 27 13:24:03 UTC 2025 - 78.1K bytes - Viewed (0)