[go-nuts] Re: question about Profiling Go Programs sample.

2021-09-27 Thread Vladimir Varankin
Hello, I suspect this is due to how the current version of Go runtime's CPU profiler keeps only up to 64 items, when it builds the function's stack frame (refer to https://github.com/golang/go/blob/go1.17/src/runtime/cpuprof.go#L21) With that, the resulting profile misses the relationship betw

[go-nuts] Implementation of image.NRGBA64

2021-09-27 Thread Scott Pakin
I'm curious: Why does image.NRGBA64 define Pix as a []uint8 and perpetually pack pairs of uint8 values into a uint16? Wouldn't it have been easier and faster to define Pix as a []uint16 and Stride to be a stride in uint16s rather than uint8s? — Scott -- You received this message because you

Re: [go-nuts] go-tour-TH cost

2021-09-27 Thread Sean Liao
The way appengine pricing works is calculated in instances hours per day, so if there are particularly busy days where instances x hours goes over 28 there will be some costs involved, though this may not be clear in the monthly summary. If you want, you can limit the scaling behaviour of appengin

Re: [go-nuts] How to deploy the tour website ?

2021-09-27 Thread Shulhan
On Sun, 19 Sep 2021 12:42:42 +0300 mustafa asaad wrote: > Hi, I want to translate the go tour to Arabic I have finished the > first page of the tour and I want to check if everything is good so > when I want to deploy the website to app engine, it's asking me for > money and even when I want to g

Re: [go-nuts] go-tour-TH cost

2021-09-27 Thread Shulhan
On Mon, 27 Sep 2021 17:10:16 +0700 Pallat Anchaleechamaikorn wrote: > Dear Gophers, > > I have a question about my contribution go-tour-TH for Thai language > in GCP app engine. > > I'd like to confirm a bit about the cost. > I've seen in the > https://cs.opensource.google/go/x/website/+/53e4d5

[go-nuts] go-tour-TH cost

2021-09-27 Thread Pallat Anchaleechamaikorn
Dear Gophers, I have a question about my contribution go-tour-TH for Thai language in GCP app engine. I'd like to confirm a bit about the cost. I've seen in the https://cs.opensource.google/go/x/website/+/53e4d521:tour/TRANSLATE This shouldn't cost you anything; [image: Screen Shot 2564-09-27 a

[go-nuts] question about Profiling Go Programs sample.

2021-09-27 Thread alex-coder
Hi All, currently I walk through sample given there: Profiling Go Programs - go.dev but when I came at the point where the user should enter web command to the pprof I do not see that the function DFS call itself on a picture. Looks like I do use a proper version of t