- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 192 for Large (0.05 sec)
-
cmd/bucket-stats.go
} else { bs.XferRateSml.addSize(sz, duration) } } // RMetricName - name of replication metric type RMetricName string const ( // Large - objects larger than 128MiB Large RMetricName = "Large" // Small - objects smaller than 128MiB Small RMetricName = "Small" // Total - metric pertaining to totals Total RMetricName = "Total" )
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Sep 12 11:39:51 UTC 2024 - 13.4K bytes - Viewed (0) -
src/cmd/asm/internal/asm/testdata/amd64error.s
MOVQ 3395469782(R10), R8 // ERROR "offset too large" LEAQ 3395469782(AX), AX // ERROR "offset too large" ADDQ 3395469782(AX), AX // ERROR "offset too large" ADDL 3395469782(AX), AX // ERROR "offset too large" ADDW 3395469782(AX), AX // ERROR "offset too large" LEAQ 433954697820(AX), AX // ERROR "offset too large"
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Jun 14 00:03:57 UTC 2023 - 8.9K bytes - Viewed (0) -
RELEASE_BRANCHES.md
* For large fixes (>100 LOC that’s not from generated files), SMEs from that area must also approve the PR. ## Bug Fixes * Bug fixes will not be merged in until the first release has been published, unless it addresses a critical issue. * All changes should have an associated GitHub issue and/or a release note.
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Sep 16 21:14:17 UTC 2024 - 4.2K bytes - Viewed (0) -
internal/hash/errors.go
} func (e SizeTooSmall) Error() string { return fmt.Sprintf("Size small: got %d, want %d", e.Got, e.Want) } // SizeTooLarge reader size too large type SizeTooLarge struct { Want int64 Got int64 } func (e SizeTooLarge) Error() string { return fmt.Sprintf("Size large: got %d, want %d", e.Got, e.Want) } // SizeMismatch error size mismatch type SizeMismatch struct { Want int64 Got int64 }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon May 15 21:08:54 UTC 2023 - 2.4K bytes - Viewed (0) -
.github/ISSUE_TEMPLATE/11-language-change.yml
- label: "Does this affect error handling?" - label: "Is this about generics?" - label: "Is this change backward compatible? Breaking the Go 1 compatibility guarantee is a large cost and requires a large benefit" - type: textarea id: related-proposals attributes: label: Has this idea, or one like it, been proposed before? description: If so, how does this proposal differ?
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Thu Aug 08 19:02:29 UTC 2024 - 4.7K bytes - Viewed (0) -
internal/s3select/jstream/scanner_test.go
for i := 0; i < b.N; i++ { benchmarkBufioScanner(smallInput) } }) b.Run("medium", func(b *testing.B) { for i := 0; i < b.N; i++ { benchmarkBufioScanner(mediumInput) } }) b.Run("large", func(b *testing.B) { for i := 0; i < b.N; i++ { benchmarkBufioScanner(largeInput) } }) } func benchmarkBufioScanner(b []byte) { s := bufio.NewScanner(bytes.NewReader(b))
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Sep 23 19:35:41 UTC 2024 - 3.2K bytes - Viewed (0) -
internal/s3select/jstream/README.md
Two file sizes are used -- regular (1.6mb, 1000 objects) and large (128mb, 100000 objects) input size | lib | MB/s | Allocated --- | --- | --- | --- regular | standard | 97 | 3.6MB regular | jstream | 175 | 2.1MB large | standard | 92 | 305MB large | jstream | 404 | 69MB
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Sep 23 19:35:41 UTC 2024 - 3.2K bytes - Viewed (0) -
common/scripts/check_clean_repo.sh
# shellcheck disable=SC2319 IN_PROW="$?" # Don't persist large diffs (30M+) on CI LARGE_FILE="$(find "${ARTIFACTS}" -name "${PATCH_NAME}" -type 'f' -size +30M)" if [ "${IN_PROW}" -eq 0 ] && [ -n "${LARGE_FILE}" ]; then rm "${PATCH_OUT}" echo "WARNING: patch file was too large to persist ($(du -h "${PATCH_OUT}"))" return 0 fi
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Jun 27 16:44:16 UTC 2024 - 1.7K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/internal/UtilTest.kt
assertThrows<IllegalArgumentException> { checkDuration( "timeout", 1L + Int.MAX_VALUE.toLong(), TimeUnit.MILLISECONDS, ) }, ).hasMessage("timeout too large") } @Test fun testDurationDuration() { assertThat(checkDuration("timeout", 0.milliseconds)).isEqualTo(0) assertThat(checkDuration("timeout", 1.milliseconds)).isEqualTo(1) assertThat(
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 3K bytes - Viewed (0) -
src/bytes/buffer.go
opReadRune4 readOp = 4 // Read rune of size 4. ) // ErrTooLarge is passed to panic if memory cannot be allocated to store data in a buffer. var ErrTooLarge = errors.New("bytes.Buffer: too large") var errNegativeRead = errors.New("bytes.Buffer: reader returned negative count from Read") const maxInt = int(^uint(0) >> 1) // Bytes returns a slice of length b.Len() holding the unread portion of the buffer.
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Tue Oct 29 16:47:05 UTC 2024 - 15.7K bytes - Viewed (0)