- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 43 for 2361 (0.03 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 Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Sep 26 19:15:09 UTC 2024 - 47.5K 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 Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 02:56:12 UTC 2024 - 17.3K 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 Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 02:56:12 UTC 2024 - 25.6K 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 Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 02:56:12 UTC 2024 - 32.2K bytes - Viewed (0) -
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 Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 02:56:12 UTC 2024 - 17.3K bytes - Viewed (0) -
build-logic-commons/build-platform/build.gradle.kts
api("com.google.code.findbugs:jsr305:3.0.2") api("commons-io:commons-io:2.14.0") api("commons-lang:commons-lang:2.6") api("javax.activation:activation:1.1.1") api("javax.xml.bind:jaxb-api:2.3.1") api("com.sun.xml.bind:jaxb-core:2.2.11") api("com.sun.xml.bind:jaxb-impl:2.2.11") api("junit:junit:4.13.2") api("org.spockframework:spock-core:$spockVersion")
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Oct 29 21:53:00 UTC 2024 - 4.8K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/CompactHashing.java
/** Bitmask that selects the low bits of metadata to get hashTableBits. */ static final int HASH_TABLE_BITS_MASK = (1 << HASH_TABLE_BITS_MAX_BITS) - 1; /** Maximum size of a compact hash-based collection (2^30 - 1 because 0 is UNSET). */ static final int MAX_SIZE = Ints.MAX_POWER_OF_TWO - 1; /** Default size of a compact hash-based collection. */ static final int DEFAULT_SIZE = 3; /**
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 25 15:34:52 UTC 2024 - 7.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 Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 21:17:54 UTC 2024 - 13.7K bytes - Viewed (0) -
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 Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 21:17:54 UTC 2024 - 13.7K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/primitives/FloatsTest.java
testRotate(new float[] {1, 2, 3}, 2, new float[] {2, 3, 1}); testRotate(new float[] {1, 2, 3}, 3, new float[] {1, 2, 3}); testRotate(new float[] {1, 2, 3}, 4, new float[] {3, 1, 2}); testRotate(new float[] {1, 2, 3}, 5, new float[] {2, 3, 1}); testRotate(new float[] {1, 2, 3, 4}, -9, new float[] {2, 3, 4, 1}); testRotate(new float[] {1, 2, 3, 4}, -5, new float[] {2, 3, 4, 1});
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 02:56:12 UTC 2024 - 30.3K bytes - Viewed (0)