styx icon indicating copy to clipboard operation
styx copied to clipboard

Go library for the 9P filesystem protocol

Results 6 styx issues
Sort by recently updated
recently updated
newest added

not sure if this is correct and i'm just confused? ```golang case styx.Topen: f, err := os.OpenFile(p, msg.Flag , 0777) log.Println("Open", p, msg.Flag, err) msg.Ropen(f, err) ``` indicates Flag is...

Using the provided example noop FS: ``` package main import ( "io" "log" "os" "time" "aqwari.net/net/styx" ) type emptyDir struct{} func (emptyDir) Readdir(n int) ([]os.FileInfo, error) { return nil, io.EOF...

Reverts incorrect changes introduced in https://github.com/droyo/styx/pull/30, which broke Rwalk (for which there were failing tests that went unnoticed). Also removes a superfluous Put call in qidpool: if it already exists,...

I'm currently working on a file system using styx that can't be built for arm due to overflow errors: https://github.com/henesy/abfs/issues/1 Notably, the old constant code yields a value that indicates...

I end up here I just forked, cloned and run `go test` a couple of times. It looks like a message got logged after the test function returned. ``` styx...

TestSample in the styx package is flaky. See https://travis-ci.org/droyo/styx/builds/544575851?utm_source=github_status&utm_medium=notification for an example failure: ``` server_test.go:212: → 000 Tclunk fid=2 server_test.go:30: closed connection from pipe server_test.go:244: the following requests were unanswered:...