-
Notifications
You must be signed in to change notification settings - Fork 265
Standard library packages not being returned for simple queries #508
Comments
Updated script and list above... and in that time |
These packages are suppressed from the search result page because of the previous bug #504, I guess they are still in queue to be updated. I manually refreshed package math and it shows up now. I can try to manually bump the crawl of these packages. |
Thanks @shantuo |
Some works now, there are a few (net/http, crypto/rand ...) still not working because gddo cannot generate the doc due to some "unrecognized import path" error. Perhaps something is wrong with the build environment/deployment. |
From https://godoc.org/net/http:
Those are vendored packages: https://github.com/golang/go/tree/master/src/vendor/golang_org/x/net Perhaps the cause is that gddo doesn't support finding vendored packages (this is a guess, it might be something else). |
The vendored packages should be there after the std lib list was updated. There must be some other bug. |
update #508 Change-Id: I7c65e901cd42c5731ae62b16e4baa84d08d3b432 Reviewed-on: https://go-review.googlesource.com/60110 Reviewed-by: Dmitri Shuralyov <shurcool@gmail.com>
Picking up on #505 (comment) I'm still seeing issues where a search query with the term that is the
path.Base
of a standard library package import path fails to return the standard library package in the list of results.For example the query for
math
:https://godoc.org/?q=math
Doesn't appear on the entire results page, let alone near the top
This was also the case for
strings
andos
(as reported in #505 (comment)) but they now appear to be fixed (thanks @shantuo).Doing a quick analysis of the Go 1.9 standard library, the following packages appear to suffer from this problem:
List compiled using script:
I'm fairly certain that something has changed here?
Thanks
The text was updated successfully, but these errors were encountered: