- Sort Score
- Result 10 results
- Languages All
Results 31 - 38 of 38 for Processing (0.05 sec)
-
src/main/java/org/codelibs/fess/suggest/index/SuggestIndexer.java
* <li>{@link #roleFieldName} - Role field name. * <li>{@link #langFieldName} - Language field name. * <li>{@link #badWords} - List of bad words. * <li>{@link #parallel} - Flag for parallel processing. * <li>{@link #readingConverter} - Reading converter. * <li>{@link #contentsReadingConverter} - Contents reading converter. * <li>{@link #normalizer} - Normalizer. * <li>{@link #analyzer} - Suggest analyzer.
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Thu Aug 07 02:41:28 UTC 2025 - 34.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/entity/ElevateWordTest.java
assertNotNull(suggestItem); assertEquals(word, suggestItem.getText()); // Check tags and roles are not null (they might not be empty due to internal processing) assertNotNull(suggestItem.getTags()); assertNotNull(suggestItem.getRoles()); } @Test public void testToSuggestItemWithLargeBoost() {Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Mon Sep 01 13:33:03 UTC 2025 - 16K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/request/suggest/SuggestRequest.java
* <li>Configuring suggestion details, reading converter, normalizer, prefix match weight, match word first, and skip duplicate words options.</li> * <li>Building the query and filter query for the suggestion request.</li> * <li>Processing the request and handling the response or failure.</li> * <li>Creating the response from the search results.</li> * </ul> * * <p>Example usage:</p> * <pre> * SuggestRequest suggestRequest = new SuggestRequest();
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Thu Aug 07 02:41:28 UTC 2025 - 17.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/settings/SuggestSettings.java
public static final String ROLE_FIELD_NAME = "roleFieldName"; /** Language field name key. */ public static final String LANG_FIELD_NAME = "langFieldName"; /** Parallel processing key. */ public static final String PARALLEL_PROCESSING = "parallel"; /** Max content length key. */ public static final String MAX_CONTENT_LENGTH = "maxContextLength";
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Thu Aug 07 02:41:28 UTC 2025 - 18.7K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/storage/StorageClient.java
* @param includeContent whether to include the actual content in the response * @return the response data for the request * @throws CrawlingAccessException if an error occurs while processing the request */ protected ResponseData processRequest(final String uri, final boolean includeContent) { if (!isInit) { init(); } // startRegistered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 17.9K bytes - Viewed (2) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/HcHttpClient.java
public static final String TIME_TO_LIVE_PROPERTY = "timeToLive"; /** Logger instance for this class */ private static final Logger logger = LogManager.getLogger(HcHttpClient.class); /** Helper for processing robots.txt files */ @Resource protected RobotsTxtHelper robotsTxtHelper; /** Helper for managing content length limits */ @Resource protected ContentLengthHelper contentLengthHelper;
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 52.2K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/HtmlTransformer.java
logger.warn("Could not get urls: (" + xpath + ", " + attr + ")", e); } return urlList; } /** * Adds a child URL to the URL list after processing and validation. * * @param urlList the list to add the URL to * @param url the base URL for resolving relative URLs * @param attrValue the attribute value containing the URL
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 28.5K bytes - Viewed (0) -
fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml
</mime-type> <mime-type type="application/dita+xml;format=val"> <sub-class-of type="application/dita+xml"/> <_comment>DITA Conditional Processing Profile</_comment> <root-XML localName="val"/> <root-XML localName="val" namespaceURI="http://docs.oasis-open.org/namespace"/> <glob pattern="*.ditaval"/> </mime-type>Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Mar 13 08:18:01 UTC 2025 - 320.1K bytes - Viewed (1)