Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for Allocate (0.15 sec)

  1. 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)
  2. src/cmd/compile/internal/ssagen/ssa.go

    		}
    	}
    
    	typ := s.curfn.Type()
    	do(typ.Recvs())
    	do(typ.Params())
    	do(typ.Results())
    }
    
    // newHeapaddr allocates heap memory for n and sets its heap address.
    func (s *state) newHeapaddr(n *ir.Name) {
    	s.setHeapaddr(n.Pos(), n, s.newObject(n.Type(), nil))
    }
    
    // setHeapaddr allocates a new PAUTO variable to store ptr (which must be non-nil)
    // and then sets it as n's heap address.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  3. 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)
  4. CHANGELOG/CHANGELOG-1.29.md

    - Fixed a bug where the CPU set allocated to an init container, with containerRestartPolicy of `Always`, were erroneously reused by a regular container. ([#119447](https://github.com/kubernetes/kubernetes/pull/119447), [@gjkim42](https://github.com/gjkim42)) [SIG Node and Testing]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.27.md

    - During device plugin allocation, resources requested by the pod can only be allocated if the device plugin has registered itself to kubelet AND healthy devices are present on the node to be allocated. If these conditions are not sattsfied, the pod would fail with `UnexpectedAdmissionError` error. ([#117719](https://github.com/kubernetes/kubernetes/pull/117719), [@swatisehgal](https://g...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.28.md

    - Enabled use of pods with volumes and user namespaces. The feature gate...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
  7. doc/go_spec.html

    storage for a named variable.
    
    Calling the built-in function <a href="#Allocation"><code>new</code></a>
    or taking the address of a <a href="#Composite_literals">composite literal</a>
    allocates storage for a variable at run time.
    Such an anonymous variable is referred to via a (possibly implicit)
    <a href="#Address_operators">pointer indirection</a>.
    </p>
    
    <p>
    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. docs/en/docs/release-notes.md

        * This was reported internally by [@rushilsrivastava](https://github.com/rushilsrivastava) as a memory leak when the server had unhandled exceptions that would produce internal server errors, the memory allocated before that point would not be released.
        * Read the new docs: [Dependencies with `yield` and `except`](https://fastapi.tiangolo.com/tutorial/dependencies/dependencies-with-yield/#dependencies-with-yield-and-except).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
Back to top