Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 87 for Tolerance (0.3 sec)

  1. docs/metrics/prometheus/minio-es-tolerance-alert.png

    minio-es-tolerance-alert.png...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Nov 19 18:16:08 UTC 2023
    - 79.8K bytes
    - Viewed (0)
  2. internal/dsync/drwmutex.go

    		// quorum + 1 when tolerance is exactly half of the
    		// total locker clients.
    		if quorum == tolerance {
    			quorum++
    		}
    	}
    
    	log("lockBlocking %s/%s for %#v: lockType readLock(%t), additional opts: %#v, quorum: %d, tolerance: %d, lockClients: %d\n", id, source, dm.Names, isReadLock, opts, quorum, tolerance, len(restClnts))
    
    	tolerance = len(restClnts) - quorum
    	attempt := uint(0)
    
    	for {
    		select {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  3. docs/distributed/SIZING.md

    # Erasure code sizing guide
    
    ## Toy Setups
    
    Capacity constrained environments, MinIO will work but not recommended for production.
    
    | servers | drives (per node) | stripe_size | parity chosen (default) | tolerance for reads (servers) | tolerance for writes (servers) |
    |--------:|------------------:|------------:|------------------------:|------------------------------:|-------------------------------:|
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Aug 15 23:04:20 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  4. src/image/decode_test.go

    	if d < 0 {
    		return -d
    	}
    	return d
    }
    
    func withinTolerance(c0, c1 color.Color, tolerance int) bool {
    	r0, g0, b0, a0 := c0.RGBA()
    	r1, g1, b1, a1 := c1.RGBA()
    	r := delta(r0, r1)
    	g := delta(g0, g1)
    	b := delta(b0, b1)
    	a := delta(a0, a1)
    	return r <= tolerance && g <= tolerance && b <= tolerance && a <= tolerance
    }
    
    func TestDecode(t *testing.T) {
    	rgba := func(c color.Color) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:51:48 UTC 2019
    - 3.7K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/math/DoubleMathTest.java

              assertFalse(DoubleMath.fuzzyEquals(inf, a, tolerance));
            }
          }
        }
      }
    
      public void testFuzzyInfiniteVersusInfiniteWithFiniteTolerance() {
        for (double inf : INFINITIES) {
          for (double tolerance : FINITE_TOLERANCE_CANDIDATES) {
            assertTrue(DoubleMath.fuzzyEquals(inf, inf, tolerance));
            assertFalse(DoubleMath.fuzzyEquals(inf, -inf, tolerance));
          }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/math/DoubleMath.java

       * implementations.
       *
       * @throws IllegalArgumentException if {@code tolerance} is {@code < 0} or NaN
       * @since 13.0
       */
      public static boolean fuzzyEquals(double a, double b, double tolerance) {
        MathPreconditions.checkNonNegative("tolerance", tolerance);
        return Math.copySign(a - b, 1.0) <= tolerance
            // copySign(x, 1.0) is a branch-free version of abs(x), but with different NaN semantics
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  7. guava/src/com/google/common/math/DoubleMath.java

       * implementations.
       *
       * @throws IllegalArgumentException if {@code tolerance} is {@code < 0} or NaN
       * @since 13.0
       */
      public static boolean fuzzyEquals(double a, double b, double tolerance) {
        MathPreconditions.checkNonNegative("tolerance", tolerance);
        return Math.copySign(a - b, 1.0) <= tolerance
            // copySign(x, 1.0) is a branch-free version of abs(x), but with different NaN semantics
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  8. pkg/controller/podautoscaler/replica_calculator.go

    	podLister                     corelisters.PodLister
    	tolerance                     float64
    	cpuInitializationPeriod       time.Duration
    	delayOfInitialReadinessStatus time.Duration
    }
    
    // NewReplicaCalculator creates a new ReplicaCalculator and passes all necessary information to the new instance
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Aug 19 03:31:34 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  9. docs/metrics/prometheus/alerts.md

    To verify the above sample alert follow below steps
    
    1. Start a distributed MinIO instance (4 nodes setup)
    2. Start Prometheus server and AlertManager
    3. Bring down couple of MinIO instances to bring down the Erasure Set tolerance to -1 and verify the same with `mc admin prometheus metrics ALIAS | grep minio_cluster_health_erasure_set_status`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jan 28 20:53:59 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  10. src/image/jpeg/writer_test.go

    			continue
    		}
    		if m0.Bounds() != m1.Bounds() {
    			t.Errorf("%s, bounds differ: %v and %v", tc.filename, m0.Bounds(), m1.Bounds())
    			continue
    		}
    		// Compare the average delta to the tolerance level.
    		if averageDelta(m0, m1) > tc.tolerance {
    			t.Errorf("%s, quality=%d: average delta is too high", tc.filename, tc.quality)
    			continue
    		}
    	}
    }
    
    // TestWriteGrayscale tests that a grayscale images survives a round-trip
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:49:30 UTC 2022
    - 7.2K bytes
    - Viewed (0)
Back to top