Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 508 for compiling (0.19 sec)

  1. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/logging/GroupedOutputFixtureTest.groovy

    settings\u001B[m\u001B[10D\u001B[1B\u001B[1A\u001B[1m> settings > Compiling /Users/daniel/gradle/gradle/build/tmp/teŝt files/BasicGroupedTaskLoggingFunctionalSpec/test/oww7k/settings.gradle into local compilation cache > Compiling settings file '/Users/daniel/gradle/gradle/build/tmp/teŝt files/BasicGroupedTaskLoggingFunctionalSpec/test/oww7k/settings.gradle' to cross build script cache\u001B[m\u001B[335D\u001B[1B\u001B[1A\u001B[1m> settings > Compiling /Users/daniel/gradle/gradle/build/tmp/teŝt files/Basic...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileToolchainIntegrationTest.groovy

            when:
            run(":compileJava", "--info")
    
            then:
            executedAndNotSkipped(":compileJava")
            outputContains("Compiling with toolchain '${curJvm.javaHome.absolutePath}'")
            outputContains("Compiling with JDK Java compiler API")
            outputDoesNotContain("Compiling with Java command line compiler")
            outputDoesNotContain("Started Gradle worker daemon")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/device_compilation_profiler.cc

      }
    
      // We avoid compiling clusters that have "gone megamorphic" i.e. have an
      // excessive amount of shape dynamism.
      if (it->second.is_megamorphic) {
        BroadcastOptimizationRemark(XlaOptimizationRemark::MEGAMORPHIC_FUNCTION,
                                    function.name())
            .IgnoreError();
        VLOG(2) << "Not compiling cluster " << function.name()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  4. test/fixedbugs/issue29870b.go

    // errorcheck
    
    // Copyright 2019 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.
    
    // Make sure we're compiling "_" functions at least enough
    // to get to an error which is generated during walk.
    
    package main
    
    func _() {
    	x := 7 // ERROR "declared and not used"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 357 bytes
    - Viewed (0)
  5. testing/soak/src/integTest/groovy/org/gradle/jvm/toolchain/JavaToolchainDownloadComplexProjectSoakTest.groovy

                    .withArgument("--info")
                    .run()
    
    
            then:
            result.plainTextOutput.matches("(?s).*Compiling with toolchain.*${DefaultJdkCacheDirectory.getInstallFolderName(jdkMetadata)}.*")
            result.plainTextOutput.matches("(?s).*Compiling with toolchain.*${DefaultJdkCacheDirectory.getInstallFolderName(otherJdkMetadata)}.*")
            otherJdkRepository.stop()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 16:09:18 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/pjrt_device_compiler_client.cc

    }
    
    absl::StatusOr<std::unique_ptr<xla::PjRtLoadedExecutable>>
    PjRtDeviceCompilerClient::BuildExecutable(
        const XlaCompiler::Options& options,
        const XlaCompiler::CompilationResult& result) {
      VLOG(2) << "Compiling to xla::PjRtLoadedExecutable.";
    
      TF_ASSIGN_OR_RETURN(auto executable,
                          client_->Compile(*result.computation,
                                           GetPjRtCompileOptions(options, result)));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/compile/CommandLineJavaCompilerForExecutableIntegrationTest.groovy

                    forkOptions.executable = "${TextUtil.normaliseFileSeparators(Jvm.current().getExecutable("javac").absolutePath)}"
                }
            """
        }
    
        @Override
        String logStatement() {
            "Compiling with Java command line compiler"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:39 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/xla_device_compiler_client.cc

    }  // namespace
    
    absl::StatusOr<std::unique_ptr<xla::LocalExecutable>>
    XlaDeviceCompilerClient::BuildExecutable(
        const XlaCompiler::Options& options,
        const XlaCompiler::CompilationResult& result) {
      VLOG(2) << "Compiling to xla::LocalExecutable.";
    
      std::vector<const xla::Shape*> argument_layouts =
          GetShapePointers(result.xla_input_shapes);
      xla::ExecutableBuildOptions build_options = GetExecutableBuildOptions(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/dependency_management_basics.adoc

    Dependencies in Gradle are grouped by *configurations*.
    
    - The `material` library is added to the `implementation` configuration, which is used for compiling and running _production_ code.
    - The `mockito-core` library is added to the `testImplementation` configuration, which is used for compiling and running _test_ code.
    
    NOTE: There are many more configurations available.
    
    == Viewing Project Dependencies
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:47:52 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-jvm-test-suite/src/main/java/org/gradle/api/testing/toolchains/internal/KotlinTestTestToolchain.java

     *
     * @since 8.5
     */
    abstract public class KotlinTestTestToolchain extends JUnitPlatformTestToolchain<KotlinTestToolchainParameters> {
        /**
         * The default version of KotlinTest to use for compiling and executing tests.
         */
        public static final String DEFAULT_VERSION = "1.9.23";
        private static final String GROUP_NAME = "org.jetbrains.kotlin:kotlin-test-junit5";
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 09:36:42 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top