Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 3,324 for cachez (0.18 sec)

  1. src/cmd/go/internal/par/work.go

    }
    
    var ErrCacheEntryNotFound = errors.New("cache entry not found")
    
    // Get returns the cached result associated with key.
    // It returns ErrCacheEntryNotFound if there is no such result.
    func (c *ErrCache[K, V]) Get(key K) (V, error) {
    	v, ok := c.Cache.Get(key)
    	if !ok {
    		v.err = ErrCacheEntryNotFound
    	}
    	return v.v, v.err
    }
    
    // Cache runs an action once per key and caches the result.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 15:54:54 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_debugging.adoc

    If you have tasks that are re-executing instead of loading their outputs from the cache, then it may point to a problem in your build.
    Techniques for debugging a cache miss are explained in the following section.
    
    == Helpful data for diagnosing a cache miss
    
    A cache miss happens when Gradle calculates a build cache key for a task which is different from any existing build cache key in the cache.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 15K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/controller.go

    	c.updateSpecLocked()
    	return nil
    }
    
    // updateSpecLocked updates the cached spec graph.
    func (c *Controller) updateSpecLocked() {
    	specList := make([]cached.Value[*spec.Swagger], 0, len(c.specsByName))
    	for crd := range c.specsByName {
    		specList = append(specList, c.specsByName[crd].mergedVersionSpec)
    	}
    
    	cache := cached.MergeList(func(results []cached.Result[*spec.Swagger]) (*spec.Swagger, string, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  4. guava/src/com/google/common/base/Suppliers.java

              + ")";
        }
      }
    
      /**
       * Returns a supplier that caches the instance supplied by the delegate and removes the cached
       * value after the specified time has passed. Subsequent calls to {@code get()} return the cached
       * value if the expiration time has not passed. After the expiration time, a new value is
       * retrieved, cached, and returned. See: <a
       * href="http://en.wikipedia.org/wiki/Memoization">memoization</a>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/filesystem/plugins/gcs/expiring_lru_cache.h

        auto it = cache_.find(key);
        if (it == cache_.end()) {
          return false;
        }
        lru_list_.erase(it->second.lru_iterator);
        cache_.erase(it);
        return true;
      }
    
      /// The maximum age of entries in the cache, in seconds. A value of 0 means
      /// that no entry is ever placed in the cache.
      const uint64_t max_age_;
    
      /// The maximum number of entries in the cache. A value of 0 means there is no
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 09 19:31:22 UTC 2020
    - 6.3K bytes
    - Viewed (0)
  6. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.cache-miss-monitor.gradle.kts

        )
    
    fun Project.isExpectedCompileCacheMiss() =
    // Expected cache-miss:
    // 1. CompileAll is the seed build
    // 2. Gradleception which re-builds Gradle with a new Gradle version
    // 3. buildScanPerformance test, which doesn't depend on compileAll
    // 4. buildScanPerformance test, which doesn't depend on compileAll
    // 5. Compile All for the experimental build cache NG
    // 6. BuildCommitDistribution may build a commit which is not built before
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 05:49:29 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/internal/initialization/loadercache/ClassLoadersCachingIntegrationTest.groovy

        }
    
        private boolean isNotCached(String projectPath = ":") {
            assert output.contains("$projectPath cached:"): "no cache flag for project"
            output.contains("$projectPath cached: false")
        }
    
        @ToBeFixedForConfigurationCache(because = "test relies on static state")
        def "classloader is cached"() {
            given:
            addIsCachedCheck()
    
            when:
            run()
            run()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 19 20:09:56 UTC 2022
    - 10.6K bytes
    - Viewed (0)
  8. pkg/kubelet/container/runtime_cache.go

    	getter podsGetter
    	// The interval after which the cache should be refreshed.
    	cachePeriod time.Duration
    	// Last time when cache was updated.
    	cacheTime time.Time
    	// The content of the cache.
    	pods []*Pod
    }
    
    // GetPods returns the cached pods if they are not outdated; otherwise, it
    // retrieves the latest pods and return them.
    func (r *runtimeCache) GetPods(ctx context.Context) ([]*Pod, error) {
    	r.Lock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 09 04:03:51 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  9. guava-gwt/src/com/google/common/cache/Cache.gwt.xml

    David P. Baker <******@****.***> 1641482883 -0800
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jan 06 15:30:58 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  10. test/fixedbugs/issue59709.dir/dcache.go

    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package dcache
    
    import (
    	"./aconfig"
    	"./bresource"
    	"./cmem"
    )
    
    type Module struct {
    	cfg  *aconfig.Config
    	err  error
    	last any
    }
    
    //go:noinline
    func TD() {
    }
    
    func (m *Module) Configure(x string) error {
    	if m.err != nil {
    		return m.err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 05 21:04:28 UTC 2023
    - 626 bytes
    - Viewed (0)
Back to top