[go-nuts] Re: submitting to Go, needing to rebase

2024-06-14 Thread Alberto Donizetti
In the gerrit page, click on DOWNLOAD on the right (or press d on your keyboard), a window will appear. What you want is the second option (checkout). Alberto On Friday 14 June 2024 at 13:05:55 UTC+2 Leah Stapleton wrote: > Consider the following scenario. I make a commit to the Golang source c

[go-nuts] Re: Who are the Go maintainers?

2022-11-10 Thread Alberto Donizetti
> Who are the Go maintainers? In this context, anyone who is part of the "approvers" group on the Go gerrit instance (https://go-review.googlesource.com). The group itself and the list of its members are not publicy visible, I believe. > Is this the same set of people as github.com/orgs/golang/

Re: [go-nuts] Go build speed dependent on time after source modification

2021-11-05 Thread Alberto Donizetti
Could be due to https://github.com/golang/go/issues/48496 Should be fixed on tip, but 1.17 is affected. Alberto On Thursday, 4 November 2021 at 18:44:01 UTC+1 Mark Fletcher wrote: > On Thu, Nov 4, 2021 at 10:25 AM Brian Hatfield wrote: > >> This seems a little like you might have a background c

[go-nuts] Re: Why the limit on regex repeat is 1000?

2021-06-06 Thread Alberto Donizetti
Probably not a bug, since it's documented: https://golang.org/pkg/regexp/syntax/ > Implementation restriction: The counting forms x{n,m}, x{n,}, and x{n} reject forms that create a minimum > or maximum repetition count above 1000. Unlimited repetitions are not subject to this restriction. I

Re: [go-nuts] I want to help with polish version of "A Tour of Go", how to start?

2021-05-07 Thread Alberto Donizetti
The link to the polish translation was added by a person names Michal Stokluska. The repository should be this one: https://github.com/MStokluska/go-tour-pl To contribute to the polish translation, you send Pull Requests there. Alberto On Tuesday, 4 May 2021 at 23:51:10 UTC+2 kziem...@gmail.com