Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,793 for validate0 (0.16 sec)

  1. pkg/registry/core/componentstatus/validator.go

    	result, data, err := server.Prober.Probe(req, probeTimeOut)
    
    	if err != nil {
    		return probe.Unknown, "", err
    	}
    	if result == probe.Failure {
    		return probe.Failure, data, err
    	}
    	if server.Validate != nil {
    		if err := server.Validate([]byte(data)); err != nil {
    			return probe.Failure, data, err
    		}
    	}
    	return result, data, nil
    }
    
    type EtcdServer struct {
    	storagebackend.Config
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 20 13:08:41 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  2. tools/istio-iptables/pkg/validation/validator.go

    	DONE ReturnCode = iota
    )
    
    type Validator struct {
    	Config *Config
    }
    
    type Config struct {
    	ServerListenAddress []string
    	ServerOriginalPort  uint16
    	ServerOriginalIP    netip.Addr
    	ServerReadyBarrier  chan ReturnCode
    	ProbeTimeout        time.Duration
    }
    
    type Service struct {
    	Config *Config
    }
    
    type Client struct {
    	Config *Config
    }
    
    func (validator *Validator) Run() error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 01 04:37:36 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/validate.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package analysis
    
    import (
    	"fmt"
    	"reflect"
    	"strings"
    	"unicode"
    )
    
    // Validate reports an error if any of the analyzers are misconfigured.
    // Checks include:
    // that the name is a valid identifier;
    // that the Doc is not empty;
    // that the Run is non-nil;
    // that the Requires graph is acyclic;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 21:52:54 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  4. pkg/config/crd/validator.go

    	"istio.io/istio/pkg/util/sets"
    )
    
    // Validator returns a new validator for custom resources
    // Warning: this is meant for usage in tests only
    type Validator struct {
    	byGvk      map[schema.GroupVersionKind]validation.SchemaCreateValidator
    	structural map[schema.GroupVersionKind]*structuralschema.Structural
    	cel        map[schema.GroupVersionKind]*cel.Validator
    	// If enabled, resources without a validator will be ignored. Otherwise, they will fail.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 15:38:40 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresource/validator.go

    	kind                  schema.GroupVersionKind
    	schemaValidator       apiextensionsvalidation.SchemaValidator
    	statusSchemaValidator apiextensionsvalidation.SchemaValidator
    }
    
    func (a customResourceValidator) Validate(ctx context.Context, obj *unstructured.Unstructured, scale *apiextensions.CustomResourceSubresourceScale) field.ErrorList {
    	if errs := a.ValidateTypeMeta(ctx, obj); len(errs) > 0 {
    		return errs
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 14:00:05 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  6. releasenotes/notes/validate-appprotocol.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: istioctl
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 09 21:45:41 UTC 2022
    - 144 bytes
    - Viewed (0)
  7. releasenotes/notes/validate-unknown.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    issue:
    - 24861
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 11 21:20:58 UTC 2020
    - 168 bytes
    - Viewed (0)
  8. apache-maven/src/assembly/shared/validate

    Michael Osipov <******@****.***> 1640033625 +0100
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 21 09:29:19 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  9. internal/bucket/replication/rule.go

    	}
    	return ""
    }
    
    // Validate - validates the rule element
    func (r Rule) Validate(bucket string, sameTarget bool) error {
    	if err := r.validateID(); err != nil {
    		return err
    	}
    	if err := r.validateStatus(); err != nil {
    		return err
    	}
    	if err := r.validateFilter(); err != nil {
    		return err
    	}
    	if err := r.DeleteMarkerReplication.Validate(); err != nil {
    		return err
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jan 24 23:22:20 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  10. src/main/webapp/js/admin/plugins/form-validator/jquery.form-validator.min.js

    n m.shouldChangeDisplay=d.addValidClassOnAll,m;var n=b.valAttr("ignore");return n&&a.each(n.split(""),function(a,b){g=g.replace(new RegExp("\\"+b,"g"),"")}),a.split(j,function(h){0!==h.indexOf("validate_")&&(h="validate_"+h);var i=a.formUtils.validators[h];if(!i)throw new Error('Using undefined validator "'+h+'". Maybe you have forgotten to load the module that "'+h+'" belongs to?');if("validate_checkbox_group"===h&&(b=e.find('[name="'+b.attr("name")+'"]:eq(0)')),("keyup"!==f||i.validateOnKeyUp)...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 32.8K bytes
    - Viewed (0)
Back to top