repo
stringclasses
15 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
64.3k
files
listlengths
1
300
timestamp
timestamp[s]date
2013-03-13 20:45:00
2026-04-11 07:48:46
golang/go
44ae94751ab35232f72845c7b885c5338220bca5
98534812bdcdd22b13469ea587e310187876b7d2
cmd/go: report 'go get' errors for absolute paths outside module root 'go get' will now check absolute paths without wildcards the same way it checks relative paths. modload.DirImportPath may be used for both without converting path separators. Fixes #38038 Change-Id: I453299898ece58f3b5002a5e80021d6bfe815fdd Review...
[ { "path": "src/cmd/go/internal/modget/get.go", "patch": "@@ -326,15 +326,18 @@ func runGet(cmd *base.Command, args []string) {\n \t\t// patterns like golang.org/x/tools/..., which can't be expanded\n \t\t// during package loading until they're in the build list.\n \t\tswitch {\n-\t\tcase search.IsRelativePa...
2020-04-01T17:08:41
ggml-org/llama.cpp
5e6229a8409ac786e62cb133d09f1679a9aec13e
e2c1bfff5305c661ac53e9d57cb732ff626a2242
common : fix double bos, use common_chat_templates for add_bos and add_eos (#15326) This commit updates common_chat_templates_apply_jinja to use the the add_bos and add_eos parameters from the chat template instead of the inputs. The motivation for this is that currently if the `add_bos` and `add_eos` from the input ...
[ { "path": "common/chat.cpp", "patch": "@@ -2061,8 +2061,8 @@ static common_chat_params common_chat_templates_apply_jinja(\n params.enable_thinking = inputs.enable_thinking;\n params.grammar = inputs.grammar;\n params.now = inputs.now;\n- params.add_bos = inputs.add_bos;\n- params.add_eos =...
2025-08-15T17:50:52
vuejs/vue
5c2ce0017ff8929e70ce9f701b91d950fb351adb
801f793625273b39fd3f25abbaa04508d6651563
feat(weex): WIP fix flow + handle errors in recycle-list template render
[ { "path": "flow/compiler.js", "patch": "@@ -21,9 +21,6 @@ declare type CompilerOptions = {\n shouldDecodeNewlinesForHref?: boolean;\n optimize?: boolean;\n \n- // support <recycle-list> in weex\n- recyclable?: boolean;\n-\n // for ssr optimization compiler\n scopeId?: string;\n \n@@ -37,7 +34,6 @@...
2017-11-29T15:35:20
nodejs/node
c5521fa6176377e0be958621102cad29be39a290
23662f36e34bf07bea013861d082c4cf5affe0b1
doc: fix minor typo in cluster.md Adds a missing `'` in code example. PR-URL: https://github.com/nodejs/node/pull/14353 Fixes: https://github.com/nodejs/node/issues/14352 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Rev...
[ { "path": "doc/api/cluster.md", "patch": "@@ -191,7 +191,7 @@ added: v0.7.0\n \n Similar to the `cluster.on('message')` event, but specific to this worker.\n \n-Within a worker, `process.on('message)` may also be used.\n+Within a worker, `process.on('message')` may also be used.\n \n See [`process` event: `...
2017-07-18T19:02:47
huggingface/transformers
c832bcb812fc962830c11ea64c5ff623240a3d6d
334a6d18a105598fae26889992985e56fe7aad31
Fix owlv2 code snippet (#27698) * Fix code snippet * Improve code snippet
[ { "path": "src/transformers/models/owlv2/modeling_owlv2.py", "patch": "@@ -1544,19 +1544,38 @@ def image_guided_detection(\n >>> import requests\n >>> from PIL import Image\n >>> import torch\n+ >>> import numpy as np\n >>> from transformers import AutoProcessor, Owlv2...
2023-11-27T15:29:07
golang/go
98534812bdcdd22b13469ea587e310187876b7d2
a4451e11437c2375c7451d90aac5419903629b16
cmd/compile: make logopt test skip if cannot create scratch directory Fixes #38251. Change-Id: Ic635843fb503484a1c9a230b0cca571393d3da5a Reviewed-on: https://go-review.googlesource.com/c/go/+/227339 Run-TryBot: David Chase <drchase@google.com> Reviewed-by: Cuong Manh Le <cuong.manhle.vn@gmail.com>
[ { "path": "src/cmd/compile/internal/logopt/logopt_test.go", "patch": "@@ -51,7 +51,7 @@ func TestLogOpt(t *testing.T) {\n \n \tdir, err := ioutil.TempDir(\"\", \"TestLogOpt\")\n \tif err != nil {\n-\t\tt.Fatal(err)\n+\t\tt.Skipf(\"Could not create work directory, assuming not allowed on this platform. Erro...
2020-04-06T15:12:26
vuejs/vue
c1743a9dd7eaffa67f9a9c21b6940f167ba7590d
0ee81b24b5146bca315503e2f5aa3b01832735f1
test(weex): use done.fail for reporting errors
[ { "path": "test/weex/cases/cases.spec.js", "patch": "@@ -21,10 +21,7 @@ function createRenderTestCase (name) {\n expect(getRoot(instance)).toEqual(target)\n done()\n }, 50)\n- }).catch(err => {\n- expect(err).toBe(null)\n- done()\n- })\n+ }).catch(done.fail)\n }\n ...
2017-11-28T19:50:41
ggml-org/llama.cpp
e2c1bfff5305c661ac53e9d57cb732ff626a2242
5edf1592fdb9131d01321aeef4241c6a34969e27
opencl: add initial mxfp4 support via mv (#15270) * opencl: add reference `mul_mv_mxfp4_f32` * opencl: add reference `mul_mv_id` for mxfp4 * Q4_0 tranpose fix for Adreno --------- Co-authored-by: shawngu-quic <shawngu@qti.qualcomm.com>
[ { "path": "ggml/src/ggml-opencl/CMakeLists.txt", "patch": "@@ -82,7 +82,9 @@ set(GGML_OPENCL_KERNELS\n mul_mv_q4_0_f32_1d_8x_flat\n mul_mv_q4_0_f32_1d_16x_flat\n mul_mv_q6_k\n+ mul_mv_mxfp4_f32\n mul_mv_id_q4_0_f32_8x_flat\n+ mul_mv_id_mxfp4_f32\n mul_mm_f32_f32_l4_lm\n mul_mm_...
2025-08-15T16:52:14
huggingface/transformers
334a6d18a105598fae26889992985e56fe7aad31
59499bbe8b8ae4c76732afbe0279cbb6c5df1db3
Modify group_sub_entities in TokenClassification Pipeline to support label with "-" (#27325) * fix group_sub_entities bug * add space
[ { "path": "src/transformers/pipelines/token_classification.py", "patch": "@@ -503,7 +503,7 @@ def group_sub_entities(self, entities: List[dict]) -> dict:\n entities (`dict`): The entities predicted by the pipeline.\n \"\"\"\n # Get the first entity in the entity group\n- e...
2023-11-27T15:25:46
nodejs/node
23662f36e34bf07bea013861d082c4cf5affe0b1
a3365c6ae91953f404b4e030b9dfba872ce9c77d
test: fix error handling test-http-full-response The way it is currently written, test-http-full-response will fail if there is a problem with spawning that doesn't include `ab` or `api` in `stderr`, but it will fail with a misleading mismatched-calls `common.mustCall()` error. Alter the error handling so that it ret...
[ { "path": "test/parallel/test-http-full-response.js", "patch": "@@ -46,8 +46,7 @@ function runAb(opts, callback) {\n common.printSkipMessage(`problem spawning \\`ab\\`.\\n${stderr}`);\n process.reallyExit(0);\n }\n- process.exit();\n- return;\n+ throw err;\n }\n \n ...
2017-07-15T14:22:57
golang/go
a4451e11437c2375c7451d90aac5419903629b16
815509ae31fc7eaf753def9deb9cafee968f92b3
cmd/compile: print block auxint value in HTML output The auxint value was being printed in LongString() but not LongHTML(). Fixes #38250. Change-Id: I28e819feef8710f912bee424d1b900eb07f3abb8 Reviewed-on: https://go-review.googlesource.com/c/go/+/227160 Run-TryBot: Michael Munday <mike.munday@ibm.com> TryBot-Result: ...
[ { "path": "src/cmd/compile/internal/ssa/block.go", "patch": "@@ -124,15 +124,8 @@ func (b *Block) LongString() string {\n \tif b.Aux != nil {\n \t\ts += fmt.Sprintf(\" {%s}\", b.Aux)\n \t}\n-\tif t := b.Kind.AuxIntType(); t != \"\" {\n-\t\tswitch t {\n-\t\tcase \"Int8\":\n-\t\t\ts += fmt.Sprintf(\" [%v]\", ...
2020-04-04T21:51:15
vuejs/vue
0ee81b24b5146bca315503e2f5aa3b01832735f1
3b32652aa68a06d881e3149bb21ac8711887e7f6
fix(weex): update recycle-list v-for transform
[ { "path": "src/compiler/parser/index.js", "patch": "@@ -23,7 +23,7 @@ export const onRE = /^@|^v-on:/\n export const dirRE = /^v-|^@|^:/\n export const forAliasRE = /(.*?)\\s+(?:in|of)\\s+(.*)/\n export const forIteratorRE = /,([^,\\}\\]]*)(?:,([^,\\}\\]]*))?$/\n-const stripParensRE = /^\\(|\\)$/g\n+export ...
2017-11-27T22:48:46
ggml-org/llama.cpp
5edf1592fdb9131d01321aeef4241c6a34969e27
db3010bd23980bad5f5d93ec3e6757ec531a413b
vulkan : fix out-of-bounds access in argmax kernel (#15342) ggml-ci
[ { "path": "ggml/src/ggml-vulkan/ggml-vulkan.cpp", "patch": "@@ -8392,7 +8392,7 @@ static void ggml_vk_sum_rows(ggml_backend_vk_context * ctx, vk_context& subctx,\n }\n \n static void ggml_vk_argmax(ggml_backend_vk_context * ctx, vk_context& subctx, const ggml_tensor * src0, ggml_tensor * dst, bool dryrun = ...
2025-08-15T14:16:36
huggingface/transformers
1d7f406e19d2983fcb623c6cd8357c13a0be07b7
307cf3a2ab3faf50fed5b3aabf180a4c98188587
fix assisted decoding assistant model inputs (#27503) * fix assisted decoding attention_cat * fix attention_mask for assisted decoding * fix attention_mask len * fix attn len * Use a more clean way to prepare assistant models inputs * fix param meaning * fix param name * fix assistant model inputs...
[ { "path": "src/transformers/generation/utils.py", "patch": "@@ -1391,43 +1391,6 @@ def _validate_generated_length(self, generation_config, input_ids_length, has_de\n UserWarning,\n )\n \n- def _extend_attention_mask(self, model_kwargs: Dict[str, Any], new_mask_length: ...
2023-11-27T14:23:54
nodejs/node
a3365c6ae91953f404b4e030b9dfba872ce9c77d
3ccfeb483df5a6402da9b40346a7eb33cfb4b70a
doc: fix inspectPort documentation in cluster.md - Add missing `changes:` entry - Use full sentences - Use proper indentation Ref: https://github.com/nodejs/node/pull/14140 PR-URL: https://github.com/nodejs/node/pull/14349 Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
[ { "path": "doc/api/cluster.md", "patch": "@@ -694,6 +694,9 @@ values are `\"rr\"` and `\"none\"`.\n <!-- YAML\n added: v0.7.1\n changes:\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/14140\n+ description: The `inspectPort` option is supported now.\n - version: v6.4.0\n ...
2017-07-18T18:12:19
vuejs/vue
2cb8ea3fee741807a15bf8f3049ab062a7d9508c
ac999573ea6e4be3a421cdff79d66a5274ec58eb
feat(weex): support compiling `v-on` in the weex native directive (#6892) * refactor(compiler): move postTransforms to after children are processed * feat(weex): recycle-list support WIP * refactor: fix types * feat(weex): split text into separate module * feat($compiler): supports compiling v-bind to the ...
[ { "path": "flow/compiler.js", "patch": "@@ -56,6 +56,7 @@ declare type ASTIfConditions = Array<ASTIfCondition>;\n \n declare type ASTElementHandler = {\n value: string;\n+ params?: Array<any>;\n modifiers: ?ASTModifiers;\n };\n ", "additions": 1, "deletions": 0, "language": "JavaScript" }...
2017-10-31T00:28:40
golang/go
763bd58b19a3aea9760cb8c8326dabf78653db68
281d41cb400fdc3f5581bb0e479f2e9ff02fe833
cmd/compile: restore missing columns in ssa.html If the final pass(es) are identical during ssa.html generation, they are persisted in-memory as "pendingPhases" but never get written as a column in the html. This change flushes those in-memory phases. Fixes #38242 Change-Id: Id13477dcbe7b419a818bb457861b2422ba5ef4bc...
[ { "path": "src/cmd/compile/internal/ssa/compile.go", "patch": "@@ -136,6 +136,11 @@ func Compile(f *Func) {\n \t\t}\n \t}\n \n+\tif f.HTMLWriter != nil {\n+\t\t// Ensure we write any pending phases to the html\n+\t\tf.HTMLWriter.flushPhases()\n+\t}\n+\n \tif f.ruleMatches != nil {\n \t\tvar keys []string\n ...
2020-04-05T22:12:05
ggml-org/llama.cpp
db3010bd23980bad5f5d93ec3e6757ec531a413b
ff27f80a74bbe5303acd511a6781a1de6d619b3c
vulkan : fix compile warnings on macos (#15340) ggml-ci
[ { "path": "ggml/src/ggml-vulkan/ggml-vulkan.cpp", "patch": "@@ -8360,7 +8360,7 @@ static void ggml_vk_rope(ggml_backend_vk_context * ctx, vk_context& subctx, cons\n (uint32_t)src0->ne[0], (uint32_t)n_dims, freq_scale, (uint32_t)src0->ne[1],\n freq_base, ext_factor, attn_factor, {corr_dims[0]...
2025-08-15T13:28:28
rust-lang/rust
bbc40e78226c2b4a84b44c717b5ad0983e29944c
cd3dd5bd230b1d98ed46e3609a64865eb1d5fc58
Pick the max DWARF version when LTO'ing modules with different versions Currently, when rustc compiles code with `-Clto` enabled that was built with different choices for `-Zdwarf-version`, a warning will be reported. It's very easy to observe this by compiling most anything (eg, "hello world") and specifying `-Clto -...
[ { "path": "compiler/rustc_codegen_llvm/src/debuginfo/mod.rs", "patch": "@@ -97,7 +97,11 @@ impl<'ll, 'tcx> CodegenUnitDebugContext<'ll, 'tcx> {\n // Android has the same issue (#22398)\n llvm::add_module_flag_u32(\n self.llmod,\n- llvm::...
2025-02-06T04:50:17
huggingface/transformers
307cf3a2ab3faf50fed5b3aabf180a4c98188587
b09912c8f452ac485933ac0f86937aa01de3c398
Fix oneformer instance segmentation RuntimeError (#27725)
[ { "path": "src/transformers/models/oneformer/image_processing_oneformer.py", "patch": "@@ -1167,6 +1167,7 @@ def post_process_instance_segmentation(\n class_queries_logits = outputs.class_queries_logits # [batch_size, num_queries, num_classes+1]\n masks_queries_logits = outputs.masks_querie...
2023-11-27T13:59:59
vuejs/vue
08660e876d5fbdbeed7e1c779c902969814af3e6
5254ee31c481ac16cf8f822b0b4df0f7815ffff3
refactor: fix types
[ { "path": "src/platforms/weex/compiler/modules/recycle-list/index.js", "patch": "@@ -33,9 +33,11 @@ function postTransformNode (el: ASTElement) {\n function genText (node) {\n const value = node.type === 3\n ? node.text\n- : node.tokens.length === 1\n- ? node.tokens[0]\n- : node.tokens\n+...
2017-09-06T09:48:01
golang/go
656f27ebf86e415c59de421643a35c98238b0ff5
9f40f9f4d3e9e5a08cfd1df5af23a6f61d67d408
cmd/compile: enable -d=checkptr even on windows CL 201783 enable -d=checkptr when -race or -msan is specified everywhere but windows. But, now that all unsafe pointer conversions in the standard library are fixed, enable -d=checkptr even on windows. Updates #34964 Updates #34972 Change-Id: Id912fa83b0d5b46c6f1c134c...
[ { "path": "src/cmd/compile/internal/gc/main.go", "patch": "@@ -379,9 +379,8 @@ func Main(archInit func(*Arch)) {\n \tif flag_race && flag_msan {\n \t\tlog.Fatal(\"cannot use both -race and -msan\")\n \t}\n-\tif (flag_race || flag_msan) && objabi.GOOS != \"windows\" {\n-\t\t// -race and -msan imply -d=checkp...
2020-04-04T07:36:58
huggingface/transformers
b09912c8f452ac485933ac0f86937aa01de3c398
27b752bcf16708dc062a1d69325a07e4560aa75a
Fix mistral generate for long prompt / response (#27548) * Fix mistral generate for long prompt / response * Add unit test * fix linter * fix linter * fix test * add assisted generation test for mistral and load the model in 4 bit + fa2
[ { "path": "src/transformers/models/mistral/modeling_mistral.py", "patch": "@@ -364,7 +364,7 @@ def forward(\n if past_key_value is not None:\n # Activate slicing cache only if the config has a value `sliding_windows` attribute\n if getattr(self.config, \"sliding_window\", Non...
2023-11-27T09:18:41
ggml-org/llama.cpp
ff27f80a74bbe5303acd511a6781a1de6d619b3c
d3248d9b6557c75d59954c594bb53cf517591e91
ggml: initial IBM zDNN backend (#14975) * ggml-zdnn: inital backend impl Signed-off-by: Aaron Teo <aaron.teo1@ibm.com> ggml-zdnn: temp change z17 to arch15 Signed-off-by: Aaron Teo <aaron.teo1@ibm.com> ggml-zdnn: fix build bugs Signed-off-by: Aaron Teo <aaron.teo1@ibm.com> * ggml-zdnn: tensor->extra logging chec...
[ { "path": ".github/ISSUE_TEMPLATE/010-bug-compilation.yml", "patch": "@@ -40,7 +40,7 @@ body:\n attributes:\n label: GGML backends\n description: Which GGML backends do you know to be affected?\n- options: [AMX, BLAS, CPU, CUDA, HIP, Metal, Musa, RPC, SYCL, Vulkan, OpenCL]\n+ ...
2025-08-15T13:11:22
nodejs/node
3ccfeb483df5a6402da9b40346a7eb33cfb4b70a
f406a7ebaee09c00b6dec330e17897924096c30d
tls: migrate tls.js to use internal/errors.js Migrate tls.js to use internal/errors.js as per https://github.com/nodejs/node/issues/11273 PR-URL: https://github.com/nodejs/node/pull/13994 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Joyee Cheung <joyeec9...
[ { "path": "lib/internal/errors.js", "patch": "@@ -174,6 +174,8 @@ E('ERR_SOCKET_DGRAM_NOT_RUNNING', 'Not running');\n E('ERR_STDERR_CLOSE', 'process.stderr cannot be closed');\n E('ERR_STDOUT_CLOSE', 'process.stdout cannot be closed');\n E('ERR_STREAM_WRAP', 'Stream has StringDecoder set or is in objectMode...
2017-06-29T23:20:11
vuejs/vue
3f0c628e2c0fe6bfaecc521c96c6cc12ff24c7c4
90ed48224e0ae281a2579b997e4bd5a150b80413
fix: avoid unnecessary lowercase coersion in component name validation close #7237
[ { "path": "src/core/util/options.js", "patch": "@@ -260,8 +260,7 @@ export function validateComponentName (name: string) {\n 'and must start with a letter.'\n )\n }\n- const lower = name.toLowerCase()\n- if (isBuiltInTag(lower) || config.isReservedTag(lower)) {\n+ if (isBuiltInTag(name) || co...
2017-12-14T16:52:37
rust-lang/rust
017f1035f12c2b7740bdbd0b27203f45c9777338
900b61f363e88aae7a1292e480c36a6cd8fcf3b9
Replace an `assert!` with `debug_assert!` in `u256::shr` The implementation came from the `compiler_builtins` port but this should be weakened to match other integer types.
[ { "path": "library/compiler-builtins/libm/src/math/support/big.rs", "patch": "@@ -109,7 +109,10 @@ impl ops::Shr<u32> for u256 {\n type Output = Self;\n \n fn shr(self, rhs: u32) -> Self::Output {\n- assert!(rhs < Self::BITS, \"attempted to shift right with overflow\");\n+ debug_assert...
2025-02-08T09:48:14
golang/go
ed7a8332c413f41d466db3bfc9606025e0c264d8
339e9c64006d3e1c6b29e9df9332c55124e1e7d3
cmd/compile: allow mid-stack inlining when there is a cycle of recursion We still disallow inlining for an immediately-recursive function, but allow inlining if a function is in a recursion chain. If all functions in the recursion chain are simple, then we could inline forever down the recursion chain (eventually run...
[ { "path": "src/cmd/compile/internal/gc/inl.go", "patch": "@@ -496,7 +496,14 @@ func inlcalls(fn *Node) {\n \tif countNodes(fn) >= inlineBigFunctionNodes {\n \t\tmaxCost = inlineBigFunctionMaxCost\n \t}\n-\tfn = inlnode(fn, maxCost)\n+\t// Map to keep track of functions that have been inlined at a particular...
2020-04-01T03:24:05
ggml-org/llama.cpp
d3248d9b6557c75d59954c594bb53cf517591e91
7aeee88cfe9c0434eac722b0f7c21404f48758a5
ci : fix ios-xcode-build (#15324) * fix ios-xcode-build * use xcode-select with fixed version * switch to macos-15 to get xcode 16.4
[ { "path": ".github/workflows/build.yml", "patch": "@@ -1113,6 +1113,11 @@ jobs:\n - name: Checkout code\n uses: actions/checkout@v4\n \n+ - name: Setup Xcode\n+ uses: maxim-lobanov/setup-xcode@v1\n+ with:\n+ xcode-version: latest-stable\n+\n - name: Build\n ...
2025-08-15T12:02:39
vuejs/vue
14f7015578db8a740450b8f1f45e74b1604ff173
531371b818b0e31a989a06df43789728f23dc4e8
test: fix ssr test due to webpack asset emit order change
[ { "path": "test/ssr/ssr-template.spec.js", "patch": "@@ -227,8 +227,8 @@ describe('SSR: template option', () => {\n `<link rel=\"preload\" href=\"/0.js\" as=\"script\">` +\n `<link rel=\"preload\" href=\"/test.css\" as=\"style\">` +\n // images and fonts are only preloaded when explicitly ...
2017-12-13T00:16:17
rust-lang/rust
900b61f363e88aae7a1292e480c36a6cd8fcf3b9
0a43f24a30c4952eb6b990051b6b37800b79da26
Change how operators are `black_box`ed For some reason, the upcoming limb changes in [1] seem to ignore the black boxing when applied to the operator function. Changing to instead black box the inputs appears to fix this. [1]: https://github.com/rust-lang/libm/pull/503
[ { "path": "library/compiler-builtins/libm/crates/libm-test/benches/icount.rs", "patch": "@@ -1,7 +1,6 @@\n //! Benchmarks that use `iai-cachegrind` to be reasonably CI-stable.\n \n use std::hint::black_box;\n-use std::ops::Shr;\n \n use iai_callgrind::{library_benchmark, library_benchmark_group, main};\n us...
2025-02-08T09:39:05
ggml-org/llama.cpp
b07791aa1d4831a08ad54ca19aa206c0c5c0f34a
4227c9be4268ac844921b90f31595f81236bd317
test-opt: fix backend support check (#15317) * test-opt: fix backend support check * Update tests/test-opt.cpp Co-authored-by: Georgi Gerganov <ggerganov@gmail.com> --------- Co-authored-by: Georgi Gerganov <ggerganov@gmail.com>
[ { "path": "tests/test-opt.cpp", "patch": "@@ -438,7 +438,6 @@ static std::pair<int, int> test_forward_backward(\n float weights;\n ggml_backend_tensor_get(cd.weights, &weights, 0, sizeof(float));\n const bool subtest_ok = weights == -ndata * .5;\n- TEST_LOG(\"%s: ndata=%d weig...
2025-08-15T09:23:17
golang/go
e31d741801514f2a008625fd246644d2214f4516
c4f875e84e6ce3c09045fd00b72e4bb830d3e40e
flag: fix TestExitCode on Plan 9 CL 221427 added TestExitCode. This test is failing on Plan 9 because ExitCode is always equal to 1 on error since Plan 9 use error strings. This change fixes TestExitCode by checking that ExitCode is equal to 1 on error instead of the specific value. Fixes #38237. Change-Id: Ie26972...
[ { "path": "src/flag/flag_test.go", "patch": "@@ -13,6 +13,7 @@ import (\n \t\"io/ioutil\"\n \t\"os\"\n \t\"os/exec\"\n+\t\"runtime\"\n \t\"sort\"\n \t\"strconv\"\n \t\"strings\"\n@@ -599,6 +600,10 @@ func TestExitCode(t *testing.T) {\n \t\t)\n \t\tcmd.Run()\n \t\tgot := cmd.ProcessState.ExitCode()\n+\t\t// ...
2020-04-03T16:57:46
nodejs/node
c3cb0edd8d4202270d59c94083be5007f7870416
610669460d4eacc0688e8df715e62118264853a6
test: use regex error check in test-crypto-random Replace constructor in assert.throws() to a regular expression to check the error thrown in a test in test-crypto-random. PR-URL: https://github.com/nodejs/node/pull/14273 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com> Re...
[ { "path": "test/parallel/test-crypto-random.js", "patch": "@@ -264,4 +264,4 @@ const expectedErrorRegexp = /^TypeError: size must be a number >= 0$/;\n // length exceeds max acceptable value\"\n assert.throws(function() {\n crypto.randomBytes((-1 >>> 0) + 1);\n-}, TypeError);\n+}, /^TypeError: size must b...
2017-07-16T07:13:34
vuejs/vue
8936b8d9c147441555fcfd4ac748d817ba5ff60e
86e4d7566e685f1a98ffab1777fa7d07603c994a
fix(ssr): properly handle errors in async component fix #6778
[ { "path": "src/server/create-renderer.js", "patch": "@@ -78,11 +78,15 @@ export function createRenderer ({\n return false\n }, cb)\n try {\n- render(component, write, context, () => {\n+ render(component, write, context, err => {\n if (template) {\n re...
2017-12-12T23:12:02
huggingface/transformers
5c30dd40e768f6f30cc58128c711563cc8cf5b21
e11e26df93f98104d6ef99c9458059fa787b857a
fix warning (#27689)
[ { "path": "src/transformers/generation/configuration_utils.py", "patch": "@@ -410,7 +410,7 @@ def validate(self, is_init=False):\n \n # 2. detect beam-only parameterization when not in beam mode\n if self.num_beams is None:\n- logging.warning(\"`num_beams` is set to None - default...
2023-11-27T08:14:40
ggml-org/llama.cpp
4227c9be4268ac844921b90f31595f81236bd317
df36bce667bf14f8e538645547754386f9516326
CUDA: fix negative KV_max values in FA (#15321)
[ { "path": "ggml/src/ggml-cuda/fattn-common.cuh", "patch": "@@ -539,11 +539,15 @@ static __global__ void flash_attn_mask_to_KV_max(\n all_inf = warp_reduce_all(all_inf);\n \n if (!all_inf) {\n- KV_max_sj += FATTN_KQ_STRIDE;\n break;\n }\n }\n \n+ // If th...
2025-08-14T21:21:24
golang/go
c4f875e84e6ce3c09045fd00b72e4bb830d3e40e
d78639519df17bf7fb5a7facef007e90d6c0283c
cmd/go: report original module path in error parsing replaced go.mod MVS reports an error when a go.mod file declares a module path that doesn't match the path it was required with. If the module is a replacement, its declared path may be the original path (preferred) or the replacement path. This CL makes the report...
[ { "path": "src/cmd/go/internal/modload/mvs.go", "patch": "@@ -148,7 +148,7 @@ func (r *mvsReqs) required(mod module.Version) ([]module.Version, error) {\n \tif mpath := f.Module.Mod.Path; mpath != origPath && mpath != mod.Path {\n \t\treturn nil, module.VersionError(mod, fmt.Errorf(`parsing go.mod:\n \tmodu...
2020-04-03T14:42:55
nodejs/node
610669460d4eacc0688e8df715e62118264853a6
d14c13238b554be335bbf66a315f855e49fdd52e
test: check error with regex in test-signal-safety Change TypeError to a regular expression in assert.throws() in test/parallel/test-signal-safety.js. PR-URL: https://github.com/nodejs/node/pull/14285 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Gibson Fah...
[ { "path": "test/parallel/test-signal-safety.js", "patch": "@@ -9,4 +9,4 @@ assert.throws(function() {\n const s = new Signal();\n const nots = { start: s.start };\n nots.start(9);\n-}, TypeError);\n+}, /^TypeError: Illegal invocation$/);", "additions": 1, "deletions": 1, "language": "JavaS...
2017-07-16T15:44:01
vuejs/vue
73a89bf9e53c0f7f00f193e1b1bb195a71ab761f
023f171f58f7f1b36f0b3e69fc6d330366bfdf43
fix(ssr): fix double escaping of ssrNode attribute values (#7224) This fixes a double escaping of attribute values in the SSR optimizing compiler by unescaping the value in `genAttrSegment` because literal attribute values get escaped early during `processAttrs` before it is known, if this attribute will be optimiz...
[ { "path": "src/server/optimizing-compiler/modules.js", "patch": "@@ -77,7 +77,7 @@ function genAttrSegment (name: string, value: string): StringSegment {\n ? ` ${name}=\"${name}\"`\n : value === '\"\"'\n ? ` ${name}`\n- : ` ${name}=${value}`\n+ : ` ${name}=\"${JSO...
2017-12-12T22:06:11
huggingface/transformers
e11e26df93f98104d6ef99c9458059fa787b857a
f70db28322150dd986298cc1d1be8bc144cc1a88
Fix Past CI (#27696) fix Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": ".github/workflows/self-past.yml", "patch": "@@ -88,6 +88,10 @@ jobs:\n working-directory: /transformers\n run: python3 -m pip uninstall -y transformers && python3 -m pip install -e .\n \n+ - name: Update some packages\n+ working-directory: /transformers\n+ run: ...
2023-11-27T08:11:58
ggml-org/llama.cpp
df36bce667bf14f8e538645547754386f9516326
f75b8306472811ecc4e4457d5573a09201f02183
eval-callback : stop on first NaN (#15320) * eval-callback : stop on first NaN * cont : log error
[ { "path": "examples/eval-callback/eval-callback.cpp", "patch": "@@ -7,6 +7,7 @@\n #include <cstdio>\n #include <string>\n #include <vector>\n+#include <numeric>\n \n /**\n * This the arbitrary data which will be passed to each callback.\n@@ -77,6 +78,12 @@ static void ggml_print_tensor(uint8_t * data, ggml...
2025-08-14T19:10:51
vuejs/vue
023f171f58f7f1b36f0b3e69fc6d330366bfdf43
644274cbd34e14e74e8931fa979b22dc2db04895
fix(core): warn duplicate keys in all cases (#7200) close #7199
[ { "path": "src/core/vdom/patch.js", "patch": "@@ -263,6 +263,9 @@ export function createPatchFunction (backend) {\n \n function createChildren (vnode, children, insertedVnodeQueue) {\n if (Array.isArray(children)) {\n+ if (process.env.NODE_ENV !== 'production') {\n+ checkDuplicateKeys(chil...
2017-12-12T21:38:32
golang/go
e18a5ba0ca142c64aa03c6fb500d69cbbaab1bb6
5dde10c3044f75fbcc29193608a7b7156a3c9ef6
cmd/link: in stack bound check, don't check a call repetitively In stack bound check pass, check a call once, not over and over again. Fix an accidental quadratic behavior... In particular, switching to the new linker caused MIPS builders noticeably slower. This CL fixes it. Change-Id: Idd00c79e80af6278652c92a1d9d7b...
[ { "path": "src/cmd/link/internal/ld/lib.go", "patch": "@@ -2360,6 +2360,7 @@ func (sc *stkChk) check(up *chain, depth int) int {\n \trelocs := ldr.Relocs(s)\n \tvar ch1 chain\n \tpcsp := obj.NewPCIter(uint32(ctxt.Arch.MinLC))\n+\tri := 0\n \tfor pcsp.Init(info.Pcsp()); !pcsp.Done; pcsp.Next() {\n \t\t// pcs...
2020-04-03T02:47:29
nodejs/node
9ab63d61f8f8d65b0e0643c83dd7936c4cf0a309
aa1c8c00437ae2bf5aa0bc980b027013b8dd7e39
doc: add guidance on testing new errors PR-URL: https://github.com/nodejs/node/pull/14207 Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnel...
[ { "path": "doc/guides/using-internal-errors.md", "patch": "@@ -69,6 +69,53 @@ for the error code should be added to the `doc/api/errors.md` file. This will\n give users a place to go to easily look up the meaning of individual error\n codes.\n \n+## Testing new errors\n+\n+When adding a new error, correspon...
2017-07-12T21:46:17
huggingface/transformers
f70db28322150dd986298cc1d1be8bc144cc1a88
35551f9a0f66a22de4971b4a51b3c172d3b87f95
Fix sliding_window hasattr in Mistral (#27041) * Fix sliding_window hasattr in Mistral * hasattr -> getattr for sliding_window in Mistral --------- Co-authored-by: Ilya Gusev <ilya.gusev@booking.com>
[ { "path": "src/transformers/models/mistral/modeling_mistral.py", "patch": "@@ -351,7 +351,7 @@ def forward(\n \n use_sliding_windows = (\n _flash_supports_window_size\n- and hasattr(self.config, \"sliding_window\") is not None\n+ and getattr(self.config, \"sliding_w...
2023-11-26T15:28:37
rust-lang/rust
c097b2c6bb63e793d30191ffdcaf30c8e0d48607
e0607238c95df66e3d25a6c17aebe18c6726fc74
transmutability: fix ICE when passing wrong ADT to ASSUME
[ { "path": "compiler/rustc_transmute/src/lib.rs", "patch": "@@ -84,7 +84,7 @@ mod rustc {\n use rustc_infer::infer::InferCtxt;\n use rustc_macros::TypeVisitable;\n use rustc_middle::traits::ObligationCause;\n- use rustc_middle::ty::{Const, ParamEnv, Ty, TyCtxt, ValTree};\n+ use rustc_middle...
2025-02-08T04:13:28
ggml-org/llama.cpp
e4e915912cfd2ee15c5a4a0074813232134892f6
5ba36f61033d2819be27e2abb70e9a3bd20c0fde
devops : fix compile bug when the BASE_CUDA_DEV_CONTAINER is based on Ubuntu 24.04 (#15005) fixes #15004 Co-authored-by: Paolo Greppi <paolo.greppi@libpf.com>
[ { "path": ".devops/cuda.Dockerfile", "patch": "@@ -60,8 +60,7 @@ RUN apt-get update \\\n git \\\n python3 \\\n python3-pip \\\n- && pip install --upgrade pip setuptools wheel \\\n- && pip install -r requirements.txt \\\n+ && pip install --break-system-packages -r requirements.txt \\\n ...
2025-08-14T15:45:27
vuejs/vue
644274cbd34e14e74e8931fa979b22dc2db04895
bd4819e6cf1c8d70d25aba2636e01f40faf59443
fix: more consistent component naming warnings across the API close #7212
[ { "path": "src/core/global-api/assets.js", "patch": "@@ -1,8 +1,7 @@\n /* @flow */\n \n-import config from '../config'\n import { ASSET_TYPES } from 'shared/constants'\n-import { warn, isPlainObject } from '../util/index'\n+import { isPlainObject, validateComponentName } from '../util/index'\n \n export fun...
2017-12-12T18:22:33
golang/go
6117275788ae5f63a1229cf058baf55a818a34c1
a9a78b7005f400e52d8891b01458539e801cf8ad
cmd/link: write to temp directory in test In TestMMap, write to temporary directory, instead of the current directory (which may not be writeable). Fix linux-mips64le-mengzhuo builder. Change-Id: I06dc3266f125523568c543634079c447d91903bb Reviewed-on: https://go-review.googlesource.com/c/go/+/227077 Run-TryBot: Cherr...
[ { "path": "src/cmd/link/internal/ld/outbuf_test.go", "patch": "@@ -5,7 +5,9 @@\n package ld\n \n import (\n+\t\"io/ioutil\"\n \t\"os\"\n+\t\"path/filepath\"\n \t\"runtime\"\n \t\"testing\"\n )\n@@ -17,12 +19,16 @@ func TestMMap(t *testing.T) {\n \t\tt.Skip(\"unsupported OS\")\n \tcase \"darwin\", \"dragonfl...
2020-04-03T00:57:44
nodejs/node
aa1c8c00437ae2bf5aa0bc980b027013b8dd7e39
58926d407574338688077a37d8832a585dcc8503
src: fix memory leak in DH key setters Fix a memory leak in dh.setPublicKey() and dh.setPrivateKey() where the old keys weren't freed. Fixes: https://github.com/nodejs/node/issues/8377 PR-URL: https://github.com/nodejs/node/pull/14122 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: James M Snell <jasnel...
[ { "path": "src/node_crypto.cc", "patch": "@@ -4881,44 +4881,40 @@ void DiffieHellman::ComputeSecret(const FunctionCallbackInfo<Value>& args) {\n }\n \n \n-void DiffieHellman::SetPublicKey(const FunctionCallbackInfo<Value>& args) {\n- DiffieHellman* diffieHellman;\n- ASSIGN_OR_RETURN_UNWRAP(&diffieHellman,...
2017-07-10T10:56:37
huggingface/transformers
35551f9a0f66a22de4971b4a51b3c172d3b87f95
29c94808ea4bdfc3f13f3c718fba99dc00441d7a
Fix `TVPModelTest` (#27695) * fix * fix * fix * fix * fix --------- Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": "src/transformers/models/tvp/modeling_tvp.py", "patch": "@@ -606,12 +606,15 @@ def __init__(self, config):\n \n def forward(self, pixel_values):\n if self.visual_prompter_apply != \"add\":\n- visual_prompt_mask = torch.ones([self.max_img_size, self.max_img_size], dtype=pixel...
2023-11-24T18:47:50
rust-lang/rust
21d096184e3c7e05646ee756a2ff6a99e90aff77
a6e55271fbc27bc605ba08c5f4e7b64719909ab0
fix non-enzyme builds
[ { "path": "compiler/rustc_codegen_llvm/src/back/write.rs", "patch": "@@ -551,11 +551,12 @@ pub(crate) unsafe fn llvm_optimize(\n let vectorize_slp;\n let vectorize_loop;\n \n+ let run_enzyme = cfg!(llvm_enzyme);\n // When we build rustc with enzyme/autodiff support, we want to postpone size-i...
2025-02-08T03:27:46
vuejs/vue
bd4819e6cf1c8d70d25aba2636e01f40faf59443
6eccd8e4338c8eb32ab03813e3fb70f58f858f23
fix: data() should be called with vm as first argument in mixins fix #7191
[ { "path": "src/core/util/options.js", "patch": "@@ -85,18 +85,18 @@ export function mergeDataOrFn (\n // it has to be a function to pass previous merges.\n return function mergedDataFn () {\n return mergeData(\n- typeof childVal === 'function' ? childVal.call(this) : childVal,\n- ...
2017-12-06T14:11:49
ggml-org/llama.cpp
b204a5a234f4cf0b3f449476da639a5510c6d157
646944cfa8961afd914dd6637739b3cda9a72e11
gpt-oss: implement harmony parsing (#15181) * model : add harmony parser for gpt-oss * gpt-oss : fix grammar trigger from causing empty stack * gpt-oss: tweak the grammar trigger again * gpt-oss : add support for recipient in role header * gpt-oss : fix ungrouped tool calls in grammar * gpt-oss : loosen function ...
[ { "path": "common/chat.cpp", "patch": "@@ -296,6 +296,7 @@ json common_chat_msgs_to_json_oaicompat(const std::vector<common_chat_msg> & msg\n }\n if (!msg.reasoning_content.empty()) {\n jmsg[\"reasoning_content\"] = msg.reasoning_content;\n+ jmsg[\"thinking\"] = msg.re...
2025-08-14T14:23:11
huggingface/transformers
29c94808ea4bdfc3f13f3c718fba99dc00441d7a
c13a43aaf2194b5d05272af5c9c7e394688b72df
Successfully Resolved The ZeroDivisionError Exception. (#27524) * Successfully resolved the ZeroDivisionError exception in the utils.notebook.y file. * Now I update little code mentioned by Peter * Using Black package to reformat my file * Now I using ruff libary to reformated my file
[ { "path": "src/transformers/utils/notebook.py", "patch": "@@ -161,7 +161,7 @@ def update(self, value: int, force_update: bool = False, comment: str = None):\n self.update_bar(value)\n self.last_value = value\n self.last_time = current_time\n- if self.average_ti...
2023-11-24T16:55:08
golang/go
dcf0929de6a12103a8fd7097abd6e797188c366d
041bcb32b59b37ff55ad527083b7bd4ffa4c1a3d
flag: exit 0 when -h or -help invoked but undefined flag treats -h or -help as a special case to print a nice help message, but exit with a status code of 2. This update makes that status code 0. Fixes #37533 Change-Id: I7e0bd29944ce46607fb7cfc6740734f7444a151a GitHub-Last-Rev: 83f64d757bc3a9957c49caa5de74d05a967247...
[ { "path": "doc/go1.15.html", "patch": "@@ -119,6 +119,21 @@ <h3 id=\"minor_library_changes\">Minor changes to the library</h3>\n TODO\n </p>\n \n+<dl id=\"flag\"><dt><a href=\"/pkg/flag/\">flag</a></dt>\n+ <dd>\n+ <p><!-- CL 221427 -->\n+ When the flag package sees <code>-h</code> or <code>-help</c...
2020-04-03T00:13:08
nodejs/node
12433ec86a2f1985ae9a9aca7792631744c368b3
64c56914098f177ce3d39d00c5afbd941e11b2f1
src: simplify PBKDF2Request This also renames a misnamed variable `error_` to `success_`. PR-URL: https://github.com/nodejs/node/pull/14122 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "src/node_crypto.cc", "patch": "@@ -5233,7 +5233,7 @@ class PBKDF2Request : public AsyncWrap {\n int keylen)\n : AsyncWrap(env, object, AsyncWrap::PROVIDER_PBKDF2REQUEST),\n digest_(digest),\n- error_(0),\n+ success_(false),\n passlen_(passlen),\...
2017-07-10T10:56:37
ggml-org/llama.cpp
863d341eeb81db104902b14b6f9413daa515e957
d32e03f4495d3efa1c5126f53b449f1d429c5664
vulkan: perf_logger improvements (#15246) * vulkan: perf_logger improvements - Account for batch dimension in flops calculation. - Fix how "_VEC" is detected for mat_mul_id. - Fix "n" dimension for mat_mul_id (in case of broadcasting). - Include a->type in name. * use <=mul_mat_vec_max_cols rather than ==1
[ { "path": "ggml/src/ggml-vulkan/ggml-vulkan.cpp", "patch": "@@ -1111,17 +1111,23 @@ class vk_perf_logger {\n return;\n }\n if (node->op == GGML_OP_MUL_MAT || node->op == GGML_OP_MUL_MAT_ID) {\n- const uint64_t m = node->src[0]->ne[1];\n- const uint64_t n ...
2025-08-14T13:38:10
huggingface/transformers
c13a43aaf2194b5d05272af5c9c7e394688b72df
a6d178e23892a2b833523bb1ce4611b32e171f4f
Reflect RoCm support in the documentation (#27636) * reflect RoCm support in the documentation * Update docs/source/en/main_classes/trainer.md Co-authored-by: Lysandre Debut <hi@lysand.re> * fix review comments * use ROCm instead of RoCm --------- Co-authored-by: Lysandre Debut <hi@lysand.re>
[ { "path": "docs/source/en/main_classes/trainer.md", "patch": "@@ -26,7 +26,7 @@ If you're looking to fine-tune a language model like Llama-2 or Mistral on a tex\n \n Before instantiating your [`Trainer`], create a [`TrainingArguments`] to access all the points of customization during training.\n \n-The API ...
2023-11-24T15:59:17
golang/go
041bcb32b59b37ff55ad527083b7bd4ffa4c1a3d
886303004f06cfb3bcd0c1da92fe51f5eb1e3023
runtime/race: update some .syso files Update race detector syso files for some platforms. There's still 2 more to do, but they might take a while so I'm mailing the ones I have now. Note: some arm64 tests did not complete successfully due to out of memory errors, but I suspect the .syso is correct. Update #14481 Up...
[ { "path": "src/runtime/race/README", "patch": "@@ -4,10 +4,10 @@ the LLVM project (https://github.com/llvm/llvm-project/tree/master/compiler-rt).\n \n To update the .syso files use golang.org/x/build/cmd/racebuild.\n \n-race_darwin_amd64.syso built with LLVM 810ae8ddac890a6613d814c0b5415c7fcb7f5cca and Go 8...
2020-04-02T19:00:50
nodejs/node
61c49c37b7f14905f093fcb803c1e39ea81fed3f
92f3e4d4873cf96ed2e5cc2b716a92bf7d23a9af
src: remove superfluous cipher_ data member The EVP_CIPHER can be reconstructed from the EVP_CIPHER_CTX instance, no need to store it separately. This brought to light the somewhat dubious practice of accessing the EVP_CIPHER after the EVP_CIPHER_CTX instance had been destroyed. It's mostly harmless due to the stati...
[ { "path": "src/node_crypto.cc", "patch": "@@ -3332,16 +3332,16 @@ void CipherBase::Init(const char* cipher_type,\n }\n #endif // NODE_FIPS_MODE\n \n- CHECK_EQ(cipher_, nullptr);\n- cipher_ = EVP_get_cipherbyname(cipher_type);\n- if (cipher_ == nullptr) {\n+ CHECK_EQ(initialised_, false);\n+ const EV...
2017-07-10T10:56:37
ggml-org/llama.cpp
d32e03f4495d3efa1c5126f53b449f1d429c5664
3973163bff40f7f5161b0f08a0011729e2b0406a
server : add SWA checkpoints (#15293) * server : add SWA checkpoints ggml-ci * cont : server clean-up * server : handle state restore fails * llama : add extended llama_state_seq_ API * server : do not make checkpoints if --swa-full ggml-ci * llama : remove flags value for NONE * server : configure number of S...
[ { "path": "common/arg.cpp", "patch": "@@ -1507,6 +1507,14 @@ common_params_context common_params_parser_init(common_params & params, llama_ex\n params.swa_full = true;\n }\n ).set_env(\"LLAMA_ARG_SWA_FULL\"));\n+ add_opt(common_arg(\n+ {\"--swa-checkpoints\"}, \"N\",\n+ ...
2025-08-14T11:59:50
huggingface/transformers
a6d178e23892a2b833523bb1ce4611b32e171f4f
2098d343cc4b4b9d2aea84b3cf1eb5a1e610deff
[`DocString`] Support a revision in the docstring `add_code_sample_docstrings` to facilitate integrations (#27645) * initial commit * dummy changes * style * Update src/transformers/utils/doc.py Co-authored-by: Alex McKinney <44398246+vvvm23@users.noreply.github.com> * nits * nit use ` if re.match(r'...
[ { "path": "src/transformers/modeling_flax_utils.py", "patch": "@@ -1267,13 +1267,14 @@ def overwrite_call_docstring(model_class, docstring):\n model_class.__call__ = add_start_docstrings_to_model_forward(docstring)(model_class.__call__)\n \n \n-def append_call_sample_docstring(model_class, checkpoint, o...
2023-11-24T15:30:05
vuejs/vue
904d9c9a819abf8ee503a068fd47ec7c673924d1
5875c7c4906873c31b2feb66bb3ab6a19af6f5d7
test: fix weex test case
[ { "path": "test/weex/compiler/compile.spec.js", "patch": "@@ -32,12 +32,12 @@ describe('compile basic', () => {\n \n it('should compile unary tag', () => {\n const inputCase = compile(`<div><input><text>abc</text></div>`)\n- expect(inputCase.render).toMatch(strToRegExp(`return _m(0,false,false)`))\...
2017-12-05T16:20:33
rust-lang/rust
0819c1638c6fdb41884d7aadd1528611b2f09d7b
0f12b8cf121365ba48703fda854e5b5b523e8938
Fix import/attribute errors related to `SBTypeStaticField`
[ { "path": "src/etc/lldb_providers.py", "patch": "@@ -1,18 +1,19 @@\n+from __future__ import annotations\n import sys\n-from typing import List\n+from typing import List, TYPE_CHECKING\n \n from lldb import (\n SBData,\n SBError,\n- SBType,\n- SBTypeStaticField,\n- SBValue,\n eBasicTypeL...
2025-02-08T02:41:57
ggml-org/llama.cpp
5ade3000bd6040bf6878eafd6c77168552f73c47
8b2483730f90d6f23e2b188a54a210498bba937f
ggml: fix ggml_conv_1d_dw bug (ggml/1323) * ggml: fix ggml_conv_1d_dw bug * Fixed conv1d_dw weight tensor dimension.
[ { "path": "ggml/src/ggml.c", "patch": "@@ -4272,14 +4272,13 @@ struct ggml_tensor * ggml_conv_1d_dw(\n int s0,\n int p0,\n int d0) {\n- struct ggml_tensor * new_a = ggml_reshape_4d(ctx, a, a->ne[0], 1, a->ne[1], a->ne[2]);\n ...
2025-08-14T11:17:51
golang/go
886303004f06cfb3bcd0c1da92fe51f5eb1e3023
888a0c8ef6afb752aafd147eda40d62796d87cb3
net/http: release callbacks after fetch promise completes When the request context was canceled, the Transport.RoundTrip method could return before the fetch promise resolved. This would cause the success and failure callback functions to get called after they've been released, which in turn prints a "call to released...
[ { "path": "src/net/http/roundtrip_js.go", "patch": "@@ -102,12 +102,17 @@ func (t *Transport) RoundTrip(req *Request) (*Response, error) {\n \t\tjs.CopyBytesToJS(buf, body)\n \t\topt.Set(\"body\", buf)\n \t}\n-\trespPromise := js.Global().Call(\"fetch\", req.URL.String(), opt)\n+\n+\tfetchPromise := js.Glob...
2020-03-29T03:10:20
nodejs/node
92f3e4d4873cf96ed2e5cc2b716a92bf7d23a9af
ff2c57d9654cbe277a3827d1c02e8d2fd69bc29a
src: don't heap allocate GCM cipher auth tag Fix a memory leak by removing the heap allocation altogether. Fixes: https://github.com/nodejs/node/issues/13917 PR-URL: https://github.com/nodejs/node/pull/14122 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "src/node_crypto.cc", "patch": "@@ -3462,42 +3462,22 @@ bool CipherBase::IsAuthenticatedMode() const {\n }\n \n \n-bool CipherBase::GetAuthTag(char** out, unsigned int* out_len) const {\n- // only callable after Final and if encrypting.\n- if (initialised_ || kind_ != kCipher || !auth_tag_)\n- ...
2017-07-10T10:56:37
huggingface/transformers
2098d343cc4b4b9d2aea84b3cf1eb5a1e610deff
181f85da24f4cf5b0ce466e0be7fbe276a790edc
Fix semantic error in evaluation section (#27675) Change "convert predictions to logits" to "convert logits to predictions" to fix semantic error in the evaluation section. Logits need to be converted to predictions to evaluate the accuracy, not the other way round
[ { "path": "docs/source/en/training.md", "patch": "@@ -119,7 +119,7 @@ Specify where to save the checkpoints from your training:\n >>> metric = evaluate.load(\"accuracy\")\n ```\n \n-Call [`~evaluate.compute`] on `metric` to calculate the accuracy of your predictions. Before passing your predictions to `comp...
2023-11-24T11:41:16
vuejs/vue
5875c7c4906873c31b2feb66bb3ab6a19af6f5d7
0da8bced77654beb14c39ff3b4543b2ef37d1aff
fix: revert shared static tree cache to avoid memory leak revert f0a66c5 fix #7184
[ { "path": "src/compiler/codegen/index.js", "patch": "@@ -86,15 +86,13 @@ export function genElement (el: ASTElement, state: CodegenState): string {\n }\n \n // hoist static sub-trees out\n-function genStatic (el: ASTElement, state: CodegenState, once: ?boolean): string {\n+function genStatic (el: ASTElement...
2017-12-05T16:17:36
rust-lang/rust
a6e55271fbc27bc605ba08c5f4e7b64719909ab0
6345b59e741d3fac0a54b18ba1db816062841602
fix autodiff perf by running the enzyme opt pass before autodiff
[ { "path": "src/bootstrap/src/core/build_steps/llvm.rs", "patch": "@@ -964,6 +964,7 @@ impl Step for Enzyme {\n .env(\"LLVM_CONFIG_REAL\", &llvm_config)\n .define(\"LLVM_ENABLE_ASSERTIONS\", \"ON\")\n .define(\"ENZYME_EXTERNAL_SHARED_LIB\", \"ON\")\n+ .define(\"...
2025-02-08T01:56:17
ggml-org/llama.cpp
810b9fc8b99dd55517a3e94c6dee29748d482559
4ebd0c125b24a0d7a78b0ffc1d9567530ed8f0c4
perplexity : provide a helpful hint for has_cpl case in split_equal error. (#15304) When attempting to do llama-perplexity on certain tasks which have coupled sequences there is a cryptic error that does not tell you what to do, which is to set the -kvu flag. This adds a hint about that fact.
[ { "path": "src/llama-batch.cpp", "patch": "@@ -477,7 +477,7 @@ llama_ubatch llama_batch_allocr::split_simple(uint32_t n_ubatch) {\n \n llama_ubatch llama_batch_allocr::split_equal(uint32_t n_ubatch, bool sequential) {\n if (sequential && has_cpl) {\n- LLAMA_LOG_ERROR(\"%s: sequential split is not...
2025-08-14T11:03:30
golang/go
888a0c8ef6afb752aafd147eda40d62796d87cb3
2bed279721d684de828d0027db43a9d6283938a1
testing: add TB.TempDir Fixes #35998 Change-Id: I87c6bf4e34e832be68862ca16ecfa6ea12048d31 Reviewed-on: https://go-review.googlesource.com/c/go/+/226877 Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Ian Lance Taylor <iant@golang.org>
[ { "path": "src/go/build/deps_test.go", "patch": "@@ -199,7 +199,7 @@ var pkgDeps = map[string][]string{\n \t\"runtime/trace\": {\"L0\", \"context\", \"fmt\"},\n \t\"text/tabwriter\": {\"L2\"},\n \n-\t\"testing\": {\"L2\", \"flag\", \"fmt\", \"internal/race\", \"os\", \"runtime/debug\", \"r...
2020-04-01T17:43:57
nodejs/node
be3f3d40e2170ab880062641d829e306c80f4504
a6cec04aaaf4e0d6d51adb7f4485e6f1a69f6d5d
build: prevent VsDevCmd.bat from changing cwd VsDevCmd.bat changes the current working directory to "%USERPROFILE%\Source" if it exists. Setting VSCMD_START_DIR overrides this behavior. PR-URL: https://github.com/nodejs/node/pull/14303 Fixes: https://github.com/nodejs/node/issues/14300 Refs: https://developercommunit...
[ { "path": "vcbuild.bat", "patch": "@@ -176,6 +176,8 @@ if \"_%VisualStudioVersion%_\" == \"_15.0_\" if \"_%VSCMD_ARG_TGT_ARCH%_\"==\"_%target_\n set \"VSINSTALLDIR=\"\n call tools\\msvs\\vswhere_usability_wrapper.cmd\n if \"_%VCINSTALLDIR%_\" == \"__\" goto vs-set-2015\n+@rem prevent VsDevCmd.bat from chang...
2017-07-16T13:12:47
vuejs/vue
0da8bced77654beb14c39ff3b4543b2ef37d1aff
7166c4e8753fdb8cade6a922b958813383548107
fix(weex): send createFinish signal after root component mounted (#7154)
[ { "path": "src/platforms/weex/entry-framework.js", "patch": "@@ -61,12 +61,8 @@ export function createInstance (\n }, timerAPIs, env.services)\n \n appCode = `(function(global){ \\n${appCode}\\n })(Object.create(this))`\n-\n callFunction(instanceVars, appCode)\n \n- // Send `createFinish` signal to n...
2017-12-04T14:58:46
huggingface/transformers
80e9f76857c3f16dc0448ee2c12568f75e7544e9
7293fdc5b9cc809c2aa2ceb84f903ad47e5c06f0
Fix typo in warning message (#27055) * Fix typo in warning message The path of `default_cache_path` is hf_cache_home/hub. There is no directory named transformers under hf_cache_home * Fix a typo in comment * Update the version number v4.22.0 is the earlist version that contains those changes in PR #18492
[ { "path": "src/transformers/utils/hub.py", "patch": "@@ -104,10 +104,10 @@ def is_offline_mode():\n and \"TRANSFORMERS_CACHE\" not in os.environ\n ):\n logger.warning(\n- \"In Transformers v4.0.0, the default path to cache downloaded models changed from\"\n- \" '~/.cache/torch/transfor...
2023-11-24T11:24:04
rust-lang/rust
35c201c37f06f086d327de7a007e3bc97257351b
2fa2b10ba4e0e5b89c9c17056459151129ee8cb1
Decrease the allowed error for `cbrt` With the correctly rounded implementation, we can reduce the ULP requirement for `cbrt` to zero. There is still an override required for `i586` because of the imprecise FMA.
[ { "path": "library/compiler-builtins/libm/crates/libm-test/src/precision.rs", "patch": "@@ -41,7 +41,7 @@ pub fn default_ulp(ctx: &CheckCtx) -> u32 {\n | Bn::Trunc => 0,\n \n // Operations that aren't required to be exact, but our implementations are.\n- Bn::Cbrt if ctx.fn_ident != Id...
2025-01-25T00:31:49
ggml-org/llama.cpp
4ebd0c125b24a0d7a78b0ffc1d9567530ed8f0c4
5cdb27e0917479d2d742cea7beee089574bb09fa
cuda : fix GGML_CUDA_GRAPHS=OFF (#15300) * fix USE_CUDA_GRAPH=OFF ggml-ci * check capture status * completely disable capturing check instead
[ { "path": "ggml/src/ggml-cuda/mean.cu", "patch": "@@ -25,9 +25,12 @@ void ggml_cuda_op_mean(ggml_backend_cuda_context & ctx, ggml_tensor * dst) {\n \n // Special case for reducing vectors\n #ifdef GGML_CUDA_USE_CUB\n+#ifdef USE_CUDA_GRAPH\n cudaStreamCaptureStatus iscapturing;\n CUDA_CHECK(cudaStrea...
2025-08-14T10:22:07
nodejs/node
649d77bbf4e01e3dd3799ff8ca8d190641c9f4da
7ae23feb61d82c440483e928f9c2bba34e0ec88a
http: OutgoingMessage change writable after end When an OutgoingMessage is closed (for example, using the `end` method), its 'writable' property should be changed to false - since it is not writable anymore. The 'writable' property should have the opposite value of the 'finished' property. PR-URL: https://github.com/...
[ { "path": "lib/_http_outgoing.js", "patch": "@@ -793,6 +793,7 @@ OutgoingMessage.prototype.end = function end(chunk, encoding, callback) {\n this.connection.uncork();\n \n this.finished = true;\n+ this.writable = false;\n \n // There is the first message on the outgoing queue, and we've sent\n //...
2017-06-30T20:45:12
vuejs/vue
60da366a2653a3984d79331d02ebb2ecf7e73a9a
7e46683470e06e93fec338dbaedb201f9b79b4d1
fix: should not update in-focus input value with lazy modifier fix #7153
[ { "path": "src/platforms/web/runtime/modules/dom-props.js", "patch": "@@ -56,12 +56,12 @@ type acceptValueElm = HTMLInputElement | HTMLSelectElement | HTMLOptionElement;\n function shouldUpdateValue (elm: acceptValueElm, checkVal: string): boolean {\n return (!elm.composing && (\n elm.tagName === 'OPT...
2017-11-30T15:48:37
rust-lang/rust
f45cc66e8e4b09ee447e3519e7d8e85f06a00001
9169216f4126833868c5f15b034ae3d77ce7b3ac
Work arouind iai-callgrind apt failures Usually `cargo binstall iai-callgrind-runner` handles apt dependencies. However, the following has been happening: Err:11 mirror+file:/etc/apt/apt-mirrors.txt noble-updates/main amd64 libc6-dbg amd64 2.39-0ubuntu8.3 404 Not Found [IP: 40.81.13.82 80] E: Failed to...
[ { "path": "library/compiler-builtins/libm/.github/workflows/main.yaml", "patch": "@@ -158,6 +158,8 @@ jobs:\n \n - name: Set up dependencies\n run: |\n+ sudo apt update\n+ sudo apt install -y valgrind gdb libc6-dbg # Needed for iai-callgrind\n rustup update \"$BENCHMARK_RUSTC...
2025-02-07T22:28:19
huggingface/transformers
7293fdc5b9cc809c2aa2ceb84f903ad47e5c06f0
623432dcc925627c1925511298d1c11161cce81f
Deprecate `TransfoXL` (#27607) * fix * fix * trigger * Apply suggestions from code review Co-authored-by: Lysandre Debut <hi@lysand.re> * tic * revert * revert --------- Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> Co-authored-by: Lysandre Debut <hi@lysand.re>
[ { "path": "docs/source/en/model_doc/transfo-xl.md", "patch": "@@ -16,6 +16,29 @@ rendered properly in your Markdown viewer.\n \n # Transformer XL\n \n+<Tip warning={true}>\n+\n+This model is in maintenance mode only, so we won't accept any new PRs changing its code. This model was deprecated due to security...
2023-11-24T10:48:02
vuejs/vue
f5ce6b50cffef2e0eb8895c462b2433d8f8a701f
d4e0c3ef2444384719638a89f2a25af042b95795
fix(v-for): support array and nested destructuring in v-for
[ { "path": "src/compiler/parser/index.js", "patch": "@@ -22,7 +22,7 @@ import {\n export const onRE = /^@|^v-on:/\n export const dirRE = /^v-|^@|^:/\n export const forAliasRE = /(.*?)\\s+(?:in|of)\\s+(.*)/\n-export const forIteratorRE = /\\((\\{[^}]*\\}|[^,{]*),([^,]*)(?:,([^,]*))?\\)/\n+export const forIter...
2017-11-27T21:54:15
ggml-org/llama.cpp
5cdb27e0917479d2d742cea7beee089574bb09fa
3ea913f1ce9567289aedd866a569dbab8fb8e419
finetune: SGD optimizer, more CLI args (#13873) * examples/finetune -opt SGD (stochastic gradient descent) memory opt add unit tested GGML_OPT_OPTIMIZER_SGD to ggml - avoids allocating m, v tensors. support finetune.cpp arg -opt SGD (or sgd). (default adamw as before) llama 3.2-1b-F32 result: observed 11gb gpu ram ...
[ { "path": "CMakeLists.txt", "patch": "@@ -12,6 +12,8 @@ if (NOT XCODE AND NOT MSVC AND NOT CMAKE_BUILD_TYPE)\n set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS \"Debug\" \"Release\" \"MinSizeRel\" \"RelWithDebInfo\")\n endif()\n \n+message(\"CMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE}\")\n+\n # Add path to...
2025-08-14T10:03:57
rust-lang/rust
b7036c26db1cc7219951d4a855593e3178929e6e
039f322e18e6ad28a132dfb2cb7eef56908b6d8d
Fix names of several tests Rewrote `_mm_cvtps_ph` and `_mm_cvtph_ps` tests
[ { "path": "library/stdarch/crates/core_arch/src/x86/eflags.rs", "patch": "@@ -73,7 +73,7 @@ mod tests {\n #[test]\n #[cfg_attr(miri, ignore)] // Uses inline assembly\n #[allow(deprecated)]\n- fn test_eflags() {\n+ fn test_readeflags() {\n unsafe {\n // reads eflags, wri...
2025-02-05T21:21:36
huggingface/transformers
623432dcc925627c1925511298d1c11161cce81f
a761d6e9a02598690e9eceeec7a8b662149d7bdb
Skip pipeline tests for 2 models for now (#27687) fix Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": "tests/models/falcon/test_modeling_falcon.py", "patch": "@@ -298,6 +298,12 @@ class FalconModelTest(ModelTesterMixin, GenerationTesterMixin, PipelineTesterMix\n test_headmasking = False\n test_pruning = False\n \n+ # TODO (ydshieh): Check this. See https://app.circleci.com/pipelines/git...
2023-11-24T08:43:20
golang/go
9baafabac9a84813a336f068862207d2bb06d255
aa4d92b8aab63c847ab077417b809694a2a6ea81
crypto/rsa: refactor RSA-PSS signing and verification Cleaned up for readability and consistency. There is one tiny behavioral change: when PSSSaltLengthEqualsHash is used and both hash and opts.Hash were set, hash.Size() was used for the salt length instead of opts.Hash.Size(). That's clearly wrong because opts.Hash...
[ { "path": "src/crypto/rsa/pss.go", "patch": "@@ -4,9 +4,7 @@\n \n package rsa\n \n-// This file implements the PSS signature scheme [1].\n-//\n-// [1] https://www.emc.com/collateral/white-papers/h11300-pkcs-1v2-2-rsa-cryptography-standard-wp.pdf\n+// This file implements the RSASSA-PSS signature scheme acco...
2020-04-01T21:25:40
vuejs/vue
1c1621d96f61f07f8007000f92d1d2e23d3b42a3
0f7c443dca800204bc2e00876365869ee79e2d7b
chore: fix flow
[ { "path": "src/platforms/web/runtime/modules/attrs.js", "patch": "@@ -98,6 +98,7 @@ function setAttr (el: Element, key: string, value: any) {\n el.removeEventListener('input', blocker)\n }\n el.addEventListener('input', blocker)\n+ // $flow-disable-line\n el.__ieph =...
2017-11-27T17:24:17
ggml-org/llama.cpp
3ea913f1ce9567289aedd866a569dbab8fb8e419
29c8fbe4e05fd23c44950d0958299e25fbeabc5c
perplexity: give more information about constraints on failure (#15303) * perplexity: give more information about constraints on failure This checks whether -np is insufficient vs context, and provides clues as to how much is needed for each. * log formatting * log error and return instead of storing max_seq_exceed...
[ { "path": "tools/perplexity/perplexity.cpp", "patch": "@@ -920,7 +920,7 @@ static void hellaswag_score(llama_context * ctx, const common_params & params) {\n }\n \n if (i0 == i1) {\n- LOG_ERR(\"%s : task %zu does not fit in the context window\\n\", __func__, i0);\n+ LOG...
2025-08-14T06:16:32
rust-lang/rust
ba124898c06d9d0ba562b6bb353d841b22a2571c
a9e7b30487235621751cc628f170c0f15fb215c4
Add comment for regression #136223 on borrowck-errors.rs Signed-off-by: Shunpoco <tkngsnsk313320@gmail.com>
[ { "path": "tests/ui/pattern/rfc-3627-match-ergonomics-2024/experimental/borrowck-errors.classic2024.stderr", "patch": "@@ -48,19 +48,19 @@ LL | let &ref mut x = &0;\n | ^^^^^^^^^ cannot borrow as mutable\n \n error[E0596]: cannot borrow data in a `&` reference as mutable\n- --> $DIR/borrowc...
2025-02-01T19:47:12
vuejs/vue
0f7c443dca800204bc2e00876365869ee79e2d7b
d2e1d49c41ac633ea9410e1062b8e3e01f9d6b6d
fix: block unnecessary input event on textarea placeholder in IE close #7138
[ { "path": "src/platforms/web/runtime/modules/attrs.js", "patch": "@@ -1,6 +1,6 @@\n /* @flow */\n \n-import { isIE9, isEdge } from 'core/util/env'\n+import { isIE, isIE9, isEdge } from 'core/util/env'\n \n import {\n extend,\n@@ -44,7 +44,7 @@ function updateAttrs (oldVnode: VNodeWithData, vnode: VNodeWit...
2017-11-27T17:13:37
huggingface/transformers
a761d6e9a02598690e9eceeec7a8b662149d7bdb
b8db265bc6d0c9208ee465a12c6497149b4ee725
Refactoring Trainer, adds `save_only_model` arg and simplifying FSDP integration (#27652) * add code changes 1. Refactor FSDP 2. Add `--save_only_model` option: When checkpointing, whether to only save the model, or also the optimizer, scheduler & rng state. 3. Bump up the minimum `accelerate` version to `0.21.0`...
[ { "path": "docs/source/en/main_classes/trainer.md", "patch": "@@ -426,8 +426,7 @@ To read more about it and the benefits, check out the [Fully Sharded Data Parall\n We have integrated the latest PyTorch's Fully Sharded Data Parallel (FSDP) training feature.\n All you need to do is enable it through the conf...
2023-11-24T06:10:52
golang/go
aa4d92b8aab63c847ab077417b809694a2a6ea81
1dbcbcfca4692f67db7de2c1ff6a5ee59511cfa4
cmd/link: skip symbol references when looking for missing symbols ErrorUnresolved attempts to find the missing symbol in another ABI, in order to provide more friendly error messages. However, in doing so it checks the same ABI and can find the symbol reference for the symbol that it is currently reporting the unresol...
[ { "path": "src/cmd/link/internal/ld/link.go", "patch": "@@ -136,7 +136,7 @@ func (ctxt *Link) ErrorUnresolved(s *sym.Symbol, r *sym.Reloc) {\n \t\t\t\tif v == -1 {\n \t\t\t\t\tcontinue\n \t\t\t\t}\n-\t\t\t\tif rs := ctxt.Syms.ROLookup(r.Sym.Name, v); rs != nil && rs.Type != sym.Sxxx {\n+\t\t\t\tif rs := ctx...
2020-02-25T15:48:24
ggml-org/llama.cpp
1adc9812bd33dc85489bf093528d61c22917d54f
b3e16665e14032d1276f9d0263acef8321b6f518
fix(nix): remove non-functional llama-cpp cachix cache from flake.nix (#15295) The flake.nix included references to llama-cpp.cachix.org cache with a comment claiming it's 'Populated by the CI in ggml-org/llama.cpp', but: 1. No visible CI workflow populates this cache 2. The cache is empty for recent builds (tested b...
[ { "path": "flake.nix", "patch": "@@ -36,9 +36,6 @@\n # ```\n # nixConfig = {\n # extra-substituters = [\n- # # Populated by the CI in ggml-org/llama.cpp\n- # \"https://llama-cpp.cachix.org\"\n- #\n # # A development cache for nixpkgs imported with `config.cudaSupport = true`.\n # ...
2025-08-13T18:21:31
rust-lang/rust
7d73de8557a3626d9ba68773fcbd01078f926983
a005ccdc4e431d6b351de291318a1855907eb72f
Update `compiler-builtins` to 0.1.146 Exposes the error function so we can expose this in the standard library [1]. [1]: https://github.com/rust-lang/compiler-builtins/pull/753
[ { "path": "patches/0029-stdlib-Disable-f16-and-f128-in-compiler-builtins.patch", "patch": "@@ -16,8 +16,8 @@ index 7165c3e48af..968552ad435 100644\n \n [dependencies]\n core = { path = \"../core\" }\n--compiler_builtins = { version = \"=0.1.145\", features = ['rustc-dep-of-std'] }\n-+compiler_builtins = ...
2025-02-07T20:56:12
vuejs/vue
d2e1d49c41ac633ea9410e1062b8e3e01f9d6b6d
a71e653108e4ba56a70107662f3ee30cead59c18
fix(types): use object and string instead of Object and String (#7126)
[ { "path": "types/options.d.ts", "patch": "@@ -58,12 +58,12 @@ export interface ComponentOptions<\n PropsDef=PropsDefinition<DefaultProps>> {\n data?: Data;\n props?: PropsDef;\n- propsData?: Object;\n+ propsData?: object;\n computed?: Accessors<Computed>;\n methods?: Methods;\n watch?: Record<...
2017-11-27T14:30:58
huggingface/transformers
b8db265bc6d0c9208ee465a12c6497149b4ee725
fe1c16e95a1c2f7730b5d7340b669a63ab0b8ded
Update tiny model summary file (#27388) * update * fix --------- Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": "src/transformers/models/auto/image_processing_auto.py", "patch": "@@ -71,6 +71,7 @@\n (\"idefics\", \"IdeficsImageProcessor\"),\n (\"imagegpt\", \"ImageGPTImageProcessor\"),\n (\"instructblip\", \"BlipImageProcessor\"),\n+ (\"kosmos-2\", \"CLIPImageProcessor\"),\n ...
2023-11-23T20:00:39
golang/go
a7a0f0305035948f4c86e08e6e64409ab11a6f67
801cd7c84d42dcf18256416524aa0d31d6305830
cmd/compile: mark 'store multiple' as clobbering flags on s390x Store multiple instructions can clobber flags on s390x when the offset passed into the assembler is outside the range representable with a signed 20 bit integer. This is because the assembler uses the agfi instruction to implement the large offset. The as...
[ { "path": "src/cmd/compile/internal/ssa/gen/S390XOps.go", "patch": "@@ -630,6 +630,7 @@ func init() {\n \t\t\tasm: \"STMG\",\n \t\t\tfaultOnNilArg0: true,\n \t\t\tsymEffect: \"Write\",\n+\t\t\tclobberFlags: true, // TODO(mundaym): currently uses AGFI to handle large offsets\n \t\t},\n \t\t...
2020-04-01T10:21:03
rust-lang/rust
38a83026169fee6aa9f8e120778328057a2c77ea
942db6782f4a28c55b0b75b38fd4394d0483390f
Update `compiler-builtins` to 0.1.146 Exposes the error function so we can expose this in the standard library [1]. [1]: https://github.com/rust-lang/compiler-builtins/pull/753
[ { "path": "compiler/rustc_codegen_cranelift/patches/0029-stdlib-Disable-f16-and-f128-in-compiler-builtins.patch", "patch": "@@ -16,8 +16,8 @@ index 7165c3e48af..968552ad435 100644\n \n [dependencies]\n core = { path = \"../core\" }\n--compiler_builtins = { version = \"=0.1.145\", features = ['rustc-dep-o...
2025-02-07T20:56:12