Stargateur
Stargateur
I also have get your error for no obvious reason for me. But on a lot of route I get: ```python File "falcon\app.py", line 371, in falcon.app.App.__call__ File "C:\Users\Star\AppData\Local\Programs\Python\Python39\lib\site-packages\openapi_core\contrib\falcon\middlewares.py", line...
But isn't already what rust do what you return a Result from main [`impl Termination for Result`](https://doc.rust-lang.org/src/std/process.rs.html#2133-2139) ? I think having a way to construct a `ExitCode` from an `Snafu`...
This make all color fail every time I write some_module::macro_name!(). I like to avoid import too many into my namespace.
I don't even understand how to do a bulk... ```rust body.push(json!({"index": {"_id": "1"}}).into()); body.push(json!({ "id": 1, "user": "kimchy", "post_date": "2009-11-15T00:00:00Z", "message": "Trying out Elasticsearch, so far so good?" }).into()); //...
thank a lot all is way more clear, your answer will help a lot of people I think. The link I found was the top link to show in my...
Seem to work quite nicely: - it's a little strange Bulk*Operation don't directly implement Body - after 1000 items bulk I didn't see improvement, it was my previous default with...
please try install lfs with cargo: ```bash curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh # https://rustup.rs/ install rust cargo install lfs ``` Should work way better.
```C #include #include void swap(size_t *p, size_t a, size_t b) { size_t tmp = p[a]; p[a] = p[b]; p[b] = tmp; } size_t heaps(size_t n) { size_t *a = malloc(n...
@johnfgibson Sorry, I should make it more clear that I change the initialisation in favor of the rust: `p[n] = n+1; // n + 1 could overflow n is as...
@kalmarek @johnfgibson I'm not a mathematician, if you conclude that function should start init with `1`, I'm ok with it. But I didn't think that the result was so important,...