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: graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/common/EconomicMapStorage.java
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -59,15 +59,15 @@
59
59
*
60
60
* When the hash table needs to be constructed, the field {@link #hashArray} becomes a new hash
61
61
* array where an entry of 0 means no hit and otherwise denotes the entry number in the
62
-
* {@link #entriesArr} array. The hash array is interpreted as an actual byte array if the indices fit
63
-
* within 8 bit, or as an array of short values if the indices fit within 16 bit, or as an array of
64
-
* integer values in other cases.
62
+
* {@link #entriesArr} array. The hash array is interpreted as an actual byte array if the indices
63
+
* fit within 8 bit, or as an array of short values if the indices fit within 16 bit, or as an array
64
+
* of integer values in other cases.
65
65
*
66
66
* Hash collisions are handled by chaining a linked list of {@link CollisionLink} objects that take
67
67
* the place of the values in the {@link #entriesArr} array.
68
68
*
69
-
* Removing entries will put {@code null} into the {@link #entriesArr} array. If the occupation of the
70
-
* map falls below a specific threshold, the map will be compressed via the
69
+
* Removing entries will put {@code null} into the {@link #entriesArr} array. If the occupation of
70
+
* the map falls below a specific threshold, the map will be compressed via the
Copy file name to clipboardExpand all lines: graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/floats/FloatBuiltins.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -620,7 +620,7 @@ public abstract static class HexNode extends PythonBuiltinNode {
Copy file name to clipboardExpand all lines: graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/zipimporter/PZipImporter.java
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
/*
2
-
* Copyright (c) 2017, 2018, Oracle and/or its affiliates.
2
+
* Copyright (c) 2017, 2019, Oracle and/or its affiliates.
3
3
* Copyright (c) 2013, Regents of the University of California
0 commit comments