- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 29 for ab2c (0.1 sec)
-
src/test/java/org/codelibs/fess/suggest/analysis/SuggestAnalyzerTest.java
String text = "Test123 ABC-456"; String field = "content"; String lang = "en"; List<AnalyzeToken> tokens = analyzer.analyzeAndReading(text, field, lang); assertNotNull(tokens); assertEquals(2, tokens.size()); // "Test123" and "ABC-456" (hyphen is not a split char in our tokenizer)Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Sep 01 13:33:03 UTC 2025 - 15.7K bytes - Viewed (0) -
src/test/java/jcifs/ConfigTest.java
testProperties.setProperty("test.bool.false", "false"); testProperties.setProperty("test.host", "localhost"); testProperties.setProperty("test.invalid.int", "abc"); } @Test @DisplayName("Should get integer property with default value") void testGetIntWithDefault() { assertEquals(123, Config.getInt(testProperties, "test.int", 0));
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 3.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/normalizer/HankakuKanaToZenkakuKanaTest.java
public void test_mixedWithOtherCharacters() throws Exception { HankakuKanaToZenkakuKana normalizer = new HankakuKanaToZenkakuKana(); String result = normalizer.normalize("abc アイウ 123", "field"); assertEquals("abc アイウ 123", result); } @Test public void test_wa() throws Exception { HankakuKanaToZenkakuKana normalizer = new HankakuKanaToZenkakuKana();
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 17 14:23:01 UTC 2025 - 6.1K bytes - Viewed (0) -
src/test/java/org/codelibs/core/beans/util/MyBean3.java
Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 1011 bytes - Viewed (0) -
dbflute_fess/dfprop/replaceSchemaMap.dfprop
# /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - # o filterVariablesMap: (NotRequired - Default map:{}) # You can specify the filter variables for DDL. # #; filterVariablesMap = map:{abc=AAA} # - - - - - - - - - -/ # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - # o additionalUserMap: (NotRequired - Default map:{}) # You can set additional users.Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Oct 31 23:35:14 UTC 2015 - 9.3K bytes - Viewed (0) -
src/test/java/org/codelibs/core/lang/FieldUtilTest.java
Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Fri Jun 20 13:40:57 UTC 2025 - 4.1K bytes - Viewed (0) -
src/test/java/org/codelibs/core/misc/Base64UtilTest.java
// These test cases ensure that the new java.util.Base64 implementation // produces the same output as the old custom implementation // Test case 1: Standard padding final byte[] data1 = "abc".getBytes(); assertEquals("YWJj", Base64Util.encode(data1)); // Test case 2: Single padding final byte[] data2 = "abcd".getBytes(); assertEquals("YWJjZA==", Base64Util.encode(data2));Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat Nov 22 11:21:59 UTC 2025 - 6K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbEnumerationUtilTest.java
void unwrapDOSFilter_returnsInnerDosFileFilter_whenWrapped() throws Exception { // Arrange: create a ResourceFilterWrapper that wraps a DosFileFilter DosFileFilter dos = new DosFileFilter("abc", 7); Object wrapper = newPrivateInner("ResourceFilterWrapper", new Class<?>[] { SmbFileFilter.class }, dos); // unwrapDOSFilter is a private static method on SmbEnumerationUtil
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.1K bytes - Viewed (0) -
src/test/java/jcifs/smb1/UniAddressTest.java
void isAllDigitsTrueForPureNumeric(String numeric) { assertTrue(UniAddress.isAllDigits(numeric)); } @ParameterizedTest @ValueSource(strings = { "12a", "abc", "123 " }) void isAllDigitsFalseForNonNumeric(String nonNumeric) { assertFalse(UniAddress.isAllDigits(nonNumeric)); } @Test void isAllDigitsHandlesEmptyString() {
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7.9K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/util/IgnoreCloseInputStreamTest.java
assertEquals('t', stream.read()); } public void test_read_delegatesToUnderlying() throws IOException { // Test that read() delegates to underlying stream byte[] data = "ABC".getBytes(); InputStream underlyingStream = new ByteArrayInputStream(data); IgnoreCloseInputStream stream = new IgnoreCloseInputStream(underlyingStream); assertEquals('A', stream.read());
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sat Nov 22 13:28:22 UTC 2025 - 6.6K bytes - Viewed (0)