Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 347 for Moon (0.04 sec)

  1. src/internal/weak/pointer.go

    The result of such a query may be observed as nil at any point after a
    weakly-pointed-to object becomes eligible for reclamation by the garbage
    collector.
    More specifically, weak pointers become nil as soon as the garbage collector
    identifies that the object is unreachable, before it is made reachable
    again by a finalizer.
    In terms of the C# language, these semantics are roughly equivalent to the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:13:25 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/base/Predicates.java

      }
    
      /**
       * Returns a predicate that evaluates to {@code true} if each of its components evaluates to
       * {@code true}. The components are evaluated in order, and evaluation will be "short-circuited"
       * as soon as a false predicate is found. It defensively copies the iterable passed in, so future
       * changes to it won't alter the behavior of this predicate. If {@code components} is empty, the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/invocation/BuildInvocationDetails.java

      * }
     * </pre>
     * @since 5.0
     */
    public interface BuildInvocationDetails {
    
        /**
         * The wall-clock time in millis that the build was started.
         *
         * The build is considered to have started as soon as the user, or some tool, initiated the build.
         * During continuous build, subsequent builds are timed from when changes are noticed.
         */
        long getBuildStartedTime();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 14 15:39:23 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/promise/promise.go

    	value   interface{}
    }
    
    var _ WriteOnce = &promise{}
    
    // NewWriteOnce makes a new thread-safe WriteOnce.
    //
    // If `initial` is non-nil then that value is Set at creation time.
    //
    // If a `Get` is waiting soon after the channel associated with the
    // `doneCtx` becomes selectable (which never happens for the nil
    // channel) then `Set(doneVal)` effectively happens at that time.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 21 19:19:31 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  5. src/cmd/go/internal/par/queue_test.go

    		<-unblock
    	})
    
    	<-started
    	idle := q.Idle()
    	select {
    	case <-idle:
    		t.Errorf("NewQueue(1) is marked idle while processing work.")
    	default:
    	}
    
    	close(unblock)
    	<-idle // Should be closed as soon as the Add callback returns.
    }
    
    func TestQueueBacklog(t *testing.T) {
    	const (
    		maxActive = 2
    		totalWork = 3 * maxActive
    	)
    
    	q := NewQueue(maxActive)
    	t.Logf("q = NewQueue(%d)", maxActive)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 24 21:08:46 UTC 2020
    - 1.4K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/buildevents/BuildStartedTime.java

    /**
     * The holder for when the build is considered to have started.
     *
     * This is primarily used to provide user feedback on how long the “build” took (see BuildResultLogger).
     *
     * The build is considered to have started as soon as the user, or some tool, initiated the build.
     * During continuous build, subsequent builds are timed from when changes are noticed.
     */
    public class BuildStartedTime {
    
        private volatile long startTime;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 13 03:50:47 UTC 2017
    - 1.4K bytes
    - Viewed (0)
  7. android/guava-testlib/test/com/google/common/collect/testing/MyTester.java

     * annotations even on JUnit 3 tests.
     *
     * TODO(b/225350400): Remove @Ignore, which doesn't seem like it should be necessary and probably
     * soon won't be.
     */
    @SuppressWarnings("JUnit4ClassUsedInJUnit3")
    @Ignore
    public final class MyTester extends AbstractTester<@Nullable Void> {
      static int timesTestClassWasRun = 0;
    
      public void testNothing() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 17 14:48:57 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/waitgroup/waitgroup_test.go

    		go func(i int) {
    			wg1.Done()
    			wg2.Wait()
    			exited <- true
    		}(i)
    	}
    	wg1.Wait()
    	for i := 0; i != n; i++ {
    		select {
    		case <-exited:
    			t.Fatal("SafeWaitGroup released group too soon")
    		default:
    		}
    		wg2.Done()
    	}
    	for i := 0; i != n; i++ {
    		<-exited // Will block if barrier fails to unlock someone.
    	}
    }
    
    func TestWaitGroupAddFail(t *testing.T) {
    	wg := &SafeWaitGroup{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 13 05:42:40 UTC 2017
    - 1.4K bytes
    - Viewed (0)
  9. guava/src/com/google/common/base/Predicates.java

      }
    
      /**
       * Returns a predicate that evaluates to {@code true} if each of its components evaluates to
       * {@code true}. The components are evaluated in order, and evaluation will be "short-circuited"
       * as soon as a false predicate is found. It defensively copies the iterable passed in, so future
       * changes to it won't alter the behavior of this predicate. If {@code components} is empty, the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  10. pkg/config/analysis/context.go

    	// ForEach iterates over all the entries of a given collection.
    	ForEach(c config.GroupVersionKind, fn IteratorFn)
    
    	// Canceled indicates that the context has been canceled. The analyzer should stop executing as soon as possible.
    	Canceled() bool
    
    	SetAnalyzer(analyzerName string)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 28 20:21:54 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top