Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 620 for launch0 (0.19 sec)

  1. subprojects/core/src/main/java/org/gradle/initialization/BuildRequestMetaData.java

    import org.gradle.internal.service.scopes.ServiceScope;
    
    /**
     * A bunch of information about the request that launched the current build.
     */
    @ServiceScope(Scope.BuildSession.class)
    public interface BuildRequestMetaData {
    
        /**
         * Returns the meta-data about the client used to launch this build.
         */
        BuildClientMetaData getClient();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfrt/ir/mlrt/mlrt_ops.td

      }];
    }
    
    def AsyncOp: Mlrt_Op<"async", []> {
      let summary = "Launches a function asynchronously.";
    
      let description = [{
        Launch a function asynchronously.
    
        $args: a list of arguments to be passed.
        $callee: The function to be launched. Its return op must not have operands.
    
        $handle: This op returns a handle object that manages the context of the async execution.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 22:07:30 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/utils/xla_rewrite_util.h

        mlir::tf_device::ParallelExecuteOp old_parallel_execute,
        mlir::tf_device::ParallelExecuteOp* new_parallel_execute);
    
    // Wraps single op in `tf_device.launch` for explicit device assignment.
    mlir::tf_device::LaunchOp WrapOpInLaunch(mlir::OpBuilder* builder,
                                             mlir::Location loc,
                                             mlir::Operation* op,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. src/go/doc/testdata/benchmark.go

    func (b *B) run() BenchmarkResult {
    	go b.launch()
    	<-b.signal
    	return b.result
    }
    
    // launch launches the benchmark function. It gradually increases the number
    // of benchmark iterations until the benchmark runs for a second in order
    // to get a reasonable measurement. It prints timing information in this form
    //		testing.BenchmarkHello	100000		19 ns/op
    // launch is run by the fun function as a separate goroutine.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 02 02:28:27 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/utils/xla_rewrite_util_test.cc

      mlir::OpBuilder builder(&context);
      auto loc = cluster->getLoc();
    
      // Wrap the cluster op into a Launch op
      auto launch_op = tensorflow::WrapOpInLaunch(&builder, loc, cluster, device);
    
      EXPECT_TRUE(llvm::isa<mlir::tf_device::LaunchOp>(launch_op));
      launch_op->erase();
    }
    
    }  // namespace
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 26 09:37:10 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/internal/connection/FastFallbackExchangeFinder.kt

        var firstException: IOException? = null
        try {
          while (tcpConnectsInFlight.isNotEmpty() || routePlanner.hasNext()) {
            if (routePlanner.isCanceled()) throw IOException("Canceled")
    
            // Launch a new connection if we're ready to.
            val now = taskRunner.backend.nanoTime()
            var awaitTimeoutNanos = nextTcpConnectAtNanos - now
            var connectResult: ConnectResult? = null
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/extract_tpu_copy_with_dynamic_shape_op.mlir

    // Test that extract TPUCopyWithDynamicShape from host launch to device launch.
    
    module attributes {tf.devices = {"/job:localhost/replica:0/task:0/device:COMPOSITE:0", "/job:localhost/replica:0/task:0/device:CPU:0", "/job:localhost/replica:0/task:0/device:TPU:0", "/job:localhost/replica:0/task:0/device:TPU_SYSTEM:0"}} {
      // CHECK-LABEL: func @valid_copy_op_in_replicated_host
    
      // CHECK: "tf_device.launch"
      // CHECK-SAME: "TPU_REPLICATED_HOST_0"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 4.9K bytes
    - Viewed (0)
Back to top