Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 516 for validations (0.37 sec)

  1. 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)
  2. pkg/printers/internalversion/printers.go

    	validatingAdmissionPolicy := []metav1.TableColumnDefinition{
    		{Name: "Name", Type: "string", Format: "name", Description: metav1.ObjectMeta{}.SwaggerDoc()["name"]},
    		{Name: "Validations", Type: "integer", Description: "Validations indicates the number of validation rules defined in this configuration"},
    		{Name: "ParamKind", Type: "string", Description: "ParamKind specifies the kind of resources used to parameterize this policy"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  3. src/cmd/cover/cover.go

    		err = funcOutput(profile, *output)
    	}
    
    	if err != nil {
    		fmt.Fprintf(os.Stderr, "cover: %v\n", err)
    		os.Exit(2)
    	}
    }
    
    // parseFlags sets the profile and counterStmt globals and performs validations.
    func parseFlags() error {
    	profile = *htmlOut
    	if *funcOut != "" {
    		if profile != "" {
    			return fmt.Errorf("too many options")
    		}
    		profile = *funcOut
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  4. operator/pkg/apis/istio/v1alpha1/validation/validation.go

    func validateFeatures(values *valuesv1alpha1.Values, spec *v1alpha1.IstioOperatorSpec) (errs util.Errors, warnings []string) {
    	validators := []FeatureValidator{
    		CheckServicePorts,
    		CheckAutoScaleAndReplicaCount,
    	}
    
    	for _, validator := range validators {
    		newErrs, newWarnings := validator(values, spec)
    		errs = util.AppendErrs(errs, newErrs)
    		warnings = append(warnings, newWarnings...)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 20:02:28 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/apis/kubeadm/validation/validation.go

    limitations under the License.
    */
    
    package validation
    
    import (
    	"encoding/hex"
    	"fmt"
    	"net"
    	"net/url"
    	"os"
    	"strconv"
    	"strings"
    
    	"github.com/distribution/reference"
    	"github.com/pkg/errors"
    	"github.com/spf13/pflag"
    
    	corev1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/apimachinery/pkg/util/validation"
    	"k8s.io/apimachinery/pkg/util/validation/field"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  6. src/internal/trace/testtrace/validation.go

    		// API, resources all have the same general properties. Consider making this
    		// code generic over resources and implementing validation just once.
    		tr := ev.StateTransition()
    		checkStack(e, tr.Stack)
    		switch tr.Resource.Kind {
    		case trace.ResourceGoroutine:
    			// Basic state transition validation.
    			id := tr.Resource.Goroutine()
    			old, new := tr.Goroutine()
    			if new == trace.GoUndetermined {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  7. pkg/apis/resource/validation/validation.go

    limitations under the License.
    */
    
    package validation
    
    import (
    	apiequality "k8s.io/apimachinery/pkg/api/equality"
    	apimachineryvalidation "k8s.io/apimachinery/pkg/api/validation"
    	pathvalidation "k8s.io/apimachinery/pkg/api/validation/path"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/apimachinery/pkg/util/sets"
    	utilvalidation "k8s.io/apimachinery/pkg/util/validation"
    	"k8s.io/apimachinery/pkg/util/validation/field"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  8. pkg/scheduler/apis/config/validation/validation.go

    limitations under the License.
    */
    
    package validation
    
    import (
    	"fmt"
    	"reflect"
    
    	v1 "k8s.io/api/core/v1"
    	apiequality "k8s.io/apimachinery/pkg/api/equality"
    	"k8s.io/apimachinery/pkg/runtime"
    	utilerrors "k8s.io/apimachinery/pkg/util/errors"
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/apimachinery/pkg/util/validation"
    	"k8s.io/apimachinery/pkg/util/validation/field"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 06:27:01 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  9. pkg/generated/openapi/zz_generated.openapi.go

    						},
    					},
    					"validations": {
    						VendorExtensible: spec.VendorExtensible{
    							Extensions: spec.Extensions{
    								"x-kubernetes-list-type": "atomic",
    							},
    						},
    						SchemaProps: spec.SchemaProps{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.29.md

    that workloads (e.g. Deployments, DaemonSets, etc.) which used `PersistentDisk` volumes were using them in read-only mode.  This validation provided very little value at relatively host implementation cost, and will no longer be validated.  If this is a problem for a specific use-case, please set the `SkipReadOnlyValidationGCE` gate to false to re-enable the validation, and file a Kubernetes bug with details. ([#121083](https://github.com/kubernetes/kubernetes/pull/121083), [@thockin](https://github.com/thockin))...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
Back to top