Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 49 of 49 for broot (0.15 sec)

  1. src/debug/elf/elf.go

    	PT_OPENBSD_WXNEEDED  ProgType = 0x65a3dbe7 /* W^X violations */
    	PT_OPENBSD_NOBTCFI   ProgType = 0x65a3dbe8 /* No branch target CFI */
    	PT_OPENBSD_BOOTDATA  ProgType = 0x65a41be6 /* Boot arguments */
    
    	PT_SUNW_EH_FRAME ProgType = 0x6474e550 /* Frame unwind information */
    	PT_SUNWSTACK     ProgType = 0x6ffffffb /* Stack segment */
    
    	PT_HIOS ProgType = 0x6fffffff /* Last OS-specific. */
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__certificates.k8s.io__v1alpha1_openapi.json

    {
      "components": {
        "schemas": {
          "io.k8s.api.certificates.v1alpha1.ClusterTrustBundle": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 119K bytes
    - Viewed (0)
  3. src/crypto/x509/x509_test.go

    	}
    
    	// Generation command:
    	// openssl req -x509 -newkey rsa -keyout key.pem -out cert.pem -days 365 -nodes -subj '/C=US/ST=California/L=San Francisco/O=Internet Widgets, Inc./OU=WWW/CN=Root/emailAddress=******@****.***' -sha256 -addext basicConstraints=CA:TRUE -addext "keyUsage = digitalSignature, keyEncipherment, dataEncipherment, cRLSign, keyCertSign" -utf8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/ppc64/asm9.go

    	{as: AFTDIV, a1: C_FREG, a2: C_FREG, a6: C_U15CON, type_: 92, size: 4},          /* floating test for sw divide, x-form */
    	{as: AFTSQRT, a1: C_FREG, a6: C_U15CON, type_: 93, size: 4},                     /* floating test for sw square root, x-form */
    	{as: ACOPY, a1: C_REG, a6: C_REG, type_: 92, size: 4},                           /* copy/paste facility, x-form */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  5. src/net/http/transport_test.go

    			}
    
    			// If neither server is HTTPS or both are, then c may be derived from either.
    			// If only one server is HTTPS, c must be derived from that server in order
    			// to ensure that it is configured to use the fake root CA from testcert.go.
    			c := proxy.Client()
    			if siteMode == https1Mode {
    				c = ts.Client()
    			}
    
    			c.Transport.(*Transport).Proxy = ProxyURL(pu)
    			if _, err := c.Head(ts.URL); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1alpha1_openapi.json

    rary#Authz\n- 'authorizer.requestResource' - A CEL ResourceCheck constructed from the 'authorizer' and configured with the\n  request resource.\n\nThe `apiVersion`, `kind`, `metadata.name` and `metadata.generateName` are always accessible from the root of the object. No other metadata properties are accessible.\n\nOnly property names of the form `[a-zA-Z_.-/][a-zA-Z0-9_.-/]*` are accessible. Accessible property names are escaped according to the following rules when accessed in the expression: -...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 235.4K bytes
    - Viewed (0)
  7. src/net/http/serve_test.go

    		{"https://foobar.com/baz", "https://foobar.com/baz"},
    		// custom scheme
    		{"test://foobar.com/baz", "test://foobar.com/baz"},
    		// schemeless
    		{"//foobar.com/baz", "//foobar.com/baz"},
    		// relative to the root
    		{"/foobar.com/baz", "/foobar.com/baz"},
    		// relative to the current path
    		{"foobar.com/baz", "/qux/foobar.com/baz"},
    		// relative to the current path (+ going upwards)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1beta1_openapi.json

    rary#Authz\n- 'authorizer.requestResource' - A CEL ResourceCheck constructed from the 'authorizer' and configured with the\n  request resource.\n\nThe `apiVersion`, `kind`, `metadata.name` and `metadata.generateName` are always accessible from the root of the object. No other metadata properties are accessible.\n\nOnly property names of the form `[a-zA-Z_.-/][a-zA-Z0-9_.-/]*` are accessible. Accessible property names are escaped according to the following rules when accessed in the expression: -...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 235.7K bytes
    - Viewed (0)
  9. src/runtime/proc.go

    // includes info for the current caller into a new set of tracebacks for
    // a g being created.
    func saveAncestors(callergp *g) *[]ancestorInfo {
    	// Copy all prior info, except for the root goroutine (goid 0).
    	if debug.tracebackancestors <= 0 || callergp.goid == 0 {
    		return nil
    	}
    	var callerAncestors []ancestorInfo
    	if callergp.ancestors != nil {
    		callerAncestors = *callergp.ancestors
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top