Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for JAVA_11 (0.03 sec)

  1. .teamcity/src/main/kotlin/common/Os.kt

            val paths =
                when {
                    this == LINUX ->
                        listOf(
                            DefaultJvm(JvmVersion.JAVA_8, JvmVendor.ORACLE),
                            DefaultJvm(JvmVersion.JAVA_11, JvmVendor.OPENJDK),
                            DefaultJvm(JvmVersion.JAVA_17, JvmVendor.OPENJDK),
                            DefaultJvm(JvmVersion.JAVA_21, JvmVendor.OPENJDK),
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Sep 18 12:22:32 UTC 2025
    - 3.7K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/common/JvmVersion.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package common
    
    enum class JvmVersion(
        val major: Int,
    ) {
        JAVA_8(8),
        JAVA_11(11),
        JAVA_17(17),
        JAVA_21(21),
        JAVA_25(25),
        ;
    
        fun toCapitalized(): String = name.replace("_", "").lowercase().toCapitalized()
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Tue Aug 05 16:58:51 UTC 2025
    - 856 bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/common/Jvm.kt

            get() = JvmVersion.JAVA_8
        override val vendor: JvmVendor
            get() = JvmVendor.OPENJDK
    }
    
    object OpenJdk11 : Jvm {
        override val version: JvmVersion
            get() = JvmVersion.JAVA_11
        override val vendor: JvmVendor
            get() = JvmVendor.OPENJDK
    }
    
    object OpenJdk17 : Jvm {
        override val version: JvmVersion
            get() = JvmVersion.JAVA_17
        override val vendor: JvmVendor
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Wed Nov 12 12:12:29 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/util/RerunFlakyTest.kt

                            "Can't contain spaces since there are problems with Teamcity's escaping, you can use * instead.",
                )
                text(
                    testJvmVersionParameter,
                    JvmVersion.JAVA_11.major.toString(),
                    display = ParameterDisplay.PROMPT,
                    allowEmpty = false,
                    description = "Java version to run the test with",
                )
                select(
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Wed Feb 19 08:02:04 UTC 2025
    - 5.1K bytes
    - Viewed (0)
  5. .teamcity/src/test/kotlin/CIConfigIntegrationTests.kt

                    ),
                )
            }
        }
    
        @Test
        fun long_ids_are_shortened() {
            val testCoverage = TestCoverage(1, TestType.QUICK_FEEDBACK_CROSS_VERSION, Os.WINDOWS, JvmVersion.JAVA_11, JvmVendor.ORACLE)
            val shortenedId = testCoverage.asConfigurationId(model, "veryLongSubprojectNameLongerThanEverythingWeHave")
            assertTrue(shortenedId.length < 80)
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Oct 16 01:27:05 UTC 2025
    - 14.6K bytes
    - Viewed (0)
Back to top