This commit is contained in:
Ken-Håvard Lieng 2015-12-11 04:35:48 +01:00
parent a45833e281
commit eeb45e17c2
576 changed files with 1289 additions and 1289 deletions

View File

@ -1,9 +1,9 @@
FROM scratch FROM scratch
ADD build/name_pending / ADD build/dispatch /
ADD ca-certificates.crt /etc/ssl/certs/ ADD ca-certificates.crt /etc/ssl/certs/
VOLUME ["/data"] VOLUME ["/data"]
ENTRYPOINT ["/name_pending"] ENTRYPOINT ["/dispatch"]
CMD ["-p=8080", "--dir=/data"] CMD ["-p=8080", "--dir=/data"]

2
Godeps/Godeps.json generated
View File

@ -1,5 +1,5 @@
{ {
"ImportPath": "github.com/khlieng/name_pending", "ImportPath": "github.com/khlieng/dispatch",
"GoVersion": "go1.4.2", "GoVersion": "go1.4.2",
"Packages": [ "Packages": [
"./..." "./..."

View File

@ -11,7 +11,7 @@ import (
"path" "path"
"time" "time"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/BurntSushi/toml" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/BurntSushi/toml"
) )
func init() { func init() {

View File

@ -11,7 +11,7 @@ import (
"strconv" "strconv"
"time" "time"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/BurntSushi/toml" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/BurntSushi/toml"
) )
func init() { func init() {

View File

@ -10,7 +10,7 @@ import (
"strings" "strings"
"text/tabwriter" "text/tabwriter"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/BurntSushi/toml" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/BurntSushi/toml"
) )
var ( var (

View File

@ -12,8 +12,8 @@ package standard_analyzer
import ( import (
"fmt" "fmt"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
const Name = "custom" const Name = "custom"

View File

@ -12,11 +12,11 @@
package detect_lang_analyzer package detect_lang_analyzer
import ( import (
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/token_filters/cld2" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/token_filters/cld2"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/token_filters/lower_case_filter" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/token_filters/lower_case_filter"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/tokenizers/single_token" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/tokenizers/single_token"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
const Name = "detect_lang" const Name = "detect_lang"

View File

@ -10,9 +10,9 @@
package keyword_analyzer package keyword_analyzer
import ( import (
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/tokenizers/single_token" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/tokenizers/single_token"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
const Name = "keyword" const Name = "keyword"

View File

@ -10,10 +10,10 @@
package simple_analyzer package simple_analyzer
import ( import (
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/token_filters/lower_case_filter" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/token_filters/lower_case_filter"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/tokenizers/unicode" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/tokenizers/unicode"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
const Name = "simple" const Name = "simple"

View File

@ -10,11 +10,11 @@
package standard_analyzer package standard_analyzer
import ( import (
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/language/en" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/language/en"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/token_filters/lower_case_filter" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/token_filters/lower_case_filter"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/tokenizers/unicode" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/tokenizers/unicode"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
const Name = "standard" const Name = "standard"

View File

@ -10,8 +10,8 @@
package ignore_byte_array_converter package ignore_byte_array_converter
import ( import (
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
type IgnoreByteArrayConverter struct{} type IgnoreByteArrayConverter struct{}

View File

@ -12,8 +12,8 @@ package json_byte_array_converter
import ( import (
"encoding/json" "encoding/json"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
type JSONByteArrayConverter struct{} type JSONByteArrayConverter struct{}

View File

@ -10,8 +10,8 @@
package string_byte_array_converter package string_byte_array_converter
import ( import (
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
type StringByteArrayConverter struct{} type StringByteArrayConverter struct{}

View File

@ -12,9 +12,9 @@ package html_char_filter
import ( import (
"regexp" "regexp"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/char_filters/regexp_char_filter" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/char_filters/regexp_char_filter"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
const Name = "html" const Name = "html"

View File

@ -14,8 +14,8 @@ import (
"fmt" "fmt"
"regexp" "regexp"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
const Name = "regexp" const Name = "regexp"

View File

@ -12,9 +12,9 @@ package zero_width_non_joiner
import ( import (
"regexp" "regexp"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/char_filters/regexp_char_filter" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/char_filters/regexp_char_filter"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
const Name = "zero_width_spaces" const Name = "zero_width_spaces"

View File

@ -12,9 +12,9 @@ package html_char_filter
import ( import (
"time" "time"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/datetime_parsers/flexible_go" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/datetime_parsers/flexible_go"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
const Name = "dateTimeOptional" const Name = "dateTimeOptional"

View File

@ -13,8 +13,8 @@ import (
"fmt" "fmt"
"time" "time"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
const Name = "flexiblego" const Name = "flexiblego"

View File

@ -14,7 +14,7 @@ import (
"testing" "testing"
"time" "time"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
) )
func TestFlexibleDateTimeParser(t *testing.T) { func TestFlexibleDateTimeParser(t *testing.T) {

View File

@ -10,11 +10,11 @@
package ar package ar
import ( import (
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/token_filters/lower_case_filter" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/token_filters/lower_case_filter"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/token_filters/unicode_normalize" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/token_filters/unicode_normalize"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/tokenizers/unicode" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/tokenizers/unicode"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
const AnalyzerName = "ar" const AnalyzerName = "ar"

View File

@ -13,8 +13,8 @@ import (
"reflect" "reflect"
"testing" "testing"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
func TestArabicAnalyzer(t *testing.T) { func TestArabicAnalyzer(t *testing.T) {

View File

@ -12,8 +12,8 @@ package ar
import ( import (
"bytes" "bytes"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
const NormalizeName = "normalize_ar" const NormalizeName = "normalize_ar"

View File

@ -13,7 +13,7 @@ import (
"reflect" "reflect"
"testing" "testing"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
) )
func TestArabicNormalizeFilter(t *testing.T) { func TestArabicNormalizeFilter(t *testing.T) {

View File

@ -12,8 +12,8 @@ package ar
import ( import (
"bytes" "bytes"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
const StemmerName = "stemmer_ar" const StemmerName = "stemmer_ar"

View File

@ -13,7 +13,7 @@ import (
"reflect" "reflect"
"testing" "testing"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
) )
func TestArabicStemmerFilter(t *testing.T) { func TestArabicStemmerFilter(t *testing.T) {

View File

@ -10,9 +10,9 @@
package ar package ar
import ( import (
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/token_filters/stop_tokens_filter" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/token_filters/stop_tokens_filter"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
func StopTokenFilterConstructor(config map[string]interface{}, cache *registry.Cache) (analysis.TokenFilter, error) { func StopTokenFilterConstructor(config map[string]interface{}, cache *registry.Cache) (analysis.TokenFilter, error) {

View File

@ -1,8 +1,8 @@
package ar package ar
import ( import (
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
const StopName = "stop_ar" const StopName = "stop_ar"

View File

@ -10,9 +10,9 @@
package bg package bg
import ( import (
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/token_filters/stop_tokens_filter" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/token_filters/stop_tokens_filter"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
func StopTokenFilterConstructor(config map[string]interface{}, cache *registry.Cache) (analysis.TokenFilter, error) { func StopTokenFilterConstructor(config map[string]interface{}, cache *registry.Cache) (analysis.TokenFilter, error) {

View File

@ -1,8 +1,8 @@
package bg package bg
import ( import (
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
const StopName = "stop_bg" const StopName = "stop_bg"

View File

@ -1,8 +1,8 @@
package ca package ca
import ( import (
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
const ArticlesName = "articles_ca" const ArticlesName = "articles_ca"

View File

@ -12,9 +12,9 @@ package ca
import ( import (
"fmt" "fmt"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/token_filters/elision_filter" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/token_filters/elision_filter"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
const ElisionName = "elision_ca" const ElisionName = "elision_ca"

View File

@ -13,8 +13,8 @@ import (
"reflect" "reflect"
"testing" "testing"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
func TestFrenchElision(t *testing.T) { func TestFrenchElision(t *testing.T) {

View File

@ -10,9 +10,9 @@
package ca package ca
import ( import (
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/token_filters/stop_tokens_filter" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/token_filters/stop_tokens_filter"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
func StopTokenFilterConstructor(config map[string]interface{}, cache *registry.Cache) (analysis.TokenFilter, error) { func StopTokenFilterConstructor(config map[string]interface{}, cache *registry.Cache) (analysis.TokenFilter, error) {

View File

@ -1,8 +1,8 @@
package ca package ca
import ( import (
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
const StopName = "stop_ca" const StopName = "stop_ca"

View File

@ -10,11 +10,11 @@
package cjk package cjk
import ( import (
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/token_filters/lower_case_filter" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/token_filters/lower_case_filter"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/token_filters/unicode_normalize" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/token_filters/unicode_normalize"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/tokenizers/whitespace_tokenizer" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/tokenizers/whitespace_tokenizer"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
const AnalyzerName = "cjk" const AnalyzerName = "cjk"

View File

@ -13,8 +13,8 @@ import (
"reflect" "reflect"
"testing" "testing"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
func TestCJKAnalyzer(t *testing.T) { func TestCJKAnalyzer(t *testing.T) {

View File

@ -12,8 +12,8 @@ package cjk
import ( import (
"container/ring" "container/ring"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
const BigramName = "cjk_bigram" const BigramName = "cjk_bigram"

View File

@ -13,7 +13,7 @@ import (
"reflect" "reflect"
"testing" "testing"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
) )
func TestCJKBigramFilter(t *testing.T) { func TestCJKBigramFilter(t *testing.T) {

View File

@ -12,10 +12,10 @@
package ckb package ckb
import ( import (
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/token_filters/lower_case_filter" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/token_filters/lower_case_filter"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/tokenizers/icu" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/tokenizers/icu"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
const AnalyzerName = "ckb" const AnalyzerName = "ckb"

View File

@ -15,8 +15,8 @@ import (
"reflect" "reflect"
"testing" "testing"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
func TestSoraniAnalyzer(t *testing.T) { func TestSoraniAnalyzer(t *testing.T) {

View File

@ -13,8 +13,8 @@ import (
"bytes" "bytes"
"unicode" "unicode"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
const NormalizeName = "normalize_ckb" const NormalizeName = "normalize_ckb"

View File

@ -13,7 +13,7 @@ import (
"reflect" "reflect"
"testing" "testing"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
) )
func TestSoraniNormalizeFilter(t *testing.T) { func TestSoraniNormalizeFilter(t *testing.T) {

View File

@ -13,8 +13,8 @@ import (
"bytes" "bytes"
"unicode/utf8" "unicode/utf8"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
const StemmerName = "stemmer_ckb" const StemmerName = "stemmer_ckb"

View File

@ -13,8 +13,8 @@ import (
"reflect" "reflect"
"testing" "testing"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/tokenizers/single_token" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/tokenizers/single_token"
) )
func TestSoraniStemmerFilter(t *testing.T) { func TestSoraniStemmerFilter(t *testing.T) {

View File

@ -10,9 +10,9 @@
package ckb package ckb
import ( import (
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/token_filters/stop_tokens_filter" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/token_filters/stop_tokens_filter"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
func StopTokenFilterConstructor(config map[string]interface{}, cache *registry.Cache) (analysis.TokenFilter, error) { func StopTokenFilterConstructor(config map[string]interface{}, cache *registry.Cache) (analysis.TokenFilter, error) {

View File

@ -1,8 +1,8 @@
package ckb package ckb
import ( import (
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
const StopName = "stop_ckb" const StopName = "stop_ckb"

View File

@ -10,9 +10,9 @@
package cs package cs
import ( import (
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/token_filters/stop_tokens_filter" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/token_filters/stop_tokens_filter"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
func StopTokenFilterConstructor(config map[string]interface{}, cache *registry.Cache) (analysis.TokenFilter, error) { func StopTokenFilterConstructor(config map[string]interface{}, cache *registry.Cache) (analysis.TokenFilter, error) {

View File

@ -1,8 +1,8 @@
package cs package cs
import ( import (
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
const StopName = "stop_cs" const StopName = "stop_cs"

View File

@ -13,10 +13,10 @@
package da package da
import ( import (
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/token_filters/lower_case_filter" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/token_filters/lower_case_filter"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/tokenizers/icu" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/tokenizers/icu"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
const AnalyzerName = "da" const AnalyzerName = "da"

View File

@ -16,8 +16,8 @@ import (
"reflect" "reflect"
"testing" "testing"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
func TestDanishAnalyzer(t *testing.T) { func TestDanishAnalyzer(t *testing.T) {

View File

@ -12,9 +12,9 @@
package da package da
import ( import (
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/token_filters/stemmer_filter" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/token_filters/stemmer_filter"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
const StemmerName = "stemmer_da" const StemmerName = "stemmer_da"

View File

@ -10,9 +10,9 @@
package da package da
import ( import (
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/token_filters/stop_tokens_filter" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/token_filters/stop_tokens_filter"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
func StopTokenFilterConstructor(config map[string]interface{}, cache *registry.Cache) (analysis.TokenFilter, error) { func StopTokenFilterConstructor(config map[string]interface{}, cache *registry.Cache) (analysis.TokenFilter, error) {

View File

@ -1,8 +1,8 @@
package da package da
import ( import (
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
const StopName = "stop_da" const StopName = "stop_da"

View File

@ -13,10 +13,10 @@
package de package de
import ( import (
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/token_filters/lower_case_filter" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/token_filters/lower_case_filter"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/tokenizers/icu" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/tokenizers/icu"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
const AnalyzerName = "de" const AnalyzerName = "de"

View File

@ -16,8 +16,8 @@ import (
"reflect" "reflect"
"testing" "testing"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
func TestGermanAnalyzer(t *testing.T) { func TestGermanAnalyzer(t *testing.T) {

View File

@ -12,8 +12,8 @@ package de
import ( import (
"bytes" "bytes"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
const NormalizeName = "normalize_de" const NormalizeName = "normalize_de"

View File

@ -13,7 +13,7 @@ import (
"reflect" "reflect"
"testing" "testing"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
) )
func TestGermanNormalizeFilter(t *testing.T) { func TestGermanNormalizeFilter(t *testing.T) {

View File

@ -12,9 +12,9 @@
package de package de
import ( import (
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/token_filters/stemmer_filter" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/token_filters/stemmer_filter"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
const StemmerName = "stemmer_de" const StemmerName = "stemmer_de"

View File

@ -10,9 +10,9 @@
package de package de
import ( import (
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/token_filters/stop_tokens_filter" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/token_filters/stop_tokens_filter"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
func StopTokenFilterConstructor(config map[string]interface{}, cache *registry.Cache) (analysis.TokenFilter, error) { func StopTokenFilterConstructor(config map[string]interface{}, cache *registry.Cache) (analysis.TokenFilter, error) {

View File

@ -1,8 +1,8 @@
package de package de
import ( import (
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
const StopName = "stop_de" const StopName = "stop_de"

View File

@ -10,9 +10,9 @@
package el package el
import ( import (
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/token_filters/stop_tokens_filter" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/token_filters/stop_tokens_filter"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
func StopTokenFilterConstructor(config map[string]interface{}, cache *registry.Cache) (analysis.TokenFilter, error) { func StopTokenFilterConstructor(config map[string]interface{}, cache *registry.Cache) (analysis.TokenFilter, error) {

View File

@ -1,8 +1,8 @@
package el package el
import ( import (
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
const StopName = "stop_el" const StopName = "stop_el"

View File

@ -10,11 +10,11 @@
package en package en
import ( import (
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/token_filters/lower_case_filter" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/token_filters/lower_case_filter"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/token_filters/porter" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/token_filters/porter"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/tokenizers/unicode" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/tokenizers/unicode"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
const AnalyzerName = "en" const AnalyzerName = "en"

View File

@ -13,8 +13,8 @@ import (
"reflect" "reflect"
"testing" "testing"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
func TestEnglishAnalyzer(t *testing.T) { func TestEnglishAnalyzer(t *testing.T) {

View File

@ -12,8 +12,8 @@ package en
import ( import (
"bytes" "bytes"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
const PossessiveName = "possessive_en" const PossessiveName = "possessive_en"

View File

@ -13,8 +13,8 @@ import (
"reflect" "reflect"
"testing" "testing"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
func TestEnglishPossessiveFilter(t *testing.T) { func TestEnglishPossessiveFilter(t *testing.T) {

View File

@ -12,9 +12,9 @@
package en package en
import ( import (
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/token_filters/stemmer_filter" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/token_filters/stemmer_filter"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
const StemmerName = "stemmer_en" const StemmerName = "stemmer_en"

View File

@ -15,8 +15,8 @@ import (
"reflect" "reflect"
"testing" "testing"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
func TestEnglishStemmer(t *testing.T) { func TestEnglishStemmer(t *testing.T) {

View File

@ -10,9 +10,9 @@
package en package en
import ( import (
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/token_filters/stop_tokens_filter" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/token_filters/stop_tokens_filter"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
func StopTokenFilterConstructor(config map[string]interface{}, cache *registry.Cache) (analysis.TokenFilter, error) { func StopTokenFilterConstructor(config map[string]interface{}, cache *registry.Cache) (analysis.TokenFilter, error) {

View File

@ -1,8 +1,8 @@
package en package en
import ( import (
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
const StopName = "stop_en" const StopName = "stop_en"

View File

@ -13,10 +13,10 @@
package es package es
import ( import (
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/token_filters/lower_case_filter" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/token_filters/lower_case_filter"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/tokenizers/icu" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/tokenizers/icu"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
const AnalyzerName = "es" const AnalyzerName = "es"

View File

@ -16,8 +16,8 @@ import (
"reflect" "reflect"
"testing" "testing"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
func TestSpanishAnalyzer(t *testing.T) { func TestSpanishAnalyzer(t *testing.T) {

View File

@ -12,9 +12,9 @@
package es package es
import ( import (
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/token_filters/stemmer_filter" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/token_filters/stemmer_filter"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
const StemmerName = "stemmer_es" const StemmerName = "stemmer_es"

View File

@ -10,9 +10,9 @@
package es package es
import ( import (
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/token_filters/stop_tokens_filter" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/token_filters/stop_tokens_filter"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
func StopTokenFilterConstructor(config map[string]interface{}, cache *registry.Cache) (analysis.TokenFilter, error) { func StopTokenFilterConstructor(config map[string]interface{}, cache *registry.Cache) (analysis.TokenFilter, error) {

View File

@ -1,8 +1,8 @@
package es package es
import ( import (
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
const StopName = "stop_es" const StopName = "stop_es"

View File

@ -10,9 +10,9 @@
package eu package eu
import ( import (
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/token_filters/stop_tokens_filter" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/token_filters/stop_tokens_filter"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
func StopTokenFilterConstructor(config map[string]interface{}, cache *registry.Cache) (analysis.TokenFilter, error) { func StopTokenFilterConstructor(config map[string]interface{}, cache *registry.Cache) (analysis.TokenFilter, error) {

View File

@ -1,8 +1,8 @@
package eu package eu
import ( import (
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
const StopName = "stop_eu" const StopName = "stop_eu"

View File

@ -12,12 +12,12 @@
package fa package fa
import ( import (
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/char_filters/zero_width_non_joiner" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/char_filters/zero_width_non_joiner"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/language/ar" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/language/ar"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/token_filters/lower_case_filter" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/token_filters/lower_case_filter"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/tokenizers/icu" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/tokenizers/icu"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
const AnalyzerName = "fa" const AnalyzerName = "fa"

View File

@ -15,8 +15,8 @@ import (
"reflect" "reflect"
"testing" "testing"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
func TestPersianAnalyzerVerbs(t *testing.T) { func TestPersianAnalyzerVerbs(t *testing.T) {

View File

@ -12,8 +12,8 @@ package fa
import ( import (
"bytes" "bytes"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
const NormalizeName = "normalize_fa" const NormalizeName = "normalize_fa"

View File

@ -13,7 +13,7 @@ import (
"reflect" "reflect"
"testing" "testing"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
) )
func TestPersianNormalizeFilter(t *testing.T) { func TestPersianNormalizeFilter(t *testing.T) {

View File

@ -10,9 +10,9 @@
package fa package fa
import ( import (
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/token_filters/stop_tokens_filter" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/token_filters/stop_tokens_filter"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
func StopTokenFilterConstructor(config map[string]interface{}, cache *registry.Cache) (analysis.TokenFilter, error) { func StopTokenFilterConstructor(config map[string]interface{}, cache *registry.Cache) (analysis.TokenFilter, error) {

View File

@ -1,8 +1,8 @@
package fa package fa
import ( import (
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
const StopName = "stop_fa" const StopName = "stop_fa"

View File

@ -13,10 +13,10 @@
package fi package fi
import ( import (
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/token_filters/lower_case_filter" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/token_filters/lower_case_filter"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/tokenizers/icu" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/tokenizers/icu"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
const AnalyzerName = "fi" const AnalyzerName = "fi"

View File

@ -16,8 +16,8 @@ import (
"reflect" "reflect"
"testing" "testing"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
func TestFinishAnalyzer(t *testing.T) { func TestFinishAnalyzer(t *testing.T) {

View File

@ -12,9 +12,9 @@
package fi package fi
import ( import (
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/token_filters/stemmer_filter" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/token_filters/stemmer_filter"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
const StemmerName = "stemmer_fi" const StemmerName = "stemmer_fi"

View File

@ -10,9 +10,9 @@
package fi package fi
import ( import (
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/token_filters/stop_tokens_filter" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/token_filters/stop_tokens_filter"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
func StopTokenFilterConstructor(config map[string]interface{}, cache *registry.Cache) (analysis.TokenFilter, error) { func StopTokenFilterConstructor(config map[string]interface{}, cache *registry.Cache) (analysis.TokenFilter, error) {

View File

@ -1,8 +1,8 @@
package fi package fi
import ( import (
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
const StopName = "stop_fi" const StopName = "stop_fi"

View File

@ -10,10 +10,10 @@
package fr package fr
import ( import (
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/token_filters/lower_case_filter" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/token_filters/lower_case_filter"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/tokenizers/unicode" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/tokenizers/unicode"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
const AnalyzerName = "fr" const AnalyzerName = "fr"

View File

@ -13,8 +13,8 @@ import (
"reflect" "reflect"
"testing" "testing"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
func TestFrenchAnalyzer(t *testing.T) { func TestFrenchAnalyzer(t *testing.T) {

View File

@ -1,8 +1,8 @@
package fr package fr
import ( import (
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
const ArticlesName = "articles_fr" const ArticlesName = "articles_fr"

View File

@ -12,9 +12,9 @@ package fr
import ( import (
"fmt" "fmt"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/token_filters/elision_filter" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/token_filters/elision_filter"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
const ElisionName = "elision_fr" const ElisionName = "elision_fr"

View File

@ -13,8 +13,8 @@ import (
"reflect" "reflect"
"testing" "testing"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
func TestFrenchElision(t *testing.T) { func TestFrenchElision(t *testing.T) {

View File

@ -13,8 +13,8 @@ import (
"bytes" "bytes"
"unicode" "unicode"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
const LightStemmerName = "stemmer_fr_light" const LightStemmerName = "stemmer_fr_light"

View File

@ -13,8 +13,8 @@ import (
"reflect" "reflect"
"testing" "testing"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
func TestFrenchLightStemmer(t *testing.T) { func TestFrenchLightStemmer(t *testing.T) {

View File

@ -12,8 +12,8 @@ package fr
import ( import (
"bytes" "bytes"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
const MinimalStemmerName = "stemmer_fr_min" const MinimalStemmerName = "stemmer_fr_min"

View File

@ -13,8 +13,8 @@ import (
"reflect" "reflect"
"testing" "testing"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
func TestFrenchMinimalStemmer(t *testing.T) { func TestFrenchMinimalStemmer(t *testing.T) {

View File

@ -12,9 +12,9 @@
package fr package fr
import ( import (
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/token_filters/stemmer_filter" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/token_filters/stemmer_filter"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
const StemmerName = "stemmer_fr" const StemmerName = "stemmer_fr"

View File

@ -10,9 +10,9 @@
package fr package fr
import ( import (
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/token_filters/stop_tokens_filter" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis/token_filters/stop_tokens_filter"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
func StopTokenFilterConstructor(config map[string]interface{}, cache *registry.Cache) (analysis.TokenFilter, error) { func StopTokenFilterConstructor(config map[string]interface{}, cache *registry.Cache) (analysis.TokenFilter, error) {

View File

@ -1,8 +1,8 @@
package fr package fr
import ( import (
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/analysis"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/blevesearch/bleve/registry" "github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/blevesearch/bleve/registry"
) )
const StopName = "stop_fr" const StopName = "stop_fr"

Some files were not shown because too many files have changed in this diff Show More