- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 79 for analyzers (0.04 sec)
-
docs/zh-CN/README.md
对于搜索/索引分析器,如果 [doc.json](https://github.com/codelibs/fess/blob/master/src/main/resources/fess_indices/fess/doc.json) 包含您语言的 lang\_[lang],请为您的语言修改分析器。有关分析器的更多详细信息,请参阅 [OpenSearch 文档](https://opensearch.org/docs/latest/analyzers/search-analyzers/)。 我们欢迎您的语言的 Pull Request。 ## 技术支持 * [Lasta Di](https://github.com/lastaflute/lasta-di "Lasta Di"): DI 容器 * [LastaFlute](https://github.com/lastaflute/lastaflute "LastaFlute"): Web 框架
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Oct 12 07:19:47 UTC 2024 - 6.8K bytes - Viewed (0) -
docs/ko/README.md
귀하의 언어로 된 풀 리퀘스트를 환영합니다. ## 제공된 기술 * [Lasta Di](https://github.com/lastaflute/lasta-di "Lasta Di"): DI 컨테이너 * [LastaFlute](https://github.com/lastaflute/lastaflute "LastaFlute"): 웹 프레임워크
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Oct 12 07:19:47 UTC 2024 - 7.8K bytes - Viewed (1) -
pom.xml
<groupId>junit</groupId> <artifactId>junit</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.codelibs</groupId> <artifactId>analyzers</artifactId> <version>${lucene.version}.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.lucene</groupId> <artifactId>lucene-analysis-kuromoji</artifactId>
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Sat Sep 06 03:14:57 UTC 2025 - 4.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/analysis/SuggestAnalyzerTest.java
// Test that multiple analyzer instances work independently SuggestAnalyzer analyzer1 = new TestSuggestAnalyzer(); SuggestAnalyzer analyzer2 = new TestSuggestAnalyzer(); String text = "test text"; String field = "content"; String lang = "en"; List<AnalyzeToken> tokens1 = analyzer1.analyze(text, field, lang);
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Mon Sep 01 13:33:03 UTC 2025 - 15.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/analysis/SuggestAnalyzer.java
* @return a list of analyzed tokens */ List<AnalyzeToken> analyze(String text, String field, String lang); /** * Analyzes the given text and returns a list of tokens along with their readings. * * @param text the text to analyze * @param field the field associated with the text * @param lang the language of the text * @return a list of analyzed tokens with their readings */
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Sat Mar 15 06:51:20 UTC 2025 - 1.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/index/contents/DefaultContentsParser.java
* @param langs Languages * @param analyzer Analyzer * @return True if the search word is excluded */ protected boolean isExcludeSearchword(final String searchWord, final String field, final String[] langs, final SuggestAnalyzer analyzer) { if (langs == null || langs.length == 0) { final List<AnalyzeToken> tokens = analyzer.analyze(searchWord, "", null);
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Fri Jul 04 14:00:23 UTC 2025 - 15.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/settings/AnalyzerSettingsTest.java
assertTrue(analyzerNames.contains(settings.analyzer().getNormalizeAnalyzerName("", ""))); for (final String lang : settings.analyzer().SUPPORTED_LANGUAGES) { assertTrue(analyzerNames.contains(settings.analyzer().getContentsAnalyzerName("", lang))); assertTrue(analyzerNames.contains(settings.analyzer().getContentsReadingAnalyzerName("", lang)));
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Thu Aug 07 02:41:28 UTC 2025 - 5.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/normalizer/AnalyzerNormalizer.java
import java.util.List; import org.codelibs.fess.suggest.settings.AnalyzerSettings; import org.codelibs.fess.suggest.settings.SuggestSettings; import org.opensearch.action.admin.indices.analyze.AnalyzeAction; import org.opensearch.action.admin.indices.analyze.AnalyzeAction.AnalyzeToken; import org.opensearch.transport.client.Client; /** * AnalyzerNormalizer is a class that implements the Normalizer interface.
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Thu Aug 07 02:41:28 UTC 2025 - 4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/parser/QueryParser.java
this.defaultField = defaultField; } /** * Sets the analyzer used to analyze query terms. * * @param analyzer the analyzer to use */ public void setAnalyzer(final Analyzer analyzer) { this.analyzer = analyzer; } /** * Sets whether to allow leading wildcards in query terms. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 10.2K bytes - Viewed (0) -
.github/workflows/codeql-analysis.yml
# # You may wish to alter this file to override the set of languages analyzed, # or to provide custom queries or build logic. name: "CodeQL" on: push: branches: [master] pull_request: # The branches below must be a subset of the branches above branches: [master] schedule: - cron: '0 11 * * 4' jobs: analyze: name: Analyze runs-on: ubuntu-latest strategy:
Registered: Thu Sep 04 15:34:10 UTC 2025 - Last Modified: Fri Oct 02 13:24:14 UTC 2020 - 2.5K bytes - Viewed (0)