Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 80 for Validation (0.16 sec)

  1. src/cmd/internal/obj/riscv/obj.go

    	// rawEncoding encodes a raw instruction byte sequence.
    	rawEncoding = encoding{encode: encodeRawIns, validate: validateRaw, length: 4}
    
    	// pseudoOpEncoding panics if encoding is attempted, but does no validation.
    	pseudoOpEncoding = encoding{encode: nil, validate: func(*obj.Link, *instruction) {}, length: 0}
    
    	// badEncoding is used when an invalid op is encountered.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  2. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    	nodeUpdateWorkerSize = 8
    
    	// taintEvictionController is defined here in order to prevent imports of
    	// k8s.io/kubernetes/cmd/kube-controller-manager/names which would result in validation errors.
    	// This constant will be removed upon graduation of the SeparateTaintEvictionController feature.
    	taintEvictionController = "taint-eviction-controller"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top