Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 782 for compilation$ (0.4 sec)

  1. platforms/jvm/language-java/src/main/java/org/gradle/api/tasks/compile/JavaCompile.java

            };
        }
    
        /**
         * The previous compilation analysis. Internal use only.
         *
         * @since 7.1
         */
        @OutputFile
        protected File getPreviousCompilationData() {
            if (previousCompilationDataFile == null) {
                previousCompilationDataFile = new File(getTemporaryDirWithoutCreating(), "previous-compilation-data.bin");
            }
            return previousCompilationDataFile;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:33:35 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  2. test/fixedbugs/bug208.go

    // license that can be found in the LICENSE file.
    
    package main
    
    type	T struct
    {
    	f int;
    }
    
    // 6g used to get confused by the f:1 above
    // and allow uses of f that would be silently
    // dropped during the compilation.
    var _ = f;	// ERROR "undefined"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 04:49:30 UTC 2012
    - 391 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/jvm/building_java_projects.adoc

     * the source files and where they're located
     * the compilation classpath, including any required dependencies (via Gradle <<dependency_management_terminology.adoc#sub:terminology_configuration,configurations>>)
     * where the compiled class files are placed
    
    You can see how these relate to one another in this diagram:
    
    .Source sets and Java compilation
    image::java-sourcesets-compilation.png[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top