Hyang-Ah Hana Kim
Hyang-Ah Hana Kim
Thanks @aaomidi How frequently do you see this failure? If you retry, does it succeed?
I guess the closest is data breakpoint. Delve DAP (the debug adapter behind the scene) is not supporting data breakpoints yet. https://github.com/go-delve/delve/blob/a164b89df10aba455e0196222e51fa4b65e5746c/service/dap/server.go#L796-L799 Contribution to DAP (in the go-delve repo) is...
Upstream issue: https://github.com/microsoft/vscode/issues/54272 The pretty ts error extension seems to implement a hover message provider that digests diagnostics messages and formats it. https://github.com/yoavbls/pretty-ts-errors/blob/main/src/extension.ts Btw, if the error message came from...
Should it run in the single file mode, or run the package?
@vuon9 Thanks for the PR! I see the current implementation is similar to `run test` codelens, creates a dedicated output channel called "Go Main" and forwards `go run .` output...
@Tiper-In-Github thanks for reaching out. Do you see a pending progress popup? If so, can you share the full gopls log with us? Thanks! The second error (fixes: allImportsFixes...) is...
I got the following failure locally already. Keep looking. ``` --- FAIL: TestClientServer_SinglelineStringFormattedWithBigInts (1.17s) integration2_test.go:2786: constant: "8180A06000000000" integration2_test.go:2808: "9331634762088972288" "8180A06000000000" integration2_test.go:2808: "9331634762088972288" "8180A06000000000" integration2_test.go:2808: "9259436018245828608" "8080200000000000" integration2_test.go:2808: "9259436018245828608" "8080200000000000" integration2_test.go:2808:...
Is there any option to disable all?
I believe currently only CPU profile utilizes tag information. I am quite surprised pprof on goroutine profile ever reports tags (tag 1 and 2?, kB? maybe pprof bug) > When...
@ccfrost Who will not love well-written documentation. Send a CL! I don't think it's too hard to extend the goroutine profile to include the labels. Probably not difficult for any...