- Sort Score
- Result 10 results
- Languages All
Results 11 - 18 of 18 for 0123456789abcdef (0.06 sec)
-
src/test/java/org/codelibs/fess/thumbnail/ThumbnailManagerTest.java
assertTrue(result); } // Test getImageFilename with docMap public void test_getImageFilename_withDocMap() { Map<String, Object> docMap = new HashMap<>(); docMap.put("_id", "1234567890abcdef"); String filename = thumbnailManager.getImageFilename(docMap); assertNotNull(filename); assertTrue(filename.endsWith(".png")); assertTrue(filename.contains("/")); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 18.7K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/primitives/UnsignedLongsTest.java
assertThat(UnsignedLongs.decode("0xffffffffffffffff")).isEqualTo(0xffffffffffffffffL); assertThat(UnsignedLongs.decode("01234567")).isEqualTo(01234567); // octal assertThat(UnsignedLongs.decode("#1234567890abcdef")).isEqualTo(0x1234567890abcdefL); assertThat(UnsignedLongs.decode("987654321012345678")).isEqualTo(987654321012345678L); assertThat(UnsignedLongs.decode("0x135791357913579")).isEqualTo(0x135791357913579L);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 12.8K bytes - Viewed (0) -
src/test/java/jcifs/internal/fscc/FileEndOfFileInformationTest.java
assertEquals(8, info.size()); } @Test @DisplayName("Test encode method with valid buffer") void testEncode() { // Create instance with known value long endOfFile = 0x123456789ABCDEFL; FileEndOfFileInformation info = new FileEndOfFileInformation(endOfFile); // Create buffer for encoding byte[] buffer = new byte[16]; int bytesWritten = info.encode(buffer, 0);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/fscc/FileInformationTest.java
*/ @Test @DisplayName("Test FileEndOfFileInformation encode/decode round trip") void testFileEndOfFileInformationEncodeDecodeRoundTrip() throws SMBProtocolDecodingException { long originalValue = 0x123456789ABCDEFL; FileEndOfFileInformation original = new FileEndOfFileInformation(originalValue); // Encode byte[] buffer = new byte[8]; int encoded = original.encode(buffer, 0);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.5K bytes - Viewed (0) -
src/test/java/jcifs/pac/PacDataInputStreamTest.java
PacDataInputStream pdis = createInputStream(data); assertEquals(0x12345678, pdis.readInt()); } @Test public void testReadLong() throws IOException { // Little-endian 0x123456789ABCDEF0 -> 0xF0 0xDE 0xBC 0x9A 0x78 0x56 0x34 0x12 byte[] data = new byte[] { (byte) 0xF0, (byte) 0xDE, (byte) 0xBC, (byte) 0x9A, 0x78, 0x56, 0x34, 0x12 }; PacDataInputStream pdis = createInputStream(data);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 9.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/info/Smb2QueryInfoResponseTest.java
when(response.getHeaderStart()).thenReturn(0); // Write FileInternalInfo data at the buffer offset // FileInternalInfo expects 8 bytes (IndexNumber as int8) SMBUtil.writeInt8(0x123456789ABCDEFL, buffer, 50); int result = response.readBytesWireFormat(buffer, bufferIndex); assertTrue(result >= 8); assertNotNull(response.getInfo());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 24.5K bytes - Viewed (0) -
src/test/java/jcifs/smb1/util/HexdumpTest.java
assertEquals("XXFFXXXXXX", new String(dst3)); // Test long conversion char[] dst4 = new char[16]; Hexdump.toHexChars(0x123456789ABCDEF0L, dst4, 0, 16); assertEquals("123456789ABCDEF0", new String(dst4)); } @Test @DisplayName("Should verify HEX_DIGITS constant") void testHexDigitsConstant() { // Verify the HEX_DIGITS array contains correct values
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.4K bytes - Viewed (0) -
src/test/java/jcifs/smb/NtlmUtilTest.java
assertEquals("Password parameter is required", ex.getMessage()); } @ParameterizedTest @ValueSource(strings = { "", "password", "pässwörd", "1234567890abcdef" }) @DisplayName("nTOWFv1 equals getNTHash across inputs") void testNTOWFv1_delegatesToGetNTHash(String password) { // Act byte[] h1 = NtlmUtil.nTOWFv1(password);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 12K bytes - Viewed (0)