Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 244 for allocable (0.31 sec)

  1. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.Node.json

            "kubeletConfigKey": "kubeletConfigKeyValue"
          }
        },
        "externalID": "externalIDValue"
      },
      "status": {
        "capacity": {
          "capacityKey": "0"
        },
        "allocatable": {
          "allocatableKey": "0"
        },
        "phase": "phaseValue",
        "conditions": [
          {
            "type": "typeValue",
            "status": "statusValue",
            "lastHeartbeatTime": "2003-01-01T01:01:01Z",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. src/runtime/mpallocbits.go

    	m.pallocBits.allocRange(i, n)
    	m.scavenged.clearRange(i, n)
    }
    
    // allocAll sets every bit in the bitmap to 1 and updates
    // the scavenged bits appropriately.
    func (m *pallocData) allocAll() {
    	// Clear the scavenged bits when we alloc the range.
    	m.pallocBits.allocAll()
    	m.scavenged.clearAll()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 15:13:43 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  3. pkg/apis/core/v1/defaults.go

    		obj.Phase = v1.NamespaceActive
    	}
    }
    func SetDefaults_NodeStatus(obj *v1.NodeStatus) {
    	if obj.Allocatable == nil && obj.Capacity != nil {
    		obj.Allocatable = make(v1.ResourceList, len(obj.Capacity))
    		for key, value := range obj.Capacity {
    			obj.Allocatable[key] = value.DeepCopy()
    		}
    		obj.Allocatable = obj.Capacity
    	}
    }
    func SetDefaults_ObjectFieldSelector(obj *v1.ObjectFieldSelector) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 22:24:15 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  4. pkg/apis/core/v1/defaults_test.go

    		allocatable:         allocatable,
    		expectedAllocatable: allocatable,
    	}, { // Allocatable set, no defaulting.
    		capacity:            nil,
    		allocatable:         allocatable,
    		expectedAllocatable: allocatable,
    	}, { // Capacity set, allocatable defaults to capacity.
    		capacity:            capacity,
    		allocatable:         nil,
    		expectedAllocatable: capacity,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  5. pkg/util/tail/tail.go

    	blockSize = 1024
    )
    
    // ReadAtMost reads at most max bytes from the end of the file identified by path or
    // returns an error. It returns true if the file was longer than max. It will
    // allocate up to max bytes.
    func ReadAtMost(path string, max int64) ([]byte, bool, error) {
    	f, err := os.Open(path)
    	if err != nil {
    		return nil, false, err
    	}
    	defer f.Close()
    	fi, err := f.Stat()
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 13:13:22 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. cmd/kubelet/app/options/options.go

    	ExperimentalMounterPath string
    	// This flag, if set, will avoid including `EvictionHard` limits while computing Node Allocatable.
    	// Refer to [Node Allocatable](https://kubernetes.io/docs/tasks/administer-cluster/reserve-compute-resources/#node-allocatable) doc for more information.
    	ExperimentalNodeAllocatableIgnoreEvictionThreshold bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssagen/abi.go

    	// need to allocate stack space, so it should be OK to mark them
    	// as NOSPLIT in these cases. In addition, my assumption is that
    	// functions written in assembly are NOSPLIT in most (but not all)
    	// cases. In the case of an ABIInternal target that has too many
    	// parameters to fit into registers, the wrapper would need to
    	// allocate stack space, but this seems like an unlikely scenario.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  8. src/runtime/mklockrank.go

    traceBuf < traceStrings;
    
    # Malloc
    allg,
      allocmR,
      allp, # procresize
      execR, # May grow stack
      execW, # May allocate after BeforeFork
      hchan,
      notifyList,
      reflectOffs,
      timer,
      traceStrings,
      userArenaState
    # Above MALLOC are things that can allocate memory.
    < MALLOC
    # Below MALLOC is the malloc implementation.
    < fin,
      spanSetSpine,
      mspanSpecial,
      traceTypeTab,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/serviceentry/store_test.go

    	}
    	if !store.allocateNeeded {
    		t.Errorf("expected allocate needed")
    	}
    	store.allocateNeeded = false
    	store.deleteServices(httpDNSRR.NamespacedName())
    	got = store.getAllServices()
    	if len(got) != 0 {
    		t.Errorf("got unexpected services %v", got)
    	}
    	if store.allocateNeeded {
    		t.Errorf("expected no allocate needed")
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/nodevolumelimits/utils.go

    }
    
    // volumeLimits returns volume limits associated with the node.
    func volumeLimits(n *framework.NodeInfo) map[v1.ResourceName]int64 {
    	volumeLimits := map[v1.ResourceName]int64{}
    	for k, v := range n.Allocatable.ScalarResources {
    		if v1helper.IsAttachableVolumeResourceName(k) {
    			volumeLimits[k] = v
    		}
    	}
    	return volumeLimits
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top