- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 10 for http_address (0.05 sec)
-
src/test/java/org/codelibs/fess/exec/SuggestCreatorTest.java
String originalValue = System.getProperty(FesenClient.HTTP_ADDRESS); try { System.setProperty(FesenClient.HTTP_ADDRESS, "http://localhost:9200"); assertEquals("http://localhost:9200", System.getProperty(FesenClient.HTTP_ADDRESS)); } finally { if (originalValue != null) { System.setProperty(FesenClient.HTTP_ADDRESS, originalValue); } else {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.1K 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"); field.setAccessible(true);
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/java/org/codelibs/fess/exec/SuggestCreator.java
} catch (final Exception e) { // ignore } } final String httpAddress = SystemUtil.getSearchEngineHttpAddress(); if (StringUtil.isNotBlank(httpAddress)) { System.setProperty(FesenClient.HTTP_ADDRESS, httpAddress); } TimeoutTask systemMonitorTask = null; int exitCode; try {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 11K bytes - Viewed (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/client/FesenClient.java
* * @author shinsuke * */ public class FesenClient implements Client { /** * HTTP address for OpenSearch. */ public static final String HTTP_ADDRESS = "crawler.opensearch.http_address"; /** * Target indices for OpenSearch. */ public static final String TARGET_INDICES = "crawler.opensearch.target_indices"; /** * Logger instance.
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Aug 31 05:32:52 UTC 2025 - 25.3K 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/exec/Crawler.java
// ignore } } initializeProbes(); final String httpAddress = SystemUtil.getSearchEngineHttpAddress(); if (StringUtil.isNotBlank(httpAddress)) { System.setProperty(FesenClient.HTTP_ADDRESS, httpAddress); } TimeoutTask systemMonitorTask = null; TimeoutTask hotThreadMonitorTask = null;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 31K 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. */ public static final int DEFAULT_START_COUNT = 0;
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/main/java/org/codelibs/fess/job/SuggestJob.java
} cmdList.add(buf.toString()); if (useLocalFesen) { final String httpAddress = SystemUtil.getSearchEngineHttpAddress(); if (StringUtil.isNotBlank(httpAddress)) { cmdList.add("-D" + Constants.FESS_SEARCH_ENGINE_HTTP_ADDRESS + "=" + httpAddress); } } final String systemLastaEnv = System.getProperty("lasta.env");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 10.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/GenerateThumbnailJob.java
} cmdList.add(buf.toString()); if (useLocalFesen) { final String httpAddress = SystemUtil.getSearchEngineHttpAddress(); if (StringUtil.isNotBlank(httpAddress)) { cmdList.add("-D" + Constants.FESS_SEARCH_ENGINE_HTTP_ADDRESS + "=" + httpAddress); } } final String systemLastaEnv = System.getProperty("lasta.env");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 11.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/CrawlJob.java
} cmdList.add(buf.toString()); if (useLocalFesen) { final String httpAddress = SystemUtil.getSearchEngineHttpAddress(); if (StringUtil.isNotBlank(httpAddress)) { cmdList.add("-D" + Constants.FESS_SEARCH_ENGINE_HTTP_ADDRESS + "=" + httpAddress); } } final String systemLastaEnv = System.getProperty("lasta.env");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 19.6K bytes - Viewed (0)