Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 5,099 for String4 (0.09 sec)

  1. src/strings/replace_test.go

    	r    *Replacer
    	want string
    }{
    	{capitalLetters, "*strings.byteReplacer"},
    	{htmlEscaper, "*strings.byteStringReplacer"},
    	{NewReplacer("12", "123"), "*strings.singleStringReplacer"},
    	{NewReplacer("1", "12"), "*strings.byteStringReplacer"},
    	{NewReplacer("", "X"), "*strings.genericReplacer"},
    	{NewReplacer("a", "1", "b", "12", "cde", "123"), "*strings.genericReplacer"},
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 22:53:05 UTC 2017
    - 14.1K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/objfile.go

    	if s.IsPcdata() {
    		return 'P'
    	}
    	if strings.HasPrefix(name, "gcargs.") ||
    		strings.HasPrefix(name, "gclocals.") ||
    		strings.HasPrefix(name, "gclocals·") ||
    		strings.HasSuffix(name, ".opendefer") ||
    		strings.HasSuffix(name, ".arginfo0") ||
    		strings.HasSuffix(name, ".arginfo1") ||
    		strings.HasSuffix(name, ".argliveinfo") ||
    		strings.HasSuffix(name, ".wrapinfo") ||
    		strings.HasSuffix(name, ".args_stackmap") ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24K bytes
    - Viewed (0)
  3. src/cmd/go/main.go

    	if used >= len(os.Args) {
    		return
    	}
    
    	var dir string
    	switch a := os.Args[used]; {
    	default:
    		return
    
    	case a == "-C", a == "--C":
    		if used+1 >= len(os.Args) {
    			return
    		}
    		dir = os.Args[used+1]
    		os.Args = slices.Delete(os.Args, used, used+2)
    
    	case strings.HasPrefix(a, "-C="), strings.HasPrefix(a, "--C="):
    		_, dir, _ = strings.Cut(a, "=")
    		os.Args = slices.Delete(os.Args, used, used+1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:09:11 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. tensorflow/cc/saved_model/BUILD

    #include "third_party/absl/strings/str_cat.h"
    #Description:
    # TensorFlow SavedModel.
    
    load("//tensorflow:strict.default.bzl", "py_strict_binary")
    load(
        "//tensorflow:tensorflow.bzl",
        "if_android",
        "if_google",
        "if_mobile",
        "if_not_mobile",
        "if_not_windows_or_mac",
        "tf_cc_test",
    )
    load("//tensorflow:tensorflow.default.bzl", "filegroup")
    load(
        "//tensorflow/core/platform:build_config_root.bzl",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 05:43:44 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  5. pkg/kubelet/network/dns/dns_test.go

    		{"\n", []string{}, []string{}, []string{}, false},
    		{"\t\n\t", []string{}, []string{}, []string{}, false},
    		{"#comment\n", []string{}, []string{}, []string{}, false},
    		{" #comment\n", []string{}, []string{}, []string{}, false},
    		{"#comment\n#comment", []string{}, []string{}, []string{}, false},
    		{"#comment\nnameserver", []string{}, []string{}, []string{}, true},                           // nameserver empty
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modcmd/edit.go

    	type Module struct {
    		Path    string
    		Version string
    	}
    
    	type GoMod struct {
    		Module    ModPath
    		Go        string
    		Toolchain string
    		Godebug   []Godebug
    		Require   []Require
    		Exclude   []Module
    		Replace   []Replace
    		Retract   []Retract
    	}
    
    	type ModPath struct {
    		Path       string
    		Deprecated string
    	}
    
    	type Godebug struct {
    		Key   string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/profile/legacy_profile.go

    	const delimiter = "="
    	for s.Scan() {
    		line := s.Text()
    		if line = strings.TrimSpace(line); isSpaceOrComment(line) {
    			continue
    		}
    		if strings.HasPrefix(line, "---") {
    			break
    		}
    		attr := strings.SplitN(line, delimiter, 2)
    		if len(attr) != 2 {
    			break
    		}
    		key, val := strings.TrimSpace(attr[0]), strings.TrimSpace(attr[1])
    		var err error
    		switch key {
    		case "cycles/second":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 32.8K bytes
    - Viewed (0)
  8. tensorflow/c/eager/BUILD

        extra_deps = [
            "@com_google_absl//absl/strings",
        ],
        visibility = [
            "//tensorflow:internal",
        ],
        deps = [
            ":tfe_tensorhandle_internal",
        ],
    )
    
    cc_header_only_library(
        name = "tfe_cancellationmanager_internal_hdrs_only",
        extra_deps = [
            "@com_google_absl//absl/strings",
        ],
        visibility = [
            "//tensorflow:internal",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 11 23:52:39 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  9. istioctl/pkg/workload/workload_test.go

    	tests := []struct {
    		name string
    		arg  []string
    		want map[string]string
    	}{
    		{name: "empty", arg: []string{""}, want: map[string]string{"": ""}},
    		{name: "one-valid", arg: []string{"key=value"}, want: map[string]string{"key": "value"}},
    		{name: "one-valid-double-equals", arg: []string{"key==value"}, want: map[string]string{"key": "=value"}},
    		{name: "one-key-only", arg: []string{"key"}, want: map[string]string{"key": ""}},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  10. src/go/doc/comment/parse.go

    			break
    		}
    		if b == "" || strings.HasPrefix(b, " ") {
    			return false // not followed by non-space
    		}
    	}
    
    	return true
    }
    
    // oldHeading returns the *Heading for the given old-style section heading line.
    func (d *parseDoc) oldHeading(line string) Block {
    	return &Heading{Text: []Text{Plain(strings.TrimSpace(line))}}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 33.5K bytes
    - Viewed (0)
Back to top