Brian Vincent
Brian Vincent
I would love to see an example of writing a custom widget, for example: A new widget that derives from `DrawingArea` and implements `Scrollable`. Information on how to do this...
To reproduce this issue: 1. Start a request that takes longer than 30 seconds. In my case, I saw this while doing a large 60 MiB PUT request. 2. After...
This should make the tests in PR #185 much faster. This was the pattern before my change: ``` r"""Usage: prog a b [-p ]... prog a c [-p ]... """...
I've learned a lot about the sqlite3_column_* functions and redid my methods in [go-sqlite-lite](https://github.com/bvinc/go-sqlite-lite/). * sqlite3_column_blob and sqlite3_column_text might fail with the NOMEM error. * sqlite3_column_text returns a NULL pointer...
``` $ cargo +nightly bench --all Compiling cb v0.1.0 (/home/brain/src/libm/crates/compiler-builtins-smoke-test) Compiling libm v0.2.1 (/home/brain/src/libm) error[E0432]: unresolved import `crate::_eqf` --> crates/compiler-builtins-smoke-test/src/../../../src/math/sincosf.rs:128:9 | 128 | use crate::_eqf; | ^^^^^^^^^^^ no `_eqf` in...
Running `buck2 debug chrome-trace` in debug mode would panic as clap has a debug assert to check for duplicate argument IDs. It is my understanding that duplicating argument IDs can...
When using buck2 in the default configuration (not using watchman), buck2 uses the `notify` crate to monitor file system events to keep its view of the file system consistent. While...
This wraps the transport layer of the OSS RE client channels to count the number of bytes uploaded and downloaded. This allows the network statistics to show up in the...
This issue is to inform anyone experiencing deadlocks or hangs related to re_upload requests what the issue is, and how it can be fixed. Since buck2 uses tonic and h2,...
Add a test to demonstrate connection logical deadlock due assigning capacity to pending open streams
This is a companion PR to help understand the bug pointed out by PR #860. The program I present here is based on PR #852, which also demonstrates a deadlock....