Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 259 for traces (0.19 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_controller.go

    	// watchTracker implements the necessary WatchTracker interface.
    	WatchTracker
    
    	// MaxSeatsTracker tracks the maximum seats that should be allocatable from the
    	// work estimator for a given priority level. This controller does not enforce
    	// any limits on max seats stored in this tracker, it is up to the work estimator
    	// to set lower/upper limits on max seats (currently min=1, max=10).
    	MaxSeatsTracker
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 48.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/conversion/webhook_converter.go

    		attribute.String("desired-api-version", desiredAPIVersion),
    		attribute.Int("object-count", objCount),
    		attribute.String("UID", string(requestUID)))
    	// Only log conversion webhook traces that exceed a 8ms per object limit plus a 50ms request overhead allowance.
    	// The per object limit uses the SLO for conversion webhooks (~4ms per object) plus time to serialize/deserialize
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 07 19:37:55 UTC 2023
    - 20.6K bytes
    - Viewed (0)
  3. src/cmd/link/internal/wasm/asm.go

    }
    
    var nameRegexp = regexp.MustCompile(`[^\w.]`)
    
    // writeNameSec writes an optional section that assigns names to the functions declared by the "func" section.
    // The names are only used by WebAssembly stack traces, debuggers and decompilers.
    // TODO(neelance): add symbol table of DATA symbols
    func writeNameSec(ctxt *ld.Link, firstFnIndex int, fns []*wasmFunc) {
    	sizeOffset := writeSecHeader(ctxt, sectionCustom)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:17:48 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/infer.go

    	// indices of generic parameters with untyped arguments, for later use
    	var untyped []int
    
    	// --- 1 ---
    	// use information from function arguments
    
    	if traceInference {
    		u.tracef("== function parameters: %s", params)
    		u.tracef("-- function arguments : %s", args)
    	}
    
    	for i, arg := range args {
    		if arg.mode == invalid {
    			// An error was reported earlier. Ignore this arg
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  5. src/go/types/infer.go

    	// indices of generic parameters with untyped arguments, for later use
    	var untyped []int
    
    	// --- 1 ---
    	// use information from function arguments
    
    	if traceInference {
    		u.tracef("== function parameters: %s", params)
    		u.tracef("-- function arguments : %s", args)
    	}
    
    	for i, arg := range args {
    		if arg.mode == invalid {
    			// An error was reported earlier. Ignore this arg
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  6. docs/en/data/external_links.yml

    Explore How to Effectively Use JWT With FastAPI - author: Nicoló Lino author_link: https://www.nlino.com link: https://github.com/softwarebloat/python-tracing-demo title: Instrument a FastAPI service adding tracing with OpenTelemetry and send/show traces in Grafana Tempo - author: Mikhail Rozhkov, Elena Samuylova author_link: https://www.linkedin.com/in/mnrozhkov/ link: https://www.evidentlyai.com/blog/fastapi-tutorial title: ML serving and monitoring with FastAPI and Evidently - author: Visual Studio...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Jun 12 00:47:57 UTC 2024
    - 22K bytes
    - Viewed (0)
  7. src/runtime/crash_cgo_test.go

    		t.Logf("%s:\n%s", cmd.Args, out)
    		if err != nil {
    			t.Error(err)
    			continue
    		}
    
    		trace := findTrace(string(out), top)
    		if len(trace) == 0 {
    			t.Errorf("%s traceback missing.", top)
    			continue
    		}
    		if trace[len(trace)-1] != bottom {
    			t.Errorf("invalid traceback origin: got=%v; want=[%s ... %s]", trace, top, bottom)
    		}
    	}
    }
    
    func TestCgoPprof(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 16:44:47 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  8. src/runtime/pprof/proto.go

    	firstPCSymbolizeResult symbolizeFlag
    }
    
    func (d *pcDeck) reset() {
    	d.pcs = d.pcs[:0]
    	d.frames = d.frames[:0]
    	d.symbolizeResult = 0
    	d.firstPCFrames = 0
    	d.firstPCSymbolizeResult = 0
    }
    
    // tryAdd tries to add the pc and Frames expanded from it (most likely one,
    // since the stack trace is already fully expanded) and the symbolizeResult
    // to the deck. If it fails the caller needs to flush the deck and retry.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 13 20:40:52 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  9. src/cmd/go/internal/fsys/fsys.go

    	"sort"
    	"strings"
    	"sync"
    	"time"
    )
    
    // Trace emits a trace event for the operation and file path to the trace log,
    // but only when $GODEBUG contains gofsystrace=1.
    // The traces are appended to the file named by the $GODEBUG setting gofsystracelog, or else standard error.
    // For debugging, if the $GODEBUG setting gofsystracestack is non-empty, then trace events for paths
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:35:34 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  10. src/runtime/traceback_test.go

    						break
    					}
    					i++
    				}
    				tb.frames = tb.frames[1:]
    			}
    			if !t.Failed() && len(tb.frames) > 0 {
    				t.Errorf("got %d more frames than expected", len(tb.frames))
    			}
    			if t.Failed() {
    				t.Logf("traceback diverged at frame %d", i)
    				off := len(stack)
    				if len(tb.frames) > 0 {
    					off = tb.frames[0].off
    				}
    				t.Logf("traceback before error:\n%s", stack[:off])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 22.9K bytes
    - Viewed (0)
Back to top