Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for fsid (0.33 sec)

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

        }
    
        private fun determineSubProjectClassTimes(testCoverage: TestCoverage, buildProjectClassTimes: BuildProjectToSubprojectTestClassTimes): Map<String, List<TestClassTime>>? {
            val testCoverageId = testCoverage.asId(MASTER_CHECK_CONFIGURATION)
            return buildProjectClassTimes[testCoverageId] ?: if (testCoverage.testType == TestType.soak) {
                null
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 15 17:04:41 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/configurations/FunctionalTestsPass.kt

    import model.TestCoverage
    import projects.FunctionalTestProject
    
    class FunctionalTestsPass(model: CIBuildModel, functionalTestProject: FunctionalTestProject) : BaseGradleBuildType(init = {
        id("${functionalTestProject.testCoverage.asId(model)}_Trigger")
        name = functionalTestProject.name + " (Trigger)"
        type = Type.COMPOSITE
    
        applyDefaultSettings()
    
        features {
            publishBuildStatusToGithub(model)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 06 17:20:10 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/model/CIBuildModel.kt

        ) : this(uuid, testType, os, testJvm.version, testJvm.vendor, buildJvm, expectedBucketNumber, withoutDependencies, arch)
    
        fun asId(projectId: String): String {
            return "${projectId}_$testCoveragePrefix"
        }
    
        fun asId(model: CIBuildModel): String {
            return asId(model.projectId)
        }
    
        private
        val testCoveragePrefix
            get() = "${testType.name.toCapitalized()}_$uuid"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/projects/FunctionalTestProject.kt

    class FunctionalTestProject(
        val model: CIBuildModel,
        functionalTestBucketProvider: FunctionalTestBucketProvider,
        val testCoverage: TestCoverage,
        val stage: Stage
    ) : Project({
        this.id(testCoverage.asId(model))
        this.name = testCoverage.asName()
    }) {
        val functionalTests: List<BaseGradleBuildType> = functionalTestBucketProvider.createFunctionalTestsFor(stage, testCoverage)
        init {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 05 00:08:14 UTC 2023
    - 805 bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/PropertyIntegrationTest.groovy

            when:
            fails('myTask')
            then:
            failureDescriptionContains("Type 'MyTask' property 'strings' doesn't have a configured value.")
    
            verifyAll(receivedProblem) {
                fqid == 'validation:property-validation:value-not-set'
                contextualLabel == 'Type \'MyTask\' property \'strings\' doesn\'t have a configured value'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemsServiceIntegTest.groovy

                withProblemsWithStackTraceCount(1)
            }
    
            and:
            verifyAll(receivedProblem(0)) {
                fqid == REGISTRATION_UNSUPPORTED
                contextualLabel == "registration of listener on 'Gradle.buildFinished' is unsupported"
                definition.severity == Severity.WARNING
                definition.documentationLink != null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:04:02 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top