-
Updated
Aug 21, 2020 - Java
java-api
Here are 116 public repositories matching this topic...
ByteBuffers gives a great deal of flexibility (they can be allocated in and off heap). If allocated outside the heap, they give a huge perf boost and, if allocated in the heap, they have more or less the same cost of a byte[].
Replacing byte[] will require changing the MessageReader and MessageWriter interfaces too, together with all the impls
-
Updated
Feb 25, 2018 - Java
-
Updated
Aug 30, 2018 - Java
I have noticed the Flick implementation is based on the equation for constant translational acceleration in a straight line (MRUV in portuguese), which is repeated at least a couple of times in the Flick implementation.
According to @ItaloYeltsin , we could improve the flick animation by moving this duplicated into a single function and then replace it with some kind of easing curve equation.
-
Updated
Jul 4, 2020 - Java
-
Updated
Jun 18, 2020 - Java
-
Updated
Aug 18, 2020 - Java
-
Updated
Aug 12, 2019 - Java
-
Updated
Aug 8, 2020 - Java
-
Updated
Jun 27, 2020 - Java
-
Updated
Jul 10, 2020 - Java
-
Updated
Aug 7, 2020 - Java
-
Updated
Feb 18, 2020 - Java
-
Updated
Jan 5, 2019 - Java
-
Updated
Feb 3, 2018 - Java
Description
The parameters "newProductVariant" and "oldProductVariant" should be renamed to "sourceProductVariant" and "targetProductVariant ". So it`s much more straight foreward to old and New.
But now this (old and new) is used as a convention across the whole library and is not so easy to do without wasting some time.
-
Updated
Nov 27, 2019 - Java
-
Updated
Aug 18, 2020 - Java
-
Updated
Aug 5, 2020 - Java
-
Updated
Jul 13, 2020 - Java
-
Updated
Aug 16, 2020 - Java
-
Updated
May 9, 2020 - Java
-
Updated
Jul 13, 2019 - Java
Improve this page
Add a description, image, and links to the java-api topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the java-api topic, visit your repo's landing page and select "manage topics."
We see that isPrivate() method in GHRepository class returns true for Internal repositories too. We tried this with the latest version 1.116 of the API.
We want to be able to distinguish between private and internal repositories.
Is this possible with the current API?