Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 647 for traces (0.14 sec)

  1. src/cmd/go/internal/web/http.go

    		// Note: The -v build flag does not mean "print logging information",
    		// despite its historical misuse for this in GOPATH-based go get.
    		// We print extra logging in -x mode instead, which traces what
    		// commands are executed.
    		if cfg.BuildX {
    			fmt.Fprintf(os.Stderr, "# get %s\n", url.Redacted())
    		}
    
    		req, err := http.NewRequest("GET", url.String(), nil)
    		if err != nil {
    			return nil, err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 10 17:34:27 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  2. cmd/kube-apiserver/app/options/options_test.go

    			ProxyClientKeyFile:      "/var/run/kubernetes/proxy.key",
    			ProxyClientCertFile:     "/var/run/kubernetes/proxy.crt",
    			Metrics:                 &metrics.Options{},
    			Logs:                    logs.NewOptions(),
    			Traces: &apiserveroptions.TracingOptions{
    				ConfigFile: "/var/run/kubernetes/tracing_config.yaml",
    			},
    			AggregatorRejectForwardingRedirects: true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  3. tensorflow/cc/framework/scope.h

      /// status as is without performing GraphDef conversion. If
      /// `include_debug_info` is true, populate the `debug_info` field of the
      /// GraphDef from stack traces in this Graph.
      Status ToGraphDef(GraphDef* gdef, bool include_debug_info = false) const;
    
      // START_SKIP_DOXYGEN
    
      /// If status() is OkStatus(), construct a Graph object using `opts` as the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 09:08:33 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  4. 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)
  5. src/cmd/cgo/internal/test/testx.go

    	runtime.GC()
    	buf := make([]byte, 65536)
    	trace := string(buf[:runtime.Stack(buf, true)])
    	for _, goroutine := range strings.Split(trace, "\n\n") {
    		if strings.Contains(goroutine, "test.issue7978go") {
    			trace := strings.Split(goroutine, "\n")
    			// look for the expected function in the stack
    			for i := 0; i < depth; i++ {
    				if badFunc != "" && strings.Contains(trace[1+2*i], badFunc) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 21:53:11 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  6. src/cmd/trace/gen.go

    			g.Sync()
    		case trace.EventStackSample:
    			g.StackSample(ctx, ev)
    		case trace.EventRangeBegin, trace.EventRangeActive, trace.EventRangeEnd:
    			r := ev.Range()
    			switch r.Scope.Kind {
    			case trace.ResourceGoroutine:
    				g.GoroutineRange(ctx, ev)
    			case trace.ResourceProc:
    				g.ProcRange(ctx, ev)
    			case trace.ResourceNone:
    				g.GlobalRange(ctx, ev)
    			}
    		case trace.EventMetric:
    			g.GlobalMetric(ctx, ev)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/aes/aes.go

    		n.fatal("aes-gcm detected nonce overflow - cryptographic wear out has occurred")
    	}
    	binary.LittleEndian.PutUint64(b, incrementingNonce)
    }
    
    func die(msg string) {
    	// nolint:logcheck // we want the stack traces, log flushing, and process exiting logic from FatalDepth
    	klog.FatalDepth(1, msg)
    }
    
    // GenerateKey generates a random key using system randomness.
    func GenerateKey(length int) (key []byte, err error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 19:25:52 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  8. pkg/controlplane/apiserver/config.go

    		return
    	}
    	if lastErr = s.EgressSelector.ApplyTo(genericConfig); lastErr != nil {
    		return
    	}
    	if utilfeature.DefaultFeatureGate.Enabled(genericfeatures.APIServerTracing) {
    		if lastErr = s.Traces.ApplyTo(genericConfig.EgressSelector, genericConfig); lastErr != nil {
    			return
    		}
    	}
    	// wrap the definitions to revert any changes from disabled features
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  9. pkg/log/scope.go

    	"sync/atomic"
    	"time"
    
    	"go.uber.org/zap"
    	"go.uber.org/zap/zapcore"
    )
    
    // Scope constrains logging control to a named scope level. It gives users a fine grained control over output severity
    // threshold and stack traces.
    //
    // Scope supports structured logging using WithLabels:
    //
    //	s := RegisterScope("MyScope", "Description", 0)
    //	s = s.WithLabels("foo", "bar", "baz", 123, "qux", 0.123)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 16:47:01 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  10. guava/src/com/google/common/util/concurrent/CycleDetectingLockFactory.java

              return Lists.<LockGraphNode>newArrayListWithCapacity(3);
            }
          };
    
      /**
       * A Throwable used to record a stack trace that illustrates an example of a specific lock
       * acquisition ordering. The top of the stack trace is truncated such that it starts with the
       * acquisition of the lock in question, e.g.
       *
       * <pre>
       * com...ExampleStackTrace: LockB -&gt; LockC
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 15 19:31:54 UTC 2023
    - 35.9K bytes
    - Viewed (0)
Back to top