- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 20 for japanese (0.04 sec)
-
src/test/java/org/codelibs/fess/helper/SystemHelperTest.java
assertEquals("https://example.com/98.76/test.html", helpUrl); getMockRequest().setLocale(Locale.JAPANESE); helpUrl = systemHelper.getHelpUrl("https://example.com/{lang}/{version}/test.html"); // Check if Japanese is actually supported or just use the fallback assertTrue(helpUrl.contains("98.76")); getMockRequest().setLocale(Locale.ITALIAN);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 28.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/analysis/SuggestAnalyzerTest.java
// Test with English List<AnalyzeToken> tokensEn = analyzer.analyze(text, field, "en"); assertNotNull(tokensEn); assertEquals(2, tokensEn.size()); // Test with Japanese List<AnalyzeToken> tokensJa = analyzer.analyze(text, field, "ja"); assertNotNull(tokensJa); assertEquals(2, tokensJa.size()); // Test with null language
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Mon Sep 01 13:33:03 UTC 2025 - 15.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/converter/AnalyzerConverterTest.java
@Test public void testConvertWithJapaneseText() throws IOException { // Test convert with Japanese text String text = "テスト"; String field = "content"; List<String> results = converter.convert(text, field, "ja"); assertNotNull(results); // Should use Japanese analyzer and transliterator } @Test
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Mon Sep 01 13:33:03 UTC 2025 - 12.5K 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/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/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) -
src/test/java/org/codelibs/core/convert/TimestampConversionUtilTest.java
import org.junit.Test; /** * @author higa */ public class TimestampConversionUtilTest { @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 - 11.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessUserLocaleProcessProviderTest.java
// Verify assertTrue(result.isPresent()); assertEquals(Locale.US, result.get()); } // Test findBusinessLocale with Japanese locale public void test_findBusinessLocale_withJapaneseLocale() { // Setup mock config FessConfig mockConfig = new FessConfig.SimpleImpl() { @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11K bytes - Viewed (0)