Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for collectionize (0.12 sec)

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

         */
        private int getCurrentPerformance() {
            long collectionTime = gcInfo.getCollectionTime();
            long allBuildsTime = runningStats.getAllBuildsTime();
    
            if (collectionTime > 0 && collectionTime < allBuildsTime) {
                return 100 - NumberUtil.percentOf(collectionTime, allBuildsTime);
            } else {
                return 100;
            }
        }
    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