Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 955 for pcount (0.19 sec)

  1. android/guava/src/com/google/common/math/Stats.java

       * including the floating point values. See the note on {@link #equals} for details.
       */
      @Override
      public int hashCode() {
        return Objects.hashCode(count, mean, sumOfSquaresOfDeltas, min, max);
      }
    
      @Override
      public String toString() {
        if (count() > 0) {
          return MoreObjects.toStringHelper(this)
              .add("count", count)
              .add("mean", mean)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 22K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildOptionsIntegrationTest.groovy

            then:
            output.count("NOT CI") == 1
            configurationCache.assertStateStored()
    
            when:
            configurationCacheRun "run"
    
            then:
            output.count("NOT CI") == 1
            configurationCache.assertStateLoaded()
    
            when:
            configurationCacheRun "run", "-Dci=true"
    
            then:
            output.count("ON CI") == 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 28K bytes
    - Viewed (0)
  3. fess-crawler/src/test/java/org/codelibs/fess/crawler/client/FaultTolerantClientTest.java

                if (now - previousTime < interval) {
                    throw new IllegalStateException();
                }
                previousTime = now;
    
                count++;
                if (count <= exceptionCount) {
                    throw new CrawlerSystemException("exception " + count);
                }
    
                final ResponseData responseData = new ResponseData();
                responseData.setUrl(request.getUrl());
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  4. android/guava-testlib/src/com/google/common/collect/testing/google/AbstractMultisetSetCountTester.java

       * UnsupportedOperationException."
       */
      abstract void setCountNoCheckReturnValue(E element, int count);
    
      private void assertSetCountIncreasingFailure(E element, int count) {
        try {
          setCountNoCheckReturnValue(element, count);
          fail("a call to multiset.setCount() to increase an element's count should throw");
        } catch (UnsupportedOperationException expected) {
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  5. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/inet/SocketConnection.java

                int currentPos = offset;
                while (remaining > 0) {
                    int count = Math.min(remaining, buffer.remaining());
                    if (count > 0) {
                        buffer.put(src, currentPos, count);
                        remaining -= count;
                        currentPos += count;
                    }
                    while (buffer.remaining() == 0) {
                        writeBufferToChannel();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  6. docs/site-replication/run-ssec-object-replication.sh

    ./mc ls minio1/test-bucket --insecure
    count1=$(./mc ls minio1/test-bucket/plainfile --insecure | wc -l)
    if [ "${count1}" -ne 1 ]; then
    	echo "BUG: object minio1/test-bucket/plainfile not found"
    	exit_1
    fi
    count2=$(./mc ls minio1/test-bucket/encrypted --insecure | wc -l)
    if [ "${count2}" -ne 1 ]; then
    	echo "BUG: object minio1/test-bucket/encrypted not found"
    	exit_1
    fi
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  7. tests/integration/telemetry/api/accesslogs_test.go

    			time.Sleep(time.Second * 2)
    			count = logCount(t, to, testID)
    			if count > 0 != expectLogs {
    				return fmt.Errorf("expected logs '%v', got %v", expectLogs, count)
    			}
    			return nil
    		})
    	}
    }
    
    func logCount(t test.Failer, to echo.Target, testID string) float64 {
    	counts := map[string]float64{}
    	for _, w := range to.WorkloadsOrFail(t) {
    		var logs string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  8. src/slices/slices_test.go

    	for _, tc := range []struct {
    		x     []int
    		count int
    		want  []int
    	}{
    		{x: []int(nil), count: 0, want: []int{}},
    		{x: []int(nil), count: 1, want: []int{}},
    		{x: []int(nil), count: math.MaxInt, want: []int{}},
    		{x: []int{}, count: 0, want: []int{}},
    		{x: []int{}, count: 1, want: []int{}},
    		{x: []int{}, count: math.MaxInt, want: []int{}},
    		{x: []int{0}, count: 0, want: []int{}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:06 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  9. guava/src/com/google/common/math/Stats.java

       * including the floating point values. See the note on {@link #equals} for details.
       */
      @Override
      public int hashCode() {
        return Objects.hashCode(count, mean, sumOfSquaresOfDeltas, min, max);
      }
    
      @Override
      public String toString() {
        if (count() > 0) {
          return MoreObjects.toStringHelper(this)
              .add("count", count)
              .add("mean", mean)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/DeprecationHandlingIntegrationTest.groovy

            if (warningsCount == 0) {
                assert output.count('\tat') == 0 && output.count(RUN_WITH_STACKTRACE) == 0
            } else if (fullStacktraceEnabled) {
                assert output.count('\tat') > 4 && output.count(RUN_WITH_STACKTRACE) == 0
            } else {
                assert output.count('\tat') == 4 && output.count(RUN_WITH_STACKTRACE) == 4
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 16:16:32 UTC 2024
    - 12.8K bytes
    - Viewed (0)
Back to top