Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 672 for fopacity (0.15 sec)

  1. pkg/apis/storage/validation/validation.go

    	allErrs = append(allErrs, metav1validation.ValidateLabelSelector(capacity.NodeTopology, labelSelectorValidationOptions, field.NewPath("nodeTopology"))...)
    	for _, msg := range apivalidation.ValidateClassName(capacity.StorageClassName, false) {
    		allErrs = append(allErrs, field.Invalid(field.NewPath("storageClassName"), capacity.StorageClassName, msg))
    	}
    	if capacity.Capacity != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 00:47:13 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/authentication/group/group_adder_test.go

    				Name:   "user",
    				Groups: []string{user.AllUnauthenticated, "some-group"},
    			},
    		},
    	}
    
    	for _, test := range tests {
    		capacity := make([]string, 0, 1024)
    		user := test.inputUser
    		user.Groups = append(capacity, user.Groups...) // make sure there is capacity in the groups array to trigger potential mutation
    		response := &authenticator.Response{User: user}
    		orig := toJson(response)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 11 20:04:50 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  3. pkg/kubelet/lifecycle/predicate_test.go

    				Status:     v1.NodeStatus{Capacity: makeResources(10, 20, 32, 0, 0, 0), Allocatable: makeAllocatableResources(10, 20, 32, 0, 0, 0)},
    			},
    			reasons: []PredicateFailureReason{
    				&InsufficientResourceError{ResourceName: v1.ResourceCPU, Requested: 8, Used: 5, Capacity: 10},
    				&InsufficientResourceError{ResourceName: v1.ResourceMemory, Requested: 10, Used: 19, Capacity: 20},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 23:13:50 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  4. pkg/apis/storage/validation/validation_test.go

    			capacity: func() *storage.CSIStorageCapacity {
    				capacity := goodCapacity
    				capacity.StorageClassName = invalidName
    				return &capacity
    			}(),
    		},
    		"good-capacity-value": {
    			capacity: func() *storage.CSIStorageCapacity {
    				capacity := goodCapacity
    				capacity.Capacity = resource.NewQuantity(1, resource.BinarySI)
    				return &capacity
    			}(),
    		},
    		"bad-capacity-value": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 69.7K bytes
    - Viewed (0)
  5. test/typeparam/issue48716.dir/a.go

    	Put(K, V)
    	Len() int
    	Iterate(func(Pair[K, V]) bool)
    }
    
    type HashMap[K comparable, V any] struct {
    	m map[K]V
    }
    
    func NewHashMap[K comparable, V any](capacity int) HashMap[K, V] {
    	var m map[K]V
    	if capacity >= 1 {
    		m = make(map[K]V, capacity)
    	} else {
    		m = map[K]V{}
    	}
    
    	return HashMap[K, V]{m: m}
    }
    
    func (m HashMap[K, V]) Put(k K, v V) {
    	m.m[k] = v
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 12 20:09:58 UTC 2021
    - 861 bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/crypto/sha3/doc.go

    //
    // # The sponge construction
    //
    // A sponge builds a pseudo-random function from a public pseudo-random
    // permutation, by applying the permutation to a state of "rate + capacity"
    // bytes, but hiding "capacity" of the bytes.
    //
    // A sponge starts out with a zero state. To hash an input using a sponge, up
    // to "rate" bytes of the input are XORed into the sponge's state. The sponge
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 10 16:37:53 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/collection/CaseInsensitiveMap.java

         */
        public CaseInsensitiveMap() {
        }
    
        /**
         * {@link CaseInsensitiveMap}を作成します。
         *
         * @param capacity
         *            初期容量
         */
        public CaseInsensitiveMap(final int capacity) {
            super(capacity);
        }
    
        /**
         * キーが含まれているかどうかを返します。
         *
         * @param key
         *            キー
         * @return キーが含まれているかどうか
         */
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/allocators.go

    type allocator struct {
    	name     string // name for alloc/free functions
    	typ      string // the type they return/accept
    	mak      string // code to make a new object (takes power-of-2 size as fmt arg)
    	capacity string // code to calculate the capacity of an object. Should always report a power of 2.
    	resize   string // code to shrink to sub-power-of-two size (takes size as fmt arg)
    	clear    string // code for clearing object before putting it on the free list
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 23:34:11 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/cacher/metrics/metrics.go

    			Help:           "Total number of watch cache capacity decrease events broken by resource type.",
    			StabilityLevel: compbasemetrics.ALPHA,
    		},
    		[]string{"resource"},
    	)
    
    	WatchCacheCapacity = compbasemetrics.NewGaugeVec(
    		&compbasemetrics.GaugeOpts{
    			Subsystem:      subsystem,
    			Name:           "capacity",
    			Help:           "Total capacity of watch cache broken by resource type.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 07:39:23 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/client-go/applyconfigurations/core/v1/persistentvolumeclaimstatus.go

    	AccessModes                      []v1.PersistentVolumeAccessMode                    `json:"accessModes,omitempty"`
    	Capacity                         *v1.ResourceList                                   `json:"capacity,omitempty"`
    	Conditions                       []PersistentVolumeClaimConditionApplyConfiguration `json:"conditions,omitempty"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 6.5K bytes
    - Viewed (0)
Back to top