(r *Rule)
| 321 | } |
| 322 | |
| 323 | func (l *Loader) isTemporary(r *Rule) bool { |
| 324 | return r.Duration != Restart && r.Duration != Always && r.Duration != Once |
| 325 | } |
| 326 | |
| 327 | func (l *Loader) isUniqueName(name string) bool { |
| 328 | _, found := l.rules[name] |
no outgoing calls
no test coverage detected