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
ggml-org/llama.cpp
05c0380f2ae5c7193445e03ebc7b6de9ce49f1a6
8c3fdf44ecf08335942f2ba558955f55e88c7991
ggml-cpu : optimize RVV kernels (#15720) * ggml-cpu : optimize rvv ggml_vec_dot_f32 * ggml-cpu : optimize 128-bit rvv ggml_vec_dot_q4_K_q8_K * ggml-cpu : fix riscv arch flags * ggml-cpu : add more rvv ops * ggml-cpu : optimize rvv ggml_vec_dot_q4_K_q8_K * ggml-cpu : optimize rvv ggml_vec_dot_q6_K_q8_K * ggml-cpu...
[ { "path": "ggml/CMakeLists.txt", "patch": "@@ -129,7 +129,9 @@ endif()\n option(GGML_LASX \"ggml: enable lasx\" ON)\n option(GGML_LSX \"ggml: enable lsx\" ON)\n option(GGML_RVV \"ggml: enable rvv\" ON)\n-option(GGML_RV_ZFH ...
2025-09-03T08:16:21
nodejs/node
8db39971b768118ce2c0c34d88788daea14f52c9
a8149c47993d8675d5085fc6617dd7f1a47a9ce1
test: clean up some assert deepEqual tests PR-URL: https://github.com/nodejs/node/pull/14491 Fixes: https://github.com/nodejs/node/issues/14441 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Khaidi Chu <i@2333.moe> Reviewed-By: Tobias Nießen <tniessen@tnie.de>
[ { "path": "test/parallel/test-assert-deep.js", "patch": "@@ -159,15 +159,17 @@ assertNotDeepOrStrict(new Set([1, 2, 3, 4]), new Set([1, 2, 3]));\n assertDeepAndStrictEqual(new Set(['1', '2', '3']), new Set(['1', '2', '3']));\n assertDeepAndStrictEqual(new Set([[1, 2], [3, 4]]), new Set([[3, 4], [1, 2]]));\n...
2017-07-26T01:10:46
vuejs/vue
a71853bfc5b6ee117af05408f4d75c80893d44e2
504d5da7eff1c77117c2f57b0c4238e56de80fc5
fix(v-pre): skip compiling custom component tags in v-pre blocks (fix #8286) (#8376)
[ { "path": "src/compiler/codegen/index.js", "patch": "@@ -52,6 +52,10 @@ export function generate (\n }\n \n export function genElement (el: ASTElement, state: CodegenState): string {\n+ if (el.parent) {\n+ el.pre = el.pre || el.parent.pre\n+ }\n+\n if (el.staticRoot && !el.staticProcessed) {\n re...
2018-10-24T17:24:07
golang/go
29d925dfcf7dc577e46d4557a5ef6eaa7f2a67af
843453d09e1a4dc9631056e9e3f4199f87106a48
test: add test for nil check / bounds check compiler confusion This test started failing at CL 228106 and was fixed by CL 228677. Fixes #38496 Change-Id: I2dadcd99227347e8d28179039f5f345e728c4595 Reviewed-on: https://go-review.googlesource.com/c/go/+/228698 Run-TryBot: Josh Bleecher Snyder <josharian@gmail.com> TryB...
[ { "path": "test/fixedbugs/issue38496.go", "patch": "@@ -0,0 +1,20 @@\n+// run\n+\n+// Copyright 2020 The Go Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style\n+// license that can be found in the LICENSE file.\n+\n+// Make sure bounds check elision isn't confused with nil...
2020-04-17T01:26:12
huggingface/transformers
b911c1f10ff8b31bdd0658dadaa0b1357fe47004
e49c385266e06355cd9960bd8cfea665ade9ec7f
Docs for AutoBackbone & Backbone (#27456) * Initial commit for AutoBackbone & Backbone * Added timm and clarified out_indices * Swapped the example to out_indices * fix toctree * Update autoclass_tutorial.md * Update backbones.md * Update autoclass_tutorial.md * Add dummy torch input instead * ...
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -218,6 +218,8 @@\n title: Agents and Tools\n - local: model_doc/auto\n title: Auto Classes\n+ - local: main_classes/backbones\n+ title: Backbones\n - local: main_classes/callback\n title: Callbacks\n - local: main_cl...
2023-12-11T13:22:17
rust-lang/rust
c1da4f1d3c4fc4beb5edcfa8a303a1dcbe27b65e
4898753d5d20a1a871053eece96ec8d5a4f690f8
fix ensure_monomorphic_enough
[ { "path": "compiler/rustc_const_eval/src/interpret/util.rs", "patch": "@@ -1,12 +1,8 @@\n-use std::ops::ControlFlow;\n-\n use rustc_hir::def_id::LocalDefId;\n use rustc_middle::mir;\n use rustc_middle::mir::interpret::{AllocInit, Allocation, InterpResult, Pointer};\n use rustc_middle::ty::layout::TyAndLayou...
2025-02-10T22:06:19
ggml-org/llama.cpp
8a2234ea0c89f212190c176d741b7742f0082582
3de008208b9b8a33f49f979097a99b4d59e6e521
CANN: Fix type float_t to float (#15736) Signed-off-by: noemotiovon <757486878@qq.com>
[ { "path": "ggml/src/ggml-cann/aclnn_ops.cpp", "patch": "@@ -1767,10 +1767,10 @@ void ggml_cann_get_rows(ggml_backend_cann_context& ctx, ggml_tensor* dst) {\n case GGML_TYPE_F16: {\n aclTensor* acl_src0 = ggml_cann_create_tensor(src0);\n ggml_cann_pool_alloc src_buffer_allocat...
2025-09-03T02:43:53
vuejs/vue
504d5da7eff1c77117c2f57b0c4238e56de80fc5
96b833bc5da5e5179bd56f1352cda84560451b89
fix(transition): transition-group should only listen for first-level children's end events (#8374)
[ { "path": "src/platforms/web/runtime/components/transition-group.js", "patch": "@@ -116,6 +116,9 @@ export default {\n addTransitionClass(el, moveClass)\n s.transform = s.WebkitTransform = s.transitionDuration = ''\n el.addEventListener(transitionEndEvent, el._moveCb = function cb (e...
2018-10-24T17:23:12
nodejs/node
a8149c47993d8675d5085fc6617dd7f1a47a9ce1
8a538973257f07a78e0aed08f46df9681be7af63
assert: fix deepEqual inconsistencies PR-URL: https://github.com/nodejs/node/pull/14491 Fixes: https://github.com/nodejs/node/issues/14441 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Khaidi Chu <i@2333.moe> Reviewed-By: Tobias Nießen <tniessen@tnie.de>
[ { "path": "lib/assert.js", "patch": "@@ -271,8 +271,15 @@ function innerDeepEqual(actual, expected, strict, memos) {\n position: 0\n };\n } else {\n- if (memos.actual.has(actual)) {\n- return memos.actual.get(actual) === memos.expected.get(expected);\n+ // We prevent up to two map.has...
2017-07-26T00:36:12
huggingface/transformers
6ff109227b6f28bbd213e187e2ef92fd47a3fc3d
accccdd0087263a1e494e9c9ec30a43043ff3905
Fix PatchTSMixer Docstrings (#27943) * docstring corrections * style make --------- Co-authored-by: vijaye12 <vijaye12@in.ibm.com>
[ { "path": "src/transformers/models/patchtsmixer/configuration_patchtsmixer.py", "patch": "@@ -49,8 +49,6 @@ class PatchTSMixerConfig(PretrainedConfig):\n non-overlapping patches.\n num_parallel_samples (`int`, *optional*, defaults to 100):\n The number of samples to generate ...
2023-12-11T11:56:57
golang/go
843453d09e1a4dc9631056e9e3f4199f87106a48
7ea40f6594ada6631b3fd153c87916c51628a7e2
cmd/compile: fix misassumption about n.Left.Bounded() n.Bounded() is overloaded for multiple meanings based on n.Op. We can't safely use n.Left.Bounded() without checking n.Left.Op. Change-Id: I71fe4faa24798dfe3a5705fa3419a35ef93b0ce2 Reviewed-on: https://go-review.googlesource.com/c/go/+/228677 Run-TryBot: Matthew D...
[ { "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, n.Left.Bounded(), n.Pos)\n+\t\tp := s.exprPtr(n.Left, false, n.Pos)\n \t\treturn s.load(n.Type, p)\n \...
2020-04-16T23:49:10
rust-lang/rust
7c68345e1b4ab3ca838bb8e8548253b029824da8
53730143786ed9bb72828caad45206f965d56387
fix mdbook paths
[ { "path": "src/tools/rust-analyzer/docs/book/book.toml", "patch": "@@ -9,10 +9,10 @@ title = \"rust-analyzer\"\n edition = \"2021\"\n \n [output.html]\n-edit-url-template = \"https://github.com/rust-lang/rust-analyzer/edit/master/manual/{path}\"\n-git-repository-url = \"https://github.com/rust-lang/rust-ana...
2025-02-10T23:20:51
ggml-org/llama.cpp
3de008208b9b8a33f49f979097a99b4d59e6e521
69db8a52e6dd0db81ec05c581150cc1e43b8ac46
fix: resolve unsigned int initialization warning for n_dims/size in gguf.cpp (#15754)
[ { "path": "ggml/src/gguf.cpp", "patch": "@@ -273,7 +273,7 @@ struct gguf_reader {\n }\n \n bool read(std::string & dst) const {\n- uint64_t size = -1;\n+ uint64_t size = 0;\n if (!read(size)) {\n return false;\n }\n@@ -523,7 +523,7 @@ struct gguf_context * g...
2025-09-02T19:27:30
vuejs/vue
5cfdf1a2484fa73b572eae4afd196dcf9e1912ba
038ed86967b70a8b7305104e63afaa586857af48
fix: handle undefined style properties in jsdom (fix #7444) (#8281)
[ { "path": "src/platforms/web/runtime/transition-util.js", "patch": "@@ -122,11 +122,12 @@ export function getTransitionInfo (el: Element, expectedType?: ?string): {\n hasTransform: boolean;\n } {\n const styles: any = window.getComputedStyle(el)\n- const transitionDelays: Array<string> = styles[transit...
2018-10-24T17:06:17
huggingface/transformers
accccdd0087263a1e494e9c9ec30a43043ff3905
0676d992a5c1f6107a611018494ec952613a4d7f
[`Add Mixtral`] Adds support for the Mixtral MoE (#27942) * up * up * test * logits ok * up * up * few fixes * conversion script * up * nits * nits * update * nuke * more updates * nites * fix many issues * nit * scatter * nit * nuke megablocks * nits * fi...
[ { "path": "README.md", "patch": "@@ -417,6 +417,7 @@ Current number of checkpoints: ![](https://img.shields.io/endpoint?url=https://h\n 1. **[Megatron-GPT2](https://huggingface.co/docs/transformers/model_doc/megatron_gpt2)** (from NVIDIA) released with the paper [Megatron-LM: Training Multi-Billion Paramete...
2023-12-11T11:50:27
golang/go
7ea40f6594ada6631b3fd153c87916c51628a7e2
415da71c5d2b02beab9067af4c2ff435de15bb9b
runtime: use mcache0 if no P in profilealloc A case that I missed in CL 205239: profilealloc can be called at program startup if GOMAXPROCS is large enough. Fixes #38474 Change-Id: I2f089fc6ec00c376680e1c0b8a2557b62789dd7f Reviewed-on: https://go-review.googlesource.com/c/go/+/228420 Run-TryBot: Ian Lance Taylor <ia...
[ { "path": "src/runtime/malloc.go", "patch": "@@ -1207,7 +1207,16 @@ func reflect_unsafe_NewArray(typ *_type, n int) unsafe.Pointer {\n }\n \n func profilealloc(mp *m, x unsafe.Pointer, size uintptr) {\n-\tmp.p.ptr().mcache.next_sample = nextSample()\n+\tvar c *mcache\n+\tif mp.p != 0 {\n+\t\tc = mp.p.ptr()....
2020-04-15T22:39:53
ggml-org/llama.cpp
0a2a3841e8ebc570da343e8cf58a21c1010b41e7
9961d244f2df6baf40af2f1ddc0927f8d91578c8
vulkan: fix shaders gen when no integer dot is available (#15740)
[ { "path": "ggml/src/ggml-vulkan/vulkan-shaders/vulkan-shaders-gen.cpp", "patch": "@@ -854,7 +854,13 @@ void write_output_files() {\n fputs(len.c_str(), src);\n }\n \n- for (const std::string& btype : {\"f16\", \"f32\", \"q8_1\"}) {\n+ std::vector<std::string> btypes = {\"f16\", \"f32\"};\n...
2025-09-02T14:02:26
nodejs/node
8a538973257f07a78e0aed08f46df9681be7af63
57630adf90a347b47315614a63b750d4838911ae
2017-08-01, Version 6.11.2 'Boron' (LTS) This LTS release comes with 221 commits. This includes 80 which are test related, 52 which are doc related, 32 which are build / tool related and 10 commits which are updates to dependencies. Notable Changes: * configure: - add mips64el to valid_arch (Aditya Anand) - ht...
[ { "path": "CHANGELOG.md", "patch": "@@ -56,7 +56,8 @@ release.\n <a href=\"doc/changelogs/CHANGELOG_V7.md#7.0.0\">7.0.0</a><br/>\n </td>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V6.md#6.11.1\">6.11.1</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V6.md#6.11.2\">6.11.2</a></b...
2017-07-18T21:24:47
vuejs/vue
46b8d2c59dc259995a71662229ed52b8b8beeb38
ecac831691d27cf7a10ec73a004d3fbad7623d1a
fix(server): use path.posix.join to generate public path (#8177) fix #8167
[ { "path": "src/server/template-renderer/index.js", "patch": "@@ -60,7 +60,7 @@ export default class TemplateRenderer {\n // extra functionality with client manifest\n if (options.clientManifest) {\n const clientManifest = this.clientManifest = options.clientManifest\n- this.publicPath = c...
2018-10-24T17:02:11
rust-lang/rust
cde7e805ad48e8766a07c95c2046693c6a6e236c
bf6f8a4d328f7f3b0f6ea8205ad28591cc11aafd
Cast allocas to default address space Pointers for variables all need to be in the same address space for correct compilation. Therefore ensure that even if an `alloca` is created in a different address space, it is casted to the default address space before its value is used. This is necessary for the amdgpu target ...
[ { "path": "compiler/rustc_codegen_llvm/src/builder.rs", "patch": "@@ -421,7 +421,8 @@ impl<'a, 'll, 'tcx> BuilderMethods<'a, 'tcx> for Builder<'a, 'll, 'tcx> {\n unsafe {\n let alloca = llvm::LLVMBuildAlloca(bx.llbuilder, ty, UNNAMED);\n llvm::LLVMSetAlignment(alloca, align.b...
2025-02-10T20:38:44
huggingface/transformers
0676d992a5c1f6107a611018494ec952613a4d7f
9f18cc6df0b7e0d50f78b9e9fcb3aafa7b5160fe
[`from_pretrained`] Make from_pretrained fast again (#27709) * Skip nn.Module.reset_parameters * Actually skip * Check quality * Maybe change all inits * Fix init issues: only modify public functions * Add a small test for now * Style * test updates * style * nice tes * style * make it...
[ { "path": "src/transformers/modeling_utils.py", "patch": "@@ -154,6 +154,23 @@ def is_local_dist_rank_0():\n if is_peft_available():\n from .utils import find_adapter_config_file\n \n+TORCH_INIT_FUNCTIONS = {\n+ \"uniform_\": nn.init.uniform_,\n+ \"normal_\": nn.init.normal_,\n+ \"trunc_normal_...
2023-12-11T11:38:17
golang/go
8c00e07c01c9864506054dfe5916fd343057b3db
d4d298040d072ddacea0e0d6b55fb148fff18070
net/url: add URL.RawFragment, URL.EscapedFragment These are analogous to URL.RawPath and URL.EscapedPath and allow users fine-grained control over how the fragment section of the URL is escaped. Some tools care about / vs %2f, same problem as in paths. Fixes #37776. Change-Id: Ie6f556d86bdff750c47fe65398cbafd834152b...
[ { "path": "doc/go1.15.html", "patch": "@@ -138,9 +138,9 @@ <h3 id=\"minor_library_changes\">Minor changes to the library</h3>\n <p><!-- CL 221427 -->\n When the flag package sees <code>-h</code> or <code>-help</code>, and\n those flags are not defined, the flag package prints a usage message...
2020-04-08T19:00:41
vuejs/vue
ecac831691d27cf7a10ec73a004d3fbad7623d1a
61c32cc6732aaf225d868cee79872d9d9fdd5dcc
fix(compiler): templates inside v-pre should be rendered to HTML (#8146) close #8041
[ { "path": "src/compiler/codegen/index.js", "patch": "@@ -18,6 +18,7 @@ export class CodegenState {\n maybeComponent: (el: ASTElement) => boolean;\n onceId: number;\n staticRenderFns: Array<string>;\n+ pre: boolean;\n \n constructor (options: CompilerOptions) {\n this.options = options\n@@ -29,6...
2018-10-24T17:01:29
ggml-org/llama.cpp
25f1045f07cf0daf667d63e35618842e3174a8c7
97669e40735d08db65ef094a8faae8e8411a97db
vulkan: Fix macro parameter order for f32 matmul shaders (#15716)
[ { "path": "ggml/src/ggml-vulkan/ggml-vulkan.cpp", "patch": "@@ -2778,11 +2778,11 @@ static void ggml_vk_load_shaders(vk_device& device) {\n // Create 6 variants, {s,m,l}x{unaligned,aligned}\n #define CREATE_MM(TYPE, PIPELINE_NAME, NAMELC, F16ACC, WG_DENOMS, WARPTILE, PUSHCONST, PARAMCOUNT, ID, REQSU...
2025-09-02T06:37:01
nodejs/node
6e79076feeb04a18253c0dc623307523819142d3
859ccd78b56dda4a3952e35a0a414db44fe126cf
doc, url: add changelog metadata for url.format PR-URL: https://github.com/nodejs/node/pull/14543 Fixes: https://github.com/nodejs/node/issues/11103 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Refael Ackerma...
[ { "path": "doc/api/url.md", "patch": "@@ -953,6 +953,13 @@ forward-slash characters (`/`) are required following the colon in the\n ### url.format(urlObject)\n <!-- YAML\n added: v0.1.25\n+changes:\n+ - version: v7.0.0\n+ pr-url: https://github.com/nodejs/node/pull/7234\n+ description: URLs with a `f...
2017-07-30T12:15:16
huggingface/transformers
9f18cc6df0b7e0d50f78b9e9fcb3aafa7b5160fe
7ea21f1f035d683cc39a0c0f4b2605175e1dcfdf
Fix SDPA dispatch & make SDPA CI compatible with torch<2.1.1 (#27940) fix sdpa dispatch
[ { "path": "src/transformers/modeling_utils.py", "patch": "@@ -1244,6 +1244,7 @@ def _autoset_attn_implementation(\n # Here we use config._attn_implementation_internal to check whether the attention implementation was explicitely set by the user.\n # The property `PretrainedConfig._attn_imple...
2023-12-11T09:56:38
vuejs/vue
61c32cc6732aaf225d868cee79872d9d9fdd5dcc
e9fc04ba50782c15703392272322e277fb92dd9a
Fix: block unnecessary input event on input tag placeholder in IE (#8140)
[ { "path": "src/platforms/web/runtime/modules/attrs.js", "patch": "@@ -97,7 +97,7 @@ function baseSetAttr (el, key, value) {\n /* istanbul ignore if */\n if (\n isIE && !isIE9 &&\n- el.tagName === 'TEXTAREA' &&\n+ (el.tagName === 'TEXTAREA' || el.tagName === 'INPUT') &&\n key ==...
2018-10-24T17:01:02
ggml-org/llama.cpp
2f853687b3bce15e143a22f678d1715060fd606c
ef2af57ddf04ab367f6ba6e8ed100fc56785e4b7
CANN: Support eager execution mode under ACL graph compilation (#15712) * [CANN] Support eager execution mode under ACL graph compilation Add support for running operators in eager mode while ACL graph compilation is enabled. This allows bypassing graph execution and directly submitting ops, which is useful for debug...
[ { "path": "docs/backend/CANN.md", "patch": "@@ -314,3 +314,7 @@ Controls automatic cleanup of the memory pool. This option is only effective whe\n \n Converting the matmul weight format from ND to NZ can significantly improve performance on the 310I DUO NPU.\n \n+### GGML_CANN_DISABLE_ACL_GRAPH\n+\n+When th...
2025-09-02T06:07:48
golang/go
d4d298040d072ddacea0e0d6b55fb148fff18070
71a671839f95fb43091316c72cae87c049c81bce
html/template,text/template: switch to Unicode escapes for JSON compatibility The existing implementation is not compatible with JSON escape as it uses hex escaping. Unicode escape, instead, is valid for both JSON and JS. This fix avoids creating a separate escaping context for scripts of type "application/ld+json" an...
[ { "path": "src/html/template/content_test.go", "patch": "@@ -18,7 +18,7 @@ func TestTypedContent(t *testing.T) {\n \t\tHTML(`Hello, <b>World</b> &amp;tc!`),\n \t\tHTMLAttr(` dir=\"ltr\"`),\n \t\tJS(`c && alert(\"Hello, World!\");`),\n-\t\tJSStr(`Hello, World & O'Reilly\\x21`),\n+\t\tJSStr(`Hello, World & O'...
2020-03-27T18:27:55
rust-lang/rust
3a0b1ae59ddf210f6d9594035f74eb42bca8b27a
fba8952e386420a10b07047207d0c451465ccfe7
Show diff suggestion format on verbose replacement ``` error[E0610]: `{integer}` is a primitive type and therefore doesn't have fields --> $DIR/attempted-access-non-fatal.rs:7:15 | LL | let _ = 2.l; | ^ | help: if intended to be a floating point literal, consider adding a `0` after the per...
[ { "path": "tests/ui-toml/dbg_macro/dbg_macro.stderr", "patch": "@@ -8,8 +8,9 @@ LL | if let Some(n) = dbg!(n.checked_sub(4)) { n } else { n }\n = help: to override `-D warnings` add `#[allow(clippy::dbg_macro)]`\n help: remove the invocation before committing it to a version control system\n |\n-L...
2024-07-09T22:30:26
nodejs/node
717a138b4a8d5b7e21349754ac14a1974840c991
6968eadc3fc22f21b85501f2c4232d7341695e3d
zlib: fix interaction of flushing and needDrain Fixes: https://github.com/nodejs/node/issues/14523 PR-URL: https://github.com/nodejs/node/pull/14527 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
[ { "path": "lib/zlib.js", "patch": "@@ -32,11 +32,11 @@ const kRangeErrorMessage = 'Cannot create final Buffer. It would be larger ' +\n \n const constants = process.binding('constants').zlib;\n const {\n- Z_NO_FLUSH, Z_BLOCK, Z_SYNC_FLUSH, Z_FULL_FLUSH, Z_FINISH, Z_MIN_CHUNK,\n- Z_MIN_WINDOWBITS, Z_MAX_WI...
2017-07-28T11:39:04
vuejs/vue
e9fc04ba50782c15703392272322e277fb92dd9a
aef2a5f3dbd5e52ec9d5ce026d7b858539057186
test: fix assertion
[ { "path": "test/unit/modules/compiler/parser.spec.js", "patch": "@@ -512,7 +512,7 @@ describe('parser', () => {\n \n it('empty v-bind expression', () => {\n parse('<div :empty-msg=\"\"></div>', baseOptions)\n- expect('The value for a v-bind expression cannot be empty. Found in \"empty-msg\"').toHav...
2018-10-24T16:58:21
huggingface/transformers
5e620a92cf7e6c312435db86ec55e13b75dece75
e96c1de1913c307fddcb3e5881388a6dbb5b00b1
Fix `SeamlessM4Tv2ModelIntegrationTest` (#27911) change dtype of some integration tests
[ { "path": "tests/models/seamless_m4t_v2/test_modeling_seamless_m4t_v2.py", "patch": "@@ -1014,8 +1014,9 @@ def input_audio(self):\n )\n \n def factory_test_task(self, class1, class2, inputs, class1_kwargs, class2_kwargs):\n- model1 = class1.from_pretrained(self.repo_id).to(torch_device)\n...
2023-12-11T08:18:41
golang/go
71a671839f95fb43091316c72cae87c049c81bce
4eaf855155acb2da69adbab7728c1a59b9315d41
go/types: add detail to missing method error messages When a concrete type doesn't exactly implement an interface, the error messages produced by go/types are often unhelpful. The compiler shows the expected signature versus the one found, which is useful, so add this behavior here. Fixes golang/go#38475 Change-Id: ...
[ { "path": "src/go/types/expr.go", "patch": "@@ -1568,12 +1568,12 @@ func (check *Checker) typeAssertion(pos token.Pos, x *operand, xtyp *Interface,\n \t}\n \n \tvar msg string\n-\tif wrongType {\n-\t\tmsg = \"wrong type for method\"\n+\tif wrongType != nil {\n+\t\tmsg = fmt.Sprintf(\"wrong type for method %...
2020-04-15T22:31:29
nodejs/node
2791761edaf7c3cca41db9c2428bf26d14d8fd01
85add2bf99b754004e26919518846662931ff3a1
path: fix win32 volume-relative paths `path.resolve()` and `path.join()` are left alone in this commit due to the lack of clear semantics. PR-URL: https://github.com/nodejs/node/pull/14440 Fixes: https://github.com/nodejs/node/issues/14405 Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Tobias Nießen <t...
[ { "path": "lib/path.js", "patch": "@@ -908,14 +908,28 @@ const win32 = {\n \n extname: function extname(path) {\n assertPath(path);\n+ var start = 0;\n var startDot = -1;\n var startPart = 0;\n var end = -1;\n var matchedSlash = true;\n // Track the state of characters (if any) ...
2017-07-24T00:39:02
vuejs/vue
aef2a5f3dbd5e52ec9d5ce026d7b858539057186
f5b5b3c96f00a321e0ba41f0d33a42b2338ef750
fix(compiler): maybeComponent should return true when "is" attribute exists (#8114) close #8101
[ { "path": "src/compiler/codegen/index.js", "patch": "@@ -26,7 +26,7 @@ export class CodegenState {\n this.dataGenFns = pluckModuleFunction(options.modules, 'genData')\n this.directives = extend(extend({}, baseDirectives), options.directives)\n const isReservedTag = options.isReservedTag || no\n-...
2018-10-24T16:50:42
huggingface/transformers
e96c1de1913c307fddcb3e5881388a6dbb5b00b1
8d8970efdd0e21b54f1c82dec21e8a5eeba609a1
Skip `UnivNetModelTest::test_multi_gpu_data_parallel_forward` (#27912) fix Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": "tests/models/univnet/test_modeling_univnet.py", "patch": "@@ -123,6 +123,10 @@ def setUp(self):\n self.model_tester = UnivNetModelTester(self)\n self.config_tester = ConfigTester(self, config_class=UnivNetConfig)\n \n+ @unittest.skip(reason=\"fix this once it gets more usage\")...
2023-12-11T08:17:37
golang/go
025bca87462aa549c97dbd28387604ca50963ede
c7c72378a3b698fb9cb8a8145c8ebd11b8259541
[dev.link] cmd/link: fix trampoline generation on AIX The addend should be applied to the target symbol, not the TOC symbol. Change-Id: I0a14873cdcafc4ede401878882646dade9cd8e3b Reviewed-on: https://go-review.googlesource.com/c/go/+/228479 Run-TryBot: Cherry Zhang <cherryyz@google.com> TryBot-Result: Gobot Gobot <gob...
[ { "path": "src/cmd/link/internal/ppc64/asm.go", "patch": "@@ -733,14 +733,13 @@ func gentramp(ctxt *ld.Link, ldr *loader.Loader, tramp *loader.SymbolBuilder, ta\n \t\ttoctramp := ldr.CreateSymForUpdate(\"TOC.\"+ldr.SymName(tramp.Sym()), 0)\n \t\ttoctramp.SetType(sym.SXCOFFTOC)\n \t\ttoctramp.SetReachable(tr...
2020-04-16T03:11:52
vuejs/vue
ecc239e47516d7f9a93b2cd49da4a2000960b8f7
1b69cbde74fd1d183a0c8afd72e774b8bf1daa89
fix(for): use IE compatible regex in v-for regex (#8048) Closes #7946
[ { "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\\S]*?)\\s+(?:in|of)\\s+([\\s\\S]*)/\n export const forIterato...
2018-10-24T16:48:07
nodejs/node
d074b2f427165024984c81fb12166696362b0b86
e95acebf3af15c8ac51ff8a38e915cf4efb87036
doc: update url.origin IDNA behavior Fixes: 413691fde0 "url: expose WHATWG url.origin as ASCII" PR-URL: https://github.com/nodejs/node/pull/14478 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Colin Ihrig ...
[ { "path": "doc/api/url.md", "patch": "@@ -211,9 +211,7 @@ will be thrown.\n \n * {string}\n \n-Gets the read-only serialization of the URL's origin. Unicode characters that\n-may be contained within the hostname will be encoded as-is without [Punycode][]\n-encoding.\n+Gets the read-only serialization of the...
2017-06-23T00:51:44
huggingface/transformers
8d8970efdd0e21b54f1c82dec21e8a5eeba609a1
235be08569000a5361354f766972e653212bf0d3
[BEiT] Fix test (#27934) Fix test
[ { "path": "src/transformers/models/beit/modeling_beit.py", "patch": "@@ -1349,8 +1349,8 @@ def get_input_embeddings(self):\n def forward(\n self,\n pixel_values: Tensor,\n- output_attentions: Optional[bool] = None,\n output_hidden_states: Optional[bool] = None,\n+ o...
2023-12-11T08:17:02
vuejs/vue
db7287c23b11bdc032fb0786e6617f3c6c40c835
7597bb06e0d9ba142f894de5b90b2bf2d7765e08
fix(shared): check dates in looseEqual (#7940) Fix #7928 thanks to @w3cj for the initial version. This one is using getTime instead of toUTCString because it is much faster to compare
[ { "path": "src/shared/util.js", "patch": "@@ -286,6 +286,8 @@ export function looseEqual (a: any, b: any): boolean {\n return a.length === b.length && a.every((e, i) => {\n return looseEqual(e, b[i])\n })\n+ } else if (a instanceof Date && b instanceof Date) {\n+ return...
2018-10-24T16:45:06
golang/go
c7c72378a3b698fb9cb8a8145c8ebd11b8259541
c144a94b267121a41da3fc0b5ce381641f41253e
[dev.link] cmd/link: fix buglet in dodata Fix AIX build. Change-Id: I5c0f1390a62c684bb0b162c3309902566cc6b025 Reviewed-on: https://go-review.googlesource.com/c/go/+/228477 Run-TryBot: Cherry Zhang <cherryyz@google.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Than McIntosh <thanm@google.com>
[ { "path": "src/cmd/link/internal/ld/data.go", "patch": "@@ -1444,7 +1444,6 @@ func (ctxt *Link) dodata() {\n \tstate.makeRelroForSharedLib(ctxt)\n \n \t// Sort symbols.\n-\tvar dataMaxAlign [sym.SXREF]int32\n \tvar wg sync.WaitGroup\n \tfor symn := range state.data {\n \t\tsymn := sym.SymKind(symn)\n@@ -145...
2020-04-16T01:55:35
huggingface/transformers
235be08569000a5361354f766972e653212bf0d3
df5c5c62ae253055336f5bb0828ca8e3e15ab6bd
[DETA] fix backbone freeze/unfreeze function (#27843) * [DETA] fix freeze/unfreeze function * Update src/transformers/models/deta/modeling_deta.py Co-authored-by: Arthur <48595927+ArthurZucker@users.noreply.github.com> * Update src/transformers/models/deta/modeling_deta.py Co-authored-by: Arthur <48595927+...
[ { "path": "src/transformers/models/deta/modeling_deta.py", "patch": "@@ -1414,14 +1414,12 @@ def get_encoder(self):\n def get_decoder(self):\n return self.decoder\n \n- # Copied from transformers.models.deformable_detr.modeling_deformable_detr.DeformableDetrModel.freeze_backbone\n def fre...
2023-12-11T06:57:30
ggml-org/llama.cpp
d4d8dbe383e8b9600cbe8b42016e3a4529b51219
35a42edac84690990a75726898d975cd08d220c0
vulkan: use memory budget extension to read memory usage (#15545) * vulkan: use memory budget extension to read memory usage * fix: formatting and names * formatting * fix: detect and cache memory budget extension availability on init * fix: read `budgetprops.heapBudget` instead of `heap.size` when memory budget e...
[ { "path": "ggml/src/ggml-vulkan/ggml-vulkan.cpp", "patch": "@@ -1370,6 +1370,7 @@ struct vk_instance_t {\n PFN_vkCmdInsertDebugUtilsLabelEXT pfn_vkCmdInsertDebugUtilsLabelEXT = {};\n \n std::vector<size_t> device_indices;\n+ std::vector<bool> device_supports_membudget;\n vk_device devices...
2025-09-01T19:17:42
vuejs/vue
7597bb06e0d9ba142f894de5b90b2bf2d7765e08
9d2f9a034f9c40d5ba6d8b1e131b1bfb675dc1cf
test: fix ssr tests
[ { "path": "test/ssr/compile-with-webpack.js", "patch": "@@ -4,6 +4,7 @@ import MemoryFS from 'memory-fs'\n \n export function compileWithWebpack (file, extraConfig, cb) {\n const config = Object.assign({\n+ mode: 'development',\n entry: path.resolve(__dirname, 'fixtures', file),\n module: {\n ...
2018-10-24T16:42:53
golang/go
b89f4c67200e6128e1dc936a9362b07900c2af3e
ab3bd2c15fb5f58f9d41feaa65a42579aca91fdc
runtime: add async preemption support on riscv64 This CL adds support of call injection and async preemption on riscv64. We also clobbered REG_TMP for the injected call. Unsafe points related to REG_TMP access have been marked in previous commits. Fixes #36711. Change-Id: I1a1df5b7fc23eaafc34a6a6448fcc3c91054496e Gi...
[ { "path": "src/cmd/internal/obj/riscv/obj.go", "patch": "@@ -745,6 +745,12 @@ func preprocess(ctxt *obj.Link, cursym *obj.LSym, newprog obj.ProgAlloc) {\n \t\t\t// count adjustments from earlier epilogues, since they\n \t\t\t// won't affect later PCs.\n \t\t\tp.Spadj = int32(stacksize)\n+\n+\t\tcase AADDI:\...
2020-04-15T13:23:52
huggingface/transformers
df5c5c62ae253055336f5bb0828ca8e3e15ab6bd
5fa66df3f34fbd3acde64a6680912d590feda3e7
Fix typo (#27918)
[ { "path": "src/transformers/models/whisper/convert_openai_to_hf.py", "patch": "@@ -330,7 +330,7 @@ def convert_tiktoken_to_hf(\n if __name__ == \"__main__\":\n parser = argparse.ArgumentParser()\n # # Required parameters\n- parser.add_argument(\"--checkpoint_path\", type=str, help=\"Patht to the ...
2023-12-09T10:59:24
nodejs/node
e95acebf3af15c8ac51ff8a38e915cf4efb87036
1424e9e0fee8953da66feea6956f133176010f29
doc: fix minor typos in net.md About writable, not 'reads' but 'writes' is correct. And also, add parentheses because server.getConnections is function. PR-URL: https://github.com/nodejs/node/pull/14502 Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Vse ...
[ { "path": "doc/api/net.md", "patch": "@@ -155,7 +155,7 @@ The number of concurrent connections on the server.\n \n This becomes `null` when sending a socket to a child with\n [`child_process.fork()`][]. To poll forks and get current number of active\n-connections use asynchronous `server.getConnections` ins...
2017-07-26T14:35:04
rust-lang/rust
f0845adb0c1b7a7fa1bef73e749b2d7e1d7f374d
8c04e395952022a451138dc4dbead6dd6ae65203
Show diff suggestion format on verbose replacement ``` error[E0610]: `{integer}` is a primitive type and therefore doesn't have fields --> $DIR/attempted-access-non-fatal.rs:7:15 | LL | let _ = 2.l; | ^ | help: if intended to be a floating point literal, consider adding a `0` after the per...
[ { "path": "compiler/rustc_errors/src/emitter.rs", "patch": "@@ -1982,7 +1982,7 @@ impl HumanEmitter {\n {\n debug!(?complete, ?parts, ?highlights);\n \n- let has_deletion = parts.iter().any(|p| p.is_deletion(sm));\n+ let has_deletion = parts.iter().any(|p| p.is_dele...
2024-07-09T22:30:26
vuejs/vue
9d2f9a034f9c40d5ba6d8b1e131b1bfb675dc1cf
76fd45c9fd611fecfa79997706a5d218de206b68
fix(sfc): avoid deindent when pad option is specified (#7647)
[ { "path": "src/sfc/parser.js", "patch": "@@ -83,11 +83,15 @@ export function parseComponent (\n function end (tag: string, start: number) {\n if (depth === 1 && currentBlock) {\n currentBlock.end = start\n- let text = deindent(content.slice(currentBlock.start, currentBlock.end))\n+ let...
2018-10-24T16:10:58
ggml-org/llama.cpp
02c1813517412f3e00aa6ca7c0273fea64edb492
77dee9de97be75b7143a213bc48893e0c0b29af7
Vulkan: Add Integer Dot Product mul_mat_vec shader for legacy quants (#14903) * vulkan: Add Integer Dot Product mul_mat_vec shader for legacy quants * vulkan: use subgroup operations for quantize_q8_1 shader * vulkan: add q8_1_x4 type with 128-bit alignment, use in mul_mat_vecq shader * vulkan: use q8_1_x4 blocks i...
[ { "path": "ggml/src/ggml-vulkan/ggml-vulkan.cpp", "patch": "@@ -360,6 +360,13 @@ struct vk_fa_pipeline_state {\n }\n };\n \n+enum shader_reduction_mode {\n+ SHADER_REDUCTION_MODE_SHMEM,\n+ SHADER_REDUCTION_MODE_HYBRID,\n+ SHADER_REDUCTION_MODE_SUBGROUP,\n+ SHADER_REDUCTION_MODE_COUNT,\n+};\n...
2025-09-01T14:19:07
huggingface/transformers
5fa66df3f34fbd3acde64a6680912d590feda3e7
ffd426eef8b865ce4767b4bb1d75d9ef87901ad4
[integration] Update Ray Tune integration for Ray 2.7 (#26499) * fix tune integration for ray 2.7+ Signed-off-by: Justin Yu <justinvyu@anyscale.com> * add version check for ray tune backend availability Signed-off-by: Justin Yu <justinvyu@anyscale.com> * missing import Signed-off-by: Justin Yu <justinvy...
[ { "path": "setup.py", "patch": "@@ -149,7 +149,7 @@\n \"pytest-timeout\",\n \"pytest-xdist\",\n \"python>=3.8.0\",\n- \"ray[tune]\",\n+ \"ray[tune]>=2.7.0\",\n \"regex!=2019.12.17\",\n \"requests\",\n \"rhoknp>=1.1.0,<1.3.1\",", "additions": 1, "deletions": 1, "lang...
2023-12-09T10:04:13
golang/go
03ba6b070d625bf00eac5350c4f363e5e87828b2
c4961dc247ca39c251a5a3c80ebfe59609b4e669
runtime: prevent preemption while releasing worldsema in gcStart Currently, as a result of us releasing worldsema now to allow STW events during a mark phase, we release worldsema between starting the world and having the goroutine block in STW mode. This inserts preemption points which, if followed through, could lea...
[ { "path": "src/runtime/mgc.go", "patch": "@@ -1373,6 +1373,10 @@ func gcStart(trigger gcTrigger) {\n \t// the world.\n \tgcController.markStartTime = now\n \n+\t// In STW mode, we could block the instant systemstack\n+\t// returns, so make sure we're not preemptible.\n+\tmp = acquirem()\n+\n \t// Concurrent...
2020-04-15T18:01:00
nodejs/node
1424e9e0fee8953da66feea6956f133176010f29
5796e44827ffcbeaf4a4170a286d6f64a382d58a
test: fix error when foo in path to git clone I fixed an error that occured in the test case of the file test/parallel/test-assert-fail.js when foo was in the path to the git clone. This occured due to a regex that looked only for the word foo, and so it was updated to not look for foo/, but only foo. This way it won'...
[ { "path": "test/parallel/test-assert-fail.js", "patch": "@@ -67,5 +67,5 @@ common.expectsError(() => {\n // The stackFrameFunction should exclude the foo frame\n assert.throws(\n function foo() { assert.fail('first', 'second', 'message', '!==', foo); },\n- (err) => !/foo/m.test(err.stack)\n+ (err) => !/...
2017-07-26T21:30:54
vuejs/vue
af819a07dd8c2afc94e670e81b5e248f82794334
5e912976c45ca19d8524657bffe6883723027ed2
refactor(shared-utils): Improve readability and consistency in code comments (#8529) Improvements that apply to all comments: - Consistent use of periods - Consistent use of commas - Consistent capitalization - Correct use of articles (a, an, the) Improvements to specific comments: - Correct pluralization in t...
[ { "path": "src/shared/util.js", "patch": "@@ -2,8 +2,8 @@\n \n export const emptyObject = Object.freeze({})\n \n-// these helpers produces better vm code in JS engines due to their\n-// explicitness and function inlining\n+// These helpers produce better VM code in JS engines due to their\n+// explicitness ...
2018-10-23T19:53:47
rust-lang/rust
a6dd7980f1553511ed6c03213924f202ee77ae4d
8e7c83ea2d7ef900d3f1ad2d629dcd88f52b316b
Small refactor of bigint tests Print errors immediately rather than deferring to the end, so any debug output shows up immediately before the relevant failed test.
[ { "path": "library/compiler-builtins/libm/src/math/support/big/tests.rs", "patch": "@@ -1,6 +1,5 @@\n extern crate std;\n use std::string::String;\n-use std::vec::Vec;\n use std::{eprintln, format};\n \n use super::{HInt, MinInt, i256, u256};\n@@ -36,28 +35,30 @@ fn widen_mul_u128() {\n (0, 1234, u2...
2025-02-10T05:26:50
ggml-org/llama.cpp
b66df9d9c942254d03209186ef24ed7c994a576e
b9382c3877c6067feccf182efe9449a2d1cb24c7
CUDA: fix build error from ambiguous __half conversions in conv2d (#15690) * CUDA: fix build error from ambiguous __half conversions in conv2d Building conv2d with half precision failed because `__half` defines multiple implicit conversion operators (to float, int, short, etc.), causing ambiguous overload resolution ...
[ { "path": "ggml/src/ggml-cuda/conv2d.cu", "patch": "@@ -1,4 +1,5 @@\n #include \"conv2d.cuh\"\n+#include \"convert.cuh\"\n \n struct conv_params {\n const int64_t IW, IH;\n@@ -94,8 +95,8 @@ static __global__ void conv2d_kernel(const float * __restrict__ input,\n const int64_t in_x = calc...
2025-09-01T01:25:06
huggingface/transformers
80377eb018c077dba434bc8e7912bcaed3a64d09
ce0bbd5101b42dcc78617e22946539fcacb48959
F.scaled_dot_product_attention support (#26572) * add sdpa * wip * cleaning * add ref * yet more cleaning * and more :) * wip llama * working llama * add output_attentions=True support * bigcode sdpa support * fixes * gpt-bigcode support, require torch>=2.1.1 * add falcon support ...
[ { "path": "docs/source/en/llm_tutorial_optimization.md", "patch": "@@ -441,7 +441,7 @@ flush()\n ```\n \n For comparison, let's run the same function, but enable Flash Attention instead.\n-To do so, we convert the model to [BetterTransformers](https://huggingface.co/docs/optimum/bettertransformer/overview) ...
2023-12-08T20:38:14
golang/go
c4961dc247ca39c251a5a3c80ebfe59609b4e669
aa3413cd98b6e11fe0d37d3d2a489a9cd83b47ad
go/doc: fix detection of whole file examples After CL 211357 (commit 499dc1c), hasTests and numDecl were not updated properly for function declarations with parameters, which affected the whole file example detection logic. This caused examples like package foo_test func Foo(x int) { } func Example() { fmt.Pr...
[ { "path": "src/go/doc/example.go", "patch": "@@ -62,9 +62,6 @@ func Examples(testFiles ...*ast.File) []*Example {\n \t\t\tif !ok || f.Recv != nil {\n \t\t\t\tcontinue\n \t\t\t}\n-\t\t\tif params := f.Type.Params; len(params.List) != 0 {\n-\t\t\t\tcontinue // function has params; not a valid example\n-\t\t\t...
2020-04-04T15:27:23
vuejs/vue
99a51b452fa13fc4392e87215a8c3024adf5f710
4dec3b52c9b71f816e6b86d42ea53e9f2e559646
fix(types): make VNodeDirective properties optional, fix #8013 (#8003)
[ { "path": "types/options.d.ts", "patch": "@@ -160,9 +160,13 @@ export interface WatchOptionsWithHandler<T> extends WatchOptions {\n handler: WatchHandler<T>;\n }\n \n+export interface DirectiveBinding extends Readonly<VNodeDirective> {\n+ readonly modifiers: { [key: string]: boolean };\n+}\n+\n export ty...
2018-10-22T20:09:23
rust-lang/rust
f78099e618a0895619dd7a5a834cd95cfebdefe8
28164e3c047991294a3d4e7afd6b820c0c2f86ee
Fix imports, remove attrs for unused_*
[ { "path": "compiler/rustc_builtin_macros/src/contracts.rs", "patch": "@@ -1,11 +1,9 @@\n-#![allow(unused_imports, unused_variables)]\n-\n use rustc_ast::token;\n use rustc_ast::tokenstream::{DelimSpacing, DelimSpan, Spacing, TokenStream, TokenTree};\n use rustc_errors::ErrorGuaranteed;\n use rustc_expand::b...
2025-02-10T20:15:30
vuejs/vue
9d19f84d4e7a281484a6eb3f92e6a266a1adc243
79cabadeace0e01fb63aa9f220f41193c0ca93af
docs(readme): grammar fix, extra 'the' (#8887)
[ { "path": "README.md", "patch": "@@ -290,7 +290,7 @@ To check out [live examples](https://vuejs.org/v2/examples/) and docs, visit [vu\n \n ## Questions\n \n-For questions and support please use the [the official forum](http://forum.vuejs.org) or [community chat](https://chat.vuejs.org/). The issue list of t...
2018-10-02T05:56:24
nodejs/node
5796e44827ffcbeaf4a4170a286d6f64a382d58a
85a5e5a1f29246f7386f43ea280f2fe0e6ad053a
buffer: remove a wrongly added attribute specifier It doesn't seem to make much sense to have the mentioned typedef declaration equipped with NODE_EXTERN. In fact, when compiling with GCC, an attribute specifier like __attribute__((visibility("default"))) in such a typedef declaration will cause the following warning ...
[ { "path": "src/node_buffer.h", "patch": "@@ -34,7 +34,7 @@ namespace Buffer {\n static const unsigned int kMaxLength =\n sizeof(int32_t) == sizeof(intptr_t) ? 0x3fffffff : 0x7fffffff;\n \n-NODE_EXTERN typedef void (*FreeCallback)(char* data, void* hint);\n+typedef void (*FreeCallback)(char* data, void* ...
2017-07-24T02:17:28
huggingface/transformers
94c765380c91838cd0ccb85fb0df71297f32c43c
d6c3a3f137f05a934517525c3fa8fbbe392b6cb9
fix typo in image_processing_blip.py Wwhether -> Whether (#27899)
[ { "path": "src/transformers/models/blip/image_processing_blip.py", "patch": "@@ -57,7 +57,7 @@ class BlipImageProcessor(BaseImageProcessor):\n Resampling filter to use if resizing the image. Only has an effect if `do_resize` is set to `True`. Can be\n overridden by the `resample` par...
2023-12-08T18:32:48
golang/go
c144a94b267121a41da3fc0b5ce381641f41253e
a6a8974a5a569d9dce2ad93672477bf9598f7682
[dev.link] cmd/link/internal/loader: remove some unused types The types funcAllocInfo and funcInfoSym are no longer referenced. Fixes #38456. Change-Id: Icd32445f6027429f4a2781554d2086790ebe5daf Reviewed-on: https://go-review.googlesource.com/c/go/+/228318 Run-TryBot: Than McIntosh <thanm@google.com> Reviewed-by: Je...
[ { "path": "src/cmd/link/internal/loader/loader.go", "patch": "@@ -2234,25 +2234,6 @@ func loadObjSyms(l *Loader, syms *sym.Symbols, r *oReader) int {\n \treturn nr\n }\n \n-// funcInfoSym records the sym.Symbol for a function, along with a copy\n-// of the corresponding goobj2.Sym and the index of its FuncI...
2020-04-15T17:46:25
rust-lang/rust
d32cd295b30561e465cd1b58b0a646cbaa952c0c
4b293d99275cc63b07eec9e2de38f4b776989069
Fix platform support table for i686-unknown-uefi This text was placed in the wrong column.
[ { "path": "src/doc/rustc/src/platform-support.md", "patch": "@@ -169,7 +169,7 @@ target | std | notes\n [`i686-pc-windows-gnullvm`](platform-support/pc-windows-gnullvm.md) | ✓ | 32-bit x86 MinGW (Windows 10+, Pentium 4), LLVM ABI [^x86_32-floats-return-ABI]\n [`i686-unknown-freebsd`](platform-support/freebs...
2025-02-10T19:09:18
ggml-org/llama.cpp
3dc7397a2799bdc07bccf637ab7ae5a1e786d1a4
e92d53b29e393fc4c0f9f1f7c3fe651be8d36faa
CANN: fix RoPE cache issue on multi-device (#15629) * CANN: fix RoPE cache issue on multi-device RoPE cache only needs to be computed once per token. However, in multi-device scenarios, not every device starts computation from layer 0, which may lead to unallocated memory issues and precision errors. This commit rec...
[ { "path": "ggml/src/ggml-cann/aclnn_ops.cpp", "patch": "@@ -964,8 +964,8 @@ void ggml_cann_rms_norm(ggml_backend_cann_context& ctx, ggml_tensor* dst) {\n }\n aclTensor* acl_gamma = get_f32_cache_acl_tensor(\n ctx,\n- &ctx.f32_one_cache,\n- ctx.f32_one_cache_element,\n+ &...
2025-09-01T00:57:00
vuejs/vue
79cabadeace0e01fb63aa9f220f41193c0ca93af
6b1d431a89f3f7438d01d8cc98546397f0983287
chore: fix OpenCollective silver tier
[ { "path": "BACKERS.md", "patch": "@@ -21,7 +21,7 @@ Funds donated via Patreon go directly to support Evan You's full-time work on Vu\n <img width=\"260px\" src=\"https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/codexyz.png\">\n </a>\n </p>\n- \n+\n <!--special end-->\...
2018-09-19T18:18:17
huggingface/transformers
d6c3a3f137f05a934517525c3fa8fbbe392b6cb9
6757ed28ce3aa5b22520a7929c22f5aa48228be0
[Doc] Spanish translation of pad_truncation.md (#27890) * Add pad_truncation to es/_toctree.yml * Add pad_truncation.md to es/ * Translated first two paragraph * Translated paddig argument section * Translated truncation argument section * Translated final paragraphs * Translated table * Fixed typ...
[ { "path": "docs/source/en/pad_truncation.md", "patch": "@@ -54,7 +54,7 @@ The following table summarizes the recommended way to setup padding and truncati\n | | | `tokenizer(batch_sentences, padding='longest')` ...
2023-12-08T18:32:18
nodejs/node
85a5e5a1f29246f7386f43ea280f2fe0e6ad053a
75bf8a9db9e6005c6b5a5beb086a9def6e1c1b76
net: fix bytesWritten during writev When a writev is caused on a socket (sometimes through corking and uncorking), previously net would call Buffer.byteLength on the array of buffers and chunks. This throws a TypeError, because Buffer.byteLength throws when passed a non-string. In dbfe8c4e, behavior changed to throw ...
[ { "path": "lib/net.js", "patch": "@@ -827,8 +827,19 @@ protoGetter('bytesWritten', function bytesWritten() {\n bytes += Buffer.byteLength(el.chunk, el.encoding);\n });\n \n- if (data) {\n- if (data instanceof Buffer)\n+ if (Array.isArray(data)) {\n+ // was a writev, iterate over chunks to ge...
2017-07-13T18:36:44
rust-lang/rust
17716be86e36720885a9918a1e08da7a5669ceca
8c04e395952022a451138dc4dbead6dd6ae65203
compiler: die immediately instead of handling unknown target codegen We cannot produce anything useful if asked to compile unknown targets. We should handle the error immediately at the point of discovery instead of propagating it upward, and preferably in the simplest way: Die. This allows cleaning up our "error-han...
[ { "path": "compiler/rustc_const_eval/src/errors.rs", "patch": "@@ -16,7 +16,6 @@ use rustc_middle::mir::interpret::{\n };\n use rustc_middle::ty::{self, Mutability, Ty};\n use rustc_span::{Span, Symbol};\n-use rustc_target::callconv::AdjustForForeignAbiError;\n \n use crate::interpret::InternKind;\n \n@@ -9...
2025-02-10T18:30:41
golang/go
435b9dd1a1bae81a32eafb59a9de7fb2873cd51e
c79c5e1aa427eceb585f839a81d02c5390457a9c
text/template: avoid a global map to help the linker's deadcode elimination Fixes #36021 Updates #2559 Updates #26775 Change-Id: I2e6708691311035b63866f25d5b4b3977a118290 Reviewed-on: https://go-review.googlesource.com/c/go/+/210284 Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org> TryBot-Result: Gobot Gobot <gobot@...
[ { "path": "src/text/template/funcs.go", "patch": "@@ -12,6 +12,7 @@ import (\n \t\"net/url\"\n \t\"reflect\"\n \t\"strings\"\n+\t\"sync\"\n \t\"unicode\"\n \t\"unicode/utf8\"\n )\n@@ -29,31 +30,49 @@ import (\n // type can return interface{} or reflect.Value.\n type FuncMap map[string]interface{}\n \n-var b...
2019-12-06T18:19:03
ggml-org/llama.cpp
e92d53b29e393fc4c0f9f1f7c3fe651be8d36faa
0d161f021aa33ec0e90cce96f5d1a88925557327
sampling : optimize samplers by reusing bucket sort (#15665) * sampling : optimize sorting using bucket sort in more places ggml-ci * sampling : do not sort in dist sampler ggml-ci * sampling : avoid heap allocations for sort buffers ggml-ci * common : add option to sort sampling candidates by probability ggml-...
[ { "path": "common/sampling.cpp", "patch": "@@ -426,8 +426,29 @@ uint32_t common_sampler_get_seed(const struct common_sampler * gsmpl) {\n \n // helpers\n \n-llama_token_data_array * common_sampler_get_candidates(struct common_sampler * gsmpl) {\n- return &gsmpl->cur_p;\n+llama_token_data_array * common_s...
2025-08-31T17:41:02
vuejs/vue
a9eb198413e7b1baaf364e93ec3c093734529fe8
1e1ce0cac7d6c22c980021cbd3cb207a47e85dfb
fix(types): relax the return type of props default option (#8537)
[ { "path": "types/options.d.ts", "patch": "@@ -133,7 +133,7 @@ export type PropValidator<T> = PropOptions<T> | Prop<T> | Prop<T>[];\n export interface PropOptions<T=any> {\n type?: Prop<T> | Prop<T>[];\n required?: boolean;\n- default?: T | null | undefined | (() => object);\n+ default?: T | null | und...
2018-09-18T02:33:58
rust-lang/rust
bce3d64fca58478c873af97eccdf81113671e7d3
4b293d99275cc63b07eec9e2de38f4b776989069
fix i686-unknown-hurd-gnu x87 footnote
[ { "path": "src/doc/rustc/src/platform-support.md", "patch": "@@ -313,7 +313,7 @@ target | std | host | notes\n [`i586-unknown-netbsd`](platform-support/netbsd.md) | ✓ | | 32-bit x86 (original Pentium) [^x86_32-floats-x87]\n [`i686-apple-darwin`](platform-support/apple-darwin.md) | ✓ | ✓ | 32-bit macOS (10....
2025-02-10T18:39:03
nodejs/node
75bf8a9db9e6005c6b5a5beb086a9def6e1c1b76
46d3ff2af98e67bbf583fcee1fd2551d8727a181
test: add DISABLED_ prefix to commented out test Commit 95ab966a742d23d7271c7b4c36fb84aa2bbece59 ("test: disable MultipleEnvironmentsPerIsolate") commented out MultipleEnvironmentsPerIsolate but it migth be better to disable the test so that this gets reported and not forgotten: YOU HAVE 1 DISABLED TEST PR-URL: h...
[ { "path": "test/cctest/test_environment.cc", "patch": "@@ -85,8 +85,7 @@ TEST_F(EnvironmentTest, AtExitWithArgument) {\n EXPECT_EQ(arg, cb_1_arg);\n }\n \n-/*\n-TEST_F(EnvironmentTest, MultipleEnvironmentsPerIsolate) {\n+TEST_F(EnvironmentTest, DISABLED_MultipleEnvironmentsPerIsolate) {\n const v8::Hand...
2017-07-17T04:40:19
ggml-org/llama.cpp
0d161f021aa33ec0e90cce96f5d1a88925557327
4efd5a83163ff383285b3a4c2106feabf5c69557
server : enable /slots by default and make it secure (#15630) * server : enable /slots by default and make it secure ggml-ci * server : fix tests to pass `--no-slots` when necessary * server : extend /props with info about enabled endpoints
[ { "path": "common/arg.cpp", "patch": "@@ -2962,20 +2962,20 @@ common_params_context common_params_parser_init(common_params & params, llama_ex\n params.endpoint_metrics = true;\n }\n ).set_examples({LLAMA_EXAMPLE_SERVER}).set_env(\"LLAMA_ARG_ENDPOINT_METRICS\"));\n- add_opt(common...
2025-08-31T17:11:58
golang/go
5a447c0ae9f43b608314d0fd2f3141fa9c5146ff
75f499e3a0e8830efb861c9ba6ca61bc03583962
math/big: fix typo in documentation for Int.Exp Fixes #38304 Also change `If m > 0, y < 0, ...` to `If m != 0, y < 0, ...` since `Exp` will return `nil` whatever `m`'s sign is. Change-Id: I17d7337ccd1404318cea5d42a8de904ad185fd00 GitHub-Last-Rev: 23995103000505dbf35aa29a717470c4da638fda GitHub-Pull-Request: golang/g...
[ { "path": "src/math/big/int.go", "patch": "@@ -465,8 +465,8 @@ func (x *Int) TrailingZeroBits() uint {\n }\n \n // Exp sets z = x**y mod |m| (i.e. the sign of m is ignored), and returns z.\n-// If m == nil or m == 0, z = x**y unless y <= 0 then z = 1. If m > 0, y < 0,\n-// and x and n are not relatively pri...
2020-04-12T13:41:46
vuejs/vue
1e1ce0cac7d6c22c980021cbd3cb207a47e85dfb
3b43c81216c2e29bd519c447e930d6512b5782e8
fix: replace hardcoded .parentNode with abstract ops, fix #8713 (#8714)
[ { "path": "src/core/vdom/patch.js", "patch": "@@ -272,7 +272,7 @@ export function createPatchFunction (backend) {\n function insert (parent, elm, ref) {\n if (isDef(parent)) {\n if (isDef(ref)) {\n- if (ref.parentNode === parent) {\n+ if (nodeOps.parentNode(ref) === parent) {\n ...
2018-09-09T21:28:20
ggml-org/llama.cpp
4efd5a83163ff383285b3a4c2106feabf5c69557
274966226f87f301ac132da898280ca3142b60e5
metal : fix checks for available FA kernels (#15700) * metal : fix checks for available FA kernels ggml-ci * cont : fix comment [no ci]
[ { "path": "ggml/src/ggml-metal/ggml-metal.m", "patch": "@@ -523,13 +523,6 @@ static void ggml_backend_metal_device_rel(struct ggml_backend_metal_device_conte\n GGML_METAL_KERNEL_TYPE_FLASH_ATTN_EXT_Q8_0_HK192_HV128,\n GGML_METAL_KERNEL_TYPE_FLASH_ATTN_EXT_Q8_0_H256,\n GGML_METAL_KERNEL_TYPE_FLAS...
2025-08-31T16:43:30
nodejs/node
46d3ff2af98e67bbf583fcee1fd2551d8727a181
0fab3b04ba84839f55b5e913cf0871a60b2f8a73
repl: do not consider `...` as a REPL command This fix makes ... in REPL to be considered as a javascript construct rather than a REPL keyword. Fixes: https://github.com/nodejs/node/issues/14426 PR-URL: https://github.com/nodejs/node/pull/14467 Reviewed-By: Roman Reiss <me@silverwind.io> Reviewed-By: Anna Henningsen ...
[ { "path": "lib/repl.js", "patch": "@@ -419,7 +419,8 @@ function REPLServer(prompt,\n // Check to see if a REPL keyword was used. If it returns true,\n // display next prompt and return.\n if (trimmedCmd) {\n- if (trimmedCmd.charAt(0) === '.' && isNaN(parseFloat(trimmedCmd))) {\n+ if (t...
2017-07-23T16:17:07
golang/go
eed3ef581b136adcfb0ca36e1238960de599f3e5
3216d14f78e3a6e26cddd9c7d91a26a34c835de9
[dev.link] cmd/link: hoist dwarfGenerateDebugSyms out of dodata() Hoist dwarfGenerateDebugSyms call up out of dodata to before loadlibfull. This required a couple of small tweaks to the loader and to loadlibfull. Change-Id: I48ffb450d2e48b9e55775b73a6debcd27dbb7b9c Reviewed-on: https://go-review.googlesource.com/c/go...
[ { "path": "src/cmd/link/internal/ld/data.go", "patch": "@@ -1923,8 +1923,6 @@ func (ctxt *Link) dodata() {\n \t\tctxt.datap = append(ctxt.datap, data[symn]...)\n \t}\n \n-\tdwarfGenerateDebugSyms(ctxt)\n-\n \tvar i int\n \tfor ; i < len(dwarfp); i++ {\n \t\ts := dwarfp[i]", "additions": 0, "deletion...
2020-04-13T19:38:03
vuejs/vue
c21b89ebeda4c45024c2a71bc7a292d47ebc7ee1
59860b0a756526f37468655598c68d119f0e74bd
fix(ssr): fix double escaping of staticClass values (#7859) (#8037)
[ { "path": "src/server/optimizing-compiler/modules.js", "patch": "@@ -92,7 +92,7 @@ export function genClassSegments (\n classBinding: ?string\n ): Array<StringSegment> {\n if (staticClass && !classBinding) {\n- return [{ type: RAW, value: ` class=${staticClass}` }]\n+ return [{ type: RAW, value: `...
2018-08-20T21:49:18
ggml-org/llama.cpp
274966226f87f301ac132da898280ca3142b60e5
9777032dccd67bdc7785aeab7497014a8be8dacc
llama : fix fattn reserve call n_seqs parameter (#15699) ggml-ci
[ { "path": "src/llama-context.cpp", "patch": "@@ -281,9 +281,15 @@ llama_context::llama_context(\n }\n \n cross.v_embd.clear();\n+\n+ const uint32_t n_seqs = cparams.kv_unified ? 1 : cparams.n_seq_max;\n+ const uint32_t n_tokens = std::min(cparams.n_ctx, cparams.n_ubatch);\n+\n+...
2025-08-31T15:47:05
vuejs/vue
3d36a443c755bf16f2656a8595dda9076f021a4a
5a255d946c6c70218f6ebc0ddbf31029db696813
fix: fix potential xss vulnerability in ssr when using v-bind
[ { "path": "src/platforms/web/server/modules/attrs.js", "patch": "@@ -14,6 +14,8 @@ import {\n isFalsyAttrValue\n } from 'web/util/attrs'\n \n+import { isSSRUnsafeAttr } from 'web/server/util'\n+\n export default function renderAttrs (node: VNodeWithData): string {\n let attrs = node.data.attrs\n let r...
2018-08-01T19:33:47
huggingface/transformers
aa7ab98e72f3874a03cef33e5c0bd24fe6792bb8
e0b617d1928a83e83c3aa5506b7509b0268ff202
fix llava (#27909) * fix llava * nits * attention_mask was forgotten * nice * :) * fixup
[ { "path": "src/transformers/models/llava/modeling_llava.py", "patch": "@@ -22,6 +22,7 @@\n \n from ... import PreTrainedModel\n from ...activations import ACT2FN\n+from ...cache_utils import Cache\n from ...modeling_outputs import ModelOutput\n from ...utils import (\n add_start_docstrings,\n@@ -472,14 ...
2023-12-08T16:32:34
nodejs/node
bfb4f4224d9f8f87944d611dd569d1d3579f5523
7128e3c117884ab8a611e0c63c0bbc9a547b51ba
test: improve error logging for inspector test If JSON.parse() fails, print a message showing the JSON that failed to parse. This is to help with debugging a current test failure on CI. PR-URL: https://github.com/nodejs/node/pull/14508 Ref: https://github.com/nodejs/node/issues/14507 Reviewed-By: Colin Ihrig <cjihrig...
[ { "path": "test/inspector/inspector-helper.js", "patch": "@@ -73,8 +73,15 @@ function parseWSFrame(buffer, handler) {\n }\n if (buffer.length < bodyOffset + dataLen)\n return 0;\n- const message = JSON.parse(\n- buffer.slice(bodyOffset, bodyOffset + dataLen).toString('utf8'));\n+ const jsonPayl...
2017-07-27T05:41:06
golang/go
ab31e2749f89a65a6381348baa008a7f5010b8b5
48403b268bd31a220685c28a94259a461b352e3e
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-04-13T23:48:23
ggml-org/llama.cpp
e81b8e4b7f5ab870836fad26d154a7507b341b36
38ad381f9f5d4dd368a96d844fb19cf501ed9d22
llama: use FA + max. GPU layers by default (#15434) * llama: use max. GPU layers by default, auto -fa * ggml-backend: abort instead of segfault
[ { "path": "common/arg.cpp", "patch": "@@ -1545,10 +1545,18 @@ common_params_context common_params_parser_init(common_params & params, llama_ex\n }\n ).set_examples({LLAMA_EXAMPLE_IMATRIX, LLAMA_EXAMPLE_PERPLEXITY, LLAMA_EXAMPLE_RETRIEVAL}));\n add_opt(common_arg(\n- {\"-fa\", \"--flas...
2025-08-30T14:32:10
huggingface/transformers
e3669375875c4fd6c8c28b193befde9a9d6e78ce
79e76559068240218e2159bcb81bce68b07508b8
Fix 2 tests in `FillMaskPipelineTests` (#27889) * fix * fix * fix * fix * fix --------- Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": "tests/pipelines/test_pipelines_fill_mask.py", "patch": "@@ -216,15 +216,24 @@ def run_large_test(self, unmasker):\n ],\n )\n \n+ dummy_str = \"Lorem ipsum dolor sit amet, consectetur adipiscing elit,\" * 100\n outputs = unmasker(\n- \"My name is <mask...
2023-12-08T13:55:29
golang/go
48403b268bd31a220685c28a94259a461b352e3e
382fe3e2498f2066400e7e7007aa9903440e339d
cmd/compile: error if register is reused when setting edge state When setting the edge state in register allocation we should only be setting each register once. It is not possible for a register to hold multiple values at once. This CL converts the runtime error seen in #38195 into an internal compiler error (ICE). ...
[ { "path": "src/cmd/compile/internal/ssa/regalloc.go", "patch": "@@ -2164,6 +2164,9 @@ func (e *edgeState) set(loc Location, vid ID, c *Value, final bool, pos src.XPos\n \ta = append(a, c)\n \te.cache[vid] = a\n \tif r, ok := loc.(*Register); ok {\n+\t\tif e.usedRegs&(regMask(1)<<uint(r.num)) != 0 {\n+\t\t\t...
2020-04-14T09:12:32
nodejs/node
8dce05fa71be65b0299fc546e92ef4862158057d
9623ce572a02632b7596452e079bba066db3a429
deps: backport rehash strings after deserialization Original commit messages: https://github.com/v8/v8/commit/a2ab1353f6708b44d305fdd9fe65a6d29b95c6d6 [snapshot] Rehash strings after deserialization. See https://goo.gl/6aN8xA Bug: v8:6593 Change-Id: Ic8b0b57195d01d41591397d5d45de3f0f3ebc3d9 Reviewed-on: ht...
[ { "path": "configure", "patch": "@@ -425,12 +425,12 @@ parser.add_option('--without-perfctr',\n # Dummy option for backwards compatibility\n parser.add_option('--with-snapshot',\n action='store_true',\n- dest='with_snapshot',\n+ dest='unused_with_snapshot',\n help=optparse.SUPPRESS_HELP)\n \n ...
2017-07-18T12:38:43
huggingface/transformers
79e76559068240218e2159bcb81bce68b07508b8
3b720ad9a5a3a854e2f11d43a61a056b5afd3b61
Fix `notification_service.py` (#27903) * fix * fix --------- Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": "utils/notification_service.py", "patch": "@@ -634,6 +634,9 @@ def get_reply_blocks(self, job_name, job_result, failures, device, text):\n ]\n \n def get_new_model_failure_blocks(self, with_header=True):\n+ if self.prev_ci_artifacts is None:\n+ return {}\n+\n ...
2023-12-08T13:55:02
golang/go
382fe3e2498f2066400e7e7007aa9903440e339d
334d410ae35a28d770fe43009ca346b4387c1399
cmd/compile: fix deallocation of live value copies in regalloc When deallocating the input register to a phi so that the phi itself could be allocated to that register the code was also deallocating all copies of that phi input value. Those copies of the value could still be live and if they were the register allocato...
[ { "path": "src/cmd/compile/internal/ssa/regalloc.go", "patch": "@@ -977,25 +977,22 @@ func (s *regAllocState) regalloc(f *Func) {\n \t\t\t\t}\n \t\t\t}\n \n-\t\t\t// Second pass - deallocate any phi inputs which are now dead.\n+\t\t\t// Second pass - deallocate all in-register phi inputs.\n \t\t\tfor i, v :...
2020-04-14T14:46:26
ggml-org/llama.cpp
ef476916bba4b44f44be0c98babc1cb025968e75
d82f6aa34a216f5df1945cdfe121ba5e6cd80be0
CANN: FIx compiler warnings (#15661) Signed-off-by: noemotiovon <757486878@qq.com>
[ { "path": "ggml/src/ggml-cann/ggml-cann.cpp", "patch": "@@ -1155,7 +1155,7 @@ namespace {\n * @note The workspace buffer used in this function is managed globally and reused\n * across calls. This reduces overhead from repeated memory allocation and deallocation.\n */\n-static void weight_format_to...
2025-08-30T02:18:35
vuejs/vue
575b6e77ab82b0bbc581aec3ea9b07135d2d1fcd
ae6dcd63a017059644502f8741d8a514f3e9cf84
fix(ssr): render initial and used async css chunks (#7902) compatibility with webpack 4 + mini CSS extraction close #7897
[ { "path": "src/server/template-renderer/index.js", "patch": "@@ -108,13 +108,13 @@ export default class TemplateRenderer {\n }\n \n renderStyles (context: Object): string {\n- const cssFiles = this.clientManifest\n- ? this.clientManifest.all.filter(isCSS)\n- : []\n+ const initial = this....
2018-04-07T04:22:22
huggingface/transformers
3b720ad9a5a3a854e2f11d43a61a056b5afd3b61
7f07c356a46740f50809ef761b9032fe45361807
mark `test_initialization` as flaky in 2 model tests (#27906) fix Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": "tests/models/dinov2/test_modeling_dinov2.py", "patch": "@@ -19,6 +19,7 @@\n \n from transformers import Dinov2Config\n from transformers.testing_utils import (\n+ is_flaky,\n require_torch,\n require_vision,\n slow,\n@@ -230,6 +231,10 @@ def setUp(self):\n self.model_tester...
2023-12-08T13:54:32
nodejs/node
672e020f5f775140791979a943c16b29fb76c773
d731369b1d0822d5a766612a8a6ef3416aa9d580
test: refactor test-httpparser.response.js * replace CRLF constant with '\r\n' literal * fix typo in HTTP header name PR-URL: https://github.com/nodejs/node/pull/14290 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> R...
[ { "path": "test/async-hooks/test-httpparser.response.js", "patch": "@@ -9,7 +9,6 @@ const { checkInvocations } = require('./hook-checks');\n const binding = process.binding('http_parser');\n const HTTPParser = binding.HTTPParser;\n \n-const CRLF = '\\r\\n';\n const RESPONSE = HTTPParser.RESPONSE;\n const kO...
2017-07-16T07:31:07
ggml-org/llama.cpp
81017865ee444cf49ce0136f2be1e41a0270ff91
60e5eee31f1af9bb579ac45380e3857d610020b9
CUDA: fix bug in rms_norm fusion (#15660) * CUDA: fix bug in rms_norm fusion * Fix bug for OP_REPEAT * Fix index for add
[ { "path": "ggml/src/ggml-cuda/binbcast.cu", "patch": "@@ -57,7 +57,11 @@ static __global__ void k_bin_bcast(const src0_t * src0, const src1_t * src1, dst\n const int i10 = i0 % ne10;\n \n float result = src0_row ? (float) src0_row[i0] : 0.0f;\n- result = (..., (result = bin_op(result,...
2025-08-29T13:30:06