Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 69 of 69 for setstruct (0.3 sec)

  1. src/cmd/compile/internal/typecheck/expr.go

    			r = Expr(r)
    			l.Key = AssignConv(r, t.Key(), "map key")
    
    			r = l.Value
    			r = Expr(r)
    			l.Value = AssignConv(r, t.Elem(), "map value")
    		}
    
    		n.SetOp(ir.OMAPLIT)
    
    	case types.TSTRUCT:
    		// Need valid field offsets for Xoffset below.
    		types.CalcSize(t)
    
    		errored := false
    		if len(n.List) != 0 && nokeys(n.List) {
    			// simple list of variables
    			ls := n.List
    			for i, n1 := range ls {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  2. src/reflect/all_test.go

    		},
    		{
    			n:          10,
    			value:      func(i int) any { type Tstruct struct{ V [1]int }; return Tstruct{[1]int{i}} },
    			comparable: true,
    			want:       "[{[0]} {[1]} {[2]} {[3]} {[4]} {[5]} {[6]} {[7]} {[8]} {[9]}]",
    		},
    		{
    			n:          10,
    			value:      func(i int) any { type Tstruct struct{ V []int }; return Tstruct{[]int{i}} },
    			comparable: false,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  3. src/go/internal/gccgoimporter/parser.go

    	for p.tok != '}' && p.tok != scanner.EOF {
    		field, tag := p.parseField(pkg)
    		p.expect(';')
    		fields = append(fields, field)
    		tags = append(tags, tag)
    	}
    	p.expect('}')
    
    	*t = *types.NewStruct(fields, tags)
    	return t
    }
    
    // ParamList = "(" [ { Parameter "," } Parameter ] ")" .
    func (p *parser) parseParamList(pkg *types.Package) (*types.Tuple, bool) {
    	var list []*types.Var
    	isVariadic := false
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 02 23:14:07 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/ldap/LdapManager.java

                    setAttributeValue(result, fessConfig.getLdapAttrPager(), o -> user.setPager(o.toString()));
                    setAttributeValue(result, fessConfig.getLdapAttrStreet(), o -> user.setStreet(o.toString()));
                    setAttributeValue(result, fessConfig.getLdapAttrPostalCode(), o -> user.setPostalCode(o.toString()));
                    setAttributeValue(result, fessConfig.getLdapAttrPhysicalDeliveryOfficeName(),
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/typecheck/typecheck.go

    	types.TFLOAT32:    "float32",
    	types.TFLOAT64:    "float64",
    	types.TBOOL:       "bool",
    	types.TSTRING:     "string",
    	types.TPTR:        "pointer",
    	types.TUNSAFEPTR:  "unsafe.Pointer",
    	types.TSTRUCT:     "struct",
    	types.TINTER:      "interface",
    	types.TCHAN:       "chan",
    	types.TMAP:        "map",
    	types.TARRAY:      "array",
    	types.TSLICE:      "slice",
    	types.TFUNC:       "func",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 19:08:34 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  6. api/go1.5.txt

    pkg go/types, func NewScope(*Scope, token.Pos, token.Pos, string) *Scope
    pkg go/types, func NewSignature(*Var, *Tuple, *Tuple, bool) *Signature
    pkg go/types, func NewSlice(Type) *Slice
    pkg go/types, func NewStruct([]*Var, []string) *Struct
    pkg go/types, func NewTuple(...*Var) *Tuple
    pkg go/types, func NewTypeName(token.Pos, *Package, string, Type) *TypeName
    pkg go/types, func NewVar(token.Pos, *Package, string, Type) *Var
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 30 21:14:09 UTC 2015
    - 46.6K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modfetch/zip_sum_test/testdata/zip_sums.csv

    github.com/kisielk/gotool,v1.0.0,h1:AV2c/EiW3KqPNT9ZKl07ehoAGi4C5/01Cfbblndcapg=,089dbba6e3aa09944fdb40d72acc86694e8bdde01cfc0f40fe0248309eb80a3f
    github.com/kisielk/sqlstruct,v0.0.0-20150923205031-648daed35d49,h1:o/c0aWEP/m6n61xlYW2QP4t9424qlJOsxugn5Zds2Rg=,dbff9241f676de69e88bc006004da6087576433457b306f53cb952d0313ccb78
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 18 17:29:01 UTC 2020
    - 334.9K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssagen/ssa.go

    	n := ir.NewDeclNameAt(src.NoXPos, ir.OTYPE, ir.Pkgs.Runtime.Lookup("_defer"))
    	typ := types.NewNamed(n)
    	n.SetType(typ)
    	n.SetTypecheck(1)
    
    	// build struct holding the above fields
    	typ.SetUnderlying(types.NewStruct(fields))
    	types.CalcStructSize(typ)
    
    	deferType = typ
    	return typ
    }
    
    // SpillSlotAddr uses LocalSlot information to initialize an obj.Addr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"NewParam", Func, 5},
    		{"NewPkgName", Func, 5},
    		{"NewPointer", Func, 5},
    		{"NewScope", Func, 5},
    		{"NewSignature", Func, 5},
    		{"NewSignatureType", Func, 18},
    		{"NewSlice", Func, 5},
    		{"NewStruct", Func, 5},
    		{"NewTerm", Func, 18},
    		{"NewTuple", Func, 5},
    		{"NewTypeName", Func, 5},
    		{"NewTypeParam", Func, 18},
    		{"NewUnion", Func, 18},
    		{"NewVar", Func, 5},
    		{"Nil", Type, 5},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top