Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 44 of 44 for unblocksig (0.24 sec)

  1. guava/src/com/google/common/util/concurrent/AbstractFuture.java

              interrupted = true;
            }
          }
        } finally {
          if (interrupted) {
            Thread.currentThread().interrupt();
          }
        }
      }
    
      /** Unblocks all threads and runs all listeners. */
      private static void complete(AbstractFuture<?> param, boolean callInterruptTask) {
        // Declare a "true" local variable so that the Checker Framework will infer nullness.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

    };
    
    // Removes the `mhlo.custom_call @shape_assertion` custom call which represents
    // an assertion that the first operand (`assert_what`) evaluates to `true`.
    // This is a temporary workaround for unblocking dynamic model conversion
    // because starting from version 7, in presence of shape polymorphism JAX will
    // emit stablehlo.custom_call @shape_assertion to verify at compile time that
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  3. src/net/http/h2_bundle.go

    // larger struct and have the Mutex and Cond's memory in the same
    // allocation.
    func (cw *http2closeWaiter) Init() {
    	*cw = make(chan struct{})
    }
    
    // Close marks the closeWaiter as closed and unblocks any waiters.
    func (cw http2closeWaiter) Close() {
    	close(cw)
    }
    
    // Wait waits for the closeWaiter to become closed.
    func (cw http2closeWaiter) Wait() {
    	<-cw
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  4. src/runtime/proc.go

    	if mp == &m0 {
    		// This is the main thread. Just wedge it.
    		//
    		// On Linux, exiting the main thread puts the process
    		// into a non-waitable zombie state. On Plan 9,
    		// exiting the main thread unblocks wait even though
    		// other threads are still running. On Solaris we can
    		// neither exitThread nor return from mstart. Other
    		// bad things probably happen on other platforms.
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top