Re: [go-nuts] force garbage collect before crash

2020-10-18 Thread Robert Engels
Makes sense. Thanks. > On Oct 18, 2020, at 9:13 PM, Ian Lance Taylor wrote: > > On Sun, Oct 18, 2020 at 1:24 PM robert engels wrote: >> >> If I set a low process memory limit, and then the OS refuses to grant more >> memory to a malloc request,. will the Go runtime “stop the world” and >>

Re: [go-nuts] force garbage collect before crash

2020-10-18 Thread Ian Lance Taylor
On Sun, Oct 18, 2020 at 1:24 PM robert engels wrote: > > If I set a low process memory limit, and then the OS refuses to grant more > memory to a malloc request,. will the Go runtime “stop the world” and attempt > a full garbage collection and try to get the memory from the heap and then > only

[go-nuts] Re: I need help writing an article about the Go implementation of hash tables

2020-10-18 Thread peterGo
GopherCon 2016: Keith Randall - Inside the Map Implementation https://www.youtube.com/watch?v=Tl7mi9QmLns Peter On Sunday, October 18, 2020 at 9:10:45 PM UTC-4, Marwan abdel moneim wrote: > > Hi, > > I have some free time, so I thought about writing an article about maps in > Go, and how it is

Re: [go-nuts] I need help writing an article about the Go implementation of hash tables

2020-10-18 Thread Ian Lance Taylor
On Sun, Oct 18, 2020 at 6:10 PM Marwan abdel moneim wrote: > > I have some free time, so I thought about writing an article about maps in > Go, and how it is implemented. It would be a good dive for me and for other > people. > > I came across this file in the source code. But while I still reme

[go-nuts] I need help writing an article about the Go implementation of hash tables

2020-10-18 Thread Marwan abdel moneim
Hi, I have some free time, so I thought about writing an article about maps in Go, and how it is implemented. It would be a good dive for me and for other people. I came across this file in the source code. But while I still rememb

[go-nuts] Free Go Getting Started Course

2020-10-18 Thread Michael Levan
Hi All, I recently completed a free Go mini-course on YouTube. It's nothing too long, just 7 videos. However, it'll help you get started with Go. If you know someone who may need it, feel free to pass the playlist along :). Cheers! https://www.youtube.com/watch?v=P8Jx3f01igA&list=PL8iDDHqmj1oU

Re: [go-nuts] net/http TLS issue

2020-10-18 Thread pat2...@gmail.com
On Sunday, October 18, 2020 at 4:39:46 PM UTC-4 Rich wrote: > I have no problem writing this myself and I already have ideas on what I > am going to do, but before I do that I thought I'd ask and see if anyone > knew of a package, or some easier way that did this already. I've spent > hours in

Re: [go-nuts] net/http TLS issue

2020-10-18 Thread Rich
Thanks for your reply, however as I stated it's company policy to have a passphrase, even our java. keystores have a passcode. Using other services or methods, or just not having a passcode -- Just not the way they want it done. I am not a part of the security team that makes this stuff up and y

[go-nuts] force garbage collect before crash

2020-10-18 Thread robert engels
Hi all, If I set a low process memory limit, and then the OS refuses to grant more memory to a malloc request,. will the Go runtime “stop the world” and attempt a full garbage collection and try to get the memory from the heap and then only crashing the process if it can’t? I understand that t