Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 171 for crt2 (0.25 sec)

  1. cmd/kubeadm/app/util/config/joinconfiguration_test.go

    			`),
    			expectErr: true,
    		},
    		{
    			name: "valid v1beta3 is loaded",
    			fileContents: dedent.Dedent(`
    				apiVersion: kubeadm.k8s.io/v1beta3
    				kind: JoinConfiguration
    				caCertPath: /etc/kubernetes/pki/ca.crt
    				nodeRegistration:
    				  criSocket: "unix:///var/run/unknown.sock"
    				discovery:
    				  bootstrapToken:
    				    apiServerEndpoint: kube-apiserver:6443
    				    token: abcdef.0123456789abcdef
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 13 09:17:03 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/options/serving.go

    		"trump over extracted names. For multiple key/certificate pairs, use the "+
    		"--tls-sni-cert-key multiple times. "+
    		"Examples: \"example.crt,example.key\" or \"foo.crt,foo.key:*.foo.com,foo.com\".")
    
    	fs.IntVar(&s.HTTP2MaxStreamsPerConnection, "http2-max-streams-per-connection", s.HTTP2MaxStreamsPerConnection, ""+
    		"The limit that the server gives to clients for "+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 13:08:18 UTC 2024
    - 15.9K bytes
    - Viewed (1)
  3. tensorflow/compiler/mlir/quantization/stablehlo/ops/stablehlo_op_quant_spec_test.cc

    constexpr absl::string_view kModuleConstantAdd = R"mlir(
      module {
        func.func @constant_add() -> (tensor<3x2xf32>) {
          %cst1 = stablehlo.constant dense<2.4> : tensor<3x2xf32>
          %cst2 = stablehlo.constant dense<5.7> : tensor<3x2xf32>
          %add = stablehlo.add %cst1, %cst2 : (tensor<3x2xf32>, tensor<3x2xf32>) -> tensor<3x2xf32>
          func.return %add : tensor<3x2xf32>
        }
      }
    )mlir";
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 04 07:19:09 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/apis/kubeadm/validation/validation_test.go

    			CACertPath: "/some/cert.crt",
    			Discovery: kubeadmapi.Discovery{
    				BootstrapToken: &kubeadmapi.BootstrapTokenDiscovery{
    					Token: "abcdef.1234567890123456@foobar",
    				},
    				File: &kubeadmapi.FileDiscovery{
    					KubeConfigPath: "foo",
    				},
    			},
    		}, false},
    		{&kubeadmapi.JoinConfiguration{ // Pass without JoinControlPlane
    			CACertPath: "/some/cert.crt",
    			Discovery: kubeadmapi.Discovery{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  5. src/hash/crc32/crc32_test.go

    	for _, length := range lengths {
    		p := make([]byte, length)
    		_, _ = rand.Read(p)
    		crcInit := uint32(rand.Int63())
    		crc1 := crcFunc1(crcInit, p)
    		crc2 := crcFunc2(crcInit, p)
    		if crc1 != crc2 {
    			t.Errorf("mismatch: 0x%x vs 0x%x (buffer length %d)", crc1, crc2, length)
    		}
    	}
    }
    
    // TestSimple tests the simple generic algorithm.
    func TestSimple(t *testing.T) {
    	tab := simpleMakeTable(IEEE)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. cluster/gce/manifests/cloud-controller-manager.manifest

          "requests": {
            "cpu": "10m"
          }
        },
        "command": [
          "/cloud-pv-admission-labeler",
          "--addr=localhost:9001",
          "--tls-cert-path=/etc/srv/kubernetes/pki/cloud-pvl-admission/server.crt",
          "--tls-key-path=/etc/srv/kubernetes/pki/cloud-pvl-admission/server.key",
          "--cloud-provider=gce",
          "--cloud-config=/etc/gce.conf"
        ],
        "volumeMounts": [
            {{cloud_config_mount}}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 08:50:12 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. pkg/test/framework/components/echo/kube/templates/vm_deployment.yaml

    {{- end }}
    {{- if $p.InstanceIP }}
                 --bind-ip={{ $p.Port }} \
    {{- end }}
    {{- if $p.LocalhostIP }}
                 --bind-localhost={{ $p.Port }} \
    {{- end }}
    {{- end }}
                 --crt=/var/lib/istio/cert.crt \
                 --key=/var/lib/istio/cert.key
            env:
            - name: INSTANCE_IP
              valueFrom:
                fieldRef:
                  fieldPath: status.podIP
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 8K bytes
    - Viewed (0)
  8. security/pkg/pki/util/crypto_test.go

    	certBytes = AppendCertByte(certBytes, []byte(certRSA))
    	result := PemCertBytestoString(certBytes)
    	cert1 := strings.TrimSuffix(strings.TrimPrefix(certECDSA, "\n"), "\n")
    	cert2 := strings.TrimSuffix(strings.TrimPrefix(certRSA, "\n"), "\n")
    	if !reflect.DeepEqual(result, []string{cert1, cert2}) {
    		t.Errorf("Basic comparison fails!")
    	}
    
    	// check only first string passed if second is bogus
    	certBytes = []byte(certRSA)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 13:00:07 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  9. cluster/gce/gci/configure-helper.sh

      if [[ -z "${CA_CERT_BUNDLE:-}" ]]; then
        CA_CERT_BUNDLE="${CA_CERT}"
      fi
    
      CA_CERT_BUNDLE_PATH="${pki_dir}/ca-certificates.crt"
      write-pki-data "${CA_CERT_BUNDLE}" "${CA_CERT_BUNDLE_PATH}"
    
      if [[ -n "${KUBELET_CERT:-}" && -n "${KUBELET_KEY:-}" ]]; then
        KUBELET_CERT_PATH="${pki_dir}/kubelet.crt"
        write-pki-data "${KUBELET_CERT}" "${KUBELET_CERT_PATH}"
    
        KUBELET_KEY_PATH="${pki_dir}/kubelet.key"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  10. hack/lib/util.sh

        local id=$3
        local purpose=$4
        # Create client ca
        ${sudo} /usr/bin/env bash -e <<EOF
        rm -f "${dest_dir}/${id}-ca.crt" "${dest_dir}/${id}-ca.key"
        ${OPENSSL_BIN} req -x509 -sha256 -new -nodes -days 365 -newkey rsa:2048 -keyout "${dest_dir}/${id}-ca.key" -out "${dest_dir}/${id}-ca.crt" -subj "/C=xx/ST=x/L=x/O=x/OU=x/CN=ca/emailAddress=x/"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:33 UTC 2024
    - 25.9K bytes
    - Viewed (0)
Back to top