Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 78 for dnsNames (0.16 sec)

  1. cmd/kubeadm/app/phases/upgrade/compute_test.go

    	// Kubernetes release.
    	for _, rt := range tests {
    		t.Run(rt.name, func(t *testing.T) {
    
    			dnsName := constants.CoreDNSDeploymentName
    
    			client := newMockClientForTest(t, dnsName, rt.beforeDNSVersion, rt.deployDNSFailed)
    
    			actualUpgrades, actualErr := GetAvailableUpgrades(rt.vg, rt.allowExperimental, rt.allowRCs, client, &output.TextPrinter{})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 08:39:51 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  2. pkg/config/analysis/local/istiod_analyze.go

    // copied from processing/snapshotter/analyzingdistributor.go
    func filterMessages(messages diag.Messages, namespaces sets.Set[resource.Namespace], suppressions []AnalysisSuppression) diag.Messages {
    	nsNames := sets.New[string]()
    	for k := range namespaces {
    		nsNames.Insert(k.String())
    	}
    
    	var msgs diag.Messages
    FilterMessages:
    	for _, m := range messages {
    		// Only keep messages for resources in namespaces we want to analyze if the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 21:06:13 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"CertPool", Type, 0},
    		{"Certificate", Type, 0},
    		{"Certificate.AuthorityKeyId", Field, 0},
    		{"Certificate.BasicConstraintsValid", Field, 0},
    		{"Certificate.CRLDistributionPoints", Field, 2},
    		{"Certificate.DNSNames", Field, 0},
    		{"Certificate.EmailAddresses", Field, 0},
    		{"Certificate.ExcludedDNSDomains", Field, 9},
    		{"Certificate.ExcludedEmailAddresses", Field, 10},
    		{"Certificate.ExcludedIPRanges", Field, 10},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  4. security/pkg/pki/util/verify_cert.go

    		san := host
    		// uri scheme is currently not supported in go VerifyOptions. We verify
    		// this uri at the end as a special case.
    		if strings.HasPrefix(host, "spiffe") {
    			san = ""
    		}
    		opts.DNSName = san
    	}
    	opts.KeyUsages = append(opts.KeyUsages, x509.ExtKeyUsageAny)
    
    	if _, err = cert.Verify(opts); err != nil {
    		return fmt.Errorf("failed to verify certificate: " + err.Error())
    	}
    	if privPem != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 05 10:37:29 UTC 2022
    - 5.9K bytes
    - Viewed (0)
  5. security/pkg/pki/util/san.go

    	// SAN field (see https://tools.ietf.org/html/rfc5280#appendix-A.2)
    	//
    	// SubjectAltName ::= GeneralNames
    	//
    	// GeneralNames ::= SEQUENCE SIZE (1..MAX) OF GeneralName
    	//
    	// GeneralName ::= CHOICE {
    	//      dNSName                         [2]     IA5String,
    	//      uniformResourceIdentifier       [6]     IA5String,
    	//      iPAddress                       [7]     OCTET STRING,
    	// }
    	oidTagMap = map[IdentityType]int{
    		TypeDNS: 2,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 14 06:50:22 UTC 2022
    - 6K bytes
    - Viewed (0)
  6. pilot/pkg/xds/eds.go

    	kind.Gateway,
    	kind.VirtualService,
    	kind.WorkloadGroup,
    	kind.AuthorizationPolicy,
    	kind.RequestAuthentication,
    	kind.Secret,
    	kind.Telemetry,
    	kind.WasmPlugin,
    	kind.ProxyConfig,
    	kind.DNSName,
    
    	kind.KubernetesGateway,
    	kind.HTTPRoute,
    	kind.TCPRoute,
    	kind.TLSRoute,
    	kind.GRPCRoute,
    )
    
    func edsNeedsPush(updates model.XdsUpdates) bool {
    	// If none set, we will always push
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 15:58:06 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/CertificateAdapters.kt

       *
       * ```
       * GeneralName ::= CHOICE {
       *   otherName                       [0]     OtherName,
       *   rfc822Name                      [1]     IA5String,
       *   dNSName                         [2]     IA5String,
       *   x400Address                     [3]     ORAddress,
       *   directoryName                   [4]     Name,
       *   ediPartyName                    [5]     EDIPartyName,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  8. pkg/config/validation/agent/validation.go

    			return validateSidecarOrGatewayHostnamePart(hostname, true)
    		}
    		errs = AppendErrors(errs, fmt.Errorf("host must be of form namespace/dnsName"))
    		return
    	}
    
    	if len(parts[0]) == 0 || len(parts[1]) == 0 {
    		errs = AppendErrors(errs, fmt.Errorf("config namespace and dnsName in host entry cannot be empty"))
    	}
    
    	if !isGateway {
    		// namespace can be * or . or ~ or a valid DNS label in sidecars
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  9. src/crypto/tls/handshake_client.go

    				c.sendAlert(alertBadCertificate)
    				return err
    			}
    		} else {
    			opts := x509.VerifyOptions{
    				Roots:         c.config.RootCAs,
    				CurrentTime:   c.config.time(),
    				DNSName:       c.serverName,
    				Intermediates: x509.NewCertPool(),
    			}
    
    			for _, cert := range certs[1:] {
    				opts.Intermediates.AddCert(cert)
    			}
    			var err error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  10. cluster/gce/windows/smoke-test.sh

      local service_ip
      service_ip=$($kubectl get service --namespace kube-system $service \
        -o jsonpath='{.spec.clusterIP}')
    
      if ! $kubectl exec "$windows_command_pod" -- powershell.exe \
          "Resolve-DnsName www.bing.com -server $service_ip" > $output_file; then
        cleanup_deployments
        echo "Failing output: $(cat $output_file)"
        echo "FAILED: ${FUNCNAME[0]}"
        exit 1
      fi
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 20.6K bytes
    - Viewed (0)
Back to top