- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 21 for 33 (0.03 sec)
-
src/test/java/jcifs/netbios/NameTest.java
// Verify length assertTrue(length > 33); } @Test void writeWireFormat_withScope_shouldEncodeCorrectly() { Name name = new Name(mockConfig, "TEST", 0x20, "scope.com"); byte[] dst = new byte[100]; int length = name.writeWireFormat(dst, 0); // Scope should start at position 33 with a length byte (not '.')Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 19.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/AndXServerMessageBlockTest.java
@Override protected int readHeaderWireFormat(byte[] buffer, int bufferIndex) { // Simulate header reading return 33; } }; byte[] buffer = new byte[1024]; // Setup buffer after header buffer[33] = 4; // wordCount buffer[34] = (byte) 0xFF; // andxCommandRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 19.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/info/Smb2SetInfoRequestTest.java
// Create a buffer and write byte[] buffer = new byte[256]; int bytesWritten = request.writeBytesWireFormat(buffer, 64); // Verify structure size (should be 33) assertEquals(33, SMBUtil.readInt2(buffer, 64)); // Verify info type and file info class assertEquals((byte) 0x01, buffer[66]); assertEquals((byte) 0x04, buffer[67]);Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/create/Smb2CreateRequestTest.java
byte[] buffer = new byte[1024]; request.writeBytesWireFormat(buffer, 0); // Read share access from buffer (offset 32-35) int readShareAccess = (buffer[32] & 0xFF) | ((buffer[33] & 0xFF) << 8) | ((buffer[34] & 0xFF) << 16) | ((buffer[35] & 0xFF) << 24); assertEquals(shareAccess, readShareAccess); } @Test @DisplayName("Test create disposition setter")Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 18.6K bytes - Viewed (0) -
src/test/java/jcifs/config/SecurityConfigurationTest.java
assertTrue("LM compatibility should be 3 or higher for NTLMv2 only", config.getLanManCompatibility() >= 3); assertEquals("LM compatibility should default to 3", 3, config.getLanManCompatibility()); // Verify maximum version supports latest SMB 3.1.1 assertEquals("Maximum version should be SMB 3.1.1", DialectVersion.SMB311, config.getMaximumVersion()); } /**
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 3.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/util/MD4.java
B = GG(B, C, D, A, X[13], 13); A = GG(A, B, C, D, X[2], 3); D = GG(D, A, B, C, X[6], 5); C = GG(C, D, A, B, X[10], 9); B = GG(B, C, D, A, X[14], 13); A = GG(A, B, C, D, X[3], 3); D = GG(D, A, B, C, X[7], 5); C = GG(C, D, A, B, X[11], 9); B = GG(B, C, D, A, X[15], 13); A = HH(A, B, C, D, X[0], 3); D = HH(D, A, B, C, X[8], 9);
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/main/java/jcifs/internal/smb2/info/Smb2QueryDirectoryRequest.java
*/ @Override protected int writeBytesWireFormat(final byte[] dst, int dstIndex) { final int start = dstIndex; SMBUtil.writeInt2(33, dst, dstIndex); dst[dstIndex + 2] = this.fileInformationClass; dst[dstIndex + 3] = this.queryFlags; dstIndex += 4; SMBUtil.writeInt4(this.fileIndex, dst, dstIndex); dstIndex += 4;Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.3K bytes - Viewed (0) -
src/main/resources/fess_indices/fess/mapping.txt
ュ => ユ ョ => ヨ ゙ => ゛ ゚ => ゜ ー => ー ・ => ・ 0 => 0 1 => 1 2 => 2 3 => 3 4 => 4 5 => 5 6 => 6 7 => 7 8 => 8 9 => 9 ① => 1\u0020 ② => 2\u0020 ③ => 3\u0020 ④ => 4\u0020 ⑤ => 5\u0020 ⑥ => 6\u0020 ⑦ => 7\u0020 ⑧ => 8\u0020 ⑨ => 9\u0020 ! => ! ? => ? # => # % => % & => & @ => @ + => + - => - * => * / => /
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 27 02:07:47 UTC 2023 - 13.3K bytes - Viewed (0) -
src/test/java/jcifs/smb/DosFileFilterTest.java
"16, 16, true", // ATTR_DIRECTORY "32, 32, true", // ATTR_ARCHIVE "3, 1, true", // READONLY | HIDDEN vs READONLY "3, 2, true", // READONLY | HIDDEN vs HIDDEN "3, 3, true", // READONLY | HIDDEN vs READONLY | HIDDEN "48, 16, true", // DIRECTORY | ARCHIVE vs DIRECTORY "48, 32, true", // DIRECTORY | ARCHIVE vs ARCHIVE
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 6.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/info/Smb2SetInfoRequest.java
*/ @Override protected int writeBytesWireFormat(final byte[] dst, int dstIndex) { final int start = dstIndex; SMBUtil.writeInt2(33, dst, dstIndex); dst[dstIndex + 2] = this.infoType; dst[dstIndex + 3] = this.fileInfoClass; dstIndex += 4; final int bufferLengthOffset = dstIndex; dstIndex += 4;Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.7K bytes - Viewed (0)