Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for eap (0.14 sec)

  1. testing/smoke-ide-test/src/smokeIdeTest/groovy/org/gradle/ide/sync/AbstractIdeaSyncTest.groovy

         * <p>
         * The version can be optionally suffixed with a "build type", which is one of {@code release}, {@code rc}, {@code eap}.
         * For instance, {@code 2024.2-eap}. When the build type is not provided, it defaults to {@code release}.
         * <p>
         * The sync runs as an external process.
         * The IDE distribution is automatically downloaded if required.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 16:28:38 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/util/VersionNumberTest.groovy

            VersionNumber.parse("11.22") == new VersionNumber(11, 22, 0, null)
            VersionNumber.parse("11.22.33") == new VersionNumber(11, 22, 33, null)
            VersionNumber.parse("11.22.33-eap") == new VersionNumber(11, 22, 33, "eap")
    
            VersionNumber.parse("11.fortyfour") == new VersionNumber(11, 0, 0, "fortyfour")
    
            VersionNumber.parse("1.0.0.0") == new VersionNumber(1, 0, 0, "0")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:54:04 UTC 2021
    - 7.6K bytes
    - Viewed (0)
  3. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/UpdateInitPluginTemplateVersionFile.kt

            "-SNAP\\d+",
            "-SNAPSHOT",
            "-alpha.*\\d+",
            "-beta.*\\d+",
            "-dev-?\\d+",
            "-dev-\\d+-\\d+",
            "-rc-?\\d+",
            "-M.+",
            "-eap-?\\d+"
        ).map { it.toRegex(RegexOption.IGNORE_CASE) }
    
        @get:Internal
        abstract val libraryVersionFile: RegularFileProperty
    
        @TaskAction
        fun updateInitPluginTemplateVersionFile() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 11:19:07 UTC 2023
    - 5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/reference/third_party_integration.adoc

    Xcode::
    For developing C++ projects, Gradle comes with a <<xcode_plugin.adoc#xcode_plugin,Xcode plugin>>.
    
    CLion::
    JetBrains supports building https://blog.jetbrains.com/clion/2018/05/clion-starts-2018-2-eap-sanitizers-gradle-db-performance/[C++ projects with Gradle].
    
    == Continuous integration
    
    We have dedicated guides showing you how to integrate a Gradle project with the following CI platforms:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/jvm/JvmTest.groovy

            when:
            def jvm = new Jvm(os, jdkDir, "1.8.0", 8)
    
            then:
            jvm.toString().contains('dummyFolder')
        }
    
        def "locates MAC OS JDK9 install when java.home points to an EAP JDK 1.9 installation"() {
            given:
            OperatingSystem macOs = new OperatingSystem.MacOs()
            TestFile software = tmpDir.createDir('software')
            //http://openjdk.java.net/jeps/220
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 00:09:57 UTC 2024
    - 15.4K bytes
    - Viewed (0)
Back to top