-
Clayton Coleman authored
Pick a reasonable middle ground between allocating larger chunks of memory (2048 * ~500b for pod slices) and having many small allocations as the list is resized by preallocating capacity based on the expected list size. At worst, we'll allocate a 1M slice for pods and only add a single pod to it (if the selector is very specific).