Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 203 for DEAD (0.04 sec)

  1. pkg/kubelet/container/runtime.go

    	// specifies whether the runtime returns all containers including those already
    	// exited and dead containers (used for garbage collection).
    	GetPods(ctx context.Context, all bool) ([]*Pod, error)
    	// GarbageCollect removes dead containers using the specified container gc policy
    	// If allSourcesReady is not true, it means that kubelet doesn't have the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/optimize.cc

                                  const StandardPipelineOptions &options) {
      OpPassManager &func_pm = pm.nest<func::FuncOp>();
    
      // First operates on the executor dialect:
      // - remove dead islands.
      // - fuse islands as much as possible.
      // - materialize the eventual "pass-through" ops by inlining their content.
      func_pm.addPass(tf_executor::CreateTFExecutorGraphPruningPass());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/decompose_resource_ops_pass.cc

    // Decomposing resource ops should not take more than a few iterations (2-3) to
    // converge as only a few patterns create new resource ops that can be further
    // decomposed. The rest of the iterations are enough to clean up any dead ops
    // created by decomposition.
    constexpr int kMaxIterations = 20;
    
    // Populates `reachable_functions` with all functions that can be reached from
    // device cluster ops.
    void PopulateClusterReachableFunctions(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Sep 08 20:01:13 UTC 2023
    - 8K bytes
    - Viewed (0)
  4. src/internal/types/testdata/check/gotos.go

    }
    
    // error shows first offending variable
    func _() {
    	goto L /* ERROR "goto L jumps over variable declaration at line 84" */
    	x := 1
    	_ = x
    	y := 1
    	_ = y
    L:
    }
    
    // goto not okay even if code path is dead
    func _() {
    	goto L /* ERROR "goto L jumps over variable declaration" */
    	x := 1
    	_ = x
    	y := 1
    	_ = y
    	return
    L:
    }
    
    // goto into outer block okay
    func _() {
    	{
    		goto L
    	}
    L:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 02:58:32 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  5. src/runtime/trace.go

    		// know at this point that nothing is calling into the tracer, but we do
    		// need to look at dead Ps too just because GOMAXPROCS could have been called
    		// at any point since we stopped tracing, and we have to ensure there's no
    		// bad state on dead Ps too. Prevent a STW and a concurrent GOMAXPROCS that
    		// might mutate allp by making ourselves briefly non-preemptible.
    		mp := acquirem()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/graph_pruning.cc

    namespace tf_executor {
    namespace {
    
    #define GEN_PASS_DEF_EXECUTORGRAPHPRUNINGPASS
    #include "tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.h.inc"
    
    // This transformation pass prunes a TF graph eliminating dead-nodes.
    class GraphPruningPass
        : public impl::ExecutorGraphPruningPassBase<GraphPruningPass> {
     public:
      GraphPruningPass() = default;
      explicit GraphPruningPass(llvm::ArrayRef<std::string> ops_to_preserve);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 05 23:50:19 UTC 2022
    - 7.6K bytes
    - Viewed (0)
  7. src/database/sql/sql_test.go

    		stmt, err := db.Prepare("INSERT|t1|name=?,age=?,dead=?")
    		if err != nil {
    			return err
    		}
    		stmt.Close()
    		return nil
    	})
    
    	// Provide a way to force a re-prepare of a statement on next execution
    	forcePrepare := func(stmt *Stmt) {
    		stmt.css = nil
    	}
    
    	// stmt.Exec
    	stmt1, err := db.Prepare("INSERT|t1|name=?,age=?,dead=?")
    	if err != nil {
    		t.Fatalf("prepare: %v", err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  8. src/runtime/tracestatus.go

    		// the final trace as if they're running, not blocked.
    		tgs = traceGoWaiting
    		if status == _Gwaiting && wr.isWaitingForGC() {
    			tgs = traceGoRunning
    		}
    	case _Gdead:
    		throw("tried to trace dead goroutine")
    	default:
    		throw("tried to trace goroutine with invalid or unsupported status")
    	}
    	return tgs
    }
    
    // traceSchedResourceState is shared state for scheduling resources (i.e. fields common to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:03:35 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/sccp.go

    // due to lattice depth, resulting in a fast convergence speed of the algorithm.
    // In this way, sccp can discover optimization opportunities that cannot be found
    // by just combining constant folding and constant propagation and dead code
    // elimination separately.
    
    // Three level lattice holds compile time knowledge about SSA value
    const (
    	top      int8 = iota // undefined
    	constant             // constant
    	bottom               // not a constant
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:54:50 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  10. 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)
Back to top