Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 166 for crt2 (0.06 sec)

  1. src/cmd/vendor/golang.org/x/arch/x86/x86asm/gnu.go

    	IDTR: "%idtr",
    	LDTR: "%ldtr",
    	MSW:  "%msw",
    	TASK: "%task",
    	CR0:  "%cr0",
    	CR1:  "%cr1",
    	CR2:  "%cr2",
    	CR3:  "%cr3",
    	CR4:  "%cr4",
    	CR5:  "%cr5",
    	CR6:  "%cr6",
    	CR7:  "%cr7",
    	CR8:  "%cr8",
    	CR9:  "%cr9",
    	CR10: "%cr10",
    	CR11: "%cr11",
    	CR12: "%cr12",
    	CR13: "%cr13",
    	CR14: "%cr14",
    	CR15: "%cr15",
    	DR0:  "%db0",
    	DR1:  "%db1",
    	DR2:  "%db2",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  2. cmd/kube-apiserver/app/testing/testserver.go

    		clientSigningKey, err := testutil.NewPrivateKey()
    		if err != nil {
    			return result, err
    		}
    		clientSigningCert, err := cert.NewSelfSignedCACert(cert.Config{CommonName: "client-ca"}, clientSigningKey)
    		if err != nil {
    			return result, err
    		}
    		clientCACertFile := filepath.Join(s.SecureServing.ServerCert.CertDirectory, "client-ca.crt")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  3. pkg/controlplane/apiserver/options/options_test.go

    		"--etcd-keyfile=/var/run/kubernetes/etcd.key",
    		"--etcd-certfile=/var/run/kubernetes/etcdce.crt",
    		"--etcd-cafile=/var/run/kubernetes/etcdca.crt",
    		"--http2-max-streams-per-connection=42",
    		"--tracing-config-file=/var/run/kubernetes/tracing_config.yaml",
    		"--proxy-client-cert-file=/var/run/kubernetes/proxy.crt",
    		"--proxy-client-key-file=/var/run/kubernetes/proxy.key",
    		"--request-timeout=2m",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. guava/src/com/google/common/hash/Crc32cHashFunction.java

          }
          while (bb.remaining() >= 16) {
            crc0 = computeForWord(crc0);
            crc1 = computeForWord(crc1);
            crc2 = computeForWord(crc2);
            crc3 = computeForWord(crc3);
            crc0 ^= bb.getInt();
            crc1 ^= bb.getInt();
            crc2 ^= bb.getInt();
            crc3 ^= bb.getInt();
          }
        }
    
        @Override
        protected void processRemaining(ByteBuffer bb) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 20 18:43:59 UTC 2021
    - 21.3K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/phases/etcd/local_test.go

        - --listen-peer-urls=https://:2380
        - --name=
        - --peer-cert-file=etcd/peer.crt
        - --peer-client-cert-auth=true
        - --peer-key-file=etcd/peer.key
        - --peer-trusted-ca-file=etcd/ca.crt
        - --snapshot-count=10000
        - --trusted-ca-file=etcd/ca.crt
        image: /etcd:%s
        imagePullPolicy: IfNotPresent
        livenessProbe:
          failureThreshold: 8
          httpGet:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 14:07:27 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  6. src/crypto/aes/gcm_ppc64x.s

    	// Additional encryptions are done based on
    	// the key length, with the last key moved
    	// to V23 for use with VCIPHERLAST.
    	// CR2 = CMP key_len, $12
    	XXLOR VS10, VS10, V23
    	BLT	CR2, block128_last // key_len = 10
    	VCIPHER_8X1_KEY(VS10)
    	VCIPHER_8X1_KEY(VS11)
    	XXLOR VS12,VS12,V23
    	BEQ	CR2, block128_last // ken_len = 12
    	VCIPHER_8X1_KEY(VS12)
    	VCIPHER_8X1_KEY(VS13)
    	XXLOR VS14,VS14,V23	// key_len = 14
    block128_last:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  7. helm/minio/README.md

    For instance, given that TLS is enabled and you need to add trust for MinIO's own CA and for the CA of a Keycloak server, a Kubernetes secret can be created from the certificate files using `kubectl`:
    
    ```
    kubectl -n minio create secret generic minio-trusted-certs --from-file=public.crt --from-file=keycloak.crt
    ```
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jan 24 07:27:57 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/phases/certs/certs.go

    	uxName     string
    }
    
    // SharedCertificateExists verifies if the shared certificates exist and are still valid - the certificates must be
    // equal across control-plane nodes: ca.key, ca.crt, sa.key, sa.pub, front-proxy-ca.key, front-proxy-ca.crt and etcd/ca.key, etcd/ca.crt if local/stacked etcd
    // Missing private keys of CA are non-fatal and produce warnings.
    func SharedCertificateExists(cfg *kubeadmapi.ClusterConfiguration) (bool, error) {
    	var errs []error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 05 10:17:14 UTC 2023
    - 19.4K bytes
    - Viewed (0)
  9. pkg/registry/core/pod/storage/storage_test.go

    			location: expectedIP + ":12345",
    		},
    		{
    			pod: api.Pod{
    				ObjectMeta: metav1.ObjectMeta{Name: "foo"},
    				Spec: api.PodSpec{
    					Containers: []api.Container{
    						{Name: "ctr1"},
    						{Name: "ctr2", Ports: []api.ContainerPort{{ContainerPort: 9376}}},
    					},
    				},
    				Status: api.PodStatus{PodIPs: []api.PodIP{{IP: expectedIP}}},
    			},
    			query:    "foo",
    			location: expectedIP + ":9376",
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 07:18:44 UTC 2024
    - 38.8K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/constants/constants.go

    	// CACertName defines certificate name
    	CACertName = "ca.crt"
    	// CAKeyName defines certificate name
    	CAKeyName = "ca.key"
    
    	// APIServerCertAndKeyBaseName defines API's server certificate and key base name
    	APIServerCertAndKeyBaseName = "apiserver"
    	// APIServerCertName defines API's server certificate name
    	APIServerCertName = "apiserver.crt"
    	// APIServerKeyName defines API's server key name
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 32.4K bytes
    - Viewed (0)
Back to top