Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 53 for 8232 (0.03 sec)

  1. guava/src/com/google/common/hash/Murmur3_128HashFunction.java

            case 15:
              k2 ^= (long) toInt(bb.get(14)) << 48; // fall through
            case 14:
              k2 ^= (long) toInt(bb.get(13)) << 40; // fall through
            case 13:
              k2 ^= (long) toInt(bb.get(12)) << 32; // fall through
            case 12:
              k2 ^= (long) toInt(bb.get(11)) << 24; // fall through
            case 11:
              k2 ^= (long) toInt(bb.get(10)) << 16; // fall through
            case 10:
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Apr 20 18:43:59 UTC 2021
    - 5.6K bytes
    - Viewed (0)
  2. src/test/resources/plugin/repo3/fess-crawler-parent/maven-metadata.xml

          <version>2.2.0</version>
          <version>2.2.1</version>
          <version>2.2.2</version>
          <version>2.2.3</version>
          <version>2.3.0</version>
          <version>2.3.1</version>
          <version>2.3.2</version>
          <version>2.3.3</version>
          <version>2.3.4</version>
          <version>2.3.5</version>
          <version>2.3.6</version>
          <version>2.4.0</version>
          <version>2.4.1</version>
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Mon Jun 17 13:30:41 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. src/test/resources/plugin/repo3/fess-crawler/maven-metadata.xml

          <version>2.2.0</version>
          <version>2.2.1</version>
          <version>2.2.2</version>
          <version>2.2.3</version>
          <version>2.3.0</version>
          <version>2.3.1</version>
          <version>2.3.2</version>
          <version>2.3.3</version>
          <version>2.3.4</version>
          <version>2.3.5</version>
          <version>2.3.6</version>
          <version>2.4.0</version>
          <version>2.4.1</version>
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Mon Jun 17 13:30:41 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/primitives/UnsignedInts.java

    import java.util.Comparator;
    
    /**
     * Static utility methods pertaining to {@code int} primitives that interpret values as
     * <i>unsigned</i> (that is, any negative value {@code x} is treated as the positive value {@code
     * 2^32 + x}). The methods for which signedness is not an issue are in {@link Ints}, as well as
     * signed versions of methods for which signedness is an issue.
     *
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 21:17:54 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  5. guava/src/com/google/common/primitives/UnsignedInts.java

    import java.util.Comparator;
    
    /**
     * Static utility methods pertaining to {@code int} primitives that interpret values as
     * <i>unsigned</i> (that is, any negative value {@code x} is treated as the positive value {@code
     * 2^32 + x}). The methods for which signedness is not an issue are in {@link Ints}, as well as
     * signed versions of methods for which signedness is an issue.
     *
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 21:17:54 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/internal/http/DateFormatting.kt

    private val BROWSER_COMPATIBLE_DATE_FORMAT_STRINGS =
      arrayOf(
        // HTTP formats required by RFC2616 but with any timezone:
        // RFC 822, updated by RFC 1123 with any TZ.
        "EEE, dd MMM yyyy HH:mm:ss zzz",
        // RFC 850, obsoleted by RFC 1036 with any TZ.
        "EEEE, dd-MMM-yy HH:mm:ss zzz",
        // ANSI C's asctime() format
        "EEE MMM d HH:mm:ss yyyy",
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.23.md

      - [Changelog since v1.23.2](#changelog-since-v1232)
      - [Changes by Kind](#changes-by-kind-14)
        - [Feature](#feature-9)
        - [Bug or Regression](#bug-or-regression-14)
      - [Dependencies](#dependencies-14)
        - [Added](#added-14)
        - [Changed](#changed-14)
        - [Removed](#removed-14)
    - [v1.23.2](#v1232)
      - [Downloads for v1.23.2](#downloads-for-v1232)
        - [Source Code](#source-code-15)
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Tue Feb 28 21:06:52 UTC 2023
    - 424.5K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/MediaTypeTest.kt

        val mediaType = parse("text/plain; charset=utf-8; charset=utf-16")
        assertEquals("UTF-8", mediaType.charsetName())
      }
    
      /**
       * This is invalid according to RFC 822. But it's what Chrome does and it avoids a potentially
       * unpleasant IllegalCharsetNameException.
       */
      @Test fun testCharsetNameIsSingleQuoted() {
        val mediaType = parse("text/plain;charset='utf-8'")
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/primitives/FloatsTest.java

        testRotate(new float[] {1, 2, 3}, -3, new float[] {1, 2, 3});
        testRotate(new float[] {1, 2, 3}, -2, new float[] {3, 1, 2});
        testRotate(new float[] {1, 2, 3}, -1, new float[] {2, 3, 1});
        testRotate(new float[] {1, 2, 3}, 0, new float[] {1, 2, 3});
        testRotate(new float[] {1, 2, 3}, 1, new float[] {3, 1, 2});
        testRotate(new float[] {1, 2, 3}, 2, new float[] {2, 3, 1});
        testRotate(new float[] {1, 2, 3}, 3, new float[] {1, 2, 3});
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 02:56:12 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/primitives/IntsTest.java

        testRotate(new int[] {1, 2, 3}, -3, new int[] {1, 2, 3});
        testRotate(new int[] {1, 2, 3}, -2, new int[] {3, 1, 2});
        testRotate(new int[] {1, 2, 3}, -1, new int[] {2, 3, 1});
        testRotate(new int[] {1, 2, 3}, 0, new int[] {1, 2, 3});
        testRotate(new int[] {1, 2, 3}, 1, new int[] {3, 1, 2});
        testRotate(new int[] {1, 2, 3}, 2, new int[] {2, 3, 1});
        testRotate(new int[] {1, 2, 3}, 3, new int[] {1, 2, 3});
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 02:56:12 UTC 2024
    - 29.1K bytes
    - Viewed (0)
Back to top