- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for synonymCreator (0.08 sec)
-
src/main/java/org/codelibs/fess/dict/synonym/SynonymCreator.java
*/ public class SynonymCreator extends DictionaryCreator { private static final Logger logger = LogManager.getLogger(SynonymCreator.class); /** * Constructs a new creator for synonym dictionaries. * It sets the file pattern to match files starting with "synonym" * and ending with ".txt". */ public SynonymCreator() { super("synonym.*\\.txt"); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.5K bytes - Viewed (0) -
src/main/resources/fess_dict.xml
</component> <component name="kuromojiDictCreator" class="org.codelibs.fess.dict.kuromoji.KuromojiCreator"> </component> <component name="synonymCreator" class="org.codelibs.fess.dict.synonym.SynonymCreator"> </component> <component name="stemmerOverrideCreator" class="org.codelibs.fess.dict.stemmeroverride.StemmerOverrideCreator"> </component> <component name="protwordsCreator"
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 28 02:34:33 UTC 2018 - 990 bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/DictionaryManagerTest.java
} /* public void test_storeSynonymFiles() throws Exception { final DictionaryManager dictionaryManager = new DictionaryManager(); final SynonymCreator synonymCreator = new SynonymCreator(); final SynonymFile synonymFile = (SynonymFile) synonymCreator.create(file1.getPath(), new Date()); dictionaryManager.store(synonymFile, file1);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 2.4K bytes - Viewed (0)