repo
stringclasses
15 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
64.3k
files
listlengths
1
300
timestamp
timestamp[s]date
2013-03-13 20:45:00
2026-04-11 07:48:46
nodejs/node
01a160a05de56b8d8037250d28ce1ba4304a036c
c8aa83c6ddfaa794b390858c8eaf65e18571595d
src: fix integer overflow in GetNow PR-URL: https://github.com/nodejs/node/pull/22214 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Bradley Farias <bradley.meck@gmail.com> Reviewed-By: Matheus Marchini <matheus@sthima.com> Reviewed-By: Tiancheng "Timothy" Gu...
[ { "path": "src/env.cc", "patch": "@@ -617,7 +617,7 @@ Local<Value> Environment::GetNow() {\n CHECK_GE(now, timer_base());\n now -= timer_base();\n if (now <= 0xffffffff)\n- return Integer::New(isolate(), static_cast<uint32_t>(now));\n+ return Integer::NewFromUnsigned(isolate(), static_cast<uint3...
2018-08-09T14:47:54
vercel/next.js
16745ac09e5b239aaea1b4d78f739ade785c6226
13a02d3728ccb50ce96a3b741f3c969ee969dfee
handle dependencies reported by postcss (vercel/turbo#3091) pass the dependencies reported by postcss to turbo-tasks-fs. We don't have a good mechanism to track dependencies back-timed, so we start watching some as soon we know about the dependencies (after postcss compilation) tailwind reports dependencies as d...
[ { "path": "packages/next-swc/crates/next-core/src/next_config.rs", "patch": "@@ -253,6 +253,7 @@ pub async fn load_next_config(execution_context: ExecutionContextVc) -> Result<N\n project_root,\n load_next_config_asset,\n project_root,\n+ config_asset.map_or(project_root, |c| ...
2022-12-20T17:26:39
huggingface/transformers
eb4afdd1fbacd632692be1b4809371959d38bff0
555693fbfaedae26231f282a796e77629ed1ca76
[i18n-KO] Translated `keypoint_detection.md` to Korean (#36649) * fix: manual edits * fix: manual edits * fix: manual edits * Update docs/source/ko/tasks/keypoint_detection.md Anchor lower modify Co-authored-by: Woojun Jung <46880056+jungnerd@users.noreply.github.com> * Update docs/source/ko/tasks/keypoint_det...
[ { "path": "docs/source/ko/_toctree.yml", "patch": "@@ -77,6 +77,8 @@\n title: 이미지 특징 추출\n - local: tasks/mask_generation\n title: 마스크 생성\n+ - local: tasks/keypoint_detection\n+ title: 키포인트 탐지\n - local: tasks/knowledge_distillation_for_image_classification\n t...
2025-04-25T19:24:12
golang/go
5b1120fac7e234af44c09ec0db1982aa2c7b7357
8d2b4cb6cc3100f337e08cc7342f42823fa1dc9a
[dev.typeparams] cmd/compile: fix handling of Nname field in (*subster).tstruct. We want to keep the Nname references for external function references in tstruct (not remove them, as is currently happening). We only change the Nname reference (translate it) when it appears in subst.vars[]. New export/import test slic...
[ { "path": "src/cmd/compile/internal/noder/stencil.go", "patch": "@@ -565,10 +565,10 @@ func (subst *subster) list(l []ir.Node) []ir.Node {\n }\n \n // tstruct substitutes type params in types of the fields of a structure type. For\n-// each field, if Nname is set, tstruct also translates the Nname using\n-/...
2021-05-11T21:14:30
electron/electron
9c9e0d92f4578e132adaecefe81a7431b8f08648
66aea0c3e84a597cdc0a3fc32ce6d9032eb3f3ff
Fix cpplint warnings.
[ { "path": "atom/browser/ui/views/menu_delegate.h", "patch": "@@ -24,7 +24,7 @@ class MenuBar;\n \n class MenuDelegate : public views::MenuDelegate {\n public:\n- MenuDelegate(MenuBar* menu_bar);\n+ explicit MenuDelegate(MenuBar* menu_bar);\n virtual ~MenuDelegate();\n \n void RunMenu(ui::MenuModel* m...
2014-07-18T01:17:17
huggingface/transformers
555693fbfaedae26231f282a796e77629ed1ca76
0cfbf9c95b91819ce924533d68f409334f2a1db2
fix mpt test of different outputs from cuda (#37691) * fix mpt test Signed-off-by: jiqing-feng <jiqing.feng@intel.com> * fix mpt tests with Expectations Signed-off-by: jiqing-feng <jiqing.feng@intel.com> * fix typo Signed-off-by: jiqing-feng <jiqing.feng@intel.com> * fix output Signed-off-by: jiqing-feng <jiqin...
[ { "path": "tests/models/mpt/test_modeling_mpt.py", "patch": "@@ -20,6 +20,7 @@\n from transformers.testing_utils import (\n Expectations,\n require_bitsandbytes,\n+ require_deterministic_for_xpu,\n require_torch,\n require_torch_accelerator,\n slow,\n@@ -483,6 +484,7 @@ def test_gener...
2025-04-25T16:04:56
vercel/next.js
fb1868d283ffbc2ac320a6699f94ffb6bb5372c1
c1006f9842eb8f2153d76eccd606f60a45a8caf5
handle dependencies reported by postcss (vercel/turbo#3091) pass the dependencies reported by postcss to turbo-tasks-fs. We don't have a good mechanism to track dependencies back-timed, so we start watching some as soon we know about the dependencies (after postcss compilation) tailwind reports dependencies as d...
[ { "path": "crates/next-core/src/next_config.rs", "patch": "@@ -253,6 +253,7 @@ pub async fn load_next_config(execution_context: ExecutionContextVc) -> Result<N\n project_root,\n load_next_config_asset,\n project_root,\n+ config_asset.map_or(project_root, |c| c.path()),\n ...
2022-12-20T17:26:39
nodejs/node
c8aa83c6ddfaa794b390858c8eaf65e18571595d
ec8f31dacead7cabf334132f289961caea7033ec
http2: remove `streamError` from docs `streamError` was removed quite some time ago but the docs and code comments weren't updated. Fix that. Fixes: https://github.com/nodejs/node/issues/20211 PR-URL: https://github.com/nodejs/node/pull/22246 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Jon Moss <me@...
[ { "path": "doc/api/http2.md", "patch": "@@ -1510,10 +1510,6 @@ added: v8.4.0\n \n * Extends: {net.Server}\n \n-In `Http2Server`, there are no `'clientError'` events as there are in\n-HTTP1. However, there are `'sessionError'`, and `'streamError'` events for\n-errors emitted on the socket, or from `Http2Sess...
2018-08-10T18:16:45
electron/electron
66aea0c3e84a597cdc0a3fc32ce6d9032eb3f3ff
a1c2adda3d896dff6a6d5c529df271495b20b856
Fix releasing script contexts.
[ { "path": "atom/renderer/atom_renderer_client.cc", "patch": "@@ -11,6 +11,8 @@\n #include \"atom/common/options_switches.h\"\n #include \"atom/renderer/api/atom_renderer_bindings.h\"\n #include \"atom/renderer/atom_render_view_observer.h\"\n+#include \"content/public/renderer/render_frame.h\"\n+#include \"c...
2014-07-18T01:04:41
golang/go
8d2b4cb6cc3100f337e08cc7342f42823fa1dc9a
626e89c261297d13ef892bb569640cd72c35b98a
[dev.typeparams] cmd/compile: fixing import of comm clauses/closures in generic functions Improvements: - Fix export/import of the default case of a select statement (was not dealing with nil Comm case) - Set properly the name of closure functions in imported generic functions Added new test exporting/importi...
[ { "path": "src/cmd/compile/internal/typecheck/iexport.go", "patch": "@@ -1523,7 +1523,12 @@ func (w *exportWriter) commList(cases []*ir.CommClause) {\n \tw.uint64(uint64(len(cases)))\n \tfor _, cas := range cases {\n \t\tw.pos(cas.Pos())\n-\t\tw.node(cas.Comm)\n+\t\tdefaultCase := cas.Comm == nil\n+\t\tw.bo...
2021-05-10T23:23:35
huggingface/transformers
0cfbf9c95b91819ce924533d68f409334f2a1db2
eefc86aa316a361bbb232eb6b547ce86e185695a
Force torch>=2.6 with torch.load to avoid vulnerability issue (#37785) * fix all main files * fix test files * oups forgot modular * add link * update message
[ { "path": "src/transformers/data/datasets/glue.py", "patch": "@@ -24,7 +24,7 @@\n from torch.utils.data import Dataset\n \n from ...tokenization_utils_base import PreTrainedTokenizerBase\n-from ...utils import logging\n+from ...utils import check_torch_load_is_safe, logging\n from ..processors.glue import g...
2025-04-25T14:57:09
vercel/next.js
c1006f9842eb8f2153d76eccd606f60a45a8caf5
3e615654a94c3de32965efbb46a2e8630b8fac6a
fix build warning (vercel/turbo#3095)
[ { "path": "crates/turbopack-core/src/resolve/options.rs", "patch": "@@ -6,10 +6,7 @@ use turbo_tasks::{\n debug::ValueDebugFormat, primitives::StringVc, trace::TraceRawVcs, TryJoinIterExt, Value,\n ValueToString, ValueToStringVc,\n };\n-use turbo_tasks_fs::{\n- glob::{Glob, GlobVc},\n- FileSys...
2022-12-20T16:28:42
nodejs/node
ec8f31dacead7cabf334132f289961caea7033ec
30b5b8485bdeddccf71ef5078b1cc181f697308b
build: add CONFIG_FLAGS to with-code-cache target This commit adds CONFIG_FLAGS to allow the with-code-cache target to be used with a debug build. The motivation for this is to make it easier to debug a build with the code cache enabled. The suggested usage: $ make BUILDTYPE=Debug with-code-cache The BUILDTYPE optio...
[ { "path": "Makefile", "patch": "@@ -94,13 +94,17 @@ $(NODE_G_EXE): config.gypi out/Makefile\n CODE_CACHE_DIR ?= out/$(BUILDTYPE)/obj/gen\n CODE_CACHE_FILE ?= $(CODE_CACHE_DIR)/node_code_cache.cc\n \n+ifeq ($(BUILDTYPE),Debug)\n+CONFIG_FLAGS += --debug\n+endif\n .PHONY: with-code-cache\n with-code-cache:\n-\...
2018-08-09T10:22:07
electron/electron
a1c2adda3d896dff6a6d5c529df271495b20b856
0f18d63f7fd1acfe2d5e7f1564966d73f92b0a00
Fix shipping icudtl.dat in dist.
[ { "path": "script/create-dist.py", "patch": "@@ -37,7 +37,7 @@\n 'chromiumcontent.dll',\n 'content_shell.pak',\n 'ffmpegsumo.dll',\n- 'icudt.dll',\n+ 'icudtl.dat',\n 'libEGL.dll',\n 'libGLESv2.dll',\n 'd3dcompiler_43.dll',\n@@ -48,6 +48,7 @@\n 'linux': [\n 'atom',\n '...
2014-07-18T00:42:39
rust-lang/rust
00f25a8e1cf7d749946a6a9fb7327bf4710c931f
427288b3ce2d574847fdb41cc3184c893750e09a
interpret: better error message for out-of-bounds pointer arithmetic and accesses
[ { "path": "compiler/rustc_const_eval/messages.ftl", "patch": "@@ -12,6 +12,27 @@ const_eval_already_reported =\n const_eval_assume_false =\n `assume` called with `false`\n \n+const_eval_bad_pointer_op = {$operation ->\n+ [MemoryAccess] memory access failed\n+ [InboundsPointerArithmetic] in-bounds poin...
2025-04-30T14:52:25
golang/go
217f5dd496e14f0e0617c9efe0509073dec95d61
3c656445f139d8b6def40aa7beffd5da9fceccdb
doc: document additional atomic.Value methods For #44513. Fixes #46022. Change-Id: Id1d87fbd4034461953760ce77201f87ed723ff88 Reviewed-on: https://go-review.googlesource.com/c/go/+/319549 Trust: Keith Randall <khr@golang.org> Reviewed-by: Ian Lance Taylor <iant@golang.org>
[ { "path": "doc/go1.17.html", "patch": "@@ -507,7 +507,9 @@ <h3 id=\"minor_library_changes\">Minor changes to the library</h3>\n <dl id=\"sync/atomic\"><dt><a href=\"/pkg/sync/atomic/\">sync/atomic</a></dt>\n <dd>\n <p><!-- CL 241678 -->\n- TODO: <a href=\"https://golang.org/cl/241678\">https://go...
2021-05-12T20:55:59
huggingface/transformers
eefc86aa316a361bbb232eb6b547ce86e185695a
214062201e85276720d86a858e6f3b745e64c6ec
Fix tensor parallel with non-floating dtypes (#37790) fix
[ { "path": "src/transformers/integrations/tensor_parallel.py", "patch": "@@ -307,8 +307,7 @@ def partition_tensor(self, param, empty_param, param_type, param_casting_dtype,\n parameter = parameter.contiguous()\n if self.use_dtensor:\n parameter = DTensor.from_local(parameter, ...
2025-04-25T13:48:16
nodejs/node
a5b3c15b77d1bf4b12e1e277c7814a12c2101c61
58cf40987f6e08038c74c053da85b62956fe4469
doc: list encodings supported by buffer.transcode Fixes: https://github.com/nodejs/node/issues/15632 PR-URL: https://github.com/nodejs/node/pull/22263 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com> Reviewed-By: Luigi...
[ { "path": "doc/api/buffer.md", "patch": "@@ -2508,6 +2508,9 @@ encoding to another. Returns a new `Buffer` instance.\n Throws if the `fromEnc` or `toEnc` specify invalid character encodings or if\n conversion from `fromEnc` to `toEnc` is not permitted.\n \n+Encodings supported by `buffer.transcode()` are: `...
2018-08-11T05:04:47
vercel/next.js
cafb886ed6d55519c95a69eb9e71e0856a38e076
2b3a38ee472e6d0854c35cc46f12f8bad769d654
Move options to stable (#44195) This PR moves `allowMiddlewareResponseBody`, `skipMiddlewareUrlNormalize` and `skipTrailingSlashRedirect` to stable. ## Bug - [ ] Related issues linked using `fixes #number` - [ ] Integration tests added - [ ] Errors have a helpful link attached, see [`contributing.md`](https://github...
[ { "path": "packages/next/build/index.ts", "patch": "@@ -797,8 +797,7 @@ export default async function build(\n header: RSC,\n varyHeader: RSC_VARY_HEADER,\n },\n- skipMiddlewareUrlNormalize:\n- config.experimental.skipMiddlewareUrlNormalize,\n+ ...
2022-12-20T16:17:40
electron/electron
00467b53c77742376e21b30a28fc50172e9edf47
adec7185039c97849470a5efd0abb6b066028016
linux: Fix modal message box.
[ { "path": "atom/browser/ui/message_box_views.cc", "patch": "@@ -166,7 +166,7 @@ MessageDialog::MessageDialog(NativeWindow* parent_window,\n \n #if defined(USE_X11)\n // In X11 the window frame is drawn by the application.\n- widget_params.remove_standard_frame = true;\n+ params.remove_standard_frame = t...
2014-07-14T08:34:22
golang/go
6a81e063dd0bf28d21b7085cc1d9e76eaeb78460
7d928460a183f4efeed97638aa29f5f1fe74e397
[dev.typeparams] runtime: fix misuse of funcPC funcPC expects a func value. There are places where we pass an unsafe.Pointer, which is technically undefined. In proc.go it is actually representing a func value, so the expression does the right thing. Cast to a func value so it is clearer. In os_freebsd.go it is a ra...
[ { "path": "src/runtime/os_freebsd.go", "patch": "@@ -237,7 +237,7 @@ func newosproc0(stacksize uintptr, fn unsafe.Pointer) {\n \t// However, newosproc0 is currently unreachable because builds\n \t// utilizing c-shared/c-archive force external linking.\n \tparam := thrparam{\n-\t\tstart_func: funcPC(fn),\n+\...
2021-05-21T01:40:32
nodejs/node
58cf40987f6e08038c74c053da85b62956fe4469
bdef1b1eb45e2953e1ff68f0cc9a68ec83573e57
doc: discuss special protocol handling Fixes: https://github.com/nodejs/node/issues/13523 PR-URL: https://github.com/nodejs/node/pull/22261 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com> Reviewed-By: Luigi Pinca <lui...
[ { "path": "doc/api/url.md", "patch": "@@ -389,6 +389,46 @@ console.log(myURL.href);\n \n Invalid URL protocol values assigned to the `protocol` property are ignored.\n \n+##### Special Schemes\n+\n+The [WHATWG URL Standard][] considers a handful of URL protocol schemes to be\n+_special_ in terms of how they...
2018-08-11T04:37:53
electron/electron
adec7185039c97849470a5efd0abb6b066028016
7c8a0ae2a34c175c6a845f396f76527311b35cab
win: Fix showing menu on High DPI display.
[ { "path": "atom/browser/api/atom_api_menu_views.cc", "patch": "@@ -8,6 +8,10 @@\n #include \"ui/gfx/screen.h\"\n #include \"ui/views/controls/menu/menu_runner.h\"\n \n+#if defined(OS_WIN)\n+#include \"ui/gfx/win/dpi.h\"\n+#endif\n+\n namespace atom {\n \n namespace api {\n@@ -17,6 +21,9 @@ MenuViews::MenuVi...
2014-07-13T14:15:03
vercel/next.js
2b3a38ee472e6d0854c35cc46f12f8bad769d654
2f0b5a282e552fdeabb33cbf1fa63802b5911884
docs: fix spelling error (#44191) ## Documentation / Examples - [x] Make sure the linting passes by running `pnpm build && pnpm lint` - [x] The "examples guidelines" are followed from [our contributing doc](https://github.com/vercel/next.js/blob/canary/contributing/examples/adding-examples.md)
[ { "path": "errors/no-img-element.md", "patch": "@@ -29,7 +29,7 @@ function Home() {\n export default Home\n ```\n \n-If you would like to use `next/image` featrues such as blur-up placeholders but disable Image Optimization, you can do so using [unoptimized](https://nextjs.org/docs/api-reference/next/image#...
2022-12-20T14:51:14
golang/go
21db1d193cc3d830e1a7d53a04271631ce1198cd
b1a398cf0f04ac911be204d3c0ee001a94621683
[dev.typeparams] runtime: fix newproc arg size on ARM At runtime startup it calls newproc from assembly code to start the main goroutine. runtime.main has no arguments, so the arg size should be 0, instead of 8. While here, use clearer code sequence to open the frame. Change-Id: I2bbb26a83521ea867897530b86a85b22a3c8...
[ { "path": "src/runtime/asm_arm.s", "patch": "@@ -168,14 +168,14 @@ TEXT runtime·rt0_go(SB),NOSPLIT|NOFRAME|TOPFRAME,$0\n \tBL\truntime·schedinit(SB)\n \n \t// create a new goroutine to start program\n+\tSUB\t$12, R13\n \tMOVW\t$runtime·mainPC(SB), R0\n-\tMOVW.W\tR0, -4(R13)\n-\tMOVW\t$8, R0\n-\tMOVW.W\tR0, ...
2021-05-21T21:00:08
huggingface/transformers
214062201e85276720d86a858e6f3b745e64c6ec
ba3bd372537d993b24406eac7a6949938a486621
Fix typos in strings and comments (#37784) * Fix typos in strings and comments * Fix
[ { "path": "src/transformers/generation/streamers.py", "patch": "@@ -162,7 +162,7 @@ def _is_chinese_char(self, cp):\n class TextIteratorStreamer(TextStreamer):\n \"\"\"\n Streamer that stores print-ready text in a queue, to be used by a downstream application as an iterator. This is\n- useful for...
2025-04-25T12:47:25
nodejs/node
2e37d0fdc0ad4a23034b7a2793c766bbcc416de2
3ce6bc3b5082478dfe6832997640c93de97705be
test: handle errors correctly in GC http test In test-gc-http-client-timeout.js, res.resume is not a function if error occurs. Remove the error handler. PR-URL: https://github.com/nodejs/node/pull/22185 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
[ { "path": "test/parallel/test-gc-http-client-timeout.js", "patch": "@@ -39,7 +39,7 @@ function getall() {\n pathname: '/',\n port: server.address().port\n }, cb);\n- req.on('error', cb);\n+\n req.setTimeout(10, function() {\n console.log('timeout (expected)');\n });", "a...
2018-08-08T02:51:16
electron/electron
46e765f79b208d2d5fbf561ba8abbb28d8de9802
9d4e977c014840d9f2ba33803ddc0f2921e0066b
Fix crash when closing docked devtools by clicking close button. We need to send ack for the close message, so we should destroy web contents after the beforeunload event has fired.
[ { "path": "brightray/browser/inspectable_web_contents_impl.cc", "patch": "@@ -176,7 +176,7 @@ void InspectableWebContentsImpl::ActivateWindow() {\n }\n \n void InspectableWebContentsImpl::CloseWindow() {\n- CloseDevTools();\n+ devtools_web_contents()->GetMainFrame()->DispatchBeforeUnload(false);\n }\n \n ...
2014-07-13T02:08:28
vercel/next.js
2f0b5a282e552fdeabb33cbf1fa63802b5911884
39f30fbdb471ba4a0c2109b827fe71b211e64993
Also check error.message as digest for recoverable errors in pages (#44185) Follow up for #44161 According to https://github.com/facebook/react/pull/25313, the `errorInfo.digest` will be moved to `error.digest`, but for now we use it as a fallback for pages. we can remove it later once the migration is done in requir...
[ { "path": "packages/next/client/on-recoverable-error.ts", "patch": "@@ -1,6 +1,8 @@\n import { NEXT_DYNAMIC_NO_SSR_CODE } from '../shared/lib/no-ssr-error'\n \n-export default function onRecoverableError(err: any) {\n+export default function onRecoverableError(err: any, errorInfo: any) {\n+ const digest = ...
2022-12-20T14:44:30
golang/go
76b2d6afed1e22556bd6c52e74b546eb8bf9a225
e4d7525c3e119de30490550fe2516fd6958eac30
os: document that StartProcess puts files into blocking mode Fixes #43894 Change-Id: I2add7b8a4f6ae69a5ef1c48703fde21a4b74307c Reviewed-on: https://go-review.googlesource.com/c/go/+/321852 Trust: Ian Lance Taylor <iant@golang.org> Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Go Bot <gobot@golang.org>...
[ { "path": "src/os/exec.go", "patch": "@@ -54,6 +54,9 @@ type ProcAttr struct {\n \t// standard error. An implementation may support additional entries,\n \t// depending on the underlying operating system. A nil entry corresponds\n \t// to that file being closed when the process starts.\n+\t// On Unix system...
2021-05-21T19:50:52
electron/electron
7c8a0ae2a34c175c6a845f396f76527311b35cab
add45b564ee2763fc26ae03e1d975d4a7bb02069
win: Fix black ground when closing message box.
[ { "path": "atom/browser/ui/message_box_views.cc", "patch": "@@ -30,6 +30,8 @@ namespace {\n // conflict with other groups that could be in the dialog content.\n const int kButtonGroup = 1127;\n \n+class MessageDialogClientView;\n+\n class MessageDialog : public views::WidgetDelegate,\n ...
2014-07-13T01:50:16
huggingface/transformers
79d4bc761d9da7a125b65a3b8c09441608d05436
7bb619d710ea3bcddeedb2e7999dff4e124aee85
[causal mask] fix preparation with multi-gpu (#37612) * fix multi-gpu * forgot non-copied models * fixup
[ { "path": "src/transformers/generation/utils.py", "patch": "@@ -557,10 +557,8 @@ def prepare_inputs_for_generation(\n if isinstance(past_key_values, StaticCache) and attention_mask.ndim == 2:\n if model_inputs[\"inputs_embeds\"] is not None:\n batch_size, sequence_length,...
2025-04-25T07:34:18
vercel/next.js
9203386f91a1291046867ca053488c6ca53fb019
5a35be1e0f739d080aa354efe5d70084b5ecc80e
Enable ReactRefreshLogBox scss test (#44180) ## Bug - [ ] Related issues linked using `fixes #number` - [ ] Integration tests added - [ ] Errors have a helpful link attached, see [`contributing.md`](https://github.com/vercel/next.js/blob/canary/contributing.md) ## Feature - [ ] Implements an existing feature requ...
[ { "path": "test/development/acceptance-app/ReactRefreshLogBox-scss.test.ts", "patch": "@@ -4,9 +4,7 @@ import { createNext, FileRef } from 'e2e-utils'\n import { NextInstance } from 'test/lib/next-modes/base'\n import path from 'path'\n \n-// TODO: figure out why snapshots mismatch on GitHub actions\n-// sp...
2022-12-20T09:18:13
golang/go
e4d7525c3e119de30490550fe2516fd6958eac30
4fb10b2118cb16445f2d089f79beb3d32db3db12
cmd/dist: display first class port status in json output Fixes #38874 Change-Id: I819dd008fd6869d335888b4aa03dcf739da9a9a4 Reviewed-on: https://go-review.googlesource.com/c/go/+/320069 Run-TryBot: Dmitri Shuralyov <dmitshur@golang.org> TryBot-Result: Go Bot <gobot@golang.org> Reviewed-by: Ian Lance Taylor <iant@golan...
[ { "path": "src/cmd/dist/build.go", "patch": "@@ -1607,6 +1607,18 @@ var incomplete = map[string]bool{\n \t\"linux/sparc64\": true,\n }\n \n+// List of platforms which are first class ports. See golang.org/issue/38874.\n+var firstClass = map[string]bool{\n+\t\"darwin/amd64\": true,\n+\t\"darwin/arm64\": tr...
2021-05-14T13:00:46
nodejs/node
dcfd323c6be53c6ea812e5d98eee8f4e8d31dc57
91e897ac9281de1a36139b6514609753f1154ab2
test: remove second arg from assert.ifError() `test/parallel/test-fs-readfile.js` has a call to `assert.ifError()` that receives two arguments. There is no second argument used in `assert.ifError()`. This PR removes this argument. PR-URL: https://github.com/nodejs/node/pull/22190 Reviewed-By: George Adams <george.ad...
[ { "path": "test/parallel/test-fs-readfile.js", "patch": "@@ -53,7 +53,7 @@ for (const e of fileInfo) {\n for (const e of fileInfo) {\n fs.readFile(e.name, common.mustCall((err, buf) => {\n console.log(`Validating readFile on file ${e.name} of length ${e.len}`);\n- assert.ifError(err, 'An error occu...
2018-08-08T09:37:21
huggingface/transformers
7bb619d710ea3bcddeedb2e7999dff4e124aee85
cfe666919e9bbefbfa6cd77c4a05a95238273dcb
🌐 [i18n-KO] Translated `roberta.md` to Korean (#37069) * docs: ko: roberta.md * fix: manual edits * Apply suggestions from code review Co-authored-by: Woojun Jung <46880056+jungnerd@users.noreply.github.com> Co-authored-by: YONGSANG <71686691+4N3MONE@users.noreply.github.com> --------- Co-authored-by: Woojun Jun...
[ { "path": "docs/source/ko/_toctree.yml", "patch": "@@ -480,8 +480,8 @@\n title: (번역중) RemBERT\n - local: in_translation\n title: (번역중) RetriBERT\n- - local: in_translation\n- title: (번역중) RoBERTa\n+ - local: model_doc/roberta\n+ title: RoBERTa\n - local: i...
2025-04-24T17:00:24
vercel/next.js
2080a0f877f3d02671c10a9f97335f340d8cd6af
147745bdb966ad1ea8c09c341f53d9216add9e1f
Fixes `new URL()` during SSR (vercel/turbo#3021) A follow up to vercel/turbo#2944, which incorrectly rewrote the `new URL("…", import.meta.url)` to `new URL("…", location.origin)` during server rendering (which obviously doesn't have a `location` object). This PR accomplishes 2 things: - Splits dev server address bi...
[ { "path": "packages/next-swc/crates/next-core/src/app_source.rs", "patch": "@@ -18,6 +18,7 @@ use turbopack::{\n use turbopack_core::{\n chunk::dev::DevChunkingContextVc,\n context::AssetContextVc,\n+ environment::ServerAddrVc,\n issue::{Issue, IssueSeverity, IssueSeverityVc, IssueVc},\n ...
2022-12-20T08:33:41
electron/electron
9d4e977c014840d9f2ba33803ddc0f2921e0066b
cf1009ab3019a7119aefbd3b5b65d3be57735efe
win: Fix window frame on detached window.
[ { "path": "brightray/browser/views/inspectable_web_contents_view_views.cc", "patch": "@@ -140,7 +140,11 @@ void InspectableWebContentsViewViews::SetIsDocked(bool docked) {\n devtools_window_web_view_,\n devtool...
2014-07-12T13:26:29
golang/go
4fb10b2118cb16445f2d089f79beb3d32db3db12
4fda54ce3f6761104e835fc4e7847f89e34b7d6d
cmd/go: in 'go mod download' without args, don't save module zip sums 'go mod download' without arguments is frequently used to populate the module cache. It tends to fetch a lot of extra files (for modules in the build list that aren't needed to build packages in the main module). It's annoying when sums are written ...
[ { "path": "doc/go1.17.html", "patch": "@@ -186,6 +186,17 @@ <h4 id=\"password-prompts\">Password prompts</h4>\n password-protected SSH keys.\n </p>\n \n+<h4 id=\"go-mod-download\"><code>go</code> <code>mod</code> <code>download</code></h4>\n+\n+<p><!-- golang.org/issue/45332 -->\n+ When <code>go</code> <...
2021-05-10T22:10:18
nodejs/node
fe47b8b6a529233ada74dfb979e6164111737fc2
b85460498fc24b855efbc2516f8e7cc629e24bb6
stream: fix readable behavior for highWaterMark === 0 Avoid trying to emit 'readable' due to the fact that state.length is always >= state.highWaterMark if highWaterMark is 0. Therefore upon .read(0) call (through .on('readable')) stream assumed that it has enough data to emit 'readable' even though state.length === 0...
[ { "path": "lib/_stream_readable.js", "patch": "@@ -383,7 +383,10 @@ Readable.prototype.read = function(n) {\n // the 'readable' event and move on.\n if (n === 0 &&\n state.needReadable &&\n- (state.length >= state.highWaterMark || state.ended)) {\n+ ((state.highWaterMark !== 0 ?\n+ ...
2018-07-05T23:19:15
huggingface/transformers
b2d70e9c492a6c3070b1a467f6c9dc04116f8504
acdbe627e323dbc822f21499fead789b439cf45b
Fix auto-round hfoption (#37759) fix
[ { "path": "docs/source/en/quantization/auto_round.md", "patch": "@@ -184,7 +184,7 @@ inputs = tokenizer(text, return_tensors=\"pt\").to(model.device)\n print(tokenizer.decode(model.generate(**inputs, max_new_tokens=50, do_sample=False)[0]))\n ```\n \n-<hfoption>\n+</hfoption>\n \n <hfoption id=\"inference x...
2025-04-24T16:19:38
vercel/next.js
793848a8ff2150e6076c52dbfffa27880b94cff2
39b03217f150536109e130c930f247606eeea563
Fixes `new URL()` during SSR (vercel/turbo#3021) A follow up to #2944, which incorrectly rewrote the `new URL("…", import.meta.url)` to `new URL("…", location.origin)` during server rendering (which obviously doesn't have a `location` object). This PR accomplishes 2 things: - Splits dev server address binding from s...
[ { "path": "crates/next-core/src/app_source.rs", "patch": "@@ -18,6 +18,7 @@ use turbopack::{\n use turbopack_core::{\n chunk::dev::DevChunkingContextVc,\n context::AssetContextVc,\n+ environment::ServerAddrVc,\n issue::{Issue, IssueSeverity, IssueSeverityVc, IssueVc},\n virtual_asset::Vir...
2022-12-20T08:33:41
golang/go
4fda54ce3f6761104e835fc4e7847f89e34b7d6d
8876b9bd6a8a0c206c0a5d59302ce5167f26e9f3
doc/go1.17: document database/sql changes for Go 1.17 For #44513 Fixes #46008 Change-Id: If80d484f73a0eb6946abdc654eb2c0d3dd6db416 Reviewed-on: https://go-review.googlesource.com/c/go/+/320251 Reviewed-by: Heschi Kreinick <heschi@google.com> Trust: Robert Findley <rfindley@google.com>
[ { "path": "doc/go1.17.html", "patch": "@@ -320,11 +320,19 @@ <h3 id=\"minor_library_changes\">Minor changes to the library</h3>\n <dl id=\"database/sql\"><dt><a href=\"/pkg/database/sql/\">database/sql</a></dt>\n <dd>\n <p><!-- CL 258360 -->\n- TODO: <a href=\"https://golang.org/cl/258360\">https...
2021-05-16T14:36:05
nodejs/node
34f56e2d711aaff10838167aa4ece77d278cfa09
346f2a7bec5ad60a3e4d7af3b0ca83e63207ede1
test: fix crypto test case PR-URL: https://github.com/nodejs/node/pull/22126 Reviewed-By: Ujjwal Sharma <usharma1998@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "test/parallel/test-crypto-cipher-decipher.js", "patch": "@@ -112,15 +112,6 @@ testCipher2(Buffer.from('0123456789abcdef'));\n 'TypedArray, or DataView. Received type object'\n });\n \n- common.expectsError(\n- () => crypto.createCipher('aes-256-cbc', 'secret').setAuthTag(nu...
2018-08-04T16:39:45
vercel/next.js
5a35be1e0f739d080aa354efe5d70084b5ecc80e
38165640fd8644a467cfb72c0f53eb84a595cc73
Fix pnpm install on Azure (#44179) Seems Azure fails to install due to the git URL being used in the lockfile so this corrects it. Fixes: https://dev.azure.com/nextjs/next.js/_build/results?buildId=45436&view=logs&jobId=59111904-15f9-56fe-00af-da61f595b979&j=59111904-15f9-56fe-00af-da61f595b979&t=5a27f6c6-b109-58...
[ { "path": "pnpm-lock.yaml", "patch": "@@ -24000,7 +24000,7 @@ packages:\n dev: true\n \n github.com/watson/ci-info/f43f6a1cefff47fb361c88cf4b943fdbcaafe540:\n- resolution: {commit: f43f6a1cefff47fb361c88cf4b943fdbcaafe540, repo: git+ssh://git@github.com/watson/ci-info.git, type: git}\n+ resoluti...
2022-12-20T07:53:43
golang/go
8876b9bd6a8a0c206c0a5d59302ce5167f26e9f3
5fee772c872fcbf35c059b241d0b60c0aecd0f20
doc/go1.17: document io/fs changes for Go 1.17 For #44513 Fixes #46011 Change-Id: I862ef9a4314cd34fb8c828a8cd7d0a7b36c6f683 Reviewed-on: https://go-review.googlesource.com/c/go/+/320151 Reviewed-by: Heschi Kreinick <heschi@google.com> Trust: Heschi Kreinick <heschi@google.com> Trust: Robert Findley <rfindley@google.c...
[ { "path": "doc/go1.17.html", "patch": "@@ -351,7 +351,7 @@ <h3 id=\"minor_library_changes\">Minor changes to the library</h3>\n <dl id=\"io/fs\"><dt><a href=\"/pkg/io/fs/\">io/fs</a></dt>\n <dd>\n <p><!-- CL 293649 -->\n- TODO: <a href=\"https://golang.org/cl/293649\">https://golang.org/cl/293649...
2021-05-14T17:58:01
rust-lang/rust
66d2f6bb0507bbbe70232fe5ccec52b7a1ea51c4
e17184bf9f2d40e12c5a5a134904ab2900342bd4
Fix rustc test suite
[ { "path": "scripts/test_rustc_tests.sh", "patch": "@@ -76,6 +76,7 @@ rm tests/ui/asm/aarch64/type-f16.rs\n rm tests/ui/float/conv-bits-runtime-const.rs\n rm tests/ui/consts/const-eval/float_methods.rs\n rm tests/ui/match/match-float.rs\n+rm tests/ui/float/target-has-reliable-nightly-float.rs\n \n # optimiza...
2025-04-30T14:48:45
nodejs/node
77da6d9e8c9496269d19dab00ea6f7f0b37e2839
d3d54aa8ef6e4df04507f3d3a1b891c863eb497b
build: add crypto check to build targets Currently when configured without-ssl the build will fail when trying to run the tools/doc/node_modules, and .docbuildstamp make targets: internal/util.js:97 throw new ERR_NO_CRYPTO(); ^ Error [ERR_NO_CRYPTO]: Node.js is not compiled with OpenSSL crypto ...
[ { "path": "Makefile", "patch": "@@ -320,10 +320,16 @@ ifeq ($(OSTYPE),aix)\n DOCBUILDSTAMP_PREREQS := $(DOCBUILDSTAMP_PREREQS) out/$(BUILDTYPE)/node.exp\n endif\n \n+node_use_openssl = $(shell $(call available-node,\"-p\" \\\n+\t\t \"process.versions.openssl != undefined\"))\n test/addons/.docbuildstamp: ...
2018-08-06T07:26:36
electron/electron
cc29f43a351f1e0418edaceb830e5b189d31b3ad
b2afe7b3bf0910df4c7b8ce9f6ceea045f0a404c
win: Update libchromiumcontent to fix shared workers.
[ { "path": "script/lib/config.py", "patch": "@@ -5,7 +5,7 @@\n \n NODE_VERSION = 'v0.11.13'\n BASE_URL = 'https://gh-contractor-zcbenz.s3.amazonaws.com/libchromiumcontent'\n-LIBCHROMIUMCONTENT_COMMIT = '5d5539f8232bb4d0253438216de11a99159b3c4d'\n+LIBCHROMIUMCONTENT_COMMIT = '99d263cbd842ba57331ddb975aad74247...
2014-07-11T12:18:06
vercel/next.js
38165640fd8644a467cfb72c0f53eb84a595cc73
7368b6f9e64a4ea4747ae650f0e3bd7379182f31
Fix crash in GraalVM (#44176) Refs: - https://github.com/oracle/graal/issues/5581 - https://github.com/oracle/graal/issues/5582 - https://github.com/napi-rs/napi-rs/issues/1392
[ { "path": ".github/workflows/build_test_deploy.yml", "patch": "@@ -7,7 +7,7 @@ on:\n name: Build, test, and deploy\n \n env:\n- NAPI_CLI_VERSION: 2.12.0\n+ NAPI_CLI_VERSION: 2.13.3\n TURBO_VERSION: 1.6.3\n RUST_TOOLCHAIN: nightly-2022-11-04\n PNPM_VERSION: 7.3.0", "additions": 1, "deletions"...
2022-12-20T07:39:15
golang/go
5fee772c872fcbf35c059b241d0b60c0aecd0f20
3148694f607b77731420a20ef2117ac7d0d55ba3
doc/go1.17: document archive/zip changes for Go 1.17 For #44513. Fixes #46000 Change-Id: I299d0b5657f1f96174d6e35d60daac8b36e59d29 GitHub-Last-Rev: e63461bff042a8abe79e0ec3515eefbf56ba1d82 GitHub-Pull-Request: golang/go#46235 Reviewed-on: https://go-review.googlesource.com/c/go/+/320809 Reviewed-by: Heschi Kreinick <...
[ { "path": "doc/go1.17.html", "patch": "@@ -272,7 +272,7 @@ <h3 id=\"minor_library_changes\">Minor changes to the library</h3>\n <dl id=\"archive/zip\"><dt><a href=\"/pkg/archive/zip/\">archive/zip</a></dt>\n <dd>\n <p><!-- CL 312310 -->\n- TODO: <a href=\"https://golang.org/cl/312310\">https://go...
2021-05-18T14:54:02
rust-lang/rust
09188e63f2ccb82b268cec305777266818f29542
1b677ce14ff759dacadd5d4b05dd27a00bfd68c2
fix: Improve parser recovery a bit
[ { "path": "src/tools/rust-analyzer/crates/hir-def/src/macro_expansion_tests/builtin_fn_macro.rs", "patch": "@@ -285,8 +285,6 @@ fn main() {\n /* parse error: expected expression */\n builtin #format_args (x = );\n /* parse error: expected expression */\n-/* parse error: expected R_PAREN */\n-/* pars...
2025-04-30T13:51:58
huggingface/transformers
acdbe627e323dbc822f21499fead789b439cf45b
af6d2756d9ba7d83388f617b612009242ca46681
Guard DeepSpeed imports (#37755) * Guard DeepSpeed imports * Fix import * Import deepspeed consistently --------- Co-authored-by: Marc Sun <57196510+SunMarc@users.noreply.github.com>
[ { "path": "src/transformers/modeling_utils.py", "patch": "@@ -57,7 +57,7 @@\n from .generation import CompileConfig, GenerationConfig\n from .integrations import PeftAdapterMixin, deepspeed_config, is_deepspeed_zero3_enabled\n from .integrations.accelerate import find_tied_parameters, init_empty_weights\n-f...
2025-04-24T16:16:34
nodejs/node
85bfd71312ef7e3ac3aa1306ab2d2ff1c9dab9e3
1d859ef53224c982aee659d0e17b1e5747b19fa0
assert: fix loose assert with map and set There was an oversight when checking the possible loose comparisons. This is now fixed by also accepting `''` instead of `0` or `false`. PR-URL: https://github.com/nodejs/node/pull/22145 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@...
[ { "path": "lib/internal/util/comparisons.js", "patch": "@@ -354,29 +354,38 @@ function setEquiv(a, b, strict, memo) {\n return true;\n }\n \n+// See https://developer.mozilla.org/en-US/docs/Web/JavaScript/Equality_comparisons_and_sameness#Loose_equality_using\n function findLooseMatchingPrimitives(prim) {...
2018-08-05T23:19:01
electron/electron
b2afe7b3bf0910df4c7b8ce9f6ceea045f0a404c
b4ba14966297aca882e530ff4c5403f9dc888490
win: Fix notify icon and context menu.
[ { "path": "atom.gyp", "patch": "@@ -439,7 +439,6 @@\n '-loleacc.lib',\n '-lComdlg32.lib',\n '-lWininet.lib',\n- '<(atom_source_root)/<(libchromiumcontent_library_dir)/chromiumviews.lib',\n ],\n },\n 'dependencies': [", ...
2014-07-11T11:42:53
vercel/next.js
39b03217f150536109e130c930f247606eeea563
dada57c60c4e6f693d0a9176b8b5da95f062d45d
Disable clippy::too_many_arguments globally (vercel/turbo#3084) Clippy has gone too far, and I don't want to refactor the remaining functions to take less arguments and pass a struct. With an unrelated small fix, this puts us at 0 clippy warnings!
[ { "path": "crates/turbopack-ecmascript/src/references/mod.rs", "patch": "@@ -408,7 +408,6 @@ pub(crate) async fn analyze_ecmascript_module(\n \n analysis.set_exports(exports);\n \n- #[allow(clippy::too_many_arguments)]\n fn handle_call_boxed<\n 'a,\n ...
2022-12-20T07:12:51
rust-lang/rust
bfabf71781ab40ed81a42cb26c6e983ecbe25604
b3b1eddc5b46da5482e5adb882791f239caffc5e
Fix naked asm symbol name for cg_clif on macOS
[ { "path": "src/global_asm.rs", "patch": "@@ -34,7 +34,8 @@ impl<'tcx> AsmCodegenMethods<'tcx> for GlobalAsmContext<'_, 'tcx> {\n }\n \n fn mangled_name(&self, instance: Instance<'tcx>) -> String {\n- self.tcx.symbol_name(instance).name.to_owned()\n+ let symbol_name = self.tcx.symbol_na...
2025-04-30T12:59:50
electron/electron
b4ba14966297aca882e530ff4c5403f9dc888490
43e8ecb118d7ef62caf39309c63f3fbdd2ac8cb8
Fix a crash when creating window.
[ { "path": "atom/browser/atom_browser_client.cc", "patch": "@@ -26,6 +26,10 @@ struct FindByProcessId {\n }\n \n bool operator() (NativeWindow* const window) {\n+ content::WebContents* web_contents = window->GetWebContents();\n+ if (!web_contents)\n+ return false;\n+\n int id = window->Get...
2014-07-11T11:39:35
nodejs/node
1d859ef53224c982aee659d0e17b1e5747b19fa0
566d11a1ca1e7c41d00d18c3272a3fc6c781fd0f
assert: improve loose assertion message So far the error message from a loose assertion is not always very informative and could be misleading. This is fixed by: * showing more from the actual error message * having a better error description * not using custom inspection * inspecting a higher depth * inspecting the ...
[ { "path": "lib/internal/assert.js", "patch": "@@ -12,9 +12,13 @@ let white = '';\n \n const kReadableOperator = {\n deepStrictEqual: 'Expected inputs to be strictly deep-equal:',\n- notDeepStrictEqual: 'Expected \"actual\" not to be strictly deep-equal to:',\n strictEqual: 'Expected inputs to be strict...
2018-08-06T16:20:44
huggingface/transformers
0302aa1c6ef1052697671e7b6eece53fb841c668
af000ceb9296b2392778e0c0d8b90c53db8c13fe
Fix typos in comments (#37694) Signed-off-by: co63oc <co63oc@users.noreply.github.com>
[ { "path": "benchmark/benchmark.py", "patch": "@@ -90,7 +90,7 @@ def summarize(run_dir, metrics, expand_metrics=False):\n \n model = benchmark.config.backend[\"model\"]\n \n- # Ths looks like `benchmark.input_shapes.batch_size=1,benchmark.input_shapes.sequence_length=5`.\n+ # This looks...
2025-04-24T14:59:56
vercel/next.js
a32b3dde51113cf320e73682a234fbfe34479185
e27a7bd7a408f1ce1cfd7d193a22a03fbd3fa47c
Fix test template example (#44170) - Fixes typo from #44147 `getElementByCss` => `elementByCss`
[ { "path": "test/e2e/example.txt", "patch": "@@ -15,7 +15,7 @@ createNextDescribe(\n // Recommended for tests that need a full browser\n it('should work using browser', async () => {\n const browser = await next.browser('/')\n- expect(await browser.getElementByCss('p').text()).toBe('hello ...
2022-12-20T00:31:28
rust-lang/rust
3e174d4e692ad7337091eb6d3a3f84d39dc88bbb
3066da813b66ffe46bbe5ea62c56bd079b158cf8
Fix naked asm symbol name for cg_clif on macOS
[ { "path": "compiler/rustc_codegen_cranelift/src/global_asm.rs", "patch": "@@ -34,7 +34,8 @@ impl<'tcx> AsmCodegenMethods<'tcx> for GlobalAsmContext<'_, 'tcx> {\n }\n \n fn mangled_name(&self, instance: Instance<'tcx>) -> String {\n- self.tcx.symbol_name(instance).name.to_owned()\n+ let...
2025-04-30T12:59:50
golang/go
3148694f607b77731420a20ef2117ac7d0d55ba3
7e63c8b765c30823131bd136d190afbe4c21abc9
cmd/go: remove warning from module deprecation notice printing Fixes #46294 Change-Id: I50023006dab83dee455f98a702ca1c72e61764ea Reviewed-on: https://go-review.googlesource.com/c/go/+/321649 Trust: Jay Conrod <jayconrod@google.com> Trust: Michael Matloob <matloob@golang.org> Run-TryBot: Jay Conrod <jayconrod@google.c...
[ { "path": "src/cmd/go/internal/modget/get.go", "patch": "@@ -1598,7 +1598,7 @@ func (r *resolver) checkPackageProblems(ctx context.Context, pkgPatterns []strin\n \t// Report deprecations, then retractions.\n \tfor _, mm := range deprecations {\n \t\tif mm.message != \"\" {\n-\t\t\tfmt.Fprintf(os.Stderr, \"g...
2021-05-20T23:51:28
electron/electron
ea60a04280533c00bcefdf3e0fa6d0bcd8692be0
3c11bc5f9808ba7a74c1cd98fea4f9c4c07556ee
Upgrade libchromiumcontent to fix chromiumviews.
[ { "path": "script/lib/config.py", "patch": "@@ -5,7 +5,7 @@\n \n NODE_VERSION = 'v0.11.13'\n BASE_URL = 'https://gh-contractor-zcbenz.s3.amazonaws.com/libchromiumcontent'\n-LIBCHROMIUMCONTENT_COMMIT = '9006e277b20109de165d4a17827c9b2029bf3831'\n+LIBCHROMIUMCONTENT_COMMIT = '5d5539f8232bb4d0253438216de11a991...
2014-07-11T11:05:51
nodejs/node
566d11a1ca1e7c41d00d18c3272a3fc6c781fd0f
e3bae655839ea7f0019f7e6bd33fe941a5f6be62
src: fix up doc comment for experimental-worker bool PR-URL: https://github.com/nodejs/node/pull/22165 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Jon M...
[ { "path": "src/node_internals.h", "patch": "@@ -195,9 +195,9 @@ extern bool config_experimental_modules;\n // that is used by lib/vm.js\n extern bool config_experimental_vm_modules;\n \n-// Set in node.cc by ParseArgs when --experimental-vm-modules is used.\n+// Set in node.cc by ParseArgs when --experiment...
2018-08-06T23:46:37
huggingface/transformers
af000ceb9296b2392778e0c0d8b90c53db8c13fe
0af0a5f9698f501240464613d52677f206cdc291
Fix load of rng state for resuming training from checkpoint (#37162) Co-authored-by: Marc Sun <57196510+SunMarc@users.noreply.github.com>
[ { "path": "src/transformers/trainer.py", "patch": "@@ -3122,7 +3122,7 @@ def _load_rng_state(self, checkpoint):\n return\n \n with safe_globals():\n- checkpoint_rng_state = torch.load(rng_file, weights_only=True)\n+ checkpoint_rng_state = torch.load(rng_file)\n ...
2025-04-24T14:55:34
vercel/next.js
147745bdb966ad1ea8c09c341f53d9216add9e1f
3ce0c6a917eeee5cea9fb08f0f256c74c1f5063f
@next/font/google: scope font names (vercel/turbo#3049) Fixes WEB-341 This incorporates a digest of the font request into the name of the font-family defined in the stylesheet, used in the css class, and returned to the JavaScript importer. This makes font-family names returned from `@next/font/google` in styles...
[ { "path": "packages/next-swc/crates/next-core/src/next_font_google/mod.rs", "patch": "@@ -2,7 +2,7 @@ use anyhow::{bail, Context, Result};\n use indexmap::IndexMap;\n use indoc::formatdoc;\n use once_cell::sync::Lazy;\n-use turbo_tasks::primitives::{OptionStringVc, OptionU16Vc, StringVc};\n+use turbo_tasks:...
2022-12-20T00:26:27
golang/go
7e63c8b765c30823131bd136d190afbe4c21abc9
831573cd21e65c37b4e1bf5d44dc23b125084b7a
runtime: wait for Go runtime to initialize in Windows signal test The test harness waits for "ready" as a sign that the Go runtime has installed its signal handler and is ready to be tested. But actually, while LoadLibrary starts the loading of the Go runtime, it does so asynchronously, so the "ready" sign is potentia...
[ { "path": "src/runtime/testdata/testwinlibsignal/main.c", "patch": "@@ -19,13 +19,13 @@ int main(void)\n {\n waitForCtrlBreakEvent = CreateEvent(NULL, TRUE, FALSE, NULL);\n if (!waitForCtrlBreakEvent) {\n- fprintf(stderr, \"ERROR: Could not create event\");\n+ fprintf(stderr, \"ERROR: ...
2021-05-21T10:01:39
electron/electron
8d4211bd3a5bee9be73d54553a300961e691748a
497174bbe4eb518629d5b0660f5c5c8e259223e2
win: Fix compilation errors for chrome35.
[ { "path": "atom.gyp", "patch": "@@ -58,8 +58,6 @@\n 'atom/browser/api/atom_api_menu_views.h',\n 'atom/browser/api/atom_api_menu_mac.h',\n 'atom/browser/api/atom_api_menu_mac.mm',\n- 'atom/browser/api/atom_api_menu_win.cc',\n- 'atom/browser/api/atom_api_menu_win.h',\n 'atom/...
2014-07-11T04:19:01
nodejs/node
e3bae655839ea7f0019f7e6bd33fe941a5f6be62
fcb46a462635361daa922e9b38a1b7dbda461c8a
worker: fix deadlock when calling terminate from exit handler Just before we call the `'exit'` handlers of a Worker, we drain the public port’s message queue to ensure proper ordering. Previously, we held the Worker’s `mutex_` during the exit handler call, so calling `terminate()` on the worker could lead to a deadloc...
[ { "path": "src/node_worker.cc", "patch": "@@ -287,22 +287,21 @@ void Worker::JoinThread() {\n }\n \n void Worker::OnThreadStopped() {\n- Mutex::ScopedLock lock(mutex_);\n- scheduled_on_thread_stopped_ = false;\n+ {\n+ Mutex::ScopedLock lock(mutex_);\n+ scheduled_on_thread_stopped_ = false;\n \n- D...
2018-08-01T19:50:45
huggingface/transformers
0af0a5f9698f501240464613d52677f206cdc291
3af24f7e2767fe3cae93c949db5f6da0a3c9fc0a
Fix tied weight loading with TP and loading sub state_dicts (#37758) Update modeling_utils.py
[ { "path": "src/transformers/modeling_utils.py", "patch": "@@ -4978,7 +4978,10 @@ def _load_pretrained_model(\n name: param for name, param in model.named_parameters() if not name.startswith(prefix)\n }\n for name, param in parameters_to_initialize.items():...
2025-04-24T14:47:40
rust-lang/rust
07c7e5ffb3c096f80ffede421fb20089fbe7fe3f
49e5e4e3a5610c240a717cb99003a5d5d3356679
error when using no_mangle on language items add suggestion on how to add a panic breakpoint Co-authored-by: Pat Pannuto <pat.pannuto@gmail.com> delete no_mangle from ui/panic-handler/panic-handler-wrong-location test issue an error for the usage of #[no_mangle] on internal language items delete the comments add n...
[ { "path": "compiler/rustc_codegen_ssa/src/codegen_attrs.rs", "patch": "@@ -87,6 +87,7 @@ fn codegen_fn_attrs(tcx: TyCtxt<'_>, did: LocalDefId) -> CodegenFnAttrs {\n let mut link_ordinal_span = None;\n let mut no_sanitize_span = None;\n let mut mixed_export_name_no_mangle_lint_state = MixedExport...
2025-04-30T11:52:15
vercel/next.js
dada57c60c4e6f693d0a9176b8b5da95f062d45d
ed6f04ac356d65d898dd304f12719118ab34106e
@next/font/google: scope font names (vercel/turbo#3049) Fixes WEB-341 This incorporates a digest of the font request into the name of the font-family defined in the stylesheet, used in the css class, and returned to the JavaScript importer. This makes font-family names returned from `@next/font/google` in styles...
[ { "path": "crates/next-core/src/next_font_google/mod.rs", "patch": "@@ -2,7 +2,7 @@ use anyhow::{bail, Context, Result};\n use indexmap::IndexMap;\n use indoc::formatdoc;\n use once_cell::sync::Lazy;\n-use turbo_tasks::primitives::{OptionStringVc, OptionU16Vc, StringVc};\n+use turbo_tasks::primitives::{Opti...
2022-12-20T00:26:27
golang/go
831573cd21e65c37b4e1bf5d44dc23b125084b7a
baa934d26dd6e201dcda0962dd51b0e5f6f69c1b
io/fs: added an example for io/fs.WalkDir The documentation currently does not show how to get an `FS` instance for the operating system's filesystem. This example demonstrates how to accomplish this using the `os` package. Fixes #46083 Change-Id: I053111c12ab09ef13f0d04fcdff8a6ea0dccf379 Reviewed-on: https://go-rev...
[ { "path": "src/io/fs/example_test.go", "patch": "@@ -0,0 +1,25 @@\n+// Copyright 2021 The Go Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style\n+// license that can be found in the LICENSE file.\n+\n+package fs_test\n+\n+import (\n+\t\"fmt\"\n+\t\"io/fs\"\n+\t\"log\"\n+\t...
2021-05-14T03:52:41
rust-lang/rust
0cb6f51a3693c36270603bca3e475a7368544c97
427288b3ce2d574847fdb41cc3184c893750e09a
unstable-book: fix capitalization
[ { "path": "src/doc/unstable-book/src/compiler-flags/rustc-bootstrap.md", "patch": "@@ -23,7 +23,7 @@ Crates can fully opt out of unstable features by using [`#![forbid(unstable_feat\n In particular, nightly is built with beta, and beta is built with stable.\n Since the standard library and compiler both use...
2025-04-30T10:13:43
huggingface/transformers
22e3da92b7736fc7beda6e2784cad3f85222d7c9
4d64c3859308a79dc7d9b8cafa2be039a77b2267
Fix wrong input shapes in doc-string of models (#37729) * Fix wrong position_ids shape in doc Supported by ClvpDecoder.forward, line 1212--1215: src/transformers/models/clvp/modeling_clvp.py: 1212 if inputs_embeds is None: 1213 inputs_embeds = self.input_embeds_layer(input_ids) 1214 ...
[ { "path": "src/transformers/models/clvp/modeling_clvp.py", "patch": "@@ -935,7 +935,7 @@ def _init_weights(self, module):\n - 1 corresponds to a *sentence B* token.\n \n [What are token type IDs?](../glossary#token-type-ids)\n- position_ids (`torch.LongTensor` of shape `(batch...
2025-04-24T14:36:03
nodejs/node
fcb46a462635361daa922e9b38a1b7dbda461c8a
cf3bb593decb0c5cd648a22c5d14653295ca390c
doc: replace _WG_ with _team_ AFAICT, there is no N-API Working Group. There *is* an N-API team, but AFAIK there is no charter etc. (And if I'm wrong and there is, then https://nodejs.org/en/about/working-groups/ needs an update!) PR-URL: https://github.com/nodejs/node/pull/22183 Reviewed-By: Vse Mozhet Byt <vsemozhe...
[ { "path": "doc/guides/adding-new-napi-api.md", "patch": "@@ -23,9 +23,9 @@ N-API API.\n * There **should** be at least one test case per interesting use of the API.\n * There **should** be a sample provided that operates in a realistic way\n (operating how a real addon would be written).\n-* A new API **s...
2018-08-07T23:23:39
electron/electron
dd6f8669a1a604aebe44f567106611ee83424f53
fcf55df8744560829bf2ddeca2002504e173ff20
Update libchromiumcontent to fix web workers.
[ { "path": "script/lib/config.py", "patch": "@@ -5,7 +5,7 @@\n \n NODE_VERSION = 'v0.11.13'\n BASE_URL = 'https://gh-contractor-zcbenz.s3.amazonaws.com/libchromiumcontent'\n-LIBCHROMIUMCONTENT_COMMIT = '2f1b641fca996546b9797c359ec05ac8aeade1ba'\n+LIBCHROMIUMCONTENT_COMMIT = '9006e277b20109de165d4a17827c9b202...
2014-07-09T10:52:11
vercel/next.js
e8dc27bb025603b8814adb7a9d2fb4184549ab56
2f79baf94b616e19dad995101768ffffaac4c691
build(cargo): update turbopack (#44167) ## Bug - [ ] Related issues linked using `fixes #number` - [ ] Integration tests added - [ ] Errors have a helpful link attached, see [`contributing.md`](https://github.com/vercel/next.js/blob/canary/contributing.md) ## Feature - [ ] Implements an existing feature request o...
[ { "path": "packages/next-swc/Cargo.lock", "patch": "@@ -123,7 +123,7 @@ dependencies = [\n [[package]]\n name = \"auto-hash-map\"\n version = \"0.1.0\"\n-source = \"git+https://github.com/vercel/turbo.git?rev=d3820c52989a2badf38ff868a176f61a7a7255fd#d3820c52989a2badf38ff868a176f61a7a7255fd\"\n+source = \"gi...
2022-12-19T23:18:16
golang/go
baa934d26dd6e201dcda0962dd51b0e5f6f69c1b
7c692cc7ea69ba4d8603fbada112289443a6f526
cmd: go get golang.org/x/tools/analysis@49064d23 && go mod vendor This brings in CLs 312829, 317431, 319211. Fixes #40356. Fixes #46129. Change-Id: I2ee1f858b2a41ffa60d88b0c17511ccad57f1816 Reviewed-on: https://go-review.googlesource.com/c/go/+/321389 Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org> Trust: Tim Ki...
[ { "path": "src/cmd/go.mod", "patch": "@@ -10,6 +10,6 @@ require (\n \tgolang.org/x/mod v0.4.3-0.20210512182355-6088ed88cecd\n \tgolang.org/x/sys v0.0.0-20210511113859-b0526f3d8744 // indirect\n \tgolang.org/x/term v0.0.0-20210503060354-a79de5458b56\n-\tgolang.org/x/tools v0.1.1-0.20210505014545-7cab0ef2e9a5...
2021-05-20T01:45:53
nodejs/node
5fded26e9e386ce275176d7c9457c7dd02e22dc3
41ae423718cb312c52c7b3bca1988130a2c417f6
tools: do not autolink section to itself Fix a regression in the new doc generation toolchain. PR-URL: https://github.com/nodejs/node/pull/22138 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Sam Ruby <rubys@intertwingly.net> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Benjamin Gruenbaum...
[ { "path": "tools/doc/html.js", "patch": "@@ -226,8 +226,8 @@ function preprocessElements({ filename }) {\n }\n \n // Do not link to the section we are already in.\n- const noLinking = filename === 'documentation' &&\n- heading !== null && heading.value === 'Stability ...
2018-08-05T15:44:22
huggingface/transformers
4d64c3859308a79dc7d9b8cafa2be039a77b2267
43bb4c0456ebab67ca6b11fa5fa4c099fb2e6a2c
[generate] fix default autocompile case on gpu (#37756)
[ { "path": "src/transformers/generation/utils.py", "patch": "@@ -3430,7 +3430,8 @@ def _sample(\n model_kwargs = self._get_initial_cache_position(input_ids, model_kwargs)\n \n model_forward = self.__call__\n- if self._valid_auto_compile_criteria(model_kwargs, generation_config):\n+ ...
2025-04-24T14:08:38
electron/electron
7b93a19e9bb2a9f92f60539146c15545ea688172
2312f84ec9c909ba640e36e441ced73a3ebffb90
Fix context menu in devtools.
[ { "path": "atom/browser/native_window.cc", "patch": "@@ -531,8 +531,11 @@ void NativeWindow::DevToolsSaveToFile(const std::string& url,\n path = it->second;\n } else {\n base::FilePath default_path(base::FilePath::FromUTF8Unsafe(url));\n- if (!file_dialog::ShowSaveDialog(this, url, default_path...
2014-07-09T07:41:16
vercel/next.js
2f79baf94b616e19dad995101768ffffaac4c691
9855fd7bc51ae49d3b8e59f1beefa0cee43c6d3e
Update disabling-http-keep-alive.md for server-side only (#43374) fixes #43354 It is not possible to specify an `agent` on a single `fetch()` call since the types for `fetch` come from TypeScript where `agent` is not supported as an option.
[ { "path": "docs/api-reference/next.config.js/disabling-http-keep-alive.md", "patch": "@@ -4,19 +4,9 @@ description: Next.js will automatically use HTTP Keep-Alive by default. Learn mo\n \n # Disabling HTTP Keep-Alive\n \n-Next.js automatically polyfills [node-fetch](/docs/basic-features/supported-browsers-f...
2022-12-19T22:54:12
golang/go
7c692cc7ea69ba4d8603fbada112289443a6f526
ce9a3b79d5bb783f5f31c9d41665a488fe63f546
doc/go1.17: document changes to os package Documents the changes to File.WriteString method. For #44513. Fixes #46018. Change-Id: I3a8ef9df9f84662614d54802710bd705d626b995 Reviewed-on: https://go-review.googlesource.com/c/go/+/317910 Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org> Trust: Cherry Mui <cherryyz@goo...
[ { "path": "doc/go1.17.html", "patch": "@@ -428,7 +428,8 @@ <h3 id=\"minor_library_changes\">Minor changes to the library</h3>\n <dl id=\"os\"><dt><a href=\"/pkg/os/\">os</a></dt>\n <dd>\n <p><!-- CL 268020 -->\n- TODO: <a href=\"https://golang.org/cl/268020\">https://golang.org/cl/268020</a>: avo...
2021-05-07T04:35:36
huggingface/transformers
43bb4c0456ebab67ca6b11fa5fa4c099fb2e6a2c
dd2649fa989a08268884e236d414d2aa3058c270
Fix qwen2_5 get_rope_index tensor device locations (#37597) * Fix qwen2_5 get_rope_index tensor device locations * simpler fix * edit right file for modular model * add a test * try normalizing type to fix non-video * fix some imports * add a video forward test with dummy input
[ { "path": "src/transformers/models/qwen2_5_vl/modeling_qwen2_5_vl.py", "patch": "@@ -1663,6 +1663,11 @@ def get_rope_index(\n range_tensor = torch.arange(llm_grid_t).view(-1, 1)\n expanded_range = range_tensor.expand(-1, llm_grid_h * llm_grid_w)\n \n+ ...
2025-04-24T14:04:38
electron/electron
9747ee4411645e403f5f006624d8413b637117df
81d31b1d49510768299346fe53b57da904a63104
Fix cpplint warning for obj-c header.
[ { "path": "brightray/script/cpplint", "patch": "@@ -11,7 +11,7 @@ CPPLINT = os.path.join(SOURCE_ROOT, 'vendor', 'google-styleguide', 'trunk', 'cpp\n LINE_LENGTH = 100\n \n IGNORED_FILES = [\n- os.path.join('browser', 'mac', 'bry_inspectable_web_contents_view_private.h'),\n+ os.path.join('browser', 'ma...
2014-07-09T02:38:00
vercel/next.js
3ce0c6a917eeee5cea9fb08f0f256c74c1f5063f
78abb7e5d3c3d62d6ae8be143e2a0a836cc1aed7
Fix postcss nitpicks (vercel/turbo#3077) Re: vercel/turbo#3065 It also fixes the gnarly stack trace error whenever the node code throws, but it doesn't look very pretty. Not sure how to handle it: <img width="1280" alt="Screen Shot 2022-12-19 at 3 46 56 PM" src="https://user-images.githubusercontent.com/112982/20851...
[ { "path": "packages/next-swc/crates/next-core/js/src/ipc/evaluate.ts", "patch": "@@ -1,44 +0,0 @@\n-import { IPC, Ipc } from \"./index\";\n-\n-type IpcIncomingMessage = {\n- type: \"evaluate\";\n- filepath: string;\n- arguments: string[];\n-};\n-\n-type IpcOutgoingMessage = {\n- type: \"jsonValue\";\n- ...
2022-12-19T22:29:28
nodejs/node
142660c989524d064cf968a5d5c1f956cfed23a9
c6a54af42aa4c80dba76d1ff8ecbd4f0e6ed7e44
test: update certificates and private keys The certificates in test fixtures were set to expire in 999 days since they were generated. That time has passed, and they have to be reissued. Bump expiration time to 99999 days for all of them to prevent this from happening again in near future. PR-URL: https://github.com/...
[ { "path": "test/fixtures/keys/Makefile", "patch": "@@ -1,19 +1,18 @@\n-all: agent1-cert.pem agent1-pfx.pem agent2-cert.pem agent3-cert.pem agent4-cert.pem agent5-cert.pem agent6-cert.pem agent7-cert.pem agent8-cert.pem agent9-cert.pem ca1-cert.pem ca2-crl.pem ca3-cert.pem ec-cert.pem dh512.pem dh1024.pem dh...
2018-08-07T23:41:05
golang/go
ce9a3b79d5bb783f5f31c9d41665a488fe63f546
f8be906d7437f2528abc7cd1a57fe46aa9348b97
crypto/x509: add new FreeBSD 12.2+ trusted certificate folder Up to FreeBSD 12.1 the package ca_root_nss was needed in order to have certificates under /usr/local/share/certs as the base system didn't have a system trusted certificate store. This has been fixed in FreeBSD 12.2 using /etc/ssl/certs: https://svnweb.fre...
[ { "path": "src/crypto/x509/root_bsd.go", "patch": "@@ -18,6 +18,7 @@ var certFiles = []string{\n // Possible directories with certificate files; stop after successfully\n // reading at least one file from a directory.\n var certDirectories = []string{\n+\t\"/etc/ssl/certs\", // FreeBSD 12.2+\n \t\"/...
2021-05-20T15:41:02
electron/electron
563d6e87ff5dde79a6a383763f6fa5e69cab7c9a
1722532e6d5eda81fe3af06985291cb3ced2adad
Fix cpplint warning.
[ { "path": "brightray/browser/mac/bry_inspectable_web_contents_view.h", "patch": "@@ -10,6 +10,8 @@ namespace brightray {\n class InspectableWebContentsViewMac;\n }\n \n+using brightray::InspectableWebContentsViewMac;\n+\n @interface BRYInspectableWebContentsView : BaseView<NSWindowDelegate> {\n @private\n ...
2014-07-02T08:54:04
vercel/next.js
ed6f04ac356d65d898dd304f12719118ab34106e
b6133501a9a9c2e87e15c7351297c4f95ac1b278
Fix postcss nitpicks (vercel/turbo#3077) Re: vercel/turbo#3065 It also fixes the gnarly stack trace error whenever the node code throws, but it doesn't look very pretty. Not sure how to handle it: <img width="1280" alt="Screen Shot 2022-12-19 at 3 46 56 PM" src="https://user-images.githubusercontent.com/112982/20851...
[ { "path": "crates/next-core/js/src/ipc/evaluate.ts", "patch": "@@ -1,44 +0,0 @@\n-import { IPC, Ipc } from \"./index\";\n-\n-type IpcIncomingMessage = {\n- type: \"evaluate\";\n- filepath: string;\n- arguments: string[];\n-};\n-\n-type IpcOutgoingMessage = {\n- type: \"jsonValue\";\n- data: string;\n-}...
2022-12-19T22:29:28
nodejs/node
e2ea82b9ce573f1c94651b6a853d5abaf259cb8f
1284fa20094310bb859fd60f95c259c77d8277ae
dgram: fix linting issue Not sure why CI (and `make -j8 test` at the time of landing) showed this as being OK, but `make lint-js` is failing now. PR-URL: https://github.com/nodejs/node/pull/22175 Reviewed-By: Gus Caplan <me@gus.host> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: James M Snell <jasnell@gm...
[ { "path": "lib/dgram.js", "patch": "@@ -39,7 +39,7 @@ const {\n ERR_SOCKET_DGRAM_NOT_RUNNING,\n ERR_INVALID_FD_TYPE\n } = errors.codes;\n-const { validateString } = require('internal/validators');\n+const { isInt32, validateString } = require('internal/validators');\n const { Buffer } = require('buffer'...
2018-08-07T15:22:00
huggingface/transformers
8bdd4f2acd9bd379b31dd21916a24f8150a1efa2
7c62e69326c9e7a78a1339df7d39c9a1c5c43de0
[generate] skip compilation on cpu offload (#37709) * skip compilation on cpu offload * add test * better logic * docstring * boolean logic * add disk offload check * warn users if compilation options are set but compilation doesn happen * fix test --------- Co-authored-by: Marc Sun <57196510+SunMarc@users.no...
[ { "path": "src/transformers/generation/configuration_utils.py", "patch": "@@ -381,10 +381,12 @@ class GenerationConfig(PushToHubMixin):\n > Parameters related to performances and compilation\n \n compile_config (CompileConfig, *optional*):\n- If using a static cache, this controls...
2025-04-24T13:08:17
golang/go
bb7495a46d6024da9d77722f04b438e573bcb26f
f07e4dae3c5cb608b4f0b9db57d1562d2125243b
doc/go1.17: document new math constants Documents the newly introduced: * MaxInt * MinInt * MaxUint Updates #28538. For #44513. Fixes #46012. Change-Id: Iab6bbcf8f76ebe105b973d5fd39b86b8cd078348 Reviewed-on: https://go-review.googlesource.com/c/go/+/317911 Trust: Heschi Kreinick <heschi@google.com> Reviewed-by: Emma...
[ { "path": "doc/go1.17.html", "patch": "@@ -334,7 +334,9 @@ <h3 id=\"minor_library_changes\">Minor changes to the library</h3>\n <dl id=\"math\"><dt><a href=\"/pkg/math/\">math</a></dt>\n <dd>\n <p><!-- CL 247058 -->\n- TODO: <a href=\"https://golang.org/cl/247058\">https://golang.org/cl/247058</a...
2021-05-07T04:55:27
electron/electron
8f367f6b35559109761316aa66988c04eeda98ce
859051669b15384c4616067e180b1b106ffbf5c7
More coding style fixes
[ { "path": "brightray/browser/win/devtools_window.cc", "patch": "@@ -19,15 +19,15 @@ class WidgetDelegateView : public views::WidgetDelegateView {\n }\n \n virtual void DeleteDelegate() OVERRIDE { delete this; }\n- virtual views::View* GetContentsView() OVERRIDE{ return this; }\n+ virtual views::View* ...
2014-07-07T18:42:30
vercel/next.js
13a9fb994ab2ee822252910af8fd2990a2d56089
6827b586f0e9b2b324a8d03d6e84ad871fe4935c
Align onRecoverableError callback between pages and app dir (#44161) Should not re-throw the error on client for errors from `onRecoverableError` callback in pages, this PR share it as a same callback between pages and app dir follow up for #42589
[ { "path": "packages/next/client/app-index.tsx", "patch": "@@ -7,7 +7,7 @@ import { createFromReadableStream } from 'next/dist/compiled/react-server-dom-we\n \n import { HeadManagerContext } from '../shared/lib/head-manager-context'\n import { GlobalLayoutRouterContext } from '../shared/lib/app-router-contex...
2022-12-19T21:50:06
huggingface/transformers
7c62e69326c9e7a78a1339df7d39c9a1c5c43de0
9f927c8250165a3cc63ef7ae06736b33839495f7
`GPT2Model` StaticCache support (#35761) * initial GPT2 changes * causal_mask support * return_legacy_cache * cleanup * fix1 * outputs shape fixes * gpt2 return fix * pkv, attn fixes * fix dual_head * is_causal arg fix * decision transformer updated * style fix * batch_size from inputs_embeds * DecisionTr...
[ { "path": "src/transformers/models/clvp/modeling_clvp.py", "patch": "@@ -1589,7 +1589,6 @@ def forward(\n )\n \n @staticmethod\n- # Copied from transformers.models.gpt2.modeling_gpt2.GPT2LMHeadModel._reorder_cache\n def _reorder_cache(\n past_key_values: Tuple[Tuple[torch.Tensor]]...
2025-04-24T12:46:35
nodejs/node
2bea9cefbc10ed1dd497bbae61c07d971da287dd
214844ea4e561b0f77e97643d28b251cdc574089
dgram: implement socket.bind({ fd }) dgram: Implement binding an existing `fd`. Allow pass a `fd` property to `socket.bind()` in dgram. src: Add `UDPWrap::Open` PR-URL: https://github.com/nodejs/node/pull/21745 Fixes: https://github.com/nodejs/node/issues/14961 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> R...
[ { "path": "doc/api/dgram.md", "patch": "@@ -166,6 +166,7 @@ added: v0.11.14\n * `port` {integer}\n * `address` {string}\n * `exclusive` {boolean}\n+ * `fd` {integer}\n * `callback` {Function}\n \n For UDP sockets, causes the `dgram.Socket` to listen for datagram\n@@ -177,6 +178,11 @@ system will atte...
2018-07-29T14:41:11
golang/go
f07e4dae3c5cb608b4f0b9db57d1562d2125243b
a8d85918b63d481a414ec5ca3978d07b2b047363
syscall: document NewCallback and NewCallbackCDecl limitations Currently NewCallback and NewCallbackCDecl may only be called a limited number of times in a single Go process, but this property of the API is not documented. This change fixes that, but does not document the precise limit to avoid making that limit part ...
[ { "path": "src/syscall/syscall_windows.go", "patch": "@@ -174,13 +174,19 @@ func compileCallback(fn interface{}, cleanstack bool) uintptr\n // NewCallback converts a Go function to a function pointer conforming to the stdcall calling convention.\n // This is useful when interoperating with Windows code requ...
2021-05-19T15:46:44