Codeborne
Codeborne
Currently Ninja framework renders default action template even when non-success result code is specified. Here's a pseudo-code of how to reproduce that problem: ``` java public class PostsController { public...
Example with Kotlin coroutines: ```kt before { println("Before handler") ctx.onComplete { println("After response sent") } } after { println("After normal handler, but BEFORE suspend handler") } coroutine { get("/") {...
**Describe the bug** Snowpack hot reload receives updated json translations and tries to pass them to addMessages() again. However, _() still returns old texts after that. **To Reproduce** Just call...
https://github.com/testing-library/svelte-testing-library/blob/5ae96a77c7c4f80183ed89908482dc4b88059ae6/src/pure.js#L94 The code above should check if `fn` is a function before calling it, otherwise should be used as a Promise
When parsing Java8 code with lambdas (that use invokedynamic opcode), NPE is thrown because invokedynamic is not listed in Opcodes.java
In real Play 1.x templates, you can define a variable in template and then access it from the #{extend}-ed template. This pull request replicates this behaviour for compatibility. **example.html** ```...
BigInteger and BigDecimal are not converted because it is slow, but conversion of all other Numbers to double is a single CPU instruction Otherwise numbers like 0.5 using intValue() ==...
Otherwise stack traces are too long and unreadable if execution of JavaExtension methods fails
Like is recommended, we call `tsl.refresh()` manually on the app start. However, if there is no cache yet and the first request fails, the library does not remember that it...
It creates its own ExecutorService and threads, but it should use the one provided by Configuration class.