Search Options

Display Count
Sort
Preferred Language
Advanced Search

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

  1. src/test/java/org/codelibs/fess/helper/AbstractConfigHelperTest.java

            assertTrue("Load method should be called within 5 seconds", latch.await(5, TimeUnit.SECONDS));
            assertEquals(1, configHelper.getLoadCallCount());
        }
    
        @Test
        public void test_update_multipleCallsIncrementLoadCount() throws InterruptedException {
            CountDownLatch latch = new CountDownLatch(3);
            configHelper.setLoadCallback(() -> {
                latch.countDown();
                return 1;
            });
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 4.8K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/auth/chain/AuthenticationChainTest.java

    Shinsuke Sugaya <******@****.***> 1773442886 +0900
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 14.8K bytes
    - Click Count (0)
Back to Top