Jasperav

Results 42 issues of Jasperav

Given the example proto file: ``` syntax = "proto3"; package snazzy.items; // A snazzy new shirt! message Shirt { enum Size { SMALL = 0; MEDIUM = 1; LARGE =...

enhancement

Timestamp is a WellKnownType. I am confused how to fill this struct with the current time. Seconds is implemented as i64, and nano is implemented as i32. Are they both...

It would be great if I can present multiple centered views, without the one waiting for another. I got a tableView which displays the messages the user has. This is...

enhancement

I am using the new feature with the centered view which can be pushed away by the user. It look amazing. However, I have one little request. When the user...

enhancement

Currently a new Client is created for each time a request is made, e.g.: https://github.com/durch/rust-s3/blob/69e3efe3a7219bc9d2aab8535b74265642e22d45/s3/src/request.rs#L77 The documentation of Client tells us that the Client should be reused: https://github.com/seanmonstar/reqwest/blob/7d8c32784e543b1a2b9536a70db466c0250876c2/src/async_impl/client.rs#L54 It is...

https://zookeeper.apache.org/doc/r3.1.2/recipes.html section 'Locks' gives an example on how to do locking. I see an open issue also has something to do with locking: https://github.com/bonifaido/rust-zookeeper/issues/17. I can write some rust code...

I don't have any ZooKeeper server running, but `ZooKeeper::connect` will not throw an error. My expectation is that if it can not connect, it notifies me. Furthermore, take this code:...

I want to use signed URL's so people can download objects when my server provides them the URL. This is what I mean: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/private-content-creating-signed-url-canned-policy.html. I don't see any method on...

I can not cancel the current animation.

enhancement

This fails to parse, but it can be successfully executed by SQLite (after providing a value for the parameter): ``` #[test] fn go() { use sqlparser::dialect::SQLiteDialect; use sqlparser::parser::Parser; let sql...