Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,474 for tracks (0.14 sec)

  1. pkg/controller/tainteviction/metrics/metrics.go

    			Name:           "pod_deletions_total",
    			Help:           "Total number of Pods deleted by TaintEvictionController since its start.",
    			StabilityLevel: metrics.ALPHA,
    		},
    	)
    
    	// PodDeletionsLatency tracks the latency, in seconds, between the time when a taint effect has been activated
    	// for the Pod and its deletion.
    	PodDeletionsLatency = metrics.NewHistogram(
    		&metrics.HistogramOpts{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:23:56 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/test/issue50182_test.go

    	f := func() {
    		genericSorted(data)
    	}
    	if n := testing.AllocsPerRun(10, f); n > 0 {
    		t.Errorf("got %f allocs, want 0", n)
    	}
    }
    
    // Test that escape analysis correctly tracks escaping inside of methods
    // called on generic types.
    type fooer interface {
    	foo()
    }
    type P struct {
    	p *int
    	q int
    }
    
    var esc []*int
    
    func (p P) foo() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 13 23:35:37 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  3. pkg/controller/endpointslicemirroring/metrics/cache.go

    func NewCache(endpointsPerSlice int32) *Cache {
    	return &Cache{
    		maxEndpointsPerSlice: endpointsPerSlice,
    		cache:                map[types.NamespacedName]*EndpointPortCache{},
    	}
    }
    
    // Cache tracks values for total numbers of desired endpoints as well as the
    // efficiency of EndpointSlice endpoints distribution.
    type Cache struct {
    	// maxEndpointsPerSlice references the maximum number of endpoints that
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 18:08:12 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/projectmodule/DefaultLocalComponentRegistry.java

    import javax.annotation.Nullable;
    import javax.inject.Inject;
    
    /**
     * A simple dependency-management scoped wrapper around {@link BuildTreeLocalComponentProvider} that
     * tracks which domain object context makes a given project component request. The primary
     * purpose of this class is to track dependencies between projects as they are resolved. By knowing which
     * project is making the request, we can determine which projects depend on which other projects.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 17:59:41 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. pkg/quota/v1/evaluator/core/pods.go

    	if err != nil {
    		return corev1.ResourceList{}, err
    	}
    
    	// always quota the object count (even if the pod is end of life)
    	// object count quotas track all objects that are in storage.
    	// where "pods" tracks all pods that have not reached a terminal state,
    	// count/pods tracks all pods independent of state.
    	result := corev1.ResourceList{
    		podObjectCountName: *(resource.NewQuantity(1, resource.DecimalSI)),
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 05 00:02:47 UTC 2023
    - 17.4K bytes
    - Viewed (0)
  6. 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)
  7. pkg/controller/ttlafterfinished/metrics/metrics.go

    )
    
    // TTLAfterFinishedSubsystem - subsystem name used for this controller.
    const TTLAfterFinishedSubsystem = "ttl_after_finished_controller"
    
    var (
    	// JobDeletionDurationSeconds tracks the time it took to delete the job since it
    	// became eligible for deletion.
    	JobDeletionDurationSeconds = metrics.NewHistogram(
    		&metrics.HistogramOpts{
    			Subsystem:      TTLAfterFinishedSubsystem,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 12 18:02:17 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/classpath/InstrumentedClosuresTracker.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.classpath;
    
    import org.gradle.api.NonNullApi;
    
    /**
     * Tracks the closures that are currently present in the call stack.
     * An instrumented closure must invoke {@link InstrumentedClosuresTracker#enterClosure} when it starts executing and {@link InstrumentedClosuresTracker#leaveClosure}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Aug 11 12:31:52 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/configuration/internal/DefaultDynamicCallContextTrackerTest.groovy

            tracker.enterDynamicCall(entryPoint1)
            tracker.enterDynamicCall(entryPoint2)
            tracker.leaveDynamicCall(entryPoint2)
            tracker.leaveDynamicCall(entryPoint1)
    
            then:
            log == ["enter", entryPoint1, "enter", entryPoint2, "leave", entryPoint2, "leave", entryPoint1]
        }
    
        def "throws exception on mismatched calls"() {
            when:
            tracker.enterDynamicCall(new Object())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 14 11:11:17 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ArtifactCollection.java

        Set<ResolvedArtifactResult> getArtifacts();
    
        /**
         * Returns the resolved artifacts as a {@link Provider} of {@link ResolvedArtifactResult} instances.
         * The returned {@link Provider} is live, and tracks the producer tasks of this artifact collection.
         * The provider will resolve the artifact metadata and download the artifact files as required.
         *
         * @since 7.4
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 17 13:05:50 UTC 2022
    - 2.2K bytes
    - Viewed (0)
Back to top