Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 38 of 38 for MaxFloat64 (0.31 sec)

  1. api/except.txt

    pkg crypto/tls, type ConnectionState struct, TLSUnique //deprecated
    pkg debug/elf, const R_PPC64_SECTOFF_LO_DS = 61
    pkg encoding/json, method (*RawMessage) MarshalJSON() ([]uint8, error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:13:30 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  2. src/encoding/gob/decode.go

    	v := float64FromBits(u)
    	av := v
    	if av < 0 {
    		av = -av
    	}
    	// +Inf is OK in both 32- and 64-bit floats. Underflow is always OK.
    	if math.MaxFloat32 < av && av <= math.MaxFloat64 {
    		error_(ovfl)
    	}
    	return v
    }
    
    // decFloat32 decodes an unsigned integer, treats it as a 32-bit floating-point
    // number, and stores it in value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:10:23 UTC 2023
    - 40.1K bytes
    - Viewed (0)
  3. src/math/big/float.go

    // represented by a float64 (|x| < [math.SmallestNonzeroFloat64]), the result
    // is (0, [Below]) or (-0, [Above]), respectively, depending on the sign of x.
    // If x is too large to be represented by a float64 (|x| > [math.MaxFloat64]),
    // the result is (+Inf, [Above]) or (-Inf, [Below]), depending on the sign of x.
    func (x *Float) Float64() (float64, Accuracy) {
    	if debugFloat {
    		x.validate()
    	}
    
    	switch x.form {
    	case finite:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 44.5K bytes
    - Viewed (0)
  4. pkg/scheduler/schedule_one_test.go

    	return pl
    }
    
    func (pl *reverseNumericMapPlugin) NormalizeScore(_ context.Context, _ *framework.CycleState, _ *v1.Pod, nodeScores framework.NodeScoreList) *framework.Status {
    	var maxScore float64
    	minScore := math.MaxFloat64
    
    	for _, hostPriority := range nodeScores {
    		maxScore = math.Max(maxScore, float64(hostPriority.Score))
    		minScore = math.Min(minScore, float64(hostPriority.Score))
    	}
    	for i, hostPriority := range nodeScores {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  5. src/reflect/value.go

    		return false
    	}
    	panic(&ValueError{"reflect.Value.OverflowFloat", v.kind()})
    }
    
    func overflowFloat32(x float64) bool {
    	if x < 0 {
    		x = -x
    	}
    	return math.MaxFloat32 < x && x <= math.MaxFloat64
    }
    
    // OverflowInt reports whether the int64 x cannot be represented by v's type.
    // It panics if v's Kind is not [Int], [Int8], [Int16], [Int32], or [Int64].
    func (v Value) OverflowInt(x int64) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"Log10", Func, 0},
    		{"Log10E", Const, 0},
    		{"Log1p", Func, 0},
    		{"Log2", Func, 0},
    		{"Log2E", Const, 0},
    		{"Logb", Func, 0},
    		{"Max", Func, 0},
    		{"MaxFloat32", Const, 0},
    		{"MaxFloat64", Const, 0},
    		{"MaxInt", Const, 17},
    		{"MaxInt16", Const, 0},
    		{"MaxInt32", Const, 0},
    		{"MaxInt64", Const, 0},
    		{"MaxInt8", Const, 0},
    		{"MaxUint", Const, 17},
    		{"MaxUint16", Const, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  7. api/go1.txt

    pkg math, const Ln10 ideal-float
    pkg math, const Ln2 ideal-float
    pkg math, const Log10E ideal-float
    pkg math, const Log2E ideal-float
    pkg math, const MaxFloat32 ideal-float
    pkg math, const MaxFloat64 ideal-float
    pkg math, const MaxInt16 ideal-int
    pkg math, const MaxInt32 ideal-int
    pkg math, const MaxInt64 ideal-int
    pkg math, const MaxInt8 ideal-int
    pkg math, const MaxUint16 ideal-int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
  8. api/go1.1.txt

    pkg math, const MaxFloat32 = 3.40282e+38  // 340282346638528859811704183484516925440
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 31 20:37:15 UTC 2022
    - 2.6M bytes
    - Viewed (0)
Back to top