- Sort Score
- Result 10 results
- Languages All
Results 1 - 9 of 9 for search_engine (0.07 sec)
-
src/test/java/org/codelibs/fess/mylasta/direction/FessConfigImplTest.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.6K bytes - Viewed (0) -
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) -
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) -
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) -
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) -
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) -
src/main/java/org/codelibs/fess/suggest/settings/AnalyzerSettings.java
* @return The path to the suggest analyzer configuration file. */ protected String getSuggestAnalyzerPath() { final Object typeObj = settings.get("search_engine.type"); if (typeObj != null) { final String path = "suggest_indices/_" + typeObj.toString() + "/suggest_analyzer.json"; if (ResourceUtil.getResourceNoException(path) != null) {
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Thu Aug 07 02:41:28 UTC 2025 - 26.5K bytes - Viewed (0) -
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) -
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)