You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: drv/BinIOFragment.drv
+4-4
Original file line number
Diff line number
Diff line change
@@ -597,8 +597,8 @@ public static void STORE_KEYS(final KEY_TYPE array[], final CharSequence filenam
597
597
* @param channel a readable channel.
598
598
* @param byteOrder the byte order of the data from {@code channel}.
599
599
* @param array a big array which will be filled with data from {@code channel}.
600
-
* @param offset the index of the first element of {@code bigArray} to be filled.
601
-
* @param length the number of elements of {@code bigArray} to be filled.
600
+
* @param offset the index of the first element of {@code array} to be filled.
601
+
* @param length the number of elements of {@code array} to be filled.
602
602
* @return the number of elements actually read from {@code channel} (it might be less than {@code length} if {@code channel} ends).
603
603
*/
604
604
public static long LOAD_KEYS(final ReadableByteChannel channel, final ByteOrder byteOrder, final KEY_TYPE[][] array, final long offset, final long length) throws IOException {
@@ -1174,8 +1174,8 @@ public static void STORE_KEYS(final KEY_TYPE array[], final CharSequence filenam
1174
1174
*
1175
1175
* @param dataInput a data input.
1176
1176
* @param array a big array which will be filled with data from {@code dataInput}.
1177
-
* @param offset the index of the first element of {@code bigArray} to be filled.
1178
-
* @param length the number of elements of {@code bigArray} to be filled.
1177
+
* @param offset the index of the first element of {@code array} to be filled.
1178
+
* @param length the number of elements of {@code array} to be filled.
1179
1179
* @return the number of elements actually read from {@code dataInput} (it might be less than {@code length} if {@code dataInput} ends).
1180
1180
*/
1181
1181
public static long LOAD_KEYS(final DataInput dataInput, final KEY_TYPE[][] array, final long offset, final long length) throws IOException {
Copy file name to clipboardexpand all lines: pom-core-model.xml
+1-1
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@
5
5
<packaging>jar</packaging>
6
6
<name>fastutil</name>
7
7
<version>@VERSION@</version>
8
-
<description>fastutil extends the Java Collections Framework by providing type-specific maps, sets, lists and priority queues with a small memory footprint and fast operations; it provides also big (64-bit) arrays, sets and lists, sorting algorithms, and fast, practical I/O classes for binary and text files. This jar (fastutil-core.jar) contains data structures based on integers, longs, doubles, and objects, only; fastutil.jar contains all classes. If you have both jars in your dependencies, this jar should be excluded.</description>
8
+
<description>fastutil extends the Java Collections Framework by providing type-specific maps, sets, lists, and queues with a small memory footprint and fast operations; it provides also big (64-bit) arrays, sets, and lists, sorting algorithms, fast, practical I/O classes for binary and text files, and facilities for memory mapping large files. This jar (fastutil-core.jar) contains data structures based on integers, longs, doubles, and objects, only; fastutil.jar contains all classes. If you have both jars in your dependencies, this jar should be excluded.</description>
Copy file name to clipboardexpand all lines: pom-model.xml
+1-1
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@
5
5
<packaging>jar</packaging>
6
6
<name>fastutil</name>
7
7
<version>@VERSION@</version>
8
-
<description>fastutil extends the Java Collections Framework by providing type-specific maps, sets, lists and priority queues with a small memory footprint and fast access and insertion; provides also big (64-bit) arrays, sets and lists, sorting algorithms, and fast, practical I/O classes for binary and text files. Note that if you have both this jar and fastutil-core.jar in your dependencies, fastutil-core.jar should be excluded.</description>
8
+
<description>fastutil extends the Java Collections Framework by providing type-specific maps, sets, lists, and queues with a small memory footprint and fast access and insertion; it provides also big (64-bit) arrays, sets and lists, sorting algorithms, fast, practical I/O classes for binary and text files, and facilities for memory mapping large files. Note that if you have both this jar and fastutil-core.jar in your dependencies, fastutil-core.jar should be excluded.</description>
0 commit comments