- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 17 for manyje (2.99 sec)
-
src/main/java/org/codelibs/fess/suggest/settings/SuggestSettings.java
* * <p>This class provides methods to initialize settings, get and set individual settings, * and manage various types of settings such as array settings, analyzer settings, bad word settings, * and elevate word settings.</p> * * <p>It also includes a nested TimeoutSettings class to manage various timeout configurations.</p> * * <p>Usage example:</p> * <pre> * {@code * Client client = ...;
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 24 03:40:05 UTC 2025 - 20.1K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/ExtractorFactory.java
import jakarta.annotation.Resource; /** * Factory class for managing and retrieving {@link Extractor} instances. * This class provides methods to add, retrieve, and manage extractors based on a key. * It also includes a builder for creating extractors. * * <p> * The factory maintains a map of keys to an array of {@link Extractor} objects.Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Nov 23 12:19:14 UTC 2025 - 7.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/DictionaryManager.java
import org.dbflute.optional.OptionalEntity; import jakarta.annotation.PostConstruct; /** * Manager class for handling dictionary files in the Fess search system. * This class provides functionality to retrieve, store, and manage various * dictionary files such as synonyms, kuromoji, protwords, and stopwords. * It coordinates with DictionaryCreator instances to handle different * dictionary types and manages file synchronization through ConfigSync. *
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/mapping/CharMappingFile.java
import org.codelibs.fess.util.ComponentUtil; import org.dbflute.optional.OptionalEntity; /** * Character mapping file handler for managing character mapping dictionaries. * This class provides functionality to load, parse, and manage character mapping * rules that define how input characters should be transformed to output characters * during text analysis and search processing. * * Character mapping files contain mapping rules in the format:
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 20 05:56:45 UTC 2025 - 15.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/settings/ElevateWordSettings.java
* Initializes the ElevateWordSettings with the provided settings, client, index name, and settings ID.</li> * </ul> * * <p>Dependencies:</p> * <ul> * <li>{@code ArraySettings} - Used to manage the array settings for elevate words.</li> * <li>{@code SuggestSettings} - The suggestion settings.</li> * <li>{@code Client} - The client used for accessing the settings.</li> * </ul> * * <p>Logging:</p> * <ul>
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 24 03:40:05 UTC 2025 - 7.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/settings/ArraySettings.java
import org.opensearch.index.query.QueryBuilders; import org.opensearch.search.SearchHit; import org.opensearch.transport.client.Client; /** * The ArraySettings class provides methods to manage settings stored in an array format within an OpenSearch index. * It allows adding, retrieving, and deleting settings based on keys and values. * * <p>Constructor: * <ul>
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 24 03:40:05 UTC 2025 - 15.8K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb/SmbClient.java
* <li>Handle timeouts during SMB operations.</li> * </ul> * * <p> * The client uses a {@link SmbAuthenticationHolder} to manage SMB authentication credentials. * It also integrates with other Fess Crawler components, such as {@link ContentLengthHelper} and * {@link MimeTypeHelper}, to handle content length checks and MIME type detection. * </p> *
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 08:38:29 UTC 2025 - 23.4K bytes - Viewed (3) -
src/main/java/org/codelibs/fess/helper/DataIndexHelper.java
* Defaults to normal thread priority. */ protected int crawlerPriority = Thread.NORM_PRIORITY; /** * Thread-safe list of active data crawling threads. * Used to track and manage all currently running crawler threads. */ protected final List<DataCrawlingThread> dataCrawlingThreadList = Collections.synchronizedList(new ArrayList<>()); /** * Creates a new instance of DataIndexHelper.Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 19K bytes - Viewed (0) -
src/test/java/org/codelibs/curl/CurlRequestTest.java
// Add many parameters for (int i = 0; i < 100; i++) { request.param("param" + i, "value" + i); } assertNotNull(request); } @Test public void testManyHeaders() { CurlRequest request = new CurlRequest(Method.GET, "https://example.com"); // Add many headers for (int i = 0; i < 50; i++) {Registered: Sat Dec 20 09:13:53 UTC 2025 - Last Modified: Mon Nov 24 03:10:07 UTC 2025 - 20.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/index/SuggestIndexer.java
import org.opensearch.transport.client.Client; /** * The SuggestIndexer class is responsible for indexing and managing suggest items in an OpenSearch index. * It provides methods to index, delete, and manage suggest items, including handling bad words and elevate words. * * <p>Constructor: * <ul>
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 24 03:40:05 UTC 2025 - 34.4K bytes - Viewed (0)