Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 492 for CLOCK (0.03 sec)

  1. pkg/quota/v1/evaluator/core/pods.go

    // NewPodEvaluator returns an evaluator that can evaluate pods
    func NewPodEvaluator(f quota.ListerForResourceFunc, clock clock.Clock) quota.Evaluator {
    	listFuncByNamespace := generic.ListResourceUsingListerFunc(f, corev1.SchemeGroupVersion.WithResource("pods"))
    	podEvaluator := &podEvaluator{listFuncByNamespace: listFuncByNamespace, clock: clock}
    	return podEvaluator
    }
    
    // podEvaluator knows how to measure usage of pods.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 05 00:02:47 UTC 2023
    - 17.4K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/buildevents/BuildLoggerFactory.java

            this.styledTextOutputFactory = styledTextOutputFactory;
            this.workValidationWarningReporter = workValidationWarningReporter;
            this.clock = clock;
            this.gradleEnterprisePluginManager = gradleEnterprisePluginManager;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DaemonClientServicesSupport.java

            return new TcpOutgoingConnector();
        }
    
        @Provides
        Clock createClock() {
            return Time.clock();
        }
    
        @Provides
        BuildOperationIdFactory createBuildOperationIdFactory() {
            return new DefaultBuildOperationIdFactory();
        }
    
        @Provides
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:42 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/ThrottlingOutputEventListener.java

        }
    
        ThrottlingOutputEventListener(OutputEventListener listener, int throttleMs, ScheduledExecutorService executor, Clock clock) {
            this.throttleMs = throttleMs;
            this.listener = listener;
            this.executor = executor;
            this.clock = clock;
            scheduleUpdateNow();
        }
    
        private void scheduleUpdateNow() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/healthz.go

    func delayedHealthCheck(check healthz.HealthChecker, clock clock.Clock, delay time.Duration) healthz.HealthChecker {
    	return delayedLivezCheck{
    		check,
    		clock.Now().Add(delay),
    		clock,
    	}
    }
    
    type delayedLivezCheck struct {
    	check      healthz.HealthChecker
    	startCheck time.Time
    	clock      clock.Clock
    }
    
    func (c delayedLivezCheck) Name() string {
    	return c.check.Name()
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 6K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/SynchronizedLogging.java

    import org.gradle.internal.time.Clock;
    
    /**
     * Provides logging services per thread.
     */
    public class SynchronizedLogging implements LoggingProvider {
        private final ThreadLocal<ThreadLoggingServices> services = new ThreadLocal<ThreadLoggingServices>();
        private final Clock clock;
        private final BuildOperationIdFactory buildOperationIdFactory;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/health/gc/GarbageCollectionCheck.java

        private final Clock clock;
        private final GarbageCollectorMXBean garbageCollectorMXBean;
    
        private final String heapMemoryPool;
        private final SlidingWindow<GarbageCollectionEvent> heapEvents;
    
        private final String nonHeapMemoryPool;
        private final SlidingWindow<GarbageCollectionEvent> nonHeapEvents;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  8. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/impl/DefaultGradleEnterprisePluginBuildState.java

        public DefaultGradleEnterprisePluginBuildState(
            Clock clock,
            BuildStartedTime buildStartedTime,
            BuildInvocationScopeId buildInvocationId,
            WorkspaceScopeId workspaceId,
            UserScopeId userId,
            StartParameter startParameter,
            ServiceRegistry serviceRegistry
        ) {
            this.clock = clock;
            this.buildStartedTime = buildStartedTime;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 16 10:59:09 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/DistributionFactory.java

    import java.util.concurrent.CancellationException;
    
    import static org.gradle.internal.FileUtils.hasExtension;
    
    public class DistributionFactory {
        private final Clock clock;
    
        public DistributionFactory(Clock clock) {
            this.clock = clock;
        }
    
        /**
         * Returns the default distribution to use for the specified project.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  10. pilot/pkg/status/distribution/state.go

    	mu              sync.RWMutex
    	CurrentState    map[status.Resource]map[string]Progress
    	ObservationTime map[string]time.Time
    	UpdateInterval  time.Duration
    	dynamicClient   dynamic.Interface
    	clock           clock.Clock
    	workers         *status.Controller
    	StaleInterval   time.Duration
    	cmInformer      cache.SharedIndexInformer
    	cmHandle        cache.ResourceEventHandlerRegistration
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 7.7K bytes
    - Viewed (0)
Back to top