Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 75 for VarLive (0.16 sec)

  1. android/guava/src/com/google/common/util/concurrent/InterruptibleTask.java

      /**
       * Any interruption that happens as a result of calling interruptTask will arrive before this
       * method is called. Complete Futures here.
       */
      abstract void afterRanInterruptiblySuccess(@ParametricNullness T result);
    
      /**
       * Any interruption that happens as a result of calling interruptTask will arrive before this
       * method is called. Complete Futures here.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Sep 29 21:34:48 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  2. src/runtime/cgo/asm_arm.s

    // fn is the PC of a func(a unsafe.Pointer) function.
    TEXT crosscall2(SB),NOSPLIT|NOFRAME,$0
    	SUB	$(8*9), R13 // Reserve space for the floating point registers.
    	// The C arguments arrive in R0, R1, R2, and R3. We want to
    	// pass R0, R1, and R3 to Go, so we push those on the stack.
    	// Also, save C callee-save registers R4-R12.
    	MOVM.WP	[R0, R1, R3, R4, R5, R6, R7, R8, R9, g, R11, R12], (R13)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. guava/src/com/google/common/util/concurrent/InterruptibleTask.java

      /**
       * Any interruption that happens as a result of calling interruptTask will arrive before this
       * method is called. Complete Futures here.
       */
      abstract void afterRanInterruptiblySuccess(@ParametricNullness T result);
    
      /**
       * Any interruption that happens as a result of calling interruptTask will arrive before this
       * method is called. Complete Futures here.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Sep 29 21:34:48 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/internal/http2/PushObserver.kt

     * connections should expect repetition of stream IDs.
     *
     * Return true to request cancellation of a pushed stream.  Note that this does not guarantee
     * future frames won't arrive on the stream ID.
     */
    interface PushObserver {
      /**
       * Describes the request that the server intends to push a response for.
       *
       * @param streamId server-initiated stream ID: an even number.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  5. src/cmd/doc/testdata/pkg.go

    	// Comment before VarOne.
    	VarOne   = 1
    	VarTwo   = 2 // Comment on line with VarTwo.
    	varThree = 3 // Comment on line with varThree.
    )
    
    // Var block where first entry is unexported.
    var (
    	varFour = 4
    	VarFive = 5
    	varSix  = 6
    )
    
    // Comment about exported function.
    func ExportedFunc(a int) bool {
    	// BUG(me): function body note
    	return true != false
    }
    
    // Comment about internal function.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:16:55 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  6. src/time/tick.go

    		// to avoid breaking old programs. See issue 21874.
    		return
    	}
    	stopTimer((*Timer)(unsafe.Pointer(t)))
    }
    
    // Reset stops a ticker and resets its period to the specified duration.
    // The next tick will arrive after the new period elapses. The duration d
    // must be greater than zero; if not, Reset will panic.
    func (t *Ticker) Reset(d Duration) {
    	if d <= 0 {
    		panic("non-positive interval for Ticker.Reset")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/DefaultFileWatcherProbeRegistry.java

            public enum State {
                /**
                 * Probe hasn't been armed yet.
                 */
                UNARMED,
    
                /**
                 * Probe file exists, waiting for event to arrive.
                 */
                ARMED,
    
                /**
                 * The expected event has arrived.
                 */
                TRIGGERED
            }
    
            private final File watchableHierarchy;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:38:01 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/work/DefaultConditionalExecutionQueue.java

            }
            executor.stop();
        }
    
        /**
         * ExecutionRunners process items from the queue until there are no items left, at which point it will either wait for
         * new items to arrive (if there are < max workers threads running) or exit, finishing the thread.
         */
        private class ExecutionRunner implements Runnable {
            @Override
            public void run() {
                try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ContinuousBuildToolingApiSpecification.groovy

            int waitingTimeInSeconds = usesNativeWatchers() ? 1 : 10
    
            // Wait for a little bit longer for unexpected file change events to arrive
            // https://github.com/gradle/gradle-private/issues/2976
            Thread.sleep(waitingTimeInSeconds * 1000)
        }
    
        private ExecutionOutput waitUntilOutputContains(Matcher<String> expectedMatcher) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/branchelim_test.go

    			c := testConfigArch(t, arch)
    			boolType := c.config.Types.Bool
    			intType := c.config.Types.Int32
    
    			// The control flow here is totally bogus,
    			// but a dead cycle seems like the only plausible
    			// way to arrive at a diamond CFG that is also a loop.
    			fun := c.Fun("entry",
    				Bloc("entry",
    					Valu("start", OpInitMem, types.TypeMem, 0, nil),
    					Valu("sb", OpSB, c.config.Types.Uintptr, 0, nil),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 24 15:51:15 UTC 2018
    - 5.2K bytes
    - Viewed (0)
Back to top