Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 186 for expandKey (0.15 sec)

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

       *
       * It is possible for a Cell to become unused when threads that
       * once hashed to it terminate, as well as in the case where
       * doubling the table causes no thread to hash to it under
       * expanded mask.  We do not try to detect or remove such cells,
       * under the assumption that for long-running instances, observed
       * contention levels will recur, so the cells will eventually be
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  2. guava/src/com/google/common/cache/Striped64.java

       *
       * It is possible for a Cell to become unused when threads that
       * once hashed to it terminate, as well as in the case where
       * doubling the table causes no thread to hash to it under
       * expanded mask.  We do not try to detect or remove such cells,
       * under the assumption that for long-running instances, observed
       * contention levels will recur, so the cells will eventually be
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/bundling/ConcurrentArchiveIntegrationTest.groovy

                }
    
                tasks.register('verify') {
                    dependsOn tasks.named('update1'), tasks.named('update2')
                    doLast {
                        def cacheDir = file("build/tmp/.cache/expanded")
                        assert cacheDir.list().size() == 1 // There should only be 1 file here, the single unzipped cache entry
                        cacheDir.eachFile(groovy.io.FileType.DIRECTORIES) { File f ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 17:32:21 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/python/pywrap_quantization.cc

            Each preset is expressible by other fields in `QuantizationConfig`.
            Returns a copy of `QuantizationConfig` (serialized) where the fields are
            expanded from presets. If no preset has been set, it is a no-op and
            returns the same copy of the input.
            )pbdoc",
            py::arg("quantization_config_serialized"));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 13:51:40 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/file/archive/ZipFileTree.java

        private File getExpandedDir() {
            File zipFile = fileProvider.get();
            String expandedDirName = "zip_" + fileHasher.hash(zipFile);
            return temporaryExtractionDir.newTemporaryDirectory(".cache", "expanded", expandedDirName);
        }
    
        private static final class DetailsImpl extends AbstractArchiveFileTreeElement {
            private final File originalFile;
            private final ZipArchiveEntry entry;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 15:15:04 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. guava/src/com/google/common/hash/Striped64.java

       *
       * It is possible for a Cell to become unused when threads that
       * once hashed to it terminate, as well as in the case where
       * doubling the table causes no thread to hash to it under
       * expanded mask.  We do not try to detect or remove such cells,
       * under the assumption that for long-running instances, observed
       * contention levels will recur, so the cells will eventually be
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  7. pkg/dns/client/dns.go

    	// of A or AAAA type as appropriate.
    	name4 map[string][]dns.RR
    	name6 map[string][]dns.RR
    	// The cname records here (comprised of different variants of the hosts above,
    	// expanded by the search namespaces) pointing to the actual host.
    	cname map[string][]dns.RR
    }
    
    const (
    	// In case the client decides to honor the TTL, keep it low so that we can always serve
    	// the latest IP for a host.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 16:17:34 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirSymbolProvider.kt

                is FirTypeAliasSymbol -> firClassLike.fullyExpandedClass(analysisSession.useSiteSession)
                    ?: errorWithAttachment("${firClassLike.fir::class} should be expanded to the expected type alias") {
                        val errorElement = this@resolveToFirClassLikeSymbol
                        withFirSymbolEntry("firClassLikeSymbol", firClassLike)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu May 23 17:29:30 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/text/internal/language/match.go

    // In most cases this means setting fields for unknown values, but in some
    // cases it may alter a value.  It returns an ErrMissingLikelyTagsData error
    // if the given locale cannot be expanded.
    func (t Tag) addLikelySubtags() (Tag, error) {
    	id, err := addTags(t)
    	if err != nil {
    		return t, err
    	} else if id.equalTags(t) {
    		return t, nil
    	}
    	id.RemakeString()
    	return id, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  10. pkg/kubelet/container/helpers.go

    	missingKeys := sets.New[string]()
    	expanded := expansion.Expand(mount.SubPathExpr, func(key string) string {
    		value, ok := envmap[key]
    		if !ok || len(value) == 0 {
    			missingKeys.Insert(key)
    		}
    		return value
    	})
    
    	if len(missingKeys) > 0 {
    		return "", fmt.Errorf("missing value for %s", strings.Join(sets.List(missingKeys), ", "))
    	}
    	return expanded, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.3K bytes
    - Viewed (0)
Back to top