Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for 7976931348623157e308 (0.42 sec)

  1. src/math/big/ratconv_test.go

    	"1e-20",
    	"625e-3",
    
    	// largest float64
    	"1.7976931348623157e308",
    	"-1.7976931348623157e308",
    	// next float64 - too large
    	"1.7976931348623159e308",
    	"-1.7976931348623159e308",
    	// the border is ...158079
    	// borderline - okay
    	"1.7976931348623158e308",
    	"-1.7976931348623158e308",
    	// borderline - too large
    	"1.797693134862315808e308",
    	"-1.797693134862315808e308",
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 15 22:16:34 UTC 2023
    - 19.3K bytes
    - Viewed (0)
  2. src/strconv/atof_test.go

    	{"-Inf", "-Inf", nil},
    	{"+INF", "+Inf", nil},
    	{"-Infinity", "-Inf", nil},
    	{"+INFINITY", "+Inf", nil},
    	{"Infinity", "+Inf", nil},
    
    	// largest float64
    	{"1.7976931348623157e308", "1.7976931348623157e+308", nil},
    	{"-1.7976931348623157e308", "-1.7976931348623157e+308", nil},
    	{"0x1.fffffffffffffp1023", "1.7976931348623157e+308", nil},
    	{"-0x1.fffffffffffffp1023", "-1.7976931348623157e+308", nil},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 16:24:57 UTC 2022
    - 23.6K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/invocation/GradleLifecycleSupportedTypesIntegrationTest.groovy

            "float[]"                            | floatArray()                              | "[1.4E-45, NaN, 3.4028235E38]"
            "double[]"                           | doubleArray()                             | "[4.9E-324, NaN, 1.7976931348623157E308]"
            "boolean[]"                          | "[true, false]"                           | "[true, false]"
            "char[]"                             | "['a', 'b', 'c']"                         | "abc"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 17:40:52 UTC 2024
    - 14K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheSupportedTypesIntegrationTest.groovy

            "float[]"                            | floatArray()                              | "[1.4E-45, NaN, 3.4028235E38]"
            "double[]"                           | doubleArray()                             | "[4.9E-324, NaN, 1.7976931348623157E308]"
            "boolean[]"                          | "[true, false]"                           | "[true, false]"
            "char[]"                             | "['a', 'b', 'c']"                         | "abc"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 26.1K bytes
    - Viewed (0)
Back to top