Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for isCacheNotFound (0.16 sec)

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

    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 31K bytes
    - Viewed (0)
  2. 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
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Dec 20 13:03:57 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory.java

                            : request.isUpdateSnapshots() ? RepositoryPolicy.UPDATE_POLICY_ALWAYS : null);
    
            int errorPolicy = 0;
            errorPolicy |= request.isCacheNotFound()
                    ? ResolutionErrorPolicy.CACHE_NOT_FOUND
                    : ResolutionErrorPolicy.CACHE_DISABLED;
            errorPolicy |= request.isCacheTransferError()
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 14:13:36 UTC 2024
    - 27.5K bytes
    - Viewed (0)
Back to top