Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 61 for totalTime (0.15 sec)

  1. testing/internal-performance-testing/src/test/groovy/org/gradle/performance/fixture/CrossVersionPerformanceTestExecutionTest.groovy

            result.baseline("1.0").results << operation(totalTime: 100)
            result.baseline("1.0").results << operation(totalTime: 100)
            result.baseline("1.0").results << operation(totalTime: 100)
            result.baseline("1.0").results << operation(totalTime: 100)
            result.baseline("1.0").results << operation(totalTime: 100)
            result.baseline("1.0").results << operation(totalTime: 100)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/BaselineVersion.groovy

        ) {
            def myTime = results.totalTime
            def otherTime = other.totalTime
            return myTime && myTime.median < otherTime.median && differenceSignificantCheck.test(myTime, otherTime)
        }
    
        boolean significantlySlowerThan(MeasuredOperationList other, double minConfidence = MINIMUM_CONFIDENCE) {
            def myTime = results.totalTime
            def otherTime = other.totalTime
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/PerformanceReportScenarioHistoryExecution.groovy

            return FormatSupport.getFormattedDifference(baseVersion.totalTime, currentVersion.totalTime)
        }
    
        double getDifferencePercentage() {
            return FormatSupport.getDifferencePercentage(baseVersion, currentVersion).doubleValue()
        }
    
        double getConfidencePercentage() {
            return 100.0 * DataSeries.confidenceInDifference(baseVersion.totalTime, currentVersion.totalTime)
        }
    
        String getFormattedDifferencePercentage() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/MeasuredOperationList.groovy

    public class MeasuredOperationList extends LinkedList<MeasuredOperation> {
        String name
    
        DataSeries<Duration> getTotalTime() {
            return new DataSeries<Duration>(this.collect { it.totalTime })
        }
    
        String getSpeedStats() {
            format(totalTime)
        }
    
        private String format(DataSeries<?> measurement) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/test/groovy/org/gradle/performance/ResultSpecification.groovy

            return results
        }
    
        MeasuredOperation operation(Map<String, Object> args = [:]) {
            def operation = new MeasuredOperation()
            operation.totalTime = args.totalTime instanceof Amount ? args.totalTime : Duration.millis(args?.totalTime ?: 120)
            operation.exception = args?.failure
            return operation
        }
    
        BuildDisplayInfo buildDisplayInfo(String displayName) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/TestDataGenerator.java

            private List<ExecutionLabel> executionLabels;
            private List<ExecutionData> totalTime;
            private List<ExecutionData> confidence;
            private List<ExecutionData> difference;
            private List<BackgroundColor> background;
    
            AllExecutionData(List<ExecutionLabel> executionLabels, List<ExecutionData> totalTime, List<ExecutionData> confidence, List<ExecutionData> difference) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  7. .teamcity/src/main/kotlin/model/FunctionalTestBucketGenerator.kt

    class SubprojectTestClassTime(
        val subProject: GradleSubproject,
        testClassTimes: List<TestClassTime> = emptyList()
    ) {
        val totalTime: Int = testClassTimes.sumOf { it.buildTimeMs }
    
        override fun toString(): String {
            return "SubprojectTestClassTime(subProject=${subProject.name}, totalTime=$totalTime)"
        }
    }
    
    class FunctionalTestBucketGenerator(private val model: CIBuildModel, testTimeDataJson: File) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 15 17:04:41 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  8. platforms/enterprise/enterprise-plugin-performance/src/testFixtures/groovy/org/gradle/performance/AbstractBuildScanPluginPerformanceTest.groovy

            baselineResults.results.name = name
            def rawResults = results.buildResult(name)
            def shift = rawResults.totalTime.median.value * maxPercentageShift / 100
            baselineResults.results.addAll(rawResults.collect {
                new MeasuredOperation([totalTime: Amount.valueOf(it.totalTime.value + shift, it.totalTime.units), exception: it.exception])
            })
            return baselineResults
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:24:56 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. src/cmd/trace/goroutines.go

    				NonOverlappingStats: nonOverlappingStats,
    				HasRangeTime:        totalRangeTime != 0,
    			})
    			name = summary.Name
    			execTime += summary.ExecTime
    			if maxTotalTime < summary.TotalTime {
    				maxTotalTime = summary.TotalTime
    			}
    		}
    
    		// Compute the percent of total execution time these goroutines represent.
    		execTimePercent := ""
    		if totalExecTime > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  10. testing/internal-performance-testing/src/test/groovy/org/gradle/performance/results/BaselineVersionTest.groovy

        private double calculateConfidence(BaselineVersion first, BaselineVersion second) {
            DataSeries.confidenceInDifference(first.results.getTotalTime(), second.results.totalTime)
        }
    
        MeasuredOperation millis(long millis) {
            new MeasuredOperation(totalTime: Duration.millis(millis))
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top