Searched refs:now (Results 1 – 25 of 25) sorted by relevance
/libuv/docs/ |
H A D | Makefile | 76 @echo "Build finished; now you can process the pickle files." 81 @echo "Build finished; now you can process the JSON files." 86 @echo "Build finished; now you can run HTML Help Workshop with the" \ 92 @echo "Build finished; now you can run "qcollectiongenerator" with the" \
|
H A D | make.bat | 92 echo.Build finished; now you can process the pickle files. 100 echo.Build finished; now you can process the JSON files. 108 echo.Build finished; now you can run HTML Help Workshop with the ^ 117 echo.Build finished; now you can run "qcollectiongenerator" with the ^
|
/libuv/src/unix/ |
H A D | darwin.c | 168 time_t now; in uv_uptime() local 176 now = time(NULL); in uv_uptime() 177 *uptime = now - info.tv_sec; in uv_uptime()
|
H A D | openbsd.c | 169 time_t now; in uv_uptime() local 177 now = time(NULL); in uv_uptime() 179 *uptime = (double)(now - info.tv_sec); in uv_uptime()
|
H A D | netbsd.c | 170 time_t now; in uv_uptime() local 178 now = time(NULL); in uv_uptime() 180 *uptime = (double)(now - info.tv_sec); in uv_uptime()
|
H A D | linux.c | 1694 struct timespec now; in uv_uptime() local 1705 if (clock_gettime(CLOCK_BOOTTIME, &now)) in uv_uptime() 1708 *uptime = now.tv_sec; in uv_uptime()
|
/libuv/docs/src/ |
H A D | migration_010_100.rst | 82 In 1.0, we unified both implementations, so Windows now uses the same implementation Unix 113 duality, there is only :c:func:`uv_tcp_bind` now. 147 The streams and UDP data receive callbacks now get a pointer to a :c:type:`uv_buf_t` buffer, 231 This is now properly exposed through the :c:func:`uv_fileno` function.
|
H A D | design.rst | 63 #. The loop concept of 'now' is initially set. 66 for a time before the loop's concept of *now* get their callbacks called. 103 #. The loop concept of 'now' is updated. 105 #. Due timers are run. Note that 'now' is not updated again until the next loop iteration.
|
H A D | dns.rst | 90 .. versionchanged:: 1.3.0 the callback parameter is now allowed to be NULL, 105 .. versionchanged:: 1.3.0 the callback parameter is now allowed to be NULL,
|
H A D | tty.rst | 87 .. versionchanged:: 1.23.1: the `readable` parameter is now unused and ignored. 88 The correct value will now be auto-detected from the kernel.
|
H A D | threadpool.rst | 17 .. versionchanged:: 1.45.0 threads now have an 8 MB stack instead of the
|
H A D | timer.rst | 46 …Does not update the event loop's concept of "now". See :c:func:`uv_update_time` for more informati…
|
H A D | loop.rst | 187 Update the event loop's concept of "now". Libuv caches the current time 249 Any previous value returned from :c:func:`uv_backend_fd` is now
|
H A D | udp.rst | 54 * that it should now be freed by the recv_cb callback. When this flag is set 75 * FreeBSD 12.0+, Solaris 11.4, and AIX 7.2.5+ for now. 114 the callee can now safely free the provided buffer.
|
H A D | misc.rst | 327 .. versionchanged:: 1.18.1 now thread-safe on all supported platforms. 329 .. versionchanged:: 1.39.0 now returns an error if `uv_setup_args` is needed 342 .. versionchanged:: 1.18.1 now thread-safe on all supported platforms. 344 .. versionchanged:: 1.39.0 now returns an error if `uv_setup_args` is needed
|
H A D | tcp.rst | 36 * FreeBSD 12.0+, Solaris 11.4, and AIX 7.2.5+ for now.
|
H A D | stream.rst | 142 .. versionchanged:: 1.38.0 :c:func:`uv_read_start()` now consistently
|
/libuv/src/ |
H A D | uv-common.c | 993 uint64_t now; in uv__metrics_set_provider_entry_time() local 998 now = uv_hrtime(); in uv__metrics_set_provider_entry_time() 1001 loop_metrics->provider_entry_time = now; in uv__metrics_set_provider_entry_time()
|
/libuv/docs/src/guide/ |
H A D | utilities.rst | 121 events we are interested in. ``crunch_away`` will now be called repeatedly 386 The ``unused`` parameter is now auto-detected and ignored. It previously needed 440 .. versionchanged:: 1.23.1: the `readable` parameter is now unused and ignored. 441 The appropriate value will now be auto-detected from the kernel.
|
H A D | processes.rst | 312 directory. This socket now behaves no different from TCP sockets as far as 334 supports sending **TCP sockets or other pipes** over pipes for now. 374 Turning now to the master, let's take a look at how the workers are launched to
|
H A D | basics.rst | 215 and see how ``uv_run()`` will now block because a watcher is present. The idle
|
H A D | threads.rst | 54 custom parameters to the thread. The function ``hare`` will now run in a separate
|
/libuv/ |
H A D | ChangeLog | 4532 * build: make dist now generates a full tarball (Johan Bergström) 5688 * include: uv_alloc_cb now takes uv_buf_t* (Ben Noordhuis) 5690 * include: uv_read{2}_cb now takes const uv_buf_t* (Ben Noordhuis) 5692 * include: uv_ip[46]_addr now takes sockaddr_in* (Ben Noordhuis) 5694 * include: uv_tcp_bind{6} now takes sockaddr_in* (Ben Noordhuis) 5696 * include: uv_tcp_connect{6} now takes sockaddr_in* (Ben Noordhuis) 5700 * include: uv_udp_bind{6} now takes sockaddr_in* (Ben Noordhuis) 5702 * include: uv_udp_send{6} now takes sockaddr_in* (Ben Noordhuis) 5748 and st_blksize are now also filled out. (Bert Belder) 5920 * build: `all` now builds static and dynamic lib (Ben Noordhuis) [all …]
|
H A D | LICENSE-docs | 157 all media and formats whether now known or hereafter created,
|
H A D | CMakeLists.txt | 496 # Small hack: use ${uv_test_sources} now to get the runner skeleton,
|
Completed in 78 milliseconds