Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for dataSize (0.06 sec)

  1. docs/smb3-features/05-rdma-smb-direct-design.md

            }
        }
        
        private boolean shouldUseRdmaReadWrite(ServerMessageBlock2 request) {
            if (!rdmaReadWriteEnabled) return false;
            
            int dataSize = getDataSize(request);
            return dataSize > 8192 && dataSize <= maxReadWriteSize;  // Use RDMA for large transfers
        }
        
        private void sendWithRdmaReadWrite(ServerMessageBlock2 request) throws IOException {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 35.9K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/smb2/io/Smb2WriteRequestTest.java

            @CsvSource({ "1024, 0, 1024", "1024, 100, 900", "1024, 500, 524", "2048, 1024, 1024", "4096, 2048, 2048", "65536, 32768, 32768" })
            void testVariousOffsetsAndLengths(int dataSize, int offset, int length) {
                byte[] data = new byte[dataSize];
                assertDoesNotThrow(() -> request.setData(data, offset, length));
            }
        }
    
        @Nested
        @DisplayName("Parameter Setting Tests")
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 22.4K bytes
    - Viewed (0)
  3. cmd/erasure-healing_test.go

    			t.Fatalf("Unexpected drive state (%d): %v", i+1, h.State)
    		}
    	}
    }
    
    func TestHealLastDataShard(t *testing.T) {
    	tests := []struct {
    		name     string
    		dataSize int64
    	}{
    		{"4KiB", 4 * humanize.KiByte},
    		{"64KiB", 64 * humanize.KiByte},
    		{"128KiB", 128 * humanize.KiByte},
    		{"1MiB", 1 * humanize.MiByte},
    		{"5MiB", 5 * humanize.MiByte},
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 48.5K bytes
    - Viewed (0)
  4. buildscripts/verify-build.sh

    export GOGC=25
    export ENABLE_ADMIN=1
    export MINIO_CI_CD=1
    
    MINIO_CONFIG_DIR="$WORK_DIR/.minio"
    MINIO=("$PWD/minio" --config-dir "$MINIO_CONFIG_DIR")
    
    FILE_1_MB="$MINT_DATA_DIR/datafile-1-MB"
    FILE_65_MB="$MINT_DATA_DIR/datafile-65-MB"
    
    FUNCTIONAL_TESTS="$WORK_DIR/functional-tests.sh"
    
    function start_minio_fs() {
    	export MINIO_ROOT_USER=$ACCESS_KEY
    	export MINIO_ROOT_PASSWORD=$SECRET_KEY
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri May 24 19:28:51 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  5. docs/debugging/xl-meta/main.go

    						filemap[file][verID+".json"] = buf.String()
    						for _, i := range ei.V2Obj.PartNums {
    							if len(ei.V2Obj.MetaSys.Inline) != 0 {
    								break
    							}
    							file := file
    							dataFile := fmt.Sprintf("%s%s/part.%d", strings.TrimSuffix(file, "xl.meta"), uuid.UUID(ei.V2Obj.DDir).String(), i)
    							if i > 1 {
    								file = fmt.Sprintf("%s/part.%d", file, i)
    								filemap[file] = make(map[string]string)
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 40.3K bytes
    - Viewed (0)
  6. okhttp/src/jvmTest/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    darklang.io
    
    // DataDetect, LLC. : https://datadetect.com
    // Submitted by Andrew Banchich <******@****.***>
    demo.datadetect.com
    instance.datadetect.com
    
    // Datawire, Inc : https://www.datawire.io
    // Submitted by Richard Li <secalert@datawire.io>
    edgestack.me
    
    // Datto, Inc. : https://www.datto.com/
    // Submitted by Philipp Heckel <******@****.***>
    dattolocal.com
    dattorelay.com
    dattoweb.com
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 309.7K bytes
    - Viewed (1)
Back to top