Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 317 for 4996 (0.09 sec)

  1. src/runtime/textflag.h

    #define REFLECTMETHOD 1024
    // Function is the outermost frame of the call stack. Call stack unwinders
    // should stop at this function.
    #define TOPFRAME 2048
    // Function is an ABI wrapper.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 01 17:28:41 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. tests/integration/security/sds_ingress/util/generate_certs.sh

    basicConstraints = CA:FALSE
    keyUsage = nonRepudiation, digitalSignature, keyEncipherment
    extendedKeyUsage = clientAuth, serverAuth
    subjectAltName = @alt_names
    [alt_names]
    DNS = *.example.com
    EOF
    
    openssl req -new -newkey rsa:4096 -x509 -sha256 \
            -days 3650 -nodes -out "${WD}/rootA.crt" -keyout "${WD}/rootA.key" \
            -subj "/C=US/ST=Denial/L=Ether/O=Dis/CN=*.example.com" \
            -addext "subjectAltName = DNS:*.example.com"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 05 22:01:21 UTC 2023
    - 5K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/internal/http2/HuffmanTest.kt

        val s = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"
        for (i in s.indices) {
          assertRoundTrip(s.substring(0, i).encodeUtf8())
        }
        val random = Random(123456789L)
        val buf = ByteArray(4096)
        random.nextBytes(buf)
        assertRoundTrip(buf.toByteString())
      }
    
      private fun assertRoundTrip(data: ByteString) {
        val encodeBuffer = Buffer()
        encode(data, encodeBuffer)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Jan 04 05:32:07 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. src/runtime/cgo/gcc_arm64.S

     * must be saved explicitly, along with x30 (LR).
     */
    .globl EXT(crosscall1)
    EXT(crosscall1):
    	.cfi_startproc
    	stp x29, x30, [sp, #-96]!
    	.cfi_def_cfa_offset 96
    	.cfi_offset 29, -96
    	.cfi_offset 30, -88
    	mov x29, sp
    	.cfi_def_cfa_register 29
    	stp x19, x20, [sp, #80]
    	.cfi_offset 19, -16
    	.cfi_offset 20, -8
    	stp x21, x22, [sp, #64]
    	.cfi_offset 21, -32
    	.cfi_offset 22, -24
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 05 16:41:48 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  5. test/fixedbugs/issue29919.dir/a.go

    // Make sure tracebacks from initialization code are reported correctly.
    
    package a
    
    import (
    	"fmt"
    	"runtime"
    	"strings"
    )
    
    var x = f() // line 15
    
    func f() int {
    	var b [4096]byte
    	n := runtime.Stack(b[:], false) // line 19
    	s := string(b[:n])
    	var pcs [10]uintptr
    	n = runtime.Callers(1, pcs[:]) // line 22
    
    	// Check the Stack results.
    	if debug {
    		println(s)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 24 17:50:47 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  6. cmd/sts-datatypes.go

    	//
    	// Note: The size of the security token that STS APIs return is not fixed. We
    	// strongly recommend that you make no assumptions about the maximum size. As
    	// of this writing, the typical size is less than 4096 bytes, but that can vary.
    	// Also, future updates to AWS might require larger sizes.
    	Credentials auth.Credentials `xml:",omitempty"`
    
    	// A percentage value that indicates the size of the policy in packed form.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 27 00:58:09 UTC 2022
    - 9.9K bytes
    - Viewed (0)
  7. src/math/huge_test.go

    	1 << 30,
    	1 << 35,
    	1 << 120,
    	1 << 240,
    	1 << 480,
    	1234567891234567 << 180,
    	1234567891234567 << 300,
    	MaxFloat64,
    }
    
    // Results for trigHuge[i] calculated with https://github.com/robpike/ivy
    // using 4096 bits of working precision.   Values requiring less than
    // 102 decimal digits (1 << 120, 1 << 240, 1 << 480, 1234567891234567 << 180)
    // were confirmed via https://keisan.casio.com/
    var cosHuge = []float64{
    	-0.16556897949057876,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 16:23:41 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/internal/http2/HpackTest.kt

        hpackWriter = Hpack.Writer(4096, false, bytesOut)
      }
    
      /**
       * Variable-length quantity special cases strings which are longer than 127 bytes.  Values such as
       * cookies can be 4KiB, and should be possible to send.
       *
       *  http://tools.ietf.org/html/draft-ietf-httpbis-header-compression-12#section-5.2
       */
      @Test
      fun largeHeaderValue() {
        val value = CharArray(4096)
        Arrays.fill(value, '!')
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  9. .github/workflows/mint/nginx-1-node.conf

    user  nginx;
    worker_processes  auto;
    
    error_log  /var/log/nginx/error.log warn;
    pid        /var/run/nginx.pid;
    
    events {
        worker_connections  4096;
    }
    
    http {
        include       /etc/nginx/mime.types;
        default_type  application/octet-stream;
    
        log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                          '$status $body_bytes_sent "$http_referer" '
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 31 21:38:10 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  10. .github/workflows/mint/nginx-4-node.conf

    user  nginx;
    worker_processes  auto;
    
    error_log  /var/log/nginx/error.log warn;
    pid        /var/run/nginx.pid;
    
    events {
        worker_connections  4096;
    }
    
    http {
        include       /etc/nginx/mime.types;
        default_type  application/octet-stream;
    
        log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                          '$status $body_bytes_sent "$http_referer" '
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 16:52:29 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top