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
golang/go
334d410ae35a28d770fe43009ca346b4387c1399
33ff63da4ec9cd456cab65b034b80a2fde4ebdea
cmd/compile: fix incorrect block for s390x Select1 op When inserting Select0 and Select1 ops we need to ensure that they live in the same block as their argument. This is because they need to be scheduled immediately after their argument for register and flag allocation to work correctly. Fixes #38356. Change-Id: Ib...
[ { "path": "src/cmd/compile/internal/ssa/gen/S390X.rules", "patch": "@@ -1218,10 +1218,17 @@\n (FCMP (FMOVDconst [c]) x) && auxTo64F(c) == 0 -> (InvertFlags (LTDBR <v.Type> x))\n (FCMPS (FMOVSconst [c]) x) && auxTo32F(c) == 0 -> (InvertFlags (LTEBR <v.Type> x))\n \n-// FSUB, FSUBS, FADD, FADDS now produce a ...
2020-04-12T09:45:24
vuejs/vue
ae6dcd63a017059644502f8741d8a514f3e9cf84
805a4fd67602f1ac2a063284c4e2ce35be07815e
fix(ssr): remove trailing hash in webpack module identifier when generating client manifest
[ { "path": "src/server/webpack-plugin/client.js", "patch": "@@ -43,7 +43,8 @@ export default class VueSSRClientPlugin {\n if (!chunk || !chunk.files) {\n return\n }\n- const files = manifest.modules[hash(m.identifier)] = chunk.files.map(fileToIndex)\n+ const ...
2018-04-05T00:08:12
rust-lang/rust
724b85ef11213e128985a22c073c7373d80fd792
340e9a3364c4f7338dde7714953208286b646941
Fix postfix completions inside macros Previously the receiver text was taken directly from the AST, which in macros is missing trivia, leading to corruption (or just unintended replacement of user code). Now we upmap the range, and extract the original file text in it.
[ { "path": "src/tools/rust-analyzer/crates/ide-completion/src/completions/postfix.rs", "patch": "@@ -2,17 +2,18 @@\n \n mod format_like;\n \n-use hir::ItemInNs;\n-use ide_db::text_edit::TextEdit;\n+use base_db::SourceDatabase;\n+use hir::{ItemInNs, Semantics};\n use ide_db::{\n documentation::{Documentat...
2025-02-10T13:47:31
nodejs/node
2e7ccc252e6c76835e892d135a29c45eb91ab5a4
d3e07e3667670a80cc9597e62ae7280f4d5a47ce
doc: fix verify in crypto.md PR-URL: https://github.com/nodejs/node/pull/14469 Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
[ { "path": "doc/api/crypto.md", "patch": "@@ -1074,7 +1074,7 @@ console.log(verify.verify(publicKey, signature));\n // Prints: true or false\n ```\n \n-### verifier.update(data[, inputEncoding])\n+### verify.update(data[, inputEncoding])\n <!-- YAML\n added: v0.1.92\n changes:\n@@ -1093,7 +1093,7 @@ encoding...
2017-07-25T07:16:01
ggml-org/llama.cpp
60e5eee31f1af9bb579ac45380e3857d610020b9
009b709d6efd24820ac67765ed339a72dc797814
chat : Seed OSS thinking + tool call support (#15552) * Reasoning and tool-calling support for Seed OSS * Fix grammar and partial parsing * Whitespace * New chat template * Update common/chat.cpp Co-authored-by: Sigbjørn Skjæret <sigbjorn.skjaeret@scala.com> * Update common/chat.cpp Co-authored-by: Sigbjørn Skj...
[ { "path": "common/chat.cpp", "patch": "@@ -622,6 +622,7 @@ const char * common_chat_format_name(common_chat_format format) {\n case COMMON_CHAT_FORMAT_COMMAND_R7B: return \"Command R7B\";\n case COMMON_CHAT_FORMAT_GRANITE: return \"Granite\";\n case COMMON_CHAT_FORMAT_GPT_OSS: return...
2025-08-29T12:53:41
huggingface/transformers
7f07c356a46740f50809ef761b9032fe45361807
b31905d1f61034bb147466ba7fd281ab668e8333
Fix CLAP converting script (#27153) * update converting script * make style
[ { "path": "src/transformers/models/clap/convert_clap_original_pytorch_to_hf.py", "patch": "@@ -16,8 +16,7 @@\n import argparse\n import re\n \n-import torch\n-from CLAP import create_model\n+from laion_clap import CLAP_Module\n \n from transformers import AutoFeatureExtractor, ClapConfig, ClapModel\n \n@@ -...
2023-12-08T13:48:29
vuejs/vue
8227fb35240ab1f301c30a6ad5d4d25071fa7996
1bd6196fb234c28754d9a27095afe0b5b84990ad
fix: add missing `asyncMeta` during VNode cloning (#7861)
[ { "path": "src/core/vdom/vnode.js", "patch": "@@ -103,6 +103,7 @@ export function cloneVNode (vnode: VNode): VNode {\n cloned.fnContext = vnode.fnContext\n cloned.fnOptions = vnode.fnOptions\n cloned.fnScopeId = vnode.fnScopeId\n+ cloned.asyncMeta = vnode.asyncMeta\n cloned.isCloned = true\n retu...
2018-03-23T23:13:10
golang/go
33ff63da4ec9cd456cab65b034b80a2fde4ebdea
cdaf8b6469b3b17ce296199ed31dca2c0816bcc6
cmd/cgo: use consistent tag for a particular struct For #31891 Fixes #38408 Change-Id: Ie7498c2cab728ae798e66e7168425e16b063520e Reviewed-on: https://go-review.googlesource.com/c/go/+/228102 Reviewed-by: Tobias Klauser <tobias.klauser@gmail.com>
[ { "path": "misc/cgo/test/testx.go", "patch": "@@ -124,6 +124,11 @@ typedef struct {\n } Issue31891B;\n \n void callIssue31891(void);\n+\n+typedef struct {\n+\tint i;\n+} Issue38408, *PIssue38408;\n+\n */\n import \"C\"\n \n@@ -552,3 +557,8 @@ func useIssue31891B(c *C.Issue31891B) {}\n func test31891(t *test...
2020-04-14T00:47:47
nodejs/node
06a684aab4422ca0cc455956d78eb76fee9ee076
1b7372f2fb55f704b885e1097e2ec0381068c855
tls: fix empty issuer/subject/infoAccess parsing Also issuerCertificate but that did not fit on the status line. Fixes: https://github.com/nodejs/node/issues/11771 PR-URL: https://github.com/nodejs/node/pull/14473 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By:...
[ { "path": "lib/_tls_common.js", "patch": "@@ -169,12 +169,12 @@ exports.translatePeerCertificate = function translatePeerCertificate(c) {\n if (!c)\n return null;\n \n- if (c.issuer) c.issuer = tls.parseCertString(c.issuer);\n- if (c.issuerCertificate && c.issuerCertificate !== c) {\n+ if (c.issuer...
2017-07-24T12:36:36
ggml-org/llama.cpp
e8d99dd0b67f2ecc1e45fca8074a3a18c3e036d2
a8bca68f727844e7dcf24a956003b3c2039ea563
nvidia nemotron nano v2 (nemotronh) (#15507) * feat: Add NEMOTRONH to python arch enum https://github.com/ggml-org/llama.cpp/issues/nemotron-nano-15409 Branch: gabe-l-hart/nvidia-nemotron-nano-15409 Signed-off-by: Gabe Goodhart <ghart@us.ibm.com> * feat: Add NEMOTRONH to c++ arch enum https://github.com/ggml-org/l...
[ { "path": "convert_hf_to_gguf.py", "patch": "@@ -7546,9 +7546,13 @@ def __init__(self, *args, **kwargs):\n ]\n \n # n_group and d_inner are used during reshape_tensors for mamba2\n- self.d_model = self.find_hparam([\"hidden_size\", \"d_model\"])\n- self.n_group = self.find_hpar...
2025-08-29T00:39:31
vuejs/vue
1bd6196fb234c28754d9a27095afe0b5b84990ad
7a145d86430bad65271f4d6ab1344b215fefe52a
fix(codegen): support IE11 and Edge use of "Esc" key (#7887) Closes #7880
[ { "path": "src/compiler/codegen/events.js", "patch": "@@ -18,7 +18,8 @@ const keyCodes: { [key: string]: number | Array<number> } = {\n \n // KeyboardEvent.key aliases\n const keyNames: { [key: string]: string | Array<string> } = {\n- esc: 'Escape',\n+ // #7880: IE11 and Edge use `Esc` for Escape key name...
2018-03-23T23:08:55
huggingface/transformers
b31905d1f61034bb147466ba7fd281ab668e8333
3ac9945e56cc10092492e3cc3e656a5fc0350b97
Fix remaining issues in beam score calculation (#27808) * Fix issues in add and is_done for BeamHypotheses * make newly added arguments optional for better compatibility * Directly use cur_len as generated_len, add note for retrocompatibility * update test expectation * make cur_len represents the length o...
[ { "path": "src/transformers/generation/beam_search.py", "patch": "@@ -224,8 +224,8 @@ def process(\n group_index: Optional[int] = 0,\n decoder_prompt_len: Optional[int] = 0,\n ) -> Dict[str, torch.Tensor]:\n- # add up to the length which the next_scores is calculated on\n- ...
2023-12-08T13:14:16
golang/go
ae253719a2f5ff26899d6c989fcfed3bbef3f926
cd42fa581ab860af32672fb1e0eb5de19b4986e1
std,cmd: update golang.org/x/crypto to v0.0.0-20200414155820-4f8f47aa7992 That includes https://golang.org/cl/228223 Also, update src/vendor/golang.org/x/crypto to match vendored golang.org/x/crypto version. Otherwise cmd/internal/goobj.TestDependencyVersionsConsistent fails. Fixes #27147 Change-Id: I4a3f1502fdee88...
[ { "path": "src/cmd/go.mod", "patch": "@@ -5,7 +5,7 @@ go 1.14\n require (\n \tgithub.com/google/pprof v0.0.0-20200229191704-1ebb73c60ed3\n \tgolang.org/x/arch v0.0.0-20191126211547-368ea8f32fff\n-\tgolang.org/x/crypto v0.0.0-20200214034016-1d94cc7ab1c6\n+\tgolang.org/x/crypto v0.0.0-20200414155820-4f8f47aa7...
2020-04-14T16:15:52
rust-lang/rust
105cd79578c5ad4326d83afa6ff1c962745d8d8a
35f5731d62049ab8dfb3686bd0328ee796e9f8c5
Migrate away from nonfunctional `fenv` stubs Many routines have some form of handling for rounding mode and floating point exceptions, which are implemented via a combination of stubs and `force_eval!` use. This is suboptimal, however, because: 1. Rust does not interact with the floating point environment, so most ...
[ { "path": "library/compiler-builtins/libm/src/math/cbrt.rs", "patch": "@@ -5,12 +5,15 @@\n */\n \n use super::Float;\n-use super::fenv::Rounding;\n-use super::support::cold_path;\n+use super::support::{FpResult, Round, cold_path};\n \n /// Compute the cube root of the argument.\n #[cfg_attr(all(test, asser...
2025-02-10T09:17:54
ggml-org/llama.cpp
a8bca68f727844e7dcf24a956003b3c2039ea563
c97dc093912ad014f6d22743ede0d4d7fd82365a
fix: Compute the full sum in llama-eval-callback, not just the sum of printed values (#15637) This makes it much easier to compare between llama.cpp and transformers! https://github.com/ggml-org/llama.cpp/issues/nemotron-nano-15409 Branch: gabe-l-hart/nvidia-nemotron-nano-15409 Signed-off-by: Gabe Goodhart <ghart@us...
[ { "path": "examples/eval-callback/eval-callback.cpp", "patch": "@@ -28,9 +28,40 @@ static std::string ggml_ne_string(const ggml_tensor * t) {\n return str;\n }\n \n+static float ggml_get_float_value(uint8_t * data, ggml_type type, const size_t * nb, size_t i0, size_t i1, size_t i2, size_t i3) {\n+ si...
2025-08-28T20:27:36
nodejs/node
1b7372f2fb55f704b885e1097e2ec0381068c855
1fa67c7fc2ef9fc226545f5de22c51964dbc27e1
src: replace ASSERT with CHECK Builds always have asserts enabled so there is no point distinguishing between debug-only checks and run-time checks. Replace calls to ASSERT and friends with their CHECK counterparts. Fixes: https://github.com/nodejs/node/issues/14461 PR-URL: https://github.com/nodejs/node/pull/14474 ...
[ { "path": "node.gyp", "patch": "@@ -639,16 +639,7 @@\n '<(OBJ_TRACING_PATH)<(OBJ_SEPARATOR)trace_event.<(OBJ_SUFFIX)',\n ],\n \n- 'defines': [\n- # gtest's ASSERT macros conflict with our own.\n- 'GTEST_DONT_DEFINE_ASSERT_EQ=1',\n- 'GTEST_DONT_DEFINE_ASSERT_GE=1',\n- ...
2017-07-25T10:20:40
vuejs/vue
7a145d86430bad65271f4d6ab1344b215fefe52a
653aac2c57d15f0e93a2c1cc7e6fad156658df19
fix(observer): invoke getters on initial observation if setter defined (#7828)
[ { "path": "src/core/observer/index.js", "patch": "@@ -147,10 +147,10 @@ export function defineReactive (\n \n // cater for pre-defined getter/setters\n const getter = property && property.get\n- if (!getter && arguments.length === 2) {\n+ const setter = property && property.set\n+ if ((!getter || set...
2018-03-23T23:08:02
huggingface/transformers
3ac9945e56cc10092492e3cc3e656a5fc0350b97
4c5ed1d0c942dd4a60e1f99d6636519c40f7c904
Fix beam score calculation issue for Tensorflow version (#27814) * Fix beam score calculation issue for tensorflow version * fix transition score computation error * make cur_len represent the entire sequence length including decoder prompt
[ { "path": "src/transformers/generation/tf_utils.py", "patch": "@@ -2268,6 +2268,8 @@ def unflatten_beam_dim(tensor, num_beams, batch_axis=0):\n \n # 3. init tensors to use for \"xla-compileable\" generate function\n batch_size, num_beams, cur_len = shape_list(input_ids)\n+ # store the...
2023-12-08T13:10:13
golang/go
2db4cc38a02d6e74c45365344c6d8738fdb38a00
54cbb6b0c2995b93209094eb35b45d9d7ddf9b26
cmd/compile: improve generated code for concrete cases in type switches Consider switch x:= x.(type) { case int: // int stmts case error: // error stmts } Prior to this change, we lowered this roughly as: if x, ok := x.(int); ok { // int stmts } else if x, ok := x.(error); ok { // error stmts } x, ok := x....
[ { "path": "src/cmd/compile/internal/gc/ssa.go", "patch": "@@ -2549,7 +2549,7 @@ func (s *state) expr(n *Node) *ssa.Value {\n \t\treturn s.load(n.Type, addr)\n \n \tcase ODEREF:\n-\t\tp := s.exprPtr(n.Left, false, n.Pos)\n+\t\tp := s.exprPtr(n.Left, n.Left.Bounded(), n.Pos)\n \t\treturn s.load(n.Type, p)\n \...
2020-04-13T00:34:33
ggml-org/llama.cpp
6c442f42ff25564a0cd6b1435d9abc1b0178eac5
73804145ab6c06888e314046abf08f66a0133679
ggml-cpu: fix invalid hsum build in debug s390x (#15634) Signed-off-by: Aaron Teo <aaron.teo1@ibm.com>
[ { "path": "ggml/src/ggml-cpu/ggml-cpu-impl.h", "patch": "@@ -489,7 +489,7 @@ inline static int16x8_t vec_padd_s16(int16x8_t a, int16x8_t b) {\n /**\n * @see https://github.com/ggml-org/llama.cpp/pull/14037\n */\n-inline float vec_hsum(float32x4_t v) {\n+inline static float vec_hsum(float32x4_t v) {\n ...
2025-08-28T14:39:27
vuejs/vue
f43ce3a5d8f73e273f2d03c9d86ea5662cda481a
b7445a2b945dcded287601ace8e711ab5cf35ab5
fix: invoke component node create hooks before insertion (#7823) fix #7531
[ { "path": "flow/options.js", "patch": "@@ -2,8 +2,6 @@ declare type InternalComponentOptions = {\n _isComponent: true;\n parent: Component;\n _parentVnode: VNode;\n- _parentElm: ?Node;\n- _refElm: ?Node;\n render?: Function;\n staticRenderFns?: Array<Function>\n };\n@@ -81,8 +79,6 @@ declare typ...
2018-03-23T23:03:17
huggingface/transformers
4c5ed1d0c942dd4a60e1f99d6636519c40f7c904
fe8d1302c7d5852ef96a9fb0fdd2a81eb3e1bdc6
fix: non-atomic checkpoint save (#27820)
[ { "path": "src/transformers/trainer.py", "patch": "@@ -2332,13 +2332,21 @@ def _save_checkpoint(self, model, trial, metrics=None):\n \n run_dir = self._get_output_dir(trial=trial)\n output_dir = os.path.join(run_dir, checkpoint_folder)\n- self.save_model(output_dir, _internal_call=Tru...
2023-12-08T13:08:54
nodejs/node
1fa67c7fc2ef9fc226545f5de22c51964dbc27e1
714e5cbedf013ea6fa5f7d99b8783a4abc1b9f1c
test: make flaky crypto test more deterministic Fixes: https://github.com/nodejs/node/issues/14424 PR-URL: https://github.com/nodejs/node/pull/14451 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Refael Ackermann <refack@gmail.com>
[ { "path": "test/parallel/test-crypto-dh-leak.js", "patch": "@@ -1,4 +1,4 @@\n-// Flags: --expose-gc\n+// Flags: --expose-gc --nocrankshaft --noconcurrent_recompilation\n 'use strict';\n \n const common = require('../common');", "additions": 1, "deletions": 1, "language": "JavaScript" } ]
2017-07-24T14:18:12
golang/go
2222e0601a367ab3e2da52c84cb8d4150dd9c705
34e38ac99f025549599ea7e1ad2e80026ae16174
cmd/compile: mark static slice backing arrays as noalg file before after Δ % addr2line 4413296 4404160 -9136 -0.207% api 5982648 5978232 -4416 -0.074% asm 5075640 5057656 -17984 -0.354% buildid 2886200 2881304 -4896 -0.170% cgo 4854168 4844936 ...
[ { "path": "src/cmd/compile/internal/gc/sinit.go", "patch": "@@ -217,6 +217,7 @@ func (s *InitSchedule) staticassign(l *Node, r *Node) bool {\n \t\t// Init slice.\n \t\tbound := r.Right.Int64()\n \t\tta := types.NewArray(r.Type.Elem(), bound)\n+\t\tta.SetNoalg(true)\n \t\ta := staticname(ta)\n \t\ts.inittemp...
2020-04-14T15:16:51
ggml-org/llama.cpp
73804145ab6c06888e314046abf08f66a0133679
c8d0d14e77c3c45df5cbbddde9c2b4c377ec4e7a
ggml : fix SSM_SCAN for n_groups > 1 (#15625)
[ { "path": "ggml/src/ggml-cpu/ops.cpp", "patch": "@@ -9003,8 +9003,7 @@ static void ggml_compute_forward_ssm_scan_f32(\n GGML_ASSERT(src4->nb[0] == sizeof(float));\n GGML_ASSERT(src5->nb[0] == sizeof(float));\n GGML_ASSERT(src6->nb[0] == sizeof(int32_t));\n- // allows optimizing the modulo sin...
2025-08-28T14:11:36
vuejs/vue
b7445a2b945dcded287601ace8e711ab5cf35ab5
de42278d34f6a800cec5c7eb781c1b8b83a829dd
fix: beforeUpdate should be called before render and allow state mutation (#7822) fix #7481
[ { "path": "src/core/instance/lifecycle.js", "patch": "@@ -50,9 +50,6 @@ export function initLifecycle (vm: Component) {\n export function lifecycleMixin (Vue: Class<Component>) {\n Vue.prototype._update = function (vnode: VNode, hydrating?: boolean) {\n const vm: Component = this\n- if (vm._isMount...
2018-03-23T23:03:00
huggingface/transformers
56be5e80e6cd5264012eb9ea84bd589233a503d9
307a7d0be81f44734ed4ef4bc5613ac4d7f8bdec
Fix: Raise informative exception when `prefix_allowed_tokens_fn` return empty set of tokens (#27797) Co-authored-by: Arthur <48595927+ArthurZucker@users.noreply.github.com>
[ { "path": "src/transformers/generation/logits_process.py", "patch": "@@ -1229,7 +1229,14 @@ def __call__(self, input_ids: torch.LongTensor, scores: torch.FloatTensor) -> to\n mask = torch.full_like(scores, -math.inf)\n for batch_id, beam_sent in enumerate(input_ids.view(-1, self._num_beams, ...
2023-12-08T10:25:49
nodejs/node
77ca3cb47480543cb496e3012ab0c3b219dc57a3
9926dfebc88c22a1a9bdef55f7530c74124f63aa
n-api: add support for DataView Basic support for Dataview is added in this commit. This is achieved by using three functions, napi_create_dataview(), napi_is_dataview() and napi_get_dataview_info(). PR-URL: https://github.com/nodejs/node/pull/14382 Fixes: https://github.com/nodejs/node/issues/13926 Reviewed-By: Anna...
[ { "path": "doc/api/n-api.md", "patch": "@@ -1331,6 +1331,40 @@ JavaScript TypedArray Objects are described in\n [Section 22.2](https://tc39.github.io/ecma262/#sec-typedarray-objects)\n of the ECMAScript Language Specification.\n \n+\n+#### *napi_create_dataview*\n+<!-- YAML\n+added: REPLACEME\n+-->\n+\n+```...
2017-07-19T20:20:43
rust-lang/rust
d40ed632b6909f4ebf0b3cbda98615b9c2acd65b
e256a21734dbd88bed0ec6934e5d6b2ab2754927
Fix bootstrap `build_all` test
[ { "path": "src/bootstrap/src/core/builder/tests.rs", "patch": "@@ -647,7 +647,7 @@ mod dist {\n let mut builder = Builder::new(&build);\n builder.run_step_descriptions(\n &Builder::get_step_descriptions(Kind::Build),\n- &[\"compiler/rustc\".into(), \"library\".into()],...
2025-02-03T22:09:24
ggml-org/llama.cpp
c8d0d14e77c3c45df5cbbddde9c2b4c377ec4e7a
84ab83cc0b4b7e769451ee48e4c7d1acef91ef25
kv-cache : fix find_slot to not search for continuous slot (#15638) ggml-ci
[ { "path": "src/llama-kv-cache.cpp", "patch": "@@ -540,7 +540,7 @@ llama_kv_cache::slot_info_vec_t llama_kv_cache::prepare(const std::vector<llama_\n \n for (const auto & ubatch : ubatches) {\n // only find a suitable slot for the ubatch. don't modify the cells yet\n- const auto sinfo_new ...
2025-08-28T14:09:05
vuejs/vue
de42278d34f6a800cec5c7eb781c1b8b83a829dd
a7d190d2491a573e8bdfcc05d70d341d191ea213
fix: ensure init/prepatch hooks are still repsected this address a regression introduced in 984927a which causes vue-router#1338 to resurface.
[ { "path": "src/core/vdom/create-component.js", "patch": "@@ -238,8 +238,21 @@ function installComponentHooks (data: VNodeData) {\n const hooks = data.hook || (data.hook = {})\n for (let i = 0; i < hooksToMerge.length; i++) {\n const key = hooksToMerge[i]\n- hooks[key] = componentVNodeHooks[key]\n...
2018-03-23T23:01:24
golang/go
f3424ceff2fa48615ed98580f337ab044925c940
201cb046b745f8bb00e3d382290190c74ba7b7e1
go/types: use same local variable consistently (minor cleanup) Currently this CL has no effect because V == x.typ in the affected code. But if we should ever manipulate V (e.g., to support some form of lazy evaluation of the type), not using V consistently would lead to a subtle bug. Change-Id: I465e72d18bbd2b6cd8fcb...
[ { "path": "src/go/types/operand.go", "patch": "@@ -252,7 +252,7 @@ func (x *operand) assignableTo(check *Checker, T Type, reason *string) bool {\n \n \t// T is an interface type and x implements T\n \tif Ti, ok := Tu.(*Interface); ok {\n-\t\tif m, wrongType := check.missingMethod(x.typ, Ti, true); m != nil ...
2020-04-14T04:57:41
huggingface/transformers
307a7d0be81f44734ed4ef4bc5613ac4d7f8bdec
633215ba58fe5114d8c8d32e415a04600e010701
[⚠️ removed a default argument] Make `AttentionMaskConverter` compatible with `torch.compile(..., fullgraph=True)` (#27868) * remove bugged torch.float32 default * add test * fix tests * fix test * fix doc
[ { "path": "src/transformers/modeling_attn_mask_utils.py", "patch": "@@ -33,7 +33,7 @@ class AttentionMaskConverter:\n >>> from transformers.modeling_attn_mask_utils import AttentionMaskConverter\n \n >>> converter = AttentionMaskConverter(True)\n- >>> converter.to_4d(torch.tensor([[0, 0, 0, 1, 1]...
2023-12-08T09:44:47
nodejs/node
012206e92dafa216d4082c5991d5599dc504cb50
2e864df6bf48cccb58e74b195b3a36f37d11f3d1
inspector: implement V8Inspector timer This timer is currently only used by a profiler. Note that the timer invocation will not interrupt JavaScript code. Fixes: https://github.com/nodejs/node/issues/11401 PR-URL: https://github.com/nodejs/node/pull/14346 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: ...
[ { "path": "src/inspector_agent.cc", "patch": "@@ -12,6 +12,7 @@\n #include \"libplatform/libplatform.h\"\n \n #include <string.h>\n+#include <unordered_map>\n #include <vector>\n \n #ifdef __POSIX__\n@@ -39,6 +40,7 @@ using v8::Value;\n using v8_inspector::StringBuffer;\n using v8_inspector::StringView;\n u...
2017-07-18T00:08:46
ggml-org/llama.cpp
84ab83cc0b4b7e769451ee48e4c7d1acef91ef25
55042b3692cb1467c9ee15c62c4a9fbf180f89e3
model : jina-embeddings-v3 support (#13693) * initial jina-embeddings-v3 support * initial jina-embeddings-v3 support * initial jina-embeddings-v3 support * fix vocab parsing with only tokenizer.json * set mask token lstrip attribute * additional unk_token_id fallback just in case [no ci] * revert vocab_size() c...
[ { "path": "common/arg.cpp", "patch": "@@ -2555,15 +2555,15 @@ common_params_context common_params_parser_init(common_params & params, llama_ex\n {\"--lora\"}, \"FNAME\",\n \"path to LoRA adapter (can be repeated to use multiple adapters)\",\n [](common_params & params, const std::str...
2025-08-28T13:49:50
huggingface/transformers
633215ba58fe5114d8c8d32e415a04600e010701
0ea42ef0f9f71deba7775ead33afa0e493823d60
Generate: New `Cache` abstraction and Attention Sinks support (#26681) * Draft version of new KV Caching This should allow Attention Sinks (https://github.com/tomaarsen/attention_sinks) / StreamingLLM (https://arxiv.org/abs/2309.17453) to be easily implemented in a third-party or in transformers directly * Add...
[ { "path": "docs/source/en/internal/generation_utils.md", "patch": "@@ -368,3 +368,20 @@ A [`Constraint`] can be used to force the generation to include specific tokens\n [[autodoc]] TextStreamer\n \n [[autodoc]] TextIteratorStreamer\n+\n+## Caches\n+\n+[[autodoc]] Cache\n+ - update\n+\n+[[autodoc]] Dynam...
2023-12-08T08:00:17
golang/go
201cb046b745f8bb00e3d382290190c74ba7b7e1
5a706d163d332ec3a83e38849efbaf550a9da7ab
time: quote original value in errors returned by ParseDuration Quote original values passed as substring of ParseError.Message. Improves the user experience of ParseDuration by making it quote its original argument, for example: _, err := time.ParseDuration("for breakfast") will now produce an error, which when p...
[ { "path": "src/time/example_test.go", "patch": "@@ -379,7 +379,7 @@ func ExampleParse() {\n \t// 2013-02-03 00:00:00 +0000 UTC\n \t// 2006-01-02 15:04:05 +0000 UTC\n \t// 2006-01-02 15:04:05 +0700 +0700\n-\t// error parsing time \"2006-01-02T15:04:05Z07:00\": extra text: 07:00\n+\t// error parsing time \"20...
2020-04-11T22:21:22
vuejs/vue
7b387390aa917edffc0eabce0b4186ea1ef40e2c
17d7a5f6bd28dda247ddeb02ed66ebc92182ded9
fix: correct the `has` implementation in the `_renderProxy` (#7878) It's feasible that someone might ask if something other than a string is in the proxy such as a `Symbol` that lacks a `charAt` method. This aligns the implementation with the `getHandler`.
[ { "path": "src/core/instance/proxy.js", "patch": "@@ -45,7 +45,7 @@ if (process.env.NODE_ENV !== 'production') {\n const hasHandler = {\n has (target, key) {\n const has = key in target\n- const isAllowed = allowedGlobals(key) || key.charAt(0) === '_'\n+ const isAllowed = allowedGlobal...
2018-03-22T13:53:28
nodejs/node
bd65767afda836f9a5bbea7c63701d209fa81d03
7849b528108d724faf4b0177d176aafa0b0c6890
inspector: send messages after the Node is done Fixes: https://github.com/nodejs/node/issues/14432 PR-URL: https://github.com/nodejs/node/pull/14463 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "src/inspector_io.cc", "patch": "@@ -429,8 +429,6 @@ void InspectorIo::MainThreadReqAsyncCb(uv_async_t* req) {\n \n void InspectorIo::Write(TransportAction action, int session_id,\n const StringView& inspector_message) {\n- if (state_ == State::kShutDown)\n- return;\n ...
2017-07-24T23:00:08
ggml-org/llama.cpp
d35a1e8c41f747548775225973a99507896a8c61
46d9caa27a0281150e8cf082308c0f9e7576ebe5
cli : change log to warning to explain reason for stopping (#15604) * Change to warn instead of debug, to explain reason for stopping. * Update tools/main/main.cpp Fix printing --2 Co-authored-by: Georgi Gerganov <ggerganov@gmail.com> --------- Co-authored-by: Georgi Gerganov <ggerganov@gmail.com>
[ { "path": "tools/main/main.cpp", "patch": "@@ -587,12 +587,12 @@ int main(int argc, char ** argv) {\n \n if (n_past + (int) embd.size() >= n_ctx) {\n if (!params.ctx_shift){\n- LOG_DBG(\"\\n\\n%s: context full and context shift is disabled => stoppi...
2025-08-28T07:48:20
huggingface/transformers
0ea42ef0f9f71deba7775ead33afa0e493823d60
79b79ae2db91a3f3ce0dd5d948302e2483cf3ccb
Translate `model_doc` files from `clip` to `cpm` to JP (#27774) * Add models * Add more models * Update docs/source/ja/model_doc/convnextv2.md Co-authored-by: Steven Liu <59462357+stevhliu@users.noreply.github.com> * Update docs/source/ja/model_doc/convbert.md Co-authored-by: Steven Liu <59462357+stevh...
[ { "path": "docs/source/ja/_toctree.yml", "patch": "@@ -284,13 +284,27 @@\n title: CamemBERT\n - local: model_doc/canine\n title: CANINE\n+ - local: model_doc/codegen\n+ title: CodeGen\n+ - local: model_doc/code_llama\n+ title: CodeLlama\n+ - local: model_do...
2023-12-07T19:12:24
vuejs/vue
62a922e865f5e578f67b386cb614abfc173d7851
9084747e307dc9b415ff8e2a788c6a585a2a8f6c
fix: fix wrongly matched named slots in functional components This is a subtle edge case caused when a stateful component triggers a self re-render, which reuses cached slot nodes. The cached slot nodes, if returned from a functional render fn, gets the fnContext property which causes subsequent slot resolving to not ...
[ { "path": "src/core/vdom/create-functional-component.js", "patch": "@@ -1,6 +1,6 @@\n /* @flow */\n \n-import VNode from './vnode'\n+import VNode, { cloneVNode } from './vnode'\n import { createElement } from './create-element'\n import { resolveInject } from '../instance/inject'\n import { normalizeChildre...
2018-03-13T21:48:52
golang/go
ca017a6fb9b46860ab0b5054ca07feea3d711a36
1b15c7f1026232afd0e398aa5925f534b6b05bdc
cmd/link: don't split container symbols when write blocks We split the output into blocks and write them in parallel. The block boundary is placed at symbol boundary. In the case of outer symbols and sub symbols, currently we may split an outer symbol into two blocks. This will be bad, as the two blocks will have over...
[ { "path": "src/cmd/link/internal/ld/data.go", "patch": "@@ -812,6 +812,10 @@ func writeBlocks(out *OutBuf, sem chan int, syms []*sym.Symbol, addr, size int64\n \t\t// Find the last symbol we'd write.\n \t\tidx := -1\n \t\tfor i, s := range syms {\n+\t\t\tif s.Attr.SubSymbol() {\n+\t\t\t\tcontinue\n+\t\t\t}\...
2020-04-11T02:11:51
nodejs/node
7849b528108d724faf4b0177d176aafa0b0c6890
c9e494c1f30aed1770238f5a97aea2735b18ad5c
test: changed error message validator Replaced TypeError with RegEx to match the exact error message in file test/addons-napi/test_properties/test.js. The RegEx will check the validity of the error being thrown. PR-URL: https://github.com/nodejs/node/pull/14443 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-...
[ { "path": "test/addons-napi/test_properties/test.js", "patch": "@@ -1,6 +1,7 @@\n 'use strict';\n const common = require('../../common');\n const assert = require('assert');\n+const readonlyErrorRE = /^TypeError: Cannot assign to read only property '.*' of object '#<Object>'$/;\n \n // Testing api calls for...
2017-07-24T11:37:31
ggml-org/llama.cpp
1e7489745a74996fc36e8fd05b73aa16bc184e0c
1cf123a343ab7ca5586aacb9e0a1d2de7fe33be4
CANN: refactor mask handling and improve performance in FA (#15561) * CANN(flash-attn): refactor mask handling and improve performance 1. Refactored the mask computation in Flash Attention, unified the logic without separating prefill and decode. 2. Optimized performance in non-alibi scenarios by reducing one repeat ...
[ { "path": "ggml/src/ggml-cann/aclnn_ops.cpp", "patch": "@@ -1427,17 +1427,17 @@ static void aclnn_pow_tensor_tensor(ggml_backend_cann_context& ctx,\n static void aclnn_get_slope_inner(ggml_backend_cann_context& ctx, void* slope_buffer,\n float m, int64_t size, float start, float stop, float step){\n ...
2025-08-27T09:21:41
vuejs/vue
9084747e307dc9b415ff8e2a788c6a585a2a8f6c
1a979c44d6543d89f8a7e26ad7f995b1bf2aee3c
fix(core): Make set/delete warning condition for undefined, null and (#7818) primitive values more precise. Corrects #7452
[ { "path": "src/core/observer/index.js", "patch": "@@ -10,6 +10,8 @@ import {\n hasProto,\n isObject,\n isPlainObject,\n+ isPrimitive,\n+ isUndef,\n isValidArrayIndex,\n isServerRendering\n } from '../util/index'\n@@ -195,10 +197,9 @@ export function defineReactive (\n */\n export function set (...
2018-03-13T15:09:49
huggingface/transformers
79b79ae2db91a3f3ce0dd5d948302e2483cf3ccb
f7595760ed5c1d29211f363ff57816c27d1f345b
Updates the distributed CPU training documentation to add instructions for running on a Kubernetes cluster (#27780) * Updates the Distributed CPU documentation to add a Kubernetes example * Small edits * Fixing link * Adding missing new lines * Minor edits * Update to include Dockerfile snippet * Add...
[ { "path": "docs/source/en/perf_train_cpu_many.md", "patch": "@@ -15,7 +15,8 @@ rendered properly in your Markdown viewer.\n \n # Efficient Training on Multiple CPUs\n \n-When training on a single CPU is too slow, we can use multiple CPUs. This guide focuses on PyTorch-based DDP enabling distributed CPU trai...
2023-12-07T18:50:45
golang/go
1b15c7f1026232afd0e398aa5925f534b6b05bdc
6d63a74f8e8be044d672fc594c0d356eb911f14b
cmd/compile: debug rewrite If -d=ssa/PASS/debug=N is specified (N >= 2) for a rewrite pass (e.g. lower), when a Value (or Block) is rewritten, print the Value (or Block) before and after. For #31915. Updates #19013. Change-Id: I80eadd44302ae736bc7daed0ef68529ab7a16776 Reviewed-on: https://go-review.googlesource.com/...
[ { "path": "src/cmd/compile/internal/ssa/rewrite.go", "patch": "@@ -23,9 +23,19 @@ func applyRewrite(f *Func, rb blockRewriter, rv valueRewriter) {\n \t// repeat rewrites until we find no more rewrites\n \tpendingLines := f.cachedLineStarts // Holds statement boundaries that need to be moved to a new value/b...
2020-01-24T15:43:09
nodejs/node
c9e494c1f30aed1770238f5a97aea2735b18ad5c
29353e5a992c1e7f92fafa4d1429e0f8dd494155
doc: fix typo in using-internal-errors.md Change "messasge" to "message". PR-URL: https://github.com/nodejs/node/pull/14429 Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail....
[ { "path": "doc/guides/using-internal-errors.md", "patch": "@@ -70,7 +70,7 @@ codes.\n ## Testing new errors\n \n When adding a new error, corresponding test(s) for the error message\n-formatting may also be required. If the messasge for the error is a\n+formatting may also be required. If the message for th...
2017-07-22T19:36:30
ggml-org/llama.cpp
86076f92de1a547ef87c304facca3b4b9fae6c21
bcbddcd54f0d5c22eab180831fdea6484107112f
OpenCL: add fused group_norm/norm, mul, add (#15314) * add fused group_norm/norm, mul, add * fix spacing * revert rms_norm logic * fix trailing whitespace
[ { "path": "ggml/src/ggml-opencl/ggml-opencl.cpp", "patch": "@@ -420,9 +420,9 @@ struct ggml_backend_opencl_context {\n cl_kernel kernel_clamp;\n cl_kernel kernel_geglu, kernel_reglu, kernel_swiglu, kernel_swiglu_oai, kernel_geglu_erf, kernel_geglu_quick,\n kernel_geglu_f16, kernel_regl...
2025-08-27T06:36:05
vuejs/vue
1a979c44d6543d89f8a7e26ad7f995b1bf2aee3c
a6169d1eb71d64eacddf1738e72d21725e2bff00
fix(ssr): fix v-show inline style rendering when style binding is array (#7814) fix #7813
[ { "path": "src/platforms/web/server/directives/show.js", "patch": "@@ -3,6 +3,10 @@\n export default function show (node: VNodeWithData, dir: VNodeDirective) {\n if (!dir.value) {\n const style: any = node.data.style || (node.data.style = {})\n- style.display = 'none'\n+ if (Array.isArray(style)...
2018-03-13T15:07:58
huggingface/transformers
f7595760ed5c1d29211f363ff57816c27d1f345b
58e7f9bb2faf30622c9bead7adf472ac59f3d301
[docs] Custom semantic segmentation dataset (#27859) * custom dataset * fix link * feedback
[ { "path": "docs/source/en/tasks/semantic_segmentation.md", "patch": "@@ -23,8 +23,8 @@ rendered properly in your Markdown viewer.\n Image segmentation models separate areas corresponding to different areas of interest in an image. These models work by assigning a label to each pixel. There are several types...
2023-12-07T18:47:35
golang/go
6d63a74f8e8be044d672fc594c0d356eb911f14b
300ed43795f48bbc5b37b33f392caa8b8b1d9a7a
time/tzdata: new package Importing the time/tzdata package will embed a copy of the IANA timezone database into the program. This will let the program work correctly when the timezone database is not available on the system. It will increase the size of the binary by about 800K. You can also build a program with -tag...
[ { "path": "doc/go1.15.html", "patch": "@@ -87,6 +87,20 @@ <h2 id=\"runtime\">Runtime</h2>\n \n <h2 id=\"library\">Core library</h2>\n \n+<h3 id=\"time/tzdata\">New embedded tzdata package</h3>\n+\n+<p> <!-- CL 224588 -->\n+ Go 1.15 includes a new package,\n+ <a href=\"/pkg/time/tzdata/\"><code>time/tzdata...
2020-03-22T01:28:16
ggml-org/llama.cpp
bcbddcd54f0d5c22eab180831fdea6484107112f
8b696861364360770e9f61a3422d32941a477824
tests : fix test-opt with GGML_BACKEND_DL (#15599)
[ { "path": "tests/test-opt.cpp", "patch": "@@ -3,7 +3,6 @@\n #include \"ggml.h\"\n #include \"ggml-alloc.h\"\n #include \"ggml-backend.h\"\n-#include \"ggml-cpu.h\"\n #include \"ggml-opt.h\"\n \n #include <cmath>\n@@ -899,6 +898,7 @@ static std::pair<int, int> test_backend(\n \n int main(void) {\n ggml_l...
2025-08-26T20:14:38
nodejs/node
29353e5a992c1e7f92fafa4d1429e0f8dd494155
75a19fb379c2d936c6945e63de7c4a28e93eb17d
http: reset stream to unconsumed in `unconsume()` Reset the underlying socket of an HTTP stream to be marked as unconsume after the HTTP parser no longer owns it. Fixes: https://github.com/nodejs/node/issues/14407 PR-URL: https://github.com/nodejs/node/pull/14410 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Review...
[ { "path": "src/node_http_parser.cc", "patch": "@@ -527,6 +527,7 @@ class Parser : public AsyncWrap {\n \n stream->set_alloc_cb(parser->prev_alloc_cb_);\n stream->set_read_cb(parser->prev_read_cb_);\n+ stream->Unconsume();\n }\n \n parser->prev_alloc_cb_.clear();", "additions": 1...
2017-07-21T11:26:50
vuejs/vue
a6169d1eb71d64eacddf1738e72d21725e2bff00
6dd73e9ee44c09f04d3f616fcce18750a55e2e4f
fix(model): fix static input type being overwritten by v-bind object (#7819) fix #7811
[ { "path": "src/platforms/web/compiler/modules/model.js", "patch": "@@ -34,7 +34,7 @@ function preTransformNode (el: ASTElement, options: CompilerOptions) {\n if (map[':type'] || map['v-bind:type']) {\n typeBinding = getBindingAttr(el, 'type')\n }\n- if (!typeBinding && map['v-bind']) {\n+ ...
2018-03-13T15:05:58
huggingface/transformers
47500b1d72021b4820a531fca3f6ab7e5a517106
9f1f11a2e7d4b32e85c0fc5770014f4f675ebb00
Fix TF loading PT safetensors when weights are tied (#27490) * Un-skip tests * Add aliasing support to tf_to_pt_weight_rename * Refactor tf-to-pt weight rename for simplicity * Patch mobilebert * Let us pray that the transfo-xl one works * Add XGLM rename * Expand the test to see if we can get more m...
[ { "path": "src/transformers/modeling_tf_pytorch_utils.py", "patch": "@@ -318,7 +318,14 @@ def load_pytorch_state_dict_in_tf2_model(\n name_scope=_prefix,\n )\n if tf_to_pt_weight_rename is not None:\n- name = tf_to_pt_weight_rename(name)\n+ aliases = tf_to_p...
2023-12-07T14:28:53
vuejs/vue
6dd73e9ee44c09f04d3f616fcce18750a55e2e4f
215f877d1b7eb6583f7adf15676ead8611f07379
fix: named slots for nested functional components Named slots should be respecred when passing raw children down multiple layers of functional components. fix #7710
[ { "path": "src/core/vdom/create-functional-component.js", "patch": "@@ -10,6 +10,7 @@ import { installRenderHelpers } from '../instance/render-helpers/index'\n import {\n isDef,\n isTrue,\n+ hasOwn,\n camelize,\n emptyObject,\n validateProp\n@@ -23,6 +24,21 @@ export function FunctionalRenderCont...
2018-03-12T19:39:39
ggml-org/llama.cpp
8b696861364360770e9f61a3422d32941a477824
8ce3ff1d91245e158d98d8062cd64b0dd98dcfe3
SYCL: fix rms_norm_mul_add for tensor dim not a multiple of sg_size (#15592) The original implementation unconditionally returned true for this operation, leading to a failure when the tensor's first dimension (ne[0]) was not a multiple of WARP_SIZE. This caused an GGML_ASSERT(ncols % WARP_SIZE == 0) failure in ggml-s...
[ { "path": "ggml/src/ggml-sycl/ggml-sycl.cpp", "patch": "@@ -4364,11 +4364,12 @@ static bool ggml_backend_sycl_device_supports_op(ggml_backend_dev_t dev, const g\n return (op->type == GGML_TYPE_F32 && op->src[0]->type == GGML_TYPE_F32) && (op->type == op->src[0]->type);\n #endif\n case GG...
2025-08-26T18:57:49
golang/go
300ed43795f48bbc5b37b33f392caa8b8b1d9a7a
ce528719487080f4797e1ed45671bd509cbc2d10
crypto/x509: fix test to prevent Gerrit keycheck errors Change-Id: I9e6a11c7d8c61d0182467438b35eb6756db7aa89 Reviewed-on: https://go-review.googlesource.com/c/go/+/228198 Run-TryBot: Katie Hockman <katie@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Filippo Valsorda <filippo@golang.org>
[ { "path": "src/crypto/x509/x509_test.go", "patch": "@@ -1242,9 +1242,9 @@ FOq7cMJvODRwvMin9HwNHijXKp8iikXoAnaEHi1kLR4JtSlxH5WKTnmHUWCa54ZA\n 9mDH0e5odhcdkMySkwc=\n -----END CERTIFICATE-----`\n \n-const ed25519CRLKey = `-----BEGIN PRIVATE KEY-----\n+var ed25519CRLKey = testingKey(`-----BEGIN TEST KEY-----\n ...
2020-04-13T19:47:53
nodejs/node
8f0102564e2110dc6a4a43fa9de29e9ead1e9cac
f7f590c9a9fe7bb31719f7fb7427e4de1a0d9edc
test: fix flaky test-force-repl test/parallel/test-force-repl.js has an unnecessary timer that makes the test flaky under load. Remove it. PR-URL: https://github.com/nodejs/node/pull/14439 Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com> Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: James M Snell <j...
[ { "path": "test/parallel/test-force-repl.js", "patch": "@@ -3,16 +3,13 @@ const common = require('../common');\n const assert = require('assert');\n const spawn = require('child_process').spawn;\n \n-// spawn a node child process in \"interactive\" mode (force the repl)\n+// Spawn a node child process in in...
2017-07-23T22:31:19
huggingface/transformers
9f1f11a2e7d4b32e85c0fc5770014f4f675ebb00
c99f25476312521d4425335f970b198da42f832d
Show new failing tests in a more clear way in slack report (#27881) * fix --------- Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": ".github/workflows/self-scheduled.yml", "patch": "@@ -494,5 +494,5 @@ jobs:\n if: ${{ always() }}\n uses: actions/upload-artifact@v3\n with:\n- name: test_failure_tables\n- path: test_failure_tables\n+ name: prev_ci_results\n+ path: prev_...
2023-12-07T14:09:30
vuejs/vue
215f877d1b7eb6583f7adf15676ead8611f07379
4378fc5124067c2b3a3517dd7f527edd9be2ad37
fix(keep-alive): run prune after render for correct active component check fix #7566
[ { "path": "src/core/components/keep-alive.js", "patch": "@@ -71,13 +71,13 @@ export default {\n }\n },\n \n- watch: {\n- include (val: string | RegExp | Array<string>) {\n+ mounted () {\n+ this.$watch('include', val => {\n pruneCache(this, name => matches(val, name))\n- },\n- exclu...
2018-03-12T17:05:31
ggml-org/llama.cpp
8ce3ff1d91245e158d98d8062cd64b0dd98dcfe3
44b1efa41acd4df3f56ee0e46f898135ecd1a054
mtmd : fix mtmd ios build (#15579)
[ { "path": "tools/mtmd/CMakeLists.txt", "patch": "@@ -55,6 +55,8 @@ add_executable(llama-qwen2vl-cli deprecation-warning.cpp)\n set(TARGET llama-mtmd-cli)\n add_executable (${TARGET} mtmd-cli.cpp)\n set_target_properties (${TARGET} PROPERTIES OUTPUT_NAME llama-mtmd-cli)\n-install (TA...
2025-08-26T18:05:50
golang/go
6f3a9515b6bb879472f3b3443a052b07ed11ee2f
7b5303d08a1b589708d6bad3d7015d9856273aac
crypto/x509: generate SubjectKeyId for CAs Fixes #26676 Change-Id: I5bc91d4a8161bc6ff25effcf93f551f735fef115 Reviewed-on: https://go-review.googlesource.com/c/go/+/227098 Run-TryBot: Katie Hockman <katie@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Filippo Valsorda <filippo@golang.org>
[ { "path": "src/crypto/x509/x509.go", "patch": "@@ -17,6 +17,7 @@ import (\n \t\"crypto/ed25519\"\n \t\"crypto/elliptic\"\n \t\"crypto/rsa\"\n+\t\"crypto/sha1\"\n \t_ \"crypto/sha1\"\n \t_ \"crypto/sha256\"\n \t_ \"crypto/sha512\"\n@@ -1686,7 +1687,7 @@ func isIA5String(s string) error {\n \treturn nil\n }\n...
2020-04-03T15:58:12
nodejs/node
156549d8ffa8ec3d5015ce81574c6119bfdc9934
c49adbff6395654634d5c89661419696ce14352b
http: disable OutgoingMessage pipe method OutgoingMessage should be a write-only stream, and it shouldn't be piped. This commit disables the `pipe` method by throwing an exception (if this method is called). PR-URL: https://github.com/nodejs/node/pull/14358 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: ...
[ { "path": "lib/_http_outgoing.js", "patch": "@@ -889,6 +889,10 @@ OutgoingMessage.prototype.flush = internalUtil.deprecate(function() {\n this.flushHeaders();\n }, 'OutgoingMessage.flush is deprecated. Use flushHeaders instead.', 'DEP0001');\n \n+OutgoingMessage.prototype.pipe = function pipe() {\n+ // O...
2017-07-19T03:30:07
huggingface/transformers
c99f25476312521d4425335f970b198da42f832d
fc71e815f6ff5fc8b743786e2146cff9644ec598
Fix device of masks in tests (#27887) fix device of mask in tests
[ { "path": "tests/models/llama/test_modeling_llama.py", "patch": "@@ -104,7 +104,7 @@ def prepare_config_and_inputs(self):\n \n input_mask = None\n if self.use_input_mask:\n- input_mask = torch.tril(torch.ones(self.batch_size, self.seq_length))\n+ input_mask = torch.tril...
2023-12-07T12:34:43
vuejs/vue
4378fc5124067c2b3a3517dd7f527edd9be2ad37
984927a1a98d10ad8af44f2accfb08d34d517610
fix: fix keyName checking for arrow keys in IE11 fix #7806
[ { "path": "src/compiler/codegen/events.js", "patch": "@@ -22,10 +22,11 @@ const keyNames: { [key: string]: string | Array<string> } = {\n tab: 'Tab',\n enter: 'Enter',\n space: ' ',\n- up: 'ArrowUp',\n- left: 'ArrowLeft',\n- right: 'ArrowRight',\n- down: 'ArrowDown',\n+ // #7806: IE11 uses key na...
2018-03-12T15:40:35
ggml-org/llama.cpp
0373486dbc0dccbdcb3b5fdd65759d88cec06196
62cef26ac5b6b7acb635d3dc963813b43952dc2b
graph : fix assert in memory-less build_attn (#15590) ggml-ci
[ { "path": "src/llama-graph.cpp", "patch": "@@ -1376,7 +1376,7 @@ ggml_tensor * llm_graph_context::build_attn(\n \n // [TAG_NO_CACHE_PAD]\n // TODO: if ubatch.equal_seqs() == true, we can split the three tensors below into ubatch.n_seqs_unq streams\n- assert(!ubatch.equal_seqs());\n+ assert(!ub...
2025-08-26T14:45:17
golang/go
7b5303d08a1b589708d6bad3d7015d9856273aac
82fcf749bde1aae839ce520edfff04d2daf70987
errors: add example for Is Add ExampleIs to illustrate how errors.Is works. Updates #31716. Updates #38369. Change-Id: I1b9a6667614635aa3a5ed8b2c108d8eb6f35748b Reviewed-on: https://go-review.googlesource.com/c/go/+/228038 Reviewed-by: Damien Neil <dneil@google.com>
[ { "path": "src/errors/wrap_test.go", "patch": "@@ -238,6 +238,19 @@ func (errorUncomparable) Is(target error) bool {\n \treturn ok\n }\n \n+func ExampleIs() {\n+\tif _, err := os.Open(\"non-existing\"); err != nil {\n+\t\tif errors.Is(err, os.ErrNotExist) {\n+\t\t\tfmt.Println(\"file does not exist\")\n+\t\...
2020-04-12T14:00:27
huggingface/transformers
52746922b044806db4df4fe40c4e85c17ee4b49a
44b5506d29326c6f2ae672e78d2df78ec55939d9
Allow `# Ignore copy` (#27328) * fix --------- Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> Co-authored-by: Arthur <48595927+ArthurZucker@users.noreply.github.com>
[ { "path": "tests/models/longformer/test_tokenization_longformer.py", "patch": "@@ -28,7 +28,9 @@\n \n \n @require_tokenizers\n+# Copied from tests.models.roberta.test_tokenization_roberta.RobertaTokenizationTest with roberta-base->allenai/longformer-base-4096,Roberta->Longformer,roberta->longformer,\n class...
2023-12-07T09:00:08
nodejs/node
c5bed4cfc7b64a50fbba4d249bd5a183729d6e7e
44bb140734a23bf57005dc39f34c707ed7e22469
test: fix flaky http(s)-set-server-timeout tests The tests include a callback that might not be invoked but is wrapped in common.mustCall(). Remove the common.mustCall() wrapper and add a comment explaining that it should not be added. Add a new test case that sets the timeout to 1ms and waits for both the connection...
[ { "path": "test/parallel/test-http-set-timeout-server.js", "patch": "@@ -42,10 +42,7 @@ function run() {\n }\n \n test(function serverTimeout(cb) {\n- const server = http.createServer((req, res) => {\n- // Do nothing. We should get a timeout event.\n- // Might not be invoked. Do not wrap in common.mu...
2017-07-20T06:12:32
vuejs/vue
984927a1a98d10ad8af44f2accfb08d34d517610
cf0b1b745f6b98f4e010f2e0b4c2351bb5a7b812
fix: fix regression on duplicate component init when using shared data objects fix #7805
[ { "path": "src/core/vdom/create-component.js", "patch": "@@ -32,7 +32,7 @@ import {\n renderRecyclableComponentTemplate\n } from 'weex/runtime/recycle-list/render-component-template'\n \n-// hooks to be invoked on component VNodes during patch\n+// inline hooks to be invoked on component VNodes during pat...
2018-03-12T14:50:27
ggml-org/llama.cpp
b3964c1e890ef8c947afb36a5124ce6fcb2136d4
79a546220c719e6a70627b243a478ab8d84dc9e1
metal : optimize FA vec for large sequences and BS <= 8 (#15566) * metal : optmize FA vec for large heads and sequences * metal : adjust small-batch mul mv kernels ggml-ci * batched-bench : fix total speed computation ggml-ci * cont : add comments ggml-ci
[ { "path": "ggml/src/ggml-metal/ggml-metal-impl.h", "patch": "@@ -249,6 +249,7 @@ typedef struct {\n uint64_t nb33;\n int32_t ne1;\n int32_t ne2;\n+ int32_t ne3;\n float scale;\n float max_bias;\n float m0;\n@@ -257,6 +258,11 @@ typedef struct {\n float logit_sof...
2025-08-26T11:22:14
vuejs/vue
702000971c5a355c937607edb930b67311c78f5d
35dc8c2555da884bfb65451391887966bc411a98
chore: fix typo
[ { "path": "src/server/render.js", "patch": "@@ -191,7 +191,8 @@ function renderAsyncComponent (node, isRoot, context) {\n tag\n )\n if (resolvedNode) {\n- if (resolvedNode.componnetInstance) {\n+ if (resolvedNode.componentOptions) {\n+ // normal component\n renderCompo...
2018-03-12T13:27:50
golang/go
82fcf749bde1aae839ce520edfff04d2daf70987
614a713be560ca86dcca570a8b872614d822eb99
cmd/cgo: fix parameter name in godoc comment for badPointerTypedef The parameter name is dt, not t. Also, line-wrap the godoc comment. Change-Id: Ie012d2a5680525b88e244a3380d72bc4f61da8e7 Reviewed-on: https://go-review.googlesource.com/c/go/+/228058 Run-TryBot: Tobias Klauser <tobias.klauser@gmail.com> TryBot-Result:...
[ { "path": "src/cmd/cgo/gcc.go", "patch": "@@ -3006,8 +3006,9 @@ func (c *typeConv) anonymousStructTypedef(dt *dwarf.TypedefType) bool {\n \treturn ok && st.StructName == \"\"\n }\n \n-// badPointerTypedef reports whether t is a C typedef that should not be considered a pointer in Go.\n-// A typedef is bad i...
2020-04-13T17:40:11
huggingface/transformers
44b5506d29326c6f2ae672e78d2df78ec55939d9
0410a29a2d5c798b2c0c1ca28398e0ddcf3384f2
[`Llava`] Add Llava to transformers (#27662) * add model like * logits match * minor fixes * fixes * up * up * add todo * llava processor * keep the processor simple * add conversion script * fixup * fix copies * up * add to index * fix config + logits * fix * refactor ...
[ { "path": "README.md", "patch": "@@ -397,6 +397,7 @@ Current number of checkpoints: ![](https://img.shields.io/endpoint?url=https://h\n 1. **[LiLT](https://huggingface.co/docs/transformers/model_doc/lilt)** (from South China University of Technology) released with the paper [LiLT: A Simple yet Effective Lan...
2023-12-07T08:30:47
ggml-org/llama.cpp
79a546220c719e6a70627b243a478ab8d84dc9e1
85cc1ae998e4898d9fa992cb9b8620338cee97bf
mtmd : support Kimi VL model (#15458) * convert : fix tensor naming conflict for llama 4 vision * convert ok * support kimi vision model * clean up * fix style * fix calc number of output tokens * refactor resize_position_embeddings * add test case * rename build fn * correct a small bug
[ { "path": "convert_hf_to_gguf.py", "patch": "@@ -6254,9 +6254,11 @@ def prepare_tensors(self):\n raise ValueError(f\"Unprocessed experts: {experts}\")\n \n \n-@ModelBase.register(\"DeepseekV2ForCausalLM\")\n-@ModelBase.register(\"DeepseekV3ForCausalLM\")\n-@ModelBase.register(\"KimiVLForCond...
2025-08-26T10:54:19
vuejs/vue
882e7199fd8eee039291c4b9f7f324dcf46f32fd
666cdbd71e15de01e4b4468cb5b52ec882cae159
fix(ssr): fix SSR for async functional components fix #7784
[ { "path": "src/server/render-context.js", "patch": "@@ -67,13 +67,18 @@ export class RenderContext {\n }\n switch (lastState.type) {\n case 'Element':\n+ case 'Fragment':\n const { children, total } = lastState\n const rendered = lastState.rendered++\n if (rendered...
2018-03-11T21:09:51
rust-lang/rust
ca193471b52ad3158a49217e66d08064ed91f0cf
90c50f0164d07945fdac83a316a5ebaf9e86d7a7
tests: error strings for ABI stability now match
[ { "path": "tests/incremental/feature_gate.rs", "patch": "@@ -10,4 +10,4 @@ fn main() {\n }\n \n extern \"unadjusted\" fn foo() {}\n-//[cfail2]~^ ERROR: unadjusted ABI is an implementation detail and perma-unstable\n+//[cfail2]~^ ERROR: \"unadjusted\" ABI is an implementation detail and perma-unstable", ...
2025-02-05T19:15:27
huggingface/transformers
0410a29a2d5c798b2c0c1ca28398e0ddcf3384f2
f84d85ba67ea8a812427f8a4f1e77c9d9fc3ebac
fix: fix gradient accumulate step for learning rate (#27667)
[ { "path": "examples/flax/speech-recognition/run_flax_speech_recognition_seq2seq.py", "patch": "@@ -640,7 +640,7 @@ def compute_metrics(preds, labels):\n \n # Create learning rate schedule\n linear_decay_lr_schedule_fn = create_learning_rate_fn(\n- len(vectorized_datasets[\"train\"]),\n+ ...
2023-12-07T06:59:26
golang/go
68305f3fec312481742120cc59402eb51c631932
14cf804aa047cfdb7be90098d53030773fc1424d
[dev.link] cmd/link: remove symbol.FuncInfo It is no longer used. The only remaining use is in generating Plan 9 debug info, which is already not supported. Change-Id: Ia023d6f2fa7d57b97ba861ce464e2eec8ac2d1f5 Reviewed-on: https://go-review.googlesource.com/c/go/+/228142 Reviewed-by: Than McIntosh <thanm@google.com>
[ { "path": "src/cmd/link/internal/ld/lib.go", "patch": "@@ -2604,17 +2604,6 @@ func genasmsym(ctxt *Link, put func(*Link, *sym.Symbol, string, SymbolType, int6\n \n \tfor _, s := range ctxt.Textp {\n \t\tput(ctxt, s, s.Name, TextSym, s.Value, s.Gotype)\n-\n-\t\tlocals := int32(0)\n-\t\tif s.FuncInfo != nil {...
2020-04-12T16:52:16
ggml-org/llama.cpp
4c37636b3ea96f2574eeb7668b93fcc0e64b05dd
34bdbbd7c2b70b848718e95bc48010f6aecd2816
Add a warning for special devices (#15563) * Add warning * Print the devices names * Add newlines * Apply suggestions from code review Co-authored-by: Johannes Gäßler <johannesg@5d6.de> * Fix vector names --------- Co-authored-by: Johannes Gäßler <johannesg@5d6.de>
[ { "path": "ggml/src/ggml-cuda/ggml-cuda.cu", "patch": "@@ -204,6 +204,8 @@ static ggml_cuda_device_info ggml_cuda_init() {\n GGML_LOG_INFO(\"%s: GGML_CUDA_FORCE_CUBLAS: no\\n\", __func__);\n #endif // GGML_CUDA_FORCE_CUBLAS\n GGML_LOG_INFO(\"%s: found %d \" GGML_CUDA_NAME \" devices:\\n\", __func__,...
2025-08-26T06:15:33
vuejs/vue
71b4b25375fa4bcd929e1161c35cab133e4a7c23
af5453cd5e90461531f1711b5ecb6bd47136e7b0
fix: allow multiline expression in v-for fix #7792
[ { "path": "src/compiler/parser/index.js", "patch": "@@ -21,7 +21,7 @@ import {\n \n export const onRE = /^@|^v-on:/\n export const dirRE = /^v-|^@|^:/\n-export const forAliasRE = /(.*?)\\s+(?:in|of)\\s+(.*)/\n+export const forAliasRE = /([^]*?)\\s+(?:in|of)\\s+([^]*)/\n export const forIteratorRE = /,([^,\\...
2018-03-11T15:51:51
rust-lang/rust
3f50076fb3166b3f71b4a52e8ebc4cd59572ac74
124cc92199ffa924f6b4c7cc819a85b65e0c3984
compiler: gate `extern "{abi}"` in ast_lowering By moving this stability check into AST lowering, we effectively make it impossible to accidentally miss, as it must happen to generate HIR. Also, we put the ABI-stability code next to code that actually uses it! This allows code that wants to reason about backend ABI im...
[ { "path": "Cargo.lock", "patch": "@@ -3336,7 +3336,6 @@ dependencies = [\n \"rand 0.8.5\",\n \"rand_xoshiro\",\n \"rustc_data_structures\",\n- \"rustc_feature\",\n \"rustc_index\",\n \"rustc_macros\",\n \"rustc_serialize\",\n@@ -3398,6 +3397,7 @@ dependencies = [\n \"rustc_ast_pretty\",\n \"rustc_da...
2024-11-04T20:53:02
huggingface/transformers
06f561687c94f572b03ef71d707b697401b34ce9
4d806dba8ca6ba714fd7b95c112dd8514136c9af
[i18n-fr] Translate autoclass tutorial to French (#27659) * Translation of autoclass tutorial * Update totree to keep only tutorial section * Translate title toctree * Fix typos * Update review comments
[ { "path": "docs/source/fr/_toctree.yml", "patch": "@@ -1,156 +1,30 @@\n - sections:\n- - local: index\n- title: 🤗 Transformers\n- - local: quicktour\n- title: Visite rapide\n- - local: installation\n- title: Installation\n+ - local: index\n+ title: 🤗 Transformers\n+ - local: quickto...
2023-12-07T06:44:14
golang/go
614a713be560ca86dcca570a8b872614d822eb99
bd0623b4e7d7a2f24af59c06fb52a4dcdb752859
crypto/tls: failed tls.Conn.Write returns a permanent error Fixes #29971 Change-Id: I2f1653640c88fafe0ec17a75dcf41d5896c4cb8e Reviewed-on: https://go-review.googlesource.com/c/go/+/227840 Run-TryBot: Katie Hockman <katie@golang.org> Run-TryBot: Filippo Valsorda <filippo@golang.org> Reviewed-by: Filippo Valsorda <fili...
[ { "path": "src/crypto/tls/conn.go", "patch": "@@ -162,9 +162,22 @@ type halfConn struct {\n \ttrafficSecret []byte // current TLS 1.3 traffic secret\n }\n \n+type permamentError struct {\n+\terr net.Error\n+}\n+\n+func (e *permamentError) Error() string { return e.err.Error() }\n+func (e *permamentError) ...
2020-04-10T14:06:29
ggml-org/llama.cpp
f7207b0415986dd7f48447149da7de3a82338276
4d917cd4f64cc37744e76d084659475819fb0728
opencl: fix support ops condition for `rms_norm` (#15560)
[ { "path": "ggml/src/ggml-opencl/ggml-opencl.cpp", "patch": "@@ -2647,8 +2647,9 @@ static bool ggml_opencl_supports_op(ggml_backend_dev_t dev, const struct ggml_te\n return op->src[0]->type == GGML_TYPE_F32;\n case GGML_OP_SOFT_MAX:\n case GGML_OP_NORM:\n- case GGML_OP_RMS_...
2025-08-25T21:18:09
nodejs/node
44bb140734a23bf57005dc39f34c707ed7e22469
9ab3172e5d058c47725fdd91e2722bfe1461a4fb
test: replace CRLF by LF in a fixture test/fixtures/test-error-first-line-offset.js is used in the test/sequential/test-module-loading.js, but the line break type is insignificant. It can be replaced for consistency. PR-URL: https://github.com/nodejs/node/pull/14437 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Review...
[ { "path": "test/fixtures/test-error-first-line-offset.js", "patch": "@@ -1 +1 @@\n-error\r\n+error", "additions": 1, "deletions": 1, "language": "JavaScript" } ]
2017-07-23T17:03:08
vuejs/vue
84a9a9d61057f6f40a9ad2bee456b39ef0a8f001
387d2567ebec83db47d2049eec006a1ffc83451a
fix: do not traverse VNodes when regsitering dependencies fix #7786
[ { "path": "src/core/observer/traverse.js", "patch": "@@ -2,6 +2,7 @@\n \n import { _Set as Set, isObject } from '../util/index'\n import type { SimpleSet } from '../util/index'\n+import VNode from '../vdom/vnode'\n \n const seenObjects = new Set()\n \n@@ -18,7 +19,7 @@ export function traverse (val: any) {\...
2018-03-10T18:39:29
huggingface/transformers
4d806dba8ca6ba714fd7b95c112dd8514136c9af
75336c17945c6b1b5552dbf0236d25f869168aab
Fix bug of _prepare_4d_attention_mask (#27847) * use _prepare_4d_attention_mask * fix comment
[ { "path": "src/transformers/models/llama/modeling_llama.py", "patch": "@@ -29,7 +29,11 @@\n from torch.nn import BCEWithLogitsLoss, CrossEntropyLoss, MSELoss\n \n from ...activations import ACT2FN\n-from ...modeling_attn_mask_utils import AttentionMaskConverter, _prepare_4d_causal_attention_mask\n+from ...m...
2023-12-07T06:43:04
golang/go
1e820a3432029355402aeeaf769b9a4e46eb46aa
dc9879e8fde3af804ac310ee54cf67efdae26aab
cmd/compile: ensure ... rules have compatible aux and auxint types Otherwise, just copying the aux and auxint fields doesn't make much sense. (Although there's no bug - it just means it isn't typechecked correctly.) Change-Id: I4e21ac67f0c7bfd04ed5af1713cd24bca08af092 Reviewed-on: https://go-review.googlesource.com/c...
[ { "path": "src/cmd/compile/internal/ssa/gen/AMD64.rules", "patch": "@@ -400,14 +400,14 @@\n \t(REPSTOSQ destptr (MOVQconst [s/8]) (MOVQconst [0]) mem)\n \n // Lowering constants\n-(Const8 ...) -> (MOVLconst ...)\n-(Const16 ...) -> (MOVLconst ...)\n-(Const32 ...) -> (MOVLconst ...)\n-(Const64 ...) -> (M...
2020-04-13T03:05:14
ggml-org/llama.cpp
4d917cd4f64cc37744e76d084659475819fb0728
886b97a5d693550c2da470c091d9d27bf38398f8
vulkan: fix min subgroup 16 condition for mmid subgroup optimization (#15565)
[ { "path": "ggml/src/ggml-vulkan/ggml-vulkan.cpp", "patch": "@@ -2183,7 +2183,7 @@ static void ggml_vk_load_shaders(vk_device& device) {\n const uint32_t mul_mat_subgroup_size_32 = std::max(mul_mat_subgroup_size, 32u);\n \n const bool subgroup_min_size_16 = (!device->subgroup_size_control && device->...
2025-08-25T15:56:59
vuejs/vue
81e1e47cabbd479e2a285f03120944f1efffe749
a2cd412876c68ff0fac8e70c82676684c6f82770
fix: respect type order when boolean casting multi-typed props fix #7485
[ { "path": "src/core/util/props.js", "patch": "@@ -27,12 +27,18 @@ export function validateProp (\n const prop = propOptions[key]\n const absent = !hasOwn(propsData, key)\n let value = propsData[key]\n- // handle boolean props\n- if (isType(Boolean, prop.type)) {\n+ // boolean casting\n+ const bool...
2018-03-09T19:46:00
nodejs/node
2da1af0a9320d613ca0107ed39087e23b9719369
c24a73d23c098e5cde7e55ce0c97f6daa11facc9
test: fix test-async-wrap-getasyncid flakyness The test used to assume that if the client successfully writes data to the server and closes the connection, then the server must have received that data and ran its connection callback wrapped by common.mustCall. However, it is not necessarily the case, and as a result ...
[ { "path": "test/parallel/test-async-wrap-getasyncid.js", "patch": "@@ -160,6 +160,7 @@ if (common.hasCrypto) {\n const stream_wrap = process.binding('stream_wrap');\n const tcp_wrap = process.binding('tcp_wrap');\n const server = net.createServer(common.mustCall((socket) => {\n+ server.close();\n ...
2017-07-17T17:21:21
huggingface/transformers
75336c17945c6b1b5552dbf0236d25f869168aab
7fc80724dace3e27fd9d540228fa4d95fbf94970
Add Llama Flax Implementation (#24587) * Copies `modeling_flax_gpt_neo.py` to start * MLP Block. WIP Attention and Block * Adds Flax implementation of `LlamaMLP` Validated with in-file test. Some slight numeric differences, but assuming it isn't an issue * Adds `FlaxLlamaRMSNorm` layer `flax.linen` include...
[ { "path": "docs/source/en/index.md", "patch": "@@ -1,4 +1,4 @@\n-<!--Copyright 2020 The HuggingFace Team. All rights reserved.\n+ <!--Copyright 2020 The HuggingFace Team. All rights reserved.\n \n Licensed under the Apache License, Version 2.0 (the \"License\"); you may not use this file except in co...
2023-12-07T06:05:00
ggml-org/llama.cpp
111f8d06f0b9169059779a35f655b343242ccbb6
5eff6ec9b1220b599a43b594b1110487ab6aca08
metal: fix regression when no metal devices are present (#15531)
[ { "path": "ggml/src/ggml-metal/ggml-metal.m", "patch": "@@ -93,35 +93,37 @@\n if (ctx->mtl_device == nil) {\n ctx->mtl_device = MTLCreateSystemDefaultDevice();\n \n- ctx->has_simdgroup_reduction = [ctx->mtl_device supportsFamily:MTLGPUFamilyApple7];\n- ctx->has_simdgroup_reduction...
2025-08-25T15:27:34
vuejs/vue
318f29fcdf3372ff57a09be6d1dc595d14c92e70
d7d9b002fd60d246b1ef65f71b55b45f46563b4d
fix(core): disable dependency collection in lifecycle hooks and data getter (#7596) This fixes the parent being updated more than necessary due to collecting child props as dependencies during its own update computation. fix #7573
[ { "path": "src/core/instance/lifecycle.js", "patch": "@@ -7,6 +7,7 @@ import { createEmptyVNode } from '../vdom/vnode'\n import { observerState } from '../observer/index'\n import { updateComponentListeners } from './events'\n import { resolveSlots } from './render-helpers/resolve-slots'\n+import { pushTarg...
2018-03-09T18:13:16
golang/go
6aeaf4a0f45bfd9215488aa3acb1fce4f45c2731
e488ade6dd029646d1374d1e0fcb74b501701e14
[dev.link] cmd/link: fix funcfunctab crash with darwin + plugin Fix a bug in findfunctab when building plugin on Darwin (this is a regression introduced by CL 227842). Change-Id: Ic610168e45a750c0a2f2b8611d5d9154e6c2622f Reviewed-on: https://go-review.googlesource.com/c/go/+/228137 Run-TryBot: Than McIntosh <thanm@go...
[ { "path": "src/cmd/link/internal/ld/pcln.go", "patch": "@@ -601,7 +601,7 @@ func (ctxt *Link) findfunctab(container loader.Bitmap) {\n \t\tif i < len(ctxt.Textp2) {\n \t\t\te = ctxt.Textp2[i]\n \t\t}\n-\t\tfor !emitPcln(ctxt, e, container) && i < len(ctxt.Textp2) {\n+\t\tfor e != 0 && !emitPcln(ctxt, e, con...
2020-04-13T11:31:19
nodejs/node
93f47b11546b2117b555695b38f505ed2779b5c3
b0a8a7c6baccea746da10e01bfb3dec18c0d723e
http: check for handle before running asyncReset() If an uninitialized or user supplied Socket is in the freeSockets list of the Agent it would automatically attempt to run ._handle.asyncReset(), but would throw from those not existing. Guard against that by first checking that they exist. PR-URL: https://github.com/...
[ { "path": "lib/_http_agent.js", "patch": "@@ -167,9 +167,12 @@ Agent.prototype.addRequest = function addRequest(req, options, port/*legacy*/,\n if (freeLen) {\n // we have a free socket, so use that.\n var socket = this.freeSockets[name].shift();\n- // Assign the handle a new asyncId and run an...
2017-07-21T23:10:56