Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 79 for analyzers (0.14 sec)

  1. 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)
  2. src/main/resources/fess_indices/_cloud/fess/doc.json

              }
            }
          },
          {
            "lang_cs": {
              "match": "*_cs",
              "mapping": {
                "type": "text",
                "analyzer": "czech_analyzer"
              }
            }
          },
          {
            "lang_da": {
              "match": "*_da",
              "mapping": {
                "type": "text",
                "analyzer": "danish_analyzer"
              }
            }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 15 11:50:35 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  3. 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)
  4. src/main/java/org/codelibs/fess/suggest/SuggesterBuilder.java

            this.normalizer = normalizer;
            return this;
        }
    
        /**
         * Sets the analyzer.
         * @param analyzer The analyzer.
         * @return This builder instance.
         */
        public SuggesterBuilder analyzer(final SuggestAnalyzer analyzer) {
            this.analyzer = analyzer;
            return this;
        }
    
        /**
         * Sets the thread pool.
         * @param threadPool The thread pool.
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Fri Jul 04 14:00:23 UTC 2025
    - 6K bytes
    - Viewed (0)
  5. src/main/resources/fess_indices/fess/doc.json

              }
            }
          },
          {
            "lang_cs": {
              "match": "*_cs",
              "mapping": {
                "type": "text",
                "analyzer": "czech_analyzer"
              }
            }
          },
          {
            "lang_da": {
              "match": "*_da",
              "mapping": {
                "type": "text",
                "analyzer": "danish_analyzer"
              }
            }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 15 11:50:35 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  6. src/main/resources/fess_indices/_aws/fess/doc.json

              }
            }
          },
          {
            "lang_cs": {
              "match": "*_cs",
              "mapping": {
                "type": "text",
                "analyzer": "czech_analyzer"
              }
            }
          },
          {
            "lang_da": {
              "match": "*_da",
              "mapping": {
                "type": "text",
                "analyzer": "danish_analyzer"
              }
            }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 15 11:50:35 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/opensearch/extension/analysis/SynonymLoader.java

        private volatile SynonymMap synonymMap;
    
        public SynonymLoader(final Environment env, final Settings settings, final boolean expand, final Analyzer analyzer) {
            this.env = env;
            this.settings = settings;
            this.expand = expand;
            this.analyzer = analyzer;
    
            createSynonymMap(false);
        }
    
        public boolean isUpdate(final long time) {
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Sun May 18 02:59:16 UTC 2025
    - 6.7K bytes
    - Viewed (1)
  8. src/main/java/org/codelibs/fess/suggest/constants/FieldNames.java

     * <li>{@link #ANALYZER_SETTINGS_TYPE} - The analyzer settings type field.</li>
     * <li>{@link #ANALYZER_SETTINGS_FIELD_NAME} - The analyzer settings field name.</li>
     * <li>{@link #ANALYZER_SETTINGS_READING_ANALYZER} - The reading analyzer settings field.</li>
     * <li>{@link #ANALYZER_SETTINGS_READING_TERM_ANALYZER} - The reading term analyzer settings field.</li>
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Fri Jul 04 14:00:23 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/suggest/index/contents/ContentsParser.java

         * @param readingConverter the converter to use for converting readings
         * @param normalizer the normalizer to use for normalizing the search words
         * @param analyzer the analyzer to use for analyzing the search words
         * @param langs the array of languages associated with the search words
         * @return a SuggestItem created from the given search words and associated data
         */
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Sat Mar 15 06:51:20 UTC 2025
    - 4.1K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/suggest/Suggester.java

        /** The contents reading converter. */
        protected final ReadingConverter contentsReadingConverter;
        /** The normalizer. */
        protected final Normalizer normalizer;
        /** The analyzer. */
        protected final SuggestAnalyzer analyzer;
    
        /** The index name. */
        protected final String index;
    
        /** The thread pool. */
        protected final ExecutorService threadPool;
    
        /**
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Thu Aug 07 02:41:28 UTC 2025
    - 20.7K bytes
    - Viewed (1)
Back to top