Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 129 for ENTER (0.04 sec)

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

          afe.initCause(ie);
          throw afe;
        }
      }
    
      /**
       * Spin-waits up to the specified number of milliseconds for the given thread to enter a wait
       * state: BLOCKED, WAITING, or TIMED_WAITING.
       */
      void waitForThreadToEnterWaitState(Thread thread, long timeoutMillis) {
        long startTime = System.nanoTime();
        for (; ; ) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.h

                         absl::flat_hash_set<Operation*> last_writes);
    
      // Enters a sequence of ops that have the same parallel id. This converts
      // stack state to per_resource_access_info_.
      void Enter();
    
      // Exits a sequence of ops that have the same parallel id. This converts
      // per_resource_access_info_ to stack state.
      void Exit();
    
      // Steps down one parallel nesting level (i.e. increase parallel id size
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  3. src/internal/trace/event/go122/event.go

    	EvGoBlock             // goroutine blocks [timestamp, reason, stack ID]
    	EvGoUnblock           // goroutine is unblocked [timestamp, goroutine ID, goroutine seq, stack ID]
    	EvGoSyscallBegin      // syscall enter [timestamp, P seq, stack ID]
    	EvGoSyscallEnd        // syscall exit [timestamp]
    	EvGoSyscallEndBlocked // syscall exit and it blocked at some point [timestamp]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  4. src/os/signal/signal_cgo_test.go

    	// entering the read.
    	b = make([]byte, 1)
    	_, err = pty.Read(b)
    	if err != nil {
    		t.Fatalf("error reading from child: %v", err)
    	}
    
    	// Give the program time to enter the read call.
    	// It doesn't matter much if we occasionally don't wait long enough;
    	// we won't be testing what we want to test, but the overall test
    	// will pass.
    	time.Sleep(pause)
    
    	t.Logf("Sending ^Z...")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 10:09:15 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/util/concurrent/JSR166TestCase.java

          afe.initCause(ie);
          throw afe;
        }
      }
    
      /**
       * Spin-waits up to the specified number of milliseconds for the given thread to enter a wait
       * state: BLOCKED, WAITING, or TIMED_WAITING.
       */
      void waitForThreadToEnterWaitState(Thread thread, long timeoutMillis) {
        long startTime = System.nanoTime();
        for (; ; ) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  6. src/net/net_test.go

    				t.Fatal("should fail")
    			}
    
    			// Note: we cannot ensure that a subsequent Dial does not succeed, because
    			// we do not in general have any guarantee that ln.Addr is not immediately
    			// reused. (TCP sockets enter a TIME_WAIT state when closed, but that only
    			// applies to existing connections for the port — it does not prevent the
    			// port itself from being used for entirely new connections in the
    			// meantime.)
    		})
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 21:04:44 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. cni/README.md

    Node Agent requires privileged node permissions, and will require allow-listing in constrained environments that block privileged workloads by default. If using sidecar repair mode or ambient mode, the node agent additionally needs permissions to enter pod network namespaces and perform networking configuration in them. If either sidecar repair or ambient mode are enabled, on startup the container will drop all Linux capabilities via (`drop:ALL`), and re-add back the ones sidecar repair/ambient explicitly...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_executor.cc

    }
    
    //===----------------------------------------------------------------------===//
    // tf_executor.Enter
    //===----------------------------------------------------------------------===//
    
    // Default number for the parallel_iterations attributes on Enter nodes.
    static constexpr int kDefaultParallelIterations = 10;
    
    void EnterOp::print(OpAsmPrinter &p) {
      p << ' ';
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/README.md

        ./gradlew serveDocs -PquickDocs
    
    The flag `-PquickDocs` disables some slow documentation tasks, like creating the DSL reference or the single page user manual PDF or HTML.
    This will automatically enter continuous build and rebuild the documentation when you make changes. It takes 30-40 seconds to rebuild the documentation in "quick mode".
    
    If you really want to generate just the user manual, you can run:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 21:49:03 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/tfg-to-tfe.cc

        return success();
      }
    };
    
    class ConvertEnterOp : public ConversionPattern {
     public:
      explicit ConvertEnterOp(MLIRContext *context)
          : ConversionPattern("tfg.Enter", PatternBenefit(1), context) {}
    
      LogicalResult matchAndRewrite(
          Operation *op, llvm::ArrayRef<Value> operands,
          ConversionPatternRewriter &rewriter) const final {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 21.2K bytes
    - Viewed (0)
Back to top