Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for projectId (0.14 sec)

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

    fun stageTriggerId(model: CIBuildModel, stageName: StageName, os: Os? = null) =
        "${model.projectId}_Stage_${stageName.id}_${osSuffix(os)}Trigger"
    
    fun stageTriggerUuid(model: CIBuildModel, stageName: StageName, os: Os? = null) =
        "${DslContext.uuidPrefix}_${model.projectId}_Stage_${stageName.uuid}_${osSuffix(os)}Trigger"
    
    fun osSuffix(os: Os?) = os?.asName()?.plus("_") ?: ""
    
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Wed Nov 06 08:08:13 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  2. build-logic-commons/settings.gradle.kts

            the<JavaPluginExtension>().toolchain {
                // if you change this java version please also consider changing .idea/misc.xml#project/component(@project-jdk-name}
                // Also, there are a lot of other places this should be changed.
                languageVersion = JavaLanguageVersion.of(17)
                vendor = JvmVendorSpec.ADOPTIUM
            }
        }
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Wed Nov 06 06:19:29 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top