Tamir Duberstein
Tamir Duberstein
In particular, this would be useful in [CockroachDB](https://github.com/cockroachdb/cockroach) where we have some structured error types that do not implement the Error interface for various reasons. cc @kkaneda
Per [RFC 1123 section 2.1](https://www.rfc-editor.org/rfc/rfc1123#section-2): > If a dotted-decimal number can be entered without such identifying delimiters, then a full syntactic check must be made, because a segment of a...
I'm not sure how to easily run this test on its own with TSAN. Maybe @amscanne or @prattmic know? ``` Note: Google Test filter = AllInetTests/TcpSocketTest.ClosedReadBlockingSocket/0 [==========] Running 1 test...
structopt supports "flattening", which allows one struct to be embedded in another "transparently". This is useful as documented in structopt, but also useful when two commands have the same arguments...
``` package main import ( "fmt" "github.com/google/go-cmp/cmp" ) type intHolder struct { i int } func main() { got := []intHolder{ {i: 1}, } want := []int{1} fmt.Println(cmp.Diff(want, got, cmp.Transformer("myTransformer",...
There are lots of unix assumptions here at the moment. For the 1.0 release, it would be fantastic to call out the existence of this package as a quick way...
This produces a more understandable failure message in cases such as https://travis-ci.org/rust-lang/rust/jobs/389759833.
See https://github.com/TeXitoi/structopt/issues/525. Currently codespan-reporting is the most downloaded dependent of structopt: https://crates.io/crates/structopt/reverse_dependencies.
There's something about GitHub's OpenAI schema that causes `yq` to hang or at least become *very* slow but only when stdout is redirected to /dev/null. Weird stuff. Repro: ```shell #...