Warning: session_start(): open(/var/lib/php/sessions/sess_hd104idgj2okdr1npjumchols5, O_RDWR) failed: No space left on device (28) in /var/www/tb-usercake/models/config.php on line 51

Warning: session_start(): Failed to read session data: files (path: /var/lib/php/sessions) in /var/www/tb-usercake/models/config.php on line 51
// iterate safely (& quickly) in the face of concurrent modifications static IterableIterator concurrentlyIterateSet(final NavigableSet set) { fO mutex = collectionMutex(set); ret iteratorFromFunction(new F0() { Iterator it = set.iterator(); A key; A get() { synchronized(mutex) { try { if (!it.hasNext()) null; ret key = it.next(); } catch (ConcurrentModificationException e) { print("Re-iterating"); it = set.tailSet(key, false).iterator(); if (!it.hasNext()) null; ret key = it.next(); // Can't throw another exception } } } }); }