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
4f21834962c22c2d70f57a57e160e2abda84aaed
c49dcb319b22ec5084384fe279e91a88108b10e9
deps: backport c4852ea from upstream V8 Original commit message: Pull tracing related methods out of Platform This will allow for embedders to easily implement their own Platform without duplicating the tracing controller code. BUG=v8:6511 R=fmeawad@chromium.org Cq-Include-Trybots: master.tryserver.ch...
[ { "path": "deps/v8/include/libplatform/v8-tracing.h", "patch": "@@ -209,7 +209,15 @@ class V8_PLATFORM_EXPORT TraceConfig {\n void operator=(const TraceConfig&) = delete;\n };\n \n-class V8_PLATFORM_EXPORT TracingController {\n+#if defined(_MSC_VER)\n+#define V8_PLATFORM_NON_EXPORTED_BASE(code) \\\n+ __p...
2017-06-27T08:49:06
vuejs/vue
8a80a23ecba23f92f278d664388050ffcd121385
cd3d202edb606ec941d5e4fff63a90a9223652d0
fix: avoid errors thrown during dom props update breaking the entire app fix #9459
[ { "path": "src/platforms/web/runtime/modules/dom-props.js", "patch": "@@ -38,7 +38,7 @@ function updateDOMProps (oldVnode: VNodeWithData, vnode: VNodeWithData) {\n }\n }\n \n- if (key === 'value') {\n+ if (key === 'value' && elm.tagName !== 'PROGRESS') {\n // store value as _value as w...
2019-02-21T18:54:28
golang/go
4f7053c87f9ebf3acab7669d380f53bdfba0566b
4e00b4c366f06036509201d3bf19ee2c8fd767c8
cmd/compile: omit file:pos for non-existent, permission errors Omits printing the file:line:column when trying to open either * non-existent files * files without permission Given: go tool compile x.go For either of x.go not existing, or if no read permissions: * Before: x.go:0: open x.go: no such file or d...
[ { "path": "src/cmd/compile/internal/gc/subr.go", "patch": "@@ -60,9 +60,15 @@ func adderrorname(n *Node) {\n }\n \n func adderr(pos src.XPos, format string, args ...interface{}) {\n+\tmsg := fmt.Sprintf(format, args...)\n+\t// Only add the position if we have a file.\n+\t// See issue golang.org/issue/11361....
2020-04-22T06:31:59
ggml-org/llama.cpp
e0539eb6aed346d4b25a6ea019044e88771e7690
5d0a40f390732cbf85d8a3b7b0fc3cbebffe780a
webui: switch to hash-based routing (alternative of #16079) (#16157) * Switched web UI to hash-based routing * Added hash to missed goto function call * Removed outdated SPA handling code * Fixed broken sidebar home link
[ { "path": "tools/server/server.cpp", "patch": "@@ -5262,42 +5262,6 @@ int main(int argc, char ** argv) {\n svr->Get (params.api_prefix + \"/slots\", handle_slots);\n svr->Post(params.api_prefix + \"/slots/:id_slot\", handle_slots_action);\n \n- // SPA fallback route - serve ind...
2025-09-26T15:36:48
huggingface/transformers
19e83d174c1e2802a459c9b5831628817e1c286f
59cd9de39da4c406e12c1785f70ee73806ebc6ba
Doc (#28431) * update version for cpu training * update docs for cpu training * fix readme * fix readme
[ { "path": "docs/source/en/perf_train_cpu.md", "patch": "@@ -31,14 +31,16 @@ IPEX release is following PyTorch, to install via pip:\n \n | PyTorch Version | IPEX version |\n | :---------------: | :----------: |\n+| 2.1.x | 2.1.100+cpu |\n+| 2.0.x | 2.0.100+cpu |\n | 1.13 ...
2024-01-11T16:55:48
vuejs/vue
7ec4627902020cccd7b3f4fbc63e1b0d6b9798cd
d9b27a92bd5277ee23a4e68a8bd31ecc72f4c99b
fix: ensure generated scoped slot code is compatible with 2.5 fix #9545
[ { "path": "src/compiler/codegen/index.js", "patch": "@@ -409,9 +409,9 @@ function genScopedSlots (\n .join(',')\n \n return `scopedSlots:_u([${generatedSlots}]${\n- needsForceUpdate ? `,true` : ``\n+ needsForceUpdate ? `,null,true` : ``\n }${\n- !needsForceUpdate && needsKey ? `,false,${has...
2019-02-21T13:52:15
nodejs/node
aa011a111d46815998ddc28179b9ec42b6e662e6
8096791d8d3bf59848d57ba16aa6dfbd12a35661
Revert "build: don't add libraries when --enable-static" Reverted for breaking the Windows build with the following error: LINK : fatal error LNK1181: cannot open input file 'c:\workspace\node-compile-windows\label\win-vs2015\ Release\obj\node\gen\node_javascript.o' This reverts commit be63c26e8c5d9f337c...
[ { "path": "node.gyp", "patch": "@@ -593,26 +593,6 @@\n 'OBJ_TRACING_PATH': '<(OBJ_DIR)/node/src/tracing',\n 'OBJ_SUFFIX': 'o',\n 'OBJ_SEPARATOR': '/',\n- 'OBJ_FILES': [\n-\t '<(OBJ_GEN_PATH)<(OBJ_SEPARATOR)node_javascript.<(OBJ_SUFFIX)',\n- '<(OBJ_PATH)<(OBJ_SEPARATO...
2017-08-17T12:42:25
golang/go
9d812cfa5cbb1f573d61c452c864072270526753
ee7d9f1c37c768b859c27dec2a897b12fa928c4e
cmd/compile,runtime: stack maps only at calls, remove register maps Currently, we emit stack maps and register maps at almost every instruction. This was originally intended to support non-cooperative preemption, but was only ever used for debug call injection. Now debug call injection also uses conservative frame sca...
[ { "path": "src/cmd/compile/internal/gc/gsubr.go", "patch": "@@ -70,9 +70,13 @@ func newProgs(fn *Node, worker int) *Progs {\n \n \tpp.pos = fn.Pos\n \tpp.settext(fn)\n-\tpp.nextLive = LivenessInvalid\n \t// PCDATA tables implicitly start with index -1.\n \tpp.prevLive = LivenessIndex{-1, -1, false}\n+\tif g...
2020-04-16T12:13:58
ggml-org/llama.cpp
cc1cfa277b3aae1f6cc9180472072336597a78d4
54dbc37053f7d75ea5b0631d5ee88f19391e4314
mtmd : fix uninitialized variable in bicubic_resize (#16275) Signed-off-by: Aaron Teo <aaron.teo1@ibm.com> Co-authored-by: Aaron Teo <aaron.teo1@ibm.com>
[ { "path": "tools/mtmd/clip.cpp", "patch": "@@ -3067,7 +3067,7 @@ struct image_manipulation {\n dst.buf.resize(3 * target_width * target_height);\n \n float Cc;\n- float C[5];\n+ float C[5] = {};\n float d0, d2, d3, a0, a1, a2, a3;\n int i, j, k, jj;\n in...
2025-09-26T13:00:44
vuejs/vue
d9b27a92bd5277ee23a4e68a8bd31ecc72f4c99b
b3bd3116351eb53cf98254652ee2a01f440b62d8
fix: ensure scoped slots update in conditional branches close #9534
[ { "path": "src/compiler/codegen/index.js", "patch": "@@ -375,6 +375,13 @@ function genScopedSlots (\n containsSlotChild(slot) // is passing down slot from parent which may be dynamic\n )\n })\n+\n+ // #9534: if a component with scoped slots is inside a conditional branch,\n+ // it's possible f...
2019-02-21T02:48:33
huggingface/transformers
59cd9de39da4c406e12c1785f70ee73806ebc6ba
e768616afa1a1e20bd9678c8099891d8529e89da
Byebye torch 1.10 (#28207) * fix * fix --------- Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": ".github/workflows/build-past-ci-docker-images.yml", "patch": "@@ -15,7 +15,7 @@ jobs:\n strategy:\n fail-fast: false\n matrix:\n- version: [\"1.13\", \"1.12\", \"1.11\", \"1.10\"]\n+ version: [\"1.13\", \"1.12\", \"1.11\"]\n runs-on: ubuntu-22.04\n steps:\n ...
2024-01-11T15:18:27
nodejs/node
8096791d8d3bf59848d57ba16aa6dfbd12a35661
a0895ed6c484fc3b322c70bcbf36080b1fe70154
deps: cherry-pick fa4ec9f from V8 upstream Original commit message: [date] Refactor PosixTimezoneCache for different OS Follow up on https://codereview.chromium.org/2740353002. Created PosixDefaultTimezoneCache which is a subclass of PosixTimezoneCache containing definition of LocalTimezone and Local...
[ { "path": "deps/v8/BUILD.gn", "patch": "@@ -2507,6 +2507,8 @@ v8_component(\"v8_libbase\") {\n \n if (is_posix) {\n sources += [\n+ \"src/base/platform/platform-posix-time.cc\",\n+ \"src/base/platform/platform-posix-time.h\",\n \"src/base/platform/platform-posix.cc\",\n \"src/bas...
2017-08-03T14:54:59
ggml-org/llama.cpp
54dbc37053f7d75ea5b0631d5ee88f19391e4314
b995a10760cb93d23d617d76ecb82a5f95b5e0d3
metal : report OOM errors (#16274)
[ { "path": "ggml/src/ggml-metal/ggml-metal-context.m", "patch": "@@ -222,7 +222,28 @@ void ggml_metal_synchronize(ggml_metal_t ctx) {\n ctx->cmd_buf_last = nil;\n }\n \n- // release any completed command buffers\n+ // check status of all command buffers\n+ {\n+ const int n_cb = ct...
2025-09-26T11:14:28
golang/go
faafdf5115c994ff6d5ab3fe2eaf70ee47186f54
a6deafaf9e6262e1a9fa390e2cc0b6df1977828c
cmd/compile: fix unsafe-points with stack maps The compiler currently conflates whether a Value has a stack map with whether it's an unsafe point. For the most part, unsafe-points don't have stack maps, so this is mostly fine, but call instructions can be both an unsafe-point *and* have a stack map. For example, none ...
[ { "path": "src/cmd/compile/internal/gc/gsubr.go", "patch": "@@ -72,7 +72,7 @@ func newProgs(fn *Node, worker int) *Progs {\n \tpp.settext(fn)\n \tpp.nextLive = LivenessInvalid\n \t// PCDATA tables implicitly start with index -1.\n-\tpp.prevLive = LivenessIndex{-1, -1}\n+\tpp.prevLive = LivenessIndex{-1, -1,...
2020-04-21T18:23:04
vuejs/vue
8f004ea44e06d7764fa884212fa95c2033515928
bb0aab664c52006ff79d0802631cf59e65fbbe0d
fix: scoped slots should update when inside v-for fix #9506
[ { "path": "src/compiler/codegen/index.js", "patch": "@@ -375,12 +375,18 @@ function genScopedSlots (\n containsSlotChild(slot) // is passing down slot from parent which may be dynamic\n )\n })\n- // OR when it is inside another scoped slot (the reactivity is disconnected)\n- // #9438\n+ // OR...
2019-02-18T22:17:47
huggingface/transformers
e768616afa1a1e20bd9678c8099891d8529e89da
5d4d62d0a2207b9690f5533d1bf597c8e332711b
Fix load balancing loss func for mixtral (#28256) * Correct the implementation of auxiliary loss of mixtrtal * correct the implementation of auxiliary loss of mixtrtal * Implement a simpler calculation method --------- Co-authored-by: zhangliangxu3 <zhangliangxu3@jd.com>
[ { "path": "src/transformers/models/mixtral/modeling_mixtral.py", "patch": "@@ -103,19 +103,15 @@ def load_balancing_loss_func(gate_logits: torch.Tensor, num_experts: torch.Tenso\n \n _, selected_experts = torch.topk(routing_weights, top_k, dim=-1)\n \n- # treat `top_k` as tokens (shape is `top_k X [b...
2024-01-11T15:16:12
ggml-org/llama.cpp
4710dd31bbcef79d04f85a3a6a8c7d9439c5c79a
9b26511857ac09ae69ab485168fe2d3ee5fb1d6e
build : fix build-ios-device (#16257) Signed-off-by: Adrien Gallouët <angt@huggingface.co>
[ { "path": "build-xcframework.sh", "patch": "@@ -422,6 +422,7 @@ echo \"Building for iOS devices...\"\n cmake -B build-ios-device -G Xcode \\\n \"${COMMON_CMAKE_ARGS[@]}\" \\\n -DCMAKE_OSX_DEPLOYMENT_TARGET=${IOS_MIN_OS_VERSION} \\\n+ -DCMAKE_SYSTEM_NAME=iOS \\\n -DCMAKE_OSX_SYSROOT=iphoneos \...
2025-09-26T10:39:35
vuejs/vue
1d3316615bfdab021474c248f38ef255e5cc88d5
ee29e41ef469b3ca3c793f04289075e3b128447f
chore: bump webpack (fix PR build cache)
[ { "path": "package.json", "patch": "@@ -137,7 +137,7 @@\n \"shelljs\": \"^0.8.1\",\n \"terser\": \"^3.10.2\",\n \"typescript\": \"^3.1.3\",\n- \"webpack\": \"^4.22.0\",\n+ \"webpack\": \"^4.29.5\",\n \"weex-js-runtime\": \"^0.23.6\",\n \"weex-styler\": \"^0.3.0\",\n \"yorkie\":...
2019-02-18T21:34:46
nodejs/node
a0895ed6c484fc3b322c70bcbf36080b1fe70154
b616e879474f72333a73db1d879abf5b5ba36f1d
inspector: enable async stack traces Implement a special async_hooks listener that forwards information about async tasks to V8Inspector asyncTask* API, thus enabling DevTools feature "async stack traces". The feature is enabled only on 64bit platforms due to a technical limitation of V8 Inspector: inspector uses a p...
[ { "path": "lib/internal/bootstrap_node.js", "patch": "@@ -45,6 +45,8 @@\n if (global.__coverage__)\n NativeModule.require('internal/process/write-coverage').setup();\n \n+ NativeModule.require('internal/inspector_async_hook').setup();\n+\n // Do not initialize channel in debugger agent, it ...
2017-07-17T14:51:26
golang/go
2bad2f7ebaaf9c7112b98bfa48ed8213ef1e5d90
57d751370c9c44a1d13df1ed1f72c4316239dff3
cmd/compile: mark PanicBounds/Extend as calls PanicBounds and PanicExtend are lowered to runtime calls (with a non-Go ABI), but are not currently marked as calls. Since liveness analysis only emits stack maps at calls in the runtime, this means these panic call sites in the runtime won't get a stack map. These almost ...
[ { "path": "src/cmd/compile/internal/ssa/gen/386Ops.go", "patch": "@@ -531,13 +531,13 @@ func init() {\n \t\t// There are three of these functions so that they can have three different register inputs.\n \t\t// When we check 0 <= c <= cap (A), then 0 <= b <= c (B), then 0 <= a <= b (C), we want the\n \t\t// ...
2020-04-27T19:58:16
huggingface/transformers
55090585619d7ab880d9a7d7c8b327a746f7cc40
d5606378851e48053060105f160087694754b610
[Phi] Extend implementation to use GQA/MQA. (#28163) * chore(phi): Updates configuration_phi with missing keys. * chore(phi): Adds first draft of combined modeling_phi. * fix(phi): Fixes according to latest review. * fix(phi): Removes pad_vocab_size_multiple to prevent inconsistencies. * fix(phi): Fixes un...
[ { "path": "src/transformers/models/phi/configuration_phi.py", "patch": "@@ -23,8 +23,9 @@\n logger = logging.get_logger(__name__)\n \n PHI_PRETRAINED_CONFIG_ARCHIVE_MAP = {\n- \"susnato/phi-1_dev\": \"https://huggingface.co/susnato/phi-1_dev/resolve/main/config.json\",\n- \"susnato/phi-1_5_dev\": \"ht...
2024-01-11T14:58:02
vuejs/vue
ee29e41ef469b3ca3c793f04289075e3b128447f
a702d1947b856cf3b9d6ca5fb27b2271a78a9a5b
fix: avoid possible infinite loop by accessing observables in error handler (#9489)
[ { "path": "src/core/util/error.js", "patch": "@@ -4,25 +4,33 @@ import config from '../config'\n import { warn } from './debug'\n import { inBrowser, inWeex } from './env'\n import { isPromise } from 'shared/util'\n+import { pushTarget, popTarget } from '../observer/dep'\n \n export function handleError (er...
2019-02-18T18:56:17
ggml-org/llama.cpp
9b26511857ac09ae69ab485168fe2d3ee5fb1d6e
00217cd41388328c93e9e9644921c4319bb03bcc
ggml-cpu: implement MXFP4 SIMD for s390x (#16193) * ggml-cpu: impl mxfp4 s390x Signed-off-by: Aaron Teo <aaron.teo1@ibm.com> * ggml-cpu: missing s = sumf Signed-off-by: Aaron Teo <aaron.teo1@ibm.com> * ggml-cpu: fix incorrect kval_mxfp4 type Signed-off-by: Aaron Teo <aaron.teo1@ibm.com> * ggml-cpu: rework mxfp4 ...
[ { "path": "ggml/src/ggml-cpu/arch-fallback.h", "patch": "@@ -160,7 +160,6 @@\n #define ggml_vec_dot_iq3_s_q8_K_generic ggml_vec_dot_iq3_s_q8_K\n #define ggml_vec_dot_iq1_s_q8_K_generic ggml_vec_dot_iq1_s_q8_K\n #define ggml_vec_dot_iq1_m_q8_K_generic ggml_vec_dot_iq1_m_q8_K\n-#define ggml_vec_dot_mxfp4_q8_0...
2025-09-26T10:27:25
nodejs/node
b616e879474f72333a73db1d879abf5b5ba36f1d
be63c26e8c5d9f337cc7349ea37dc5b312c9631d
test: fix inspector helper port sniffing PR-URL: https://github.com/nodejs/node/pull/13870 Reviewed-By: Miroslav Bajtoš <mbajtoss@gmail.com>
[ { "path": "test/inspector/inspector-helper.js", "patch": "@@ -325,9 +325,10 @@ class NodeInstance {\n console.log('[err]', line);\n if (this._portCallback) {\n const matches = line.match(/Debugger listening on ws:\\/\\/.+:(\\d+)\\/.+/);\n- if (matches)\n+ if (matches) {\n thi...
2017-08-17T06:53:25
huggingface/transformers
95091e1582688c2ffd8342918f3eb0e3abeeb0c8
5fd5ef76243bf7e0285cc8908ff63c2c5c412199
Set `cache_dir` for `evaluate.load()` in example scripts (#28422) While using `run_clm.py`,[^1] I noticed that some files were being added to my global cache, not the local cache. I set the `cache_dir` parameter for the one call to `evaluate.load()`, which partially solved the problem. I figured that while I was fi...
[ { "path": "examples/flax/image-captioning/run_image_captioning_flax.py", "patch": "@@ -853,7 +853,7 @@ def blockwise_data_loader(\n yield batch\n \n # Metric\n- metric = evaluate.load(\"rouge\")\n+ metric = evaluate.load(\"rouge\", cache_dir=model_args.cache_dir)\n \n def postp...
2024-01-11T14:38:44
golang/go
57d751370c9c44a1d13df1ed1f72c4316239dff3
3633d2c545cf21c2803103e1036f17f19b4ae6fa
runtime: use conservative scanning for debug calls A debugger can inject a call at almost any PC, which causes significant complications with stack scanning and growth. Currently, the runtime solves this using precise stack maps and register maps at nearly all PCs, but these extra maps require roughly 5% of the binary...
[ { "path": "src/runtime/asm_amd64.s", "patch": "@@ -1560,10 +1560,8 @@ GLOBL\tdebugCallFrameTooLarge<>(SB), RODATA, $20\t// Size duplicated below\n // a stack pointer to an escaping argument. debugCallV1 cannot check\n // this invariant.\n TEXT runtime·debugCallV1(SB),NOSPLIT,$152-0\n-\t// Save all registers...
2020-04-15T19:44:57
vuejs/vue
29c348f3cf60c50a52cc98123f8c54fa8f5672fc
21fca2fffc3a75235a6656eb85ae40835e04bf69
fix: fix keyCode check for Chrome autofill fake key events close #9441
[ { "path": "src/compiler/codegen/events.js", "patch": "@@ -163,7 +163,13 @@ function genHandler (handler: ASTElementHandler | Array<ASTElementHandler>): str\n }\n \n function genKeyFilter (keys: Array<string>): string {\n- return `if(('keyCode' in $event)&&${keys.map(genFilterCode).join('&&')})return null;`...
2019-02-12T03:54:35
ggml-org/llama.cpp
0f7c69689f4e681948a6005adea9bee9c08ff903
835b2b915c52bcabcd688d025eacff9a07b65f52
musa: fix build warnings (#15611) Signed-off-by: Xiaodong Ye <xiaodong.ye@mthreads.com>
[ { "path": "ggml/src/ggml-cuda/binbcast.cu", "patch": "@@ -54,7 +54,7 @@ static __global__ void k_bin_bcast(const src0_t * src0,\n const uint32_t i2 = fastdiv((blockDim.z * blockIdx.z + threadIdx.z), ne3);\n const uint32_t i3 = (blockDim.z * blockIdx.z + threadIdx.z) - (i2 * ne3.z);\n \n- ...
2025-09-26T00:56:10
huggingface/transformers
5fd5ef76243bf7e0285cc8908ff63c2c5c412199
d019acb858a2575ab6cfcc61943a3d28f180b305
Fix docker file (#28452) fix docker file Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": "docker/transformers-all-latest-gpu/Dockerfile", "patch": "@@ -11,7 +11,7 @@ SHELL [\"sh\", \"-lc\"]\n \n ARG PYTORCH='2.1.1'\n # (not always a valid torch version)\n-ARG INTEL_TORCH_EXT='2.1.1'\n+ARG INTEL_TORCH_EXT='2.1.100'\n # Example: `cu102`, `cu113`, etc.\n ARG CUDA='cu118'\n \n@@ -65,7 +65...
2024-01-11T14:34:05
nodejs/node
be63c26e8c5d9f337cc7349ea37dc5b312c9631d
cd9f81d5bfa918fca75858dc305b4380b82fd746
build: don't add libraries when --enable-static Currently when building with --enabled-static the cctest target will include libraries to be linked regardless. This commit adds a condition to only add the libraries when dynamically linking. PR-URL: https://github.com/nodejs/node/pull/14837 Fixes: https://github.com/n...
[ { "path": "node.gyp", "patch": "@@ -592,6 +592,26 @@\n 'OBJ_TRACING_PATH': '<(OBJ_DIR)/node/src/tracing',\n 'OBJ_SUFFIX': 'o',\n 'OBJ_SEPARATOR': '/',\n+ 'OBJ_FILES': [\n+\t '<(OBJ_GEN_PATH)<(OBJ_SEPARATOR)node_javascript.<(OBJ_SUFFIX)',\n+ '<(OBJ_PATH)<(OBJ_SEPARATO...
2017-08-15T07:17:02
golang/go
3633d2c545cf21c2803103e1036f17f19b4ae6fa
b3863fbbc2fe1dbf516111992854aa9178d01410
runtime: perform debug call injection on a new goroutine Currently, when a debugger injects a call, that call happens on the goroutine where the debugger injected it. However, this requires significant runtime complexity that we're about to remove. To prepare for this, this CL switches to a different approach that le...
[ { "path": "src/runtime/debugcall.go", "patch": "@@ -95,9 +95,129 @@ func debugCallCheck(pc uintptr) string {\n \treturn ret\n }\n \n-// debugCallWrap pushes a defer to recover from panics in debug calls\n-// and then calls the dispatching function at PC dispatch.\n+// debugCallWrap starts a new goroutine to...
2020-04-15T19:38:00
vuejs/vue
21fca2fffc3a75235a6656eb85ae40835e04bf69
11deaa932eb51e9af11fd32e72c8cab3cd55ec67
fix: ensure scoped slot containing passed down slot content updates properly
[ { "path": "src/compiler/codegen/index.js", "patch": "@@ -368,7 +368,12 @@ function genScopedSlots (\n // for example if the slot contains dynamic names, has v-if or v-for on them...\n let needsForceUpdate = Object.keys(slots).some(key => {\n const slot = slots[key]\n- return slot.slotTargetDynami...
2019-02-11T16:30:14
ggml-org/llama.cpp
835b2b915c52bcabcd688d025eacff9a07b65f52
b05a9d650f4da1e70e7e2cbe8fe44e61b39656db
model : add GroveMoE support (#15510) * add GroveMoE support * remove constexpr that fails on certain compilers * revert crude scalar div implementation, use cast * build_attn_inp_kv_unified -> build_attn_inp_kv * fix build_attn * re-apply ffn_exps regex changes
[ { "path": "common/common.h", "patch": "@@ -738,7 +738,7 @@ const char * const LLM_KV_SPLIT_TENSORS_COUNT = \"split.tensors.count\";\n // MoE utils\n //\n \n-const char * const LLM_FFN_EXPS_REGEX = \"\\\\.ffn_(up|down|gate)_exps\";\n+const char * const LLM_FFN_EXPS_REGEX = \"\\\\.ffn_(up|down|gate)_(ch|)exps...
2025-09-25T17:50:28
huggingface/transformers
2a85345a2366d8f4ab6f9d34c11d36dee5b5a614
66964c00f6a13ac4dcd81b9e410d1b0a21192493
Optimize the speed of the truncate_sequences function. (#28263) * change truncate_sequences * Update tokenization_utils_base.py * change format * fix when ids_to_move=0 * fix * Update src/transformers/tokenization_utils_base.py Co-authored-by: Arthur <48595927+ArthurZucker@users.noreply.github.com> ...
[ { "path": "src/transformers/tokenization_utils_base.py", "patch": "@@ -3557,21 +3557,26 @@ def truncate_sequences(\n \"truncation strategy. So the returned list will always be empty even if some \"\n \"tokens have been removed.\"\n )\n- for _ in range(n...
2024-01-11T10:42:14
nodejs/node
cd9f81d5bfa918fca75858dc305b4380b82fd746
e9c026369628834a806e36b42780db44a5017613
deps: fix inspector v8 test This fixes the inspector tests failing after the cherry-pick. V8 commit: https://chromium.googlesource.com/v8/v8/+/f19b889be801bdebc04c49090e37c787f7ba8805 PR-URL: https://github.com/nodejs/node/pull/14827 Fixes: https://github.com/nodejs/node/issues/14824 Reviewed-By: Anna Henningsen <ann...
[ { "path": "deps/v8/test/inspector/isolate-data.cc", "patch": "@@ -93,3 +93,10 @@ v8::MaybeLocal<v8::Module> IsolateData::ModuleResolveCallback(\n IsolateData* data = IsolateData::FromContext(context);\n return data->modules_[ToVector(specifier)].Get(data->isolate_);\n }\n+\n+void IsolateData::FreeContex...
2017-08-14T18:47:36
golang/go
b3863fbbc2fe1dbf516111992854aa9178d01410
197a2a3799cebd91ec623616c6b5fac850955b58
runtime: make newproc1 not start the goroutine Currently, newproc1 allocates, initializes, and schedules a new goroutine. We're about to change debug call injection in a way that will need to create a new goroutine without immediately scheduling it. To prepare for that, make scheduling the responsibility of newproc1's...
[ { "path": "src/runtime/proc.go", "patch": "@@ -3454,23 +3454,44 @@ func malg(stacksize int32) *g {\n // Create a new g running fn with siz bytes of arguments.\n // Put it on the queue of g's waiting to run.\n // The compiler turns a go statement into a call to this.\n-// Cannot split the stack because it as...
2020-04-15T17:56:05
vuejs/vue
e7d49cdcf2fd9a612e0dac7a7bea318824210881
060686d6ea4d013129b4d2e93d7d2e5c93e09686
fix: allow passing multiple arguments to scoped slot fix #9468 Note: the usage is NOT recommended
[ { "path": "src/core/vdom/helpers/normalize-scoped-slots.js", "patch": "@@ -48,8 +48,8 @@ export function normalizeScopedSlots (\n }\n \n function normalizeScopedSlot(normalSlots, key, fn) {\n- const normalized = scope => {\n- let res = fn(scope || {})\n+ const normalized = function () {\n+ let res =...
2019-02-11T03:24:18
ggml-org/llama.cpp
077c94d0caf87fbd3cf3288dbb5c0fd9670294cf
aa3ee0eb0b80efca126cedf9bcb4fb5864b46ce3
CUDA: add a fused top-K MoE kernel (#16130) * CUDA: add a fused top-K MoE kernel This kernel does the following: 1. softmax over the logits per token [n_experts, n_tokens] 2. argmax reduce over the top-k (n_experts_used) logits 3. write weights + ids to global memory It is intended as fusion of softmax->top-k->get_r...
[ { "path": "ggml/src/ggml-cuda/ggml-cuda.cu", "patch": "@@ -45,6 +45,7 @@\n #include \"ggml-cuda/sumrows.cuh\"\n #include \"ggml-cuda/mean.cuh\"\n #include \"ggml-cuda/tsembd.cuh\"\n+#include \"ggml-cuda/topk-moe.cuh\"\n #include \"ggml-cuda/unary.cuh\"\n #include \"ggml-cuda/upscale.cuh\"\n #include \"ggml-...
2025-09-25T14:35:05
huggingface/transformers
8205b2647c3b268125697b6a98ba16ac69b07e64
cbbe30749b425f7c327acdab11473b33567a6e26
Assitant model may on a different device (#27995) * Assitant model may on a different device * fix tensor device
[ { "path": "src/transformers/generation/candidate_generator.py", "patch": "@@ -96,6 +96,11 @@ def __init__(\n model_kwargs: Dict,\n inputs_tensor: Optional[torch.Tensor] = None,\n ):\n+ # Make sure all data at the same device as assistant model\n+ device = assistant_model.de...
2024-01-11T10:24:59
vuejs/vue
060686d6ea4d013129b4d2e93d7d2e5c93e09686
0bad7e2a3508b55abaa8aec2a1bd9c1127305cb4
fix: do not cache scoped slots when mixed with normal slots
[ { "path": "src/core/vdom/helpers/normalize-scoped-slots.js", "patch": "@@ -15,8 +15,14 @@ export function normalizeScopedSlots (\n } else if (slots._normalized) {\n // fast path 1: child component re-render only, parent did not change\n return slots._normalized\n- } else if (slots.$stable && prev...
2019-02-11T03:23:22
nodejs/node
472a8a7f8dc09dc0c0b2643d2449e3aa5ca58c71
c879c9a5c6481df313bc90529588de44cf1e55f0
doc: fix typo in cli.md PR-URL: https://github.com/nodejs/node/pull/14855 Reviewed-By: Bartosz Sosnowski <bartosz@janeasystems.com> Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Roman Reiss <me@silverwind.i...
[ { "path": "doc/api/cli.md", "patch": "@@ -542,7 +542,7 @@ If `--use-openssl-ca` is enabled, this overrides and sets OpenSSL's directory\n containing trusted certificates.\n \n *Note*: Be aware that unless the child environment is explicitly set, this\n-evironment variable will be inherited by any child proc...
2017-08-16T10:00:57
golang/go
197a2a3799cebd91ec623616c6b5fac850955b58
45cd312394ebbcdce956952f0e269a82d89e6639
runtime/pprof: fix units of MaxRSS on Linux Rusage.Maxrss is in bytes on Darwin but in KiB on Linux. Fix this discrepancy so it's always in bytes. Change-Id: Ic714abc3276566b8fe5e30565072092212610854 Reviewed-on: https://go-review.googlesource.com/c/go/+/230979 Run-TryBot: Austin Clements <austin@google.com> TryBot-R...
[ { "path": "src/runtime/pprof/pprof_rusage.go", "patch": "@@ -9,12 +9,23 @@ package pprof\n import (\n \t\"fmt\"\n \t\"io\"\n+\t\"runtime\"\n \t\"syscall\"\n )\n \n // Adds MaxRSS to platforms that are supported.\n func addMaxRSS(w io.Writer) {\n+\tvar rssToBytes uintptr\n+\tswitch runtime.GOOS {\n+\tcase \"...
2020-04-29T19:06:21
ggml-org/llama.cpp
d0991da39d3c39b3980c24cdfccb9a4c95a46870
aa719c2f886c445b78113bf1e5849f1fce4124a7
server : add support for external server for tests (#16243) This commit adds support for using an externally started llama-server instance for the server tests. This can be enabled by setting the DEBUG_EXTERNAL environment variable. The motivation for this is to allow debugging of the server itself when investigating...
[ { "path": "tools/server/tests/README.md", "patch": "@@ -64,3 +64,33 @@ cmake --build build -j --target llama-server && ./tools/server/tests/tests.sh\n ```\n \n To see all available arguments, please refer to [pytest documentation](https://docs.pytest.org/en/stable/how-to/usage.html)\n+\n+### Debugging exter...
2025-09-25T09:36:47
huggingface/transformers
cbbe30749b425f7c327acdab11473b33567a6e26
6c78bbcb8320d316434262ef003251ca997db0d1
[Whisper] Fix slow test (#28407) * [Whisper] Fix slow test * update * update * update * update --------- Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": ".github/workflows/self-nightly-scheduled.yml", "patch": "@@ -16,6 +16,7 @@ env:\n OMP_NUM_THREADS: 8\n MKL_NUM_THREADS: 8\n RUN_SLOW: yes\n+ HF_HUB_READ_TOKEN: ${{ secrets.HF_HUB_READ_TOKEN }}\n SIGOPT_API_TOKEN: ${{ secrets.SIGOPT_API_TOKEN }}\n TF_FORCE_GPU_ALLOW_GROWTH: true\n RUN...
2024-01-10T21:35:36
rust-lang/rust
a1a6fd74d248242e3c4c6db195f4070165b743bd
e663819856d605df63ea798f969aff123ead7e27
Add warning about using llvm.ccache and add FIXME note
[ { "path": "src/bootstrap/src/core/config/config.rs", "patch": "@@ -962,6 +962,7 @@ define_config! {\n tests: Option<bool> = \"tests\",\n enzyme: Option<bool> = \"enzyme\",\n plugins: Option<bool> = \"plugins\",\n+ // FIXME: Remove this field at Q2 2025, it has been replaced by...
2025-02-13T08:41:23
vuejs/vue
0bad7e2a3508b55abaa8aec2a1bd9c1127305cb4
c1989500450c06cde7750850c87a6082c0725b54
fix: bail out of event blocking for iOS bug close #9462
[ { "path": "src/platforms/web/runtime/modules/events.js", "patch": "@@ -61,9 +61,17 @@ function add (\n const original = handler\n handler = original._wrapper = function (e) {\n if (\n+ // no bubbling, should always fire.\n+ // this is just a safety net in case event.timeStamp is ...
2019-02-09T06:16:41
golang/go
45cd312394ebbcdce956952f0e269a82d89e6639
c8b42f9aa5146638c62e8420147595b3533c2a78
runtime: fix debuglog traceback printing off-by-one The debuglog traceback printer wasn't adjusting for call/return PCs. Change-Id: I98dda1c0f22cd78651d88124ea51dc166dc91c7a Reviewed-on: https://go-review.googlesource.com/c/go/+/227646 Run-TryBot: Austin Clements <austin@google.com> TryBot-Result: Gobot Gobot <gobot@...
[ { "path": "src/runtime/debuglog.go", "patch": "@@ -665,13 +665,17 @@ func (r *debugLogReader) printVal() bool {\n \t\tprint(\"..(\", r.uvarint(), \" more bytes)..\")\n \n \tcase debugLogPC:\n-\t\tprintDebugLogPC(uintptr(r.uvarint()))\n+\t\tprintDebugLogPC(uintptr(r.uvarint()), false)\n \n \tcase debugLogTra...
2019-08-07T01:37:37
nodejs/node
949aec5c32ee89e3b3776d663862b4539eff7315
2e91d8d4839f589159d438402cb164d3409ca919
http2: handful of http/2 src cleanups * inline more stuff. remove a node_http2_core.cc * clean up debug messages * simplify options code, and cleanup PR-URL: https://github.com/nodejs/node/pull/14825 Reviewed-By: Anna Henningsen <anna@addaleax.net>
[ { "path": "node.gyp", "patch": "@@ -185,7 +185,6 @@\n 'src/node_contextify.cc',\n 'src/node_debug_options.cc',\n 'src/node_file.cc',\n- 'src/node_http2_core.cc',\n 'src/node_http2.cc',\n 'src/node_http_parser.cc',\n 'src/node_main.cc',", "additions"...
2017-08-14T16:05:38
ggml-org/llama.cpp
aa719c2f886c445b78113bf1e5849f1fce4124a7
4cdd0bb4537f9617e9efcfef6b9454fcefe2ff08
ggml : fix loongarch lsx compilation error (#15864)
[ { "path": "ggml/src/ggml-cpu/arch/loongarch/quants.c", "patch": "@@ -105,6 +105,18 @@ static inline float hsum_float_4x4(const __m128 a, const __m128 b, const __m128\n \n return ((v4f32)res)[0];\n }\n+\n+// multiply int8_t, add results pairwise twice\n+static inline __m128i mul_sum_i8_pairs(const __m128...
2025-09-25T09:22:55
vuejs/vue
b2a093fa03704b2f0c6b2e9ee4d10b7ed156698d
9011b83db79cf2f3563f8fccb2e41b5b863c3ee9
chore: fix e2e test in phantomjs
[ { "path": "src/core/vdom/helpers/normalize-scoped-slots.js", "patch": "@@ -34,7 +34,7 @@ export function normalizeScopedSlots (\n }\n // avoriaz seems to mock a non-extensible $scopedSlots object\n // and when that is passed down this would cause an error\n- if (Object.isExtensible(slots)) {\n+ if (...
2019-02-08T21:32:22
rust-lang/rust
c47746ca67d53d5d8fc3ae9fd7ad144463a69e7d
4129f5c8241ae2eafc9888fe784a536e0c29052b
fix: `needless_option_as_deref` FP in trait
[ { "path": "clippy_utils/src/lib.rs", "patch": "@@ -107,7 +107,7 @@ use rustc_hir::{\n self as hir, Arm, BindingMode, Block, BlockCheckMode, Body, ByRef, Closure, ConstArgKind, ConstContext,\n Destination, Expr, ExprField, ExprKind, FnDecl, FnRetTy, GenericArgs, HirId, Impl, ImplItem, ImplItemKind,\n...
2025-02-13T07:26:11
huggingface/transformers
6c78bbcb8320d316434262ef003251ca997db0d1
3724156b4dce558a1d174a7e2239f4401ad8fefd
[docstring] Fix docstring for ErnieConfig, ErnieMConfig (#27029) * Remove ErnieConfig, ErnieMConfig check_docstrings * Run fix_and_overwrite for ErnieConfig, ErnieMConfig * Replace <fill_type> and <fill_docstring> in configuration_ernie, configuration_ernie_m.py with type and docstring values --------- Co-...
[ { "path": "src/transformers/models/ernie/configuration_ernie.py", "patch": "@@ -81,14 +81,14 @@ class ErnieConfig(PretrainedConfig):\n The standard deviation of the truncated_normal_initializer for initializing all weight matrices.\n layer_norm_eps (`float`, *optional*, defaults to 1e-12...
2024-01-10T17:20:39
ggml-org/llama.cpp
4cdd0bb4537f9617e9efcfef6b9454fcefe2ff08
b5bd037832bcb8ed3086dfe26ce9090bea989af1
docs: fix typo [no ci] (#16244)
[ { "path": "CONTRIBUTING.md", "patch": "@@ -25,7 +25,7 @@ The project differentiates between 3 levels of contributors:\n - Squash-merge PRs\n - Use the following format for the squashed commit title: `<module> : <commit title> (#<issue_number>)`. For example: `utils : fix typo in utils.py (#1234)`\n - Option...
2025-09-25T09:12:27
golang/go
f2163c4d458df70bd46f284f995419135f0e1fc3
35dce1d67c730a0f49c82660e94fe8305cac6861
bytes, strings: align requirements for functions passed to FieldFuncs golang.org/cl/229763 removed the documentation of requirements of the function passed to FieldsFunc. The current implementation does not require functions to return consistent results but this had not been the case for previous implementations. Add...
[ { "path": "src/bytes/bytes.go", "patch": "@@ -445,8 +445,9 @@ func Fields(s []byte) [][]byte {\n // It splits the slice s at each run of code points c satisfying f(c) and\n // returns a slice of subslices of s. If all code points in s satisfy f(c), or\n // len(s) == 0, an empty slice is returned.\n-// Field...
2020-04-29T10:23:32
vuejs/vue
9011b83db79cf2f3563f8fccb2e41b5b863c3ee9
8a800867fe61e5aa642e1e3da91bb890d07312f7
fix: avoid breaking avoriaz edge case
[ { "path": "src/core/vdom/helpers/normalize-scoped-slots.js", "patch": "@@ -32,7 +32,9 @@ export function normalizeScopedSlots (\n res[key] = proxyNormalSlot(normalSlots, key)\n }\n }\n- if (slots) {\n+ // avoriaz seems to mock a non-extensible $scopedSlots object\n+ // and when that is passed...
2019-02-08T21:11:41
nodejs/node
620ba416940299fbad3e40258bb8fd99279ec8c5
e96b94970a0db7f9081594081a19c459731f4571
http: don't double-fire the req error event req.socket._hadError should be set before emitting the error event. PR-URL: https://github.com/nodejs/node/pull/14659 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de>
[ { "path": "lib/_http_client.js", "patch": "@@ -373,8 +373,8 @@ function socketCloseListener() {\n // This socket error fired before we started to\n // receive a response. The error needs to\n // fire on the request.\n- req.emit('error', createHangUpError());\n req.socket._hadError = true;...
2017-07-18T03:05:05
huggingface/transformers
3724156b4dce558a1d174a7e2239f4401ad8fefd
cef2e40e0f8eaad13b8d32817a48fdddc32eb2a5
Fix load correct tokenizer in Mixtral model documentation (#28437)
[ { "path": "docs/source/en/model_doc/mixtral.md", "patch": "@@ -66,7 +66,7 @@ These ready-to-use checkpoints can be downloaded and used via the HuggingFace Hu\n >>> device = \"cuda\" # the device to load the model onto\n \n >>> model = AutoModelForCausalLM.from_pretrained(\"mistralai/Mixtral-8x7B-v0.1\")\n->...
2024-01-10T17:09:06
vuejs/vue
8a800867fe61e5aa642e1e3da91bb890d07312f7
099f3ba60085a089ff369442bdb835f3868e47c0
fix: new syntax slots without scope should also be exposed on functional slots()
[ { "path": "src/core/vdom/create-functional-component.js", "patch": "@@ -49,7 +49,15 @@ export function FunctionalRenderContext (\n this.parent = parent\n this.listeners = data.on || emptyObject\n this.injections = resolveInject(options.inject, parent)\n- this.slots = () => this.$slots || (this.$slots...
2019-02-08T19:45:45
ggml-org/llama.cpp
dfcd53f7ecb9bb897a9d752d09c59d10be47237a
4ea00794b8c995b6deaf4bac159c1778dc27419a
metal : fuse NORM + MUL + ADD, support non-multiples of 4 (#16220) * metal : fuse NORM + MUL + ADD * metal : support norms of non-multiple of 4 * cont : fix comment [no ci]
[ { "path": "ggml/src/ggml-metal/ggml-metal-common.cpp", "patch": "@@ -383,6 +383,7 @@ void ggml_graph_optimize(ggml_cgraph * gf) {\n // fuse only ops that start with these operations\n // can be expanded when needed\n if (node.op() == GGML_OP_ADD ||\n+ node.op() == GGML_OP_...
2025-09-25T08:30:16
huggingface/transformers
cef2e40e0f8eaad13b8d32817a48fdddc32eb2a5
fff8ca8e597532f141bc3f522f47573320a06730
Fix for checkpoint rename race condition (#28364) * Changed logic for renaming staging directory when saving checkpoint to only operate with the main process. Added fsync functionality to attempt to flush the write changes in case os.rename is not atomic. * Updated styling using make fixup * Updated check for m...
[ { "path": "src/transformers/trainer.py", "patch": "@@ -2391,17 +2391,23 @@ def _save_checkpoint(self, model, trial, metrics=None):\n # Place checkpoint in final location after all saving is finished.\n # First wait for everyone to finish writing\n self.args.distributed_state.wait_for...
2024-01-10T15:55:42
golang/go
35dce1d67c730a0f49c82660e94fe8305cac6861
5a550b695117f07a4f2454039a4871250cd3ed09
cmd/go: trim source paths when compiling C with -trimpath When then go command is run with -trimpath, it will now use -fdebug-prefix-map when invoking the C compiler (if supported) to replace the source root directory with a dummy root directory. This should prevent source directories from appearing either literally ...
[ { "path": "src/cmd/go/internal/work/exec.go", "patch": "@@ -2169,6 +2169,39 @@ func (b *Builder) ccompile(a *Action, p *load.Package, outfile string, flags []s\n \tdesc := p.ImportPath\n \toutfile = mkAbs(p.Dir, outfile)\n \n+\t// Elide source directory paths if -trimpath or GOROOT_FINAL is set.\n+\t// This...
2019-12-19T18:43:24
nodejs/node
e96b94970a0db7f9081594081a19c459731f4571
d4374ad6514b5825021597eb3fccdce241b66f70
doc: added napi_get_value_string_latin1 * Reordered string functions alphabetically * Fixed a typo in napi_get_value_string_utf8 PR-URL: https://github.com/nodejs/node/pull/14678 Fixes: https://github.com/nodejs/node/issues/14397 Refs: https://github.com/nodejs/node/issues/14256 Reviewed-By: Refael Ackermann <refack@...
[ { "path": "doc/api/n-api.md", "patch": "@@ -1462,51 +1462,51 @@ The JavaScript Number type is described in\n [Section 6.1.6](https://tc39.github.io/ecma262/#sec-ecmascript-language-types-number-type)\n of the ECMAScript Language Specification.\n \n-#### *napi_create_string_utf16*\n+#### *napi_create_string_...
2017-08-07T21:07:19
vuejs/vue
0e8560d0fc1c0fbf3a52464939701e0e44543b00
ca57920edb56000bfc87bb64f4e5e3450c03e13a
fix: expose v-slot slots without scope on this.$slots fix #9421, fix #9458
[ { "path": "src/compiler/codegen/index.js", "patch": "@@ -411,7 +411,9 @@ function genScopedSlot (\n : genChildren(el, state) || 'undefined'\n : genElement(el, state)\n }}`\n- return `{key:${el.slotTarget || `\"default\"`},fn:${fn}}`\n+ // reverse proxy v-slot without scope on this.$slots...
2019-02-08T18:47:17
ggml-org/llama.cpp
c498fc82fe5b83fc8c6e1627286bdc1f93caddbf
e7a5130a20cf45a3358308356c249734ca982143
rpc : use ggml logging facilities Use RPC_DEBUG environment variable to enable debug messages. Add helper macro LOG_DBG() which does an early check of the env var before calling GGML_LOG_DEBUG(). Make sure we log a debug message for every server function.
[ { "path": "ggml/src/ggml-rpc/ggml-rpc.cpp", "patch": "@@ -31,6 +31,12 @@\n #include <filesystem>\n #include <algorithm>\n \n+static const char * RPC_DEBUG = std::getenv(\"GGML_RPC_DEBUG\");\n+\n+#define LOG_DBG(...) \\\n+ do { if (RPC_DEBUG) GGML_LOG_DEBUG(__VA_ARGS__); } while (0)\n+\n+\n namespace fs =...
2025-09-25T07:20:02
huggingface/transformers
ffd3710391c0700a3957f0cdf2c99bc5ae966c70
6015d0ad6ce946e763fa1052614317ff34825d33
Fix number of models in README.md (#28430)
[ { "path": "README.md", "patch": "@@ -228,7 +228,7 @@ The model itself is a regular [Pytorch `nn.Module`](https://pytorch.org/docs/sta\n 1. Lower compute costs, smaller carbon footprint:\n - Researchers can share trained models instead of always retraining.\n - Practitioners can reduce compute time a...
2024-01-10T11:11:08
golang/go
5a550b695117f07a4f2454039a4871250cd3ed09
b13ce66d1b3ce01064fd1912055d71447ab62384
go/ast: drop //directive comments from doc.Text This allows writing // F does a thing. //go:noinline func F() without the //go:noinline or other directive (such as //line) ending up looking like extra words in the doc comment. Fixes #37974. Change-Id: Ic738d72802cc2fa448f7633915e7126d2f76d8ca Reviewed-on: https...
[ { "path": "src/go/ast/ast.go", "patch": "@@ -87,10 +87,10 @@ func stripTrailingWhitespace(s string) string {\n \n // Text returns the text of the comment.\n // Comment markers (//, /*, and */), the first space of a line comment, and\n-// leading and trailing empty lines are removed. Multiple empty lines are...
2020-03-21T12:23:13
nodejs/node
3f5d944ace8b0a6ac2f4c76a5873a9bb6ec27b2f
eab2bea46fef091b8bf551eb9702b6da482048b3
http2: Expose Http2ServerRequest/Response In order for express (and possibly other libraries) to get and use the Http2ServerRequest/Response - expose them in the http2 exports. Same as is done in http module. PR-URL: https://github.com/nodejs/node/pull/14690 Ref: https://github.com/expressjs/express/issues/3390 Fixes...
[ { "path": "lib/http2.js", "patch": "@@ -13,7 +13,9 @@ const {\n getUnpackedSettings,\n createServer,\n createSecureServer,\n- connect\n+ connect,\n+ Http2ServerRequest,\n+ Http2ServerResponse,\n } = require('internal/http2/core');\n \n module.exports = {\n@@ -23,5 +25,7 @@ module.exports = {\n g...
2017-08-10T21:12:28
vuejs/vue
ca57920edb56000bfc87bb64f4e5e3450c03e13a
57bc80a546acb2bd092edd393228324b453ae4e2
fix: avoid logging same error twice when thrown by user in global handler fix #9445
[ { "path": "src/core/util/error.js", "patch": "@@ -49,7 +49,11 @@ function globalHandleError (err, vm, info) {\n try {\n return config.errorHandler.call(null, err, vm, info)\n } catch (e) {\n- logError(e, null, 'config.errorHandler')\n+ // if the user intentionally throws the original...
2019-02-07T15:17:28
huggingface/transformers
6015d0ad6ce946e763fa1052614317ff34825d33
a777f52599143071acdb3417e27b98a97ad7be3d
Support `DeepSpeed` when using auto find batch size (#28088) Fixup test
[ { "path": "src/transformers/integrations/deepspeed.py", "patch": "@@ -129,7 +129,7 @@ def fill_match(self, ds_key_long, hf_val, hf_key=None, must_match=True):\n \n fill_only = partialmethod(fill_match, must_match=False)\n \n- def trainer_config_process(self, args):\n+ def trainer_config_process(se...
2024-01-10T11:03:13
ggml-org/llama.cpp
bee378e0988b44bbe93b0768208080951b312363
5fb557653b8756ac2b6c6a102b1e44abcadf552f
ci: run the x64 and arm ci on the github machines instead (#16183) * run the x64 ci on regular machines * set up the same thing for arm fix test-quantize-perf just like #12306 * try to disable sve * add another sve run
[ { "path": ".github/workflows/build.yml", "patch": "@@ -1251,56 +1251,129 @@ jobs:\n # TODO: simplify the following workflows using a matrix\n # TODO: run lighter CI on PRs and the full CI only on master (if needed)\n ggml-ci-x64-cpu-low-perf:\n- runs-on: [self-hosted, Linux, X64, CPU, low-perf]\n+ r...
2025-09-25T05:06:06
rust-lang/rust
66ebee4dd2f55dadca0eaad72139eb3c5ea4c6ea
ef148cd7eb00a5a973130dc6473da71fd6c487ee
Compiletest should not inherit all host RUSTFLAGS I told rhelmot to do this in #134913. But it's not correct; compiletest shouldn't inherit RUSTFLAGS at all. Pass a single new --host-rustcflags to compiletest instead, without overwriting any existing arguments. Fixes the following failure, which only happens when bu...
[ { "path": "src/bootstrap/src/core/build_steps/test.rs", "patch": "@@ -1969,13 +1969,12 @@ NOTE: if you're sure you want to do this, please open an issue as to why. In the\n if !builder.config.dry_run() && suite.ends_with(\"fulldeps\") {\n let llvm_libdir =\n c...
2025-02-13T04:01:22
nodejs/node
eab2bea46fef091b8bf551eb9702b6da482048b3
0309619aa74206baee301946177de47cc4f61ed9
doc: fix word wrapping for api stability boxes PR-URL: https://github.com/nodejs/node/pull/14809 Fixes: https://github.com/nodejs/nodejs.org/issues/1337 Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: James...
[ { "path": "doc/api_assets/style.css", "patch": "@@ -93,7 +93,8 @@ em code {\n color: white !important;\n margin: 0 0 1em 0;\n font-family: \"Lato\", \"Lucida Grande\", \"Lucida Sans Unicode\", \"Lucida Sans\", Verdana, Tahoma, sans-serif;\n- font-weight: 700;\n+ padding: 1em;\n+ line-height: 1.5;\n...
2017-08-13T16:20:17
golang/go
202c43b2ad3fca2cdcaff0d0720de5c99030b638
3dc4d373876f4515cb5937a47ef3dacd8590dfea
crypto/x509/pkix: improve docs and Name.String() Previously, non-standard attributes in Name.Names were being omitted when printed using Name.String(). Now, any non-standard attributes that would not already be printed in Name.String() are being added temporarily to Name.ExtraNames to be printed. Fixes #33094 Fixes #...
[ { "path": "src/crypto/x509/pkix/pkix.go", "patch": "@@ -117,19 +117,30 @@ type Extension struct {\n }\n \n // Name represents an X.509 distinguished name. This only includes the common\n-// elements of a DN. When parsing, all elements are stored in Names and\n-// non-standard elements can be extracted from ...
2020-04-24T15:55:21
vuejs/vue
57bc80a546acb2bd092edd393228324b453ae4e2
4015debe951c6b022dee5fc16869561b6c9981b4
fix: empty scoped slot should return undefined fix #9452
[ { "path": "src/core/vdom/helpers/normalize-scoped-slots.js", "patch": "@@ -33,10 +33,13 @@ export function normalizeScopedSlots (\n \n function normalizeScopedSlot(fn: Function): Function {\n return scope => {\n- const res = fn(scope)\n- return res && typeof res === 'object' && !Array.isArray(res)\n...
2019-02-07T15:03:13
huggingface/transformers
a777f52599143071acdb3417e27b98a97ad7be3d
4df1d696340794cc9c03f4d14482375207f1e7a7
Skip now failing test in the Trainer tests (#28421) * Fix test * Skip
[ { "path": "tests/trainer/test_trainer.py", "patch": "@@ -1458,6 +1458,9 @@ def test_can_resume_training(self):\n trainer.train(resume_from_checkpoint=True)\n self.assertTrue(\"No valid checkpoint found in output directory\" in str(context.exception))\n \n+ @unittest.skip(\n+ re...
2024-01-10T11:02:31
ggml-org/llama.cpp
5fb557653b8756ac2b6c6a102b1e44abcadf552f
4ae88d07d026e66b41e85afece74e88af54f4e66
devops: fix s390x docker release failure (#16231)
[ { "path": ".devops/s390x.Dockerfile", "patch": "@@ -2,10 +2,10 @@ ARG GCC_VERSION=15.2.0\n ARG UBUNTU_VERSION=24.04\n \n ### Build Llama.cpp stage\n-FROM --platform=linux/s390x gcc:${GCC_VERSION} AS build\n+FROM gcc:${GCC_VERSION} AS build\n \n-RUN --mount=type=cache,target=/var/cache/apt \\\n- --mount=t...
2025-09-25T03:36:30
rust-lang/rust
ab786d3b98d640b1208eff371c1184e3e8ce1d17
ef148cd7eb00a5a973130dc6473da71fd6c487ee
coverage: Eliminate more counters by giving them to unreachable nodes When preparing a function's coverage counters and metadata during codegen, any part of the original coverage graph that was removed by MIR optimizations can be treated as having an execution count of zero. Somewhat counter-intuitively, if we give t...
[ { "path": "compiler/rustc_mir_transform/src/coverage/counters.rs", "patch": "@@ -114,12 +114,8 @@ pub(crate) fn transcribe_counters(\n let mut new_counters_for_sites = |sites: Vec<BasicCoverageBlock>| {\n sites.into_iter().map(|node| new.ensure_phys_counter(node)).collect::<Vec<_>>()\n ...
2025-02-11T03:09:11
vuejs/vue
dae7e4182fbbb41e599953cc22e5d54dbb164070
d5ade28652b07303ac6b713813792752ae5e4e04
fix: skip microtask fix if event is fired from different document fix #9448
[ { "path": "src/platforms/web/runtime/modules/events.js", "patch": "@@ -60,7 +60,12 @@ function add (\n const attachedTimestamp = currentFlushTimestamp\n const original = handler\n handler = original._wrapper = function (e) {\n- if (e.timeStamp >= attachedTimestamp) {\n+ if (\n+ ...
2019-02-06T20:57:06
golang/go
df2a46f85ad1e28076f639e3608ae9e2809f97a2
095d2a453265acea44bea04620258f1ae5bb12bc
[dev.link] cmd/link: fix R_GOTOFF handling When applying relocations, we need to resolve ABI aliases. relocsym does that. Architecture-specific archreloc also needs to do that. The old code doesn't do that since ABI aliases are resolved in loadlibfull, or, in the old linker, in a much earlier stage. We don't do this i...
[ { "path": "src/cmd/link/internal/ld/data.go", "patch": "@@ -528,6 +528,12 @@ func relocsym(target *Target, ldr *loader.Loader, err *ErrorReporter, syms *Arch\n \t\tcase objabi.R_DWARFFILEREF:\n \t\t\t// We don't renumber files in dwarf.go:writelines anymore.\n \t\t\tcontinue\n+\n+\t\tcase objabi.R_CONST:\n+...
2020-04-29T14:07:07
nodejs/node
4f1eddf84e963f9c19e26259db7cf65cf287d45e
eac0147085edc83aeb1e96489ed837e7a9585bba
test: add missing console.error to exec-maxBuffer Adds the missing console.error to test-child-process-exec-maxBuffer PR-URL: https://github.com/nodejs/node/pull/14796 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.co...
[ { "path": "test/parallel/test-child-process-exec-maxBuffer.js", "patch": "@@ -36,7 +36,7 @@ const unicode = '中文测试'; // length = 4, byte length = 12\n }\n \n {\n- const cmd = `\"${process.execPath}\" -e \"console.('${unicode}');\"`;\n+ const cmd = `\"${process.execPath}\" -e \"console.error('${unicode}');\...
2017-08-12T12:04:46
huggingface/transformers
4df1d696340794cc9c03f4d14482375207f1e7a7
932ad8af7a333875a36a9a2007d2601510b1f601
[BUG] BarkEosPrioritizerLogitsProcessor eos_token_id use list, tensor size mismatch (#28201) fix(generation/logits_process.py): BarkEosPrioritizerLogitsProcessor eos_token_id use list, tensor size mismatch Co-authored-by: chenhanhui <chenhanhui@kanzhun.com>
[ { "path": "src/transformers/generation/logits_process.py", "patch": "@@ -2138,6 +2138,7 @@ def __call__(self, input_ids: torch.LongTensor, scores: torch.FloatTensor) -> to\n early_stop_scores[:, self.eos_token_id] = scores[:, self.eos_token_id]\n \n do_early_stop = probs[:, self.eos_...
2024-01-10T10:46:49
ggml-org/llama.cpp
f2a789e33490deb483a2694b066b37e45524bb79
3a599719673c850647e3bb911ed6d91109bb91d2
ggml : split graph allocations according to backend max buffer size (#15815) * ggml : make gallocr respect the backend's max buffer size * if the graph requires more memory than can fit into a single allocation, split it into multiple backend buffers * vulkan: report the actual max allocation size in buffer type in...
[ { "path": "ggml/src/ggml-alloc.c", "patch": "@@ -23,7 +23,7 @@ static bool ggml_is_view(const struct ggml_tensor * t) {\n }\n \n // ops that return true for this function must not use restrict pointers for their backend implementations\n-static bool ggml_op_can_inplace(enum ggml_op op) {\n+bool ggml_op_can_...
2025-09-24T14:17:49
vuejs/vue
7bc88f30c3eadded07dd5b460d1e7cb9342d017c
96a09aad99bdecbcc0e5c420077bf41893d4a745
fix: skip microtask fix in Firefix <= 53 fix #9446
[ { "path": "src/core/util/env.js", "patch": "@@ -15,6 +15,7 @@ export const isAndroid = (UA && UA.indexOf('android') > 0) || (weexPlatform ===\n export const isIOS = (UA && /iphone|ipad|ipod|ios/.test(UA)) || (weexPlatform === 'ios')\n export const isChrome = UA && /chrome\\/\\d+/.test(UA) && !isEdge\n expor...
2019-02-06T20:04:24
golang/go
07d9ea64abf9f98c525155f4f22776512d4d835d
7250dd25400dbe1d38124f04ff5bd5a03f0c8e1c
image: guard against NewXxx integer overflow Prior to this commit, NewXxx could panic when passed an image.Rectangle with one of width or height being negative. But it might not panic if both were negative, because (bpp * w * h) could still be positive. After this commit, it will panic if both are negative. With over...
[ { "path": "src/image/geom.go", "patch": "@@ -6,6 +6,7 @@ package image\n \n import (\n \t\"image/color\"\n+\t\"math/bits\"\n \t\"strconv\"\n )\n \n@@ -272,3 +273,37 @@ func Rect(x0, y0, x1, y1 int) Rectangle {\n \t}\n \treturn Rectangle{Point{x0, y0}, Point{x1, y1}}\n }\n+\n+// mul3NonNeg returns (x * y * z...
2020-04-27T23:32:00
nodejs/node
cde272a066923a1b93a10a8121b0ce572308d13c
062beb08df6a1061b548d4b1859b20252ea10b07
process: keep process prototype in inheritance chain The global `process` object had its prototype replaced with a fresh object that had `EventEmitter.prototype` as its prototype. With this change, the original `process.constructor.prototype` is modified to have `EventEmitter.prototype` as its prototype, reflecting th...
[ { "path": "lib/internal/bootstrap_node.js", "patch": "@@ -14,9 +14,7 @@\n process._eventsCount = 0;\n \n const origProcProto = Object.getPrototypeOf(process);\n- Object.setPrototypeOf(process, Object.create(EventEmitter.prototype, {\n- constructor: Object.getOwnPropertyDescriptor(origProcPro...
2017-08-09T15:58:10
huggingface/transformers
0f2f0c634ff3d9e69212ca6581d043c945f56fad
976189a6df796a2ff442dd81b022626c840d8c27
Fix `_merge_input_ids_with_image_features` for llava model (#28333) * fix `_merge_input_ids_with_image_features` for llava model * Update src/transformers/models/llava/modeling_llava.py Co-authored-by: Arthur <48595927+ArthurZucker@users.noreply.github.com> * adress comments * style and tests * ooops ...
[ { "path": "src/transformers/models/llava/modeling_llava.py", "patch": "@@ -276,9 +276,7 @@ def resize_token_embeddings(self, new_num_tokens: Optional[int] = None, pad_to_m\n self.vocab_size = model_embeds.num_embeddings\n return model_embeds\n \n- def _merge_input_ids_with_image_features(...
2024-01-10T07:33:33
vuejs/vue
96a09aad99bdecbcc0e5c420077bf41893d4a745
4d4d22a3f6017c46d08b67afe46af43027b06629
fix(compiler): fix v-bind dynamic arguments on slot outlets fix #9444
[ { "path": "src/compiler/codegen/index.js", "patch": "@@ -501,7 +501,14 @@ function genSlot (el: ASTElement, state: CodegenState): string {\n const slotName = el.slotName || '\"default\"'\n const children = genChildren(el, state)\n let res = `_t(${slotName}${children ? `,${children}` : ''}`\n- const a...
2019-02-06T18:58:09
ggml-org/llama.cpp
3a599719673c850647e3bb911ed6d91109bb91d2
63b54c81a620981be020184ab99e63a8e50e47cb
model : add label for LiquidAI LFM2-2.6B model (#16204) * model : add label for LiquidAI LFM2-2.6B model HF link: [LiquidAI/LFM2-2.6B](https://huggingface.co/LiquidAI/LFM2-2.6B). Support for GGUF conversion and inference is added in #14620. However, due to similar `n_embd`, it identifies as a 1.2B model. Fix the la...
[ { "path": "src/llama-model.cpp", "patch": "@@ -66,6 +66,7 @@ const char * llm_type_name(llm_type type) {\n case LLM_TYPE_1_7B: return \"1.7B\";\n case LLM_TYPE_1_8B: return \"1.8B\";\n case LLM_TYPE_2B: return \"2B\";\n+ case LLM_TYPE_2_6B: ...
2025-09-24T11:42:26
golang/go
7250dd25400dbe1d38124f04ff5bd5a03f0c8e1c
03efd426316a0a1cde419d5ad200b683766bbc84
image/jpeg: accept "\xff\x00" before a RST marker Fixes #28717 Change-Id: I0a1e4ef1583fff89b6f46ef647fb6e4499bdf999 Reviewed-on: https://go-review.googlesource.com/c/go/+/230122 Run-TryBot: Nigel Tao <nigeltao@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Rob Pike <r@golang.org>
[ { "path": "src/image/jpeg/reader_test.go", "patch": "@@ -6,6 +6,7 @@ package jpeg\n \n import (\n \t\"bytes\"\n+\t\"encoding/base64\"\n \t\"fmt\"\n \t\"image\"\n \t\"image/color\"\n@@ -262,6 +263,175 @@ func TestLargeImageWithShortData(t *testing.T) {\n \t}\n }\n \n+func TestPaddedRSTMarker(t *testing.T) {\...
2020-04-28T12:33:02
nodejs/node
062beb08df6a1061b548d4b1859b20252ea10b07
d441c7ffe8b94cacaf0dc05fcdb7e965d9289da4
async_hooks: don't abort unnecessarily * id values of -1 are allowed. They indicate that the id was never correctly assigned to the async resource. These will appear in any call graph, and will only be apparent to those using the async_hooks module, then reported in an issue. * ids < -1 are still not allowed and...
[ { "path": "lib/async_hooks.js", "patch": "@@ -1,6 +1,7 @@\n 'use strict';\n \n const async_wrap = process.binding('async_wrap');\n+const errors = require('internal/errors');\n /* async_hook_fields is a Uint32Array wrapping the uint32_t array of\n * Environment::AsyncHooks::fields_[]. Each index tracks the ...
2017-08-03T20:43:41
huggingface/transformers
976189a6df796a2ff442dd81b022626c840d8c27
357971ec367fecb9951ae3218feafece5f61416a
Fix initialization for missing parameters in `from_pretrained` under ZeRO-3 (#28245) * Fix initialization for missing parameters in `from_pretrained` under ZeRO-3 * Test initialization for missing parameters under ZeRO-3 * Add more tests * Only enable deepspeed context for per-module level parameters * Ena...
[ { "path": "src/transformers/modeling_utils.py", "patch": "@@ -19,6 +19,7 @@\n import gc\n import importlib.metadata\n import inspect\n+import itertools\n import json\n import os\n import re\n@@ -544,10 +545,14 @@ def set_initialized_submodules(model, state_dict_keys):\n Sets the `_is_hf_initialized` fla...
2024-01-09T14:58:21
rust-lang/rust
d1b35f9fcc390969cb2d266c3de2f2f17359a7d5
ef148cd7eb00a5a973130dc6473da71fd6c487ee
Improved named region errors
[ { "path": "compiler/rustc_borrowck/src/diagnostics/region_errors.rs", "patch": "@@ -316,13 +316,16 @@ impl<'infcx, 'tcx> MirBorrowckCtxt<'_, 'infcx, 'tcx> {\n let type_test_span = type_test.span;\n \n if let Some(lower_bound_region) = lower_bound_region {\n- ...
2025-02-04T20:02:48
vuejs/vue
4d4d22a3f6017c46d08b67afe46af43027b06629
b6247fc9d7442c50d60ccf366a7cb183a4d02129
fix: bail out scoped slot optimization when there are nested scopes fix #9438
[ { "path": "src/compiler/codegen/index.js", "patch": "@@ -4,6 +4,7 @@ import { genHandlers } from './events'\n import baseDirectives from '../directives/index'\n import { camelize, no, extend } from 'shared/util'\n import { baseWarn, pluckModuleFunction } from '../helpers'\n+import { emptySlotScopeToken } fr...
2019-02-06T17:29:00
ggml-org/llama.cpp
4d9ea03d170cf504a40bf3a85788af84cccaee80
8ba548dae251f8f2e3834ed5226b76b6e4f4a485
codeowners : use slash prefix for root files [no ci] (#16210) This commit adds a leading slash to the paths of root-level files in the CODEOWNERS file. The motivation for this is that these might otherwise match files in subdirectories that have other/additional owners will override them. Refs: https://github.com/gg...
[ { "path": "CODEOWNERS", "patch": "@@ -95,12 +95,12 @@\n /tools/tokenize/ @ggerganov\n /tools/tts/ @ggerganov\n /vendor/ @ggerganov\n-.clang-format @slaren\n-.clang-tidy @sl...
2025-09-24T06:10:09
huggingface/transformers
357971ec367fecb9951ae3218feafece5f61416a
8604dd308d8930b5dc788eefcd9eefad7555a11c
fix auxiliary loss training in DetrSegmentation (#28354) * fix auxiliary loss training in detrSegmentation * add auxiliary_loss testing
[ { "path": "src/transformers/models/detr/modeling_detr.py", "patch": "@@ -1826,9 +1826,9 @@ def forward(\n outputs_loss[\"pred_masks\"] = pred_masks\n if self.config.auxiliary_loss:\n intermediate = decoder_outputs.intermediate_hidden_states if return_dict else decoder...
2024-01-09T10:17:07
golang/go
03efd426316a0a1cde419d5ad200b683766bbc84
e1a96b82dfe4e072b95ac77a6e08216356c23469
image: add a NewUniform doc comment Fixes #38739 Change-Id: I42b9b601e63ab8df69a0e5ce9bcabf75bb98d83e Reviewed-on: https://go-review.googlesource.com/c/go/+/230777 Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org> Run-TryBot: Dmitri Shuralyov <dmitshur@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org>
[ { "path": "src/image/names.go", "patch": "@@ -47,6 +47,7 @@ func (c *Uniform) Opaque() bool {\n \treturn a == 0xffff\n }\n \n+// NewUniform returns a new Uniform image of the given color.\n func NewUniform(c color.Color) *Uniform {\n \treturn &Uniform{c}\n }", "additions": 1, "deletions": 0, "la...
2020-04-29T04:55:07
vuejs/vue
24b4640c1f268722f5ab8f03e68e2df897cfbdf6
54e6a121e992f20c03f104533caa4c59e59b1ee7
fix: avoid exposing internal flags on $scopedSlots ref #9443
[ { "path": "src/core/instance/lifecycle.js", "patch": "@@ -233,6 +233,7 @@ export function updateChildComponent (\n (parentVnode.data.scopedSlots && !parentVnode.data.scopedSlots.$stable) ||\n (vm.$scopedSlots !== emptyObject && !vm.$scopedSlots.$stable)\n )\n+\n // Any static slot children from ...
2019-02-06T16:34:37
nodejs/node
d441c7ffe8b94cacaf0dc05fcdb7e965d9289da4
94369d801772e75d70bd498cb45efafa2a2c073c
async_wrap: unroll unnecessarily DRY code * Because Emit{Before,After}() will always exit the process if there's an exception there's no need to check a return value. This simplifies the conditions and makes {Pre,Post}CallbackExecution() unnecessary. They have been removed and relevant code has been moved to the...
[ { "path": "src/async-wrap.cc", "patch": "@@ -165,6 +165,7 @@ static void DestroyIdsCb(uv_timer_t* handle) {\n if (ret.IsEmpty()) {\n ClearFatalExceptionHandlers(env);\n FatalException(env->isolate(), try_catch);\n+ UNREACHABLE();\n }\n }\n } while (!env->destroy_ids_...
2017-08-03T23:03:41
ggml-org/llama.cpp
8ba548dae251f8f2e3834ed5226b76b6e4f4a485
f505bd83ca7a43c4585ff3d59135e77eae9c793b
model-conversion : fix the make targets in the README.md (#16209) Fix two incorrect make targets in the readme. Signed-off-by: Jie Fu <jiefu@tencent.com>
[ { "path": "examples/model-conversion/README.md", "patch": "@@ -105,12 +105,12 @@ new model, the model can be converted to GGUF format using the following command\n ### Inspecting the converted model\n The converted model can be inspected using the following command:\n ```console\n-(venv) $ make inspect-conv...
2025-09-24T04:19:23
vuejs/vue
54e6a121e992f20c03f104533caa4c59e59b1ee7
b9de23b1008b52deca7e7df40843e318a42f3f53
fix(types): add Vue.version to types (#9431)
[ { "path": "types/vue.d.ts", "patch": "@@ -122,6 +122,7 @@ export interface VueConstructor<V extends Vue = Vue> {\n observable<T>(obj: T): T;\n \n config: VueConfiguration;\n+ version: string;\n }\n \n export const Vue: VueConstructor;", "additions": 1, "deletions": 0, "language": "Unknown" ...
2019-02-06T03:20:03