Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for asConfigurationId (0.12 sec)

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

        override val failsStage: Boolean = true,
    ) : PerformanceTestBuildSpec,
        PerformanceTestProjectSpec {
        override fun asConfigurationId(
            model: CIBuildModel,
            bucket: String,
        ) = "${asConfigurationId(model)}$bucket"
    
        override fun asConfigurationId(model: CIBuildModel) = "${model.projectId}_${oldUuid ?: "PerformanceTest$uuid"}"
    
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Wed Feb 12 09:12:03 UTC 2025
    - 3.8K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/projects/StageProject.kt

            val (topLevelCoverage, allCoverage) = stage.functionalTests.partition { it.testType == TestType.SOAK }
            val topLevelFunctionalTests =
                topLevelCoverage
                    .map { FunctionalTest(model, it.asConfigurationId(model), it.asName(), it.asName(), it, stage = stage) }
            topLevelFunctionalTests.forEach(this::buildType)
    
            val functionalTestProjects =
                allCoverage.map { testCoverage ->
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Tue Jul 29 03:24:58 UTC 2025
    - 11.9K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/projects/PerformanceTestProject.kt

    import model.Stage
    
    abstract class PerformanceTestProject(
        model: CIBuildModel,
        val spec: PerformanceTestProjectSpec,
        val performanceTests: List<PerformanceTest>,
    ) : Project({
            this.id(spec.asConfigurationId(model))
            this.name = spec.asName()
        }) {
        init {
            performanceTests.forEach(this::buildType)
        }
    }
    
    class AutomaticallySplitPerformanceTestProject(
        model: CIBuildModel,
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Wed Feb 12 09:12:03 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/configurations/PerformanceTestsPass.kt

    ) : OsAwareBaseGradleBuildType(
            os = performanceTestProject.spec.os,
            failStage = performanceTestProject.spec.failsStage,
            init = {
                id("${performanceTestProject.spec.asConfigurationId(model)}_Trigger")
                val performanceTestSpec = performanceTestProject.spec
                name = performanceTestProject.name + " (Trigger)"
    
                val os = Os.LINUX
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Wed Feb 12 09:12:03 UTC 2025
    - 5.8K bytes
    - Viewed (0)
  5. .teamcity/src/main/kotlin/configurations/PerformanceTest.kt

        performanceTestTaskSuffix: String = "PerformanceTest",
        preBuildSteps: BuildSteps.() -> Unit = {},
    ) : BaseGradleBuildType(
            stage = stage,
            init = {
                this.id(performanceTestBuildSpec.asConfigurationId(model, "bucket${bucketIndex + 1}"))
                this.name = description
                val type = performanceTestBuildSpec.type
                val os = performanceTestBuildSpec.os
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Wed Feb 12 09:12:03 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  6. .teamcity/src/main/kotlin/model/CIBuildModel.kt

                        ),
                ),
            ),
        val subprojects: GradleSubprojectProvider,
    )
    
    fun TestCoverage.getBucketUuid(
        model: CIBuildModel,
        bucketIndex: Int,
    ) = asConfigurationId(model, "bucket${bucketIndex + 1}")
    
    interface BuildTypeBucket {
        fun createFunctionalTestsFor(
            model: CIBuildModel,
            stage: Stage,
            testCoverage: TestCoverage,
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Sun Aug 03 22:40:28 UTC 2025
    - 25.9K bytes
    - Viewed (0)
Back to top