Warning: session_start(): open(/var/lib/php/sessions/sess_i24p3q13e8fk3gdrr60297t4p3, 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
static L indexedNodes_withInvalids(S s) {
L l = indexedNodes_rawLookup(s);
bool shared = true;
for (VirtualNodeIndex i : concurrentlyIterateList(virtualNodeIndices())) {
L x = i.get(s);
if (nempty(x)) {
print("Word " + s + ". #" + i + " adding " + l(x) + " to " + l(l));
if (empty(l)) { l = x; shared = true; }
else {
if (shared) { l = cloneList(l); shared = false; }
l.addAll(x);
}
}
}
ret l;
}
ifclass AI_SubSpace
static L indexedNodes_withInvalids(AI_SubSpace ss, S s) {
ret ss.indexedNodes_rawLookup(s);
}
endif