- Sort Score
- Result 10 results
- Languages All
Results 101 - 110 of 192 for 1024 (0.04 sec)
-
api/go1.13.txt
pkg os (netbsd-arm64-cgo), const O_APPEND = 8 pkg os (netbsd-arm64-cgo), const O_CREATE = 512 pkg os (netbsd-arm64-cgo), const O_EXCL = 2048 pkg os (netbsd-arm64-cgo), const O_SYNC = 128 pkg os (netbsd-arm64-cgo), const O_TRUNC = 1024 pkg os (netbsd-arm64-cgo), const PathListSeparator = 58 pkg os (netbsd-arm64-cgo), const PathSeparator = 47 pkg os (netbsd-arm64), const DevNull = "/dev/null" pkg os (netbsd-arm64), const O_APPEND = 8
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Thu Aug 08 18:44:16 UTC 2019 - 452.6K bytes - Viewed (0) -
cmd/server_test.go
c.Assert(err, nil) // execute the request. response, err = s.client.Do(req) c.Assert(err, nil) verifyError(c, response, "InvalidArgument", "Size of filter rule value cannot exceed 1024 bytes in UTF-8 representation", http.StatusBadRequest) req, err = newTestSignedBadSHARequest(http.MethodGet, getListenNotificationURL(s.endPoint, bucketName, []string{}, []string{}, validEvents),
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Jul 15 16:28:02 UTC 2024 - 116.3K bytes - Viewed (0) -
cmd/xl-storage_test.go
0, 5, nil, errFileNameTooLong, }, // Path length is > 1024 chars long. - 5 {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed Aug 14 17:11:51 UTC 2024 - 66.7K bytes - Viewed (0) -
api/go1.10.txt
pkg debug/macho, const FlagIncrLink = 2 pkg debug/macho, const FlagIncrLink uint32 pkg debug/macho, const FlagLazyInit = 64 pkg debug/macho, const FlagLazyInit uint32 pkg debug/macho, const FlagNoFixPrebinding = 1024 pkg debug/macho, const FlagNoFixPrebinding uint32 pkg debug/macho, const FlagNoHeapExecution = 16777216 pkg debug/macho, const FlagNoHeapExecution uint32 pkg debug/macho, const FlagNoMultiDefs = 512
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Tue Feb 06 05:00:01 UTC 2018 - 30.1K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/internal/http2/Http2ConnectionTest.kt
val connection = connect(peer) val stream1 = connection.newStream(headerEntries("b", "bark"), false) val source = stream1.getSource() val buffer = Buffer() while (buffer.size != 1024L) source.read(buffer, 1024) stream1.close(ErrorCode.CANCEL, null) val frame1 = peer.takeFrame() assertThat(frame1.type).isEqualTo(Http2.TYPE_HEADERS) val frame2 = peer.takeFrame()
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Apr 20 17:03:43 UTC 2024 - 75.4K bytes - Viewed (0) -
doc/go1.17_spec.html
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Thu Oct 10 18:25:45 UTC 2024 - 211.6K bytes - Viewed (0) -
cmd/data-scanner.go
dataScannerStartDelay = 1 * time.Minute // Time to wait on startup and between cycles. healDeleteDangling = true healObjectSelectProb = 1024 // Overall probability of a file being scanned; one in n. ) var ( globalHealConfig heal.Config // Sleeper values are updated when config is loaded.
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Oct 22 21:10:34 UTC 2024 - 48.4K bytes - Viewed (0) -
cmd/erasure-server-pool.go
distributionAlgo: formatErasureVersionV3DistributionAlgoV3, } ) // Maximum number of reusable buffers per node at any given point in time. n := uint64(1024) // single node single/multiple drives set this to 1024 entries if globalIsDistErasure { n = 2048 } // Avoid allocating more than half of the available memory if maxN := availableMemory() / (blockSizeV2 * 2); n > maxN { n = maxN
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sun Sep 29 22:40:36 UTC 2024 - 89.8K bytes - Viewed (0) -
cmd/xl-storage.go
if runtime.GOOS == "darwin" && len(pathName) > 1016 { return errFileNameTooLong } // Disallow more than 1024 characters on windows, there // are no known name_max limits on Windows. if runtime.GOOS == "windows" && len(pathName) > 1024 { return errFileNameTooLong } // On Unix we reject paths if they are just '.', '..' or '/'
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sat Oct 26 09:58:27 UTC 2024 - 91.3K bytes - Viewed (0) -
internal/grid/connection.go
continue } case toSend = <-c.outQueue: if len(toSend) == 0 { continue } } if len(queue) < maxMergeMessages && queueSize+len(toSend) < writeBufferSize-1024 { if len(c.outQueue) == 0 { // Yield to allow more messages to fill. runtime.Gosched() } if len(c.outQueue) > 0 { queue = append(queue, toSend) queueSize += len(toSend)
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Jul 29 18:10:04 UTC 2024 - 46.7K bytes - Viewed (0)