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
rust-lang/rust
61881e3c708628367565c6958d1a4e1794519797
d13a431a6cc69cd65efe7c3eb7808251d6fd7a46
Update the stdarch submodule Includes the following changes: * Add s390x z17 target features [1] * Remove `compiler-builtins` from `rustc-dep-of-std` dependencies [2] * Darwin AArch64 detection update [3] * Fixes for the latest nightly [4] * Add a lockfile [5] [1]: https://github.com/rust-lang/stdarch/pull/1826 [2]:...
[ { "path": "library/Cargo.lock", "patch": "@@ -353,7 +353,6 @@ name = \"std_detect\"\n version = \"0.1.5\"\n dependencies = [\n \"cfg-if\",\n- \"compiler_builtins\",\n \"libc\",\n \"rustc-std-workspace-alloc\",\n \"rustc-std-workspace-core\",", "additions": 0, "deletions": 1, "language": "Unk...
2025-06-10T00:25:51
golang/go
6458b2e8db7c4529248934f7e491df02d1e89318
5b213178e72b6031c9ec790bf9fe784c66b397e3
all: add support for c-archive and c-shared on linux/riscv64 This provides the runtime glue (_rt0_riscv64_linux_lib) for c-archive and c-shared support, along with enabling both of these buildmodes on linux/riscv64. Both misc/cgo/testcarchive and misc/cgo/testcshared now pass on this platform. Fixes #47100 Change-I...
[ { "path": "misc/cgo/testcshared/testdata/libgo2/dup2.go", "patch": "@@ -2,7 +2,7 @@\n // Use of this source code is governed by a BSD-style\n // license that can be found in the LICENSE file.\n \n-// +build darwin dragonfly freebsd linux,!arm64 netbsd openbsd\n+// +build darwin dragonfly freebsd linux,!arm6...
2021-07-15T17:06:18
huggingface/transformers
c532575795e4ccbf3c912a457528a9a60c0b94de
564fde14f1553c1b0e7890fbcec85b86c762d8c3
Add new model LFM2-VL (#40624) * Add LFM2-VL support * add tests * linting, formatting, misc review changes * add siglip2 to auto config and instantiate it in lfm2-vl configuration * decouple image processor from processor * remove torch import from configuration * replace | with Optional * remove layer truncat...
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -555,6 +555,8 @@\n title: LED\n - local: model_doc/lfm2\n title: LFM2\n+ - local: model_doc/lfm2_vl\n+ title: LFM2-VL\n - local: model_doc/llama\n title: LLaMA\n - local: model_doc/llama2", "addit...
2025-09-18T11:01:58
electron/electron
909779babf4bafe88d826bf61b3e2b6bf23a2949
f5c25d6277ffe025f3f0e5e621feafc06f1390d8
spec: Bring back crash-reporter spec on x64 Windows
[ { "path": "spec/api-crash-reporter-spec.coffee", "patch": "@@ -15,9 +15,6 @@ describe 'crash-reporter module', ->\n beforeEach -> w = new BrowserWindow(show: false)\n afterEach -> w.destroy()\n \n- # It is not working on 64bit Windows.\n- return if process.platform is 'win32' and process.arch is 'x64'...
2015-10-15T10:25:34
nodejs/node
c2b180fcbbd570b98efd8f939390f15ae61f9d0c
9d44950539e51461ede6fc04b63fb97d033f5468
test: simplify node-report/test-exception.js PR-URL: https://github.com/nodejs/node/pull/26277 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com>
[ { "path": "test/node-report/test-exception.js", "patch": "@@ -1,42 +1,24 @@\n+// Flags: --experimental-report --diagnostic-report-uncaught-exception\n 'use strict';\n-\n-// Testcase to produce report on uncaught exception\n+// Test producing a report on uncaught exception.\n const common = require('../commo...
2019-02-23T16:00:09
rust-lang/rust
841f7ce69ac503fb9566deeefbbd273c1587f4e6
208cb5da15d5a8378efff6d44a5ffa53fd51bbbc
Make `missing_fragment_specifier` an unconditional error This was attempted in [1] then reverted in [2] because of fallout. Recently, this was made an edition-dependent error in [3]. Make missing fragment specifiers an unconditional error again. [1]: https://github.com/rust-lang/rust/pull/75516 [2]: https://github.c...
[ { "path": "compiler/rustc_expand/messages.ftl", "patch": "@@ -113,7 +113,7 @@ expand_meta_var_expr_unrecognized_var =\n variable `{$key}` is not recognized in meta-variable expression\n \n expand_missing_fragment_specifier = missing fragment specifier\n- .note = fragment specifiers must be specified ...
2024-07-31T03:04:23
vercel/next.js
c0751e8c81aa6c4ae2bc089f1396e6cecef68e61
7af9c43911c05f6297f5971a006d65155e6c3659
Create unique route path for og under group routes (#47985) ### What When using dynamic metadata image rouets (such as `opengraph-image.js`) under group routes, the generated urls were still normalized. In this case it might have conflicts with those ones not under group routes. For instance `app/(post)/opengraph-ima...
[ { "path": "packages/next/src/build/webpack/loaders/metadata/discover.ts", "patch": "@@ -6,6 +6,7 @@ import type {\n import path from 'path'\n import { stringify } from 'querystring'\n import { STATIC_METADATA_IMAGES } from '../../../../lib/metadata/is-metadata-route'\n+import { normalizeAppPath } from '../....
2023-04-05T22:40:17
huggingface/transformers
564fde14f1553c1b0e7890fbcec85b86c762d8c3
5748352c27ffa5f26055836474a345daa2291df8
FIX(trainer): ensure final checkpoint is saved when resuming training (#40347) * fix(trainer): ensure final checkpoint is saved when resuming training * add test * make style && slight fix of test * make style again * move test code to test_trainer * remove outdated test file * Apply style fixes --------- Co-a...
[ { "path": "src/transformers/trainer.py", "patch": "@@ -2533,7 +2533,6 @@ def _inner_training_loop(\n start_time = time.time()\n epochs_trained = 0\n steps_trained_in_current_epoch = 0\n- steps_trained_progress_bar = None\n \n # Check if continuing training from a check...
2025-09-18T09:57:21
golang/go
a4b2c579e92c001287fd7b549bc9f67bcf2bfe7b
8f0ca7dc720b7197c91e02c8cef6e19ad95978d0
runtime: install sigPreempt signal handler for c-archive/c-shared Fixes #49288 Change-Id: I7bfcbecbefa68871a3e556935a73f241fff44c0e Reviewed-on: https://go-review.googlesource.com/c/go/+/360861 Trust: Ian Lance Taylor <iant@golang.org> Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Go Bot <gobot@golang...
[ { "path": "misc/cgo/testcarchive/carchive_test.go", "patch": "@@ -931,3 +931,55 @@ func TestManyCalls(t *testing.T) {\n \t\tt.Error(err)\n \t}\n }\n+\n+// Issue 49288.\n+func TestPreemption(t *testing.T) {\n+\tif runtime.Compiler == \"gccgo\" {\n+\t\tt.Skip(\"skipping asynchronous preemption test with gccgo...
2021-11-02T21:12:05
electron/electron
f5c25d6277ffe025f3f0e5e621feafc06f1390d8
d90b598125322ebc191dd09a3a606cb6426dbbce
win: Only install breakpad hook when crash-reporter is used
[ { "path": "atom/app/atom_main_delegate.cc", "patch": "@@ -19,10 +19,6 @@\n #include \"content/public/common/content_switches.h\"\n #include \"ui/base/resource/resource_bundle.h\"\n \n-#if defined(OS_WIN)\n-#include \"atom/common/crash_reporter/crash_reporter_win.h\"\n-#endif\n-\n namespace atom {\n \n names...
2015-10-15T10:25:07
rust-lang/rust
e6a5f281ec2b78b3089dcd9fd941d9d14921c6fa
6072207a1151f212163e3c19d92ff4ea22f291b2
add error message for unused duplicate
[ { "path": "compiler/rustc_attr_parsing/messages.ftl", "patch": "@@ -135,9 +135,7 @@ attr_parsing_unused_duplicate =\n unused attribute\n .suggestion = remove this attribute\n .note = attribute also specified here\n- .warn = {-attr_parsing_previously_accepted}\n-\n-\n+ .warn = {-passes_prev...
2025-03-03T16:45:14
nodejs/node
d64aea059902efb32f01c46c9ac0467662d93628
e3d4a7d9994ff7d1bd144779f8b91d8302112bc0
report: refactor triggerReport() This commit fixes the triggerReport() argument validation. The existing test is also updated, as it was not passing the Error object to triggerReport(). PR-URL: https://github.com/nodejs/node/pull/26268 Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Ruben Bridgewater <ruben...
[ { "path": "lib/internal/process/report.js", "patch": "@@ -75,20 +75,18 @@ const report = {\n },\n triggerReport(file, err) {\n emitExperimentalWarning('report');\n- if (err == null) {\n- if (file == null) {\n- return nr.triggerReport(new ERR_SYNTHETIC().stack);\n- }\n- if (t...
2019-02-22T19:52:42
huggingface/transformers
5748352c27ffa5f26055836474a345daa2291df8
438343d93f08d6f1f7c67933aaadf014ce719b4c
Update expected values for one more `test_speculative_generation` after #40949 (#40967) fix Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": "tests/models/qwen3_moe/test_modeling_qwen3_moe.py", "patch": "@@ -232,7 +232,7 @@ def test_model_15b_a2b_long_prompt_sdpa(self):\n @slow\n def test_speculative_generation(self):\n EXPECTED_TEXT_COMPLETION = (\n- \"To be or not to be: the role of the liver in the pathoge...
2025-09-18T09:47:14
golang/go
49a00631b118834010e4d0124ccc04eeaf2cd7ac
2b81b863a258decaaca26ab4c01bfd070cc01ebe
go/types: report cause for failing const conversions This is a port of CL 360795 to go/types. Error messages were adjusted accordingly, with a TODO to fix the discrepancy. Change-Id: Ifd7d8248fa11a31fde391021f3c5f1840877892f Reviewed-on: https://go-review.googlesource.com/c/go/+/360937 Trust: Robert Findley <rfindley...
[ { "path": "src/go/types/conversions.go", "patch": "@@ -49,8 +49,15 @@ func (check *Checker) conversion(x *operand, T Type) {\n \t\t// converted.\n \t\tok = under(T).(*TypeParam).underIs(func(u Type) bool {\n \t\t\t// t is nil if there are no specific type terms\n-\t\t\t// TODO(gri) add a cause in case of fa...
2021-11-02T22:42:51
vercel/next.js
7af9c43911c05f6297f5971a006d65155e6c3659
a94de4c7d0fffde3b08e0df21186a09f3f478558
Fix metadata nested twitter props rendering (#47972) For twitter and og image nested properties we should render them as snake case according to [og spec](https://ogp.me/) and [twitter card docs](https://developer.twitter.com/en/docs/twitter-for-websites/cards/guides/getting-started). For typing we keep them as camel ...
[ { "path": "packages/next/src/lib/metadata/generate/meta.tsx", "patch": "@@ -32,6 +32,24 @@ type MultiMetaContent =\n | null\n | undefined\n \n+function camelToSnake(camelCaseStr: string) {\n+ return camelCaseStr.replace(/([A-Z])/g, function (match) {\n+ return '_' + match.toLowerCase()\n+ })\n+}\n+...
2023-04-05T22:15:10
electron/electron
d90b598125322ebc191dd09a3a606cb6426dbbce
55d5660ddb9650ea2ced673aee51805f449e7841
win: Hook up V8 to breakpad This fixes the crashes happens from V8 not caught by the crash reporter, for more context, see http://code.google.com/p/v8/issues/detail?id=3597. Fix #2365.
[ { "path": "atom/app/atom_main_delegate.cc", "patch": "@@ -19,6 +19,10 @@\n #include \"content/public/common/content_switches.h\"\n #include \"ui/base/resource/resource_bundle.h\"\n \n+#if defined(OS_WIN)\n+#include \"atom/common/crash_reporter/crash_reporter_win.h\"\n+#endif\n+\n namespace atom {\n \n names...
2015-10-15T06:16:27
nodejs/node
e3d4a7d9994ff7d1bd144779f8b91d8302112bc0
d7a3c3cecc67f0ddb36734f305994981b1cf9ba2
inspector: return Error objects on error The inspector communicates errors via POJOs. This commit wraps the error information in an actual Error object. PR-URL: https://github.com/nodejs/node/pull/26255 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Eugene Ostroukhov <eostroukhov@google.com> Reviewed-B...
[ { "path": "lib/inspector.js", "patch": "@@ -3,6 +3,7 @@\n const {\n ERR_INSPECTOR_ALREADY_CONNECTED,\n ERR_INSPECTOR_CLOSED,\n+ ERR_INSPECTOR_COMMAND,\n ERR_INSPECTOR_NOT_AVAILABLE,\n ERR_INSPECTOR_NOT_CONNECTED,\n ERR_INVALID_ARG_TYPE,\n@@ -48,8 +49,14 @@ class Session extends EventEmitter {\n ...
2019-02-21T21:27:46
huggingface/transformers
58e13b9f129bb0dccc3b51e5da22f45ef3ff0ae7
529d3a2b063e8318007111db04d20071b0db1721
Update expected values for some `test_speculative_generation` (#40949) * fix * fix --------- Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": "tests/models/mistral/test_modeling_mistral.py", "patch": "@@ -254,7 +254,7 @@ def test_model_7b_long_prompt_sdpa(self):\n \n @slow\n def test_speculative_generation(self):\n- EXPECTED_TEXT_COMPLETION = \"My favourite condiment is 100% Sriracha. I love it on everything. I have it on...
2025-09-17T18:50:38
golang/go
2b81b863a258decaaca26ab4c01bfd070cc01ebe
d6f7203a3c63276680457b9794191a366a1a4401
go/types: fix indexing of generic types This is a clean port of CL 360603 to go/types. Change-Id: Iadb312f07e509ff83339d5525765b7b7987bf233 Reviewed-on: https://go-review.googlesource.com/c/go/+/360936 Trust: Robert Findley <rfindley@google.com> Run-TryBot: Robert Findley <rfindley@google.com> TryBot-Result: Go Bot <...
[ { "path": "src/go/types/index.go", "patch": "@@ -101,77 +101,80 @@ func (check *Checker) indexExpr(x *operand, e *typeparams.IndexExpr) (isFuncInst\n \n \tcase *TypeParam:\n \t\t// TODO(gri) report detailed failure cause for better error messages\n-\t\tvar tkey, telem Type // tkey != nil if we have maps\n+\...
2021-11-02T22:36:36
vercel/next.js
f9cf9be9eaa9376715a89a53adfd4b013b523ee2
bd852cc762698eeda7ade6b157f3a25742f1c448
fix CSS HMR for pages (vercel/turbo#4480) ### Description link preload tags are also used and shouldn't be updated. Only select stylesheet link tags
[ { "path": "crates/turbopack-dev/js/src/runtime.dom.js", "patch": "@@ -78,7 +78,7 @@ let BACKEND;\n }\n \n const previousLink = document.querySelector(\n- `link[href^=\"/${chunkPath}\"]`\n+ `link[type=stylesheet][href^=\"/${chunkPath}\"]`\n );\n \n if (previo...
2023-04-05T21:56:41
electron/electron
55d5660ddb9650ea2ced673aee51805f449e7841
11a49bba35005c3c91beaaa6e2523c5a9f9751a5
win: Make the event in crash service signaled by default Otherwise it seems to block the crash client on some machines. Fix #2769.
[ { "path": "atom/common/crash_reporter/win/crash_service.cc", "patch": "@@ -311,7 +311,7 @@ bool CrashService::Initialize(const base::string16& application_name,\n // service is initialized.\n base::string16 wait_name = ReplaceStringPlaceholders(\n kWaitEventFormat, application_name, NULL);\n- HAN...
2015-10-15T05:16:24
huggingface/transformers
529d3a2b063e8318007111db04d20071b0db1721
a2ac4de8b0af2776e3156e72afa7bb8679a3e436
Fix `Glm4vModelTest::test_eager_matches_fa2_generate` (#40947) * fix * fix * fix --------- Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": "tests/models/glm4v/test_modeling_glm4v.py", "patch": "@@ -159,7 +159,9 @@ def prepare_config_and_inputs_for_common(self):\n \n inputs_dict = {\n \"pixel_values\": pixel_values,\n- \"image_grid_thw\": torch.tensor([[1, patches_per_side, patches_per_side]] * self.batc...
2025-09-17T17:53:59
nodejs/node
d7a3c3cecc67f0ddb36734f305994981b1cf9ba2
907941d48e48a30b40a2ee73da4ccd974019fb6e
errors: add ERR_INSPECTOR_COMMAND error This error is used to propagate errors returned from the inspector module's command system. PR-URL: https://github.com/nodejs/node/pull/26255 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Eugene Ostroukhov <eostroukhov@google.com> Reviewed-By: Ruben Bridgewater ...
[ { "path": "doc/api/errors.md", "patch": "@@ -1159,6 +1159,11 @@ inspector was already connected.\n While using the `inspector` module, an attempt was made to use the inspector\n after the session had already closed.\n \n+<a id=\"ERR_INSPECTOR_COMMAND\"></a>\n+### ERR_INSPECTOR_COMMAND\n+\n+An error occurred...
2019-02-21T20:50:50
golang/go
d6f7203a3c63276680457b9794191a366a1a4401
32d27527a6dfb45a98d47a4a9ac5341028d79aa1
go/types: adjust printing of type parameter in error This is a clean port of CL 360514 to go/types. Change-Id: Ia13638b3758b3b8017867934d09136ac5f9a62ca Reviewed-on: https://go-review.googlesource.com/c/go/+/360935 Trust: Robert Findley <rfindley@google.com> Run-TryBot: Robert Findley <rfindley@google.com> TryBot-Res...
[ { "path": "src/go/types/infer.go", "patch": "@@ -373,16 +373,17 @@ func (check *Checker) inferB(tparams []*TypeParam, targs []Type) (types []Type,\n \n \t// If a constraint has a structural type, unify the corresponding type parameter with it.\n \tfor _, tpar := range tparams {\n-\t\ttyp := tpar\n \t\tsboun...
2021-11-02T22:29:27
vercel/next.js
a94de4c7d0fffde3b08e0df21186a09f3f478558
fde065b94a2e78c918009ffd89be26e627aac031
Check for null before reading value in useParams (#47875) Ensures the `null` value is checked instead of destructuring the value as it caused an error. Also added a test to check for `useParams` in `pages`. <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothl...
[ { "path": "packages/next/src/client/components/navigation.ts", "patch": "@@ -159,12 +159,12 @@ function getSelectedParams(\n */\n export function useParams(): Params {\n clientHookInServerComponentError('useParams')\n- const { tree } = useContext(GlobalLayoutRouterContext)\n- if (!tree) {\n+ const glo...
2023-04-05T21:51:52
electron/electron
11a49bba35005c3c91beaaa6e2523c5a9f9751a5
6aec8b092cf6c249649414d1c0a85f2a878bdd69
win: Fix "enable-larger-than-screen" option spec
[ { "path": "atom/browser/native_window.cc", "patch": "@@ -116,7 +116,8 @@ void NativeWindow::InitFromOptions(const mate::Dictionary& options) {\n } else if (options.Get(switches::kCenter, &center) && center) {\n Center();\n }\n- extensions::SizeConstraints size_constraints;\n+ // On Linux and Windo...
2015-10-15T08:35:50
nodejs/node
907941d48e48a30b40a2ee73da4ccd974019fb6e
4900863043406528d7cd37e8233fe449fa76f9bf
http: validate timeout in ClientRequest() Validate the timeout option in the ClientRequest() constructor to prevent asynchronously thrown validation errors. PR-URL: https://github.com/nodejs/node/pull/26214 Fixes: https://github.com/nodejs/node/issues/26143 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: ...
[ { "path": "lib/_http_client.js", "patch": "@@ -140,7 +140,9 @@ function ClientRequest(input, options, cb) {\n var setHost = (options.setHost === undefined || Boolean(options.setHost));\n \n this.socketPath = options.socketPath;\n- this.timeout = options.timeout;\n+\n+ if (options.timeout !== undefined...
2019-02-20T15:02:46
huggingface/transformers
a2ac4de8b0af2776e3156e72afa7bb8679a3e436
8e837f6ae244cd5be0d9629e695f60b054f16cb5
Remove nested import logic for torchvision (#40940) * remove nested import logic for torchvision * remove unnecessary protected imports * remove unnecessarry protected import in modular (and modeling) * fix wrongly remove protected imports
[ { "path": "src/transformers/image_processing_utils_fast.py", "patch": "@@ -61,14 +61,14 @@\n \n if is_torchvision_available():\n from .image_utils import pil_torch_interpolation_mapping\n-\n- if is_torchvision_v2_available():\n- from torchvision.transforms.v2 import functional as F\n- else:...
2025-09-17T17:34:30
golang/go
32d27527a6dfb45a98d47a4a9ac5341028d79aa1
a0f373ca08b05eb97e4bff7e8710c023d94231c3
go/types: fix conversions of constants to type parameter This is a port of both CL 360396 and CL 360796 to go/types. The latter is added to avoid introducing an intermediate bug. An error message was adjusted in issue49296.go2, with a TODO to switch to the types2 error. Change-Id: Iede294b69b4e097e53876498f039ee1866...
[ { "path": "src/go/types/conversions.go", "patch": "@@ -16,26 +16,47 @@ import (\n func (check *Checker) conversion(x *operand, T Type) {\n \tconstArg := x.mode == constant_\n \n-\tvar ok bool\n-\tvar cause string\n-\tswitch {\n-\tcase constArg && isConstType(T):\n-\t\t// constant conversion (T cannot be a t...
2021-11-02T22:25:21
electron/electron
6aec8b092cf6c249649414d1c0a85f2a878bdd69
f52c4af605e343c3131327041a21b0b8b882c191
views: Fix crash when setSizeConstrains is called early
[ { "path": "atom/browser/native_window_views.cc", "patch": "@@ -390,7 +390,10 @@ gfx::Size NativeWindowViews::GetContentSize() {\n void NativeWindowViews::SetContentSizeConstraints(\n const extensions::SizeConstraints& size_constraints) {\n NativeWindow::SetContentSizeConstraints(size_constraints);\n- ...
2015-10-15T08:19:45
vercel/next.js
fde065b94a2e78c918009ffd89be26e627aac031
e3e22f5beded84a342d7a8cc7dd1a98ebdf1b041
turbopack: add vary header to app routes (#47946) Next.js adds a `Vary: RSC, Next-Router-State-Tree, Next-Router-Prefetch` to app routes for both rendering and flight requests. Without this, the browser can mistakenly serve the flight request to the app render, and vice versa. This only adds `Vary: RSC` for the momen...
[ { "path": "packages/next-swc/crates/next-core/js/src/entry/app-renderer.tsx", "patch": "@@ -27,10 +27,11 @@ import \"next/dist/server/node-polyfill-fetch\";\n import \"next/dist/server/node-polyfill-web-streams\";\n import \"@vercel/turbopack-next/polyfill/async-local-storage\";\n import { renderToHTMLOrFli...
2023-04-05T21:08:11
nodejs/node
2e125cc2f3979817bc61c8445af56205935634b2
bba27a11c5216bbecf275cef59310cd5c058b74b
doc: clarify http.ClientRequest path description Clarify `http.ClientRequest` path description. Fixes: https://github.com/nodejs/node/issues/25864 PR-URL: https://github.com/nodejs/node/pull/26259 Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "doc/api/http.md", "patch": "@@ -638,7 +638,7 @@ Limits maximum response headers count. If set to 0, no limit will be applied.\n added: v0.4.0\n -->\n \n-* {string} The request path. Read-only.\n+* {string} The request path.\n \n ### request.removeHeader(name)\n <!-- YAML", "additions": 1, ...
2019-02-22T10:27:41
rust-lang/rust
2972e77d38d9ebb4ced8a1b50f46b2a06dd0b90e
fa7a6c1a4602e9ddbe299c6a204913301514790a
fix: Do not force descend into derives for goto IDE features Doing so can cause us to duplicate navigation targets for the same ranges which breaks convenience features of some editors where go to def can trigger find all references
[ { "path": "src/tools/rust-analyzer/crates/hir/src/semantics.rs", "patch": "@@ -244,7 +244,7 @@ impl<DB: HirDatabase + ?Sized> Semantics<'_, DB> {\n offset: TextSize,\n ) -> impl Iterator<Item = ast::NameLike> + 'slf {\n node.token_at_offset(offset)\n- .map(move |token| self.de...
2025-06-12T07:36:22
golang/go
a0f373ca08b05eb97e4bff7e8710c023d94231c3
eb63cbd2950e703ff2a6bd04330e97dc76c7923d
runtime/asan: declare asan reporting functions in C Fixes #49287 Change-Id: I3f970d6db0b1dee886df2f7bb6cbeb56a37c42c2 Reviewed-on: https://go-review.googlesource.com/c/go/+/360860 Trust: Ian Lance Taylor <iant@golang.org> Reviewed-by: Bryan C. Mills <bcmills@google.com> Run-TryBot: Bryan C. Mills <bcmills@google.com>...
[ { "path": "src/runtime/asan/asan.go", "patch": "@@ -10,9 +10,21 @@ package asan\n #cgo CFLAGS: -fsanitize=address\n #cgo LDFLAGS: -fsanitize=address\n \n+#include <stdbool.h>\n #include <stdint.h>\n #include <sanitizer/asan_interface.h>\n \n+extern void __asan_report_load1(void*);\n+extern void __asan_repor...
2021-11-02T20:56:22
vercel/next.js
e3e22f5beded84a342d7a8cc7dd1a98ebdf1b041
1fbbba6ffe9e941d11c2869fa3656bef8e16807f
Update search params/route params handling on deploy (#47930) This ensures we prefix the dynamic route params in the query so that they can be kept separate from actual query params from the initial request. Fixes: https://github.com/vercel/next.js/issues/43139
[ { "path": "packages/next/src/build/index.ts", "patch": "@@ -190,7 +190,7 @@ async function generateClientSsgManifest(\n }\n \n function pageToRoute(page: string) {\n- const routeRegex = getNamedRouteRegex(page)\n+ const routeRegex = getNamedRouteRegex(page, true)\n return {\n page,\n regex: norm...
2023-04-05T21:14:40
huggingface/transformers
8e837f6ae244cd5be0d9629e695f60b054f16cb5
eb04363a0dd52692913f2f026031db3902e2587c
Consistent naming for images kwargs (#40834) * use consistent naming for padding * no validation on pad size * add warnings * fix * fox copies * another fix * fix some tests * fix more tests * fix lasts tests * fix copies * better docstring * delete print
[ { "path": "src/transformers/image_processing_utils_fast.py", "patch": "@@ -79,8 +79,6 @@ def validate_fast_preprocess_arguments(\n do_normalize: Optional[bool] = None,\n image_mean: Optional[Union[float, list[float]]] = None,\n image_std: Optional[Union[float, list[float]]] = None,\n- do_pad:...
2025-09-17T16:40:25
rust-lang/rust
208cb5da15d5a8378efff6d44a5ffa53fd51bbbc
fe5c95d4ae33ec9d7831921e448e2daf8264ea42
Fix a missing fragment specifier in rustdoc tests
[ { "path": "tests/rustdoc/macro/macro-generated-macro.macro_morestuff_pre.html", "patch": "@@ -1,7 +1,7 @@\n macro_rules! morestuff {\n (\n- <= \"space between most kinds of tokens\" : 1 $x + @ :: >>= 'static\n- \"no space inside paren or bracket\" : (2 a) [2 a] $(2 $a:tt)*\n+ <= \"s...
2024-07-31T05:59:22
nodejs/node
79a3348d142be713c2aa5dbe41524b54cb6bac03
47c784203c97f56497dee65038534cb40ed9529a
worker: serialize errors if stack getter throws Current code that is intended to handle the stack getter throwing is untested. Add a test and adjust code to function as expected. Co-authored-by: Anna Henningsen <anna@addaleax.net> PR-URL: https://github.com/nodejs/node/pull/26145 Reviewed-By: Gus Caplan <me@gus.host>...
[ { "path": "lib/internal/error-serdes.js", "patch": "@@ -36,7 +36,10 @@ function TryGetAllProperties(object, target = object) {\n Assign(all, TryGetAllProperties(GetPrototypeOf(object), target));\n const keys = GetOwnPropertyNames(object);\n ForEach(keys, (key) => {\n- const descriptor = GetOwnPrope...
2019-02-16T06:43:58
golang/go
79024cf33d0cea53a0c75f428d79a9f971f12b5b
b24687394b55a93449e2be4e6892ead58ea9a10f
errors: improve wording in As doc comment "so" didn't have an antecedent. Change-Id: I27f7b334decea7bc34bfa3f3f2d3a79874c6fe90 Reviewed-on: https://go-review.googlesource.com/c/go/+/360797 Trust: Josh Bleecher Snyder <josharian@gmail.com> Reviewed-by: Ian Lance Taylor <iant@golang.org>
[ { "path": "src/errors/wrap.go", "patch": "@@ -59,7 +59,7 @@ func Is(err, target error) bool {\n \t}\n }\n \n-// As finds the first error in err's chain that matches target, and if so, sets\n+// As finds the first error in err's chain that matches target, and if one is found, sets\n // target to that error v...
2021-11-02T18:05:03
electron/electron
4270eba43896536390a5d3fd454bed4607fcbee6
d152b25fb638533560da6da3cb9670bc6ab37f23
translate the debugging-main-process.md
[ { "path": "docs-translations/zh-CN/README.md", "patch": "@@ -1,5 +1,6 @@\n ## 向导\n \n+* [支持平台](tutorial/supported-platforms.md)\n * [应用部署](tutorial/application-distribution.md)\n * [应用打包](tutorial/application-packaging.md)\n * [使用原生模块](tutorial/using-native-node-modules.md)", "additions": 1, "deleti...
2015-10-14T16:00:52
vercel/next.js
bd852cc762698eeda7ade6b157f3a25742f1c448
17376ee2ed4e1fe20711f5c0c308c13b03962d0a
use error pretty printer for code gen errors (vercel/turbo#4473) ### Description consistent formatting for this error message
[ { "path": "crates/turbopack-dev/src/ecmascript/content_entry.rs", "patch": "@@ -9,6 +9,7 @@ use turbo_tasks::{\n use turbopack_core::{\n chunk::{availability_info::AvailabilityInfo, ChunkItem, ModuleIdReadRef},\n code_builder::{CodeBuilder, CodeVc},\n+ error::PrettyPrintError,\n issue::{code_...
2023-04-05T19:18:15
rust-lang/rust
e3d4805a7b6072477e9e7f50031af9a250da74fc
aa95fcd4610aaad851fe7d860f8e9f5c96b58eaf
Improved reduction by adding support for removign dead functions. Fixed typos, formating.
[ { "path": "build_system/src/fuzz.rs", "patch": "@@ -129,7 +129,7 @@ fn fuzz_range(start: u64, end: u64, threads: usize) {\n // ... if that new file still produces the issue, copy it to `fuzz{seed}.rs`..\n out_path.push(&format!(\"fuzz{next}.rs\"));\n ...
2025-06-08T16:52:32
nodejs/node
376735345088d4b37e0e289c2eb7720419ed37ee
a8ba838e1a94c17ecf7a290c1951040d2957cb62
src: add debugging array allocator Add a subclass of `ArrayBufferAllocator` that performs additional debug checking, which in particular verifies that: - All `ArrayBuffer` backing stores have been allocated with this allocator, or have been explicitly marked as coming from a compatible source. - All memory alloca...
[ { "path": "src/api/environment.cc", "patch": "@@ -75,8 +75,82 @@ void* ArrayBufferAllocator::Allocate(size_t size) {\n return UncheckedMalloc(size);\n }\n \n+DebuggingArrayBufferAllocator::~DebuggingArrayBufferAllocator() {\n+ CHECK(allocations_.empty());\n+}\n+\n+void* DebuggingArrayBufferAllocator::A...
2019-02-18T16:30:10
electron/electron
95c4847d601f350dab5b4f64cc7dca2db55801e2
74d389b2b0a96b30f6d7bf69205cbd18762f62a8
Update application-distribution.md Fix typo on line 38
[ { "path": "docs/tutorial/application-distribution.md", "patch": "@@ -35,7 +35,7 @@ exposing your app's source code to users.\n \n To use an `asar` archive to replace the `app` folder, you need to rename the\n archive to `app.asar`, and put it under Electron's resources directory like\n-below, and Electron w...
2015-10-14T10:28:27
golang/go
b24687394b55a93449e2be4e6892ead58ea9a10f
b29182b54ac343bbc58a30357d9df908f1c3b727
archive/zip: don't panic on (*Reader).Open Previously, opening a zip with (*Reader).Open could result in a panic if the zip contained a file whose name was exclusively made up of slash characters or ".." path elements. Open could also panic if passed the empty string directly as an argument. Now, any files in the zi...
[ { "path": "src/archive/zip/reader.go", "patch": "@@ -741,6 +741,9 @@ func (r *Reader) initFileList() {\n \t\tfor _, file := range r.File {\n \t\t\tisDir := len(file.Name) > 0 && file.Name[len(file.Name)-1] == '/'\n \t\t\tname := toValidName(file.Name)\n+\t\t\tif name == \"\" {\n+\t\t\t\tcontinue\n+\t\t\t}\n...
2021-09-14T13:38:19
vercel/next.js
1fbbba6ffe9e941d11c2869fa3656bef8e16807f
2c9b484fc13e199d399f1537e0a45dda14a9ec7b
Unify Request types (#47884) This serves to start the transition of replacing the following: - Replace `BaseNextRequest`, `WebNextRequest`, and `NodeNextRequest` with `NextRequest` - Replace `BaseNextResponse`, `WebNextResponse`, and `NodeNextResponse` with `Response` This will currently only apply to app routes, en...
[ { "path": "packages/next-swc/crates/next-core/js/src/entry/app/route-bootstrap.ts", "patch": "@@ -1,7 +1,7 @@\n // PAGE and PATHNAME is set from rust code\n declare const PAGE: string, PATHNAME: string;\n \n-import { EdgeModuleWrapper } from \"next/dist/build/webpack/loaders/next-edge-app-route-loader/edge-...
2023-04-05T18:24:08
nodejs/node
7e0ddf66b9e09a27e0761b487342027ed6284027
8d69fdde1955e0b08bdbe6949090f459995784a7
doc: fix deprecation "End-of-Life" capitalization PR-URL: https://github.com/nodejs/node/pull/26251 Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigip...
[ { "path": "doc/api/deprecations.md", "patch": "@@ -1284,7 +1284,7 @@ changes:\n description: End-of-Life.\n -->\n \n-Type: End-Of-Life\n+Type: End-of-Life\n \n `--debug` activates the legacy V8 debugger interface, which was removed as\n of V8 5.8. It is replaced by Inspector which is activated with `--i...
2019-02-21T20:45:41
golang/go
7c9510ef3ec4b1008b599c9c8a0ec9adaba4b663
c45c32b1cd6ba635fda3add12f48766fd6aef5d8
syscall: fix finalizer fd close bugs in TestFcntlFlock and TestPassFD Currently, the syscall test suite takes very little time to run. It stands to reason that pretty much every time, zero GCs execute. With CL 309869, this changes because the minimum heap size is lowered, triggering two bugs in the test suite. One b...
[ { "path": "src/syscall/syscall_unix_test.go", "patch": "@@ -84,16 +84,24 @@ func TestFcntlFlock(t *testing.T) {\n \t\tif err != nil {\n \t\t\tt.Fatalf(\"Open failed: %v\", err)\n \t\t}\n-\t\tdefer syscall.Close(fd)\n-\t\tif err := syscall.Ftruncate(fd, 1<<20); err != nil {\n+\t\t// f takes ownership of fd, ...
2021-11-01T22:35:29
huggingface/transformers
eb04363a0dd52692913f2f026031db3902e2587c
ecc1d778ce5f521d22d696f4bd98c0f4523898ba
Raise error instead of warning when using meta device in from_pretrained (#40942) * raise instead of warning * add timm * remove
[ { "path": "src/transformers/modeling_utils.py", "patch": "@@ -4910,11 +4910,10 @@ def from_pretrained(\n if device_map is None and not is_deepspeed_zero3_enabled():\n device_in_context = get_torch_context_manager_or_global_device()\n if device_in_context == torch.device(\"met...
2025-09-17T16:23:37
vercel/next.js
2c9b484fc13e199d399f1537e0a45dda14a9ec7b
af694f6602634470df673acf516f25e4072fba38
Auto-restart dev server when next.config.js changes (#47912) This is a follow-up PR on https://github.com/vercel/next.js/pull/46577 after it got nasty conflicts. Basically, just restart `dev` when `next.config.ts` it will just restart instead of printing that message asking you to restart. fix NEXT-639
[ { "path": "packages/next/src/cli/next-dev.ts", "patch": "@@ -88,20 +88,22 @@ process.on('SIGTERM', handleSessionStop)\n \n let unwatchConfigFiles: () => void\n \n-function watchConfigFiles(dirToWatch: string) {\n+function watchConfigFiles(\n+ dirToWatch: string,\n+ onChange = (filename: string) =>\n+ L...
2023-04-05T18:17:54
electron/electron
df7a9b80b1b6012a1f457e9a28a5c0f6bcff9348
3afc9c4ebef721a64ac7bb26226d2e380b260458
Fix linking error
[ { "path": "atom/common/crash_reporter/crash_reporter.cc", "patch": "@@ -64,7 +64,6 @@ CrashReporter::GetUploadedReports(const std::string& path) {\n return result;\n }\n \n-#if defined(OS_MACOSX) && defined(MAS_BUILD)\n void CrashReporter::InitBreakpad(const std::string& product_name,\n ...
2015-09-28T08:45:53
nodejs/node
8d69fdde1955e0b08bdbe6949090f459995784a7
10c3db3da682b85e7b44b2671f227449713cd4d8
crypto: fix unencrypted DER PKCS8 parsing The previously used OpenSSL call only supports encrypted PKCS8, this commit adds support for unencrypted PKCS8. PR-URL: https://github.com/nodejs/node/pull/26236 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Sam ...
[ { "path": "src/node_crypto.cc", "patch": "@@ -2848,6 +2848,59 @@ static MaybeLocal<Value> WritePublicKey(Environment* env,\n return BIOToStringOrBuffer(env, bio.get(), config.format_);\n }\n \n+static bool IsASN1Sequence(const unsigned char* data, size_t size,\n+ size_t* data_off...
2019-02-21T08:28:16
huggingface/transformers
ecc1d778ce5f521d22d696f4bd98c0f4523898ba
c5553b41201fe4f83ba020c88740fbb1d073ab22
Fix `Glm4vMoeIntegrationTest` (#40930) * fix * fix * fix * fix * fix --------- Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": "tests/models/glm4v_moe/test_modeling_glm4v_moe.py", "patch": "@@ -14,7 +14,6 @@\n \"\"\"Testing suite for the PyTorch GLM-4.1V model.\"\"\"\n \n import copy\n-import gc\n import unittest\n \n from transformers import (\n@@ -25,9 +24,11 @@\n is_torch_available,\n )\n from transformers.testing_...
2025-09-17T16:21:18
golang/go
1011e26b9cec8b5e7b0b827805b2fe079904521a
80a7968842895a5c05efa6464ce49b62413436c1
net/http: deflake TestServerKeepAlivesEnabled_h{1,2} This test assumes that two successive TCP connections will use different source ports. This does not appear to be a universally safe assumption. Rewrite the test to use httptrace to detect connection reuse instead. Fixes #46707 Change-Id: Iebfbdfdeb77a1e6663a0c65...
[ { "path": "src/net/http/serve_test.go", "patch": "@@ -23,6 +23,7 @@ import (\n \t\"net\"\n \t. \"net/http\"\n \t\"net/http/httptest\"\n+\t\"net/http/httptrace\"\n \t\"net/http/httputil\"\n \t\"net/http/internal\"\n \t\"net/http/internal/testcert\"\n@@ -5689,22 +5690,37 @@ func testServerKeepAlivesEnabled(t ...
2021-11-02T18:52:36
electron/electron
3afc9c4ebef721a64ac7bb26226d2e380b260458
7b57a945f84c6585ff5dc4658e7da8be6ed9273b
spec: Disable crash reporter test for MAS build
[ { "path": "spec/api-crash-reporter-spec.coffee", "patch": "@@ -18,6 +18,9 @@ describe 'crash-reporter module', ->\n # It is not working on 64bit Windows.\n return if process.platform is 'win32' and process.arch is 'x64'\n \n+ # It is not working for mas build.\n+ return if process.mas\n+\n # The cra...
2015-09-28T07:08:27
huggingface/transformers
c5553b41201fe4f83ba020c88740fbb1d073ab22
14f01aee39b836775896a1588ef356ccf100bfbe
Fix trainer tests (#40823) * fix liger * fix * more * fix * fix hp * fix --------- Co-authored-by: Matej Sirovatka <54212263+S1ro1@users.noreply.github.com>
[ { "path": "setup.py", "patch": "@@ -308,7 +308,7 @@ def run(self):\n extras[\"sigopt\"] = deps_list(\"sigopt\")\n extras[\"hub-kernels\"] = deps_list(\"kernels\")\n \n-extras[\"integrations\"] = extras[\"hub-kernels\"] + extras[\"optuna\"] + extras[\"ray\"] + extras[\"sigopt\"]\n+extras[\"integrations\"] = ...
2025-09-17T16:05:17
vercel/next.js
af694f6602634470df673acf516f25e4072fba38
df9de3debb1681f1e99143c8c5ae092860ffa6d5
Fix app metadata in edge runtime (#47941) Seems edge runtime started failing for app paths from `path` being added in https://github.com/vercel/next.js/pull/47829 so this updates to use the isomorphic version instead and adds a regression test. Fixes NEXT-866
[ { "path": "packages/next/src/build/webpack/loaders/next-metadata-image-loader.ts", "patch": "@@ -51,7 +51,7 @@ async function nextMetadataImageLoader(this: any, content: Buffer) {\n if (isDynamicResource) {\n // re-export and spread as `exportedImageData` to avoid non-exported error\n return `\\\n...
2023-04-05T17:32:42
golang/go
80a7968842895a5c05efa6464ce49b62413436c1
c702f91b38f98c98a12b9933dce42dbd500e21fd
cmd/compile/internal/abi: fix some typos in comments Fix a few types in the header comment for 'ComputePadding'. Change-Id: If38911e6dcbec571845ae44eef30fd6c33f589cb Reviewed-on: https://go-review.googlesource.com/c/go/+/360814 Trust: Than McIntosh <thanm@google.com> Run-TryBot: Than McIntosh <thanm@google.com> TryBo...
[ { "path": "src/cmd/compile/internal/abi/abiutils.go", "patch": "@@ -780,11 +780,11 @@ func (state *assignState) assignParamOrReturn(pt *types.Type, n types.Object, is\n }\n \n // ComputePadding returns a list of \"post element\" padding values in\n-// the case where we have a structure being passed in regis...
2021-11-02T17:44:05
nodejs/node
10c3db3da682b85e7b44b2671f227449713cd4d8
8ebd339031cf9826629ad780dd35fee130e95985
crypto: fix error condition in Verify::VerifyFinal Fail early if key parsing failed, don't try to construct a context out of it. PR-URL: https://github.com/nodejs/node/pull/26238 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Ben Noordhuis <info@bnoordhuis.n...
[ { "path": "src/node_crypto.cc", "patch": "@@ -4675,6 +4675,8 @@ void Verify::VerifyFinal(const FunctionCallbackInfo<Value>& args) {\n \n unsigned int offset = 0;\n ManagedEVPPKey pkey = GetPublicOrPrivateKeyFromJs(args, &offset, true);\n+ if (!pkey)\n+ return;\n \n char* hbuf = Buffer::Data(args[o...
2019-02-21T11:46:49
electron/electron
a9f5667899b64ad1af5b571c5ad2ea4b68410fd3
644af0800c4024c7e533351ce89587e7260cfd36
mac: Disable crash reporter for MAS build
[ { "path": "atom.gyp", "patch": "@@ -285,12 +285,21 @@\n 'vendor/breakpad/breakpad.gyp:breakpad_sender',\n ],\n }], # OS==\"win\"\n- ['OS==\"mac\"', {\n+ ['OS==\"mac\" and mas_build==0', {\n 'dependencies': [\n 'vendor/crashpad/client/client....
2015-09-28T06:52:55
golang/go
79c5240799e02feeacfdde3472f22b4b0401f3c7
f7a95d2c17c2b2506034d519b68a267c944f6450
cmd/compile: mark type descriptors as always dupok The types of the two interfaces should be equal, but they aren't. We end up with multiple descriptors for a type when we need type descriptors to be unique. Fixes #49241 Change-Id: I8a6c70da541c6088a92a01392bc83b61cc130eba Reviewed-on: https://go-review.googlesource...
[ { "path": "src/cmd/compile/internal/reflectdata/reflect.go", "patch": "@@ -959,11 +959,6 @@ func writeType(t *types.Type) *obj.LSym {\n \t\tbase.Fatalf(\"unresolved defined type: %v\", tbase)\n \t}\n \n-\tdupok := 0\n-\tif tbase.Sym() == nil || tbase.HasShape() { // TODO(mdempsky): Probably need DUPOK for i...
2021-10-30T21:39:29
nodejs/node
8ebd339031cf9826629ad780dd35fee130e95985
455b927be0111a6aa8f1e30ae5b21659afeba40d
worker: improve integration with native addons Allow loading add-ons from multiple Node.js instances if they are declared context-aware; in particular, this applies to N-API addons. Also, plug a memory leak that occurred when registering N-API addons. Refs: https://github.com/nodejs/node/pull/23319 PR-URL: https://...
[ { "path": "doc/api/addons.md", "patch": "@@ -251,6 +251,11 @@ down. If necessary, such hooks can be removed using\n `RemoveEnvironmentCleanupHook()` before they are run, which has the same\n signature.\n \n+In order to be loaded from multiple Node.js environments,\n+such as a main thread and a Worker thread...
2019-02-17T22:45:14
huggingface/transformers
6cade29278c4aee3f174f8950f97a3873bdb212f
48a556517925108dc386c990b7c58de3f8ec25d3
Add LongCat-Flash (#40730) * working draft for LongCat * BC changes to deepseek_v3 for modular * format * various modularities * better tp plan * better init * minor changes * make modular better * clean up patterns * Revert a couple of modular commits, because we won't convert in the end * make things expli...
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -559,6 +559,8 @@\n title: Llama2\n - local: model_doc/llama3\n title: Llama3\n+ - local: model_doc/longcat_flash\n+ title: LongCatFlash\n - local: model_doc/longformer\n title: Longformer\n - local: m...
2025-09-17T12:48:10
huggingface/transformers
48a556517925108dc386c990b7c58de3f8ec25d3
89949c5d2d70f8b8a2bc6cd36677a920ba756103
Add support for Florence-2 training (#40914) * Support training florence2 * update doc and testing model to florence-community * fix florence-2 test, use head dim 16 instead of 8 for fa2 * skip test_sdpa_can_dispatch_on_flash * Apply style fixes --------- Co-authored-by: github-actions[bot] <github-actions[bot]@...
[ { "path": "docs/source/en/model_doc/florence2.md", "patch": "@@ -44,7 +44,7 @@ from transformers import pipeline\n \n pipeline = pipeline(\n \"image-text-to-text\",\n- model=\"ducviet00/Florence-2-base-hf\",\n+ model=\"florence-community/Florence-2-base\",\n device=0,\n dtype=torch.bfloat1...
2025-09-17T11:49:56
golang/go
f7a95d2c17c2b2506034d519b68a267c944f6450
629ffebd451613b32e6b9578ff4c807791197b38
debug/gosym: bulk allocate Syms name old time/op new time/op delta 115/NewLineTable-8 80.7ns ± 1% 81.7ns ± 3% ~ (p=0.408 n=10+8) 115/NewTable-8 76.3µs ± 2% 63.3µs ± 3% -17.03% (p=0.000 n=9+9) 115/LineToPC-8 56.8µs ± 2% 56.8µs ± 3% ~ (p=0.905 n=10+9) 115/...
[ { "path": "src/debug/gosym/pclntab.go", "patch": "@@ -297,20 +297,22 @@ func (t *LineTable) go12Funcs() []Func {\n \n \tft := t.funcTab()\n \tfuncs := make([]Func, ft.Count())\n+\tsyms := make([]Sym, len(funcs))\n \tfor i := range funcs {\n \t\tf := &funcs[i]\n \t\tf.Entry = ft.pc(i)\n \t\tf.End = ft.pc(i +...
2021-10-06T19:40:35
vercel/next.js
98fc00bae5b85dfe095bddb7cc147be6ef65be85
9a9c5ba93d634182abeaca21333cdd2605b4ccba
handle module evaluation errors in the runtime correctly (vercel/turbo#4476) ### Description Caches the module evaluation error ``` try { // when throwing on the first try require("module") } catch { // it should throw on the second try too require("module") } ```
[ { "path": "crates/turbopack-dev/js/src/runtime.js", "patch": "@@ -166,6 +166,7 @@ function interopEsm(raw, ns, allowExportDefault) {\n */\n function esmImport(sourceModule, id, allowExportDefault) {\n const module = getOrInstantiateModuleFromParent(id, sourceModule);\n+ if (module.error) throw module.er...
2023-04-05T17:17:17
nodejs/node
a1d05e49fee4881150c6f62bf19706f4ca75edf6
4804a18812b95bd63e7a04df9770640f7054ae57
timers: support name in validateTimerDuration() Allow passing a name to validateTimerDuration() so that error messages can reflect the name of the thing being validated. PR-URL: https://github.com/nodejs/node/pull/26215 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Ruben Bridgewater <ruben@bridgewater...
[ { "path": "lib/_http_client.js", "patch": "@@ -737,7 +737,7 @@ ClientRequest.prototype.setTimeout = function setTimeout(msecs, callback) {\n }\n \n listenSocketTimeout(this);\n- msecs = validateTimerDuration(msecs);\n+ msecs = validateTimerDuration(msecs, 'msecs');\n if (callback) this.once('timeout...
2019-02-20T15:47:40
electron/electron
b9d838975d0baf4f65ef93ca0efec1305e431ed7
460adfa1bce1582ad9066318cbd6141fc87a0c0c
Fixing "tile" -> "title" typo
[ { "path": "docs/tutorial/desktop-environment-integration.md", "patch": "@@ -223,7 +223,7 @@ window.setProgressBar(0.5);\n ## Represented File of Window (OS X)\n \n On OS X a window can set its represented file, so the file's icon can show in\n-the title bar and when users Command-Click or Control-Click on t...
2015-10-13T00:17:06
huggingface/transformers
89949c5d2d70f8b8a2bc6cd36677a920ba756103
c830fc12076057d289eb05be1641973217afb3ec
Minor fix for #40727 (#40929) * fix * fix --------- Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": "src/transformers/testing_utils.py", "patch": "@@ -3466,15 +3466,21 @@ def _get_test_info():\n if test_frame is not None:\n line_number = test_frame.lineno\n \n- # most inner (recent) to most outer () frames\n+ # The frame of `patched` being called (the one and the only one calli...
2025-09-17T09:42:13
vercel/next.js
3f75387bf1428947e2096b24ad55396b4dd9b670
a7837bd09046719e0f6fbc43a9c3da4c5e0ede69
Fallback to localhost for metadataBase when it's used and missing (#47910) [slack thread](https://vercel.slack.com/archives/C04G5LHAVAR/p1680106437791819?thread_ts=1680013412.588999&cid=C04G5LHAVAR) When `metadataBase` is missing and used for resolving og/tw image urls, we'll fallback to localhost for it to always sa...
[ { "path": "packages/next/src/lib/metadata/generate/alternate.tsx", "patch": "@@ -2,7 +2,6 @@ import type { ResolvedMetadata } from '../types/metadata-interface'\n \n import React from 'react'\n import { AlternateLinkDescriptor } from '../types/alternative-urls-types'\n-import { resolveStringUrl } from '../r...
2023-04-05T15:39:29
golang/go
629ffebd451613b32e6b9578ff4c807791197b38
4ec52e363e93baa859cbdec23f997a489cfeca11
cmd/go: disallow profile flags when using -fuzz Disallow the usage of coverprofile, blockprofile, cpuprofile, memprofile, mutexprofile, and trace when fuzzing, since these currently do not work as the user would expect. Fixes #48178 Change-Id: Ibe6dfaef9b28a91c60c26fcad38c33a2a959d869 Reviewed-on: https://go-review....
[ { "path": "src/cmd/go/internal/test/test.go", "patch": "@@ -666,6 +666,12 @@ func runTest(ctx context.Context, cmd *base.Command, args []string) {\n \t\tif len(pkgs) != 1 {\n \t\t\tbase.Fatalf(\"cannot use -fuzz flag with multiple packages\")\n \t\t}\n+\t\tif testCoverProfile != \"\" {\n+\t\t\tbase.Fatalf(\...
2021-11-01T17:28:52
nodejs/node
4804a18812b95bd63e7a04df9770640f7054ae57
3d4db3a7bf16a788e59ab76ca8c4a37069b59e80
build: tidy up comments in `create_expfile.sh` Fixes spelling, adds punctuation and rewords some sentences for readability in the comments of `tools/create_expfile.sh`. PR-URL: https://github.com/nodejs/node/pull/26220 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed...
[ { "path": "tools/create_expfile.sh", "patch": "@@ -1,44 +1,45 @@\n #!/bin/sh\n-# This script writes out all the exported symbols to a file\n-# AIX needs this as sybmols are not exported by an\n-# executable by default and we need to list\n-# them specifically in order to export them\n-# so that they can be ...
2019-02-20T15:34:05
huggingface/transformers
8428c7b9c8afa85caf2dbf27b5fff14f68d8f6a7
ddd4caf066bfbebf9f85e56090388595d4d1d9b9
Fix #40067: Add dedicated UMT5 support to GGUF loader (config, tokenizer, test) (#40218) * Fix #40067 : add UMT5 support in GGUF loader (config, tokenizer, test) * chore: fix code formatting and linting issues * refactor: move UMT5 GGUF test to quantization directory and clean up comments * chore: trigger CI pipeli...
[ { "path": "src/transformers/integrations/ggml.py", "patch": "@@ -250,6 +250,19 @@\n \"attention.sliding_window\": \"sliding_window\",\n \"vocab_size\": \"vocab_size\",\n },\n+ \"umt5\": {\n+ \"context_length\": \"n_positions\",\n+ \"block_count\": \"num_layers\",\n+ ...
2025-09-17T09:15:55
rust-lang/rust
f52c6eee02fb9a9cfe203ce95c4968c2835c034b
4aa62ea9e9015621969a0f505abf7a6894e99e9e
Another round of tidy / warning fixes
[ { "path": "Cargo.toml", "patch": "@@ -60,7 +60,7 @@ exclude = [\n \"obj\",\n ]\n \n-[profile.release.package.rustc-rayon-core]\n+[profile.release.package.rustc_thread_pool]\n # The rustc fork of Rayon has deadlock detection code which intermittently\n # causes overflows in the CI (see https://github.com/r...
2025-06-11T19:32:09
golang/go
7548327374844719bf90cce199e7fa4b43b94e2b
4e7dd9fc08fb5aa86773b65d865719d96f67f49d
comd/compile/internal/types2: add missing nil check in const conversion Follow-up on CL 360396. Fixes #49296. Change-Id: Ie08f86ae884da4cfd5db557cbf4f721a237dc39f Reviewed-on: https://go-review.googlesource.com/c/go/+/360796 Trust: Robert Griesemer <gri@golang.org> Reviewed-by: Robert Findley <rfindley@google.com>
[ { "path": "src/cmd/compile/internal/types2/conversions.go", "patch": "@@ -18,6 +18,8 @@ func (check *Checker) conversion(x *operand, T Type) {\n \n \tconstConvertibleTo := func(T Type, val *constant.Value) bool {\n \t\tswitch t := asBasic(T); {\n+\t\tcase t == nil:\n+\t\t\t// nothing to do\n \t\tcase repres...
2021-11-02T17:14:29
vercel/next.js
a7837bd09046719e0f6fbc43a9c3da4c5e0ede69
3be9430e24f8cc9b6acdab6321a40d7f76d30537
add a warning when using implicit metadata (#47928) ### What? add a warning until it's supported ### Why? to avoid unexpected behavior for the user when things are not working fixes WEB-840
[ { "path": "packages/next-swc/crates/next-core/src/app_source.rs", "patch": "@@ -19,6 +19,7 @@ use turbo_binding::{\n compile_time_info::CompileTimeInfoVc,\n context::{AssetContext, AssetContextVc},\n environment::{EnvironmentIntention, ServerAddrVc},\n+ issue::...
2023-04-05T15:09:28
nodejs/node
3d4db3a7bf16a788e59ab76ca8c4a37069b59e80
3d2e862e529256ebca691e3224406bb43a24b891
doc: fix metadata of DEP0114 PR-URL: https://github.com/nodejs/node/pull/26250 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Sam Roberts <vieuxtech@gmail.com>
[ { "path": "doc/api/deprecations.md", "patch": "@@ -2179,7 +2179,7 @@ release.\n <!-- YAML\n changes:\n - version: REPLACEME\n- pr-url: https://github.com/nodejs/node/pull/???\n+ pr-url: https://github.com/nodejs/node/pull/25338\n description: End-of-Life.\n - version: v11.0.0\n pr-url: htt...
2019-02-21T20:33:19
huggingface/transformers
ddd4caf066bfbebf9f85e56090388595d4d1d9b9
b82cd1c240138f8ad9f5b954d51803529956a253
[Llama4] Remove `image_sizes` arg and deprecate `vision_feature_layer` (#40832) * Remove unused arg * deprecate * revrt one change * get set go * version correction * fix * make style * comment
[ { "path": "src/transformers/models/llama4/configuration_llama4.py", "patch": "@@ -14,6 +14,7 @@\n # See the License for the specific language governing permissions and\n # limitations under the License.\n \n+import warnings\n \n from ...configuration_utils import PretrainedConfig, layer_type_validation\n fr...
2025-09-17T09:14:13
electron/electron
36bbf5d51fe249fd02ceef359eb9eeac5d730c62
801279245729a5e0713342e85d82c51bd96a52a6
fixed devtools instructions
[ { "path": "docs/tutorial/devtools-extension.md", "patch": "@@ -16,11 +16,13 @@ $ cd /some-directory\n $ git clone --recursive https://github.com/facebook/react-devtools.git\n ```\n \n+Follow the instructions in [`react-devtools/shells/chrome/Readme.md`](https://github.com/facebook/react-devtools/blob/master...
2015-10-11T13:18:27
golang/go
4e7dd9fc08fb5aa86773b65d865719d96f67f49d
62b29b035948c08041e4218d0b176d057c8a6f6f
bytes: test for page boundary crosses on sep of Index Improve TestIndexNearPageBoundary to verify needles ending on a page boundary don't cause a segfault. Change-Id: I2edb13db63a71dc9955e266f6b97026ee13bf76e Reviewed-on: https://go-review.googlesource.com/c/go/+/356889 Reviewed-by: Cherry Mui <cherryyz@google.com> T...
[ { "path": "src/bytes/boundary_test.go", "patch": "@@ -65,7 +65,11 @@ func TestIndexByteNearPageBoundary(t *testing.T) {\n \n func TestIndexNearPageBoundary(t *testing.T) {\n \tt.Parallel()\n-\tvar q [64]byte\n+\tq := dangerousSlice(t)\n+\tif len(q) > 64 {\n+\t\t// Only worry about when we're near the end of...
2021-10-19T16:17:53
nodejs/node
9334e45aa0ed815c2745bcc2bb606d91be64998d
eb9e6c015705847190147201c587e1e668358a78
build: remove mips support Upstream V8 is dropping support for mips/mipsel/mips64/mips64el. This commit removes the build flags from the configure script and some loose ends from the documentation. PR-URL: https://github.com/nodejs/node/pull/26192 Fixes: https://github.com/nodejs/node/issues/26179 Reviewed-By: Colin ...
[ { "path": "configure.py", "patch": "@@ -45,13 +45,10 @@\n \n valid_os = ('win', 'mac', 'solaris', 'freebsd', 'openbsd', 'linux',\n 'android', 'aix', 'cloudabi')\n-valid_arch = ('arm', 'arm64', 'ia32', 'mips', 'mipsel', 'mips64el', 'ppc',\n+valid_arch = ('arm', 'arm64', 'ia32', 'ppc',\n ...
2019-02-18T18:24:59
vercel/next.js
3be9430e24f8cc9b6acdab6321a40d7f76d30537
e643d52eb3bffbed7e106fc190b35ec54fd06c51
avoid duplicated error output (#47954) ### What? avoid including the error twice in the output ### Why? `.context()` already keeps the previous error, no need to include in the error message again
[ { "path": "packages/next-swc/crates/next-core/src/router_source.rs", "patch": "@@ -135,7 +135,7 @@ impl ContentSource for NextRouterContentSource {\n Ok(match &*res {\n RouterResult::Error(e) => {\n return Err(anyhow!(e.clone()).context(format!(\n- \"er...
2023-04-05T14:54:52
huggingface/transformers
cccef4be918f67c7661f265123b1c4fccaf6f19d
beb09cbd5a8bbf2b3436d40cb7f52abb67aa2c3c
Fix dtype in Paligemma (#40912) * fix dtypes * fix copies * delete unused attr
[ { "path": "src/transformers/models/colpali/modeling_colpali.py", "patch": "@@ -156,7 +156,8 @@ def forward(\n vlm_image_hidden_states = vlm_output.image_hidden_states if pixel_values is not None else None\n \n last_hidden_states = vlm_output[0] # (batch_size, sequence_length, hidden_size)\n...
2025-09-16T16:07:56
golang/go
62b29b035948c08041e4218d0b176d057c8a6f6f
af8aafd570bca4f78b434e7633bf33b6e186931c
go/types: generalize assignability to generic types This is a port of CL 357917 to go/types. Some error messages in assignability.go2 had to be adjusted. I left a TODO to investigate whether we should align error messages. Change-Id: Ia323ffe18bc08e82de62044f35b8b0f3edd7dc08 Reviewed-on: https://go-review.googlesourc...
[ { "path": "src/go/types/check_test.go", "patch": "@@ -359,6 +359,7 @@ func TestIssue47243_TypedRHS(t *testing.T) {\n }\n \n func TestCheck(t *testing.T) { DefPredeclaredTestFuncs(); testDirFiles(t, \"testdata/check\", false) }\n+func TestSpec(t *testing.T) { DefPredeclaredTestFuncs(); testDirFiles(...
2021-11-01T19:11:31
nodejs/node
eb9e6c015705847190147201c587e1e668358a78
d1011f6bbfadfa254925014896aa710f02403770
test: improve performance of test-crypto-timing-safe-equal-benchmarks Using `eval()` rather than `require()`'ing a fixture and deleting it from the cache results in a roughtly 10x improvement in running time. Fixes: https://github.com/nodejs/node/issues/25984 Refs: https://github.com/nodejs/node/issues/26229 PR-URL:...
[ { "path": "test/fixtures/crypto-timing-safe-equal-benchmark-func.js", "patch": "@@ -1,17 +0,0 @@\n-'use strict';\n-\n-const assert = require('assert');\n-module.exports = (compareFunc, firstBufFill, secondBufFill, bufSize) => {\n- const firstBuffer = Buffer.alloc(bufSize, firstBufFill);\n- const secondBuf...
2019-02-21T11:26:27
vercel/next.js
e643d52eb3bffbed7e106fc190b35ec54fd06c51
89b4605f1a73ccaad0555f95a468d052140ece2c
Run bench tests as part of CI (#47849) ### What? enables the benchmark tests from turbopack again ### Why? It tests common scenarios like HMR fixes WEB-792 --------- Co-authored-by: Alex Kirszenberg <alex.kirszenberg@vercel.com>
[ { "path": ".github/workflows/build_test_deploy.yml", "patch": "@@ -1245,6 +1245,47 @@ jobs:\n run: cd packages/next-swc && cargo nextest run -p next-dev-tests --release --no-fail-fast\n if: ${{needs.build.outputs.docsChange == 'nope'}}\n \n+ test-bench-native-integration:\n+ name: Bench ...
2023-04-05T14:54:08
huggingface/transformers
d4af0d9f031503f72b8aecc0f79b7dc202453bb4
3b3f6cd0c19bc1202502eb66f7e760ef7c39ea04
[generate] misc fixes (#40906) misc fixes
[ { "path": "src/transformers/generation/utils.py", "patch": "@@ -575,6 +575,9 @@ def prepare_inputs_for_generation(\n # 2. Generic cache-dependent input preparation\n if past_key_values is not None:\n model_inputs[\"past_key_values\"] = past_key_values\n+ # TODO (joao):...
2025-09-16T14:18:06
electron/electron
bd95be23f3a8f29208e757564fce880a0f2129f6
6ec184a2ce700489d1dbe3cb87c3c1e59b3f1039
fix docs-translations/zh-CN/api ipc-main-process.md '' -> bug
[ { "path": "docs-translations/zh-CN/api/ipc-main-process.md", "patch": "@@ -6,7 +6,7 @@\n \n 主进程也可以向渲染进程发送信息,具体可以看[WebContents.send](web-contents.md#webcontentssendchannel-args).\n \n-- 当发送消息的时候,事件名字为'channel'.\n+- 当发送消息的时候,事件名字为`channel`.\n - 回复一个同步消息的时候,你需要使用`event.returnValue`\n - 回复一个异步消息的时候,使用`event.sen...
2015-10-11T06:56:23
golang/go
c406380fa984d14a1f104fd2502d832565b45eb2
8c8baad927b2fd0bca589bacab658fe0f7eb5dac
go/types: better error messages for empty type sets This is a clean port of CL 358175 to go/types. Change-Id: If1b4e51d1579fd168e651d79d031335ff09ca128 Reviewed-on: https://go-review.googlesource.com/c/go/+/360474 Trust: Robert Findley <rfindley@google.com> Run-TryBot: Robert Findley <rfindley@google.com> Reviewed-by...
[ { "path": "src/go/types/instantiate.go", "patch": "@@ -134,8 +134,16 @@ func (check *Checker) verify(pos token.Pos, tparams []*TypeParam, targs []Type)\n // TODO(gri) This should be a method of interfaces or type sets.\n func (check *Checker) satisfies(pos token.Pos, targ Type, tpar *TypeParam, smap substMa...
2021-11-01T18:46:35
nodejs/node
6fb7baf935442a1ceddcd0a585892456438f95aa
dbfe14c8092ba914afc22d4ed8b0e1937c27ac25
buffer: harden validation of buffer allocation size This makes using `NaN` as the buffer size throw an error. Fixes: https://github.com/nodejs/node/issues/26151 PR-URL: https://github.com/nodejs/node/pull/26162 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: L...
[ { "path": "lib/buffer.js", "patch": "@@ -256,7 +256,7 @@ function assertSize(size) {\n \n if (typeof size !== 'number') {\n err = new ERR_INVALID_ARG_TYPE('size', 'number', size);\n- } else if (size < 0 || size > kMaxLength) {\n+ } else if (!(size >= 0 && size <= kMaxLength)) {\n err = new ERR_I...
2019-02-17T13:59:10
huggingface/transformers
3b3f6cd0c19bc1202502eb66f7e760ef7c39ea04
88ba0f107eb8c96b34bbe664f17f07ce0c8c57b5
[gemma3] `Gemma3ForConditionalGeneration` compatible with assisted generation (#40791) * gemma3vision compatible with assisted generation * docstring * BC * docstring * failing checks * make fixup * apply changes to modular * misc fixes * is_initialized * fix poor rebase
[ { "path": "src/transformers/cache_utils.py", "patch": "@@ -31,6 +31,7 @@ class CacheLayerMixin(ABC):\n def __init__(self):\n self.keys: Optional[torch.Tensor] = None\n self.values: Optional[torch.Tensor] = None\n+ self.is_initialized = False\n \n def __repr__(self):\n ...
2025-09-16T14:08:48
golang/go
f2ff1c6074b1591c231f8f6b3394f9700cac7fad
c6a0b6f2de9a778b03a29c656531617a606761f0
cmd/compile: fix rewriting slice literal call argument When seeing Key:Value expression in slice literal, the compiler only needs to emit tmp var for the Value, not the whole expression. Fixes #49240 Change-Id: I7bda3c796a93c0fa1974f7c5930f38025dfa665c Reviewed-on: https://go-review.googlesource.com/c/go/+/360055 Tr...
[ { "path": "src/cmd/compile/internal/escape/call.go", "patch": "@@ -337,7 +337,11 @@ func (e *escape) rewriteArgument(argp *ir.Node, init *ir.Nodes, call ir.Node, fn\n \tif arg := *argp; arg.Op() == ir.OSLICELIT {\n \t\tlist := arg.(*ir.CompLitExpr).List\n \t\tfor i := range list {\n-\t\t\tvisit(arg.Pos(), &...
2021-10-30T17:20:13
nodejs/node
042e2640e68832554733377245a3d6d4f76a7002
f17f4675440270d03b138d8ce55c1345230f6d2a
crypto: make ConvertKey clear openssl error stack Failed ConvertKey() operations should not leave errors on OpenSSL's error stack because that's observable by subsequent cryptographic operations. More to the point, it makes said operations fail with an unrelated error. PR-URL: https://github.com/nodejs/node/pull/2615...
[ { "path": "src/node_crypto.cc", "patch": "@@ -6122,6 +6122,7 @@ void ExportChallenge(const FunctionCallbackInfo<Value>& args) {\n \n // Convert the input public key to compressed, uncompressed, or hybrid formats.\n void ConvertKey(const FunctionCallbackInfo<Value>& args) {\n+ MarkPopErrorOnReturn mark_pop_...
2019-02-16T19:26:26
huggingface/transformers
88ba0f107eb8c96b34bbe664f17f07ce0c8c57b5
270da897081e47579345ef85e036aa650dd7831e
disable `test_fast_is_faster_than_slow` (#40909) fix Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": "tests/models/depth_pro/test_image_processing_depth_pro.py", "patch": "@@ -15,7 +15,7 @@\n \n import unittest\n \n-from transformers.testing_utils import is_flaky, require_torch, require_vision\n+from transformers.testing_utils import require_torch, require_vision\n from transformers.utils import ...
2025-09-16T13:34:04
electron/electron
c71efc8ca54b1f7f4de799eca8c0e49bb558c2e7
1896deb10eda67d8e8cb5188fe0f747fa16fdfeb
Fix `process.std*.write` - Support printing Buffer - Don't add '\n' at the end the chunk
[ { "path": "atom/browser/lib/init.coffee", "patch": "@@ -21,10 +21,15 @@ globalPaths.push path.resolve(__dirname, '..', 'api', 'lib')\n if process.platform is 'win32'\n # Redirect node's console to use our own implementations, since node can not\n # handle console output when running as GUI program.\n- ...
2015-10-10T05:13:27
golang/go
c6a0b6f2de9a778b03a29c656531617a606761f0
f801da7855d3a82cc415279262e6b1ca7df39e5f
Revert "runtime: fix missing pprof labels" This reverts CL 351751. Reason for revert: new test is failing on many builders. Change-Id: I066211c9f25607ca9eb5299aedea2ecc5069e34f Reviewed-on: https://go-review.googlesource.com/c/go/+/360757 Trust: Bryan C. Mills <bcmills@google.com> Run-TryBot: Bryan C. Mills <bcmills...
[ { "path": "src/runtime/cpuprof.go", "patch": "@@ -89,7 +89,7 @@ func SetCPUProfileRate(hz int) {\n // held at the time of the signal, nor can it use substantial amounts\n // of stack.\n //go:nowritebarrierrec\n-func (p *cpuProfile) add(tagPtr *unsafe.Pointer, stk []uintptr) {\n+func (p *cpuProfile) add(gp *...
2021-11-02T15:38:47
huggingface/transformers
270da897081e47579345ef85e036aa650dd7831e
df03fc1f9cac4ff8ec7f57a599b274768180f765
Remove `runner_map` (#40880) * fix * fix --------- Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": ".github/workflows/model_jobs.yml", "patch": "@@ -12,9 +12,6 @@ on:\n slice_id:\n required: true\n type: number\n- runner_map:\n- required: false\n- type: string\n docker:\n required: true\n type: string\n@@ -54,10 +51,12 @@ jobs:\n ...
2025-09-16T13:18:07
nodejs/node
f17f4675440270d03b138d8ce55c1345230f6d2a
85df2c4703242679e409f648de95843f4a1f69a7
build,test: guard eslint with crypto check Currently, configuring --without-ssl will cause the lint-js target to fail with the following error: $ make lint-js Running JS linter... internal/util.js:101 throw new ERR_NO_CRYPTO(); ^ Error [ERR_NO_CRYPTO]: Node.js is not compiled with OpenSSL crypto support at as...
[ { "path": "Makefile", "patch": "@@ -1184,8 +1184,12 @@ lint-js-fix:\n # Note that on the CI `lint-js-ci` is run instead.\n # Lints the JavaScript code with eslint.\n lint-js:\n-\t@echo \"Running JS linter...\"\n-\t@$(call available-node,$(run-lint-js))\n+\t@if [ \"$(shell $(node_use_openssl))\" != \"true\" ...
2019-02-18T12:20:58
rust-lang/rust
0b9b1df0064396708a5e5ca27fd010ae3ad3a305
35c5144394c1b93784867d330f694fa7c8f480e3
Fix format and tidy for code moved from rayon
[ { "path": "compiler/rustc_thread_pool/src/broadcast/mod.rs", "patch": "@@ -1,10 +1,11 @@\n-use crate::job::{ArcJob, StackJob};\n-use crate::latch::{CountLatch, LatchRef};\n-use crate::registry::{Registry, WorkerThread};\n use std::fmt;\n use std::marker::PhantomData;\n use std::sync::Arc;\n \n+use crate::jo...
2025-06-11T18:12:32
vercel/next.js
89b4605f1a73ccaad0555f95a468d052140ece2c
d32ee25bfbe92719778a37529d1c3cb5df767e39
Vendor `react@experimental` under an `experimentalReact` flag (#47759) Next.js includes various feature sets that depend on specific release channels of React. However, our current setup only includes the `next` channel of React, which restricts our ability to integrate with features available on the `experimental` ch...
[ { "path": "package.json", "patch": "@@ -197,11 +197,13 @@\n \"random-seed\": \"0.3.0\",\n \"react\": \"18.2.0\",\n \"react-17\": \"npm:react@17.0.2\",\n- \"react-builtin\": \"npm:react@18.3.0-next-85de6fde5-20230328\",\n+ \"react-builtin\": \"npm:react@18.3.0-next-b14f8da15-20230403\",\n+ ...
2023-04-05T14:05:47