Patrick Pilch
Patrick Pilch
I've been struggling with this as well. Unfortunately I can't think of a way to make `assignableTypes` or even something like `@ControllerAdvice(annotations = [RestController::class])` work with the library's recommended approach,...
@taflanidi Any other features we could look into to implement this functionality?
After reading your response, my first thoughts were that 20 is a very conservative depth (V8's default stack size on Node v4.4.7 64bit is almost a megabyte), so I was...
@markstos It was generated using [https://github.com/lewish/asciiflow2](https://github.com/lewish/asciiflow2) hosted at [http://asciiflow.com/](http://asciiflow.com/) :) @lorenwest I tend to agree with your perspective, but find myself wishing I had this functionality regardless. There are lots...
I've taken a shot at it, and the problem I'm running into is working around `util.makeImmutable`. The natural place to "resolve" the wrapper would be where the `defer` resolution takes...
> Unable to update Detekt because of this, which in turn is preventing us from updating to Kotlin 1.4. @eygraber I have ktlint set up separately with kotlinter and I'm...
I was curious as to what was causing the overflow and it seems to be depth-first search graph algorithms in GraphViz like [inter_tree_edge_search](https://gitlab.com/graphviz/graphviz/blob/fc079e5bc5cb73e93d3f0326e5bae5822f210044/lib/common/ns.c#L342-373) and [dfs_range](https://gitlab.com/graphviz/graphviz/blob/fc079e5bc5cb73e93d3f0326e5bae5822f210044/lib/common/ns.c#L956-972). Recalling some of my related...
This occurred for me after I introduced a [StrictMode.VmPolicy](https://developer.android.com/reference/android/os/StrictMode.VmPolicy) with [policyDeath](https://developer.android.com/reference/android/os/StrictMode.VmPolicy.Builder#penaltyDeath()). [The implementation](https://github.com/aosp-mirror/platform_frameworks_base/blob/211ebf1318d828edbca2508f7c815ba371019e82/core/java/android/os/StrictMode.java#L2450-L2454) calls `System.exit(10)` which explained my error code.
Usage on 4.x ```typescript Keycloak({ // ... httpOptions: { headers: { 'some-header-name': 'some-header-value' } } }), ``` Usage on 5.x Not possible. The config type is missing the `httpOptions` parameter,...