Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,344 for valid (0.05 sec)

  1. 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)
  2. cmd/kubeadm/app/apis/kubeadm/validation/validation_test.go

    		{"valid, but IPv6 CIDR too small. At least 10 addresses needed", "10.0.0.16/12,2001:db8::/125", 10, false},
    		{"valid, but only IPv4 family addresses specified. IPv6 CIDR is necessary.", "10.0.0.16/12,192.168.0.0/16", 10, false},
    		{"valid, but only IPv6 family addresses specified. IPv4 CIDR is necessary.", "2001:db8::/98,2005:db8::/98", 10, false},
    		{"valid IPv4 and IPv6 CIDR", "10.0.0.16/12,2001:db8::/98", 10, true},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/util/patches/patches_test.go

    		expectedPatchType  types.PatchType
    		expectedWarning    bool
    		expectedError      bool
    	}{
    		{
    			name:               "valid: known target and patch type",
    			fileName:           "etcd+merge.json",
    			expectedTargetName: "etcd",
    			expectedPatchType:  types.MergePatchType,
    		},
    		{
    			name:               "valid: known target and default patch type",
    			fileName:           "etcd0.yaml",
    			expectedTargetName: "etcd",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 09 14:24:11 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/validtype.go

    		//           in that issue `type A[P any] [1]P` is a valid type on its own
    		//           and the (uninstantiated) A is recorded in check.valids. As a
    		//           consequence, when checking the remaining declarations, which
    		//           are not valid, the validity check ends prematurely because A
    		//           is considered valid, even though its validity depends on the
    		//           type argument provided to it.
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 13:22:37 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. src/go/types/validtype.go

    		//           in that issue `type A[P any] [1]P` is a valid type on its own
    		//           and the (uninstantiated) A is recorded in check.valids. As a
    		//           consequence, when checking the remaining declarations, which
    		//           are not valid, the validity check ends prematurely because A
    		//           is considered valid, even though its validity depends on the
    		//           type argument provided to it.
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  6. tests/test_path.py

                        "msg": "Input should be a valid integer, unable to parse string as an integer",
                        "input": "foobar",
                    }
                ]
            }
        ) | IsDict(
            # TODO: remove when deprecating Pydantic v1
            {
                "detail": [
                    {
                        "loc": ["path", "item_id"],
                        "msg": "value is not a valid integer",
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/net/http_test.go

    			wantErr: `agent must be valid`,
    		},
    		{
    			name:    "agent with newline",
    			code:    299,
    			agent:   "test\nagent",
    			text:    `example warning`,
    			wantErr: `agent must be valid`,
    		},
    		{
    			name:    "agent with backslash",
    			code:    299,
    			agent:   `test\agent`,
    			text:    `example warning`,
    			wantErr: `agent must be valid`,
    		},
    		{
    			name:    "agent with quote",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 18 01:21:56 UTC 2023
    - 24.5K bytes
    - Viewed (0)
  8. schema/field_test.go

    		deletedAt     = mytime(time.Now())
    		isAdmin       = mybool(false)
    		user          = AdvancedDataTypeUser{
    			ID:           sql.NullInt64{Int64: 10, Valid: true},
    			Name:         &sql.NullString{String: name, Valid: true},
    			Birthday:     sql.NullTime{Time: time.Now(), Valid: true},
    			RegisteredAt: mytime(time.Now()),
    			DeletedAt:    &deletedAt,
    			Active:       mybool(true),
    			Admin:        &isAdmin,
    		}
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Sat Feb 19 09:02:53 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tests/dilated-conv.mlir

      %2 = "tf.Conv2D"(%0, %arg1) {padding = "VALID", strides = [1, 1, 1, 1]} : (tensor<4x68x68x3xf32>, tensor<5x5x3x8xf32>) -> tensor<4x64x64x8xf32>
      %3 = "tf.Conv2D"(%1, %arg1) {padding = "VALID", strides = [1, 1, 1, 1]} : (tensor<4x68x68x3xf32>, tensor<5x5x3x8xf32>) -> tensor<4x64x64x8xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 44.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/mod/zip/zip.go

    // The module path must be valid (see [golang.org/x/mod/module.CheckPath]).
    // The version must be valid and canonical (see
    // [golang.org/x/mod/module.CanonicalVersion]). The path must have a major
    // version suffix consistent with the version (see
    // [golang.org/x/mod/module.Check]). The part of the file path after the
    // "<module>@<version>/" prefix must be valid (see
    // [golang.org/x/mod/module.CheckFilePath]).
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 31K bytes
    - Viewed (0)
Back to top