Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 84 for Gdead (0.04 sec)

  1. src/internal/trace/traceviewer/emitter.go

    type heapStats struct {
    	heapAlloc uint64
    	nextGC    uint64
    }
    
    func viewerTime(t time.Duration) float64 {
    	return float64(t) / float64(time.Microsecond)
    }
    
    type GState int
    
    const (
    	GDead GState = iota
    	GRunnable
    	GRunning
    	GWaiting
    	GWaitingGC
    
    	gStateCount
    )
    
    type ThreadState int
    
    const (
    	ThreadStateInSyscall ThreadState = iota
    	ThreadStateInSyscallRuntime
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:58 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  2. src/internal/trace/internal/oldtrace/parser.go

    // (for example, a P does not run two Gs at the same time, or a G is indeed
    // blocked before an unblock event).
    func (p *parser) postProcessTrace(events Events) error {
    	const (
    		gDead = iota
    		gRunnable
    		gRunning
    		gWaiting
    	)
    	type gdesc struct {
    		state        int
    		ev           *Event
    		evStart      *Event
    		evCreate     *Event
    		evMarkAssist *Event
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  3. src/runtime/runtime2.go

    	// goroutines to the end of the run queue.
    	//
    	// Note that while other P's may atomically CAS this to zero,
    	// only the owner P can CAS it to a valid G.
    	runnext guintptr
    
    	// Available G's (status == Gdead)
    	gFree struct {
    		gList
    		n int32
    	}
    
    	sudogcache []*sudog
    	sudogbuf   [128]*sudog
    
    	// Cache of mspan objects from the heap.
    	mspancache struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/g3doc/tf_dialects.md

    input (control and non-control) is dead, all the outputs (control and
    non-control) are dead as well. For `tf_executor.Merge`, the output is dead only
    when either an input control token is dead or all of the regular inputs are
    dead. For `tf_executor.ControlTrigger`, a live control output is always produced
    even when some control inputs are dead.
    
    ### `tf_executor.graph` Operation
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 13 16:33:28 UTC 2021
    - 16K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/html.go

    .dead-block.highlight-palegreen,
    .dead-value span.highlight-skyblue,
    .dead-block.highlight-skyblue,
    .dead-value span.highlight-lightgray,
    .dead-block.highlight-lightgray,
    .dead-value span.highlight-yellow,
    .dead-block.highlight-yellow,
    .dead-value span.highlight-lime,
    .dead-block.highlight-lime,
    .dead-value span.highlight-khaki,
    .dead-block.highlight-khaki,
    .dead-value span.highlight-aqua,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 15:11:40 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_executor_ops.td

        captured by a `tf_executor.island` is dead, the whole region does not
        execute and every produced value is marked as dead as well.
        An arbitrary number of `tf_executor.control` operands are accepted by a
        `tf_executor.island` operation.
        If any operand or implicitly captured value are dead, the region is not
        executed and dead values are immediately returned for every result.
      }];
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 23 19:35:12 UTC 2023
    - 22K bytes
    - Viewed (0)
  7. pkg/kubelet/kuberuntime/kuberuntime_gc.go

    			}
    			err := osInterface.Remove(logSymlink)
    			if err != nil {
    				klog.ErrorS(err, "Failed to remove container log dead symlink", "path", logSymlink)
    			} else {
    				klog.V(4).InfoS("Removed symlink", "path", logSymlink)
    			}
    		}
    	}
    	return nil
    }
    
    // GarbageCollect removes dead containers using the specified container gc policy.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  8. src/runtime/preempt.go

    import (
    	"internal/abi"
    	"internal/goarch"
    	"internal/stringslite"
    )
    
    type suspendGState struct {
    	g *g
    
    	// dead indicates the goroutine was not suspended because it
    	// is dead. This goroutine could be reused after the dead
    	// state was observed, so the caller must not assume that it
    	// remains dead.
    	dead bool
    
    	// stopped indicates that this suspendG transitioned the G to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/deadstore.go

    // license that can be found in the LICENSE file.
    
    package ssa
    
    import (
    	"cmd/compile/internal/ir"
    	"cmd/compile/internal/types"
    )
    
    // dse does dead-store elimination on the Function.
    // Dead stores are those which are unconditionally followed by
    // another store to the same location, with no intervening load.
    // This implementation only works within a basic block. TODO: use something more global.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 20:07:26 UTC 2024
    - 11K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/build_xla_ops_pass.cc

        // the NodeDef inputs to the function call nodes.
        g->AddEdge(new_node, edge->src_output(), edge->dst(), edge->dst_input());
        g->RemoveEdge(edge);
      }
    }
    
    // Returns a data value that is dead iff `control` is dead.
    Output ControlToData(const Scope& scope, Node* control) {
      // The choice of data type here is important.
      //
      // We implement a "control merge", which is a control edge that is alive if
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 24.3K bytes
    - Viewed (0)
Back to top