- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 65 for 52 (0.01 sec)
-
src/test/java/jcifs/SidResolverTest.java
.resolveSids(any(CIFSContext.class), anyString(), any(SID[].class), eq(5), anyInt()); assertThrows(CIFSException.class, () -> sidResolver.resolveSids(mockContext, testServerName, testSids, 5, 2)); } // Test getGroupMemberSids @Test void testGetGroupMemberSids_Success() throws CIFSException { SID[] expectedMembers = new SID[] { mockSid1, mockSid2 };
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 15.5K bytes - Viewed (0) -
docs/SMB3_IMPLEMENTATION_PLAN.md
├── RdmaBuffer.java - RDMA buffer management ├── RdmaChannel.java - RDMA channel operations └── RdmaProvider.java - RDMA provider abstraction ``` #### 5.2 Implementation Tasks - [ ] Research Java RDMA libraries (e.g., DiSNI, JXIO) - [ ] Implement RDMA capability detection - [ ] Create RDMA negotiation context - [ ] Implement RDMA transport layer
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 10.7K bytes - Viewed (0) -
docs/smb3-features/04-directory-leasing-design.md
try { super.close(); } finally { // Don't release directory lease on close - it may be shared // Lease will be cleaned up by the lease manager } } ``` ### 5.2 Session Integration ```java // In SmbSession.java private DirectoryLeaseManager directoryLeaseManager; public void initializeDirectoryLeasing() {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 36.2K bytes - Viewed (0) -
docs/smb3-features/05-rdma-smb-direct-design.md
if (provider.isAvailable()) { log.info("Selected RDMA provider: {}", provider.getProviderName()); return provider; } } return null; } ``` ### 5.2 SMB2 Read/Write with RDMA ```java // In Smb2ReadRequest.java private RdmaChannelInfo rdmaChannelInfo; public void addRdmaChannelInfo(int remoteKey, long address, int length) {
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 35.9K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/primitives/DoublesTest.java
for (String hexPrefix : ImmutableList.of("0x", "0X")) { for (String iPart : ImmutableList.of("", "0", "1", "F", "f", "c4", "CE")) { for (String fPart : ImmutableList.of("", ".", ".F", ".52", ".a")) { for (String expMarker : ImmutableList.of("p", "P")) { for (String exponent : ImmutableList.of("0", "-5", "+20", "52")) {
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Dec 11 20:45:32 UTC 2025 - 30.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/Smb2EncryptionContextTest.java
assertTrue(encrypted.length > plaintext.length, "Encrypted message should be larger than plaintext"); // Verify transform header is present (first 52 bytes) assertTrue(encrypted.length >= 52, "Encrypted message should include transform header"); // When - Decrypt byte[] decrypted = context.decryptMessage(encrypted); // Then - Verify decryption
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 44.1K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/io/Smb2ReadRequestTest.java
assertEquals(49, bytesWritten); // Verify written structure assertEquals(49, SMBUtil.readInt2(buffer, 50)); // Structure size assertEquals(1, buffer[52]); // Padding assertEquals(0x01, buffer[53]); // Read flags assertEquals(8192, SMBUtil.readInt4(buffer, 54)); // Read length assertEquals(16384L, SMBUtil.readInt8(buffer, 58)); // Offset
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 24.8K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/lock/Smb2LockRequestTest.java
assertEquals(24 + (24 * 2), bytesWritten); // Verify written structure assertEquals(48, SMBUtil.readInt2(buffer, 50)); // Structure size assertEquals(2, SMBUtil.readInt2(buffer, 52)); // Lock count assertArrayEquals(testFileId, Arrays.copyOfRange(buffer, 58, 74)); // File ID } @Test @DisplayName("Should handle lock request with all lock types")
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 25.3K bytes - Viewed (0) -
src/test/java/jcifs/internal/dtyp/SecurityDescriptorTest.java
testBuffer[47] = 0x00; testBuffer[48] = 0x00; testBuffer[49] = 0x00; testBuffer[50] = 0x00; testBuffer[51] = 0x05; SMBUtil.writeInt4(32, testBuffer, 52); // sub-authority 1 SMBUtil.writeInt4(544, testBuffer, 56); // sub-authority 2 int size = securityDescriptor.decode(testBuffer, 0, testBuffer.length);
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/net/NetServerEnum2ResponseTest.java
} @ParameterizedTest @DisplayName("Test readDataWireFormat with various server versions") @CsvSource({ "3, 51, Windows NT 3.51", "4, 0, Windows NT 4.0", "5, 0, Windows 2000", "5, 1, Windows XP", "5, 2, Windows Server 2003", "6, 0, Windows Vista", "6, 1, Windows 7", "6, 2, Windows 8", "6, 3, Windows 8.1", "10, 0, Windows 10" })Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 25.4K bytes - Viewed (0)