Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 690 for traces (0.17 sec)

  1. platforms/ide/problems-api/src/main/java/org/gradle/problems/buildtree/ProblemDiagnosticsFactory.java

    public interface ProblemDiagnosticsFactory {
        /**
         * Creates a new stream of problems. Each problem stream produces diagnostics for some logical set of problems, applying limits to
         * the number of stack traces captured. Each stream has its own limits.
         */
        ProblemStream newStream();
    
        /**
         * Creates a new stream of problems without any limits.
         */
        ProblemStream newUnlimitedStream();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/logging/StackTraceFilter.java

    public class StackTraceFilter {
        private final Spec<StackTraceElement> filterSpec;
    
        public StackTraceFilter(Spec<StackTraceElement> filterSpec) {
            this.filterSpec = filterSpec;
        }
    
        // stack traces are filtered in call order (from bottom to top)
        public List<StackTraceElement> filter(List<StackTraceElement> stackTrace) {
            List<StackTraceElement> filtered = new ArrayList<StackTraceElement>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. samples/open-telemetry/otel.yaml

            port: 13133
        service:
          extensions:
          - health_check
          pipelines:
            logs:
              receivers: [otlp]
              processors: [batch]
              exporters: [logging]
            traces:
              receivers:
              - otlp
              - opencensus
              exporters:
              - zipkin
              - logging
              - jaeger
    ---
    apiVersion: v1
    kind: Service
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 31 08:51:36 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. tensorflow/cc/gradients/linalg_grad.cc

      // doesn't need to be transposed, then just tiling is enough and there is no
      // need to call another einsum. For example, tiling is sufficient for
      // "abcd->ac". But for equations like "aabbcd->ac" (generalized traces) or
      // "abc->ca" (transpose), we'd need another einsum operation after tiling.
      if (!has_repeated_labels &&
          input_subs_without_reduced_labels == output_subs) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 07 23:11:54 UTC 2022
    - 20.4K bytes
    - Viewed (0)
  5. src/internal/trace/testdata/generators/go122-create-syscall-with-p.go

    // a syscall (in the tracer's model). Because the actual
    // m can be reused, it's possible for that m to have never
    // had its P (in _Psyscall) stolen if the runtime doesn't
    // model the scenario correctly. Make sure we reject such
    // traces.
    
    package main
    
    import (
    	"internal/trace"
    	"internal/trace/event/go122"
    	testgen "internal/trace/internal/testgen/go122"
    )
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/build_trimpath.txt

    cp overlay.json $WORK/b/src/paths
    cp go.mod $WORK/a/src/paths/
    cp go.mod $WORK/b/src/paths/
    
    
    # A binary built without -trimpath should contain the module root dir
    # and GOROOT for debugging and stack traces.
    cd $WORK/a/src/paths
    go build -o $WORK/paths-dbg.exe .
    exec $WORK/paths-dbg.exe $WORK/paths-dbg.exe
    stdout 'binary contains module root: true'
    stdout 'binary contains an empty GOROOT'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  7. istioctl/cmd/options_test.go

          --log_stacktrace_level: Comma-separated minimum per-scope logging level at which stack traces are captured, in the form of <scope>:<level>,<scope:level>,... where scope can be one of \[.*\] and level can be one of \[.*\]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 14 02:38:54 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  8. src/net/http/pprof/pprof.go

    //
    //	go tool pprof http://localhost:6060/debug/pprof/mutex
    //
    // The package also exports a handler that serves execution trace data
    // for the "go tool trace" command. To collect a 5-second execution trace:
    //
    //	curl -o trace.out http://localhost:6060/debug/pprof/trace?seconds=5
    //	go tool trace trace.out
    //
    // To view all available profiles, open http://localhost:6060/debug/pprof/
    // in your browser.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:34:05 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/testFixtures/groovy/org/gradle/internal/logging/text/TestStyledTextOutput.groovy

        }
    
        /**
         * Returns the normalized value of this text output. Normalizes:
         * - style changes to {style} where _style_ is the lowercase name of the style.
         * - line endings to \n
         * - stack traces to {stacktrace}\n
         */
        String getValue() {
            StringBuilder normalised = new StringBuilder()
    
            String eol = SystemProperties.instance.lineSeparator
            boolean inStackTrace = false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  10. 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)
Back to top