Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 45 of 45 for Validation (0.28 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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