Clouds
Clouds
```scala import play.twirl.api.StringInterpolation val test_seq = Seq(10,20,30) def test_div(i: Int) = html"$i" html""" ${test_div(-1)} ${test_seq.map(i => {test_div(i)})} """ ``` outputs ```html -1 <div>10</div><div>20</div><div>30</div> ``` While I expects ```html -1 102030...
Like what's in pandas, http://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.diff.html, or more generally http://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.shift.html
### Description 1. Hover on some variable and the datatip appears (ok) 2. Select text inside the datatip (ok only if the text is not collapsed) 3. Copy the text...
Now we could only configure `prefix` in `repo_opts`, is it possible to make the option also available in `Dataloader.Ecto.load`? For example ```elixir Dataloader.Ecto.load_many(Repo, :assoc_key, record, repo_opts: [prefix: "my_prefix"], other_option: true)...
Version of VSCode: 1.32.3 Version of the extension: 0.4.2 OS: macOS rustc 1.34.0-nightly (f6fac4225 2019-02-03) cargo 1.34.0-nightly (245818076 2019-01-27) Description: Output of the "Rust logging" channel: ``` DEBUG: Rustup: updateToolchains:...
Error message: ``` [FATAL:D:\a\engine-builds\engine-builds\engine\src\flutter\fml\memory\ref_ptr.h(115)] Check failed: ptr_. ``` How to get the backtrace of flutter engine? ``` Flutter 1.12.13+hotfix.8 • channel stable • https://github.com/flutter/flutter.git Framework • revision 0b8abb4724 (6 weeks...
Now JavaCall tries to use `saved_args` to keep reference of JavaObject while pass `arg.ptr` into JNI FFI. https://github.com/JuliaInterop/JavaCall.jl/blob/d6c3678d3a93fae903fb3ab1cb1ea7ea1fc91f92/src/core.jl#L244-L248 But `saved_args` is not referenced after it created, it might be garbage...
1. Now the get class for name is compatible with Array and primitive types https://github.com/JuliaInterop/JavaCall.jl/blob/d6c3678d3a93fae903fb3ab1cb1ea7ea1fc91f92/src/convert.jl#L321-L325 https://github.com/JuliaInterop/JavaCall.jl/blob/d6c3678d3a93fae903fb3ab1cb1ea7ea1fc91f92/src/reflect.jl#L163-L168 This method may help ```julia function jtypeforclass(cls::JClass) isarray(cls) = jcall(cls, "isArray", jboolean, ()) !=...
after `using JavaCall; JavaCall.init()` the following code would crash ```julia union([1 for a in 1:1000]...) ``` (after using JavaCall and before JavaCall.init() won't) linux 4.19.2 julia version 1.0.1 JavaCall v0.7.1...