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
electron/electron
5a8f60fe32f0c4ff7505c4c92b5196ebbaaacd66
73c9241a17f267cefc39ca0cbf2e0701032837ce
Update build-instructions-windows The build instructions mistakenly said that you can find `atom.exe` under `out\D` instead of `electron.exe`. I fixed that and mentioned that the release build will be to `out\R`.
[ { "path": "docs/development/build-instructions-windows.md", "patch": "@@ -54,7 +54,8 @@ You can also only build the Debug target:\n python script\\build.py -c D\n ```\n \n-After building is done, you can find `atom.exe` under `out\\D`.\n+After building is done, you can find `electron.exe` under `out\\D` (de...
2015-08-25T20:28:41
vercel/next.js
ed539c5dca7bd4d1c9cc9cd99c4b3d947e54c88e
509ed00fc163bc185221cd8d9b40c726ac36aadf
Update Turbopack to turbopack-230321.1 (#47342) Updates Turbopack to latest nightly and fix build errors. # New features * https://github.com/vercel/turbo/pull/4198 # Bug Fixes * https://github.com/vercel/turbo/pull/4241 # Misc. * https://github.com/vercel/turbo/pull/4249 --------- Co-authored-...
[ { "path": "packages/next-swc/Cargo.lock", "patch": "@@ -337,7 +337,7 @@ dependencies = [\n [[package]]\n name = \"auto-hash-map\"\n version = \"0.1.0\"\n-source = \"git+https://github.com/vercel/turbo.git?tag=turbopack-230317.2#11cca6719665fbb17d6750d8c62bd95fe4f2998e\"\n+source = \"git+https://github.com/v...
2023-03-21T11:48:48
nodejs/node
27f9a55cf66390195ad36eae0eb21fb4d07bb500
55e0ad9ae690f6d73b0caff7b813eb4d61195b94
test: do not use uninitialized memory in common flags check Only use the amount of data that was actually read from the test file. Otherwise, there is a small risk of getting false positives, and generally reading uninitialized memory makes using automated memory error detection tools harder. PR-URL: https://github.c...
[ { "path": "test/common/index.js", "patch": "@@ -57,9 +57,9 @@ if (process.argv.length === 2 &&\n const bytesToRead = 1500;\n const buffer = Buffer.allocUnsafe(bytesToRead);\n const fd = fs.openSync(module.parent.filename, 'r');\n- fs.readSync(fd, buffer, 0, bytesToRead);\n+ const bytesRead = fs.read...
2019-01-13T16:09:15
golang/go
732f6fa9d552c643b6225dd56689eb653ad61473
3283d1a2f29496d882b6edc57543446967dc8233
cmd/compile: use ANDL for small immediates We can rewrite ANDQ with an immediate fitting in 32bit with an ANDL, which is shorter to encode. Looking at Go binary itself, before the change there was: ANDL: 2337 ANDQ: 4476 After the change: ANDL: 3790 ANDQ: 3024 So we got rid of 1452 ANDQs This makes the Linux x86_...
[ { "path": "src/cmd/compile/internal/amd64/ssa.go", "patch": "@@ -618,8 +618,21 @@ func ssaGenValue(s *ssagen.State, v *ssa.Value) {\n \t\tp.To.Reg = r\n \t\tp.SetFrom3Reg(v.Args[0].Reg())\n \n+\tcase ssa.OpAMD64ANDQconst:\n+\t\tasm := v.Op.Asm()\n+\t\t// If the constant is positive and fits into 32 bits, us...
2021-10-10T15:56:16
huggingface/transformers
ba095d387dde8a5fe7574ebbb2671dbb0991b215
2c55c7fc94f0bc28e64462d0e0b678e3a8146f27
:broom: :broom: :broom: Get set decoder cleanup (#39509) * simplify common get/set * remove some noise * change some 5 years old modeling utils * update examples * fix copies * revert some changes * fixes, gah * format * move to Mixin * remove smolvlm specific require grad * skip * force defaults * remodul...
[ { "path": "examples/modular-transformers/modeling_test_detr.py", "patch": "@@ -1272,9 +1272,6 @@ def __init__(self, config: TestDetrConfig):\n def get_encoder(self):\n return self.encoder\n \n- def get_decoder(self):\n- return self.decoder\n-\n def freeze_backbone(self):\n ...
2025-08-25T08:57:56
vercel/next.js
1a47872b64c0b8d1765daa91ef656e7310ea79a2
cf66c2dc74d476e29db592b78e87841e39517ab5
chore: fix issue labeler (#47206) ### What? A fork of https://github.com/github/issue-labeler that we pull in and maintain. ### Why? The official issue labeler had some issues which I tried to fix in PRs and eventually got merged upstream, but the release cycle was a bit slow, and that GitHub action had ma...
[ { "path": ".eslintignore", "patch": "@@ -20,6 +20,7 @@ packages/react-dev-overlay/lib/**\n **/__tmp__/**\n .github/actions/next-stats-action/.work\n .github/actions/issue-validator/index.mjs\n+.github/actions/issue-labeler/lib/index.js\n packages/next-codemod/transforms/__testfixtures__/**/*\n packages/next...
2023-03-21T00:55:56
nodejs/node
74562356db6964f8057ef4bd897725793e55d513
f2e3a4ed8edf4675e3ec409a8430f6547660960a
doc: fix typo in Buffer API PR-URL: https://github.com/nodejs/node/pull/25544 Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
[ { "path": "doc/api/buffer.md", "patch": "@@ -221,7 +221,7 @@ elements, and not as a byte array of the target type. That is,\n `[0x1020304]` or `[0x4030201]`.\n \n It is possible to create a new `Buffer` that shares the same allocated memory as\n-a [`TypedArray`] instance by using the `TypeArray` object's...
2019-01-17T02:18:39
golang/go
61890fb1237a3d2c3be809f66dd3f831cd2cc3d2
3d051ba8d40a8c2e2b02c0a96cf0c47b1a9c469b
internal/fuzz: fix -fuzzminimizetime with 'x' bug Fixes #48928 Change-Id: I3825ec615ab5fc19389ef4c10ad1042005a3761c Reviewed-on: https://go-review.googlesource.com/c/go/+/355450 Trust: Katie Hockman <katie@golang.org> Run-TryBot: Katie Hockman <katie@golang.org> Reviewed-by: Jay Conrod <jayconrod@google.com> TryBot-R...
[ { "path": "src/cmd/go/testdata/script/test_fuzz_fuzztime.txt", "patch": "@@ -16,13 +16,24 @@ exec ./fuzz.test$GOEXE -test.timeout=10ms -test.fuzz=FuzzFast -test.fuzztime=5s\n # Timeout should not cause inputs to be written as crashers.\n ! exists testdata/fuzz\n \n+env GOCACHE=$WORK/tmp\n+\n # When we use f...
2021-10-12T20:45:40
huggingface/transformers
7d88f57fc6892b9b3d0092c53e27ae033f1bebc8
29ddcacea3ad9d3cdf6c5d8e51d1d39cbc5e7dfa
Update README_zh-hans.md (#40380) Fix a typo.
[ { "path": "i18n/README_zh-hans.md", "patch": "@@ -168,7 +168,7 @@ checkpoint: 检查点\n \n 词符化器 (tokenizer) 为所有的预训练模型提供了预处理,并可以直接对单个字符串进行调用(比如上面的例子)或对列表 (list) 调用。它会输出一个你可以在下游代码里使用或直接通过 `**` 解包表达式传给模型的词典 (dict)。\n \n-模型本身是一个常规的 [Pytorch `nn.Module`](https://pytorch.org/docs/stable/nn.html#torch.nn.Module) 或 [Te...
2025-08-22T18:22:26
electron/electron
50cbb5744bf9653da46d9ec378d67eb24b62b4d8
aef4acb2e65bb1de43c2e98f010c4d4cae3780d6
Revert "Fix link target in README.md" This reverts commit c9965f0ffddf174d26ad52489f2a47ce938723c1.
[ { "path": "README-ko.md", "patch": "@@ -1,4 +1,4 @@\n-[![Electron Logo](http://electron.atom.io/images/electron-logo.svg)](http://electron.atom.io/)\n+[![Electron Logo](http://electron.atom.io/images/electron-logo.svg)](http://electron.atom.io/)\n \n [![Build Status](https://travis-ci.org/atom/electron.svg...
2015-08-25T13:15:43
nodejs/node
098c2cc348da08b7092b434221ed2fcf607d8b0a
f6cd4e3e5976ce9edccdb13933028bdc95d43df4
doc: add Rich back to TSC list Fixes: https://github.com/nodejs/TSC/issues/650 PR-URL: https://github.com/nodejs/node/pull/25535 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail...
[ { "path": "README.md", "patch": "@@ -202,6 +202,8 @@ For information about the governance of the Node.js project, see\n **Michaël Zasso** &lt;targos@protonmail.com&gt; (he/him)\n * [thefourtheye](https://github.com/thefourtheye) -\n **Sakthipriyan Vairamani** &lt;thechargingvolcano@gmail.com&gt; (he/him)\n+...
2019-01-16T14:07:18
vercel/next.js
765744e333ad0b856f8c9e57f03c0bf8bf21d3b0
2a8961b36b5cbe44ea515bbffbd3e557c74efad9
Change App Route Route Handler signature (#47268) In preparation for improvements for the runtime support, this changes the handle signature to _always_ return a response object. fix NEXT-679 ([link](https://linear.app/vercel/issue/NEXT-679))
[ { "path": "packages/next/src/build/webpack/loaders/next-edge-app-route-loader/handle.ts", "patch": "@@ -19,8 +19,12 @@ type HandleProps = {\n }\n \n export function getHandle({ page, mod, nextConfigOutput }: HandleProps) {\n- const appRouteRouteHandler = new AppRouteRouteHandler(nextConfigOutput)\n- const...
2023-03-20T22:57:48
electron/electron
65046b05afbead0d3b6b8b6f1a6d71d520dd583a
474f92e41b79e994557b3f1471b6ce771b4527b3
Update brightray and node * brightray: fix building on OS X * node: remove a not used patch
[ { "path": "vendor/brightray", "patch": "@@ -1 +1 @@\n-Subproject commit 9267238d929a09491d58f3c2f49abb6ed9272483\n+Subproject commit 5b2a73c68a986780e67eb2e738327d35c7c1c21e", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "vendor/node", "patch": "@@ -1 +1 @@\n-Su...
2015-08-25T12:55:35
huggingface/transformers
dab66f15a1e3533391b0e9db4a73ae3b642db4ca
0a21e870c76262eb54cf6d7fde0f6c22b962204c
Chat Template Doc Fixes (#40173) * draft commit * draft commit * Fixup chat_extras too * Update conversations.md * Update the toctree and titles * Update the writing guide! * Use @zucchini-nlp's suggestion * Update docs/source/en/conversations.md Co-authored-by: Steven Liu <59462357+stevhliu@users.noreply.gith...
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -81,13 +81,13 @@\n - local: conversations\n title: Chat basics\n - local: chat_templating\n- title: Templates\n+ title: Chat templates\n - local: chat_templating_multimodal\n- title: Multimodal templates\n- - local: ch...
2025-08-22T14:48:33
nodejs/node
7b6e9aedaf8c9aa219ff759bed6b1680910eefe0
870186d69a9d2442b095e6d8783ba974f6893c60
test: fix test-repl timeout and tmpdir refresh PR-URL: https://github.com/nodejs/node/pull/25425 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Anto Aravinth <anto.aravinth.cse@gmail.com>
[ { "path": "test/parallel/test-repl.js", "patch": "@@ -22,6 +22,7 @@\n 'use strict';\n const common = require('../common');\n const fixtures = require('../common/fixtures');\n+const tmpdir = require('../common/tmpdir');\n const assert = require('assert');\n const net = require('net');\n const repl = require(...
2019-01-09T22:59:17
vercel/next.js
2a8961b36b5cbe44ea515bbffbd3e557c74efad9
f42825829c5853805d3e0ed23d6246a09c28bfb9
fix(cli): unify styles/content of templates (#47294) ### What? - fixes some typos - [x] getting started by editing "filename" - [x] match app/pages content - [x] fix utm params - [x] Reverted different text coloring in the CLI as they were hard to read on a dark background - [x] removes 13 ([Slack thr...
[ { "path": "packages/create-next-app/index.ts", "patch": "@@ -243,7 +243,7 @@ async function run(): Promise<void> {\n program.typescript = false\n program.javascript = true\n } else {\n- const styledTypeScript = chalk.hex('#0645ad')('TypeScript')\n+ const styledTypeScript ...
2023-03-20T22:33:44
golang/go
d032b2b2c8235ef25275405f6655866f2c81661d
4186db6155ccd4cfcf71dee0bce566a097f49406
testing: don't create unique subtest names while fuzzing T.Run uses a map[string]int64 to keep track of subtest names that may be returned through T.Name. T.Name can't return duplicate names for subtests started with T.Run. If a fuzz target calls T.Run, this map takes a large amount of memory, since there are a very ...
[ { "path": "src/testing/fuzz.go", "patch": "@@ -380,6 +380,13 @@ func (f *F) Fuzz(ff interface{}) {\n \t\tif e.Path != \"\" {\n \t\t\ttestName = fmt.Sprintf(\"%s/%s\", testName, filepath.Base(e.Path))\n \t\t}\n+\t\tif f.testContext.isFuzzing {\n+\t\t\t// Don't preserve subtest names while fuzzing. If fn call...
2021-10-06T21:58:22
huggingface/transformers
0a21e870c76262eb54cf6d7fde0f6c22b962204c
894b2d84b697a9c1b502eb6b18d703b39ec1464a
Bug Fix: Dynamically set return_lse flag in FlexAttention (#40352) * bug fix - return_lse dynamically set * addressed compatibility with return type - flex_attention_forward * rename variables * revert changes to commits
[ { "path": "src/transformers/integrations/flex_attention.py", "patch": "@@ -90,7 +90,7 @@ def compile_friendly_flex_attention(\n value: torch.Tensor,\n training=False,\n **kwargs,\n-) -> torch.Tensor:\n+) -> Union[torch.Tensor, tuple[torch.Tensor, torch.Tensor]]:\n # First call initialise sin...
2025-08-22T13:49:26
electron/electron
eb709a9a8f60797ee163fdba4ec9e20cf34fceb2
c3e1ceaf61cf308d8346d874be8c3b87d2c8a03f
Fix building on OS X
[ { "path": "brightray/browser/inspectable_web_contents_view_mac.mm", "patch": "@@ -2,6 +2,7 @@\n \n #import <AppKit/AppKit.h>\n \n+#include \"base/strings/sys_string_conversions.h\"\n #include \"browser/inspectable_web_contents.h\"\n #include \"browser/inspectable_web_contents_view_delegate.h\"\n #import \"b...
2015-08-25T12:55:07
vercel/next.js
f42825829c5853805d3e0ed23d6246a09c28bfb9
4575faa64976a9b732c48cab420641c45649b9ce
Add better-sqlite3 to server external packages (#47327) <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose the right checklist for the change(s) that you're making: ## For Con...
[ { "path": "packages/next/src/lib/server-external-packages.json", "patch": "@@ -6,6 +6,7 @@\n \"autoprefixer\",\n \"aws-crt\",\n \"bcrypt\",\n+ \"better-sqlite3\",\n \"canvas\",\n \"cypress\",\n \"eslint\",", "additions": 1, "deletions": 0, "language": "JSON" } ]
2023-03-20T22:26:23
nodejs/node
228a3f840d9cab2d53ee12c546f002745935344a
7e7266a80325fb10616f3a4cf885fb40b49c9352
src: fix FIPS section in Sign::SignFinal Currently, while FIPS is not supported yet for this release there might be an option to dynamically link against a FIPS compatible OpenSSL version. This commit fixes the compiler errors. PR-URL: https://github.com/nodejs/node/pull/25412 Reviewed-By: Sam Roberts <vieuxtech@gma...
[ { "path": "src/node_crypto.cc", "patch": "@@ -4505,9 +4505,14 @@ Sign::SignResult Sign::SignFinal(\n \n #ifdef NODE_FIPS_MODE\n /* Validate DSA2 parameters from FIPS 186-4 */\n- if (FIPS_mode() && EVP_PKEY_DSA == pkey->type) {\n- size_t L = BN_num_bits(pkey->pkey.dsa->p);\n- size_t N = BN_num_bits(...
2019-01-09T10:43:41
golang/go
4186db6155ccd4cfcf71dee0bce566a097f49406
26b6833308548f78a0926309c3acf7fd59b287f5
cmd/compile: some fixes in type substituter for Instantiate In the case in (*TSubster).Type() that we were running into an incomplete underlying type (TFORW), we should just be immediately returning the type returned by ts.SubstForwFunc(forw), since that call returns a proper type node, and has set up any remaining wo...
[ { "path": "src/cmd/compile/internal/typecheck/iimport.go", "patch": "@@ -1822,9 +1822,25 @@ func Instantiate(pos src.XPos, baseType *types.Type, targs []*types.Type) *types\n \tinstSym := baseSym.Pkg.Lookup(name)\n \tif instSym.Def != nil {\n \t\t// May match existing type from previous import or\n-\t\t// t...
2021-10-04T18:56:12
huggingface/transformers
894b2d84b697a9c1b502eb6b18d703b39ec1464a
56d68c6706ee052b445e1e476056ed92ac5eb383
Add GptOssForTokenClassification for GPT-OSS models (#40190) * Add GptOssForTokenClassification for GPT-OSS models * After run make fixup
[ { "path": "docs/source/en/model_doc/gpt_oss.md", "patch": "@@ -60,3 +60,8 @@ The original code can be found [here](<INSERT LINK TO GITHUB REPO HERE>).\n \n [[autodoc]] GptOssForSequenceClassification\n - forward\n+\n+## GptOssForTokenClassification\n+\n+[[autodoc]] GptOssForTokenClassification\n+ - f...
2025-08-22T13:14:46
vercel/next.js
0be4db325e5ac9816f9a8bdbcaae2be6a35ba94f
dd1de0e4c891b80a590f6421ac1eb82b5848e9e1
Warn about default exports with App Routes (#47263) When a user exports a default function from a `route.ts` file, they may think that this would be handled in the same way that our `pages/api/` routes handled it. App Routes require an exported function for each HTTP method instead. This adds warnings to the dev...
[ { "path": "packages/next/src/server/future/route-handlers/app-route-route-handler.ts", "patch": "@@ -24,7 +24,7 @@ import {\n handleTemporaryRedirectResponse,\n } from '../helpers/response-handlers'\n import { AppRouteRouteMatch } from '../route-matches/app-route-route-match'\n-import { HTTP_METHOD, isHTT...
2023-03-20T21:52:41
huggingface/transformers
8a6908c10db0edbdb5709fd36cbfd9b6c4be090c
7db228a92ad5fcb9d5089cac91d7c7c70e5578d6
fix(example): align parameter names with the latest function definition for gdino (#40369)
[ { "path": "docs/source/en/model_doc/grounding-dino.md", "patch": "@@ -70,7 +70,7 @@ Here's how to use the model for zero-shot object detection:\n >>> results = processor.post_process_grounded_object_detection(\n ... outputs,\n ... inputs.input_ids,\n-... box_threshold=0.4,\n+... threshold=0....
2025-08-22T12:27:58
golang/go
6e0adde1e9467f5a0b9bdbe3d64f9093981ba5df
36a265a625a8320fea93aad62da4003b2cc54f72
cmd/compile: do not reuse dead value in expand_calls pass We reuse a value for the same selector on the same arg. But if the value is already marked dead, don't reuse it. A use of an OpInvalid will confuse the compiler. Fixes #48916. Change-Id: I15b9e15b49f6e1991fe91df246cd12a193385e85 Reviewed-on: https://go-review...
[ { "path": "src/cmd/compile/internal/ssa/expand_calls.go", "patch": "@@ -1678,7 +1678,7 @@ func (x *expandState) rewriteArgToMemOrRegs(v *Value) *Value {\n \t\tt := v.Type\n \t\tkey := selKey{v, 0, t.Size(), t}\n \t\tw := x.commonArgs[key]\n-\t\tif w != nil {\n+\t\tif w != nil && w.Uses != 0 { // do not reus...
2021-10-12T16:38:42
nodejs/node
b7bbd871afb7e0bc02b92ebdbd785371439e5295
8528c21188d748c0caebd22bd4673bad53476866
deps: v8, cherry-pick 9365d09, aac2f8c, 47d34a3 Original commit message 9365d09: [coverage] Rework continuation counter handling This changes a few bits about how continuation counters are handled. It introduces a new mechanism that allows removal of a continuation range after it...
[ { "path": "common.gypi", "patch": "@@ -38,7 +38,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.9',\n+ 'v8_embedder_string': '-node.10',\n \n ##### V8 defaults for Node.js #####\n ...
2019-01-16T19:09:35
electron/electron
d2288815f8b8fd65ac3d94485b85ea3c6e66e382
2c7ccffe1aeee3adc72231dbb7b004a1516bc43b
List punctuation in crash-reporter
[ { "path": "docs/api/crash-reporter.md", "patch": "@@ -22,13 +22,13 @@ The `crash-reporter` module has the following methods:\n ### `crashReporter.start(options)`\n \n * `options` Object\n- * `productName` String, default: Electron\n- * `companyName` String, default: GitHub, Inc\n- * `submitUrl` String, d...
2015-08-25T12:18:02
vercel/next.js
5448c234d6948d007bf9d13dd548fe10336532ea
5d9b166ebae136e5ad221164b21cda892a7e1003
fix(cli): handle Tailwind CSS + `src/` correctly (#47238) ### What? - [x] fixes a bug in the CLI with the combination of `--tailwind` and `--src-dir` flags. - [x] fixes Tailwind CSS config when `--src-dir` is set - [x] respect `NEXT_TEST_SKIP_CLEANUP` in test utils ### Why? `pnpm create next-app@canary --t...
[ { "path": "packages/create-next-app/templates/index.ts", "patch": "@@ -123,21 +123,38 @@ export const installTemplate = async ({\n })\n })\n )\n+\n+ const isAppTemplate = template.startsWith('app')\n+\n // Change the `Get started by editing pages/index` / `app/page` to include `sr...
2023-03-20T21:21:29
golang/go
36a265a625a8320fea93aad62da4003b2cc54f72
46796703d739ba77913b0a2addab093a02b6d79d
testing: fix -run behavior with fuzz tests This change fixes some issues with -run, and the subsequent command line output when running in verbose mode. It replaces CorpusEntry.Name with CorpusEntry.Path, and refactors the code accordingly. This change also adds a lot of additional tests which check explicit command ...
[ { "path": "src/cmd/go/testdata/script/test_fuzz_mutate_crash.txt", "patch": "@@ -21,7 +21,7 @@ go run check_testdata.go FuzzWithBug\n # Now, the failing bytes should have been added to the seed corpus for\n # the target, and should fail when run without fuzzing.\n ! go test\n-stdout 'testdata[/\\\\]fuzz[/\\...
2021-10-07T20:26:36
nodejs/node
8528c21188d748c0caebd22bd4673bad53476866
84e90decd508afc2e2d53b475258ae4ec36ea586
src: call `Environment::Exit()` for fatal exceptions Call `Environment::Exit()` rather than the process-wide `exit()` function, since JS exceptions generally only affect the current JS engine instance. PR-URL: https://github.com/nodejs/node/pull/25472 Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com> Reviewed-...
[ { "path": "src/node_errors.cc", "patch": "@@ -324,7 +324,7 @@ TryCatchScope::~TryCatchScope() {\n if (HasCaught() && !HasTerminated() && mode_ == CatchMode::kFatal) {\n HandleScope scope(env_->isolate());\n ReportException(env_, Exception(), Message());\n- exit(7);\n+ env_->Exit(7);\n }\n ...
2019-01-12T20:28:48
electron/electron
a67767dbead63ee172d142a91e2f018a8cbd5287
703ced32dbaf27bee957aaac94e858f043594496
Standardize crash-reporter
[ { "path": "docs/api/crash-reporter.md", "patch": "@@ -1,5 +1,7 @@\n # crash-reporter\n \n+The `crash-reporter` module enables sending your app's crash reports.\n+\n The following is an example of automatically submitting a crash report to a remote server:\n \n ```javascript\n@@ -12,7 +14,11 @@ crashReporter...
2015-08-25T12:01:57
huggingface/transformers
19ffe0219dae122203f9726669f88ef1c6ea3bb4
d8f6d3790acdd7033e199875b5b57691adf10735
[processor] move commonalities to mixin (#40339) * move commonalities to mixin * revert - unrelated * fix copies * fix style * comments
[ { "path": "src/transformers/models/align/processing_align.py", "patch": "@@ -135,25 +135,5 @@ def __call__(\n else:\n return BatchEncoding(data=dict(**image_features), tensor_type=return_tensors)\n \n- def batch_decode(self, *args, **kwargs):\n- \"\"\"\n- This method for...
2025-08-22T11:04:43
vercel/next.js
feb2aecfa09539ef0fc304260e0e849ae83b1980
47ac5d5f8cdee9fd64dbcf2e7714378fb2dcf987
parallel routes: fix nested routes (#47323) ### What? There was a bug with supporting nested routes in the parallel routes with named slots that made the request hang ### Why? The request was hanging suspended on the router because the `next-app-loader` was not finding the layout component and thus, it was ...
[ { "path": "packages/next/src/build/webpack/loaders/next-app-loader.ts", "patch": "@@ -186,7 +186,6 @@ async function createTreeCodeFromPath(\n continue\n }\n \n- const parallelSegmentPath = segmentPath + '/' + parallelSegment\n const { treeCode: subtreeCode } = await createSubtreePr...
2023-03-20T20:59:58
golang/go
46796703d739ba77913b0a2addab093a02b6d79d
9c1dbdf60edbffeff10f58af21fa055eb0fdd29f
cmd/internal/obj/ppc64: support alignment of prefixed insn Insert machine NOPs when a prefixed instruction crosses a 64B boundary. ISA 3.1 prohibits prefixed instructions being placed across them. Such instructions generate SIGILL if executed. Likewise, adjust the function alignment to guarantee such instructions can...
[ { "path": "src/cmd/internal/obj/objfile.go", "patch": "@@ -804,7 +804,7 @@ func (ctxt *Link) writeSymDebugNamed(s *LSym, name string) {\n \tfmt.Fprintf(ctxt.Bso, \"size=%d\", s.Size)\n \tif s.Type == objabi.STEXT {\n \t\tfn := s.Func()\n-\t\tfmt.Fprintf(ctxt.Bso, \" args=%#x locals=%#x funcid=%#x\", uint64(...
2021-03-09T22:55:20
nodejs/node
2b401e33de81428dc5f6dfc60343e65ee5167886
0759cbfc775dc3a621c40e077b13a2f898ef9c04
os: add fallback for undefined CPUs For an unsupported OS, a call to os.cpus() throws an error within os.cpus() itself where it tries to get the length of it. This fixes the issue by adding fallback for undefined CPUs. Fixes: https://github.com/nodejs/node/issues/25483 PR-URL: https://github.com/nodejs/node/pull/2549...
[ { "path": "lib/os.js", "patch": "@@ -86,7 +86,8 @@ function loadavg() {\n }\n \n function cpus() {\n- const data = getCPUs();\n+ // [] is a bugfix for a regression introduced in 51cea61\n+ const data = getCPUs() || [];\n const result = [];\n for (var i = 0; i < data.length; i += 7) {\n result.pus...
2019-01-14T14:02:48
electron/electron
c9965f0ffddf174d26ad52489f2a47ce938723c1
5dc5f52f32628f314da94634b599dcb95ef3ebb5
Fix link target in README.md
[ { "path": "README-ko.md", "patch": "@@ -1,4 +1,4 @@\n-[![Electron Logo](http://electron.atom.io/images/electron-logo.svg)](http://electron.atom.io/)\n+[![Electron Logo](http://electron.atom.io/images/electron-logo.svg)](http://electron.atom.io/)\n \n [![Build Status](https://travis-ci.org/atom/electron.svg...
2015-08-25T08:06:16
vercel/next.js
47ac5d5f8cdee9fd64dbcf2e7714378fb2dcf987
7696124a5e9a8043c4c100f3162a3ca9d653db49
Add a .catch to shared router for ssg fetching. (#47265) **Description:** I noticed that when a user is on a deployed next.js site, and a fresh deployment is made, requests for ssg data fails w/ a 404. For prefetches (hovering a link) this appears to be handled well, but when the user actually clicks the link it w...
[ { "path": "packages/next/src/shared/lib/router/router.ts", "patch": "@@ -2432,7 +2432,9 @@ export default class Router implements BaseRouter {\n options.unstable_skipClientCache ||\n (options.priority &&\n !!process.env.__NEXT_OPTIMISTIC_CLIENT_CACHE),\n- ...
2023-03-20T20:19:25
golang/go
9c1dbdf60edbffeff10f58af21fa055eb0fdd29f
d887d3be5f8f143f2475ddb2ea6c48ceb32def17
compress/lzw: output a Clear code first, per GIF spec The TestStartsWithClearCode test is new, but if it existed beforehand, the want strings would be "\x81" and "Hi\x81" without a starting "\x80". Fixes #26108 Fixes #33748 Updates makeworld-the-better-one/didder#7 Updates nothings/stb#1222 Change-Id: I35ac0ed862ba6...
[ { "path": "src/compress/lzw/writer.go", "patch": "@@ -137,7 +137,19 @@ func (w *Writer) Write(p []byte) (n int, err error) {\n \tn = len(p)\n \tcode := w.savedCode\n \tif code == invalidCode {\n-\t\t// The first code sent is always a literal code.\n+\t\t// This is the first write; send a clear code.\n+\t\t/...
2021-10-09T05:52:19
rust-lang/rust
ed226d2c6b45f76437e417f47f6315b0f3c5b976
9b8c42cbb1493c5e0c089f73a8a9118a0894d231
Fix false positive for unused_unit
[ { "path": "clippy_lints/src/unused_unit.rs", "patch": "@@ -109,6 +109,7 @@ impl<'tcx> LateLintPass<'tcx> for UnusedUnit {\n && let AssocItemConstraintKind::Equality { term: Term::Ty(hir_ty) } = constraints[0].kind\n && args.span_ext.hi() != poly.span.hi()\n && !hir_ty.spa...
2025-06-03T17:25:43
nodejs/node
27f6d04dcf092c23d00d19eacf13e5c751ea9c5f
f216d5bbb1595f2fbed29517ba87b80e8c02f3c0
test: improve known_issues/test-vm-timeout-escape-queuemicrotask Improve known_issues/test-vm-timeout-escape-queuemicrotask to mitigate CI failures on ubuntu1604-arm64. Failures are due to a race condition. Use `common.platformTimeout()` to help, adjust timeout to make sure `queueMicrotasks()` has a chance to run, and...
[ { "path": "test/known_issues/test-vm-timeout-escape-queuemicrotask.js", "patch": "@@ -12,14 +12,17 @@ const NS_PER_MS = 1000000n;\n \n const hrtime = process.hrtime.bigint;\n \n+const loopDuration = common.platformTimeout(100n);\n+const timeout = common.platformTimeout(10);\n+\n function loop() {\n const ...
2019-01-14T22:20:07
electron/electron
291a60444aacaa0fe6773c4e257e5ccc3c1f9d54
a1ef09a243a48d24e211eb96e7a9c4b9149ecd45
minor wording fix, updated example
[ { "path": "docs/tutorial/using-selenium-and-webdriver.md", "patch": "@@ -72,7 +72,7 @@ driver.quit();\n \n ## Setting up with WebdriverIO\n \n-[WebdriverIO](http://webdriver.io/) provided a Node package for testing with web driver.\n+[WebdriverIO](http://webdriver.io/) provides a Node package for testing wi...
2015-08-25T06:15:59
huggingface/transformers
d8f6d3790acdd7033e199875b5b57691adf10735
9c25820978ea1b132bb145258959a852b2de4b7b
⚠️⚠️ Use `dtype` instead of `torch_dtype` everywhere! (#39782) * update everywhere * style * pipelines * switch it everywhere in tests * switch it everywhere in docs * switch in converters everywhere * update in examples * update in model docstrings * style * warnings * style * Update configuration_utils.py...
[ { "path": "README.md", "patch": "@@ -147,7 +147,7 @@ chat = [\n {\"role\": \"user\", \"content\": \"Hey, can you tell me any fun things to do in New York?\"}\n ]\n \n-pipeline = pipeline(task=\"text-generation\", model=\"meta-llama/Meta-Llama-3-8B-Instruct\", torch_dtype=torch.bfloat16, device_map=\"aut...
2025-08-22T10:34:16
vercel/next.js
7696124a5e9a8043c4c100f3162a3ca9d653db49
8a4e8059ede3b5fbce05a734f8b72f68ece21245
Remove duplicated if statement (#47322) Came across these two if statements that had equal conditions. The second error could never get thrown.
[ { "path": "packages/next/src/server/render.tsx", "patch": "@@ -1139,19 +1139,11 @@ export async function renderToHTML(\n if (process.env.NEXT_RUNTIME === 'edge' && Document.getInitialProps) {\n // In the Edge runtime, `Document.getInitialProps` isn't supported.\n // We throw an error here if...
2023-03-20T19:36:49
golang/go
6372e7efbab5a613b73271938acbd1c6f558814e
d90f0b920054e5e3fba981eea67fe092732a4376
cmd/api: support type parameters Fixes #48706 Change-Id: If0f8d0b49300027e3b2b46f6870302acf2e00f4e Reviewed-on: https://go-review.googlesource.com/c/go/+/354612 Trust: Ian Lance Taylor <iant@golang.org> Run-TryBot: Ian Lance Taylor <iant@golang.org> Reviewed-by: Robert Griesemer <gri@golang.org> TryBot-Result: Go Bot...
[ { "path": "src/cmd/api/goapi.go", "patch": "@@ -706,6 +706,36 @@ func sortedMethodNames(typ *types.Interface) []string {\n \treturn list\n }\n \n+// sortedEmbeddeds returns constraint types embedded in an\n+// interface. It does not include embedded interface types or methods.\n+func (w *Walker) sortedEmbed...
2021-10-07T20:05:16
nodejs/node
2f1ae9eebb65db3ae2bffd9e5dde6ff0a8b66219
66f45e7e5b7ef661678eb48bb630bb99acc7618b
doc: revert incorrect change on readable._read https://github.com/nodejs/node/pull/17979 introduced a change in the doc that was not correct about _read always being called asynchronously. This does not hold true when it is in flowing mode. See: https://github.com/nodejs/node/pull/17979 Fixes: https://github.com/node...
[ { "path": "doc/api/stream.md", "patch": "@@ -1858,10 +1858,6 @@ const myReadable = new Readable({\n #### readable.\\_read(size)\n <!-- YAML\n added: v0.9.4\n-changes:\n- - version: v10.0.0\n- pr-url: https://github.com/nodejs/node/pull/17979\n- description: Call `_read()` only once per microtick.\n -...
2019-01-11T11:53:37
huggingface/transformers
e018b77c89d59b8f3241372a41cfd3ee149afba5
d7fe3111ff1ad3518bb3fe02e376f1f487e1daf4
wav2vec2 fixes (#40341) * Changed datasets to avoid a datasets error * Changed back split to test
[ { "path": "tests/models/wav2vec2/test_modeling_wav2vec2.py", "patch": "@@ -97,7 +97,7 @@ def _test_wav2vec2_with_lm_invalid_pool(in_queue, out_queue, timeout):\n try:\n _ = in_queue.get(timeout=timeout)\n \n- ds = load_dataset(\"mozilla-foundation/common_voice_11_0\", \"es\", split=\"test...
2025-08-22T09:32:29
vercel/next.js
8a4e8059ede3b5fbce05a734f8b72f68ece21245
afd7a50a7780a56c2ebe1e3dea77d79054bf72f1
Add searchParams to leaf cache key (#47312) ### What? Makes searchParams part of the cache key for dynamic rendering responses. ### Why? Current the cache key only includes the pathname and not the searchParams. This causes issues in a few cases: - Navigation to `/dashboard` then clicking a link to `/dash...
[ { "path": "packages/next/src/build/webpack/loaders/next-app-loader.ts", "patch": "@@ -177,7 +177,7 @@ async function createTreeCodeFromPath(\n if (resolvedPagePath) pages.push(resolvedPagePath)\n \n // Use '' for segment as it's the page. There can't be a segment called '' so this is the saf...
2023-03-20T18:57:29
golang/go
d90f0b920054e5e3fba981eea67fe092732a4376
c1b0ae4154b44ce0bc4929455ee468fddb5dca9d
cmd/compile/internal/types2: avoid duplicate errors for invalid bounds Resolve a TODO from an earlier CL: we should only check type parameter bounds once in collectTypeParams. Change-Id: Icf6053ec359f8ac8143cf68ee2defd504f8f86e6 Reviewed-on: https://go-review.googlesource.com/c/go/+/355069 Trust: Robert Findley <rfin...
[ { "path": "src/cmd/compile/internal/types2/decl.go", "patch": "@@ -627,24 +627,29 @@ func (check *Checker) collectTypeParams(dst **TypeParamList, list []*syntax.Fiel\n \t// Example: type T[P T[P]] interface{}\n \t*dst = bindTParams(tparams)\n \n+\t// Keep track of bounds for later validation.\n \tvar bound ...
2021-10-11T13:59:40
nodejs/node
48f9b36459aa9d71b10f26471127cba2dc43042a
d1b7193428f6ed244e3937f718719312749b465e
src: move node::errno_string into node_errors.h/cc Move `node::errno_string` into node_errors.h/cc and move it into the `node:errors` namespace to reduce the size of the header. It's not on any performance-critical code path so does not need to be inlined. PR-URL: https://github.com/nodejs/node/pull/25396 Reviewed-By...
[ { "path": "src/env.cc", "patch": "@@ -816,7 +816,7 @@ void Environment::CollectExceptionInfo(Local<Value> object,\n return;\n \n Local<Object> obj = object.As<Object>();\n- const char* err_string = node::errno_string(errorno);\n+ const char* err_string = errors::errno_string(errorno);\n \n if (mes...
2019-01-08T15:08:42
huggingface/transformers
d7fe3111ff1ad3518bb3fe02e376f1f487e1daf4
cf487cdf1f61dae1465b4dff20a693a9b6ad6aff
Fix idefics3 vision embeddings indices dtype (#40360) fix idefics3 vision embeddings Signed-off-by: Isotr0py <mozf@mail2.sysu.edu.cn>
[ { "path": "src/transformers/models/idefics2/modeling_idefics2.py", "patch": "@@ -152,8 +152,8 @@ def forward(self, pixel_values: torch.FloatTensor, patch_attention_mask: torch.B\n nb_patches_h = p_attn_mask[:, 0].sum()\n nb_patches_w = p_attn_mask[0].sum()\n \n- h_indices ...
2025-08-22T09:10:45
vercel/next.js
afd7a50a7780a56c2ebe1e3dea77d79054bf72f1
46201e16448f3d8063b0c865dfa916a900742764
fix invalid comment in parseParameter function (#47291) I noticed an incorrect comment in ```parseParameter``` function, so I fixed it and added a missing example case. - Rename property ```name``` -> ```key``` - Add ```repeat: true, optional: false``` case https://github.com/vercel/next.js/blob/20b8dda0e8804f3c488b5...
[ { "path": "packages/next/src/shared/lib/router/utils/route-regex.ts", "patch": "@@ -15,9 +15,10 @@ export interface RouteRegex {\n /**\n * Parses a given parameter from a route to a data structure that can be used\n * to generate the parametrized route. Examples:\n- * - `[...slug]` -> `{ name: 'slug', r...
2023-03-20T18:11:11
golang/go
662c5eed3324a334d2d9418deb9e60a6765ff972
2ecdf9d800f631cfde30b7463a3ed2c0b60611d5
go/types: accept constraint literals with elided interfaces This is a port of CL 353139 to go/types, adjusted for error reporting and for the different representation of field lists in go/ast. A TODO is added to verify if types2 produces redundant error messages for type parameters sharing a bound. For #48424 Change...
[ { "path": "src/cmd/compile/internal/types2/decl.go", "patch": "@@ -640,6 +640,8 @@ func (check *Checker) collectTypeParams(dst **TypeParamList, list []*syntax.Fiel\n \n \tcheck.later(func() {\n \t\tfor i, tpar := range tparams {\n+\t\t\t// TODO(rfindley): this results in duplicate error messages for type\n+...
2021-10-10T14:43:20
electron/electron
5dc5f52f32628f314da94634b599dcb95ef3ebb5
5a37f964342992da3be5f3fa41ab203322028a8c
Fix typos and improve grammer, translate more files Translate content-tracing-ko.md file. Fix typos, improve grammer in tutorials and update as upstream.
[ { "path": "README-ko.md", "patch": "@@ -8,37 +8,42 @@\n \n :zap: *이전까지 Atom Shell로 알려져 있었습니다* :zap:\n \n+Electron 프레임워크는 JavaScript, HTML 그리고 CSS를 사용하여 Cross-Platform 데스크톱 어플리케이션을 개발할 수 있도록 해주는 프레임워크입니다. 이 프레임워크는 [io.js](http://iojs.org) 와\n+[Chromium](http://www.chromium.org)을 기반으로 만들어 졌으며 [Atom Editor](ht...
2015-08-25T05:43:37
nodejs/node
eb5aab2c46d7c92165de84023b242be079e6b711
bd8d682e21b1a48bdbde297a758a39fa2dadec89
util: fixes type in argument type validation error PR-URL: https://github.com/nodejs/node/pull/25103 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
[ { "path": "lib/util.js", "patch": "@@ -302,7 +302,7 @@ function inherits(ctor, superCtor) {\n \n if (superCtor.prototype === undefined) {\n throw new ERR_INVALID_ARG_TYPE('superCtor.prototype',\n- 'Function', superCtor.prototype);\n+ ...
2018-12-18T01:18:55
huggingface/transformers
cf487cdf1f61dae1465b4dff20a693a9b6ad6aff
8365f70e9259c21058bf18f876006f945d2a99de
HunYuan opensource (#39606) * merge opensource_hunyuan * add head_dim * fix assertion error * fix seen_tokens * ready_for_upstream (merge request !17) Squash merge branch 'ready_for_upstream' into 'main' * fix configuration type&docstring * fix style * ready_for_upstream (merge request !18) Squash merge branch...
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -529,6 +529,12 @@\n title: Helium\n - local: model_doc/herbert\n title: HerBERT\n+ - local: model_doc/hgnet_v2\n+ title: HGNet-V2\n+ - local: model_doc/hunyuan_v1_dense\n+ title: HunYuanDenseV1\n+ - loca...
2025-08-22T07:59:58
vercel/next.js
46201e16448f3d8063b0c865dfa916a900742764
40cb797a341a9fc94495cc66e51f36c2ecbb32c7
Improve OTEL spans naming (#47209) Adds bunch of default attributes and span names as discussed in https://github.com/vercel/next.js/pull/47066 Also discovered a few issues with our test setup. It's actually quite handy to use jest snapshots for this, thanks for the tip @feedthejim Currently we have following spans...
[ { "path": "packages/next/src/server/base-server.ts", "patch": "@@ -90,7 +90,7 @@ import { AppRouteRouteMatcherProvider } from './future/route-matcher-providers/a\n import { PagesAPIRouteMatcherProvider } from './future/route-matcher-providers/pages-api-route-matcher-provider'\n import { PagesRouteMatcherPro...
2023-03-20T17:17:23
golang/go
2ecdf9d800f631cfde30b7463a3ed2c0b60611d5
d973bb107e9142cf17e4a7f2666a71ed2d457e91
go/parser: allow eliding interface in constraint literals This is a port of CL 353133 from cmd/compile/internal/syntax, with significant adjustments for the mechanics of go/parser. Some additional cleanup is made along the way: parseParameterList can call parseParamDecl without indirection, and the tparams argument i...
[ { "path": "src/go/internal/typeparams/common.go", "patch": "@@ -7,7 +7,9 @@\n // constraint.\n package typeparams\n \n-// DisallowParsing is the numeric value of a parsing mode that disallows type\n-// parameters. This only matters if the typeparams experiment is active, and\n-// may be used for running tes...
2021-10-08T20:28:35
nodejs/node
bd8d682e21b1a48bdbde297a758a39fa2dadec89
0e1cf1eb1a4c091fdf6b2a9b6648c2cb346ccc29
build: set `-blibpath:` for AIX https://github.com/nodejs/node/pull/17604 refactored the gyp files so that `-blibpath:` on AIX was only set if `node_shared=="true"`. Restore the setting for non-shared builds. Fixes: https://github.com/nodejs/node/issues/25444 PR-URL: https://github.com/nodejs/node/pull/25447 Reviewe...
[ { "path": "common.gypi", "patch": "@@ -148,6 +148,17 @@\n 'cflags': [ '-gxcoff' ],\n 'ldflags': [ '-Wl,-bbigtoc' ],\n 'conditions': [\n+ ['target_arch==\"ppc64\"', {\n+ 'ldflags': [\n+ '-Wl,-blibpath:/usr/lib:/lib:'\n+ ...
2019-01-11T16:36:33
huggingface/transformers
7f38068ae031b1b55696035e1dae8e881f593960
cb1df4d26a93cdade051710c7dfa3aaa0e99abd6
Qwen2.5-VL test fixes for ROCm (#40308)
[ { "path": "tests/models/qwen2_5_vl/test_modeling_qwen2_5_vl.py", "patch": "@@ -28,6 +28,7 @@\n is_vision_available,\n )\n from transformers.testing_utils import (\n+ Expectations,\n cleanup,\n is_flaky,\n require_cv2,\n@@ -592,10 +593,24 @@ def test_small_model_integration_test_batch_diff...
2025-08-21T16:13:07
vercel/next.js
fd0e81342f72607811a8ce49f9283fe98417281c
8771a5613e0b26029cd4b574338d24f1102fa8ec
fix typo (#47235) Co-authored-by: Jan Kaifer <jan@kaifer.cz>
[ { "path": "examples/cms-cosmic/lib/api.tsx", "patch": "@@ -40,7 +40,9 @@ export const getAllPostsWithSlug = async () => {\n return data.objects\n }\n \n-export const getAllPostsForHome = async (preview: boolean): Promise<Post[]> => {\n+export const getAllPostsForHome = async (\n+ preview: boolean\n+): Pr...
2023-03-20T15:45:45
golang/go
d973bb107e9142cf17e4a7f2666a71ed2d457e91
70235351263caee1fd9840d1d652bf28778cd51d
encoding/gob: follow documented io.EOF semantics The docs say: If the input is at EOF, Decode returns io.EOF and does not modify e. However, the added test fails: --- FAIL: TestDecodePartial (0.00s) encoder_test.go:1263: 31/81: expected io.ErrUnexpectedEOF: EOF encoder_test.go:1263: 51/81: expected io.ErrUnex...
[ { "path": "src/encoding/gob/decoder.go", "patch": "@@ -138,9 +138,17 @@ func (dec *Decoder) nextUint() uint64 {\n // decoded. If this is an interface value, it can be ignored by\n // resetting that buffer.\n func (dec *Decoder) decodeTypeSequence(isInterface bool) typeId {\n+\tfirstMessage := true\n \tfor d...
2021-10-11T10:12:38
nodejs/node
0e1cf1eb1a4c091fdf6b2a9b6648c2cb346ccc29
374bddaaa14fd7fc6f12e9e798bfc932cc4c5377
doc: fix section order in vm.md This PR just places the `vm.SourceTextModule` class section after the `vm.Script` class section, restoring the alphabetical order. PR-URL: https://github.com/nodejs/node/pull/25374 Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "doc/api/vm.md", "patch": "@@ -43,6 +43,264 @@ console.log(sandbox.y); // 17\n console.log(x); // 1; y is not defined.\n ```\n \n+## Class: vm.Script\n+<!-- YAML\n+added: v0.3.1\n+-->\n+\n+Instances of the `vm.Script` class contain precompiled scripts that can be\n+executed in specific sandboxes (...
2019-01-07T11:38:11
huggingface/transformers
cb1df4d26a93cdade051710c7dfa3aaa0e99abd6
f46f29dd7ccc44a1bfb9fdc64a5171628f55b999
[`FA`] Fix some model tests (#40350) * fix * cleanup, revert aimv2 fa changes * fix aria * i searched a long time but the cross dependency is for the recent models so... * this was something... evolla * fix modernbert decoder + make fa test more robust * nit
[ { "path": "src/transformers/models/aimv2/modeling_aimv2.py", "patch": "@@ -630,6 +630,7 @@ def _get_vector_norm(tensor: torch.Tensor) -> torch.Tensor:\n class Aimv2Model(Aimv2PreTrainedModel):\n config: Aimv2Config\n _no_split_modules = [\"Aimv2TextEmbeddings\", \"Aimv2EncoderLayer\", \"Aimv2VisionE...
2025-08-21T16:08:21
vercel/next.js
8771a5613e0b26029cd4b574338d24f1102fa8ec
6b09bc86a89b620616d84e5161c9e5eed873a10f
parallel routes: fix duplicate dev warning (#47317) - there's a warning that happens currently when compiling parallel routes in dev because they all resolve to the same pathname and their identity function is all the same - I'm repurposing their identity fn to include the actual segment it's referring to, instead...
[ { "path": "packages/next/src/server/future/route-matchers/app-page-route-matcher.ts", "patch": "@@ -3,8 +3,6 @@ import { AppPageRouteDefinition } from '../route-definitions/app-page-route-defi\n \n export class AppPageRouteMatcher extends RouteMatcher<AppPageRouteDefinition> {\n public get identity(): str...
2023-03-20T12:10:13
electron/electron
f05ee4205dbe2029a94322b08363dfa36263f87e
d7cf4609185816c7ac8e520968ab4b726a533c95
Fix path comparison in api-ipc-spec One of the tests failed because in one of the paths the drive letter was upper case `C` and in the other it was lower case `c`. Paths in Windows are case insensitive, so this shouldn't fail. The fix was to lower case the paths before comparison (only on Windows).
[ { "path": "spec/api-ipc-spec.coffee", "patch": "@@ -5,6 +5,13 @@ remote = require 'remote'\n \n BrowserWindow = remote.require 'browser-window'\n \n+comparePaths = (path1, path2) ->\n+ if process.platform is 'win32'\n+ # Paths in Windows are case insensitive.\n+ path1 = path1.toLowerCase()\n+ path...
2015-08-22T16:50:54
golang/go
70235351263caee1fd9840d1d652bf28778cd51d
65ffee6f9a949023f10e5b6b918a7a218d9836a1
cmd/compile: adjust debug/gosym to deal with instantiated types/funcs/methods This changes debug/gosym so it can deal with instantiated types/funcs/methods. I also added tests for instantiated names. My assumption is that the concatenation of PackageName, ReceiverName, and BaseName in order should cover the entire sym...
[ { "path": "src/debug/gosym/symtab.go", "patch": "@@ -32,10 +32,28 @@ type Sym struct {\n // Static reports whether this symbol is static (not visible outside its file).\n func (s *Sym) Static() bool { return s.Type >= 'a' }\n \n+// nameWithoutInst returns s.Name if s.Name has no brackets (does not reference...
2021-10-07T19:21:01
huggingface/transformers
128f42d37096e0808ee2539a33e6ad98877f3b10
2121d0923912bea3f97273f6b082adac5116b785
[detection] use consistent dtype for Conditional and DAB DETR positional embeddings (#40300) fix: use consistent dtype for sine positional embeddings
[ { "path": "src/transformers/models/conditional_detr/modeling_conditional_detr.py", "patch": "@@ -431,7 +431,7 @@ def gen_sine_position_embeddings(pos_tensor, d_model):\n pos_x = torch.stack((pos_x[:, :, 0::2].sin(), pos_x[:, :, 1::2].cos()), dim=3).flatten(2)\n pos_y = torch.stack((pos_y[:, :, 0::2]...
2025-08-21T14:49:56
vercel/next.js
7cc4159561f6591140ff669c4ac3c74a049c783b
23c9f0eef20c5f425da28da872b4951d8c4029f9
fix: handle different cases of React `fetchPriority` (#47302) In React 18.3.0 or newer, we must user camelCase `fetchPriority` prop to avoid "Warning: Invalid DOM property". In React 18.2.0 and older, we must use the lowercase `fetchpriority` prop to avoid "Warning: Invalid DOM property". See https://github.com/face...
[ { "path": "packages/next/src/client/image.tsx", "patch": "@@ -8,6 +8,7 @@ import React, {\n useMemo,\n useState,\n forwardRef,\n+ version,\n } from 'react'\n import Head from '../shared/lib/head'\n import { getImageBlurSvg } from '../shared/lib/image-blur-svg'\n@@ -367,6 +368,23 @@ function handleLoa...
2023-03-20T00:26:00
golang/go
65ffee6f9a949023f10e5b6b918a7a218d9836a1
52078fa477a0a8a8440ca40d64850730e2cf27f8
cmd/go: insert goroot to the hash of build cache when the packages include C files This reverts CL 351851, which itself reverted CL 348991. The problem with the original CL, as far as I can tell, was due to a bug in the Go project's builder infrastructure (#33598) and not the change itself. Once the build infrastruct...
[ { "path": "src/cmd/go/internal/work/exec.go", "patch": "@@ -223,18 +223,32 @@ func (b *Builder) buildActionID(a *Action) cache.ActionID {\n \t// same compiler settings and can reuse each other's results.\n \t// If not, the reason is already recorded in buildGcflags.\n \tfmt.Fprintf(h, \"compile\\n\")\n-\t//...
2021-10-01T15:52:56
huggingface/transformers
2121d0923912bea3f97273f6b082adac5116b785
b40b834ab1eab4856878ef93b016ee24429bbe7a
[serve] add cors warnings (#40112) * add cors warnings * Update src/transformers/commands/serving.py Co-authored-by: Quentin Gallouédec <45557362+qgallouedec@users.noreply.github.com> * Update src/transformers/commands/serving.py Co-authored-by: Arthur <48595927+ArthurZucker@users.noreply.github.com> * Apply sugg...
[ { "path": "src/transformers/commands/serving.py", "patch": "@@ -634,6 +634,13 @@ def run(self):\n allow_methods=[\"*\"],\n allow_headers=[\"*\"],\n )\n+ logger.warning_once(\n+ \"CORS allow origin is set to `*`. This is not recommended fo...
2025-08-21T13:32:36
vercel/next.js
23c9f0eef20c5f425da28da872b4951d8c4029f9
a76c92971711d53b2f36755ead027d8c54db639d
Fix contributing.md link in the rendering benchmark (#47303) Fixes a 404 issue with the docs
[ { "path": "bench/rendering/readme.md", "patch": "@@ -2,7 +2,7 @@\n \n ## Installation\n \n-Follow the steps in [contributing.md](../contributing.md)\n+Follow the steps in [contributing.md](../../contributing.md)\n \n Both benchmarks use `ab`. So make sure you have that installed.\n ", "additions": 1, ...
2023-03-19T23:49:49
golang/go
aa1c6f56398882fea0969396666004d6ea7ddd57
bd41f2d3cd82a37e85fcf44067ffd2f728554a3b
cmd/internal/obj/ppc64: fix mtocrf, cleanup other CR ops Fix "MOVW CRx, Rx" and "MOVFL Rx, constant", The FXM field was not encoded correctly. Generate mtocrf instead of mtcrf when a CRx argument is used. This form is much faster. Simplify several conditional statements which test if the register argument is REG_CR ...
[ { "path": "src/cmd/asm/internal/asm/testdata/ppc64.s", "patch": "@@ -751,4 +751,17 @@ TEXT asmtest(SB),DUPOK|NOSPLIT,$0\n \tMOVD XER, R3 // 7c6102a6\n \tMOVFL CR3, CR1 // 4c8c0000\n \n+\tMOVW CR0, R1\t\t\t// 7c380026\n+\tMOVW CR7, R1\t\t\t// 7c301026\n+\tMOVW CR, R1\t\t\t...
2021-08-26T22:14:12
huggingface/transformers
b40b834ab1eab4856878ef93b016ee24429bbe7a
75aa7c72526dbc80831db4c1439376596b4560c4
Clean up XCodec and other codecs (#40348) * Clean up xcodec addition. * Clean up config. * Switch to fixtures test. * Small stuff. * Polish XCodec and standardize across codecs. * Update src/transformers/models/xcodec/modeling_xcodec.py Co-authored-by: Anton Vlasjuk <73884904+vasqu@users.noreply.github.com> * F...
[ { "path": "src/transformers/models/dac/feature_extraction_dac.py", "patch": "@@ -150,10 +150,11 @@ def __call__(\n max_length=max_length,\n truncation=truncation,\n padding=padding,\n- return_attention_mask=False,\n+ return_attention_mask=padding,\n ...
2025-08-21T13:32:00
vercel/next.js
a76c92971711d53b2f36755ead027d8c54db639d
269780cfbf081d312ca8fcea0afd7d91c51e640a
fix: typo in output:export error messages (#47252) See changes
[ { "path": "packages/next/src/server/config.ts", "patch": "@@ -263,22 +263,22 @@ function assignDefaults(\n if (result.output === 'export') {\n if (result.i18n) {\n throw new Error(\n- 'Specified \"i18n\" cannot but used with \"output: export\". See more info here: https://nextjs.org/docs/...
2023-03-19T19:58:56
huggingface/transformers
75aa7c72526dbc80831db4c1439376596b4560c4
04b751f07d6151401311de50c3dad7af6e9acdb1
[ModernBert] Prevent the attention mask from being None in ModernBertForSequenceClassification (#35991) * [ModernBert] Prevent the attention mask from being None in ModernBertForSequenceClassification * fix the modular conversion
[ { "path": "src/transformers/models/modernbert/modeling_modernbert.py", "patch": "@@ -1151,6 +1151,19 @@ def forward(\n return_dict = return_dict if return_dict is not None else self.config.use_return_dict\n self._maybe_set_compile()\n \n+ if input_ids is not None:\n+ self.w...
2025-08-21T13:16:03
nodejs/node
641b0135cf77a366064757e17039c2524c5fb3f9
7f913293c1ac50b01dfc775fe4861f362bcf624a
test: check for tls renegotiation errors Check that the return value and callback error for tls.renegotiate() does not indicate a failure. Also, remove unnecessary line wrapping and indentation. PR-URL: https://github.com/nodejs/node/pull/25437 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <lu...
[ { "path": "test/parallel/test-tls-disable-renegotiation.js", "patch": "@@ -12,7 +12,7 @@ const tls = require('tls');\n \n const options = {\n key: fixtures.readKey('agent1-key.pem'),\n- cert: fixtures.readKey('agent1-cert.pem')\n+ cert: fixtures.readKey('agent1-cert.pem'),\n };\n \n const server = tls.S...
2019-01-10T23:20:02
golang/go
702e33717486cb8331db17304f2369ef641da61f
34f7b1f841cc450cc3aba42019e613fd03a84fce
regexp: document and implement that invalid UTF-8 bytes are the same as U+FFFD What should it mean to run a regexp match on invalid UTF-8 bytes? The coherent behavior options are: 1. Invalid UTF-8 does not match any character classes, nor a U+FFFD literal (nor \x{fffd}). 2. Each byte of invalid UTF-8 is treated id...
[ { "path": "src/regexp/all_test.go", "patch": "@@ -372,6 +372,9 @@ var literalPrefixTests = []MetaTest{\n \t{`^^0$$`, ``, ``, false},\n \t{`^$^$`, ``, ``, false},\n \t{`$$0^^`, ``, ``, false},\n+\t{`a\\x{fffd}b`, ``, `a`, false},\n+\t{`\\x{fffd}b`, ``, ``, false},\n+\t{\"\\ufffd\", ``, ``, false},\n }\n \n f...
2021-10-07T13:56:29
electron/electron
9232620023daa476d384ea9f48f8cc9f92356e00
b1406fbad93e65c6bd54c646cdb3fe37aed1c0dc
Fixed comment spacing
[ { "path": "atom/browser/ui/message_box_win.cc", "patch": "@@ -79,8 +79,8 @@ int ShowMessageBoxUTF16(HWND parent,\n const base::string16& detail,\n const gfx::ImageSkia& icon) {\n TASKDIALOG_FLAGS flags =\n- TDF_SIZE_TO_CONTENT | // Show all content.\n- ...
2015-08-22T01:26:09
huggingface/transformers
04b751f07d6151401311de50c3dad7af6e9acdb1
1e1db123048dd3ccc3516673a93ef4c376e75a8a
Fix attention vizualizer (#40285) * make visualizer rely on create causal mask * format * fixup * fixup * read token * read token, duh * what is up with that token * small tests? * adjust * try with flush * normalize for ANSI * buffer shenanigans
[ { "path": "src/transformers/utils/attention_visualizer.py", "patch": "@@ -16,6 +16,7 @@\n import requests\n from PIL import Image\n \n+from ..masking_utils import create_causal_mask\n from ..models.auto.auto_factory import _get_model_class\n from ..models.auto.configuration_auto import AutoConfig\n from ..m...
2025-08-21T13:13:35
rust-lang/rust
7dac755be8d09234afa0ac6c3626c8d5f733ef31
c68032fd4c442d275f4daa571ba19c076106b490
`FIXME(-Znext-solver)` triage Co-authored-by: Michael Goulet <michael@errs.io>
[ { "path": "compiler/rustc_borrowck/src/type_check/constraint_conversion.rs", "patch": "@@ -141,8 +141,11 @@ impl<'a, 'tcx> ConstraintConversion<'a, 'tcx> {\n }\n \n if !tcx.recursion_limit().value_within_limit(iteration) {\n+ // This may actually be reachable. If so, w...
2025-05-30T11:21:34
nodejs/node
27dc74fdd0950d39d175145400a70174244870d9
9e7d4cac3f13966e5e2a691d8d90ad659f1907c5
doc: fix sorting in buffer.md This PR places `Buffer.from(object...)` section before `Buffer.from(string...)` section and upper-cased bottom references before backtick-started ones. PR-URL: https://github.com/nodejs/node/pull/25477 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Tobias Nießen <tniessen@...
[ { "path": "doc/api/buffer.md", "patch": "@@ -862,31 +862,6 @@ console.log(buf2.toString());\n \n A `TypeError` will be thrown if `buffer` is not a `Buffer`.\n \n-### Class Method: Buffer.from(string[, encoding])\n-<!-- YAML\n-added: v5.10.0\n--->\n-\n-* `string` {string} A string to encode.\n-* `encoding` {...
2019-01-13T17:49:56
electron/electron
b1406fbad93e65c6bd54c646cdb3fe37aed1c0dc
d7cf4609185816c7ac8e520968ab4b726a533c95
Fix no close button in message box on Windows This resolves #2293.
[ { "path": "atom/browser/ui/message_box_win.cc", "patch": "@@ -78,9 +78,9 @@ int ShowMessageBoxUTF16(HWND parent,\n const base::string16& message,\n const base::string16& detail,\n const gfx::ImageSkia& icon) {\n- TASKDIALOG_FLAGS flags...
2015-08-22T01:20:52
golang/go
eba91e83b05f146892aec8922615e77b6496d886
e1c294a56d5d03cdba1f059cdb6b1225477dc546
sync: use example.com for url in ExampleWaitGroup Fixes #48886 Change-Id: I1093ae0ba30dab5a73d4d6bcfd083564d13877a6 Reviewed-on: https://go-review.googlesource.com/c/go/+/354830 Reviewed-by: Alberto Donizetti <alb.donizetti@gmail.com> Reviewed-by: Meng Zhuo <mzh@golangcn.org> Trust: Alberto Donizetti <alb.donizetti@g...
[ { "path": "src/sync/example_test.go", "patch": "@@ -22,7 +22,7 @@ func ExampleWaitGroup() {\n \tvar urls = []string{\n \t\t\"http://www.golang.org/\",\n \t\t\"http://www.google.com/\",\n-\t\t\"http://www.somestupidname.com/\",\n+\t\t\"http://www.example.com/\",\n \t}\n \tfor _, url := range urls {\n \t\t// ...
2021-10-09T10:22:01
vercel/next.js
20b8dda0e8804f3c488b569c3355647ed5da9ac8
1467be886a94ac2e66a0442bd6bec1dc53da6608
Split app-render functions into separate files (#47282) Splits out the app-render related functions into separate files. <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose t...
[ { "path": "packages/next/src/server/app-render/action-render-result.ts", "patch": "@@ -0,0 +1,10 @@\n+import RenderResult from '../render-result'\n+\n+/**\n+ * Action Response is set to application/json for now, but could be changed in the future.\n+ */\n+export class ActionRenderResult extends RenderResult...
2023-03-18T21:24:42
huggingface/transformers
1e1db123048dd3ccc3516673a93ef4c376e75a8a
7f2f53424ee18a8317f4bde93b579a3a8958690c
(small) fix conditional for input_ids and input_embeds in marian (#40045) * (small) fix conditional for input_ids and input_embeds in marian * address comment
[ { "path": "src/transformers/models/marian/modeling_marian.py", "patch": "@@ -979,16 +979,14 @@ def forward(\n \n # retrieve input_ids and inputs_embeds\n if (input_ids is None) ^ (inputs_embeds is not None):\n- raise ValueError(\"You cannot specify both decoder_input_ids and decod...
2025-08-21T13:13:14
rust-lang/rust
6c982df82dbe9061e420d0fecd5202ec431b4d3c
f383b17668e0f564aae978f01d8eef7b115aa8ca
Remove get_dbg_loc from DebugInfoBuilderMethods It is only used within cg_llvm.
[ { "path": "src/debuginfo.rs", "patch": "@@ -52,10 +52,6 @@ impl<'a, 'gcc, 'tcx> DebugInfoBuilderMethods for Builder<'a, 'gcc, 'tcx> {\n fn clear_dbg_loc(&mut self) {\n self.location = None;\n }\n-\n- fn get_dbg_loc(&self) -> Option<Self::DILocation> {\n- self.location\n- }\n }\n...
2025-06-03T10:00:11
nodejs/node
9e7d4cac3f13966e5e2a691d8d90ad659f1907c5
c24fccf06460581a8b788ca4784bfef89eedf8f1
doc: fix `napi_open_callback_scope` description - parameter `resource_object` is mandatory PR-URL: https://github.com/nodejs/node/pull/25366 Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
[ { "path": "doc/api/n-api.md", "patch": "@@ -4118,7 +4118,7 @@ NAPI_EXTERN napi_status napi_open_callback_scope(napi_env env,\n napi_callback_scope* result)\n ```\n - `[in] env`: The environment that the API is invoked under.\n-- `[in] resource_object`: An opt...
2019-01-06T05:06:47
golang/go
e1c294a56d5d03cdba1f059cdb6b1225477dc546
74abcabf3045d2c893a517c872ace719f0e9d88f
cmd/compile: eliminate successive swaps The code generated when storing eight bytes loaded from memory in big endian introduced two successive byte swaps that did not actually modified the data. The new rules match this specific pattern both for amd64 and for arm64, eliminating the double swap. Fixes #41684 Change-...
[ { "path": "src/cmd/compile/internal/ssa/gen/AMD64.rules", "patch": "@@ -2217,3 +2217,5 @@\n (AND(Q|L) x (NEG(Q|L) x)) && buildcfg.GOAMD64 >= 3 => (BLSI(Q|L) x)\n (XOR(Q|L) x (ADD(Q|L)const [-1] x)) && buildcfg.GOAMD64 >= 3 => (BLSMSK(Q|L) x)\n (AND(Q|L) x (ADD(Q|L)const [-1] x)) && buildcfg.GOAMD6...
2021-05-14T16:42:16
vercel/next.js
e42a3d6d483ba0704c2133ebd7a8786e411be1f8
5ed66e54d199a3414271872a6e8a8a9b58dc4b60
Fix loader rule with wrong matching conditions (#47261 This Webpack loader rule should have the exactly same conditions as https://github.com/vercel/next.js/blob/828fd5a162b02c41cbfbef539688ae454594f24c/packages/next/src/build/webpack-config.ts#L1940-L1951 Except that it matches 2 special layers and an extra l...
[ { "path": "packages/next/src/build/webpack-config.ts", "patch": "@@ -1917,18 +1917,20 @@ export default async function getBaseWebpackConfig(\n use: swcLoaderForServerLayer,\n },\n {\n- test: codeCondition.test,\n+ ...
2023-03-17T22:35:02
electron/electron
cf6a904f957bfe44eb47728045652259ce532a74
00e5290dc8417424c15344fbce96eb71382179f9
win: Fix release build
[ { "path": "script/lib/config.py", "patch": "@@ -8,7 +8,7 @@\n \n BASE_URL = os.getenv('LIBCHROMIUMCONTENT_MIRROR') or \\\n 'http://github-janky-artifacts.s3.amazonaws.com/libchromiumcontent'\n-LIBCHROMIUMCONTENT_COMMIT = 'e738bafd994983408ea6c0871a054984e41519fc'\n+LIBCHROMIUMCONTENT_COMMIT = '42200d8ec...
2015-08-21T08:21:20
huggingface/transformers
11a49dd9e3db2138eadf67d416e3257701aef535
c4513a9fe667c6763819c01efefdac94f0a7c075
T5 test and target device fixes (#40313) * Fix cache setup related issues * Fix target-device-related issues * Ruff * Address review comments
[ { "path": "src/transformers/integrations/executorch.py", "patch": "@@ -820,11 +820,15 @@ def __init__(self, model, max_static_cache_length, batch_size):\n self.lm_head = model.lm_head\n self.config = model.config\n \n+ # Detect the device of the exported models by checking a parameter...
2025-08-21T12:07:29
nodejs/node
c24fccf06460581a8b788ca4784bfef89eedf8f1
4da7e6e228766454912a4de5dc6f037da8223e53
test: fix test-net-connect-econnrefused (again) test-net-connect-econnrefused was recently fixed, but only in certain circumstances. This change allows it to succeed whether it is invoked with `node` or `tools/test.py`. Makes sure no Socket handles are left, which is what the test is trying to determine, rather than f...
[ { "path": "test/pummel/test-net-connect-econnrefused.js", "patch": "@@ -50,7 +50,8 @@ function pummel() {\n function check() {\n setTimeout(function() {\n assert.strictEqual(process._getActiveRequests().length, 0);\n- assert.strictEqual(process._getActiveHandles().length, 1); // the timer\n+ con...
2019-01-10T22:04:52
golang/go
74abcabf3045d2c893a517c872ace719f0e9d88f
7fcf9a1e58c088eb63b7fc3db494016bf210966b
cmd/internal/obj: rename MOVBE{LL,QQ,WW} to just MOVBE{L,Q,W} The double suffix doesn't seem to serve any purpose, and we can keep the old spelling as a backwards compatible alias in cmd/asm. Change-Id: I3f01fc7249fb093ac1b25bd75c1cb9f39b8f62a9 Reviewed-on: https://go-review.googlesource.com/c/go/+/354700 Run-TryBot:...
[ { "path": "src/cmd/asm/internal/arch/arch.go", "patch": "@@ -178,6 +178,10 @@ func archX86(linkArch *obj.LinkArch) *Arch {\n \tinstructions[\"PSLLDQ\"] = x86.APSLLO\n \tinstructions[\"PSRLDQ\"] = x86.APSRLO\n \tinstructions[\"PADDD\"] = x86.APADDL\n+\t// Spellings originally used in CL 97235.\n+\tinstructio...
2021-10-08T19:19:57
rust-lang/rust
00a88b903d3728517dff8f0044160d18a0322ab4
b17dba45186c454576d0fc8fb93ecc65eb1a763a
Remove get_dbg_loc from DebugInfoBuilderMethods It is only used within cg_llvm.
[ { "path": "compiler/rustc_codegen_gcc/src/debuginfo.rs", "patch": "@@ -52,10 +52,6 @@ impl<'a, 'gcc, 'tcx> DebugInfoBuilderMethods for Builder<'a, 'gcc, 'tcx> {\n fn clear_dbg_loc(&mut self) {\n self.location = None;\n }\n-\n- fn get_dbg_loc(&self) -> Option<Self::DILocation> {\n- ...
2025-06-03T10:00:11
vercel/next.js
1aaae2998d6874a2bf22f5b988f0c57fb3e93e91
ad223c816ce71fc9af94f8e32822b4f17fe5f0ee
feat: add `fetchPriority` to `next/image` (#47222) - Closes #43096 - Available since Chrome 101: https://chromestatus.com/feature/5273474901737472 - Coming to Safari: https://bugs.webkit.org/show_bug.cgi?id=252739 - Introduction blog: https://web.dev/priority-hints/ fix NEXT-319 ([link](https://linear.app/ve...
[ { "path": "packages/next/src/client/image.tsx", "patch": "@@ -144,6 +144,7 @@ type ImageElementProps = Omit<ImageProps, 'src' | 'alt' | 'loader'> & {\n imgStyle: ImgElementStyle\n blurStyle: ImgElementStyle\n isLazy: boolean\n+ fetchPriority: string\n fill?: boolean\n loading: LoadingValue\n co...
2023-03-17T21:48:13
electron/electron
c9557f2b395316f53a51bceae74763702d42baa8
c4d192b9a4f43da0cafd3c5bedff68adcfce5a76
win: Fix Release build
[ { "path": "brightray/brightray.gyp", "patch": "@@ -179,8 +179,6 @@\n # Link with system libraries.\n 'link_settings': {\n 'libraries': [\n- # ffmpeg.dll.lib is required for linking with ffmpeg.dll\n- '<(libchromiumcontent_dir)/ffm...
2015-08-21T08:19:57
huggingface/transformers
c4513a9fe667c6763819c01efefdac94f0a7c075
c7e6f9a4857f9dcdf35237e4515890437713a01b
Fix links in Glm4vMoe configuration classes to point to the correct H… (#40310) * Fix links in Glm4vMoe configuration classes to point to the correct Hugging Face model repository * run fixup to update links in Glm4vMoe configuration classes to point to the correct Hugging Face model repository
[ { "path": "src/transformers/models/glm4v_moe/configuration_glm4v_moe.py", "patch": "@@ -124,7 +124,7 @@ class Glm4vMoeTextConfig(PretrainedConfig):\n This is the configuration class to store the configuration of a [`Glm4vMoeModel`]. It is used to instantiate a\n GLM-4.5V model according to the speci...
2025-08-21T11:42:53
nodejs/node
92e95f17b64838d4cf77343c1a814d4ebd795217
18d3aebb06903a0151bdecbad2b6b7077b965d03
src: simplify NativeModule caching and remove redundant data - Remove `NativeModule._source` - the compilation is now entirely done in C++ and `process.binding('natives')` is implemented directly in the binding loader so there is no need to store additional source code strings. - Instead of using an object as `N...
[ { "path": "lib/internal/bootstrap/cache.js", "patch": "@@ -7,14 +7,10 @@\n \n const { NativeModule } = require('internal/bootstrap/loaders');\n const {\n- source, getCodeCache, compileFunction\n+ getCodeCache, compileFunction\n } = internalBinding('native_module');\n const { hasTracing, hasInspector } = p...
2019-01-04T22:02:33
golang/go
7fcf9a1e58c088eb63b7fc3db494016bf210966b
f430bda2582bdea5cf3afd8a44ef5a46567a325a
cmd/go: do not expect a specific timing in test_fuzz_minimize Empirically, it may take more than 3 seconds for minimization to begin. If that is the case, the "elapsed:" message may start at 4s or higher. Fixes #48870 Change-Id: I6bb4367b61377454b0af664d80232fdb46e7c245 Reviewed-on: https://go-review.googlesource.co...
[ { "path": "src/cmd/go/testdata/script/test_fuzz_minimize.txt", "patch": "@@ -76,7 +76,7 @@ stdout FAIL\n \n ! go test -fuzz=FuzzMinimizerTooSlow -run=FuzzMinimizerTooSlow -fuzzminimizetime=3s minimizer_test.go\n stdout 'fuzz: minimizing'\n-stdout 'fuzz: elapsed: 3s, minimizing'\n+stdout 'fuzz: elapsed: \\d+...
2021-10-08T18:12:33