Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for test_multipleUpdates (0.38 sec)

  1. src/test/java/org/codelibs/fess/dict/stopwords/StopwordsItemTest.java

            assertFalse(existingItem.isUpdated());
            assertNull(existingItem.getNewInput());
            assertEquals("existingword", existingItem.toLineString());
        }
    
        public void test_multipleUpdates() {
            // Test multiple updates to newInput
            StopwordsItem item = new StopwordsItem(1, "original");
    
            item.setNewInput("first");
            assertEquals("first", item.toLineString());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/dict/protwords/ProtwordsItemTest.java

            assertEquals(999, item2.getId());
    
            ProtwordsItem item3 = new ProtwordsItem(-1, "word");
            assertEquals(-1, item3.getId());
        }
    
        public void test_multipleUpdates() {
            // Test multiple updates to newInput
            ProtwordsItem item = new ProtwordsItem(1, "original");
    
            assertFalse(item.isUpdated());
            assertFalse(item.isDeleted());
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 10.2K bytes
    - Viewed (0)
  3. src/test/java/jcifs/smb1/util/HMACT64Test.java

            byte[] originalResult = originalHmac.engineDigest();
            byte[] clonedResult = clonedHmac.engineDigest();
    
            assertArrayEquals(originalResult, clonedResult);
        }
    
        @Test
        void testMultipleUpdates() {
            // Test multiple update calls
            HMACT64 hmac1 = new HMACT64(TEST_KEY);
            HMACT64 hmac2 = new HMACT64(TEST_KEY);
    
            // Update hmac1 all at once
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 10.1K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/hash/MacHashFunctionTest.java

        try {
          Hashing.hmacMd5(MD5_KEY);
          fail("expected ISE");
        } catch (IllegalStateException expected) {
        } finally {
          Providers.setProviderList(providers);
        }
      }
    
      public void testMultipleUpdates() throws Exception {
        Mac mac = Mac.getInstance("HmacSHA1");
        mac.init(SHA1_KEY);
        mac.update("hello".getBytes(UTF_8));
        mac.update("world".getBytes(UTF_8));
    
        assertEquals(
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Dec 27 16:19:35 UTC 2024
    - 13.8K bytes
    - Viewed (0)
Back to top