- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 40 for _japanese_ (0.04 sec)
-
src/test/java/org/codelibs/opensearch/extension/kuromoji/index/analysis/JapaneseStopTokenFilterFactory.java
import org.opensearch.index.analysis.Analysis; public class JapaneseStopTokenFilterFactory extends AbstractTokenFilterFactory { private static final Map<String, Set<?>> NAMED_STOP_WORDS = singletonMap("_japanese_", JapaneseAnalyzer.getDefaultStopSet()); private final CharArraySet stopWords; private final boolean ignoreCase; private final boolean removeTrailing;
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Sat Mar 15 06:51:20 UTC 2025 - 2.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/kuromoji/CreateForm.java
import jakarta.validation.constraints.Size; /** * Form class for creating Kuromoji dictionary entries. * Kuromoji is a Japanese morphological analyzer and this form allows * administrators to add custom dictionary entries for better Japanese text analysis. * */ public class CreateForm { /** * Creates a new CreateForm instance. */ public CreateForm() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/kuromoji/UploadForm.java
import org.lastaflute.web.ruts.multipart.MultipartFormFile; import org.lastaflute.web.validation.Required; /** * Form for uploading Kuromoji dictionary files to the Fess search engine. * Kuromoji is a Japanese morphological analyzer used for tokenizing Japanese text. * This form is used in the admin interface to upload custom user dictionaries for Kuromoji. */ public class UploadForm { /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.7K bytes - Viewed (0) -
src/test/java/org/codelibs/core/exception/SQLRuntimeExceptionTest.java
LocaleUtil.setDefault(() -> Locale.JAPANESE); } @After public void tearDown() throws Exception { LocaleUtil.setDefault(null); } /** * @throws Exception */ @Test public void testErrorMessage_ja() throws Exception { // ## Arrange ## Locale.setDefault(Locale.JAPANESE);
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 3.2K bytes - Viewed (0) -
src/test/java/org/codelibs/core/exception/NullArgumentExceptionTest.java
LocaleUtil.setDefault(() -> Locale.JAPANESE); } @After public void tearDown() throws Exception { LocaleUtil.setDefault(null); } /** * @throws Exception */ @Test public void testErrorMessage_ja() throws Exception { // ## Arrange ## Locale.setDefault(Locale.JAPANESE);
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 2K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/idn/PunycodeTest.kt
) // (F) Hindi (Devanagari) testEncodeDecode( unicode = "यहलोगहिन्दीक्योंनहींबोलसकतेहैं", punycode = "xn--i1baa7eci9glrd9b2ae1bj0hfcgg6iyaf8o0a1dig0cd", ) // (G) Japanese (kanji and hiragana) testEncodeDecode( unicode = "なぜみんな日本語を話してくれないのか", punycode = "xn--n8jok5ay5dzabd5bym9f0cm5685rrjetr6pdxa", ) // (H) Korean (Hangul syllables) testEncodeDecode(
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Dec 27 13:39:56 UTC 2024 - 5.3K bytes - Viewed (0) -
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/main/java/org/codelibs/fess/app/web/admin/dict/kuromoji/EditForm.java
/** * Form class for editing Kuromoji dictionary entries in the admin interface. * This form extends CreateForm to include fields necessary for updating existing Kuromoji dictionary entries. * Kuromoji is a Japanese morphological analyzer, and this dictionary manages custom tokenization rules. */ public class EditForm extends CreateForm { /** * Creates a new EditForm instance. */ public EditForm() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.8K bytes - Viewed (0)