Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for JVMs (0.03 sec)

  1. build-logic/lifecycle/src/main/kotlin/gradlebuild.lifecycle.gradle.kts

    setupTimeoutMonitorOnCI()
    setupGlobalState()
    
    tasks.registerDistributionsPromotionTasks()
    
    tasks.registerEarlyFeedbackRootLifecycleTasks()
    
    /**
     * Print all stacktraces of running JVMs on the machine upon timeout. Helps us diagnose deadlock issues.
     */
    fun setupTimeoutMonitorOnCI() {
        if (BuildEnvironment.isCiServer && project.name != "gradle-kotlin-dsl-accessors") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 14:39:09 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/plugins/jvm/internal/JvmEcosystemAttributesDetails.java

         *
         * @param version the Java version
         */
        JvmEcosystemAttributesDetails withTargetJvmVersion(int version);
    
        /**
         * Expresses that variants which are optimized for standard JVMs should be preferred.
         */
        JvmEcosystemAttributesDetails preferStandardJVM();
    
        /**
         * Provides or requires the source files of a component.
         *
         * @return {@code this}
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. platforms/jvm/jvm-services/src/test/groovy/org/gradle/jvm/toolchain/internal/DefaultOsXJavaHomeCommandTest.groovy

            ])
            result.size() == 1
        }
    
        def "can parse output with no installations"() {
            given:
            def output = """
    Unable to find any JVMs matching version "(null)".
    Matching Java Virtual Machines (0):
    
    Default Java Virtual Machines (0):
    
    No Java runtime present, try --request to install.
    """
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:55 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. platforms/jvm/jacoco/src/main/java/org/gradle/testing/jacoco/plugins/JacocoPluginExtension.java

                if (hasFileOutput.get()) {
                    // Delete the coverage file before the task executes, so we don't append to a leftover file from the last execution.
                    // This makes the task cacheable even if multiple JVMs write to same destination file, e.g. when executing tests in parallel.
                    // The JaCoCo agent supports writing in parallel to the same file, see https://github.com/jacoco/jacoco/pull/52.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/process/JavaForkOptions.java

        /**
         * Sets the default character encoding to use.
         *
         * Note: Many JVM implementations support the setting of this attribute via system property on startup (namely, the {@code file.encoding} property). For JVMs
         * where this is the case, setting the {@code file.encoding} property via {@link #setSystemProperties(java.util.Map)} or similar will have no effect as
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 9.8K bytes
    - Viewed (0)
Back to top