[go-nuts] how golang creates binary

2019-04-03 Thread durgasomeswararao532
Hi, Any one explain the background process of go build or how go build creates shared objects and include into go binary. Here sharing my experience with c shared files. Earlier I worked with there we creating some shared objects of my projects and collected manually and using. Here is the

[go-nuts] regarding os package & env variable setting

2019-03-05 Thread durgasomeswararao532
Hi, I am trying to enable tls 1.3 through os.setEnv() method. Is setenv method will change process level or from os level(I mean will it change in device and other running applications)? -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To

[go-nuts] go vet tool

2019-03-03 Thread durgasomeswararao532
Is it possible to use go vet as go tool vet . With go vet it is giving no go source files, to use vet tool every time i have to go different paths. Is there any way to use go vet as go tool vet. With go tool vet I can be able to see log of all the folders at a time and no need to go each and

[go-nuts] Regarding Invalid UTF-8 characters

2019-01-25 Thread durgasomeswararao532
Hi, How can I handle special characters while using unmarshalling. I am getting some special charactes in my xml data (like this eg êÿÿ ) and golang throwing xml syntax error invalid UTF-8. Any please suggest how to handle this case. I tried to handle this xml decoder like this: //

[go-nuts] Code coverage for a project

2019-01-08 Thread durgasomeswararao532
Hi, I have creates all my test files in a separate single folder. Is it possible to get code coverage as the source files are in different location not with test files. I am getting code coverage report with coverprofile when test files and source are in same location. Here I was running all

[go-nuts] Is it possible to go test files priority

2018-12-17 Thread durgasomeswararao532
Hi all, Is it possible to set priority to go test files. As per my observation go tool runs test cases in alphabetical order of file name. Now I want to run files with custom priority. Is it possible? -- You received this message because you are subscribed to the Google Groups "golang-nuts"