Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for 8192 (0.11 sec)

  1. 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)
  2. 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)
  3. samples/bookinfo/src/productpage/requirements.in

    opentelemetry-instrumentation-wsgi==0.43b0
    opentelemetry-propagator-b3==1.22.0
    opentelemetry-sdk==1.22.0
    opentelemetry-semantic-conventions==0.43b0
    opentelemetry-util-http==0.43b0
    prometheus-client==0.19.0
    requests==2.31.0
    simplejson==3.19.2
    urllib3==2.2.0
    gunicorn==22.0.0
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 485 bytes
    - Viewed (0)
  4. docs/orchestration/docker-compose/docker-compose.yaml

        volumes:
          - data3-1:/data1
          - data3-2:/data2
    
      minio4:
        <<: *minio-common
        hostname: minio4
        volumes:
          - data4-1:/data1
          - data4-2:/data2
    
      nginx:
        image: nginx:1.19.2-alpine
        hostname: nginx
        volumes:
          - ./nginx.conf:/etc/nginx/nginx.conf:ro
        ports:
          - "9000:9000"
          - "9001:9001"
        depends_on:
          - minio1
          - minio2
          - minio3
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 05:40:03 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. buildscripts/upgrade-tests/compose.yml

          - data3-3:/data3
    
      minio4:
        <<: *minio-common
        hostname: minio4
        volumes:
          - data4-1:/data1
          - data4-2:/data2
          - data4-3:/data3
    
      nginx:
        image: nginx:1.19.2-alpine
        volumes:
          - ./nginx.conf:/etc/nginx/nginx.conf:ro
        ports:
        - "9000:9000"
        - "9001:9001"
        depends_on:
          - minio1
          - minio2
          - minio3
          - minio4
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 05:08:11 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. .github/workflows/mint/minio-resiliency.yaml

          - rdata3-1:/rdata1
          - rdata3-2:/rdata2
    
      minio4:
        <<: *minio-common
        hostname: minio4
        volumes:
          - rdata4-1:/rdata1
          - rdata4-2:/rdata2
    
      nginx:
        image: nginx:1.19.2-alpine
        hostname: nginx
        volumes:
          - ./nginx-4-node.conf:/etc/nginx/nginx.conf:ro
        ports:
          - "9000:9000"
          - "9001:9001"
        depends_on:
          - minio1
          - minio2
          - minio3
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. tests/integration/security/ca_custom_root/main_test.go

    				Protocol:     protocol.HTTP,
    				ServicePort:  8091,
    				WorkloadPort: 8091,
    			},
    			{
    				Name:         tcpPlaintext,
    				Protocol:     protocol.TCP,
    				ServicePort:  8092,
    				WorkloadPort: 8092,
    			},
    			{
    				Name:         tcpMTLS,
    				Protocol:     protocol.TCP,
    				ServicePort:  8093,
    				WorkloadPort: 8093,
    			},
    			{
    				Name:         tcpWL,
    				WorkloadPort: 9000,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  8. tests/integration/security/util/framework.go

    				TLS:          true,
    			},
    			{
    				Name:         "http-8091",
    				Protocol:     protocol.HTTP,
    				WorkloadPort: 8091,
    			},
    			{
    				Name:         "http-8092",
    				Protocol:     protocol.HTTP,
    				WorkloadPort: 8092,
    			},
    			{
    				Name:         "tcp-8093",
    				Protocol:     protocol.TCP,
    				WorkloadPort: 8093,
    			},
    			{
    				Name:         "tcp-8094",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  9. tests/integration/security/filebased_tls_origination/main_test.go

    			{
    				Name:         "http",
    				Protocol:     protocol.HTTP,
    				WorkloadPort: 8091,
    				TLS:          true,
    			},
    			{
    				Name:         "tcp",
    				Protocol:     protocol.TCP,
    				WorkloadPort: 8092,
    				TLS:          true,
    			},
    		},
    		// Set up TLS certs on the server. This will make the server listen with these credentials.
    		TLSSettings: &common.TLSSettings{
    			RootCert:   mustReadCert("root-cert.pem"),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  10. src/crypto/tls/testdata/Client-TLSv13-Ed25519

    00000100  53 8f f8 3b ed 2c df b9  08 c2 da 60 b9 23 17 50  |S..;.,.....`.#.P|
    00000110  da 0f 24 76 15 21 e6 e9  a8 f5 3e 08 cc 1b ee 92  |..$v.!....>.....|
    00000120  2b 01 92 8d f9 4f 5a 3a  53 11 fc 32 52 cc af cd  |+....OZ:S..2R...|
    00000130  7b 94 0e 76 10 c2 16 36  2d a4 64 69 1c 05 70 20  |{..v...6-.di..p |
    00000140  0d 23 cd 4a 33 c5 c7 db  db 0f f8 b6 42 0c 83 0a  |.#.J3.......B...|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 5.2K bytes
    - Viewed (0)
Back to top