首页 星云 工具 资源 星选 资讯 热门工具
:

PDF转图片 完全免费 小红书视频下载 无水印 抖音视频下载 无水印 数字星空

curl-8.11.0-4-win64-mingw.zip

操作系统 7.47MB 31 需要积分: 1
立即下载

资源介绍:

curl-8.11.0-4-win64-mingw.zip

Zstandard

__Zstandard__, or `zstd` as short version, is a fast lossless compression algorithm, targeting real-time compression scenarios at zlib-level and better compression ratios. It's backed by a very fast entropy stage, provided by [Huff0 and FSE library](https://github.com/Cyan4973/FiniteStateEntropy). Zstandard's format is stable and documented in [RFC8878](https://datatracker.ietf.org/doc/html/rfc8878). Multiple independent implementations are already available. This repository represents the reference implementation, provided as an open-source dual [BSD](LICENSE) OR [GPLv2](COPYING) licensed **C** library, and a command line utility producing and decoding `.zst`, `.gz`, `.xz` and `.lz4` files. Should your project require another programming language, a list of known ports and bindings is provided on [Zstandard homepage](https://facebook.github.io/zstd/#other-languages). **Development branch status:** [![Build Status][travisDevBadge]][travisLink] [![Build status][CircleDevBadge]][CircleLink] [![Build status][CirrusDevBadge]][CirrusLink] [![Fuzzing Status][OSSFuzzBadge]][OSSFuzzLink] [travisDevBadge]: https://api.travis-ci.com/facebook/zstd.svg?branch=dev "Continuous Integration test suite" [travisLink]: https://travis-ci.com/facebook/zstd [CircleDevBadge]: https://circleci.com/gh/facebook/zstd/tree/dev.svg?style=shield "Short test suite" [CircleLink]: https://circleci.com/gh/facebook/zstd [CirrusDevBadge]: https://api.cirrus-ci.com/github/facebook/zstd.svg?branch=dev [CirrusLink]: https://cirrus-ci.com/github/facebook/zstd [OSSFuzzBadge]: https://oss-fuzz-build-logs.storage.googleapis.com/badges/zstd.svg [OSSFuzzLink]: https://bugs.chromium.org/p/oss-fuzz/issues/list?sort=-opened&can=1&q=proj:zstd ## Benchmarks For reference, several fast compression algorithms were tested and compared on a desktop running Ubuntu 20.04 (`Linux 5.11.0-41-generic`), with a Core i7-9700K CPU @ 4.9GHz, using [lzbench], an open-source in-memory benchmark by @inikep compiled with [gcc] 9.3.0, on the [Silesia compression corpus]. [lzbench]: https://github.com/inikep/lzbench [Silesia compression corpus]: https://sun.aei.polsl.pl//~sdeor/index.php?page=silesia [gcc]: https://gcc.gnu.org/ | Compressor name | Ratio | Compression| Decompress.| | --------------- | ------| -----------| ---------- | | **zstd 1.5.1 -1** | 2.887 | 530 MB/s | 1700 MB/s | | [zlib] 1.2.11 -1 | 2.743 | 95 MB/s | 400 MB/s | | brotli 1.0.9 -0 | 2.702 | 395 MB/s | 450 MB/s | | **zstd 1.5.1 --fast=1** | 2.437 | 600 MB/s | 2150 MB/s | | **zstd 1.5.1 --fast=3** | 2.239 | 670 MB/s | 2250 MB/s | | quicklz 1.5.0 -1 | 2.238 | 540 MB/s | 760 MB/s | | **zstd 1.5.1 --fast=4** | 2.148 | 710 MB/s | 2300 MB/s | | lzo1x 2.10 -1 | 2.106 | 660 MB/s | 845 MB/s | | [lz4] 1.9.3 | 2.101 | 740 MB/s | 4500 MB/s | | lzf 3.6 -1 | 2.077 | 410 MB/s | 830 MB/s | | snappy 1.1.9 | 2.073 | 550 MB/s | 1750 MB/s | [zlib]: https://www.zlib.net/ [lz4]: https://lz4.github.io/lz4/ The negative compression levels, specified with `--fast=#`, offer faster compression and decompression speed at the cost of compression ratio (compared to level 1). Zstd can also offer stronger compression ratios at the cost of compression speed. Speed vs Compression trade-off is configurable by small increments. Decompression speed is preserved and remains roughly the same at all settings, a property shared by most LZ compression algorithms, such as [zlib] or lzma. The following tests were run on a server running Linux Debian (`Linux version 4.14.0-3-amd64`) with a Core i7-6700K CPU @ 4.0GHz, using [lzbench], an open-source in-memory benchmark by @inikep compiled with [gcc] 7.3.0, on the [Silesia compression corpus]. Compression Speed vs Ratio | Decompression Speed ---------------------------|-------------------- ![Compression Speed vs Ratio](doc/images/CSpeed2.png "Compression Speed vs Ratio") | ![Decompression Speed](doc/images/DSpeed3.png "Decompression Speed") A few other algorithms can produce higher compression ratios at slower speeds, falling outside of the graph. For a larger picture including slow modes, [click on this link](doc/images/DCspeed5.png). ## The case for Small Data compression Previous charts provide results applicable to typical file and stream scenarios (several MB). Small data comes with different perspectives. The smaller the amount of data to compress, the more difficult it is to compress. This problem is common to all compression algorithms, and reason is, compression algorithms learn from past data how to compress future data. But at the beginning of a new data set, there is no "past" to build upon. To solve this situation, Zstd offers a __training mode__, which can be used to tune the algorithm for a selected type of data. Training Zstandard is achieved by providing it with a few samples (one file per sample). The result of this training is stored in a file called "dictionary", which must be loaded before compression and decompression. Using this dictionary, the compression ratio achievable on small data improves dramatically. The following example uses the `github-users` [sample set](https://github.com/facebook/zstd/releases/tag/v1.1.3), created from [github public API](https://developer.github.com/v3/users/#get-all-users). It consists of roughly 10K records weighing about 1KB each. Compression Ratio | Compression Speed | Decompression Speed ------------------|-------------------|-------------------- ![Compression Ratio](doc/images/dict-cr.png "Compression Ratio") | ![Compression Speed](doc/images/dict-cs.png "Compression Speed") | ![Decompression Speed](doc/images/dict-ds.png "Decompression Speed") These compression gains are achieved while simultaneously providing _faster_ compression and decompression speeds. Training works if there is some correlation in a family of small data samples. The more data-specific a dictionary is, the more efficient it is (there is no _universal dictionary_). Hence, deploying one dictionary per type of data will provide the greatest benefits. Dictionary gains are mostly effective in the first few KB. Then, the compression algorithm will gradually use previously decoded content to better compress the rest of the file. ### Dictionary compression How To: 1. Create the dictionary `zstd --train FullPathToTrainingSet/* -o dictionaryName` 2. Compress with dictionary `zstd -D dictionaryName FILE` 3. Decompress with dictionary `zstd -D dictionaryName --decompress FILE.zst` ## Build instructions `make` is the officially maintained build system of this project. All other build systems are "compatible" and 3rd-party maintained, they may feature small differences in advanced options. When your system allows it, prefer using `make` to build `zstd` and `libzstd`. ### Makefile If your system is compatible with standard `make` (or `gmake`), invoking `make` in root directory will generate `zstd` cli in root directory. It will also create `libzstd` into `lib/`. Other available options include: - `make install` : create and install zstd cli, library and man pages - `make check` : create and run `zstd`, test its behavior on local platform The `Makefile` follows the [GNU Standard Makefile conventions](https://www.gnu.org/prep/standards/html_node/Makefile-Conventions.html), allowing staged install, standard flags, directory variables and command variables. For advanced use cases, specialized compilation flags which control binary generation are documented in [`lib/README.md`](lib/README.md#modular-build) for the `libzstd` library and in [`programs/README.md`](programs/README.md#compilation-variables) for the `zstd` CLI. ### cmake A `cmake` project generator is provided within `build/cmake`. It can generate Makefiles or other

资源文件列表:

curl-8.11.0_4-win64-mingw.zip 大约有345个文件
  1. curl-8.11.0_4-win64-mingw/
  2. curl-8.11.0_4-win64-mingw/BUILD-HASHES.txt 11.71KB
  3. curl-8.11.0_4-win64-mingw/BUILD-MANIFEST.txt 878B
  4. curl-8.11.0_4-win64-mingw/BUILD-README.url 62B
  5. curl-8.11.0_4-win64-mingw/COPYING.txt 1.06KB
  6. curl-8.11.0_4-win64-mingw/README.txt 1.63KB
  7. curl-8.11.0_4-win64-mingw/RELEASE-NOTES.txt 26.37KB
  8. curl-8.11.0_4-win64-mingw/bin/
  9. curl-8.11.0_4-win64-mingw/bin/curl-ca-bundle.crt 231.3KB
  10. curl-8.11.0_4-win64-mingw/bin/curl.exe 3.47MB
  11. curl-8.11.0_4-win64-mingw/bin/libcurl-x64.def 2.3KB
  12. curl-8.11.0_4-win64-mingw/bin/libcurl-x64.dll 3.04MB
  13. curl-8.11.0_4-win64-mingw/dep/
  14. curl-8.11.0_4-win64-mingw/dep/brotli/
  15. curl-8.11.0_4-win64-mingw/dep/brotli/LICENSE.txt 1.06KB
  16. curl-8.11.0_4-win64-mingw/dep/brotli/README.md 4KB
  17. curl-8.11.0_4-win64-mingw/dep/cacert/
  18. curl-8.11.0_4-win64-mingw/dep/cacert/LICENSE.url 73B
  19. curl-8.11.0_4-win64-mingw/dep/libpsl/
  20. curl-8.11.0_4-win64-mingw/dep/libpsl/AUTHORS.txt 916B
  21. curl-8.11.0_4-win64-mingw/dep/libpsl/COPYING.txt 1.04KB
  22. curl-8.11.0_4-win64-mingw/dep/libpsl/NEWS.txt 7.73KB
  23. curl-8.11.0_4-win64-mingw/dep/libressl/
  24. curl-8.11.0_4-win64-mingw/dep/libressl/COPYING.txt 6.35KB
  25. curl-8.11.0_4-win64-mingw/dep/libressl/ChangeLog.txt 123.23KB
  26. curl-8.11.0_4-win64-mingw/dep/libressl/README.md 9.4KB
  27. curl-8.11.0_4-win64-mingw/dep/libssh2/
  28. curl-8.11.0_4-win64-mingw/dep/libssh2/COPYING.txt 1.91KB
  29. curl-8.11.0_4-win64-mingw/dep/libssh2/NEWS.txt 337.1KB
  30. curl-8.11.0_4-win64-mingw/dep/libssh2/README.txt 465B
  31. curl-8.11.0_4-win64-mingw/dep/libssh2/RELEASE-NOTES.txt 20.57KB
  32. curl-8.11.0_4-win64-mingw/dep/libssh2/docs/
  33. curl-8.11.0_4-win64-mingw/dep/libssh2/docs/AUTHORS.txt 1.19KB
  34. curl-8.11.0_4-win64-mingw/dep/libssh2/docs/HACKING-CRYPTO.txt 39.47KB
  35. curl-8.11.0_4-win64-mingw/dep/libssh2/docs/INSTALL_AUTOTOOLS.txt 11.58KB
  36. curl-8.11.0_4-win64-mingw/dep/libssh2/docs/TODO.txt 6.27KB
  37. curl-8.11.0_4-win64-mingw/dep/nghttp2/
  38. curl-8.11.0_4-win64-mingw/dep/nghttp2/AUTHORS.txt 2.6KB
  39. curl-8.11.0_4-win64-mingw/dep/nghttp2/COPYING.txt 1.13KB
  40. curl-8.11.0_4-win64-mingw/dep/nghttp2/ChangeLog.txt 13.8KB
  41. curl-8.11.0_4-win64-mingw/dep/nghttp2/README.rst 48.43KB
  42. curl-8.11.0_4-win64-mingw/dep/nghttp3/
  43. curl-8.11.0_4-win64-mingw/dep/nghttp3/AUTHORS.txt 349B
  44. curl-8.11.0_4-win64-mingw/dep/nghttp3/COPYING.txt 1.06KB
  45. curl-8.11.0_4-win64-mingw/dep/nghttp3/ChangeLog.txt 12.65KB
  46. curl-8.11.0_4-win64-mingw/dep/nghttp3/README.rst 1.81KB
  47. curl-8.11.0_4-win64-mingw/dep/ngtcp2/
  48. curl-8.11.0_4-win64-mingw/dep/ngtcp2/AUTHORS.txt 837B
  49. curl-8.11.0_4-win64-mingw/dep/ngtcp2/COPYING.txt 1.05KB
  50. curl-8.11.0_4-win64-mingw/dep/ngtcp2/ChangeLog.txt 516B
  51. curl-8.11.0_4-win64-mingw/dep/ngtcp2/README.rst 11.04KB
  52. curl-8.11.0_4-win64-mingw/dep/zlib/
  53. curl-8.11.0_4-win64-mingw/dep/zlib/ChangeLog.txt 81.87KB
  54. curl-8.11.0_4-win64-mingw/dep/zlib/LICENSE.txt 1002B
  55. curl-8.11.0_4-win64-mingw/dep/zstd/
  56. curl-8.11.0_4-win64-mingw/dep/zstd/CHANGELOG.txt 48.38KB
  57. curl-8.11.0_4-win64-mingw/dep/zstd/LICENSE.txt 1.51KB
  58. curl-8.11.0_4-win64-mingw/dep/zstd/README.md 10.84KB
  59. curl-8.11.0_4-win64-mingw/docs/
  60. curl-8.11.0_4-win64-mingw/docs/BINDINGS.md 6.28KB
  61. curl-8.11.0_4-win64-mingw/docs/BUG-BOUNTY.md 3.51KB
  62. curl-8.11.0_4-win64-mingw/docs/BUGS.md 11.66KB
  63. curl-8.11.0_4-win64-mingw/docs/CIPHERS-TLS12.md 37.6KB
  64. curl-8.11.0_4-win64-mingw/docs/CIPHERS.md 7.83KB
  65. curl-8.11.0_4-win64-mingw/docs/CODE_OF_CONDUCT.md 1.66KB
  66. curl-8.11.0_4-win64-mingw/docs/CODE_REVIEW.md 5.86KB
  67. curl-8.11.0_4-win64-mingw/docs/CONTRIBUTE.md 12.99KB
  68. curl-8.11.0_4-win64-mingw/docs/CURL-DISABLE.md 3.26KB
  69. curl-8.11.0_4-win64-mingw/docs/CURLDOWN.md 4.96KB
  70. curl-8.11.0_4-win64-mingw/docs/DEPRECATE.md 2.3KB
  71. curl-8.11.0_4-win64-mingw/docs/DISTROS.md 10.6KB
  72. curl-8.11.0_4-win64-mingw/docs/EARLY-RELEASE.md 2.87KB
  73. curl-8.11.0_4-win64-mingw/docs/ECH.md 18.72KB
  74. curl-8.11.0_4-win64-mingw/docs/EXPERIMENTAL.md 2.2KB
  75. curl-8.11.0_4-win64-mingw/docs/FAQ.txt 66.36KB
  76. curl-8.11.0_4-win64-mingw/docs/FEATURES.md 6.02KB
  77. curl-8.11.0_4-win64-mingw/docs/GOVERNANCE.md 7.54KB
  78. curl-8.11.0_4-win64-mingw/docs/HELP-US.md 4.08KB
  79. curl-8.11.0_4-win64-mingw/docs/HISTORY.md 12.79KB
  80. curl-8.11.0_4-win64-mingw/docs/HTTP-COOKIES.md 6.47KB
  81. curl-8.11.0_4-win64-mingw/docs/HTTP3.md 13.71KB
  82. curl-8.11.0_4-win64-mingw/docs/INSTALL-CMAKE.md 20.89KB
  83. curl-8.11.0_4-win64-mingw/docs/INSTALL.md 23.97KB
  84. curl-8.11.0_4-win64-mingw/docs/INSTALL.txt 315B
  85. curl-8.11.0_4-win64-mingw/docs/INTERNALS.md 1.76KB
  86. curl-8.11.0_4-win64-mingw/docs/IPFS.md 5.79KB
  87. curl-8.11.0_4-win64-mingw/docs/KNOWN_BUGS.txt 20.93KB
  88. curl-8.11.0_4-win64-mingw/docs/MAIL-ETIQUETTE.md 10.56KB
  89. curl-8.11.0_4-win64-mingw/docs/MANUAL.md 35.46KB
  90. curl-8.11.0_4-win64-mingw/docs/README.md 593B
  91. curl-8.11.0_4-win64-mingw/docs/RELEASE-PROCEDURE.md 3.32KB
  92. curl-8.11.0_4-win64-mingw/docs/RELEASE-TOOLS.md 612B
  93. curl-8.11.0_4-win64-mingw/docs/ROADMAP.md 384B
  94. curl-8.11.0_4-win64-mingw/docs/RUSTLS.md 1.07KB
  95. curl-8.11.0_4-win64-mingw/docs/SECURITY-ADVISORY.md 4.66KB
  96. curl-8.11.0_4-win64-mingw/docs/SPONSORS.md 1.72KB
  97. curl-8.11.0_4-win64-mingw/docs/SSL-PROBLEMS.md 3.86KB
  98. curl-8.11.0_4-win64-mingw/docs/SSLCERTS.md 4.63KB
  99. curl-8.11.0_4-win64-mingw/docs/THANKS.txt 48.36KB
  100. curl-8.11.0_4-win64-mingw/docs/TODO.txt 48.83KB
  101. curl-8.11.0_4-win64-mingw/docs/TheArtOfHttpScripting.md 27.89KB
  102. curl-8.11.0_4-win64-mingw/docs/URL-SYNTAX.md 14.55KB
  103. curl-8.11.0_4-win64-mingw/docs/VERSIONS.md 2.31KB
  104. curl-8.11.0_4-win64-mingw/docs/VULN-DISCLOSURE-POLICY.md 13.24KB
  105. curl-8.11.0_4-win64-mingw/docs/curl-config.md 3.32KB
  106. curl-8.11.0_4-win64-mingw/docs/examples/
  107. curl-8.11.0_4-win64-mingw/docs/examples/10-at-a-time.c 4.32KB
  108. curl-8.11.0_4-win64-mingw/docs/examples/address-scope.c 1.85KB
  109. curl-8.11.0_4-win64-mingw/docs/examples/altsvc.c 1.85KB
  110. curl-8.11.0_4-win64-mingw/docs/examples/anyauthput.c 4.45KB
  111. curl-8.11.0_4-win64-mingw/docs/examples/certinfo.c 2.27KB
  112. curl-8.11.0_4-win64-mingw/docs/examples/chkspeed.c 6.69KB
  113. curl-8.11.0_4-win64-mingw/docs/examples/connect-to.c 2.53KB
  114. curl-8.11.0_4-win64-mingw/docs/examples/cookie_interface.c 3.97KB
  115. curl-8.11.0_4-win64-mingw/docs/examples/debug.c 4.23KB
  116. curl-8.11.0_4-win64-mingw/docs/examples/default-scheme.c 1.82KB
  117. curl-8.11.0_4-win64-mingw/docs/examples/externalsocket.c 4.82KB
  118. curl-8.11.0_4-win64-mingw/docs/examples/fileupload.c 2.79KB
  119. curl-8.11.0_4-win64-mingw/docs/examples/ftp-wildcard.c 4.18KB
  120. curl-8.11.0_4-win64-mingw/docs/examples/ftpget.c 2.61KB
  121. curl-8.11.0_4-win64-mingw/docs/examples/ftpgetinfo.c 2.92KB
  122. curl-8.11.0_4-win64-mingw/docs/examples/ftpgetresp.c 2.54KB
  123. curl-8.11.0_4-win64-mingw/docs/examples/ftpsget.c 2.91KB
  124. curl-8.11.0_4-win64-mingw/docs/examples/ftpupload.c 4.48KB
  125. curl-8.11.0_4-win64-mingw/docs/examples/ftpuploadfrommem.c 3.82KB
  126. curl-8.11.0_4-win64-mingw/docs/examples/ftpuploadresume.c 4.38KB
  127. curl-8.11.0_4-win64-mingw/docs/examples/getinfo.c 1.64KB
  128. curl-8.11.0_4-win64-mingw/docs/examples/getinmemory.c 3.25KB
  129. curl-8.11.0_4-win64-mingw/docs/examples/getredirect.c 2.32KB
  130. curl-8.11.0_4-win64-mingw/docs/examples/getreferrer.c 1.83KB
  131. curl-8.11.0_4-win64-mingw/docs/examples/headerapi.c 2.52KB
  132. curl-8.11.0_4-win64-mingw/docs/examples/hsts-preload.c 3.48KB
  133. curl-8.11.0_4-win64-mingw/docs/examples/http-options.c 1.92KB
  134. curl-8.11.0_4-win64-mingw/docs/examples/http-post.c 2KB
  135. curl-8.11.0_4-win64-mingw/docs/examples/http2-download.c 6.08KB
  136. curl-8.11.0_4-win64-mingw/docs/examples/http2-pushinmemory.c 4.97KB
  137. curl-8.11.0_4-win64-mingw/docs/examples/http2-serverpush.c 7.19KB
  138. curl-8.11.0_4-win64-mingw/docs/examples/http2-upload.c 8.67KB
  139. curl-8.11.0_4-win64-mingw/docs/examples/http3-present.c 1.55KB
  140. curl-8.11.0_4-win64-mingw/docs/examples/http3.c 1.72KB
  141. curl-8.11.0_4-win64-mingw/docs/examples/httpcustomheader.c 2.29KB
  142. curl-8.11.0_4-win64-mingw/docs/examples/httpput-postfields.c 3.45KB
  143. curl-8.11.0_4-win64-mingw/docs/examples/httpput.c 3.6KB
  144. curl-8.11.0_4-win64-mingw/docs/examples/https.c 2.66KB
  145. curl-8.11.0_4-win64-mingw/docs/examples/imap-append.c 3.71KB
  146. curl-8.11.0_4-win64-mingw/docs/examples/imap-authzid.c 2.2KB
  147. curl-8.11.0_4-win64-mingw/docs/examples/imap-copy.c 2.35KB
  148. curl-8.11.0_4-win64-mingw/docs/examples/imap-create.c 2.06KB
  149. curl-8.11.0_4-win64-mingw/docs/examples/imap-delete.c 2.06KB
  150. curl-8.11.0_4-win64-mingw/docs/examples/imap-examine.c 2.11KB
  151. curl-8.11.0_4-win64-mingw/docs/examples/imap-fetch.c 1.95KB
  152. curl-8.11.0_4-win64-mingw/docs/examples/imap-list.c 2.08KB
  153. curl-8.11.0_4-win64-mingw/docs/examples/imap-lsub.c 2.08KB
  154. curl-8.11.0_4-win64-mingw/docs/examples/imap-multi.c 2.31KB
  155. curl-8.11.0_4-win64-mingw/docs/examples/imap-noop.c 2KB
  156. curl-8.11.0_4-win64-mingw/docs/examples/imap-search.c 2.35KB
  157. curl-8.11.0_4-win64-mingw/docs/examples/imap-ssl.c 3.25KB
  158. curl-8.11.0_4-win64-mingw/docs/examples/imap-store.c 2.7KB
  159. curl-8.11.0_4-win64-mingw/docs/examples/imap-tls.c 3.49KB
  160. curl-8.11.0_4-win64-mingw/docs/examples/interface.c 1.72KB
  161. curl-8.11.0_4-win64-mingw/docs/examples/ipv6.c 1.43KB
  162. curl-8.11.0_4-win64-mingw/docs/examples/keepalive.c 1.79KB
  163. curl-8.11.0_4-win64-mingw/docs/examples/localport.c 1.74KB
  164. curl-8.11.0_4-win64-mingw/docs/examples/maxconnects.c 1.98KB
  165. curl-8.11.0_4-win64-mingw/docs/examples/multi-app.c 3.45KB
  166. curl-8.11.0_4-win64-mingw/docs/examples/multi-debugcallback.c 4.14KB
  167. curl-8.11.0_4-win64-mingw/docs/examples/multi-double.c 2.57KB
  168. curl-8.11.0_4-win64-mingw/docs/examples/multi-formadd.c 3.52KB
  169. curl-8.11.0_4-win64-mingw/docs/examples/multi-legacy.c 5.23KB
  170. curl-8.11.0_4-win64-mingw/docs/examples/multi-post.c 3.04KB
  171. curl-8.11.0_4-win64-mingw/docs/examples/multi-single.c 2.2KB
  172. curl-8.11.0_4-win64-mingw/docs/examples/netrc.c 1.52KB
  173. curl-8.11.0_4-win64-mingw/docs/examples/parseurl.c 2.15KB
  174. curl-8.11.0_4-win64-mingw/docs/examples/persistent.c 2.15KB
  175. curl-8.11.0_4-win64-mingw/docs/examples/pop3-authzid.c 2.18KB
  176. curl-8.11.0_4-win64-mingw/docs/examples/pop3-dele.c 2.15KB
  177. curl-8.11.0_4-win64-mingw/docs/examples/pop3-list.c 1.94KB
  178. curl-8.11.0_4-win64-mingw/docs/examples/pop3-multi.c 2.31KB
  179. curl-8.11.0_4-win64-mingw/docs/examples/pop3-noop.c 2.11KB
  180. curl-8.11.0_4-win64-mingw/docs/examples/pop3-retr.c 1.92KB
  181. curl-8.11.0_4-win64-mingw/docs/examples/pop3-ssl.c 3.23KB
  182. curl-8.11.0_4-win64-mingw/docs/examples/pop3-stat.c 2.13KB
  183. curl-8.11.0_4-win64-mingw/docs/examples/pop3-tls.c 3.46KB
  184. curl-8.11.0_4-win64-mingw/docs/examples/pop3-top.c 2.11KB
  185. curl-8.11.0_4-win64-mingw/docs/examples/pop3-uidl.c 2.04KB
  186. curl-8.11.0_4-win64-mingw/docs/examples/post-callback.c 5.17KB
  187. curl-8.11.0_4-win64-mingw/docs/examples/postinmemory.c 3.37KB
  188. curl-8.11.0_4-win64-mingw/docs/examples/postit2-formadd.c 3.8KB
  189. curl-8.11.0_4-win64-mingw/docs/examples/postit2.c 3.42KB
  190. curl-8.11.0_4-win64-mingw/docs/examples/progressfunc.c 3.09KB
  191. curl-8.11.0_4-win64-mingw/docs/examples/protofeats.c 1.58KB
  192. curl-8.11.0_4-win64-mingw/docs/examples/range.c 1.4KB
  193. curl-8.11.0_4-win64-mingw/docs/examples/resolve.c 1.94KB
  194. curl-8.11.0_4-win64-mingw/docs/examples/rtsp-options.c 1.72KB
  195. curl-8.11.0_4-win64-mingw/docs/examples/sendrecv.c 5KB
  196. curl-8.11.0_4-win64-mingw/docs/examples/sepheaders.c 2.67KB
  197. curl-8.11.0_4-win64-mingw/docs/examples/sftpget.c 3.28KB
  198. curl-8.11.0_4-win64-mingw/docs/examples/sftpuploadresume.c 3.84KB
  199. curl-8.11.0_4-win64-mingw/docs/examples/shared-connection-cache.c 2.53KB
  200. curl-8.11.0_4-win64-mingw/docs/examples/simple.c 1.7KB
  201. curl-8.11.0_4-win64-mingw/docs/examples/simplepost.c 1.84KB
  202. curl-8.11.0_4-win64-mingw/docs/examples/simplessl.c 4.74KB
  203. curl-8.11.0_4-win64-mingw/docs/examples/smtp-authzid.c 5.34KB
  204. curl-8.11.0_4-win64-mingw/docs/examples/smtp-expn.c 2.55KB
  205. curl-8.11.0_4-win64-mingw/docs/examples/smtp-mail.c 4.87KB
  206. curl-8.11.0_4-win64-mingw/docs/examples/smtp-mime.c 5.59KB
  207. curl-8.11.0_4-win64-mingw/docs/examples/smtp-multi.c 4.56KB
  208. curl-8.11.0_4-win64-mingw/docs/examples/smtp-ssl.c 5.76KB
  209. curl-8.11.0_4-win64-mingw/docs/examples/smtp-tls.c 6.23KB
  210. curl-8.11.0_4-win64-mingw/docs/examples/smtp-vrfy.c 2.61KB
  211. curl-8.11.0_4-win64-mingw/docs/examples/sslbackend.c 2.31KB
  212. curl-8.11.0_4-win64-mingw/docs/examples/unixsocket.c 1.98KB
  213. curl-8.11.0_4-win64-mingw/docs/examples/url2file.c 2.43KB
  214. curl-8.11.0_4-win64-mingw/docs/examples/urlapi.c 2.13KB
  215. curl-8.11.0_4-win64-mingw/docs/examples/websocket-cb.c 2.15KB
  216. curl-8.11.0_4-win64-mingw/docs/examples/websocket.c 3.46KB
  217. curl-8.11.0_4-win64-mingw/docs/libcurl/
  218. curl-8.11.0_4-win64-mingw/docs/libcurl/opts/
  219. curl-8.11.0_4-win64-mingw/docs/libcurl/symbols-in-versions.txt 46.11KB
  220. curl-8.11.0_4-win64-mingw/docs/mk-ca-bundle.md 3.51KB
  221. curl-8.11.0_4-win64-mingw/docs/options-in-versions.txt 11.71KB
  222. curl-8.11.0_4-win64-mingw/include/
  223. curl-8.11.0_4-win64-mingw/include/brotli/
  224. curl-8.11.0_4-win64-mingw/include/brotli/decode.h 16.49KB
  225. curl-8.11.0_4-win64-mingw/include/brotli/encode.h 19.38KB
  226. curl-8.11.0_4-win64-mingw/include/brotli/port.h 11.17KB
  227. curl-8.11.0_4-win64-mingw/include/brotli/shared_dictionary.h 3.45KB
  228. curl-8.11.0_4-win64-mingw/include/brotli/types.h 2.55KB
  229. curl-8.11.0_4-win64-mingw/include/curl/
  230. curl-8.11.0_4-win64-mingw/include/curl/curl.h 127.12KB
  231. curl-8.11.0_4-win64-mingw/include/curl/curlver.h 2.97KB
  232. curl-8.11.0_4-win64-mingw/include/curl/easy.h 3.92KB
  233. curl-8.11.0_4-win64-mingw/include/curl/header.h 2.84KB
  234. curl-8.11.0_4-win64-mingw/include/curl/mprintf.h 3.01KB
  235. curl-8.11.0_4-win64-mingw/include/curl/multi.h 17.81KB
  236. curl-8.11.0_4-win64-mingw/include/curl/options.h 2.34KB
  237. curl-8.11.0_4-win64-mingw/include/curl/stdcheaders.h 1.33KB
  238. curl-8.11.0_4-win64-mingw/include/curl/system.h 18.27KB
  239. curl-8.11.0_4-win64-mingw/include/curl/typecheck-gcc.h 42.61KB
  240. curl-8.11.0_4-win64-mingw/include/curl/urlapi.h 5.67KB
  241. curl-8.11.0_4-win64-mingw/include/curl/websockets.h 2.68KB
  242. curl-8.11.0_4-win64-mingw/include/libpsl.h 5.66KB
  243. curl-8.11.0_4-win64-mingw/include/libssh2.h 59.24KB
  244. curl-8.11.0_4-win64-mingw/include/libssh2_publickey.h 4.83KB
  245. curl-8.11.0_4-win64-mingw/include/libssh2_sftp.h 16.96KB
  246. curl-8.11.0_4-win64-mingw/include/nghttp2/
  247. curl-8.11.0_4-win64-mingw/include/nghttp2/nghttp2.h 244.01KB
  248. curl-8.11.0_4-win64-mingw/include/nghttp2/nghttp2ver.h 1.57KB
  249. curl-8.11.0_4-win64-mingw/include/nghttp3/
  250. curl-8.11.0_4-win64-mingw/include/nghttp3/nghttp3.h 91.65KB
  251. curl-8.11.0_4-win64-mingw/include/nghttp3/version.h 1.62KB
  252. curl-8.11.0_4-win64-mingw/include/ngtcp2/
  253. curl-8.11.0_4-win64-mingw/include/ngtcp2/ngtcp2.h 196.04KB
  254. curl-8.11.0_4-win64-mingw/include/ngtcp2/ngtcp2_crypto.h 35.58KB
  255. curl-8.11.0_4-win64-mingw/include/ngtcp2/ngtcp2_crypto_quictls.h 4.67KB
  256. curl-8.11.0_4-win64-mingw/include/ngtcp2/version.h 1.62KB
  257. curl-8.11.0_4-win64-mingw/include/openssl/
  258. curl-8.11.0_4-win64-mingw/include/openssl/aes.h 4.9KB
  259. curl-8.11.0_4-win64-mingw/include/openssl/asn1.h 42.15KB
  260. curl-8.11.0_4-win64-mingw/include/openssl/asn1t.h 27.06KB
  261. curl-8.11.0_4-win64-mingw/include/openssl/bio.h 29.35KB
  262. curl-8.11.0_4-win64-mingw/include/openssl/blowfish.h 4.51KB
  263. curl-8.11.0_4-win64-mingw/include/openssl/bn.h 20.61KB
  264. curl-8.11.0_4-win64-mingw/include/openssl/buffer.h 4.01KB
  265. curl-8.11.0_4-win64-mingw/include/openssl/camellia.h 4.71KB
  266. curl-8.11.0_4-win64-mingw/include/openssl/cast.h 4.31KB
  267. curl-8.11.0_4-win64-mingw/include/openssl/chacha.h 1.88KB
  268. curl-8.11.0_4-win64-mingw/include/openssl/cmac.h 3.17KB
  269. curl-8.11.0_4-win64-mingw/include/openssl/cms.h 25.91KB
  270. curl-8.11.0_4-win64-mingw/include/openssl/comp.h 169B
  271. curl-8.11.0_4-win64-mingw/include/openssl/conf.h 6.94KB
  272. curl-8.11.0_4-win64-mingw/include/openssl/crypto.h 17.98KB
  273. curl-8.11.0_4-win64-mingw/include/openssl/ct.h 20.03KB
  274. curl-8.11.0_4-win64-mingw/include/openssl/curve25519.h 3.31KB
  275. curl-8.11.0_4-win64-mingw/include/openssl/des.h 9.4KB
  276. curl-8.11.0_4-win64-mingw/include/openssl/dh.h 9.09KB
  277. curl-8.11.0_4-win64-mingw/include/openssl/dsa.h 10.39KB
  278. curl-8.11.0_4-win64-mingw/include/openssl/dtls1.h 3.77KB
  279. curl-8.11.0_4-win64-mingw/include/openssl/ec.h 29.08KB
  280. curl-8.11.0_4-win64-mingw/include/openssl/ecdh.h 109B
  281. curl-8.11.0_4-win64-mingw/include/openssl/ecdsa.h 110B
  282. curl-8.11.0_4-win64-mingw/include/openssl/engine.h 8.38KB
  283. curl-8.11.0_4-win64-mingw/include/openssl/err.h 17.46KB
  284. curl-8.11.0_4-win64-mingw/include/openssl/evp.h 49.79KB
  285. curl-8.11.0_4-win64-mingw/include/openssl/hkdf.h 2.42KB
  286. curl-8.11.0_4-win64-mingw/include/openssl/hmac.h 4.48KB
  287. curl-8.11.0_4-win64-mingw/include/openssl/idea.h 4.27KB
  288. curl-8.11.0_4-win64-mingw/include/openssl/kdf.h 5.83KB
  289. curl-8.11.0_4-win64-mingw/include/openssl/lhash.h 7.15KB
  290. curl-8.11.0_4-win64-mingw/include/openssl/md4.h 4.31KB
  291. curl-8.11.0_4-win64-mingw/include/openssl/md5.h 4.31KB
  292. curl-8.11.0_4-win64-mingw/include/openssl/modes.h 4.48KB
  293. curl-8.11.0_4-win64-mingw/include/openssl/obj_mac.h 154.86KB
  294. curl-8.11.0_4-win64-mingw/include/openssl/objects.h 5.17KB
  295. curl-8.11.0_4-win64-mingw/include/openssl/ocsp.h 20.24KB
  296. curl-8.11.0_4-win64-mingw/include/openssl/opensslconf.h 4.16KB
  297. curl-8.11.0_4-win64-mingw/include/openssl/opensslfeatures.h 4.43KB
  298. curl-8.11.0_4-win64-mingw/include/openssl/opensslv.h 626B
  299. curl-8.11.0_4-win64-mingw/include/openssl/ossl_typ.h 7.05KB
  300. curl-8.11.0_4-win64-mingw/include/openssl/pem.h 19.07KB
  301. curl-8.11.0_4-win64-mingw/include/openssl/pkcs12.h 10.34KB
  302. curl-8.11.0_4-win64-mingw/include/openssl/pkcs7.h 20.01KB
  303. curl-8.11.0_4-win64-mingw/include/openssl/poly1305.h 1.5KB
  304. curl-8.11.0_4-win64-mingw/include/openssl/posix_time.h 1.96KB
  305. curl-8.11.0_4-win64-mingw/include/openssl/rand.h 4.7KB
  306. curl-8.11.0_4-win64-mingw/include/openssl/rc2.h 4.21KB
  307. curl-8.11.0_4-win64-mingw/include/openssl/rc4.h 3.63KB
  308. curl-8.11.0_4-win64-mingw/include/openssl/ripemd.h 4.4KB
  309. curl-8.11.0_4-win64-mingw/include/openssl/rsa.h 24.42KB
  310. curl-8.11.0_4-win64-mingw/include/openssl/safestack.h 117.46KB
  311. curl-8.11.0_4-win64-mingw/include/openssl/sha.h 7.21KB
  312. curl-8.11.0_4-win64-mingw/include/openssl/sm3.h 1.43KB
  313. curl-8.11.0_4-win64-mingw/include/openssl/sm4.h 1.42KB
  314. curl-8.11.0_4-win64-mingw/include/openssl/srtp.h 6.59KB
  315. curl-8.11.0_4-win64-mingw/include/openssl/ssl.h 96.23KB
  316. curl-8.11.0_4-win64-mingw/include/openssl/ssl3.h 18.63KB
  317. curl-8.11.0_4-win64-mingw/include/openssl/stack.h 4.17KB
  318. curl-8.11.0_4-win64-mingw/include/openssl/tls1.h 35.97KB
  319. curl-8.11.0_4-win64-mingw/include/openssl/ts.h 25.11KB
  320. curl-8.11.0_4-win64-mingw/include/openssl/txt_db.h 4.41KB
  321. curl-8.11.0_4-win64-mingw/include/openssl/ui.h 16.15KB
  322. curl-8.11.0_4-win64-mingw/include/openssl/x509.h 40.61KB
  323. curl-8.11.0_4-win64-mingw/include/openssl/x509_vfy.h 19.36KB
  324. curl-8.11.0_4-win64-mingw/include/openssl/x509v3.h 36.64KB
  325. curl-8.11.0_4-win64-mingw/include/zconf.h 16.16KB
  326. curl-8.11.0_4-win64-mingw/include/zdict.h 25.81KB
  327. curl-8.11.0_4-win64-mingw/include/zlib.h 94.56KB
  328. curl-8.11.0_4-win64-mingw/include/zstd.h 171.72KB
  329. curl-8.11.0_4-win64-mingw/include/zstd_errors.h 4.43KB
  330. curl-8.11.0_4-win64-mingw/lib/
  331. curl-8.11.0_4-win64-mingw/lib/libbrotlicommon.a 131.73KB
  332. curl-8.11.0_4-win64-mingw/lib/libbrotlidec.a 56.18KB
  333. curl-8.11.0_4-win64-mingw/lib/libcrypto.a 3.26MB
  334. curl-8.11.0_4-win64-mingw/lib/libcurl.a 1.62MB
  335. curl-8.11.0_4-win64-mingw/lib/libcurl.dll.a 20.43KB
  336. curl-8.11.0_4-win64-mingw/lib/libnghttp2.a 308.36KB
  337. curl-8.11.0_4-win64-mingw/lib/libnghttp3.a 254.57KB
  338. curl-8.11.0_4-win64-mingw/lib/libngtcp2.a 461.55KB
  339. curl-8.11.0_4-win64-mingw/lib/libngtcp2_crypto_quictls.a 44.5KB
  340. curl-8.11.0_4-win64-mingw/lib/libpsl.a 67.45KB
  341. curl-8.11.0_4-win64-mingw/lib/libssh2.a 439.95KB
  342. curl-8.11.0_4-win64-mingw/lib/libssl.a 685.22KB
  343. curl-8.11.0_4-win64-mingw/lib/libz.a 122.71KB
  344. curl-8.11.0_4-win64-mingw/lib/libzstd.a 841.5KB
  345. curl-8.11.0_4-win64-mingw/mk-ca-bundle.pl 23.68KB
0评论
提交 加载更多评论
其他资源 PY32F403x_100pin_StartKit_V1.1.zip
PY32F403x_100pin_StartKit_V1.1.zip
0987654321987654329876543
0987654321987654329876543
Vue+d3对图数据库进行血缘分析
本demo在Vue框架下,采用d3第三方库,对数据进行血缘分析,形成数据血缘分析图
ARM64架构(AGX orin)Ubuntu22.04下串口PL2303驱动安装教程
ARM64架构(AGX orin)Ubuntu22.04下串口PL2303驱动安装教程
k8s-for-docker-desktop-master.zip
k8s-for-docker-desktop-master.zip
NXP官方的u-boot 5.4启动文件
NXP官方的u-boot 5.4启动文件
java 内存分析工具(MAT)
受不了免费工具还要积分下载,直接一手0积分上传
bisai.zip1456789
bisai.zip1456789