Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for trace_0 (0.35 sec)

  1. cmd/admin-handlers.go

    		if peer == nil {
    			continue
    		}
    		peer.Trace(ctx, traceCh, traceOpts)
    	}
    
    	keepAliveTicker := time.NewTicker(time.Second)
    	defer keepAliveTicker.Stop()
    
    	for {
    		select {
    		case entry := <-traceCh:
    			if _, err := w.Write(entry); err != nil {
    				return
    			}
    			grid.PutByteBuffer(entry)
    			if len(traceCh) == 0 {
    				// Flush if nothing is queued
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_test.go

    	"reflect"
    	goruntime "runtime"
    	"sort"
    	"strconv"
    	"strings"
    	"testing"
    	"time"
    
    	sdktrace "go.opentelemetry.io/otel/sdk/trace"
    	"go.opentelemetry.io/otel/sdk/trace/tracetest"
    	oteltrace "go.opentelemetry.io/otel/trace"
    	noopoteltrace "go.opentelemetry.io/otel/trace/noop"
    
    	cadvisorapi "github.com/google/cadvisor/info/v1"
    	cadvisorapiv2 "github.com/google/cadvisor/info/v2"
    	"github.com/stretchr/testify/assert"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  3. cmd/bucket-replication.go

    			defer wg.Done()
    			for roi := range workers[idx] {
    				select {
    				case <-ctx.Done():
    					return
    				case <-s.resyncCancelCh:
    				default:
    				}
    				traceFn := s.trace(tgt.ResetID, fmt.Sprintf("%s/%s (%s)", opts.bucket, roi.Name, roi.VersionID))
    				if roi.DeleteMarker || !roi.VersionPurgeStatus.Empty() {
    					versionID := ""
    					dmVersionID := ""
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  4. pkg/config/validation/validation_test.go

    					Providers: []*telemetry.ProviderRef{
    						{Name: "a"},
    						{Name: "b"},
    					},
    				}},
    			},
    			"", "multiple providers",
    		},
    		{
    			"multiple tracers",
    			&telemetry.Telemetry{
    				Tracing: []*telemetry.Tracing{{}, {}},
    			},
    			"", "multiple tracing",
    		},
    		{
    			"bad randomSamplingPercentage",
    			&telemetry.Telemetry{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

        // If there are no locations in the stack trace, fall back to just a
        // NameLoc with no child.
        if (locations.empty()) return mlir::NameLoc::get(name_loc_id);
    
        // Use the front FileLineColLoc to generate a NameLoc.
        mlir::Location node_name_loc =
            mlir::NameLoc::get(name_loc_id, locations.front());
    
        // If there are more locations then generate a stack trace, otherwise just
        // return the name loc.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  6. src/cmd/trace/testdata/go122.test

    String id=95
    	data="runtime/trace.Start.func1"
    String id=96
    	data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/trace/trace.go"
    String id=97
    	data="main.blockingSyscall.func1"
    String id=98
    	data="runtime.StartTrace"
    String id=99
    	data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/trace2.go"
    String id=100
    	data="runtime/trace.Start"
    String id=101
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 17:15:58 UTC 2024
    - 166K bytes
    - Viewed (0)
  7. src/internal/trace/testdata/tests/go122-gc-stress.test

    String id=46
    	data="os.(*File).Write"
    String id=47
    	data="/usr/local/google/home/mknyszek/work/go-1/src/os/file.go"
    String id=48
    	data="runtime/trace.Start.func1"
    String id=49
    	data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/trace/trace.go"
    String id=50
    	data="runtime.gcStart"
    String id=51
    	data="runtime.traceLocker.GCSweepSpan"
    String id=52
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 139.1K bytes
    - Viewed (0)
  8. src/runtime/proc.go

    	// and traceRelease across the CAS because the tracer could be
    	// what's calling suspendG in the first place, and we want the
    	// CAS and event emission to appear atomic to the tracer.
    	trace := traceAcquire()
    	if trace.ok() {
    		trace.GoPark(traceBlockPreempted, 0)
    	}
    	casfrom_Gscanstatus(gp, _Gscan|_Gpreempted, _Gpreempted)
    	if trace.ok() {
    		traceRelease(trace)
    	}
    	schedule()
    }
    
    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