Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for searchEngine (0.06 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/main/resources/esclient.xml

    			 "http.cors.allow-origin":"*",
    			 "discovery.type":"single-node",
    			 "cluster.allocator.existing_shards_allocator.batch_enabled":"true",
    			 <!--
    			 "node.name":"search_engine",
    			 "discovery.seed_hosts":"search_engine",
    			 "cluster.initial_cluster_manager_nodes":"search_engine",
    			 "node.roles":"cluster_manager,data,ingest,ml",
    			 -->
    			 "indices.breaker.total.limit":"100%",
    			 "action.auto_create_index":"-*"}
    		</property>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Wed Nov 06 13:45:02 UTC 2024
    - 16K 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/test/java/org/codelibs/fess/helper/CurlHelperTest.java

                    return fesenUrl;
                }
            });
    
            // Set system property to ensure ResourceUtil.getFesenHttpUrl() works
            System.setProperty("fess.search_engine.http_address", fesenUrl);
        }
    
        private NodeManager getNodeManager(CurlHelper curlHelper) {
            try {
                Field field = CurlHelper.class.getDeclaredField("nodeManager");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 05:35:01 UTC 2025
    - 10.1K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/util/SystemUtilTest.java

        }
    
        public void test_constants_reference() {
            // Test that the constant used is accessible and has expected value
            assertEquals("fess.search_engine.http_address", Constants.FESS_SEARCH_ENGINE_HTTP_ADDRESS);
        }
    
        public void test_static_method_signature() {
            // Verify method signature is correct
            try {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 12.9K bytes
    - Viewed (0)
  7. 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)
  8. src/main/java/org/codelibs/fess/Constants.java

        public static final String MATCHES_ALL_QUERY = "*:*";
    
        /** Configuration key for search engine HTTP address. */
        public static final String FESS_SEARCH_ENGINE_HTTP_ADDRESS = "fess.search_engine.http_address";
    
        /** Default number of results per page. */
        public static final int DEFAULT_PAGE_SIZE = 20;
    
        /** Default starting count for pagination. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 34.6K bytes
    - Viewed (0)
Back to top