Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 741 for compilers (0.3 sec)

  1. platforms/documentation/docs/src/docs/userguide/jvm/scala_plugin.adoc

    |===
    
    [[sec:scala_compiler_plugins]]
    == Adding plugins to the Scala compiler
    
    The Scala plugin adds a configuration named `scalaCompilerPlugins` which is used to declare and resolve optional compiler plugins.
    
    .Adding a dependency on a Scala compiler plugin
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 17K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/main/java/org/gradle/api/tasks/compile/JavaCompile.java

            Compiler<JavaCompileSpec> compiler = createCompiler();
            compiler = makeIncremental(inputs, (CleaningJavaCompiler<JavaCompileSpec>) compiler, getStableSources());
            performCompilation(spec, compiler);
        }
    
        private Compiler<JavaCompileSpec> makeIncremental(InputChanges inputs, CleaningJavaCompiler<JavaCompileSpec> compiler, FileCollection stableSources) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:33:35 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/main/java/org/gradle/language/swift/tasks/SwiftCompile.java

    import org.gradle.internal.operations.logging.BuildOperationLogger;
    import org.gradle.internal.operations.logging.BuildOperationLoggerFactory;
    import org.gradle.language.base.compile.CompilerVersion;
    import org.gradle.language.base.internal.compile.Compiler;
    import org.gradle.language.base.internal.compile.VersionAwareCompiler;
    import org.gradle.language.swift.SwiftVersion;
    import org.gradle.language.swift.tasks.internal.DefaultSwiftCompileSpec;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  4. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaIntegrationTest.groovy

            executer.withTasks('idea').run()
    
            hasProjectLibrary('root.ipr', 'scala-compiler-2.10.0', ['compiler-bridge_2.10', 'scala-compiler-2.10.0', 'scala-library-2.10.0', 'scala-reflect-2.10.0', 'compiler-interface', 'util-interface'], [], [], [])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/tasks/AbstractNativeCompileTask.java

            Class<T> specType = Cast.uncheckedCast(spec.getClass());
            Compiler<T> baseCompiler = platformToolProvider.newCompiler(specType);
            Compiler<T> incrementalCompiler = this.incrementalCompiler.createCompiler(baseCompiler);
            Compiler<T> loggingCompiler = BuildOperationLoggingCompilerDecorator.wrap(incrementalCompiler);
            return loggingCompiler.execute(spec);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/xla_launch_util_gpu_test.cc

    #include "absl/container/flat_hash_set.h"
    #include "tensorflow/compiler/jit/device_compiler.h"
    #include "tensorflow/compiler/jit/flags.h"
    #include "tensorflow/compiler/jit/pjrt_device_compiler_client.h"
    #include "tensorflow/compiler/jit/pjrt_device_context.h"
    #include "tensorflow/compiler/jit/variable_info.h"
    #include "tensorflow/compiler/jit/variable_info_util.h"
    #include "tensorflow/compiler/jit/xla_launch_util.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 10K bytes
    - Viewed (0)
  7. platforms/jvm/scala/src/main/java/org/gradle/api/tasks/ScalaRuntime.java

                return new DefaultExternalModuleDependency("org.scala-sbt", "compiler-bridge_" + scalaMajorMinorVersion, zincVersion);
            }
        }
    
        /**
         * Determines Scala compiler jar to download.
         *
         * @param scalaVersion version of scala to download the compiler for
         * @param scalaVersion version of scala to download the compiler for
         * @return compiler dependency to download
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/jvm/groovy_plugin.adoc

    Information about altering the dependencies to Java compile tasks are found <<building_java_projects.adoc#sec:building_jvm_lang,here>>.
    
    `compileGroovy` — link:{groovyDslPath}/org.gradle.api.tasks.compile.GroovyCompile.html[GroovyCompile]::
    _Depends on_: `compileJava`
    +
    Compiles production Groovy source files.
    
    `compileTestGroovy` — link:{groovyDslPath}/org.gradle.api.tasks.compile.GroovyCompile.html[GroovyCompile]::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/aot/tfcompile.bzl

    """Build macro that compiles a TensorFlow graph into a cc_library.
    
    To use from your BUILD file, add the following line to load the macro:
    
    load("//tensorflow/compiler/aot:tfcompile.bzl", "tf_library")
    
    Then call the macro like this:
    
    tf_library(
        name = "test_graph_tfmatmul",
        config = "test_graph_tfmatmul.config.pbtxt",
        cpp_class = "MatMulComp",
        graph = ":test_graph_tfmatmul.pb",
    )
    """
    
    load(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 19:18:08 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/catalog/ProjectAccessorsSourceGeneratorTest.groovy

            spec()
            builder.build()
        }
    
        Object compiles() {
            def sources = generatedCode.values().collect {
                new TestClassSource(it.className, it.generatedCode)
            }
            def srcDir = tmpDir.createDir("src")
            def dstDir = tmpDir.createDir("dst")
            SimpleGeneratedJavaClassCompiler.compile(srcDir, dstDir, sources, classPath)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 12.3K bytes
    - Viewed (0)
Back to top