- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for keywords_path (0.11 sec)
-
src/main/resources/fess_indices/fess.json
"type": "keyword_marker", "keywords_path": "${fess.dictionary.path}en/protwords.txt" }, "finnish_stop": { "type": "stop", "stopwords_path": "${fess.dictionary.path}fi/stopwords.txt" }, "finnish_keywords": { "type": "keyword_marker", "keywords_path": "${fess.dictionary.path}fi/protwords.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/main/resources/suggest_indices/suggest_analyzer.json
"keywords_path": "${fess.dictionary.path}da/protwords.txt" }, "danish_stemmer": { "type": "stemmer", "language": "danish" }, "dutch_stop": { "type": "stop", "stopwords": "_dutch_" }, "dutch_keywords": { "type": "keyword_marker",
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu May 23 05:09:51 UTC 2019 - 57.7K bytes - Viewed (0) -
src/test/java/org/codelibs/opensearch/extension/analysis/ReloadableKeywordMarkerFilterFactory.java
} else { keywordPath = null; } reloadInterval = settings.getAsTime("reload_interval", TimeValue.timeValueMinutes(1)).getMillis(); } @Override public TokenStream create(final TokenStream tokenStream) { if (keywordPath == null) { return tokenStream; } return new ReloadableKeywordMarkerFilter(tokenStream, keywordPath, reloadInterval); }
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:54 UTC 2024 - 2K bytes - Viewed (0)