Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. subprojects/core/src/main/java/org/gradle/api/internal/initialization/transform/utils/ClassAnalysisUtils.java

            for (int i = 1; i < reader.getItemCount(); i++) {
                int itemOffset = reader.getItem(i);
                // see https://docs.oracle.com/javase/specs/jvms/se7/html/jvms-4.html#jvms-4.4
                if (itemOffset > 0 && reader.readByte(itemOffset - 1) == 7) {
                    // A CONSTANT_Class entry, read the class descriptor
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 27 13:49:15 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. platforms/jvm/jvm-services/src/main/java/org/gradle/jvm/toolchain/internal/WindowsInstallationSupplier.java

            }
            return Collections.emptySet();
        }
    
        private Set<InstallationLocation> findInstallationsInRegistry() {
            final Stream<String> openJdkInstallations = findOpenJDKs();
            final Stream<String> jvms = Lists.newArrayList(
                "SOFTWARE\\JavaSoft\\JDK",
                "SOFTWARE\\JavaSoft\\Java Development Kit",
                "SOFTWARE\\JavaSoft\\Java Runtime Environment",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 22:14:10 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-metadataRule/tests/failRuntimeClasspathResolve.out

       > Could not resolve org.lwjgl:lwjgl:3.2.3.
         Required by:
             project :
          > The consumer was configured to find a library for use during runtime, compatible with Java 11, packaged as a jar, preferably optimized for standard JVMs, and its dependencies declared externally, as well as attribute 'org.gradle.native.operatingSystem' with value 'windows'. There are several available matching variants of org.lwjgl:lwjgl:3.2.3
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 820 bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/jvm/JavaToolchainFixture.groovy

         */
        AbstractIntegrationSpec withInstallations(Jvm jvm, Jvm... rest) {
            return withInstallations([jvm] + rest.toList())
        }
    
        AbstractIntegrationSpec withInstallations(List<Jvm> jvms) {
            def installationPaths = jvms.collect { it.javaHome.absolutePath }.join(",")
            executer
                .withArgument("-Porg.gradle.java.installations.paths=" + installationPaths)
            this as AbstractIntegrationSpec
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. platforms/jvm/platform-jvm/src/main/java/org/gradle/jvm/tasks/Jar.java

        }
    
        /**
         * The character set used to encode JAR metadata like file names.
         * Defaults to UTF-8.
         * You can change this property but it is not recommended as JVMs expect JAR metadata to be encoded using UTF-8
         *
         * @return the character set used to encode JAR metadata like file names
         * @since 2.14
         */
        @Override
        public String getMetadataCharset() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm/src/testFixtures/groovy/org/gradle/testing/fixture/MultiJvmTestCompatibility.groovy

     * limitations under the License.
     */
    
    package org.gradle.testing.fixture
    
    import org.gradle.api.JavaVersion;
    
    /**
     * Class for supporting multiple JVMs with different parameters in testing tests.
     */
    class MultiJvmTestCompatibility {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  7. testing/internal-testing/src/test/groovy/org/gradle/infra/EnvironmentVariablesPropagationTest.groovy

     */
    
    package org.gradle.infra
    
    import spock.lang.Specification
    
    class EnvironmentVariablesPropagationTest extends Specification {
        def "no sensitive env variables #value propagated to test JVMs"() {
            expect:
            System.getenv().each { k, v ->
                assert !k.toLowerCase().contains(value.toLowerCase())
                assert !v.toLowerCase().contains(value.toLowerCase())
            }
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. platforms/jvm/jvm-services/src/main/java/org/gradle/jvm/toolchain/internal/DefaultOsXJavaHomeCommand.java

                final Reader output = executeJavaHome();
                return parse(output);
            } catch (ExecException e) {
                String errorMessage = "Java Toolchain auto-detection failed to find local MacOS system JVMs";
                if (LOGGER.isDebugEnabled()) {
                    LOGGER.debug(errorMessage, e);
                } else {
                    LOGGER.info(errorMessage);
                }
            }
            return Collections.emptySet();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:55 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  9. 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)
  10. architecture/README.md

    Each process, or "runtime", applies different constraints to the code that runs in that process.
    For example, each process has different supported JVMs and a different set of services available for dependency injection.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 06:42:46 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top