Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for setcCompiler (0.19 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/PropertyAccessorTypeTest.groovy

            "getUrl"         | "isUrl"         | "setUrl"         | "url"
            "getURL"         | "isURL"         | "setURL"         | "URL"
            "getcCompiler"   | "iscCompiler"   | "setcCompiler"   | "cCompiler"
            "getCCompiler"   | "isCCompiler"   | "setCCompiler"   | "CCompiler"
            "getCppCompiler" | "isCppCompiler" | "setCppCompiler" | "cppCompiler"
            "getCPPCompiler" | "isCPPCompiler" | "setCPPCompiler" | "CPPCompiler"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/DefaultModelSchemaExtractorTest.groovy

            a.name == "a"
        }
    
        @Managed
        interface HasSingleCharFirstPartGetter {
            String getcCompiler()
            void setcCompiler(String cCompiler)
        }
    
        def "extraction of single char first camel-case part getter like getcCompiler() is javabeans compliant"() {
            when:
            def schema = store.getSchema(HasSingleCharFirstPartGetter)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 29.9K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
Back to top