Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 54 for bond (0.89 sec)

  1. src/cmd/compile/internal/types2/object.go

    		if tname.IsAlias() {
    			buf.WriteString(" =")
    			if alias, ok := typ.(*Alias); ok { // materialized? (gotypesalias=1)
    				typ = alias.fromRHS
    			}
    		} else if t, _ := typ.(*TypeParam); t != nil {
    			typ = t.bound
    		} else {
    			// TODO(gri) should this be fromRHS for *Named?
    			// (See discussion in #66559.)
    			typ = under(typ)
    		}
    	}
    
    	// Special handling for any: because WriteType will format 'any' as 'any',
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/liveness/plive.go

    				}
    				// Common case: just flow backwards.
    				if len(v.Args) == 1 || len(v.Args) == 2 && v.Args[0] == v.Args[1] {
    					// Note: 386 lowers Neq32 to (TESTL cond cond),
    					v = v.Args[0]
    					continue
    				}
    				v.Fatalf("write barrier control value has more than one argument: %s", v.LongString())
    			}
    
    			// Mark everything after the load unsafe.
    			found := false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/builtins.go

    	case *Named, *Union:
    		panic("unreachable")
    	}
    	return false
    }
    
    // applyTypeFunc applies f to x. If x is a type parameter,
    // the result is a type parameter constrained by a new
    // interface bound. The type bounds for that interface
    // are computed by applying f to each of the type bounds
    // of x. If any of these applications of f return nil,
    // applyTypeFunc returns nil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"TrimPrefix", Func, 1},
    		{"TrimRight", Func, 0},
    		{"TrimRightFunc", Func, 0},
    		{"TrimSpace", Func, 0},
    		{"TrimSuffix", Func, 1},
    	},
    	"sync": {
    		{"(*Cond).Broadcast", Method, 0},
    		{"(*Cond).Signal", Method, 0},
    		{"(*Cond).Wait", Method, 0},
    		{"(*Map).CompareAndDelete", Method, 20},
    		{"(*Map).CompareAndSwap", Method, 20},
    		{"(*Map).Delete", Method, 9},
    		{"(*Map).Load", Method, 9},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	procWSAStartup                                           = modws2_32.NewProc("WSAStartup")
    	procbind                                                 = modws2_32.NewProc("bind")
    	procclosesocket                                          = modws2_32.NewProc("closesocket")
    	procconnect                                              = modws2_32.NewProc("connect")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewritegeneric.go

    	// match: (Ctz8 (Const8 [c]))
    	// cond: config.PtrSize == 4
    	// result: (Const32 [int32(ntz8(c))])
    	for {
    		if v_0.Op != OpConst8 {
    			break
    		}
    		c := auxIntToInt8(v_0.AuxInt)
    		if !(config.PtrSize == 4) {
    			break
    		}
    		v.reset(OpConst32)
    		v.AuxInt = int32ToAuxInt(int32(ntz8(c)))
    		return true
    	}
    	// match: (Ctz8 (Const8 [c]))
    	// cond: config.PtrSize == 8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:24:47 UTC 2024
    - 812.2K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/asm/asm.go

    func (p *Parser) append(prog *obj.Prog, cond string, doLabel bool) {
    	if cond != "" {
    		switch p.arch.Family {
    		case sys.ARM:
    			if !arch.ARMConditionCodes(prog, cond) {
    				p.errorf("unrecognized condition code .%q", cond)
    				return
    			}
    
    		case sys.ARM64:
    			if !arch.ARM64Suffix(prog, cond) {
    				p.errorf("unrecognized suffix .%q", cond)
    				return
    			}
    
    		case sys.AMD64, sys.I386:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  8. chainable_api.go

    	tx = db.getInstance()
    	var whereConds []interface{}
    
    	for _, cond := range conds {
    		if c, ok := cond.(clause.Interface); ok {
    			tx.Statement.AddClause(c)
    		} else if optimizer, ok := cond.(StatementModifier); ok {
    			optimizer.ModifyStatement(tx.Statement)
    		} else {
    			whereConds = append(whereConds, cond)
    		}
    	}
    
    	if len(whereConds) > 0 {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 09:47:34 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/signature.go

    					recvTPar := recvTParams[i]
    					check.mono.recordCanon(tpar, recvTPar)
    					// recvTPar.bound is (possibly) parameterized in the context of the
    					// receiver type declaration. Substitute parameters for the current
    					// context.
    					tpar.bound = check.subst(tpar.obj.pos, recvTPar.bound, smap, nil, check.context())
    				}
    			} else if len(tparams) < len(recvTParams) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:33:05 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/operand.go

    				intro = " of type "
    			}
    			buf.WriteString(intro)
    			WriteType(&buf, x.typ, qf)
    			if tpar, _ := Unalias(x.typ).(*TypeParam); tpar != nil {
    				buf.WriteString(" constrained by ")
    				WriteType(&buf, tpar.bound, qf) // do not compute interface type sets here
    				// If we have the type set and it's empty, say so for better error messages.
    				if hasEmptyTypeset(tpar) {
    					buf.WriteString(" with empty type set")
    				}
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 21:17:10 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top