Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 131 for kini (0.79 sec)

  1. schema/utils.go

    		dataResults   = map[string][]reflect.Value{}
    		loaded        = map[interface{}]bool{}
    		notZero, zero bool
    	)
    
    	if reflectValue.Kind() == reflect.Ptr ||
    		reflectValue.Kind() == reflect.Interface {
    		reflectValue = reflectValue.Elem()
    	}
    
    	switch reflectValue.Kind() {
    	case reflect.Struct:
    		results = [][]interface{}{make([]interface{}, len(fields))}
    
    		for idx, field := range fields {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Sat Aug 19 13:35:14 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types/fmt.go

    		return
    	}
    	if t == nil {
    		b.WriteString("<T>")
    		return
    	}
    	if t.Kind() == TSSA {
    		b.WriteString(t.extra.(string))
    		return
    	}
    	if t.Kind() == TTUPLE {
    		b.WriteString(t.FieldType(0).String())
    		b.WriteByte(',')
    		b.WriteString(t.FieldType(1).String())
    		return
    	}
    
    	if t.Kind() == TRESULTS {
    		tys := t.extra.(*Results).Types
    		for i, et := range tys {
    			if i > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 15:41:17 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/util.go

    func endPos(n syntax.Node) syntax.Pos { return syntax.EndPos(n) }
    
    // makeFromLiteral returns the constant value for the given literal string and kind.
    func makeFromLiteral(lit string, kind syntax.LitKind) constant.Value {
    	return constant.MakeFromLiteral(lit, kind2tok[kind], 0)
    }
    
    var kind2tok = [...]token.Token{
    	syntax.IntLit:    token.INT,
    	syntax.FloatLit:  token.FLOAT,
    	syntax.ImagLit:   token.IMAG,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. association.go

    		switch association.Relationship.Type {
    		case schema.HasOne, schema.BelongsTo:
    			switch rv.Kind() {
    			case reflect.Slice, reflect.Array:
    				if rv.Len() > 0 {
    					association.Error = association.Relationship.Field.Set(association.DB.Statement.Context, source, rv.Index(0).Addr().Interface())
    
    					if association.Relationship.Field.FieldType.Kind() == reflect.Struct {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:49:45 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssagen/ssa.go

    	if !idx.Type.IsSigned() {
    		switch kind {
    		case ssa.BoundsIndex:
    			kind = ssa.BoundsIndexU
    		case ssa.BoundsSliceAlen:
    			kind = ssa.BoundsSliceAlenU
    		case ssa.BoundsSliceAcap:
    			kind = ssa.BoundsSliceAcapU
    		case ssa.BoundsSliceB:
    			kind = ssa.BoundsSliceBU
    		case ssa.BoundsSlice3Alen:
    			kind = ssa.BoundsSlice3AlenU
    		case ssa.BoundsSlice3Acap:
    			kind = ssa.BoundsSlice3AcapU
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/errorcalls_test.go

    				return false
    			}
    			format := call.ArgList[errorfFormatIndex]
    			syntax.Inspect(format, func(n syntax.Node) bool {
    				if lit, _ := n.(*syntax.BasicLit); lit != nil && lit.Kind == syntax.StringLit {
    					if s, err := strconv.Unquote(lit.Value); err == nil {
    						if !balancedParentheses(s) {
    							t.Errorf("%s: unbalanced parentheses/brackets", lit.Pos())
    						}
    					}
    					return false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 21:57:36 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/typecheck/dcl.go

    func TempAt(pos src.XPos, curfn *ir.Func, typ *types.Type) *ir.Name {
    	if curfn == nil {
    		base.FatalfAt(pos, "no curfn for TempAt")
    	}
    	if typ == nil {
    		base.FatalfAt(pos, "TempAt called with nil type")
    	}
    	if typ.Kind() == types.TFUNC && typ.Recv() != nil {
    		base.FatalfAt(pos, "misuse of method type: %v", typ)
    	}
    	types.CalcSize(typ)
    
    	sym := &types.Sym{
    		Name: autotmpname(len(curfn.Dcl)),
    		Pkg:  types.LocalPkg,
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 13:15:50 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/api_test.go

    		for node, scope := range info.Scopes {
    			var kind string
    			switch node.(type) {
    			case *syntax.File:
    				kind = "file"
    			case *syntax.FuncType:
    				kind = "func"
    			case *syntax.BlockStmt:
    				kind = "block"
    			case *syntax.IfStmt:
    				kind = "if"
    			case *syntax.SwitchStmt:
    				kind = "switch"
    			case *syntax.SelectStmt:
    				kind = "select"
    			case *syntax.CaseClause:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/nilcheck.go

    		work = work[:len(work)-1]
    
    		switch node.op {
    		case Work:
    			b := node.block
    
    			// First, see if we're dominated by an explicit nil check.
    			if len(b.Preds) == 1 {
    				p := b.Preds[0].b
    				if p.Kind == BlockIf && p.Controls[0].Op == OpIsNonNil && p.Succs[0].b == b {
    					if ptr := p.Controls[0].Args[0]; nonNilValues[ptr.ID] == nil {
    						nonNilValues[ptr.ID] = ptr
    						work = append(work, bp{op: ClearPtr, ptr: ptr})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:45:54 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/typecheck/iexport.go

    // types list (see predeclared in bexport.go for order). Otherwise,
    // subtracting predeclReserved yields the offset of a type descriptor.
    //
    // Value means a type, kind, and type-specific value. See
    // (*exportWriter).value for details.
    //
    //
    // There are twelve kinds of type descriptors, distinguished by an itag:
    //
    //     type DefinedType struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 21 02:40:02 UTC 2023
    - 6.8K bytes
    - Viewed (0)
Back to top