- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 14 for 120 (0.41 sec)
-
src/test/java/jcifs/smb1/smb1/Trans2FindFirst2ResponseTest.java
response.useUnicode = false; // Use OEM for simplicity byte[] buffer = new byte[120]; int bufferIndex = 0; // Entry 1 writeInt4(120, buffer, bufferIndex); // nextEntryOffset = 120 (relative) writeInt4(1, buffer, bufferIndex + 4); // fileIndex = 1 writeTime(1672531200000L, buffer, bufferIndex + 8); // creationTimeRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.3K bytes - Viewed (0) -
src/main/webapp/css/admin/style.css
height: 0% !important; } #result ol { list-style: none !important; padding-left: 0; } #result ol li { margin-bottom: 0; } #result .title { margin: 1.0em 0 0.5em 0; font-size: 120%; font-weight: 600; } section.content table { display: table; table-layout: fixed; width: 100%; } section.content table td { display: table-cell; word-wrap: break-word;Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 13 05:54:52 UTC 2025 - 1.1K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/io/Smb2ReadResponseTest.java
// Given byte[] buffer = new byte[512]; int bodyStart = 0; int dataLength = 10; // Use a large but safe offset value that fits in signed byte range (120) int dataOffsetValue = 120; // Write structure SMBUtil.writeInt2(17, buffer, bodyStart); buffer[bodyStart + 2] = (byte) dataOffsetValue; SMBUtil.writeInt4(dataLength, buffer, bodyStart + 4);Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 22.1K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/ioctl/Smb2IoctlRequestTest.java
Smb2IoctlRequest request = new Smb2IoctlRequest(mockConfig, TEST_CONTROL_CODE); int size = request.size(); // Base size: SMB2_HEADER_LENGTH (64) + 56 = 120, aligned to 8 assertEquals(120, size); } @Test @DisplayName("Test size calculation with input data") void testSizeWithInputData() { setupMockConfig();
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.3K bytes - Viewed (0) -
CLAUDE.md
mvn formatter:format # Format code mvn license:format # Update license headers ``` ### Code Style - 4 spaces (no tabs) - Opening brace on same line - Max line length: 120 - JavaDoc required for public APIs - License headers required ### Testing **Structure**: `src/test/java/org/codelibs/fess/crawler/` **Frameworks**: JUnit 4, UTFlute, Mockito, Testcontainers
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Fri Nov 28 17:31:34 UTC 2025 - 10.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/ActivityHelper.java
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 10.8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/util/MD4.java
// pad output to 56 mod 64; as RFC1320 puts it: congruent to 448 mod 512 final int bufferNdx = (int) (count % BLOCK_LENGTH); final int padLen = bufferNdx < 56 ? 56 - bufferNdx : 120 - bufferNdx; // padding is alwas binary 1 followed by binary 0s final byte[] tail = new byte[padLen + 8]; tail[0] = (byte) 0x80; // append length before final transform:Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 9.6K bytes - Viewed (0) -
src/test/java/jcifs/ntlmssp/Type2MessageTest.java
Type2Message.writeULong(truncatedMessage, 8, Type2Message.NTLMSSP_TYPE2); // Set empty target name buffer Type2Message.writeUShort(truncatedMessage, 12, 0); // length Type2Message.writeUShort(truncatedMessage, 14, 0); // max length Type2Message.writeULong(truncatedMessage, 16, 48); // offset (past the end) // Set flags
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 38.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/notify/Smb2ChangeNotifyResponseTest.java
System.arraycopy("file1".getBytes("UnicodeLittleUnmarked"), 0, buffer, notifyOffset + 12, 10); // Second notification at offset 120 (80 + 40) notifyOffset = 120; SMBUtil.writeInt4(44, buffer, notifyOffset); // NextEntryOffset SMBUtil.writeInt4(2, buffer, notifyOffset + 4); // Action (REMOVED) SMBUtil.writeInt4(10, buffer, notifyOffset + 8);
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 18.8K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/ServerMessageBlockTest.java
System.arraycopy(SMBUtil.SMB_HEADER, 0, buffer, 0, SMBUtil.SMB_HEADER.length); buffer[SmbConstants.SMB1_HEADER_LENGTH] = 10; SMBUtil.writeInt2(0, buffer, SmbConstants.SMB1_HEADER_LENGTH + 1 + 20); int length = customBlock.decode(buffer, 0); assertTrue(length > 0); assertEquals(10, customBlock.getWordCount()); } @Test
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 36.2K bytes - Viewed (0)