Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 102 for trace_0 (0.12 sec)

  1. cmd/os-instrumented.go

    	}
    	return madmin.TraceInfo{
    		TraceType: madmin.TraceOS,
    		Time:      startTime,
    		NodeName:  globalLocalNodeName,
    		FuncName:  "os." + s.String(),
    		Duration:  duration,
    		Path:      path,
    		Error:     errStr,
    	}
    }
    
    func updateOSMetrics(s osMetric, paths ...string) func(err error) {
    	if globalTrace.NumSubscribers(madmin.TraceOS) == 0 {
    		osAction := globalOSMetrics.time(s)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 15 01:09:38 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  2. src/runtime/tracestatus.go

    		print("runtime: goid=", goid, "\n")
    		throw("attempted to trace a bad status for a goroutine")
    	}
    
    	// Trace the status.
    	if stackID == 0 {
    		w = w.event(traceEvGoStatus, traceArg(goid), traceArg(uint64(mid)), traceArg(status))
    	} else {
    		w = w.event(traceEvGoStatusStack, traceArg(goid), traceArg(uint64(mid)), traceArg(status), traceArg(stackID))
    	}
    
    	// Trace any special ranges that are in-progress.
    	if markAssist {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:03:35 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/unify.go

    func (u *unifier) nify(x, y Type, mode unifyMode, p *ifacePair) (result bool) {
    	u.depth++
    	if traceInference {
    		u.tracef("%s ≡ %s\t// %s", x, y, mode)
    	}
    	defer func() {
    		if traceInference && !result {
    			u.tracef("%s ≢ %s", x, y)
    		}
    		u.depth--
    	}()
    
    	// nothing to do if x == y
    	if x == y || Unalias(x) == Unalias(y) {
    		return true
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/tracing_test.go

    	tracingcfg "github.com/envoyproxy/go-control-plane/envoy/config/trace/v3"
    	hcm "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/network/http_connection_manager/v3"
    	resourcedetectors "github.com/envoyproxy/go-control-plane/envoy/extensions/tracers/opentelemetry/resource_detectors/v3"
    	otelsamplers "github.com/envoyproxy/go-control-plane/envoy/extensions/tracers/opentelemetry/samplers/v3"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 20:47:52 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  5. src/runtime/traceexp.go

    package runtime
    
    // traceExpWriter is a wrapper around trace writer that produces traceEvExperimentalBatch
    // batches. This means that the data written to the writer need not conform to the standard
    // trace format.
    type traceExpWriter struct {
    	traceWriter
    	exp traceExperiment
    }
    
    // unsafeTraceExpWriter produces a traceExpWriter that doesn't lock the trace.
    //
    // It should only be used in contexts where either:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. src/go/types/unify.go

    func (u *unifier) nify(x, y Type, mode unifyMode, p *ifacePair) (result bool) {
    	u.depth++
    	if traceInference {
    		u.tracef("%s ≡ %s\t// %s", x, y, mode)
    	}
    	defer func() {
    		if traceInference && !result {
    			u.tracef("%s ≢ %s", x, y)
    		}
    		u.depth--
    	}()
    
    	// nothing to do if x == y
    	if x == y || Unalias(x) == Unalias(y) {
    		return true
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  7. src/go/types/infer.go

    	// indices of generic parameters with untyped arguments, for later use
    	var untyped []int
    
    	// --- 1 ---
    	// use information from function arguments
    
    	if traceInference {
    		u.tracef("== function parameters: %s", params)
    		u.tracef("-- function arguments : %s", args)
    	}
    
    	for i, arg := range args {
    		if arg.mode == invalid {
    			// An error was reported earlier. Ignore this arg
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  8. pilot/pkg/xds/filters/filters.go

    var (
    	EnvironmentResourceDetector = &core.TypedExtensionConfig{
    		Name:        "envoy.tracers.opentelemetry.resource_detectors.environment",
    		TypedConfig: protoconv.MessageToAny(&resourcedetectors.EnvironmentResourceDetectorConfig{}),
    	}
    	DynatraceResourceDetector = &core.TypedExtensionConfig{
    		Name:        "envoy.tracers.opentelemetry.resource_detectors.dynatrace",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 09 09:24:25 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  9. docs/debugging/s3-verify/main.go

    		log.Fatalln(err)
    	}
    
    	tclnt, err := buildS3Client(targetEndpoint, targetAccessKey, targetSecretKey, insecure)
    	if err != nil {
    		log.Fatalln(err)
    	}
    
    	if debug {
    		sclnt.TraceOn(os.Stderr)
    		tclnt.TraceOn(os.Stderr)
    	}
    
    	sopts := minio.ListObjectsOptions{
    		Recursive: true,
    		Prefix:    sourcePrefix,
    	}
    
    	topts := minio.ListObjectsOptions{
    		Recursive: true,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 22 15:12:47 UTC 2022
    - 8.4K bytes
    - Viewed (0)
  10. src/cmd/trace/regions.go

    type regionFingerprint struct {
    	Frame trace.StackFrame
    	Type  string
    }
    
    func fingerprintRegion(r *trace.UserRegionSummary) regionFingerprint {
    	return regionFingerprint{
    		Frame: regionTopStackFrame(r),
    		Type:  r.Name,
    	}
    }
    
    func regionTopStackFrame(r *trace.UserRegionSummary) trace.StackFrame {
    	var frame trace.StackFrame
    	if r.Start != nil && r.Start.Stack() != trace.NoStack {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.3K bytes
    - Viewed (0)
Back to top