Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,137 for tracks (0.21 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. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/processing/TimeTrackingProcessorTest.groovy

        }
    
        def "tracks time for getSupportedOptions()"() {
            when:
            def options = tracker.getSupportedOptions()
    
            then:
            1 * delegate.getSupportedOptions() >> {
                simulateWorkWithDuration(17)
                ['Option']
            }
            options == ['Option'] as Set
            result.executionTimeInMillis == 17
        }
    
        def "tracks time for getSupportedSourceVersion()"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  4. pkg/controller/job/metrics/metrics.go

    	"k8s.io/component-base/metrics/legacyregistry"
    )
    
    // JobControllerSubsystem - subsystem name used for this controller.
    const JobControllerSubsystem = "job_controller"
    
    var (
    	// JobSyncDurationSeconds tracks the latency of Job syncs. Possible label
    	// values:
    	//   completion_mode: Indexed, NonIndexed
    	//   result:          success, error
    	//   action:          reconciling, tracking, pods_created, pods_deleted
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 17:25:15 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/moduleconverter/dependencies/LocalConfigurationMetadataBuilder.java

            ModelContainer<?> model,
            CalculatedValueContainerFactory calculatedValueContainerFactory
        );
    
        /**
         * A cache of the defined dependencies for dependency configurations. This tracks the cached internal
         * dependency representations for these types so when constructing leaf configuration metadata
         * (resolvable and consumable), these conversions do not need to be executed multiple times.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 4K bytes
    - Viewed (0)
  6. src/internal/trace/testdata/generators/go122-task-across-generations.go

    	g1 := t.Generation(1)
    
    	// A running goroutine emits a task begin.
    	b1 := g1.Batch(trace.ThreadID(0), 0)
    	b1.Event("ProcStatus", trace.ProcID(0), go122.ProcRunning)
    	b1.Event("GoStatus", trace.GoID(1), trace.ThreadID(0), go122.GoRunning)
    	b1.Event("UserTaskBegin", trace.TaskID(2), trace.TaskID(0) /* 0 means no parent, not background */, "my task", testgen.NoStack)
    
    	g2 := t.Generation(2)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. 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)
  8. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/FileAccessTracker.java

     * limitations under the License.
     */
    
    package org.gradle.internal.file;
    
    import java.io.File;
    
    /**
     * Tracks access to files.
     */
    public interface FileAccessTracker {
        /**
         * Marks the supplied file as accessed.
         *
         * If the supplied file is unknown to this tracker, implementations must
         * simply ignore it instead of throwing an exception. However, depending
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/resources/AbstractTrackedResourceLockTest.groovy

        def coordinationService = Mock(ResourceLockCoordinationService)
        def container = Mock(ResourceLockContainer)
        def lock = new TestTrackedResourceLock("test", coordinationService, container)
    
        def "tracks the lock in the current resource lock state and calls provided actions"() {
            given:
            _ * coordinationService.current >> resourceLockState
    
            when:
            lock.tryLock()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/lifetime/KaLifetimeTracker.kt

    import com.intellij.openapi.project.Project
    import org.jetbrains.kotlin.analysis.api.lifetime.KtLifetimeToken
    import org.jetbrains.kotlin.analysis.api.platform.KaEngineService
    
    /**
     * [KaLifetimeTracker] is an *engine service* which tracks the current [KtLifetimeToken].
     *
     * It can be used in the implementation of custom lifetime tokens to check that the accessed token is in scope.
     */
    public interface KaLifetimeTracker : KaEngineService {
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 1K bytes
    - Viewed (0)
Back to top