- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 616 for clientIp (1.37 sec)
-
src/main/java/org/codelibs/fess/suggest/settings/ArraySettings.java
* @param settings Suggest settings * @param client OpenSearch client * @param settingsIndexName Settings index name * @param settingsId Settings ID */ protected ArraySettings(final SuggestSettings settings, final Client client, final String settingsIndexName, final String settingsId) { this.settings = settings; this.client = client;Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 24 03:40:05 UTC 2025 - 15.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/SuggesterRefactoringTest.java
// Create first index with alias client.admin().indices().prepareCreate(index1).addAlias(new Alias(aliasName)).execute().actionGet(); // Create second index and add to same alias client.admin().indices().prepareCreate(index2).execute().actionGet(); client.admin().indices().prepareAliases().addAlias(index2, aliasName).execute().actionGet();Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 24 03:40:05 UTC 2025 - 13.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/converter/AnalyzerConverter.java
/** * Constructor. * @param client OpenSearch client * @param settings Suggest settings */ public AnalyzerConverter(final Client client, final SuggestSettings settings) { this.client = client; this.settings = settings; analyzerSettings = settings.analyzer(); } @Override public void init() throws IOException { // nothing } @OverrideRegistered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 17 14:28:21 UTC 2025 - 6.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/request/RequestBuilder.java
/** * Constructor for RequestBuilder. * @param client The OpenSearch client. * @param request The request instance. */ public RequestBuilder(final Client client, final Req request) { this.client = client; this.request = request; } /** * Executes the request. * @return A Promise that will be resolved with the response or rejected with an error. */Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Fri Jul 04 14:00:23 UTC 2025 - 1.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/request/Request.java
*/ public Request() { // nothing } /** * Executes the request. * @param client The OpenSearch client. * @return A Promise that will be resolved with the response or rejected with an error. */ public Deferred<T>.Promise execute(final Client client) { final String error = getValidationError(); if (!Strings.isNullOrEmpty(error)) {Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Sun Nov 23 11:21:40 UTC 2025 - 2.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/index/writer/SuggestWriter.java
import org.opensearch.index.query.QueryBuilder; import org.opensearch.transport.client.Client; /** * Interface for writing suggest items. */ public interface SuggestWriter { /** * Writes the given suggest items to the specified index. * * @param client the client used to interact with the search engine * @param settings the settings for the suggest featureRegistered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Fri Jul 04 14:00:23 UTC 2025 - 4.1K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/http/HcHttpClientTest.java
} }; client.setAccessTimeout(1); try { client.doGet("http://localhost/"); fail(); } catch (CrawlingAccessException e) { assertTrue(e.getCause() instanceof InterruptedException); } } public void test_doHead_accessTimeoutTarget() { HcHttpClient client = new HcHttpClient() { @OverrideRegistered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sat Sep 06 04:15:37 UTC 2025 - 11.7K bytes - Viewed (0) -
src/main/java/jcifs/Configuration.java
* * Property {@code jcifs.smb.client.capabilities} (int) * * @return custom capabilities */ int getCapabilities(); /** * * * Property {@code jcifs.smb.client.flags2} (int) * * @return custom flags2 */ int getFlags2(); /** * * Property {@code jcifs.smb.client.ssnLimit} (int, 250) *Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 25.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/ftp/FtpClient.java
return responseData; } /** * Disconnects the internal FTP client and logs any errors. * This method is used to clean up failed connections. * * @param client The FTP client to disconnect */ protected void disconnectInternalClient(final FTPClient client) { try { client.disconnect(); } catch (final IOException e) {Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 40K bytes - Viewed (0) -
CLAUDE.md
All public classes and methods require JavaDoc with `@param`, `@return`, and `@throws` tags. ### Best Practices **Null Safety:** ```java public Suggester(final Client client, final SuggestSettings settings) { this.client = Objects.requireNonNull(client, "client must not be null"); this.settings = Objects.requireNonNull(settings, "settings must not be null"); } ``` **Logging with Context:** ```java
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 24 03:40:05 UTC 2025 - 8.9K bytes - Viewed (0)