Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for LSS (0.02 sec)

  1. src/net/dial_test.go

    		for {
    			c, err := ln.Accept()
    			if err != nil {
    				return
    			}
    			c.Close()
    		}
    	}
    	var lss [2]*localServer
    	for i, network := range []string{"tcp4", "tcp6"} {
    		lss[i] = newLocalServer(t, network)
    		defer lss[i].teardown()
    		if err := lss[i].buildup(handler); err != nil {
    			t.Fatal(err)
    		}
    	}
    
    	for i, tt := range tests {
    		d := &Dialer{LocalAddr: tt.laddr}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/rangefunc/rewrite.go

    			// We set checkRet in that case to trigger this check.
    			if r.checkFuncMisuse() {
    				list = append(list, r.ifNext(syntax.Lss, 0, false, r.setStateAt(curLoopIndex, abi.RF_DONE), retStmt(r.useObj(r.false))))
    			} else {
    				list = append(list, r.ifNext(syntax.Lss, 0, false, retStmt(r.useObj(r.false))))
    			}
    		}
    
    		depthStep := perLoopStep * (curLoop)
    
    		if r.checkFuncMisuse() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  3. src/go/types/builtins.go

    			check.recordBuiltinType(call.Fun, makeSig(x.typ, types...))
    		}
    
    	case _Max, _Min:
    		// max(x, ...)
    		// min(x, ...)
    		check.verifyVersionf(call.Fun, go1_21, "built-in %s", bin.name)
    
    		op := token.LSS
    		if id == _Max {
    			op = token.GTR
    		}
    
    		for i, a := range args {
    			if a.mode == invalid {
    				return
    			}
    
    			if !allOrdered(a.typ) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/builtins.go

    			check.recordBuiltinType(call.Fun, makeSig(x.typ, types...))
    		}
    
    	case _Max, _Min:
    		// max(x, ...)
    		// min(x, ...)
    		check.verifyVersionf(call.Fun, go1_21, "built-in %s", bin.name)
    
    		op := token.LSS
    		if id == _Max {
    			op = token.GTR
    		}
    
    		for i, a := range args {
    			if a.mode == invalid {
    				return
    			}
    
    			if !allOrdered(a.typ) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/walk/switch.go

    		outer.Emit(&s.done)
    		s.done.Append(ir.NewLabelStmt(s.pos, endLabel))
    		return
    	}
    
    	sort.Slice(cc, func(i, j int) bool {
    		return constant.Compare(cc[i].lo.Val(), token.LSS, cc[j].lo.Val())
    	})
    
    	// Merge consecutive integer cases.
    	if s.exprname.Type().IsInteger() {
    		consecutive := func(last, next constant.Value) bool {
    			delta := constant.BinaryOp(next, token.SUB, last)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:01 UTC 2024
    - 30.1K bytes
    - Viewed (0)
Back to top