Race Result Details |
Racer | Luis Alberto Delgado Pinto (luis_univ) |
Race Number | 19 |
Date | Thu, 29 May 2025 1:27:18 |
Universe | code |
Speed |
30 WPM
![]() |
Accuracy | 96.5% |
Rank | 6th 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) magali_alanoca (11th place) priscilacervantes23 (12th place) souljin99 (9th 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)
|