- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 58 for client5 (0.04 seconds)
-
src/test/java/org/codelibs/fess/opensearch/client/CrawlerEngineClientTest.java
} // Test multiple instances @Test public void test_multipleInstances() { // Test that multiple instances can be created independently CrawlerEngineClient client1 = new CrawlerEngineClient(); CrawlerEngineClient client2 = new CrawlerEngineClient(); assertNotNull(client1); assertNotNull(client2);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/RateLimitHelper.java
final String clientIp = xRealIp.trim(); if (logger.isDebugEnabled()) { logger.debug("Client IP from X-Real-IP: clientIp={}, remoteAddr={}", clientIp, remoteAddr); } return clientIp; } } if (logger.isDebugEnabled()) { logger.debug("Client IP from remoteAddr: ip={}", remoteAddr); }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Dec 24 14:16:27 GMT 2025 - 9.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/util/SearchEngineUtil.java
* @return the number of documents processed */ public static long scroll(final String index, final Function<SearchHit, Boolean> callback) { final SearchEngineClient client = ComponentUtil.getSearchEngineClient(); return client.<SearchHit> scrollSearch(index, searchRequestBuilder -> true, (searchResponse, hit) -> hit, hit -> callback.apply(hit)); } /**Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 5.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/llm/LlmClient.java
/** * Returns the name of this LLM client. * * @return the client name (e.g., "ollama", "openai", "gemini") */ String getName(); /** * Checks if this LLM client is available and properly configured. * * @return true if the client is available, false otherwise */ boolean isAvailable(); // RAG workflow methodsCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 19 07:04:54 GMT 2026 - 7.3K bytes - Click Count (0) -
architecture/README.md
### Build execution model Gradle generally does some work in response to a client request. There are several different clients, for example the `gradlew` command or the tooling API client, that can send requests to a Gradle daemon. Each daemon runs one request at a time. Generally speaking, the daemons only act in response to a request from a client and do not take any action on their own.
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Jun 12 09:50:57 GMT 2025 - 3.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/CrawlingConfig.java
import org.codelibs.core.lang.StringUtil; import org.codelibs.fess.Constants; import org.codelibs.fess.crawler.client.CrawlerClientFactory; import org.codelibs.fess.crawler.client.ftp.FtpClient; import org.codelibs.fess.crawler.client.http.HcHttpClient; import org.codelibs.fess.crawler.client.smb.SmbClient; import org.codelibs.fess.mylasta.direction.FessConfig; import org.codelibs.fess.util.ComponentUtil;
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 15 06:53:53 GMT 2025 - 5.6K bytes - Click Count (0) -
architecture/runtimes.md
- CLI client. This is the `gradle` or `gradlew` command, and is responsible for locating, starting and interacting with the Gradle daemon, potentially downloading the Gradle distribution. - Tooling API client. This a library that is embedded into applications, such as IDEs or CI agents, that allows them to act as a Gradle client.
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu May 02 06:42:46 GMT 2024 - 2.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/WebAuthentication.java
import org.codelibs.fess.app.service.WebConfigService; import org.codelibs.fess.crawler.client.http.config.CredentialsConfig; import org.codelibs.fess.crawler.client.http.config.CredentialsConfig.CredentialsType; import org.codelibs.fess.crawler.client.http.config.WebAuthenticationConfig; import org.codelibs.fess.crawler.client.http.config.WebAuthenticationConfig.AuthSchemeType; import org.codelibs.fess.crawler.exception.CrawlerSystemException;
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Jan 10 01:38:30 GMT 2026 - 5.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/JobHelperTest.java
// If it succeeds, check that lastUpdated is set assertNotNull(jobLog.getLastUpdated()); } catch (Exception e) { // Expected in test environment due to missing client assertTrue(e.getMessage().contains("client")); } } @Test public void test_monitorTarget_expired_withEndTime() { JobLog jobLog = new JobLog(); jobLog.setId("test-log-2");Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 6.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/timer/LogNotificationTarget.java
return ComponentUtil.getFessConfig().getIndexLogIndex() + ".notification_queue"; } private void ensureIndexExists(final SearchEngineClient client, final String indexName) { if (!indexChecked) { if (!client.existsIndex(indexName)) { client.createIndex(NOTIFICATION_QUEUE_INDEX, indexName); } indexChecked = true; } }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 4.5K bytes - Click Count (0)