Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for JVMs (0.09 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AvailableJavaHomes.java

                .collect(Collectors.toList());
    
            System.out.println("Found the following JVMs:");
            for (JvmInstallationMetadata jvm : jvms) {
                String name = jvm.getDisplayName() + " " + jvm.getJavaVersion() + " ";
                System.out.println("    " + name + " - " + jvm.getJavaHome());
            }
            return jvms;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/ChainingHttpHandler.java

                } finally {
                    requestCompleted(outcome);
                }
            } finally {
                httpExchange.close();
            }
        }
    
        // Dump all JVMs' threads on the machine to troubleshoot deadlock issues
        // We observed jstack hanging on windows, so for now we only enable it for Linux
        private void dumpThreadsUponTimeout(String stacktrace) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/timeout/JavaProcessStackTracesMonitor.java

     * 1. NOT DEPENDS ON ANY 3RD-PARTY LIBRARIES except JDK 11.
     * 2. UPDATE build-logic/lifecycle/src/main/kotlin/PrintStackTracesOnTimeoutBuildService.kt if this class is moved to another package.
     *
     * Used to print all JVMs' thread dumps on the machine. When it starts working, the process/machine might be in a bad state (e.g. deadlock),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/CipherSuite.kt

         * Compares cipher suites names like "TLS_RSA_WITH_NULL_MD5" and "SSL_RSA_WITH_NULL_MD5",
         * ignoring the "TLS_" or "SSL_" prefix which is not consistent across platforms. In particular
         * some IBM JVMs use the "SSL_" prefix everywhere whereas Oracle JVMs mix "TLS_" and "SSL_".
         */
        internal val ORDER_BY_NAME =
          object : Comparator<String> {
            override fun compare(
              a: String,
              b: String,
            ): Int {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 39.9K bytes
    - Viewed (0)
  5. platforms/jvm/jvm-services/src/main/java/org/gradle/api/internal/artifacts/JavaEcosystemAttributesDescriber.java

            String name = toName(targetJvmEnvironment);
            switch (name) {
                case TargetJvmEnvironment.STANDARD_JVM:
                    sb.append("standard JVMs");
                    break;
                case TargetJvmEnvironment.ANDROID:
                    sb.append("Android");
                    break;
                default:
                    sb.append(name);
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 19:13:00 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/jvm/toolchains.adoc

    If auto-detecting local toolchains is not sufficient or disabled, there are additional ways you can let Gradle know about installed toolchains.
    
    If your setup already provides environment variables pointing to installed JVMs, you can also let Gradle know about which environment variables to take into account.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:37:54 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  7. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildDependencyGraphIntegrationTest.groovy

      - No variants exist.""")
        }
    
        public static final REPOSITORY_HINT = repositoryHint("Maven POM")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 19:37:49 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/cross_project_publications.adoc

    While this attribute is automatically set, Gradle _will not_, by default, let you build a project for different JVMs.
    If you need to do this, then you will need to create additional variants following the <<#sec:variant-aware-sharing,instructions on variant-aware matching>>.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 18K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/troubleshooting/validation_problems.adoc

    Using a Java lambda means that the bytecode uses invoke-dynamic instead of creating an actual sub-class.
    The class for the invoke-dynamic instruction is generated at JVM runtime and Gradle cannot uniquely identify this class across different JVMs if the target functional interface is not serializable.
    For task actions it is not a problem, because Gradle handles them in a special way.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/build_environment.adoc

    The values are not case-sensitive.
    +
    _Default is `lifecycle` level._
    
    `org.gradle.parallel=(true,false)`::
    When configured, Gradle will fork up to `org.gradle.workers.max` JVMs to execute <<performance.adoc#parallel_execution,projects in parallel>>.
    +
    _Default is `false`._
    
    `org.gradle.priority=(low,normal)`::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 20.1K bytes
    - Viewed (0)
Back to top