View Pit Stop page for race #1 by atra — Ghost race
| Official speed | 29.09 wpm (183.57 seconds elapsed during race) |
|---|---|
| Race Start | April 14, 2025 10:07:17am UTC |
| Race Finish | April 14, 2025 10:10:20am UTC |
| Outcome | No win (5 of 6) |
| Opponents |
1. richardilot (47.40 wpm) |
| Accuracy | 95.0% |
| Points | 27.64 |
| Text | #10001 (Length: 445 characters) /** Loop waiting for a connection and a valid command */ while (true) { Socket socket = null; InputStream stream = null; try { socket = serverSocket.accept(); socket.setSoTimeout(10 * 1000); stream = socket.getInputStream(); } catch (AccessControlException ace) { log.warn("StandardServer.accept security exception: " + ace.getMessage(), ace); continue; } catch (IOException e) { log.error("StandardServer.await: accept: ", e); System.exit(1); } |