Titouan BION

Results 5 issues of Titouan BION

My controller is the following: ```java @GetMapping public ResponseEntity getAll(final @PageableDefault(sort = "id") Pageable pageable) { return ResponseEntity.ok(null); } ``` The resulting Swagger UI is: ![screen shot 2018-08-15 at 17...

maintenance
next

I did not find any way of specifying configuration for AWS client. There is some environment variable there to modify [accessKeyId, secretAccessKey and sessionToken](https://github.com/oclif/dev-cli/blob/master/src/aws.ts#L23) as well as [endpoint](https://github.com/oclif/dev-cli/blob/master/src/aws.ts#L36) However, there...

Any usage of the `kotlinx.coroutines.debug` package, for example `import kotlinx.coroutines.debug.DebugProbes` results in: ``` [JAVA_MODULE_DOES_NOT_EXPORT_PACKAGE] Symbol is declared in module 'kotlinx.coroutines.debug' which does not export package 'kotlinx.coroutines.debug' ``` The split package...

bug

Is there any plans to support Kotlin/Wasm JS (equivalent to `wasmJs` target in the Kotlin Gradle Plugin)?

`rules_rust` sets one `-Ldependency` statement per transitive dependency, leading to potentially a very long library search path. The issue is, on Windows, in `rustc` the search paths get added to...