Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for adhoc (0.01 sec)

  1. .teamcity/src/main/kotlin/util/AdHocPerformanceScenario.kt

    abstract class AdHocPerformanceScenario(
        os: Os,
        arch: Arch = Arch.AMD64,
    ) : BuildType({
            val id = "Util_Performance_AdHocPerformanceScenario${os.asName()}${arch.asName()}"
            name = "AdHoc Performance Scenario - ${os.asName()} ${arch.asName()}"
            id(id)
    
            applyPerformanceTestSettings(os = os, arch = arch, timeout = 420)
            artifactRules = INDIVIDUAL_PERFORAMCE_TEST_ARTIFACT_RULES
    
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Wed Feb 12 09:12:03 UTC 2025
    - 5.5K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/configurations/TestPerformanceTest.kt

                )
            }
    
            id("${model.projectId}_TestPerformanceTest")
            name = "Test performance test tasks - Java8 Linux"
            description = "Tries to run an adhoc performance test without a database connection to verify this is still working"
    
            applyPerformanceTestSettings()
            artifactRules = INDIVIDUAL_PERFORAMCE_TEST_ARTIFACT_RULES
    
            steps {
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Mon Aug 25 20:21:47 UTC 2025
    - 3.3K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/model/CIBuildModel.kt

            channel = "flakiness-detection",
            extraParameters = "--checks none --rerun --cross-version-only",
        ),
        AD_HOC(
            displayName = "AdHoc Performance Test",
            timeout = 30,
            channel = "adhoc",
            extraParameters = "--checks none",
        ),
    }
    
    enum class Trigger {
        NEVER,
        EACH_COMMIT,
        DAILY,
        WEEKLY,
    }
    
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Sun Aug 03 22:40:28 UTC 2025
    - 25.9K bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/model/PerformanceTestSpec.kt

        override fun asName(): String = "Flamegraphs for $name"
    
        override fun channel(): String = "adhoc-%teamcity.build.branch%"
    
        override val type: PerformanceTestType
            get() = PerformanceTestType.AD_HOC
    
        override val failsStage: Boolean
            get() = false
    
        val buildSpecs: List<FlameGraphGenerationBuildSpec>
            get() =
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Wed Feb 12 09:12:03 UTC 2025
    - 3.8K bytes
    - Viewed (0)
  5. .github/CODEOWNERS

    platforms/documentation/docs/src/docs/userguide/reference/core-plugins/distribution_plugin.adoc         @gradle/bt-docs-reviewers @gradle/bt-jvm
    platforms/documentation/docs/src/docs/userguide/reference/core-plugins/ear_plugin.adoc                  @gradle/bt-docs-reviewers @gradle/bt-jvm
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Mon Jul 28 01:45:03 UTC 2025
    - 10.9K bytes
    - Viewed (0)
Back to top