/libuv/docs/src/ |
H A D | version.rst | 7 Starting with version 1.0.0 libuv follows the `semantic versioning`_ 21 libuv version's major number. 25 libuv version's minor number. 29 libuv version's patch number. 33 Set to 1 to indicate a release version of libuv, 0 for a development 38 libuv version suffix. Certain development releases such as Release Candidates 43 Returns the libuv version packed into a single integer. 8 bits are used for 59 Returns the libuv version number as a string. For non-release versions the 60 version suffix is included.
|
H A D | conf.py | 74 version = get_libuv_version() variable 76 release = version 136 html_short_title = 'libuv %s documentation' % version
|
H A D | api.rst | 10 version
|
H A D | misc.rst | 216 Data type for operating system name and version information. 223 char version[256]; 828 operating system name, release, version, and machine. On non-Windows 850 The synchronous version may block indefinitely when not enough entropy 851 is available. The asynchronous version may not ever finish when the system 873 When using the synchronous version, both `loop` and `req` parameters
|
/libuv/tools/ |
H A D | make_dist_html.py | 84 def version(tag): function 88 return version(tag)[:2] 95 if version(tag) >= version('v1.7.0'): 117 tags.sort(key=version, reverse=True)
|
H A D | vswhere_usability_wrapper.cmd | 5 :: version: 2.0.0 19 set VSWHERE_LMT=-version "[15.0,16.0)"
|
/libuv/ |
H A D | autogen.sh | 35 aclocal_version=`"$ACLOCAL" --version | head -n 1 | sed 's/[^.0-9]//g'` 36 autoconf_version=`"$AUTOCONF" --version | head -n 1 | sed 's/[^.0-9]//g'` 37 automake_version=`"$AUTOMAKE" --version | head -n 1 | sed 's/[^.0-9]//g'` 40 libtoolize_version=`"$LIBTOOLIZE" --version | head -n 1 | sed 's/[^.0-9]//g'`
|
H A D | ChangeLog | 3 Changes since version 1.49.1: 21 Changes since version 1.49.0: 52 Changes since version 1.48.0: 254 Changes since version 1.47.0: 345 Changes since version 1.46.0: 454 Changes since version 1.45.0: 513 Changes since version 1.44.2: 806 Changes since version 1.44.1: 934 Changes since version 1.44.0: 945 Changes since version 1.43.0: [all …]
|
H A D | SUPPORTED_PLATFORMS.md | 56 would mean adding support for a new version. 58 Compilation and runtime must succeed for the minimum supported version. If a 66 autotools based build system or use version checking macros. 68 minimum supported version.
|
H A D | .readthedocs.yaml | 1 version: 2
|
H A D | README.md | 38 Starting with version 1.0.0 libuv follows the [semantic versioning](http://semver.org/) 244 If the version is out of date, please [create an issue or pull request](https://github.com/conan-io… 324 AIX compilation using IBM XL C/C++ requires version 12.1 or greater.
|
H A D | Makefile.am | 25 include/uv/version.h 31 libuv_la_LDFLAGS = $(AM_LDFLAGS) -no-undefined -version-info 1:0:0 47 src/version.c \
|
/libuv/test/ |
H A D | test-uname.c | 51 ASSERT_OK(strcmp(buffer.version, buf.version)); in TEST_IMPL() 54 snprintf(temp, sizeof(temp), "%s.%s", buf.version, buf.release); in TEST_IMPL()
|
H A D | test-platform-output.c | 236 printf(" version: %s\n", uname.version); in TEST_IMPL()
|
/libuv/src/unix/ |
H A D | darwin-stub.h | 60 CFIndex version; member 67 CFIndex version; member
|
H A D | thread.c | 512 const char* version = gnu_get_libc_version(); in glibc_version_check() local 514 version[0] == '2' && version[1] == '.' && in glibc_version_check() 515 atoi(version + 2) < 21; in glibc_version_check()
|
H A D | linux.c | 305 unsigned version; in uv__kernel_version() local 312 version = atomic_load_explicit(&cached_version, memory_order_relaxed); in uv__kernel_version() 313 if (version != 0) in uv__kernel_version() 314 return version; in uv__kernel_version() 333 needle = strstr(u.version, "Debian "); in uv__kernel_version() 367 version = major * 65536 + minor * 256 + patch; in uv__kernel_version() 368 atomic_store_explicit(&cached_version, version, memory_order_relaxed); in uv__kernel_version() 370 return version; in uv__kernel_version()
|
H A D | core.c | 1721 buf.version, in uv_os_uname() 1733 r = uv__strscpy(buffer->version, buf.version, sizeof(buffer->version)); in uv_os_uname() 1751 buffer->version[0] = '\0'; in uv_os_uname()
|
/libuv/.github/ |
H A D | dependabot.yml | 2 version: 2
|
/libuv/.github/workflows/ |
H A D | CI-docs.yml | 17 python-version: '3.9'
|
H A D | sanitizer.yml | 116 version: "17"
|
/libuv/m4/ |
H A D | libuv-check-flags.m4 | 8 dnl the Free Software Foundation; either version 3, or (at your option) 9 dnl any later version. 32 dnl distribute a modified version of the Autoconf Macro, you may extend 33 dnl this special exception to the GPL to apply to your modified version as
|
H A D | ax_pthread.m4 | 61 # Free Software Foundation, either version 3 of the License, or (at your 62 # option) any later version. 82 # modified version of the Autoconf Macro, you may extend this special 83 # exception to the GPL to apply to your modified version as well. 285 # that build with -Werror. So if the active version of Clang has 291 # Create an alternate version of $ac_link that compiles and
|
/libuv/src/win/ |
H A D | util.c | 1574 version_size = sizeof(buffer->version); in uv_os_uname() 1577 buffer->version, in uv_os_uname() 1587 buffer->version[version_size++] = ' '; in uv_os_uname() 1589 version_size = sizeof(buffer->version) - version_size; in uv_os_uname() 1592 buffer->version + in uv_os_uname() 1593 sizeof(buffer->version) - version_size, in uv_os_uname() 1669 buffer->version[0] = '\0'; in uv_os_uname()
|
/libuv/docs/src/guide/ |
H A D | introduction.rst | 44 In the node-v0.9.0 version of libuv `libev was removed`_. 50 This book and the code is based on libuv version `v1.42.0`_.
|