- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 53 for 2361 (0.01 sec)
-
guava/src/com/google/common/net/MediaType.java
* * @since 20.0 */ public static final MediaType VND_REAL_AUDIO = createConstant(AUDIO_TYPE, "vnd.rn-realaudio"); /** * WAVE format, as defined by <a href="https://tools.ietf.org/html/rfc2361">RFC 2361</a>. * * @since 20.0 */ public static final MediaType VND_WAVE_AUDIO = createConstant(AUDIO_TYPE, "vnd.wave"); /* video types */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 48K bytes - Viewed (0) -
android/guava/src/com/google/common/net/MediaType.java
* * @since 20.0 */ public static final MediaType VND_REAL_AUDIO = createConstant(AUDIO_TYPE, "vnd.rn-realaudio"); /** * WAVE format, as defined by <a href="https://tools.ietf.org/html/rfc2361">RFC 2361</a>. * * @since 20.0 */ public static final MediaType VND_WAVE_AUDIO = createConstant(AUDIO_TYPE, "vnd.wave"); /* video types */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 48K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/primitives/BytesTest.java
testRotate(new byte[] {1, 2, 3}, 3, new byte[] {1, 2, 3}); testRotate(new byte[] {1, 2, 3}, 4, new byte[] {3, 1, 2}); testRotate(new byte[] {1, 2, 3}, 5, new byte[] {2, 3, 1}); testRotate(new byte[] {1, 2, 3, 4}, -9, new byte[] {2, 3, 4, 1}); testRotate(new byte[] {1, 2, 3, 4}, -5, new byte[] {2, 3, 4, 1}); testRotate(new byte[] {1, 2, 3, 4}, -1, new byte[] {2, 3, 4, 1});
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 17.5K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/primitives/CharsTest.java
testRotate(new char[] {'1', '2', '3'}, 2, new char[] {'2', '3', '1'}); testRotate(new char[] {'1', '2', '3'}, 3, new char[] {'1', '2', '3'}); testRotate(new char[] {'1', '2', '3'}, 4, new char[] {'3', '1', '2'}); testRotate(new char[] {'1', '2', '3'}, 5, new char[] {'2', '3', '1'}); testRotate(new char[] {'1', '2', '3', '4'}, -9, new char[] {'2', '3', '4', '1'});
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 25.9K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/primitives/DoublesTest.java
testRotate(new double[] {1, 2, 3}, 2, new double[] {2, 3, 1}); testRotate(new double[] {1, 2, 3}, 3, new double[] {1, 2, 3}); testRotate(new double[] {1, 2, 3}, 4, new double[] {3, 1, 2}); testRotate(new double[] {1, 2, 3}, 5, new double[] {2, 3, 1}); testRotate(new double[] {1, 2, 3, 4}, -9, new double[] {2, 3, 4, 1}); testRotate(new double[] {1, 2, 3, 4}, -5, new double[] {2, 3, 4, 1});
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 30.9K bytes - Viewed (0) -
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}, 4, new int[] {3, 1, 2}); testRotate(new int[] {1, 2, 3}, 5, new int[] {2, 3, 1}); testRotate(new int[] {1, 2, 3, 4}, -9, new int[] {2, 3, 4, 1}); testRotate(new int[] {1, 2, 3, 4}, -5, new int[] {2, 3, 4, 1}); testRotate(new int[] {1, 2, 3, 4}, -1, new int[] {2, 3, 4, 1});
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 29.2K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/Collections2Test.java
assertNextPermutation(newArrayList(3, 2, 1, 4), permutations); assertNextPermutation(newArrayList(2, 3, 1, 4), permutations); assertNextPermutation(newArrayList(2, 3, 4, 1), permutations); assertNextPermutation(newArrayList(2, 4, 3, 1), permutations); assertNextPermutation(newArrayList(4, 2, 3, 1), permutations); assertNextPermutation(newArrayList(4, 2, 1, 3), permutations);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 20.1K bytes - Viewed (0) -
android/guava/src/com/google/common/primitives/UnsignedInts.java
* * @since 23.1 */ public static void sort(int[] array) { checkNotNull(array); sort(array, 0, array.length); } /** * Sorts the array between {@code fromIndex} inclusive and {@code toIndex} exclusive, treating its * elements as unsigned 32-bit integers. * * @since 23.1 */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Feb 09 16:22:33 UTC 2025 - 13.8K bytes - Viewed (0) -
guava-tests/test/com/google/common/primitives/DoublesTest.java
testRotate(new double[] {1, 2, 3}, 2, new double[] {2, 3, 1}); testRotate(new double[] {1, 2, 3}, 3, new double[] {1, 2, 3}); testRotate(new double[] {1, 2, 3}, 4, new double[] {3, 1, 2}); testRotate(new double[] {1, 2, 3}, 5, new double[] {2, 3, 1}); testRotate(new double[] {1, 2, 3, 4}, -9, new double[] {2, 3, 4, 1}); testRotate(new double[] {1, 2, 3, 4}, -5, new double[] {2, 3, 4, 1});
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 30.9K bytes - Viewed (0) -
guava-tests/test/com/google/common/primitives/LongsTest.java
testRotate(new long[] {1, 2, 3}, 3, new long[] {1, 2, 3}); testRotate(new long[] {1, 2, 3}, 4, new long[] {3, 1, 2}); testRotate(new long[] {1, 2, 3}, 5, new long[] {2, 3, 1}); testRotate(new long[] {1, 2, 3, 4}, -9, new long[] {2, 3, 4, 1}); testRotate(new long[] {1, 2, 3, 4}, -5, new long[] {2, 3, 4, 1}); testRotate(new long[] {1, 2, 3, 4}, -1, new long[] {2, 3, 4, 1});
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 28.7K bytes - Viewed (0)