Home
last modified time | relevance | path

Searched full:patch (Results 1 - 25 of 3308) sorted by relevance

12345678910>>...133

/third_party/glib/
H A Dpatch.tar.gz
H A Dbackport-patch.log1 Patch6000: backport-add-version-macros-for-GLib-2.74.patch
2 Patch6001: backport-gtype-Add-G_TYPE_FLAG_NONE.patch
3 Patch6002: backport-gioenums-Add-G_TLS_CERTIFICATE_FLAGS_NONE.patch
4 Patch6003: backport-gtestutils-Add-G_TEST_SUBPROCESS_DEFAULT.patch
5 Patch6004: backport-gsignal-Add-G_CONNECT_DEFAULT.patch
6 Patch6005: backport-giomodule-test-Dont-pass-a-magic-number-to-g_test_trap_subprocess.patch
7 Patch6006: backport-giochannel-Add-G_IO_FLAG_NONE.patch
8 Patch6007: backport-gmarkup-Add-G_MARKUP_PARSE_FLAGS_NONE.patch
9 Patch6008: backport-gregex-Add-G_REGEX_DEFAULT-G_REGEX_MATCH_DEFAULT.patch
10 Patch6009: backport-replace-pcre1-with-pcre2.patch
[all...]
H A Dglib2.spec9 Patch6000: backport-add-version-macros-for-GLib-2.74.patch
10 Patch6001: backport-gtype-Add-G_TYPE_FLAG_NONE.patch
11 Patch6002: backport-gioenums-Add-G_TLS_CERTIFICATE_FLAGS_NONE.patch
12 Patch6003: backport-gtestutils-Add-G_TEST_SUBPROCESS_DEFAULT.patch
13 Patch6004: backport-gsignal-Add-G_CONNECT_DEFAULT.patch
14 Patch6005: backport-giomodule-test-Dont-pass-a-magic-number-to-g_test_trap_subprocess.patch
15 Patch6006: backport-giochannel-Add-G_IO_FLAG_NONE.patch
16 Patch6007: backport-gmarkup-Add-G_MARKUP_PARSE_FLAGS_NONE.patch
17 Patch6008: backport-gregex-Add-G_REGEX_DEFAULT-G_REGEX_MATCH_DEFAULT.patch
18 Patch6009: backport-replace-pcre1-with-pcre2.patch
[all...]
/third_party/json/tests/src/
H A Dunit-json_patch.cpp20 TEST_CASE("JSON patch")
48 CHECK_NOTHROW(doc1.patch(patch1));
57 CHECK(doc1.patch(patch1) == doc1_ans);
63 CHECK_THROWS_WITH_AS(doc2.patch(patch1), "[json.exception.out_of_range.403] key 'a' not found", json::out_of_range&);
70 CHECK_THROWS_WITH_AS(doc3.patch(patch2), "[json.exception.out_of_range.403] (/a) key 'b' not found", json::out_of_range&);
72 CHECK_THROWS_WITH_AS(doc3.patch(patch2), "[json.exception.out_of_range.403] key 'b' not found", json::out_of_range&);
81 json patch = {{{"op", "remove"}, {"path", "/1"}}}; variable
82 CHECK(doc.patch(patch) == json({1, 3, 4}));
92 // A JSON Patch documen
93 json patch = R"( global() variable
122 json patch = R"( global() variable
151 json patch = R"( global() variable
177 json patch = R"( global() variable
206 json patch = R"( global() variable
242 json patch = R"( global() variable
276 json patch = R"( global() variable
305 json patch = R"( global() variable
326 json patch = R"( global() variable
349 json patch = R"( global() variable
381 json patch = R"( global() variable
409 json patch = R"( global() variable
438 json patch = R"( global() variable
469 json patch = R"( global() variable
492 json patch = R"( global() variable
525 json patch = R"( global() variable
551 json patch = R"( global() variable
584 json patch = R"( global() variable
614 json patch = {{{"op", "replace"}, {"path", ""}, {"value", 1}}}; global() variable
669 json patch = {{"op", "add"}, {"path", ""}, {"value", 1}}; global() variable
676 json patch = {"op", "add", "path", "", "value", 1}; global() variable
687 json patch = {{{"foo", "bar"}}}; global() variable
698 json patch = {{{"op", 1}}}; global() variable
709 json patch = {{{"op", "foo"}, {"path", ""}}}; global() variable
723 json patch = {{{"op", "add"}}}; global() variable
734 json patch = {{{"op", "add"}, {"path", 1}}}; global() variable
745 json patch = {{{"op", "add"}, {"path", ""}}}; global() variable
756 json patch = {{{"op", "add"}, {"path", "/4"}, {"value", 4}}}; global() variable
766 json patch = {{{"op", "remove"}}}; global() variable
777 json patch = {{{"op", "remove"}, {"path", 1}}}; global() variable
788 json patch = {{{"op", "remove"}, {"path", "/17"}}}; global() variable
795 json patch = {{{"op", "remove"}, {"path", "/baz"}}}; global() variable
802 json patch = {{{"op", "remove"}, {"path", ""}}}; global() variable
812 json patch = {{{"op", "replace"}}}; global() variable
823 json patch = {{{"op", "replace"}, {"path", 1}}}; global() variable
834 json patch = {{{"op", "replace"}, {"path", ""}}}; global() variable
845 json patch = {{{"op", "replace"}, {"path", "/17"}, {"value", 19}}}; global() variable
852 json patch = {{{"op", "replace"}, {"path", "/baz"}, {"value", 3}}}; global() variable
862 json patch = {{{"op", "move"}}}; global() variable
873 json patch = {{{"op", "move"}, {"path", 1}}}; global() variable
884 json patch = {{{"op", "move"}, {"path", ""}}}; global() variable
896 json patch = {{{"op", "move"}, {"path", ""}, {"from", 1}}}; global() variable
908 json patch = {{{"op", "move"}, {"path", "/0"}, {"from", "/5"}}}; global() variable
915 json patch = {{{"op", "move"}, {"path", "/baz"}, {"from", "/baz"}}}; global() variable
925 json patch = {{{"op", "copy"}}}; global() variable
936 json patch = {{{"op", "copy"}, {"path", 1}}}; global() variable
947 json patch = {{{"op", "copy"}, {"path", ""}}}; global() variable
958 json patch = {{{"op", "copy"}, {"path", ""}, {"from", 1}}}; global() variable
969 json patch = {{{"op", "copy"}, {"path", "/0"}, {"from", "/5"}}}; global() variable
976 json patch = {{{"op", "copy"}, {"path", "/fob"}, {"from", "/baz"}}}; global() variable
986 json patch = {{{"op", "test"}}}; global() variable
997 json patch = {{{"op", "test"}, {"path", 1}}}; global() variable
1008 json patch = {{{"op", "test"}, {"path", ""}}}; global() variable
1031 json patch = R"( global() variable
1069 json patch = R"( global() variable
1096 json patch = R"( global() variable
1117 json patch = R"( global() variable
1143 json patch = R"( global() variable
1172 json patch = R"( global() variable
1198 json patch = R"( global() variable
1306 const auto& patch = test["patch"]; global() variable
[all...]
H A Dunit-merge_patch.cpp17 TEST_CASE("JSON Merge Patch")
31 json patch = R"({ variable
45 document.merge_patch(patch);
64 json patch = R"({ variable
87 document.merge_patch(patch);
96 json patch = R"({"a":"c"})"_json; variable
99 original.merge_patch(patch);
106 json patch = R"({"b":"c"})"_json; variable
109 original.merge_patch(patch);
116 json patch variable
126 json patch = R"({"a":null})"_json; global() variable
136 json patch = R"({"a":"c"})"_json; global() variable
146 json patch = R"({"a":["b"]})"_json; global() variable
156 json patch = R"({"a":{"b":"d","c":null}})"_json; global() variable
166 json patch = R"({"a":[1]})"_json; global() variable
176 json patch = R"(["c","d"])"_json; global() variable
186 json patch = R"(["c"])"_json; global() variable
196 json patch = R"(null)"_json; global() variable
206 json patch = R"("bar")"_json; global() variable
216 json patch = R"({"a":1})"_json; global() variable
226 json patch = R"({"a":"b","c":null})"_json; global() variable
236 json patch = R"({"a":{"bb":{"ccc":null}}})"_json; global() variable
[all...]
/third_party/libxml2/
H A Dinstall.py41 patch_cmd = ['patch', '-p1', "--fuzz=0", "--no-backup-if-mismatch", '-i', patch_file, '-d', target_dir]
51 "Fix-memleaks-in-xmlXIncludeProcessFlags.patch",
52 "backport-parser-Fix-potential-memory-leak-in-xmlParseAttValue.patch",
53 "Fix-memory-leaks-for-xmlACatalogAdd.patch",
54 "Fix-memory-leaks-in-xmlACatalogAdd-when-xmlHashAddEntry-failed.patch",
55 "backport-CVE-2022-40303-Fix-integer-overflows-with-XML_PARSE_.patch",
56 "backport-CVE-2022-40304-Fix-dict-corruption-caused-by-entity-.patch",
57 "backport-schemas-Fix-null-pointer-deref-in-xmlSchemaCheckCOSS.patch",
58 "libxml2-multilib.patch",
59 "Fix-CVE-2023-25062.patch",
[all...]
H A Dlibxml2.spec9 Patch0: libxml2-multilib.patch
10 Patch1: Fix-memleaks-in-xmlXIncludeProcessFlags.patch
11 Patch2: Fix-memory-leaks-for-xmlACatalogAdd.patch
12 Patch3: Fix-memory-leaks-in-xmlACatalogAdd-when-xmlHashAddEntry-failed.patch
13 Patch4: backport-CVE-2022-40303-Fix-integer-overflows-with-XML_PARSE_.patch
14 Patch5: backport-CVE-2022-40304-Fix-dict-corruption-caused-by-entity-.patch
15 Patch6: backport-schemas-Fix-null-pointer-deref-in-xmlSchemaCheckCOSS.patch
16 Patch7: backport-parser-Fix-potential-memory-leak-in-xmlParseAttValue.patch
18 Patch6000: backport-Add-whitespace-folding-for-some-atomic-data-types-th.patch
19 Patch6001: backport-Properly-fold-whitespace-around-the-QName-value-when.patch
[all...]
/third_party/e2fsprogs/
H A Dinstall.sh19 patch -p1 < $1/0001-e2fsprogs-set-hugefile-from-4T-to-1T-in-hugefile-tes.patch --fuzz=0 --no-backup-if-mismatch
20 patch -p1 < $1/0002-libss-add-newer-libreadline.so.8-to-dlopen-path.patch --fuzz=0 --no-backup-if-mismatch
21 patch -p1 < $1/0003-tests-update-expect-files-for-f_mmp_garbage.patch --fuzz=0 --no-backup-if-mismatch
22 patch -p1 < $1/0004-tests-update-expect-files-for-f_large_dir-and-f_larg.patch --fuzz=0 --no-backup-if-mismatch
23 patch -p1 < $1/0005-resize2fs-resize2fs-disk-hardlinks-will-be-error.patch
[all...]
/third_party/mindspore/
H A Dbuild_helper.py37 '0001-build-gn-c-api-for-OHOS.patch',
38 '0002-train-and-build.patch',
39 '0003-add-js-api.patch',
40 '0004-cross-compile-ndkso-fp16-nnrt-train_capi.patch',
41 '0005-micro-for-ohos.patch',
42 '0006-remove-lite-expression-fix-double-loadso.patch',
43 '0007-deobfuscator.patch',
44 '0008-upgrade-flatbuffers-fix_crash.patch',
45 '0009-npu-zero-copy.patch',
46 '0010-micro-dynamic-shape-support-discrete-value.patch',
[all...]
/third_party/node/deps/brotli/c/include/brotli/
H A Dport.h28 #define BROTLI_GNUC_VERSION_CHECK(major, minor, patch) \
29 (BROTLI_GNUC_VERSION >= BROTLI_MAKE_VERSION(major, minor, patch))
31 #define BROTLI_GNUC_VERSION_CHECK(major, minor, patch) (0)
50 #define BROTLI_MSVC_VERSION_CHECK(major, minor, patch) (0)
52 #define BROTLI_MSVC_VERSION_CHECK(major, minor, patch) \
53 (_MSC_FULL_VER >= ((major * 10000000) + (minor * 100000) + (patch)))
55 #define BROTLI_MSVC_VERSION_CHECK(major, minor, patch) \
56 (_MSC_FULL_VER >= ((major * 1000000) + (minor * 10000) + (patch)))
58 #define BROTLI_MSVC_VERSION_CHECK(major, minor, patch) \
73 #define BROTLI_INTEL_VERSION_CHECK(major, minor, patch) \
[all...]
/third_party/skia/third_party/externals/brotli/c/include/brotli/
H A Dport.h28 #define BROTLI_GNUC_VERSION_CHECK(major, minor, patch) \
29 (BROTLI_GNUC_VERSION >= BROTLI_MAKE_VERSION(major, minor, patch))
31 #define BROTLI_GNUC_VERSION_CHECK(major, minor, patch) (0)
50 #define BROTLI_MSVC_VERSION_CHECK(major, minor, patch) (0)
52 #define BROTLI_MSVC_VERSION_CHECK(major, minor, patch) \
53 (_MSC_FULL_VER >= ((major * 10000000) + (minor * 100000) + (patch)))
55 #define BROTLI_MSVC_VERSION_CHECK(major, minor, patch) \
56 (_MSC_FULL_VER >= ((major * 1000000) + (minor * 10000) + (patch)))
58 #define BROTLI_MSVC_VERSION_CHECK(major, minor, patch) \
73 #define BROTLI_INTEL_VERSION_CHECK(major, minor, patch) \
[all...]
/third_party/python/Lib/unittest/test/testmock/
H A Dtestpatch.py16 MagicMock, Mock, NonCallableMagicMock, patch, _patch,
101 @patch.object(Something, 'attribute', sentinel.Patched)
107 "patch not restored")
112 patch.object('Something', 'do_something')
118 @patch.object(Something, 'attribute', None)
124 "patch not restored")
132 @patch.object(Something, 'attribute', sentinel.Patched)
133 @patch.object(Something, 'next_attribute', sentinel.Patched2)
142 "patch not restored")
144 "patch no
[all...]
H A Dtestwith.py5 from unittest.mock import MagicMock, Mock, patch, sentinel, mock_open, call namespace
19 with patch('%s.something' % __name__, sentinel.Something2):
26 with patch('%s.something' % __name__, sentinel.Something2):
33 with patch('%s.something' % __name__) as mock_something:
44 with patch.object(Foo, 'something'):
51 with patch('%s.something' % __name__) as mock_something, patch('%s.something_else' % __name__) as mock_something_else:
61 with patch('%s.something' % __name__, sentinel.Patched) as mock_something:
63 self.assertEqual(mock_something, sentinel.Patched, "wrong patch")
90 with patch('
[all...]
/third_party/cJSON/tests/json-patch-tests/
H A Dtests.json4 "patch": [],
7 { "comment": "empty patch list",
9 "patch": [],
14 "patch": [],
19 "patch": [],
24 "patch": [],
29 "patch": [{"op": "add", "path": "/foo", "value":1}],
34 "patch": [{"op": "add", "path": "/0", "value": "foo"}],
39 "patch": [],
44 "patch"
[all...]
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_patch_parser_test/
H A Dbms_patch_parser_test.cpp47 "type" : "patch",
140 * @tc.name: parse patch package by patch.json
167 * @tc.name: parse patch package by patch.json
170 * 2. test parse patch failed when bundleName does not exist in the patch.json
179 * @tc.name: parse patch package by patch.json
182 * 2. test parse patch faile
[all...]
/third_party/lwip/
H A Dlwip.spec12 Patch6001: backport-tcp-fix-sequence-number-comparison.patch
13 Patch6002: backport-tcp-tighten-up-checks-for-received-SYN.patch
15 Patch9000: 0001-add-makefile.patch
16 Patch9001: 0002-adapt-lstack.patch
17 Patch9002: 0003-fix-the-occasional-coredump-when-the-lwip-exits.patch
18 Patch9003: 0004-fix-error-of-deleting-conn-table-in-connect.patch
19 Patch9004: 0005-syn-rcvd-state-reg-conn-into-conntable.patch
20 Patch9005: 0006-fix-coredump-in-etharp.patch
21 Patch9006: 0007-gazelle-fix-epoll_ctl-EPOLLET-mode-error.patch
22 Patch9007: 0008-gazelle-fix-lwip_accept-memcpy-sockaddr-large.patch
[all...]
/third_party/cups/
H A Dinstall.py42 "ohos_ip_conflict.patch",
43 "backport-CVE-2022-26691.patch",
44 "backport-CVE-2023-32324.patch",
45 "backport-CVE-2023-34241.patch",
46 "ohos-multi-file-print.patch",
47 "ohos-modify-pthread.patch",
48 "ohos-add-openssl.patch",
49 "backport-CVE-2023-4504.patch",
50 "backport-CVE-2024-35235.patch",
51 "ohos-usb-manager.patch",
[all...]
/third_party/json/include/nlohmann/thirdparty/hedley/
H A Dhedley.hpp85 #define JSON_HEDLEY_GNUC_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_GNUC_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch))
87 #define JSON_HEDLEY_GNUC_VERSION_CHECK(major,minor,patch) (0)
105 #define JSON_HEDLEY_MSVC_VERSION_CHECK(major,minor,patch) (0)
107 #define JSON_HEDLEY_MSVC_VERSION_CHECK(major,minor,patch) (_MSC_FULL_VER >= ((major * 10000000) + (minor * 100000) + (patch)))
109 #define JSON_HEDLEY_MSVC_VERSION_CHECK(major,minor,patch) (_MSC_FULL_VER >= ((major * 1000000) + (minor * 10000) + (patch)))
111 #define JSON_HEDLEY_MSVC_VERSION_CHECK(major,minor,patch) (_MSC_VER >= ((major * 100) + (minor)))
127 #define JSON_HEDLEY_INTEL_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_INTEL_VERSIO
[all...]
/third_party/openssl/test/testutil/
H A Dprovider.c69 int major, minor, patch; member
89 || sscanf(vs, "%d.%d.%d", &vers->major, &vers->minor, &vers->patch) != 3) in fips_provider_version()
99 int fips_provider_version_eq(OSSL_LIB_CTX *libctx, int major, int minor, int patch) in fips_provider_version_eq() argument
106 return major == prov.major && minor == prov.minor && patch == prov.patch; in fips_provider_version_eq()
109 int fips_provider_version_ne(OSSL_LIB_CTX *libctx, int major, int minor, int patch) in fips_provider_version_ne() argument
116 return major != prov.major || minor != prov.minor || patch != prov.patch; in fips_provider_version_ne()
119 int fips_provider_version_le(OSSL_LIB_CTX *libctx, int major, int minor, int patch) in fips_provider_version_le() argument
129 || (prov.minor == minor && prov.patch < in fips_provider_version_le()
132 fips_provider_version_lt(OSSL_LIB_CTX *libctx, int major, int minor, int patch) fips_provider_version_lt() argument
145 fips_provider_version_gt(OSSL_LIB_CTX *libctx, int major, int minor, int patch) fips_provider_version_gt() argument
158 fips_provider_version_ge(OSSL_LIB_CTX *libctx, int major, int minor, int patch) fips_provider_version_ge() argument
174 int major, minor, patch, r; fips_provider_version_match() local
[all...]
/third_party/skia/site/docs/dev/contrib/
H A Dpatch.md7 externally-submitted patch, this is how to do it. (This technique is useful in
8 other situations too, like if you just want to try out somebody else's patch
14 patch into your local checkout: https://codereview.appspot.com/6201055/
16 there is no standard Windows "patch" tool.
19 (http://dev.chromium.org/developers/contributing-code#TOC-Instructions-for-Reviewer:-Checking-in-the-patch-for-a-non-committer).
24 git cl patch 6201055
29 1. Prepare your local workspace to accept the patch.
32 want to apply the patch.
34 enough" for your purposes). If the codereview patch was against an old
38 2. Download the raw patch se
[all...]
/third_party/python/Lib/test/
H A Dtest_getpass.py17 @mock.patch('os.environ')
42 with mock.patch('os.getuid') as uid, \
43 mock.patch('pwd.getpwuid') as getpw:
65 with mock.patch('sys.stderr') as stderr:
69 @mock.patch('sys.stdin')
75 @mock.patch('sys.stdin')
101 with mock.patch('os.open') as open, \
102 mock.patch('io.FileIO') as fileio, \
103 mock.patch('io.TextIOWrapper') as textio:
115 with mock.patch('o
[all...]
/third_party/json/docs/mkdocs/docs/api/basic_json/
H A Dpatch_inplace.md7 [JSON Patch](http://jsonpatch.com) defines a JSON document structure for expressing a sequence of operations to apply to
8 a JSON document. With this function, a JSON Patch is applied to the current JSON value by executing all operations from
9 the patch. This function applies a JSON patch in place and returns void.
14 : JSON patch document
18 No guarantees, value may be corrupted by an unsuccessful patch operation.
22 - Throws [`parse_error.104`](../../home/exceptions.md#jsonexceptionparse_error104) if the JSON patch does not consist of
24 - Throws [`parse_error.105`](../../home/exceptions.md#jsonexceptionparse_error105) if the JSON patch is malformed (e.g.,
27 - Throws [`out_of_range.403`](../../home/exceptions.md#jsonexceptionout_of_range403) if a JSON pointer inside the patch
36 Linear in the size of the JSON value and the length of the JSON patch
[all...]
H A Dpatch.md1 # <small>nlohmann::basic_json::</small>patch
4 basic_json patch(const basic_json& json_patch) const;
7 [JSON Patch](http://jsonpatch.com) defines a JSON document structure for expressing a sequence of operations to apply to
8 a JSON document. With this function, a JSON Patch is applied to the current JSON value by executing all operations from
9 the patch.
14 : JSON patch document
26 - Throws [`parse_error.104`](../../home/exceptions.md#jsonexceptionparse_error104) if the JSON patch does not consist of
28 - Throws [`parse_error.105`](../../home/exceptions.md#jsonexceptionparse_error105) if the JSON patch is malformed (e.g.,
31 - Throws [`out_of_range.403`](../../home/exceptions.md#jsonexceptionout_of_range403) if a JSON pointer inside the patch
40 Linear in the size of the JSON value and the length of the JSON patch
[all...]
/base/update/updater/services/diffpatch/patch/
H A Dupdate_patch.cpp16 #include "patch/update_patch.h"
36 PATCH_LOGE("ApplyImagePatch : Failed to create patch writer"); in ApplyImagePatch()
41 PATCH_LOGE("ApplyImagePatch : Failed to init patch writer"); in ApplyImagePatch()
46 PATCH_LOGE("ApplyImagePatch : Failed to apply image patch"); in ApplyImagePatch()
59 PATCH_LOGE("patch too short to contain header "); in PreCheck()
62 if (memcmp(param.patch, PKGDIFF_MAGIC, std::char_traits<char>::length(PKGDIFF_MAGIC)) != 0) { in PreCheck()
63 PATCH_LOGE("corrupt patch file header (magic number) "); in PreCheck()
76 int32_t numChunks = ImagePatch::ReadLE<int32_t>(param.patch + offset); in ApplyImagePatch()
86 int32_t type = ImagePatch::ReadLE<int32_t>(param.patch + offset); in ApplyImagePatch()
107 PATCH_LOGE("Failed to creareimg patch "); in ApplyImagePatch()
122 std::unique_ptr<BlocksBufferPatch> patch = std::make_unique<BlocksBufferPatch>(patchInfo, oldInfo, newData); ApplyBlockPatch() local
148 std::unique_ptr<BlocksStreamPatch> patch = std::make_unique<BlocksStreamPatch>(patchInfo, stream, writer); ApplyBlockPatch() local
194 std::unique_ptr<BlocksStreamPatch> patch = std::make_unique<BlocksStreamPatch>(patchInfo, ApplyBlockPatch() local
215 std::unique_ptr<BlocksStreamPatch> patch = std::make_unique<BlocksStreamPatch>(patchInfo, stream, writer); ApplyBlockPatch() local
[all...]
/third_party/cares/
H A Dinstall.sh35 "0000-Use-RPM-compiler-options.patch"
36 "backport-disable-live-tests.patch"
37 "backport-add-str-len-check-in-config_sortlist-to-avoid-stack-overflow.patch"
38 "backport-CVE-2023-32067.patch"
39 "backport-001-CVE-2023-31130.patch"
40 "backport-002-CVE-2023-31130.patch"
41 "backport-003-CVE-2023-31130.patch"
42 "backport-001-CVE-2023-31147.patch"
43 "backport-002-CVE-2023-31124_CVE-2023-31147.patch"
44 "backport-003-CVE-2023-31147.patch"
[all...]

Completed in 10 milliseconds

12345678910>>...133