Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for MaxFloat64 (0.12 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/celcoststability_test.go

    			},
    		},
    		{name: "numbers",
    			obj:    objs(math.MaxFloat64, math.MaxFloat64, math.MaxFloat32, math.MaxFloat32, math.MaxFloat64, math.MaxFloat64, int64(1)),
    			schema: schemas(numberType, numberType, floatType, floatType, doubleType, doubleType, doubleType),
    			expectCost: map[string]int64{
    				ValsEqualThemselvesAndDataLiteral("self.val1", "self.val2", fmt.Sprintf("%f", math.MaxFloat64)): 11,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:20:16 UTC 2024
    - 80.2K bytes
    - Viewed (0)
  2. src/math/big/float_test.go

    		{"1", 1, Exact},
    		{"1.000000000000000000001", 1, Below},
    		{"12345.0", 12345, Exact},
    		{"12345.000000000000000000001", 12345, Below},
    		{"0x1.fffffffffffff0p1023", math.MaxFloat64, Exact},
    		{"0x1.fffffffffffff4p1023", math.MaxFloat64, Below},
    
    		// overflow
    		{"0x1.fffffffffffff8p1023", math.Inf(+1), Above},
    		{"0x1p1024", math.Inf(+1), Above},
    		{"1e10000", math.Inf(+1), Above},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 51.9K bytes
    - Viewed (0)
Back to top