Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 782 for compilation$ (0.28 sec)

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

                    """#if swift(>=6.0)
                            XCTFail("Compilation unit compiled with Swift 6+ instead of Swift 5.x");
                        #elseif swift(>=5.0)
                            // Do nothing
                        #else
                            XCTFail("Compilation unit compiled with Swift 4- instead of Swift 5.x");
                        #endif
                    """)
            ]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/internal/passes/clustering_passes.h

    CreateTPUClusterFormationPass(bool strict_clusters = false);
    
    // Creates a pass that extracts outside compilation (Host ops inside device
    // cluster) at head/tail of Device cluster to run before/after XLA computation.
    std::unique_ptr<mlir::OperationPass<mlir::ModuleOp>>
    CreateExtractHeadTailOutsideCompilationPass();
    
    // Creates a pass that extract outside compilation (Host ops inside cevice
    // cluster) ops to a separate parallel_execute region to run on CPU.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 02:01:13 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheFeatureFlagsIntegrationTest.groovy

            then:
            configurationCache.assertStateStored()
            outputContains("Groovy compilation avoidance is an incubating feature")
    
            when:
            configurationCacheRun("compileGroovy", "--rerun-tasks")
    
            then:
            configurationCache.assertStateLoaded()
            outputContains("Groovy compilation avoidance is an incubating feature")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. test/fixedbugs/issue24693.dir/b.go

    // a.T.m instead of b.T.m.
    func F1(i interface{ m() }) { i.m() }
    
    // The interface method calling convention depends on interface method
    // sets being sorted in the same order across compilation units.  In
    // the test case below, at the call to b.F2(b.T{}) in c.go, the
    // interface method set is sorted as { a.m(); b.m() }.
    //
    // However, while compiling package b, its package path is set to "",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 10 00:06:06 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  5. platforms/jvm/scala/src/main/java/org/gradle/api/tasks/scala/ScalaDoc.java

            return super.getSource();
        }
    
        /**
         * Returns the compilation outputs needed by Scaladoc filtered to include <a href="https://docs.scala-lang.org/scala3/guides/tasty-overview.html">TASTy</a> files.
         * <p>
         * NOTE: This is only useful with Scala 3 or later. Scala 2 only processes source files.
         * </p>
         * @return the compilation outputs produced from the sources
         * @since 7.3
         */
        @InputFiles
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/CrossTaskGroovyJavaJointIncrementalCompilationIntegrationTest.groovy

        boolean useJar = false
    
        def setup() {
            configureGroovyIncrementalCompilation()
        }
    
        @Issue("https://github.com/gradle/gradle/issues/22531")
        def 'incremental compilation does not fail on api change referenced via static property when affected class is #bCompileStatic#bSuffix'() {
            given:
            // A is a private dependency of B1 and B1 is referenced in E1.isCacheEnabled through inheritance.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/GradleKotlinDslIntegrationTest.kt

            )
        }
    
        @Test
        fun `given a buildscript block compilation error, it reports correct error location`() {
    
            assertCorrectLocationIsReportedForErrorIn("buildscript")
        }
    
        @Test
        fun `given a plugins block compilation error, it reports correct error location`() {
    
            assertCorrectLocationIsReportedForErrorIn("plugins")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 18:26:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/CompilationFailedException.java

        }
    
        public CompilationFailedException(@Nullable ApiCompilerResult compilerPartialResult) {
            super("Compilation failed; see the compiler error output for details.");
            this.compilerPartialResult = compilerPartialResult;
        }
    
        public CompilationFailedException(int exitCode) {
            super(String.format("Compilation failed with exit code %d; see the compiler error output for details.", exitCode));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. platforms/jvm/scala/src/integTest/groovy/org/gradle/scala/environment/JreJavaHomeScalaIntegrationTest.groovy

        @Rule public final ZincScalaCompileFixture zincScalaCompileFixture = new ZincScalaCompileFixture(executer, temporaryFolder)
    
        @Requires(IntegTestPreconditions.BestJreAvailable)
        def "scala java cross compilation works when JAVA_HOME is set to JRE"() {
            given:
            def jreJavaHome = AvailableJavaHomes.bestJre
            file("src/main/scala/org/test/JavaClazz.java") << """
                        package org.test;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/jpms/compile/JavaModuleCompileIntegrationTest.groovy

            when:
            succeeds ':compileJava' // the internal class can be accessed
    
            then:
            javaClassFile('consumer/MainModule.class').exists()
        }
    
        def "fails module compilation for missing requires"() {
            given:
            publishJavaModule('moda')
            consumingModuleInfo()
            consumingModuleClass('moda.ModaClass')
    
            when:
            fails ':compileJava'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 6.7K bytes
    - Viewed (0)
Back to top