Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for testProject (0.26 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))
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Mon Feb 19 11:22:56 GMT 2024
    - 15.3K bytes
    - Viewed (0)
  2. .teamcity/performance-tests-ci.json

          "testProject" : "mediumCppAppWithMacroIncludes",
          "coverage" : {
            "per_day" : [ "linux" ]
          }
        }, {
          "testProject" : "mediumCppMulti",
          "coverage" : {
            "per_day" : [ "linux" ]
          }
        }, {
          "testProject" : "mediumCppMultiWithMacroIncludes",
          "coverage" : {
            "per_day" : [ "linux" ]
          }
        }, {
    Json
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Mon Apr 01 17:23:34 GMT 2024
    - 35.6K bytes
    - Viewed (0)
  3. .teamcity/performance-test-durations.json

        "linux" : 481
      }, {
        "testProject" : "mediumCppMultiWithMacroIncludes",
        "linux" : 499
      }, {
        "testProject" : "mediumNative",
        "linux" : 273
      }, {
        "testProject" : "multiNative",
        "linux" : 1440
      }, {
        "testProject" : "smallCppApp",
        "linux" : 367
      }, {
        "testProject" : "smallCppMulti",
        "linux" : 390
      }, {
        "testProject" : "smallNative",
        "linux" : 385
    Json
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Mon Feb 19 11:22:56 GMT 2024
    - 26.3K bytes
    - Viewed (1)
  4. .teamcity/src/main/kotlin/util/AdHocPerformanceScenario.kt

                allowEmpty = true,
                description = "The baselines you want to run performance tests against. Empty means default baseline."
            )
            text(
                "testProject",
                "",
                display = ParameterDisplay.PROMPT,
                allowEmpty = false,
                description = "The test project to use. E.g. largeJavaMultiProject"
            )
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Feb 13 13:53:39 GMT 2024
    - 4.9K bytes
    - Viewed (2)
  5. .teamcity/src/main/kotlin/projects/StageProject.kt

                performanceSubProject = "performance",
                bucketIndex = bucketIndex,
                extraParameters = "--profiler $profiler --tests \"${performanceScenario.scenario.className}.${performanceScenario.scenario.scenario}\"",
                testProjects = listOf(performanceScenario.testProject),
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Dec 05 00:08:14 GMT 2023
    - 9.2K bytes
    - Viewed (0)
  6. .teamcity/src/main/kotlin/configurations/TestPerformanceTest.kt

    import model.CIBuildModel
    import model.Stage
    
    class TestPerformanceTest(model: CIBuildModel, stage: Stage) : BaseGradleBuildType(stage, init = {
        val os = Os.LINUX
        val buildTypeThis = this
        val testProject = "smallJavaMultiProject"
    
        fun BuildSteps.gradleStep(tasks: List<String>) {
            gradleWrapper {
                name = "GRADLE_RUNNER"
                gradleParams = (
                    tasks +
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Dec 05 00:08:14 GMT 2023
    - 3.1K bytes
    - Viewed (0)
  7. maven-core/src/test/java/org/apache/maven/MavenLifecycleParticipantTest.java

            assertEquals(Arrays.asList("parent", "module-b", "module-a"), reactorOrder);
        }
    
        private <T> List<String> getReactorOrder(String testProject, Class<T> participant) throws Exception {
            PlexusContainer container = getContainer();
    
            ComponentDescriptor<T> cd = new ComponentDescriptor<>(participant, container.getContainerRealm());
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Apr 15 17:24:20 GMT 2023
    - 6K bytes
    - Viewed (0)
  8. .teamcity/src/main/kotlin/configurations/PerformanceTest.kt

            applyDefaultDependencies(model, this, !performanceTestBuildSpec.withoutDependencies)
        }
    )
    
    fun getPerformanceTestTaskNames(performanceSubProject: String, testProjects: List<String>, performanceTestTaskSuffix: String): List<String> {
        return testProjects.map {
            ":$performanceSubProject:$it$performanceTestTaskSuffix"
        }
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Wed Apr 24 08:17:56 GMT 2024
    - 5.3K bytes
    - Viewed (0)
  9. .teamcity/src/main/kotlin/configurations/PerformanceTestsPass.kt

    """
            if (performanceTestProject.performanceTests.any { it.testProjects.isNotEmpty() }) {
                val dependencyBuildIds = performanceTestProject.performanceTests
                    .filter { it.testProjects.isNotEmpty() }
                    .joinToString(",") { "%dep.${it.id}.env.BUILD_ID%" }
    
                val dependencyBaselines = performanceTestProject.performanceTests.first { it.testProjects.isNotEmpty() }.let { "%dep.${it.id}.performance.baselines%" }
    
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Thu Apr 04 07:21:42 GMT 2024
    - 5.1K bytes
    - Viewed (0)
Back to top