- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 25 for dictionaryManager (1.34 sec)
-
src/main/java/org/codelibs/fess/app/service/ProtwordsService.java
* Default constructor. */ public ProtwordsService() { // Default constructor } /** Dictionary manager for handling dictionary files */ @Resource protected DictionaryManager dictionaryManager; /** Configuration for Fess */ @Resource protected FessConfig fessConfig; /** * Gets a paginated list of protected words items. * @param dictId the dictionary IDRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 4.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/kuromoji/KuromojiCreator.java
*/ @PostConstruct public void register() { if (logger.isInfoEnabled()) { logger.info("Loaded {}", this.getClass().getSimpleName()); } dictionaryManager.addCreator(this); } /** * Creates a new dictionary file. * * @param id The ID of the dictionary file. * @param path The path of the dictionary file.Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideCreator.java
*/ @PostConstruct public void register() { if (logger.isInfoEnabled()) { logger.info("Loaded {}", this.getClass().getSimpleName()); } dictionaryManager.addCreator(this); } /** * Creates a new {@link StemmerOverrideFile} instance. * * @param id The unique identifier for the dictionary file.Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 2.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/protwords/ProtwordsCreator.java
logger.info("Loaded {}", this.getClass().getSimpleName()); } dictionaryManager.addCreator(this); } @Override protected DictionaryFile<? extends DictionaryItem> newDictionaryFile(final String id, final String path, final Date timestamp) { return new ProtwordsFile(id, path, timestamp).manager(dictionaryManager); }
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/StemmerOverrideService.java
*/ 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: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 5.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/synonym/SynonymCreator.java
*/ @PostConstruct public void register() { if (logger.isInfoEnabled()) { logger.info("Loaded {}", this.getClass().getSimpleName()); } dictionaryManager.addCreator(this); } /** * Creates a new {@link SynonymFile} instance. * * @param id The unique identifier for the dictionary file.Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 2.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/CharMappingService.java
*/ public CharMappingService() { // Default constructor } /** * Dictionary manager for accessing and managing dictionary files. */ @Resource protected DictionaryManager dictionaryManager; /** * Fess configuration settings. */ @Resource protected FessConfig fessConfig; /**Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 6.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/stopwords/StopwordsCreator.java
*/ @PostConstruct public void register() { if (logger.isInfoEnabled()) { logger.info("Loaded {}", this.getClass().getSimpleName()); } dictionaryManager.addCreator(this); } /** * Creates a new {@link StopwordsFile} instance. * * @param id The unique identifier for the dictionary file.Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 2.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/protwords/ProtwordsFile.java
* @param updater the updater to use for processing items */ protected void reload(final ProtwordsUpdater updater) { try (CurlResponse curlResponse = dictionaryManager.getContentResponse(this)) { reload(updater, curlResponse.getContentAsStream()); } catch (final IOException e) { throw new DictionaryException("Failed to parse " + path, e); }Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 20 07:09:00 UTC 2025 - 11.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/mapping/CharMappingFile.java
* * @param updater the mapping updater to use for writing changes, or null for read-only reload */ protected void reload(final MappingUpdater updater) { try (CurlResponse curlResponse = dictionaryManager.getContentResponse(this)) { reload(updater, curlResponse.getContentAsStream()); } catch (final IOException e) { throw new DictionaryException("Failed to parse " + path, e); }Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 20 05:56:45 UTC 2025 - 15.3K bytes - Viewed (0)