- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 29 for analyze (0.04 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/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/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/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) -
README.md
import org.codelibs.fess.suggest.normalizer.ICUNormalizer; // Configure custom settings SuggestSettings settings = SuggestSettings.builder() .analyzer(analyzers -> { // Configure custom analyzers analyzers.addAnalyzer("custom", customAnalyzerSettings); }) .build(); Suggester customSuggester = Suggester.builder() .settings(settings)
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Sun Aug 31 03:31:14 UTC 2025 - 12.1K bytes - Viewed (1) -
src/test/java/jcifs/smb/NtlmPasswordAuthenticatorTimingAttackTest.java
}); } executor.shutdown(); assertTrue(executor.awaitTermination(30, TimeUnit.SECONDS), "All threads should complete within timeout"); // Analyze timing consistency across threads if (!timings.isEmpty()) { double avgTime = timings.stream().mapToLong(Long::longValue).average().orElse(0.0);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 11.2K bytes - Viewed (0) -
api/maven-api-plugin/src/main/mdo/plugin.mdo
associated with a Maven project can lack a file. As such, this annotation is meant for Mojos that only want to analyze the set of transitive dependencies, in particular during early lifecycle phases where full dependency resolution might fail due to projects which haven't been built yet. </description> </field>
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Tue Feb 25 08:28:41 UTC 2025 - 24.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/index/SuggestIndexer.java
this.normalizer = normalizer; return this; } /** * Sets the analyzer. * @param analyzer The analyzer. * @return This SuggestIndexer instance. */ public SuggestIndexer setAnalyzer(final SuggestAnalyzer analyzer) { this.analyzer = analyzer; return this; } /** * Sets the contents parser.
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/main/java/org/codelibs/fess/helper/CrawlingConfigHelper.java
} /** * Determines the configuration type from a given config ID. * The config type is identified by the first character of the config ID. * * @param configId the configuration ID to analyze * @return the ConfigType (WEB, FILE, or DATA) or null if the config ID is invalid or doesn't match any known type */ public ConfigType getConfigType(final String configId) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 19.5K bytes - Viewed (0)