Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for rdmaReadWriteThreshold (1.02 sec)

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

            if (value != null) {
                this.rdmaProvider = value;
            }
    
            value = props.getProperty("jcifs.smb.client.rdmaReadWriteThreshold");
            if (value != null) {
                try {
                    this.rdmaReadWriteThreshold = Integer.parseInt(value);
                } catch (NumberFormatException e) {
                    // Invalid value ignored
                }
            }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:49:49 UTC 2025
    - 13.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/config/BaseConfiguration.java

            }
    
            // Initialize RDMA defaults
            if (this.rdmaProvider == null) {
                this.rdmaProvider = "auto";
            }
            if (this.rdmaReadWriteThreshold == 0) {
                this.rdmaReadWriteThreshold = 8192; // 8KB
            }
            if (this.rdmaMaxSendSize == 0) {
                this.rdmaMaxSendSize = 65536; // 64KB
            }
            if (this.rdmaMaxReceiveSize == 0) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 36.5K bytes
    - Viewed (0)
  3. docs/smb3-features/05-rdma-smb-direct-design.md

    public static final String USE_RDMA = "jcifs.smb.client.useRDMA";
    public static final String RDMA_PROVIDER = "jcifs.smb.client.rdmaProvider";
    public static final String RDMA_READ_WRITE_THRESHOLD = "jcifs.smb.client.rdmaReadWriteThreshold";
    public static final String RDMA_MAX_SEND_SIZE = "jcifs.smb.client.rdmaMaxSendSize";
    public static final String RDMA_MAX_RECEIVE_SIZE = "jcifs.smb.client.rdmaMaxReceiveSize";
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 35.9K bytes
    - Viewed (0)
Back to top