Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 825 for suffixed (7.22 sec)

  1. guava/src/com/google/common/net/InternetDomainName.java

       *
       * <p>Public suffixes are a proper superset of {@linkplain #isRegistrySuffix() registry suffixes}.
       * The list of public suffixes additionally contains privately owned domain names under which
       * Internet users can register subdomains. An example of a public suffix that is not a registry
       * suffix is {@code blogspot.com}. Note that it is true that all public suffixes <i>have</i>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 05 20:47:23 UTC 2024
    - 28K bytes
    - Viewed (0)
  2. pkg/kubelet/network/dns/dns_windows.go

    	}
    	for _, iface := range ifaces {
    		suffixes, err := getRegistryStringValue(fmt.Sprintf("%s\\%s", netIfacesRegistry, iface), "SearchList")
    		if err != nil {
    			return nil, err
    		}
    		if suffixes == "" {
    			continue
    		}
    		for _, suffix := range strings.Split(suffixes, ",") {
    			if !elemInList(suffix, allSuffixes) {
    				allSuffixes = append(allSuffixes, suffix)
    			}
    		}
    	}
    
    	return allSuffixes, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 21 22:21:57 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  3. src/go/doc/comment/testdata/text8.txt

    If the arguments don't have version suffixes, "go install" may run in
    module-aware mode or GOPATH mode, depending on the GO111MODULE environment
    variable and the presence of a go.mod file. See 'go help modules' for details.
    If module-aware mode is enabled, "go install" runs in the context of the main
    module.
    -- text --
    If the arguments have version suffixes
    (like @latest or @v1.0.0), "go install"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:48 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/utils/tf_to_uniform_attribute_utils.cc

    constexpr std::array<absl::string_view, 3> kQuantizationAxisAttrs = {
        "input_quantization_axis", "quantization_axis", "rhs_quantization_axis"};
    
    // Common suffixes for attributes used in FillQuantizationAttributes.
    constexpr std::array<absl::string_view, 2> kSuffixes = {"_min_val", "_max_val"};
    
    Attribute GetWindowStridesValue(
        PatternRewriter& rewriter, llvm::StringMap<Attribute>& identifier_to_attr) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  5. platforms/core-runtime/build-process-services/src/main/java/org/gradle/api/internal/classpath/DefaultModuleRegistry.java

            List<String> suffixes = new ArrayList<>();
    
            suffixes.add(("/" + projectDirName + "/out/production/classes").replace('/', File.separatorChar));
            suffixes.add(("/" + projectDirName + "/out/production/resources").replace('/', File.separatorChar));
            suffixes.add(("/" + projectDirName + "/bin").replace('/', File.separatorChar));
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/cmd/bisect/main.go

    	}
    
    	// Parse output to construct result.
    	r := &Result{
    		Suffix:  suffix,
    		Success: err == nil,
    		Cmd:     cmdText,
    		Out:     string(out),
    	}
    
    	// Calculate bits, mask to identify suffix matches.
    	var bits, mask uint64
    	if suffix != "" && suffix != "y" && suffix != "n" && suffix != "v" {
    		var err error
    		bits, err = strconv.ParseUint(suffix, 2, 64)
    		if err != nil {
    			b.Fatalf("internal error: bad suffix")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 18:11:19 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.4.md

    * GC pod ips ([#35572](https://github.com/kubernetes/kubernetes/pull/35572), [@bprashanth](https://github.com/bprashanth))
    * Fix version string generation for local version different from release and not based on `-alpha.no` or `-beta.no` suffixed tag. ([#34612](https://github.com/kubernetes/kubernetes/pull/34612), [@jellonek](https://github.com/jellonek))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  8. src/cmd/go/internal/gover/toolchain.go

    // A toolchain is named "goVERSION".
    // A suffix after the VERSION introduced by a -, space, or tab is removed.
    // Examples:
    //
    //	FromToolchain("go1.2.3") == "1.2.3"
    //	FromToolchain("go1.2.3-bigcorp") == "1.2.3"
    //	FromToolchain("invalid") == ""
    func FromToolchain(name string) string {
    	if strings.ContainsAny(name, "\\/") {
    		// The suffix must not include a path separator, since that would cause
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 23:20:32 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/asmdecl/asmdecl.go

    			cc = append(cc, newComponent(suffix+"_"+w1, 4, "half "+s, off, 4, suffix))
    			cc = append(cc, newComponent(suffix+"_"+w2, 4, "half "+s, off+4, 4, suffix))
    		}
    
    	case asmEmptyInterface:
    		cc = append(cc, newComponent(suffix+"_type", asmKind(arch.ptrSize), "interface type", off, arch.ptrSize, suffix))
    		cc = append(cc, newComponent(suffix+"_data", asmKind(arch.ptrSize), "interface data", off+arch.ptrSize, arch.ptrSize, suffix))
    
    	case asmInterface:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/internal/versions/versions.go

    // valid versions and equal to each other.
    // The language version "go1.21" compares less than the
    // release candidate and eventual releases "go1.21rc1" and "go1.21.0".
    // Custom toolchain suffixes are ignored during comparison:
    // "go1.21.0" and "go1.21.0-bigcorp" are equal.
    func Compare(x, y string) int { return compare(stripGo(x), stripGo(y)) }
    
    // IsValid reports whether the version x is valid.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top