Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 392 for Compilation (0.2 sec)

  1. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/Swift3Test.groovy

                    """#if swift(>=4.0)
                            XCTFail("Compilation unit compiled with Swift 4+ instead of Swift 3.x");
                        #elseif swift(>=3.0)
                            // Do nothing
                        #else
                            XCTFail("Compilation unit compiled with Swift 2- instead of Swift 3.x");
                        #endif
                    """)
            ]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. test/fixedbugs/bug304.go

    // compile
    
    // Copyright 2010 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Caused a gccgo crash on compilation.
    // bug304.go: In function ‘p.f’:
    // bug304.go:15:2: internal compiler error: in copy_tree_r, at tree-inline.c:4114
    
    package p
    type S struct {
    	v interface{}
    }
    func g(e interface{}) { }
    func f(s S) {
    	g(s.v.(*int))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 432 bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/jpms/compile/AbstractMultipleLocalJavaModulesCompileIntegrationTest.groovy

            when:
            succeeds ':compileJava' // the internal class can be accessed
    
            then:
            javaClassFile('consumer/MainModule.class').exists()
        }
    
        def "fails module compilation for missing requires"() {
            given:
            producingModuleInfo('exports producer')
            producingModuleClass()
            consumingModuleInfo()
            consumingModuleClass('producer.ProducerClass')
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  4. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/environment/JreJavaHomeJavaIntegrationTest.groovy

    import org.gradle.test.preconditions.UnitTestPreconditions
    
    class JreJavaHomeJavaIntegrationTest extends AbstractIntegrationSpec {
    
        @Requires(IntegTestPreconditions.BestJreAvailable)
        def "java compilation works in forking mode = #forkMode when JAVA_HOME is set to JRE"() {
            given:
            def jreJavaHome = AvailableJavaHomes.bestJre
            writeJavaTestSource("src/main/java");
            file('build.gradle') << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/SelectiveCompiler.java

    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    import java.io.File;
    import java.util.Collection;
    import java.util.Objects;
    
    /**
     * A compiler that selects classes for compilation. It also handles restore of output state in case of a compile failure.
     */
    class SelectiveCompiler<T extends JavaCompileSpec> implements org.gradle.language.base.internal.compile.Compiler<T> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  6. platforms/software/platform-base/src/main/java/org/gradle/language/base/internal/model/BinarySourceTransformations.java

     * - Source sets should be able to depend on other source sets, resulting in the correct task dependencies and inputs
     * - Joint-compilation should only be used in the case where sources are co-dependent.
     *
     * Currently we use joint-compilation when:
     * - We have a language transform that supports joint-compilation
     * - Binary is flagged with {@link BinarySpecInternal#hasCodependentSources()}.
     */
    public class BinarySourceTransformations {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/java/crossCompilation/kotlin/settings.gradle.kts

    rootProject.name = "cross-compilation"...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 39 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/groovy/crossCompilation/groovy/settings.gradle

    rootProject.name = 'cross-compilation'...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 39 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/java/crossCompilation/groovy/settings.gradle

    rootProject.name = 'cross-compilation'...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 39 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/performance/resolveAtBuildTime/tests/copyFiles.out

    >> Compilation deps: [commons-lang3-3.11.jar]...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 46 bytes
    - Viewed (0)
Back to top