Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for isCacheableResource (0.21 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/internal/resource/transfer/CachingTextUriResourceLoader.java

            return new UriTextResource(description, source, resolver);
        }
    
        private boolean isCacheable(URI source) {
            return isCacheableScheme(source) && isCacheableResource(source);
        }
    
        /**
         * Is {@code source} a cacheable transport scheme (e.g., http)?
         *
         * Schemes like file:// are not cacheable.
         */
        private boolean isCacheableScheme(URI source) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.2K bytes
    - Viewed (0)
Back to top