Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 178 for 8192 (0.09 sec)

  1. src/runtime/mranges_test.go

    	)
    
    	// Push a bunch of independent ranges to the end to try and force growth.
    	expectedRanges := []AddrRange{MakeAddrRange(512, 8192)}
    	for i := uintptr(0); i < 64; i++ {
    		dRange := MakeAddrRange(8192+(i+1)*2048, 8192+(i+1)*2048+10)
    		a.Add(dRange)
    		expectedRanges = append(expectedRanges, dRange)
    		validateAddrRanges(t, &a, expectedRanges...)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 23 23:01:52 UTC 2020
    - 5.7K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/internal/http2/HpackTest.kt

          0x3F, 0xE1, 0xF,
          0x40, 3, 'f'.code, 'o'.code, 'o'.code, 3, 'b'.code, 'a'.code, 'r'.code,
        )
        hpackWriter!!.resizeHeaderTable(8192)
        hpackWriter!!.writeHeaders(listOf(Header("bar", "foo")))
        assertBytes(
          // Dynamic table size update (size = 8192).
          0x3F, 0xE1, 0x3F,
          0x40, 3, 'b'.code, 'a'.code, 'r'.code, 3, 'f'.code, 'o'.code, 'o'.code,
        )
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  3. docs/bigdata/README.md

    fs.s3a.connection.timeout=200000
    fs.s3a.endpoint=http://minio:9000
    fs.s3a.impl=org.apache.hadoop.fs.s3a.S3AFileSystem
    
    fs.s3a.committer.threads=2048 # Number of threads writing to MinIO
    fs.s3a.connection.maximum=8192 # Maximum number of concurrent conns
    fs.s3a.fast.upload.active.blocks=2048 # Number of parallel uploads
    fs.s3a.fast.upload.buffer=disk # Use disk as the buffer for uploads
    fs.s3a.fast.upload=true # Turn on fast upload mode
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 14.7K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/MultipartReader.kt

          } else {
            // This is a subsequent part or a preamble. Skip until "\r\n--" followed by the boundary.
            while (true) {
              val toSkip = currentPartBytesRemaining(maxResult = 8192)
              if (toSkip == 0L) break
              source.skip(toSkip)
            }
            source.skip(crlfDashDashBoundary.size.toLong())
          }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/AbstractDirectorySensitivityIntegrationSpec.groovy

                            }
                        }
                    }
    
                    static void copy(InputStream source, OutputStream target) throws IOException {
                        byte[] buf = new byte[8192]
                        int length
                        while ((length = source.read(buf)) > 0) {
                            target.write(buf, 0, length)
                        }
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/internal/-UtilJvm.kt

        } else {
          Long.MAX_VALUE
        }
      timeout().deadlineNanoTime(nowNs + minOf(originalDurationNs, timeUnit.toNanos(duration.toLong())))
      return try {
        val skipBuffer = Buffer()
        while (read(skipBuffer, 8192) != -1L) {
          skipBuffer.clear()
        }
        true // Success! The source has been exhausted.
      } catch (_: InterruptedIOException) {
        false // We ran out of time before exhausting the source.
      } finally {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon May 13 13:42:37 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  7. doc/godebug.md

    Go 1.22 adds a configurable limit to control the maximum acceptable RSA key size
    that can be used in TLS handshakes, controlled by the [`tlsmaxrsasize` setting](/pkg/crypto/tls#Conn.Handshake).
    The default is tlsmaxrsasize=8192, limiting RSA to 8192-bit keys. To avoid
    denial of service attacks, this setting and default was backported to Go
    1.19.13, Go 1.20.8, and Go 1.21.1.
    
    Go 1.22 made it an error for a request or response read by a net/http
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  8. src/image/jpeg/reader_test.go

    	// in issue 10413. It is only 504 bytes, and shouldn't take long for Decode
    	// to return an error. The Start Of Frame marker gives the image dimensions
    	// as 8192 wide and 8192 high, so even if an unreadByteStuffedByte bug
    	// doesn't technically lead to an infinite loop, such a bug can still cause
    	// an unreasonably long loop for such a short input.
    	const input = "" +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 00:46:29 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  9. platforms/core-runtime/io/src/test/groovy/org/gradle/internal/io/StreamByteBufferTest.groovy

            byteBuffer.readFrom(byteArrayInputStream, limit)
    
            then:
            byteBuffer.totalBytesUnread() == limit
            byteBuffer.readAsByteArray() == testBufferPart
    
            where:
            chunkSize = 8192
            limit << [1, 8191, 8192, 8193, 8194]
        }
    
        def "can create buffer from InputStream and limiting size"() {
            given:
            def byteArrayInputStream = new ByteArrayInputStream(testbuffer)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 13:06:08 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  10. src/crypto/x509/oid.go

    }
    
    func newOIDFromDER(der []byte) (OID, bool) {
    	if len(der) == 0 || der[len(der)-1]&0x80 != 0 {
    		return OID{}, false
    	}
    
    	start := 0
    	for i, v := range der {
    		// ITU-T X.690, section 8.19.2:
    		// The subidentifier shall be encoded in the fewest possible octets,
    		// that is, the leading octet of the subidentifier shall not have the value 0x80.
    		if i == start && v == 0x80 {
    			return OID{}, false
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 19:10:38 UTC 2024
    - 8.3K bytes
    - Viewed (0)
Back to top