Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 42 for 1e0i (0.18 sec)

  1. src/math/big/floatconv_test.go

    			t.Errorf("%v: got %q; want %q", test, got, test.want)
    		}
    	}
    }
    
    func BenchmarkParseFloatSmallExp(b *testing.B) {
    	for i := 0; i < b.N; i++ {
    		for _, s := range []string{
    			"1e0",
    			"1e-1",
    			"1e-2",
    			"1e-3",
    			"1e-4",
    			"1e-5",
    			"1e-10",
    			"1e-20",
    			"1e-50",
    			"1e1",
    			"1e2",
    			"1e3",
    			"1e4",
    			"1e5",
    			"1e10",
    			"1e20",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 24.3K bytes
    - Viewed (0)
  2. src/strconv/atof.go

    	}
    	return bits, overflow
    }
    
    // Exact powers of 10.
    var float64pow10 = []float64{
    	1e0, 1e1, 1e2, 1e3, 1e4, 1e5, 1e6, 1e7, 1e8, 1e9,
    	1e10, 1e11, 1e12, 1e13, 1e14, 1e15, 1e16, 1e17, 1e18, 1e19,
    	1e20, 1e21, 1e22,
    }
    var float32pow10 = []float32{1e0, 1e1, 1e2, 1e3, 1e4, 1e5, 1e6, 1e7, 1e8, 1e9, 1e10}
    
    // If possible to convert decimal representation to 64-bit float f exactly,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 06 18:50:50 UTC 2022
    - 15.9K bytes
    - Viewed (0)
  3. src/strconv/eisel_lemire.go

    	{0x645A1CAC083126E9, 0x83126E978D4FDF3B}, // 1e-3
    	{0x3D70A3D70A3D70A3, 0xA3D70A3D70A3D70A}, // 1e-2
    	{0xCCCCCCCCCCCCCCCC, 0xCCCCCCCCCCCCCCCC}, // 1e-1
    	{0x0000000000000000, 0x8000000000000000}, // 1e0
    	{0x0000000000000000, 0xA000000000000000}, // 1e1
    	{0x0000000000000000, 0xC800000000000000}, // 1e2
    	{0x0000000000000000, 0xFA00000000000000}, // 1e3
    	{0x0000000000000000, 0x9C40000000000000}, // 1e4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 41.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/text/internal/language/compact/tables.go

    	0x2b800000, 0x2b8000b0, 0x2bf00000, 0x2bf0009c,
    	0x2bf0009d, 0x2c000000, 0x2c0000b7, 0x2c200000,
    	0x2c20004b, 0x2c400000, 0x2c4000a5, 0x2c500000,
    	0x2c5000a5, 0x2c700000, 0x2c7000b9, 0x2d100000,
    	// Entry 1E0 - 1FF
    	0x2d1000a5, 0x2d100130, 0x2e900000, 0x2e9000a5,
    	0x2ed00000, 0x2ed000cd, 0x2f100000, 0x2f1000c0,
    	0x2f200000, 0x2f2000d2, 0x2f400000, 0x2f400052,
    	0x2ff00000, 0x2ff000c3, 0x30400000, 0x3040009a,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 31.4K bytes
    - Viewed (0)
  5. okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt

    1E04          ; mapped                 ; 1E05          # 1.1  LATIN CAPITAL LETTER B WITH DOT BELOW
    1E05          ; valid                                  # 1.1  LATIN SMALL LETTER B WITH DOT BELOW
    1E06          ; mapped                 ; 1E07          # 1.1  LATIN CAPITAL LETTER B WITH LINE BELOW
    1E07          ; valid                                  # 1.1  LATIN SMALL LETTER B WITH LINE BELOW
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Feb 10 11:25:47 UTC 2024
    - 854.1K bytes
    - Viewed (0)
  6. pkg/apis/core/validation/validation.go

    	"1Ki", "1Mi", "1Gi", "1Ti", "1Pi", "1Ei")
    var validContainerResourceDivisorForHugePages = sets.New(
    	"1",
    	"1k", "1M", "1G", "1T", "1P", "1E",
    	"1Ki", "1Mi", "1Gi", "1Ti", "1Pi", "1Ei")
    var validContainerResourceDivisorForEphemeralStorage = sets.New(
    	"1",
    	"1k", "1M", "1G", "1T", "1P", "1E",
    	"1Ki", "1Mi", "1Gi", "1Ti", "1Pi", "1Ei")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (1)
  7. src/fmt/fmt_test.go

    	{"%+.3g", 1 + 2i, "(+1+2i)"},
    	{"%+.3g", complex64(1 + 2i), "(+1+2i)"},
    	{"%#g", 1 + 2i, "(1.00000+2.00000i)"},
    	{"%#g", 123456 + 789012i, "(123456.+789012.i)"},
    	{"%#g", 1e-10i, "(0.00000+1.00000e-10i)"},
    	{"%#g", -1e10 - 1.11e100i, "(-1.00000e+10-1.11000e+100i)"},
    	{"%#.0f", 1.23 + 1.0i, "(1.+1.i)"},
    	{"%#.0e", 1.23 + 1.0i, "(1.e+00+1.e+00i)"},
    	{"%#.0x", 1.23 + 1.0i, "(0x1.p+00+0x1.p+00i)"},
    	{"%#.0g", 1.23 + 1.0i, "(1.+1.i)"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  8. src/reflect/all_test.go

    		// complex
    		{complex64(532.125 + 10i), [...]bool{false, false, false, true}},
    		{complex128(564.25 + 1i), [...]bool{false, false, false, true}},
    		// underlying
    		{integer(-132), [...]bool{true, false, false, false}},
    		{uinteger(132), [...]bool{false, true, false, false}},
    		{float(256.25), [...]bool{false, false, true, false}},
    		{complex(532.125 + 10i), [...]bool{false, false, false, true}},
    		// not-acceptable
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  9. doc/go1.17_spec.html

    </p>
    
    <pre>
    0i
    0123i         // == 123i for backward-compatibility
    0o123i        // == 0o123 * 1i == 83i
    0xabci        // == 0xabc * 1i == 2748i
    0.i
    2.71828i
    1.e+0i
    6.67428e-11i
    1E6i
    .25i
    .12345E+5i
    0x1p-2i       // == 0x1p-2 * 1i == 0.25i
    </pre>
    
    
    <h3 id="Rune_literals">Rune literals</h3>
    
    <p>
    A rune literal represents a <a href="#Constants">rune constant</a>,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  10. doc/go_spec.html

    </p>
    
    <pre>
    0i
    0123i         // == 123i for backward-compatibility
    0o123i        // == 0o123 * 1i == 83i
    0xabci        // == 0xabc * 1i == 2748i
    0.i
    2.71828i
    1.e+0i
    6.67428e-11i
    1E6i
    .25i
    .12345E+5i
    0x1p-2i       // == 0x1p-2 * 1i == 0.25i
    </pre>
    
    
    <h3 id="Rune_literals">Rune literals</h3>
    
    <p>
    A rune literal represents a <a href="#Constants">rune constant</a>,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
Back to top