Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 271 for stringy (0.11 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    				applyPatchOperation{
    					"create instance with strings that do not start with k8s",
    					myCRDV1Beta1, myCRDInstanceName, map[string]interface{}{
    						"field": map[string]interface{}{
    							"object1": map[string]interface{}{
    								"stringField": "a string",
    								"intField":    5,
    							},
    							"object2": map[string]interface{}{
    								"stringField": "another string",
    								"intField":    15,
    							},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  2. fastapi/param_functions.py

        min_length: Annotated[
            Optional[int],
            Doc(
                """
                Minimum length for strings.
                """
            ),
        ] = None,
        max_length: Annotated[
            Optional[int],
            Doc(
                """
                Maximum length for strings.
                """
            ),
        ] = None,
        pattern: Annotated[
            Optional[str],
            Doc(
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 62.5K bytes
    - Viewed (0)
  3. src/cmd/go/go_test.go

    	if tg.ran {
    		tg.t.Fatal("internal testsuite error: call to parallel after run")
    	}
    	for _, e := range tg.env {
    		if strings.HasPrefix(e, "GOROOT=") || strings.HasPrefix(e, "GOPATH=") || strings.HasPrefix(e, "GOBIN=") {
    			val := e[strings.Index(e, "=")+1:]
    			if strings.HasPrefix(val, "testdata") || strings.HasPrefix(val, "./testdata") {
    				tg.t.Fatalf("internal testsuite error: call to parallel with testdata in environment (%s)", e)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  4. src/net/http/client_test.go

    		xfoo = "foo-val"
    	)
    	var ts2URL string
    	ts1 := newClientServerTest(t, mode, HandlerFunc(func(w ResponseWriter, r *Request) {
    		want := Header{
    			"User-Agent":      []string{ua},
    			"X-Foo":           []string{xfoo},
    			"Referer":         []string{ts2URL},
    			"Accept-Encoding": []string{"gzip"},
    			"Cookie":          []string{"foo=bar"},
    			"Authorization":   []string{"secretpassword"},
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/certificates/v1/generated.pb.go

    }
    func (this *CertificateSigningRequest) String() string {
    	if this == nil {
    		return "nil"
    	}
    	s := strings.Join([]string{`&CertificateSigningRequest{`,
    		`ObjectMeta:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.ObjectMeta), "ObjectMeta", "v1.ObjectMeta", 1), `&`, ``, 1) + `,`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/apis/audit/v1/generated.pb.go

    	return s
    }
    func (this *EventList) String() string {
    	if this == nil {
    		return "nil"
    	}
    	repeatedStringForItems := "[]Event{"
    	for _, f := range this.Items {
    		repeatedStringForItems += strings.Replace(strings.Replace(f.String(), "Event", "Event", 1), `&`, ``, 1) + ","
    	}
    	repeatedStringForItems += "}"
    	s := strings.Join([]string{`&EventList{`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 81.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    	} else if len(strings.Split(spec.Group, ".")) < 2 {
    		allErrs = append(allErrs, field.Invalid(fldPath.Child("group"), spec.Group, "should be a domain with at least one dot"))
    	}
    
    	allErrs = append(allErrs, validateEnumStrings(fldPath.Child("scope"), string(spec.Scope), []string{string(apiextensions.ClusterScoped), string(apiextensions.NamespaceScoped)}, true)...)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  8. src/html/template/exec_test.go

    	Str fmt.Stringer
    	Err error
    	// Pointers
    	PI  *int
    	PS  *string
    	PSI *[]int
    	NIL *int
    	// Function (not method)
    	BinaryFunc      func(string, string) string
    	VariadicFunc    func(...string) string
    	VariadicFuncInt func(int, ...string) string
    	NilOKFunc       func(*int) bool
    	ErrFunc         func() (string, error)
    	PanicFunc       func() string
    	// Template to test evaluation of templates.
    	Tmpl *Template
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  9. istioctl/pkg/describe/describe.go

    	svcHost := extendFQDN(fmt.Sprintf("%s.%s", svc.ObjectMeta.Name, svc.ObjectMeta.Namespace))
    	facts := []string{}
    	mismatchNotes := []string{}
    	match := false
    	for _, dest := range route.Route {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/lib.go

    func typeSymbolMangle(name string) string {
    	isType := strings.HasPrefix(name, "type:")
    	if !isType && !strings.Contains(name, "@") {
    		// Issue 58800: instantiated symbols may include a type name, which may contain "@"
    		return name
    	}
    	if strings.HasPrefix(name, "type:runtime.") {
    		return name
    	}
    	if strings.HasPrefix(name, "go:string.") {
    		// String symbols will be grouped to a single go:string.* symbol.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
Back to top