Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 54 for tracks (0.26 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ReportingTaskDependencyUsageTracker.kt

    import org.gradle.api.internal.tasks.TaskDependencyUsageTracker
    import org.gradle.internal.configuration.problems.ProblemFactory
    import org.gradle.internal.configuration.problems.ProblemsListener
    
    
    /** Reports all usages of the tracked TaskDependency APIs as problems using the [problems] listener.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/TrackingDynamicLookupRoutineTest.kt

    import org.junit.Test
    
    
    class TrackingDynamicLookupRoutineTest {
        @Test
        fun `tracks context in all implementations`() {
            val receiver = mock<DynamicObject> {
                on { tryGetProperty(any()) }.thenReturn(DynamicInvokeResult.found())
            }
    
            fun shouldTrackContext(action: DynamicLookupRoutine.() -> Unit) {
                val tracker = mock<DynamicCallContextTracker>()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/DefaultDynamicCallProblemReportingTest.kt

    import org.junit.Test
    import java.util.Collections
    import java.util.concurrent.CountDownLatch
    import kotlin.concurrent.thread
    
    
    class DefaultDynamicCallProblemReportingTest {
        @Test
        fun `tracks unreported problems in nested dynamic calls`() {
            val reporting = DefaultDynamicCallProblemReporting()
            val entryPoint1 = Any()
            val entryPoint2 = Any()
            val key1 = Any()
            val key2 = Any()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/TransformErrorHandler.java

     * }
     *
     * public void transformFailed(String className, Throwable th) {
     *     handler.classLoadingError(className, th);
     * }
     * </code>
     * </pre>
     * <p>
     * This class is thread-safe, though it only tracks pending exceptions per-thread.
     */
    public class TransformErrorHandler {
        @SuppressWarnings("ThreadLocalUsage")
        private final ThreadLocal<ClassNotFoundException> lastError = new ThreadLocal<ClassNotFoundException>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/api/v1/compile_tf_graph.cc

    auto* phase2_bridge_compilation_status =
        tensorflow::monitoring::Counter<1>::New(
            "/tensorflow/core/tf2xla/api/v1/"
            "phase2_compilation_status", /*metric_name*/
            "Tracks the compilation status of the non-mlir bridge",
            /* metric description */ "status" /* metric label */);
    
    auto* phase2_bridge_compilation_time = tsl::monitoring::Sampler<1>::New(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 14K bytes
    - Viewed (0)
  6. pilot/pkg/model/endpointshards.go

    	IncrementalPush
    	// FullPush triggers full push - typically used for new services.
    	FullPush
    )
    
    // UpdateServiceEndpoints updates EndpointShards data by clusterID, hostname, IstioEndpoints.
    // It also tracks the changes to ServiceAccounts. It returns whether endpoints need to be pushed and
    // it also returns if they need to be pushed whether a full push is needed or incremental push is sufficient.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.31.md

    - The iptables mode of kube-proxy now tracks accepted packets that are destined for node-ports on localhost by introducing `kubeproxy_iptables_localhost_nodeports_accepted_packets_total` metric.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.29.md

    - Registered metric `apiserver_request_body_size_bytes` to track the size distribution of requests by `resource` and `verb`. ([#120474](https://github.com/kubernetes/kubernetes/pull/120474),...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  9. pkg/controller/job/job_controller.go

    	jobStoreSynced cache.InformerSynced
    
    	// A TTLCache of pod creates/deletes each rc expects to see
    	expectations controller.ControllerExpectationsInterface
    
    	// finalizerExpectations tracks the Pod UIDs for which the controller
    	// expects to observe the tracking finalizer removed.
    	finalizerExpectations *uidTrackingExpectations
    
    	// A store of jobs
    	jobLister batchv1listers.JobLister
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_pods.go

    	if err != nil {
    		// We want all cleanup tasks to be run even if one of them failed. So
    		// we just log an error here and continue other cleanup tasks.
    		// This also applies to the other clean up tasks.
    		klog.ErrorS(err, "Failed cleaning up orphaned pod directories")
    	}
    
    	// Remove any orphaned mirror pods (mirror pods are tracked by name via the
    	// pod worker)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
Back to top