Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 37 for initialisation (0.14 sec)

  1. src/test/java/org/codelibs/fess/thumbnail/ThumbnailManagerTest.java

            }
            dir.delete();
        }
    
        // Test initialization
        public void test_init() {
            assertNotNull(thumbnailManager.baseDir);
            assertTrue(thumbnailManager.baseDir.exists());
            assertTrue(thumbnailManager.baseDir.isDirectory());
            assertNotNull(thumbnailManager.thumbnailTaskQueue);
        }
    
        // Test initialization with system property
        public void test_init_withSystemProperty() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 18.7K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/exception/ContainerNotAvailableExceptionTest.java

        }
    
        public void test_constructor_withCause() {
            // Test constructor with cause only
            Throwable cause = new IllegalStateException("Container initialization failed");
            ContainerNotAvailableException exception = new ContainerNotAvailableException(cause);
    
            assertEquals("Container is not available.", exception.getMessage());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/DataIndexHelper.java

         * Each thread handles crawling for a single data configuration,
         * processing documents and updating the search index.
         *
         * <p>The thread manages:</p>
         * <ul>
         *   <li>Data store initialization and document processing</li>
         *   <li>Index update operations through callbacks</li>
         *   <li>Error handling and failure logging</li>
         *   <li>Cleanup of old documents after successful crawling</li>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 18.9K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/opensearch/client/CrawlerEngineClientTest.java

                assertNotNull(client);
            }
        }
    
        // Test instance fields initialization
        public void test_instanceFieldsInitialization() {
            // Test that instance fields are properly initialized
            assertNotNull(crawlerEngineClient);
            // The actual client initialization happens lazily when needed
        }
    
        // Test that close method exists (inherited)
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/AbstractFutureState.java

       * time for AbstractFutureState to potentially use them during class initialization.
       * (AbstractFutureState class initialization can log, and that logging could in theory call into
       * AbstractFuture, which wouldn't yet have had the chance to perform any class initialization of
       * its own.)
       */
    
      /** A special value to represent {@code null}. */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 33.2K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/cache/LongAddables.java

     */
    @GwtCompatible
    final class LongAddables {
      private static final Supplier<LongAddable> SUPPLIER;
    
      static {
        Supplier<LongAddable> supplier;
        try {
          // trigger static initialization of the LongAdder class, which may fail
          LongAdder unused = new LongAdder();
          supplier =
              new Supplier<LongAddable>() {
                @Override
                public LongAddable get() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Aug 10 19:54:19 UTC 2025
    - 2K bytes
    - Viewed (0)
  7. guava/src/com/google/common/util/concurrent/AbstractFutureState.java

       * time for AbstractFutureState to potentially use them during class initialization.
       * (AbstractFutureState class initialization can log, and that logging could in theory call into
       * AbstractFuture, which wouldn't yet have had the chance to perform any class initialization of
       * its own.)
       */
    
      /** A special value to represent {@code null}. */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 34.8K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/mylasta/creator/PagerCreatorTest.java

        public void setUp() throws Exception {
            super.setUp();
            namingConvention = new MockNamingConvention();
            pagerCreator = new PagerCreator(namingConvention);
        }
    
        // Test constructor initialization
        public void test_constructor() {
            // Verify suffix is set correctly
            assertEquals(PagerCreator.SUFFIX, "Pager");
    
            // Verify name suffix is set
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 13.6K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/validation/CronExpressionValidatorTest.java

            assertNotNull(validator);
    
            // Test initialize method doesn't throw exception
            validator.initialize(null);
    
            // Test that validator can be used after initialization
            assertTrue(validator.isValid(null, null));
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 4.5K bytes
    - Viewed (0)
  10. okhttp/src/commonJvmAndroid/kotlin/okhttp3/Cache.kt

       * up the necessary in-memory cache information.
       *
       * The initialization time may vary depending on the journal file size and the current actual
       * cache size. The application needs to be aware of calling this function during the
       * initialization phase and preferably in a background worker thread.
       *
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 16 09:39:51 UTC 2025
    - 26.9K bytes
    - Viewed (0)
Back to top