Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of about 10,000 for String4 (0.16 sec)

  1. pkg/config/analysis/analyzers/util/service_lookup.go

    			result[NewScopedFqdn(scope, r.Metadata.FullName.Namespace, r.Metadata.FullName.Name.String())] = se
    		}
    		return true
    	})
    	return result
    }
    
    func getVisibleNamespacesFromExportToAnno(anno, resourceNamespace string) []string {
    	scopes := make([]string, 0)
    	if anno == "" {
    		scopes = append(scopes, ExportToAllNamespaces)
    	} else {
    		for _, ns := range strings.Split(anno, ",") {
    			if ns == ExportToNamespaceLocal {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 21 21:37:53 UTC 2023
    - 5K bytes
    - Viewed (0)
  2. pkg/collateral/metrics/otel.go

    // limitations under the License.
    
    package metrics
    
    import (
    	"strings"
    
    	"istio.io/istio/pkg/monitoring"
    	"istio.io/istio/pkg/slices"
    )
    
    var charReplacer = strings.NewReplacer("/", "_", ".", "_", " ", "_", "-", "")
    
    func promName(metricName string) string {
    	s := strings.TrimPrefix(metricName, "/")
    	return charReplacer.Replace(s)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. 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)
  4. ci/official/utilities/get_versions.sh

    # Note: in awk, "print $N" prints the Nth "field", where fields are strings separated
    # by whitespace. The flag "-F<x>" changes the behavior such that fields are now strings
    # separated by the character <x>. Therefore, -F\' (escaped single quote) means that field
    # $2 in <Tensor'flow'> is <flow>. This is useful for reading string literals like below.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 10 19:39:41 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/api/validation/path/name.go

    func IsValidPathSegmentName(name string) []string {
    	for _, illegalName := range NameMayNotBe {
    		if name == illegalName {
    			return []string{fmt.Sprintf(`may not be '%s'`, illegalName)}
    		}
    	}
    
    	var errors []string
    	for _, illegalContent := range NameMayNotContain {
    		if strings.Contains(name, illegalContent) {
    			errors = append(errors, fmt.Sprintf(`may not contain '%s'`, illegalContent))
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 16 13:23:13 UTC 2020
    - 2.2K 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. src/go/doc/doc_test.go

    }
    
    func nodeFmt(node any, fset *token.FileSet) string {
    	var buf bytes.Buffer
    	printer.Fprint(&buf, fset, node)
    	return strings.ReplaceAll(strings.TrimSpace(buf.String()), "\n", "\n\t")
    }
    
    func synopsisFmt(s string) string {
    	const n = 64
    	if len(s) > n {
    		// cut off excess text and go back to a word boundary
    		s = s[0:n]
    		if i := strings.LastIndexAny(s, "\t\n "); i >= 0 {
    			s = s[0:i]
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:52 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/mod/golang.org_x_text_v0.3.0.txt

    	tags []Tag
    }
    
    func (m *matcher) Match(prefs ...Tag) (Tag, int, int) {
    	for _, pref := range prefs {
    		for _, tag := range m.tags {
    			if tag == pref || strings.HasPrefix(string(pref), string(tag+"-")) || strings.HasPrefix(string(tag), string(pref+"-")) {
    				return tag, 0, 0
    			}
    		}
    	}
    	return m.tags[0], 0, 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 10 00:47:13 UTC 2018
    - 1.1K bytes
    - Viewed (0)
Back to top