Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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)
  2. 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