Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 338 for tracks (0.11 sec)

  1. pkg/kubelet/metrics/metrics.go

    	// Metrics to track ephemeral container usage by this kubelet
    	ManagedEphemeralContainersKey = "managed_ephemeral_containers"
    
    	// Metrics to track the CPU manager behavior
    	CPUManagerPinningRequestsTotalKey = "cpu_manager_pinning_requests_total"
    	CPUManagerPinningErrorsTotalKey   = "cpu_manager_pinning_errors_total"
    
    	// Metrics to track the Memory manager behavior
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 15:13:25 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  2. 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)
  3. tensorflow/cc/saved_model/metrics.cc

    namespace tensorflow {
    namespace metrics {
    
    namespace {
    
    // Counter that tracks total number and `write_version` of SavedModels written.
    auto* saved_model_write_counter = monitoring::Counter<1>::New(
        "/tensorflow/core/saved_model/write/count",
        "The number of SavedModels successfully written.", "write_version");
    
    // Counter that tracks total number and `write_version` of SavedModels read.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 18 23:43:59 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. pkg/proxy/config/config.go

    	// OnEndpointSlicesSynced is called once all the initial event handlers were
    	// called and the state is fully propagated to local cache.
    	OnEndpointSlicesSynced()
    }
    
    // EndpointSliceConfig tracks a set of endpoints configurations.
    type EndpointSliceConfig struct {
    	listerSynced  cache.InformerSynced
    	eventHandlers []EndpointSliceHandler
    	logger        klog.Logger
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.h

        // Whether a previous access of this resource already tracks the last
        // unknown read(s).
        bool are_last_unknown_reads_tracked = false;
        // Whether a previous write access of this resource already tracks the last
        // unknown write.
        bool is_last_unknown_write_tracked_by_write = false;
        // Whether a previous read or write access of this resource already tracks
        // the last unknown write.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  6. pkg/xds/server.go

    	for _, rr := range r {
    		a = append(a, rr.Resource)
    	}
    	return a
    }
    
    // WatchedResource tracks an active DiscoveryRequest subscription.
    type WatchedResource struct {
    	// TypeUrl is copied from the DiscoveryRequest.TypeUrl that initiated watching this resource.
    	// nolint
    	TypeUrl string
    
    	// ResourceNames tracks the list of resources that are actively watched.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/resource/v1alpha2/generated.proto

      // +listType=map
      // +listMapKey=name
      // +optional
      repeated ResourceClaimSchedulingStatus resourceClaims = 1;
    }
    
    // ResourceClaim describes which resources are needed by a resource consumer.
    // Its status tracks whether the resource has been allocated and what the
    // resulting attributes are.
    //
    // This is an alpha type and requires enabling the DynamicResourceAllocation
    // feature gate.
    message ResourceClaim {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/util/proxy/streamtunnel.go

    	w http.ResponseWriter
    	// conn is returned from Hijack()
    	conn net.Conn
    	// mu guards writes
    	mu sync.Mutex
    	// wrote tracks whether WriteHeader or Write has been called
    	written bool
    	// hijacked tracks whether Hijack has been called
    	hijacked bool
    }
    
    // Hijack returns a delegate "net.Conn".
    // An error is returned if Write(), WriteHeader(), or Hijack() was previously called.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:10:30 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  9. src/runtime/mgclimit.go

    var gcCPULimiter gcCPULimiterState
    
    type gcCPULimiterState struct {
    	lock atomic.Uint32
    
    	enabled atomic.Bool
    
    	// gcEnabled is an internal copy of gcBlackenEnabled that determines
    	// whether the limiter tracks total assist time.
    	//
    	// gcBlackenEnabled isn't used directly so as to keep this structure
    	// unit-testable.
    	gcEnabled bool
    
    	// transitioning is true when the GC is in a STW and transitioning between
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 22:07:41 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  10. src/runtime/pprof/pprof.go

    //
    //	goroutine    - stack traces of all current goroutines
    //	heap         - a sampling of memory allocations of live objects
    //	allocs       - a sampling of all past memory allocations
    //	threadcreate - stack traces that led to the creation of new OS threads
    //	block        - stack traces that led to blocking on synchronization primitives
    //	mutex        - stack traces of holders of contended mutexes
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 30.6K bytes
    - Viewed (0)
Back to top