Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for 8KB (0.01 sec)

  1. src/main/java/jcifs/internal/smb2/rdma/RdmaCapabilities.java

        /**
         * Default target number of send credits
         */
        public static final int DEFAULT_SEND_CREDIT_TARGET = 32;
    
        /**
         * Default maximum receive size (8KB)
         */
        public static final int DEFAULT_MAX_RECEIVE_SIZE = 8192;
    
        /**
         * Default maximum fragmented size (128KB)
         */
        public static final int DEFAULT_MAX_FRAGMENTED_SIZE = 131072; // 128KB
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 05:11:12 UTC 2025
    - 2K bytes
    - Viewed (0)
  2. 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)
  3. src/test/java/jcifs/internal/smb2/rdma/RdmaIntegrationTest.java

                RdmaMemoryRegion sendBuffer = bufferManager.getSendRegion(8192);
                assertNotNull(sendBuffer, "Send buffer should be allocated");
                assertTrue(sendBuffer.getSize() >= 8192, "Send buffer should be at least 8KB");
    
                RdmaMemoryRegion recvBuffer = bufferManager.getReceiveRegion();
                assertNotNull(recvBuffer, "Receive buffer should be allocated");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 05:11:12 UTC 2025
    - 13.8K bytes
    - Viewed (0)
  4. 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
    }
    
    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)
  5. src/main/java/jcifs/config/BaseConfiguration.java

            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) {
                this.rdmaMaxReceiveSize = 65536; // 64KB
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 36.5K bytes
    - Viewed (0)
  6. guava/src/com/google/common/io/ByteStreams.java

          throws IOException {
        // Roughly size to match what has been read already. Some file systems, such as procfs, return 0
        // as their length. These files are very small, so it's wasteful to allocate an 8KB buffer.
        int initialBufferSize = min(BUFFER_SIZE, max(128, Integer.highestOneBit(totalLen) * 2));
        // Starting with an 8k buffer, double the size of each successive buffer. Smaller buffers
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Jul 17 15:26:41 UTC 2025
    - 31.1K bytes
    - Viewed (0)
Back to top