Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for 10485760 (0.12 sec)

  1. cmd/xl-storage_test.go

    	const legacyJSON = `{"version":"1.0.1","format":"xl","stat":{"size":2016,"modTime":"2021-10-11T23:40:34.914361617Z"},"erasure":{"algorithm":"klauspost/reedsolomon/vandermonde","data":2,"parity":2,"blockSize":10485760,"index":2,"distribution":[2,3,4,1],"checksum":[{"name":"part.1","algorithm":"highwayhash256S"}]},"minio":{"release":"RELEASE.2019-12-30T05-45-39Z"},"meta":{"X-Minio-Internal-Server-Side-Encryption-Iv":"kInsJB/0yxyz/40ZI+lmQYJfZacDYqZsGh2wEiv+N50...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 11 17:45:28 UTC 2024
    - 66.7K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/arm.s

    	ADD	$0x000fffff, R0, R1 // ADD $1048575, R0, R1    // 011680e2011041e2
    	ADC	$0x000fffff, R0, R1 // ADC $1048575, R0, R1    // 0116a0e2011041e2
    	SUB	$0x000fffff, R0, R1 // SUB $1048575, R0, R1    // 011640e2011081e2
    	SBC	$0x000fffff, R0, R1 // SBC $1048575, R0, R1    // 0116c0e2011081e2
    	RSB	$0x000fffff, R0, R1 // RSB $1048575, R0, R1    // 011660e2011041e2
    	RSC	$0x000fffff, R0, R1 // RSC $1048575, R0, R1    // 0116e0e2011041e2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 69K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/celcoststability_test.go

    				"self.val1 == self.val2":                              104862,
    				"'a' in self.val1":                                    1048577,
    				"self.val2[0] in self.val1":                           1048580,
    				"!('x' in self.val1)":                                 1048578,
    				"self.val1 + self.val2 == ['a', 'b', 'c']":            16,
    				"self.val1 + ['c', 'd'] == ['a', 'b', 'c', 'd']":      24,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:20:16 UTC 2024
    - 80.2K bytes
    - Viewed (0)
  4. integration-tests/gradle/gradle/wrapper/gradle-wrapper.jar

    synchronized class Download implements IDownload { public static final String UNKNOWN_VERSION = 0; public static final int DEFAULT_NETWORK_TIMEOUT_MILLISECONDS = 10000; private static final int BUFFER_SIZE = 10240; private static final int PROGRESS_CHUNK = 1048576; private final Logger logger; private final String appName; private final String appVersion; private final DownloadProgressList progressListener; private final java.util.Map systemProperties; private final int networkTimeout; public void Download(Logger,...
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 31 19:07:19 UTC 2023
    - 62.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    		{1000, DecimalSI, "1", true},
    		{1234000, DecimalSI, "1234", true},
    		{1024, BinarySI, "1024m", false}, // Format changes
    		{1000000, "invalidFormatDefaultsToExponent", "1e3", true},
    		{1024 * 1024, BinarySI, "1048576m", false}, // Format changes
    	}
    
    	for _, item := range table {
    		q := NewMilliQuantity(item.value, item.format)
    		if e, a := item.expect, q.String(); e != a {
    			t.Errorf("Expected %v, got %v; %#v", e, a, q)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  6. src/runtime/asm_amd64.s

    	DISPATCH(runtime·call32768, 32768)
    	DISPATCH(runtime·call65536, 65536)
    	DISPATCH(runtime·call131072, 131072)
    	DISPATCH(runtime·call262144, 262144)
    	DISPATCH(runtime·call524288, 524288)
    	DISPATCH(runtime·call1048576, 1048576)
    	DISPATCH(runtime·call2097152, 2097152)
    	DISPATCH(runtime·call4194304, 4194304)
    	DISPATCH(runtime·call8388608, 8388608)
    	DISPATCH(runtime·call16777216, 16777216)
    	DISPATCH(runtime·call33554432, 33554432)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/asm/testdata/arm64.s

    	CMPW	$27745, R2                      // 3b8c8d525f001b6b
    	CMNW	$0x3fffffc0, R2                 // CMNW	$1073741760, R2                   // fb5f1a325f001b2b
    	CMPW	$0xffff0, R1                    // CMPW	$1048560, R1                      // fb3f1c323f001b6b
    	CMP	$0xffffffffffa0, R3             // CMP	$281474976710560, R3              // fb0b80921b00e0f27f001beb
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 03:28:17 UTC 2023
    - 94.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    			setMaxElements:   40000,
    			expectedSetCost:  0,
    		},
    		{
    			name:             "map of durations with all",
    			schemaGenerator:  genMapWithRule("duration", "self.all(x, true)"),
    			expectedCalcCost: 1048577,
    			setMaxElements:   5,
    			expectedSetCost:  17,
    		},
    		{
    			name:             "map of durations with has",
    			schemaGenerator:  genMapWithRule("duration", "has(self.x)"),
    			expectedCalcCost: 0,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
Back to top