Questions tagged [delve]

Delve is a debugger for Go

Delve is a debugger for the Go. Most Go editors/IDEs use delve as the backend for their debugger features.

Homepage.

201 questions
0
votes
1 answer

Set environment variables Delve

I am attempting to debug my Go program using Delve. Delve I can debug my unit tests fine, however, I would like to run my whole binary in debug mode and then stop at certain breakpoints. To run my binary normally I use the…
Nick P
  • 37
  • 6
0
votes
1 answer

security: SecKeychainSearchCopyNext Error - Unable to Install Delve on MacOS

I installed Delve using: brew install delve The log shows some issues: brew install go-delve/delve/delve Updating Homebrew... ==> Installing delve from go-delve/delve ==> Downloading…
Nic
  • 12,220
  • 20
  • 77
  • 105
0
votes
1 answer

How to use Delve recent documents concept to display on any of SharePoint page in a web part?

For one of the Projects I am working on, the client has a requirement to use Delve Recent Documents concept. They are basically wanting to know if it would be possible to display the Recent Documents from Delve on to a SharePoint page possibly in a…
mdevm
  • 97
  • 2
  • 14
0
votes
0 answers

The debugger is not ready

I have installed go-debug package to my Atom on my Windows 10 machine, however I am getting "The debugger is not ready ..." message in Debug tab. Can you please suggest how to resolve the same? Let me know if I need to fetch any further information.…
Jack
  • 321
  • 2
  • 4
  • 17
0
votes
0 answers

debugging go code in visual code on OS X

I have an app that requires sudo privilege to run as it connect to a port. I run it from the command prompt with the command. sudo go run appname.go. How can I run the app using the debugger using visual code with the delve debugger? I can…
0
votes
1 answer

unable to run delve in eclipse che - could not launch process, operation not permitted

I am trying to use delve in Eclipse Che Running Eclipse Che in docker with --privileged is not helping docker run -it --privileged --rm -v /var/run/docker.sock:/var/run/docker.sock -v $(pwd):/data eclipse/che start When running dlv debug main.go…
Chris G.
  • 23,930
  • 48
  • 177
  • 302
0
votes
1 answer

Can you debug go with delve in Eclipse Che

Can anybody help with directions on how to debug go in eclipse che with delve? Note: I am running che in docker container. Thanks Regards
Chris G.
  • 23,930
  • 48
  • 177
  • 302
0
votes
1 answer

Microsoft Delve / Graph in local network area

Is it possible to run Microsoft Delve with Graph in a local network (intranet) with a local MS Sharepoint Server? Or is Graph/Delve only with Office 365 available?
fcb1900
  • 339
  • 4
  • 21
0
votes
2 answers

Get photo from Delve profile of Office365 using REST request

I have a problem with getting profile image from Delve account. Here is the example of link which returns me photo when i put it into browser: https://orgname.sharepoint.com/_vti_bin/DelveApi.ashx/people/profileimage?userId=alias@org.com&size=L Now…
Denys Demchenko
  • 218
  • 2
  • 12
0
votes
0 answers

Delve does not work always with LiteIDE

I am new to go language and for development purpose using LITEIDE with delve as debugger to debug my go code . I have observed that sometimes I can debug well in LITEIDE with breakpoints being hit and I can use it properly . But sometimes it just…
Ankur Garg
  • 2,553
  • 8
  • 30
  • 41
0
votes
1 answer

Golang WaitGroup.Done() being skipped

I've got a function that relies on checking some errors concurrently and I'm trying to use waitgroups to wait until all processes that return possible errors are done before I check all the errors. It seems to be skipping some of the wg.Done()…
Nathan Hyland
  • 842
  • 2
  • 13
  • 28
0
votes
0 answers

cannot install delve (golang debugger): "cannot find package "gopkg.in/yaml.v2"

When installing delve in OSX: brew install go-delve/delve/delve I get: cannot find package "gopkg.in/yaml.v2" in any of: /usr/local/Cellar/go/1.4.2/libexec/src/gopkg.in/yaml.v2 (from $GOROOT) …
juan Isaza
  • 3,646
  • 3
  • 31
  • 37
0
votes
1 answer

Is there an API that returns the URL for the Office 365 Delve home page for a user?

In Office 365 Delve, each user has a "home" page. For the logged in user, the page has a URL like https://contoso-my.sharepoint.com/_layouts/15/me.aspx and for people that the logged in user is connected to, the URL looks like…
vinhub
  • 11
  • 5
0
votes
1 answer

Is there a way to see the programs stdout and stderr in delve debugger for golang?

I'd like to be able to see the stdout and stderr when using delve to debug go programs. Is this possible? How would I do this?
Ziffusion
  • 8,779
  • 4
  • 29
  • 57
-1
votes
2 answers

Older go version not working run and debug Delve

I have multiple go versions installed, 1.20.5 and 1.17.9 I am using Go 1.17.9 for this project as when I run go version I get go version go1.17.9 linux/amd64 Using run and debug in delve, with my launch.json: { "version": "0.2.0", …
plauwh
  • 21
  • 3
1 2 3
13
14