Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for executionData (0.19 sec)

  1. 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) {
                this.executionLabels = executionLabels;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/AbstractTablePageGenerator.java

                    if(scenario.isCrossBuild()) {
                        return "text-dark";
                    }
    
                    if (executionData.confidentToSayBetter()) {
                        return "text-success";
                    } else if (executionData.confidentToSayWorse()) {
                        return "text-danger";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  3. testing/smoke-test/src/smokeTest/resources/org/gradle/smoketests/android-kotlin-example/app/build.gradle

                        "src/$buildTypeName/kotlin"
                    ]
                    additionalSourceDirs.from(files(coverageSourceDirs))
                    sourceDirectories.from(files(coverageSourceDirs))
                    executionData.from(files("${project.buildDir}/jacoco/${testTaskName}.exec"))
                    reports {
                        xml.required = true
                        html.required = true
                    }
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. testing/smoke-test/src/smokeTest/resources/org/gradle/smoketests/android-kotlin-example-kotlin-dsl/app/build.gradle.kts

                        "src/$buildTypeName/kotlin"
                    )
                    additionalSourceDirs.from(files(coverageSourceDirs))
                    sourceDirectories.from(files(coverageSourceDirs))
                    executionData.from(files("${project.buildDir}/jacoco/${testTaskName}.exec"))
                    reports {
                        xml.required = true
                        html.required = true
                    }
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top