Function
writeValues
(path string, values []Value)
Source from the content-addressed store, hash-verified
| 179 | } |
| 180 | |
| 181 | func writeValues(path string, values []Value) error { |
| 182 | for _, o := range values { |
| 183 | if err := o.write(path, defaultFilePerm); err != nil { |
| 184 | return err |
| 185 | } |
| 186 | } |
| 187 | return nil |
| 188 | } |
| 189 | |
| 190 | func NewManager(mountpoint string, group string, resources *Resources) (*Manager, error) { |
| 191 | if resources == nil { |
Tested by
no test coverage detected
Used in the wild real call sites across dependent graphs
searching dependent graphs…