Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 4,433 for Dead (0.05 sec)

  1. src/runtime/testdata/testprog/lockosthread.go

    	// which should have died is still running. However, rather than do this with
    	// thread IDs, it does this by unsharing state on that thread. This way, it
    	// also detects whether new threads were cloned from the dead thread, and not
    	// from a clean thread. Cloning from a locked thread is undesirable since
    	// cloned threads will inherit potentially unwanted OS state.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:00:09 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/remove_vars_in_session_initializer.cc

      // TODO(b/160906885): Repalce the following code with an non-recursive one.
      llvm::SmallVector<Operation*, 4> erase_list;
      llvm::SmallPtrSet<Operation*, 4> dead_ops;
    
      // Marks all the variables dead.
      dead_ops.insert(vars.begin(), vars.end());
    
      // Removes relevant ops in topological order.
      for (auto& op : vars) RecursiveRemove(op, erase_list, dead_ops);
    
      // Erases the ops.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DaemonClient.java

            //we can try sending something to the daemon and try out if it is really dead or use jps
            //if it's really dead we should deregister it if it is not already deregistered.
            //if the daemon is not dead we might continue receiving from it (and try to find the bug in messaging infrastructure)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/quantization/lite/quantize_weights.h

    // custom op is quantized only for storage and dequantized at runtime.
    // 'no_side_effect' is used to determine whether the op can be pruned if
    // considered as trivially dead.
    struct CustomOpInfo {
      std::vector<std::int32_t> quantizable_input_indices;
      bool is_weight_only = false;
      bool no_side_effect = true;
    };
    
    using BuiltinOperatorSet = absl::flat_hash_set<tflite::BuiltinOperator>;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. pkg/backoff/exponential.go

    // limitations under the License.
    
    // Package backoff is a wrapper of `github.com/cenkalti/backoff/v4`.
    // It is to prevent misuse of `github.com/cenkalti/backoff/v4`,
    // thus application could fall into dead loop.
    package backoff
    
    import (
    	"context"
    	"fmt"
    	"time"
    
    	"github.com/cenkalti/backoff/v4"
    )
    
    // BackOff is a backoff policy for retrying an operation.
    type BackOff interface {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 25 01:53:48 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/passes/remove_var_init_by_const.cc

      }
    
      void rewrite(TF::AssignVariableOp assign_op,
                   PatternRewriter& rewriter) const override {
        // `TF::ConstOp` and `TF::VarHandleOp` are not manually erased.
        // `applyPatternsAndFoldGreedily` performs dead code elimination and unsed
        // ops will be erased during the optimization.
        rewriter.eraseOp(assign_op);
      }
    };
    
    void RemoveVariableInitializationByConstPass::runOnOperation() {
      MLIRContext& ctx = getContext();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 03 12:04:03 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/internal/clustering_bridge_passes.cc

      // Running canonicalizer before decomposing resource ops in cluster helps the
      // latter pass to converge faster as it does not have to spend time folding
      // away dead ops.
      pm.addNestedPass<FuncOp>(mlir::createCanonicalizerPass());
      // Place DecomposeResourceOpsPass before TFExecutorConstantSinking pass
      // because DecomposeResourceOpsPass uses pattern rewriter which hoists
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 16:09:14 UTC 2024
    - 11.2K bytes
    - Viewed (1)
  8. pkg/kubelet/pod_container_deletor.go

    // getContainersToDeleteInPod returns the exited containers in a pod whose name matches the name inferred from filterContainerId (if not empty), ordered by the creation time from the latest to the earliest.
    // If filterContainerID is empty, all dead containers in the pod are returned.
    func getContainersToDeleteInPod(filterContainerID string, podStatus *kubecontainer.PodStatus, containersToKeep int) containerStatusbyCreatedList {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Nov 05 13:02:13 UTC 2022
    - 4K bytes
    - Viewed (0)
  9. 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)
  10. src/cmd/compile/internal/ssa/copyelim.go

    		if x == v {
    			continue
    		}
    		if x == w {
    			continue
    		}
    		if w != nil {
    			return false
    		}
    		w = x
    	}
    
    	if w == nil {
    		// v references only itself. It must be in
    		// a dead code loop. Don't bother modifying it.
    		return false
    	}
    	v.Op = OpCopy
    	v.SetArgs1(w)
    	f := v.Block.Func
    	if f.pass.debug > 0 {
    		f.Warnl(v.Pos, "eliminated phi")
    	}
    	return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:55:18 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top