[go-nuts] SetLang is not thread safe and memory leak

2020-05-13 Thread kddavidson722
nevermind I missunderstood, my apologies. -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts+unsubscr...@googlegroups.com. To view this discussion on the

[go-nuts] SetLang is not thread safe and memory leak

2020-05-13 Thread kddavidson722
My guess would be that whoever called Fprintf passed a nil, or uninitialized pointer as one of the variadic 'args' parameters, which holds interface{} type. -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop

[go-nuts] Re: TLS Cipher suites TLS_ECDHE_ECDSA_WITH_AES_128_CCM_8

2019-12-14 Thread kddavidson722
Taken from https://www.iana.org/assignments/tls-parameters/tls-parameters.xml: Note > > CCM_8 cipher suites are not marked as "Recommended". These > cipher suites have a significantly truncated authentication tag > that represents a security trade-off that may not be appropriate >

[go-nuts] Re: [ANN] gopkg.in/goracle.v2 renamed to github.com/godror/godror

2019-12-13 Thread kddavidson722
I would be surprised if they have a legal claim to "Ora" as well, otherwise the dental products "Orajell", and "OralB" are in trouble!!! -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails fro

[go-nuts] Re: GO Mod (modules) for dummies. Please help.

2019-10-19 Thread kddavidson722
Hi Stuart, (I'm not 100% confident, so take this with a grain of salt ;) ) In my experience, I have always found it best to have go.mod in the project's root directory (as well as only using one go.mod per repo). You could also use go mod vendor command, which will download all of the depende

[go-nuts] Re: [security] Go 1.13.1 and Go 1.12.10 are released

2019-09-26 Thread kddavidson722
You can find them at: https://go.googlesource.com/go/+/refs/heads/release-branch.go1.13-security https://github.com/golang/go/commits/release-branch.go1.13-security https://github.com/golang/go/commits/release-branch.go1.12-security https://go.googlesource.com/go/+/refs/heads/release-branch.go1.1

Re: [go-nuts] Aggressive Golang Garbage Collection Issues When Using cgo?

2019-05-30 Thread kddavidson722
Sry I ment genName() -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts+unsubscr...@googlegroups.com. To view this discussion on the web visit https://g

Re: [go-nuts] Aggressive Golang Garbage Collection Issues When Using cgo?

2019-05-29 Thread kddavidson722
Greetings, I noticed something mostly unrelated to the problem, but wanted to give a heads-up. I could be wrong here, but I'm pretty sure the genRand() function from your embedded code isn't actually random. IIRC, math/rand.Int is deterministic, and needs to be seeded (usually with time.Now().U