Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 3,141 for valid (0.11 sec)

  1. tests/test_query.py

            {
                "detail": [
                    {
                        "type": "int_parsing",
                        "loc": ["query", "query"],
                        "msg": "Input should be a valid integer, unable to parse string as an integer",
                        "input": "42.5",
                    }
                ]
            }
        ) | IsDict(
            # TODO: remove when deprecating Pydantic v1
            {
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 21:56:59 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/token_test.go

    		extraGroups   []string
    		printJoin     bool
    		expectedError bool
    	}{
    		{
    			name:          "valid: empty token",
    			token:         "",
    			usages:        []string{"signing", "authentication"},
    			extraGroups:   []string{"system:bootstrappers:foo"},
    			expectedError: false,
    		},
    		{
    			name:          "valid: non-empty token",
    			token:         "abcdef.1234567890123456",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 05:47:48 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/util/endpoint_test.go

    		expectedPort  string
    		expectedError bool
    	}{
    		{
    			name:         "valid dns",
    			hostport:     "cp.k8s.io",
    			expectedHost: "cp.k8s.io",
    			expectedPort: "",
    		},
    		{
    			name:         "valid dns:port",
    			hostport:     "cp.k8s.io:1234",
    			expectedHost: "cp.k8s.io",
    			expectedPort: "1234",
    		},
    		{
    			name:         "valid ip4",
    			hostport:     "1.2.3.4",
    			expectedHost: "1.2.3.4",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 23 03:19:26 UTC 2019
    - 10K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/inspect/ClassModelRuleSourceValidationTest.groovy

            OuterClass.HasInstanceVar          | "Field foo is not valid: Fields must be static final."
            OuterClass.HasFinalInstanceVar     | "Field foo is not valid: Fields must be static final."
            OuterClass.HasNonFinalStaticVar    | "Field foo is not valid: Fields must be static final."
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  5. soft_delete.go

    func (n DeletedAt) Value() (driver.Value, error) {
    	if !n.Valid {
    		return nil, nil
    	}
    	return n.Time, nil
    }
    
    func (n DeletedAt) MarshalJSON() ([]byte, error) {
    	if n.Valid {
    		return json.Marshal(n.Time)
    	}
    	return json.Marshal(nil)
    }
    
    func (n *DeletedAt) UnmarshalJSON(b []byte) error {
    	if string(b) == "null" {
    		n.Valid = false
    		return nil
    	}
    	err := json.Unmarshal(b, &n.Time)
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Feb 01 06:40:55 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  6. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                      Valid Options: FAIL_CLOSE, FAIL_OPEN
                    enum:
                    - FAIL_CLOSE
                    - FAIL_OPEN
                    type: string
                  imagePullPolicy:
                    description: |-
                      The pull behaviour to be applied when fetching Wasm module by either OCI image or `http/https`.
    
                      Valid Options: IfNotPresent, Always
                    enum:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  7. tests/scanner_valuer_test.go

    		Name:     sql.NullString{String: "name", Valid: true},
    		Gender:   &sql.NullString{String: "M", Valid: true},
    		Age:      sql.NullInt64{Int64: 18, Valid: true},
    		Male:     sql.NullBool{Bool: true, Valid: true},
    		Height:   sql.NullFloat64{Float64: 1.8888, Valid: true},
    		Birthday: sql.NullTime{Time: time.Now(), Valid: true},
    		Allergen: NullString{sql.NullString{String: "Allergen", Valid: true}},
    		Password: EncryptedData("pass1"),
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 07 07:02:07 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  8. pkg/proxy/ipvs/ipset/ipset.go

    		//check if IP and Protocol of Entry is valid.
    		if valid := e.checkIPandProtocol(set); !valid {
    			return false
    		}
    	case HashIPPortIP:
    		//check if IP and Protocol of Entry is valid.
    		if valid := e.checkIPandProtocol(set); !valid {
    			return false
    		}
    
    		// IP2 can not be empty for `hash:ip,port,ip` type ip set
    		if netutils.ParseIPSloppy(e.IP2) == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  9. tests/integration/pilot/validation_test.go

    							case dryRunErr != nil && valid:
    								if denied(dryRunErr) {
    									t.Fatalf("got unexpected for valid config: %v", dryRunErr)
    								} else {
    									t.Fatalf("got unexpected unknown error for valid config: %v", dryRunErr)
    								}
    							case dryRunErr == nil && !valid:
    								t.Fatalf("got unexpected success for invalid config")
    							case dryRunErr != nil && !valid:
    								if !denied(dryRunErr) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 13 15:19:36 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/api/validation/generic.go

    // ValidateNameFunc validates that the provided name is valid for a given resource type.
    // Not all resources have the same validation rules for names. Prefix is true
    // if the name will have a value appended to it.  If the name is not valid,
    // this returns a list of descriptions of individual characteristics of the
    // value that were not valid.  Otherwise this returns an empty list or nil.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 03 14:47:11 UTC 2021
    - 3.2K bytes
    - Viewed (0)
Back to top