Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for CheckLinks (0.65 sec)

  1. .teamcity/src/main/kotlin/configurations/CheckLinks.kt

    import common.Os
    import common.buildScanTagParam
    import model.CIBuildModel
    import model.Stage
    
    class CheckLinks(
        model: CIBuildModel,
        stage: Stage,
    ) : OsAwareBaseGradleBuildType(os = Os.LINUX, stage = stage, failStage = false, init = {
            id("${model.projectId}_CheckLinks")
            name = "CheckLinks"
            description = "Check links in documentations"
    
            applyDefaults(
                model,
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Tue Aug 26 11:35:04 UTC 2025
    - 799 bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/model/CIBuildModel.kt

                stage: Stage,
            ): OsAwareBaseGradleBuildType = Gradleception(model, stage, JvmCategory.MAX_LTS_VERSION, "MaxLts")
        },
        CheckLinks {
            override fun create(
                model: CIBuildModel,
                stage: Stage,
            ): OsAwareBaseGradleBuildType = CheckLinks(model, stage)
        },
        CheckTeamCityKotlinDSL {
            override fun create(
                model: CIBuildModel,
                stage: Stage,
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Sun Aug 03 22:40:28 UTC 2025
    - 25.9K bytes
    - Viewed (0)
Back to top