- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for stopwords_path (0.07 sec)
-
src/main/resources/fess_indices/fess.json
"japanese_stop": { "type": "stop", "stopwords_path": "${fess.dictionary.path}ja/stopwords.txt" }, "korean_stop": { "type": "stop", "stopwords_path": "${fess.dictionary.path}ko/stopwords.txt" }, "latvian_stop": { "type": "stop", "stopwords_path": "${fess.dictionary.path}lv/stopwords.txt" },
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Aug 11 01:26:55 UTC 2022 - 39.9K bytes - Viewed (0) -
src/test/java/org/codelibs/opensearch/extension/analysis/ReloadableStopFilterFactory.java
} else { stopwordPath = null; } ignoreCase = settings.getAsBoolean("ignore_case", false); reloadInterval = settings.getAsTime("reload_interval", TimeValue.timeValueMinutes(1)).getMillis(); } @Override public TokenStream create(final TokenStream tokenStream) { if (stopwordPath == null) { return tokenStream;
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:54 UTC 2024 - 2.1K bytes - Viewed (0)