Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 102 for trace_0 (0.14 sec)

  1. internal/grid/trace.go

    	v := ctx.Value(TraceParamsKey{})
    	// Should match SingleHandler.Call checks.
    	switch typed := v.(type) {
    	case *MSS:
    		trace.Path += typed.ToQuery()
    	case map[string]string:
    		m := MSS(typed)
    		trace.Path += m.ToQuery()
    	case *URLValues:
    		trace.Path += typed.Values().Encode()
    	case *NoPayload, *Bytes:
    		trace.Path = fmt.Sprintf("%s?payload=%T", trace.Path, typed)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jun 01 05:17:37 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. src/internal/fuzz/trace.go

    Cuong Manh Le <******@****.***> 1665464211 +0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 12 00:12:53 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/race0.go

    Dmitri Shuralyov <******@****.***> 1697571594 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 454 bytes
    - Viewed (0)
  4. src/runtime/trace/trace.go

    // file (trace.out).
    //
    //	go test -trace=trace.out
    //
    // This runtime/trace package provides APIs to add equivalent tracing
    // support to a standalone program. See the Example that demonstrates
    // how to use this API to enable tracing.
    //
    // There is also a standard HTTP interface to trace data. Adding the
    // following line will install a handler under the /debug/pprof/trace URL
    // to download a live trace:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 20 00:47:09 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  5. samples/bookinfo/src/productpage/tests/unit/test_productpage.py

            # don't match, the mock won't fire, an E500 will be triggered
            # and the test will fail.
            expected_headers = {
                'x-request-id': '34eeb41d-d267-9e49-8b84-dde403fc5b72',
                'x-b3-traceid': '80f198ee56343ba864fe8b2a57d3eff7',
                'x-b3-spanid': 'e457b5a2e4d86bd1',
                'x-b3-sampled': '1',
                'sw8': '40c7fdf104e3de67'
            }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:37 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/pjrt_device_context.cc

                                                  Device* device,
                                                  Tensor* cpu_tensor,
                                                  StatusCallback done) {
      tsl::profiler::TraceMe traceme("PjRtDeviceContext::CopyDeviceTensorToCPU");
      if (device_tensor->NumElements() == 0) {
        VLOG(2) << "CopyDeviceTensorToCPU empty tensor";
        done(absl::OkStatus());
        return;
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 08:49:31 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  7. manifests/charts/istio-control/istio-discovery/templates/NOTES.txt

        "global.tracer.lightstep.address" "meshConfig.defaultConfig.tracing.lightstep.address"
        "global.tracer.lightstep.accessToken" "meshConfig.defaultConfig.tracing.lightstep.accessToken"
        "global.tracer.zipkin.address" "meshConfig.defaultConfig.tracing.zipkin.address"
        "global.tracer.stackdriver.debug" "meshConfig.defaultConfig.tracing.stackdriver.debug"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 20:02:28 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  8. platforms/software/antlr/src/main/java/org/gradle/api/plugins/antlr/AntlrTask.java

        /**
         * Specifies that all rules call {@code traceIn}/{@code traceOut}.
         */
        @Input
        public boolean isTrace() {
            return trace;
        }
    
        public void setTrace(boolean trace) {
            this.trace = trace;
        }
    
        /**
         * Specifies that all lexer rules call {@code traceIn}/{@code traceOut}.
         */
        @Input
        public boolean isTraceLexer() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  9. releasenotes/notes/49911.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: telemetry
    issue:
      - 49911
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 19 03:56:42 UTC 2024
    - 190 bytes
    - Viewed (0)
  10. src/log/slog/json_handler_test.go

    	type req struct {
    		Method  string
    		URL     string
    		TraceID string
    		Addr    string
    	}
    
    	structAttrs := []any{
    		String("program", "my-test-program"),
    		String("package", "log/slog"),
    		Any("request", &req{
    			Method:  "GET",
    			URL:     "https://pkg.go.dev/golang.org/x/log/slog",
    			TraceID: "2039232309232309",
    			Addr:    "127.0.0.1:8080",
    		}),
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 11 17:06:26 UTC 2023
    - 6.5K bytes
    - Viewed (0)
Back to top