Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 3,005 for cachez (0.18 sec)

  1. tensorflow/compiler/jit/device_compilation_cache.h

    DeviceCompilationCache<ExecutableType>::Lookup(const Key& key) const {
      // The outer lock protects the existence of the cache entry. It does not
      // protect the contents of the cache entry.
      Entry* entry;
      {
        mutex_lock lock(compile_cache_mu_);
        // Find cache entry.
        auto it = cache_.find(key);
        if (it == cache_.cend()) {
          return std::nullopt;
        }
    
        entry = it->second.get();
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 12 08:49:52 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  2. guava/src/com/google/common/cache/LoadingCache.java

       * Cache.asMap().putIfAbsent} after loading has completed; if another value was associated with
       * {@code key} while the new value was loading then a removal notification will be sent for the
       * new value.
       *
       * <p>If the cache loader associated with this cache is known not to throw checked exceptions,
       * then prefer {@link #getUnchecked} over this method.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Aug 06 17:12:03 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/ConsumerProvidedVariantFinder.java

            }
            return last;
        }
    
        /**
         * Caches calls to the transform chain selection algorithm. The cached results are stored in
         * a variant-independent manner, such that only the attributes of the input variants are cached.
         * This way, if multiple calls are made with different variants but those variants have the same
         * attributes, the cached results may be used.
         */
        private static class TransformCache {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/directory_layout.adoc

    As stated above, caches in Gradle User Home are version-specific.
    Different versions of Gradle will perform maintenance on only the version-specific caches associated with each version.
    
    On the other hand, some caches are shared between versions (e.g., the dependency artifact cache or the artifact transform cache).
    
    Beginning with Gradle version 8.0, the cache cleanup settings can be configured to custom retention periods.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 23:00:38 UTC 2024
    - 13K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/DefaultImmutableModuleIdentifierFactoryTest.groovy

            then:
            m.group == 'foo'
            m.name == 'bar'
        }
    
        def "caches module ids"() {
            when:
            def m1 = factory.module('foo', 'bar')
            def m2 = factory.module('foo', 'bar')
    
            then:
            m1.is(m2)
        }
    
        def "caches modules with versions"() {
            when:
            def m1 = factory.moduleWithVersion('foo', 'bar', '1.0')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  6. .github/workflows/codeql-analysis.yml

        - name: Cache Gradle Modules
          uses: actions/cache@v4
          with:
            path: |
              ~/.gradle/caches/modules-2/
              ~/.gradle/caches/build-cache-1/
              ~/.gradle/caches/signatures/
              ~/.gradle/caches/keyrings/
            key: ${{ runner.os }}-gradle-cache-${{ hashFiles('gradle/wrapper/gradle-wrapper.properties') }}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. src/crypto/rsa/boring.go

    // alongside the cached BoringCrypto key and check that the real key
    // still matches before using the cached key. The theory is that the real
    // operations are significantly more expensive than the comparison.
    
    type boringPub struct {
    	key  *boring.PublicKeyRSA
    	orig PublicKey
    }
    
    var pubCache bcache.Cache[PublicKey, boringPub]
    var privCache bcache.Cache[PrivateKey, boringPriv]
    
    func init() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 18 00:30:19 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/img/build-cache/cache-admin-hit-rate.png

    cache-admin-hit-rate.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 98.6K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top