[go-nuts] Re: not available from my location when I run git mail to submit a patch.

2016-09-28 Thread Peng Gao
Use a proxy fix it. On Wednesday, September 28, 2016 at 11:25:31 PM UTC+8, Peng Gao wrote: > > I just make a path and want to push it, I got this error > > git mail > fatal: remote error: Access Denied (not available from your location) > (running: git push -q origin HEAD:refs

[go-nuts] not available from my location when I run git mail to submit a patch.

2016-09-28 Thread Peng Gao
I just make a path and want to push it, I got this error git mail fatal: remote error: Access Denied (not available from your location) (running: git push -q origin HEAD:refs/for/master) git-codereview: exit status 128 what's the reason? -- You received this message because you are subscribed

[go-nuts] Re: Calling a Go function from asm ("fatal error: missing stackmap")

2016-09-19 Thread Peng Gao
On Tuesday, September 20, 2016 at 11:00:34 AM UTC+8, Peng Gao wrote: > > BTW in your test file, you can directly append your bytes slice. > b1 = append(b1, vs...) > and slicesEqual is redundant, bytes.Equal does test the length of two > arguments > I mix up cap an

[go-nuts] Re: Calling a Go function from asm ("fatal error: missing stackmap")

2016-09-19 Thread Peng Gao
BTW in your test file, you can directly append your bytes slice. b1 = append(b1, vs...) and slicesEqual is redundant, bytes.Equal does test the length of two arguments. On Tuesday, September 20, 2016 at 6:56:55 AM UTC+8, Caleb Spare wrote: > > I'm trying to call a Go function from asm and I'm