Gerard Davison
Gerard Davison
I am trying to update a project to JDK 17 and want to update all dependencies in a consistent way so one of the outliers was Mockito through a power...
**Describe the bug** You cannot quickly profile a maven job, in this case to work out why a test was failing a performance metric only when run using Maven. **To...
HTTP/2 bring renewed support for tailing headers, this useful when using headers such as Server-Timing where you want to report on work done when streaming the response body after the...
It would expect: builtResponse.getStatusInfo().equals(Response.Status.UNAUTHORIZED) to be equals to Response.Status.UNAUTHORIZED.equals(builtResponse.getStatusInfo()) But the enumeration doesn't implement equals for StatusType, just relying on object identity. So if builtResponse.getStatusInfo() returns an instance of Statuses.StatusImpl...
Since this is a API being written from scratch could it be written in terms of promises which are much easier to code with. It appears to be available in...
Ideally this plugin should support observable properties, some values such as blood pressure might be subject to safety limits and should be reacted so by the observing app as soon...
webAudioContext is there but not AudioContext, could the constructor code be replaced with this: var AudioContext = window.AudioContext || window.webkitAudioContext; audio.contex = new AudioContext();