Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,210 for cachez (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/internal/cache/CacheMarkingStrategyIntegrationTest.groovy

            "jdks"          | "CACHEDIR_TAG"  | true      | "marked"
            // Caches will be generated by test framework, so marked even if not created
            "caches"        | "NONE"          | false     | "not marked"
            "caches"        | "NONE"          | true      | "not marked"
            "caches"        | "CACHEDIR_TAG"  | false     | "marked"
            "caches"        | "CACHEDIR_TAG"  | true      | "marked"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 15:10:38 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  7. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/mutator/ClearArtifactTransformCacheWithoutInstrumentedJarsMutator.groovy

        @Override
        protected void cleanup() {
            System.out.println("> Cleaning '<gradle-home>/caches/transforms-*/' and '<gradle-home>/caches/<gradle-version>/transforms/*' caches in " + gradleUserHome)
            File caches = new File(gradleUserHome, "caches")
    
            // <gradle-home>/caches/transforms-*
            List<File> oldCaches = caches.listFiles().findAll {
                it.isDirectory() && it.name.startsWith("transforms-")
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 12:30:06 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/CacheTest.kt

    """
        fileSystem.createDirectory(cache.directoryPath)
        writeFile(cache.directoryPath, "$urlKey.0", entryMetadata)
        writeFile(cache.directoryPath, "$urlKey.1", entryBody)
        writeFile(cache.directoryPath, "journal", journalBody)
        cache = Cache(fileSystem, cache.directory.path.toPath(), Int.MAX_VALUE.toLong())
        client =
          client.newBuilder()
            .cache(cache)
            .build()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 108.6K bytes
    - Viewed (0)
  9. 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)
  10. okhttp-dnsoverhttps/src/test/java/okhttp3/dnsoverhttps/DnsOverHttpsTest.kt

      // 1. successful fresh cached GET response
      // 2. unsuccessful (404, 500) fresh cached GET response
      // 3. successful network response
      // 4. successful stale cached GET response
      // 5. unsuccessful response
      @Test
      fun usesCache() {
        val cache = Cache(cacheFs, "cache".toPath(), (100 * 1024).toLong())
        val cachedClient = bootstrapClient.newBuilder().cache(cache).build()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top