Chris Novakovic
Chris Novakovic
The Java compiler outputs header files for Java sources that use the Java Native Interface (JNI), but there's currently no way for them to be consumed by the native-code components...
Reproducible, but seems to be pretty low-impact given that it doesn't actually stop Please from building. Running `plz clean && ./bootstrap.sh` triggers a race condition when building `//src:please`: ``` ==================...
MWE: ``` # pkg/constant.build_defs: CONSTANT = "constant" # pkg/BUILD: export_file( name = "constant", src = "constant.build_defs", visibility = ["PUBLIC"], ) subinclude(":constant") genrule( name = "output", outs = ["out"], cmd =...
As of commit 1ee5a18, which fixes issues #9 and #55, the `export()` function closes the SQLite database (`sqlite3_close_v2()`) and reopens it (`sqlite3_open()`). This silently causes any pragmas that have been...
OpenSSL can be built without ENGINE support, and some libssl-compatible forks (e.g. BoringSSL) don't contain any ENGINE implementation at all - guard all references to the ENGINE API using `OPENSSL_NO_ENGINE`...
## Description Add a `--redis-key-prefix` command line option (and `redis_key_prefix` configuration file setting) defining a string that is prepended to all Redis keys created and queried by oauth2-proxy. This makes...
### Proposed changes The `map` directive (from ngx_http_map_module and ngx_stream_map_module) and `types` directive (from ngx_http_core_module) are distinct from other directives, in that their child directives may be arbitrary strings that...
**Describe the bug** This is similar to #101 but slightly different because of the extra expressiveness of `map` compared to `types`. The analyser doesn't take into account the special syntax...
**Describe the bug** The analyser doesn't take into account the special syntax of `http` `types` blocks, in which directives are arbitrary MIME types. This means that crossplane doesn't recognise Nginx...
The ProhibitStringyEval policy can be relaxed to allow `eval` strings that only import a library file, but this doesn't allow `eval` strings that export a library file into another package's...