Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 11 - 14 of 14 for RdmaProvider (0.76 seconds)

  1. src/main/java/jcifs/config/BaseConfiguration.java

            }
            if (this.loadBalancingStrategy == null) {
                this.loadBalancingStrategy = "adaptive";
            }
    
            // Initialize RDMA defaults
            if (this.rdmaProvider == null) {
                this.rdmaProvider = "auto";
            }
            if (this.rdmaReadWriteThreshold == 0) {
                this.rdmaReadWriteThreshold = 8192; // 8KB
            }
            if (this.rdmaMaxSendSize == 0) {
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sun Aug 31 08:00:57 GMT 2025
    - 36.5K bytes
    - Click Count (0)
  2. src/test/java/jcifs/internal/smb2/rdma/RdmaConfigurationTest.java

        public void testRdmaConfigurationProperties() throws CIFSException {
            Properties props = new Properties();
            props.setProperty("jcifs.smb.client.useRDMA", "true");
            props.setProperty("jcifs.smb.client.rdmaProvider", "disni");
            props.setProperty("jcifs.smb.client.rdmaReadWriteThreshold", "16384");
            props.setProperty("jcifs.smb.client.rdmaMaxSendSize", "131072");
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 23 05:11:12 GMT 2025
    - 5.1K bytes
    - Click Count (0)
  3. src/main/java/jcifs/config/PropertyConfiguration.java

            if (value != null) {
                this.useRDMA = Boolean.parseBoolean(value);
            }
    
            value = props.getProperty("jcifs.smb.client.rdmaProvider");
            if (value != null) {
                this.rdmaProvider = value;
            }
    
            value = props.getProperty("jcifs.smb.client.rdmaReadWriteThreshold");
            if (value != null) {
                try {
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sun Aug 24 00:49:49 GMT 2025
    - 13.3K bytes
    - Click Count (0)
  4. docs/SMB3_IMPLEMENTATION_PLAN.md

    ├── RdmaNegotiate.java           - RDMA negotiation context
    ├── 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
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 02:53:50 GMT 2025
    - 10.7K bytes
    - Click Count (0)
Back to Top