Baoyi Chen
Baoyi Chen
``` protected void subAppend(E event) { if (!isStarted()) { return; } try { // this step avoids LBCLASSIC-139 if (event instanceof DeferredProcessingAware) { ((DeferredProcessingAware) event).prepareForDeferredProcessing(); } // the synchronization prevents...
https://github.com/jetty/jetty.project/blob/2584eb0429c3de1b05722337f3787859c9551eff/jetty-core/jetty-http/src/main/java/org/eclipse/jetty/http/UriCompliance.java#L365 should above code to be following? ``` public static String checkUriCompliance(UriCompliance compliance, HttpURI uri, ComplianceViolation.Listener listener) { for (UriCompliance.Violation violation : UriCompliance.Violation.values()) { if (uri.hasViolation(violation) && (compliance == null...
ua `Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Safari/605.1.15` ``` List fields = new ArrayList(4); fields.add(PLATFORM); fields.add(PLATFORM_VERSION); fields.add(BROWSER); fields.add(BROWSER_MAJOR_VERSION); UserAgentParser parser = new UserAgentService().loadParser(fields); Capabilities...
Please do a quick search on Github issues first, there might be already a duplicate issue for the one you are about to create. If the bug is trivial, just...
java version ``` openjdk 11 ``` oak version ``` com.yahoo.oak oak 0.2.3.1 ``` reproduce code ``` package cn.nextop.gadget.fma; import static org.junit.Assert.assertEquals; import java.util.HashMap; import java.util.Map; import java.util.Random; import org.junit.Assert; import...
env ``` os : macosx aarch64 jdk: OpenJDK 64-Bit Server VM Zulu11.48+21-CA (11.0.11+9-LTS, mixed mode, tiered, compressed oops, g1 gc, bsd-aarch64) ``` oak version ``` com.yahoo.oak oak 0.2.3.1 ``` reproduce...
### Integration sentry-android ### Build System Gradle ### AGP Version 7.4.2 ### Proguard Enabled ### Version 7.8.0 ### Steps to Reproduce Contexts.setTrace(final @Nullable SpanContext traceContext) ### Expected Result it's Nullable....
**Describe the bug** Since we set `accessOrder` to `true` during serialization, we expect the output order after deserialization to be `a, b`. However, due to the fact that the `accessOrder`...
**Describe the bug** A clear and concise description of what the bug is. ``` org.apache.mina.core.write.WriteToClosedSessionException: null at org.apache.mina.core.polling.AbstractPollingIoProcessor$Processor.clearWriteRequestQueue(AbstractPollingIoProcessor.java:1192) at org.apache.mina.core.polling.AbstractPollingIoProcessor$Processor.removeNow(AbstractPollingIoProcessor.java:1153) at org.apache.mina.core.polling.AbstractPollingIoProcessor$Processor.removeSessions(AbstractPollingIoProcessor.java:864) at org.apache.mina.core.polling.AbstractPollingIoProcessor$Processor.run(AbstractPollingIoProcessor.java:694) at org.apache.mina.util.NamePreservingRunnable.run(NamePreservingRunnable.java:64) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)...