Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 213 for chains (0.1 sec)

  1. okhttp/src/main/kotlin/okhttp3/Cache.kt

         * a line containing the cipher suite. Next is the length of the peer certificate chain. These
         * certificates are base64-encoded and appear each on their own line. The next line contains the
         * length of the local certificate chain. These certificates are also base64-encoded and appear
         * each on their own line. A length of -1 is used to encode a null array. The last line is
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  2. src/crypto/internal/nistec/generate.go

    	table[0].Set(q)
    	for i := 1; i < 15; i += 2 {
    		table[i].Double(table[i/2])
    		table[i+1].Add(table[i], q)
    	}
    
    	// Instead of doing the classic double-and-add chain, we do it with a
    	// four-bit window: we double four times, and then add [0-15]P.
    	t := New{{.P}}Point()
    	p.Set(New{{.P}}Point())
    	for i, byte := range scalar {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  3. security/pkg/k8s/chiron/utils_test.go

    05n8TGERBj7TLdtIVbtUIx3JHAo3PWJywA6mEDovFMJhJERp9sDHIr1BbhXK1TFN
    Z6HNH6gInkSSMtvC4Ptejb749PTaePRPF7ID//eq/3AH8UK50F3TQcLjEqWUsJUn
    aFKltOc+RAjzDklcUPeG4Y6eMA==
    -----END CERTIFICATE-----`
    
    	// exampleIssuedCert copied from samples/certs/cert-chain.pem
    	exampleIssuedCert = `-----BEGIN CERTIFICATE-----
    MIIDnzCCAoegAwIBAgIJAON1ifrBZ2/BMA0GCSqGSIb3DQEBCwUAMIGLMQswCQYD
    VQQGEwJVUzETMBEGA1UECAwKQ2FsaWZvcm5pYTESMBAGA1UEBwwJU3Vubnl2YWxl
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 03:58:11 UTC 2024
    - 13K bytes
    - Viewed (0)
  4. common/config/.golangci.yml

          - name: waitgroup-by-value
          - name: atomic
          - name: call-to-gc
          - name: duplicated-imports
          - name: string-of-int
          - name: defer
            arguments:
              - - "call-chain"
          - name: unconditional-recursion
          - name: identical-branches
            # the following rules can be enabled in the future
            # - name: empty-lines
            # - name: confusing-results
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 20:03:06 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  5. docs/fr/docs/python-types.md

    <img src="/img/python-types/image04.png">
    
    Maintenant que vous avez connaissance du problème, convertissez `age` en <abbr title="string">chaîne de caractères</abbr> grâce à `str(age)` :
    
    ```Python hl_lines="2"
    {!../../../docs_src/python_types/tutorial004.py!}
    ```
    
    ## Déclarer des types
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  6. tests/integration/security/filebased_tls_origination/egress_gateway_origination_test.go

      trafficPolicy:
        portLevelSettings:
          - port:
              number: 443
            tls:
              mode: {{.Mode}}
              clientCertificate: /etc/certs/custom/cert-chain.pem
              privateKey: /etc/certs/custom/key.pem
              caCertificates: {{.RootCertPath}}
              sni: external-service.{{.AppNamespace}}.svc.cluster.local
    `
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  7. pkg/kubelet/apis/config/types.go

    	ProtectKernelDefaults bool
    	// If true, Kubelet creates the KUBE-IPTABLES-HINT chain in iptables as a hint to
    	// other components about the configuration of iptables on the system.
    	MakeIPTablesUtilChains bool
    	// iptablesMasqueradeBit formerly controlled the creation of the KUBE-MARK-MASQ
    	// chain.
    	// Deprecated: no longer has any effect.
    	IPTablesMasqueradeBit int32
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  8. src/runtime/panic.go

    	throwTypeRuntime
    )
    
    // We have two different ways of doing defers. The older way involves creating a
    // defer record at the time that a defer statement is executing and adding it to a
    // defer chain. This chain is inspected by the deferreturn call at all function
    // exits in order to run the appropriate defer calls. A cheaper way (which we call
    // open-coded defers) is used for functions in which no defer statements occur in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  9. pkg/kubeapiserver/authenticator/config.go

    	}
    
    	authenticator := union.New(authenticators...)
    
    	authenticator = group.NewAuthenticatedGroupAdder(authenticator)
    
    	if config.Anonymous {
    		// If the authenticator chain returns an error, return an error (don't consider a bad bearer token
    		// or invalid username/password combination anonymous).
    		authenticator = union.NewFailOnError(authenticator, anonymous.NewAuthenticator())
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 19:29:33 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/scope.go

    	//
    	// TODO: remove this once gotypesalias=0 is no longer supported.
    	if obj == universeAnyAlias && !aliasAny() {
    		return universeAnyNoAlias
    	}
    	return obj
    }
    
    // LookupParent follows the parent chain of scopes starting with s until
    // it finds a scope where Lookup(name) returns a non-nil object, and then
    // returns that scope and object. If a valid position pos is provided,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.8K bytes
    - Viewed (0)
Back to top