Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 82 for initialisation (0.06 sec)

  1. src/test/java/org/codelibs/fess/exec/ThumbnailGeneratorTest.java

            // Test SearchEngineClient field injection
            ThumbnailGenerator generator = new ThumbnailGenerator();
            assertNull(generator.searchEngineClient);
    
            // After proper initialization, it should be injected
            SearchEngineClient mockClient = new SearchEngineClient() {
                // Mock implementation
            };
            generator.searchEngineClient = mockClient;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.1K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/AggregateFutureState.java

        }
      }
    
      AggregateFutureState(int remainingFutures) {
        this.remainingField = remainingFutures;
      }
    
      final Set<Throwable> getOrInitSeenExceptions() {
        /*
         * The initialization of seenExceptionsField has to be more complicated than we'd like. The
         * simple approach would be for each caller CAS it from null to a Set populated with its
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 8.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/exec/Crawler.java

    /**
     * Main executable class for running crawling operations in the Fess search engine.
     * This class serves as the entry point for crawling web content, file systems, and data stores.
     * It manages the crawling lifecycle, including initialization, execution coordination,
     * monitoring, and cleanup operations.
     *
     * <p>The crawler can operate in different modes based on command-line options:
     * <ul>
     * <li>Web crawling - crawls web sites and web content</li>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 31K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/log/Logger.java

        /** Map of loggers keyed by class */
        protected static final Map<Class<?>, Logger> loggers = newHashMap();
    
        /** Flag indicating initialization is complete. */
        private static boolean initialized;
    
        /** Logger adapter. */
        private final LoggerAdapter log;
    
        /**
         * Returns a {@link Logger}.
         *
         * @param clazz
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jun 19 09:12:22 UTC 2025
    - 12.4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java

        /**
         * Default constructor for RankFusionProcessor.
         * Initializes the processor with default values. The actual initialization
         * is performed by the init() method which is called after construction.
         */
        public RankFusionProcessor() {
            // Default constructor - initialization is done in init() method
        }
    
        /**
         * Initializes the rank fusion processor after construction.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 24.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/FessBoot.java

    import org.dbflute.tomcat.props.BootPropsTranslator;
    
    /**
     * Main boot class for the Fess search engine application.
     * This class extends TomcatBoot to provide Fess-specific Tomcat server configuration
     * and initialization, including SSL setup, context path handling, and resource management.
     *
     * <p>The class handles system property configuration for paths, ports, and other
     * Fess-specific settings during application startup.</p>
     *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 11.3K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/indexer/IndexUpdaterTest.java

                indexUpdater.interrupt();
                indexUpdater.join(1000);
            }
            super.tearDown();
        }
    
        // Test initialization
        public void test_init() {
            indexUpdater.init();
            assertNotNull(indexUpdater);
        }
    
        // Test initialization with IngestFactory
        public void test_init_withIngestFactory() {
            ComponentUtil.register(ingestFactory, "ingestFactory");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 33K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/base/FessSearchAction.java

            buildInitParamMap(viewHelper.getInitGeoParamMap(), Constants.GEO_QUERY, Constants.GEO_FORM);
        }
    
        /**
         * Builds parameter maps for search initialization, creating both query strings
         * and form inputs for the given parameters.
         *
         * @param paramMap the parameter map to process
         * @param queryKey the key for storing query string parameters
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 13.8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/ProtocolHelper.java

    import org.codelibs.fess.util.ComponentUtil;
    
    import jakarta.annotation.PostConstruct;
    
    /**
     * Helper class for managing and validating URL protocols in Fess crawling system.
     * This class handles the initialization and validation of web and file protocols
     * used by the crawler to determine which URLs can be crawled.
     */
    public class ProtocolHelper {
        private static final Logger logger = LogManager.getLogger(ProtocolHelper.class);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.7K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/job/CrawlJobTest.java

            super.setUp();
            crawlJob = new CrawlJob();
        }
    
        @Override
        public void tearDown() throws Exception {
            super.tearDown();
        }
    
        // Test constructor and field initialization
        public void test_constructor() {
            assertNotNull(crawlJob);
            assertEquals(Constants.CRAWLING_INFO_SYSTEM_NAME, crawlJob.namespace);
            assertNull(crawlJob.webConfigIds);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 25K bytes
    - Viewed (0)
Back to top