Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/brimdata/super
/ Open
Function
Open
pkg/fs/open_windows.go:42–44 ·
view source on GitHub ↗
(name string)
Source
from the content-addressed store, hash-verified
40
}
41
42
func
Open(name string) (*os.File, error) {
43
return
OpenFile(name, os.O_RDONLY, 0)
44
}
45
46
func
Create(name string) (*os.File, error) {
47
return
OpenFile(name, os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0666)
Callers
5
TestValid
Function · 0.92
TestInvalid
Function · 0.92
parse
Function · 0.92
Run
Method · 0.92
ReadFile
Function · 0.70
Calls
1
OpenFile
Function · 0.70
Tested by
3
TestValid
Function · 0.74
TestInvalid
Function · 0.74
parse
Function · 0.74