- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 17 for tw (0.01 sec)
-
src/main/resources/fess_indices/fess.json
"keywords_path": "${fess.dictionary.path}th/protwords.txt" }, "traditional_chinese_stop": { "type": "stop", "stopwords_path": "${fess.dictionary.path}zh-tw/stopwords.txt" }, "turkish_stop": { "type": "stop", "stopwords_path": "${fess.dictionary.path}tr/stopwords.txt" }, "turkish_lowercase": {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Fri Jun 06 14:17:42 UTC 2025 - 39.8K bytes - Viewed (0) -
docs/language_names.yml
sv: svenska sw: Kiswahili ta: தமிழ் te: తెలుగు tg: тоҷикӣ th: ไทย ti: ትግርኛ tk: Türkmen tl: Wikang Tagalog tn: Setswana to: faka Tonga tr: Türkçe ts: Xitsonga tt: татар теле tw: Twi ty: Reo Tahiti ug: ئۇيغۇرچە uk: українська мова ur: اردو uz: Ўзбек ve: Tshivenḓa vi: Tiếng Việt vo: Volapük wa: walon wo: Wollof xh: isiXhosa yi: ייִדיש yo: Yorùbá
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Jan 22 19:42:53 UTC 2024 - 3.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/FessPropTest.java
assertArrays(new String[] { "zh-tw" }, fessConfig.normalizeQueryLanguages(new String[] { "zh_TW" })); } public void test_getQueryLocaleFromName() { FessProp.propMap.clear(); FessConfig fessConfig = new FessConfig.SimpleImpl() { @Override public String getQueryLanguageMapping() { return "ja=ja\nzh_cn=zh-cn\nzh_TW=zh-tw\nzh=zh-cn"; } };
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 13K bytes - Viewed (0) -
okhttp/src/jvmMain/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.list
myddns.rocks mydissent.net mydns.bz mydns.jp mydns.tw mydns.vc mydobiss.com mydrobo.com myds.me myeffect.net myfast.host myfast.space myfirewall.org myforum.community myfritz.link myfritz.net myftp.biz myftp.org myhome-server.de myiphost.com myjino.ru mykolaiv.ua mymailer.com.tw mymediapc.net mynascloud.com myoko.niigata.jp mypep.link
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Tue May 27 22:00:49 UTC 2025 - 129.6K bytes - Viewed (3) -
okhttp/src/androidMain/assets/PublicSuffixDatabase.list
myddns.rocks mydissent.net mydns.bz mydns.jp mydns.tw mydns.vc mydobiss.com mydrobo.com myds.me myeffect.net myfast.host myfast.space myfirewall.org myforum.community myfritz.link myfritz.net myftp.biz myftp.org myhome-server.de myiphost.com myjino.ru mykolaiv.ua mymailer.com.tw mymediapc.net mynascloud.com myoko.niigata.jp mypep.link
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Tue Dec 31 14:50:53 UTC 2024 - 129.6K bytes - Viewed (2) -
src/test/java/org/codelibs/fess/helper/SystemHelperTest.java
value = "zh-cn"; assertEquals("zh_CN", systemHelper.normalizeLang(value)); value = "zh_CN"; assertEquals("zh_CN", systemHelper.normalizeLang(value)); value = "zh-tw"; assertEquals("zh_TW", systemHelper.normalizeLang(value)); value = "zh_TW"; assertEquals("zh_TW", systemHelper.normalizeLang(value)); } public void test_createSearchRole() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 28.9K bytes - Viewed (0) -
samples/guide/src/main/java/okhttp3/recipes/kt/WiresharkExample.kt
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat May 10 11:15:14 UTC 2025 - 10.9K bytes - Viewed (0) -
okhttp/src/jvmTest/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat
// Not listing any 2LDs as reserved since none seem to exist in practice, // Wikipedia notwithstanding. tv // tw : https://www.iana.org/domains/root/db/tw.html tw edu.tw gov.tw mil.tw com.tw net.tw org.tw idv.tw game.tw ebiz.tw club.tw 網路.tw 組織.tw 商業.tw // tz : http://www.tznic.or.tz/index.php/domains // Submitted by registry <******@****.***> tz ac.tz
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Dec 27 13:39:56 UTC 2024 - 309.7K bytes - Viewed (0) -
src/main/resources/esclient.xml
</postConstruct> <postConstruct name="addConfigFile"> <arg>"fess"</arg> <arg>"zh-cn/stopwords.txt"</arg> </postConstruct> <postConstruct name="addConfigFile"> <arg>"fess"</arg> <arg>"zh-tw/stopwords.txt"</arg> </postConstruct> <postConstruct name="addConfigFile"> <arg>"fess"</arg> <arg>"ar/stemmer_override.txt"</arg> </postConstruct> <postConstruct name="addConfigFile">
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Wed Nov 06 13:45:02 UTC 2024 - 16K bytes - Viewed (0) -
docs/zh-hant/docs/environment-variables.md
例如,你可以建立一個名為 `main.py` 的檔案,其中包含以下內容: ```Python hl_lines="3" import os name = os.getenv("MY_NAME", "World") print(f"Hello {name} from Python") ``` /// tip 第二個參數是 <a href="https://docs.python.org/zh-tw/3.8/library/os.html#os.getenv" class="external-link" target="_blank">`os.getenv()`</a> 的預設回傳值。 如果沒有提供,預設值為 `None`,這裡我們提供 `"World"` 作為預設值。 /// 然後你可以呼叫這個 Python 程式: //// tab | Linux, macOS, Windows Bash
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sat Nov 09 12:17:55 UTC 2024 - 8K bytes - Viewed (0)