Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 122 for dictionary (0.04 sec)

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

        }
    
        /**
         * Adds a new dictionary creator to this manager.
         * Dictionary creators are responsible for creating specific types
         * of dictionary files based on file paths and timestamps.
         *
         * @param creator the dictionary creator to add
         */
        public void addCreator(final DictionaryCreator creator) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 7.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/dict/kuromoji/CreateForm.java

    import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
    
    import jakarta.validation.constraints.Size;
    
    /**
     * Form class for creating Kuromoji dictionary entries.
     * Kuromoji is a Japanese morphological analyzer and this form allows
     * administrators to add custom dictionary entries for better Japanese text analysis.
     *
     */
    public class CreateForm {
    
        /**
         * Creates a new CreateForm instance.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2K bytes
    - Viewed (0)
  3. 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)
  4. src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideCreator.java

         * Creates a new {@link StemmerOverrideFile} instance.
         *
         * @param id        The unique identifier for the dictionary file.
         * @param path      The file path of the dictionary.
         * @param timestamp The last modified timestamp of the file.
         * @return A new {@link StemmerOverrideFile} associated with the dictionary manager.
         */
        @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/service/CharMappingService.java

                }
            });
        }
    
        /**
         * Deletes a character mapping item from the specified dictionary.
         * <p>
         * This method removes the specified character mapping item from the dictionary
         * if the dictionary file exists and is accessible.
         * </p>
         *
         * @param dictId the dictionary ID to delete the character mapping item from
         * @param charMappingItem the character mapping item to delete
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/api/admin/dict/synonym/ApiAdminDictSynonymAction.java

        @Resource
        private SynonymService synonymService;
    
        /**
         * Retrieves synonym 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 synonym dictionary items
         */
        // GET /api/admin/dict/synonym/settings/{dictId}
        @Execute
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/dict/DictionaryExceptionTest.java

    public class DictionaryExceptionTest extends UnitFessTestCase {
    
        public void test_constructor_withMessage() {
            // Test constructor with message only
            String message = "Dictionary error occurred";
            DictionaryException exception = new DictionaryException(message);
    
            assertNotNull(exception);
            assertEquals(message, exception.getMessage());
            assertNull(exception.getCause());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 6.4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/dict/mapping/CreateForm.java

    import org.lastaflute.web.validation.Required;
    import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
    
    import jakarta.validation.constraints.Size;
    
    /**
     * Form class for creating mapping dictionary entries.
     * Mapping dictionaries allow administrators to define synonym mappings
     * where multiple input terms can be mapped to a single output term for search normalization.
     *
     */
    public class CreateForm {
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/dict/DictionaryCreator.java

            return pattern.matcher(path).find();
        }
    
        /**
         * Creates a new dictionary file instance for the given parameters.
         *
         * @param id the encoded identifier for the dictionary file
         * @param path the file path of the dictionary
         * @param timestamp the timestamp of the dictionary file
         * @return a new DictionaryFile instance
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.4K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/service/StemmerOverrideService.java

     * specific terms, improving search accuracy for domain-specific vocabularies.
     */
    public class StemmerOverrideService {
    
        /** Dictionary manager for accessing dictionary files. */
        @Resource
        protected DictionaryManager dictionaryManager;
    
        /** Fess configuration for accessing system settings. */
        @Resource
        protected FessConfig fessConfig;
    
        /**
         * Default constructor.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 5.7K bytes
    - Viewed (0)
Back to top