Derek P. Moore

Results 42 issues of Derek P. Moore

I have a sample AVIF file of page 1 of the U.S. Constitution stored on the Bitcoin blockchain here: https://bico.media/4c97b18d3f157b593045fe1525f5fdc608bc207e4729964855604ad40dc77e0f The file is viewable with avif.js: https://kagami.github.io/avif.js/?src=https://bico.media/4c97b18d3f157b593045fe1525f5fdc608bc207e4729964855604ad40dc77e0f It would be...

enhancement
JavaScript

If a loaded MIB has TRAP-TYPE definitions, they act as a catch-all when using `getSymbolByOid(String oid)`. This prohibits loading several MIBs and looping over them in a `getMibForOid(String oid)` routine...

Gradle build appears to be broken. The 'test' task in build.xml requires being renamed in order for build to succeed.

**Change log description** Update docs to support Docusaurus **Purpose of the change** Fixes #479 **How to verify it** Build with github.com/pravega/docs

`JsonObject`'s getters are inconsistent in the interfaces that they provide. `getString("thing")` throws an exception if the key is missing, all other getters return null. As a convenience method, `getString()` should...

Docs show using `jsonb.fromJson()` and `jsonb.toJson()` following `Jsonb jsonb = JsonbBuilder.create()`, but the docs are highly misleading in not showing the required `jsonb.close()` calls. Update the docs to show the...

Provide equivalent exception types for the new v2.0 Response.Status fields.

enhancement
api

With Jersey's WebResourceFactory and MicroProfile's Rest Client, re-using the same JAX-RS-annotated interfaces on the client-side and the server-side is becoming more common. When the server-side methods have arguments, it becomes...

I have this rather large routine: ``` requestedOrdersForTemp := bunDB.NewSelect(). ColumnExpr("o.orderid, o.customerid, eo.shiftnum"). TableExpr("orders o"). Join("LEFT JOIN tempRequestedShifts trs ON trs.orderID = o.orderid"). Join("JOIN enrichedOrders eo ON o.orderID = eo.orderid")....

**Change log description** Adds `Comparable` interface to `StreamCut`. Adds `compareTo()` methods to `StreamCutImpl` and `StreamCut.UNBOUNDED`. **Purpose of the change** Fixes #7032 **What the code does** It allows StreamCuts to be...