Tim Lander

Results 23 comments of Tim Lander

You can attach a listener to a BooleanProperty that makes a Field editable. But of course you need to capture the Field (as in `com.dlsc.formsfx.model.structure.Field`) first if you're not doing...

You can implement your own `StorageHandler`, I believe you can even extend `StorageHandlerImpl`. Then you could re-implement `saveObject`. To use this use `PreferencesFx.of(new MyStorageHandler(), Category.of...`.

I suspect the fix is similar to the one here: https://github.com/jenkinsci/jenkins/pull/4931/files

PR for plt segment here: #170, which will further this issue a bit.

Personally, I'd find a natvis for `concurrent_hash_map` really helpful.

> We should never support sync > This will run in browsers/servers where response time is crucial Just to add my 5c, my use case is using this in a...

FYI there's https://github.com/emscripten-ports/zlib, which is what gets used when building with `-s USE_ZLIB=1`. I don't know what the difference is between that port and pure zlib.

> The Win32 implementation could use that hint to just call PathFileExistsW(). That sounds like a good idea. I am using `GDAL_DISABLE_READDIR_ON_OPEN` = "YES", as that had a pretty big...

I did some quick profiling between `_wstat64`, `GetFileAttributesW`, and `PathFileExistsW`. `GetFileAttributesW`, and `PathFileExistsW` performed the same (within margin of error), which was about 2x-3x faster than `_wstat64`. `PathFileExistsW` requires linking...

Just noticed there's already a CPLCheckForFile (which calls _stat internally on windows), so maybe that should be used instead of VSIStatExL to check for existence. And CPLCheckForFile could be modified...