Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getGcMonitor (0.11 sec)

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

            this.runningStats = runningStats;
            this.scheduler = null;
            this.gcInfo = gcInfo;
            this.gcMonitor = gcMonitor;
        }
    
        @VisibleForTesting
        public GarbageCollectionMonitor getGcMonitor() {
            return gcMonitor;
        }
    
        @Override
        public void stop() {
            if (scheduler != null) {
                scheduler.stop();
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:23:18 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/server/health/gc/GarbageCollectionMonitoringIntegrationTest.groovy

            return """
                        DaemonHealthStats stats = services.get(DaemonHealthStats.class)
                        GarbageCollectionMonitor monitor = stats.getGcMonitor()
                        long startTime = Time.clock().getCurrentTime()
                        ${injectEvents("monitor.get${type.capitalize()}Events()", events, initial, max)}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 14.2K bytes
    - Viewed (0)
Back to top