Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 181 - 190 of 1,622 for indexIn (0.08 seconds)

  1. src/main/java/org/codelibs/core/convert/TimeConversionUtil.java

                    buf.append(ch);
                }
            }
            if (buf.indexOf("HH") == -1) {
                final int pos = buf.indexOf("H");
                if (pos != -1) {
                    buf.replace(pos, pos + 1, "HH");
                }
            }
            if (buf.indexOf("mm") == -1) {
                final int pos = buf.indexOf("m");
                if (pos != -1) {
                    buf.replace(pos, pos + 1, "mm");
    Created: Fri Apr 03 20:58:12 GMT 2026
    - Last Modified: Thu Jul 31 08:16:49 GMT 2025
    - 20.3K bytes
    - Click Count (0)
  2. android/guava-tests/test/com/google/common/primitives/FloatsTest.java

        assertThat(Floats.indexOf(ARRAY234, EMPTY)).isEqualTo(0);
        assertThat(Floats.indexOf(EMPTY, ARRAY234)).isEqualTo(-1);
        assertThat(Floats.indexOf(ARRAY234, ARRAY1)).isEqualTo(-1);
        assertThat(Floats.indexOf(ARRAY1, ARRAY234)).isEqualTo(-1);
        assertThat(Floats.indexOf(ARRAY1, ARRAY1)).isEqualTo(0);
        assertThat(Floats.indexOf(ARRAY234, ARRAY234)).isEqualTo(0);
        assertThat(Floats.indexOf(ARRAY234, new float[] {2.0f, 3.0f})).isEqualTo(0);
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sun Mar 08 01:43:32 GMT 2026
    - 29.4K bytes
    - Click Count (0)
  3. guava-tests/test/com/google/common/primitives/FloatsTest.java

        assertThat(Floats.indexOf(ARRAY234, EMPTY)).isEqualTo(0);
        assertThat(Floats.indexOf(EMPTY, ARRAY234)).isEqualTo(-1);
        assertThat(Floats.indexOf(ARRAY234, ARRAY1)).isEqualTo(-1);
        assertThat(Floats.indexOf(ARRAY1, ARRAY234)).isEqualTo(-1);
        assertThat(Floats.indexOf(ARRAY1, ARRAY1)).isEqualTo(0);
        assertThat(Floats.indexOf(ARRAY234, ARRAY234)).isEqualTo(0);
        assertThat(Floats.indexOf(ARRAY234, new float[] {2.0f, 3.0f})).isEqualTo(0);
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sun Mar 08 01:43:32 GMT 2026
    - 29.4K bytes
    - Click Count (0)
  4. android/guava/src/com/google/common/primitives/Chars.java

      }
    
      /**
       * Returns the index of the first appearance of the value {@code target} in {@code array}.
       *
       * @param array an array of {@code char} values, possibly empty
       * @param target a primitive {@code char} value
       * @return the least index {@code i} for which {@code array[i] == target}, or {@code -1} if no
       *     such index exists.
       */
      public static int indexOf(char[] array, char target) {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Aug 07 16:05:33 GMT 2025
    - 24.2K bytes
    - Click Count (0)
  5. android/guava/src/com/google/common/primitives/Shorts.java

      }
    
      /**
       * Returns the index of the first appearance of the value {@code target} in {@code array}.
       *
       * @param array an array of {@code short} values, possibly empty
       * @param target a primitive {@code short} value
       * @return the least index {@code i} for which {@code array[i] == target}, or {@code -1} if no
       *     such index exists.
       */
      public static int indexOf(short[] array, short target) {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Oct 22 18:14:49 GMT 2025
    - 25.7K bytes
    - Click Count (0)
  6. android/guava/src/com/google/common/collect/CartesianList.java

        }
        this.axesSizeProduct = axesSizeProduct;
      }
    
      private int getAxisIndexForProductIndex(int index, int axis) {
        return (index / axesSizeProduct[axis + 1]) % axes.get(axis).size();
      }
    
      @Override
      public int indexOf(@Nullable Object o) {
        if (!(o instanceof List)) {
          return -1;
        }
        List<?> list = (List<?>) o;
        if (list.size() != axes.size()) {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sun Aug 31 13:15:26 GMT 2025
    - 4.7K bytes
    - Click Count (0)
  7. src/main/java/jcifs/smb1/util/Base64.java

            int block;
            int i = 0;
            int index = 0;
            while (i < length) {
                block = (ALPHABET.indexOf(string.charAt(i++)) & 0xff) << 18 | (ALPHABET.indexOf(string.charAt(i++)) & 0xff) << 12
                        | (ALPHABET.indexOf(string.charAt(i++)) & 0xff) << 6 | ALPHABET.indexOf(string.charAt(i++)) & 0xff;
                buffer[index] = (byte) (block >>> 16);
                index++;
                if (index < size) {
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 4.1K bytes
    - Click Count (0)
  8. guava-tests/test/com/google/common/primitives/LongsTest.java

      public void testIndexOf() {
        assertThat(Longs.indexOf(EMPTY, 1L)).isEqualTo(-1);
        assertThat(Longs.indexOf(ARRAY1, 2L)).isEqualTo(-1);
        assertThat(Longs.indexOf(ARRAY234, 1L)).isEqualTo(-1);
        assertThat(Longs.indexOf(new long[] {-1L}, -1L)).isEqualTo(0);
        assertThat(Longs.indexOf(ARRAY234, 2L)).isEqualTo(0);
        assertThat(Longs.indexOf(ARRAY234, 3L)).isEqualTo(1);
        assertThat(Longs.indexOf(ARRAY234, 4L)).isEqualTo(2);
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Mar 17 16:45:58 GMT 2026
    - 28.8K bytes
    - Click Count (0)
  9. guava-tests/test/com/google/common/primitives/ShortsTest.java

      public void testIndexOf() {
        assertThat(Shorts.indexOf(EMPTY, (short) 1)).isEqualTo(-1);
        assertThat(Shorts.indexOf(ARRAY1, (short) 2)).isEqualTo(-1);
        assertThat(Shorts.indexOf(ARRAY234, (short) 1)).isEqualTo(-1);
        assertThat(Shorts.indexOf(new short[] {(short) -1}, (short) -1)).isEqualTo(0);
        assertThat(Shorts.indexOf(ARRAY234, (short) 2)).isEqualTo(0);
        assertThat(Shorts.indexOf(ARRAY234, (short) 3)).isEqualTo(1);
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sun Mar 08 01:43:32 GMT 2026
    - 27.6K bytes
    - Click Count (0)
  10. src/main/webapp/WEB-INF/orig/view/login/index.jsp

    Shinsuke Sugaya <******@****.***> 1771833824 +0900
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 3K bytes
    - Click Count (0)
Back to Top