[go-nuts] What if OrangeFS and AMD's HSA embedded into the golang language?

2017-01-26 Thread David Marceau
I have recently been reflecting about OrangeFS and AMD's HSA and how they eventually reach golang users. That implies somewhere there will be a cgogen generated wrapper for them somehow, then they will be used. What if OrangeFS' and HSA were deeply embedded into the go language themselves in a

[go-nuts] Re: Go 1.7 Release Candidate 6 is released

2016-08-11 Thread David Marceau
for the moment. On Wednesday, August 10, 2016 at 10:00:37 AM UTC-4, David Marceau wrote: > > when I install from sources straight from git checkout go1.7rc6 > go1.7rc6 FAILS on Asus Z97-A-USB31 motherboard with intel i5-4590, > "../misc/cgo/testsanitizers" > it core dump

[go-nuts] Re: msan failures in Go 1.7 Release Candidate 6

2016-08-11 Thread David Marceau
ed the residue CXX pointing to g++ so it should be built using this instead: CC=/usr/bin/clang CXX=/usr/bin/clang++ GOROOT_BOOTSTRAP=/root/SQstuff/go1.7rc5 ./make.bash On Thursday, August 11, 2016 at 11:30:54 AM UTC-4, David Marceau wrote: > > > On ArchLinux with a previously gcc built

[go-nuts] Re: msan failures in Go 1.7 Release Candidate 6

2016-08-11 Thread David Marceau
because it was confused as to what CC it should be using since I had both gcc and clang installed on my box. On Wednesday, August 10, 2016 at 1:07:50 PM UTC-4, Ian Lance Taylor wrote: > > On Wed, Aug 10, 2016 at 7:00 AM, David Marceau > > wrote: > > when I install from sour

[go-nuts] Re: Go 1.7 Release Candidate 6 is released

2016-08-10 Thread David Marceau
when I install from sources straight from git checkout go1.7rc6 go1.7rc6 FAILS on Asus Z97-A-USB31 motherboard with intel i5-4590, "../misc/cgo/testsanitizers" it core dumps and doesn't give me the success message to start using it as the previous go1.7rc[1-4] did. signal: segmentation fault (cor

[go-nuts] Re: how to apply netutil.LimitListener() to ListenAndServeTLS()'s listener? how to fetch ListenAndServeTLS()'s listener?

2016-08-05 Thread David Marceau
hers.com/limit-https-listener/ > > tcpKeepAliveListener ended up being the only code that was copied but not > specialized. It would have been nice if it were exported from the http > package. > > On Thursday, August 4, 2016 at 12:27:18 AM UTC+2, David Marceau wrote: >> &g

[go-nuts] Re: how to apply netutil.LimitListener() to ListenAndServeTLS()'s listener? how to fetch ListenAndServeTLS()'s listener?

2016-08-03 Thread David Marceau
I tried just what you mentioned. Unfortunately even my interim solution when it is outside of the net.http package and within mine, there are many services that are not exported meaning I can't use them at all and the variables themselves are inaccessible. I tried copying pasting some functions

[go-nuts] Re: how to apply netutil.LimitListener() to ListenAndServeTLS()'s listener? how to fetch ListenAndServeTLS()'s listener?

2016-08-03 Thread David Marceau
I perused your blog entry you mentioned. It's very interesting and will come in handy in the future. Thank you. I can appreciate your point of view about accepting the fact that currently listeners are not part of the Server and just proceed to produce code and get it done ASAP. My interim

[go-nuts] Re: how to apply netutil.LimitListener() to ListenAndServeTLS()'s listener? how to fetch ListenAndServeTLS()'s listener?

2016-08-03 Thread David Marceau
I can understand at first glance we may perceive ListenAndServeTLS as a convenience helper, but if enough people to copy and paste its contents to modify it, then the sublety is the function is actually assumed to be part of a Foundation/Framework that people build on top of. It is under the gol

[go-nuts] Re: how to apply netutil.LimitListener() to ListenAndServeTLS()'s listener? how to fetch ListenAndServeTLS()'s listener?

2016-08-02 Thread David Marceau
Another question: Why wasn't tlsListener placed as part of the Server structure? I think it makes sense to place it there since it is the server that creates and uses it. It also makes sense to expose it to tweak it as some might more control over it and in this case the constraining the number

[go-nuts] how to apply netutil.LimitListener() to ListenAndServeTLS()'s listener? how to fetch ListenAndServeTLS()'s listener?

2016-08-02 Thread David Marceau
ener, connectionCount)? I'm doing my best not to tweak/recompile golang's sources to introduce this limitlistener feature to a tls server. I was hoping someone had a trick to avoid that. Thank you. David Marceau -- You received this message because you are subscribed to the Google Gro

[go-nuts] Re: can't get Content-Type and Content-Disposition to force browser to display "file->save..." dialog in the web browser

2016-06-24 Thread David Marceau
efore the serveFile. That's all. Thanks to everyone who dropped by. On Friday, June 24, 2016 at 9:44:00 AM UTC-4, David Marceau wrote: > > Here is what is in my import. Maybe I should be looking in goji instead > of net/http? > > > import ( > "

[go-nuts] Re: can't get Content-Type and Content-Disposition to force browser to display "file->save..." dialog in the web browser

2016-06-24 Thread David Marceau
pto/tls" "crypto/rand" "github.com/gorilla/mux" "github.com/goji/httpauth" "github.com/zfjagann/golang-ring" "github.com/kabukky/httpscerts" "reflect" "io" "io/ioutil" "path/filep

[go-nuts] Re: can't get Content-Type and Content-Disposition to force browser to display "file->save..." dialog in the web browser

2016-06-24 Thread David Marceau
Dir(), "OurGeneratedCustomLog") defer os.Remove(tmpFile.Name()) tmpFile.Write(myOutput) tmpFile.Close() http.ServeFile(w, r, tmpFile.Name()) //ATTEMPT #5 w.Header().Set("Content-Disposition","attachment;filename=" + "\"" + str

[go-nuts] Re: can't get Content-Type and Content-Disposition to force browser to display "file->save..." dialog in the web browser

2016-06-24 Thread David Marceau
Again, I want to clarify the file does arrive in the browser, but I want to ensure the "file->save..." dialog appears in the web browser when it arrives. I found some older code I wrote a couple of years ago that was behaving as expected: w.Header().Set("Content-Type", "application/octet-st

[go-nuts] can't get Content-Type and Content-Disposition to force browser to display "file->save..." dialog in the web browser

2016-06-23 Thread David Marceau
quot; + strSomeFileName) myCmdOutput, _ := cmd.Output() //with or without following line, it still doesnt display the "file->save..." dialog in the web browser //w.Header().Set("Content-Length", strconv.Ito( len(myCmdOutput) ) ) w.Write(myCmdOutput) Does anyone have any