Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 50 for 8192 (0.05 sec)

  1. platforms/core-runtime/io/src/main/java/org/gradle/internal/io/LineBufferingOutputStream.java

        private final byte lastLineSeparatorByte;
        private final int lineMaxLength;
        private int counter;
    
        public LineBufferingOutputStream(TextStream handler, String lineSeparator) {
            this(handler, lineSeparator, 8192);
        }
    
        public LineBufferingOutputStream(TextStream handler, String lineSeparator, int bufferLength) {
            this(handler, lineSeparator, bufferLength, LINE_MAX_LENGTH);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 08:51:14 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. tests/util/pki/apiserver.crt

             26:b5:cd:64:f0:94:fa:9e:7f:86:6e:9c:64:ed:e2:dc:7b:97:
             8d:14:95:33:1d:8e:08:20:ca:4d:3b:25:53:6a:5f:5f:9c:fc:
             d7:cb:3f:c8:7d:1e:ee:17:ea:a0:ec:4f:ef:f8:a0:47:8c:35:
             99:44:bd:60:c8:34:ee:55:53:9f:81:92:a7:2c:2d:7b:a3:50:
             f0:02:b9:fb:fa:98:f4:d6:6d:ba:da:bd:fe:88:a7:db:a3:78:
             0a:af:2e:fc:25:f2:e1:96:a8:de:15:14:f4:ef:0c:af:a0:2c:
             7c:3a:91:aa:fa:d9:cd:80:53:77:0b:7b:5b:e0:d6:87:47:38:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Aug 10 19:14:58 UTC 2019
    - 4.8K bytes
    - Viewed (0)
  3. src/os/dir_unix.go

    	nbuf int     // length of buf; return value from Getdirentries
    	bufp int     // location of next record in buf.
    }
    
    const (
    	// More than 5760 to work around https://golang.org/issue/24015.
    	blockSize = 8192
    )
    
    var dirBufPool = sync.Pool{
    	New: func() any {
    		// The buffer must be at least a block long.
    		buf := make([]byte, blockSize)
    		return &buf
    	},
    }
    
    func (d *dirInfo) close() {
    	if d.buf != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 20:11:45 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/classpath/InPlaceClasspathBuilder.java

    import java.util.HashSet;
    import java.util.Objects;
    import java.util.Set;
    
    @NonNullApi
    public class InPlaceClasspathBuilder implements ClasspathBuilder {
        private static final int BUFFER_SIZE = 8192;
    
        @Override
        public void jar(File jarFile, Action action) {
            try {
                buildJar(jarFile, action);
            } catch (Exception e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 14:05:09 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. releasenotes/notes/38192.yaml

    zirain <******@****.***> 1651112733 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 28 02:25:33 UTC 2022
    - 128 bytes
    - Viewed (0)
  9. tests/integration/security/ca_custom_root/trust_domain_validation_test.go

    	// ports with plaintext: 8090 (http) and 8092 (tcp)
    	// ports with mTLS: 8091 (http), 8093 (tcp) and 9000 (tcp passthrough).
    	policy = `
    apiVersion: security.istio.io/v1beta1
    kind: PeerAuthentication
    metadata:
      name: "mtls"
    spec:
      selector:
        matchLabels:
          app: server
      mtls:
        mode: STRICT
      portLevelMtls:
        8090:
          mode: DISABLE
        8092:
          mode: DISABLE
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  10. test/fixedbugs/bug349.go

    // errorcheck
    
    // Copyright 2011 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // issue 1192 - detail in error
    
    package main
    
    func foo() (a, b, c int) {
    	return 0, 1 2.01  // ERROR "unexpected literal 2.01|expected ';' or '}' or newline|not enough arguments to return"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 367 bytes
    - Viewed (0)
Back to top