Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 672 for fopacity (0.15 sec)

  1. pkg/controller/volume/persistentvolume/framework_test.go

    // withExpectedCapacity sets the claim.Spec.Capacity of the first claim in the
    // array to given value and returns the array.  Meant to be used to compose
    // claims specified inline in a test.
    func withExpectedCapacity(capacity string, claims []*v1.PersistentVolumeClaim) []*v1.PersistentVolumeClaim {
    	claims[0].Status.Capacity = v1.ResourceList{
    		v1.ResourceName(v1.ResourceStorage): resource.MustParse(capacity),
    	}
    
    	return claims
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 09:54:00 UTC 2023
    - 38.3K bytes
    - Viewed (0)
  2. cmd/metrics.go

    	totalDisks := offlineDisks.Merge(onlineDisks)
    
    	// Report total capacity
    	ch <- prometheus.MustNewConstMetric(
    		prometheus.NewDesc(
    			prometheus.BuildFQName(minioNamespace, "capacity_raw", "total"),
    			"Total capacity online in the cluster",
    			nil, nil),
    		prometheus.GaugeValue,
    		float64(GetTotalCapacity(server.Disks)),
    	)
    
    	// Report total capacity free
    	ch <- prometheus.MustNewConstMetric(
    		prometheus.NewDesc(
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. pkg/registry/core/node/strategy_test.go

    			},
    			Status: api.NodeStatus{
    				Capacity: api.ResourceList{
    					api.ResourceName("hugepages-2Mi"): resource.MustParse("0"),
    					api.ResourceName("hugepages-1Gi"): resource.MustParse("2Gi"),
    				},
    			},
    		}, api.Node{
    			ObjectMeta: metav1.ObjectMeta{
    				Name: "hugepage-change-values-from-0",
    			},
    			Status: api.NodeStatus{
    				Capacity: api.ResourceList{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  4. pkg/kubelet/nodestatus/setters_test.go

    					},
    				},
    			},
    		},
    		{
    			desc: "hugepages reservation greater than node memory capacity should result in memory capacity set to 0",
    			node: &v1.Node{
    				Status: v1.NodeStatus{
    					Capacity: v1.ResourceList{
    						v1.ResourceHugePagesPrefix + "test": *resource.NewQuantity(1025, resource.BinarySI),
    					},
    				},
    			},
    			maxPods: 110,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 21:47:24 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_node_status.go

    		initialCapacity := initialNode.Status.Capacity[resourceName]
    		initialAllocatable := initialNode.Status.Allocatable[resourceName]
    
    		capacity, resourceIsSupported := existingNode.Status.Capacity[resourceName]
    		allocatable := existingNode.Status.Allocatable[resourceName]
    
    		// Add or update capacity if it the size was previously unsupported or has changed
    		if !resourceIsSupported || capacity.Cmp(initialCapacity) != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  6. docs/integrations/veeam/README.md

    When using Veeam Backup and Replication, you can use S3 compatible object storage such as MinIO as a capacity tier for backups.  This disaggregates storage for the Veeam infrastructure and allows you to retain control of your data. With the ease of use of setup and administration of MinIO, it allows a Veeam backup admin to easily deploy their own object store for capacity tiering.
    
    ## Prerequisites
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 5.4K bytes
    - Viewed (0)
  7. pkg/kubelet/images/image_gc_manager.go

    		return err
    	}
    
    	var capacity, available int64
    	if fsStats.CapacityBytes != nil {
    		capacity = int64(*fsStats.CapacityBytes)
    	}
    	if fsStats.AvailableBytes != nil {
    		available = int64(*fsStats.AvailableBytes)
    	}
    
    	if available > capacity {
    		klog.InfoS("Availability is larger than capacity", "available", available, "capacity", capacity)
    		available = capacity
    	}
    
    	// Check valid capacity.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  8. test/typeparam/issue48716.dir/main.go

    	src.Iterate(func(t T) bool {
    		dst.Add(t)
    		return true
    	})
    	return
    }
    
    type MapSet[T any] struct {
    	m a.Map[T, struct{}]
    }
    
    func HashSet[T comparable](capacity int) MapSet[T] {
    	return FromMap[T](a.NewHashMap[T, struct{}](capacity))
    }
    
    func FromMap[T any](m a.Map[T, struct{}]) MapSet[T] {
    	return MapSet[T]{
    		m: m,
    	}
    }
    
    func (s MapSet[T]) Add(t T) {
    	s.m.Put(t, struct{}{})
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 24 02:14:15 UTC 2022
    - 1021 bytes
    - Viewed (0)
  9. pkg/kubelet/cm/container_manager_linux.go

    	// Holds all the mounted cgroup subsystems
    	subsystems *CgroupSubsystems
    	nodeInfo   *v1.Node
    	// Interface for cgroup management
    	cgroupManager CgroupManager
    	// Capacity of this node.
    	capacity v1.ResourceList
    	// Capacity of this node, including internal resources.
    	internalCapacity v1.ResourceList
    	// Absolute cgroupfs path to a cgroup that Kubelet needs to place all pods under.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/io/ReaderInputStream.java

              return 0; // Not called.
            }
          }
        }
      }
    
      /** Returns a new CharBuffer identical to buf, except twice the capacity. */
      private static CharBuffer grow(CharBuffer buf) {
        char[] copy = Arrays.copyOf(buf.array(), buf.capacity() * 2);
        CharBuffer bigger = CharBuffer.wrap(copy);
        Java8Compatibility.position(bigger, buf.position());
        Java8Compatibility.limit(bigger, buf.limit());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 9.3K bytes
    - Viewed (0)
Back to top