Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 385 for tracking (0.14 sec)

  1. pilot/pkg/networking/core/route/route.go

    			// The result is OR'd so we don't overwrite a previously true value
    			// localMatch is tracking the match found within this iteration of the loop
    			localMatch := svcHost.Matches(hostname)
    			// foundSvcMatch is tracking in the wider context whether or not ANY match was found during an iteration
    			foundSvcMatch = foundSvcMatch || localMatch
    			if !localMatch {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  2. src/internal/coverage/cfile/emit.go

    }
    
    func reportErrorInHardcodedList(slot, pkgID int32, fnID, nCtrs uint32) {
    	metaList := rtcov.Meta.List
    	pkgMap := rtcov.Meta.PkgMap
    
    	println("internal error in coverage meta-data tracking:")
    	println("encountered bad pkgID:", pkgID, " at slot:", slot,
    		" fnID:", fnID, " numCtrs:", nCtrs)
    	println("list of hard-coded runtime package IDs needs revising.")
    	println("[see the comment on the 'rtPkgs' var in ")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/patch.go

    	return func(w http.ResponseWriter, req *http.Request) {
    		ctx := req.Context()
    		// For performance tracking purposes.
    		ctx, span := tracing.Start(ctx, "Patch", traceFields(req)...)
    		defer span.End(500 * time.Millisecond)
    
    		// Do this first, otherwise name extraction can fail for unrecognized content types
    		// TODO: handle this in negotiation
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ir/func.go

    	// created in this function for function literals, range-over-func loops,
    	// and go/defer wrappers, respectively. Used by closureName for creating
    	// unique function names.
    	// Tracking goDeferGen separately avoids wrappers throwing off
    	// function literal numbering (e.g., runtime/trace_test.TestTraceSymbolize.func11).
    	funcLitGen  int32
    	rangeLitGen int32
    	goDeferGen  int32
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewrite.go

    		return x.Type.Size() == 4 && (x.Type.IsUnsigned() || x.Block.Func.Config.arch == "amd64")
    	case OpPhi, OpSelect0, OpSelect1:
    		// Phis can use each-other as an arguments, instead of tracking visited values,
    		// just limit recursion depth.
    		if depth <= 0 {
    			return false
    		}
    		for i := range x.Args {
    			if !zeroUpper32Bits(x.Args[i], depth-1) {
    				return false
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  6. src/crypto/tls/handshake_server.go

    	hs.hello.sessionId = hs.clientHello.sessionId
    	// We always send a new session ticket, even if it wraps the same master
    	// secret and it's potentially encrypted with the same key, to help the
    	// client avoid cross-connection tracking from a network observer.
    	hs.hello.ticketSupported = true
    	hs.finishedHash = newFinishedHash(c.vers, hs.suite)
    	hs.finishedHash.discardHandshakeBuffer()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  7. src/internal/trace/summary.go

    	// Used to correctly identify and clean up after syscalls (blocking or otherwise).
    	syscallingP map[ProcID]GoID
    	syscallingG map[GoID]ProcID
    
    	// rangesP is used for optimistic tracking of P-based ranges for goroutines.
    	//
    	// It's a best-effort mapping of an active range on a P to the goroutine we think
    	// is associated with it.
    	rangesP map[rangeP]GoID
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  8. src/runtime/mheap.go

    }
    
    const (
    	// _KindSpecialFinalizer is for tracking finalizers.
    	_KindSpecialFinalizer = 1
    	// _KindSpecialWeakHandle is used for creating weak pointers.
    	_KindSpecialWeakHandle = 2
    	// _KindSpecialProfile is for memory profiling.
    	_KindSpecialProfile = 3
    	// _KindSpecialReachable is a special used for tracking
    	// reachability during testing.
    	_KindSpecialReachable = 4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/named.go

    // finished). It is critical that we keep track of state, so that Named types
    // are constructed exactly once and so that we do not access their details too
    // soon.
    //
    // We achieve this by tracking state with an atomic state variable, and
    // guarding potentially concurrent calculations with a mutex. At any point in
    // time this state variable determines which data on N may be accessed. As
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/tracing.go

    			Type: &tracing.CustomTag_Literal_{
    				Literal: &tracing.CustomTag_Literal{
    					Value: meshID,
    				},
    			},
    		},
    		{
    			Tag: "istio.namespace",
    			Type: &tracing.CustomTag_Literal_{
    				Literal: &tracing.CustomTag_Literal{
    					Value: namespace,
    				},
    			},
    		},
    		{
    			Tag: "istio.cluster_id",
    			Type: &tracing.CustomTag_Literal_{
    				Literal: &tracing.CustomTag_Literal{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 24.2K bytes
    - Viewed (0)
Back to top