Galder Zamarreño

Results 219 comments of Galder Zamarreño

I'll give this a go next.

I already told @rnc, but for future reference: we ended up using `cekit` only to generate the `Dockerfile` and then call `docker buildx` from command line.

> * `-H:InitialCollectionPolicy=com.oracle.svm.core.genscavenge.CollectionPolicy$BySpaceAndTime` > What is the reasoning behind that? Did you measure that this is actually beneficial? This goes back to https://github.com/quarkusio/quarkus/commit/223288aa3d482a7617f0a72c09558dc3c850e584 in 2018. At the time the default...

@ppalaga Any upstream openjdk changes will require a bug and someone to sponsor it, unless @zhfeng you're already an openjdk committer. @zhfeng go ahead and create a bug in the...

@zhfeng Yeah that's the right place.

@zhfeng Ah yes. Could you please write up a bug report here? I can then ask someone to verify it and we can create the OpenJDK issue as well as...

Yes it is. Closing this issue as there's no specific work to be done related to this.

@ppalaga IIRC it should also be possible to define a package that should be runtime initialized. Would that work in your case? As long as the package only has the...

Looking [here](https://docs.oracle.com/javase/8/docs/technotes/guides/reflection/proxy.html) (for Java 8, but newer also?), it says: > If a proxy class implements a non-public interface, then it will be defined in the same package as that...

Had a quick go and I think it might do the trick. Say we define a proxy handler like this: ```java static class DynamicInvocationHandler implements InvocationHandler { @Override public Object...