Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 884 for Forked (0.19 sec)

  1. android/guava-tests/test/com/google/common/util/concurrent/CycleDetectingLockFactoryTest.java

      private static class LockingThread extends Thread {
        final CountDownLatch locked = new CountDownLatch(1);
        final CountDownLatch finishLatch = new CountDownLatch(1);
        final Lock lock;
    
        LockingThread(Lock lock) {
          this.lock = lock;
        }
    
        @Override
        public void run() {
          lock.lock();
          try {
            locked.countDown();
            finishLatch.await(1, TimeUnit.MINUTES);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/util/concurrent/CycleDetectingLockFactoryTest.java

      private static class LockingThread extends Thread {
        final CountDownLatch locked = new CountDownLatch(1);
        final CountDownLatch finishLatch = new CountDownLatch(1);
        final Lock lock;
    
        LockingThread(Lock lock) {
          this.lock = lock;
        }
    
        @Override
        public void run() {
          lock.lock();
          try {
            locked.countDown();
            finishLatch.await(1, TimeUnit.MINUTES);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/flags.cc

               &mark_for_compilation_flags->tf_xla_min_cluster_size,
               "Minimum number of operators in an XLA compilation. Ignored for "
               "operators placed on an XLA device or operators explicitly marked "
               "for compilation."),
          Flag("tf_xla_max_cluster_size",
               &mark_for_compilation_flags->tf_xla_max_cluster_size,
               "Maximum number of operators in an XLA compilation."),
          Flag(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/mark_ops_for_outside_compilation.mlir

      }) {allow_soft_placement = true, num_cores_per_replica = 1, topology =  "", device_assignment =  []} : () -> tensor<i32>
      func.return %0 : tensor<i32>
    }
    
    // Test that operations inside tf.IfRegion op are corrected marked for outside
    // compilation.
    
    // CHECK-LABEL: func @ops_inside_tf_if_outside_compiled
    func.func @ops_inside_tf_if_outside_compiled(%arg0: tensor<i1>, %arg1: tensor<!tf_type.string>) -> tensor<f32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 16:22:32 UTC 2024
    - 29.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.cc

    bool TensorFlowDialect::CanDuplicate(Operation *op) {
      // If the op is marked with the cannot duplicate trait, it cannot be
      // duplicated.
      if (op->hasTrait<OpTrait::TF::CannotDuplicate>()) return false;
    
      // If the op has no memory side effects, it can be duplicated.
      if (isMemoryEffectFree(op)) return true;
    
      // If the op is marked stateless using the `is_stateless` attribute, that
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/javadoc/JavadocIntegrationTest.groovy

            run "javadoc"
            then:
            executedAndNotSkipped(":javadoc")
    
            when: "running the task the second time after adding a custom option, it is executed and succeeds and NOT marked UP-TO-DATE"
            buildFile.text = """
                task javadoc(type: Javadoc) {
                    destinationDir = file("build/javadoc")
                    source "src/main/java"
                    options {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 06:04:19 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  7. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/impl/DirectorySnapshotter.java

        }
    
        /**
         * Snapshots a directory, reusing existing previously known snapshots.
         *
         * Follows symlinks and includes them in the returned snapshot.
         * Snapshots of followed symlinks are marked with {@link AccessType#VIA_SYMLINK}.
         *
         * @param absolutePath The absolute path of the directory to snapshot.
         * @param predicate A predicate that determines which files to include in the snapshot.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 24.4K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DaemonStateCoordinator.java

    /**
     * A tool for synchronising the state amongst different threads.
     *
     * This class has no knowledge of the Daemon's internals and is designed to be used internally by the daemon to coordinate itself and allow worker threads to control the daemon's busy/idle status.
     *
     * This is not exposed to clients of the daemon.
     */
    public class DaemonStateCoordinator implements Stoppable, DaemonStateControl {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/g3doc/tf_dialects.md

    outputs,`true_output`,`false_output`. The`data`input is copied
    to`true_output`if`predicate`evaluates to true otherwise it is copied
    to`false_output`. The other output is marked as dead. If one of the inputs or a
    control token is dead, then all of the outputs are marked as dead as well.
    
    ### `tf_executor.SwitchN` Operation
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 13 16:33:28 UTC 2021
    - 16K bytes
    - Viewed (0)
  10. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/prettyPrintResults.kt

        return buildString { recurse(languageTreeElement, 0) }
    }
    
    
    private
    fun SourceData.prettyPrint(): String =
        buildString {
            // We add +1 here as that was how the original implementation worked, just to avoid fixing all test data:
            append("indexes: ${indexRange.start}..${indexRange.endInclusive + 1}, ")
            append("line/column: ${lineRange.first}/$startColumn..${lineRange.last}/${endColumn + 1}, ")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 22:06:18 UTC 2024
    - 10.2K bytes
    - Viewed (0)
Back to top