(path string)
| 196 | } |
| 197 | |
| 198 | func (m *memoryController) Path(path string) string { |
| 199 | return filepath.Join(m.root, path) |
| 200 | } |
| 201 | |
| 202 | func (m *memoryController) Create(path string, resources *specs.LinuxResources) error { |
| 203 | if err := os.MkdirAll(m.Path(path), defaultDirPerm); err != nil { |
no outgoing calls
no test coverage detected