Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 5,029 for cCompiler (0.2 sec)

  1. 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)
  2. platforms/jvm/scala/src/main/java/org/gradle/api/internal/tasks/scala/ZincScalaCompiler.java

    import xsbti.T2;
    import xsbti.VirtualFile;
    import xsbti.compile.AnalysisContents;
    import xsbti.compile.AnalysisStore;
    import xsbti.compile.ClassFileManagerType;
    import xsbti.compile.ClasspathOptionsUtil;
    import xsbti.compile.CompileAnalysis;
    import xsbti.compile.CompileOptions;
    import xsbti.compile.CompileResult;
    import xsbti.compile.CompilerCache;
    import xsbti.compile.Compilers;
    import xsbti.compile.DefinesClass;
    import xsbti.compile.IncOptions;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  3. platforms/jvm/scala/src/main/java/org/gradle/api/internal/tasks/scala/NormalizingScalaCompiler.java

    import org.gradle.language.base.internal.compile.Compiler;
    import org.gradle.util.internal.CollectionUtils;
    
    import java.io.File;
    import java.util.List;
    
    /**
     * A Scala {@link Compiler} which does some normalization of the compile configuration and behaviour before delegating to some other compiler.
     */
    public class NormalizingScalaCompiler implements Compiler<ScalaJavaJointCompileSpec> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  4. test/const7.go

    		log.Fatalf("%s: wrong compiler error message:\n%s\n", name, output)
    	}
    }
    
    func main() {
    	if runtime.GOOS == "js" || runtime.GOOS == "wasip1" || runtime.Compiler != "gc" {
    		return
    	}
    
    	dir, err := ioutil.TempDir("", "const7_")
    	if err != nil {
    		log.Fatalf("creating temp dir: %v\n", err)
    	}
    	defer os.RemoveAll(dir)
    
    	const bitLimit = 512
    	const charLimit = 10000 // compiler-internal constant length limit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 20:56:32 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. platforms/jvm/language-groovy/src/main/java/org/gradle/api/tasks/compile/GroovyCompileOptions.java

         * <p>
         * When this option is set to {@code false} (the default), Groovy code will not be subject to annotation processing, but any joint compiled Java code will be.
         * If the compiler argument {@code "-proc:none"} was specified as part of the Java compile options, the value of this flag will be ignored.
         * No annotation processing will be performed regardless, on Java or Groovy source.
         */
        @Input
    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/toolchains-jvm/src/main/java/org/gradle/jvm/toolchain/internal/JavaCompilerFactory.java

    import org.gradle.internal.service.scopes.ServiceScope;
    import org.gradle.language.base.internal.compile.CompileSpec;
    import org.gradle.language.base.internal.compile.Compiler;
    
    /**
     * Creates Java compilers based on the provided compile options.
     */
    @ServiceScope(Scope.Project.class)
    public interface JavaCompilerFactory {
        <T extends CompileSpec> Compiler<T> create(Class<T> type);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/SelectiveCompiler.java

    import org.gradle.api.internal.tasks.compile.incremental.recomp.PreviousCompilationAccess;
    import org.gradle.api.internal.tasks.compile.incremental.recomp.PreviousCompilationData;
    import org.gradle.api.internal.tasks.compile.incremental.recomp.RecompilationSpec;
    import org.gradle.api.internal.tasks.compile.incremental.recomp.RecompilationSpecProvider;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/xla_compile_on_demand_op.h

    #include <vector>
    
    #include "tensorflow/compiler/jit/device_compilation_profiler.h"
    #include "tensorflow/compiler/jit/variable_info.h"
    #include "tensorflow/compiler/jit/variable_info_util.h"
    #include "tensorflow/compiler/jit/xla_launch_util.h"
    #include "tensorflow/compiler/jit/xla_platform_info.h"
    #include "tensorflow/compiler/tf2xla/xla_compiler.h"
    #include "xla/client/local_client.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  9. platforms/jvm/language-groovy/src/main/java/org/gradle/api/internal/tasks/compile/NormalizingGroovyCompiler.java

    import org.gradle.language.base.internal.compile.Compiler;
    import org.gradle.util.internal.CollectionUtils;
    
    import java.io.File;
    import java.util.List;
    
    import static org.gradle.internal.FileUtils.hasExtension;
    
    /**
     * A Groovy {@link Compiler} which does some normalization of the compile configuration and behaviour before delegating to some other compiler.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  10. build-logic/jvm/src/main/kotlin/gradlebuild.strict-compile.gradle.kts

    tasks.withType<JavaCompile>().configureEach {
        // Generated classes may not adhere to the strict no-warning policy that we apply to handwritten code
        // For example, external JMH plugin generates code that produces compiler warnings
        if (!name.contains("CompileGeneratedClasses")) {
            options.compilerArgs.addAll(strictCompilerArgs)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 20:21:31 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top