Luke Hutchison
Luke Hutchison
I created [FastClasspathScanner](https://github.com/lukehutch/fast-classpath-scanner) for detecting classes and methods with specified Java annotations at runtime. Nubes currently uses [Reflections](https://github.com/ronmamo/reflections) for its annotation support, which is slower and buggier than FastClasspathScanner (in...
Hi, I get this error message when trying to use Pi4J v2 on a Raspberry Pi 4B from a "fat jar": ``` UnsatisfiedLinkError: Pi4J was unable to extract and load...
This piece of code crashes the Pi 4B: ```java for (int pin = 0; pin < 31; pin++) { try { int pinNum = pin; DigitalInput digitalInput = Bonnet.pi4j .create(DigitalInput.newConfigBuilder(Bonnet.pi4j).id("gpio-pin-"...
Using the SolHint plugin for Remix, I get `Error: Parse error: missing ';' at '{'` with the following code, at the line marked `// (*)`: ``` unchecked { // (*)...
I get the following when running `build_octree`: ``` target/release/build_octree --num_threads 16 ~/Input.ply --output_directory ~/Octree Determining bounding box: 1909129216 / 1909129216 [======================================================] 100.00 % 75083.64/s Creating octree structure. Splitting r which...
While running `build_octree`, during the initial `Determining bounding box` stage I get a processing speed on a fast laptop CPU and SSD of `75,083.64/s`, which for a `.ply` file consisting...
Zip paths are not supposed to start with a slash, but in theory they can -- you can put anything you want in the zip entry name. In most cases,...
When using Animal Sniffer 1.18, even with a failure like the following, compilation continues and succeeds: ``` [INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (check-signatures) @ classgraph --- [INFO] Checking unresolved references to org.codehaus.mojo.signature:java17:1.0...
For the code ``` AccessibleObject field = /* ... */; MethodHandle isAccessible = MethodHandles.lookup().findVirtual(AccessibleObject.class, "isAccessible", MethodType.methodType(boolean.class)); accessible.set((Boolean) isAccessible.invokeExact(field)); ``` I get the following for `org.codehaus.mojo.signature:java17:1.0`: ``` [ERROR] Undefined reference: Boolean...
When building the ClassGraph project, Animal Sniffer fails to detect that `Spliterator` is not part of the Java 1.7 API, using the `java17` signatures: https://github.com/classgraph/classgraph/issues/363 When building, this is what...