Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for 100000000000000000000h (0.21 sec)

  1. src/time/time_test.go

    	{"-9223372036854775808ns", -1 << 63 * Nanosecond},
    	// largest negative round trip value, see https://golang.org/issue/48629
    	{"-2562047h47m16.854775808s", -1 << 63 * Nanosecond},
    	// huge string; issue 15011.
    	{"0.100000000000000000000h", 6 * Minute},
    	// This value tests the first overflow check in leadingFraction.
    	{"0.830103483285477580700h", 49*Minute + 48*Second + 372539827*Nanosecond},
    }
    
    func TestParseDuration(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  2. 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)
  3. src/encoding/json/decode_test.go

    	{CaseName: Name(""), in: `0.000001`, ptr: new(float64), out: 0.000001, golden: true},
    	{CaseName: Name(""), in: `1e-7`, ptr: new(float64), out: 1e-7, golden: true},
    	{CaseName: Name(""), in: `100000000000000000000`, ptr: new(float64), out: 100000000000000000000.0, golden: true},
    	{CaseName: Name(""), in: `1e+21`, ptr: new(float64), out: 1e21, golden: true},
    	{CaseName: Name(""), in: `-0.000001`, ptr: new(float64), out: -0.000001, golden: true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  4. src/archive/tar/writer_test.go

    	// that fails and replaced ever char through numbers to anonymize the sample.
    	longName := "/0000_0000000/00000-000000000/0000_0000000/00000-0000000000000/0000_0000000/00000-0000000-00000000/0000_0000000/00000000/0000_0000000/000/0000_0000000/00000000v00/0000_0000000/000000/0000_0000000/0000000/0000_0000000/00000y-00/0000/0000/00000000/0x000000/"
    	hdr.Name = longName
    
    	hdr.Size = 0
    	var buf bytes.Buffer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 38.7K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/net/InetAddresses.java

     *   <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}
     * </dl>
     *
     * <p>A few notes about IPv6 "IPv4 mapped" addresses and their observed use in Java.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  6. guava/src/com/google/common/net/InetAddresses.java

     *   <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}
     * </dl>
     *
     * <p>A few notes about IPv6 "IPv4 mapped" addresses and their observed use in Java.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  7. src/net/netip/netip_test.go

    		s  string
    	}{
    		{
    			ip: Addr{},
    			s:  "invalid IP",
    		},
    		{
    			ip: mustIP("192.0.2.1"),
    			s:  "192.0.2.1",
    		},
    		{
    			ip: mustIP("::ffff:192.0.2.1"),
    			s:  "0000:0000:0000:0000:0000:ffff:c000:0201",
    		},
    		{
    			ip: mustIP("2001:db8::1"),
    			s:  "2001:0db8:0000:0000:0000:0000:0000:0001",
    		},
    		{
    			ip: mustIP("2001:db8::1%eth0"),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
Back to top