Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 434 for testproject (0.21 sec)

  1. .teamcity/src/main/kotlin/model/PerformanceTestBucketProvider.kt

                (scenarioDurations["durations"] as JSONArray).flatMap {
                    val duration = it as JSONObject
                    val testProject = duration["testProject"] as String
                    duration.entries
                        .filter { (key, _) -> key != "testProject" }
                        .map { (osString, timeInMs) ->
                            val os = Os.valueOf(osString.uppercase(Locale.US))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 19 11:22:56 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  2. testing/performance/src/performanceTest/groovy/org/gradle/performance/experiment/maven/JavaTestGradleVsMavenPerformanceTest.groovy

            given:
            runner.testGroup = "Gradle vs Maven test build using Java plugin"
            def testProject = JavaTestProject.projectFor(runner.testProject)
            def fileToChange = testProject.config.fileToChangeByScenario["assemble"]
            configureMavenOptions(testProject)
            runner.gradleTasks = gradleTask.split(' ')
            runner.equivalentMavenTasks = mavenTask.split(' ')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/TestProjectDuration.groovy

     */
    @CompileStatic
    @JsonInclude(JsonInclude.Include.NON_NULL)
    class TestProjectDuration {
        String testProject
        Long linux
        Long windows
        Long macOs
    
        TestProjectDuration(String testProject, Long linux, Long windows, Long macOs) {
            this.testProject = testProject
            this.linux = linux
            this.windows = windows
            this.macOs = macOs
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/AndroidTestProject.groovy

        static AndroidTestProject projectFor(String testProject) {
            def foundProject = findProjectFor(testProject)
            if (!foundProject) {
                throw new IllegalArgumentException("Android project ${testProject} not found")
            }
            return foundProject
        }
    
        @Nullable
        static AndroidTestProject findProjectFor(String testProject) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/PerformanceTestScenarioDefinition.groovy

            @JsonInclude(JsonInclude.Include.NON_NULL)
            @EqualsAndHashCode
            static class GroupsBean {
                /**
                 * testProject : largeJavaMultiProject
                 * coverage : {"test":["linux","windows"]}
                 */
                String testProject
    
                String comment
    
                TreeMap<String, List<String>> coverage
            }
        }
    
        void writeTo(File file) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/PerformanceTestResult.java

        }
    
        public void setTestId(String testId) {
            this.testId = testId;
        }
    
        public String getTestProject() {
            return testProject;
        }
    
        public void setTestProject(String testProject) {
            this.testProject = testProject;
        }
    
        public String getTeamCityBuildId() {
            return teamCityBuildId;
        }
    
        public void setTeamCityBuildId(String teamCityBuildId) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  7. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/inception/BuildSrcApiChangePerformanceTest.groovy

            when:
            def result = runner.run()
            then:
            result.assertCurrentVersionHasNotRegressed()
        }
    
        private static int determineNumberOfRuns(String testProject) {
            switch (testProject) {
                case 'mediumMonolithicJavaProject':
                    return 40
                case 'largeJavaMultiProject':
                    return 20
                case 'largeJavaMultiProjectKotlinDsl':
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  8. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/android/AndroidIncrementalExecutionPerformanceTest.groovy

    )
    @LeaksFileHandles("The TAPI keeps handles to the distribution it starts open in the test JVM")
    class AndroidIncrementalExecutionPerformanceTest extends AbstractIncrementalExecutionPerformanceTest implements AndroidPerformanceTestFixture {
        IncrementalAndroidTestProject testProject
    
        def setup() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:24:57 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  9. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/CrossVersionResultsStore.java

            "SELECT TESTCLASS, TESTID, TESTPROJECT, AVG(\n" +
                "  CASE WHEN DIFFCONFIDENCE > 0.97 THEN 1.0\n" +
                "    ELSE 0.0\n" +
                "  END) AS FAILURE_RATE \n" +
                "  FROM testExecution\n" +
                " WHERE (CHANNEL = ? OR CHANNEL = ?) AND STARTTIME> ?\n" +
                "GROUP BY TESTCLASS, TESTID, TESTPROJECT ORDER by FAILURE_RATE;";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 20K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenBomResolveIntegrationTest.groovy

        MavenModule bom
        MavenModule moduleA
    
        def setup() {
            resolve.prepare()
            resolve.addDefaultVariantDerivationStrategy()
            settingsFile << "rootProject.name = 'testproject'"
            buildFile << """
                repositories { maven { url "${mavenHttpRepo.uri}" } }
                configurations { compile }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 11.1K bytes
    - Viewed (0)
Back to top