YiCheng Zhu
YiCheng Zhu
i expect that the init value would be from SharedPreferences,so i invoke **initSoundSetting**,but when loading page ,it always displays null ```dart class _StudyModelSoundSettingState extends State{ int soundSetting; void initState(){ super.initState();...
I use `bufferline` and set offset for it. When I use `Nvim Tree`, i set the options as followed: ```lua options = { diagnostics = "nvim_lsp", offsets = {{ filetype...
I noticed this [issue](https://github.com/hashicorp/hcl/issues/610). It mentioned that `GoHCL` only supports static values, and it would convert all string beginning with `${` to $ `$${`. It brings some problem when using...
Description ------------- When using the designing pattern of Option Pattern, there will be some code below: ```go // unexported option type fooOptions struct{ // some fields // ... } //...
- [x] Do only one thing - [x] Non breaking API changes - [x] Tested ### What did this pull request do? Now `gen.WithQueryInterface` only generates interface for DO object....
I noticed the https://github.com/redis/go-redis/issues/1196#issue-527462854, and it seems that maintainers have fixed this. But i use the alomost the same code given in the https://github.com/redis/go-redis/issues/1196#issue-527462854: ```go client := redis.NewClient(&redis.Options{ Addr: "localhost:6379",...
https://github.com/go-cmd/cmd/blob/500562c204744af1802ae24316a7e0bf88dcc545/cmd.go#L108-L134 Its description mentions that `Complete` should be false and `Error` should not be nil if signaled. But if the underlying cmd receives a `os.Interrupt` signal, the returned status will...
发布 release artifact 的流水线能否考虑修改一下,支持多架构(如 arm) ``` cd src/full_check GOOS=darwin GOARCH=amd64 $run_builder -ldflags "-X $info" -o "$output/darwin_amd64/redis-full-check" GOOS=darwin GOARCH=arm64 $run_builder -ldflags "-X $info" -o "$output/darwin_arm64/redis-full-check" GOOS=linux GOARCH=amd64 $run_builder -ldflags "-X $info"...
If I use terraform cli and kill a running terraform task, it will gracefully shutdown. If I use this library to invoke terraform and cancel it, will it behave the...