Warning: session_start(): open(/var/lib/php/sessions/sess_be3m3a01450lo52m0e0b1undfc, 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
!7
sclass MatchInput > DynPrintLogWithInput {
transient Pair> lastResults;
start {
dm_useLocallyCopiedMechLists();
// In case lists change
doEvery(5000, r { update(inputChooser.input() });
}
void update(S s) {
L tokInput = printStruct(javaTokWithAngleBracketsC(s));
L results = ai_parser1_multipleCategories(s, "", "", "");
S rendered = ai_renderParseResults(results);
bool shouldPrint = lastResults == null || neq(rendered, ai_renderParseResults(lastResults.b));
lastResults = pair(s, results);
if (shouldPrint) print("\n> " + s + "\n" + rendered);
}
}