Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for langFieldName (0.08 sec)

  1. src/main/java/org/codelibs/fess/suggest/index/contents/DefaultContentsParser.java

                if (textObj == null) {
                    continue;
                }
                final String text = textObj.toString();
                final String lang = document.get(langFieldName) == null ? null : document.get(langFieldName).toString();
    
                final List<AnalyzeToken> tokens = analyzeText(analyzer, field, text, lang);
                if (tokens == null) {
                    continue;
                }
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Fri Jul 04 14:00:23 UTC 2025
    - 15.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/suggest/index/contents/ContentsParser.java

         * @param fields The fields to extract from the document.
         * @param tagFieldNames The names of the fields that contain tags.
         * @param roleFieldName The name of the field that contains role information.
         * @param langFieldName The name of the field that contains language information.
         * @param readingConverter The converter to use for reading fields.
         * @param contentsReadingConverter The converter to use for reading content fields.
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Sat Mar 15 06:51:20 UTC 2025
    - 4.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/suggest/index/SuggestIndexer.java

     * <li>{@link #supportedFields} - Supported fields for suggestions.
     * <li>{@link #tagFieldNames} - Tag field names.
     * <li>{@link #roleFieldName} - Role field name.
     * <li>{@link #langFieldName} - Language field name.
     * <li>{@link #badWords} - List of bad words.
     * <li>{@link #parallel} - Flag for parallel processing.
     * <li>{@link #readingConverter} - Reading converter.
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Thu Aug 07 02:41:28 UTC 2025
    - 34.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/suggest/settings/SuggestSettings.java

            /** Role field name key. */
            public static final String ROLE_FIELD_NAME = "roleFieldName";
            /** Language field name key. */
            public static final String LANG_FIELD_NAME = "langFieldName";
            /** Parallel processing key. */
            public static final String PARALLEL_PROCESSING = "parallel";
            /** Max content length key. */
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Thu Aug 07 02:41:28 UTC 2025
    - 18.7K bytes
    - Viewed (0)
Back to top