Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 77 for Validation (0.33 sec)

  1. pilot/pkg/networking/core/listener.go

    	// listeners for these user specified ports, we will auto generate
    	// configs for other ports if and only if the sidecarConfig has an
    	// egressListener on wildcard port.
    	//
    	// Validation will ensure that we have utmost one wildcard egress listener
    	// occurring in the end
    
    	// Add listeners based on the config in the sidecar.EgressListeners if
    	// no Sidecar CRD is provided for this config namespace,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/apps/v1/types.go

    // are responsible for serializing and deserializing the objects that contain
    // their internal state.
    // Once a ControllerRevision has been successfully created, it can not be updated.
    // The API Server will fail validation of all requests that attempt to mutate
    // the Data field. ControllerRevisions may, however, be deleted. Note that, due to its use by both
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  3. pkg/controller/podautoscaler/horizontal.go

    		}
    	default:
    		// It shouldn't reach here as invalid metric source type is filtered out in the api-server's validation.
    		err = fmt.Errorf("unknown metric source type %q%w", string(spec.Type), errSpec)
    		condition := a.getUnableComputeReplicaCountCondition(hpa, "InvalidMetricSourceType", err)
    		return 0, "", time.Time{}, condition, err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  4. cmd/iam-store.go

    		return nil
    	}
    	return err
    }
    
    // DeletePolicy - deletes policy from storage and cache. When this called in
    // response to a notification (i.e. isFromNotification = true), it skips the
    // validation of policy usage and the attempt to delete in the backend as well
    // (as this is already done by the notifying node).
    func (store *IAMStoreSys) DeletePolicy(ctx context.Context, policy string, isFromNotification bool) error {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  5. cmd/iam.go

    	return (isOwnerDerived || combinedPolicy.IsAllowed(parentArgs))
    }
    
    // IsAllowedSTS is meant for STS based temporary credentials,
    // which implements claims validation and verification other than
    // applying policies.
    func (sys *IAMSys) IsAllowedSTS(args policy.Args, parentUser string) bool {
    	// 1. Determine mapped policies
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  6. src/internal/trace/order.go

    package trace
    
    import (
    	"fmt"
    	"strings"
    
    	"internal/trace/event"
    	"internal/trace/event/go122"
    	"internal/trace/version"
    )
    
    // ordering emulates Go scheduler state for both validation and
    // for putting events in the right order.
    //
    // The interface to ordering consists of two methods: Advance
    // and Next. Advance is called to try and advance an event and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  7. pkg/scheduler/internal/queue/scheduling_queue.go

    func (p *PriorityQueue) newQueuedPodInfo(pod *v1.Pod, plugins ...string) *framework.QueuedPodInfo {
    	now := p.clock.Now()
    	// ignore this err since apiserver doesn't properly validate affinity terms
    	// and we can't fix the validation for backwards compatibility.
    	podInfo, _ := framework.NewPodInfo(pod)
    	return &framework.QueuedPodInfo{
    		PodInfo:                 podInfo,
    		Timestamp:               now,
    		InitialAttemptTimestamp: nil,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    				Time: time.Now(),
    			},
    		},
    		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: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top