Dominik Honnef
Dominik Honnef
The following Augeas functions aren't currently implemented and should probably be added: - [x] aug_label - [ ] aug_cp - [ ] aug_rename - [ ] aug_text_store - [ ]...
gcassert doesn't notice when compilation fails and subsequently considers all assertions as having failed. This can be quite confusing. ``` $ go build foo.go # command-line-arguments ./foo.go:8:9: undefined: potato $...
``` class Email include Candy::Piece end class Emails include Candy::Collection collects Email end Emails.each do |email| email.provider # => nil email.refresh email.provider # => "some value" end ``` Imho, it...
I propose that the functions in package `build` return the destination register, where it makes sense. This would be especially useful in the context of AVX/VEX encoding and the 3...
I have a cacheserver instance running locally. I've added `cache: yes` to the Upspin config. Doing `upspin ls [email protected]/pub/` succeeds with ``` [email protected]/pub/Access [email protected]/pub/arnie.jpg [email protected]/pub/augie.jpg [email protected]/pub/augie.png [email protected]/pub/folk.mp3 [email protected]/pub/nf - Evolving...
easyjson adds their own `intern` option, see https://github.com/mailru/easyjson#string-interning – staticcheck currently flags this: `bar.go:5:15: unknown JSON option "intern" (SA5008)` Marking as needs-decision because I don't know how I feel about...
``` var magicNumber = 42 use(magicNumber) ``` could use a `const` instead. Using a real constant would signal to people and tools alike that the value of the variable intentionally...
Go 1.19 introduces new atomic types such as atomic.Int64. The 64-bit types are automatically aligned to 64 boundaries, even on 32-bit systems. It is likely that we need to implement...
This currently doesn't get flagged: ``` if errors.New("abc") == errors.New("abc") {} ``` This used to work, but we broke it when we added support for generics. We don't want to...