Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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)
  2. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/services/LoggingBackedStyledTextOutput.java

        private final LogLevel logLevel;
        private final Clock clock;
        private final StringBuilder buffer = new StringBuilder();
        private List<StyledTextOutputEvent.Span> spans = new ArrayList<StyledTextOutputEvent.Span>();
        private Style style = Style.Normal;
    
        public LoggingBackedStyledTextOutput(OutputEventListener listener, String category, LogLevel logLevel, Clock clock) {
            this.listener = listener;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. 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)
  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/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)
  7. 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)
  8. 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)
  9. pkg/kubelet/util/node_startup_latency_tracker.go

    	firstNodeReadyTime           time.Time
    
    	// For testability
    	clock clock.Clock
    }
    
    func NewNodeStartupLatencyTracker() NodeStartupLatencyTracker {
    	bootTime, err := GetBootTime()
    	if err != nil {
    		bootTime = time.Time{}
    	}
    	return &basicNodeStartupLatencyTracker{
    		bootTime:         bootTime,
    		kubeletStartTime: time.Now(),
    		clock:            clock.RealClock{},
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 05:54:25 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  10. 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)
Back to top