Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 493 for rtrace (0.13 sec)

  1. src/internal/trace/internal/testgen/go122/trace.go

    	"os"
    	"regexp"
    	"strings"
    
    	"internal/trace"
    	"internal/trace/event"
    	"internal/trace/event/go122"
    	"internal/trace/raw"
    	"internal/trace/version"
    	"internal/txtar"
    )
    
    func Main(f func(*Trace)) {
    	// Create an output file.
    	out, err := os.Create(os.Args[1])
    	if err != nil {
    		panic(err.Error())
    	}
    	defer out.Close()
    
    	// Create a new trace.
    	trace := NewTrace()
    
    	// Call the generator.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  2. src/runtime/testdata/testprogcgo/trace.go

    // license that can be found in the LICENSE file.
    
    package main
    
    /*
    // Defined in trace_*.c.
    void cCalledFromGo(void);
    */
    import "C"
    import (
    	"context"
    	"fmt"
    	"log"
    	"os"
    	"runtime/trace"
    )
    
    func init() {
    	register("Trace", Trace)
    }
    
    // Trace is used by TestTraceUnwindCGO.
    func Trace() {
    	file, err := os.CreateTemp("", "testprogcgo_trace")
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 30 19:18:12 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. src/cmd/go/internal/trace/trace.go

    // other packages.
    type traceKey struct{}
    
    type traceContext struct {
    	t   *tracer
    	tid uint64
    }
    
    // Start starts a trace which writes to the given file.
    func Start(ctx context.Context, file string) (context.Context, func() error, error) {
    	traceStarted.Store(true)
    	if file == "" {
    		return nil, nil, errors.New("no trace file supplied")
    	}
    	f, err := os.Create(file)
    	if err != nil {
    		return nil, nil, err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  4. src/runtime/trace/trace.go

    // file (trace.out).
    //
    //	go test -trace=trace.out
    //
    // This runtime/trace package provides APIs to add equivalent tracing
    // support to a standalone program. See the Example that demonstrates
    // how to use this API to enable tracing.
    //
    // There is also a standard HTTP interface to trace data. Adding the
    // following line will install a handler under the /debug/pprof/trace URL
    // to download a live trace:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 20 00:47:09 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  5. internal/grid/trace.go

    	v := ctx.Value(TraceParamsKey{})
    	// Should match SingleHandler.Call checks.
    	switch typed := v.(type) {
    	case *MSS:
    		trace.Path += typed.ToQuery()
    	case map[string]string:
    		m := MSS(typed)
    		trace.Path += m.ToQuery()
    	case *URLValues:
    		trace.Path += typed.Values().Encode()
    	case *NoPayload, *Bytes:
    		trace.Path = fmt.Sprintf("%s?payload=%T", trace.Path, typed)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jun 01 05:17:37 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. src/net/http/httptrace/trace.go

    	if trace == nil {
    		panic("nil trace")
    	}
    	old := ContextClientTrace(ctx)
    	trace.compose(old)
    
    	ctx = context.WithValue(ctx, clientEventContextKey{}, trace)
    	if trace.hasNetHooks() {
    		nt := &nettrace.Trace{
    			ConnectStart: trace.ConnectStart,
    			ConnectDone:  trace.ConnectDone,
    		}
    		if trace.DNSStart != nil {
    			nt.DNSStart = func(name string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/filters/traces.go

    	semconv "go.opentelemetry.io/otel/semconv/v1.17.0"
    	"go.opentelemetry.io/otel/trace"
    	"k8s.io/apiserver/pkg/endpoints/request"
    
    	tracing "k8s.io/component-base/tracing"
    )
    
    // WithTracing adds tracing to requests if the incoming request is sampled
    func WithTracing(handler http.Handler, tp trace.TracerProvider) http.Handler {
    	opts := []otelhttp.Option{
    		otelhttp.WithPropagators(tracing.Propagators()),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 15 01:42:42 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. cmd/http-tracer.go

    	op = strings.Replace(op, "ReadinessCheckHandler", "health.Readiness", 1)
    	op = strings.Replace(op, "-fm", "", 1)
    	return op
    }
    
    // If trace is enabled, execute the request if it is traced by other handlers
    // otherwise, generate a trace event with request information but no response.
    func httpTracerMiddleware(h http.Handler) http.Handler {
    	return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 03 15:45:54 UTC 2024
    - 6K bytes
    - Viewed (0)
  9. src/internal/fuzz/trace.go

    Cuong Manh Le <******@****.***> 1665464211 +0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 12 00:12:53 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  10. src/internal/race/norace.go

    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build !race
    
    package race
    
    import (
    	"unsafe"
    )
    
    const Enabled = false
    
    func Acquire(addr unsafe.Pointer) {
    }
    
    func Release(addr unsafe.Pointer) {
    }
    
    func ReleaseMerge(addr unsafe.Pointer) {
    }
    
    func Disable() {
    }
    
    func Enable() {
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 603 bytes
    - Viewed (0)
Back to top