Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 8 of 8 for normalizeAnalyzer (0.31 seconds)

  1. src/test/java/org/codelibs/fess/suggest/settings/AnalyzerSettingsTest.java

            assertTrue(readingAnalyzer.contains("_en") || readingAnalyzer.equals(AnalyzerSettings.READING_ANALYZER));
    
            String normalizeAnalyzer = settings.analyzer().getNormalizeAnalyzerName("", "ja");
            assertTrue(normalizeAnalyzer.contains("_ja") || normalizeAnalyzer.equals(AnalyzerSettings.NORMALIZE_ANALYZER));
        }
    
        @Test
        public void test_getAnalyzerName_withUnsupportedLanguage() {
    Created: Fri Apr 17 09:08:13 GMT 2026
    - Last Modified: Sun Feb 01 12:48:24 GMT 2026
    - 8K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/suggest/settings/AnalyzerSettings.java

                }
    
                final String normalizeAnalyzer = getNormalizeAnalyzerName("", lang);
                try {
                    client.admin()
                            .indices()
                            .prepareAnalyze(analyzerSettingsIndexName, text)
                            .setAnalyzer(normalizeAnalyzer)
                            .execute()
    Created: Fri Apr 17 09:08:13 GMT 2026
    - Last Modified: Sun Feb 01 12:48:24 GMT 2026
    - 24.4K bytes
    - Click Count (0)
  3. src/main/resources/suggest_indices/analyzer/mapping-default.json

        },
        "fieldName": {
          "type": "keyword"
        },
        "readingAnalyzer": {
          "type": "keyword"
        },
        "readingTermAnalyzer": {
          "type": "keyword"
        },
        "normalizeAnalyzer": {
          "type": "keyword"
        },
        "contentsAnalyzer": {
          "type": "keyword"
        },
        "contentsReadingAnalyzer": {
          "type": "keyword"
        }
      }
    Created: Fri Apr 17 09:08:13 GMT 2026
    - Last Modified: Fri Aug 03 15:54:27 GMT 2018
    - 613 bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/suggest/constants/FieldNames.java

        public static final String ANALYZER_SETTINGS_READING_TERM_ANALYZER = "readingTermAnalyzer";
        /** The normalize analyzer settings field. */
        public static final String ANALYZER_SETTINGS_NORMALIZE_ANALYZER = "normalizeAnalyzer";
        /** The contents analyzer settings field. */
        public static final String ANALYZER_SETTINGS_CONTENTS_ANALYZER = "contentsAnalyzer";
        /** The contents reading analyzer settings field. */
    Created: Fri Apr 17 09:08:13 GMT 2026
    - Last Modified: Fri Jul 04 14:00:23 GMT 2025
    - 4.7K bytes
    - Click Count (0)
  5. src/main/resources/suggest_indices/_cloud/suggest_analyzer.json

            "tokenizer" : "fess_japanese_normal",
            "filter" : ["reading_form"]
          },
          "reading_term_analyzer" : {
            "type" : "custom",
            "tokenizer" : "fess_japanese_normal"
          },
          "normalize_analyzer" : {
            "type" : "custom",
            "tokenizer" : "keyword",
            "char_filter" : ["mapping_char"],
            "filter" : ["lowercase"]
          },
          "contents_analyzer" : {
            "type" : "custom",
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Feb 27 09:26:16 GMT 2021
    - 57.4K bytes
    - Click Count (1)
  6. src/main/resources/suggest_indices/_aws/suggest_analyzer.json

            "tokenizer" : "fess_japanese_normal",
            "filter" : ["reading_form"]
          },
          "reading_term_analyzer" : {
            "type" : "custom",
            "tokenizer" : "fess_japanese_normal"
          },
          "normalize_analyzer" : {
            "type" : "custom",
            "tokenizer" : "keyword",
            "char_filter" : ["mapping_char"],
            "filter" : ["lowercase"]
          },
          "contents_analyzer" : {
            "type" : "custom",
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Mar 24 12:55:37 GMT 2021
    - 57.4K bytes
    - Click Count (0)
  7. src/main/resources/suggest_indices/suggest_analyzer.json

            "tokenizer" : "fess_japanese_normal",
            "filter" : ["reading_form"]
          },
          "reading_term_analyzer" : {
            "type" : "custom",
            "tokenizer" : "fess_japanese_normal"
          },
          "normalize_analyzer" : {
            "type" : "custom",
            "tokenizer" : "keyword",
            "char_filter" : ["mapping_char"],
            "filter" : ["lowercase"]
          },
          "contents_analyzer" : {
            "type" : "custom",
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu May 23 05:09:51 GMT 2019
    - 57.7K bytes
    - Click Count (0)
  8. src/main/resources/suggest_indices/suggest_analyzer.json

            "filter" : ["reading_form"]
          },
          "reading_term_analyzer" : {
            "type" : "custom",
            "tokenizer" : "kuromoji_neologd_normal"
          },
          "normalize_analyzer" : {
            "type" : "custom",
            "tokenizer" : "keyword",
            "char_filter" : ["mapping_char"],
            "filter" : ["lowercase"]
          },
          "contents_analyzer" : {
            "type" : "custom",
    Created: Fri Apr 17 09:08:13 GMT 2026
    - Last Modified: Thu Oct 03 02:51:59 GMT 2019
    - 57.3K bytes
    - Click Count (3)
Back to Top