Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for CacheKey (0.2 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheRepository.kt

        private val fileAccessTimeJournal: FileAccessTimeJournal,
        private val fileSystem: FileSystem
    ) : Stoppable {
        fun forKey(cacheKey: String): ConfigurationCacheStateStore {
            return StoreImpl(cache.baseDirFor(cacheKey))
        }
    
        abstract class Layout {
            abstract fun fileForRead(stateType: StateType): ConfigurationCacheStateFile
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. platforms/core-execution/build-cache-example-client/src/main/java/org/gradle/caching/example/ExampleBuildCacheClient.java

            buildCacheController.store(
                cacheKey,
                sandboxEntity,
                ImmutableMap.of("output", producedOutputSnapshot),
                Duration.ofSeconds(10));
    
            // Load the entity from the cache
            BuildCacheLoadResult loadResult = buildCacheController.load(cacheKey, targetEntity)
                .orElseThrow(() -> new RuntimeException("Should have been a hit"));
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 19:35:22 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java

                    recordArtifacts = pluginArtifactsCache.put(cacheKey, artifacts);
                } catch (PluginResolutionException e) {
                    pluginArtifactsCache.put(cacheKey, e);
                    pluginArtifactsCache.register(project, cacheKey, recordArtifacts);
                    throw new PluginManagerException(plugin, e.getMessage(), e);
                }
            }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheProblems.kt

    internal
    class ConfigurationCacheProblems(
    
        private
        val startParameter: ConfigurationCacheStartParameter,
    
        private
        val report: ConfigurationCacheReport,
    
        private
        val cacheKey: ConfigurationCacheKey,
    
        private
        val listenerManager: ListenerManager,
    
        private
        val problemsService: InternalProblems,
    
        private
        val failureFactory: FailureFactory
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:04:02 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DefaultConfigurationCache.kt

    import org.gradle.util.Path
    import java.io.File
    import java.io.OutputStream
    
    
    class DefaultConfigurationCache internal constructor(
        private val startParameter: ConfigurationCacheStartParameter,
        private val cacheKey: ConfigurationCacheKey,
        private val problems: ConfigurationCacheProblems,
        private val scopeRegistryListener: ConfigurationCacheClassLoaderScopeRegistryListener,
        private val cacheRepository: ConfigurationCacheRepository,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  6. src/net/http/transport.go

    			if e, ok := alt.(erringRoundTripper); ok {
    				// pconn.conn was closed by next (http2configureTransports.upgradeFn).
    				return nil, e.RoundTripErr()
    			}
    			return &persistConn{t: t, cacheKey: pconn.cacheKey, alt: alt}, nil
    		}
    	}
    
    	pconn.br = bufio.NewReaderSize(pconn, t.readBufferSize())
    	pconn.bw = bufio.NewWriterSize(persistConnWriter{pconn}, t.writeBufferSize())
    
    	go pconn.readLoop()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  7. src/net/http/transport_test.go

    	if e, g := 1, len(keys); e != g {
    		t.Fatalf("after first response, expected %d idle conn cache keys; got %d", e, g)
    	}
    	addr := ts.Listener.Addr().String()
    	cacheKey := "|http|" + addr
    	if keys[0] != cacheKey {
    		t.Fatalf("Expected idle cache key %q; got %q", cacheKey, keys[0])
    	}
    	if e, g := 1, tr.IdleConnCountForTesting("http", addr); e != g {
    		t.Errorf("after first response, expected %d idle conns; got %d", e, g)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  8. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.api.internal.artifacts.verification.signatures.CrossBuildSignatureVerificationService$CacheKey> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (CrossBuildSignatureVerificationService.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 967.9K bytes
    - Viewed (0)
Back to top