Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 531 for overflows (0.15 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/intstr/intstr.go

    // than int32.
    // Deprecated: use FromInt32 instead.
    func FromInt(val int) IntOrString {
    	if val > math.MaxInt32 || val < math.MinInt32 {
    		klog.Errorf("value: %d overflows int32\n%s\n", val, debug.Stack())
    	}
    	return IntOrString{Type: Int, IntVal: int32(val)}
    }
    
    // FromInt32 creates an IntOrString object with an int32 value.
    func FromInt32(val int32) IntOrString {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:09 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/lostcancel/lostcancel.go

    			pos, end := ret.Pos(), ret.End()
    			// golang/go#64547: cfg.Block.Return may return a synthetic
    			// ReturnStmt that overflows the file.
    			if pass.Fset.File(pos) != pass.Fset.File(end) {
    				end = pos
    			}
    			pass.Report(analysis.Diagnostic{
    				Pos:     pos,
    				End:     end,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 9K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/math/LongMathTest.java

       * arithmetic.
       */
      private static long computeMeanSafely(long x, long y) {
        BigInteger bigX = BigInteger.valueOf(x);
        BigInteger bigY = BigInteger.valueOf(y);
        BigDecimal bigMean =
            new BigDecimal(bigX.add(bigY)).divide(BigDecimal.valueOf(2), BigDecimal.ROUND_FLOOR);
        // parseInt blows up on overflow as opposed to intValue() which does not.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 04 20:15:57 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  4. cmd/http-stats.go

    }
    
    func (st *HTTPStats) addRequestsInQueue(i int32) {
    	atomic.AddInt32(&st.s3RequestsInQueue, i)
    }
    
    func (st *HTTPStats) incS3RequestsIncoming() {
    	// Golang automatically resets to zero if this overflows
    	atomic.AddUint64(&st.s3RequestsIncoming, 1)
    }
    
    // Converts http stats into struct to be sent back to the client.
    func (st *HTTPStats) toServerHTTPStats(toLowerKeys bool) ServerHTTPStats {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 06:25:13 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/decode_test.go

    				if e == nil {
    					t.Error("expected non-nil error")
    				} else if want := "cbor: cannot unmarshal positive integer into Go value of type int64 (18446744073709551615 overflows Go's int64)"; want != e.Error() {
    					t.Errorf("want error %q, got %q", want, e.Error())
    				}
    			}),
    		},
    	})
    
    	group(t, "negative integer", []test{
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 18:43:10 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  6. src/runtime/signal_windows.go

    	g0 := getg()
    
    	if panicking.Load() != 0 { // traceback already printed
    		exit(2)
    	}
    	panicking.Store(1)
    
    	// In case we're handling a g0 stack overflow, blow away the
    	// g0 stack bounds so we have room to print the traceback. If
    	// this somehow overflows the stack, the OS will trap it.
    	g0.stack.lo = 0
    	g0.stackguard0 = g0.stack.lo + stackGuard
    	g0.stackguard1 = g0.stackguard0
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 20:32:29 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  7. test/nosplit.go

    # 64-bit systems do not attempt to execute test cases with frame sizes
    # that are only 32-bit aligned.
    
    # Ordinary function should work
    start 0
    
    # Large frame marked nosplit is always wrong.
    # Frame is so large it overflows cmd/link's int16.
    start 100000 nosplit
    REJECT
    
    # Calling a large frame is okay.
    start 0 call big
    big 10000
    
    # But not if the frame is nosplit.
    start 0 call big
    big 10000 nosplit
    REJECT
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  8. test/prove.go

    	}
    	if j < uint(len(a)) {
    		return a[j] // ERROR "Proved IsInBounds$"
    	}
    	return 0
    }
    
    func f1c(a []int, i int64) int {
    	c := uint64(math.MaxInt64 + 10) // overflows int
    	d := int64(c)
    	if i >= d && i < int64(len(a)) {
    		// d overflows, should not be handled.
    		return a[i]
    	}
    	return 0
    }
    
    func f2(a []int) int {
    	for i := range a { // ERROR "Induction variable: limits \[0,\?\), increment 1$"
    		a[i+1] = i
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 23 00:02:36 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  9. src/go/types/index.go

    			return false
    		}
    
    		// spec: "... and representable by a value of type int"
    		if !representableConst(x.val, check, Typ[Int], &x.val) {
    			check.errorf(x, code, invalidArg+"%s %s overflows int", what, x)
    			return false
    		}
    	}
    
    	return true
    }
    
    // indexedElts checks the elements (elts) of an array or slice composite literal
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:17:05 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  10. test/loopbce.go

    		useString(a[i:]) // ERROR "(\([0-9]+\) )?Proved IsSliceInBounds$"
    	}
    	for i := int64(0); i < j+122+int64(-1<<63); i++ { // ERROR "Induction variable: limits \[0,\?\), increment 1$"
    		// len(a)-123+122+MinInt overflows when len(a) == 0, so a bound check is needed here
    		useString(a[i:])
    	}
    }
    
    func nobce3(a [100]int64) [100]int64 {
    	min := int64((-1) << 63)
    	max := int64((1 << 63) - 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 13.8K bytes
    - Viewed (0)
Back to top