- Sort Score
- Num 10 results
- Language All
Results 1 - 4 of 4 for setCacheNotFound (0.09 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
impl/maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequest.java
copy.setLocalRepositoryPath(original.getLocalRepositoryPath()); copy.setOffline(original.isOffline()); copy.setInteractiveMode(original.isInteractiveMode()); copy.setCacheNotFound(original.isCacheNotFound()); copy.setCacheTransferError(original.isCacheTransferError()); copy.setIgnoreMissingArtifactDescriptor(original.isIgnoreMissingArtifactDescriptor());
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Thu Dec 12 11:02:17 GMT 2024 - 32.1K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/MavenExecutionRequest.java
boolean isOffline(); boolean isCacheTransferError(); MavenExecutionRequest setCacheTransferError(boolean cacheTransferError); boolean isCacheNotFound(); MavenExecutionRequest setCacheNotFound(boolean cacheNotFound); /** * @since 4.0.0 */ boolean isIgnoreMissingArtifactDescriptor(); /** * @since 4.0.0 */
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Thu Dec 12 11:02:17 GMT 2024 - 18.6K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/MavenInvoker.java
request.setResumeFrom(context.options().resumeFrom().orElse(null)); request.setResume(context.options().resume().orElse(false)); request.setMakeBehavior(determineMakeBehavior(context)); request.setCacheNotFound(context.options().cacheArtifactNotFound().orElse(true)); request.setCacheTransferError(false); if (context.options().strictArtifactDescriptorPolicy().orElse(false)) {
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Thu Sep 11 17:20:46 GMT 2025 - 28.2K bytes - Click Count (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java
boolean cacheNotFound = !commandLine.hasOption(CLIManager.CACHE_ARTIFACT_NOT_FOUND) || Boolean.parseBoolean(commandLine.getOptionValue(CLIManager.CACHE_ARTIFACT_NOT_FOUND)); request.setCacheNotFound(cacheNotFound); request.setCacheTransferError(false); boolean strictArtifactDescriptorPolicy = commandLine.hasOption(CLIManager.STRICT_ARTIFACT_DESCRIPTOR_POLICY)
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Mon Oct 27 13:24:03 GMT 2025 - 78.1K bytes - Click Count (0)