Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 2,756 for valid (0.25 sec)

  1. pkg/api/job/warnings_test.go

    				},
    			},
    			wantWarningsCount: 1,
    		},
    		"valid Indexed low completions low parallelism": {
    			spec: &batch.JobSpec{
    				CompletionMode: completionModePtr(batch.IndexedCompletion),
    				Completions:    pointer.Int32(10_000),
    				Parallelism:    pointer.Int32(10_000),
    				Template:       validPodTemplate,
    			},
    		},
    		"valid Indexed high completions low parallelism": {
    			spec: &batch.JobSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 14 14:38:42 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  2. pkg/apis/policy/validation/validation_test.go

    		name      string
    		pdbSpec   policy.PodDisruptionBudgetSpec
    		expectErr bool
    	}{{
    		name: "valid nil UnhealthyPodEvictionPolicy",
    		pdbSpec: policy.PodDisruptionBudgetSpec{
    			MinAvailable:               &c1,
    			UnhealthyPodEvictionPolicy: nil,
    		},
    		expectErr: false,
    	}, {
    		name: "valid UnhealthyPodEvictionPolicy",
    		pdbSpec: policy.PodDisruptionBudgetSpec{
    			MinAvailable:               &c1,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 07 20:44:13 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  3. internal/bucket/lifecycle/expiration_test.go

    	validationTestCases := []struct {
    		inputXML    string
    		expectedErr error
    	}{
    		{ // Expiration with a valid ISO 8601 date
    			inputXML: `<Expiration>
                                        <Date>2019-04-20T00:00:00Z</Date>
                                        </Expiration>`,
    			expectedErr: nil,
    		},
    		{ // Expiration with a valid number of days
    			inputXML: `<Expiration>
                                        <Days>3</Days>
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Feb 21 20:28:34 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. internal/bucket/object/lock/lock.go

    const (
    	// RetGovernance - governance mode.
    	RetGovernance RetMode = "GOVERNANCE"
    
    	// RetCompliance - compliance mode.
    	RetCompliance RetMode = "COMPLIANCE"
    )
    
    // Valid - returns if retention mode is valid
    func (r RetMode) Valid() bool {
    	switch r {
    	case RetGovernance, RetCompliance:
    		return true
    	}
    	return false
    }
    
    func parseRetMode(modeStr string) (mode RetMode) {
    	switch strings.ToUpper(modeStr) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/inspect/ManagedModelInitializerTest.groovy

    Its property 'org.gradle.model.ModelMap<java.io.FileInputStream> map' is not a valid managed collection
    A managed collection can not contain 'java.io.FileInputStream's
    A valid managed collection takes the form of ModelSet<T> or ModelMap<T> where 'T' is:
            - A managed type (annotated with @Managed)""")
        }
    
        @Managed
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  6. pkg/registry/core/service/portallocator/storage/storage_test.go

    			errMsg: fmt.Sprintf("provided port is not in the valid range. The range of valid ports is %d-%d", basePortRange, basePortRange+sizePortRange-1),
    		},
    		{
    			name:   "Allocate invalid port: maximum port from the port range plus 1",
    			port:   basePortRange + sizePortRange,
    			errMsg: fmt.Sprintf("provided port is not in the valid range. The range of valid ports is %d-%d", basePortRange, basePortRange+sizePortRange-1),
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 07:15:02 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  7. pkg/volume/util/atomic_writer_test.go

    	cases := []struct {
    		name  string
    		path  string
    		valid bool
    	}{
    		{
    			name:  "valid 1",
    			path:  "i/am/well/behaved.txt",
    			valid: true,
    		},
    		{
    			name:  "valid 2",
    			path:  "keepyourheaddownandfollowtherules.txt",
    			valid: true,
    		},
    		{
    			name:  "max path length",
    			path:  maxPath,
    			valid: false,
    		},
    		{
    			name:  "max file length",
    			path:  maxFile,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/net/HostSpecifier.java

       * parsing fails. Always use this method in preference to {@link #fromValid(String)} for a
       * specifier that is not already known to be valid.
       *
       * @throws ParseException if the specifier is not valid.
       */
      @CanIgnoreReturnValue // TODO(b/219820829): consider removing
      public static HostSpecifier from(String specifier) throws ParseException {
        try {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 05 09:18:40 UTC 2023
    - 6K bytes
    - Viewed (0)
  9. tests/test_tutorial/test_custom_request_and_route/test_tutorial002.py

            {
                "detail": {
                    "errors": [
                        {
                            "type": "list_type",
                            "loc": ["body"],
                            "msg": "Input should be a valid list",
                            "input": {"numbers": [1, 2, 3]},
                        }
                    ],
                    "body": '{"numbers": [1, 2, 3]}',
                }
            }
        ) | IsDict(
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/testdata/route-precedence.status.yaml.golden

    kind: HTTPRoute
    metadata:
      creationTimestamp: null
      name: http
      namespace: allowed-1
    spec: null
    status:
      parents:
      - conditions:
        - lastTransitionTime: fake
          message: Route was valid
          reason: Accepted
          status: "True"
          type: Accepted
        - lastTransitionTime: fake
          message: All references resolved
          reason: ResolvedRefs
          status: "True"
          type: ResolvedRefs
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top