Race Result Details |
Racer | Fátima (nessa2) |
Race Number | 6 |
Date | Wed, 18 Jun 2025 20:09:47 |
Universe | code |
Speed |
25 WPM
![]() |
Accuracy | 95.8% |
Rank | 11th place (out of 15) |
Opponents | ariane_salazar (6th place) beltran_tarqui (2nd place) jasssel (1st place) jhonny_ct (10th place) liz_mariela (9th place) machuran3 (12th place) maria_ortega10 (3rd place) samiraarancibia123426 (7th place) sharick_chungara (5th place) tocsky (8th 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)
|