Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for 100000000000000000000001 (0.13 sec)

  1. src/go/doc/comment/testdata/list5.txt

    Text.
    
      1. One
      999999999999999999999. Big
      1000000000000000000000. Bigger
      1000000000000000000001. Biggest
    
    -- gofmt --
    Text.
    
     1. One
     999999999999999999999. Big
     1000000000000000000000. Bigger
     1000000000000000000001. Biggest
    
    -- text --
    Text.
    
     1. One
     999999999999999999999. Big
     1000000000000000000000. Bigger
     1000000000000000000001. Biggest
    
    -- markdown --
    Text.
    
     1. One
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:48 UTC 2022
    - 590 bytes
    - Viewed (0)
  2. src/cmd/compile/internal/test/testdata/zero_test.go

    	zero23_ssa(&a.mid)
    	want := Z23{[8]byte{255, 255, 255, 255, 255, 255, 255, 255}, [23]byte{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, [8]byte{255, 255, 255, 255, 255, 255, 255, 255}}
    	if a != want {
    		t.Errorf("zero23 got=%v, want %v\n", a, want)
    	}
    }
    
    type Z24 struct {
    	pre  [8]byte
    	mid  [24]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 49.6K bytes
    - Viewed (0)
  3. src/math/big/floatconv_test.go

    		{1e23, 'e', 17, "9.99999999999999916e+22"},
    		{1e23, 'f', 17, "99999999999999991611392.00000000000000000"},
    		{1e23, 'g', 17, "9.9999999999999992e+22"},
    
    		{1e23, 'e', -1, "1e+23"},
    		{1e23, 'f', -1, "100000000000000000000000"},
    		{1e23, 'g', -1, "1e+23"},
    
    		{below1e23, 'e', 17, "9.99999999999999748e+22"},
    		{below1e23, 'f', 17, "99999999999999974834176.00000000000000000"},
    		{below1e23, 'g', 17, "9.9999999999999975e+22"},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 24.3K bytes
    - Viewed (0)
  4. src/strconv/atof_test.go

    	{"1x", "0", ErrSyntax},
    	{"1.1.", "0", ErrSyntax},
    	{"1e23", "1e+23", nil},
    	{"1E23", "1e+23", nil},
    	{"100000000000000000000000", "1e+23", nil},
    	{"1e-100", "1e-100", nil},
    	{"123456700", "1.234567e+08", nil},
    	{"99999999999999974834176", "9.999999999999997e+22", nil},
    	{"100000000000000000000001", "1.0000000000000001e+23", nil},
    	{"100000000000000008388608", "1.0000000000000001e+23", 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)
  5. src/net/textproto/reader_test.go

    Accept-Encoding: gzip,deflate,sdch
    Accept-Language: en-US,en;q=0.8,fr-CH;q=0.6
    Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
    COOKIE: __utma=000000000.0000000000.0000000000.0000000000.0000000000.00; __utmb=000000000.0.00.0000000000; __utmc=000000000; __utmz=000000000.0000000000.00.0.utmcsr=code.google.com|utmccn=(referral)|utmcmd=referral|utmcct=/p/go/issues/detail
    Non-Interned: test
    
    `, "\n", "\r\n", -1)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 05 18:31:56 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  6. src/strconv/ftoa_test.go

    	{1e23, 'e', 17, "9.99999999999999916e+22"},
    	{1e23, 'f', 17, "99999999999999991611392.00000000000000000"},
    	{1e23, 'g', 17, "9.9999999999999992e+22"},
    
    	{1e23, 'e', -1, "1e+23"},
    	{1e23, 'f', -1, "100000000000000000000000"},
    	{1e23, 'g', -1, "1e+23"},
    
    	{below1e23, 'e', 17, "9.99999999999999748e+22"},
    	{below1e23, 'f', 17, "99999999999999974834176.00000000000000000"},
    	{below1e23, 'g', 17, "9.9999999999999975e+22"},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 24 23:50:20 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  7. src/math/big/float_test.go

    		{"-12345.000000000000000000001", -12345, Above},
    		{"-12345.0", -12345, Exact},
    		{"-1.000000000000000000001", -1, Above},
    		{"-1.5", -1, Above},
    		{"-1", -1, Exact},
    		{"-1e-1000", 0, Above},
    		{"0", 0, Exact},
    		{"1e-1000", 0, Below},
    		{"1", 1, Exact},
    		{"1.000000000000000000001", 1, Below},
    		{"1.5", 1, Below},
    		{"12345.0", 12345, Exact},
    		{"12345.000000000000000000001", 12345, Below},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 51.9K bytes
    - Viewed (0)
  8. src/crypto/tls/testdata/Client-TLSv12-ClientCert-ECDSA-ECDSA

    000002c0  95 fd 37 14 8c 34 f3 07  10 f8 dd e3 66 28 1c b2  |..7..4......f(..|
    000002d0  a0 14 03 03 00 01 01 16  03 03 00 40 00 00 00 00  |...........@....|
    000002e0  00 00 00 00 00 00 00 00  00 00 00 00 6c b8 ab 0b  |............l...|
    000002f0  c1 2d 2f 4e d2 25 14 96  24 c6 18 97 82 93 1c 1b  |.-/N.%..$.......|
    00000300  b4 ca 77 8b 17 7c cf 08  ca 06 e2 ef f3 97 6a 31  |..w..|........j1|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  9. src/math/big/ratconv_test.go

    	"750486563e-38",
    	"3752432815e-39",
    	"75224575729e-45",
    	"459926601011e+15",
    
    	// Constants plundered from strconv/atof_test.go.
    
    	"0",
    	"1",
    	"+1",
    	"1e23",
    	"1E23",
    	"100000000000000000000000",
    	"1e-100",
    	"123456700",
    	"99999999999999974834176",
    	"100000000000000000000001",
    	"100000000000000008388608",
    	"100000000000000016777215",
    	"100000000000000016777216",
    	"-1",
    	"-0.1",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 15 22:16:34 UTC 2023
    - 19.3K bytes
    - Viewed (0)
  10. guava/src/com/google/common/net/InetAddresses.java

     *   <dt>From the IPv6 reserved documentation prefix ({@code 2001:db8::/32}), {@code "2001:db8::1"}.
     *   <dd>{@code 20 01 0d b8 00 00 00 00 00 00 00 00 00 00 00 01}
     *   <dt>An IPv6 "IPv4 compatible" (or "compat") address, {@code "::192.168.0.1"}.
     *   <dd>{@code 00 00 00 00 00 00 00 00 00 00 00 00 c0 a8 00 01}
     *   <dt>An IPv6 "IPv4 mapped" address, {@code "::ffff:192.168.0.1"}.
     *   <dd>{@code 00 00 00 00 00 00 00 00 00 00 ff ff c0 a8 00 01}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
Back to top