Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,036 for cachez (0.13 sec)

  1. android/guava/src/com/google/common/cache/CacheStats.java

    /**
     * Statistics about the performance of a {@link Cache}. Instances of this class are immutable.
     *
     * <p>Cache statistics are incremented according to the following rules:
     *
     * <ul>
     *   <li>When a cache lookup encounters an existing cache entry {@code hitCount} is incremented.
     *   <li>When a cache lookup first encounters a missing cache entry, a new entry is loaded.
     *       <ul>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Aug 07 02:38:22 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  2. guava/src/com/google/common/cache/CacheStats.java

    /**
     * Statistics about the performance of a {@link Cache}. Instances of this class are immutable.
     *
     * <p>Cache statistics are incremented according to the following rules:
     *
     * <ul>
     *   <li>When a cache lookup encounters an existing cache entry {@code hitCount} is incremented.
     *   <li>When a cache lookup first encounters a missing cache entry, a new entry is loaded.
     *       <ul>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Aug 07 02:38:22 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/dra/manager.go

    		}
    
    		// Atomically perform some operations on the claimInfo cache.
    		err = m.cache.withLock(func() error {
    			// Get a reference to the claim info for this claim from the cache.
    			// If there isn't one yet, then add it to the cache.
    			claimInfo, exists := m.cache.get(resourceClaim.Name, resourceClaim.Namespace)
    			if !exists {
    				claimInfo = m.cache.add(newClaimInfoFromClaim(resourceClaim))
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:23:29 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  4. pkg/credentialprovider/plugin/plugin.go

    	// against this list of match URLs.
    	matchImages []string
    
    	// cache stores DockerConfig entries with an expiration time based on the cache duration
    	// returned from the credential provider plugin.
    	cache cache.Store
    	// defaultCacheDuration is the default duration credentials are cached in-memory if the auth plugin
    	// response did not provide a cache duration for credentials.
    	defaultCacheDuration time.Duration
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 05 05:07:28 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/func.go

    // sets to be reused by f.newSparseMapPos.
    func (f *Func) retSparseMapPos(ss *sparseMapPos) {
    	f.Cache.freeSparseMapPos(ss)
    }
    
    // newPoset returns a new poset from the internal cache
    func (f *Func) newPoset() *poset {
    	if len(f.Cache.scrPoset) > 0 {
    		po := f.Cache.scrPoset[len(f.Cache.scrPoset)-1]
    		f.Cache.scrPoset = f.Cache.scrPoset[:len(f.Cache.scrPoset)-1]
    		return po
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/integtests/resolve/ivy/AbstractIvyRemoteRepoResolveIntegrationTest.groovy

            server.resetExpectations()
            // No extra calls for cached dependencies
    
            then:
            succeeds('listJars')
        }
    
        @ToBeFixedForConfigurationCache(
            skip = ToBeFixedForConfigurationCache.Skip.FAILS_TO_CLEANUP,
            because = "IvyGcsRepoResolveIntegrationTest leaks test files"
        )
        def "reuses cached details when switching ivy resolve mode"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/test/integration/fixtures/resources.go

    	// but because they specified resourceVersion=0, there is no starting point in the cache buffer to return existing events
    	// from, thus the server will return anything from current head of the cache to the end. By accessing the delete
    	// events for all versions here, we make sure that the head of the cache is passed those events and they will not being
    	// delivered to any future watch with resourceVersion=0.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 19 02:01:40 UTC 2021
    - 21.4K bytes
    - Viewed (0)
  8. maven-compat/src/main/java/org/apache/maven/project/artifact/MavenMetadataSource.java

            }
    
            ResolutionGroup cached = cache.get(
                    artifact,
                    request.isResolveManagedVersions(),
                    request.getLocalRepository(),
                    request.getRemoteRepositories());
    
            if (cached != null
                    // if the POM has no file, we cached a missing artifact, only return the cached data if no update forced
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 09:07:17 UTC 2023
    - 30.3K bytes
    - Viewed (0)
  9. src/cmd/go/internal/vcweb/vcweb.go

    	Available() bool
    	Handler(dir string, env []string, logger *log.Logger) (http.Handler, error)
    }
    
    // A scriptResult describes the cached result of executing a vcweb script.
    type scriptResult struct {
    	mu sync.RWMutex
    
    	hash     [sha256.Size]byte // hash of the script file, for cache invalidation
    	hashTime time.Time         // timestamp at which the script was run, for diagnostics
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  10. pilot/pkg/model/typed_xds_cache.go

    	// If the cache has been updated to a newer push context, the write will be dropped silently.
    	// This ensures stale data does not overwrite fresh data when dealing with concurrent
    	// writers.
    	Add(key K, entry dependents, pushRequest *PushRequest, value *discovery.Resource)
    	// Get retrieves the cached value if it exists.
    	Get(key K) *discovery.Resource
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 05:26:03 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top