Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 49 of 49 for valueDoc (0.25 sec)

  1. src/text/template/exec_test.go

    		`{{with index . 0}}{{.String}}{{end}}`,
    	}
    	for _, text := range texts {
    		tmpl := Must(New("tmpl").Parse(text))
    		var buf strings.Builder
    		err := tmpl.Execute(&buf, reflect.ValueOf([]V{{1}}))
    		if err != nil {
    			t.Fatalf("%s: Execute: %v", text, err)
    		}
    		if buf.String() != "<1>" {
    			t.Fatalf("%s: template output = %q, want %q", text, &buf, "<1>")
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/storage/v1alpha1/generated.pb.go

    		`Message:` + fmt.Sprintf("%v", this.Message) + `,`,
    		`}`,
    	}, "")
    	return s
    }
    func valueToStringGenerated(v interface{}) string {
    	rv := reflect.ValueOf(v)
    	if rv.IsNil() {
    		return "nil"
    	}
    	pv := reflect.Indirect(rv).Interface()
    	return fmt.Sprintf("*%v", pv)
    }
    func (m *CSIStorageCapacity) Unmarshal(dAtA []byte) error {
    	l := len(dAtA)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 76.5K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/listener_test.go

    		}
    	}
    }
    
    // Test to catch new fields in FilterChainMatch message.
    func TestFilterChainMatchFields(t *testing.T) {
    	fcm := listener.FilterChainMatch{}
    	e := reflect.ValueOf(&fcm).Elem()
    	// If this fails, that means new fields have been added to FilterChainMatch, filterChainMatchEqual function needs to be updated.
    	if e.NumField() != 14 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/apis/audit/v1/generated.pb.go

    		`OmitManagedFields:` + valueToStringGenerated(this.OmitManagedFields) + `,`,
    		`}`,
    	}, "")
    	return s
    }
    func valueToStringGenerated(v interface{}) string {
    	rv := reflect.ValueOf(v)
    	if rv.IsNil() {
    		return "nil"
    	}
    	pv := reflect.Indirect(rv).Interface()
    	return fmt.Sprintf("*%v", pv)
    }
    func (m *Event) Unmarshal(dAtA []byte) error {
    	l := len(dAtA)
    	iNdEx := 0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 81.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/rbac/v1/generated.pb.go

    		`Name:` + fmt.Sprintf("%v", this.Name) + `,`,
    		`Namespace:` + fmt.Sprintf("%v", this.Namespace) + `,`,
    		`}`,
    	}, "")
    	return s
    }
    func valueToStringGenerated(v interface{}) string {
    	rv := reflect.ValueOf(v)
    	if rv.IsNil() {
    		return "nil"
    	}
    	pv := reflect.Indirect(rv).Interface()
    	return fmt.Sprintf("*%v", pv)
    }
    func (m *AggregationRule) Unmarshal(dAtA []byte) error {
    	l := len(dAtA)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/rbac/v1beta1/generated.pb.go

    		`Name:` + fmt.Sprintf("%v", this.Name) + `,`,
    		`Namespace:` + fmt.Sprintf("%v", this.Namespace) + `,`,
    		`}`,
    	}, "")
    	return s
    }
    func valueToStringGenerated(v interface{}) string {
    	rv := reflect.ValueOf(v)
    	if rv.IsNil() {
    		return "nil"
    	}
    	pv := reflect.Indirect(rv).Interface()
    	return fmt.Sprintf("*%v", pv)
    }
    func (m *AggregationRule) Unmarshal(dAtA []byte) error {
    	l := len(dAtA)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/rbac/v1alpha1/generated.pb.go

    		`Name:` + fmt.Sprintf("%v", this.Name) + `,`,
    		`Namespace:` + fmt.Sprintf("%v", this.Namespace) + `,`,
    		`}`,
    	}, "")
    	return s
    }
    func valueToStringGenerated(v interface{}) string {
    	rv := reflect.ValueOf(v)
    	if rv.IsNil() {
    		return "nil"
    	}
    	pv := reflect.Indirect(rv).Interface()
    	return fmt.Sprintf("*%v", pv)
    }
    func (m *AggregationRule) Unmarshal(dAtA []byte) error {
    	l := len(dAtA)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  8. src/net/http/transport.go

    	// get at its http2.Transport value (via the "https"
    	// altproto map) so we can call CloseIdleConnections on it if
    	// requested. (Issue 22891)
    	altProto, _ := t.altProto.Load().(map[string]RoundTripper)
    	if rv := reflect.ValueOf(altProto["https"]); rv.IsValid() && rv.Type().Kind() == reflect.Struct && rv.Type().NumField() == 1 {
    		if v := rv.Field(0); v.CanInterface() {
    			if h2i, ok := v.Interface().(h2Transport); ok {
    				t.h2transport = h2i
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  9. src/reflect/type.go

    // manipulate objects with arbitrary types. The typical use is to take a value
    // with static type interface{} and extract its dynamic type information by
    // calling TypeOf, which returns a Type.
    //
    // A call to ValueOf returns a Value representing the run-time data.
    // Zero takes a Type and returns a Value representing a zero value
    // for that type.
    //
    // See "The Laws of Reflection" for an introduction to reflection in Go:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
Back to top