Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for getRdmaMaxSendSize (0.07 sec)

  1. src/test/java/jcifs/internal/smb2/rdma/RdmaConfigurationTest.java

            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");
            assertEquals(65536, config.getRdmaMaxReceiveSize(), "Default max receive 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)
  2. 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
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 24.1K bytes
    - Viewed (0)
  3. 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
    }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 35.9K bytes
    - Viewed (0)
  4. 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
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 25.4K bytes
    - Viewed (0)
  5. 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;
        }
    
        @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)
Back to top