Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for searchEngine (0.05 sec)

  1. src/test/java/org/codelibs/fess/exception/ContainerNotAvailableExceptionTest.java

                assertNull(e.getComponentName());
            }
        }
    
        public void test_throwAndCatchWithCause() {
            // Test throwing and catching the exception with cause
            String componentName = "searchEngine";
            Exception expectedCause = new IllegalStateException("Not initialized");
    
            try {
                throw new ContainerNotAvailableException(componentName, expectedCause);
    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/mylasta/direction/FessConfigImplTest.java

                    }
    
                    // Return test values for specific properties
                    switch (propertyKey) {
                    case "domain.title":
                        return "Test Fess";
                    case "search_engine.type":
                        return "opensearch";
                    case "test.property":
                        return "config-value";
                    case "filter.null":
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/it/ITBase.java

        }
    
        public static String getFessUrl() {
            return System.getProperty("test.fess.url", DEFAULT_FESS_URL);
        }
    
        public static String getEsUrl() {
            return System.getProperty("test.search_engine.url", DEFAULT_SEARCH_ENGINE_URL);
        }
    
        protected static RequestSpecification checkMethodBase(final Map<String, Object> body) {
            return given().contentType("application/json")
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 3.4K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/mylasta/direction/FessConfigTest.java

            assertEquals("domain.title", FessConfig.DOMAIN_TITLE);
    
            assertNotNull(FessConfig.search_engine_TYPE);
            assertEquals("search_engine.type", FessConfig.search_engine_TYPE);
    
            assertNotNull(FessConfig.search_engine_HTTP_URL);
            assertEquals("search_engine.http.url", FessConfig.search_engine_HTTP_URL);
    
            assertNotNull(FessConfig.INDEX_FIELD_favorite_count);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 23.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/SuggestHelper.java

                    .execute()
                    .actionGet(fessConfig.getIndexHealthTimeout());
    
            final SuggestSettingsBuilder settingsBuilder = SuggestSettings.builder();
            settingsBuilder.addInitialSettings("search_engine.type", fessConfig.getFesenType());
            settingsBuilder.bulkTimeout(fessConfig.getIndexBulkTimeout());
            settingsBuilder.clusterTimeout(fessConfig.getIndexHealthTimeout());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 22.3K bytes
    - Viewed (0)
Back to top