Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 301 for typeOf (0.14 sec)

  1. src/encoding/xml/read.go

    // UnmarshalXMLAttr is used only for struct fields with the
    // "attr" option in the field tag.
    type UnmarshalerAttr interface {
    	UnmarshalXMLAttr(attr Attr) error
    }
    
    // receiverType returns the receiver type to use in an expression like "%s.MethodName".
    func receiverType(val any) string {
    	t := reflect.TypeOf(val)
    	if t.Name() != "" {
    		return t.String()
    	}
    	return "(" + t.String() + ")"
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  2. src/encoding/binary/binary_test.go

    		err := Read(bytes.NewReader([]byte{1, 2, 3, 4, 5, 6, 7, 8}), order, dst)
    		want := fmt.Sprintf("binary.Read: invalid type %T", dst)
    		if err == nil || err.Error() != want {
    			t.Fatalf("for type %T: got %q; want %q", dst, err, want)
    		}
    	}
    }
    
    func TestNoFixedSize(t *testing.T) {
    	type Person struct {
    		Age    int
    		Weight float64
    		Height float64
    	}
    
    	person := Person{
    		Age:    27,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:16:18 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  3. pkg/workloadapi/security/authorization.pb.go

    	}
    	return nil
    }
    
    type isStringMatch_MatchType interface {
    	isStringMatch_MatchType()
    }
    
    type StringMatch_Exact struct {
    	// exact string match
    	Exact string `protobuf:"bytes,1,opt,name=exact,proto3,oneof"`
    }
    
    type StringMatch_Prefix struct {
    	// prefix-based match
    	Prefix string `protobuf:"bytes,2,opt,name=prefix,proto3,oneof"`
    }
    
    type StringMatch_Suffix struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 02:27:10 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  4. src/encoding/xml/read_test.go

    	Summary Text      `xml:"summary"`
    }
    
    type Link struct {
    	Rel  string `xml:"rel,attr,omitempty"`
    	Href string `xml:"href,attr"`
    }
    
    type Person struct {
    	Name     string `xml:"name"`
    	URI      string `xml:"uri"`
    	Email    string `xml:"email"`
    	InnerXML string `xml:",innerxml"`
    }
    
    type Text struct {
    	Type string `xml:"type,attr,omitempty"`
    	Body string `xml:",chardata"`
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  5. src/encoding/json/encode_test.go

    			}
    		})
    	}
    }
    
    // byte slices are special even if they're renamed types.
    type renamedByte byte
    type renamedByteSlice []byte
    type renamedRenamedByteSlice []renamedByte
    
    func TestEncodeRenamedByteSlice(t *testing.T) {
    	s := renamedByteSlice("abc")
    	got, err := Marshal(s)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  6. src/encoding/asn1/asn1.go

    	if !ok1 {
    		err = StructuralError{fmt.Sprintf("unknown Go type: %v", fieldType)}
    		return
    	}
    
    	// Special case for strings: all the ASN.1 string types map to the Go
    	// type string. getUniversalType returns the tag for PrintableString
    	// when it sees a string, so if we see a different string type on the
    	// wire, we change the universal type to match.
    	if universalTag == TagPrintableString {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 31.8K bytes
    - Viewed (0)
  7. pkg/volume/util/util.go

    		windowsPath = "c:" + windowsPath
    	}
    	return windowsPath
    }
    
    // GetUniquePodName returns a unique identifier to reference a pod by
    func GetUniquePodName(pod *v1.Pod) types.UniquePodName {
    	return types.UniquePodName(pod.UID)
    }
    
    // GetUniqueVolumeName returns a unique name representing the volume/plugin.
    // Caller should ensure that volumeName is a name/ID uniquely identifying the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/printf/printf.go

    		}
    	}
    	obj, _, _ := types.LookupFieldOrMethod(typ, false, nil, "Format")
    	fn, ok := obj.(*types.Func)
    	if !ok {
    		return false
    	}
    	sig := fn.Type().(*types.Signature)
    	return sig.Params().Len() == 2 &&
    		sig.Results().Len() == 0 &&
    		analysisutil.IsNamedType(sig.Params().At(0).Type(), "fmt", "State") &&
    		types.Identical(sig.Params().At(1).Type(), types.Typ[types.Rune])
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  9. operator/pkg/translate/translate.go

    	}
    
    	vv := reflect.ValueOf(node)
    	vt := reflect.TypeOf(node)
    	switch vt.Kind() {
    	case reflect.Ptr:
    		if !util.IsNilOrInvalidValue(vv.Elem()) {
    			errs = util.AppendErrs(errs, t.ProtoToHelmValues(vv.Elem().Interface(), root, path))
    		}
    	case reflect.Struct:
    		scope.Debug("Struct")
    		for i := 0; i < vv.NumField(); i++ {
    			fieldName := vv.Type().Field(i).Name
    			fieldValue := vv.Field(i)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 19:43:09 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  10. helm-releases/minio-5.0.14.tgz

    ions | nindent 4 }} {{- end }} spec: {{- if (or (eq .Values.service.type "ClusterIP" "") (empty .Values.service.type)) }} type: ClusterIP {{- if not (empty .Values.service.clusterIP) }} clusterIP: {{ .Values.service.clusterIP }} {{- end }} {{- else if eq .Values.service.type "LoadBalancer" }} type: {{ .Values.service.type }} loadBalancerIP: {{ default "" .Values.service.loadBalancerIP }} {{- else }} type: {{ .Values.service.type }} {{- end }} ports: - name: {{ $scheme }} port: {{ .Values.service.port...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Sep 30 20:46:10 UTC 2023
    - 20.6K bytes
    - Viewed (0)
Back to top