Stepan Koltsov

Results 120 issues of Stepan Koltsov
trafficstars

To reduce memory and GC overhead it if often convenient to store data in plain arrays without object wrappers. In Java it is not possible to override `equals` and `hashCode`...

enhancement
PR wanted

There's a mistake I did many times, and I suspect others did it too. It can be illustrated with this example: ```rust fn produce_messages(tx: Sender) -> io::Result { let file...

C-feature-request
A-channel

[grammar.lalrpop](https://gist.github.com/stepancheg/ae4565c80c50c4e4daf6f27b25d98b4b) Command: ``` cargo run --bin lalrpop -- grammar.lalrpop ``` and it runs four minutes. Remove all `pub(crate)` from the file, command finishes in three seconds. **edit**: also with `pub(crate)`...

Consider this example: ``` fn parse_int(lex: &Lexer) -> ??? { lex.slice().parse::() } enum Token { #[error] Error, #[regex("[0-9]+"), parse_int] Int(i32), #[regex(...), parse_string_literal] StringLiteral, } ``` Parse errors are converted to...

### Please complete the following tasks - [X] I have searched the [discussions](https://github.com/clap-rs/clap/discussions) - [X] I have searched the [open](https://github.com/clap-rs/clap/issues) and [rejected](https://github.com/clap-rs/clap/issues?q=is%3Aissue+label%3AS-wont-fix+is%3Aclosed) issues ### Clap Version 3.1.8 ### Describe your...

C-enhancement
A-derive
S-waiting-on-design

Latest released version is 0.21.4 but there's no git tag for that revisions. Tags are useful for local experiments: when an error need to reproduces with local modifications, knowing which...

For now it has two subcommands: * just parse end entity certificate * verify server certificate Is not meant to be public, does not provide a stable interface. Useful mostly...

Implement per-call load balancing. See https://github.com/grpc/grpc/blob/master/doc/load-balancing.md.

Similarly how it's done for protobuf