Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for PER_DAY (0.48 sec)

  1. .teamcity/performance-tests-ci.json

            "per_day" : [ "linux" ]
          }
        }, {
          "testProject" : "bigCppMulti",
          "coverage" : {
            "per_day" : [ "linux" ]
          }
        }, {
          "testProject" : "bigNative",
          "coverage" : {
            "per_day" : [ "linux" ]
          }
        }, {
          "testProject" : "mediumCppApp",
          "coverage" : {
            "per_day" : [ "linux" ]
          }
        }, {
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Thu Jul 10 02:18:03 UTC 2025
    - 33.4K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/model/CIBuildModel.kt

                failsStage = false,
            ),
        )
    
    private val slowPerformanceTestCoverages =
        listOf(
            PerformanceTestCoverage(
                2,
                PerformanceTestType.PER_DAY,
                Os.LINUX,
                numberOfBuckets = 30,
                oldUuid = "PerformanceTestSlowLinux",
            ),
        )
    
    data class CIBuildModel(
        val branch: VersionedSettingsBranch,
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Sun Aug 03 22:40:28 UTC 2025
    - 25.9K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/model/PerformanceTestBucketProvider.kt

    ): List<PerformanceScenario> {
        val performanceTestTypes =
            if (performanceTestSpec.performanceTestType == PerformanceTestType.FLAKINESS_DETECTION) {
                listOf(PerformanceTestType.PER_COMMIT, PerformanceTestType.PER_DAY)
            } else {
                listOf(performanceTestSpec.performanceTestType)
            }
        return performanceTestConfigurations.flatMap { configuration ->
            configuration.groups
                .filter { group ->
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Thu Jul 10 02:18:03 UTC 2025
    - 16.6K bytes
    - Viewed (0)
Back to top