Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for cacheLocation (0.1 sec)

  1. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/DefaultCacheCleanupExecutor.java

            private final File cacheLocation;
    
            public CacheCleanupDetails(File cacheLocation) {
                this.cacheLocation = cacheLocation;
            }
    
            @Override
            public File getCacheLocation() {
                return cacheLocation;
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 16:53:17 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/internal/PmdInvoker.groovy

                }
                antPmdArgs['threads'] = parameters.threads.get()
            } else {
                // 6.+
                if (parameters.incrementalAnalysis.get()) {
                    antPmdArgs["cacheLocation"] = parameters.incrementalCacheFile.get().asFile
                } else {
                    if (version >= VersionNumber.parse("6.2.0")) {
                        antPmdArgs['noCache'] = true
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:23:38 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  3. platforms/core-execution/build-cache-local/src/integTest/groovy/org/gradle/caching/local/internal/AbstractBuildCacheCleanupIntegrationTest.groovy

        }
    
        void assertCacheWasCleanedUpSince(long lastCleanupCheck) {
            def buildOp = operations.only("Clean up ${getBuildCacheName()} ($cacheDir)")
            buildOp.details.cacheLocation == cacheDir
            assert gcFile().lastModified() > lastCleanupCheck
        }
    
        void assertCacheWasNotCleanedUpSince(long lastCleanupCheck) {
            operations.none("Clean up ${getBuildCacheName()} ($cacheDir)")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 16:53:17 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/xcode/AbstractLocator.java

        private final ExecActionFactory execActionFactory;
        private File cachedLocation;
    
        protected AbstractLocator(ExecActionFactory execActionFactory) {
            this.execActionFactory = execActionFactory;
        }
    
        protected abstract List<String> getXcrunFlags();
    
        public File find() {
            synchronized (this) {
                if (cachedLocation == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top