Stuart Douglas
Stuart Douglas
#### Describe the feature Quarkus Development mode works by dropping and re-creating a class loader every time code is changed. As this is triggered by a HTTP request vert.x is...
These provide some minor performance improvements to reduce object allocation. In particular: - Don't allocate a list on a getAll call if there are no headers - Don't create a...
This changes from a fixed ClassLoader per context, to a per-context selectable TCCL. Motivation: When Quarkus is running in dev mode it needs the ability to change the current ClassLoader...
Quarkus needs to run tests in its own `ClassLoader`, and it achieves this by intercepting all methods through `InvocationInterceptor` and redirecting them to a new test instance loaded from the...
This allows applications to react to the client closing the connection in a timely manner, without needing to perform IO to be notified. Signed-off-by: Stuart Douglas
Fixes #433 Signed-off-by: Stuart Douglas
# Expected Behavior The v1 API should not remove any fields # Actual Behavior `FeatureFlags` is referenced through `Provenance` which is part of the PipelineRun status. Removing a field from...
https://issues.redhat.com/browse/WFLY-9811
Because spring-loaded uses java.util.logging the LogManager is eagerly initialized. Because Wildfly uses modular class loading this happens before the Modules system has been set up, and as a result the...