Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for tracestate (0.18 sec)

  1. samples/bookinfo/src/productpage/productpage.py

            'x-datadog-parent-id',
            'x-datadog-sampling-priority',
    
            # W3C Trace Context. Compatible with OpenCensusAgent and Stackdriver Istio
            # configurations.
            'traceparent',
            'tracestate',
    
            # Cloud trace context. Compatible with OpenCensusAgent and Stackdriver Istio
            # configurations.
            'x-cloud-trace-context',
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  2. src/runtime/tracestack.go

    	// pcBuf[1:] after inline expansion.
    	logicalStackSentinel = ^uintptr(0)
    )
    
    // traceStack captures a stack trace from a goroutine and registers it in the trace
    // stack table. It then returns its unique ID. If gp == nil, then traceStack will
    // attempt to use the current execution context.
    //
    // skip controls the number of leaf frames to omit in order to hide tracer internals
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:56 UTC 2024
    - 11K bytes
    - Viewed (0)
  3. src/runtime/traceruntime.go

    	_ "unsafe" // for go:linkname
    )
    
    // gTraceState is per-G state for the tracer.
    type gTraceState struct {
    	traceSchedResourceState
    }
    
    // reset resets the gTraceState for a new goroutine.
    func (s *gTraceState) reset() {
    	s.seq = [2]uint64{}
    	// N.B. s.statusTraced is managed and cleared separately.
    }
    
    // mTraceState is per-M state for the tracer.
    type mTraceState struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  4. src/runtime/runtime2.go

    	// current in-progress goroutine profile
    	goroutineProfiled goroutineProfileStateHolder
    
    	coroarg *coro // argument during coroutine transfers
    
    	// Per-G tracer state.
    	trace gTraceState
    
    	// Per-G GC state
    
    	// gcAssistBytes is this G's GC assist credit in terms of
    	// bytes allocated. If this is positive, then the G has credit
    	// to allocate gcAssistBytes bytes without assisting. If this
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  5. src/runtime/trace.go

    				if s.g.m != nil {
    					ug.mid = int64(s.g.m.procid)
    				}
    				ug.status = readgstatus(s.g) &^ _Gscan
    				ug.waitreason = s.g.waitreason
    				ug.inMarkAssist = s.g.inMarkAssist
    				ug.stackID = traceStack(0, gp, gen)
    			}
    			resumeG(s)
    			casgstatus(me, _Gwaiting, _Grunning)
    		})
    		if ug.goid != 0 {
    			untracedGs = append(untracedGs, ug)
    		}
    	})
    
    	if !stopTrace {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
Back to top