Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for dictionary (0.06 sec)

  1. src/main/java/org/codelibs/fess/dict/DictionaryFile.java

    /**
     * Abstract base class for dictionary files that manage dictionary items.
     * A dictionary file represents a collection of dictionary items with
     * CRUD operations and pagination support.
     *
     * @param <T> the type of dictionary items managed by this file
     */
    public abstract class DictionaryFile<T extends DictionaryItem> {
        /** The dictionary manager responsible for this file. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/dict/stopwords/StopwordsFile.java

        /** The list of stopword items loaded from the dictionary file. */
        List<StopwordsItem> stopwordsItemList;
    
        /**
         * Constructs a new stopwords file.
         *
         * @param id        The unique identifier for this dictionary file.
         * @param path      The path to the dictionary file.
         * @param timestamp The last modified timestamp of the file.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  3. src/main/resources/fess_indices/fess.json

              "type": "mapping",
              "mappings_path": "${fess.dictionary.path}fa/mapping.txt"
            },
            "mapping_ja_filter": {
              "type": "mapping",
              "mappings_path": "${fess.dictionary.path}ja/mapping.txt"
            },
            "mapping_filter": {
              "type": "mapping",
              "mappings_path": "${fess.dictionary.path}mapping.txt"
            },
            "traditional_chinese_convert": {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Fri Jun 06 14:17:42 UTC 2025
    - 39.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideFile.java

        /**
         * Returns the simple name of the dictionary file.
         *
         * @return The file name without the path.
         */
        public String getSimpleName() {
            return new File(path).getName();
        }
    
        /**
         * Updates the dictionary file with content from an input stream.
         *
         * @param in The input stream containing the new dictionary content.
         * @throws IOException if an I/O error occurs.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 13.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/dict/protwords/ProtwordsFile.java

    import org.codelibs.fess.dict.DictionaryFile;
    import org.codelibs.fess.util.ComponentUtil;
    import org.dbflute.optional.OptionalEntity;
    
    /**
     * Dictionary file for protected words.
     * This class manages the reading, writing, and updating of protected words dictionary files.
     */
    public class ProtwordsFile extends DictionaryFile<ProtwordsItem> {
        private static final String PROTWORDS = "protwords";
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/api/admin/dict/stemmeroverride/ApiAdminDictStemmeroverrideAction.java

        private StemmerOverrideService stemmerOverrideService;
    
        /**
         * Retrieves stemmer override dictionary settings with pagination support.
         *
         * @param dictId the dictionary ID
         * @param body the search body containing pagination and filter parameters
         * @return JSON response containing list of stemmer override dictionary items
         */
        // GET /api/admin/dict/stemmerOverride/settings/{dictId}
        @Execute
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/dict/stopwords/AdminDictStopwordsAction.java

        //                                                                           =========
    
        /**
         * Redirect to the dictionary index page.
         *
         * @return HTML response redirecting to the dictionary index
         */
        protected HtmlResponse asDictIndexHtml() {
            return redirect(AdminDictAction.class);
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 20.3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/dict/mapping/CharMappingFile.java

         * @param path the file path to the character mapping dictionary
         * @param timestamp the last modification timestamp of the file
         */
        public CharMappingFile(final String id, final String path, final Date timestamp) {
            super(id, path, timestamp);
        }
    
        /**
         * Returns the type identifier for this dictionary file.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 14.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/dict/synonym/SynonymFile.java

        private static final String SYNONYM = "synonym";
    
        /** The list of synonym items loaded from the dictionary file. */
        List<SynonymItem> synonymItemList;
    
        /**
         * Constructs a new synonym file.
         *
         * @param id        The unique identifier for this dictionary file.
         * @param path      The path to the dictionary file.
         * @param timestamp The last modified timestamp of the file.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 15.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/dict/stemmeroverride/AdminDictStemmeroverrideAction.java

                });
            });
        }
    
        /**
         * Download the stemmer override dictionary file.
         * Streams the dictionary file as an octet-stream download.
         *
         * @param form The download form containing dictionary ID
         * @return Action response with file stream for download
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 23.5K bytes
    - Viewed (0)
Back to top