Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for 00000xabcd (0.07 sec)

  1. src/fmt/fmt_test.go

    	{"% 08x", "\xab", "000000ab"},
    	{"%#08x", "\xab", "00000xab"},
    	{"%# 08x", "\xab", "00000xab"},
    	{"%10x", "\xab\xcd", "      abcd"},
    	{"% 10x", "\xab\xcd", "     ab cd"},
    	{"%#10x", "\xab\xcd", "    0xabcd"},
    	{"%# 10x", "\xab\xcd", " 0xab 0xcd"},
    	{"%010x", "\xab\xcd", "000000abcd"},
    	{"% 010x", "\xab\xcd", "00000ab cd"},
    	{"%#010x", "\xab\xcd", "00000xabcd"},
    	{"%# 010x", "\xab\xcd", "00xab 0xcd"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/hash/HashCodeTest.java

                  0x13579bdf,
                  null,
                  "df9b5713"),
              new ExpectedHashCode(
                  new byte[] {(byte) 0xcd, (byte) 0xab, (byte) 0x00, (byte) 0x00},
                  0x0000abcd,
                  null,
                  "cdab0000"),
              new ExpectedHashCode(
                  new byte[] {
                    (byte) 0xef, (byte) 0xcd, (byte) 0xab, (byte) 0x00,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 13.1K bytes
    - Viewed (0)
Back to top