Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,068 for cachez (0.19 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/CachingModuleComponentRepositoryTest.groovy

        def listener = Stub(ChangingValueDependencyResolutionListener)
        def caches = new ModuleRepositoryCaches(moduleResolutionCache, moduleDescriptorCache, moduleArtifactsCache, artifactAtRepositoryCache)
        def resolveStateFactory = DependencyManagementTestUtil.modelGraphResolveFactory()
        def repo = new CachingModuleComponentRepository(realRepo, caches, resolveStateFactory, cachePolicy, Stub(BuildCommencedTimeProvider), metadataProcessor, listener)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedCustomTaskExecutionIntegrationTest.groovy

        }
    
        def "task can be cached after loaded from cache"() {
            file("input.txt").text = "input"
            buildFile << defineProducerTask()
    
            // Store in local cache
            withBuildCache().run "producer"
    
            // Load from local cache
            cleanBuildDir()
            withBuildCache().run "producer"
    
            // Store to a different local cache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  3. platforms/extensibility/unit-test-fixtures/src/main/java/org/gradle/testfixtures/internal/TestInMemoryCacheFactory.java

    import org.gradle.cache.CacheCleanupStrategy;
    import org.gradle.cache.CacheOpenException;
    import org.gradle.cache.CleanupAction;
    import org.gradle.cache.CleanupProgressMonitor;
    import org.gradle.cache.IndexedCache;
    import org.gradle.cache.IndexedCacheParameters;
    import org.gradle.cache.LockOptions;
    import org.gradle.cache.PersistentCache;
    import org.gradle.cache.internal.CacheFactory;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 21:54:27 UTC 2024
    - 6K bytes
    - Viewed (0)
  4. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/DefaultInMemoryCacheDecoratorFactory.java

     * limitations under the License.
     */
    
    package org.gradle.cache.internal;
    
    import com.google.common.cache.Cache;
    import com.google.common.cache.CacheBuilder;
    import org.gradle.cache.AsyncCacheAccess;
    import org.gradle.cache.CacheDecorator;
    import org.gradle.cache.CrossProcessCacheAccess;
    import org.gradle.cache.FileLock;
    import org.gradle.cache.MultiProcessSafeIndexedCache;
    import org.slf4j.Logger;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:36 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part6_gradle_caching.adoc

    In addition to the local build cache present on a developer's machine, Gradle can make use of remote build caches which can be used by multiple developers.
    
    The idea of a remote cache is to share commonly built task outputs across remote builds to improve build times.
    
    When both remote and local caches are enabled, then the build output is first checked in the local cache.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheIntegrationTest.groovy

        def "configuration cache is out of incubation"() {
            given:
            settingsFile << ""
    
            when:
            run("help", "--configuration-cache")
    
            then:
            result.assertHasPostBuildOutput("Configuration cache entry stored.")
            !output.contains("Configuration cache is an incubating feature.")
        }
    
        def "configuration cache for Help plugin task '#task' on empty project"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  7. pkg/controller/serviceaccount/tokens_controller.go

    	// updatedSecrets is a wrapper around the shared cache which allows us to record
    	// and return our local mutations (since we're very likely to act on an updated
    	// secret before the watch reports it).
    	updatedSecrets cache.MutationCache
    
    	// Since we join two objects, we'll watch both of them with controllers.
    	serviceAccountSynced cache.InformerSynced
    	secretSynced         cache.InformerSynced
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionFeaturesIntegrationTest.groovy

            then:
            configurationCache.assertStateLoaded()
            outputContains("result = [lib-1.3.jar]")
    
            when: // run again with different tasks, to verify behaviour when version list is already cached when configuration cache entry is written
            configurationCacheRun("resolve2")
    
            then:
            configurationCache.assertStateStored()
            outputContains("result = [lib-1.3.jar]")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 33K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top