Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for expectedCount (0.23 sec)

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

        final AtomicInteger integer = new AtomicInteger();
        for (int i = 0; i < 10; i++) {
          final int expectedCount = i;
          list.add(
              new Runnable() {
                @Override
                public void run() {
                  integer.compareAndSet(expectedCount, expectedCount + 1);
                }
              },
              MoreExecutors.directExecutor());
        }
        list.execute();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 09 22:57:07 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  2. testing/soak/src/integTest/kotlin/org/gradle/kotlin/dsl/caching/fixtures/KotlinDslCacheFixtures.kt

        val expectedCount = if (stage.enabled) count else 0
        val logStatement = "${actionDisplayName.uppercaseFirstChar()} ${stage.templateId} from ${stage.source}"
        val observedCount = output.occurrenceCountOf(logStatement)
        require(observedCount == expectedCount) {
            "Expected $expectedCount but got $observedCount\n" +
                "  Looking for statement: $logStatement\n" +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. pkg/controller/disruption/disruption.go

    	if pdb.Spec.MaxUnavailable != nil {
    		expectedCount, unmanagedPods, err = dc.getExpectedScale(ctx, pdb, pods)
    		if err != nil {
    			return
    		}
    		var maxUnavailable int
    		maxUnavailable, err = intstr.GetScaledValueFromIntOrPercent(pdb.Spec.MaxUnavailable, int(expectedCount), true)
    		if err != nil {
    			return
    		}
    		desiredHealthy = expectedCount - int32(maxUnavailable)
    		if desiredHealthy < 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/base/Utf8Test.java

       *
       * @param numBytes the number of bytes in the byte array
       * @param expectedCount the expected number of roundtrippable permutations
       */
      @GwtIncompatible // java.nio.charset.Charset
      private static void testBytes(int numBytes, long expectedCount) {
        testBytes(numBytes, expectedCount, 0, -1);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/util/concurrent/ExecutionListTest.java

        final AtomicInteger integer = new AtomicInteger();
        for (int i = 0; i < 10; i++) {
          final int expectedCount = i;
          list.add(
              new Runnable() {
                @Override
                public void run() {
                  integer.compareAndSet(expectedCount, expectedCount + 1);
                }
              },
              MoreExecutors.directExecutor());
        }
        list.execute();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 09 22:57:07 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/metrics/timing_ratio_histogram_test.go

    		if expectedCount != actualCount {
    			t.Errorf("For i=%d, t0=%s, ddt=%s, t1=%s, expectedCount=%d, actualCount=%d", i, t0, ddt, t1, expectedCount, actualCount)
    		}
    	}
    }
    
    /* getHistogramCount returns the count of the named histogram or an error (if any) */
    func getHistogramCount(registry compbasemetrics.KubeRegistry, metricName string) (int64, error) {
    	mfs, err := registry.Gather()
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 13 16:03:06 UTC 2022
    - 8.7K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/TreeMultiset.java

            if (initRight == null) {
              result[0] = 0;
              if (expectedCount == 0 && newCount > 0) {
                return addRightChild(e, newCount);
              }
              return this;
            }
    
            right = initRight.setCount(comparator, e, expectedCount, newCount, result);
    
            if (result[0] == expectedCount) {
              if (newCount == 0 && result[0] != 0) {
                this.distinctElements--;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/topologymanager/bitmask/bitmask_test.go

    	tcases := []struct {
    		name          string
    		bits          []int
    		expectedCount int
    	}{
    		{
    			name:          "Count number of bits set in mask 00",
    			bits:          nil,
    			expectedCount: 0,
    		},
    		{
    			name:          "Count number of bits set in mask 01",
    			bits:          []int{0},
    			expectedCount: 1,
    		},
    		{
    			name:          "Count number of bits set in mask 11",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 03 09:45:09 UTC 2022
    - 16.2K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/TreeMultiset.java

            if (initRight == null) {
              result[0] = 0;
              if (expectedCount == 0 && newCount > 0) {
                return addRightChild(e, newCount);
              }
              return this;
            }
    
            right = initRight.setCount(comparator, e, expectedCount, newCount, result);
    
            if (result[0] == expectedCount) {
              if (newCount == 0 && result[0] != 0) {
                this.distinctElements--;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 34.6K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/util/concurrent/ListenerCallQueueTest.java

          service.shutdown();
        }
      }
    
      private ListenerCallQueue.Event<Object> incrementingEvent(
          Multiset<Object> counters, Object expectedListener, int expectedCount) {
        return incrementingEvent(counters, multiset(expectedListener, expectedCount));
      }
    
      private ListenerCallQueue.Event<Object> incrementingEvent(
          final Multiset<Object> counters, final Multiset<Object> expected) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 09 22:57:07 UTC 2022
    - 8.2K bytes
    - Viewed (0)
Back to top