Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 411 for compiling (0.14 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/best-practices/organizing_gradle_projects.adoc

    For example, a project applying the <<java_plugin.adoc#java_plugin,Java plugin>> will automatically compile the code in the directory `src/main/java`.
    Other language plugins follow the same pattern.
    The last portion of the directory path usually indicates the expected language of the source files.
    
    Some compilers are capable of cross-compiling multiple languages in the same source directory.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:16:36 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. platforms/jvm/scala/src/integTest/groovy/org/gradle/scala/compile/ScalaCompileJavaToolchainIntegrationTest.groovy

            when:
            withInstallations(currentJdk, otherJdk).run(":compileScala", "--info")
    
            then:
            executedAndNotSkipped(":compileScala")
            outputContains("Compiling with Zinc Scala compiler")
    
            JavaVersion.forClass(scalaClassFile("JavaThing.class").bytes) == targetJdk.javaVersion
            JavaVersion.forClass(scalaClassFile("ScalaHall.class").bytes) == JavaVersion.VERSION_1_8
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 03:32:33 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. platforms/jvm/language-groovy/src/integTest/groovy/org/gradle/groovy/compile/GroovyCompileToolchainIntegrationTest.groovy

            when:
            withInstallations(currentJdk, otherJdk).run(":compileGroovy", "--info")
    
            then:
            executedAndNotSkipped(":compileGroovy")
            outputContains("Compiling with JDK Java compiler API")
            JavaVersion.forClass(groovyClassFile("JavaThing.class").bytes) == targetJdk.javaVersion
            JavaVersion.forClass(groovyClassFile("GroovyBar.class").bytes) == groovyTarget
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 17:37:16 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/swift/SwiftCompiler.java

                    genericArgs.add(String.valueOf(spec.getSourceCompatibility().getVersion()));
    
                    CommandLineToolInvocation perFileInvocation =
                        newInvocation("compiling swift file(s)", objectDir, Iterables.concat(genericArgs, outputArgs, importRootArgs), spec.getOperationLogger());
                    perFileInvocation.getEnvironment().put("TMPDIR", spec.getTempDir().getAbsolutePath());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/device_compiler.h

        } else {
          VLOG(2) << "Instantly compiling for signature: " << human_signature;
          TF_ASSIGN_OR_RETURN(
              cache_value,
              CompileStrict(signature, compile_options, options, args, function,
                            cache_value, scope, ctx, profiler, cluster_mutex));
        }
      } else if (state == DeviceCompileState::kCompiling) {
        VLOG(2) << "Ongoing asynchronous compilation for signature: "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/jvm/scala_plugin.adoc

    ====
    
    [[sec:scala_incremental_compilation]]
    == Incremental compilation
    
    By compiling only classes whose source code has changed since the previous compilation, and classes affected by these changes, incremental compilation can significantly reduce Scala compilation time. It is particularly effective when frequently compiling small code increments, as is often done at development time.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 17K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/flags.cc

           Flag("tf_xla_use_device_api_for_compile_on_demand",
                &ops_flags->tf_xla_use_device_api.enabled_for_compile_on_demand_,
                "If true, uses Device API (PjRt) for compiling and executing ops "
                "one by one in 'on-demand' mode. Defaults to false."),
           Flag("tf_xla_use_device_api_for_auto_jit",
                &ops_flags->tf_xla_use_device_api.enabled_for_compile_and_run_,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  8. platforms/jvm/plugins-groovy/src/main/java/org/gradle/api/plugins/GroovyBasePlugin.java

    import javax.inject.Inject;
    
    import java.util.function.Supplier;
    
    import static org.gradle.api.internal.lambdas.SerializableLambdas.spec;
    
    /**
     * Extends {@link org.gradle.api.plugins.JavaBasePlugin} to provide support for compiling and documenting Groovy
     * source files.
     *
     * @see <a href="https://docs.gradle.org/current/userguide/groovy_plugin.html">Groovy plugin reference</a>
     */
    public abstract class GroovyBasePlugin implements Plugin<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)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/VariantAwareResolutionWithConfigurationAttributesIntegrationTest.groovy

                }
            '''
    
            when:
            run 'checkConfigurations'
    
            then:
            noExceptionThrown()
        }
    
        @ToBeFixedForConfigurationCache
        def "compiling project variant doesn't imply execution of other variants build tasks"() {
            testDirectory.mkdirs()
            def projectDir = new FileTreeBuilder(testDirectory)
            given:
            projectDir {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/native/swift_library_plugin.adoc

    
    The following configurations are used by consumers:
    
    `__variant__SwiftApiElements` (e.g. `debugSwiftApiElements` and `releaseSwiftApiElements`) extends `main__Variant__Implementation`::
    Used for compiling against the library.
    This configuration is meant to be used by consumers, to retrieve all the elements necessary to compile against the library.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 17.5K bytes
    - Viewed (0)
Back to top