Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 45 for Validation (0.19 sec)

  1. pkg/kube/inject/testdata/inputs/kubevirtInterfaces.yaml.9.template.gen.yaml

          initContainers:
          {{ if ne (annotation .ObjectMeta `sidecar.istio.io/interceptionMode` .ProxyConfig.InterceptionMode) `NONE` }}
          {{ if or .Values.pilot.cni.enabled .Values.istio_cni.enabled -}}
          - name: istio-validation
          {{ else -}}
          - name: istio-init
          {{ end -}}
          {{- if contains "/" (annotation .ObjectMeta `sidecar.istio.io/proxyImage` .Values.global.proxy_init.image) }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  2. cmd/api-errors.go

    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrReplicationValidationError: {
    		Code:           "InvalidRequest",
    		Description:    "Replication validation failed on target",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrReplicationPermissionCheckError: {
    		Code:           "ReplicationPermissionCheck",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  3. operator/pkg/apis/istio/v1alpha1/values_types.proto

      repeated string certSigners = 68;
    
      // TODO: remove this?
      // No longer used.
      string configRootNamespace = 50;
    
      // Controls whether the server-side validation is enabled.
      google.protobuf.BoolValue configValidation = 3;
    
      // TODO: remove this?
      // No longer used.
      repeated string defaultConfigVisibilitySettings = 52;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

    import org.gradle.api.logging.configuration.WarningMode;
    import org.gradle.integtests.fixtures.RepoScriptBlockUtil;
    import org.gradle.integtests.fixtures.daemon.DaemonLogsAnalyzer;
    import org.gradle.integtests.fixtures.validation.ValidationServicesFixture;
    import org.gradle.internal.ImmutableActionSet;
    import org.gradle.internal.MutableActionSet;
    import org.gradle.internal.UncheckedException;
    import org.gradle.internal.buildprocess.BuildProcessState;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/init.go

    // with modules.
    func Init() {
    	if initialized {
    		return
    	}
    	initialized = true
    
    	// Keep in sync with WillBeEnabled. We perform extra validation here, and
    	// there are lots of diagnostics and side effects, so we can't use
    	// WillBeEnabled directly.
    	var mustUseModules bool
    	env := cfg.Getenv("GO111MODULE")
    	switch env {
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                        resource.getDirectory(),
                        resource);
            }
        }
    
        // ----------------------------------------------------------------------
        // Field validation
        // ----------------------------------------------------------------------
    
        private boolean validateCoordinateId(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top