Warning: session_start(): open(/var/lib/php/sessions/sess_3cdmr4hjqpl0qienfbu8q58d67, 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
import java.nio.file.*;
import static java.nio.file.StandardWatchEventKinds.*;
p {
final Path path = FileSystems.getDefault().getPath(userHome());
WatchService watchService = FileSystems.getDefault().newWatchService();
final WatchKey watchKey = path.register(watchService, ENTRY_CREATE, ENTRY_DELETE, ENTRY_MODIFY, OVERFLOW);
while licensed {
final WatchKey wk = watchService.take();
print("Key taken");
for (WatchEvent> event : wk.pollEvents()) pcall {
final Path changed = (Path) event.context();
print("Changed: " + changed);
}
bool valid = wk.reset();
if (!valid)
print("Key has been unregistered");
}
}