Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 162 for Maximum (0.11 sec)

  1. internal/store/queuestore.go

    	"github.com/valyala/bytebufferpool"
    )
    
    const (
    	defaultLimit = 100000 // Default store limit.
    	defaultExt   = ".unknown"
    )
    
    // errLimitExceeded error is sent when the maximum limit is reached.
    var errLimitExceeded = errors.New("the maximum store limit reached")
    
    // QueueStore - Filestore for persisting items.
    type QueueStore[_ any] struct {
    	sync.RWMutex
    	entryLimit uint64
    	directory  string
    	fileExt    string
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 25 16:44:20 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. src/cmd/vendor/golang.org/x/text/unicode/norm/transform.go

    // least of size MaxTransformChunkSize to be guaranteed of progress.
    func (f Form) Transform(dst, src []byte, atEOF bool) (nDst, nSrc int, err error) {
    	// Cap the maximum number of src bytes to check.
    	b := src
    	eof := atEOF
    	if ns := len(dst); ns < len(b) {
    		err = transform.ErrShortDst
    		eof = false
    		b = b[:ns]
    	}
    	i, ok := formTable[f].quickSpan(inputBytes(b), 0, len(b), eof)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/AttributeDescriberSelector.java

                int size = Sets.intersection(consumerDescriber.getDescribableAttributes(), consumerAttributeSet).size();
                if (size > maxSize) {
                    // Select the describer which handles the maximum number of attributes
                    current = consumerDescriber;
                    maxSize = size;
                }
            }
            if (current != null) {
                return new FallbackDescriber(current);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 22:29:19 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  6. 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)
  7. internal/bucket/replication/replication.go

    package replication
    
    import (
    	"encoding/xml"
    	"io"
    	"sort"
    	"strconv"
    	"strings"
    )
    
    var (
    	errReplicationTooManyRules          = Errorf("Replication configuration allows a maximum of 1000 rules")
    	errReplicationNoRule                = Errorf("Replication configuration should have at least one rule")
    	errReplicationUniquePriority        = Errorf("Replication configuration has duplicate priority")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 28 17:44:56 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  8. 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)
  9. src/mime/multipart/formdata.go

    				os.Remove(file.Name())
    			}
    		}
    	}()
    
    	// maxFileMemoryBytes is the maximum bytes of file data we will store in memory.
    	// Data past this limit is written to disk.
    	// This limit strictly applies to content, not metadata (filenames, MIME headers, etc.),
    	// since metadata is always stored in memory, not disk.
    	//
    	// maxMemoryBytes is the maximum bytes we will store in memory, including file content,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 16:12:35 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  10. tests/test_tutorial/test_body_multiple_params/test_tutorial001.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.5K bytes
    - Viewed (0)
Back to top