Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 41 for setcCompiler (0.28 sec)

  1. platforms/jvm/scala/src/main/java/org/gradle/language/scala/tasks/AbstractScalaCompile.java

        }
    
        abstract protected Compiler<ScalaJavaJointCompileSpec> getCompiler(ScalaJavaJointCompileSpec spec);
    
        @TaskAction
        public void compile() {
            ScalaJavaJointCompileSpec spec = createSpec();
            configureIncrementalCompilation(spec);
            Compiler<ScalaJavaJointCompileSpec> compiler = getCompiler(spec);
            if (isNonIncrementalCompilation()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/gcc/AbstractGccCompatibleToolChain.java

                    public void execute(List<String> args) {
                        args.add("-m32");
                    }
                };
                gccToolChain.getCppCompiler().withArguments(m32args);
                gccToolChain.getcCompiler().withArguments(m32args);
                gccToolChain.getObjcCompiler().withArguments(m32args);
                gccToolChain.getObjcppCompiler().withArguments(m32args);
                gccToolChain.getLinker().withArguments(m32args);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 20K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/AvailableToolChains.java

            }
    
            public File getLinker() {
                return getCCompiler();
            }
    
            public File getStaticLibArchiver() {
                return find("ar");
            }
    
            public abstract File getCppCompiler();
    
            public abstract File getCCompiler();
    
            @Override
            public String getUnitTestPlatform() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 41.6K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/SelectiveCompiler.java

                    return new RecompilationNotNecessary(previousCompilationData, recompilationSpec);
                }
                try {
                    WorkResult result = cleaningCompiler.getCompiler().execute(spec);
                    result = recompilationSpecProvider.decorateResult(recompilationSpec, previousCompilationData, result);
                    return result.or(workResult);
                } finally {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/NativeBinarySpec.java

         *
         * Valid for {@link SharedLibraryBinarySpec}, {@link StaticLibraryBinarySpec} and
         * {@link NativeExecutableBinarySpec} when the 'c' plugin is applied.
         */
        PreprocessingTool getcCompiler();
    
        /**
         * The configuration of the C++ compiler used when compiling C++ sources for this binary.
         *
         * Valid for {@link SharedLibraryBinarySpec}, {@link StaticLibraryBinarySpec} and
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/AbstractNativeBinarySpec.java

            return staticLibArchiver;
        }
    
        @Override
        public Tool getAssembler() {
            return assembler;
        }
    
        @Override
        public PreprocessingTool getcCompiler() {
            return cCompiler;
        }
    
        @Override
        public PreprocessingTool getCppCompiler() {
            return cppCompiler;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/api/internal/project/taskfactory/AnnotationProcessingTasks.java

                this.CFlags = CFlags;
                this.dns = dns;
                this.URL = URL;
                this.a = a;
                this.b = b;
            }
    
            @Input
            public String getcCompiler() {
                return cCompiler;
            }
    
            @Input
            public String getCFlags() {
                return CFlags;
            }
    
            @Input
            public String getDns() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 12 11:41:48 UTC 2022
    - 15.8K bytes
    - Viewed (0)
  8. platforms/jvm/scala/src/main/java/org/gradle/api/internal/tasks/scala/ZincScalaCompilerFactory.java

                }
            } else {
                COMPILER_CLASSLOADER_CACHE = new ClassLoaderCache(new URLClassLoader(new URL[]{}));
            }
        }
    
        static ZincScalaCompiler getCompiler(GlobalScopedCacheBuilderFactory globalScopedCacheBuilderFactory, HashedClasspath hashedScalaClasspath) {
            ScalaInstance scalaInstance;
            try {
                scalaInstance = getScalaInstance(hashedScalaClasspath);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:51:31 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  9. pkg/apis/admissionregistration/validation/validation.go

    	var allErrors field.ErrorList
    	var compiler plugincel.Compiler // composition compiler is stateful, create one lazily per policy
    	getCompiler := func() plugincel.Compiler {
    		if compiler == nil {
    			needsComposition := len(spec.Variables) > 0
    			compiler = createCompiler(needsComposition, opts.strictCostEnforcement)
    		}
    		return compiler
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  10. testing/architecture-test/src/changes/archunit-store/public-api-methods-return-allowed-types.txt

    Method <org.gradle.api.tasks.scala.ScalaCompile.setCompiler(org.gradle.language.base.internal.compile.Compiler)> has arguments/return type org.gradle.language.base.internal.compile.Compiler that is not Gradle public API or primitive or built-in JDK classes or Kotlin classes in (ScalaCompile.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:21:31 UTC 2024
    - 91.3K bytes
    - Viewed (0)
Back to top