- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 55 for normalizer (0.24 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/org/codelibs/fess/suggest/normalizer/NormalizerChain.java
Created: Fri Apr 17 09:08:13 GMT 2026 - Last Modified: Mon Nov 17 14:23:01 GMT 2025 - 2.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/suggest/normalizer/HankakuKanaToZenkakuKanaTest.java
HankakuKanaToZenkakuKana normalizer = new HankakuKanaToZenkakuKana(); String result = normalizer.normalize("アイウエオ", "field"); assertEquals("アイウエオ", result); } @Test public void test_voicedSounds() throws Exception { HankakuKanaToZenkakuKana normalizer = new HankakuKanaToZenkakuKana(); String result = normalizer.normalize("ガギグゲゴ", "field");
Created: Fri Apr 17 09:08:13 GMT 2026 - Last Modified: Mon Nov 17 14:23:01 GMT 2025 - 6.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/suggest/index/operations/WordManagementOperations.java
final String normalizedWord = normalizer.normalize(elevateWord.getElevateWord(), ""); final List<String> normalizedReadings = elevateWord.getReadings().stream().map(reading -> normalizer.normalize(reading, "")).collect(Collectors.toList()); final ElevateWord normalized = new ElevateWord(normalizedWord, elevateWord.getBoost(), normalizedReadings, elevateWord.getFields(),
Created: Fri Apr 17 09:08:13 GMT 2026 - Last Modified: Sun Feb 01 12:48:24 GMT 2026 - 6.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/suggest/SuggesterBuilder.java
return this; } /** * Sets the normalizer. * @param normalizer The normalizer. * @return This builder instance. */ public SuggesterBuilder normalizer(final Normalizer normalizer) { this.normalizer = normalizer; return this; } /** * Sets the analyzer. * @param analyzer The analyzer.Created: Fri Apr 17 09:08:13 GMT 2026 - Last Modified: Mon Nov 24 03:40:05 GMT 2025 - 6.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/suggest/Suggester.java
*/ public ReadingConverter getReadingConverter() { return readingConverter; } /** * Returns the Normalizer instance. * @return The Normalizer instance. */ public Normalizer getNormalizer() { return normalizer; } /** * Creates a default SuggestIndexer instance. * @return A SuggestIndexer instance. */Created: Fri Apr 17 09:08:13 GMT 2026 - Last Modified: Sun Feb 01 12:48:24 GMT 2026 - 21.6K bytes - Click Count (3) -
src/main/java/org/codelibs/fess/suggest/normalizer/ICUNormalizer.java
* * <p>Example usage:</p> * <pre> * ICUNormalizer normalizer = new ICUNormalizer("Any-Latin; NFD; [:Nonspacing Mark:] Remove; NFC"); * String normalizedText = normalizer.normalize("text to normalize", "field"); * </pre> * * @see com.ibm.icu.text.Transliterator */ public class ICUNormalizer implements Normalizer { /** The transliterator used for normalization. */
Created: Fri Apr 17 09:08:13 GMT 2026 - Last Modified: Mon Nov 17 14:23:01 GMT 2025 - 2.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/suggest/index/contents/DefaultContentsParser.java
import org.codelibs.fess.suggest.entity.SuggestItem; import org.codelibs.fess.suggest.exception.SuggesterException; import org.codelibs.fess.suggest.index.contents.querylog.QueryLog; import org.codelibs.fess.suggest.normalizer.Normalizer; import org.codelibs.fess.suggest.util.SuggestUtil; import org.opensearch.OpenSearchStatusException; import org.opensearch.action.admin.indices.analyze.AnalyzeAction.AnalyzeToken; /**
Created: Fri Apr 17 09:08:13 GMT 2026 - Last Modified: Sat Mar 14 02:35:38 GMT 2026 - 15.2K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/suggest/normalizer/AnalyzerNormalizerTest.java
AnalyzerNormalizer normalizer = new AnalyzerNormalizer(runner.client(), suggester.settings()); assertNotNull(normalizer); } @Test public void test_normalizeWithDefaultLanguage() throws Exception { AnalyzerNormalizer normalizer = new AnalyzerNormalizer(runner.client(), suggester.settings()); String result = normalizer.normalize("test", "content"); assertNotNull(result);
Created: Fri Apr 17 09:08:13 GMT 2026 - Last Modified: Mon Nov 24 03:40:05 GMT 2025 - 4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/suggest/index/operations/ContentIndexingOperations.java
import org.codelibs.fess.suggest.index.contents.querylog.QueryLog; import org.codelibs.fess.suggest.index.contents.querylog.QueryLogReader; import org.codelibs.fess.suggest.normalizer.Normalizer; import org.codelibs.fess.suggest.settings.SuggestSettings; import org.opensearch.OpenSearchStatusException; import org.opensearch.transport.client.Client; /**
Created: Fri Apr 17 09:08:13 GMT 2026 - Last Modified: Sat Mar 14 02:35:38 GMT 2026 - 21.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/suggest/normalizer/HankakuKanaToZenkakuKana.java
* <pre> * {@code * HankakuKanaToZenkakuKana normalizer = new HankakuKanaToZenkakuKana(); * String normalized = normalizer.normalize("ガギグゲゴ", "field"); * System.out.println(normalized); // Outputs: ガギグゲゴ * } * </pre> * * <p>Note: This class assumes that the input string contains valid Hankaku Kana characters * and does not perform any validation on the input.</p> * * @see Normalizer */
Created: Fri Apr 17 09:08:13 GMT 2026 - Last Modified: Mon Nov 17 14:23:01 GMT 2025 - 6.8K bytes - Click Count (1)