Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for MinInt64 (0.4 sec)

  1. test/loopbce.go

    	}
    	for i := int64(math.MinInt64 + 7); i > math.MinInt64+2; i -= 4 {
    		useString("foo")
    	}
    	for i := int64(math.MinInt64 + 6); i > math.MinInt64+2; i -= 4 { // ERROR "Induction variable: limits \[-9223372036854775802,-9223372036854775802\], increment 4"
    		useString("foo")
    	}
    	for i := int64(math.MinInt64 + 9); i >= math.MinInt64+2; i -= 4 { // ERROR "Induction variable: limits \[-9223372036854775803,-9223372036854775799\], increment 4"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  2. internal/s3select/sql/value_test.go

    			},
    			want:   math.MaxInt64,
    			wantOK: true,
    		},
    		{
    			name: "min",
    			fields: fields{
    				value: []byte(strconv.FormatInt(math.MinInt64, 10)),
    			},
    			want:   math.MinInt64,
    			wantOK: true,
    		},
    		{
    			name: "max-overflow",
    			fields: fields{
    				value: []byte("9223372036854775808"),
    			},
    			// Seems to be what strconv.ParseInt returns
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 06 16:56:10 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  3. src/archive/tar/strconv_test.go

    		{math.MaxInt64, "0000000\x00", false},
    		{math.MaxInt64, "\x80\x00\x00\x00\x7f\xff\xff\xff\xff\xff\xff\xff", true},
    		{math.MinInt64, "0000000\x00", false},
    		{math.MinInt64, "\xff\xff\xff\xff\x80\x00\x00\x00\x00\x00\x00\x00", true},
    		{math.MaxInt64, "\x80\x7f\xff\xff\xff\xff\xff\xff\xff", true},
    		{math.MinInt64, "\xff\x80\x00\x00\x00\x00\x00\x00\x00", true},
    	}
    
    	for _, v := range vectors {
    		var f formatter
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 09 05:28:50 UTC 2021
    - 14K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/intstr/intstr_test.go

    		},
    		{
    			input:  "-9223372036854775808", // math.MinInt64
    			output: IntOrString{Type: String, StrVal: "-9223372036854775808"},
    		},
    		{
    			input:  "9223372036854775808", // math.MaxInt64+1
    			output: IntOrString{Type: String, StrVal: "9223372036854775808"},
    		},
    		{
    			input:  "-9223372036854775809", // math.MinInt64-1
    			output: IntOrString{Type: String, StrVal: "-9223372036854775809"},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:09 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  5. src/math/big/float.go

    	}
    
    	panic("unreachable")
    }
    
    // Int64 returns the integer resulting from truncating x towards zero.
    // If [math.MinInt64] <= x <= [math.MaxInt64], the result is [Exact] if x is
    // an integer, and [Above] (x < 0) or [Below] (x > 0) otherwise.
    // The result is ([math.MinInt64], [Above]) for x < [math.MinInt64],
    // and ([math.MaxInt64], [Below]) for x > [math.MaxInt64].
    func (x *Float) Int64() (int64, Accuracy) {
    	if debugFloat {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 44.5K bytes
    - Viewed (0)
  6. test/prove.go

    			return
    		}
    	}
    }
    
    func fence3(b, c []int, x, y int64) {
    	if x-1 >= y {
    		if x <= y { // Can't prove because x may have wrapped.
    			return
    		}
    	}
    
    	if x != math.MinInt64 && x-1 >= y {
    		if x <= y { // ERROR "Disproved Leq64$"
    			return
    		}
    	}
    
    	c[len(c)-1] = 0 // Can't prove because len(c) might be 0
    
    	if n := len(b); n > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 23 00:02:36 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/preemption/preemption.go

    			if earliestStartTimeOnNode == nil {
    				logger.Error(errors.New("earliestStartTime is nil for node"), "Should not reach here", "node", node)
    				return int64(math.MinInt64)
    			}
    			// The bigger the earliestStartTimeOnNode, the higher the score.
    			return earliestStartTimeOnNode.UnixNano()
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/interpodaffinity/scoring.go

    	if err != nil {
    		return framework.AsStatus(err)
    	}
    	if len(s.topologyScore) == 0 {
    		return nil
    	}
    
    	var minCount int64 = math.MaxInt64
    	var maxCount int64 = math.MinInt64
    	for i := range scores {
    		score := scores[i].Score
    		if score > maxCount {
    			maxCount = score
    		}
    		if score < minCount {
    			minCount = score
    		}
    	}
    
    	maxMinDiff := maxCount - minCount
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/rewriteCond_test.go

    package ssa
    
    import (
    	"math"
    	"math/rand"
    	"testing"
    )
    
    var (
    	x64   int64  = math.MaxInt64 - 2
    	x64b  int64  = math.MaxInt64 - 2
    	x64c  int64  = math.MaxInt64 - 2
    	y64   int64  = math.MinInt64 + 1
    	x32   int32  = math.MaxInt32 - 2
    	x32b  int32  = math.MaxInt32 - 2
    	x32c  int32  = math.MaxInt32 - 2
    	y32   int32  = math.MinInt32 + 1
    	one64 int64  = 1
    	one32 int32  = 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 01:19:09 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  10. internal/s3select/sql/evaluate.go

    // aggregation or a row function - it always returns a value.
    func (e *LitValue) evalNode(_ Record) (res *Value, err error) {
    	switch {
    	case e.Int != nil:
    		if *e.Int < math.MaxInt64 && *e.Int > math.MinInt64 {
    			return FromInt(int64(*e.Int)), nil
    		}
    		return FromFloat(*e.Int), nil
    	case e.Float != nil:
    		return FromFloat(*e.Float), nil
    	case e.String != nil:
    		return FromString(string(*e.String)), nil
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 23 07:19:11 UTC 2023
    - 12K bytes
    - Viewed (0)
Back to top