Martin Lercher
Martin Lercher
Probably a free Webbrowser like WebKit or Chromium or maybe ghostscript with pdf viewing capability could provide the missing source code base. Just speculating, though. A headless variant like phantomjs...
I guess, confusion stems from labeling a trace by Duration, showing the corresponding figure on the list view and labeling the button "Find Traces" and not "Find Spans". I guess,...
Did you try adding `-ns ""`, assuming there is no particular target namespace in the xsd? I.e. `xsdgen -pkg some -o some.go -ns "" some.xsd`. In my case it made...
For easier reference: My five cents: - `0x6e` is `typeMoneyN` and is for sql type `money` and `smallmoney` with 8 and 4 bytes length - the [microsoft fork](https://github.com/microsoft/go-mssqldb/blob/main/bulkcopy.go#L524) also suffers...
Just for the sake of better "full-text findability". Besides `-v` glog also silently adds these command line flags to programs using badger v4 ```txt -alsologtostderr log to standard error as...
An IMHO straight forward way is to introduce a package level function, e.g. `With(f) error` taking a function f as parameter. `With` is implemented as * allocate a client `c`...
Found this PR and it appears to make this false-positive error message to go away: Reason is: Go is type-last and C is type-first. So, IMO, even without Go syntax...