Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 437 for tramps (0.13 sec)

  1. pkg/test/framework/components/zipkin/kube.go

    	}
    	defer resp.Body.Close()
    	body, err := io.ReadAll(resp.Body)
    	if err != nil {
    		return nil, err
    	}
    	traces, err := extractTraces(body)
    	if err != nil {
    		return nil, err
    	}
    	return traces, nil
    }
    
    // Close implements io.Closer.
    func (c *kubeComponent) Close() error {
    	if c.forwarder != nil {
    		c.forwarder.Close()
    	}
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 14 19:29:38 UTC 2023
    - 8K bytes
    - Viewed (0)
  2. tests/integration/telemetry/tracing/tracing.go

    	if err != nil {
    		return
    	}
    	return nil
    }
    
    func VerifyEchoTraces(t framework.TestContext, namespace, clName string, traces []zipkin.Trace) bool {
    	t.Helper()
    	wtr := WantTraceRoot(namespace, clName)
    	for _, trace := range traces {
    		// compare each candidate trace with the wanted trace
    		for _, s := range trace.Spans {
    			// find the root span of candidate trace and do recursive comparison
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 19:05:09 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  3. src/sync/runtime.go

    func runtime_Semacquire(s *uint32)
    
    // Semacquire(RW)Mutex(R) is like Semacquire, but for profiling contended
    // Mutexes and RWMutexes.
    // If lifo is true, queue waiter at the head of wait queue.
    // skipframes is the number of frames to omit during tracing, counting from
    // runtime_SemacquireMutex's caller.
    // The different forms of this function just tell the runtime how to present
    // the reason for waiting in a backtrace, and is used to compute some metrics.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 16:32:27 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  4. doc/next/6-stdlib/99-minor/runtime/pprof/43669.md

    The maximum stack depth for alloc, mutex, block, threadcreate and goroutine
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:45 UTC 2024
    - 124 bytes
    - Viewed (0)
  5. src/runtime/cgo/gcc_util.c

    	GCC 7 has an unfortunate habit of optimizing out strncpy calls (see
    	https://golang.org/issue/21196), so the arguments here need to be global
    	variables with external linkage in order to ensure that the call traps all the
    	way down into libc.
    	*/
    	strncpy(&x_cgo_yield_strncpy_dst, &x_cgo_yield_strncpy_src,
    	        x_cgo_yield_strncpy_n);
    }
    
    void(* const _cgo_yield)() = &x_cgo_yield;
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 18:49:38 UTC 2017
    - 1.8K bytes
    - Viewed (0)
  6. src/internal/pkgbits/sync.go

    //
    // pcs should be a slice of PCs, as returned by runtime.Callers.
    func walkFrames(pcs []uintptr, visit frameVisitor) {
    	if len(pcs) == 0 {
    		return
    	}
    
    	frames := runtime.CallersFrames(pcs)
    	for {
    		frame, more := frames.Next()
    		visit(frame.File, frame.Line, frame.Function, frame.PC-frame.Entry)
    		if !more {
    			return
    		}
    	}
    }
    
    // SyncMarker is an enum type that represents markers that may be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 04 17:12:28 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  7. src/runtime/traceevent.go

    	traceEvExperimentalBatch // start of extra data [experiment ID, generation, M ID, timestamp, batch length, batch data...]
    )
    
    // traceArg is a simple wrapper type to help ensure that arguments passed
    // to traces are well-formed.
    type traceArg uint64
    
    // traceEventWriter is the high-level API for writing trace events.
    //
    // See the comment on traceWriter about style for more details as to why
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  8. releasenotes/notes/47835-otlp-http-exporter.yaml

    docs:
     - '[reference] https://istio.io/latest/docs/reference/config/istio.mesh.v1alpha1/#MeshConfig-ExtensionProvider-OpenTelemetryTracingProvider'
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 31 08:51:36 UTC 2024
    - 400 bytes
    - Viewed (0)
  9. src/internal/trace/summary.go

    type Summary struct {
    	Goroutines map[GoID]*GoroutineSummary
    	Tasks      map[TaskID]*UserTaskSummary
    }
    
    // GoroutineSummary contains statistics and execution details of a single goroutine.
    // (For v2 traces.)
    type GoroutineSummary struct {
    	ID           GoID
    	Name         string // A non-unique human-friendly identifier for the goroutine.
    	PC           uint64 // The first PC we saw for the entry function of the goroutine
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  10. src/internal/profile/prune.go

    // Copyright 2014 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.
    
    // Implements methods to remove frames from profiles.
    
    package profile
    
    import (
    	"fmt"
    	"regexp"
    )
    
    // Prune removes all nodes beneath a node matching dropRx, and not
    // matching keepRx. If the root node of a Sample matches, the sample
    // will have an empty stack.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 17 19:35:56 UTC 2020
    - 2.4K bytes
    - Viewed (0)
Back to top