Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,210 for cachez (0.09 sec)

  1. platforms/core-execution/build-cache-http/src/integTest/groovy/org/gradle/caching/http/internal/HttpBuildCacheServiceIntegrationTest.groovy

            when:
            withBuildCache().run "compileJava"
            then:
            // :compileJava is not cached, but :jar is still cached as its inputs haven't changed
            executedAndNotSkipped ":compileJava"
        }
    
        def "non-cacheable task with cache enabled gets cached"() {
            file("input.txt") << "data"
            buildFile << """
                class NonCacheableTask extends DefaultTask {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:20 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  2. src/cmd/go/internal/clean/clean.go

    The -cache flag causes clean to remove the entire go build cache.
    
    The -testcache flag causes clean to expire all test results in the
    go build cache.
    
    The -modcache flag causes clean to remove the entire module
    download cache, including unpacked source code of versioned
    dependencies.
    
    The -fuzzcache flag causes clean to remove files stored in the Go build
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/DefaultCacheBuilderTest.groovy

            then:
            1 * cacheFactory.open(sharedCacheDir, null, [:], mode(OnDemand), _, NO_CLEANUP) >> cache
        }
    
        void canSpecifyDisplayNameForDirectoryCache() {
            when:
            builder.withDisplayName("<cache>").open()
    
            then:
            1 * cacheFactory.open(sharedCacheDir, "<cache>", [:], mode(Shared), _, NO_CLEANUP) >> cache
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 16:40:49 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. pilot/pkg/xds/discovery.go

    		}
    	}
    }
    
    // dropCacheForRequest clears the cache in response to a push request
    func (s *DiscoveryServer) dropCacheForRequest(req *model.PushRequest) {
    	// If we don't know what updated, cannot safely cache. Clear the whole cache
    	if len(req.ConfigsUpdated) == 0 {
    		s.Cache.ClearAll()
    	} else {
    		// Otherwise, just clear the updated configs
    		s.Cache.Clear(req.ConfigsUpdated)
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 20:21:09 UTC 2024
    - 19K bytes
    - Viewed (0)
  5. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/GlobalCache.java

     * limitations under the License.
     */
    
    package org.gradle.cache;
    
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    import java.io.File;
    import java.util.List;
    
    /**
     * Represents a location for global Gradle caches.
     *
     * The global cache is managed by Gradle, so we Gradle needs to take care
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  6. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/FileLockManager.java

             * <br><br>
             *
             * Used for read-only file locks/caches, many processes can access the lock target/cache concurrently.
             * <br><br>
             *
             * For {@link PersistentCache} this is the default behaviour and the cache lock is created when cache is opened.
             * To release a lock a cache has to be closed.
             */
            Shared,
    
            /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  7. platforms/core-execution/build-cache-http/build.gradle.kts

    }
    
    description = "Implementation for interacting with HTTP build caches"
    
    dependencies {
        api(projects.stdlibJavaExtensions)
        api(projects.serviceProvider)
    
        api(libs.httpcore)
        api(libs.inject)
        api(libs.jsr305)
    
        api(project(":base-services"))
        api(project(":build-cache-spi"))
        api(project(":core-api"))
        api(project(":resources-http"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1K bytes
    - Viewed (0)
  8. platforms/core-execution/persistent-cache/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
        id("gradlebuild.publish-public-libraries")
    }
    
    description = """Persistent caches on disk and cross process locking.
        | Mostly for persisting Maps to the disk.
        | Also contains implementations for in-memory caches in front of the disk cache.
    """.trimMargin()
    
    dependencies {
        api(projects.concurrent)
        api(projects.stdlibJavaExtensions)
        api(projects.serialization)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  9. pilot/pkg/xds/sds.go

    			// If it is in the Cache, add it and continue
    			// We skip cache if assertions are enabled, so that the cache will assert our eviction logic is correct
    			results = append(results, cachedItem)
    			cached++
    			continue
    		}
    		regenerated++
    		res := s.generate(sr, configClusterSecrets, proxyClusterSecrets, proxy)
    		if res != nil {
    			s.cache.Add(sr, req, res)
    			results = append(results, res)
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 23:04:36 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/initialization/InternalGradleFailuresIntegrationTest.groovy

            given:
            def cachesDir = executer.gradleUserHomeDir.file("caches")
            cachesDir.touch()
    
            when:
            fails 'hello'
    
            then:
            cachesDir.isFile()
            assertHasStartupFailure(failure, "Cannot create directory '${executer.gradleUserHomeDir.file("caches")}")
        }
    
        def "Error message due to unwritable Gradle daemon directory is not scary"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:54 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top