Quim Muntal
Quim Muntal
This PR is just to view which are the changes required to adopt Go 1.18 type parameters. I'm still not sure if it is worth making State and Trigger generic...
This PR adds support for debugging on `windows/arm64`. There are some tests failing, but with these changes I can use `dlv` to debug big codebases without problems. I could reuse...
[WER](https://learn.microsoft.com/en-us/windows/win32/wer/about-wer) is a Windows built-in infrastructure provided by Microsoft that helps troubleshooting hardware and software problems. Many systems rely on the core dumps generated by WER for post-mortem analyses. These...
## Background Go binaries can't be reliably debugged or profiled with native Windows tools, such as WinDbg or the Windows Performance Analyzer, because Go does not generate PE files which...
`windows\arm64` builders have been unresponsive since December 12. First failing CL was https://go-review.googlesource.com/c/go/+/456835, which doesn't seem related. Is this a planed-long downtime? Is there an ETA for having them up...
`windows\arm64` builders have been unresponsive since February 14. I don't have more insights, but filling this issue to track the status of that failure. @cagedmantis @heschi @dmitshur
Changes: - Abstract all cgo with an interface that accepts accepts and returns cgo types - Do all the gocgo heavy lifting in Wrapper but delegate the real cgo call...
**Describe the bug** When the kernel is running in FIPS mode, the OpenSSL 3 default properties doesn't contain `fips=1`, which makes [EVP_default_properties_is_fips_enabled](https://docs.openssl.org/3.3/man3/EVP_default_properties_is_fips_enabled) return false. The Go Microsoft toolchain needs to...
## Background It is well known that [os/exec](https://pkg.go.dev/os/exec) doesn't correctly escape nor quote `*.bat`, `*.cmd`, `cmd /c *` arguments. This is because in all three cases the escape/quote rules that...