Jeff Alder
Jeff Alder
Please answer these questions before submitting a bug report. ### What version of OpenCensus are you using? 0.23.0 (latest) ### What JVM are you using (`java -version`)? ``` openjdk version...
Because `BsonValue` has boolean `is` methods, and throwing `as` methods, a common pattern is: ```java BsonValue value; if (value.isSomeType()) { BsonSomeType valueSomeType = value.asSomeType(); // .. operate on valueSomeType }...
Buildifier attempts to scan the entire working directory. If you have a git repo, it looks in `.git` as well. That means that if your remote has a branch called...
I have a build using `rules-jvm-external` 6.2: ```python RULES_JVM_EXTERNAL_TAG = "6.2" RULES_JVM_EXTERNAL_SHA = "808cb5c30b5f70d12a2a745a29edc46728fd35fa195c1762a596b63ae9cebe05" # later http_archive( name = "rules_jvm_external", strip_prefix = "rules_jvm_external-%s" % RULES_JVM_EXTERNAL_TAG, sha256 = RULES_JVM_EXTERNAL_SHA, url =...
#### Description Reduces the chance that an uninitialized `pcommon.Map` will escape a scope. #### Link to tracking issue Fixes #40204 #### Testing Unit tests on logdedupprocessor #### Documentation Just one...
Fixes #177 I don't love this approach but there are some constraints: 1. Because the plugin is independent of the JavaFX version, I expect that JavaFX will potentially incubate other...
In order to use incubator modules with the gradle plugin, I have to do the following: 1. Add `--add-exports` from javafx.graphics and javafx.base 2. Declare explicit `implementation` dependencies on the...