- Sort Score
- Num 10 results
- Language All
Results 1 - 4 of 4 for getRdmaMaxSendSize (0.17 seconds)
-
src/main/java/jcifs/config/DelegatingConfiguration.java
return this.delegate.getRdmaReadWriteThreshold(); } /** * {@inheritDoc} * * @see jcifs.Configuration#getRdmaMaxSendSize() */ @Override public int getRdmaMaxSendSize() { return this.delegate.getRdmaMaxSendSize(); } /** * {@inheritDoc} * * @see jcifs.Configuration#getRdmaMaxReceiveSize() */ @Override
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 24.1K bytes - Click Count (0) -
docs/smb3-features/05-rdma-smb-direct-design.md
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 } public int getRdmaMaxReceiveSize() { return getIntProperty(RDMA_MAX_RECEIVE_SIZE, 65536); // 64KB }
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 02:53:50 GMT 2025 - 35.9K bytes - Click Count (0) -
src/main/java/jcifs/Configuration.java
* * @return threshold in bytes */ int getRdmaReadWriteThreshold(); /** * Get maximum RDMA send size * * @return max send size in bytes */ int getRdmaMaxSendSize(); /** * Get maximum RDMA receive size * * @return max receive size in bytes */ int getRdmaMaxReceiveSize(); /** * Get RDMA credits *Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 25.4K bytes - Click Count (0) -
src/main/java/jcifs/config/BaseConfiguration.java
return this.rdmaProvider; } @Override public int getRdmaReadWriteThreshold() { return this.rdmaReadWriteThreshold; } @Override public int getRdmaMaxSendSize() { return this.rdmaMaxSendSize; } @Override public int getRdmaMaxReceiveSize() { return this.rdmaMaxReceiveSize; } @OverrideCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 36.5K bytes - Click Count (0)