Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 453 for Stuart (0.72 sec)

  1. src/cmd/trace/threadgen.go

    		} else {
    			gs.stop(ev.Time(), ev.Stack(), ctx)
    		}
    	}
    	if !from.Executing() && to.Executing() {
    		start := ev.Time()
    		if from == trace.GoUndetermined {
    			// Back-date the event to the start of the trace.
    			start = ctx.startTime
    		}
    		gs.start(start, ev.Thread(), ctx)
    	}
    
    	if from == trace.GoWaiting {
    		// Goroutine was unblocked.
    		gs.unblock(ev.Time(), ev.Stack(), ev.Thread(), ctx)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. src/cmd/objdump/main.go

    // symbols with names matching the regular expression.
    //
    // Alternate usage:
    //
    //	go tool objdump binary start end
    //
    // In this mode, objdump disassembles the binary starting at the start address and
    // stopping at the end address. The start and end addresses are program
    // counters written in hexadecimal with optional leading 0x prefix.
    // In this mode, objdump prints a sequence of stanzas of the form:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. src/crypto/internal/boring/bcache/cache.go

    //
    // The cache is GC-friendly in the sense that the keys do not
    // indefinitely prevent the garbage collector from collecting them.
    // Instead, at the start of each GC, the cache is cleared entirely. That
    // is, the cache is lossy, and the loss happens at the start of each GC.
    // This means that clients need to be able to cope with cache entries
    // disappearing, but it also means that clients don't need to worry about
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 18 00:30:19 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/cse_test.go

    			Valu("r2", OpAdd64, c.config.Types.Int64, 0, nil, "arg1", "arg2"),
    			Valu("raddr", OpLocalAddr, c.config.Types.Int64.PtrTo(), 0, nil, "sp", "start"),
    			Valu("raddrdef", OpVarDef, types.TypeMem, 0, a, "start"),
    			Valu("r6", OpAdd64, c.config.Types.Int64, 0, nil, "r4", "r5"),
    			Valu("r3", OpAdd64, c.config.Types.Int64, 0, nil, "arg1", "arg2"),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:09:14 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  5. src/cmd/trace/pprof.go

    type interval struct {
    	start, end trace.Time
    }
    
    func (i interval) duration() time.Duration {
    	return i.end.Sub(i.start)
    }
    
    func (i1 interval) overlap(i2 interval) time.Duration {
    	// Assume start1 <= end1 and start2 <= end2
    	if i1.end < i2.start || i2.end < i1.start {
    		return 0
    	}
    	if i1.start < i2.start { // choose the later one
    		i1.start = i2.start
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/driver/driver.go

    	// is a linux kernel, relocationSymbol is the name of the symbol
    	// corresponding to the start address.
    	Open(file string, start, limit, offset uint64, relocationSymbol string) (ObjFile, error)
    
    	// Disasm disassembles the named object file, starting at
    	// the start address and stopping at (before) the end address.
    	Disasm(file string, start, end uint64, intelSyntax bool) ([]Inst, error)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  7. src/cmd/trace/tasks.go

    	}
    
    	return &taskFilter{name: strings.Join(name, ","), cond: conditions}, nil
    }
    
    func taskInterval(t *parsedTrace, s *trace.UserTaskSummary) interval {
    	var i interval
    	if s.Start != nil {
    		i.start = s.Start.Time()
    	} else {
    		i.start = t.startTime()
    	}
    	if s.End != nil {
    		i.end = s.End.Time()
    	} else {
    		i.end = t.endTime()
    	}
    	return i
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  8. src/cmd/internal/dwarf/putvarabbrevgen_test.go

    	}
    
    	if thenStart != nil || elseStart != nil {
    		start = &pvacfgnode{cond: ifstmt.Cond}
    		end = &pvacfgnode{}
    		if thenStart != nil {
    			start.then = thenStart
    			thenEnd.then = end
    		} else {
    			start.then = end
    		}
    		if elseStart != nil {
    			start.els = elseStart
    			elseEnd.then = end
    		} else {
    			start.els = end
    		}
    	}
    	return start, end
    }
    
    func exprToString(t ast.Expr) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:45:07 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  9. src/cmd/pprof/testdata/cpu.go

    	if err := pprof.StartCPUProfile(f); err != nil {
    		fmt.Fprintln(os.Stderr, err)
    		os.Exit(2)
    	}
    	defer pprof.StopCPUProfile()
    
    	// Spin for long enough to collect some samples.
    	start := time.Now()
    	for time.Since(start) < time.Second {
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 17 14:53:37 UTC 2021
    - 792 bytes
    - Viewed (0)
  10. src/cmd/trace/gstate.go

    }
    
    // start indicates that a goroutine has started running on a proc.
    func (gs *gState[R]) start(ts trace.Time, resource R, ctx *traceContext) {
    	// Set the time for all the active ranges.
    	for name := range gs.activeRanges {
    		gs.activeRanges[name] = activeRange{ts, trace.NoStack}
    	}
    
    	if gs.startCause.name != "" {
    		// It has a start cause. Emit a flow event.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.9K bytes
    - Viewed (0)
Back to top