Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for tracestate (0.17 sec)

  1. samples/bookinfo/src/details/details.rb

          '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',
    
          # Grpc binary trace context. Compatible with OpenCensusAgent nad
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. src/runtime/tracestatus.go

    Carlos Amedee <******@****.***> 1712158572 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:03:35 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  6. src/runtime/traceevent.go

    // stack takes a stack trace skipping the provided number of frames.
    // It then returns a traceArg representing that stack which may be
    // passed to write.
    func (tl traceLocker) stack(skip int) traceArg {
    	return traceArg(traceStack(skip, nil, tl.gen))
    }
    
    // startPC takes a start PC for a goroutine and produces a unique
    // stack ID for it.
    //
    // It then returns a traceArg representing that stack which may be
    // passed to write.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. src/runtime/proc.go

    	// followed by nfns pcs, uintptr sized, one per init function to run
    }
    
    // inittrace stores statistics for init functions which are
    // updated by malloc and newproc when active is true.
    var inittrace tracestat
    
    type tracestat struct {
    	active bool   // init tracing activation status
    	id     uint64 // init goroutine id
    	allocs uint64 // heap allocations
    	bytes  uint64 // heap allocated bytes
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top