- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for getRdmaReadWriteThreshold (0.45 sec)
-
src/test/java/jcifs/internal/smb2/rdma/RdmaConfigurationTest.java
assertFalse(config.isUseRDMA(), "RDMA should be disabled by default"); assertEquals("auto", config.getRdmaProvider(), "Default provider should be auto"); assertEquals(8192, config.getRdmaReadWriteThreshold(), "Default threshold should be 8KB"); assertEquals(65536, config.getRdmaMaxSendSize(), "Default max send size should be 64KB");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 5.1K bytes - Viewed (0) -
src/main/java/jcifs/config/DelegatingConfiguration.java
return this.delegate.getRdmaProvider(); } /** * {@inheritDoc} * * @see jcifs.Configuration#getRdmaReadWriteThreshold() */ @Override public int getRdmaReadWriteThreshold() { return this.delegate.getRdmaReadWriteThreshold(); } /** * {@inheritDoc} * * @see jcifs.Configuration#getRdmaMaxSendSize() */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 24.1K bytes - Viewed (0) -
docs/smb3-features/05-rdma-smb-direct-design.md
} public String getRdmaProvider() { return getProperty(RDMA_PROVIDER, "auto"); // auto, disni, jxio, tcp } public int getRdmaReadWriteThreshold() { return getIntProperty(RDMA_READ_WRITE_THRESHOLD, 8192); // 8KB } public int getRdmaMaxSendSize() { return getIntProperty(RDMA_MAX_SEND_SIZE, 65536); // 64KB }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 35.9K bytes - Viewed (0) -
src/main/java/jcifs/Configuration.java
* Get RDMA read/write threshold * * Operations larger than this size will use RDMA read/write * instead of send/receive. * * @return threshold in bytes */ int getRdmaReadWriteThreshold(); /** * Get maximum RDMA send size * * @return max send size in bytes */ int getRdmaMaxSendSize(); /** * Get maximum RDMA receive size *
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.useRDMA; } @Override public String getRdmaProvider() { return this.rdmaProvider; } @Override public int getRdmaReadWriteThreshold() { return this.rdmaReadWriteThreshold; } @Override public int getRdmaMaxSendSize() { return this.rdmaMaxSendSize; } @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 36.5K bytes - Viewed (0)