Re: [go-nuts] Getting a Go executable(hugo) to run Intel Galileo/Quark

2021-04-15 Thread Ian Lance Taylor
On Thu, Apr 15, 2021 at 1:11 PM David Markey wrote: > > I'm trying to get hugo to work on my Alpine distro that's running on my Intel > gallileo(Quark CPU). > > I've overcome a few hurdles already. > > This CPU Doesn't have MMX so gcc-go was needed to compile hugo into a binary > (in a virtual

[go-nuts] Getting a Go executable(hugo) to run Intel Galileo/Quark

2021-04-15 Thread David Markey
I'm trying to get hugo to work on my Alpine distro that's running on my Intel gallileo(Quark CPU). I've overcome a few hurdles already. This CPU Doesn't have MMX so gcc-go was needed to compile hugo into a binary (in a virtual machine) But after copying the hugo binary to the galileo Hugo

Re: [go-nuts] SignatureDoesNotMatch error when S3 object name contains “=”

2021-04-15 Thread nonnikcm
hi j, thanks for your answer... this is something we have had to port from PHP recently. we are actually dependent on having the "=" in the path for processing downstream by PySpark. thanks for the reply! On Thursday, April 15, 2021 at 7:16:06 PM UTC+2 jesper.lou...@gmail.com wrote: > On Thu,

Re: [go-nuts] SignatureDoesNotMatch error when S3 object name contains “=”

2021-04-15 Thread Jesper Louis Andersen
On Thu, Apr 15, 2021 at 7:01 PM nonnikcm wrote: > i am struggling with using the s3manager to create files on S3. the file > names need to be in the following format "set=2012-04-3", containing an > "=". uploading with out the "=" works perfectly... > sess := session.Must(session.NewSession())

[go-nuts] SignatureDoesNotMatch error when S3 object name contains “=”

2021-04-15 Thread nonnikcm
i am struggling with using the s3manager to create files on S3. the file names need to be in the following format "set=2012-04-3", containing an "=". uploading with out the "=" works perfectly... sess := session.Must(session.NewSession()) uploader := s3manager.NewUploader(sess) _, err =

Re: [go-nuts] Case for Cond.WaitTimeout()

2021-04-15 Thread 'Bryan C. Mills' via golang-nuts
For what it's worth, I would argue that the 1-buffered channel pattern in Go *is* “basic concurrent programming”. 1-buffered channels are used as basic building blocks throughout the standard library — consider time.Ticker or signal.Notify — and for good reason. A 1-buffered channel is a very

[go-nuts] help with the Google Pub/Sub Go client API

2021-04-15 Thread 'Dan Kortschak' via golang-nuts
I am trying to set up a toy to understand Google's Pub/Sub service Go client API. I have had no trouble with publishing and have a local emulator for the Google Scheduler service to build against, but I am having a lot of trouble getting subscriptions to work. I am able get a subscription to work