runsisi
runsisi
in `install_dependent_modules` we use `&path[kerneldirlen]` as the key for inserting, let's do the same for checking. otherwise installing kernel module has circular dependency from a custom kernel module directory will...
### The following program `sample.go` triggers an unexpected result ```go package main import ( "fmt" "os" "reflect" "github.com/traefik/yaegi/interp" ) type Actor struct { Age int } type Play struct {...
`try` in risor is very different from Python, w/o the error provided or methods to get the last error it is inconvenient during error handling since we often need to...
Fixes: https://github.com/risor-io/risor/issues/232 Signed-off-by: runsisi
```go type Service struct { Name *string } func main() { code := ` print(service.Name) ` _, err := risor.Eval(context.Background(), code, risor.WithGlobals(map[string]any{ "service": Service{Name: nil}, })) if err != nil...
i think ssh support is a must for devops, it is possible for risor? thank you for your amazing work :)
in debug build, run `corrosion exec` on node with faster clock cause other nodes panic. https://github.com/superfly/corrosion/blob/main/crates/corro-agent/src/agent/handlers.rs#L860. ```rs let recv_lag = change .ts() .map(|ts| (agent.clock().new_timestamp().get_time() - ts.0).to_duration()); //