Stepan Koltsov

Results 120 issues of Stepan Koltsov
trafficstars

Can you please clarify (in readme), is it meant to be compatible with server-side rendering?

I upgraded stgit, and now zsh prompt does not show current patch. stgit metadata format changed, so old code reading metadata in zsh no longer works. [code](https://github.com/zsh-users/zsh/blob/78649ac72596104cfcbaad9a5a7d1a1afa981a4c/Functions/VCS_Info/Backends/VCS_INFO_get_data_git#L192-L193) There are no...

[Grammar](https://developers.google.com/protocol-buffers/docs/reference/proto3-spec) of `enumField`: ``` enumField = ident "=" intLit [ "[" enumValueOption { "," enumValueOption } "]" ]";" intLit = decimalLit | octalLit | hexLit decimalLit = ( "1" …...

documentation

These would have helped me, might help someone else.

Ubuntu job for starters

Apparently, virtual calls `Statement.kind()` and `Expression.kind()` are quite expensive. JVM/CPU are unable to predict/inline/optimize it properly. Make them non-virtual. Speed up is 5-10% in statements/expression heavy code. This is a...

cla: yes
team-Starlark-Interpreter
awaiting-review

When `@StarlarkMethod(trustReturnsValid = true)` is specified, the interpreter does not check the method returns a valid Starlark object (which is does by default unless return type is statically known to...

cla: yes
team-Starlark-Interpreter

Make `Error::from_std(impl StdError, Option)` public so a user can control whether capture backtrace or not. Alternatively, `Error` may have constructors with an option to capture backtrace, like: ``` impl Error...

There are for options to print `anyhow::Error`: * only the message `{}` * single line causes `{:#}` * causes and backtrace `{:?}` * debug `{:#?}` There's no way to print...

Bumpalo provides `chunk_capacity` function which is helpful to understand that's alloc overhead in current chunk. However, previous chunks may also have unused capacity. So a function like `alloc_overhead` may be...