- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 102 for 655360 (0.04 sec)
-
src/main/java/jcifs/internal/smb1/trans/nt/NtTransQuerySecurityDesc.java
this.fid = fid; this.securityInformation = securityInformation; this.setupCount = 0; this.totalDataCount = 0; this.maxParameterCount = 4; this.maxDataCount = 65536; this.maxSetupCount = (byte) 0x00; } @Override public int getPadding() { return 4; } @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/rdma/tcp/TcpRdmaProviderTest.java
} @Test public void testGetProviderName() { assertEquals("TCP Fallback", provider.getProviderName()); } @Test public void testGetMaxMessageSize() { assertEquals(65536, provider.getMaxMessageSize(), "TCP provider should have 64KB limit"); } @Test public void testShutdown() { // Should not throw exception assertDoesNotThrow(() -> provider.shutdown());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 4.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/RdmaBufferManager.java
// Buffer pool configuration private final int initialSendBuffers = 32; private final int initialReceiveBuffers = 64; private final int sendBufferSize = 65536; // 64KB private final int receiveBufferSize = 65536; // 64KB /** * Create new RDMA buffer manager * * @param provider RDMA provider for memory registration */ public RdmaBufferManager(RdmaProvider provider) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 8.7K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/escape/ArrayBasedEscaperMapTest.java
ArrayBasedEscaperMap fem = ArrayBasedEscaperMap.create(map); char[][] replacementArray = fem.getReplacementArray(); // Array length is highest character value + 1 assertThat(replacementArray).hasLength(65536); // The final element should always be non-null. assertThat(replacementArray[replacementArray.length - 1]).isNotNull(); // Exhaustively check all mappings (an int index avoids wrapping).
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Feb 18 15:41:04 UTC 2025 - 2.7K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbPipeHandleImplTest.java
// Setup tree with configuration when(tree.getConfig()).thenReturn(config); when(tree.getSendBufferSize()).thenReturn(65536); when(config.getPid()).thenReturn(12345); when(config.getSendBufferSize()).thenReturn(65536); target = new SmbPipeHandleImpl(pipe); } @Test @DisplayName("unwrap returns self for assignable type; throws for incompatible and null")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.7K bytes - Viewed (0) -
src/test/java/jcifs/internal/dfs/ReferralTest.java
assertEquals(65535, decodedSize); assertEquals(65535, referral.getSize()); assertEquals(65535, referral.getServerType()); assertEquals(65535, referral.getRFlags()); assertEquals(65535, referral.getProximity()); assertEquals(65535, referral.getTtl()); } @Test public void testEmptyStrings() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 22K bytes - Viewed (0) -
src/test/java/jcifs/context/BaseContextTest.java
when(mockConfig.getDefaultDomain()).thenReturn(null); when(mockConfig.getBufferCacheSize()).thenReturn(16); when(mockConfig.getMaximumBufferSize()).thenReturn(65536); context = new BaseContext(mockConfig); } @Test @DisplayName("Constructor should initialize all components") void testConstructorInitialization() { // Then
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 15.1K bytes - Viewed (0) -
src/test/java/jcifs/internal/fscc/FileStandardInfoTest.java
@Test @DisplayName("Test toString method") void testToString() throws SMBProtocolDecodingException { // Setup test data byte[] buffer = new byte[22]; long expectedAllocationSize = 65536L; long expectedEndOfFile = 49152L; int expectedNumberOfLinks = 15; boolean expectedDeletePending = true; boolean expectedDirectory = true; // Encode test data
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/tcp/TcpRdmaProvider.java
} @Override public String getProviderName() { return "TCP Fallback"; } @Override public int getMaxMessageSize() { return 65536; // 64KB for TCP } @Override public void shutdown() { // Nothing to clean up for TCP }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 2.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/info/Smb2QueryDirectoryRequestTest.java
private Smb2QueryDirectoryRequest request; @BeforeEach void setUp() { MockitoAnnotations.openMocks(this); when(mockConfig.getMaximumBufferSize()).thenReturn(65536); when(mockConfig.getListSize()).thenReturn(65536); when(mockContext.getConfig()).thenReturn(mockConfig); } @Test @DisplayName("Test constructor with configuration only") void testConstructorWithConfig() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.2K bytes - Viewed (0)