github.com/sourcegraph/zoektindex/read.go12 matches | Go | №1
599600// ReadMetadata returns the metadata of index shard without reading601// the index data. The IndexFile is not closed.602func ReadMetadata(inf IndexFile) ([]*zoekt.Repository, *zoekt.IndexMetadata, error) {603 rd := &reader{r: inf}
611612// ReadMetadataPathAlive is like ReadMetadataPath except that it only returns613// alive repositories.614func ReadMetadataPathAlive(p string) ([]*zoekt.Repository, *zoekt.IndexMetadata, error) {615 repos, id, err := ReadMetadataPath(p)616 if err != nil {
github.com/isker/neogrokREADME.md1 match | Markdown | №2
129 a file and in the <em>name</em> of the file:130 <ExampleQuery query="README" /> matches both file names and file contents (though131 the search engine tends to rank files containing file name matches higher than
135 with136 <code>file:</code>, like <ExampleQuery query="file:README" />. (137 <code>f:</code> is an equivalent abbreviation for <code>file:</code>).
141 expressions is <code>content:</code> or <code>c:</code>.142 <ExampleQuery query="content:README" /> produces only matches that occur in143 the content of files.