Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for uint64max (0.31 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset_test.go

    	return func(time.Time) {
    		ust.callK(k)
    	}
    }
    
    func (ust *uniformScenarioThread) callK(k int) {
    	if k >= ust.nCalls {
    		return
    	}
    	maxWidth := float64(uint64max(ust.uc.initialSeats, ust.uc.finalSeats))
    	ust.uss.seatDemandIntegratorCheck.Add(maxWidth)
    	returnSeatDemand := func(time.Time) { ust.uss.seatDemandIntegratorCheck.Add(-maxWidth) }
    	ctx := context.Background()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 58.4K bytes
    - Viewed (0)
  2. src/go/types/expr.go

    				}
    				return
    			}
    			// rhs must be within reasonable bounds in constant shifts
    			const shiftBound = 1023 - 1 + 52 // so we can express smallestFloat64 (see go.dev/issue/44057)
    			s, ok := constant.Uint64Val(yval)
    			if !ok || s > shiftBound {
    				check.errorf(y, InvalidShiftCount, invalidOp+"invalid shift count %s", y)
    				x.mode = invalid
    				return
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/expr.go

    				}
    				return
    			}
    			// rhs must be within reasonable bounds in constant shifts
    			const shiftBound = 1023 - 1 + 52 // so we can express smallestFloat64 (see go.dev/issue/44057)
    			s, ok := constant.Uint64Val(yval)
    			if !ok || s > shiftBound {
    				check.errorf(y, InvalidShiftCount, invalidOp+"invalid shift count %s", y)
    				x.mode = invalid
    				return
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/mark_for_compilation_pass.cc

      if (*debug_options_.fuel >= std::numeric_limits<int64_t>::max() / 2) {
        // The assumption is that if fuel started out as INT64_MAX, it will forever
        // stay greater than INT64_MAX / 2.
        VLOG(2) << "Starting fuel: infinity";
      } else {
        VLOG(2) << "Starting fuel: " << *debug_options_.fuel;
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
Back to top