Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getInstallFolderName (0.29 sec)

  1. testing/soak/src/integTest/groovy/org/gradle/jvm/toolchain/JavaToolchainDownloadComplexProjectSoakTest.groovy

                    .run()
    
    
            then:
            result.plainTextOutput.matches("(?s).*Compiling with toolchain.*${DefaultJdkCacheDirectory.getInstallFolderName(jdkMetadata)}.*")
            result.plainTextOutput.matches("(?s).*Compiling with toolchain.*${DefaultJdkCacheDirectory.getInstallFolderName(otherJdkMetadata)}.*")
            otherJdkRepository.stop()
        }
    
        private Jvm getJdkWithDifferentVendor() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 16:09:18 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. platforms/jvm/toolchains-jvm-shared/src/main/java/org/gradle/jvm/toolchain/internal/install/DefaultJdkCacheDirectory.java

                // Check our target directory, to see if anything exists there, and if so, is it marked as ready?
                File installFolder = new File(jdkDirectory, getInstallFolderName(unpackedRoot.metadata));
                if (!installFolder.getParentFile().mkdirs() && !installFolder.getParentFile().isDirectory()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 23:47:49 UTC 2024
    - 13.4K bytes
    - Viewed (0)
Back to top