Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for startCountdownTimer (0.34 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DaemonStateCoordinator.java

         * @return null if the current build could be cancelled cleanly, otherwise the result of stopping the daemon
         */
        @Nullable
        private DaemonStopState cancelNow() {
            CountdownTimer timer = Time.startCountdownTimer(cancelTimeoutMs);
    
            LOGGER.debug("Cancel requested: will wait for daemon to become idle.");
            try {
                cancellationToken.cancel();
            } catch (Exception ex) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/adapter/ProtocolToModelAdapter.java

            // For stats we don't really care about thread safety
            private int cacheMiss;
            private int cacheHit;
            private int evict;
    
            private CountdownTimer cleanupTimer = Time.startCountdownTimer(MINIMAL_CLEANUP_INTERVAL);
    
            private static class MethodInvocationKey {
                private final SoftReference<Class<?>> lookupClass;
                private final String methodName;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 04:42:54 UTC 2024
    - 45.4K bytes
    - Viewed (0)
Back to top