Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame contribute delete
259 Bytes
package limit
// Limits contains the current value of all configurable limits.
type Limits map[ID]int
// Max returns the current max value of the limit with the given ID.
func (l Limits) Max(id ID) int {
v, ok := l[id]
if !ok {
return -1
}
return v
}