repo
stringclasses
15 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
64.3k
files
listlengths
1
300
timestamp
timestamp[s]date
2013-03-13 20:45:00
2026-04-11 07:48:46
nodejs/node
53c5bf546e8e52db5b11287ab3bf1375819b369b
4d893e093a539518a201e4a4f40adc26b8bbf74e
http2: refactor error handling This changes the error handling model of ServerHttp2Stream, ServerHttp2Request and ServerHttp2Response. An 'error' emitted on ServerHttp2Stream will not go to 'uncaughtException' anymore, but to the server 'streamError'. On the stream 'error', ServerHttp2Request will emit 'abort', while ...
[ { "path": "doc/api/http2.md", "patch": "@@ -1118,6 +1118,8 @@ added: v8.4.0\n * `headers` {[Headers Object][]}\n * `options` {Object}\n * `statCheck` {Function}\n+ * `onError` {Function} Callback function invoked in the case of an\n+ Error before send\n * `getTrailers` {Function} Callback function i...
2017-08-23T16:29:49
golang/go
f0cea848679b8f8cdc5f76e1b1e36ebb924a68f8
f81aa23cf04f2be5fd2159e855e185b2d75ba503
encoding/asn1: sort order of 'SET of' components during Marshal Per X690 Section 11.6 sort the order of SET of components when generating DER. This CL makes no changes to Unmarshal, meaning unordered components will still be accepted, and won't be re-ordered during parsing. In order to sort the components a new encod...
[ { "path": "src/encoding/asn1/marshal.go", "patch": "@@ -5,10 +5,12 @@\n package asn1\n \n import (\n+\t\"bytes\"\n \t\"errors\"\n \t\"fmt\"\n \t\"math/big\"\n \t\"reflect\"\n+\t\"sort\"\n \t\"time\"\n \t\"unicode/utf8\"\n )\n@@ -78,6 +80,48 @@ func (m multiEncoder) Encode(dst []byte) {\n \t}\n }\n \n+type s...
2020-04-29T18:24:15
ggml-org/llama.cpp
01d2bdc2bc61b676706830305b286b08b9885a41
56fc38b9655fbe1869d8bd6cfb269418196cea69
ggml : fix build broken with -march=armv9-a on MacOS (#16520) * ggml : fix build broken with -march=armv9-a on MacOS Signed-off-by: Jie Fu <jiefu@tencent.com> * Add #pragma message Signed-off-by: Jie Fu <jiefu@tencent.com> * Address review comment. Signed-off-by: Jie Fu <jiefu@tencent.com> * Update ggml/src/ggml...
[ { "path": "ggml/src/ggml-cpu/ggml-cpu-impl.h", "patch": "@@ -68,7 +68,7 @@ struct ggml_compute_params {\n #endif // __VXE2__\n #endif // __s390x__ && __VEC__\n \n-#if defined(__ARM_FEATURE_SVE)\n+#if defined(__ARM_FEATURE_SVE) && defined(__linux__)\n #include <sys/prctl.h>\n #endif\n ", "additions": 1...
2025-10-13T12:48:47
huggingface/transformers
3a08cc485fa2d7225e85174cbc814909ea606b52
39fa40096984f9d3995a507f2514b71cd675319a
[Docs] Fix Typo in English & Japanese CLIP Model Documentation (TMBD -> TMDB) (#28751) * [Docs] Fix Typo in English CLIP model_doc * [Docs] Fix Typo in Japanese CLIP model_doc
[ { "path": "docs/source/en/model_doc/clip.md", "patch": "@@ -95,7 +95,7 @@ A list of official Hugging Face and community (indicated by 🌎) resources to h\n - A [notebook](https://colab.research.google.com/drive/1bLVwVKpAndpEDHqjzxVPr_9nGrSbuOQd?usp=sharing) on image retrieval using pretrained CLIP and comput...
2024-01-29T10:06:51
vuejs/vue
af54514cf97e724d224408c1ecc6c81ddccd4b75
0603ff695d2f41286239298210113cbe2b209e28
fix: handle async placeholders in normalizeScopedSlot (#11963) Co-authored-by: Eduardo San Martin Morote <posva@users.noreply.github.com>
[ { "path": "src/core/vdom/helpers/normalize-scoped-slots.js", "patch": "@@ -3,6 +3,7 @@\n import { def } from 'core/util/lang'\n import { normalizeChildren } from 'core/vdom/helpers/normalize-children'\n import { emptyObject } from 'shared/util'\n+import { isAsyncPlaceholder } from './is-async-placeholder'\n...
2021-04-16T15:33:56
nodejs/node
4d893e093a539518a201e4a4f40adc26b8bbf74e
237a42dd93aeb2180bdc636c1de8864bcf021d59
timers: Migrate to use internal/errors PR-URL: https://github.com/nodejs/node/pull/14659 Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com> Reviewe...
[ { "path": "doc/api/errors.md", "patch": "@@ -1141,6 +1141,11 @@ are most likely an indication of a bug within Node.js itself.\n Used when the V8 BreakIterator API is used but the full ICU data set is not\n installed.\n \n+<a id=\"ERR_VALUE_OUT_OF_RANGE\"></a>\n+### ERR_VALUE_OUT_OF_RANGE\n+\n+Used when a gi...
2017-08-07T06:42:55
rust-lang/rust
697737a8b18b685270f197ccdd1211e8a010b98b
d16da3b8b2be9f1da5a2e9d2b31c499a21d2d7a1
core: Make `Debug` impl of raw pointers print metadata if present Make Rust pointers less magic by including metadata information in their `Debug` output. This does not break Rust stability guarantees because `Debug` output is explicitly exempted from stability: https://doc.rust-lang.org/std/fmt/trait.Debug.html#stab...
[ { "path": "library/core/src/fmt/mod.rs", "patch": "@@ -2776,7 +2776,14 @@ impl Display for char {\n #[stable(feature = \"rust1\", since = \"1.0.0\")]\n impl<T: ?Sized> Pointer for *const T {\n fn fmt(&self, f: &mut Formatter<'_>) -> Result {\n- pointer_fmt_inner(self.expose_provenance(), f)\n+ ...
2025-01-03T17:02:33
golang/go
f81aa23cf04f2be5fd2159e855e185b2d75ba503
95c5ec67ea2c2760c15ffd771e52f5e31f3e116f
crypto/x509: treat hostnames with colons as invalid Colons are port separators, so it's risky to allow them in hostnames. Per the CL 231377 rule, if we at least consider them invalid we will not apply wildcard processing to them, making behavior a little more predictable. We were considering hostnames with colons val...
[ { "path": "src/crypto/x509/verify.go", "patch": "@@ -940,8 +940,8 @@ func validHostname(host string, isPattern bool) bool {\n \t\t\tif c == '-' && j != 0 {\n \t\t\t\tcontinue\n \t\t\t}\n-\t\t\tif c == '_' || c == ':' {\n-\t\t\t\t// Not valid characters in hostnames, but commonly\n+\t\t\tif c == '_' {\n+\t\t...
2020-05-01T02:35:35
huggingface/transformers
39fa40096984f9d3995a507f2514b71cd675319a
5649c0cbb8c989aebd16722ea0b7396e74e774d2
Fix input data file extension in examples (#28741)
[ { "path": "examples/flax/language-modeling/run_bart_dlm_flax.py", "patch": "@@ -558,9 +558,10 @@ def main():\n data_files = {}\n if data_args.train_file is not None:\n data_files[\"train\"] = data_args.train_file\n+ extension = data_args.train_file.split(\".\")[-1]\n ...
2024-01-29T10:06:31
vuejs/vue
3fd8bb4e0fc3114863d0fca6bcd253da87fe4443
180474dc17b20f28818a0e1cecab9e806b057e8c
fix test:weex
[ { "path": ".babelrc.js", "patch": "@@ -1,23 +1,23 @@\n-const babelPresetFlowVue = {\n- plugins: [\n- require('@babel/plugin-proposal-class-properties'),\n- // require('@babel/plugin-syntax-flow'), // not needed, included in transform-flow-strip-types\n- require('@babel/plugin-transform-flow-strip-...
2021-04-07T13:41:48
rust-lang/rust
9479b6f0ead1787a895f82473eeb57dd74fded5a
71763208216e44901c4865119458edc8e6e466c1
tests: Add regression test for `Debug` impl of raw pointers
[ { "path": "library/Cargo.lock", "patch": "@@ -79,6 +79,7 @@ version = \"0.0.0\"\n dependencies = [\n \"rand\",\n \"rand_xorshift\",\n+ \"regex\",\n ]\n \n [[package]]\n@@ -297,6 +298,31 @@ dependencies = [\n \"rand_core\",\n ]\n \n+[[package]]\n+name = \"regex\"\n+version = \"1.11.1\"\n+source = \"regist...
2025-01-03T16:51:32
golang/go
95c5ec67ea2c2760c15ffd771e52f5e31f3e116f
d65e1b2e41deb810565c94555d791e7384618da0
crypto/x509: treat certificate names with trailing dots as invalid Trailing dots are not allowed in certificate fields like CN and SANs (while they are allowed and ignored as inputs to verification APIs). Move to considering names with trailing dots in certificates as invalid hostnames. Following the rule of CL 23137...
[ { "path": "src/crypto/x509/verify.go", "patch": "@@ -110,11 +110,11 @@ func (h HostnameError) Error() string {\n \tc := h.Certificate\n \n \tif !c.hasSANExtension() && matchHostnames(c.Subject.CommonName, h.Host) {\n-\t\tif !ignoreCN && !validHostname(c.Subject.CommonName) {\n+\t\tif !ignoreCN && !validHost...
2020-05-01T01:24:25
huggingface/transformers
5649c0cbb8c989aebd16722ea0b7396e74e774d2
243e186efbf7fb93328dd6b34927a4e8c8f24395
Fix `DepthEstimationPipeline`'s docstring (#28733) * fix * fix * Fix --------- Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": "src/transformers/pipelines/depth_estimation.py", "patch": "@@ -52,7 +52,7 @@ def __init__(self, *args, **kwargs):\n \n def __call__(self, images: Union[str, List[str], \"Image.Image\", List[\"Image.Image\"]], **kwargs):\n \"\"\"\n- Assign labels to the image(s) passed as inputs...
2024-01-29T09:42:55
nodejs/node
a7dccd040d72ce7de61d9160ec031420c52a49d4
0097794922d29692b3487eccf5c6204fe230543d
tls: type checking for `key`, `cert` and `ca` options PR-URL: https://github.com/nodejs/node/pull/14807 Fixes: https://github.com/nodejs/node/issues/12802 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Roman Reiss <me@silverwind.io> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Ruben Bridgew...
[ { "path": "lib/_tls_common.js", "patch": "@@ -22,6 +22,7 @@\n 'use strict';\n \n const tls = require('tls');\n+const errors = require('internal/errors');\n \n const SSL_OP_CIPHER_SERVER_PREFERENCE =\n process.binding('constants').crypto.SSL_OP_CIPHER_SERVER_PREFERENCE;\n@@ -52,6 +53,14 @@ function Secur...
2017-08-13T14:24:12
rust-lang/rust
8ae4e7f76dcf5e30ed40ecda537792a3f93f15fb
0fcc2dba925cd60f6a518e60f9be9017c26cd174
Fix `tests/ui/transmute_32bit.rs` annotations
[ { "path": "tests/ui/transmute_32bit.rs", "patch": "@@ -3,12 +3,12 @@\n #[warn(clippy::wrong_transmute)]\n fn main() {\n unsafe {\n- let _: *const usize = std::mem::transmute(6.0f32);\n+ let _: *const usize = std::mem::transmute(6.0f32); //~ wrong_transmute\n \n- let _: *mut usize = ...
2025-02-15T13:59:48
huggingface/transformers
abe0289e6dd985bdfd2a477b22a246c1147ade3b
f8b7c4345a6ee351134f7e1f8b050d9c4df4a740
[docs] Fix datasets in guides (#28715) * change datasets * fix
[ { "path": "docs/source/en/tasks/language_modeling.md", "patch": "@@ -61,16 +61,15 @@ We encourage you to log in to your Hugging Face account so you can upload and sh\n \n ## Load ELI5 dataset\n \n-Start by loading a smaller subset of the r/askscience subset of the ELI5 dataset from the 🤗 Datasets library.\...
2024-01-26T17:29:07
golang/go
d65e1b2e41deb810565c94555d791e7384618da0
9d1e120c421440b450e87cc6ac8900658f9bf01a
crypto/x509: ignore Common Name by default Common Name has been deprecated for 20 years, and has horrible interactions with Name Constraints. The browsers managed to drop it last year, let's try flicking the switch to disabled by default. Return helpful errors for things that would get unbroken by flipping the switch...
[ { "path": "src/crypto/x509/verify.go", "patch": "@@ -19,7 +19,7 @@ import (\n )\n \n // ignoreCN disables interpreting Common Name as a hostname. See issue 24151.\n-var ignoreCN = strings.Contains(os.Getenv(\"GODEBUG\"), \"x509ignoreCN=1\")\n+var ignoreCN = !strings.Contains(os.Getenv(\"GODEBUG\"), \"x509ig...
2020-05-01T00:43:59
vuejs/vue
180474dc17b20f28818a0e1cecab9e806b057e8c
e643e44daf3f0fd26093fe7201260c245c89e69e
fix "he" dep thanks @sodatea
[ { "path": "dist/vue.common.dev.js", "patch": "@@ -4749,9 +4749,9 @@ Vue.version = '2.6.12';\n // during template compilation\n var isReservedAttr = makeMap('style,class');\n // attributes that should be using props for binding\n-var acceptValue = makeMap('input,textarea,option,select,progress');\n-var mustU...
2021-04-07T13:02:42
ggml-org/llama.cpp
56fc38b9655fbe1869d8bd6cfb269418196cea69
1fb9504eb744969a990bfe4cfcf1d3d7a479541c
CANN: fix CPU memory leak in CANN backend (#16549) This commit fixes a CPU-side memory leak issue in the CANN backend, which occurred when intermediate aclTensorList objects were not properly released after operator execution. The leak happened during repeated invocations of CANN ops (e.g., FlashAttention), leading to...
[ { "path": "ggml/src/ggml-cann/aclnn_ops.cpp", "patch": "@@ -146,9 +146,7 @@ void ggml_cann_op_unary_gated(\n unary_op(ctx, acl_src0, acl_dst);\n GGML_CANN_CALL_ACLNN_OP(ctx, InplaceMul, acl_dst, acl_src1);\n \n- ggml_cann_release_resources(ctx, acl_src0, acl_dst);\n- if(src1)\n- ggml_ca...
2025-10-13T09:01:24
nodejs/node
0097794922d29692b3487eccf5c6204fe230543d
70c775a810e68f274fb7963faa7d787e04a9b68f
errors: remove duplicated ERR_HTTP_INVALID_STATUS_CODE error PR-URL: https://github.com/nodejs/node/pull/15003 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com> Reviewed-By: Daniel Be...
[ { "path": "lib/internal/errors.js", "patch": "@@ -117,7 +117,6 @@ E('ERR_ENCODING_INVALID_ENCODED_DATA',\n (enc) => `The encoded data was not valid for encoding ${enc}`);\n E('ERR_HTTP_HEADERS_SENT',\n 'Cannot %s headers after they are sent to the client');\n-E('ERR_HTTP_INVALID_STATUS_CODE', 'Invalid s...
2017-08-24T06:30:39
rust-lang/rust
0fcc2dba925cd60f6a518e60f9be9017c26cd174
211f79d84e3e6a9c2be01dc3025b01f3e23474d9
Fix 32 bits tests
[ { "path": "tests/ui/cast_size.32bit.stderr", "patch": "@@ -13,7 +13,7 @@ LL | i8::try_from(1isize);\n | ~~~~~~~~~~~~~~~~~~~~\n \n error: casting `isize` to `f32` causes a loss of precision (`isize` is 32 or 64 bits wide, but `f32`'s mantissa is only 23 bits wide)\n- --> tests/ui/cast_size.rs:21:...
2025-02-15T13:51:03
huggingface/transformers
3aea38ce6181d505b038039ccf88855b8537e787
708b19eb093bcfb4efcfa229925b249397c2bd5e
fix: suppress `GatedRepoError` to use cache file (fix #28558). (#28566) * fix: suppress `GatedRepoError` to use cache file (fix #28558). * move condition_to_return parameter back to outside.
[ { "path": "src/transformers/modeling_flax_utils.py", "patch": "@@ -786,6 +786,7 @@ def from_pretrained(\n \"user_agent\": user_agent,\n \"revision\": revision,\n \"subfolder\": subfolder,\n+ \"_raise_exceptions_fo...
2024-01-26T16:25:08
vuejs/vue
0603ff695d2f41286239298210113cbe2b209e28
5c459f0fd6911daca09ad205aecf5423a9d05698
fix(warns): modify `maybeComponent` function in parser (#10167) fixes #10152
[ { "path": "src/compiler/parser/index.js", "patch": "@@ -86,8 +86,12 @@ export function parse (\n platformMustUseProp = options.mustUseProp || no\n platformGetTagNamespace = options.getTagNamespace || no\n const isReservedTag = options.isReservedTag || no\n- maybeComponent = (el: ASTElement) => !!el.c...
2021-04-07T12:38:13
ggml-org/llama.cpp
1fb9504eb744969a990bfe4cfcf1d3d7a479541c
3f750f8d760ab5a61491e6a9409072dfeee4b4d7
fix: add remark plugin to render raw HTML as literal text (#16505) * fix: add remark plugin to render raw HTML as literal text Implemented a missing MDAST stage to neutralize raw HTML like major LLM WebUIs do ensuring consistent and safe Markdown rendering Introduced 'remarkLiteralHtml', a plugin that converts raw H...
[ { "path": "tools/server/webui/package-lock.json", "patch": "@@ -50,6 +50,7 @@\n \t\t\t\t\"eslint-plugin-svelte\": \"^3.0.0\",\n \t\t\t\t\"fflate\": \"^0.8.2\",\n \t\t\t\t\"globals\": \"^16.0.0\",\n+\t\t\t\t\"mdast\": \"^3.0.0\",\n \t\t\t\t\"mdsvex\": \"^0.12.3\",\n \t\t\t\t\"playwright\": \"^1.53.0\",\n \t\...
2025-10-13T08:55:32
golang/go
9d1e120c421440b450e87cc6ac8900658f9bf01a
5c13cab36b4667cc1a42667b16b8f049016586e0
crypto/x509: require perfect matches for invalid hostnames When the input or SAN dNSNames are not valid hostnames, the specs don't define what should happen, because this should ideally never happen, so everything we do is undefined behavior. Browsers get to just return an error, because browsers can assume that the r...
[ { "path": "src/crypto/x509/verify.go", "patch": "@@ -110,7 +110,7 @@ func (h HostnameError) Error() string {\n \tc := h.Certificate\n \n \tif !c.hasSANExtension() && !validHostname(c.Subject.CommonName) &&\n-\t\tmatchHostnames(toLowerCaseASCII(c.Subject.CommonName), toLowerCaseASCII(h.Host)) {\n+\t\tmatchHo...
2020-05-01T00:20:56
rust-lang/rust
211f79d84e3e6a9c2be01dc3025b01f3e23474d9
cc915cced82359b9816b3016958dadf6a503fb6f
Fix `tests/ui-toml/absolute_paths/absolute_paths_2015.rs` test
[ { "path": "tests/ui-toml/absolute_paths/absolute_paths_2015.default.stderr", "patch": "@@ -0,0 +1,14 @@\n+error: consider bringing this path into scope with the `use` keyword\n+ --> tests/ui-toml/absolute_paths/absolute_paths_2015.rs:16:13\n+ |\n+LL | let _ = ::m1::m2::X;\n+ | ^^^^^^^^^...
2025-02-15T13:05:59
nodejs/node
70c775a810e68f274fb7963faa7d787e04a9b68f
df57d8bdccdc94e4d8327fc769d93dbadf8772c7
test: run abort tests Currently, tests in test/abort do not run in CI. This change configures the test runner to not write core files for abort tests and to run them. PR-URL: https://github.com/nodejs/node/pull/14013 Fixes: https://github.com/nodejs/node/issues/14012 Reviewed-By: Anna Henningsen <anna@addaleax.net> ...
[ { "path": "Makefile", "patch": "@@ -333,7 +333,7 @@ test-all-valgrind: test-build\n \t$(PYTHON) tools/test.py --mode=debug,release --valgrind\n \n CI_NATIVE_SUITES := addons addons-napi\n-CI_JS_SUITES := async-hooks doctool inspector known_issues message parallel pseudo-tty sequential\n+CI_JS_SUITES := abor...
2017-06-30T20:14:04
vuejs/vue
b3de21c2ba3c9ab14cde719f92f85368aca0e6f9
69a1bc909b342259b74b5f9c3c596ba9bded7207
fix ts-check
[ { "path": "tsconfig.json", "patch": "@@ -31,7 +31,7 @@\n \"vue\": [\"src/platforms/web/entry-runtime-with-compiler\"]\n }\n },\n- \"include\": [\"src\", \"test-dts\", \"typescript\", \"test\"],\n+ \"include\": [\"src\", \"test-dts\", \"typescript\"],\n \n- \"exclude\": [\"flow\", \"node_modul...
2021-04-07T11:07:59
huggingface/transformers
a638de1987e893d35c2882945634c5f63d1298ed
d6ac8f4ad2b9e06c280ae9da823685d8a55982f5
Fix `weights_only` (#28725) fix Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": "src/transformers/convert_pytorch_checkpoint_to_tf2.py", "patch": "@@ -330,10 +330,11 @@ def convert_pt_checkpoint_to_tf(\n if compare_with_pt_model:\n tfo = tf_model(tf_model.dummy_inputs, training=False) # build the network\n \n+ weights_only_kwarg = {\"weights_only\": True} ...
2024-01-26T12:00:49
ggml-org/llama.cpp
c515fc577166042234241c6bd0da9b08dcbe2bb9
f9bc66c3ebcfddb5f09e4b21253623caeb8e414a
ggml : fix scalar path for computing norm (#16558)
[ { "path": "ggml/src/ggml-cpu/vec.cpp", "patch": "@@ -463,9 +463,9 @@ ggml_float ggml_vec_cvar_f32(const int n, float * y, const float * x, const floa\n #endif\n for (; i < n; ++i) {\n float val = x[i] - mean;\n+ y[i] = val;\n val *= val;\n sum += (ggml_float)val;\n- ...
2025-10-13T08:22:27
golang/go
5c13cab36b4667cc1a42667b16b8f049016586e0
6ffca2260296d82f235d38367f0d0f008121521e
crypto/elliptic: implement MarshalCompressed and UnmarshalCompressed Fixes #34105 Co-authored-by: Filippo Valsorda <filippo@golang.org> Change-Id: I3470343ec9ce9a0bd5593a04d3ba5816b75d3332 GitHub-Last-Rev: 9b38b0a7f8cef7f001fe9126a1cfcb4990f7b996 GitHub-Pull-Request: golang/go#35110 Reviewed-on: https://go-review.goo...
[ { "path": "src/crypto/elliptic/elliptic.go", "patch": "@@ -52,11 +52,8 @@ func (curve *CurveParams) Params() *CurveParams {\n \treturn curve\n }\n \n-func (curve *CurveParams) IsOnCurve(x, y *big.Int) bool {\n-\t// y² = x³ - 3x + b\n-\ty2 := new(big.Int).Mul(y, y)\n-\ty2.Mod(y2, curve.P)\n-\n+// polynomial ...
2020-02-13T12:55:07
nodejs/node
df57d8bdccdc94e4d8327fc769d93dbadf8772c7
acdf5585510c4d6ec3f7ef9c44965ae068fd0b72
test: improve test-abort-backtrace Improve error message by showing output when frames output does not meet expectations. Since we can't tell at runtime if we have the correct libc for backtraces, allow an empty backtrace and run the test on all platforms. PR-URL: https://github.com/nodejs/node/pull/14013 Reviewed-B...
[ { "path": "test/abort/test-abort-backtrace.js", "patch": "@@ -10,13 +10,19 @@ if (process.argv[2] === 'child') {\n process.abort();\n } else {\n const child = cp.spawnSync(`${process.execPath}`, [`${__filename}`, 'child']);\n- const frames =\n- child.stderr.toString().trimRight().split('\\n').map(...
2017-08-25T06:18:58
vuejs/vue
5c459f0fd6911daca09ad205aecf5423a9d05698
6ec33f70d9949ec4dd02d7fa5af1f6b84021cb5b
fix(types): allow symbol & boolean for vnode key (#11914)
[ { "path": "types/vnode.d.ts", "patch": "@@ -20,7 +20,7 @@ export interface VNode {\n elm?: Node;\n ns?: string;\n context?: Vue;\n- key?: string | number;\n+ key?: string | number | symbol | boolean;\n componentOptions?: VNodeComponentOptions;\n componentInstance?: Vue;\n parent?: VNode;", ...
2021-04-07T09:37:53
huggingface/transformers
1f47a24aa1fbaefcac9d0ffbfa5fff30867a8c92
bbe30c6968c66bc77f7f1f246e64743d74419770
fix: corrected misleading log message in save_pretrained function (#28699)
[ { "path": "src/transformers/modeling_utils.py", "patch": "@@ -2495,8 +2495,7 @@ def save_pretrained(\n save_function(shard, os.path.join(save_directory, shard_file))\n \n if index is None:\n- weights_file_name = SAFE_WEIGHTS_NAME if safe_serialization else WEIGHTS_NAME\n- ...
2024-01-26T11:52:53
ggml-org/llama.cpp
81d54bbfd599811b354c39f04550888168be7780
c7be9febcbafa9af7d1b9443f86475c59c9c5f87
webui: remove client-side context pre-check and rely on backend for limits (#16506) * fix: make SSE client robust to premature [DONE] in agentic proxy chains * webui: remove client-side context pre-check and rely on backend for limits Removed the client-side context window pre-check and now simply sends messages whi...
[ { "path": "tools/server/webui/src/lib/components/app/chat/ChatScreen/ChatScreen.svelte", "patch": "@@ -7,6 +7,7 @@\n \t\tChatMessages,\n \t\tChatProcessingInfo,\n \t\tEmptyFileAlertDialog,\n+\t\tChatErrorDialog,\n \t\tServerErrorSplash,\n \t\tServerInfo,\n \t\tServerLoadingSplash,\n@@ -22,10 +23,11 @@\n \t\...
2025-10-12T16:06:41
rust-lang/rust
1f94d55a183c493ae2ca2754d9485f89e4ac76ae
8a2dae63c3737ed9623035d55ed5e0e90e2942ab
Fix new tests updates
[ { "path": "tests/ui/as_pointer_underscore.fixed", "patch": "@@ -7,11 +7,9 @@ struct S;\n fn f(s: &S) -> usize {\n &s as *const &S as usize\n //~^ as_pointer_underscore\n-\n }\n \n fn g(s: &mut S) -> usize {\n s as *mut S as usize\n //~^ as_pointer_underscore\n-\n }", "additions": 0, ...
2025-02-12T22:44:38
golang/go
6ffca2260296d82f235d38367f0d0f008121521e
78aa4af239749106b8eadc9fcfe0ab4dac0b1315
runtime: do not attempt bulkBarrierPreWrite when dst slice length is zero If dst slice length is zero in makeslicecopy then the called mallocgc is using a fast path to only return a pointer to runtime.zerobase. There may be no heapBits for that address readable by bulkBarrierPreWriteSrcOnly which will cause a panic. ...
[ { "path": "src/runtime/slice.go", "patch": "@@ -59,7 +59,7 @@ func makeslicecopy(et *_type, tolen int, fromlen int, from unsafe.Pointer) unsaf\n \t} else {\n \t\t// Note: can't use rawmem (which avoids zeroing of memory), because then GC can scan uninitialized memory.\n \t\tto = mallocgc(tomem, et, true)\n-...
2020-05-07T21:43:22
vuejs/vue
69a1bc909b342259b74b5f9c3c596ba9bded7207
6c86065307db74425cc0d6cf5b4aabf6da605c1f
eslint fixes
[ { "path": ".eslintrc.js", "patch": "@@ -22,6 +22,15 @@ module.exports = {\n WXEnvironment: true,\n },\n rules: {\n+ 'no-unused-vars': [\n+ 'error',\n+ // we are only using this rule to check for unused arguments since TS\n+ // catches unused variables but not args.\n+ { varsIg...
2021-04-06T16:21:58
huggingface/transformers
bbe30c6968c66bc77f7f1f246e64743d74419770
8eb74c1c8961e3dc8549bb1a76463c7658a63d43
support PeftMixedModel signature inspect (#28321) * support PeftMixedModel signature inspect * import PeftMixedModel only peft>=0.7.0 * Update src/transformers/trainer.py Co-authored-by: Younes Belkada <49240599+younesbelkada@users.noreply.github.com> * Update src/transformers/trainer.py Co-authored-by:...
[ { "path": "src/transformers/trainer.py", "patch": "@@ -185,7 +185,6 @@\n if is_safetensors_available():\n import safetensors.torch\n \n-\n if is_peft_available():\n from peft import PeftModel\n \n@@ -213,7 +212,15 @@\n \n \n def _is_peft_model(model):\n- return is_peft_available() and isinstance(...
2024-01-26T11:05:01
nodejs/node
acdf5585510c4d6ec3f7ef9c44965ae068fd0b72
f912080bf2d8fd024d3443f3ab9e399bc84a724b
test: improve test-abort-uncaught-exception Add `SIGTRAP` to allowed signals (seen on PPC machines in CI). Improve message when assertion fails in test-abort-uncaught-exception by providing the signal name that was not expected. PR-URL: https://github.com/nodejs/node/pull/14013 Reviewed-By: Anna Henningsen <anna@add...
[ { "path": "test/abort/test-abort-uncaught-exception.js", "patch": "@@ -9,7 +9,7 @@ if (process.argv[2] === 'child') {\n throw new Error('child error');\n } else {\n run('', null);\n- run('--abort-on-uncaught-exception', ['SIGABRT', 'SIGILL']);\n+ run('--abort-on-uncaught-exception', ['SIGABRT', 'SIGTR...
2017-08-25T05:18:47
ggml-org/llama.cpp
c7be9febcbafa9af7d1b9443f86475c59c9c5f87
8415f61e23d04427cd0d912fbb9d33b85f849456
[SYCL] fix UT fault cases: count-equal, argsort, pad OPs (#16521) * fix/refactor OP argsort, pad * fix count-equal op * update SYCL OP list * fix format issue --------- Co-authored-by: Zhang Jianyu <zhang.jianyu@outlook.com>
[ { "path": "docs/ops.md", "patch": "@@ -31,7 +31,7 @@ Legend:\n | CONV_TRANSPOSE_1D | ❌ | ✅ | ✅ | ✅ | ✅ | ❌ | ✅ | ✅ | ❌ |\n | CONV_TRANSPOSE_2D | ❌ | ❌ | ✅ | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ |\n | COS | ❌ | ✅ | ✅ | ✅ | 🟡 | ❌ | ✅ | 🟡 | ❌ |\n-| ...
2025-10-12T13:53:35
rust-lang/rust
0a990758fb4293ecadf0a5731d64ac49ebe44b78
10184ecbe1f5c9036cfbe779adfd4248d070619d
Handle compilation error in `builtin_type_shadow.rs`
[ { "path": "tests/ui/builtin_type_shadow.rs", "patch": "@@ -3,8 +3,7 @@\n \n fn foo<u32>(a: u32) -> u32 {\n //~^ builtin_type_shadow\n- 42\n-\n+ 42 //~ ERROR: mismatched type\n }\n \n fn main() {}", "additions": 1, "deletions": 2, "language": "Rust" } ]
2025-02-12T16:21:40
golang/go
78aa4af239749106b8eadc9fcfe0ab4dac0b1315
4fda7dc57f4848473cd8ede5913976d1d262f1d7
cmd/compile: don't store NaN in ppc64 floating point constant ops Missed in CL 221790 This is the only remaining use of math.Float64frombits in the .rules file that isn't already guarded. Fixes #38880 Change-Id: I11f71e3a48516748d8d2701c6cf6920a7bc9e216 Reviewed-on: https://go-review.googlesource.com/c/go/+/232859 ...
[ { "path": "src/cmd/compile/internal/ssa/gen/PPC64.rules", "patch": "@@ -785,7 +785,7 @@\n (FMOVDstore [off] {sym} ptr (MTVSRD x) mem) => (MOVDstore [off] {sym} ptr x mem)\n (MOVDstore [off] {sym} ptr (MFVSRD x) mem) => (FMOVDstore [off] {sym} ptr x mem)\n \n-(MTVSRD (MOVDconst [c])) => (FMOVDconst [math.Flo...
2020-05-07T23:09:33
vuejs/vue
5f4763e5983ebd07b490361f382566257afd9cc4
0af78c57b3dbe6bf5296f87b7be542a475a26e12
fix keepalive to ts
[ { "path": "dist/vue.runtime.common.dev.js", "patch": "@@ -5,7 +5,6 @@\n */\n 'use strict';\n \n-/* @flow */\n var emptyObject = Object.freeze({});\n // These helpers produce better VM code in JS engines due to their\n // explicitness and function inlining.\n@@ -316,7 +315,6 @@ var LIFECYCLE_HOOKS = [\n ...
2021-04-06T16:12:14
ggml-org/llama.cpp
4b2dae383df708e2afc49c4859a81cd074f5ac10
41aac5c69b5fb281bc1f486afb053f78101bb39e
common : update presets (#16504) * presets : add --embd-gemma-default and remove old embedding presets * presets : add gpt-oss presets * presets : add vision presets * cont : remove reasoning overrides [no ci] * cont : fix batch size for embedding gemma [no ci]
[ { "path": "common/arg.cpp", "patch": "@@ -3358,7 +3358,7 @@ common_params_context common_params_parser_init(common_params & params, llama_ex\n add_opt(common_arg(\n {\"--chat-template-kwargs\"}, \"STRING\",\n string_format(\"sets additional params for the json template parser\"),\n- ...
2025-10-12T06:29:13
nodejs/node
f912080bf2d8fd024d3443f3ab9e399bc84a724b
99c478eb3629292e625a4d2fd634e89f0120ab91
Revert "http2: refactor error handling" This reverts commit 4ca8ff264f368c301827e07956f313cebd1b8de8. That commit was landed without a green CI and is failing on Windows. PR-URL: https://github.com/nodejs/node/pull/15047 Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "doc/api/http2.md", "patch": "@@ -1118,8 +1118,6 @@ added: v8.4.0\n * `headers` {[Headers Object][]}\n * `options` {Object}\n * `statCheck` {Function}\n- * `onError` {Function} Callback function invoked in the case of an\n- Error before send\n * `getTrailers` {Function} Callback function i...
2017-08-26T19:28:07
rust-lang/rust
10184ecbe1f5c9036cfbe779adfd4248d070619d
f666fd6417a87fcb69f7e62ac0c41712099046a4
Allowed `clippy::tests/ui/attrs.2.fixed` in `tests/ui/attr.rs` because when adding annotations, it doesn't work anymore
[ { "path": "tests/ui/attrs.rs", "patch": "@@ -1,5 +1,5 @@\n #![warn(clippy::inline_always, clippy::deprecated_semver)]\n-#![allow(clippy::assertions_on_constants)]\n+#![allow(clippy::assertions_on_constants, clippy::empty_line_after_outer_attr)]\n #![allow(clippy::missing_docs_in_private_items, clippy::panic...
2025-02-11T17:22:04
vuejs/vue
9c70fc0ec3ad78449e118dd3e33e0c8dbaabbb42
63f9077de4f2930eede3d46eb50f520ae0c1cfaa
fix unit tests
[ { "path": "package.json", "patch": "@@ -74,6 +74,8 @@\n \"@babel/plugin-transform-flow-strip-types\": \"^7.0.0\",\n \"@babel/preset-env\": \"^7.0.0\",\n \"@babel/register\": \"^7.0.0\",\n+ \"@types/jasmine\": \"^3.6.9\",\n+ \"@types/mocha\": \"^8.2.2\",\n \"@types/node\": \"^12.12.0\",...
2021-04-03T16:32:18
golang/go
2e455ec2eb447a65f10b3dc929833f6aa19d526e
14ae846f54c105f4d48f1afa5aa5446e4b9e7cdc
runtime: avoid overflow from linearAlloc Currently linearAlloc manages an exclusive "end" address for the top of its reserved space. While unlikely for a linearAlloc to be allocated with an "end" address hitting the top of the address space, it is possible and could lead to overflow. Avoid overflow by chopping off th...
[ { "path": "src/runtime/malloc.go", "patch": "@@ -604,7 +604,7 @@ func mallocinit() {\n \t\t\ta, size := sysReserveAligned(unsafe.Pointer(p), arenaSize, heapArenaBytes)\n \t\t\tif a != nil {\n \t\t\t\tmheap_.arena.init(uintptr(a), size)\n-\t\t\t\tp = uintptr(a) + size // For hint below\n+\t\t\t\tp = mheap_.a...
2020-04-30T19:35:12
ggml-org/llama.cpp
41aac5c69b5fb281bc1f486afb053f78101bb39e
a2fba89a426ff8005d303c73f0436e7e67368b70
ggml : Fix FP16 ELU positive branch (#16519) Co-authored-by: Aaron <shelhamer.aaron@gmail.com>
[ { "path": "ggml/src/ggml-cpu/vec.h", "patch": "@@ -820,7 +820,8 @@ inline static void ggml_vec_tanh_f16 (const int n, ggml_fp16_t * y, const ggml_f\n inline static void ggml_vec_elu_f32 (const int n, float * y, const float * x) { for (int i = 0; i < n; ++i) y[i] = (x[i] > 0.f) ? x[i] : expm1f(x[i]); }\n in...
2025-10-12T05:25:37
rust-lang/rust
02f1f346c2c83a930f2f4541b5181225491b875e
54a0f387ea8c7bcb79b8e40c074a484d31b51990
fix(rustdoc): Fixed `Copy Item Path` in rust doc
[ { "path": "src/librustdoc/html/static/js/main.js", "patch": "@@ -2039,7 +2039,10 @@ function preLoadCss(cssUrl) {\n // Most page titles are '<Item> in <path::to::module> - Rust', except\n // modules (which don't have the first part) and keywords/primitives\n // (which don't have a mo...
2025-02-15T10:04:27
nodejs/node
99c478eb3629292e625a4d2fd634e89f0120ab91
2154a3ce0f2eca1d26e1ad8e7bbeae1039822a5a
test: pipe some error output if npm fails This test now prints out some child error output if the npm child proc fails, allowing us to debug easier. PR-URL: https://github.com/nodejs/node/pull/12490 Refs: https://github.com/nodejs/node/pull/12480 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Colin Ihrig...
[ { "path": "test/parallel/test-npm-install.js", "patch": "@@ -4,7 +4,7 @@ if (!common.hasCrypto)\n common.skip('missing crypto');\n \n const path = require('path');\n-const spawn = require('child_process').spawn;\n+const exec = require('child_process').exec;\n const assert = require('assert');\n const fs =...
2017-04-18T16:22:19
vuejs/vue
65b683a5e1429a19d87c7aec9cce4093f1684336
af9fc2bcff31d5baa413039818a9b3e011deccaf
fix build
[ { "path": "package.json", "patch": "@@ -132,6 +132,7 @@\n \"rollup-plugin-flow-no-whitespace\": \"^1.0.0\",\n \"rollup-plugin-node-resolve\": \"^4.0.0\",\n \"rollup-plugin-replace\": \"^2.0.0\",\n+ \"rollup-plugin-typescript2\": \"^0.30.0\",\n \"selenium-server\": \"^2.53.1\",\n \"ser...
2021-04-03T15:36:50
ggml-org/llama.cpp
20cc625edc2264aae2779e71bef1593e6a4e8c43
11f0af5504252e453d57406a935480c909e3ff37
ggml: Correct SVE implementation in ggml_vec_dot_f16_unroll (#16518) The previous SVE implementation for `ggml_vec_dot_f16_unroll` contained a bug due to a copy-paste error. The wrong variable was used in an FMA instruction, leading to incorrect results. This commit corrects the variable usage and improves the clarity...
[ { "path": "ggml/src/ggml-cpu/vec.h", "patch": "@@ -144,14 +144,14 @@ inline static void ggml_vec_dot_f16_unroll(const int n, const int xs, float * GG\n for (int i = 0; i < np; i += ggml_f16_step) {\n ay1 = GGML_F16x_VEC_LOAD(y + i + 0 * ggml_f16_epr, 0); // 8 elements\n \n- ax...
2025-10-12T05:15:00
golang/go
f9640b88c7e5f4df3350643f3ec6c30c30e8678d
33213039e5d806f93a11561609c804cef7c065b3
runtime: incorporate Gscan acquire/release into lock ranking order I added routines that can acquire/release a particular rank without acquiring/releasing an associated lock. I added lockRankGscan as a rank for acquiring/releasing the Gscan bit. castogscanstatus() and casGtoPreemptScan() are acquires of the Gscan bi...
[ { "path": "src/runtime/lock_futex.go", "patch": "@@ -108,7 +108,7 @@ func lock2(l *mutex) {\n }\n \n func unlock(l *mutex) {\n-\tlockRankRelease(l)\n+\tunlockWithRank(l)\n }\n \n func unlock2(l *mutex) {", "additions": 1, "deletions": 1, "language": "Go" }, { "path": "src/runtime/lock_js...
2020-04-15T19:35:24
huggingface/transformers
8eb74c1c8961e3dc8549bb1a76463c7658a63d43
142ce68389113095052b5bc32a521ca1a76a0ad4
Fix duplicate & unnecessary flash attention warnings (#28557) * fix duplicate & unnecessary flash warnings * trigger ci * warning_once * if/else order --------- Co-authored-by: Your Name <you@example.com>
[ { "path": "src/transformers/modeling_utils.py", "patch": "@@ -1321,7 +1321,10 @@ def _from_config(cls, config, **kwargs):\n config = copy.deepcopy(config) # We do not want to modify the config inplace in _from_config.\n config._attn_implementation = kwargs.pop(\"attn_implementation\", None)...
2024-01-26T08:37:04
nodejs/node
2154a3ce0f2eca1d26e1ad8e7bbeae1039822a5a
6db825ae824deb6a8c61b46afcd5f041d1c2b461
net: move debug statement This will allow `localAddress` to be properly set before writing debug output. PR-URL: https://github.com/nodejs/node/pull/12616 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Ruben Brid...
[ { "path": "lib/net.js", "patch": "@@ -887,9 +887,6 @@ function internalConnect(\n var err;\n \n if (localAddress || localPort) {\n- debug('binding to localAddress: %s and localPort: %d (addressType: %d)',\n- localAddress, localPort, addressType);\n-\n if (addressType === 4) {\n loc...
2017-04-24T06:27:14
vuejs/vue
af5e05d87ecd218f73302a1b08dcaedd2b46814a
7e5dc6bd9ebc1620624191804d2ace43cae557a8
fix: give correct namespace in foreignObject (#11576) Fix #11575
[ { "path": "src/platforms/web/util/element.js", "patch": "@@ -26,7 +26,7 @@ export const isHTMLTag = makeMap(\n // contain child elements.\n export const isSVG = makeMap(\n 'svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,' +\n- 'foreignObject,g,glyph,image,line,marker,mask,missing-g...
2021-03-30T10:11:55
ggml-org/llama.cpp
a3cb04744fb5c591985f53b749fef5407d07a145
4a8fbe0a5eb75f339782ebcf29c17848122184d3
metal : fix mul-mm condition + fix mul-mv permuted kernels (#16494)
[ { "path": "ggml/src/ggml-metal/ggml-metal-ops.cpp", "patch": "@@ -1546,9 +1546,8 @@ int ggml_metal_op_mul_mat(ggml_metal_op_t ctx, int idx) {\n !ggml_is_transposed(op->src[1]) &&\n // for now the matrix-matrix multiplication kernel only works on A14+/M1+ SoCs\n // AMD GPU and older A...
2025-10-11T13:54:10
huggingface/transformers
142ce68389113095052b5bc32a521ca1a76a0ad4
28751958874eccb155fa2ab10a79bf8068d9ae29
Don't fail when `LocalEntryNotFoundError` during `processor_config.json` loading (#28709) * fix --------- Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": "src/transformers/processing_utils.py", "patch": "@@ -317,6 +317,7 @@ def get_processor_dict(\n user_agent=user_agent,\n revision=revision,\n subfolder=subfolder,\n+ _raise_exceptions_for_missing_entries=False,\n ...
2024-01-26T08:02:32
golang/go
33213039e5d806f93a11561609c804cef7c065b3
6f52790a20a2432ae61e0ec9852a3df823a16d40
cmd/link: fix minor bug in trampoline insertion Fix a minor bug where it should use Textp2 instead of Textp. This doesn't affect correctness. It just made the pre-allocation less effective. Change-Id: Ib3fa8ab3c64037e3582933970d051f278286353b Reviewed-on: https://go-review.googlesource.com/c/go/+/232837 Run-TryBot: C...
[ { "path": "src/cmd/link/internal/ld/data.go", "patch": "@@ -2177,7 +2177,7 @@ func (ctxt *Link) textaddress() {\n \n \t// merge tramps into Textp, keeping Textp in address order\n \tif ntramps != 0 {\n-\t\tnewtextp := make([]loader.Sym, 0, len(ctxt.Textp)+ntramps)\n+\t\tnewtextp := make([]loader.Sym, 0, len...
2020-05-07T15:53:58
vuejs/vue
7e5dc6bd9ebc1620624191804d2ace43cae557a8
e0274e4320f68bb93bd7f90bb1ef701ccf9b6f2a
fix(ssr): inheritAttrs false adds attributes to html (#11706)
[ { "path": "src/platforms/web/server/modules/attrs.js", "patch": "@@ -25,6 +25,10 @@ export default function renderAttrs (node: VNodeWithData): string {\n if (isUndef(opts) || opts.Ctor.options.inheritAttrs !== false) {\n let parent = node.parent\n while (isDef(parent)) {\n+ // Stop fallthroug...
2021-03-30T09:49:40
nodejs/node
15ac1eac3b8d9ff3d42c303d52126e51314b161f
9aa709382a0bc3385d76587102b3bfd0330882e2
benchmark: fix issues in dns benchmark The benchmark script for dns contained functions with args declared but never used. This fix removes those arguments from the function signatures. No test existed for the dns benchmark so one was added to the parallel suite. To improve performance the tests are limited to 1 invo...
[ { "path": "benchmark/dns/lookup.js", "patch": "@@ -5,20 +5,20 @@ const lookup = require('dns').lookup;\n \n const bench = common.createBenchmark(main, {\n name: ['', '127.0.0.1', '::1'],\n- all: [true, false],\n+ all: ['true', 'false'],\n n: [5e6]\n });\n \n function main(conf) {\n const name = conf...
2017-08-18T11:09:57
ggml-org/llama.cpp
31d0ff1869aa2ea31f4e96d5877d0343e9a2171b
97870e64975b26c5e06a3540a8dc0ff601351e86
server / ranking : add sorting and management of top_n (#16403) * server / ranking : add sorting and management of top_n * Make the retro compatible if no top_n will return all results here is a script to make some test ```script URL=${1:-http://127.0.0.1:8181} curl "$URL/v1/rerank" -H "Content-Type: application/...
[ { "path": "tools/server/server.cpp", "patch": "@@ -5401,15 +5401,6 @@ int main(int argc, char ** argv) {\n \n const json body = json::parse(req.body);\n \n- // TODO: implement\n- //int top_n = 1;\n- //if (body.count(\"top_n\") != 1) {\n- // top_n = body.at(\"top_n\");\...
2025-10-11T13:39:04
huggingface/transformers
24f1a00e4cdb063dd14204d9a80ff998e9a47e68
200009566639b5a83604e522a41df3a95b6056ed
Update question_answering.md (#28694) fix typo: from: "model = TFAutoModelForQuestionAnswering("distilbert-base-uncased")" to: model = TFAutoModelForQuestionAnswering.from_pretrained("distilbert-base-uncased")
[ { "path": "docs/source/en/tasks/question_answering.md", "patch": "@@ -271,7 +271,7 @@ Then you can load DistilBERT with [`TFAutoModelForQuestionAnswering`]:\n ```py\n >>> from transformers import TFAutoModelForQuestionAnswering\n \n->>> model = TFAutoModelForQuestionAnswering(\"distilbert-base-uncased\")\n+...
2024-01-25T14:06:38
golang/go
6f52790a20a2432ae61e0ec9852a3df823a16d40
6ea19bb668ee603d1a41d3fd5ab77e130118fd8b
crypto/x509: use Security.framework without cgo for roots on macOS +----------------------------------------------------------------------+ | Hello, if you are reading this and run macOS, please test this code: | | | | $ GO111MODULE=on go get golang....
[ { "path": "src/crypto/x509/internal/macOS/corefoundation.go", "patch": "@@ -0,0 +1,141 @@\n+// Copyright 2020 The Go Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style\n+// license that can be found in the LICENSE file.\n+\n+// +build darwin,amd64\n+\n+// Package macOS pro...
2020-04-02T21:10:13
vuejs/vue
e0274e4320f68bb93bd7f90bb1ef701ccf9b6f2a
987f322b8f419cc307f4294173f8792a706ed73f
fix(types): add types for Vue.util.warn function (#11964) See https://github.com/vuejs/vue/blob/v2.6.12/src/core/util/debug.js#L18-L26
[ { "path": "types/vue.d.ts", "patch": "@@ -121,6 +121,10 @@ export interface VueConstructor<V extends Vue = Vue> {\n \n observable<T>(obj: T): T;\n \n+ util: {\n+ warn(msg: string, vm?: InstanceType<VueConstructor>): void;\n+ };\n+\n config: VueConfiguration;\n version: string;\n }", "addition...
2021-03-30T09:46:53
nodejs/node
4ca8ff264f368c301827e07956f313cebd1b8de8
8987ae843e034745f7247f63928d39f06ed7b116
http2: refactor error handling This changes the error handling model of ServerHttp2Stream, ServerHttp2Request and ServerHttp2Response. An 'error' emitted on ServerHttp2Stream will not go to 'uncaughtException' anymore, but to the server 'streamError'. On the stream 'error', ServerHttp2Request will emit 'abort', while ...
[ { "path": "doc/api/http2.md", "patch": "@@ -1118,6 +1118,8 @@ added: v8.4.0\n * `headers` {[Headers Object][]}\n * `options` {Object}\n * `statCheck` {Function}\n+ * `onError` {Function} Callback function invoked in the case of an\n+ Error before send\n * `getTrailers` {Function} Callback function i...
2017-08-23T16:29:49
ggml-org/llama.cpp
477a66b03501cf3bd067f8968b77ca4d053ff1bd
e60f01d941bc5b7fae62dd57fee4cec76ec0ea6e
convert : correctly handle LLaMA tokenizer for Jamba (#16470) * fix: convert_hf_to_gguf - change Jamba non-sentencepiece mode (tokenizer.json) vocab construction * fix: convert_hf_to_gguf - jamba non-sentencepiece tokenizer to use _set_vocab_llama_hf func * fix: convert_hf_to_gguf - removed get_vocab_base_pre from j...
[ { "path": "convert_hf_to_gguf.py", "patch": "@@ -5966,20 +5966,12 @@ def modify_tensors(self, data_torch: Tensor, name: str, bid: int | None) -> Iter\n class JambaModel(TextModel):\n model_arch = gguf.MODEL_ARCH.JAMBA\n \n- def get_vocab_base_pre(self, tokenizer) -> str:\n- del tokenizer # un...
2025-10-11T08:33:41
huggingface/transformers
963db81a5afc5c31edafa0c9fb0390956a78cf2a
f40b87de0ca234df61f76928956c4a2118c0b548
Add Depth Anything (#28654) * First draft * More improvements * More improvements * More improvements * More improvements * Add docs * Remove file * Add copied from * Address comments * Address comments * Address comments * Fix style * Update docs * Convert all checkpoints, add i...
[ { "path": "README.md", "patch": "@@ -339,6 +339,7 @@ Current number of checkpoints: ![](https://img.shields.io/endpoint?url=https://h\n 1. **[Deformable DETR](https://huggingface.co/docs/transformers/model_doc/deformable_detr)** (from SenseTime Research) released with the paper [Deformable DETR: Deformable ...
2024-01-25T08:34:50
vuejs/vue
987f322b8f419cc307f4294173f8792a706ed73f
fb16d7bfa1e32c21a2f4b627fb8864d3c5c6b655
fix: pause dep collection during immediate watcher invocation (#11943) Co-authored-by: Eduardo San Martin Morote <posva@users.noreply.github.com>
[ { "path": "src/core/instance/state.js", "patch": "@@ -355,11 +355,13 @@ export function stateMixin (Vue: Class<Component>) {\n options.user = true\n const watcher = new Watcher(vm, expOrFn, cb, options)\n if (options.immediate) {\n+ pushTarget()\n try {\n cb.call(vm, watcher.v...
2021-03-30T09:46:12
nodejs/node
8987ae843e034745f7247f63928d39f06ed7b116
af11867b4180b033320e4f0c7d52c2bcfb957852
doc,stream: remove wrong remark on readable.read The returned chunk is *never* longer than `size`. PR-URL: https://github.com/nodejs/node/pull/15014 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "doc/api/stream.md", "patch": "@@ -894,7 +894,7 @@ in object mode.\n The optional `size` argument specifies a specific number of bytes to read. If\n `size` bytes are not available to be read, `null` will be returned *unless*\n the stream has ended, in which case all of the data remaining in the in...
2017-08-24T14:45:19
golang/go
6ea19bb668ee603d1a41d3fd5ab77e130118fd8b
b1760f3a27ed9a0e99599bf028b2b48403f8c3fc
crypto/tls: rotate session keys in older TLS versions Also encode the certificates in a way that's more consistent with TLS 1.3 (with a 24 byte length prefix). Note that this will have an additional performance cost requiring clients to do a full handshake every 7 days where previously they were able to use the same ...
[ { "path": "src/crypto/tls/handshake_client_test.go", "patch": "@@ -952,6 +952,18 @@ func testResumption(t *testing.T, version uint16) {\n \t}\n \ttestResumeState(\"KeyChangeFinish\", true)\n \n+\t// Age the session ticket a bit, but not yet expired.\n+\tserverConfig.Time = func() time.Time { return time.Now...
2020-05-01T00:11:55
ggml-org/llama.cpp
e60f01d941bc5b7fae62dd57fee4cec76ec0ea6e
81086cd6a3ca1252f0dc0f938171648399179c53
server : fix division by zero when reporting stats (#16501)
[ { "path": "tools/server/server.cpp", "patch": "@@ -4226,7 +4226,7 @@ struct server_context {\n metrics.on_prompt_eval(slot);\n }\n \n- slot.t_token_generation = (t_current - slot.t_start_generation) / 1e3;\n+ slot.t_token_generation = std::ma...
2025-10-10T19:15:05
huggingface/transformers
f40b87de0ca234df61f76928956c4a2118c0b548
8278b1538ecc89dad8ebca510a31a86bc8645edb
[docs] Fix doc format (#28684) * fix hfoptions * revert changes to other files * fix
[ { "path": "docs/source/en/deepspeed.md", "patch": "@@ -956,6 +956,8 @@ engine = deepspeed.initialize(model=model, config_params=ds_config, ...)\n </hfoption>\n <hfoption id=\"non-pretrained model\">\n \n+[`HfDeepSpeedConfig`] is not required for ZeRO-1 or ZeRO-2.\n+\n ```py\n from transformers.integrations ...
2024-01-24T19:18:59
vuejs/vue
fb16d7bfa1e32c21a2f4b627fb8864d3c5c6b655
fa1f81e91062e9de6161708209cd7354733aa354
fix(vdom): avoid executing root level script tags (#11487) fix #11483
[ { "path": "src/compiler/codegen/index.js", "patch": "@@ -45,7 +45,8 @@ export function generate (\n options: CompilerOptions\n ): CodegenResult {\n const state = new CodegenState(options)\n- const code = ast ? genElement(ast, state) : '_c(\"div\")'\n+ // fix #11483, Root level <script> tags should not...
2021-03-30T09:43:34
rust-lang/rust
d22554a996a11bb1559ebf9e5bbd7db8f048fcad
d88ffcdb8bfc6f8b917574c1693eb9764a20eff5
fix: Alloc new errorcode E0803 for E0495 Signed-off-by: xizheyin <xizheyin@smail.nju.edu.cn>
[ { "path": "compiler/rustc_error_codes/src/error_codes/E0803.md", "patch": "@@ -0,0 +1,46 @@\n+A trait implementation returns a reference without an\n+explicit lifetime linking it to `self`.\n+It commonly arises in generic trait implementations\n+requiring explicit lifetime bounds.\n+\n+Erroneous code exampl...
2025-02-15T04:18:30
ggml-org/llama.cpp
68ee98ae181a5c83a5cc6261daeee69a1f588c15
cdb6da468cc33323955a523738d2e1675aeb5e9a
server : return HTTP 400 if prompt exceeds context length (#16486) In streaming mode when prompt exceeds context length, the server returns HTTP 200 status code with a JSON error in the body. This is very confusing and inconsistent with all other inference engines which return HTTP 4xx error in this case. This patch...
[ { "path": "tools/server/server.cpp", "patch": "@@ -3727,7 +3727,7 @@ struct server_context {\n }\n } else {\n if (slot.n_prompt_tokens() >= slot.n_ctx) {\n- send_error(slot, \"the request exceeds t...
2025-10-10T14:11:07
huggingface/transformers
8278b1538ecc89dad8ebca510a31a86bc8645edb
5d29530ea25fab34eaf193116512753609f2ff54
improve efficient training on CPU documentation (#28646) * update doc * revert * typo fix * refine * add dtypes * Update docs/source/en/perf_train_cpu.md Co-authored-by: Steven Liu <59462357+stevhliu@users.noreply.github.com> * Update docs/source/en/perf_train_cpu.md Co-authored-by: Steven Liu ...
[ { "path": "docs/source/en/perf_train_cpu.md", "patch": "@@ -18,10 +18,11 @@ rendered properly in your Markdown viewer.\n This guide focuses on training large models efficiently on CPU.\n \n ## Mixed precision with IPEX\n+Mixed precision uses single (fp32) and half-precision (bf16/fp16) data types in a model...
2024-01-24T17:07:13
nodejs/node
a1d34b3f491ce8e9c34cbc5ddf4e9052b0ed0a01
6cdffb18c55743c1d20b5abc50fbe9d607e00cf1
doc: threadpool size, and APIs using the pool Not knowing which APIs use libuv's threadpool can lead to surprising performance problems. Document the APIs, and also document UV_THREADPOOL_SIZE, which can be used to fix problems. PR-URL: https://github.com/nodejs/node/pull/14995 Reviewed-By: Brian White <mscdex@mscdex...
[ { "path": "doc/api/cli.md", "patch": "@@ -568,10 +568,35 @@ appended to if it does. If an error occurs while attempting to write the\n warning to the file, the warning will be written to stderr instead. This is\n equivalent to using the `--redirect-warnings=file` command-line flag.\n \n+### `UV_THREADPOOL_S...
2017-08-23T21:59:06
vuejs/vue
fa1f81e91062e9de6161708209cd7354733aa354
c42b7066cae7947e9fd877e495aeb38623c2354d
fix(props): support BigInt in props type validation (#11191)
[ { "path": "src/core/util/props.js", "patch": "@@ -147,7 +147,7 @@ function assertProp (\n }\n }\n \n-const simpleCheckRE = /^(String|Number|Boolean|Function|Symbol)$/\n+const simpleCheckRE = /^(String|Number|Boolean|Function|Symbol|BigInt)$/\n \n function assertType (value: any, type: Function, vm: ?Compo...
2021-03-30T09:41:10
golang/go
6ed4661807b219781d1aa452b7f210e21ad1974b
97240d546c3ae54871c7c196e504e4a0a06faf87
cmd/compile: optimize make+copy pattern to avoid memclr match: m = make([]T, x); copy(m, s) for pointer free T and x==len(s) rewrite to: m = mallocgc(x*elemsize(T), nil, false); memmove(&m, &s, x*elemsize(T)) otherwise rewrite to: m = makeslicecopy([]T, x, s) This avoids memclear and shading of pointers in the new...
[ { "path": "src/cmd/compile/internal/gc/builtin.go", "patch": "@@ -10,325 +10,329 @@ var runtimeDecls = [...]struct {\n \ttyp int\n }{\n \t{\"newobject\", funcTag, 4},\n-\t{\"panicdivide\", funcTag, 5},\n-\t{\"panicshift\", funcTag, 5},\n-\t{\"panicmakeslicelen\", funcTag, 5},\n-\t{\"panicmakeslicecap\", fu...
2018-10-23T11:50:07
rust-lang/rust
eaf22bcdce02cca4d71fb6619f89fe048026a8bd
84485a8568f864befdf0eacb7eb275068403dd40
fix: remove unnecessary conversion
[ { "path": "src/tools/rust-analyzer/crates/ide/src/syntax_highlighting/highlight.rs", "patch": "@@ -703,7 +703,7 @@ fn highlight_name_ref_by_syntax(\n };\n \n match parent.kind() {\n- EXTERN_CRATE => (HlTag::Symbol(SymbolKind::Module) | HlMod::CrateRoot).into(),\n+ EXTERN_CRATE => HlTag...
2025-02-15T04:18:18
ggml-org/llama.cpp
d00cbea63c671cd85a57adaa50abf60b3b87d86f
8328fd4bae76fc027f8ca0e9a05acd3788dabe3f
server : host-memory prompt caching (#16391) * minor : code style * server : fix prompt similarity calculation * server : initial host-memory prompt caching * cont * server : refactor * cont * cont : make the server task of the slot const * cont : minor [no ci] * server : cache prompts and checkpoints only for...
[ { "path": "common/arg.cpp", "patch": "@@ -1935,6 +1935,14 @@ common_params_context common_params_parser_init(common_params & params, llama_ex\n params.n_ctx_checkpoints = value;\n }\n ).set_env(\"LLAMA_ARG_CTX_CHECKPOINTS\").set_examples({LLAMA_EXAMPLE_SERVER}));\n+ add_opt(common...
2025-10-09T15:54:51
vuejs/vue
c42b7066cae7947e9fd877e495aeb38623c2354d
69401311f4bf55e58550a2134c33ceb8ae1f180e
fix(compiler): Allow BigInt usage in templates (#11152)
[ { "path": "src/core/instance/proxy.js", "patch": "@@ -9,7 +9,7 @@ if (process.env.NODE_ENV !== 'production') {\n const allowedGlobals = makeMap(\n 'Infinity,undefined,NaN,isFinite,isNaN,' +\n 'parseFloat,parseInt,decodeURI,decodeURIComponent,encodeURI,encodeURIComponent,' +\n- 'Math,Number,Date...
2021-03-30T09:40:44
nodejs/node
7efb8f7619100973877c660d0ee527ea3d92de8d
64f59be62fcf55e6d0e7019ee61c712196c6914f
n-api: implement promise Promise is implemented as a pair of objects. `napi_create_promise()` returns both a JavaScript promise and a newly allocated "deferred" in its out-params. The deferred is linked to the promise such that the deferred can be passed to `napi_resolve_deferred()` or `napi_reject_deferred()` to reje...
[ { "path": "doc/api/n-api.md", "patch": "@@ -42,6 +42,7 @@ The documentation for N-API is structured as follows:\n * [Working with JavaScript Functions][]\n * [Object Wrap][]\n * [Asynchronous Operations][]\n+* [Promises][]\n \n The N-API is a C API that ensures ABI stability across Node.js versions\n and di...
2017-08-24T10:33:26
golang/go
c19c0a047b849cc1d63745b2e5e8d467cb4e815b
36c94f842143782819933224a03afc990d1371ce
[dev.boringcrypto] misc/boring: add new releases to RELEASES file Fixes #38492 Change-Id: I3aaee7008f431d87ccc30f005a0ad5abed17e0da Reviewed-on: https://go-review.googlesource.com/c/go/+/228789 Reviewed-by: Katie Hockman <katie@golang.org>
[ { "path": "misc/boring/RELEASES", "patch": "@@ -81,3 +81,7 @@ go1.13.9b4 bb8a1014a32c linux-amd64 https://go-boringcrypto.storage.googleapis.c\n go1.13.9b4 bb8a1014a32c src https://go-boringcrypto.storage.googleapis.com/go1.13.9b4.src.tar.gz 536f0549e7bbdad32270a17d8a282667560b6da2d27a5e3580714338e70185ad\n...
2020-04-17T20:21:08
rust-lang/rust
ed870c3804bd9b8f358a2193cb9b4f1eaf821f3f
54a0f387ea8c7bcb79b8e40c074a484d31b51990
Update cargo Also add Zlib to Cargo's license exception
[ { "path": "src/tools/cargo", "patch": "@@ -1 +1 @@\n-Subproject commit 2928e32734b04925ee51e1ae88bea9a83d2fd451\n+Subproject commit ce948f4616e3d4277e30c75c8bb01e094910df39", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "src/tools/tidy/src/deps.rs", "patch": "@@...
2025-02-15T04:03:56
huggingface/transformers
5d29530ea25fab34eaf193116512753609f2ff54
738ec75c9028f88ae442bf031f0be80901ef5b26
Improved type hinting for all attention parameters (#28479) * Changed type hinting for all attention inputs to 'Optional[Tuple[torch.FloatTensor,...]] = None' * Fixed the ruff formatting issue * fixed type hinting for all hidden_states to 'Optional[Tuple[torch.FloatTensor, ...]] = None' * Changed type hinting...
[ { "path": "src/transformers/modeling_outputs.py", "patch": "@@ -43,8 +43,8 @@ class BaseModelOutput(ModelOutput):\n \"\"\"\n \n last_hidden_state: torch.FloatTensor = None\n- hidden_states: Optional[Tuple[torch.FloatTensor]] = None\n- attentions: Optional[Tuple[torch.FloatTensor]] = None\n+ ...
2024-01-24T16:47:34
ggml-org/llama.cpp
8328fd4bae76fc027f8ca0e9a05acd3788dabe3f
56b4795842d852152222ca7a2d4304008facf1b9
No markdown in cot (#16483) * fix: let the model think in plaintext * chore: npm run format + npm run build
[ { "path": "tools/server/webui/src/lib/components/app/chat/ChatMessages/ChatMessageThinkingBlock.svelte", "patch": "@@ -4,7 +4,6 @@\n \timport * as Collapsible from '$lib/components/ui/collapsible/index.js';\n \timport { buttonVariants } from '$lib/components/ui/button/index.js';\n \timport { Card } from '$l...
2025-10-09T15:36:29
vuejs/vue
69401311f4bf55e58550a2134c33ceb8ae1f180e
7c754623541c492161f7976203f0b1697a9a0113
fix(warn): better message with no constructors props (#9241) Co-authored-by: Siddhesh Mhadnak <siddhesh.mhadnak@outlook.com> Co-authored-by: Eduardo San Martin Morote <posva@users.noreply.github.com>
[ { "path": "src/core/util/props.js", "patch": "@@ -122,13 +122,14 @@ function assertProp (\n type = [type]\n }\n for (let i = 0; i < type.length && !valid; i++) {\n- const assertedType = assertType(value, type[i])\n+ const assertedType = assertType(value, type[i], vm)\n expected...
2021-03-30T09:38:13
nodejs/node
64f59be62fcf55e6d0e7019ee61c712196c6914f
d86eb5cadf831dbf5dd3b7a6fb63fd48f6853de3
deps: cherry-pick e020aae394 from V8 upstream Original commit message: Work around glibc thread-local storage bug glibc before 2.17 has a bug that makes it impossible to execute binaries that have single-byte thread-local variables: % node --version node: error while loading shared libra...
[ { "path": "deps/v8/src/trap-handler/handler-shared.cc", "patch": "@@ -23,7 +23,14 @@ namespace v8 {\n namespace internal {\n namespace trap_handler {\n \n-THREAD_LOCAL bool g_thread_in_wasm_code = false;\n+// We declare this as int rather than bool as a workaround for a glibc bug, in\n+// which the dynamic ...
2017-08-17T12:57:35
huggingface/transformers
0549000c5bf6c7249f411917f2a6f0b6d0f06da1
c5c69096b385bb9782fcc01251f20956670b4497
Use save_safetensor to disable safe serialization for XLA (#28669) * Use save_safetensor to disable safe serialization for XLA https://github.com/huggingface/transformers/issues/28438 * Style fixup
[ { "path": "src/transformers/trainer.py", "patch": "@@ -2910,13 +2910,19 @@ def _save_tpu(self, output_dir: Optional[str] = None):\n is_main_process=self.args.should_save,\n state_dict=model.state_dict(),\n save_function=xm.save,\n+ ...
2024-01-24T11:57:45
golang/go
97240d546c3ae54871c7c196e504e4a0a06faf87
cb14bd8306b7d5fb7b23afadb347dfb697b252af
crypto/hmac: speed up repeated operations with the same key Speed up repeated HMAC operations with the same key by not recomputing the first block of the inner and outer hashes in Reset and Sum, saving two block computations each time. This is a significant win for applications which hash many small messages with the...
[ { "path": "src/crypto/hmac/hmac.go", "patch": "@@ -34,18 +34,36 @@ import (\n // opad = 0x5c byte repeated for key length\n // hmac = H([key ^ opad] H([key ^ ipad] text))\n \n+// Marshalable is the combination of encoding.BinaryMarshaler and\n+// encoding.BinaryUnmarshaler. Their method definitions are repe...
2016-08-17T04:37:20
ggml-org/llama.cpp
aa4711d369b0d4adb6802b98ad6ea362f838710e
d80d6d2400b8faa80654c723cb5bdf9fc8f4db06
CANN: Improve ACL graph matching (#16166) * CANN: improve ACL graph matching Record `ne` and `nb` information for src tensors and include them in the graph matching check. This enhances the robustness of ACL graph matching by preventing incorrect matches when src tensors share the same data address but differ in shap...
[ { "path": "ggml/src/ggml-cann/common.h", "patch": "@@ -341,11 +341,18 @@ class cann_task_queue {\n \n #ifdef USE_ACL_GRAPH\n struct ggml_graph_node_properties {\n+ // dst tensor\n void * node_address;\n- ggml_op node_op;\n int64_t ne[GGML_MAX_DIMS];\n size_t nb[GGML_MAX_DIMS];\n+\n+ // ...
2025-10-09T07:50:25
vuejs/vue
7c754623541c492161f7976203f0b1697a9a0113
2488a6a1e9779f0cca4a64163ef44ac30530a450
fix(types): changed expression type to optional string (#11189) fix #10871
[ { "path": "types/test/options-test.ts", "patch": "@@ -482,3 +482,20 @@ Vue.component('functional-component-v-model', {\n \n \n Vue.component('async-es-module-component', () => import('./es-module'))\n+\n+Vue.component('directive-expression-optional-string', {\n+ render(createElement) {\n+ return createE...
2021-03-30T09:37:56
huggingface/transformers
c5c69096b385bb9782fcc01251f20956670b4497
5f81266fb0b444f896fea9322d7c41368abd8526
Exclude the load balancing loss of padding tokens in Mixtral-8x7B (#28517) * fix the function load_balancing_loss_func in Mixtral_Moe to include attention_mask * format code using black and ruff * skip computing mask if attention_mask=None * add tests for load balancing loss Mixtral-Moe * fix assert loss i...
[ { "path": "src/transformers/models/mixtral/modeling_mixtral.py", "patch": "@@ -74,7 +74,9 @@\n _CONFIG_FOR_DOC = \"MixtralConfig\"\n \n \n-def load_balancing_loss_func(gate_logits: torch.Tensor, num_experts: torch.Tensor = None, top_k=2) -> float:\n+def load_balancing_loss_func(\n+ gate_logits: torch.Ten...
2024-01-24T09:12:14
nodejs/node
9e0f771224759484bd95358f02de650916287488
52fe7626068c7110696104139a063942bdb3fd83
buffer: improve error messages Some errors in buffer module losed some arguments or received wrong arguments when they were created. This PR added these losing arguments and fixed the wrong arguments. PR-URL: https://github.com/nodejs/node/pull/14975 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Matteo ...
[ { "path": "lib/buffer.js", "patch": "@@ -224,7 +224,8 @@ Buffer.from = function from(value, encodingOrOffset, length) {\n throw new errors.TypeError(\n 'ERR_INVALID_ARG_TYPE',\n 'first argument',\n- ['string', 'buffer', 'arrayBuffer', 'array', 'array-like object']\n+ ['string', 'buffer', 'ar...
2017-08-22T11:57:26
ggml-org/llama.cpp
b2602137557b2b28a39e03612717d85ead9a6f5a
e08db4259521de493b7aeb49dadf29ebd1ee966a
[SYCL] refactor soft_max, add soft_max_back (#16472) * refactor to support soft_max_ext * fix error and support soft_max_back * rm unused functions * fix format issue --------- Co-authored-by: Zhang Jianyu <zhang.jianyu@outlook.com>
[ { "path": "ggml/src/ggml-sycl/common.hpp", "patch": "@@ -197,6 +197,7 @@ struct sycl_device_info {\n int cc; // compute capability\n // int nsm; // number of streaming multiprocessors\n // size_t smpb; // max. shared memory per block\n+ si...
2025-10-09T07:25:11
golang/go
cb14bd8306b7d5fb7b23afadb347dfb697b252af
66ee97590ce967c8210eedfb3194b1140740a792
crypto/tls: fix sessionState marshaling Change-Id: I2910f322256c521dd03b1dc23d117defdcd0aa54 Reviewed-on: https://go-review.googlesource.com/c/go/+/232662 Run-TryBot: Katie Hockman <katie@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Filippo Valsorda <filippo@golang.org>
[ { "path": "src/crypto/tls/ticket.go", "patch": "@@ -23,8 +23,8 @@ type sessionState struct {\n \tvers uint16\n \tcipherSuite uint16\n \tmasterSecret []byte // opaque master_secret<1..2^16-1>;\n-\t// struct { opaque certificate<1..2^32-1> } Certificate;\n-\tcertificates [][]byte // Certificate certi...
2020-05-06T23:06:29