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
vercel/next.js
01d40c39616ae28d71a0b3470af97c76b8e33c1b
5018c245433aeb5f27e67f32aed82d51ec9aafe0
Move all TS errors to Issue (#208)
[ { "path": "crates/turbopack-ecmascript/src/typescript/resolve.rs", "patch": "@@ -21,6 +21,13 @@ use turbopack_core::{\n source_asset::SourceAssetVc,\n };\n \n+#[turbo_tasks::value(shared)]\n+pub struct TsConfigIssue {\n+ pub severity: IssueSeverityVc,\n+ pub path: FileSystemPathVc,\n+ pub messa...
2022-10-24T02:00:48
electron/electron
4c9870e75333c720018e71c0ed3bea9b548217d5
14edfc7f7cd9ab03f56566091d321a457ab115ab
Fix debug assertion about performing IO on the UI thread We were querying the application's FILEVERSIONINFO every time we needed to figure out the path for storing BrowserContext data. Now we cache the path the first time we need it, which is during application initialization and before IO prohibitions begin.
[ { "path": "brightray/browser/browser_context.cc", "patch": "@@ -72,9 +72,13 @@ net::URLRequestContextGetter* BrowserContext::CreateRequestContext(content::Prot\n }\n \n base::FilePath BrowserContext::GetPath() {\n+ if (!path_.empty())\n+ return path_;\n+\n base::FilePath path;\n CHECK(PathService::G...
2013-06-04T18:17:16
nodejs/node
317c2e13a3b43e5bdf4f5845ec2af8f4e8d6913b
ad5307f1b4bc2d6824207717a2964c917aff1cb9
doc: fix typos in doc/changelogs/CHANGELOG_V10.md PR-URL: https://github.com/nodejs/node/pull/20265 Reviewed-By: Gus Caplan <me@gus.host> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
[ { "path": "doc/changelogs/CHANGELOG_V10.md", "patch": "@@ -92,7 +92,7 @@\n * Support for NPN (next protocol negotiation) has been dropped. [[`5bfbe5ceae`](https://github.com/nodejs/node/commit/5bfbe5ceae)]\n * The `ecdhCurve` default is now `'auto'`. [[`af78840b19`](https://github.com/nodejs/node/commit...
2018-04-24T22:33:14
golang/go
600259b099d3ba215912ce957143febe84c684fb
051bf37833780726aacf3c88f1bbec56b3540b34
cmd/compile: use depth first topological sort algorithm for layout The current layout algorithm tries to put consecutive blocks together, so the priority of the successor block is higher than the priority of the zero indegree block. This algorithm is beneficial for subsequent register allocation, but will result in mo...
[ { "path": "src/cmd/compile/internal/ssa/block.go", "patch": "@@ -358,6 +358,22 @@ func (b *Block) AuxIntString() string {\n \t}\n }\n \n+// likelyBranch reports whether block b is the likely branch of all of its predecessors.\n+func (b *Block) likelyBranch() bool {\n+\tif len(b.Preds) == 0 {\n+\t\treturn fa...
2020-07-23T02:24:56
huggingface/transformers
d2a424b55027ba1e26056a0504a3169e67697307
045c02f2090969fe4bea88749fee95fb3aa9f3b3
Fix typo (#35854)
[ { "path": "src/transformers/trainer_utils.py", "patch": "@@ -322,7 +322,7 @@ def default_hp_space_ray(trial) -> Dict[str, float]:\n \n def default_hp_space_sigopt(trial):\n return [\n- {\"bounds\": {\"min\": 1e-6, \"max\": 1e-4}, \"name\": \"learning_rate\", \"type\": \"double\", \"transformamtio...
2025-01-23T17:32:18
vercel/next.js
6687f280cfd35e2a72aded745b56f08bad787efd
9c079933213081ff1208685b8b753be540a4f5a7
Fix typos: code comment (#41691) ## Bug - [ ] Related issues linked using `fixes #number` - [ ] Integration tests added - [ ] Errors have a helpful link attached, see `contributing.md` ## Feature - [ ] Implements an existing feature request or RFC. Make sure the feature request has been accepted for implementatio...
[ { "path": "packages/next/shared/lib/router/utils/path-match.ts", "patch": "@@ -22,7 +22,7 @@ interface Options {\n \n /**\n * Generates a path matcher function for a given path and options based on\n- * path-to-regexp. By default the match will be case insesitive, non strict\n+ * path-to-regexp. By default...
2022-10-24T01:24:32
electron/electron
7f605c8442244297fd3a8072ce17e7ec50160199
600f38c94daa8baf9e429cc20d5ab7f87b54ce3b
Fix crashes in auto updater.
[ { "path": "browser/auto_updater_mac.mm", "patch": "@@ -56,18 +56,13 @@ - (void)updater:(SUUpdater*)updater\n base::Bind(&CallNSInvocation, base::Passed(invocation_ptr.Pass())));\n }\n \n-- (void)updaterWillRelaunchApplication:(SUUpdater*)updater {\n- [[SUUpdater sharedUpdater] setDelegate:nil];\n-}\n...
2013-06-03T09:58:34
nodejs/node
ad5307f1b4bc2d6824207717a2964c917aff1cb9
0cca27b3ffb9fade34aac0ee77d020fb7cac0879
doc: fix spelling of API name in 10.0.0 changelog PR-URL: https://github.com/nodejs/node/pull/20257 Refs: https://github.com/nodejs/node/pull/19403 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Gus Caplan <me@gus.h...
[ { "path": "doc/changelogs/CHANGELOG_V10.md", "patch": "@@ -58,7 +58,7 @@\n * EventEmitter\n * The `EventEmitter.prototype.off()` method has been added as an alias for `EventEmitter.prototype.removeListener()`. [[`3bb6f07d52`](https://github.com/nodejs/node/commit/3bb6f07d52)]\n * File System\n- * The `fs...
2018-04-24T20:03:12
golang/go
051bf37833780726aacf3c88f1bbec56b3540b34
15f16706fb93a0720decd175ad2147be96a8e1e4
cmd/compile/internal/ssa: handle more cases in fuse pass Currently fuseBlockIf handls four cases where s0 and s1 have only one predecessor node. In fact, even if s0 and s1 have multiple predecessor nodes, it can be optimized as well. This patch handles these cases. This CL does not bring significant performance chang...
[ { "path": "src/cmd/compile/internal/ssa/fuse.go", "patch": "@@ -51,11 +51,11 @@ func fuse(f *Func, typ fuseType) {\n \n // fuseBlockIf handles the following cases where s0 and s1 are empty blocks.\n //\n-// b b b b\n-// / \\ | \\ / | | |\n-// s0 s1 | s1 s0 | | |\...
2020-06-11T09:35:24
huggingface/transformers
045c02f2090969fe4bea88749fee95fb3aa9f3b3
71cc8161b2470f9a3ec433dff345e224eb3277d5
[DOC] Fix contamination and missing paragraph in translation (#35851) Fix contamination and missing paragraph in translation
[ { "path": "docs/source/ja/generation_strategies.md", "patch": "@@ -218,9 +218,13 @@ that\\'s a terrible feeling.\"']\n \n 貪欲探索とは異なり、ビームサーチデコーディングは各時間ステップでいくつかの仮説を保持し、最終的にシーケンス全体で最も確率が高い仮説を選択します。これにより、貪欲探索では無視されてしまう初期トークンの確率が低い高確率のシーケンスを特定する利点があります。\n \n-このデコーディング戦略を有効にするには、`num_beams`(追跡する仮説の数)を1よりも大きな値に指定し...
2025-01-23T16:33:44
vercel/next.js
3ea6a1b1554611077f2bb2af4b8ced819b820939
c1b622f35fb601812b9cdc380673b82efdf96863
add dash to error output (#206)
[ { "path": "crates/turbopack-cli-utils/src/issue.rs", "patch": "@@ -259,7 +259,7 @@ pub fn format_issue(\n \n write!(\n issue_text,\n- \"{} [{}] {}\",\n+ \"{} - [{}] {}\",\n severity.style(severity_to_style(severity)),\n category,\n plain_issue.context\n@@ -5...
2022-10-23T23:48:11
rust-lang/rust
068a33245981765c3678434d5bcb71bd63d5598a
e5fefc359bec532134013baaabc92560bfb61578
cfi: Remove #[no_sanitize(cfi)] for extern weak functions Previously (https://github.com/rust-lang/rust/pull/115200, https://github.com/rust-lang/rust/pull/138002), we added `#[no_sanitize(cfi)]` to all code paths that call to a weakly linked function. In https://github.com/rust-lang/rust/pull/138349 we fixed the roo...
[ { "path": "library/std/src/sys/fd/unix.rs", "patch": "@@ -257,9 +257,6 @@ impl FileDesc {\n }\n \n #[cfg(all(target_os = \"android\", target_pointer_width = \"32\"))]\n- // FIXME(#115199): Rust currently omits weak function definitions\n- // and its metadata from LLVM IR.\n- #[no_sanitize(c...
2025-04-11T10:15:55
electron/electron
02c5ad16f36d2605f3bb3279c46dab54a0d5d341
c6ce3b789bf11c89fe3699b13d5768f45bd6fca5
Show uncaught exception in message dialog.
[ { "path": "browser/atom/atom.coffee", "patch": "@@ -26,10 +26,14 @@ globalPaths.push path.join(__dirname, '..', '..', 'common', 'api', 'lib')\n \n # Don't quit on fatal error.\n process.on 'uncaughtException', (error) ->\n- # TODO Show error in GUI.\n+ # Show error in GUI.\n message = error.stack ? \"#{...
2013-06-02T06:55:47
golang/go
f02a26bed0f21de7aeef7a60cf62dac2e3dab737
a9b3c4bd0602f95afc58328d9953534f5e5fe4f6
time: support "," as separator for fractional seconds Accepts comma "," as a separator for fractional seconds hence we now accept: * 2006-01-02 15:04:05,999999999 -0700 MST * Mon Jan _2 15:04:05,120007 2006 * Mon Jan 2 15:04:05,120007 2006 This change follows the recommendations of ISO 8601 per https://en.wikiped...
[ { "path": "src/time/format.go", "patch": "@@ -26,13 +26,14 @@ import \"errors\"\n // compatibility with fixed-width Unix time formats.\n //\n // A decimal point followed by one or more zeros represents a fractional\n-// second, printed to the given number of decimal places. A decimal point\n-// followed by ...
2021-03-12T01:34:09
huggingface/transformers
71cc8161b2470f9a3ec433dff345e224eb3277d5
8f1509a96c96747c893051ac947795cfb0750357
Granite Vision Support (#35579) * Add multimodal granite support Signed-off-by: Alex-Brooks <Alex.Brooks@ibm.com> Support multiple image feature layres Signed-off-by: Alex-Brooks <Alex.Brooks@ibm.com> * Remove failing validation for visual encoders with no cls Signed-off-by: Alex-Brooks <Alex.Brooks@ibm.com> * U...
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -448,6 +448,8 @@\n title: Granite\n - local: model_doc/granitemoe\n title: GraniteMoe\n+ - local: model_doc/granitevision\n+ title: GraniteVision\n - local: model_doc/helium\n title: Helium\n - local:...
2025-01-23T16:15:52
nodejs/node
0cca27b3ffb9fade34aac0ee77d020fb7cac0879
7424d865236541226c0943866ad7e94c5191a763
2018-04-24, Version 10.0.0 (Current) * Assert * Calling `assert.fail()` with more than one argument is deprecated. #70dcacd710 * Calling `assert.ok()` with no arguments will now throw. #3cd7977a42 * Calling `assert.ifError()` will now throw with any argument other than `undefined` or `null`. Previously the metho...
[ { "path": "CHANGELOG.md", "patch": "@@ -8,6 +8,7 @@ release lines.\n \n Select a Node.js version below to view the changelog history:\n \n+* [Node.js 10](doc/changelogs/CHANGELOG_V10.md)\n * [Node.js 9](doc/changelogs/CHANGELOG_V9.md)\n * [Node.js 8](doc/changelogs/CHANGELOG_V8.md)\n * [Node.js 7](doc/chang...
2018-03-02T17:53:46
vercel/next.js
bed983c5759c67cd8c179f08bad603011269968c
0b921a6b66cfe9268465b48f20ee263f1d071505
Update URL malformed edge error (#41685) It seems we weren't showing the related URL in this error which makes debugging this very hard.
[ { "path": "packages/next/server/web/utils.ts", "patch": "@@ -110,7 +110,9 @@ export function validateURL(url: string | URL): string {\n return String(new URL(String(url)))\n } catch (error: any) {\n throw new Error(\n- `URLs is malformed. Please use only absolute URLs - https://nextjs.org/doc...
2022-10-23T19:39:32
electron/electron
cbb467032d60d11d2402e21405217dbd84107b72
cd42fcceb986462506a63e344bdb624878d215c0
Add process.crash() for both browser and renderer.
[ { "path": "common/api/atom_bindings.cc", "patch": "@@ -22,6 +22,7 @@ void AtomBindings::BindTo(v8::Handle<v8::Object> process) {\n v8::HandleScope scope;\n \n node::SetMethod(process, \"atomBinding\", Binding);\n+ node::SetMethod(process, \"crash\", Crash);\n }\n \n // static\n@@ -71,4 +72,10 @@ v8::Ha...
2013-06-01T08:06:29
huggingface/transformers
8f1509a96c96747c893051ac947795cfb0750357
0a950e0bbe1ed58d5401a6b547af19f15f0c195e
Fix more CI tests (#35661) add tooslow for the fat ones
[ { "path": "tests/models/gemma2/test_modeling_gemma2.py", "patch": "@@ -28,6 +28,7 @@\n require_torch,\n require_torch_gpu,\n slow,\n+ tooslow,\n torch_device,\n )\n \n@@ -209,6 +210,7 @@ def setUpClass(cls):\n # 8 is for A100 / A10 and 7 for T4\n cls.cuda_compute_c...
2025-01-23T13:45:42
golang/go
a9b3c4bd0602f95afc58328d9953534f5e5fe4f6
d7cc2f1d7c60b51c600c7d0c808610985dcd9b0c
time: add Time.IsDST() to check if its Location is in Daylight Savings Time Fixes #42102 Change-Id: I2cd2fdf67c794c3e99ed1c24786f7f779da73962 GitHub-Last-Rev: bbfa92135734cbd55895012fa492e51686a7b58b GitHub-Pull-Request: golang/go#42103 Reviewed-on: https://go-review.googlesource.com/c/go/+/264077 Run-TryBot: Ian Lan...
[ { "path": "src/time/format.go", "patch": "@@ -1152,7 +1152,7 @@ func parse(layout, value string, defaultLocation, local *Location) (Time, error)\n \n \t\t// Look for local zone with the given offset.\n \t\t// If that zone was in effect at the given time, use it.\n-\t\tname, offset, _, _ := local.lookup(t.un...
2021-03-15T22:28:31
rust-lang/rust
c285fe7256b5de9fd1db211a6491b46326d81f9c
e6b1fe4af23228fae957eb5440f4882d92072f47
Fix link to rustc_* TEST attributes in ui.md
[ { "path": "src/doc/rustc-dev-guide/src/tests/ui.md", "patch": "@@ -575,4 +575,4 @@ with \"user-facing\" Rust alone. Indeed, one could say that this slightly abuses\n the term \"UI\" (*user* interface) and turns such UI tests from black-box tests\n into white-box ones. Use them carefully and sparingly.\n \n-...
2025-04-11T09:12:46
nodejs/node
7424d865236541226c0943866ad7e94c5191a763
6946812191862bfbcb12ab971694b5e2d76fee23
build: use -9 with `kill` in Makefile Fixes: https://github.com/nodejs/node/issues/20194 PR-URL: https://github.com/nodejs/node/pull/20195 Reviewed-By: Tiancheng "Timothy" Gu <timothygu99@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Colin Ihr...
[ { "path": "Makefile", "patch": "@@ -393,7 +393,7 @@ clear-stalled:\n \tps awwx | grep Release/node | grep -v grep | cat\n \t@PS_OUT=`ps awwx | grep Release/node | grep -v grep | awk '{print $$1}'`; \\\n \tif [ \"$${PS_OUT}\" ]; then \\\n-\t\techo $${PS_OUT} | xargs kill; \\\n+\t\techo $${PS_OUT} | xargs kil...
2018-04-21T05:45:31
vercel/next.js
a105515766118da9ff7aa17967de326a9cc4a2a0
0a97d07802d1fc5c98b32a74bcc7d94dd3e61b36
Create root layout (#41523) Creates a root layout if it is missing in DEV when building the page in `next-app-loader`. If the page is in a route group, the layout will be created there. Otherwise it will create a layout directly under `/app`. Breaks the build if a page is found that's missing a root layout. ##...
[ { "path": "packages/next/build/entries.ts", "patch": "@@ -217,6 +217,9 @@ export function getAppEntry(opts: {\n appDir: string\n appPaths: string[] | null\n pageExtensions: string[]\n+ isDev?: boolean\n+ rootDir?: string\n+ tsconfigPath?: string\n }) {\n return {\n import: `next-app-loader?${...
2022-10-23T07:39:30
electron/electron
cd42fcceb986462506a63e344bdb624878d215c0
97bc6cfc81a0ac590bf81017abb07b28a7bdf81b
Add crash reporter module (based on Quincy).
[ { "path": "atom.gyp", "patch": "@@ -12,6 +12,7 @@\n 'browser/api/lib/app.coffee',\n 'browser/api/lib/atom-delegate.coffee',\n 'browser/api/lib/browser-window.coffee',\n+ 'browser/api/lib/crash-reporter.coffee',\n 'browser/api/lib/dialog.coffee',\n 'browser/api/lib/ipc.coff...
2013-06-01T07:57:37
huggingface/transformers
0a950e0bbe1ed58d5401a6b547af19f15f0c195e
4ec425ffad56cdbedfb97ab2d11243e42889f71c
Fix uploading processors/tokenizers to WandB on train end (#35701) * rename tokenizer to processing_class in WandbCallback.on_train_end * rename tokenizer to processing_class in ClearMLCallback and DVCLiveCallback
[ { "path": "src/transformers/integrations/integration_utils.py", "patch": "@@ -915,13 +915,13 @@ def on_train_begin(self, args, state, control, model=None, **kwargs):\n if not self._initialized:\n self.setup(args, state, model, **kwargs)\n \n- def on_train_end(self, args, state, contro...
2025-01-23T12:32:15
golang/go
d7cc2f1d7c60b51c600c7d0c808610985dcd9b0c
661f3f15d5c96704a2fe9e91c6c40f73ff896606
reflect: panic if ArrayOf is called with negative length Since we cannot change the signature of reflect.ArrayOf to return an error, we panic instead of producing a wrong result. Fixes #43603 Change-Id: I23915df8d190f35af4d00ab86768868cd621e839 Reviewed-on: https://go-review.googlesource.com/c/go/+/284136 Reviewed-b...
[ { "path": "src/reflect/all_test.go", "patch": "@@ -4636,6 +4636,14 @@ func TestArrayOfDirectIface(t *testing.T) {\n \t}\n }\n \n+// Ensure passing in negative lengths panics.\n+// See https://golang.org/issue/43603\n+func TestArrayOfPanicOnNegativeLength(t *testing.T) {\n+\tshouldPanic(\"reflect: negative l...
2021-01-15T15:40:20
nodejs/node
6946812191862bfbcb12ab971694b5e2d76fee23
982adb5994e940de68df5d71e2b88a3cf89f29d7
tools: modernize and optimize doc/addon-verify.js Modernize: * Replace `var` with `const` / `let`. * Replace common functions with arrow functions. * Use destructuring. * Use `String.prototype.padStart()`, `String.prototype.endsWith()`. Optimize: * Reduce function calls. * Reduce intermediate variables. * Cache retri...
[ { "path": "tools/doc/addon-verify.js", "patch": "@@ -1,68 +1,52 @@\n 'use strict';\n \n-const fs = require('fs');\n-const path = require('path');\n-const marked = require('marked');\n+const { mkdir, readFileSync, writeFile } = require('fs');\n+const { resolve } = require('path');\n+const { lexer } = require...
2018-04-21T02:41:16
vercel/next.js
0a97d07802d1fc5c98b32a74bcc7d94dd3e61b36
a1a26ca7ead555e2b1ff0e83c2a577714c044aee
Improve error messages (#41669) Same as #41636 but with a new condition. ## Bug - [ ] Related issues linked using `fixes #number` - [ ] Integration tests added - [ ] Errors have a helpful link attached, see `contributing.md` ## Feature - [ ] Implements an existing feature request or RFC. Make sure the f...
[ { "path": "packages/next-swc/crates/core/src/react_server_components.rs", "patch": "@@ -395,14 +395,9 @@ pub fn server_components<C: Comments>(\n JsWord::from(\"client-only\"),\n JsWord::from(\"react-dom/client\"),\n JsWord::from(\"react-dom/server\"),\n- // TO...
2022-10-23T05:13:34
huggingface/transformers
4ec425ffad56cdbedfb97ab2d11243e42889f71c
f3f6c86582611976e72be054675e2bf0abb5f775
Fix GA loss for Deepspeed (#35808) * Fix GA loss for Deepspeed * Turn off loss scaling in DeepSpeed engine by scale_wrt_gas * Add comment linking to PR
[ { "path": "src/transformers/trainer.py", "patch": "@@ -3722,6 +3722,11 @@ def training_step(\n if not self.model_accepts_loss_kwargs and self.compute_loss_func is None:\n loss = loss / self.args.gradient_accumulation_steps\n \n+ # Turning off loss scaling w.r.t. gradie...
2025-01-23T10:45:02
electron/electron
3d12cb2c649fa11404e993e03f5fc64690d084b0
2582e8561ce76541a90bc4f01b1e67bdf8dfcb96
Don't crash when HTML notifications are used on Windows Eventually we'll implement real support for this, but for now not crashing is more important.
[ { "path": "brightray/browser/browser_client.cc", "patch": "@@ -60,14 +60,20 @@ void BrowserClient::ShowDesktopNotification(\n int render_process_id,\n int render_view_id,\n bool worker) {\n- notification_presenter()->ShowNotification(params, render_process_id, render_view_id);\n+ auto presente...
2013-05-31T12:05:14
golang/go
661f3f15d5c96704a2fe9e91c6c40f73ff896606
de2b27dee761143116b2ecb303b67e018c5e7473
net: fix BenchmarkWriteToReadFromUDP on Windows Using 0.0.0.0 for ListenUDP listens on all addresses. Calling LocalAddr on that Conn returns 0.0.0.0. Sending to 0.0.0.0 doesn't seem to work on Windows. See #22827. Change-Id: I4a48fbabe65a63e07600a65309977cec08a9c1e5 Reviewed-on: https://go-review.googlesource.com/c/g...
[ { "path": "src/net/udpsock_test.go", "patch": "@@ -447,7 +447,7 @@ func TestUDPReadSizeError(t *testing.T) {\n }\n \n func BenchmarkWriteToReadFromUDP(b *testing.B) {\n-\tconn, err := ListenUDP(\"udp4\", new(UDPAddr))\n+\tconn, err := ListenUDP(\"udp4\", &UDPAddr{IP: IPv4(127, 0, 0, 1)})\n \tif err != nil {...
2021-03-15T22:10:21
vercel/next.js
9c7e8b661c99bd39aa315a705ae4e1ae38ac2457
aca3e989e7150e75437148779019ed8d3970d560
Remove deprecated `webpack5` config option (#41667) This option doesn't do anything except print an error since Next.js 12, so we can remove it. See previous upgrade guide: https://github.com/vercel/next.js/blob/canary/docs/upgrading.md#upgrade-nextjs-version-to-12
[ { "path": "packages/next/server/config-schema.ts", "patch": "@@ -439,11 +439,6 @@ const configSchema = {\n isFunction: true,\n errorMessage: 'must be a function that returns a Promise',\n } as any,\n- future: {\n- additionalProperties: false,\n- properties: {},\n- type: 'ob...
2022-10-23T01:11:56
nodejs/node
15fd0d95f88a57aab618cac0a91c8332c8c07498
c07c73ced78a8ad9f5aab786072fba04f5aa625c
src: fix node_crypto.cc compiler warnings Currently the following compiler warnings are issued by clang: ../src/node_crypto.cc:2801:56: warning: '&&' within '||' [-Wlogical-op-parentheses] return tag_len == 4 || tag_len == 8 || tag_len >= 12 && tag_len <= 16; ~~ ~~~~~~~~~~~~~~^~~~~...
[ { "path": "src/node_crypto.cc", "patch": "@@ -2798,7 +2798,7 @@ void CipherBase::InitIv(const FunctionCallbackInfo<Value>& args) {\n \n \n static bool IsValidGCMTagLength(unsigned int tag_len) {\n- return tag_len == 4 || tag_len == 8 || tag_len >= 12 && tag_len <= 16;\n+ return tag_len == 4 || tag_len == ...
2018-04-23T05:11:09
electron/electron
e8715f4c14087b6569bf2f2682f30758715f6e64
bb69d99423ae47e95902920bb6821b8fec6024a1
Don't emit 'open-file' event for files passed in command line. Fixes #16.
[ { "path": "browser/atom_browser_main_parts_mac.mm", "patch": "@@ -23,6 +23,11 @@\n auto mainNib = [[NSNib alloc] initWithNibNamed:mainNibName bundle:base::mac::FrameworkBundle()];\n [mainNib instantiateWithOwner:application topLevelObjects:nil];\n [mainNib release];\n+\n+ // Prevent Cocoa from turnin...
2013-05-31T02:17:40
golang/go
de2b27dee761143116b2ecb303b67e018c5e7473
e61c9ddb7f1a790f6a52f563dccb4ac264f2e704
all: run gofmt Fixes #44980 Change-Id: Icef35319d1582d8367c8911e15d11b0224957327 GitHub-Last-Rev: 2113e97e837c1ef5de9ba6a7bd62db92e644c500 GitHub-Pull-Request: golang/go#45005 Reviewed-on: https://go-review.googlesource.com/c/go/+/301632 Reviewed-by: Ian Lance Taylor <iant@golang.org> Trust: Josh Bleecher Snyder <jos...
[ { "path": "misc/cgo/testplugin/testdata/method2/main.go", "patch": "@@ -15,7 +15,7 @@ import (\n \n var t p.T\n \n-type I interface { M() }\n+type I interface{ M() }\n \n func main() {\n \tpl, err := plugin.Open(\"method2.so\")", "additions": 1, "deletions": 1, "language": "Go" }, { "pat...
2021-03-15T06:13:23
huggingface/transformers
f3f6c86582611976e72be054675e2bf0abb5f775
d3af76df58476830eb5b5981decc64af15e369f5
add qwen2.5vl (#35569) * add qwen2.5vl * fix * pass check table * add modular file * fix style * Update src/transformers/models/qwen2_5_vl/modeling_qwen2_5_vl.py Co-authored-by: Minho Shim <6764739+minostauros@users.noreply.github.com> * Update src/transformers/models/qwen2_5_vl/modeling_qwen2_5_vl.py Co-autho...
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -928,6 +928,8 @@\n title: Pix2Struct\n - local: model_doc/pixtral\n title: Pixtral\n+ - local: model_doc/qwen2_5_vl\n+ title: Qwen2.5-VL\n - local: model_doc/qwen2_audio\n title: Qwen2Audio\n - local:...
2025-01-23T10:23:00
vercel/next.js
aca3e989e7150e75437148779019ed8d3970d560
b0f87fbc7c141e6548ab90d0153aa6d1d844a9bc
Improve error message for wrong props (#41668) This PR improves the type checking error message when you have unnecessary props: ```tsx export default function Page({ whatIsThis }) { return <div>hello</div> } ``` ![CleanShot 2022-10-22 at 17 14 38@2x](https://user-images.githubusercontent.com/3676859/197367064-3aa...
[ { "path": "packages/next/build/webpack/plugins/flight-types-plugin.ts", "patch": "@@ -25,13 +25,20 @@ type TEntry = typeof entry\n \n check<IEntry, TEntry>(entry)\n \n+type PageProps = { params?: any }\n+type LayoutProps = { children: React.ReactNode; params?: any }\n+\n+type PageComponent = (props: PagePro...
2022-10-23T01:01:39
nodejs/node
e767aa1a2e5e9b7445dc0974ab21d33941f100ff
0f8caf23bed91cbbb19121a3c97bb21c703258ac
Revert "src: make process.env.TZ setter clear tz cache" This reverts commit 1d1ab76e1737da4229b3a0774c60a8fbead89040. PR-URL: https://github.com/nodejs/node/pull/20228 Fixes: https://github.com/nodejs/node/issues/20227 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Re...
[ { "path": "src/node.cc", "patch": "@@ -80,7 +80,6 @@\n #include <stdlib.h>\n #include <string.h>\n #include <sys/types.h>\n-#include <time.h> // tzset(), _tzset()\n \n #include <string>\n #include <vector>\n@@ -136,7 +135,6 @@ using v8::Array;\n using v8::ArrayBuffer;\n using v8::Boolean;\n using v8::Conte...
2018-04-23T15:33:45
electron/electron
bb69d99423ae47e95902920bb6821b8fec6024a1
9ea1f9956ef047dfc409de8f400af374dba7f10a
Use - as filename seperator for coffee script files. Fixes #15. Also clean unused files and wrong file names.
[ { "path": "atom.gyp", "patch": "@@ -10,20 +10,19 @@\n ],\n 'coffee_sources': [\n 'browser/api/lib/app.coffee',\n- 'browser/api/lib/atom_delegate.coffee',\n- 'browser/api/lib/browser_window.coffee',\n+ 'browser/api/lib/atom-delegate.coffee',\n+ 'browser/api/lib/browser-windo...
2013-05-30T12:16:54
rust-lang/rust
8cb727424dde83b841610700e40f399848e57700
923f44c6313b86f3c1eeec264dce1a4317c8bbf6
use input `def_id` to compute `movable_coroutine` This previously incorrectly returned `true` for parent functions whose first statement was `let local = <coroutine>;`. While that didn't cause any bugs as we only ever access `movable_coroutine` for `yield` terminators. It was still wrong.
[ { "path": "compiler/rustc_borrowck/src/lib.rs", "patch": "@@ -374,17 +374,8 @@ fn do_mir_borrowck<'tcx>(\n let diags_buffer = &mut BorrowckDiagnosticsBuffer::default();\n nll::dump_annotation(&infcx, body, &regioncx, &opt_closure_req, diags_buffer);\n \n- let movable_coroutine =\n- // The firs...
2025-04-11T08:42:45
golang/go
e61c9ddb7f1a790f6a52f563dccb4ac264f2e704
8ed438c077d82c4b4662c327dbbdb3c64e7547ca
Revert "cmd/compile: spill output parameters passed in registers as autos" This reverts commit 8ed438c077d82c4b4662c327dbbdb3c64e7547ca, CL 300749. Reason for revert: Looks like it crashes on link-register architectures Change-Id: I0c261df58900008cada3359889d2a87508158447 Reviewed-on: https://go-review.googlesource....
[ { "path": "src/cmd/compile/internal/abi/abiutils.go", "patch": "@@ -69,14 +69,6 @@ func (a *ABIParamResultInfo) SpillAreaSize() int64 {\n \treturn a.spillAreaSize\n }\n \n-// ArgWidth returns the amount of stack needed for all the inputs\n-// and outputs of a function or method, including ABI-defined parame...
2021-03-15T21:12:08
huggingface/transformers
d3af76df58476830eb5b5981decc64af15e369f5
8736e91ad602c5dc436b5403bb8c5249fbb13941
[Backend support] Allow `num_logits_to_keep` as Tensor + add flag (#35757) * support * Update modeling_utils.py * style * most models * Other models * fix-copies * tests + generation utils
[ { "path": "src/transformers/generation/candidate_generator.py", "patch": "@@ -129,9 +129,9 @@ def __init__(\n value.detach().to(device) if isinstance(value, torch.Tensor) else copy.deepcopy(value)\n )\n \n- # Remove potential default \"num_logits_to_keep\" key\n- ...
2025-01-23T08:47:54
electron/electron
37d847c416712e9b8ed0468538456a552fa77881
51cb56e604fe44420b59a956b6ca2069f2412c8a
Fix linker errors about __imp___CrtDbgReportW We were linking against the release CRT but defining _DEBUG, which should only be defined when using the debug CRT.
[ { "path": "brightray/brightray.gypi", "patch": "@@ -80,7 +80,6 @@\n 'msvs_settings': {\n 'VCCLCompilerTool': {\n 'Optimization': '<(win_debug_Optimization)',\n- 'PreprocessorDefinitions': ['_DEBUG'],\n 'BasicRuntimeChecks': '<(win_debug_RuntimeChecks)',\n...
2013-05-28T15:55:25
nodejs/node
0f8caf23bed91cbbb19121a3c97bb21c703258ac
3bcd8576fcb800077c922233da251a2299b66923
n-api: initialize a module via a special symbol Much like regular modules, N-API modules can also benefit from having a special symbol which they can expose. Fixes: https://github.com/nodejs/node/issues/19845 PR-URL: https://github.com/nodejs/node/pull/20161 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
[ { "path": "doc/api/n-api.md", "patch": "@@ -982,6 +982,32 @@ napi_value Init(napi_env env, napi_value exports) {\n }\n ```\n \n+If you expect that your module will be loaded multiple times during the lifetime\n+of the Node.js process, you can use the `NAPI_MODULE_INIT` macro to initialize\n+your module:\n+\...
2018-04-21T02:57:33
golang/go
8ed438c077d82c4b4662c327dbbdb3c64e7547ca
96aecdcb36ad5240a9858f7f7d77ace30f2deaaa
cmd/compile: spill output parameters passed in registers as autos ALSO: found evidence that stack maps for bodyless methods are wrong. gofmt in test/abi removed never-executed code in types/size.go Updates #44816. Change-Id: I658c33f049337fb6f1e625f0c55430d25bfa877e Reviewed-on: https://go-review.googlesource.com/c/...
[ { "path": "src/cmd/compile/internal/abi/abiutils.go", "patch": "@@ -69,6 +69,14 @@ func (a *ABIParamResultInfo) SpillAreaSize() int64 {\n \treturn a.spillAreaSize\n }\n \n+// ArgWidth returns the amount of stack needed for all the inputs\n+// and outputs of a function or method, including ABI-defined parame...
2021-03-11T01:54:11
huggingface/transformers
2c3a44f9a769e98597d62ecdc7383785318be5a2
fdcc62c855b3a0565e8bf173ac57842f4939b19d
Fix NoneType type as it requires py>=3.10 (#35843) fix type
[ { "path": "src/transformers/utils/chat_template_utils.py", "patch": "@@ -19,7 +19,6 @@\n from contextlib import contextmanager\n from datetime import datetime\n from functools import lru_cache\n-from types import NoneType\n from typing import Any, Callable, Dict, List, Optional, Tuple, Union, get_args, get_...
2025-01-22T15:56:53
nodejs/node
3bcd8576fcb800077c922233da251a2299b66923
de96899f239f4b5cda5a597f70d871a95e6f9ac3
build: limit assembler version check on x86 The current openssl checks assembler version only x86_64 or ia32 target arch for use of AES-NI, AVX and AVX2. This requires --openssl-no-asm option during configure when an older assembler version is found only on x86_64 or ia32. PR-URL: https://github.com/nodejs/node/pull/...
[ { "path": "BUILDING.md", "patch": "@@ -94,14 +94,16 @@ Depending on host platform, the selection of toolchains may vary.\n #### OpenSSL asm support\n \n OpenSSL-1.1.0 requires the following asssembler version for use of asm\n-support.\n+support on x86_64 and ia32.\n \n * gas (GNU assembler) version 2.23 or ...
2018-04-23T12:26:28
golang/go
96aecdcb36ad5240a9858f7f7d77ace30f2deaaa
c2360956389a30a27407fb857fd4916f20f8dc01
cmd/compile: fix case where func-valued field of a generic type is called Added test example orderedmap.go (binary search tree) that requires this fix (calling function compare in _Map). Also added new tests slices.go and metrics.go that just work. Change-Id: Ifa5f42ab6eee9aa54c40f0eca19e00a87f8f608a Reviewed-on: ht...
[ { "path": "src/cmd/compile/internal/noder/stencil.go", "patch": "@@ -389,6 +389,13 @@ func (subst *subster) node(n ir.Node) ir.Node {\n \t\t\t\ttypecheck.Callee(call.X)\n \t\t\t\tcall.SetTypecheck(0)\n \t\t\t\ttypecheck.Call(call)\n+\t\t\t} else if call.X.Op() == ir.ODOT || call.X.Op() == ir.ODOTPTR {\n+\t\...
2021-03-14T20:46:23
huggingface/transformers
3b9770581e4552359ca227da57486dfc89e045a4
62bd83947a95ee209600c4972e2bd11926a4f47a
Fix compatibility issues when using auto_gptq with these older versions (#35830) convert_model method of optimum only accepts a single nn.Module type model parameter for versions less than 1.23.99.
[ { "path": "src/transformers/quantizers/quantizer_gptq.py", "patch": "@@ -100,7 +100,11 @@ def _process_model_before_weight_loading(self, model: \"PreTrainedModel\", **kwarg\n raise RuntimeError(\"We can only quantize pure text model.\")\n \n if self.pre_quantized:\n- model = s...
2025-01-22T14:46:47
vercel/next.js
b0f87fbc7c141e6548ab90d0153aa6d1d844a9bc
73499e4bd88522fba3d2062e23e25758bf8a6757
Bundle ssr client layer excepts react externals (#41606) Bundle the ssr client layer for RSC, this solves the problem when there's an esm package is using on client components, but esm imports the installed react instead of the built-in react version since esm imports is not intercepted by require hook. After bu...
[ { "path": "package.json", "patch": "@@ -39,7 +39,6 @@\n \"lint-staged\": \"lint-staged\",\n \"next-with-deps\": \"./scripts/next-with-deps.sh\",\n \"next\": \"node --trace-deprecation --enable-source-maps packages/next/dist/bin/next\",\n- \"next-react-exp\": \"__NEXT_REACT_CHANNEL=exp node --...
2022-10-22T23:33:51
nodejs/node
de96899f239f4b5cda5a597f70d871a95e6f9ac3
65db8c70c96db4f730df0b7e38fbc0d9f2f67f25
build: require --openssl-no-asm if old assembler PR-URL: https://github.com/nodejs/node/pull/20226 Fixes: https://github.com/nodejs/node/issues/19944 Refs: https://github.com/nodejs/node/pull/20217 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Ali Ijaz Sheikh <ofrobots@google.com> Reviewed-By: Myles Bori...
[ { "path": "configure", "patch": "@@ -650,7 +650,7 @@ def get_version_helper(cc, regexp):\n if match:\n return match.group(2)\n else:\n- return 0\n+ return '0'\n \n def get_nasm_version(asm):\n try:\n@@ -661,15 +661,15 @@ def get_nasm_version(asm):\n warn('''No acceptable ASM compiler fou...
2018-04-23T06:49:13
huggingface/transformers
62bd83947a95ee209600c4972e2bd11926a4f47a
487e2f63bd232fa57395c13aae4e6628b78acacb
[chat] docs fix (#35840) docs fix
[ { "path": "docs/source/en/chat_templating.md", "patch": "@@ -64,7 +64,7 @@ for you, allowing you to write universal code that works for any model.\n \n <Tip>\n \n-Chat templates are a critical component of our [`transformers-cli chat` CLI](quicktour#chat-with-text-generation-models).\n+Chat templates are a ...
2025-01-22T14:32:27
golang/go
c2360956389a30a27407fb857fd4916f20f8dc01
dca9c11845a950130c37f4f4e5ffb55848ff7155
cmd/compile: add support for generic maps Add support for maps in subster.typ(). Add new test cases maps.go and set.go. Change substitution of a TFUNC in subster.typ() to always create new param and result structs if any of the receiver, param, or result structs get substituted. All these func structs must be copied,...
[ { "path": "src/cmd/compile/internal/noder/stencil.go", "patch": "@@ -461,9 +461,11 @@ 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 subs...
2021-03-15T03:13:05
electron/electron
f3a8a0741cf3c8c0622d80e996153fec5dfa3155
0bab9a9d84f9238a68628398dffea0d8641c7c56
Use the new way of reporting exception in node context. More on this can be found at: https://github.com/atom/cefode/commit/3c0fc7ad9fa27c7a7c42d3fec4c9f413c88b1835
[ { "path": "renderer/atom_render_view_observer.cc", "patch": "@@ -17,10 +17,9 @@\n \n using WebKit::WebFrame;\n \n-namespace webkit_atom {\n-extern void SetNodeContext(v8::Persistent<v8::Context> context);\n-extern void SetEnterFirstWindowContext(bool (*func)());\n-extern void SetIsValidWindowContext(bool (*...
2013-05-23T05:49:13
vercel/next.js
73499e4bd88522fba3d2062e23e25758bf8a6757
0b669a1fa748be37c5796722c13bfaf4c7c5e62b
Add experimental warning note (#41666) ## Bug - [ ] Related issues linked using `fixes #number` - [ ] Integration tests added - [ ] Errors have a helpful link attached, see `contributing.md` ## Feature - [ ] Implements an existing feature request or RFC. Make sure the feature request has been accepted for impleme...
[ { "path": "packages/next/build/webpack-config.ts", "patch": "@@ -593,6 +593,11 @@ export default async function getBaseWebpackConfig(\n 'You are using the experimental Node.js Runtime with `experimental.runtime`.'\n )\n }\n+ if (config.experimental.appDir) {\n+ Log.warn(\n+ ...
2022-10-22T23:20:22
nodejs/node
65db8c70c96db4f730df0b7e38fbc0d9f2f67f25
63cae79a58f1a40e397f2c39a91ae3f038019aaf
build: extract error() function in configure PR-URL: https://github.com/nodejs/node/pull/20226 Fixes: https://github.com/nodejs/node/issues/19944 Refs: https://github.com/nodejs/node/pull/20217 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Ali Ijaz Sheikh <ofrobots@google.com> Reviewed-By: Myles Borins <...
[ { "path": "configure", "patch": "@@ -573,6 +573,11 @@ options.prefix = os.path.expanduser(options.prefix or '')\n auto_downloads = nodedownload.parse(options.download_list)\n \n \n+def error(msg):\n+ prefix = '\\033[1m\\033[31mERROR\\033[0m' if os.isatty(1) else 'ERROR'\n+ print('%s: %s' % (prefix, msg))\...
2018-04-23T06:48:37
huggingface/transformers
487e2f63bd232fa57395c13aae4e6628b78acacb
b3d672246993affc4179b2b7ed3ee09913a66c37
Fix `head_dim` in config extracted from Gemma2 GGUF model (#35818) fix gemma2 head dim Signed-off-by: Isotr0py <2037008807@qq.com> Co-authored-by: Mohamed Mekkouri <93391238+MekkCyber@users.noreply.github.com>
[ { "path": "src/transformers/integrations/ggml.py", "patch": "@@ -198,6 +198,9 @@\n \"embedding_length\": \"hidden_size\",\n \"rope.dimension_count\": None,\n \"rope.freq_base\": \"rope_theta\",\n+ # NOTE: Gemma2 has key_length==value_length==head_dim\n+ # See: https://g...
2025-01-22T14:22:04
golang/go
dca9c11845a950130c37f4f4e5ffb55848ff7155
bd6aeca9686d5e672ffda1ea0cfeac7a3e7a20a4
cmd/compile: add support for generic channels and type conversion during calls Add support for channels in subster.typ(). Add new test file chans.go. To support assignability of bidirectional channel args to directional channel params, I needed to type check generic calls after they are instantiated. (Eventually, we...
[ { "path": "src/cmd/compile/internal/noder/helpers.go", "patch": "@@ -138,30 +138,19 @@ func Call(pos src.XPos, typ *types.Type, fun ir.Node, args []ir.Node, dots bool)\n \t\treturn n\n \t}\n \tif fun.Op() != ir.OFUNCINST {\n-\t\t// If no type params, still do normal typechecking, since we're\n-\t\t// still ...
2021-03-14T06:41:51
electron/electron
1ec7280663cd2db472ae007f0fbcc072e7b6aeef
18b64f375cfe4b81b6be08b4206cdfc3df0d0289
Link against the DLL version of the CRT * vendor/libchromiumcontent 04ccdd8...31efc77 (3): > Use the DLL version of the CRT > Generate libchromiumcontent-symbols.zip on Windows > Fix exporting of WebKit symbols
[ { "path": "brightray/brightray.gypi", "patch": "@@ -8,8 +8,8 @@\n 'mac_deployment_target%': '10.8',\n 'mac_sdkroot%': 'macosx',\n \n- 'win_release_RuntimeLibrary%': '0', # /MT (nondebug static)\n- 'win_debug_RuntimeLibrary%': '1', # /MTd (debug static)\n+ 'win_release_RuntimeLibrary%': '2',...
2013-05-22T15:16:56
vercel/next.js
0b669a1fa748be37c5796722c13bfaf4c7c5e62b
e0b04f22e39eb7138c195fcaa4a35bc004bdaefb
Improve errors for invalid component export (#41657) Checking if app dir exported components (page/layout/etc.) are valid components in dev mode, also update `react-is` to detect module reference properly Co-authored-by: JJ Kasper <22380829+ijjk@users.noreply.github.com>
[ { "path": "packages/next/compiled/react-is/build-info.json", "patch": "@@ -1,8 +0,0 @@\n-{\n- \"branch\": \"pull/21051\",\n- \"buildNumber\": \"287151\",\n- \"checksum\": \"94f5c65\",\n- \"commit\": \"12adaffef\",\n- \"environment\": \"ci\",\n- \"reactVersion\": \"17.0.0-12adaffef\"\n-}", "additio...
2022-10-22T22:44:19
huggingface/transformers
a7738f5a89640ea2d8e012fba746e3d5242a40d6
ec28957f942488a59d343d68ab70e1f39eb16ccf
Fix : Nemotron tokenizer for GGUF format (#35836) fix nemotron gguf
[ { "path": "src/transformers/models/auto/tokenization_auto.py", "patch": "@@ -339,6 +339,7 @@\n (\"musicgen_melody\", (\"T5Tokenizer\", \"T5TokenizerFast\" if is_tokenizers_available() else None)),\n (\"mvp\", (\"MvpTokenizer\", \"MvpTokenizerFast\" if is_tokenizers_available() else N...
2025-01-22T11:28:40
nodejs/node
63cae79a58f1a40e397f2c39a91ae3f038019aaf
12b90b4546cdfef1adabaa661a33c98173a1a3f5
doc: add parameters for Http2Session:error event Add parameters for the callback for the Http2Session:error event inline with the pattern in the rest of the documentation. Refs: https://github.com/nodejs/help/issues/877#issuecomment-381253464 PR-URL: https://github.com/nodejs/node/pull/20206 Reviewed-By: Matteo Coll...
[ { "path": "doc/api/http2.md", "patch": "@@ -149,6 +149,8 @@ User code will typically not listen for this event directly.\n added: v8.4.0\n -->\n \n+* `error` {Error}\n+\n The `'error'` event is emitted when an error occurs during the processing of\n an `Http2Session`.\n ", "additions": 2, "deletions...
2018-04-21T21:19:45
golang/go
bd6aeca9686d5e672ffda1ea0cfeac7a3e7a20a4
a9cfd55e2b09735a25976d1b008a0a3c767494f8
runtime: prepare arenas for use incrementally This change moves the call of sysMap from (*mheap).sysAlloc into (*mheap).grow, so we only sysMap what we're going to use in the near future (thanks to the curArena mechanism). The purpose of this change is to better support systems with strict overcommit rules which gener...
[ { "path": "src/runtime/export_test.go", "patch": "@@ -404,9 +404,6 @@ func ReadMemStatsSlow() (base, slow MemStats) {\n \t\t\tslow.HeapReleased += uint64(pg) * pageSize\n \t\t}\n \n-\t\t// Unused space in the current arena also counts as released space.\n-\t\tslow.HeapReleased += uint64(mheap_.curArena.end ...
2020-11-16T21:57:32
electron/electron
6a8ee865f4ceb00cd041666135ffaa69e9f755bd
7e03f93dcdf5a24257d4b4e3b675ce7bc9959b50
Fix linker errors about missing Win32 APIs
[ { "path": "brightray/brightray.gypi", "patch": "@@ -68,6 +68,7 @@\n 'VCLinkerTool': {\n 'AdditionalDependencies': [\n 'advapi32.lib',\n+ 'user32.lib',\n ],\n },\n },", "additions": 1, "deletions": 0, "language": "Unkn...
2013-05-21T15:42:26
vercel/next.js
e0b04f22e39eb7138c195fcaa4a35bc004bdaefb
4ce259fa3e9906fef4b09c62c180e5866a513d85
feat(cna): add template (#41660) Adds a new template for `app/` via `--experimental-app` flag. ## Bug - [ ] Related issues linked using `fixes #number` - [ ] Integration tests added - [ ] Errors have a helpful link attached, see `contributing.md` ## Feature - [ ] Implements an existing feature request or...
[ { "path": "packages/create-next-app/create-app.ts", "patch": "@@ -29,15 +29,21 @@ export async function createApp({\n example,\n examplePath,\n typescript,\n+ experimentalApp,\n }: {\n appPath: string\n packageManager: PackageManager\n example?: string\n examplePath?: string\n- typescript?: ...
2022-10-22T21:18:39
huggingface/transformers
36c9181f5cc748b174f02f133ff17376e3969e4c
f439e28d32c9fa061c4fd90696ba0b158d273d09
[gpt2] fix generation tests (#35822) fix gpt2 generation tests
[ { "path": "tests/models/gpt2/test_modeling_gpt2.py", "patch": "@@ -651,16 +651,18 @@ def test_batch_generation(self):\n outputs = model.generate(\n input_ids=input_ids,\n attention_mask=inputs[\"attention_mask\"].to(torch_device),\n+ max_length=20,\n )\n \n...
2025-01-22T09:41:04
nodejs/node
67e2a15d758035e16f3fc4dbe1d56033277765bb
87868896565268bab9ba2788faa48d8977c8213d
net: honor default values in Socket constructor Specifically `readable` and `writable` that default to `false`. PR-URL: https://github.com/nodejs/node/pull/19971 Fixes: https://github.com/libuv/libuv/issues/1794 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Anatoli Papirovski <apapirovski@mac.com>
[ { "path": "lib/internal/child_process.js", "patch": "@@ -131,8 +131,11 @@ const handleConversion = {\n },\n \n got: function(message, handle, emit) {\n- var socket = new net.Socket({ handle: handle });\n- socket.readable = socket.writable = true;\n+ var socket = new net.Socket({\n+ ...
2018-04-12T09:15:31
golang/go
a9cfd55e2b09735a25976d1b008a0a3c767494f8
4d014e723165f28b34458edb4aa9136e0fb4c702
encoding/xml: replace comments inside directives with a space A Directive (like <!ENTITY xxx []>) can't have other nodes nested inside it (in our data structure representation), so there is no way to preserve comments. The previous behavior was to just elide them, which however might change the semantic meaning of the...
[ { "path": "src/encoding/xml/xml.go", "patch": "@@ -768,6 +768,12 @@ func (d *Decoder) rawToken() (Token, error) {\n \t\t\t\t\t}\n \t\t\t\t\tb0, b1 = b1, b\n \t\t\t\t}\n+\n+\t\t\t\t// Replace the comment with a space in the returned Directive\n+\t\t\t\t// body, so that markup parts that were separated by the...
2020-10-26T23:21:30
electron/electron
12d01e4fd58aee3947f7c49c67319a4a92516ad2
12773cff6ed32e7472764f375e9a33b3eefd967e
ifdef out a bunch of Mac-specific code This is a hacky solution but helps us deal with other compiler/linker errors.
[ { "path": "brightray/browser/browser_client.cc", "patch": "@@ -34,8 +34,10 @@ BrowserContext* BrowserClient::browser_context() {\n }\n \n NotificationPresenter* BrowserClient::notification_presenter() {\n+#if defined(OS_MACOSX)\n if (!notification_presenter_)\n notification_presenter_.reset(Notificati...
2013-05-21T15:39:25
huggingface/transformers
f439e28d32c9fa061c4fd90696ba0b158d273d09
373e50e9703024eeb09f97945fdefde80acc2619
Hotfix: missing `working-directory` in `self-comment-ci.yml` (#35833) fix Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": ".github/workflows/self-comment-ci.yml", "patch": "@@ -213,6 +213,7 @@ jobs:\n - name: Verify merge commit SHA\n env:\n VERIFIED_PR_MERGE_SHA: ${{ needs.get-sha.outputs.PR_MERGE_SHA }}\n+ working-directory: /transformers\n run: |\n PR_MERGE_SHA=$(...
2025-01-22T09:25:50
vercel/next.js
2e2cc5597aaeac7b52d77ffd41e4c8e40ec48d91
d260ad2adfbcacf6c3b6d16559f9d58811d9aff1
chore(examples): fix typo in [videoId].tsx (#41655) bellow -> below ## Bug - [ ] Related issues linked using `fixes #number` - [ ] Integration tests added - [ ] Errors have a helpful link attached, see `contributing.md` ## Feature - [ ] Implements an existing feature request or RFC. Make sure the feature request...
[ { "path": "examples/with-apivideo/pages/videos/[videoId].tsx", "patch": "@@ -63,7 +63,7 @@ const VideoView: NextPage<IVideoViewProps> = ({\n .<br />\n It provides multiple properties to customize your video player.\n </p>\n- <p>Try 3 of them just bellow 👇</p>\n+ ...
2022-10-22T19:10:37
golang/go
4d014e723165f28b34458edb4aa9136e0fb4c702
cc4e6160a78742bba6ac8e9be225cd7a58da7a60
encoding/xml: handle leading, trailing, or double colons in names Before this change, <:name> would parse as <name>, which could cause issues in applications that rely on the parse-encode cycle to round-trip. Similarly, <x name:=""> would parse as expected but then have the attribute dropped when serializing because i...
[ { "path": "src/encoding/xml/xml.go", "patch": "@@ -1156,8 +1156,9 @@ func (d *Decoder) nsname() (name Name, ok bool) {\n \tif !ok {\n \t\treturn\n \t}\n-\ti := strings.Index(s, \":\")\n-\tif i < 0 {\n+\tif strings.Count(s, \":\") > 1 {\n+\t\tname.Local = s\n+\t} else if i := strings.Index(s, \":\"); i < 1 |...
2020-10-26T23:17:15
huggingface/transformers
373e50e9703024eeb09f97945fdefde80acc2619
870e2c8ea0b4634f2e06d8b99cb92e08a1a45696
Init cache on meta device (#35164) * init cache on meta device * offloaded static + enable tests * tests weren't running before :( * update * fix mamba * fix copies * update * address comments and fix tests * fix copies * Update src/transformers/cache_utils.py Co-authored-by: Arthur <485...
[ { "path": "src/transformers/cache_utils.py", "patch": "@@ -1069,12 +1069,15 @@ class StaticCache(Cache):\n The maximum sequence length with which the model will be used.\n device (`torch.device` or `str`):\n The device on which the cache should be initialized. Should be the s...
2025-01-22T08:49:17
electron/electron
12773cff6ed32e7472764f375e9a33b3eefd967e
2813bef7411ef1dbf56611160062e1e4226a417b
Fix linker errors about missing registry APIs
[ { "path": "brightray/brightray.gypi", "patch": "@@ -64,6 +64,13 @@\n 'IntermediateDirectory': '$(OutDir)\\\\obj\\\\$(ProjectName)',\n 'CharacterSet': '1',\n },\n+ 'msvs_settings': {\n+ 'VCLinkerTool': {\n+ 'AdditionalDependencies': [\n+ 'ad...
2013-05-21T15:30:43
vercel/next.js
8fa162d5c567bbaba510f44dfd6c374a2d7243cf
722930a00610c265f1ffa7468befd435d0ed9d22
fix app layouts (vercel/turbo#190) Seems like app layout was left behind while shipping features to normal SSR rendering * fixes fallback error pages (update to error fallback changes) * fixes process communication (update to api route changes) * avoid busy looping * update to next.js updates * fix resolving c...
[ { "path": "packages/next-swc/crates/next-core/js/package.json", "patch": "@@ -9,11 +9,10 @@\n \"build:compiled\": \"node build.mjs\"\n },\n \"dependencies\": {\n- \"@next/react-refresh-utils\": \"^12.2.5\",\n \"@vercel/turbopack-runtime\": \"latest\",\n \"anser\": \"2.1.1\",\n \"css.e...
2022-10-22T17:47:59
golang/go
a8d9fb2fcd1fc11b41651e0ea608b3a3e90755b7
c4190fc34dbfe8c7859a91b07ed31a33633d08df
cmd/internal/moddeps: fix typo in TestAllDependencies log messages s/dependecies/dependencies/ Change-Id: I454668a36192e345965173d76be12cbd5917ea34 Reviewed-on: https://go-review.googlesource.com/c/go/+/301849 Trust: Tobias Klauser <tobias.klauser@gmail.com> Run-TryBot: Tobias Klauser <tobias.klauser@gmail.com> TryBo...
[ { "path": "src/cmd/internal/moddeps/moddeps_test.go", "patch": "@@ -61,7 +61,7 @@ func TestAllDependencies(t *testing.T) {\n \t\t\t\t_, err := cmd.Output()\n \t\t\t\tif err != nil {\n \t\t\t\t\tt.Errorf(\"%s: %v\\n%s\", strings.Join(cmd.Args, \" \"), err, cmd.Stderr)\n-\t\t\t\t\tt.Logf(\"(Run 'go mod vendor...
2021-03-15T16:54:35
huggingface/transformers
870e2c8ea0b4634f2e06d8b99cb92e08a1a45696
f4f33a20a23aa90f3510280e34592b2784d48ebe
Another security patch for `self-comment-ci.yml` (#35816) fix Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": ".github/workflows/self-comment-ci.yml", "patch": "@@ -58,6 +58,7 @@ jobs:\n if: ${{ needs.get-pr-number.outputs.PR_NUMBER != ''}}\n outputs:\n PR_HEAD_SHA: ${{ steps.get_sha.outputs.PR_HEAD_SHA }}\n+ PR_MERGE_SHA: ${{ steps.get_sha.outputs.PR_MERGE_SHA }}\n steps:\n -...
2025-01-22T08:29:54
electron/electron
0bab9a9d84f9238a68628398dffea0d8641c7c56
d265121ed06417b0946aa36d39ccd93bdeb70baf
Support key combinations of over 4 keys. Fixes #12.
[ { "path": "browser/accelerator_util.cc", "patch": "@@ -42,7 +42,7 @@ bool StringToAccelerator(const std::string& description,\n \n std::vector<std::string> tokens;\n base::SplitString(shortcut, '+', &tokens);\n- if (tokens.size() < 2 || tokens.size() > 3) {\n+ if (tokens.size() < 2 || tokens.size() > ...
2013-05-22T06:20:16
vercel/next.js
2c329964897edcb81d4298d245931c7c0aa76355
0b3c59830845d5cf63cb5b3ed9af5c660e3d8977
fix app layouts (#190) Seems like app layout was left behind while shipping features to normal SSR rendering * fixes fallback error pages (update to error fallback changes) * fixes process communication (update to api route changes) * avoid busy looping * update to next.js updates * fix resolving cycle * fix ...
[ { "path": "crates/next-core/js/package.json", "patch": "@@ -9,11 +9,10 @@\n \"build:compiled\": \"node build.mjs\"\n },\n \"dependencies\": {\n- \"@next/react-refresh-utils\": \"^12.2.5\",\n \"@vercel/turbopack-runtime\": \"latest\",\n \"anser\": \"2.1.1\",\n \"css.escape\": \"1.5.1\"...
2022-10-22T17:47:59
huggingface/transformers
f4f33a20a23aa90f3510280e34592b2784d48ebe
90b46e983f755335e12f8bb74b90da60b2726d98
Remove pyav pin to allow python 3.11 to be used (#35823) * Remove pyav pin to allow python 3.11 to be used * Run make fixup --------- Co-authored-by: Louis Groux <louis.cal.groux@gmail.com>
[ { "path": "setup.py", "patch": "@@ -97,7 +97,7 @@\n _deps = [\n \"Pillow>=10.0.1,<=15.0\",\n \"accelerate>=0.26.0\",\n- \"av==9.2.0\", # Latest version of PyAV (10.0.0) has issues with audio stream.\n+ \"av\",\n \"beautifulsoup4\",\n \"blobfile\",\n \"codecarbon>=2.8.1\",", "a...
2025-01-21T20:16:18
golang/go
8ac6544564be04ed1c0bbf7831ad0f8ed1f067ed
0f4bb9627ebc27d4e669e41d7f58396e063abb70
bytes: correct tense in comment Undo incorrect change accidentally made in CL 299109. Change-Id: Iba29827d0fbd3637c311cebc50c2f4ea437fc582 Reviewed-on: https://go-review.googlesource.com/c/go/+/301830 Trust: Ian Lance Taylor <iant@golang.org> Reviewed-by: Tobias Klauser <tobias.klauser@gmail.com>
[ { "path": "src/bytes/buffer.go", "patch": "@@ -387,7 +387,7 @@ var errUnreadByte = errors.New(\"bytes.Buffer: UnreadByte: previous operation was\n \n // UnreadByte unreads the last byte returned by the most recent successful\n // read operation that read at least one byte. If a write has happened since\n-//...
2021-03-15T17:03:30
nodejs/node
87868896565268bab9ba2788faa48d8977c8213d
54e112dd61a5af6622f66cabca67474ae93113eb
build: normalise test.py calls to use PARALLEL_ARGS PR-URL: https://github.com/nodejs/node/pull/20124 Fixes: https://github.com/nodejs/node/issues/20065 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Ruben Bridg...
[ { "path": "Makefile", "patch": "@@ -18,6 +18,8 @@ PWD = $(CURDIR)\n \n ifdef JOBS\n PARALLEL_ARGS = -j $(JOBS)\n+else\n+ PARALLEL_ARGS = -J\n endif\n \n ifdef ENABLE_V8_TAP\n@@ -232,7 +234,7 @@ v8:\n \n .PHONY: jstest\n jstest: build-addons build-addons-napi ## Runs addon tests and JS tests\n-\t$(PYTHON)...
2018-04-18T09:18:38
electron/electron
d265121ed06417b0946aa36d39ccd93bdeb70baf
2bb33d8b323c87759d00e9b5ff7146d0ea2cfb12
Force running uv loop under a handle scope. Fixed #13.
[ { "path": "common/node_bindings_mac.mm", "patch": "@@ -64,6 +64,7 @@ void UvNoOp(uv_async_t* handle, int status) {\n DCHECK(!is_browser_ || BrowserThread::CurrentlyOn(BrowserThread::UI));\n \n // Enter node context while dealing with uv events.\n+ v8::HandleScope scope;\n v8::Context::Scope context_s...
2013-05-22T01:13:32
vercel/next.js
b5251604e031503a0777add5e7c17b49242ec0a7
9dae7a89d097ef17df04f90ffd2d650c5f815201
layout: add build status for app routes (#41627) Adds support for: - outputting what kind of build we did for routes in the app folder: SSR, SSG, static - adds the list of SSG'd routes - adds JS size for app routes # before <img width="512" alt="image" src="https://user-images.githubusercontent.com/11064311...
[ { "path": "packages/next/build/index.ts", "patch": "@@ -1365,148 +1365,152 @@ export default async function build(\n \n if (pageType === 'app' && originalAppPath) {\n appNormalizedPaths.set(originalAppPath, page)\n-\n // TODO-APP: handle preren...
2022-10-22T17:04:53
huggingface/transformers
107f9f51271937589f25f59dcfab8a5aebb6dbe3
3df90103b859c6194958553b5a05ed89b6b178f3
add Qwen2-VL image processor fast (#35733) * add qwen2_vl image processor fast * add device to ImagesKwargs * remove automatic fix copies * fix fast_is_faster_than_slow * remove unnecessary import
[ { "path": "docs/source/en/model_doc/qwen2_vl.md", "patch": "@@ -315,6 +315,11 @@ model = Qwen2VLForConditionalGeneration.from_pretrained(\n [[autodoc]] Qwen2VLImageProcessor\n - preprocess\n \n+## Qwen2VLImageProcessorFast\n+\n+[[autodoc]] Qwen2VLImageProcessorFast\n+ - preprocess\n+\n ## Qwen2VLProc...
2025-01-21T16:49:05
golang/go
0f4bb9627ebc27d4e669e41d7f58396e063abb70
7bfe32f39c59056c49f5776b104beaf09b010088
cmd/compile: fix outdated comment variable xtop has removed and refactored after go 1.16, but there are comments referring xtop. It may mislead new contributors to be confused. Change-Id: Id79c747d8daef14049b29e70a4ecd34054a28a5e GitHub-Last-Rev: 94b55208862fdc9fa0de39aacf2c9ef9987cef56 GitHub-Pull-Request: golang/g...
[ { "path": "src/cmd/compile/internal/typecheck/func.go", "patch": "@@ -308,7 +308,7 @@ func tcClosure(clo *ir.ClosureExpr, top int) {\n \t\treturn\n \t}\n \n-\t// Don't give a name and add to xtop if we are typechecking an inlined\n+\t// Don't give a name and add to Target.Decls if we are typechecking an inl...
2021-03-14T13:43:26
electron/electron
2bb33d8b323c87759d00e9b5ff7146d0ea2cfb12
d19e62d8672b679914d1f7639f6e69d49be25ae0
Rewrite dialog API with our simpler blocking dialog implementations. Fixed #9, fixed #10.
[ { "path": "atom.gyp", "patch": "@@ -70,6 +70,8 @@\n 'browser/browser.h',\n 'browser/browser_mac.mm',\n 'browser/browser_observer.h',\n+ 'browser/file_dialog.h',\n+ 'browser/file_dialog_mac.mm',\n 'browser/message_box.h',\n 'browser/message_box_mac.mm',\n 'browse...
2013-05-20T13:46:43
nodejs/node
1d1ab76e1737da4229b3a0774c60a8fbead89040
5af28c26cf8422c4ae11ba9d131c993a252485d9
src: make process.env.TZ setter clear tz cache Since the presence of the libc and V8 timezone caches seem to be a perennial source of confusion to users ("why doesn't it work?!"), let's try to support that pattern by intercepting assignments to the `TZ` environment variable and reset the caches as a side effect. PR-U...
[ { "path": "src/node.cc", "patch": "@@ -80,6 +80,7 @@\n #include <stdlib.h>\n #include <string.h>\n #include <sys/types.h>\n+#include <time.h> // tzset(), _tzset()\n \n #include <string>\n #include <vector>\n@@ -135,6 +136,7 @@ using v8::Array;\n using v8::ArrayBuffer;\n using v8::Boolean;\n using v8::Conte...
2018-04-14T09:28:19
vercel/next.js
722930a00610c265f1ffa7468befd435d0ed9d22
4569ef779d0da1b5d37763206e748edc7cd41836
feat(devserver): try to bind instead of explicit (vercel/turbo#187) This PR attempts to try to bind server and bubbles up error, instead of explicit `bind` which panics internally if it wasn't possible to bind.
[ { "path": "packages/next-swc/crates/next-dev/src/lib.rs", "patch": "@@ -145,7 +145,7 @@ impl NextDevServerBuilder {\n console_ui_to_dev_server,\n );\n \n- Ok(server)\n+ server\n }\n }\n ", "additions": 1, "deletions": 1, "language": "Rust" } ]
2022-10-22T02:54:24
rust-lang/rust
7e8184fa2a712356f1827c8abc01bafcd359b122
2205455d444f5f9da3a52e50f43c0306480218fb
Improve `AssocItem::descr`. The commit adds "associated" to the description of associated types and associated consts, to match the description of associated functions. This increases error message precision and consistency with `AssocKind::fmt`. The commit also notes an imperfection in `AssocKind::fmt`; fixing this ...
[ { "path": "compiler/rustc_middle/src/ty/assoc.rs", "patch": "@@ -98,10 +98,10 @@ impl AssocItem {\n \n pub fn descr(&self) -> &'static str {\n match self.kind {\n- ty::AssocKind::Const => \"const\",\n+ ty::AssocKind::Const => \"associated const\",\n ty::AssocKin...
2025-04-11T00:10:06
huggingface/transformers
97fbaf086116a59adf547dd3b744820bd4dd536b
dbd84741258da3775f5635e2b4567d3d6321e2fe
Fixed typo in autoawq version number in an error message for IPEX backend requirements. (#35815) Fixed typo in version number for IPEX backend required minimal autoawq version
[ { "path": "src/transformers/quantizers/quantizer_awq.py", "patch": "@@ -59,7 +59,7 @@ def validate_environment(self, device_map, **kwargs):\n if self.quantization_config.version == AWQLinearVersion.IPEX:\n if version.parse(importlib.metadata.version(\"autoawq\")) < version.parse(\"0.2.6\...
2025-01-21T14:42:44
golang/go
6ccb5c49cca52766f6d288d128db67be6392c579
d0d38f0f707e69965a5f5a637fa568c646899d39
cmd/link/internal/ld: fix typo in a comment Change-Id: I9ae39aa2da2bfa6bb5d3f279bca764128d9cc401 GitHub-Last-Rev: 7a5945ae120b911793a1510f371945ac17611440 GitHub-Pull-Request: golang/go#44990 Reviewed-on: https://go-review.googlesource.com/c/go/+/301529 Reviewed-by: Matthew Dempsky <mdempsky@google.com> Trust: Tobias ...
[ { "path": "src/cmd/link/internal/ld/deadcode.go", "patch": "@@ -118,7 +118,7 @@ func (d *deadcodePass) flood() {\n \n \t\tif isgotype {\n \t\t\tif d.dynlink {\n-\t\t\t\t// When dynaamic linking, a type may be passed across DSO\n+\t\t\t\t// When dynamic linking, a type may be passed across DSO\n \t\t\t\t// b...
2021-03-14T00:09:05
electron/electron
d356be9c543467c45638fd0f67b34312f809bb90
1fea283d91f83971f907128141fd641a8c90ac23
Update node: remove Atom.app/Contents/Resources/app from node paths. Fixed #6.
[ { "path": "vendor/node", "patch": "@@ -1 +1 @@\n-Subproject commit 8b7ed0eded034647b5648343557f334c140939d5\n+Subproject commit e98af59dbd679161a581f7f6bd76242b76b8db76", "additions": 1, "deletions": 1, "language": "Unknown" } ]
2013-05-17T10:30:45
nodejs/node
5af28c26cf8422c4ae11ba9d131c993a252485d9
f85d5996db11107edb4d078f5eafcd4cc588cd9c
test: fix test when NODE_OPTIONS env var is set to --trace-warnings PR-URL: https://github.com/nodejs/node/pull/20027 Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "tools/test.py", "patch": "@@ -54,6 +54,7 @@\n \n VERBOSE = False\n \n+os.environ['NODE_OPTIONS'] = ''\n \n # ---------------------------------------------\n # --- P r o g r e s s I n d i c a t o r s ---", "additions": 1, "deletions": 0, "language": "Python" } ]
2018-04-14T10:37:29
rust-lang/rust
d25c8a8ade05384e9ca84866be8672a97896826d
d4f880f8ce832cd7560bb2f1ebc34f967055ffd7
Handle a negated literal in `eat_token_lit`. Fixes #139495.
[ { "path": "compiler/rustc_parse/src/parser/expr.rs", "patch": "@@ -2166,10 +2166,15 @@ impl<'a> Parser<'a> {\n let expr = self\n .eat_metavar_seq(mv_kind, |this| this.parse_expr())\n .expect(\"metavar seq expr\");\n- let ast::ExprKind::L...
2025-04-11T00:45:14
vercel/next.js
2ac9ee701704cf614fb6c455c06800133b44d893
ba5cfe3dba684b7e4bdc0b9f9c14ec37581a2607
feat(devserver): try to bind instead of explicit (#187) This PR attempts to try to bind server and bubbles up error, instead of explicit `bind` which panics internally if it wasn't possible to bind.
[ { "path": "crates/next-dev/src/lib.rs", "patch": "@@ -145,7 +145,7 @@ impl NextDevServerBuilder {\n console_ui_to_dev_server,\n );\n \n- Ok(server)\n+ server\n }\n }\n ", "additions": 1, "deletions": 1, "language": "Rust" }, { "path": "crates/turbopa...
2022-10-22T02:54:24
huggingface/transformers
dbd84741258da3775f5635e2b4567d3d6321e2fe
678bd7f1ce1115a22bfbcd2eb97897cec460643d
Fix : BLOOM tie_word_embeddings in GGUF (#35812) * fix bloom ggml * fix falcon output * make style
[ { "path": "src/transformers/modeling_gguf_pytorch_utils.py", "patch": "@@ -400,7 +400,7 @@ def load_gguf_checkpoint(gguf_checkpoint_path, return_tensors=False, model_to_lo\n \n # Handle tie_word_embeddings, if lm_head.weight is not present in tensors,\n # tie_word_embeddings is true otherwise false\...
2025-01-21T14:35:54
golang/go
d0d38f0f707e69965a5f5a637fa568c646899d39
3cdd5c3bcc53298dd7de39cb6e2bd600308988b8
cmd/compile: fix whitespace in comment The whitespace was there to align with the following comment, but the extra whitespace was unnecessary; it wasn't gofmt'd. Then the file got gofmt'd, but the whitespace didn't get fixed. Change-Id: I45aad9605b99d83545e4e611ae3ea1b2ff9e6bf6 Reviewed-on: https://go-review.googleso...
[ { "path": "src/cmd/compile/internal/ssa/gen/genericOps.go", "patch": "@@ -264,7 +264,7 @@ var genericOps = []opData{\n \t// ±0 → ±0 (sign preserved)\n \t// x<0 → NaN\n \t// NaN → NaN\n-\t{name: \"Sqrt\", argLength: 1}, // √arg0 (floating point, double precision)\n+\t{name: \"Sqrt\", argLength: 1}...
2021-03-14T21:27:06
rust-lang/rust
042a54c8d7b49ca5cc03f9a7cb4d69ac8bb34312
0286d469526d58500235db24293a3ff956546b88
Build complete usable type from a type-relative prefix Instead of looking for angle brackets in the source code, use the HIR and Ty interfaces to either copy the original type, or complete it with `_` placeholders if all type and const generic arguments are inferred.
[ { "path": "clippy_lints/src/methods/from_iter_instead_of_collect.rs", "patch": "@@ -1,25 +1,31 @@\n+use std::fmt::Write as _;\n+\n use clippy_utils::diagnostics::span_lint_and_sugg;\n-use clippy_utils::source::SpanRangeExt;\n+use clippy_utils::source::snippet_with_applicability;\n use clippy_utils::ty::impl...
2025-04-10T16:25:47
electron/electron
1fea283d91f83971f907128141fd641a8c90ac23
61bca04dfd570156563d2a132d9156e1d8c8d456
Simulate the toggleDevTools API. Currently there is no way to know the devtools's state in brightray, so we have to record the state manually, fix this after patching brightray.
[ { "path": "browser/api/lib/browser_window.coffee", "patch": "@@ -1,8 +1,18 @@\n EventEmitter = require('events').EventEmitter\n+v8Util = process.atomBinding 'v8_util'\n objectsRegistry = require '../../atom/objects_registry.js'\n \n BrowserWindow = process.atomBinding('window').BrowserWindow\n-BrowserWindow...
2013-05-17T08:09:12