Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 120 for Atack (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/testing/testing_test.go

    		doRace()
    	}
    
    	m.Run()
    
    	// Note: m.Run currently prints the final "PASS" line, so if any race is
    	// reported here (after m.Run but before the process exits), it will print
    	// "PASS", then print the stack traces for the race, then exit with nonzero
    	// status.
    	//
    	// This is a somewhat fundamental race: because the race detector hooks into
    	// the runtime at a very low level, no matter where we put the printing it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:10:41 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  7. src/runtime/sema.go

    }
    
    func semacquire1(addr *uint32, lifo bool, profile semaProfileFlags, skipframes int, reason waitReason) {
    	gp := getg()
    	if gp != gp.m.curg {
    		throw("semacquire not on the G stack")
    	}
    
    	// Easy case.
    	if cansemacquire(addr) {
    		return
    	}
    
    	// Harder case:
    	//	increment waiter count
    	//	try cansemacquire one more time, return if succeeded
    	//	enqueue itself as a waiter
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 19K bytes
    - Viewed (0)
  8. src/cmd/go/internal/work/gc.go

    	// to the path the disk path would be rewritten to.
    
    	cgoFiles := make(map[string]bool)
    	for _, f := range a.Package.CgoFiles {
    		cgoFiles[f] = true
    	}
    
    	// TODO(matloob): Higher up in the stack, when the logic for deciding when to make copies
    	// of c/c++/m/f/hfiles is consolidated, use the same logic that Build uses to determine
    	// whether to create the copies in objdir to decide whether to rewrite objdir to the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:37:44 UTC 2024
    - 23K bytes
    - Viewed (0)
  9. src/net/netip/netip.go

    	// Use a zone with a "plausibly long" name, so that most zone-ful
    	// IP addresses won't require additional allocation.
    	//
    	// The compiler does a cool optimization here, where ret ends up
    	// stack-allocated and so the only allocation this function does
    	// is to construct the returned string. As such, it's okay to be a
    	// bit greedy here, size-wise.
    	const max = len("ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff%enp5s0")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  10. src/go/types/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
    - 31K bytes
    - Viewed (0)
Back to top