Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 258 for Dead (0.1 sec)

  1. src/runtime/mgcmark.go

    	for state.head != nil {
    		x := state.head
    		state.head = x.next
    		if stackTraceDebug {
    			for i := 0; i < x.nobj; i++ {
    				obj := &x.obj[i]
    				if obj.r == nil { // reachable
    					continue
    				}
    				println("  dead stkobj at", hex(gp.stack.lo+uintptr(obj.off)), "of size", obj.r.size)
    				// Note: not necessarily really dead - only reachable-from-ptr dead.
    			}
    		}
    		x.nobj = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  2. src/runtime/traceback.go

    	// completed and their corresponding frames are dead. Not finding d3
    	// for frame 3 means we'll set frame 3's continpc == 0, which is correct
    	// (frame 3 is dead). At the end of the walk the panic stack can thus
    	// contain defers (d3 in this case) for dead frames. The inversion here
    	// always indicates a dead frame, and the effect of the inversion on the
    	// scan is to hide those dead frames, so the scan is still okay:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

      // Each of these resources could be read or written in the function. If its
      // read, we need to replace the resource arg with a value arg to get the
      // read value. If its written, we need to replace the write with an additional
      // value to be written.
    
      // Now create read values that will be used to replace each resource that
      // is read in the function body. These read values are just the same argument
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    	// restarts, pod will read the restart count from the registered dead container, increment
    	// it to get the new restart count, and then add a label with the new restart count on
    	// the newly started container.
    	// However, there are some limitations of this method:
    	//	1. When all dead containers were garbage collected, the container status could
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewrite.go

    	//
    	// For example, it would be invalid to merge load into target in
    	// the following situation because newmem has killed oldmem
    	// before target is reached:
    	//     load = read ... oldmem
    	//   newmem = write ... oldmem
    	//     arg0 = read ... newmem
    	//   target = add arg0 load
    	//
    	// If the argument comes from a different block then we can exclude
    	// it immediately because it must dominate load (which is in the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/regalloc.go

    	visitOrder []*Block
    
    	// blockOrder[b.ID] corresponds to the index of block b in visitOrder.
    	blockOrder []int32
    
    	// whether to insert instructions that clobber dead registers at call sites
    	doClobber bool
    }
    
    type endReg struct {
    	r register
    	v *Value // pre-regalloc value held in this register (TODO: can we use ID here?)
    	c *Value // cached version of the value
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  7. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    				status.ContainerStatuses[1].State = kubecontainer.ContainerStateExited
    				status.ContainerStatuses[1].ExitCode = 111
    			},
    			actions: noAction,
    		},
    		"Kill pod and recreate everything if the pod sandbox is dead, and RestartPolicy == Always": {
    			mutatePodFn: func(pod *v1.Pod) { pod.Spec.RestartPolicy = v1.RestartPolicyAlways },
    			mutateStatusFn: func(status *kubecontainer.PodStatus) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/deadness_analysis.cc

    }
    
    Status DeadnessAnalysisImpl::HandleRecv(Node* n,
                                            std::vector<bool>* should_revisit) {
      // In addition to being alive or dead based on the inputs, a _Recv can also
      // acquire a dead signal from a _Send.
      std::vector<Predicate*> input_preds;
      TF_RETURN_IF_ERROR(GetInputPreds(n, EdgeKind::kDataAndControl, &input_preds));
      Predicate* signal_is_alive;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  9. src/index/suffixarray/sais2.go

    	// Loop backward through sa, always tracking
    	// the next index to populate from sa[:numLMS].
    	// When we get to one, populate it.
    	// Zero the rest of the slots; they have dead values in them.
    	x := numLMS - 1
    	saX := sa[x]
    	c := text[saX]
    	b := bucket[c] - 1
    	bucket[c] = b
    
    	for i := len(sa) - 1; i >= 0; i-- {
    		if i != int(b) {
    			sa[i] = 0
    			continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  10. src/runtime/malloc.go

    	// While this pointer can't escape into user code as a
    	// _live_ pointer until we return, conservative scanning
    	// may find a dead pointer that happens to point into this
    	// object. Delaying this update until now ensures that
    	// conservative scanning considers this pointer dead until
    	// this point.
    	span.freeIndexForScan = span.freeindex
    
    	// Allocate black during GC.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
Back to top