[go-nuts] Re: go mod download fails on docker for 1.20 (but not for 1.18)

2024-02-02 Thread 'TheDiveO' via golang-nuts
carrier-grade NAT? On Friday, February 2, 2024 at 7:05:42 PM UTC+1 sprynger wrote: > In my case it might be an ISP problem, since this only happens to me when > I work from home. At work, the exact same project builds all at once > without any issues. > > A quinta-feira, 1 de fevereiro de 2024

Re: [go-nuts] Is this runtime.KeepAlive call really necessary

2024-02-02 Thread Ian Lance Taylor
On Fri, Feb 2, 2024 at 10:05 AM Chong Yuan wrote: > > Here is the example in our gorocksdb: > > // Get returns the data associated with the key from the database. > > func (db *DB) Get(opts *ReadOptions, key []byte) (*Slice, error) { > >var ( > > cErr

Re: [go-nuts] Printf

2024-02-02 Thread Luca Pascali
you forgot the \n in the printf format string without it, next is written right after the end of the printf Psk Il ven 2 feb 2024, 17:56 Juan Mamani ha scritto: > Hi everybody! > > I was checking consistency behavior of fmt.Printf with some basic > samples. And for my surprise never

[go-nuts] Is this runtime.KeepAlive call really necessary

2024-02-02 Thread Chong Yuan
Here is the example in our gorocksdb: // Get returns the data associated with the key from the database. func (db *DB) Get(opts *ReadOptions, key []byte) (*Slice, error) { var ( cErr*C.char cValLen C.size_t

[go-nuts] Re: go mod download fails on docker for 1.20 (but not for 1.18)

2024-02-02 Thread sprynger
In my case it might be an ISP problem, since this only happens to me when I work from home. At work, the exact same project builds all at once without any issues. A quinta-feira, 1 de fevereiro de 2024 à(s) 21:07:03 UTC, TheDiveO escreveu: > Are you still using Debian 11 and the outdated

Re: [go-nuts] Printf

2024-02-02 Thread Kurtis Rader
I think you're being confused by the lack of newlines in the output. Add "\n" to the end of the printf format. On Fri, Feb 2, 2024 at 8:56 AM Juan Mamani wrote: > Hi everybody! > > I was checking consistency behavior of fmt.Printf with some basic > samples. And for my surprise never expected

[go-nuts] morbyd: a thin layer to easily build and run throw-away test containers, etc. in tests

2024-02-02 Thread 'TheDiveO' via golang-nuts
https://github.com/thediveo/morbyd is a thin layer on top of the standard Docker Go client to easily build and run throw-away test Docker images and containers, and running commands inside them. It features a function option API to keep the slightly excessive Docker API option parameters at

[go-nuts] Printf

2024-02-02 Thread Juan Mamani
Hi everybody! I was checking consistency behavior of fmt.Printf with some basic samples. And for my surprise never expected what I found. My context: OS: Linux, debian 8,9,10,11 Go version 1.21 What I was doing? Learning about fmt.Printf Expecting fmt.Printf behavior be the same output for