Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 723 for Compilation (0.17 sec)

  1. Development.md

    E.g. `--stacktrace` for a compilation error is not helpful.
    
    To influence the generic suggestions Gradle displays, the NonGradleCause interface was introduced.
    If an exception implements this interface, Gradle will not display the `--stacktrace` option.
    
    Another more targeted interface is `CompilationFailedIndicator`.
    This interface is used to indicate that the exception is caused by a compilation failure. 
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 22:54:40 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. src/debug/dwarf/entry.go

    	cu           *Entry // current compilation unit
    }
    
    // Reader returns a new Reader for [Data].
    // The reader is positioned at byte offset 0 in the DWARF “info” section.
    func (d *Data) Reader() *Reader {
    	r := &Reader{d: d}
    	r.Seek(0)
    	return r
    }
    
    // AddressSize returns the size in bytes of addresses in the current compilation
    // unit.
    func (r *Reader) AddressSize() int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 30.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/compilability_check_util.h

        bool allow_string_consts = true;
    
        // Whether to allow the compilation of CollectiveReduceV2Op.
        bool allow_collective_reduce_v2 = true;
    
        // Whether to allow the compilation of WhereOp.
        bool allow_where_op = true;
    
        // Whether to allow the compilation of UniqueOp. Compilation of the UniqueOp
        // generates output with bounded dynamic shape that may cause failures with
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  4. 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)
  5. tensorflow/compiler/jit/extract_outside_compilation_pass_test.cc

    };
    
    TEST_F(ExtractOutsideCompilationForFunctionTest, Basic) {
      // Build the XLA computation func.
      // "const0"
      // "identity0" = "const0" (outside compilation cluster "0")
      // "identity1" = "identity0" (outside compilation cluster "1")
      // "identity2" = "identity1"
      FunctionDefLibrary fdl;
      {
        tensorflow::Scope s = tensorflow::Scope::NewRootScope();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 41K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top