Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 411 for compiling (0.32 sec)

  1. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/logging/GroupedOutputFixtureTest.groovy

    settings\u001B[m\u001B[10D\u001B[1B\u001B[1A\u001B[1m> settings > Compiling /Users/daniel/gradle/gradle/build/tmp/teŝt files/BasicGroupedTaskLoggingFunctionalSpec/test/oww7k/settings.gradle into local compilation cache > Compiling settings file '/Users/daniel/gradle/gradle/build/tmp/teŝt files/BasicGroupedTaskLoggingFunctionalSpec/test/oww7k/settings.gradle' to cross build script cache\u001B[m\u001B[335D\u001B[1B\u001B[1A\u001B[1m> settings > Compiling /Users/daniel/gradle/gradle/build/tmp/teŝt files/Basic...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileToolchainIntegrationTest.groovy

            when:
            run(":compileJava", "--info")
    
            then:
            executedAndNotSkipped(":compileJava")
            outputContains("Compiling with toolchain '${curJvm.javaHome.absolutePath}'")
            outputContains("Compiling with JDK Java compiler API")
            outputDoesNotContain("Compiling with Java command line compiler")
            outputDoesNotContain("Started Gradle worker daemon")
    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/JavaPluginExtension.java

     *
     * @since 4.10
     */
    public interface JavaPluginExtension {
    
        /**
         * Returns the source compatibility used for compiling Java sources.
         */
        JavaVersion getSourceCompatibility();
    
        /**
         * Sets the source compatibility used for compiling Java sources.
         * <p>
         * This property cannot be set if a {@link #getToolchain() toolchain} has been configured.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/integTest/groovy/org/gradle/language/AbstractNativePreCompiledHeaderIntegrationTest.groovy

            install.assertInstalled()
            install.exec().out == app.englishOutput
        }
    
        static final String DEFAULT_PCH_MESSAGE="<==== compiling hello.h ====>"
        static final String FRENCH_PCH_MESSAGE="<==== compiling bonjour.h ====>"
        static final String ALTERNATE_PCH_MESSAGE="<==== compiling alternate hello.h ====>"
    
        def preCompiledHeaderComponent(String path="", String pch="common.h") {
            """
                model {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  5. platforms/jvm/language-groovy/src/main/java/org/gradle/api/tasks/compile/GroovyCompileOptions.java

         * Groovy 1.7 or higher. Defaults to {@code ImmutableList.of("java", "groovy")}.
         */
        @Input
        public List<String> getFileExtensions() {
            return fileExtensions;
        }
    
        /**
         * Sets the list of acceptable source file extensions. Only takes effect when compiling against
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  6. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/tasks/SourceSet.java

         *
         * @param classpath The classpath. Should not be null.
         */
        void setCompileClasspath(FileCollection classpath);
    
        /**
         * Returns the classpath used to load annotation processors when compiling this source set.
         * This path is also used for annotation processor discovery. The classpath can be empty,
         * which means use the compile classpath; if you want to disable annotation processing,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppLibraryIntegrationTest.groovy

            failure.assertHasDescription("Execution failed for task ':compileDebugCpp'.")
            failure.assertHasCause("A build operation failed.")
            failure.assertThatCause(containsText("C++ compiler failed while compiling broken.cpp"))
        }
    
        @ToBeFixedForConfigurationCache
        def "finds C and C++ standard library headers"() {
            given:
            buildFile << """
                apply plugin: 'cpp-library'
             """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 19.8K bytes
    - Viewed (0)
  8. src/regexp/all_test.go

    	re, err := Compile(expr)
    	if error == "" && err != nil {
    		t.Error("compiling `", expr, "`; unexpected error: ", err.Error())
    	}
    	if error != "" && err == nil {
    		t.Error("compiling `", expr, "`; missing error")
    	} else if error != "" && !strings.Contains(err.Error(), error) {
    		t.Error("compiling `", expr, "`; wrong error: ", err.Error(), "; want ", error)
    	}
    	return re
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-java-library/src/integTest/groovy/org/gradle/java/JavaLibraryCompilationIntegrationTest.groovy

            succeeds 'a:compileJava'
    
            then:
            executedAndNotSkipped ':b:compileJava', ':b:classes', ':b:jar'
            skipped ':b:processResources'
        }
    
        def "uses the API of a library when compiling production code against it using the #configuration configuration"() {
            given:
            subproject('a') {
                'build.gradle'("""
                    apply plugin: 'java'
                    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 13:02:41 UTC 2024
    - 14K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileCompatibilityIntegrationTest.groovy

                }
            """
    
            when:
            withInstallations(earlierJdk).run(":compileJava", "--info")
    
            then:
            executedAndNotSkipped(":compileJava")
            outputContains("Compiling with toolchain '${earlierJdk.javaHome.absolutePath}'")
            outputContains("sourceCompatibility: '${earlierJdk.javaVersion}'")
            outputContains("targetCompatibility: '${earlierJdk.javaVersion}'")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 21.7K bytes
    - Viewed (0)
Back to top