Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for allocations (0.21 sec)

  1. src/cmd/compile/internal/ssagen/ssa.go

    // panic and show the return values as they exist at the time of
    // panic.  For precise stacks, the garbage collector assumes results
    // are always live, so we need to zero them before any allocations,
    // even allocations to move params/results to the heap.
    func (s *state) zeroResults() {
    	for _, f := range s.curfn.Type().Results() {
    		n := f.Nname.(*ir.Name)
    		if !n.OnStack() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.29.md

    - `k8s.io/dynamic-resource-allocation/controller:` `UnsuitableNodes` can now handle a mix of allocated and unallocated claims correctly. ([#120338](https://github.com/kubernetes/kubernetes/pull/120338), [@pohly](https://github.com/pohly))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.27.md

    - Introduced a breaking change to the `resource.k8s.io` API in its `AllocationResult` struct. This change allows a kubelet plugin for the `DynamicResourceAllocation` feature to service allocations from multiple resource driver controllers. ([#116332](https://github.com/kubernetes/kubernetes/pull/116332), [@klueska](https://github.com/klueska))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  4. src/net/http/h2_bundle.go

    	// From the config.
    	maxClosedNodesInTree int
    	maxIdleNodesInTree   int
    	writeThrottleLimit   int32
    	enableWriteThrottle  bool
    
    	// tmp is scratch space for priorityNode.walkReadyInOrder to reduce allocations.
    	tmp []*http2priorityNode
    
    	// pool of empty queues for reuse.
    	queuePool http2writeQueuePool
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.28.md

    - Dynamic resource allocation: when a claim uses "wait for first consumer" allocation (the default), then it will now get deallocated after it was used by a pod. That ensures that the next pod isn't affected by previous scheduling decision and that resources are not kept allocated unless really needed. If keeping a claim allocated is desired, use "immediate allocation." ([#118936](https://github.com/kubernetes/kubernetes/pull/118936), [@pohl...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.30.md

       ([#123508](https://github.com/kubernetes/kubernetes/pull/123508), [@saschagrunert](https://github.com/saschagrunert))
    - Dynamic Resource Allocation: DRA drivers can now use "structured parameters" to let the scheduler handle claim allocation.
       ([#123516](https://github.com/kubernetes/kubernetes/pull/123516), [@pohly](https://github.com/pohly))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  7. doc/go_spec.html

    compared lexically byte-wise:
    </p>
    
    <pre>
    min(x, y)    == if x <= y then x else y
    min(x, y, z) == min(min(x, y), z)
    </pre>
    
    <h3 id="Allocation">Allocation</h3>
    
    <p>
    The built-in function <code>new</code> takes a type <code>T</code>,
    allocates storage for a <a href="#Variables">variable</a> of that type
    at run time, and returns a value of type <code>*T</code>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__batch__v1_openapi.json

            "properties": {
              "args": {
    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