Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 310 for initializer (1.46 sec)

  1. src/test/java/org/codelibs/fess/dict/mapping/CharMappingFileTest.java

            propFile.deleteOnExit();
            try (FileOutputStream fos = new FileOutputStream(propFile)) {
                fos.write("fess.version=1.0.0".getBytes());
            }
    
            // Initialize SystemHelper
            SystemHelper systemHelper = new SystemHelper() {
                @Override
                protected void parseProjectProperties(final java.nio.file.Path propPath) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 18.5K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/indexer/IndexUpdaterTest.java

        private IngestFactory ingestFactory;
    
        @Override
        public void setUp() throws Exception {
            super.setUp();
    
            // Initialize IndexUpdater
            indexUpdater = new IndexUpdater();
    
            // Initialize mocks/test doubles
            systemHelper = new TestSystemHelper();
            indexingHelper = new TestIndexingHelper();
            intervalControlHelper = new TestIntervalControlHelper();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 33K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/query/PrefixQueryCommandTest.java

            queryProcessor = ComponentUtil.getComponent("queryProcessor");
            queryFieldConfig = ComponentUtil.getComponent("queryFieldConfig");
    
            // Initialize and register PrefixQueryCommand
            queryCommand = new PrefixQueryCommand();
            queryCommand.register();
        }
    
        private void setNotAnalyzedFields(final String... fields) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 13.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/entity/DataStoreParams.java

         * Uses ParamMap for automatic case format conversion between camelCase and snake_case.
         */
        protected final Map<String, Object> params;
    
        /**
         * Creates a new empty DataStoreParams instance.
         * Initializes the internal parameter map with a ParamMap wrapper.
         */
        public DataStoreParams() {
            params = new ParamMap<>(new HashMap<>());
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/pager/GroupPager.java

        /** Group name for search filtering. */
        public String name;
    
        /** Version number for optimistic locking. */
        public String versionNo;
    
        /**
         * Default constructor for GroupPager.
         * Initializes the pager with default values for pagination settings.
         */
        public GroupPager() {
            // Default constructor
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/service/DuplicateHostService.java

         * Used to retrieve paging and other configuration parameters.
         */
        @Resource
        protected FessConfig fessConfig;
    
        /**
         * Creates a new instance of DuplicateHostService.
         * This constructor initializes the service for managing duplicate host configuration operations
         * including CRUD operations and search functionality.
         */
        public DuplicateHostService() {
            super();
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.4K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessCurtainFinallyHookTest.java

            public static void shutdownAll() {
                throw new RuntimeException("Simulated exception during shutdown");
            }
        }
    
        // Test to verify the logger field is properly initialized
        public void test_loggerFieldInitialization() throws Exception {
            // Use reflection to access the private logger field
            Field loggerField = FessCurtainFinallyHook.class.getDeclaredField("logger");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 8.7K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/opensearch/common/ImplementedInvokerAssistantTest.java

                }
            };
            // Should not throw exception
            invokerAssistant.toBeDisposable(process);
        }
    
        // Test static constants are properly initialized
        public void test_staticConstants() {
            // Test DEFAULT_CLIENT_INVOKE_NAMES
            String[] clientNames = ImplementedInvokerAssistant.DEFAULT_CLIENT_INVOKE_NAMES;
            assertNotNull(clientNames);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 10.6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/CrawlerStatsHelper.java

        /** Cache for storing statistics objects keyed by crawler object identifiers. */
        protected LoadingCache<String, StatsObject> statsCache;
    
        /**
         * Initializes the crawler statistics helper.
         * Sets up the statistics logger and creates the cache for storing
         * statistics objects with the configured size and expiration settings.
         */
        @PostConstruct
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 17.4K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/DataIndexHelper.java

         */
        protected final List<DataCrawlingThread> dataCrawlingThreadList = Collections.synchronizedList(new ArrayList<>());
    
        /**
         * Creates a new instance of DataIndexHelper.
         * This constructor initializes the helper for managing data crawling operations,
         * including thread pool management and session-based crawling coordination.
         */
        public DataIndexHelper() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 18.9K bytes
    - Viewed (0)
Back to top