rendaw
rendaw
Follow up questions: 1. What is the jdk8 classifier needed for? 2. Why is the agent preferred to AOT? Just because it's easier? 3. Why would one not want to...
Okay, couldn't sleep. I tried it on a dummy project, set the language level to 8. scanSuspendables almost works: ``` [scanSuspendables] Classpath URLs: [... all my classfiles ...] [scanSuspendables] Project...
Hitting https://github.com/puniverse/quasar/issues/253 with the agent at language level 7, AOT failed at that level too.
All above problems solved AFAICT by switching to JDK/JRE 8. It looks like Java 9 is totally a no-go right now? To clarify a couple of the above questions, maybe...
Thanks! I jumped in with a debugger and it seems like (ASM?) is complaining about the bytecode version header in the classfiles. IIRC it's `53` for javac 9 and `52`...
If I've understood the topic correctly, I need this as well. I have a dozen or so complex objects that all my tests use that I set up statically. I...
> other than making sure that error is visible by default. Right, to be clear this issue is about making the actual cause of the failure visible by default. >...
For reference, systemd time parsing is fairly comfortable (ex logs "from 3 days ago"): https://www.systutorials.com/docs/linux/man/7-systemd/ Here's another library that does it fairly well https://github.com/scrapinghub/dateparser
I might have been looking at the wrong place, it looks like trie node `get` keeps track of the prefix length, although it's not returned.
Sorry, I should have been more clear. The only node in there is `/a/`, so that subtree has no children. This is for something like dynamic routes, where the response...