[go-nuts] Re: CPU profiling with pprof

2019-09-07 Thread Jake Montgomery
I can not speak to your specific issues, but I would point out that the link you referenced as "the documentation of the profiling", is not the technical documentation. It is simply an informative blog post. It was also written in 2011 and last updated in 2013. Given those two things, I would

Re: [go-nuts] Line wrapping and the lack of some convention

2019-09-07 Thread Sotirios Mantziaris
Thanks for the link, this clears things out a bit. On Fri, 6 Sep 2019 at 02:21, Ian Lance Taylor wrote: > On Thu, Sep 5, 2019 at 10:59 AM Sotirios Mantziaris > wrote: > > > > I would liked that gofmt would handle this one also in order to avoid > battles about what is the correct line wrapping

[go-nuts] Re: THANKS GO TEAM FOR GOLANG'S NEW VERSION.

2019-09-07 Thread JuciƊ Andrade
I am pretty sure this gratitude sentiment is shared by many many people. In particular, I appreciate the care towards the evolution of tooling. Those guys just don't surrender to the first approach. Each idea is debated ad nauseam before making to the final product. Much beyond the language, th

Re: [go-nuts] Re: An old problem: lack of priority select cases

2019-09-07 Thread T L
@Leo Lara In face, you code the Mutex+WaitGroup in your code can be replaced with a Cond var plus a counter: https://play.golang.org/p/hVLamTjHj6J On Wednesday, September 4, 2019 at 5:44:11 AM UTC-4, Leo Lara wrote: > > Hi Marcin, > > I think https://play.golang.org/p/RiKi1PGVSvF is basically wh