Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,756 for valid (0.06 sec)

  1. 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)
  2. manifests/charts/base/crds/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.6K bytes
    - Viewed (0)
  3. utils/utils_test.go

    		{"error not equal", errors.New("1"), errors.New("2"), false},
    		{"driver.Valuer equal", ModifyAt{Time: now, Valid: true}, ModifyAt{Time: now, Valid: true}, true},
    		{"driver.Valuer not equal", ModifyAt{Time: now, Valid: true}, ModifyAt{Time: now.Add(time.Second), Valid: true}, false},
    		{"driver.Valuer equal (ptr to nil ptr)", (*ModifyAt)(nil), &ModifyAt{}, false},
    	}
    	for _, test := range assertEqualTests {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Feb 19 03:42:25 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. src/crypto/rsa/pkcs1v15.go

    		return ErrDecryption
    	}
    
    	valid, em, index, err := decryptPKCS1v15(priv, ciphertext)
    	if err != nil {
    		return err
    	}
    
    	if len(em) != k {
    		// This should be impossible because decryptPKCS1v15 always
    		// returns the full slice.
    		return ErrDecryption
    	}
    
    	valid &= subtle.ConstantTimeEq(int32(len(em)-index), int32(len(key)))
    	subtle.ConstantTimeCopy(valid, key, em[len(em)-len(key):])
    	return nil
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:21 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/names/generate.go

    // available to guide selection of new names and this interface hides those details.
    type NameGenerator interface {
    	// GenerateName generates a valid name from the base name, adding a random suffix to
    	// the base. If base is valid, the returned name must also be valid. The generator is
    	// responsible for knowing the maximum valid name length.
    	GenerateName(base string) string
    }
    
    // simpleNameGenerator generates random names.
    type simpleNameGenerator struct{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 07:03:14 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  6. tests/test_tutorial/test_query_params/test_tutorial006.py

                        "loc": ["query", "skip"],
                        "msg": "Input should be a valid integer, unable to parse string as an integer",
                        "input": "a",
                    },
                    {
                        "type": "int_parsing",
                        "loc": ["query", "limit"],
                        "msg": "Input should be a valid integer, unable to parse string as an integer",
                        "input": "b",
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/validation/validation_test.go

    			name: "empty string",
    			in:   "",
    			err:  "must be a valid IP address",
    		},
    		{
    			name: "junk",
    			in:   "aaaaaaa",
    			err:  "must be a valid IP address",
    		},
    		{
    			name: "domain name",
    			in:   "myhost.mydomain",
    			err:  "must be a valid IP address",
    		},
    		{
    			name: "cidr",
    			in:   "1.2.3.0/24",
    			err:  "must be a valid IP address",
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 04:51:54 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/validation/validation_test.go

    		},
    	}, {
    		name: "reason-does-not-end-in-delimiter",
    		conditions: []metav1.Condition{{
    			Type:   "First",
    			Reason: "valid,val:",
    		}},
    		validateErrs: func(t *testing.T, errs field.ErrorList) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 02 07:48:42 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  9. src/crypto/internal/edwards25519/edwards25519_test.go

    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 10 18:45:00 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  10. tests/test_multi_query_errors.py

                        "loc": ["query", "q", 0],
                        "msg": "Input should be a valid integer, unable to parse string as an integer",
                        "input": "five",
                    },
                    {
                        "type": "int_parsing",
                        "loc": ["query", "q", 1],
                        "msg": "Input should be a valid integer, unable to parse string as an integer",
                        "input": "six",
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 4.5K bytes
    - Viewed (0)
Back to top