- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for FR (0.01 sec)
-
src/main/resources/esclient.xml
</postConstruct> <postConstruct name="addConfigFile"> <arg>"fess"</arg> <arg>"fi/protwords.txt"</arg> </postConstruct> <postConstruct name="addConfigFile"> <arg>"fess"</arg> <arg>"fr/protwords.txt"</arg> </postConstruct> <postConstruct name="addConfigFile"> <arg>"fess"</arg> <arg>"gl/protwords.txt"</arg> </postConstruct> <postConstruct name="addConfigFile"> <arg>"fess"</arg>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Wed Nov 06 13:45:02 UTC 2024 - 16K bytes - Viewed (0) -
src/main/resources/fess_indices/fess.json
] }, "french_stop": { "type": "stop", "stopwords_path": "${fess.dictionary.path}fr/stopwords.txt" }, "french_keywords": { "type": "keyword_marker", "keywords_path": "${fess.dictionary.path}fr/protwords.txt" }, "french_stemmer": { "type": "stemmer", "language": "light_french"
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Fri Jun 06 14:17:42 UTC 2025 - 39.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessUserLocaleProcessProviderTest.java
return "lang"; } }; ComponentUtil.setFessConfig(mockConfig); // Setup mock request manager RequestManager mockRequestManager = createMockRequestManager("fr"); // Execute OptionalThing<Locale> result = provider.findBusinessLocale(null, mockRequestManager); // Verify assertTrue(result.isPresent());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/Cache.kt
* GET * 2 * Accept-Language: fr-CA * Accept-Charset: UTF-8 * HTTP/1.1 200 OK * 3 * Content-Type: image/png * Content-Length: 100 * Cache-Control: max-age=600 * ``` * * A typical HTTPS file looks like this: * * ``` * https://google.com/foo * GET * 2 * Accept-Language: fr-CA * Accept-Charset: UTF-8
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Aug 16 09:39:51 UTC 2025 - 26.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/LanguageHelperTest.java
assertEquals("ko", languageHelper.getSupportedLanguage("ko")); } public void test_getSupportedLanguage_unsupported() { assertNull(languageHelper.getSupportedLanguage("fr")); assertNull(languageHelper.getSupportedLanguage("de")); assertNull(languageHelper.getSupportedLanguage("unknown")); } public void test_getSupportedLanguage_blank() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 12.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/DocMapTest.java
} public void test_entrySet_with_only_lang_key() { Map<String, Object> parentMap = new LinkedHashMap<>(); DocMap docMap = new DocMap(parentMap); docMap.put("lang", "fr"); Set<Map.Entry<String, Object>> entrySet = docMap.entrySet(); assertEquals(1, entrySet.size()); String[] keys = entrySet.stream().map(Map.Entry::getKey).toArray(String[]::new);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 10.5K bytes - Viewed (0)