Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for 1777777777777777777777 (0.07 sec)

  1. src/archive/tar/strconv_test.go

    		{000001234567, "00001234567\x00", true},
    		{076543210321, "76543210321\x00", true},
    		{012345670123, "12345670123\x00", true},
    		{077777777777, "77777777777\x00", true},
    		{0100000000000, "\x80\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00", true},
    		{math.MaxInt64, "777777777777777777777\x00", true},
    
    		// Test base-256 (binary) encoded values.
    		{-1, "\xff", true},
    		{-1, "\xff\xff", true},
    		{-1, "\xff\xff\xff", true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 09 05:28:50 UTC 2021
    - 14K bytes
    - Viewed (0)
  2. src/fmt/fmt_test.go

    	{"%o", -01234, "-1234"},
    	{"%#o", 01234, "01234"},
    	{"%#o", -01234, "-01234"},
    	{"%O", 01234, "0o1234"},
    	{"%O", -01234, "-0o1234"},
    	{"%o", ^uint32(0), "37777777777"},
    	{"%o", ^uint64(0), "1777777777777777777777"},
    	{"%#X", 0, "0X0"},
    	{"%x", 0x12abcdef, "12abcdef"},
    	{"%X", 0x12abcdef, "12ABCDEF"},
    	{"%x", ^uint32(0), "ffffffff"},
    	{"%X", ^uint64(0), "FFFFFFFFFFFFFFFF"},
    	{"%.20b", 7, "00000000000000000111"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
Back to top