Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 341 for tracers (0.12 sec)

  1. src/runtime/tracecpu.go

    	trace.cpuLogRead[1].close()
    	trace.cpuSleep.wake()
    
    	// Wait until the logger goroutine exits.
    	<-trace.cpuLogDone
    
    	// Clear state for the next trace.
    	trace.cpuLogDone = nil
    	trace.cpuLogRead[0] = nil
    	trace.cpuLogRead[1] = nil
    	trace.cpuSleep.close()
    }
    
    // traceReadCPU attempts to read from the provided profBuf[gen%2] and write
    // into the trace. Returns true if there might be more to read or false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:03:35 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  2. src/internal/trace/oldtrace.go

    // shouldn't result in a doubling of memory usage, even if all converted events
    // are kept alive, as we free batches once we're done with them.
    //
    // The conversion process is lossless.
    
    package trace
    
    import (
    	"errors"
    	"fmt"
    	"internal/trace/event"
    	"internal/trace/event/go122"
    	"internal/trace/internal/oldtrace"
    	"io"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/ClientBuildEventGenerator.java

            this.trackers = ImmutableList.copyOf(trackers);
        }
    
        private void collectTrackers(Set<BuildOperationTracker> dest, List<? extends BuildOperationTracker> trackers) {
            for (BuildOperationTracker tracker : trackers) {
                if (!dest.contains(tracker)) {
                    collectTrackers(dest, tracker.getTrackers());
                    dest.add(tracker);
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 9K bytes
    - Viewed (0)
  4. manifests/charts/istiod-remote/templates/configmap.yaml

          {{- end }}
          {{- if not (eq .Values.global.proxy.tracer "none") }}
          tracing:
          {{- if eq .Values.global.proxy.tracer "lightstep" }}
            lightstep:
              # Address of the LightStep Satellite pool
              address: {{ .Values.global.tracer.lightstep.address }}
              # Access Token used to communicate with the Satellite pool
              accessToken: {{ .Values.global.tracer.lightstep.accessToken }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/debuginfo/v1_1.0_224_frozen.wrong_attr.stack.part.pbtxt.debug

    files: "fake/user/code/file_y.py"
    files: "fake/user/code/file_z.py"
    traces {
      key: "MobilenetV1/Conv2d_0/BatchNorm/beta@"
      value {
        file_line_cols {
          file_index: 33
          line: 383
        }
      }
    }
    traces {
      key: "MobilenetV1/Conv2d_0/BatchNorm/beta/read@"
      value {
        file_line_cols {
          file_index: 49
          line: 886
        }
      }
    }
    traces {
      key: "MobilenetV1/Conv2d_0/BatchNorm/gamma@"
      value {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 11 15:36:55 UTC 2019
    - 3.9K bytes
    - Viewed (0)
  6. tests/tracer_test.go

    func (S Tracer) Warn(ctx context.Context, s string, i ...interface{}) {
    	S.Logger.Warn(ctx, s, i...)
    }
    
    func (S Tracer) Error(ctx context.Context, s string, i ...interface{}) {
    	S.Logger.Error(ctx, s, i...)
    }
    
    func (S Tracer) Trace(ctx context.Context, begin time.Time, fc func() (sql string, rowsAffected int64), err error) {
    	S.Logger.Trace(ctx, begin, fc, err)
    	S.Test(ctx, begin, fc, err)
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Tue Oct 18 09:28:06 UTC 2022
    - 830 bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/tests/debuginfo/v1_1.0_224_frozen.wrong_attr.line.part.pbtxt.debug

    files: "fake/user/code/file_y.py"
    files: "fake/user/code/file_z.py"
    traces {
      key: "MobilenetV1/Conv2d_0/BatchNorm/beta@"
      value {
        file_line_cols {
          file_index: 33
          line: 383
        }
      }
    }
    traces {
      key: "MobilenetV1/Conv2d_0/BatchNorm/beta/read@"
      value {
        file_line_cols {
          file_index: 49
          line: 886
        }
      }
    }
    traces {
      key: "MobilenetV1/Conv2d_0/BatchNorm/gamma@"
      value {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 11 15:36:55 UTC 2019
    - 3.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/error-message-with-source-info.pbtxt.debug

    files : [ "org_tensorflow/tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/error-message-with-source-info.pbtxt.fake_py.debug"]
    traces: {
        key  : "x@"
        value: {
          file_line_cols: {
            line      : 1
            col       : 1
          }
        }
    }
    traces: {
        key  : "x_y_sum@"
        value: {
          file_line_cols: {
            line      : 3
            col       : 1
          }
          file_line_cols: {
            line      : 4
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 16 00:15:24 UTC 2020
    - 586 bytes
    - Viewed (0)
  9. manifests/charts/istio-control/istio-discovery/templates/configmap.yaml

          {{- end }}
          {{- if not (eq .Values.global.proxy.tracer "none") }}
          tracing:
          {{- if eq .Values.global.proxy.tracer "lightstep" }}
            lightstep:
              # Address of the LightStep Satellite pool
              address: {{ .Values.global.tracer.lightstep.address }}
              # Access Token used to communicate with the Satellite pool
              accessToken: {{ .Values.global.tracer.lightstep.accessToken }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/defaultCodeResolver.kt

            val tracer = ResolutionTracer(
                ExpressionResolverImpl(this, functionCallResolver),
                StatementResolverImpl(propertyAccessResolver, this, this),
                ErrorCollectorImpl()
            )
            statementResolver = tracer
            expressionResolver = tracer
            errorCollector = tracer
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:46 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top