Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. platforms/core-runtime/build-profile/src/test/groovy/org/gradle/profile/BuildProfileTest.groovy

            when:
            profile = new BuildProfile(startParameter, buildStartedTime)
            profile.setBuildFinished(buildFinishedAt)
    
            then:
            profile.getElapsedStartup() == 0
            profile.getElapsedSettings() == 0
            profile.getElapsedProjectsLoading() == 0
            profile.getElapsedTotal() == 1000
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 13:15:48 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. platforms/core-runtime/build-profile/src/main/java/org/gradle/profile/BuildProfile.java

            this.buildFinished = buildFinished;
        }
    
        /**
         * Get the elapsed time (in mSec) between the start of profiling and the buildStarted event.
         */
        public long getElapsedStartup() {
            return valueOrBuildStartedTimeIfNotInitialized(buildStarted) - valueOrBuildStartedTimeIfNotInitialized(profilingStarted);
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:39 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  3. platforms/core-runtime/build-profile/src/main/java/org/gradle/profile/ProfileReportRenderer.java

                                        htmlWriter.startElement("td").attribute("class", "numeric").characters(TimeFormatting.formatDurationVeryTerse(model.getElapsedStartup())).endElement();
                                    htmlWriter.endElement();
                                    htmlWriter.startElement("tr");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 12:58:53 UTC 2023
    - 14.9K bytes
    - Viewed (0)
Back to top