- Sort Score
- Result 10 results
- Languages All
Results 1 - 8 of 8 for getMaxMpxCount (0.08 sec)
-
src/test/java/jcifs/ConfigurationTest.java
mockConfig.getFlags2(); mockConfig.getSessionLimit(); mockConfig.getOemEncoding(); mockConfig.getLocalTimezone(); mockConfig.getPid(); mockConfig.getMaxMpxCount(); mockConfig.isSigningEnabled(); mockConfig.isIpcSigningEnforced(); mockConfig.isSigningEnforced(); mockConfig.isEncryptionEnabled();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 3.9K bytes - Viewed (0) -
src/main/java/jcifs/config/DelegatingConfiguration.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 24.1K bytes - Viewed (0) -
src/test/java/jcifs/config/DelegatingConfigurationTest.java
when(mockDelegate.getMaxMpxCount()).thenReturn(10); // When long dfsTtl = delegatingConfig.getDfsTtl(); int responseTimeout = delegatingConfig.getResponseTimeout(); int socketTimeout = delegatingConfig.getSoTimeout(); int connTimeout = delegatingConfig.getConnTimeout(); int maxMpx = delegatingConfig.getMaxMpxCount(); // Then
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComNegotiateResponse.java
this.server = new ServerData(); this.capabilities = ctx.getConfig().getCapabilities(); this.negotiatedFlags2 = ctx.getConfig().getFlags2(); this.maxMpxCount = ctx.getConfig().getMaxMpxCount(); this.snd_buf_size = ctx.getConfig().getSendBufferSize(); this.recv_buf_size = ctx.getConfig().getReceiveBufferSize(); this.tx_buf_size = ctx.getConfig().getTransactionBufferSize();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 15.8K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbTreeHandleImplTest.java
when(ctx.getConfig()).thenReturn(config); when(config.getCapabilities()).thenReturn(0); when(config.getFlags2()).thenReturn(0); when(config.getMaxMpxCount()).thenReturn(1); when(config.getSendBufferSize()).thenReturn(4096); when(config.getReceiveBufferSize()).thenReturn(4096); when(config.getTransactionBufferSize()).thenReturn(4096);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.4K bytes - Viewed (0) -
src/test/java/jcifs/config/BaseConfigurationTest.java
assertEquals(SmbConstants.DEFAULT_NOTIFY_BUF_SIZE, config.getNotifyBufferSize()); assertEquals(SmbConstants.DEFAULT_MAX_MPX_COUNT, config.getMaxMpxCount()); } @Test @DisplayName("Test SMB configuration getters") void testSmbConfigurationGetters() { assertEquals("jCIFS", config.getNativeLanman()); assertNull(config.getNativeOs());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 20.6K bytes - Viewed (0) -
src/main/java/jcifs/Configuration.java
int getPid(); /** * * Property {@code jcifs.smb.client.maxMpxCount} (int, default 10) * * @return maximum count of concurrent commands to announce */ int getMaxMpxCount(); /** * * Property {@code jcifs.smb.client.signingPreferred} (boolean, default false) * * @return whether to enable SMB signing (for everything), if available */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 25.4K bytes - Viewed (0) -
src/main/java/jcifs/config/BaseConfiguration.java
return this.smbRecvBufferSize; } @Override public int getNotifyBufferSize() { return this.smbNotifyBufferSize; } @Override public int getMaxMpxCount() { return this.maxMpxCount; } @Override public String getNativeLanman() { return this.nativeLanMan; } @Override public String getNativeOs() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 36.5K bytes - Viewed (0)