Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 171 for Validation (0.49 sec)

  1. pkg/config/analysis/analyzers/analyzers_test.go

    // regex patterns for analyzer names that should be explicitly ignored for testing
    var ignoreAnalyzers = []string{
    	// ValidationAnalyzer doesn't have any of its own logic, it just wraps the schema validation.
    	// We assume that detailed testing for schema validation is being done elsewhere.
    	// Testing the ValidationAnalyzer as a wrapper is done in a separate unit test.)
    	`schema\.ValidationAnalyzer\.*`,
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  2. tests/integration/telemetry/api/dashboard_test.go

    			"_timeout",
    			"_rejects",
    			// We do not simulate injection errors
    			"sidecar_injection_failure_total",
    			// In default install, we have no proxy
    			"istio-proxy",
    			// We do not simulate validation failed
    			"galley_validation_failed",
    			// cAdvisor does not expose this metrics, and we don't have kubelet in kind
    			"container_fs_usage_bytes",
    			// flakes: https://github.com/istio/istio/issues/29871
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  3. pkg/volume/plugins.go

    	"k8s.io/apimachinery/pkg/api/resource"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/types"
    	utilerrors "k8s.io/apimachinery/pkg/util/errors"
    	"k8s.io/apimachinery/pkg/util/validation"
    	"k8s.io/client-go/informers"
    	clientset "k8s.io/client-go/kubernetes"
    	storagelistersv1 "k8s.io/client-go/listers/storage/v1"
    	"k8s.io/client-go/tools/cache"
    	"k8s.io/client-go/tools/record"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/EdgeState.java

            }
            targetNodeSelectionFailure = null;
        }
    
        /**
         * Call this method to attach a failure late in the process. This is typically
         * done when a failure is caused by graph validation. In that case we want to
         * perform as much resolution as possible, still have a valid graph, but in the
         * end fail resolution.
         */
        void failWith(Throwable err) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  5. pkg/generated/openapi/zz_generated.openapi.go

    "messageExpression declares a CEL expression that evaluates to the validation failure message that is returned when this rule fails. Since messageExpression is used as a failure message, it must evaluate to a string. If both message and messageExpression are present on a validation, then messageExpression will be used if validation fails. If messageExpression results in a runtime error, the runtime error is logged, and the validation failure message is produced as if the messageExpression field were...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  6. Makefile.core.mk

    # disable_pgv: disables protoc-gen-validation. This is not used buts adds many MB to Envoy protos
    # not set vtprotobuf: this adds some performance improvement, but at a binary cost increase that is not worth it for the agent
    AGENT_TAGS=agent,disable_pgv
    # disable_pgv: disables protoc-gen-validation. This is not used buts adds many MB to Envoy protos
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 19:53:04 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  7. pilot/pkg/model/gateway.go

    					log.Warnf("Server name %s is not unique in gateway %s and may create possible issues like stat prefix collision ",
    						s.Name, gatewayName)
    				}
    			}
    			if s.Port == nil {
    				// Should be rejected in validation, this is an extra check
    				log.Debugf("invalid server without port: %q", gatewayName)
    				RecordRejectedConfig(gatewayName)
    				continue
    			}
    			sanitizeServerHostNamespace(s, gatewayConfig.Namespace)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  8. manifests/addons/dashboards/pilot-dashboard.gen.json

                   },
                   "expr": "sum(\n  rate(\n    galley_validation_passed{}\n  [$__rate_interval])\n)",
                   "legendFormat": "Failure"
                }
             ],
             "title": "Validation",
             "type": "timeseries"
          },
          {
             "datasource": {
                "type": "datasource",
                "uid": "-- Mixed --"
             },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  9. cni/pkg/cmd/root.go

    			"The value of the annotation is ignored.")
    	registerStringParameter(constants.RepairInitContainerName, "istio-validation",
    		"The name of the istio init container (will crash-loop if CNI is not configured for the pod)")
    	registerStringParameter(constants.RepairInitTerminationMsg, "",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 13K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/preflight/checks.go

    	"runtime"
    	"strings"
    	"time"
    
    	"github.com/pkg/errors"
    
    	v1 "k8s.io/api/core/v1"
    	netutil "k8s.io/apimachinery/pkg/util/net"
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/apimachinery/pkg/util/validation"
    	versionutil "k8s.io/apimachinery/pkg/util/version"
    	kubeadmversion "k8s.io/component-base/version"
    	"k8s.io/klog/v2"
    	system "k8s.io/system-validators/validators"
    	utilsexec "k8s.io/utils/exec"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:20:55 UTC 2024
    - 39.5K bytes
    - Viewed (0)
Back to top