bendem

Results 193 comments of bendem

Docker side mentions me that `+` in urls is deprecated (no source) and that they support (doesn't actually work) `ssh://`, which makes more sense in my opinion too.

Nothing, I don't have the knowledge to implement this, but it's still an open feature request.

So something like this? ```java try (Closeable closeableService = new Closeable(Executors.newSingleThreadExecutor(), ExecutorService::shutdown)) { ExecutorService service = closeableService.get(); // ... } ``` ```java public class Closeable extends AutoCloseable { private final...

Ignoring the fact that we'd need to extract the interfaces to create the proxy, intersections seem to need both types to be concrete. ``` ➜ java.py -s 'class A {...

Came here to say that. I just had to write ``` java .map(envelopeAndPath -> envelopeAndPath.map2(Function1.from(Unchecked.function(Files::newInputStream)))) ``` Expected to find a method allowing this instead: ``` java .map(envelopeAndPath -> envelopeAndPath.map2(Unchecked.function1(Files::newInputStream))) ```...

Yes, my specific problem was fixed by https://github.com/jOOQ/jOOL/commit/91e719d1256674a0eef20d179d08a260b9cf75c2. Before that you had to use jool's `Function1`.

Yes, that's the point of userData in my opinion, provide something dynamic to a static view. There is no way scenebuilder could ever resolve that symbol.

Hello, it's 2021 and there is still no way to connect spagobi to a ldap server enforcing secure connection (through tls/ldaps or through starttls). The upstream library supports starttls (but...

For the sake of the argument, what is wrong with having multiple upstreams use multiple certificates as long as they are valid? If you terminate the TLS connection at the...