add service mesh controller

add service mesh metrics

remove unused circle yaml

fix travis misconfiguration

fix travis misconfiguration

fix travis misconfiguration
This commit is contained in:
jeff
2019-03-08 18:22:30 +08:00
committed by Jeff
parent 858facd4b2
commit 4ac20ffc2b
1709 changed files with 344390 additions and 60749 deletions

19
vendor/github.com/markbates/inflect/helpers.go generated vendored Normal file
View File

@@ -0,0 +1,19 @@
package inflect
//Helpers is a map of the helper names with its corresponding inflect function
var Helpers = map[string]interface{}{
"asciffy": Asciify,
"camelize": Camelize,
"camelize_down_first": CamelizeDownFirst,
"capitalize": Capitalize,
"dasherize": Dasherize,
"humanize": Humanize,
"ordinalize": Ordinalize,
"parameterize": Parameterize,
"pluralize": Pluralize,
"pluralize_with_size": PluralizeWithSize,
"singularize": Singularize,
"tableize": Tableize,
"typeify": Typeify,
"underscore": Underscore,
}