Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for setCacheTransferError (0.14 sec)

  1. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/DefaultMavenInvoker.java

            mavenExecutionRequest.setRepositoryCache(new DefaultRepositoryCache());
            mavenExecutionRequest.setInteractiveMode(true);
            mavenExecutionRequest.setCacheTransferError(false);
            mavenExecutionRequest.setIgnoreInvalidArtifactDescriptor(true);
            mavenExecutionRequest.setIgnoreMissingArtifactDescriptor(true);
            mavenExecutionRequest.setRecursive(true);
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequest.java

    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  3. impl/maven-core/src/main/java/org/apache/maven/execution/MavenExecutionRequest.java

        boolean isInteractiveMode();
    
        // Offline
        MavenExecutionRequest setOffline(boolean offline);
    
        boolean isOffline();
    
        boolean isCacheTransferError();
    
        MavenExecutionRequest setCacheTransferError(boolean cacheTransferError);
    
        boolean isCacheNotFound();
    
        MavenExecutionRequest setCacheNotFound(boolean cacheNotFound);
    
        /**
         * @since 4.0.0
         */
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  4. compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

                    || Boolean.parseBoolean(commandLine.getOptionValue(CLIManager.CACHE_ARTIFACT_NOT_FOUND));
            request.setCacheNotFound(cacheNotFound);
            request.setCacheTransferError(false);
            boolean strictArtifactDescriptorPolicy = commandLine.hasOption(CLIManager.STRICT_ARTIFACT_DESCRIPTOR_POLICY)
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 76.8K bytes
    - Viewed (0)
Back to top