Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 122 for dictionary (0.09 sec)

  1. src/main/java/org/codelibs/fess/dict/synonym/SynonymItem.java

    import org.apache.commons.lang3.StringUtils;
    import org.codelibs.core.collection.ArrayUtil;
    import org.codelibs.core.lang.StringUtil;
    import org.codelibs.fess.dict.DictionaryItem;
    
    /**
     * Represents an item in a synonym dictionary.
     * This class stores a set of input words and their corresponding output synonyms.
     * It also tracks updated values for the item.
     */
    public class SynonymItem extends DictionaryItem {
        /** The original input words. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/pager/StopwordsPager.java

        /** The number of records per page. */
        private int pageSize;
    
        /** The current page number. */
        private int currentPageNumber;
    
        /** The ID of the stopwords dictionary. */
        public String id;
    
        /**
         * Clears the pager's state to its default values.
         */
        public void clear() {
            allRecordCount = 0;
            allPageCount = 0;
            existPrePage = false;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  3. src/main/resources/fess_config.properties

    online.help.name.reqheader=reqheader
    # Online help key for synonym dictionary.
    online.help.name.dict.synonym=synonym
    # Online help key for dictionary.
    online.help.name.dict=dict
    # Online help key for Kuromoji dictionary.
    online.help.name.dict.kuromoji=kuromoji
    # Online help key for protected words dictionary.
    online.help.name.dict.protwords=protwords
    # Online help key for stopwords dictionary.
    online.help.name.dict.stopwords=stopwords
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 14:45:37 UTC 2025
    - 54.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/dict/kuromoji/KuromojiItem.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.dict.kuromoji;
    
    import java.util.Objects;
    
    import org.codelibs.fess.dict.DictionaryItem;
    
    /**
     * An item in a Kuromoji dictionary.
     */
    public class KuromojiItem extends DictionaryItem {
        private final String token;
    
        private final String segmentation;
    
        private final String reading;
    
        private final String pos;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.3K bytes
    - Viewed (0)
  5. src/main/assemblies/files/fess.in.bat

    REM External opensearch cluster
    REM set FESS_JAVA_OPTS=%FESS_JAVA_OPTS% -Dfess.search_engine.http_address=http://localhost:9200
    REM set FESS_JAVA_OPTS=%FESS_JAVA_OPTS% -Dfess.dictionary.path=%SEARCH_ENGINE_HOME%/config/
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Jan 15 06:32:15 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/pager/SynonymPager.java

        /** The number of records per page. */
        private int pageSize;
    
        /** The current page number. */
        private int currentPageNumber;
    
        /** The ID of the synonym dictionary. */
        public String id;
    
        /**
         * Clears the pager's state to its default values.
         */
        public void clear() {
            allRecordCount = 0;
            allPageCount = 0;
            existPrePage = false;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/mylasta/action/FessHtmlPathTest.java

            assertEquals("/error/system.jsp", FessHtmlPath.path_Error_SystemJsp.getRoutingPath());
        }
    
        public void test_dictPaths() throws Exception {
            // Test dictionary paths structure
            assertEquals("/admin/dict/admin_dict.jsp", FessHtmlPath.path_AdminDict_AdminDictJsp.getRoutingPath());
            assertEquals("/admin/dict/kuromoji/admin_dict_kuromoji.jsp",
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.9K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/Comparators.java

    @GwtCompatible
    public final class Comparators {
      private Comparators() {}
    
      /**
       * Returns a new comparator which sorts iterables by comparing corresponding elements pairwise
       * until a nonzero result is found; imposes "dictionary order." If the end of one iterable is
       * reached, but not the other, the shorter iterable is considered to be less than the longer one.
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 10.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/util/ComponentUtil.java

         * @return The message manager.
         */
        public static MessageManager getMessageManager() {
            return getComponent(MESSAGE_MANAGER);
        }
    
        /**
         * Gets the dictionary manager component.
         * @return The dictionary manager.
         */
        public static DictionaryManager getDictionaryManager() {
            return getComponent(DICTIONARY_MANAGER);
        }
    
        /**
         * Gets the data service component.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 28.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /**
         * Get the value for the key 'index.dictionary.prefix'. <br>
         * The value is, e.g.  <br>
         * comment: Prefix for dictionary index names.
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getIndexDictionaryPrefix();
    
        /**
         * Get the value for the key 'index.dictionary.prefix' as {@link Integer}. <br>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 525.6K bytes
    - Viewed (1)
Back to top