Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getGlobalCacheLocations (0.41 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/initialization/transform/services/InjectedInstrumentationServices.java

        @Inject
        public abstract GradleCoreInstrumentationTypeRegistry getGradleCoreInstrumentationTypeRegistry();
    
        @Inject
        public abstract GlobalCacheLocations getGlobalCacheLocations();
    
        @Inject
        public abstract StringInterner getStringInterner();
    
        public ClasspathElementTransformFactory getTransformFactory(boolean isAgentSupported) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 27 13:36:38 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/initialization/transform/BaseInstrumentingArtifactTransform.java

            if (input.isDirectory()) {
                // Directories are ok to use outside the cache, since they are not locked by the daemon.
                outputs.dir(input);
            } else if (internalServices.get().getGlobalCacheLocations().isInsideGlobalCache(input.getAbsolutePath())) {
                // Jars that are already in the global cache don't need to be copied, since
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 14:22:44 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top