houxul
houxul
https://github.com/mattn/anko/issues/72
Anko code ``` module User{ _age = -1 _name = "undefined" func SetAge(age) { _age = age } func SetName(name) { _name = name } } data = [ {...
#### Overview support redis storage #### What this PR does / why we need it some developers may use reids as storage #### Special notes for your reviewer #### Does...
ModelInferResponse is defined as follows ``` type ModelInferResponse struct { // ohter ... Outputs []*ModelInferResponse_InferOutputTensor `protobuf:"bytes,5,rep,name=outputs,proto3" json:"outputs,omitempty"` RawOutputContents [][]byte `protobuf:"bytes,6,rep,name=raw_output_contents,json=rawOutputContents,proto3" json:"raw_output_contents,omitempty"` } ``` Call the ModelInfer interface to get the...
ss-server config ``` { "server":"0.0.0.0", "server_port":443, "mode":"tcp_only", "no_delay":true, "nameserver":"8.8.8.8", "password":"my-password", "timeout":300, "method":"aes-256-cfb", "plugin":"/usr/local/bin/v2ray-plugin", "plugin_opts":"server;tls;host=my-host;cert=my-crt;key=my-key" } ``` server shadowsocks-libev version ``` 3.3.4 ``` server v2ray-plugin version ``` 4.22.1 custom (go1.13) ```...
Start goreplay and middleware with `goreplay --middleware /app/middleware`, which handles signals like syscall.SIGINT, syscall.SIGTERM, etc. After the goreplay process is terminated, middleware also exits, but a middleware zombie process is...