- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 61 for analyze (0.11 sec)
-
src/main/java/org/codelibs/core/lang/GenericsUtil.java
* and adds them to the given map. * * @param clazz * the class to analyze * @param type * the type to analyze * @param map * the map to which the type variables and type arguments are added */
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 23.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/index/contents/DefaultContentsParser.java
} else { logger.warn("[{}][{}] Failed to analyze a last text(size:{}). {}", field, lang, buf.length(), e.getMessage()); } } } return tokens; } /** * Analyze text by reading. * @param analyzer Analyzer * @param field Field
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/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/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/converter/AnalyzerConverter.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.core.common.Strings; import org.opensearch.transport.client.Client; import com.ibm.icu.text.Transliterator; /**
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Thu Aug 07 02:41:28 UTC 2025 - 6.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/settings/AnalyzerSettings.java
protected final String contentsAnalyzer; /** Contents reading analyzer name. */ protected final String contentsReadingAnalyzer; /** * Constructor. * @param readingAnalyzer Reading analyzer name * @param readingTermAnalyzer Reading term analyzer name * @param normalizeAnalyzer Normalize analyzer name * @param contentsAnalyzer Contents analyzer name
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Thu Aug 07 02:41:28 UTC 2025 - 26.5K 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) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/MimeTypeHelper.java
* @param is the input stream to analyze * @param filename the filename to help determine the content type * @return the detected content type */ String getContentType(InputStream is, String filename); /** * Determines the content type of the given input stream using the provided parameters. * @param is the input stream to analyze
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 1.6K 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) -
ci/official/pycpp.sh
fi # Note: the profile can be viewed by visiting chrome://tracing in a Chrome browser. # See https://docs.bazel.build/versions/main/skylark/performance.html#performance-profiling
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Thu Jan 09 18:37:25 UTC 2025 - 1.9K bytes - Viewed (0)