Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 194 for GoVersion (0.25 sec)

  1. platforms/jvm/plugins-java-base/src/integTest/groovy/org/gradle/api/plugins/DefaultJavaPluginConventionTest.groovy

            convention.testReportDirName == 'tests'
        }
    
       def "source and target compatibility default to current jvm version"() {
            given:
            JavaVersion currentJvmVersion = JavaVersion.toVersion(System.properties["java.version"])
            expect:
            convention.sourceCompatibility == currentJvmVersion
            convention.targetCompatibility == currentJvmVersion
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/JavaCrossCompilationIntegrationTest.groovy

            return ["1.6", "1.7", "1.8", "11", "15", "16", "17", "18", "19", "20", "21", "22"]
        }
    
        static JavaVersion toJavaVersion(String version) {
            return JavaVersion.toVersion(version)
        }
    
        def withJavaProjectUsingToolchainsForJavaVersion(String version) {
            def javaVersion = toJavaVersion(version)
            def target = AvailableJavaHomes.getJdk(javaVersion)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 05:59:30 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  3. platforms/jvm/scala/src/main/java/org/gradle/api/plugins/scala/ScalaBasePlugin.java

            JavaVersion rawSourceCompatibility = javaExtension.getRawSourceCompatibility();
            if (rawSourceCompatibility != null) {
                return rawSourceCompatibility;
            }
            return JavaVersion.toVersion(compileTask.getJavaLauncher().get().getMetadata().getLanguageVersion().toString());
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 10:39:12 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modfetch/zip_sum_test/testdata/zip_sums.csv

    rsc.io/binaryregexp,v0.2.0,h1:HfqmD5MEmC0zvwBuF187nq9mdnXjXsSivRiXN7SmRkE=,b3e706aa278fa7f880d32fa1cc40ef8282d1fc7d6e00356579ed0db88f3b0047
    rsc.io/goversion,v1.2.0,h1:SPn+NLTiAG7w30IRK/DKp1BjvpWabYgxlLp/+kx5J8w=,f8426f6078b1d1b4e29a8c6223603680169c7c0a8789d2aee7e401a46ff6343f
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 18 17:29:01 UTC 2020
    - 334.9K bytes
    - Viewed (0)
  5. platforms/jvm/jvm-services/src/main/java/org/gradle/internal/jvm/inspection/DefaultJvmMetadataDetector.java

            if (javaVersion == null) {
                return failure(javaHome, metadata.get(ProbedSystemProperty.Z_ERROR));
            }
            try {
                JavaVersion.toVersion(javaVersion);
            } catch (IllegalArgumentException e) {
                return failure(javaHome, "Cannot parse version number: " + javaVersion);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 02:32:22 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  6. platforms/jvm/jvm-services/src/main/java/org/gradle/internal/jvm/inspection/JvmInstallationMetadata.java

                String jvmVersion,
                String jvmVendor,
                String architecture
            ) {
                this.javaHome = javaHome.toPath();
                this.languageVersion = JavaVersion.toVersion(javaVersion);
                this.javaVersion = javaVersion;
                this.javaVendor = javaVendor;
                this.runtimeName = runtimeName;
                this.runtimeVersion = runtimeVersion;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  7. platforms/jvm/plugins-groovy/src/main/java/org/gradle/api/plugins/GroovyBasePlugin.java

                    if (rawConvention != null) {
                        return rawConvention;
                    }
                    return JavaVersion.toVersion(compile.getJavaLauncher().get().getMetadata().getLanguageVersion().toString());
                });
            });
        }
    
        private void configureSourceSetDefaults(Project project) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  8. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/internal/JvmPluginsHelper.java

            JavaVersion rawTargetCompatibility = javaExtension.getRawTargetCompatibility();
            if (rawTargetCompatibility == null) {
                rawTargetCompatibility = JavaVersion.toVersion(compile.getSourceCompatibility());
            }
            return compatibilityComputer.apply(rawTargetCompatibility, javaExtension::getTargetCompatibility);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  9. platforms/jvm/scala/src/main/java/org/gradle/language/scala/tasks/AbstractScalaCompile.java

            return spec;
        }
    
        private void configureCompatibilityOptions(DefaultScalaJavaJointCompileSpec spec) {
            String toolchainVersion = JavaVersion.toVersion(getToolchain().getLanguageVersion().asInt()).toString();
            String sourceCompatibility = getSourceCompatibility();
            if (sourceCompatibility == null) {
                sourceCompatibility = toolchainVersion;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/query.go

    			// to modules other than the main one.
    			if noPackage == nil || MainModules.Contains(noPackage.Mod.Path) {
    				noPackage = rErr
    			}
    		case *NoMatchingVersionError:
    			if noVersion == nil {
    				noVersion = rErr
    			}
    		case *NoPatchBaseError:
    			if noPatchBase == nil {
    				noPatchBase = rErr
    			}
    		case *module.InvalidPathError:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 11 22:29:11 UTC 2023
    - 44.7K bytes
    - Viewed (0)
Back to top