Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for allocable (0.36 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. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/cmd/compile/internal/ssagen/ssa.go

    	s.f.ABI1 = ssaConfig.ABI1
    	s.f.ABIDefault = abiForFunc(nil, ssaConfig.ABI0, ssaConfig.ABI1)
    	s.f.ABISelf = abiSelf
    
    	s.panics = map[funcLine]*ssa.Block{}
    	s.softFloat = s.config.SoftFloat
    
    	// Allocate starting block
    	s.f.Entry = s.f.NewBlock(ssa.BlockPlain)
    	s.f.Entry.Pos = fn.Pos()
    	s.f.IsPgoHot = isPgoHot
    
    	if printssa {
    		ssaDF := ssaDumpFile
    		if ssaDir != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  9. pkg/apis/core/validation/validation.go

    		allErrs = append(allErrs, ValidateResourceQuantityValue(k, v, resPath)...)
    	}
    
    	// Validate resource quantities in allocatable.
    	for k, v := range node.Status.Allocatable {
    		resPath := field.NewPath("status", "allocatable", string(k))
    		allErrs = append(allErrs, ValidateResourceQuantityValue(k, v, resPath)...)
    	}
    	return allErrs
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__batch__v1_openapi.json

              },
              "stdin": {
                "description": "Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false.",
                "type": "boolean"
              },
              "stdinOnce": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
Back to top