Dov Murik

Results 17 issues of Dov Murik

The paragraph describing non-threadsafe futures is a bit confusing. Clarify that one may use `#[async_trait(?Send)]` to create _non-threadsafe_ methods. ---- CC: @fitzthum

Add new API calls (`writeOnlySecretKeyTo`, `readOnlySecretKeyFrom`) to save/load just the secret key, resulting in a much smaller file. Author: @HayimShaul cc: @aehud

We're running Skydive on Openshift 3.11 on IKS. Here's the Skydive agent log: ``` 2019-09-05T08:37:31.789Z INFO agent/agent.go:41 glob..func1 kube-wdc04-crac1766060dcf4354816f6b171eae7a7b-w1.cloud.ibm: Skydive Agent _2019-09-02T05:45:19 starting... 2019-09-05T08:37:31.791Z INFO http/server.go:104 (*Server).Listen kube-wdc04-crac1766060dcf4354816f6b171eae7a7b-w1.cloud.ibm: Listening on...

## Description I'm developing a chaincode program in my own repo (outside the `fabric` repo). I want to define a private function that accepts a parameter of type `gp.Timestamp`, where...

chaincode
build-system

I'm compiling a simple program which includes the `tensor.hpp` header: ```c++ #include #include int main() { auto A = boost::numeric::ublas::tensor{3,4,2}; std::cout

bug
question
fixed

### Version 1.25.0 ### What happened? When using named parameters such as `@name`, sqlc doesn't recognize the parameter if there's no space before the `@` character. The generated code looks...

bug

It seems that function [`pglogical_connect_base`](https://github.com/2ndQuadrant/pglogical/blob/REL2_x_STABLE/pglogical.c#L299) overrides the values of the following connection-string parameters, if given by the user: * `connect_timeout` * `keepalives` * `keepalives_idle` * `keepalives_interval` * `keepalives_count` This means...

**Which feature do you think can be improved?** License check should ignore *.bin files (similarly to how it ignores *.png). **How can it be improved?** Skip *.bin files in license...

enhancement
needs-review

Consider this Skew program: ``` @entry def main { var s = "ABCDEF" switch s[0] { case 'A' { assert(true) } default { assert(false) } } } ``` It compiles...