Race Result Details |
Racer | Marco Soria Ali (souljin99) |
Race Number | 29 |
Date | Thu, 29 May 2025 1:27:51 |
Universe | code |
Speed |
26 WPM
![]() |
Accuracy | 93.8% |
Rank | 9th place (out of 17) |
Opponents | alvaro_ (7th place) blizhte (8th place) erick0334 (3rd place) fanor (4th place) jgary199 (2nd place) jhony99 (10th place) jhosmar (1st place) luis_univ (6th place) magali_alanoca (11th place) priscilacervantes23 (12th place) |
Text typed:
/** 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); }
— (software)
by Apache Project
(see stats)
|