argv-minus-one

Results 26 comments of argv-minus-one

@stanislav-tkach If we split it into two methods, then they cannot exist in the same build, since the basic dynamic linking (`invocation`) and discovery (`invocation-dyn`) mechanisms are mutually exclusive. I...

@keastrid: It will also look at the `JAVA_HOME` environment variable (if it is non-empty). Alternatively, you can call `JavaVM::with_libjvm` to load `jvm.dll` from an arbitrary path. If what you have...

@keastrid On Linux, finding `libjvm.so` seems to be enough. It somehow figures out where to find all the other shared libraries (`libjava.so`, `libprefs.so`, and so on) without needing them to...

I've rebased against current `master` and added a changelog entry. The code remains unchanged.

As suggested by @stanislav-tkach, I've expanded the documentation for `new_local_ref` including an example. Code remains unchanged. The added documentation doesn't mention weak references because the `jni` crate currently doesn't support...

That's understandable. I wish I could ignore IE too, but it still accounts 3.76% of my page views last month. It is dying, but it's not dead yet. Unfortunately, I...

I've added some tests of recursive changes, and changed `ObservableSortedArraySet` to be based on `LiveList`. Recursive changes seem to work correctly now. (I tried using `FXCollections.observableArrayList`, but you were right—recursive...

>we want to avoid both converting (checking) to str AND decoding when possible Rust performs those checks for a reason: failing to do so [is a security vulnerability.](https://unicode.org/reports/tr36/#UTF-8_Exploit) Skipping decoding...

@jrose-signal, [here's a commit with this change applied](https://github.com/argv-minus-one/jni-rs/commit/784e59c0efcd4443bc5cef52e2a975450a09ff78), but what you describe doesn't seem to work for [`AutoElementsCritical`](https://github.com/argv-minus-one/jni-rs/blob/784e59c0efcd4443bc5cef52e2a975450a09ff78/src/wrapper/objects/auto_elements_critical.rs): ``` Checking jni v0.21.0-alpha.0 error[E0621]: explicit lifetime required in the type of...