Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 284 for Compilation (0.2 sec)

  1. src/debug/dwarf/line.go

    	r.updateFile()
    }
    
    // Files returns the file name table of this compilation unit as of
    // the current position in the line table. The file name table may be
    // referenced from attributes in this compilation unit such as
    // [AttrDeclFile].
    //
    // Entry 0 is always nil, since file index 0 represents "no file".
    //
    // The file name table of a compilation unit is not fixed. Files
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/AbstractSourceIncrementalCompilationIntegrationTest.groovy

            source("class A {}")
            file("java/A.${languageName}") << "class A {}"
    
            when:
            fails language.compileTaskName
            then:
            failure.assertHasCause("Compilation failed")
        }
    
        @Issue("GRADLE-3426")
        def "supports Java 1.2 dependencies"() {
            source "class A {}"
    
            buildFile << """
                ${mavenCentralRepository()}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 16.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/common_caching_problems.adoc

    [[java_version_tracking]]
    == Java version tracking
    
    Gradle tracks only the major version of Java as an input for compilation and test execution.
    Currently, it does _not_ track the vendor nor the minor version.
    Still, the vendor and the minor version may influence the bytecode produced by compilation.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/tasks/AbstractNativeCompileTask.java

            return loggingCompiler.execute(spec);
        }
    
        protected abstract NativeCompileSpec createCompileSpec();
    
        /**
         * The tool chain used for compilation.
         *
         * @since 4.7
         */
        @Internal
        public Property<NativeToolChain> getToolChain() {
            return toolChain;
        }
    
        /**
         * The platform being compiled for.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/kernels/xla_ops.cc

      xla::PjRtLoadedExecutable* pjrt_executable;  // Not owned.
    
      // Note that here we assume the shape of the variables don't change between
      // compilation and execution. The locks on the variables are released before
      // compilation so that we can achieve parallel compilation of different batch
      // sizes during warm-up.
      {
        // Creating a scope so that the locks on the variables are released when
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 22:46:36 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaAnnotationProcessingIntegrationTest.groovy

                }
            """
    
            when:
            fails('compileJava')
    
            then:
            failureCauseContains('Compilation failed')
            file('build/classes/java/main/TestAppHelper.class').assertDoesNotExist()
            operations[':compileJava'].failure.contains('Compilation failed')
        }
    
        def "empty processor path overrides processors in the compile classpath, and no deprecation warning is emitted"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  7. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/integtests/JavaProjectIntegrationTest.groovy

            ExecutionFailure failure = executer.withTasks("build").runWithFailure()
    
            failure.assertHasDescription("Execution failed for task ':compileJava'.")
            failure.assertHasCause("Compilation failed; see the compiler error output for details.")
        }
    
        @Test
        void testCompilationFailureBreaksBuild() {
            TestFile buildFile = testFile("build.gradle")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 20:01:36 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/tf_device_passes.td

        }
        ```
      }];
    
      let constructor = "TFDevice::CreateDeviceAttributeToLaunchPass()";
    }
    
    def VerifyNoOutsideCompilationMarkersPass : Pass<"verify-no-outside-compilation-markers", "mlir::func::FuncOp"> {
      let summary = "Verifies that after Outside Compilation passes complete, there are no more _xla_outside_compilation attributes and no tf_device.launch ops.";
    
      let description = [{
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/build_xla_ops_pass.cc

                        if (n->IsSend() || n->IsRecv() || n->IsControlFlow()) {
                          return false;
                        }
    
                        // Only compile nodes that are marked for compilation by the
                        // compilation-marking pass (via 'attr_name').
                        return IsXlaCompiledKernel(*n);
                      });
    
      bool lazy_compilation_enabled =
          enable_lazy_compilation_
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/DefaultScriptCompilationHandler.java

            throw ((InternalProblems) getProblemsService()).getInternalReporter().throwing(builder -> builder
                .id(TextUtil.screamingSnakeToKebabCase("compilation-failed"), "Groovy DSL script compilation problem", GradleCoreProblemGroup.compilation().groovyDsl())
                .contextualLabel(message)
                .lineInFileLocation(source.getFileName(), lineNumber)
                .severity(Severity.ERROR)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 20.6K bytes
    - Viewed (0)
Back to top