Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for ExpectedHashCode (0.59 seconds)

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

      }
    
      private static void assertExpectedHashCode(ExpectedHashCode expectedHashCode, HashCode hash) {
        assertThat(hash.asBytes()).isEqualTo(expectedHashCode.bytes);
        byte[] bb = new byte[hash.bits() / 8];
        hash.writeBytesTo(bb, 0, bb.length);
        assertThat(bb).isEqualTo(expectedHashCode.bytes);
        assertEquals(expectedHashCode.asInt, hash.asInt());
        if (expectedHashCode.asLong == null) {
          try {
            hash.asLong();
    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

      }
    
      private static void assertExpectedHashCode(ExpectedHashCode expectedHashCode, HashCode hash) {
        assertThat(hash.asBytes()).isEqualTo(expectedHashCode.bytes);
        byte[] bb = new byte[hash.bits() / 8];
        hash.writeBytesTo(bb, 0, bb.length);
        assertThat(bb).isEqualTo(expectedHashCode.bytes);
        assertEquals(expectedHashCode.asInt, hash.asInt());
        if (expectedHashCode.asLong == null) {
          try {
            hash.asLong();
    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)
  3. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessUserTimeZoneProcessProviderTest.java

            assertTrue(result.contains("@"));
    
            // Verify that hashCode is included in hex format
            String expectedHashCode = Integer.toHexString(provider.hashCode());
            assertTrue(result.contains(expectedHashCode));
        }
    
        // Test toString() format consistency
        @Test
        public void test_toString_formatConsistency() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 7.2K bytes
    - Click Count (0)
Back to Top