Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for testWriteBytesToOversizedArrayLongMaxLength (0.18 seconds)

  1. guava-tests/test/com/google/common/hash/HashCodeTest.java

        HASH_ABCD.writeBytesTo(dest, 0, 4);
        assertThat(dest)
            .isEqualTo(new byte[] {(byte) 0xaa, (byte) 0xbb, (byte) 0xcc, (byte) 0xdd, (byte) 0x00});
      }
    
      public void testWriteBytesToOversizedArrayLongMaxLength() {
        byte[] dest = new byte[5];
        HASH_ABCD.writeBytesTo(dest, 0, 5);
        assertThat(dest)
            .isEqualTo(new byte[] {(byte) 0xaa, (byte) 0xbb, (byte) 0xcc, (byte) 0xdd, (byte) 0x00});
      }
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 19 18:53:45 GMT 2026
    - 13.2K bytes
    - Click Count (0)
  2. android/guava-tests/test/com/google/common/hash/HashCodeTest.java

        HASH_ABCD.writeBytesTo(dest, 0, 4);
        assertThat(dest)
            .isEqualTo(new byte[] {(byte) 0xaa, (byte) 0xbb, (byte) 0xcc, (byte) 0xdd, (byte) 0x00});
      }
    
      public void testWriteBytesToOversizedArrayLongMaxLength() {
        byte[] dest = new byte[5];
        HASH_ABCD.writeBytesTo(dest, 0, 5);
        assertThat(dest)
            .isEqualTo(new byte[] {(byte) 0xaa, (byte) 0xbb, (byte) 0xcc, (byte) 0xdd, (byte) 0x00});
      }
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 19 18:53:45 GMT 2026
    - 13.2K bytes
    - Click Count (0)
Back to Top