- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 40 for _japanese_ (0.06 sec)
-
src/test/java/org/codelibs/core/misc/LocaleUtilTest.java
/** * @throws Exception */ public void testGetLocale() throws Exception { assertEquals("1", LocaleUtil.getDefault(), LocaleUtil.getLocale(null)); assertEquals("2", Locale.JAPANESE, LocaleUtil.getLocale("ja")); assertEquals("3", Locale.JAPAN, LocaleUtil.getLocale("ja_JP")); }
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 1.1K bytes - Viewed (0) -
src/test/java/jcifs/ntlmssp/av/AvTargetNameTest.java
} /** * Test with special characters in the target name. */ @Test void testSpecialCharacters() { String specialChars = "サーバー名/ドメイン.com-123!@#$"; // Japanese characters and symbols AvTargetName avTargetName = new AvTargetName(specialChars); assertEquals(specialChars, avTargetName.getTargetName(), "Special characters should be handled correctly"); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 4.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/FessPropTest.java
assertEquals(Locale.ROOT, fessConfig.getQueryLocaleFromName("")); assertEquals(Locale.ROOT, fessConfig.getQueryLocaleFromName("ja")); assertEquals(Locale.JAPANESE, fessConfig.getQueryLocaleFromName("test_ja")); assertEquals(Locale.CHINESE, fessConfig.getQueryLocaleFromName("test_zh")); assertEquals(Locale.SIMPLIFIED_CHINESE, fessConfig.getQueryLocaleFromName("test_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) -
src/test/java/org/codelibs/fess/helper/LabelTypeHelperTest.java
fail("refresh() should not throw an exception: " + e.getMessage()); } } public void test_matchLocale() { assertFalse(labelTypeHelper.matchLocale(Locale.ENGLISH, Locale.JAPANESE)); assertFalse(labelTypeHelper.matchLocale(Locale.SIMPLIFIED_CHINESE, Locale.TRADITIONAL_CHINESE)); assertTrue(labelTypeHelper.matchLocale(null, Locale.ROOT));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 12.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessListedClassificationProviderTest.java
// Test with various locales OptionalThing<String> result = provider.determineAlias(Locale.ENGLISH); assertFalse(result.isPresent()); result = provider.determineAlias(Locale.JAPANESE); assertFalse(result.isPresent()); result = provider.determineAlias(Locale.GERMAN); assertFalse(result.isPresent()); result = provider.determineAlias(null);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 7.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/converter/ReadingConverterTest.java
assertEquals(1, readings.size()); assertEquals("TEST@#$%123", readings.get(0)); } @Test public void testConvertWithJapaneseText() throws IOException { // Test convert with Japanese text testConverter.setJapaneseMode(true); converter.init(); String text = "東京"; String field = "content"; List<String> readings = converter.convert(text, field, "ja");
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Mon Sep 01 13:33:03 UTC 2025 - 13.5K bytes - Viewed (0) -
src/test/java/org/codelibs/core/message/MessageFormatterTest.java
import org.junit.Before; import org.junit.Test; /** * @author higa */ public class MessageFormatterTest { @Before public void setUp() throws Exception { LocaleUtil.setDefault(() -> Locale.JAPANESE); } @After public void tearDown() throws Exception { LocaleUtil.setDefault(null); } /** * @throws Exception */ @Test
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 3.6K bytes - Viewed (0) -
docs/en/docs/release-notes.md
* 🌐 Add Japanese translation for `docs/ja/docs/tutorial/dependencies/sub-dependencies.md`. PR [#1959](https://github.com/tiangolo/fastapi/pull/1959) by [@SwftAlpc](https://github.com/SwftAlpc). * 🌐 Add Japanese translation for `docs/ja/docs/tutorial/background-tasks.md`. PR [#2668](https://github.com/tiangolo/fastapi/pull/2668) by [@tokusumi](https://github.com/tokusumi).
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Fri Sep 05 12:48:45 UTC 2025 - 544.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/entity/ElevateWordTest.java
} @Test public void testWithJapaneseCharacters() { // Test with Japanese characters String word = "日本語テスト"; float boost = 2.0f; List<String> readings = Arrays.asList("ニホンゴテスト"); List<String> fields = Arrays.asList("content_ja"); List<String> tags = Arrays.asList("japanese"); List<String> roles = Arrays.asList("admin");
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Mon Sep 01 13:33:03 UTC 2025 - 16K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/WildcardQueryCommandTest.java
// Test with various international characters assertEquals("äöü", queryCommand.toLowercaseWildcard("ÄÖÜ")); assertEquals("日本語", queryCommand.toLowercaseWildcard("日本語")); // Japanese doesn't change assertEquals("test日本語", queryCommand.toLowercaseWildcard("TEST日本語")); } public void test_getQueryClassName() { assertEquals("WildcardQuery", queryCommand.getQueryClassName());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.1K bytes - Viewed (0)