- Sort Score
- Num 10 results
- Language All
Results 21 - 30 of 46 for analyzeJar (0.07 seconds)
-
src/main/java/org/codelibs/fess/suggest/normalizer/AnalyzerNormalizer.java
*/ public class AnalyzerNormalizer implements Normalizer { /** * The OpenSearch client used for analyzing text. */ private final Client client; /** * The settings for the analyzer. */ private final AnalyzerSettings analyzerSettings; /** * The settings for suggestions. */ private final SuggestSettings settings; /**Created: Sat Dec 20 13:04:59 GMT 2025 - Last Modified: Mon Nov 17 14:23:01 GMT 2025 - 4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/suggest/Suggester.java
this.normalizer = Objects.requireNonNull(normalizer, "normalizer must not be null"); this.analyzer = Objects.requireNonNull(analyzer, "analyzer must not be null"); index = settings.getAsString(SuggestSettings.DefaultKeys.INDEX, StringUtil.EMPTY); this.threadPool = Objects.requireNonNull(threadPool, "threadPool must not be null");
Created: Sat Dec 20 13:04:59 GMT 2025 - Last Modified: Mon Nov 24 03:40:05 GMT 2025 - 21.6K bytes - Click Count (3) -
src/main/resources/fess_indices/fess_config.data_config/data_config.json
"type": "long" }, "updatedBy": { "type": "keyword" }, "updatedTime": { "type": "long" }, "description" : { "type": "text", "analyzer": "standard_analyzer" } }
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Dec 02 13:14:56 GMT 2021 - 859 bytes - Click Count (0) -
src/main/resources/fess_indices/fess_config.file_config/file_config.json
"type": "long" }, "updatedBy": { "type": "keyword" }, "updatedTime": { "type": "long" }, "description" : { "type": "text", "analyzer": "standard_analyzer" } }
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Dec 02 13:14:56 GMT 2021 - 1.3K bytes - Click Count (0) -
src/main/resources/fess_indices/fess_config.web_config/web_config.json
"type": "long" }, "updatedBy": { "type": "keyword" }, "updatedTime": { "type": "long" }, "description" : { "type": "text", "analyzer": "standard_analyzer" } }
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Dec 02 13:14:56 GMT 2021 - 1.3K bytes - Click Count (0) -
src/main/resources/fess_indices/fess_config.data_config.json
{ "settings": { "index": { "refresh_interval": "1s", "number_of_shards": 1, "number_of_replicas": 0, "auto_expand_replicas": "0-1" }, "analysis": { "analyzer": { "standard_analyzer": { "type": "custom", "tokenizer": "standard", "filter": [ "cjk_width", "asciifolding", "lowercase", "stop",Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Dec 02 13:14:56 GMT 2021 - 484 bytes - Click Count (0) -
src/main/resources/fess_indices/fess_config.file_config.json
{ "settings": { "index": { "refresh_interval": "1s", "number_of_shards": 1, "number_of_replicas": 0, "auto_expand_replicas": "0-1" }, "analysis": { "analyzer": { "standard_analyzer": { "type": "custom", "tokenizer": "standard", "filter": [ "cjk_width", "asciifolding", "lowercase", "stop",Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Dec 02 13:14:56 GMT 2021 - 484 bytes - Click Count (0) -
src/main/resources/fess_indices/fess_config.web_config.json
{ "settings": { "index": { "refresh_interval": "1s", "number_of_shards": 1, "number_of_replicas": 0, "auto_expand_replicas": "0-1" }, "analysis": { "analyzer": { "standard_analyzer": { "type": "custom", "tokenizer": "standard", "filter": [ "cjk_width", "asciifolding", "lowercase", "stop",Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Dec 02 13:14:56 GMT 2021 - 484 bytes - Click Count (0) -
README.md
## Key Features - **Smart Query Suggestions**: Real-time auto-completion and search suggestions - **Multi-language Support**: Built-in support for Japanese text processing with Kuromoji analyzer - **Popular Words Analytics**: Track and analyze frequently searched terms - **Flexible Text Processing**: Configurable converters and normalizers for text transformation
Created: Sat Dec 20 13:04:59 GMT 2025 - Last Modified: Sun Aug 31 03:31:14 GMT 2025 - 12.1K bytes - Click Count (1) -
src/main/java/org/codelibs/fess/app/web/admin/dict/kuromoji/UploadForm.java
import org.lastaflute.web.ruts.multipart.MultipartFormFile; import org.lastaflute.web.validation.Required; /** * Form for uploading Kuromoji dictionary files to the Fess search engine. * Kuromoji is a Japanese morphological analyzer used for tokenizing Japanese text. * This form is used in the admin interface to upload custom user dictionaries for Kuromoji. */ public class UploadForm { /**Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 1.7K bytes - Click Count (0)