Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of about 10,000 for storing (0.13 sec)

  1. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/RemappingScriptSource.java

     */
    public class RemappingScriptSource extends DelegatingScriptSource {
        public final static String MAPPED_SCRIPT = "_BuildScript_";
    
        public RemappingScriptSource(ScriptSource source) {
            super(source);
        }
    
        @Override
        public String getClassName() {
            return MAPPED_SCRIPT;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 02 16:56:13 UTC 2016
    - 1.7K bytes
    - Viewed (0)
  2. pkg/kubelet/util/store/store.go

    )
    
    // Store provides the interface for storing keyed data.
    // Store must be thread-safe
    type Store interface {
    	// key must contain one or more characters in [A-Za-z0-9]
    	// Write writes data with key.
    	Write(key string, data []byte) error
    	// Read retrieves data with key
    	// Read must return ErrKeyNotFound if key is not found.
    	Read(key string) ([]byte, error)
    	// Delete deletes data by key
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 19 22:18:30 UTC 2017
    - 1.9K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/internal/tasks/execution/ResolveTaskMutationsBuildOperationTypeIntegrationTest.groovy

                }
            """
            fails "t"
    
            then:
            if (GradleContextualExecuter.configCache) {
                // Configuration caching resolves the outputs when storing to the configuration cache
                // This fails already, so we don't even get to resolving the mutations.
                failureDescriptionStartsWith("BOOM!")
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 27 12:00:57 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  4. guava/src/com/google/common/primitives/package-info.java

     * the License.
     */
    
    /**
     * Static utilities for the eight primitive types and {@code void}, and value types for treating
     * them as unsigned or storing them in immutable arrays.
     *
     * <p>This package is a part of the open-source <a href="https://github.com/google/guava">Guava</a>
     * library.
     *
     * <p>See the Guava User Guide article on <a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:13:41 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/ConfigurationCacheOutputCleaner.java

        private static final String CLEAN_CONFIGURATION_CACHE_OUTPUT = "org.gradle.integtest.samples.cleanConfigurationCacheOutput";
        private static final Pattern CONFIGURATION_CACHE_OUTPUT = Pattern.compile(
            "((Configuration cache entry[^\\n]+\\.)|" +
                "(See the complete report at [^\\n]+\\n)|" +
                "(0 problems were found storing the configuration cache.\\n))(\\n)?"
        );
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/modulecache/artifacts/TwoStageModuleArtifactCacheTest.groovy

        def readCache = Mock(ModuleArtifactCache)
        def writeCache = Mock(ModuleArtifactCache)
    
        @Subject
        def twoStageCache = new TwoStageModuleArtifactCache(readOnlyPath, readCache, writeCache)
    
        def "storing delegates to the write index"() {
            when:
            twoStageCache.store(key, artifact, hashCode)
    
            then:
            1 * writeCache.store(key, artifact, hashCode)
            0 * readCache._
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/reflect/ReflectionCache.java

     * limitations under the License.
     */
    
    package org.gradle.internal.reflect;
    
    import java.util.WeakHashMap;
    
    /**
     * A generic purpose, thread-safe cache which is aimed at storing information
     * about a class. The cache is a hierarchical cache, which key is a composite
     * of a receiver, and argument types. All those, key or arguments, are kept
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/configurationcache/ConfigurationCacheBuildOperations.kt

    internal
    fun BuildOperationRunner.withStoreOperation(@Suppress("UNUSED_PARAMETER") cacheKey: String, block: () -> StoreResult) =
        run(object : RunnableBuildOperation {
            override fun description(): BuildOperationDescriptor.Builder = BuildOperationDescriptor
                .displayName("Store configuration cache state")
                .progressDisplayName("Storing configuration cache state")
                .details(StoreDetails)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:09:37 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/caching/MapBasedBuildCacheService.java

     *
     * @since 3.5
     */
    public class MapBasedBuildCacheService implements BuildCacheService {
        private final ConcurrentMap<String, byte[]> delegate;
    
        public MapBasedBuildCacheService(ConcurrentMap<String, byte[]> delegate) {
            this.delegate = delegate;
        }
    
        @Override
        public boolean load(BuildCacheKey key, BuildCacheEntryReader reader) throws BuildCacheException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 08 17:15:17 UTC 2019
    - 2.1K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/modulecache/TwoStageModuleMetadataCacheTest.groovy

        def metadata = Stub(ModuleMetadataCache.CachedMetadata)
    
        @Subject
        def twoStageCache = new TwoStageModuleMetadataCache(timeProvider, readCache, writeCache)
    
        def "storing delegates to write cache"() {
            when:
            twoStageCache.store(key, entry, metadata)
    
            then:
            1 * writeCache.store(key, entry, metadata)
            0 * readCache._
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top