Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 57 of 57 for traceme (0.14 sec)

  1. pkg/bootstrap/instance_test.go

    	}
    }
    
    // nolint: staticcheck
    func checkOpencensusConfig(t *testing.T, got, want *bootstrap.Bootstrap) {
    	if want.Tracing == nil {
    		return
    	}
    
    	if want.Tracing.Http.Name != "envoy.tracers.opencensus" {
    		return
    	}
    
    	if diff := cmp.Diff(got.Tracing.Http, want.Tracing.Http, protocmp.Transform()); diff != "" {
    		t.Fatalf("t diff: %v\ngot:\n %v\nwant:\n %v\n", diff, got.Tracing.Http, want.Tracing.Http)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  2. tests/preload_test.go

    				Tools: []Tools{
    					{Name: "Jinzhu Tool 1"},
    					{Name: "Jinzhu Tool 2"},
    				},
    			},
    		},
    	}
    
    	DB.Create(&users)
    
    	query := make([]string, 0)
    	sess := DB.Session(&gorm.Session{Logger: Tracer{
    		Logger: DB.Config.Logger,
    		Test: func(ctx context.Context, begin time.Time, fc func() (sql string, rowsAffected int64), err error) {
    			sql, _ := fc()
    			query = append(query, sql)
    		},
    	}})
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:00:47 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/config.go

    	// Will default to a value based on secure serving info and available ipv4 IPs.
    	ExternalAddress string
    
    	// TracerProvider can provide a tracer, which records spans for distributed tracing.
    	TracerProvider tracing.TracerProvider
    
    	//===========================================================================
    	// Fields you probably don't care about changing
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  4. src/net/lookup.go

    	}
    	if ip, err := netip.ParseAddr(host); err == nil {
    		return []IPAddr{{IP: IP(ip.AsSlice()).To16(), Zone: ip.Zone()}}, nil
    	}
    	trace, _ := ctx.Value(nettrace.TraceKey{}).(*nettrace.Trace)
    	if trace != nil && trace.DNSStart != nil {
    		trace.DNSStart(host)
    	}
    	// The underlying resolver func is lookupIP by default but it
    	// can be overridden by tests. This is needed by net/http, so it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  5. src/runtime/runtime2.go

    	waitReasonFlushProcCaches                         // "flushing proc caches"
    	waitReasonTraceGoroutineStatus                    // "trace goroutine status"
    	waitReasonTraceProcStatus                         // "trace proc status"
    	waitReasonPageTraceFlush                          // "page trace flush"
    	waitReasonCoroutine                               // "coroutine"
    )
    
    var waitReasonStrings = [...]string{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  6. src/runtime/mstats.go

    		// * memstats.totalFree == totalFree
    		//
    		// Check if that's actually true.
    		//
    		// Prevent sysmon and the tracer from skewing the stats since they can
    		// act without synchronizing with a STW. See #64401.
    		lock(&sched.sysmonlock)
    		lock(&trace.lock)
    		if gcController.heapInUse.load() != uint64(consStats.inHeap) {
    			print("runtime: heapInUse=", gcController.heapInUse.load(), "\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  7. src/internal/trace/testdata/tests/go122-annotations-stress.test

    String id=123
    	data="fmt.Sprintf"
    String id=124
    	data="main.do.func1.1"
    String id=125
    	data="runtime/trace.Start"
    String id=126
    	data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/trace/trace.go"
    String id=127
    	data="main.do.func1"
    String id=128
    	data="runtime/trace.WithRegion"
    String id=129
    	data="main.do.func1.1.1"
    String id=130
    	data="time.Sleep"
    String id=131
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 38.3K bytes
    - Viewed (0)
Back to top