Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
ale
liber
Commits
24de9a9c
Commit
24de9a9c
authored
Jan 22, 2018
by
ale
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update blevesearch in vendor/
parent
bde98244
Pipeline
#830
failed with stages
in 8 seconds
Changes
21
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
21 changed files
with
207 additions
and
136 deletions
+207
-136
vendor/github.com/blevesearch/bleve/README.md
vendor/github.com/blevesearch/bleve/README.md
+1
-1
vendor/github.com/blevesearch/bleve/config.go
vendor/github.com/blevesearch/bleve/config.go
+3
-0
vendor/github.com/blevesearch/bleve/document/field_boolean.go
...or/github.com/blevesearch/bleve/document/field_boolean.go
+1
-1
vendor/github.com/blevesearch/bleve/document/field_datetime.go
...r/github.com/blevesearch/bleve/document/field_datetime.go
+1
-1
vendor/github.com/blevesearch/bleve/document/field_numeric.go
...or/github.com/blevesearch/bleve/document/field_numeric.go
+1
-1
vendor/github.com/blevesearch/bleve/document/field_text.go
vendor/github.com/blevesearch/bleve/document/field_text.go
+1
-1
vendor/github.com/blevesearch/bleve/document/indexing_options.go
...github.com/blevesearch/bleve/document/indexing_options.go
+11
-0
vendor/github.com/blevesearch/bleve/index.go
vendor/github.com/blevesearch/bleve/index.go
+1
-1
vendor/github.com/blevesearch/bleve/index/analysis.go
vendor/github.com/blevesearch/bleve/index/analysis.go
+9
-1
vendor/github.com/blevesearch/bleve/mapping/document.go
vendor/github.com/blevesearch/bleve/mapping/document.go
+1
-0
vendor/github.com/blevesearch/bleve/mapping/field.go
vendor/github.com/blevesearch/bleve/mapping/field.go
+24
-2
vendor/github.com/blevesearch/bleve/mapping/index.go
vendor/github.com/blevesearch/bleve/mapping/index.go
+9
-1
vendor/github.com/blevesearch/bleve/query.go
vendor/github.com/blevesearch/bleve/query.go
+2
-2
vendor/github.com/blevesearch/bleve/search.go
vendor/github.com/blevesearch/bleve/search.go
+5
-0
vendor/github.com/blevesearch/bleve/search/search.go
vendor/github.com/blevesearch/bleve/search/search.go
+5
-5
vendor/github.com/blevesearch/bleve/search/searcher/search_conjunction.go
...m/blevesearch/bleve/search/searcher/search_conjunction.go
+11
-8
vendor/github.com/blevesearch/bleve/search/searcher/search_disjunction.go
...m/blevesearch/bleve/search/searcher/search_disjunction.go
+11
-8
vendor/github.com/blevesearch/bleve/search/searcher/search_phrase.go
...ub.com/blevesearch/bleve/search/searcher/search_phrase.go
+9
-0
vendor/github.com/boltdb/bolt/db.go
vendor/github.com/boltdb/bolt/db.go
+1
-3
vendor/golang.org/x/net/html/token.go
vendor/golang.org/x/net/html/token.go
+2
-2
vendor/vendor.json
vendor/vendor.json
+98
-98
No files found.
vendor/github.com/blevesearch/bleve/README.md
View file @
24de9a9c
#  bleve
[

](https://travis-ci.org/blevesearch/bleve)
[

](https://coveralls.io/
r
/blevesearch/bleve?branch=master)
[

](https://godoc.org/github.com/blevesearch/bleve)
[

](https://travis-ci.org/blevesearch/bleve)
[

](https://coveralls.io/
github
/blevesearch/bleve?branch=master)
[

](https://godoc.org/github.com/blevesearch/bleve)
[

](https://gitter.im/blevesearch/bleve?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
[

](https://codebeat.co/projects/github-com-blevesearch-bleve)
[

](https://goreportcard.com/report/blevesearch/bleve)
...
...
vendor/github.com/blevesearch/bleve/config.go
View file @
24de9a9c
...
...
@@ -25,6 +25,9 @@ import (
"github.com/blevesearch/bleve/index/upsidedown"
"github.com/blevesearch/bleve/registry"
"github.com/blevesearch/bleve/search/highlight/highlighter/html"
// force import of scorch so its accessible by default
_
"github.com/blevesearch/bleve/index/scorch"
)
var
bleveExpVar
=
expvar
.
NewMap
(
"bleve"
)
...
...
vendor/github.com/blevesearch/bleve/document/field_boolean.go
View file @
24de9a9c
...
...
@@ -20,7 +20,7 @@ import (
"github.com/blevesearch/bleve/analysis"
)
const
DefaultBooleanIndexingOptions
=
StoreField
|
IndexField
const
DefaultBooleanIndexingOptions
=
StoreField
|
IndexField
|
DocValues
type
BooleanField
struct
{
name
string
...
...
vendor/github.com/blevesearch/bleve/document/field_datetime.go
View file @
24de9a9c
...
...
@@ -23,7 +23,7 @@ import (
"github.com/blevesearch/bleve/numeric"
)
const
DefaultDateTimeIndexingOptions
=
StoreField
|
IndexField
const
DefaultDateTimeIndexingOptions
=
StoreField
|
IndexField
|
DocValues
const
DefaultDateTimePrecisionStep
uint
=
4
var
MinTimeRepresentable
=
time
.
Unix
(
0
,
math
.
MinInt64
)
...
...
vendor/github.com/blevesearch/bleve/document/field_numeric.go
View file @
24de9a9c
...
...
@@ -21,7 +21,7 @@ import (
"github.com/blevesearch/bleve/numeric"
)
const
DefaultNumericIndexingOptions
=
StoreField
|
IndexField
const
DefaultNumericIndexingOptions
=
StoreField
|
IndexField
|
DocValues
const
DefaultPrecisionStep
uint
=
4
...
...
vendor/github.com/blevesearch/bleve/document/field_text.go
View file @
24de9a9c
...
...
@@ -20,7 +20,7 @@ import (
"github.com/blevesearch/bleve/analysis"
)
const
DefaultTextIndexingOptions
=
IndexField
const
DefaultTextIndexingOptions
=
IndexField
|
DocValues
type
TextField
struct
{
name
string
...
...
vendor/github.com/blevesearch/bleve/document/indexing_options.go
View file @
24de9a9c
...
...
@@ -20,6 +20,7 @@ const (
IndexField
IndexingOptions
=
1
<<
iota
StoreField
IncludeTermVectors
DocValues
)
func
(
o
IndexingOptions
)
IsIndexed
()
bool
{
...
...
@@ -34,6 +35,10 @@ func (o IndexingOptions) IncludeTermVectors() bool {
return
o
&
IncludeTermVectors
!=
0
}
func
(
o
IndexingOptions
)
IncludeDocValues
()
bool
{
return
o
&
DocValues
!=
0
}
func
(
o
IndexingOptions
)
String
()
string
{
rv
:=
""
if
o
.
IsIndexed
()
{
...
...
@@ -51,5 +56,11 @@ func (o IndexingOptions) String() string {
}
rv
+=
"TV"
}
if
o
.
IncludeDocValues
()
{
if
rv
!=
""
{
rv
+=
", "
}
rv
+=
"DV"
}
return
rv
}
vendor/github.com/blevesearch/bleve/index.go
View file @
24de9a9c
...
...
@@ -76,7 +76,7 @@ func (b *Batch) SetInternal(key, val []byte) {
b
.
internal
.
SetInternal
(
key
,
val
)
}
//
S
etInternal adds the specified delete internal
//
Del
et
e
Internal adds the specified delete internal
// operation to the batch. NOTE: the bleve Index is
// not updated until the batch is executed.
func
(
b
*
Batch
)
DeleteInternal
(
key
[]
byte
)
{
...
...
vendor/github.com/blevesearch/bleve/index/analysis.go
View file @
24de9a9c
...
...
@@ -14,7 +14,10 @@
package
index
import
"github.com/blevesearch/bleve/document"
import
(
"github.com/blevesearch/bleve/analysis"
"github.com/blevesearch/bleve/document"
)
type
IndexRow
interface
{
KeySize
()
int
...
...
@@ -29,6 +32,11 @@ type IndexRow interface {
type
AnalysisResult
struct
{
DocID
string
Rows
[]
IndexRow
// scorch
Document
*
document
.
Document
Analyzed
[]
analysis
.
TokenFrequencies
Length
[]
int
}
type
AnalysisWork
struct
{
...
...
vendor/github.com/blevesearch/bleve/mapping/document.go
View file @
24de9a9c
...
...
@@ -179,6 +179,7 @@ OUTER:
continue
OUTER
}
}
break
}
return
current
}
...
...
vendor/github.com/blevesearch/bleve/mapping/field.go
View file @
24de9a9c
...
...
@@ -26,8 +26,9 @@ import (
// control the default behavior for dynamic fields (those not explicitly mapped)
var
(
IndexDynamic
=
true
StoreDynamic
=
true
IndexDynamic
=
true
StoreDynamic
=
true
DocValuesDynamic
=
true
// TODO revisit default?
)
// A FieldMapping describes how a specific item
...
...
@@ -54,6 +55,10 @@ type FieldMapping struct {
IncludeTermVectors
bool
`json:"include_term_vectors,omitempty"`
IncludeInAll
bool
`json:"include_in_all,omitempty"`
DateFormat
string
`json:"date_format,omitempty"`
// DocValues, if true makes the index uninverting possible for this field
// It is useful for faceting and sorting queries.
DocValues
bool
`json:"docvalues,omitempty"`
}
// NewTextFieldMapping returns a default field mapping for text
...
...
@@ -64,6 +69,7 @@ func NewTextFieldMapping() *FieldMapping {
Index
:
true
,
IncludeTermVectors
:
true
,
IncludeInAll
:
true
,
DocValues
:
true
,
}
}
...
...
@@ -71,6 +77,7 @@ func newTextFieldMappingDynamic(im *IndexMappingImpl) *FieldMapping {
rv
:=
NewTextFieldMapping
()
rv
.
Store
=
im
.
StoreDynamic
rv
.
Index
=
im
.
IndexDynamic
rv
.
DocValues
=
im
.
DocValuesDynamic
return
rv
}
...
...
@@ -81,6 +88,7 @@ func NewNumericFieldMapping() *FieldMapping {
Store
:
true
,
Index
:
true
,
IncludeInAll
:
true
,
DocValues
:
true
,
}
}
...
...
@@ -88,6 +96,7 @@ func newNumericFieldMappingDynamic(im *IndexMappingImpl) *FieldMapping {
rv
:=
NewNumericFieldMapping
()
rv
.
Store
=
im
.
StoreDynamic
rv
.
Index
=
im
.
IndexDynamic
rv
.
DocValues
=
im
.
DocValuesDynamic
return
rv
}
...
...
@@ -98,6 +107,7 @@ func NewDateTimeFieldMapping() *FieldMapping {
Store
:
true
,
Index
:
true
,
IncludeInAll
:
true
,
DocValues
:
true
,
}
}
...
...
@@ -105,6 +115,7 @@ func newDateTimeFieldMappingDynamic(im *IndexMappingImpl) *FieldMapping {
rv
:=
NewDateTimeFieldMapping
()
rv
.
Store
=
im
.
StoreDynamic
rv
.
Index
=
im
.
IndexDynamic
rv
.
DocValues
=
im
.
DocValuesDynamic
return
rv
}
...
...
@@ -115,6 +126,7 @@ func NewBooleanFieldMapping() *FieldMapping {
Store
:
true
,
Index
:
true
,
IncludeInAll
:
true
,
DocValues
:
true
,
}
}
...
...
@@ -122,6 +134,7 @@ func newBooleanFieldMappingDynamic(im *IndexMappingImpl) *FieldMapping {
rv
:=
NewBooleanFieldMapping
()
rv
.
Store
=
im
.
StoreDynamic
rv
.
Index
=
im
.
IndexDynamic
rv
.
DocValues
=
im
.
DocValuesDynamic
return
rv
}
...
...
@@ -132,6 +145,7 @@ func NewGeoPointFieldMapping() *FieldMapping {
Store
:
true
,
Index
:
true
,
IncludeInAll
:
true
,
DocValues
:
true
,
}
}
...
...
@@ -147,6 +161,9 @@ func (fm *FieldMapping) Options() document.IndexingOptions {
if
fm
.
IncludeTermVectors
{
rv
|=
document
.
IncludeTermVectors
}
if
fm
.
DocValues
{
rv
|=
document
.
DocValues
}
return
rv
}
...
...
@@ -308,6 +325,11 @@ func (fm *FieldMapping) UnmarshalJSON(data []byte) error {
if
err
!=
nil
{
return
err
}
case
"docvalues"
:
err
:=
json
.
Unmarshal
(
v
,
&
fm
.
DocValues
)
if
err
!=
nil
{
return
err
}
default
:
invalidKeys
=
append
(
invalidKeys
,
k
)
}
...
...
vendor/github.com/blevesearch/bleve/mapping/index.go
View file @
24de9a9c
...
...
@@ -50,6 +50,7 @@ type IndexMappingImpl struct {
DefaultField
string
`json:"default_field"`
StoreDynamic
bool
`json:"store_dynamic"`
IndexDynamic
bool
`json:"index_dynamic"`
DocValuesDynamic
bool
`json:"docvalues_dynamic,omitempty"`
CustomAnalysis
*
customAnalysis
`json:"analysis,omitempty"`
cache
*
registry
.
Cache
}
...
...
@@ -154,6 +155,7 @@ func NewIndexMapping() *IndexMappingImpl {
DefaultField
:
defaultField
,
IndexDynamic
:
IndexDynamic
,
StoreDynamic
:
StoreDynamic
,
DocValuesDynamic
:
DocValuesDynamic
,
CustomAnalysis
:
newCustomAnalysis
(),
cache
:
registry
.
NewCache
(),
}
...
...
@@ -217,6 +219,7 @@ func (im *IndexMappingImpl) UnmarshalJSON(data []byte) error {
im
.
TypeMapping
=
make
(
map
[
string
]
*
DocumentMapping
)
im
.
StoreDynamic
=
StoreDynamic
im
.
IndexDynamic
=
IndexDynamic
im
.
DocValuesDynamic
=
DocValuesDynamic
var
invalidKeys
[]
string
for
k
,
v
:=
range
tmp
{
...
...
@@ -271,6 +274,11 @@ func (im *IndexMappingImpl) UnmarshalJSON(data []byte) error {
if
err
!=
nil
{
return
err
}
case
"docvalues_dynamic"
:
err
:=
json
.
Unmarshal
(
v
,
&
im
.
DocValuesDynamic
)
if
err
!=
nil
{
return
err
}
default
:
invalidKeys
=
append
(
invalidKeys
,
k
)
}
...
...
@@ -339,7 +347,7 @@ func (im *IndexMappingImpl) newWalkContext(doc *document.Document, dm *DocumentM
doc
:
doc
,
im
:
im
,
dm
:
dm
,
excludedFromAll
:
[]
string
{},
excludedFromAll
:
[]
string
{
"_id"
},
}
}
...
...
vendor/github.com/blevesearch/bleve/query.go
View file @
24de9a9c
...
...
@@ -209,8 +209,8 @@ func NewGeoBoundingBoxQuery(topLeftLon, topLeftLat, bottomRightLon, bottomRightL
return
query
.
NewGeoBoundingBoxQuery
(
topLeftLon
,
topLeftLat
,
bottomRightLon
,
bottomRightLat
)
}
// NewGeoDistanceQuery creates a new Query for performing geo
bounding
//
box
searches. The arguments describe a position and a distance. Documents
// NewGeoDistanceQuery creates a new Query for performing geo
distance
// searches. The arguments describe a position and a distance. Documents
// which have an indexed geo point which is less than or equal to the provided
// distance from the given position will be returned.
func
NewGeoDistanceQuery
(
lon
,
lat
float64
,
distance
string
)
*
query
.
GeoDistanceQuery
{
...
...
vendor/github.com/blevesearch/bleve/search.go
View file @
24de9a9c
...
...
@@ -481,5 +481,10 @@ func (sr *SearchResult) Merge(other *SearchResult) {
if
other
.
MaxScore
>
sr
.
MaxScore
{
sr
.
MaxScore
=
other
.
MaxScore
}
if
sr
.
Facets
==
nil
&&
len
(
other
.
Facets
)
!=
0
{
sr
.
Facets
=
other
.
Facets
return
}
sr
.
Facets
.
Merge
(
other
.
Facets
)
}
vendor/github.com/blevesearch/bleve/search/search.go
View file @
24de9a9c
...
...
@@ -37,12 +37,12 @@ func (ap ArrayPositions) Equals(other ArrayPositions) bool {
type
Location
struct
{
// Pos is the position of the term within the field, starting at 1
Pos
uint64
`json:"pos"`
Pos
uint64
`json:"pos"`
// Start and End are the byte offsets of the term in the field
Start
uint64
`json:"start"`
End
uint64
`json:"end"`
Start
uint64
`json:"start"`
End
uint64
`json:"end"`
// ArrayPositions contains the positions of the term within any elements.
ArrayPositions
ArrayPositions
`json:"array_positions"`
}
...
...
vendor/github.com/blevesearch/bleve/search/searcher/search_conjunction.go
View file @
24de9a9c
...
...
@@ -57,25 +57,25 @@ func NewConjunctionSearcher(indexReader index.IndexReader, qsearchers []search.S
func
(
s
*
ConjunctionSearcher
)
computeQueryNorm
()
{
// first calculate sum of squared weights
sumOfSquaredWeights
:=
0.0
for
_
,
termS
earcher
:=
range
s
.
searchers
{
sumOfSquaredWeights
+=
termS
earcher
.
Weight
()
for
_
,
s
earcher
:=
range
s
.
searchers
{
sumOfSquaredWeights
+=
s
earcher
.
Weight
()
}
// now compute query norm from this
s
.
queryNorm
=
1.0
/
math
.
Sqrt
(
sumOfSquaredWeights
)
// finally tell all the downstream searchers the norm
for
_
,
termS
earcher
:=
range
s
.
searchers
{
termS
earcher
.
SetQueryNorm
(
s
.
queryNorm
)
for
_
,
s
earcher
:=
range
s
.
searchers
{
s
earcher
.
SetQueryNorm
(
s
.
queryNorm
)
}
}
func
(
s
*
ConjunctionSearcher
)
initSearchers
(
ctx
*
search
.
SearchContext
)
error
{
var
err
error
// get all searchers pointing at their first match
for
i
,
termS
earcher
:=
range
s
.
searchers
{
for
i
,
s
earcher
:=
range
s
.
searchers
{
if
s
.
currs
[
i
]
!=
nil
{
ctx
.
DocumentMatchPool
.
Put
(
s
.
currs
[
i
])
}
s
.
currs
[
i
],
err
=
termS
earcher
.
Next
(
ctx
)
s
.
currs
[
i
],
err
=
s
earcher
.
Next
(
ctx
)
if
err
!=
nil
{
return
err
}
...
...
@@ -160,11 +160,11 @@ OUTER:
// we know all the searchers are pointing at the same thing
// so they all need to be bumped
for
i
,
termS
earcher
:=
range
s
.
searchers
{
for
i
,
s
earcher
:=
range
s
.
searchers
{
if
s
.
currs
[
i
]
!=
rv
{
ctx
.
DocumentMatchPool
.
Put
(
s
.
currs
[
i
])
}
s
.
currs
[
i
],
err
=
termS
earcher
.
Next
(
ctx
)
s
.
currs
[
i
],
err
=
s
earcher
.
Next
(
ctx
)
if
err
!=
nil
{
return
nil
,
err
}
...
...
@@ -184,6 +184,9 @@ func (s *ConjunctionSearcher) Advance(ctx *search.SearchContext, ID index.IndexI
}
}
for
i
:=
range
s
.
searchers
{
if
s
.
currs
[
i
]
!=
nil
&&
s
.
currs
[
i
]
.
IndexInternalID
.
Compare
(
ID
)
>=
0
{
continue
}
err
:=
s
.
advanceChild
(
ctx
,
i
,
ID
)
if
err
!=
nil
{
return
nil
,
err
...
...
vendor/github.com/blevesearch/bleve/search/searcher/search_disjunction.go
View file @
24de9a9c
...
...
@@ -93,25 +93,25 @@ func newDisjunctionSearcher(indexReader index.IndexReader,
func
(
s
*
DisjunctionSearcher
)
computeQueryNorm
()
{
// first calculate sum of squared weights
sumOfSquaredWeights
:=
0.0
for
_
,
termS
earcher
:=
range
s
.
searchers
{
sumOfSquaredWeights
+=
termS
earcher
.
Weight
()
for
_
,
s
earcher
:=
range
s
.
searchers
{
sumOfSquaredWeights
+=
s
earcher
.
Weight
()
}
// now compute query norm from this
s
.
queryNorm
=
1.0
/
math
.
Sqrt
(
sumOfSquaredWeights
)
// finally tell all the downstream searchers the norm
for
_
,
termS
earcher
:=
range
s
.
searchers
{
termS
earcher
.
SetQueryNorm
(
s
.
queryNorm
)
for
_
,
s
earcher
:=
range
s
.
searchers
{
s
earcher
.
SetQueryNorm
(
s
.
queryNorm
)
}
}
func
(
s
*
DisjunctionSearcher
)
initSearchers
(
ctx
*
search
.
SearchContext
)
error
{
var
err
error
// get all searchers pointing at their first match
for
i
,
termS
earcher
:=
range
s
.
searchers
{
for
i
,
s
earcher
:=
range
s
.
searchers
{
if
s
.
currs
[
i
]
!=
nil
{
ctx
.
DocumentMatchPool
.
Put
(
s
.
currs
[
i
])
}
s
.
currs
[
i
],
err
=
termS
earcher
.
Next
(
ctx
)
s
.
currs
[
i
],
err
=
s
earcher
.
Next
(
ctx
)
if
err
!=
nil
{
return
err
}
...
...
@@ -221,11 +221,14 @@ func (s *DisjunctionSearcher) Advance(ctx *search.SearchContext,
}
// get all searchers pointing at their first match
var
err
error
for
i
,
termS
earcher
:=
range
s
.
searchers
{
for
i
,
s
earcher
:=
range
s
.
searchers
{
if
s
.
currs
[
i
]
!=
nil
{
if
s
.
currs
[
i
]
.
IndexInternalID
.
Compare
(
ID
)
>=
0
{
continue
}
ctx
.
DocumentMatchPool
.
Put
(
s
.
currs
[
i
])
}
s
.
currs
[
i
],
err
=
termS
earcher
.
Advance
(
ctx
,
ID
)
s
.
currs
[
i
],
err
=
s
earcher
.
Advance
(
ctx
,
ID
)
if
err
!=
nil
{
return
nil
,
err
}
...
...
vendor/github.com/blevesearch/bleve/search/searcher/search_phrase.go
View file @
24de9a9c
...
...
@@ -313,6 +313,15 @@ func (s *PhraseSearcher) Advance(ctx *search.SearchContext, ID index.IndexIntern
return
nil
,
err
}
}
if
s
.
currMust
!=
nil
{
if
s
.
currMust
.
IndexInternalID
.
Compare
(
ID
)
>=
0
{
return
s
.
Next
(
ctx
)
}
ctx
.
DocumentMatchPool
.
Put
(
s
.
currMust
)
}
if
s
.
currMust
==
nil
{
return
nil
,
nil
}
var
err
error
s
.
currMust
,
err
=
s
.
mustSearcher
.
Advance
(
ctx
,
ID
)
if
err
!=
nil
{
...
...
vendor/github.com/boltdb/bolt/db.go
View file @
24de9a9c
...
...
@@ -737,9 +737,7 @@ retry:
// pass success, or bolt internal errors, to all callers
for
_
,
c
:=
range
b
.
calls
{
if
c
.
err
!=
nil
{
c
.
err
<-
err
}
c
.
err
<-
err
}
break
retry
}
...
...
vendor/golang.org/x/net/html/token.go
View file @
24de9a9c
...
...
@@ -1161,8 +1161,8 @@ func (z *Tokenizer) TagAttr() (key, val []byte, moreAttr bool) {
return
nil
,
nil
,
false
}
// Token returns the
nex
t Token. The result's Data and Attr values remain
valid
// after subsequent Next calls.
// Token returns the
curren
t Token. The result's Data and Attr values remain
//
valid
after subsequent Next calls.
func
(
z
*
Tokenizer
)
Token
()
Token
{
t
:=
Token
{
Type
:
z
.
tt
}
switch
z
.
tt
{
...
...
vendor/vendor.json
View file @
24de9a9c
...
...
@@ -3,238 +3,238 @@
"ignore"
:
"test"
,
"package"
:
[
{
"checksumSHA1"
:
"
DoWGsv8aKpO8rHHCfdguKpp7ago
="
,
"checksumSHA1"
:
"
2F0VjyfWgSR+eHPRNoMeBQKLgSU
="
,
"path"
:
"github.com/blevesearch/bleve"
,
"revision"
:
"c
048833fcdcf5b86fe09d9c1077147abf8c30416
"
,
"revisionTime"
:
"201
7
-0
9-01
T1
3
:1
6
:0
8
Z"
"revision"
:
"c
b6391e75ee5cf6314330f4c1a9ca533f3acb4ca
"
,
"revisionTime"
:
"201
8
-0
1-19
T1
4
:1
0
:0
3
Z"
},
{
"checksumSHA1"
:
"ywqbUZb6r4Mxq2MBAbv/vaYcmdw="
,
"path"
:
"github.com/blevesearch/bleve/analysis"
,
"revision"
:
"c
048833fcdcf5b86fe09d9c1077147abf8c30416
"
,
"revisionTime"
:
"201
7
-0
9-01
T1
3
:1
6
:0
8
Z"
"revision"
:
"c
b6391e75ee5cf6314330f4c1a9ca533f3acb4ca
"
,
"revisionTime"
:
"201
8
-0
1-19
T1
4
:1
0
:0
3
Z"
},
{
"checksumSHA1"
:
"9fbWSIn+xbJ14D2nMF3byvSsXXk="
,
"path"
:
"github.com/blevesearch/bleve/analysis/analyzer/custom"
,
"revision"
:
"c
048833fcdcf5b86fe09d9c1077147abf8c30416
"
,
"revisionTime"
:
"201
7
-0
9-01
T1
3
:1
6
:0
8
Z"
"revision"
:
"c
b6391e75ee5cf6314330f4c1a9ca533f3acb4ca
"
,
"revisionTime"
:
"201
8
-0
1-19
T1
4
:1
0
:0
3
Z"
},
{
"checksumSHA1"
:
"OM2QW7G5DfzaUzCoe23282875TE="
,
"path"
:
"github.com/blevesearch/bleve/analysis/analyzer/keyword"
,
"revision"
:
"c
048833fcdcf5b86fe09d9c1077147abf8c30416
"
,
"revisionTime"
:
"201
7
-0
9-01
T1
3
:1
6
:0
8
Z"
"revision"
:
"c
b6391e75ee5cf6314330f4c1a9ca533f3acb4ca
"
,
"revisionTime"
:
"201
8
-0
1-19
T1
4
:1
0
:0
3
Z"
},
{
"checksumSHA1"
:
"ObgKIYnYcb6jr+0NMDkgq7D1i3E="
,
"path"
:
"github.com/blevesearch/bleve/analysis/analyzer/simple"
,
"revision"
:
"c
048833fcdcf5b86fe09d9c1077147abf8c30416
"
,
"revisionTime"
:
"201
7
-0
9-01
T1
3
:1
6
:0
8
Z"
"revision"
:
"c
b6391e75ee5cf6314330f4c1a9ca533f3acb4ca
"
,
"revisionTime"
:
"201
8
-0
1-19
T1
4
:1
0
:0
3
Z"
},
{
"checksumSHA1"
:
"IefDmVwLU3UiILeN35DA25gPFnc="
,
"path"
:
"github.com/blevesearch/bleve/analysis/analyzer/standard"
,
"revision"
:
"c
048833fcdcf5b86fe09d9c1077147abf8c30416
"
,
"revisionTime"
:
"201
7
-0
9-01
T1
3
:1
6
:0
8
Z"
"revision"
:
"c
b6391e75ee5cf6314330f4c1a9ca533f3acb4ca
"
,
"revisionTime"
:
"201
8
-0
1-19
T1
4
:1
0
:0
3
Z"
},
{
"checksumSHA1"
:
"P+ay5l3LO/xoWJXKfyK4Ma1hGvw="
,
"path"
:
"github.com/blevesearch/bleve/analysis/datetime/flexible"
,
"revision"
:
"c
048833fcdcf5b86fe09d9c1077147abf8c30416
"
,
"revisionTime"
:
"201
7
-0
9-01
T1
3
:1
6
:0
8
Z"
"revision"
:
"c
b6391e75ee5cf6314330f4c1a9ca533f3acb4ca
"
,
"revisionTime"
:
"201
8
-0
1-19
T1
4
:1
0
:0
3
Z"
},
{
"checksumSHA1"
:
"uIHCAnZoB7dKDPFc3SkiO1hN4BY="
,
"path"
:
"github.com/blevesearch/bleve/analysis/datetime/optional"
,
"revision"
:
"c
048833fcdcf5b86fe09d9c1077147abf8c30416
"
,
"revisionTime"
:
"201
7
-0
9-01
T1
3
:1
6
:0
8
Z"
"revision"
:
"c
b6391e75ee5cf6314330f4c1a9ca533f3acb4ca
"
,
"revisionTime"
:
"201
8
-0
1-19
T1
4
:1
0
:0
3
Z"
},
{
"checksumSHA1"
:
"AdhWAC/hkZLFXUcihmzhMspNk3w="
,
"path"
:
"github.com/blevesearch/bleve/analysis/lang/en"
,
"revision"
:
"c
048833fcdcf5b86fe09d9c1077147abf8c30416
"
,
"revisionTime"
:
"201
7
-0
9-01
T1
3
:1
6
:0
8
Z"
"revision"
:
"c
b6391e75ee5cf6314330f4c1a9ca533f3acb4ca
"
,
"revisionTime"
:
"201
8
-0
1-19
T1
4
:1
0
:0
3
Z"
},
{
"checksumSHA1"
:
"oEtk50tMGEjQxJp/NBKSRtDktcc="
,
"path"
:
"github.com/blevesearch/bleve/analysis/token/edgengram"
,
"revision"
:
"c
048833fcdcf5b86fe09d9c1077147abf8c30416
"
,
"revisionTime"
:
"201
7
-0
9-01
T1
3
:1
6
:0
8
Z"
"revision"
:
"c
b6391e75ee5cf6314330f4c1a9ca533f3acb4ca
"
,
"revisionTime"
:
"201
8
-0
1-19
T1
4
:1
0
:0
3
Z"
},
{
"checksumSHA1"
:
"3VIPkl12t1ko4y6DkbPcz+MtQjY="
,
"path"
:
"github.com/blevesearch/bleve/analysis/token/lowercase"
,
"revision"
:
"c
048833fcdcf5b86fe09d9c1077147abf8c30416
"
,
"revisionTime"
:
"201
7
-0
9-01
T1
3
:1
6
:0
8
Z"
"revision"
:
"c
b6391e75ee5cf6314330f4c1a9ca533f3acb4ca
"
,
"revisionTime"
:
"201
8
-0
1-19
T1
4
:1
0
:0
3
Z"
},
{
"checksumSHA1"
:
"QOw3ypU4VTmFT8XYS/52P3RILZw="
,
"path"
:
"github.com/blevesearch/bleve/analysis/token/porter"
,
"revision"
:
"c
048833fcdcf5b86fe09d9c1077147abf8c30416
"
,
"revisionTime"
:
"201
7
-0
9-01
T1
3
:1
6
:0
8
Z"
"revision"
:
"c
b6391e75ee5cf6314330f4c1a9ca533f3acb4ca
"
,
"revisionTime"
:
"201
8
-0
1-19
T1
4
:1
0
:0
3
Z"
},
{
"checksumSHA1"
:
"8wCAW8E4SO7gGxt0tsr4NZ4APIg="
,
"path"
:
"github.com/blevesearch/bleve/analysis/token/stop"
,
"revision"
:
"c
048833fcdcf5b86fe09d9c1077147abf8c30416
"
,
"revisionTime"
:
"201
7
-0
9-01
T1
3
:1
6
:0
8
Z"
"revision"
:
"c
b6391e75ee5cf6314330f4c1a9ca533f3acb4ca
"
,
"revisionTime"
:
"201
8
-0
1-19
T1
4
:1
0
:0
3
Z"
},
{
"checksumSHA1"
:
"Fj59TrG73yzFxMWQ/rL9VBSgxHE="
,
"path"
:
"github.com/blevesearch/bleve/analysis/tokenizer/character"
,
"revision"
:
"c
048833fcdcf5b86fe09d9c1077147abf8c30416
"
,
"revisionTime"
:
"201
7
-0
9-01
T1
3
:1
6
:0
8
Z"
"revision"
:
"c
b6391e75ee5cf6314330f4c1a9ca533f3acb4ca
"
,
"revisionTime"
:
"201
8
-0
1-19
T1
4
:1
0
:0
3
Z"
},
{
"checksumSHA1"
:
"62U9SMEGOKzubs9iKgGZJv2AJOs="
,
"path"
:
"github.com/blevesearch/bleve/analysis/tokenizer/letter"
,
"revision"
:
"c
048833fcdcf5b86fe09d9c1077147abf8c30416
"
,
"revisionTime"
:
"201
7
-0
9-01
T1
3
:1
6
:0
8
Z"