Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 45 for StructType (0.28 sec)

  1. src/runtime/syscall_windows.go

    	case abi.Array:
    		at := (*arraytype)(unsafe.Pointer(t))
    		if at.Len == 1 {
    			return p.tryRegAssignArg(at.Elem, offset) // TODO fix when runtime is fully commoned up w/ abi.Type
    		}
    	case abi.Struct:
    		st := (*structtype)(unsafe.Pointer(t))
    		for i := range st.Fields {
    			f := &st.Fields[i]
    			if !p.tryRegAssignArg(f.Typ, offset+f.Offset) {
    				return false
    			}
    		}
    		return true
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. src/go/printer/testdata/declarations.golden

    	}
    	CommonType	struct {
    		Size, Hash, Alg, Align, FieldAlign, String, UncommonType int
    	}
    	Type	struct {
    		Typ, Ptr int
    	}
    	StructField	struct {
    		Name, PkgPath, Typ, Tag, Offset int
    	}
    	StructType	struct {
    		Fields int
    	}
    	PtrType	struct {
    		Elem int
    	}
    	SliceType	struct {
    		Elem int
    	}
    	ArrayType	struct {
    		Elem, Len int
    	}
    
    	Stktop	struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 13 22:24:31 UTC 2021
    - 16.2K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/deadcode.go

    	if !decodetypeHasUncommon(arch, p) {
    		panic(fmt.Sprintf("no methods on %q", ldr.SymName(symIdx)))
    	}
    	off := commonsize(arch) // reflect.rtype
    	switch decodetypeKind(arch, p) {
    	case abi.Struct: // reflect.structType
    		off += 4 * arch.PtrSize
    	case abi.Pointer: // reflect.ptrType
    		off += arch.PtrSize
    	case abi.Func: // reflect.funcType
    		off += arch.PtrSize // 4 bytes, pointer aligned
    	case abi.Slice: // reflect.sliceType
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 14:52:41 UTC 2024
    - 19K bytes
    - Viewed (0)
  4. src/encoding/gob/decode.go

    		return dec.compileSingle(remoteId, ut)
    	}
    	var wireStruct *structType
    	// Builtin types can come from global pool; the rest must be defined by the decoder.
    	// Also we know we're decoding a struct now, so the client must have sent one.
    	if t := builtinIdToType(remoteId); t != nil {
    		wireStruct, _ = t.(*structType)
    	} else {
    		wire := dec.wireType[remoteId]
    		if wire == nil {
    			error_(errBadType)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:10:23 UTC 2023
    - 40.1K bytes
    - Viewed (0)
  5. src/encoding/gob/debug.go

    			deb.delta(1) // field 0 of fieldType: name
    			field[i].Name = deb.string()
    			deb.delta(1) // field 1 of fieldType: id
    			field[i].Id = deb.typeId()
    			deb.delta(0) // end of fieldType
    		}
    		wire.StructT = &structType{com, field}
    
    	case 3: // map type, one field of {{Common}, key, elem}
    		// Field number 0 is CommonType
    		deb.delta(1)
    		com := deb.common()
    		// Field number 1 is type Id of key
    		deb.delta(1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 20 09:34:41 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  6. src/go/parser/resolver.go

    		r.walkFuncType(n.Type)
    		r.walkBody(n.Body)
    
    	case *ast.SelectorExpr:
    		ast.Walk(r, n.X)
    		// Note: don't try to resolve n.Sel, as we don't support qualified
    		// resolution.
    
    	case *ast.StructType:
    		r.openScope(n.Pos())
    		defer r.closeScope()
    		r.walkFieldList(n.Fields, ast.Var)
    
    	case *ast.FuncType:
    		r.openScope(n.Pos())
    		defer r.closeScope()
    		r.walkFuncType(n)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 12:56:53 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/autoscaling/v1/generated.proto

      // container is the name of the container in the pods of the scaling taget
      optional string container = 4;
    }
    
    // CrossVersionObjectReference contains enough information to let you identify the referred resource.
    // +structType=atomic
    message CrossVersionObjectReference {
      // kind is the kind of the referent; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
      optional string kind = 1;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 22K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/autoscaling/v1/generated.proto

      // container is the name of the container in the pods of the scaling taget
      optional string container = 4;
    }
    
    // CrossVersionObjectReference contains enough information to let you identify the referred resource.
    // +structType=atomic
    message CrossVersionObjectReference {
      // kind is the kind of the referent; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
      optional string kind = 1;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 22K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/dwarf_test.go

    		"internal/abi.ChanType":      true,
    		"internal/abi.FuncType":      true,
    		"internal/abi.MapType":       true,
    		"internal/abi.PtrType":       true,
    		"internal/abi.SliceType":     true,
    		"internal/abi.StructType":    true,
    		"internal/abi.InterfaceType": true,
    		"internal/abi.ITab":          true,
    	}
    
    	found := findTypes(t, dwarf, want)
    	if len(found) != len(want) {
    		t.Errorf("found %v, want %v", found, want)
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 01:38:11 UTC 2024
    - 48.6K bytes
    - Viewed (0)
  10. src/cmd/fix/typecheck.go

    						for k, v := range cfg.Type {
    							cfg1.Type[k] = v
    						}
    					}
    					t := &Type{Field: map[string]string{}}
    					cfg1.Type[s.Name.Name] = t
    					switch st := s.Type.(type) {
    					case *ast.StructType:
    						for _, f := range st.Fields.List {
    							for _, n := range f.Names {
    								t.Field[n.Name] = gofmt(f.Type)
    							}
    						}
    					case *ast.ArrayType, *ast.StarExpr, *ast.MapType:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 16 22:02:42 UTC 2022
    - 20.1K bytes
    - Viewed (0)
Back to top