Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 79 of 79 for Validation (0.27 sec)

  1. src/crypto/x509/x509.go

    // with the publicly trusted TLS certificate ecosystem and its policies and
    // constraints.
    //
    // On macOS and Windows, certificate verification is handled by system APIs, but
    // the package aims to apply consistent validation rules across operating
    // systems.
    package x509
    
    import (
    	"bytes"
    	"crypto"
    	"crypto/ecdh"
    	"crypto/ecdsa"
    	"crypto/ed25519"
    	"crypto/elliptic"
    	"crypto/rsa"
    	"crypto/sha1"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/conversion.go

    			case "ISTIO_MUTUAL":
    				out.Mode = istio.ServerTLSSettings_ISTIO_MUTUAL
    				return out, nil
    			}
    		}
    		if len(tls.CertificateRefs) != 1 {
    			// This is required in the API, should be rejected in validation
    			return out, &ConfigError{Reason: InvalidTLS, Message: "exactly 1 certificateRefs should be present for TLS termination"}
    		}
    		cred, err := buildSecretReference(ctx, tls.CertificateRefs[0], gw)
    		if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  3. cmd/erasure-server-pool.go

    			if err != nil {
    				return nil, err
    			}
    		}
    
    		if err = storageclass.ValidateParity(commonParityDrives, ep.DrivesPerSet); err != nil {
    			return nil, fmt.Errorf("parity validation returned an error: %w <- (%d, %d), for pool(%s)", err, commonParityDrives, ep.DrivesPerSet, humanize.Ordinal(i+1))
    		}
    
    		bootstrapTrace("waitForFormatErasure: loading disks", func() {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    			Namespace:   namespace,
    		},
    		Spec: corev1.PodSpec{
    			ServiceAccountName:           saName,
    			NodeName:                     node,
    			AutomountServiceAccountToken: &automount,
    			// Validation requires this
    			Containers: []corev1.Container{
    				{
    					Name:  "test",
    					Image: "ununtu",
    				},
    			},
    		},
    		// The cache controller uses this as key, required by our impl.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  5. src/crypto/tls/handshake_client_test.go

    // TestHandshakeClientCertRSAPSS tests rsa_pss_rsae_sha256 signatures from both
    // client and server certificates. It also serves from both sides a certificate
    // signed itself with RSA-PSS, mostly to check that crypto/x509 chain validation
    // works.
    func TestHandshakeClientCertRSAPSS(t *testing.T) {
    	cert, err := x509.ParseCertificate(testRSAPSSCertificate)
    	if err != nil {
    		panic(err)
    	}
    	rootCAs := x509.NewCertPool()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    	// or use different field manager strings for each entry.
    	//
    	// With a strategic-merge-patch, we can simply send one new entry. The apiserver
    	// validation will catch if two goroutines try to do that at the same time and
    	// the claim cannot be shared.
    	//
    	// Note that this also works when the allocation result gets added twice because
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    In Gradle 9.0, all changes to a configuration after it has been observed will become an error.
    After a configuration of any type has been observed, it should be considered immutable.
    This validation covers the following properties of a configuration:
    
    * Resolution Strategy
    * Dependencies
    * Constraints
    * Exclude Rules
    * Artifacts
    * Role (consumable, resolvable, dependency scope)
    * Hierarchy (`extendsFrom`)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  8. pkg/controller/volume/persistentvolume/pv_controller.go

    		PVC:                           claim,
    		Parameters:                    storageClass.Parameters,
    	}
    
    	// Refuse to provision if the plugin doesn't support mount options, creation
    	// of PV would be rejected by validation anyway
    	if !plugin.SupportsMountOption() && len(options.MountOptions) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/sidecar_simulation_test.go

    		tls simulation.TLSMode, validations []simulation.CustomFilterChainValidation,
    		mTLSSecretConfigName string,
    	) simulation.Call {
    		return simulation.Call{
    			Protocol:                  protocol,
    			Port:                      port,
    			CallMode:                  simulation.CallModeInbound,
    			TLS:                       tls,
    			CustomListenerValidations: validations,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
Back to top