Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for compilerFor (0.19 sec)

  1. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/TestTaskToolchainIntegrationTest.groovy

                dependencies {
                    testImplementation 'junit:junit:4.13'
                }
    
                tasks.withType(JavaCompile).configureEach {
                    javaCompiler = javaToolchains.compilerFor {
                        languageVersion = JavaLanguageVersion.of(${compileJavaVersion.majorVersion})
                    }
                }
            """
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 06:04:19 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileToolchainIntegrationTest.groovy

                }
            """
        }
    
        private TestFile configureTool(Jvm jdk) {
            buildFile << """
                compileJava {
                    javaCompiler = javaToolchains.compilerFor {
                        languageVersion = JavaLanguageVersion.of(${jdk.javaVersion.majorVersion})
                    }
                }
            """
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/JavaBasePlugin.java

                    JavaCompileExecutableUtils.getExecutableOverrideToolchainSpec(javaCompile, objectFactory));
                javaCompile.getJavaCompiler().convention(getToolchainTool(project, JavaToolchainService::compilerFor, toolchainOverrideSpec));
    
                String generatedHeadersDir = "generated/sources/headers/" + javaSource.getName() + "/" + sourceSet.getName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 19 22:14:22 UTC 2023
    - 28.3K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/build.gradle.kts

        implementation(project(":compiler:cli-base"))
        implementation(project(":compiler:backend"))
        implementation(project(":compiler:backend.jvm.entrypoint"))
        implementation(project(":compiler:ir.backend.common"))
        implementation(project(":compiler:ir.serialization.jvm"))
        api(intellijCore())
        implementation(project(":analysis:analysis-api-platform-interface"))
        implementation(project(":analysis:analysis-internal-utils"))
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/internal/IdeaScalaConfigurer.java

                File compilerJar = runtime.findScalaJar(scalaClasspath, "compiler");
                if (compilerJar == null) {
                    compilerJar = runtime.findScalaJar(scalaClasspath, "compiler_3");
                }
                String scalaVersion = compilerJar != null ? runtime.getScalaVersion(compilerJar) : DEFAULT_SCALA_PLATFORM_VERSION;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  6. platforms/jvm/scala/src/main/java/org/gradle/api/internal/tasks/scala/ZincScalaCompilerFactory.java

            }
            String scalaVersion = getScalaVersion(scalaClassLoader);
    
            File compilerJar;
            if (isScala3) {
                compilerJar = findFile(SCALA_3_COMPILER_ID, scalaClasspath);
            } else {
                compilerJar = findFile(ArtifactInfo.ScalaCompilerID, scalaClasspath);
            }
    
            return new ScalaInstance(
                scalaVersion,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:51:31 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/cel/library/ip_test.go

    			if err != nil {
    				t.Fatalf("failed to compile expected err regex: %v", err)
    			}
    
    			didMatch := false
    
    			for i, compileError := range issues.Errors() {
    				if compiledPattern.Match([]byte(compileError.Message)) {
    					didMatch = true
    					matchedCompileErrs.Insert(i)
    				}
    			}
    
    			if !didMatch {
    				missingCompileErrs = append(missingCompileErrs, expectedCompileErr)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 12:03:07 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/cel/library/quantity_test.go

    			if err != nil {
    				t.Fatalf("failed to compile expected err regex: %v", err)
    			}
    
    			didMatch := false
    
    			for i, compileError := range issues.Errors() {
    				if compiledPattern.Match([]byte(compileError.Message)) {
    					didMatch = true
    					matchedCompileErrs.Insert(i)
    				}
    			}
    
    			if !didMatch {
    				missingCompileErrs = append(missingCompileErrs, expectedCompileErr)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/cel/library/cidr_test.go

    			if err != nil {
    				t.Fatalf("failed to compile expected err regex: %v", err)
    			}
    
    			didMatch := false
    
    			for i, compileError := range issues.Errors() {
    				if compiledPattern.Match([]byte(compileError.Message)) {
    					didMatch = true
    					matchedCompileErrs.Insert(i)
    				}
    			}
    
    			if !didMatch {
    				missingCompileErrs = append(missingCompileErrs, expectedCompileErr)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 12:03:09 UTC 2023
    - 8.3K bytes
    - Viewed (0)
Back to top