Lines Matching refs:in
8 A common idiom in Unix is for every process to do one thing and do it well. In
10 (similar to using pipes in shells). A multi-process model with messages
15 advantage of multiple cores in modern computers. In a multi-threaded program
71 using fields in ``uv_process_options_t``.
99 * ``UV_PROCESS_DETACHED`` - Starts the child process in a new session, which
156 in that it will process only one event. UV_RUN_ONCE blocks if there are no
174 applications launches a sub-command and you want any errors to go in the log
185 The file descriptors of the child process are set using the ``stdio`` field in
219 to ``UV_INHERIT_STREAM`` and setting ``data.stream`` to the stream in the
253 read/write buffering to the operating system, so in terms of convenience this
291 Since domain sockets [#]_ can have a well known name and a location in the
311 We name the socket ``echo.sock`` which means it will be created in the local
337 clients to worker processes in a round-robin fashion. This program is a bit
338 involved, and while only snippets are included in the book, it is recommended
368 Although ``accept`` seems odd in this code, it actually makes sense. What
401 It is in ``on_new_connection`` (the TCP infrastructure is initialized in
403 worker in the round-robin.
413 passing in the handle (``client``) as the right argument. With this our
423 .. [#] In this section domain sockets stands in for named pipes on Windows as