Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 839 for launch0 (0.26 sec)

  1. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/AbstractDaemonLifecycleSpec.groovy

     */
    
    package org.gradle.launcher.daemon
    
    import org.gradle.integtests.fixtures.AvailableJavaHomes
    import org.gradle.integtests.fixtures.daemon.DaemonContextParser
    import org.gradle.integtests.fixtures.daemon.DaemonIntegrationSpec
    import org.gradle.integtests.fixtures.daemon.DaemonLogsAnalyzer
    import org.gradle.integtests.fixtures.executer.GradleHandle
    import org.gradle.launcher.daemon.context.DaemonContext
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:32:55 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/tf_device_passes.td

    def LaunchToDeviceAttributePass : Pass<"tf-launch-to-device-attribute", "mlir::func::FuncOp"> {
      let summary = "Hoists and annotates device launch inner ops with associated device attribute.";
    
      let description = [{
        This pass hoists a `tf_device.launch` body and assigns a `device` attribute
        to each TensorFlow dialect op in the body based on the `device` attribute on
        the `tf_device.launch`. If a TensorFlow dialect op already has a device
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r68/CompositeBuildTaskExecutionCrossVersionSpec.groovy

            when:
            withConnection { connection ->
                TestLauncher launcher = connection.newTestLauncher().withTests(descriptor)
                collectOutputs(launcher)
                launcher.run()
            }
    
            then:
            outputContains("BUILD SUCCESSFUL")
        }
    
        def "can launch test with test launcher via test filter targeting a specific task"() {
            setup:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_device.cc

    }
    
    //===----------------------------------------------------------------------===//
    // tf_device.launch
    //===----------------------------------------------------------------------===//
    
    // Checks if a tf_device.launch wraps a single operation and the single
    // operation results are perfectly forwarded to the launch return.
    bool LaunchOp::WrapsSingleOp() { return BlockWrapsSingleOp(&GetBody()); }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

        if (&op != device_cluster.GetBody().getTerminator()) {
          op.moveBefore(after_op_r);
        }
      }
    }
    
    // Move ops in the tmp host launch op to new host launch op
    void MoveTmpLaunchOpToNewLaunchOp(mlir::tf_device::LaunchOp tmp_host_launch_op,
                                      Operation* after_op_host_cluster) {
      for (Operation& op :
           llvm::make_early_inc_range(tmp_host_launch_op.GetBody())) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/replicate_to_island.cc

        }
    
        if (!devices.has_value()) return WalkResult::advance();
    
        // Map aliased devices to explicit devices based on replica.
        if (auto launch = dyn_cast<tf_device::LaunchOp>(op))
          if (auto device_by_replica = devices.value().get(launch.getDevice()))
            launch->setAttr(
                kDeviceAttr,
                device_by_replica.cast<ArrayAttr>()[replica_id].cast<StringAttr>());
    
        return WalkResult::advance();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jul 24 21:01:40 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-classworlds/1.2-alpha-7/plexus-classworlds-1.2-alpha-7.jar

    static java.util.HashMap instances; private org.codehaus.plexus.classworlds.launcher.Configurator config; public static ConfiguratorAdapter getInstance(org.codehaus.plexus.classworlds.launcher.Configurator, Launcher); public static ConfiguratorAdapter getInstance(org.codehaus.plexus.classworlds.launcher.Configurator, ClassWorld); private void ConfiguratorAdapter(org.codehaus.plexus.classworlds.launcher.Configurator, Launcher); private void ConfiguratorAdapter(org.codehaus.plexus.classworlds.launcher.Configurator,...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 41.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/verify_no_outside_compilation_markers_pass.cc

        if (IsDeviceClusterOp(*op) && HasChildLaunchDeviceOp(*op)) {
          std::string launch_error =
              absl::StrCat("Node `", op->getName().getStringRef().str(), "` ",
                           "is a launch op which should have been removed by "
                           "outside compilation");
    
          op->emitError() << launch_error;
          LOG(ERROR) << launch_error;
          return WalkResult::interrupt();
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 22 19:52:08 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/TestLauncher.java

         * If the debugger is not present then the test execution will fail.
         * <p>
         * Invoking this method adjusts the test task to launch only one JVM. More specifically, the parallel execution
         * gets disabled and the {@code forkEvery} property is set to 0.
         *
         * @param port the target port where the test JVM expects the debugger
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/ProviderConnection.java

    import org.gradle.launcher.daemon.client.DaemonClientFactory;
    import org.gradle.launcher.daemon.client.NotifyDaemonAboutChangedPathsClient;
    import org.gradle.launcher.daemon.configuration.DaemonBuildOptions;
    import org.gradle.launcher.daemon.configuration.DaemonParameters;
    import org.gradle.launcher.daemon.context.DaemonRequestContext;
    import org.gradle.launcher.daemon.toolchain.DaemonJvmCriteria;
    import org.gradle.launcher.exec.BuildActionExecutor;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 30.5K bytes
    - Viewed (0)
Back to top