- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 53 for ab2345 (0.04 seconds)
-
src/test/java/org/codelibs/core/lang/StringUtilTest.java
assertEquals("1", "1bc45", StringUtil.replace("12345", "23", "bc")); assertEquals("2", "1234ef", StringUtil.replace("12345", "5", "ef")); assertEquals("3", "ab2345", StringUtil.replace("12345", "1", "ab")); assertEquals("4", "a234a", StringUtil.replace("12341", "1", "a")); assertEquals("5", "ab234abab234ab", StringUtil.replace("1234112341", "1", "ab"));
Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Sat Nov 22 11:21:59 GMT 2025 - 11.4K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/primitives/CharsTest.java
testRotate(new char[] {'1', '2', '3', '4'}, -5, new char[] {'2', '3', '4', '1'}); testRotate(new char[] {'1', '2', '3', '4'}, -1, new char[] {'2', '3', '4', '1'}); testRotate(new char[] {'1', '2', '3', '4'}, 0, new char[] {'1', '2', '3', '4'}); testRotate(new char[] {'1', '2', '3', '4'}, 1, new char[] {'4', '1', '2', '3'}); testRotate(new char[] {'1', '2', '3', '4'}, 5, new char[] {'4', '1', '2', '3'});
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sun Mar 08 01:43:32 GMT 2026 - 26K bytes - Click Count (0) -
guava-tests/test/com/google/common/primitives/CharsTest.java
testRotate(new char[] {'1', '2', '3', '4'}, -5, new char[] {'2', '3', '4', '1'}); testRotate(new char[] {'1', '2', '3', '4'}, -1, new char[] {'2', '3', '4', '1'}); testRotate(new char[] {'1', '2', '3', '4'}, 0, new char[] {'1', '2', '3', '4'}); testRotate(new char[] {'1', '2', '3', '4'}, 1, new char[] {'4', '1', '2', '3'}); testRotate(new char[] {'1', '2', '3', '4'}, 5, new char[] {'4', '1', '2', '3'});
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sun Mar 08 01:43:32 GMT 2026 - 26K bytes - Click Count (0) -
guava-tests/test/com/google/common/primitives/ShortsTest.java
assertThat(Shorts.toByteArray((short) 0x2345)).isEqualTo(new byte[] {0x23, 0x45}); assertThat(Shorts.toByteArray((short) 0xFEDC)).isEqualTo(new byte[] {(byte) 0xFE, (byte) 0xDC}); } @GwtIncompatible // Shorts.fromByteArray public void testFromByteArray() { assertThat(Shorts.fromByteArray(new byte[] {0x23, 0x45})).isEqualTo((short) 0x2345);
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sun Mar 08 01:43:32 GMT 2026 - 27.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/app/service/UserServiceTest.java
} @Test public void test_user_postalCode() { final User user = new User(); assertNull(user.getPostalCode()); user.setPostalCode("12345"); assertEquals("12345", user.getPostalCode()); } @Test public void test_user_carLicense() { final User user = new User(); assertNull(user.getCarLicense());Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jan 15 12:54:47 GMT 2026 - 12.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/IpAddressUtilTest.java
assertEquals("2001:db8:1:2:3:4:5:6", method.invoke(null, "2001:0db8:0001:0002:0003:0004:0005:0006")); // Single zero should not be compressed assertEquals("2001:db8:1:0:2:3:4:5", method.invoke(null, "2001:0db8:1:0:2:3:4:5")); } catch (Exception e) { // If reflection fails, skip this test } } @Test public void testIsIPv6Address() { // IPv6 addresses
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 06 08:31:03 GMT 2025 - 8.9K bytes - Click Count (0) -
src/test/java/org/codelibs/curl/io/ContentOutputStreamTest.java
// Writing threshold + 1 bytes should go to file ContentOutputStream cos = new ContentOutputStream(5, Curl.tmpDir); cos.write(new byte[] { 0, 1, 2, 3, 4, 5 }); assertFalse(cos.isInMemory()); assertFalse(cos.done); File file = cos.getFile(); assertTrue(file.exists()); cos.close(); } @TestCreated: Thu Apr 02 15:34:12 GMT 2026 - Last Modified: Sat Mar 21 12:00:34 GMT 2026 - 11.7K bytes - Click Count (0) -
guava-tests/test/com/google/common/primitives/BytesTest.java
testRotate(new byte[] {1, 2, 3, 4}, -5, new byte[] {2, 3, 4, 1}); testRotate(new byte[] {1, 2, 3, 4}, -1, new byte[] {2, 3, 4, 1}); testRotate(new byte[] {1, 2, 3, 4}, 0, new byte[] {1, 2, 3, 4}); testRotate(new byte[] {1, 2, 3, 4}, 1, new byte[] {4, 1, 2, 3}); testRotate(new byte[] {1, 2, 3, 4}, 5, new byte[] {4, 1, 2, 3});
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sun Mar 08 01:43:32 GMT 2026 - 17.5K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/primitives/BytesTest.java
testRotate(new byte[] {1, 2, 3, 4}, -5, new byte[] {2, 3, 4, 1}); testRotate(new byte[] {1, 2, 3, 4}, -1, new byte[] {2, 3, 4, 1}); testRotate(new byte[] {1, 2, 3, 4}, 0, new byte[] {1, 2, 3, 4}); testRotate(new byte[] {1, 2, 3, 4}, 1, new byte[] {4, 1, 2, 3}); testRotate(new byte[] {1, 2, 3, 4}, 5, new byte[] {4, 1, 2, 3});
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sun Mar 08 01:43:32 GMT 2026 - 17.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/DocumentUtilTest.java
assertEquals(Long.valueOf(123456789L), DocumentUtil.getValue(doc, "longStr", Long.class)); doc.put("doubleStr", "123.45"); assertEquals(Double.valueOf(123.45), DocumentUtil.getValue(doc, "doubleStr", Double.class)); doc.put("floatStr", "123.45"); assertEquals(Float.valueOf(123.45f), DocumentUtil.getValue(doc, "floatStr", Float.class)); doc.put("boolStr", "true");
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 12 01:46:45 GMT 2026 - 13.6K bytes - Click Count (0)