Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 647 for traces (0.21 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. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

        // If there are no locations in the stack trace, fall back to just a
        // NameLoc with no child.
        if (locations.empty()) return mlir::NameLoc::get(name_loc_id);
    
        // Use the front FileLineColLoc to generate a NameLoc.
        mlir::Location node_name_loc =
            mlir::NameLoc::get(name_loc_id, locations.front());
    
        // If there are more locations then generate a stack trace, otherwise just
        // return the name loc.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  3. src/runtime/tracestatus.go

    		print("runtime: goid=", goid, "\n")
    		throw("attempted to trace a bad status for a goroutine")
    	}
    
    	// Trace the status.
    	if stackID == 0 {
    		w = w.event(traceEvGoStatus, traceArg(goid), traceArg(uint64(mid)), traceArg(status))
    	} else {
    		w = w.event(traceEvGoStatusStack, traceArg(goid), traceArg(uint64(mid)), traceArg(status), traceArg(stackID))
    	}
    
    	// Trace any special ranges that are in-progress.
    	if markAssist {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:03:35 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

      UnitTest();
    
      // D'tor
      virtual ~UnitTest();
    
      // Pushes a trace defined by SCOPED_TRACE() on to the per-thread
      // Google Test trace stack.
      void PushGTestTrace(const internal::TraceInfo& trace)
          GTEST_LOCK_EXCLUDED_(mutex_);
    
      // Pops a trace from the per-thread Google Test trace stack.
      void PopGTestTrace()
          GTEST_LOCK_EXCLUDED_(mutex_);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

      UnitTest();
    
      // D'tor
      virtual ~UnitTest();
    
      // Pushes a trace defined by SCOPED_TRACE() on to the per-thread
      // Google Test trace stack.
      void PushGTestTrace(const internal::TraceInfo& trace)
          GTEST_LOCK_EXCLUDED_(mutex_);
    
      // Pops a trace from the per-thread Google Test trace stack.
      void PopGTestTrace()
          GTEST_LOCK_EXCLUDED_(mutex_);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

                                         func::FuncOp func) {
      // Examine all StatefulPartitionedCall ops that have resources as return
      // types. If the returned resource traces back to an input argument for the
      // SPC, then replace uses of the returned copy with the original input.
      //
      // Note: This does not descend through nested SCPs.
      auto ComesFromBlockArgNumber = [](Value val) -> int {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/request/webhook_duration.go

    		tracker.ResponseWriteTracker.TrackDuration(d)
    	}
    }
    
    // TrackAPFQueueWaitLatency is used to track latency incurred
    // by priority and fairness queues.
    func TrackAPFQueueWaitLatency(ctx context.Context, d time.Duration) {
    	if tracker, ok := LatencyTrackersFrom(ctx); ok {
    		tracker.APFQueueWaitTracker.TrackDuration(d)
    	}
    }
    
    // TrackDecodeLatency is used to track latency incurred inside the function
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 13 22:15:37 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  8. test/codegen/ifaces.go

    Keith Randall <******@****.***> 1695069109 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 06 17:02:53 UTC 2023
    - 621 bytes
    - Viewed (0)
  9. pkg/test/util/assert/tracker.go

    	"istio.io/istio/pkg/test/util/retry"
    )
    
    type Tracker[T comparable] struct {
    	t      test.Failer
    	mu     sync.Mutex
    	events []T
    }
    
    // NewTracker builds a tracker which records events that occur
    func NewTracker[T comparable](t test.Failer) *Tracker[T] {
    	return &Tracker[T]{t: t}
    }
    
    // Record that an event occurred.
    func (t *Tracker[T]) Record(event T) {
    	t.mu.Lock()
    	defer t.mu.Unlock()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  10. src/runtime/race0.go

    func raceinit() (uintptr, uintptr)                                          { throw("race"); return 0, 0 }
    func racefini()                                                             { throw("race") }
    func raceproccreate() uintptr                                               { throw("race"); return 0 }
    func raceprocdestroy(ctx uintptr)                                           { throw("race") }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 2.8K bytes
    - Viewed (0)
Back to top