Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for allocable (0.54 sec)

  1. common-protos/k8s.io/api/core/v1/generated.proto

      // +optional
      map<string, k8s.io.apimachinery.pkg.api.resource.Quantity> capacity = 1;
    
      // Allocatable represents the resources of a node that are available for scheduling.
      // Defaults to Capacity.
      // +optional
      map<string, k8s.io.apimachinery.pkg.api.resource.Quantity> allocatable = 2;
    
      // NodePhase is the recently observed lifecycle phase of the node.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"capacity":        "Capacity represents the total resources of a node. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#capacity",
    	"allocatable":     "Allocatable represents the resources of a node that are available for scheduling. Defaults to Capacity.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.21.md

    - EmptyDir memory backed volumes are sized as the minimum of pod allocatable memory on a host and an optional explicit user provided value. ([#100319](https://github.com/kubernetes/kubernetes/pull/100319), [@derekwaynecarr](https://github.com/derekwaynecarr)) [SIG Node]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 07:03:14 UTC 2022
    - 367.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types.go

    	// Allocatable represents the resources of a node that are available for scheduling.
    	// Defaults to Capacity.
    	// +optional
    	Allocatable ResourceList `json:"allocatable,omitempty" protobuf:"bytes,2,rep,name=allocatable,casttype=ResourceList,castkey=ResourceName"`
    	// NodePhase is the recently observed lifecycle phase of the node.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/generated.proto

      // +optional
      map<string, .k8s.io.apimachinery.pkg.api.resource.Quantity> capacity = 1;
    
      // Allocatable represents the resources of a node that are available for scheduling.
      // Defaults to Capacity.
      // +optional
      map<string, .k8s.io.apimachinery.pkg.api.resource.Quantity> allocatable = 2;
    
      // NodePhase is the recently observed lifecycle phase of the node.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  6. src/net/http/h2_bundle.go

    func (b *http2dataBuffer) Write(p []byte) (int, error) {
    	ntotal := len(p)
    	for len(p) > 0 {
    		// If the last chunk is empty, allocate a new chunk. Try to allocate
    		// enough to fully copy p plus any additional bytes we expect to
    		// receive. However, this may allocate less than len(p).
    		want := int64(len(p))
    		if b.expected > want {
    			want = b.expected
    		}
    		chunk := b.lastChunkOrAlloc(want)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.10.md

    * Avoid panic when failing to allocate a Cloud CIDR (aka GCE Alias IP Range).  ([#58186](https://github.com/kubernetes/kubernetes/pull/58186), [@negz](https://github.com/negz))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 341.8K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.6.md

        `--cgroups-per-qos=false`.
      * If `kube-reserved` and/or `system-reserved` are specified, node allocatable
        will be enforced on all pods by default. To opt-out set
        `--enforce-node-allocatable=””`
      * Hard Eviction Thresholds will be subtracted from Capacity while calculating
        Node Allocatable. This will result in a reduction of schedulable capacity in
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 304K bytes
    - Viewed (0)
  9. pkg/apis/core/types.go

    type NodeStatus struct {
    	// Capacity represents the total resources of a node.
    	// +optional
    	Capacity ResourceList
    	// Allocatable represents the resources of a node that are available for scheduling.
    	// +optional
    	Allocatable ResourceList
    	// NodePhase is the current lifecycle phase of the node.
    	// +optional
    	Phase NodePhase
    	// Conditions is an array of current node conditions.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  10. pkg/registry/core/service/storage/storage_test.go

    				t.Errorf("expected clusterIPs [\"None\"], got %q", createdSvc.Spec.ClusterIPs)
    			}
    		})
    	}
    }
    
    // Prove that a dry-run create doesn't actually allocate IPs or ports.
    func TestCreateDryRun(t *testing.T) {
    	testCases := []struct {
    		name            string
    		clusterFamilies []api.IPFamily
    		svc             *api.Service
    	}{{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
Back to top