Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 115 for Atack (0.07 sec)

  1. src/go/types/check.go

    	methods  map[*TypeName][]*Func // maps package scope type names to associated non-blank (non-interface) methods
    	untyped  map[ast.Expr]exprInfo // map of expressions without final type
    	delayed  []action              // stack of delayed action segments; segments are processed in FIFO order
    	objPath  []Object              // path of object dependencies during type inference (for cycle reporting)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/decl.go

    	// ones. White and grey objects may depend on white and black objects.
    	// A dependency on a grey object indicates a cycle which may or may not be
    	// valid.
    	//
    	// When objects turn grey, they are pushed on the object path (a stack);
    	// they are popped again when they turn black. Thus, if a grey object (a
    	// cycle) is encountered, it is on the object path, and all the objects
    	// it depends on are the remaining objects on that path. Color encoding
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  3. src/runtime/runtime1.go

    		envs[i] = gostring(argv_index(argv, argc+1+i))
    	}
    }
    
    func environ() []string {
    	return envs
    }
    
    // TODO: These should be locals in testAtomic64, but we don't 8-byte
    // align stack variables on 386.
    var test_z64, test_x64 uint64
    
    func testAtomic64() {
    	test_z64 = 42
    	test_x64 = 0
    	if atomic.Cas64(&test_z64, test_x64, 1) {
    		throw("cas64 failed")
    	}
    	if test_x64 != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/value.go

    	// Source position
    	Pos src.XPos
    
    	// Use count. Each appearance in Value.Args and Block.Controls counts once.
    	Uses int32
    
    	// wasm: Value stays on the WebAssembly stack. This value will not get a "register" (WebAssembly variable)
    	// nor a slot on Go stack, and the generation of this value is delayed to its use time.
    	OnWasmStack bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:40:22 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  5. src/runtime/mfinal.go

    		if raceenabled {
    			racefingo()
    		}
    		for fb != nil {
    			for i := fb.cnt; i > 0; i-- {
    				f := &fb.fin[i-1]
    
    				var regs abi.RegArgs
    				// The args may be passed in registers or on stack. Even for
    				// the register case, we still need the spill slots.
    				// TODO: revisit if we remove spill slots.
    				//
    				// Unfortunately because we can have an arbitrary
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 01:56:56 UTC 2024
    - 19K bytes
    - Viewed (0)
  6. src/internal/trace/event/go122/event.go

    	EvUserTaskEnd     // end of a task [timestamp, internal task ID, stack ID]
    	EvUserRegionBegin // trace.{Start,With}Region [timestamp, internal task ID, name string ID, stack ID]
    	EvUserRegionEnd   // trace.{End,With}Region [timestamp, internal task ID, name string ID, stack ID]
    	EvUserLog         // trace.Log [timestamp, internal task ID, key string ID, value string ID, stack]
    
    	// Coroutines. Added in Go 1.23.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  7. src/runtime/error.go

    // it has already been converted into a string by preprintpanics.
    //
    // To ensure that the traceback can be unambiguously parsed even when
    // the panic value contains "\ngoroutine" and other stack-like
    // strings, newlines in the string representation of v are replaced by
    // "\n\t".
    func printpanicval(v any) {
    	switch v := v.(type) {
    	case nil:
    		print("nil")
    	case bool:
    		print(v)
    	case int:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:10:41 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/telemetry/start.go

    // uploading, this process may attempt to upload approved counters
    // to telemetry.go.dev.
    //
    // If [Config.ReportCrashes] is set, any fatal crash will be
    // recorded by incrementing a counter named for the stack of the
    // first running goroutine in the traceback.
    //
    // If either of these flags is set, Start re-executes the current
    // executable as a child process, in a special mode in which it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  9. src/internal/trace/event.go

    func (e Event) Thread() ThreadID {
    	return e.ctx.M
    }
    
    // Stack returns a handle to a stack associated with the event.
    //
    // This represents a stack trace at the current moment in time for
    // the current execution context.
    func (e Event) Stack() Stack {
    	if e.base.typ == evSync {
    		return NoStack
    	}
    	if e.base.typ == go122.EvCPUSample {
    		return Stack{table: e.table, id: stackID(e.base.args[0])}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 12:39:00 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/internal/graph/graph.go

    				if n == nil {
    					residual = true
    					continue
    				}
    				// Add cum weight to all nodes in stack, avoiding double counting.
    				if _, ok := seenNode[n]; !ok {
    					seenNode[n] = true
    					n.addSample(dw, w, labels, sample.NumLabel, sample.NumUnit, o.FormatTag, false)
    				}
    				// Update edge weights for all edges in stack, avoiding double counting.
    				if _, ok := seenEdge[nodePair{n, parent}]; !ok && parent != nil && n != parent {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31K bytes
    - Viewed (0)
Back to top