Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 81 for Allocate (0.14 sec)

  1. src/cmd/compile/internal/liveness/plive.go

    	// parameters are live all the time.  In addition, any locals
    	// that are pointers to heap-allocated output parameters are
    	// also always live (post-deferreturn code needs these
    	// pointers to copy values back to the stack).
    	// TODO: if the output parameter is heap-allocated, then we
    	// don't need to keep the stack copy live?
    	if lv.fn.HasDefer() {
    		for i, n := range lv.vars {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  2. 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)
  3. src/os/exec/exec.go

    		Dir:   c.Dir,
    		Files: childFiles,
    		Env:   env,
    		Sys:   c.SysProcAttr,
    	})
    	if err != nil {
    		return err
    	}
    	started = true
    
    	// Don't allocate the goroutineErr channel unless there are goroutines to start.
    	if len(c.goroutine) > 0 {
    		goroutineErr := make(chan error, 1)
    		c.goroutineErr = goroutineErr
    
    		type goroutineStatus struct {
    			running  int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

          if (throwable != null) {
            return new Failure(throwable);
          }
        }
        boolean wasCancelled = future.isCancelled();
        // Don't allocate a CancellationException if it's not necessary
        if (!GENERATE_CANCELLATION_CAUSES & wasCancelled) {
          /*
           * requireNonNull is safe because we've initialized CAUSELESS_CANCELLED if
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (0)
  5. guava/src/com/google/common/util/concurrent/AbstractFuture.java

          if (throwable != null) {
            return new Failure(throwable);
          }
        }
        boolean wasCancelled = future.isCancelled();
        // Don't allocate a CancellationException if it's not necessary
        if (!GENERATE_CANCELLATION_CAUSES & wasCancelled) {
          /*
           * requireNonNull is safe because we've initialized CAUSELESS_CANCELLED if
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  6. src/cmd/link/internal/ld/data.go

    	state.assignDsymsToSection(sect, state.data[symn], forceType, aligndatsize)
    	return sect
    }
    
    // allocateDataSections allocates sym.Section objects for data/rodata
    // (and related) symbols, and then assigns symbols to those sections.
    func (state *dodataState) allocateDataSections(ctxt *Link) {
    	// Allocate sections.
    	// Data is processed before segtext, because we need
    	// to see all symbols in the .data and .bss sections in order
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  7. 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)
  8. src/cmd/compile/internal/ssa/debug.go

    	var cloReg int16
    
    	extraForCloCtx := 0
    	if needCloCtx {
    		extraForCloCtx = 1
    	}
    
    	// Allocate location lists.
    	rval.LocationLists = make([][]byte, numRegParams+extraForCloCtx)
    
    	// Locate the value corresponding to the last spill of
    	// an input register.
    	afterPrologVal, cloRegStore := locatePrologEnd(f, needCloCtx)
    
    	if needCloCtx {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  9. 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)
  10. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let constructor = "TF::CreateGuaranteeAllFuncsOneUsePass()";
    }
    
    def TPUColocateCompositeResourceOpsPass : Pass<"tf-tpu-colocate-composite-resource-ops", "mlir::func::FuncOp"> {
      let summary = "Colocate resource with composite device assignment to TPU device.";
      let constructor = "TFTPU::CreateTPUColocateCompositeResourceOps()";
      let description = [{
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
Back to top