Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 45 for subfield (0.38 sec)

  1. src/reflect/badlinkname.go

    //go:linkname badlinkname_rtype_Name reflect.(*rtype).Name
    func badlinkname_rtype_Name(*rtype) string
    
    //go:linkname badlinkname_rtype_NumField reflect.(*rtype).NumField
    func badlinkname_rtype_NumField(*rtype) int
    
    //go:linkname badlinkname_rtype_NumIn reflect.(*rtype).NumIn
    func badlinkname_rtype_NumIn(*rtype) int
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/initialization/MixInLegacyTypesClassLoader.java

                // this.metaClass = <value>
                methodVisitor.visitFieldInsn(Opcodes.PUTFIELD, className, META_CLASS_FIELD, META_CLASS_TYPE.getDescriptor());
    
                // return this.metaClass
                methodVisitor.visitVarInsn(Opcodes.ALOAD, 0);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 17K bytes
    - Viewed (0)
  3. src/internal/fmtsort/sort.go

    	case reflect.Chan:
    		if c, ok := nilCompare(aVal, bVal); ok {
    			return c
    		}
    		return cmp.Compare(aVal.Pointer(), bVal.Pointer())
    	case reflect.Struct:
    		for i := 0; i < aVal.NumField(); i++ {
    			if c := compare(aVal.Field(i), bVal.Field(i)); c != 0 {
    				return c
    			}
    		}
    		return 0
    	case reflect.Array:
    		for i := 0; i < aVal.Len(); i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:31:45 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  4. pkg/apis/core/types.go

    	// see: https://issues.k8s.io/61966
    	// +optional
    	DoNotUseExternalID string
    }
    
    // Deprecated: NodeConfigSource specifies a source of node configuration. Exactly one subfield must be non-nil.
    type NodeConfigSource struct {
    	ConfigMap *ConfigMapNodeConfigSource
    }
    
    // Deprecated: ConfigMapNodeConfigSource represents the config map of a node
    type ConfigMapNodeConfigSource struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    func (NodeCondition) SwaggerDoc() map[string]string {
    	return map_NodeCondition
    }
    
    var map_NodeConfigSource = map[string]string{
    	"":          "NodeConfigSource specifies a source of node configuration. Exactly one subfield (excluding metadata) must be non-nil. This API is deprecated since 1.22",
    	"configMap": "ConfigMap is a reference to a Node's ConfigMap",
    }
    
    func (NodeConfigSource) SwaggerDoc() map[string]string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  6. src/encoding/gob/encode.go

    		for fieldNum, wireFieldNum := 0, 0; fieldNum < srt.NumField(); fieldNum++ {
    			f := srt.Field(fieldNum)
    			if !isSent(&f) {
    				continue
    			}
    			op, indir := encOpFor(f.Type, seen, building)
    			engine.instr = append(engine.instr, encInstr{*op, wireFieldNum, f.Index, indir})
    			wireFieldNum++
    		}
    		if srt.NumField() > 0 && len(engine.instr) == 0 {
    			errorf("type %s has no exported fields", rt)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 19K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/generated.proto

      // Human readable message indicating details about last transition.
      // +optional
      optional string message = 6;
    }
    
    // NodeConfigSource specifies a source of node configuration. Exactly one subfield (excluding metadata) must be non-nil.
    // This API is deprecated since 1.22
    message NodeConfigSource {
      // ConfigMap is a reference to a Node's ConfigMap
      optional ConfigMapNodeConfigSource configMap = 2;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  8. src/encoding/binary/binary.go

    func sizeof(t reflect.Type) int {
    	switch t.Kind() {
    	case reflect.Array:
    		if s := sizeof(t.Elem()); s >= 0 {
    			return s * t.Len()
    		}
    
    	case reflect.Struct:
    		sum := 0
    		for i, n := 0, t.NumField(); i < n; i++ {
    			s := sizeof(t.Field(i).Type)
    			if s < 0 {
    				return -1
    			}
    			sum += s
    		}
    		return sum
    
    	case reflect.Bool,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:29:31 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  9. pkg/kubelet/apis/config/helpers_test.go

    	}
    
    	paths := sets.New[string]()
    	switch tp.Kind() {
    	case reflect.Pointer:
    		paths.Insert(sets.List(allPrimitiveFieldPaths(t, skipRecurseList, tp.Elem(), path))...)
    	case reflect.Struct:
    		for i := 0; i < tp.NumField(); i++ {
    			field := tp.Field(i)
    			paths.Insert(sets.List(allPrimitiveFieldPaths(t, skipRecurseList, field.Type, path.Child(field.Name)))...)
    		}
    	case reflect.Map, reflect.Slice:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  10. src/internal/reflectlite/type.go

    func (t rtype) Len() int {
    	tt := t.Type.ArrayType()
    	if tt == nil {
    		panic("reflect: Len of non-array type")
    	}
    	return int(tt.Len)
    }
    
    func (t rtype) NumField() int {
    	tt := t.Type.StructType()
    	if tt == nil {
    		panic("reflect: NumField of non-struct type")
    	}
    	return len(tt.Fields)
    }
    
    func (t rtype) NumIn() int {
    	tt := t.Type.FuncType()
    	if tt == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:01:54 UTC 2024
    - 16.2K bytes
    - Viewed (0)
Back to top