Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for asConfigurationId (0.21 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"}"
    
        override
        fun asName(): String =
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Mon Dec 13 07:00:20 GMT 2021
    - 3.7K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/projects/PerformanceTestProject.kt

    import model.PerformanceTestProjectSpec
    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)
        }
    }
    
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Dec 05 00:08:14 GMT 2023
    - 1.1K bytes
    - Viewed (0)
  3. .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)
    
    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)
  4. .teamcity/src/test/kotlin/CIConfigIntegrationTests.kt

            val shortenedId = testCoverage.asConfigurationId(model, "veryLongSubprojectNameLongerThanEverythingWeHave")
            assertTrue(shortenedId.length < 80)
            assertEquals("Check_QckFdbckCrssVrsn_1_vryLngSbprjctNmLngrThnEvrythngWHv", shortenedId)
    
            assertEquals("Check_QuickFeedbackCrossVersion_1_iIntegT", testCoverage.asConfigurationId(model, "internalIntegTesting"))
    
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Jan 02 10:00:06 GMT 2024
    - 13.3K bytes
    - Viewed (0)
  5. .teamcity/src/main/kotlin/configurations/PerformanceTestsPass.kt

    class PerformanceTestsPass(model: CIBuildModel, performanceTestProject: PerformanceTestProject) : BaseGradleBuildType(
        failStage = performanceTestProject.spec.failsStage,
        init = {
            id("${performanceTestProject.spec.asConfigurationId(model)}_Trigger")
            val performanceTestSpec = performanceTestProject.spec
            name = performanceTestProject.name + " (Trigger)"
    
            val os = Os.LINUX
            val type = performanceTestSpec.type
    
    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)
  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, bucketIndex: Int): FunctionalTest
    
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Feb 23 01:54:48 GMT 2024
    - 20.9K bytes
    - Viewed (0)
  7. .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${if (performanceTestBuildSpec.withoutDependencies) " (without dependencies)" else ""}"
            val type = performanceTestBuildSpec.type
    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)
Back to top