for (int k = 0; k < NUM_ITERATIONS; k++) {
String key = keyFor(i, j, k);
if (keysToIgnore.contains(key)) {
log.infof("Skipping test on failing key %s", key);
} else {
List<Address> owners = hash.locateOwners(key);
for (Map.Entry<Address, Cache<Object, Object>> e : cacheMap.entrySet()) {
try {
if (owners.contains(e.getKey())) DistributionTestHelper.assertIsInContainerImmortal(e.getValue(), key);
// Don't bother testing non-owners since invalidations caused by rehashing are async!
} catch (Throwable th) {