Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for testProjects (0.2 sec)

  1. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/android/RealLifeAndroidBuildPerformanceTest.groovy

            @Scenario(type = PER_COMMIT, operatingSystems = LINUX, testProjects = "largeAndroidBuild", iterationMatcher = "run help"),
            @Scenario(type = PER_COMMIT, operatingSystems = LINUX, testProjects = ["largeAndroidBuild", "santaTrackerAndroidBuild", "nowInAndroidBuild"], iterationMatcher = "run assembleDebug"),
            @Scenario(type = PER_COMMIT, operatingSystems = LINUX, testProjects = "largeAndroidBuild", iterationMatcher = ".*phthalic.*"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:24:57 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/CrossVersionPerformanceTestRunner.groovy

            }
            if (testProject == null) {
                throw new IllegalStateException("Test project has not been specified")
            }
            if (workingDir == null) {
                throw new IllegalStateException("Working directory has not been specified")
            }
    
            Assume.assumeTrue(TestScenarioSelector.shouldRun(testId))
            TestProjects.validateTestProject(testProject)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 14:54:56 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/model/PerformanceTestBucketProvider.kt

            performanceSubProject = "performance",
            testProjects = tests.keys.toList(),
            bucketIndex = bucketIndex,
            extraParameters = "-PincludePerformanceTestScenarios=true"
        ) {
            tests.forEach { (testProject, scenarios) ->
                prepareScenariosStep(testProject, scenarios, performanceTestCoverage.os)()
            }
        }
    }
    
    private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 19 11:22:56 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  4. .teamcity/performance-tests-ci.json

          "coverage" : {
            "per_day" : [ "linux" ]
          }
        }, {
          "testProject" : "bigCppMulti",
          "coverage" : {
            "per_day" : [ "linux" ]
          }
        }, {
          "testProject" : "bigNative",
          "coverage" : {
            "per_day" : [ "linux" ]
          }
        }, {
          "testProject" : "mediumCppApp",
          "coverage" : {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 11 07:05:12 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  5. .teamcity/performance-test-durations.json

        "linux" : 474
      }, {
        "testProject" : "mediumCppMultiWithMacroIncludes",
        "linux" : 473
      }, {
        "testProject" : "mediumNative",
        "linux" : 267
      }, {
        "testProject" : "multiNative",
        "linux" : 1518
      }, {
        "testProject" : "smallCppApp",
        "linux" : 353
      }, {
        "testProject" : "smallCppMulti",
        "linux" : 375
      }, {
        "testProject" : "smallNative",
        "linux" : 350
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:30:45 UTC 2024
    - 27.9K bytes
    - Viewed (1)
  6. platforms/software/plugins-distribution/src/integTest/groovy/org/gradle/api/plugins/DistributionPluginIntegrationTest.groovy

            then:
            succeeds("publishMavenPublicationToMavenRepository")
            file("repo/org/acme/TestProject/1.0/TestProject-1.0.zip").assertIsFile()
    
            and:
            def pom = new MavenPom(file("repo/org/acme/TestProject/1.0/TestProject-1.0.pom"))
            pom.groupId == "org.acme"
            pom.artifactId == "TestProject"
            pom.version == "1.0"
            pom.packaging == "zip"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 20 21:03:51 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/adapter/ProtocolToModelAdapterTest.groovy

        Map<TestProject, TestProject> getChildMap()
    
        TestEnum getTestEnum()
    }
    
    interface TestProject {
        String getName()
    }
    
    interface TestExtendedProject extends TestProject {
    }
    
    interface TestProjectTree extends TestProject {
        TestProjectTree getParent()
        TestProjectTree getChild()
    }
    
    interface TestProtocolModel {
        String getName()
    
        TestProtocolProject getProject()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 21.9K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. build-logic/performance-testing/src/main/kotlin/gradlebuild/performance/PerformanceTestPlugin.kt

        inline fun <reified T : Task> registerTestProject(testProject: String, noinline configuration: T.() -> Unit): TaskProvider<T> =
            registerTestProject(testProject, T::class.java, configuration)
    
        fun <T : Task> registerTestProject(testProject: String, type: Class<T>, configurationAction: Action<in T>): TaskProvider<T> {
            return doRegisterTestProject(testProject, type, configurationAction)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 24.4K bytes
    - Viewed (0)
Back to top