Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 35 for trace_0 (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/runtime/traceevent.go

    	w := tl.writer()
    	if pp := tl.mp.p.ptr(); pp != nil && !pp.trace.statusWasTraced(tl.gen) && pp.trace.acquireStatus(tl.gen) {
    		w = w.writeProcStatus(uint64(pp.id), procStatus, pp.trace.inSweep)
    	}
    	if gp := tl.mp.curg; gp != nil && !gp.trace.statusWasTraced(tl.gen) && gp.trace.acquireStatus(tl.gen) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  9. samples/custom-bootstrap/custom-bootstrap.yaml

    kind: ConfigMap
    metadata:
      name: istio-custom-bootstrap-config
      namespace: default
    data:
      custom_bootstrap.json: |
        "tracing": {
          "http": {
            "name": "envoy.tracers.zipkin",
            "typed_config": {
              "@type": "type.googleapis.com/envoy.config.trace.v3.ZipkinConfig",
              "collector_cluster": "zipkin",
              "collector_endpoint": "/api/v1/spans/custom",
              "collector_endpoint_version": "HTTP_JSON",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 15 01:47:22 UTC 2022
    - 557 bytes
    - Viewed (0)
  10. cluster/get-kube-binaries.sh

      else
        shasum -a512 "$1" | awk '{ print $1 }'
      fi
    }
    
    function download_tarball() {
      local -r download_path="$1"
      local -r file="$2"
      local trace_on="off"
      if [[ -o xtrace ]]; then
        trace_on="on"
        set +x
      fi
      url="${DOWNLOAD_URL_PREFIX}/${file}"
      mkdir -p "${download_path}"
    
      if [[ $(which gsutil) ]] && [[ "$url" =~ ^https://storage.googleapis.com/.* ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 13 10:57:41 UTC 2023
    - 9.2K bytes
    - Viewed (0)
Back to top