Denis Korenevskiy

Results 8 issues of Denis Korenevskiy

This makes StreamDirector function to accept `grpc.ClientConnInterface` instead of strict `*grpc.ClientConn` implementation. This allows to use custom connection implementations and stubs, like inprocess stream channeling without real network connection (https://pkg.go.dev/github.com/fullstorydev/grpchan/inprocgrpc)...

this makes possible to do the following: ```go flag := pflag.Flag{ Name: "sample-option", Shorthand: "s", DefValue: "default value", Value: pflag.NewStringValue("default value", new(string)), Usage: "option you can add to cobra command...

As a special case, it is OK to allow absolute paths access when the `BasePathFs.path` is empty. Sometimes we need to provide access to full FS through BasePathFs type for...

In some (quite rare, but anyway) test cases you cannot predict if the method will be called for particular instance of mocked interface. Say, you test the concurrency and plan...

Hope it is all changes required to pass ref_type info from env to github context. It's first time I touch actions toolkit and I'm not sure if I hadn't miss...

Motivation: Compiled scripts can be executed concurrently out of the box. At the same time, custom builtin modules can be passed to tengo script out from go, providing additional functionalities...

When playing with bundling complex application, I faced the challenge of patching several different binaries in several paths that need to refer the same 'libs' directory. The challenge is that...