Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for per_day (0.2 sec)

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

          "coverage" : {
            "per_day" : [ "linux" ]
          }
        }, {
          "testProject" : "bigCppMulti",
          "coverage" : {
            "per_day" : [ "linux" ]
          }
        }, {
          "testProject" : "bigNative",
          "coverage" : {
            "per_day" : [ "linux" ]
          }
        }, {
          "testProject" : "mediumCppApp",
          "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)
  2. .teamcity/src/main/kotlin/model/CIBuildModel.kt

        PerformanceTestCoverage(7, PerformanceTestType.per_commit, Os.MACOS, numberOfBuckets = 5, failsStage = false)
    )
    
    private val slowPerformanceTestCoverages = listOf(
        PerformanceTestCoverage(2, PerformanceTestType.per_day, Os.LINUX, numberOfBuckets = 30, oldUuid = "PerformanceTestSlowLinux")
    )
    
    data class CIBuildModel(
        val branch: VersionedSettingsBranch,
        val projectId: String,
        val publishStatusToGitHub: Boolean = true,
    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)
  3. .teamcity/src/main/kotlin/model/PerformanceTestBucketProvider.kt

        val performanceTestTypes = if (performanceTestSpec.performanceTestType in setOf(PerformanceTestType.historical, PerformanceTestType.flakinessDetection)) {
            listOf(PerformanceTestType.per_commit, PerformanceTestType.per_day)
        } else {
            listOf(performanceTestSpec.performanceTestType)
        }
        return performanceTestConfigurations.flatMap { configuration ->
            configuration.groups
                .filter { group ->
    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)
Back to top