Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 410 for Maximum (0.28 sec)

  1. internal/auth/credentials.go

    )
    
    const (
    	// Minimum length for MinIO access key.
    	accessKeyMinLen = 3
    
    	// Maximum length for MinIO access key.
    	// There is no max length enforcement for access keys
    	accessKeyMaxLen = 20
    
    	// Minimum length for MinIO secret key for both server
    	secretKeyMinLen = 8
    
    	// Maximum secret key length for MinIO, this
    	// is used when autogenerating new credentials.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:14:16 UTC 2024
    - 12K bytes
    - Viewed (0)
  2. tests/test_tutorial/test_body_multiple_params/test_tutorial001_an_py39.py

                            {
                                "required": True,
                                "schema": {
                                    "title": "The ID of the item to get",
                                    "maximum": 1000.0,
                                    "minimum": 0.0,
                                    "type": "integer",
                                },
                                "name": "item_id",
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. pkg/apis/resource/validation/validation.go

    		// in particular when it is already beyond the maximum size. Instead this
    		// just shows the number of entries.
    		allErrs = append(allErrs, field.TooLongMaxLength(fldPath, len(slice), maxSize))
    	}
    	return allErrs
    }
    
    // validateResourceClaimConsumers ensures that the slice contains no duplicate UIDs and does not exceed a certain maximum size.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/model/adaptor.go

    	if s.Structural.ValueValidation == nil {
    		return false
    	}
    	return s.Structural.ValueValidation.ExclusiveMinimum
    }
    
    func (s *Structural) Maximum() *float64 {
    	if s.Structural.ValueValidation == nil {
    		return nil
    	}
    	return s.Structural.ValueValidation.Maximum
    }
    
    func (s *Structural) IsExclusiveMaximum() bool {
    	if s.Structural.ValueValidation == nil {
    		return false
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/convert.go

    	if s == nil {
    		return nil, nil
    	}
    	not, err := newNestedValueValidation(s.Not)
    	if err != nil {
    		return nil, err
    	}
    	v := &ValueValidation{
    		Format:           s.Format,
    		Maximum:          s.Maximum,
    		ExclusiveMaximum: s.ExclusiveMaximum,
    		Minimum:          s.Minimum,
    		ExclusiveMinimum: s.ExclusiveMinimum,
    		MaxLength:        s.MaxLength,
    		MinLength:        s.MinLength,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/apps/v1/types_swagger_doc_generated.go

    	"paused":                  "Indicates that the deployment is paused.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  7. docs/sts/ldap.md

    | :--                  | :--                                            |
    | _Type_               | _String_                                       |
    | _Length Constraints_ | _Minimum length of 2. Maximum length of 2048._ |
    | _Required_           | _Yes_                                          |
    
    ### LDAPPassword
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  8. pkg/registry/core/service/portallocator/storage/storage_test.go

    	}
    
    	tests := []struct {
    		name   string
    		port   int
    		errMsg string
    	}{
    		{
    			name:   "Allocate base port",
    			port:   basePortRange,
    			errMsg: "",
    		},
    		{
    			name:   "Allocate maximum from the port range",
    			port:   basePortRange + sizePortRange - 1,
    			errMsg: "",
    		},
    		{
    			name:   "Allocate invalid port: base port minus 1",
    			port:   basePortRange - 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)
  9. cmd/veeam-sos-api.go

    //
    //   - <StorageConcurrentTasksLimit>
    //     Setting reduces the parallel Repository Task slots that offload or write data to object storage. The same user interface
    //     setting overwrites the storage-defined setting.
    //     Optional value, default 0, range: 0-unlimited (0 equals unlimited, which means the maximum configured repository task
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 20 18:54:52 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/CacheControl.kt

        fun onlyIfCached() = commonOnlyIfCached()
    
        /** Don't accept a transformed response. */
        fun noTransform() = commonNoTransform()
    
        fun immutable() = commonImmutable()
    
        /**
         * Sets the maximum age of a cached response. If the cache response's age exceeds [maxAge], it
         * will not be used and a network request will be made.
         *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 13:41:01 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top