Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for testGetBytesInternal_noCloneOccurs (0.14 seconds)

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

        bytes[0] = (byte) 0x00;
    
        assertEquals(0x0000ab00, hashCode.asInt());
        assertThat(hashCode.toString()).isEqualTo("00ab0000");
      }
    
      public void testGetBytesInternal_noCloneOccurs() {
        byte[] bytes = new byte[] {(byte) 0xcd, (byte) 0xab, (byte) 0x00, (byte) 0x00};
        HashCode hashCode = HashCode.fromBytes(bytes);
    
        assertEquals(0x0000abcd, hashCode.asInt());
    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

        bytes[0] = (byte) 0x00;
    
        assertEquals(0x0000ab00, hashCode.asInt());
        assertThat(hashCode.toString()).isEqualTo("00ab0000");
      }
    
      public void testGetBytesInternal_noCloneOccurs() {
        byte[] bytes = new byte[] {(byte) 0xcd, (byte) 0xab, (byte) 0x00, (byte) 0x00};
        HashCode hashCode = HashCode.fromBytes(bytes);
    
        assertEquals(0x0000abcd, hashCode.asInt());
    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