Eric Wang

Results 7 issues of Eric Wang

Could you consider to add a run cmd for gen_rule, so when I excute `blade run :xxx` would call the run command ``` gen_rule( name = 'xxx', ... run =...

type: enhancement
P1

tensorflow api is updated, tf.all_variables(), tf.initialize_all_variables(), tf.initialize_local_variables() are deprecated

```go package playground_test import ( "testing" "github.com/agiledragon/gomonkey/v2" "github.com/stretchr/testify/assert" "golang.org/x/sync/errgroup" ) func foo() int { return 0 } func run() error { var eg errgroup.Group eg.Go(func() error { foo() return nil...

```go func TestSlice(t *testing.T) { assert := assert.New(t) type Request struct { IDs []int `vd:"$ == nil || len($) > 0"` } req := &Request{} assert.Nil(req.IDs) err := validator.Validate(req) assert.Nil(err)...

Flare is an awesome rpc framework and flare/base has many usefull function capsulations, and I want to use them in my own project. There is no CMakeFiles or configure script,...

```zsh go test -race -v -gcflags="all=-l -N" -cover -run Example ``` go env output ``` GO111MODULE='on' GOARCH='amd64' GOBIN='/data00/home/liuqi.victor/go/bin' GOCACHE='/data00/home/liuqi.victor/.cache/go-build' GOENV='/data00/home/liuqi.victor/.config/go/env' GOEXE='' GOEXPERIMENT='' GOFLAGS='' GOHOSTARCH='amd64' GOHOSTOS='linux' GOINSECURE='' GOMODCACHE='/data00/home/liuqi.victor/go/pkg/mod' GOOS='linux' GOPATH='/data00/home/liuqi.victor/go' GOPROXY='https://go-mod-proxy.byted.org|https://goproxy.cn|https://proxy.golang.org|direct'...