Austin Beer
Austin Beer
https://stackoverflow.com/questions/729692/why-should-text-files-end-with-a-newline
### Version Vert.x 4.0.3 ### Steps to reproduce The implementation of hashCode() in `JsonObject` and `JsonArray` just returns the underlying list or map's `hashCode()` value. However, the corresponding `equals()` function...
As documented by https://docs.pocoproject.org/current/Poco.Util.ConfigurationView.html#:~:text=If%20a%20property%20is%20not%20found%20in%20the%20view%2C%20it%20is%20searched%20in%20the%20original%20configuration.%20Given%20the%20above%20example%20configuration%2C%20the%20property%20named%20%22config.value1%22%20will%20still%20be%20found%20in%20the%20view and as implemented in https://github.com/pocoproject/poco/blob/poco-1.12.2-release/Util/src/ConfigurationView.cpp#L38, ConfigurationView's `has*()` and `get*()` functions will search outside of the ConfigurationView in the original configuration if the element being queried isn't...
printf() supports a space ' ' as a flag in the format specifier. It would be great if Poco::format() supported the same. http://www.cplusplus.com/reference/cstdio/printf/ https://github.com/pocoproject/poco/blob/1bf40a0cd28be83e6243a0524be19118792c8cd1/Foundation/src/Format.cpp#L30
printf() supports %g and %G as format specifiers. It would be great if Poco::format() supported the same. http://www.cplusplus.com/reference/cstdio/printf/ https://github.com/pocoproject/poco/blob/1bf40a0cd28be83e6243a0524be19118792c8cd1/Foundation/src/Format.cpp#L118
When `flattenMode` is set to `bom` the plugin keeps the `properties` and `dependencyManagement` sections of the POM. But as of version `1.5.0` it removes the `pluginManagement` section in `bom` mode....
amqp-ts currently uses an outdated version of amqplib. This PR updates it to use the latest version. Changelog for amqplib: https://github.com/squaremo/amqp.node/blob/master/CHANGELOG.md
There are situations where a consumer may not want to immediately reply to a message even though the message has the replyTo field set. This change allows a consumer to...
# Environment ```none Windows build number: 10.0.18363.0 Windows Terminal version: 1.4.3243.0 ``` # Steps to reproduce 1. Update settings.json to use the `One Half Light`, `Solarized Light`, or `Tango Light`...
I recently took another look at this upgrade_mutex implementation. This is a good implementation and it seems a shame that it isn't in the C++ standard library and probably won't...