Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 5,029 for cCompiler (0.24 sec)

  1. platforms/jvm/java-compiler-plugin/src/test/groovy/com/gradle/internal/compiler/java/listeners/ConstantsCollectorTest.groovy

     * limitations under the License.
     */
    
    package com.gradle.internal.compiler.java.listeners
    
    import com.gradle.internal.compiler.java.AbstractCompilerPluginTest
    import org.gradle.internal.compiler.java.TestCompiler
    import org.gradle.internal.compiler.java.listeners.constants.ConstantDependentsConsumer
    import org.gradle.test.precondition.Requires
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:06:26 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  2. platforms/jvm/language-groovy/src/test/groovy/org/gradle/api/internal/tasks/compile/NormalizingGroovyCompilerTest.groovy

    import spock.lang.Specification
    
    class NormalizingGroovyCompilerTest extends Specification {
        org.gradle.language.base.internal.compile.Compiler<GroovyJavaJointCompileSpec> target = Mock()
        DefaultGroovyJavaJointCompileSpec spec = new DefaultGroovyJavaJointCompileSpec()
        NormalizingGroovyCompiler compiler = new NormalizingGroovyCompiler(target)
    
        def setup() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/scripts/BuildScriptCompilationAndInstrumentation.java

            this.transformFactory = transformFactory;
        }
    
        @Override
        public abstract void visitIdentityInputs(InputVisitor visitor);
    
        /**
         * A compile operation. It should return a File where classes are compiled to.
         */
        protected abstract File compile(File workspace);
    
        /**
         * Provides a File where instrumented output will be written to.
         */
        protected abstract File instrumentedOutput(File workspace);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 10:23:24 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/DefaultJavaCompilerFactoryTest.groovy

            expect:
            def compiler = factory.create(TestForkingJavaCompileSpec)
            compiler instanceof ModuleApplicationNameWritingCompiler
            compiler.delegate instanceof AnnotationProcessorDiscoveringCompiler
            compiler.delegate.delegate instanceof NormalizingJavaCompiler
            compiler.delegate.delegate.delegate instanceof DaemonJavaCompiler
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/swift/SwiftPlatformToolProvider.java

    import org.gradle.internal.work.WorkerLeaseService;
    import org.gradle.language.base.internal.compile.CompileSpec;
    import org.gradle.language.base.internal.compile.Compiler;
    import org.gradle.language.base.internal.compile.CompilerUtil;
    import org.gradle.language.base.internal.compile.DefaultCompilerVersion;
    import org.gradle.language.base.internal.compile.VersionAwareCompiler;
    import org.gradle.nativeplatform.internal.CompilerOutputFileNamingSchemeFactory;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  6. src/cmd/go/go_test.go

    	tg.run("test", "-c", "-n", "p1")
    	tg.grepBothNot(`([\\/]compile|gccgo).* (-p main|-fgo-pkgpath=main).*p1\.go`, "should not have run compile -p main p1.go")
    	tg.grepStderr(`([\\/]compile|gccgo).* (-p p1|-fgo-pkgpath=p1).*p1\.go`, "should have run compile -p p1 p1.go")
    }
    
    // Issue 4104.
    func TestGoTestWithPackageListedMultipleTimes(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/swift/IncrementalSwiftCompiler.java

    public class IncrementalSwiftCompiler implements Compiler<SwiftCompileSpec> {
        private final Compiler<SwiftCompileSpec> compiler;
        private final TaskOutputsInternal outputs;
        private final CompilerOutputFileNamingSchemeFactory compilerOutputFileNamingSchemeFactory;
        private final Deleter deleter;
    
        public IncrementalSwiftCompiler(
            Compiler<SwiftCompileSpec> compiler,
            TaskOutputsInternal outputs,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/caching_java_projects.adoc

    For the example above this would mean the ABI extracted from the compile classpath would be unchanged, but the annotation processor classpath (because it's not treated with compile avoidance) would be different. Ultimately, the developer would end up having to recompile the application.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  9. platforms/jvm/language-jvm/src/main/java/org/gradle/api/internal/tasks/compile/daemon/AbstractIsolatedCompilerWorkerExecutor.java

            @Override
            public void execute() {
                Class<? extends Compiler<?>> compilerClass = Cast.uncheckedCast(ClassLoaderUtils.classFromContextLoader(getParameters().getCompilerClassName()));
                Compiler<?> compiler = instantiator.newInstance(compilerClass, getParameters().getCompilerInstanceParameters());
                setWorkResult(compiler.execute(Cast.uncheckedCast(getParameters().getCompileSpec())));
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 19 13:37:02 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    [[sec:library_dependencies]]
    == Library Dependencies
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
Back to top