DidierLoiseau
DidierLoiseau
Using Autotorio, when you have a blueprint containing a Decider combinator which outputs “_Input count_” (which is normally the default), the Blueprint Tool changes the output to “1”.
**Affects:** 5.3.21 --- When a multipart request contains a part with a quote or backslash in the `name` or `filename`, it should be escaped. `ContentDisposition` properly escapes them when building...
If you forget to instrument the code, the wrong warning message is printed: > WARN com.ea.async.Async - Warning: Illegal call to await, the method invoking await must return a CompletableFuture...
**Expected Behavior** `RedirectServerAuthenticationSuccessHandler`/`ServerRequestCache.getRedirectUri()` should allow to redirect using an absolute URL (e.g. `http://localhost/secured-path`) so that reverse proxies can automatically rewrite the location header, like with Web MVC (`SavedRequestAwareAuthenticationSuccessHandler` / `RequestCache`)....
Quite often, it is useful to quickly find the next/previous occurrence of some text, be it in the search results or in the inline. Currently, this requires to filter the...
I know it’s probably not supported officially, but I wanted to report the issue in case it could help others, and maybe also give a little push for a native...
According to the [Add-on Compatibility Reporter](https://addons.mozilla.org/en-US/firefox/addon/add-on-compatibility-reporter/), this extension is not compatible with multiprocess (a.k.a. [Electrolisys](https://wiki.mozilla.org/Electrolysis)) and prevents to enable it automatically.
[`text-transform: uppercase`](https://developer.mozilla.org/en-US/docs/Web/CSS/text-transform) defines some language-specific rules such as `i`/`İ` for Turkic languages and `άι`/`ΑΪ` for Greek. As shown with the following html, WeasyPrint does not seem to respect those rules:...
In the Bluetooth settings, you can select a controller, and then flip a toggle to disconnect the controller and turn it off:  Would it be possible...
Consider the following code: ```java @ExtendWith(MockitoExtension.class) public class MockitoTest { @Mock MyService myService; @Test public void test() { Mockito.when( myService.doSomething( and(any(MyPojo.class), argThat(p -> p.id == 1)))) .thenReturn(1); myService.doSomething("hello"); } interface...