Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 5,029 for cCompiler (0.31 sec)

  1. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/NormalizingJavaCompilerTest.groovy

            when:
            compiler.execute(spec)
    
            then:
            1 * target.execute(spec) >> {
                assert spec.sourceFiles == files("Person1.java", "Person2.java")
            }
        }
    
        def "delegates to target compiler after resolving source and processor path"() {
            WorkResult workResult = Mock()
    
            when:
            def result = compiler.execute(spec)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/AnnotationProcessorDiscoveringCompiler.java

    import org.gradle.api.tasks.WorkResult;
    import org.gradle.language.base.internal.compile.Compiler;
    
    import java.util.Collection;
    import java.util.LinkedHashSet;
    import java.util.List;
    import java.util.Map;
    import java.util.Set;
    
    /**
     * Sets up annotation processing before delegating to the actual Java compiler.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/main/java/org/gradle/language/rc/plugins/internal/WindowsResourcesCompileTaskConfig.java

            PreprocessingTool rcCompiler = (PreprocessingTool) binary.getToolByName("rcCompiler");
            task.setMacros(rcCompiler.getMacros());
            task.getCompilerArgs().set(rcCompiler.getArgs());
    
            FileTree resourceOutputs = task.getOutputs().getFiles().getAsFileTree().matching(new PatternSet().include("**/*.res"));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/ops/xla_ops.cc

        // The compilation cache is stateful.
        .SetIsStateful()
        .Doc(R"(XLA Compile Op. For use by the XLA JIT only.
    
    Compiles a TensorFlow function into an XLA LocalExecutable and returns a key
    that _XlaRun can use to look up the LocalExecutable and execute it.
    
    key: A key that can be used to look up the local executable compiled by the
       node and associated metadata.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 09:08:06 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/IncrementalCompilerFactory.java

     */
    
    package org.gradle.api.internal.tasks.compile.incremental;
    
    import org.gradle.api.file.FileTree;
    import org.gradle.api.internal.cache.StringInterner;
    import org.gradle.api.internal.tasks.compile.CleaningJavaCompiler;
    import org.gradle.api.internal.tasks.compile.JavaCompileSpec;
    import org.gradle.api.internal.tasks.compile.incremental.classpath.ClassSetAnalyzer;
    import org.gradle.api.internal.tasks.compile.incremental.recomp.CurrentCompilationAccess;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/aot/tfcompile.bzl

                deps = [
                    ":" + name,
                    "//tensorflow/compiler/aot:benchmark",
                    "@local_xla//xla:executable_run_options",
                    "@eigen_archive//:eigen3",
                ] + if_android([
                    "//tensorflow/compiler/aot:benchmark_extra_android",
                ]),
                tags = tags,
                visibility = visibility,
            )
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 19:18:08 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/DefaultJavaCompilerFactory.java

            }
            return javaHomeBasedJavaCompilerFactory;
        }
    
        @Override
        @SuppressWarnings("unchecked")
        public <T extends CompileSpec> Compiler<T> create(Class<T> type) {
            Compiler<T> result = createTargetCompiler(type);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/main/resources/META-INF/gradle-plugins/org.gradle.clang-compiler.properties

    Sterling Greene <******@****.***> 1700166003 -0500
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 85 bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/exec.go

    	compiler() string
    	linker() string
    }
    
    type noToolchain struct{}
    
    func noCompiler() error {
    	log.Fatalf("unknown compiler %q", cfg.BuildContext.Compiler)
    	return nil
    }
    
    func (noToolchain) compiler() string {
    	noCompiler()
    	return ""
    }
    
    func (noToolchain) linker() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/KotlinDslJvmTargetIntegrationTest.kt

            assertThat(build("help").output, containsString(outputFor(JavaVersion.VERSION_11)))
        }
    
        @Test
        @LeaksFileHandles("Kotlin compiler daemon  taking time to shut down")
        fun `can use Java Toolchain to compile precompiled scripts`() {
    
            val currentJvm = Jvm.current()
            assumeNotNull(currentJvm)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 08:31:21 UTC 2024
    - 9.5K bytes
    - Viewed (0)
Back to top