Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getGcRate (0.17 sec)

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

            ) {
                if (strategy.isAboveGcThrashingThreshold(heapStats.getGcRate())) {
                    reasons.add("since the JVM garbage collector is thrashing");
                    expirationStatus = highestPriorityOf(IMMEDIATE_EXPIRE, expirationStatus);
                } else if (strategy.isAboveGcRateThreshold(heapStats.getGcRate())) {
                    reasons.add("after running out of JVM heap space");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/health/gc/GarbageCollectionStats.java

            GarbageCollectionEvent first = events.iterator().next();
            return first.getUsage().getMax();
        }
    
        public double getGcRate() {
            return gcRate;
        }
    
        public int getUsedPercent() {
            return usedPercent;
        }
    
        public long getMaxSizeInBytes() {
            return maxSizeInBytes;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 4K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/health/DaemonHealthStats.java

            GarbageCollectionStats heapStats = gcMonitor.getHeapStats();
            if (heapStats.isValid()) {
                message.append(format(Locale.ENGLISH, ", GC rate: %.2f/s", heapStats.getGcRate()));
                message.append(format(", heap usage: %s%% of %s", heapStats.getUsedPercent(), NumberUtil.formatBytes(heapStats.getMaxSizeInBytes())));
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:23:18 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top