Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for isCacheTransferError (5.86 sec)

  1. maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequest.java

    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 31K bytes
    - Viewed (0)
  2. 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);
    
        /**
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Dec 20 13:03:57 GMT 2023
    - 17.7K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory.java

            errorPolicy |= request.isCacheNotFound()
                    ? ResolutionErrorPolicy.CACHE_NOT_FOUND
                    : ResolutionErrorPolicy.CACHE_DISABLED;
            errorPolicy |= request.isCacheTransferError()
                    ? ResolutionErrorPolicy.CACHE_TRANSFER_ERROR
                    : ResolutionErrorPolicy.CACHE_DISABLED;
            sessionBuilder.setResolutionErrorPolicy(
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 14:13:36 GMT 2024
    - 27.5K bytes
    - Viewed (0)
Back to top