Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 134 for tracers (0.53 sec)

  1. platforms/ide/tooling-api-builders/src/test/groovy/org/gradle/tooling/internal/provider/runner/ClientBuildEventGeneratorTest.groovy

            tracker2.trackers >> [tracker3]
            tracker3.trackers >> []
    
            def generator = new ClientBuildEventGenerator(consumer, subscriptions, [mapper], fallback)
    
            when:
            generator.started(operation, startEvent)
    
            then:
            1 * tracker1.started(operation, startEvent)
            1 * tracker2.started(operation, startEvent)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  2. tests/integration/telemetry/tracing/otelcollector/tracing_test.go

    									// the OTel collector exports to Zipkin
    									traces, err := tracing.GetZipkinInstance().QueryTraces(300, "", tc.customAttribute)
    									t.Logf("got traces %v from %s", traces, cluster)
    									if err != nil {
    										return fmt.Errorf("cannot get traces from zipkin: %v", err)
    									}
    									if !tracing.VerifyOtelEchoTraces(ctx, appNsInst.Name(), cluster.Name(), traces) {
    										return errors.New("cannot find expected traces")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 22:56:30 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/Logging.kt

        val tracer = this.tracer
        return if (tracer == null) {
            writeAction()
        } else {
            val frameName = name()
            try {
                tracer.open(frameName)
                writeAction()
            } finally {
                tracer.close(frameName)
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. src/internal/trace/testdata/README.md

    trace, but with the `.go` extension removed.
    
    ## Trace test programs
    
    The trace test programs in the `testprog` directory generate traces to
    stdout.
    Otherwise they're just normal programs.
    
    ## Trace debug commands
    
    The `cmd` directory contains helpful tools for debugging traces.
    
    * `gotraceraw` parses traces without validation.
      It can produce a text version of the trace wire format, or convert
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/BuildOperationTracker.java

    import java.util.Collections;
    import java.util.List;
    
    /**
     * Tracks some state for build operations of a given type.
     */
    public interface BuildOperationTracker {
        /**
         * Returns the trackers that are used by this tracker. If this tracker is required, then its trackers should be notified of
         * build operation execution. If this tracker is not required, the trackers can be ignored.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. src/internal/trace/oldtrace_test.go

    					// strings were generated by
    					// runtime/trace.TestUserTaskRegion, which is the basis for
    					// the user_task_region_* test cases. We only check for the
    					// Go 1.21 traces because earlier traces used different
    					// strings.
    					switch ev.Kind() {
    					case trace.EventRegionBegin, trace.EventRegionEnd:
    						if _, ok := validRegions[ev.Region().Type]; !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. tests/integration/telemetry/tracing/zipkin/server_tracing_test.go

    						}
    						traces, err := tracing.GetZipkinInstance().QueryTraces(300,
    							fmt.Sprintf("server.%s.svc.cluster.local:80/*", appNsInst.Name()), "")
    						if err != nil {
    							return fmt.Errorf("cannot get traces from zipkin: %v", err)
    						}
    						if !tracing.VerifyEchoTraces(t, appNsInst.Name(), cluster.Name(), traces) {
    							return errors.New("cannot find expected traces")
    						}
    						return nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/aot/tests/test_error_message.lit.pbtxt.debug.pbtxt

    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
          col:  1
        }
      }
    }
    traces: {
      key: "y@"
      value: {
        file_line_cols: {
          line: 2
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 16 00:15:24 UTC 2020
    - 444 bytes
    - Viewed (0)
  9. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/BuildOperationMapper.java

        boolean isEnabled(BuildEventSubscriptions subscriptions);
    
        Class<DETAILS> getDetailsType();
    
        /**
         * Returns the trackers that are used by this mapper. If this mapper is enabled, then the trackers should be notified of
         * build operation execution. If this mapper is not enabled, the trackers can be ignored.
         */
        default List<? extends BuildOperationTracker> getTrackers() {
            return Collections.emptyList();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  10. src/runtime/trace/annotation.go

    	// can be used across trace enable/disable boundaries,
    	// which complicates the problem.
    	//
    	// For example, consider the following scenario:
    	//   - trace is enabled.
    	//   - trace.WithRegion is called, so a new context ctx
    	//     with a new region is created.
    	//   - trace is disabled.
    	//   - trace is enabled again.
    	//   - trace APIs with the ctx is called. Is the ID in the task
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 20 00:47:09 UTC 2023
    - 6.1K bytes
    - Viewed (0)
Back to top