Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for checkIndex (0.04 sec)

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

       *
       * @since 20.0
       */
      public static final class ScaleAndIndex {
    
        private final int scale;
        private final int index;
    
        private ScaleAndIndex(int scale, int index) {
          checkIndex(index, scale);
          this.scale = scale;
          this.index = index;
        }
    
        /**
         * Computes the quantile value of the given dataset.
         *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 30.1K bytes
    - Viewed (0)
  2. tests/migrate_test.go

    		checkNotUnique = func(t *testing.T) {
    			checkColumnType(t, "name", false)
    			checkIndex(t, nil)
    		}
    		checkUnique = func(t *testing.T) {
    			checkColumnType(t, "name", true)
    			checkIndex(t, []gorm.Index{uniqueConstraintIndex})
    		}
    		checkUniqueIndex = func(t *testing.T) {
    			checkColumnType(t, "name", true)
    			checkIndex(t, []gorm.Index{uniqueIndex})
    		}
    		checkMyIndex = func(t *testing.T) {
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Wed Aug 20 04:51:17 UTC 2025
    - 65.2K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/base/Preconditions.java

       * size {@code size}. A position index may range from zero to {@code size}, inclusive.
       *
       * <p><b>Java 9 users:</b> consider using {@link java.util.Objects#checkIndex(index, size)}
       * instead. However, note that {@code checkIndex()} throws {@code IndexOutOfBoundsException} when
       * {@code size} is negative, while this method throws {@code IllegalArgumentException}.
       *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Jul 10 22:11:00 UTC 2025
    - 53K bytes
    - Viewed (0)
Back to top