repo
stringclasses
15 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
64.3k
files
listlengths
1
300
timestamp
timestamp[s]date
2013-03-13 20:45:00
2026-04-11 07:48:46
golang/go
e2e1987b31a587bdb67856954ae9279721b3bba7
d397fc1169aa2491bc807812105371819366deb8
[dev.cmdgo] cmd/link: fix TestBuildForTvOS This test was broken in CL 334732 on darwin. The test invokes 'go build' with a CC containing the arguments -framework CoreFoundation. Previously, the go command split CC on whitespace, and inserted the arguments after the command line when running CC directly. Those argumen...
[ { "path": "src/cmd/link/link_test.go", "patch": "@@ -282,8 +282,8 @@ func TestBuildForTvOS(t *testing.T) {\n \t\t\"-isysroot\", strings.TrimSpace(string(sdkPath)),\n \t\t\"-mtvos-version-min=12.0\",\n \t\t\"-fembed-bitcode\",\n-\t\t\"-framework\", \"CoreFoundation\",\n \t}\n+\tCGO_LDFLAGS := []string{\"-fra...
2021-08-12T21:33:58
nodejs/node
814f89db61b1bed434c6cd5b7cba2849aee2c6fc
ad61550646f6ec5204ece41aab08cca18eef7dbb
doc: add missing deprecation labels Fixes: https://github.com/nodejs/node/issues/20841 PR-URL: https://github.com/nodejs/node/pull/23761 Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com> Reviewed-By: Shelley Vohr <codebytere@gmail.com> Reviewed-By: Matheus Marchini <mat@mmarchini.me>
[ { "path": "doc/api/crypto.md", "patch": "@@ -1295,6 +1295,8 @@ added: v0.9.3\n deprecated: v10.0.0\n -->\n \n+> Stability: 0 - Deprecated\n+\n The default encoding to use for functions that can take either strings\n or [buffers][`Buffer`]. The default value is `'buffer'`, which makes methods\n default to [`...
2018-10-19T18:46:09
huggingface/transformers
dd7dc4a4a2281c4a3eda1247fc05e34149a55786
6d773fc3bc936b4dfa9b97d46cc9250dddfa2e1f
Add Fast Image Processor for Chameleon (#37140) * Add Fast Image Processor for Chameleon * add warning to resize and move blend_rgba to convert_to_rgb * Remove unrelated files * Update image_processing_chameleon_fast to use auto_docstring * fix equivalence test --------- Co-authored-by: Yoni Gozlan <74535834+yon...
[ { "path": "docs/source/en/model_doc/chameleon.md", "patch": "@@ -191,6 +191,11 @@ model = ChameleonForConditionalGeneration.from_pretrained(\n [[autodoc]] ChameleonImageProcessor\n - preprocess\n \n+## ChameleonImageProcessorFast\n+\n+[[autodoc]] ChameleonImageProcessorFast\n+ - preprocess\n+\n ## Ch...
2025-06-27T15:26:57
electron/electron
f04ee342ea057b655f965d580da4112bfe56f08c
2837b730f2138637ad28c735d81c444cf6f56fa1
Remove RemoteDebuggingServer class
[ { "path": "brightray/brightray.gyp", "patch": "@@ -75,8 +75,6 @@\n 'browser/platform_notification_service_impl.h',\n 'browser/linux/notification_presenter_linux.h',\n 'browser/linux/notification_presenter_linux.cc',\n- 'browser/remote_debugging_server.cc',\n- 'browser/r...
2015-03-09T02:53:37
vercel/next.js
93311950e1c47013535d9a316aafa6a1f275b4ad
f49cc8da1793f954af99d6d23e5be89eda152f27
Update server manifest and entry creation (#45722) This PR changes the format of server manifest, and makes the module in the same page entry. Also adds an initial implementation of requests handling. NEXT-417, NEXT-488 ## Bug - [ ] Related issues linked using `fixes #number` - [ ] Integration tests added ...
[ { "path": "packages/next/src/build/index.ts", "patch": "@@ -1,3 +1,9 @@\n+import type { RemotePattern } from '../shared/lib/image-config'\n+import type { AppBuildManifest } from './webpack/plugins/app-build-manifest-plugin'\n+import type { PagesManifest } from './webpack/plugins/pages-manifest-plugin'\n+imp...
2023-02-11T19:54:43
golang/go
044ec4fa9818d785e2b0d4064514abcf4f252fcb
46fd547d899286982971474b329d7a95da4f2a6b
time: fix docs for new comma layouts The current text is slightly inaccurate. Make it more correct. Change-Id: Iebe0051b74649d13982d7eefe3697f9e69c9b75d Reviewed-on: https://go-review.googlesource.com/c/go/+/340449 Trust: Russ Cox <rsc@golang.org> Run-TryBot: Russ Cox <rsc@golang.org> Reviewed-by: Jay Conrod <jayconr...
[ { "path": "doc/go1.17.html", "patch": "@@ -753,9 +753,9 @@ <h3 id=\"minor_library_changes\">Minor changes to the library</h3>\n \n <p><!-- CL 311572 -->\n The new\n- <a href=\"/pkg/database/sql/#NullInt16\"><code>NullInt16</code></a> \n- and \n- <a href=\"/pkg/database/sql/#NullByte...
2021-08-06T17:21:25
nodejs/node
ad61550646f6ec5204ece41aab08cca18eef7dbb
bef24e163a1a7e66bd1b2daa43ecfc8924034a7f
doc: document use of buffer.swap16() for utf16be Fixes: https://github.com/nodejs/node/issues/12813 PR-URL: https://github.com/nodejs/node/pull/23747 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
[ { "path": "doc/api/buffer.md", "patch": "@@ -1936,6 +1936,14 @@ buf2.swap16();\n // Throws ERR_INVALID_BUFFER_SIZE\n ```\n \n+One convenient use of `buf.swap16()` is to perform a fast in-place conversion\n+between UTF-16 little-endian and UTF-16 big-endian:\n+\n+```js\n+const buf = Buffer.from('This is litt...
2018-10-19T01:22:46
huggingface/transformers
6d773fc3bc936b4dfa9b97d46cc9250dddfa2e1f
c8764ab9353f7cd822f1184a0e9848cef5c04a6f
fix `dots1` tests (#39088) fix Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": "tests/models/dots1/test_modeling_dots1.py", "patch": "@@ -87,6 +87,10 @@ class Dots1ModelTest(CausalLMModelTest, unittest.TestCase):\n test_pruning = False\n model_tester_class = Dots1ModelTester\n \n+ @unittest.skip(\"dots.llm1's moe is not compatible `token_indices, weight_indices = ...
2025-06-27T14:54:11
electron/electron
2837b730f2138637ad28c735d81c444cf6f56fa1
95f0f25dc473fe2b340b31ed12af236ddd31087e
Fix network_delegate.cc
[ { "path": "brightray/browser/network_delegate.cc", "patch": "@@ -21,13 +21,27 @@ int NetworkDelegate::OnBeforeURLRequest(\n return net::OK;\n }\n \n+void NetworkDelegate::OnResolveProxy(const GURL& url,\n+ int load_flags,\n+ const net...
2015-03-09T02:47:12
vercel/next.js
59a63eda0a71e549d6f9b8062749240c0e385d44
1faa599568be865eab8af400d2e65ebd43973438
Add experimental route type checking (#45761) Implements alpha version of type checking for `Link`'s `href`. To opt-into this feature, `experimental.appDir` and `experimental.typedRoutes` need to be enabled, and the project needs to be using TypeScript. Once enabled, Next.js will generate a link definition in `.next/...
[ { "path": "packages/next/src/build/webpack-config.ts", "patch": "@@ -646,6 +646,7 @@ export default async function getBaseWebpackConfig(\n const hasAppDir = !!config.experimental.appDir && !!appDir\n const hasServerComponents = hasAppDir\n const disableOptimizedLoading = true\n+ const enableTypedRout...
2023-02-11T15:06:39
nodejs/node
1d5aba1a780b5a80e946de1b020029c3664b76e3
2cb2597d72abbdee85335fd86d5031d55850755e
deps: add missing ares_android.h file This file was left out of the c-ares 1.14.0 update. PR-URL: https://github.com/nodejs/node/pull/23682 Fixes: https://github.com/nodejs/node/issues/23681 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Denys Otrishko <shishugi@gmail.com> Reviewed-By: Ruben Bridgewate...
[ { "path": "deps/cares/src/ares_android.h", "patch": "@@ -0,0 +1,26 @@\n+/* Copyright (C) 2017 by John Schember <john@nachtimwald.com>\n+ *\n+ * Permission to use, copy, modify, and distribute this\n+ * software and its documentation for any purpose and without\n+ * fee is hereby granted, provided that the a...
2018-10-16T03:55:12
huggingface/transformers
49d9fd49bd3d58853d461295bc2fd4f2c808de87
4336ecd1eaae778a24633dea6c62b3a90fb8afd1
Add Fast Image Processor for mobileViT (#37143) * Add image_processing_mobilevit_fast.py * Fix copies * update _preprocess for channel_flip * Update for batched image processing * Resolve merge conflicts with main * Fix import order and remove trailing whitespace (ruff clean-up) * Fix copy inconsistencies * Add...
[ { "path": "docs/source/en/model_doc/mobilevit.md", "patch": "@@ -95,6 +95,12 @@ If you're interested in submitting a resource to be included here, please feel f\n - preprocess\n - post_process_semantic_segmentation\n \n+## MobileViTImageProcessorFast\n+\n+[[autodoc]] MobileViTImageProcessorFast\n+ ...
2025-06-27T14:40:24
electron/electron
95f0f25dc473fe2b340b31ed12af236ddd31087e
a5026907e47f0b89900fbee2bc7a3a517dfc26f6
Fix inspectable_web_contents_impl.cc
[ { "path": "brightray/browser/inspectable_web_contents_impl.cc", "patch": "@@ -162,7 +162,7 @@ void InspectableWebContentsImpl::ShowDevTools() {\n \n agent_host_ = content::DevToolsAgentHost::GetOrCreateFor(web_contents_.get());\n frontend_host_.reset(content::DevToolsFrontendHost::Create(\n- ...
2015-03-09T02:38:40
huggingface/transformers
4336ecd1eaae778a24633dea6c62b3a90fb8afd1
0c35280e58ea4a297c1a62f22523bc454301276b
add fast image processor nougat (#37661) * add fast image processor nougat * test fixes * docstring white space * last fixes * docstring_type * tolerance unit test * fix tolerance * fix rtol * remove traling white space * remove white space * note for tolerance unit test * fix tests * remove print -------...
[ { "path": "docs/source/en/model_doc/nougat.md", "patch": "@@ -107,6 +107,11 @@ The model is identical to [Donut](donut) in terms of architecture.\n [[autodoc]] NougatImageProcessor\n - preprocess\n \n+## NougatImageProcessorFast\n+\n+[[autodoc]] NougatImageProcessorFast\n+ - preprocess\n+\n ## Nougat...
2025-06-27T14:39:43
nodejs/node
05394d2e10c83fe0efb2f47eb5404a18acfe439b
d22ec11e4d5591fa9cf1dd8cf5feb499aadd1a94
build: fix `./configure --enable-d8` Add SHARED_INTERMEDIATE_DIR to the include path because that is where Torque-generated files live. d8.cc includes files from deps/v8/src that depend on those generated files. PR-URL: https://github.com/nodejs/node/pull/23656 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By...
[ { "path": "deps/v8/gypfiles/d8.gyp", "patch": "@@ -23,6 +23,7 @@\n 'include_dirs+': [\n '..',\n '<(DEPTH)',\n+ '<(SHARED_INTERMEDIATE_DIR)',\n ],\n 'sources': [\n '<(SHARED_INTERMEDIATE_DIR)/d8-js.cc',", "additions": 1, "deletions": 0, "language":...
2018-10-14T17:07:15
vercel/next.js
1faa599568be865eab8af400d2e65ebd43973438
d4df2bf2da4f6f913a50a0f4d20568de56d724ed
Add additional tests for @next/mdx (#45585)Co-authored-by: Shu Ding <g@shud.in> Adds additional integration tests for `@next/mdx`. - Test mdx-rs - Test `mdx-components.tsx` - Tests development and production. Previously it only checked development. <!-- Thanks for opening a PR! Your contribution is much appr...
[ { "path": "package.json", "patch": "@@ -60,8 +60,8 @@\n \"@babel/preset-react\": \"7.14.5\",\n \"@edge-runtime/jest-environment\": \"2.0.0\",\n \"@fullhuman/postcss-purgecss\": \"1.3.0\",\n- \"@mdx-js/loader\": \"^1.5.1\",\n- \"@mdx-js/react\": \"^1.6.18\",\n+ \"@mdx-js/loader\": \"2.2....
2023-02-11T12:37:00
huggingface/transformers
0c35280e58ea4a297c1a62f22523bc454301276b
993665a5ffc9bb985c2adb1a51b94d8bad9b040a
TST PEFT integration tests with pipeline generate (#39086) Some PEFT integration tests involving text generation pipelines were failing since #38129 because the base model is too small to generate longer sequences. Setting max_new_tokens fixes this.
[ { "path": "tests/peft_integration/test_peft_integration.py", "patch": "@@ -531,7 +531,7 @@ def test_peft_pipeline(self):\n peft_params = list(peft_pipe.model.parameters())\n base_params = list(base_pipe.model.parameters())\n self.assertNotEqual(len(peft_params), len(base_...
2025-06-27T13:58:10
electron/electron
99e2dbd6e88624e3b6b66c34b6664ecdaa3c8df4
8467fee8d8e2a235d2604c6e6d20497e550c3338
Fix inspectable_web_contents_impl.h
[ { "path": "brightray/browser/inspectable_web_contents_impl.cc", "patch": "@@ -317,10 +317,11 @@ void InspectableWebContentsImpl::AgentHostClosed(\n content::DevToolsAgentHost* agent_host, bool replaced) {\n }\n \n-void InspectableWebContentsImpl::AboutToNavigateRenderView(\n- content::RenderViewHost*...
2015-03-09T02:13:17
nodejs/node
d22ec11e4d5591fa9cf1dd8cf5feb499aadd1a94
72a48a2a0abb655e7387d09c3dc7550793ce4a6a
doc: simplify security reporting text Edit security-reporting text in the README to keep it concise and straightforward. The removed text may discourage reporting. Nothing like it appears in similar security-reporting text that I have reviewed. See, for example, the Linux kernel docs on security reporting: https://www...
[ { "path": "README.md", "patch": "@@ -166,15 +166,10 @@ team has addressed the vulnerability.\n The security team will acknowledge your email within 24 hours. You will receive\n a more detailed response within 48 hours.\n \n-There are no hard and fast rules to determine if a bug is worth reporting as\n-a sec...
2018-10-16T05:25:28
vercel/next.js
d4df2bf2da4f6f913a50a0f4d20568de56d724ed
4270adfd16f06537cd319eb90d44a0a2d85abf98
Use text/plain content-type for RSC responses (#45783)Co-authored-by: JJ Kasper <jj@jjsweb.site> Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com> First step for making RSC responses use gzip/brotli. <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your...
[ { "path": "packages/next/src/build/index.ts", "patch": "@@ -120,7 +120,11 @@ import { RemotePattern } from '../shared/lib/image-config'\n import { eventSwcPlugins } from '../telemetry/events/swc-plugins'\n import { normalizeAppPath } from '../shared/lib/router/utils/app-paths'\n import { AppBuildManifest } ...
2023-02-11T12:26:43
huggingface/transformers
993665a5ffc9bb985c2adb1a51b94d8bad9b040a
839893c86bf372ee35b2c8dd750d3cdc21a995f5
fixed typo for docstring in prepare_inputs method (#39071)
[ { "path": "src/transformers/generation/utils.py", "patch": "@@ -558,7 +558,7 @@ def prepare_inputs_for_generation(\n **kwargs,\n ):\n \"\"\"\n- Prepare the model inputs for generation. In includes operations like computing the 4D attention mask or\n+ Prepare the model input...
2025-06-27T13:57:56
electron/electron
8467fee8d8e2a235d2604c6e6d20497e550c3338
c0356f0269486d1df60b75d81af064d3773e0b56
Fix devtools_manager_delegate.cc
[ { "path": "brightray/browser/devtools_manager_delegate.cc", "patch": "@@ -24,6 +24,7 @@\n #include \"content/public/common/url_constants.h\"\n #include \"content/public/common/user_agent.h\"\n #include \"net/socket/tcp_server_socket.h\"\n+#include \"net/socket/stream_socket.h\"\n #include \"ui/base/resource...
2015-03-09T02:07:53
rust-lang/rust
6fc60b8b0493027cc966d4911688f0735bfb329d
7205fc537d0fe8c3c2560b313e54fcb91ab6f3d1
float: Add `f16` parsing and printing Use the existing Lemire (decimal -> float) and Dragon / Grisu algorithms (float -> decimal) to add support for `f16`. This allows updating the implementation for `Display` to the expected behavior for `Display` (currently it prints the a hex bitwise representation), matching other...
[ { "path": "library/core/src/fmt/float.rs", "patch": "@@ -20,6 +20,8 @@ macro_rules! impl_general_format {\n }\n }\n \n+#[cfg(target_has_reliable_f16)]\n+impl_general_format! { f16 }\n impl_general_format! { f32 f64 }\n \n // Don't inline this so callers don't use the stack space this function\n@@ -231,6...
2024-08-25T03:29:39
nodejs/node
c208135055bb3b4c8ca9f56d0e5de3dd716e3f5b
e7af9830e98fcda7e7a11e0b13b667163cc8c940
test: check codes of thrown errors PR-URL: https://github.com/nodejs/node/pull/23519 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: George Adams <george.adams@uk.ibm.com>
[ { "path": "test/parallel/test-buffer-alloc.js", "patch": "@@ -967,12 +967,16 @@ common.expectsError(\n message: 'argument must be a buffer'\n });\n \n-const regErrorMsg =\n- new RegExp('The first argument must be one of type string, Buffer, ' +\n- 'ArrayBuffer, Array, or Array-like Object...
2018-10-12T17:23:36
vercel/next.js
0620d1cca485981095058b6914f9c99da8f1fe6f
81164fb912de2bbfe5ec23befeaa76151dea7ccb
Fix displayName prop access for client reference (#45794) x-ref: https://github.com/facebook/react/pull/26148
[ { "path": "packages/next/src/build/webpack/loaders/next-flight-loader/module-proxy.ts", "patch": "@@ -22,6 +22,8 @@ const deepProxyHandlers = {\n return target.filepath\n case 'name':\n return target.name\n+ case 'displayName':\n+ return undefined\n case 'async':\n ...
2023-02-11T00:01:55
huggingface/transformers
839893c86bf372ee35b2c8dd750d3cdc21a995f5
2b85b6ce1978c776585cc20bdb013334f1c91e6c
fix `mistral3` tests (#38989) * fix * fix * fix * fix * fix --------- Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": "tests/models/mistral3/test_modeling_mistral3.py", "patch": "@@ -307,6 +307,7 @@ def tearDown(self):\n @require_read_token\n def test_mistral3_integration_generate_text_only(self):\n processor = AutoProcessor.from_pretrained(self.model_checkpoint)\n+ processor.chat_template ...
2025-06-27T13:44:10
golang/go
7e9f911ec4fd08ce9b4296f0aea4864b53064573
677dfe5ad677d7072ffd69963c407a8945e94ec5
[dev.typeparams] cmd/compile: remove some shape checks in type substituter, other cleanups The type substituter (typecheck.Typ()) was temporarily substituting from shapes back to concrete types, but doesn't need to anymore. So, remove two shape checks, so the type substituter is now only for substituting type params ...
[ { "path": "src/cmd/compile/internal/typecheck/subr.go", "patch": "@@ -900,31 +900,11 @@ func TypesOf(x []ir.Node) []*types.Type {\n \treturn r\n }\n \n-// makeGenericName returns the name of the generic function instantiated\n-// with the given types.\n-// name is the name of the generic function or method....
2021-08-12T16:58:54
rust-lang/rust
0e43247bc94d50b4a341e68cfabe8f7fd75f6376
bc02a99f8f2b3439fb680be39339b3a8c9d23f32
Fix rustc testsuite
[ { "path": "scripts/test_rustc_tests.sh", "patch": "@@ -53,6 +53,8 @@ rm -r tests/run-make/split-debuginfo # same\n rm -r tests/run-make/target-specs # i686 not supported by Cranelift\n rm -r tests/run-make/mismatching-target-triples # same\n rm tests/ui/asm/x86_64/issue-96797.rs # const and sym inline asm o...
2025-05-18T15:02:09
nodejs/node
e7af9830e98fcda7e7a11e0b13b667163cc8c940
4e9e0d339efa46316d90d6f2618afd0c0fc6cd34
timers: run nextTicks after each immediate and timer In order to better match the browser behaviour, run nextTicks (and subsequently the microtask queue) after each individual Timer and Immediate, rather than after the whole list is processed. The current behaviour is somewhat of a performance micro-optimization and a...
[ { "path": "benchmark/timers/timers-timeout-nexttick.js", "patch": "@@ -0,0 +1,36 @@\n+'use strict';\n+const common = require('../common.js');\n+\n+// The following benchmark measures setting up n * 1e6 timeouts,\n+// as well as scheduling a next tick from each timeout. Those\n+// then get executed on the ne...
2018-09-13T14:35:15
huggingface/transformers
2b85b6ce1978c776585cc20bdb013334f1c91e6c
9c8d3a70b8bf359150c960c4281aaa853498fe8c
[Whisper] 🚨 Fix pipeline word timestamp: timestamp token is end of token time !!! (#36632) * timestamp token is end of token time !!! * ensure correct alignment between tokens and timestamp tokens * ignore input tokens for DTW computation * use num_frames to avoid token timestamp hallucinations * token timestamps...
[ { "path": "src/transformers/models/whisper/feature_extraction_whisper.py", "patch": "@@ -252,6 +252,8 @@ def __call__(\n Specifies the device for computation of the log-mel spectrogram of audio signals in the\n `_torch_extract_fbank_features` method. (e.g., \"cpu\", \"cuda\")...
2025-06-27T12:51:43
golang/go
5805efc78e11e54c2c887ae10f277b09bbf81cf4
39634e7daee29a0c7d29ca74e32668d04c842758
doc/go1.17: remove draft notice Fixes #44513. Change-Id: I82c44a681b1fa67df123af86ee02a980b13acdc8 Reviewed-on: https://go-review.googlesource.com/c/go/+/341673 Trust: Dmitri Shuralyov <dmitshur@golang.org> Trust: Carlos Amedee <carlos@golang.org> Reviewed-by: Carlos Amedee <carlos@golang.org> Run-TryBot: Carlos Amed...
[ { "path": "doc/go1.17.html", "patch": "@@ -14,13 +14,13 @@\n main ul li { margin: 0.5em 0; }\n </style>\n \n-<h2 id=\"introduction\">DRAFT RELEASE NOTES — Introduction to Go 1.17</h2>\n+<h2 id=\"introduction\">Introduction to Go 1.17</h2>\n \n <p>\n- <strong>\n- Go 1.17 is not yet released. These are ...
2021-08-12T16:12:56
vercel/next.js
d995fa333d2bcd71cc5e6094242dfd057dd48226
bea01482daa0603b08f8c8033c64c7e7bcf8efc8
make sure node.js worker processes are cleaned up correctly on errors (vercel/turbo#3618) Before it tried to reuse processes even if they crashed which leads to "connection is closed" errors on send and recv
[ { "path": "crates/turbopack-node/Cargo.toml", "patch": "@@ -12,6 +12,7 @@ bench = false\n [dependencies]\n anyhow = \"1.0.47\"\n futures = \"0.3.25\"\n+futures-retry = \"0.6.0\"\n indexmap = { workspace = true, features = [\"serde\"] }\n mime = \"0.3.16\"\n serde = \"1.0.136\"", "additions": 1, "del...
2023-02-10T21:40:26
rust-lang/rust
492c4e197dcb357f32a70931c71e99517ab25717
da7b678992dd65dbd644bfe30ba61a9a0d2c695c
fix: `unnecessary_to_owned` FP when map key is a reference
[ { "path": "clippy_lints/src/methods/unnecessary_to_owned.rs", "patch": "@@ -655,11 +655,18 @@ fn is_to_string_on_string_like<'a>(\n }\n }\n \n-fn is_a_std_map_type(cx: &LateContext<'_>, ty: Ty<'_>) -> bool {\n- is_type_diagnostic_item(cx, ty, sym::HashSet)\n- || is_type_diagnostic_item(cx, ty,...
2025-05-18T08:25:40
nodejs/node
c1b9be53c89a7ac11c01905a4477785a6154512b
c979fad9bb33bb0ad4c13a7f44e16719343dc96f
util: treat format arguments equally Two changes here which bring us closer to the console standard: - Arguments to `util.format` are no longer formatted differently depending on their order, with format strings being an exception. - Format specifier formatting is now only triggered if the string actually contain...
[ { "path": "doc/api/util.md", "patch": "@@ -183,6 +183,17 @@ property take precedence over `--trace-deprecation` and\n <!-- YAML\n added: v0.5.3\n changes:\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/23162\n+ description: The `format` argument is now only taken as such if it...
2018-09-29T12:41:36
huggingface/transformers
9c8d3a70b8bf359150c960c4281aaa853498fe8c
1750c518dda15a8b81cff276292674d61152dbf5
Pipeline: fix unnecessary warnings (#35753) * return attention mask * use correct model input name * fix * make
[ { "path": "src/transformers/pipelines/automatic_speech_recognition.py", "patch": "@@ -64,7 +64,12 @@ def chunk_iter(inputs, feature_extractor, chunk_len, stride_left, stride_right,\n for chunk_start_idx in range(0, inputs_len, step):\n chunk_end_idx = chunk_start_idx + chunk_len\n chunk ...
2025-06-27T12:32:03
golang/go
095bb790e132a498ba191ad6d27f89c1fc4c0232
dea23e9ca80dd629041cba03ae2544dad19948ee
os/exec: re-enable LookPathTest/16 This failure was confirmed to be due to a bug in prerelease versions of Windows, and has been fixed by now. Remove the skip for this test. Fixes #44379. Change-Id: Idfb92ffd6b9d416d4c78ef3800a5ffdda06c6562 Reviewed-on: https://go-review.googlesource.com/c/go/+/341455 Trust: Dmitri ...
[ { "path": "src/os/exec/lp_windows_test.go", "patch": "@@ -312,9 +312,6 @@ func TestLookPath(t *testing.T) {\n \t// Run all tests.\n \tfor i, test := range lookPathTests {\n \t\tt.Run(fmt.Sprint(i), func(t *testing.T) {\n-\t\t\tif i == 16 {\n-\t\t\t\tt.Skip(\"golang.org/issue/44379\")\n-\t\t\t}\n \t\t\tdir :...
2021-08-12T02:02:59
electron/electron
c0356f0269486d1df60b75d81af064d3773e0b56
33f0b2ad895d662ee5bccb6f84680e2585c9b3b8
Fix ui/gfx/geometry headers
[ { "path": "brightray/browser/devtools_contents_resizing_strategy.h", "patch": "@@ -6,9 +6,9 @@\n #define BRIGHTRAY_BROWSER_DEVTOOLS_CONTENTS_RESIZING_STRATEGY_H_\n \n #include \"base/basictypes.h\"\n-#include \"ui/gfx/insets.h\"\n-#include \"ui/gfx/rect.h\"\n-#include \"ui/gfx/size.h\"\n+#include \"ui/gfx/g...
2015-03-09T02:02:38
rust-lang/rust
19e967c6b7a592eb0a5955d2ad15a979522b20f5
da7b678992dd65dbd644bfe30ba61a9a0d2c695c
Add a reason to/remove some `//@no-rustfix` annotations
[ { "path": "tests/ui/assign_ops.fixed", "patch": "@@ -1,7 +1,9 @@\n+#![allow(clippy::useless_vec)]\n+#![warn(clippy::assign_op_pattern)]\n+\n use core::num::Wrapping;\n+use std::ops::{Mul, MulAssign};\n \n-#[allow(dead_code, unused_assignments, clippy::useless_vec)]\n-#[warn(clippy::assign_op_pattern)]\n fn ...
2025-05-18T14:47:24
vercel/next.js
ee624b7706c92935c4a1e30a3fb69391d1a6377d
ac7f2b6fe77ba403bb3f668b6ef8a9c4cb28c784
Apply module default interop for app-dynamic (#45781) ## Bug Fixes #45756 Closes NEXT-518 Since next/dynamic is separated for `app/` and `pages/`, need to apply the interop for app dir dynamic api as well
[ { "path": "packages/next/src/build/webpack-config.ts", "patch": "@@ -1188,7 +1188,7 @@ export default async function getBaseWebpackConfig(\n if (layer === WEBPACK_LAYERS.server) return\n \n const isNextExternal =\n- /next[/\\\\]dist[/\\\\](esm[\\\\/])?(shared|server)[/\\\\](?!lib[/\\\\](r...
2023-02-10T21:30:05
nodejs/node
b94ce575f57fa883b93ce8948730577a9bde8603
e2f58c71ddf0f91256cc85e6bb226a068256c5eb
tls: prevent multiple connection errors onConnectEnd(), which is called by TLSSocket, has a guard to prevent being called multiple times, but it does not prevent the OpenSSL error handler from being called, leading to multiple error events. This commit adds that piece of missing logic. PR-URL: https://github.com/node...
[ { "path": "lib/_tls_wrap.js", "patch": "@@ -248,9 +248,11 @@ function onocspresponse(resp) {\n function onerror(err) {\n const owner = this[owner_symbol];\n \n- if (owner._writableState.errorEmitted)\n+ if (owner._hadError)\n return;\n \n+ owner._hadError = true;\n+\n // Destroy socket if error h...
2018-10-13T04:59:35
huggingface/transformers
1750c518dda15a8b81cff276292674d61152dbf5
0106a50a6bcf6eb0d4ef28dfda68e8becc3531e3
✨ Add EoMT Model || 🚨 Fix Mask2Former loss calculation (#37610) * Initial Commit * up * More changes * up * Only mask_logits mismatch * close enough logits debug later * fixes * format * Add dummy loss * Close enough processing for semantic seg * nit * Added panoptic postprocessor * refactor * refactor ...
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -737,6 +737,8 @@\n title: EfficientFormer\n - local: model_doc/efficientnet\n title: EfficientNet\n+ - local: model_doc/eomt\n+ title: EoMT\n - local: model_doc/focalnet\n title: FocalNet\n - local: m...
2025-06-27T12:18:18
golang/go
dea23e9ca80dd629041cba03ae2544dad19948ee
d4c0ed26ace91cb21fc0a67f088648674052aa3d
src/make.*: make --no-clean flag a no-op that prints a warning This flag is undocumented and is no longer useful. Users who want to install additional toolchains without cleaning the installed packages should just use `go install`. This CL changes cmd/dist to print a warning that --no-clean is deprecated and to advis...
[ { "path": "src/cmd/dist/build.go", "patch": "@@ -1263,14 +1263,19 @@ func cmdbootstrap() {\n \ttimelog(\"start\", \"dist bootstrap\")\n \tdefer timelog(\"end\", \"dist bootstrap\")\n \n-\tvar noBanner bool\n+\tvar noBanner, noClean bool\n \tvar debug bool\n \tflag.BoolVar(&rebuildall, \"a\", rebuildall, \"r...
2021-08-11T19:40:12
electron/electron
c9b549ae69d159436f7361558233dfec51701221
bb0e68e56340f16c302b952724168869d42f33a4
Fix styling of #1199
[ { "path": "atom/browser/net/adapter_request_job.cc", "patch": "@@ -101,20 +101,18 @@ void AdapterRequestJob::CreateFileJobAndStart(const base::FilePath& path) {\n base::SequencedWorkerPool::SKIP_ON_SHUTDOWN));\n } else {\n auto archive = asar::GetOrCreateAsarArchive(asar_path);\n- i...
2015-03-05T20:31:45
huggingface/transformers
0106a50a6bcf6eb0d4ef28dfda68e8becc3531e3
cb17103bd5e31373e090f2f37602dcc992c017e4
fix a bunch of XPU UT failures on stock PyTorch 2.7 and 2.8 (#39069) * fix a bunch of XPU UT failures on stock PyTorch 2.7 and 2.8 Signed-off-by: YAO Matrix <matrix.yao@intel.com> * qwen3 Signed-off-by: YAO Matrix <matrix.yao@intel.com> * quanto Signed-off-by: YAO Matrix <matrix.yao@intel.com> * models Signed-o...
[ { "path": "tests/models/aria/test_modeling_aria.py", "patch": "@@ -30,6 +30,7 @@\n )\n from transformers.models.idefics3 import Idefics3VisionConfig\n from transformers.testing_utils import (\n+ Expectations,\n backend_empty_cache,\n require_bitsandbytes,\n require_torch,\n@@ -483,23 +484,26 ...
2025-06-27T12:01:53
nodejs/node
4e2862ad9e7fa3ba48467ccd7a61f4e06d71298d
7872d7933be571dabfa94259433612a34b885513
crypto: simplify error handling in ECDH::New The type of the argument is being checked within JS which makes the type checking in C++ unnecessary. PR-URL: https://github.com/nodejs/node/pull/23647 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
[ { "path": "src/node_crypto.cc", "patch": "@@ -4342,7 +4342,7 @@ void ECDH::New(const FunctionCallbackInfo<Value>& args) {\n MarkPopErrorOnReturn mark_pop_error_on_return;\n \n // TODO(indutny): Support raw curves?\n- THROW_AND_RETURN_IF_NOT_STRING(env, args[0], \"ECDH curve name\");\n+ CHECK(args[0]->...
2018-10-13T17:23:07
electron/electron
9679e68f7aa8862ffc638aab298a2e02bae5149a
82d67824790161222ca34da789d1f26577d8667c
0.21.3-1 (0.21.3 had a bug on our end, sorry)
[ { "path": "npm/package.json", "patch": "@@ -1,6 +1,6 @@\n {\n \"name\": \"atom-shell\",\n- \"version\": \"0.21.3\",\n+ \"version\": \"0.21.3-1\",\n \"description\": \"Install atom-shell prebuilts using npm\",\n \"repository\": {\n \"type\": \"git\",", "additions": 1, "deletions": 1, ...
2015-03-04T21:17:38
golang/go
2e250cc95760e75a3f1fa082920eecd9f88fd096
2fbf6aafe7de215a1d03e14aa488aa8fd31f56a7
[dev.typeparams] cmd: update vendored golang.org/x/tools to 337cebd2c151 Update vendored golang.org/x/tools repo to pick up CL 339250 for assembly function check for register ABI. This is done with cd GOROOT/cmd go get golang.org/x/tools@master go mod tidy go mod vendor Update cmd/vet tests as the error ouput c...
[ { "path": "src/cmd/go.mod", "patch": "@@ -10,6 +10,6 @@ require (\n \tgolang.org/x/mod v0.4.3-0.20210608190319-0f08993efd8a\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.2-0.20210519160823-49064d2332f9...
2021-08-10T15:02:34
huggingface/transformers
371c4711136386075bfb272692860c1d4ee9c1d2
540a10848c26ebec9a0e749d3808333bdae08167
Fix initialization of OneFormer (#38901) * fix initialization of OneFormer * remove redundant initializations * remove redundant initializations * remove redundant initializations * keep BC
[ { "path": "src/transformers/models/oneformer/modeling_oneformer.py", "patch": "@@ -2773,7 +2773,6 @@ def _init_weights(self, module: nn.Module):\n elif isinstance(module, OneFormerTransformerDecoder):\n nn.init.xavier_uniform_(module.query_input_projection.weight, gain=xavier_std)\n ...
2025-06-27T10:39:37
rust-lang/rust
8b48bac63d7774c03644a9ed0404c1c5595add62
a69bc17fb8026bdc0d24bb1896ff95f0eba1da4e
[std] fix the presentation of `split_off_mut` and `split_off` documentation Signed-off-by: xizheyin <xizheyin@smail.nju.edu.cn>
[ { "path": "library/core/src/slice/mod.rs", "patch": "@@ -4383,7 +4383,7 @@ impl<T> [T] {\n /// assert_eq!(first_three, &['a', 'b', 'c']);\n /// ```\n ///\n- /// Splitting off the last two elements of a slice:\n+ /// Splitting off a slice starting with the third element:\n ///\n ///...
2025-05-17T06:51:58
nodejs/node
b4a5ff9d145e7bab17cbf8ad9369e4b2ad390fc8
91fe7e5ad28a7bc75948f380a051aae156131b37
test: fix strictEqual arguments order Fix strictEqual assertion arguments order to conform to the function signature in buffer tests PR-URL: https://github.com/nodejs/node/pull/23486 Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Trivikram Kamat <trivik...
[ { "path": "test/parallel/test-buffer-readuint.js", "patch": "@@ -47,37 +47,37 @@ const assert = require('assert');\n // Test 8 bit unsigned integers\n {\n const data = Buffer.from([0xff, 0x2a, 0x2a, 0x2a]);\n- assert.strictEqual(255, data.readUInt8(0));\n- assert.strictEqual(42, data.readUInt8(1));\n- ...
2018-10-12T16:47:28
electron/electron
82d67824790161222ca34da789d1f26577d8667c
1809db56698a8722fcd8e63d7c63ceb1ca0c0d1f
fix typo
[ { "path": "npm/install.js", "patch": "@@ -44,7 +44,7 @@ nugget(url, {target: filename, dir: __dirname, resume: true, verbose: true}, fun\n if (err) return onerror(err)\n fs.writeFileSync(path.join(__dirname, 'path.txt'), paths[platform])\n fs.writeFileSync(path.join(__dirname, 'run.bat'), shebang[plat...
2015-03-04T21:14:47
huggingface/transformers
540a10848c26ebec9a0e749d3808333bdae08167
0d66ef77921fc77644fe698f2c7c3f49cdd0ffc0
fix `Gemma3nProcessorTest` (#39068) * fix * fix * oups forgot style --------- Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> Co-authored-by: Cyril Vallez <cyril.vallez@gmail.com>
[ { "path": "tests/models/gemma3n/test_processing_gemma3n.py", "patch": "@@ -36,7 +36,7 @@\n class Gemma3nProcessorTest(unittest.TestCase):\n def setUp(self):\n # TODO: update to google?\n- self.model_id = \"Google/gemma-3n-E4B-it\"\n+ self.model_id = \"hf-internal-testing/namespace-...
2025-06-27T10:28:10
golang/go
e4cfa2f6dad8c73e98a4149948ded424df9c8501
508624f359f168cab32814f63d29a4305fb01588
[dev.typeparams] cmd/compile/internal/types2: parameterized functions must have a body Add the respective check and add missing bodies to tests. Use {} as body for functions that don't return a result. Use { panic(0) } as body for functions that return a result. For #47069. Change-Id: Ia5d7525c9c036baf8a955d13bff448...
[ { "path": "src/cmd/compile/internal/types2/api_test.go", "patch": "@@ -329,10 +329,10 @@ func TestTypesInfo(t *testing.T) {\n \t\t{brokenPkg + `x5; func _() { var x map[string][...]int; x = map[string][...]int{\"\": {1,2,3}} }`, `x`, `map[string]invalid type`},\n \n \t\t// parameterized functions\n-\t\t{gen...
2021-08-09T17:53:43
vercel/next.js
37ccaf0ca0bf30c2fa41ed7d614f0fb13beff3df
114ef6b8c078c9bb654ff55ead9fd4e573931ddc
fix: Made native-tls our default feature for ease of dev workflows (vercel/turbo#3748)
[ { "path": "packages/next-swc/crates/next-dev/Cargo.toml", "patch": "@@ -19,10 +19,10 @@ name = \"mod\"\n harness = false\n \n [features]\n-# By default, we enable native-tls for reqwest downstream trasntive features.\n-# This is for the convinience for all of daily dev workflow i.e running\n+# By default, w...
2023-02-10T20:52:48
nodejs/node
74f854e769fbb595b007b25d7bd79e7fbdf043b8
1a2cf6696fa59c9723c423c4ff4c1167ab82155c
test: add test coverage for fs.truncate Add test to check: - for `null` as len parameter - if error is propagated into callback if file doesn't exist - if an error is actually thrown if len is not a number PR-URL: https://github.com/nodejs/node/pull/23620 Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: ...
[ { "path": "test/parallel/test-fs-truncate.js", "patch": "@@ -239,6 +239,41 @@ function testFtruncate(cb) {\n }));\n }\n \n+{\n+ const file7 = path.resolve(tmp, 'truncate-file-7.txt');\n+ fs.writeFileSync(file7, 'Hi');\n+ fs.truncate(file7, undefined, common.mustCall(function(err) {\n+ assert.ifError...
2018-10-12T18:54:37
electron/electron
dbbc35bd1305ca82fa9fe0417b2c37b43bec6205
e8d648bcba4d84cc9a267bf3064757857a695d43
Fixes after code review.
[ { "path": "atom/browser/lib/guest-window-manager.coffee", "patch": "@@ -32,9 +32,9 @@ createGuest = (embedder, url, frameName, options) ->\n guest.once 'closed', ->\n delete frameToGuest[frameName]\n \n- ipc.on 'ATOM_SHELL_GUEST_WINDOW_MANAGER_WINDOW_OPENER_POSTMESSAGE', (event, method, args...) ...
2015-03-04T09:29:52
huggingface/transformers
0d66ef77921fc77644fe698f2c7c3f49cdd0ffc0
1ccc73dee9018dad5dcbadff31851d7c663b8b51
Cleanup Attention class for Siglip and dependent models (#39040) * cleanup attention class * More models * more models * Changes * make style * Should fix CI * This should work 🙏
[ { "path": "src/transformers/models/altclip/modeling_altclip.py", "patch": "@@ -623,6 +623,7 @@ def eager_attention_forward(\n \n attn_output = torch.matmul(attn_weights, value)\n attn_output = attn_output.transpose(1, 2).contiguous()\n+\n return attn_output, attn_weights\n \n ", "additions":...
2025-06-27T10:14:09
vercel/next.js
bea01482daa0603b08f8c8033c64c7e7bcf8efc8
61aa1fd70d9ad0c418cbd5acb16cf7448636a3ee
fix: Made native-tls our default feature for ease of dev workflows (vercel/turbo#3748)
[ { "path": "crates/next-dev/Cargo.toml", "patch": "@@ -19,10 +19,10 @@ name = \"mod\"\n harness = false\n \n [features]\n-# By default, we enable native-tls for reqwest downstream trasntive features.\n-# This is for the convinience for all of daily dev workflow i.e running\n+# By default, we enable native-tl...
2023-02-10T20:52:48
golang/go
f5f79c47f900300e8ac962e73ae7c2c706489d67
9f4d6a83594a04f0fc82c33f373b7e7bcf64f7f2
[dev.typeparams] cmd/compile: use types2.Constraint() rather than types2.Bound() types2.Constraint() returns the top-level constraint type, including any unions or other interface elements. Because of that, we needed to add/fix some code in the type substituter and generic type instantiater in the importer to deal wit...
[ { "path": "src/cmd/compile/internal/noder/types.go", "patch": "@@ -227,7 +227,7 @@ func (g *irgen) typ0(typ types2.Type) *types.Type {\n \t\t// Set g.typs[typ] in case the bound methods reference typ.\n \t\tg.typs[typ] = tp\n \n-\t\tbound := g.typ1(typ.Bound())\n+\t\tbound := g.typ1(typ.Constraint())\n \t\t...
2021-08-08T05:26:46
nodejs/node
1237c1414fdb783164c567c10f9fd4aa49b03afa
697c3da30820c37cdd571e64c467494452b38d4b
test: fix assert.strictEqual() argument order PR-URL: https://github.com/nodejs/node/pull/23598 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Сковорода Никита Андреевич <chalkerx@gmail.com> Reviewed-By:...
[ { "path": "test/parallel/test-https-eof-for-eom.js", "patch": "@@ -75,7 +75,7 @@ server.listen(0, common.mustCall(function() {\n server.close();\n console.log('3) Client got response headers.');\n \n- assert.strictEqual('gws', res.headers.server);\n+ assert.strictEqual(res.headers.server, 'gws...
2018-10-12T18:29:32
huggingface/transformers
1ccc73dee9018dad5dcbadff31851d7c663b8b51
a52478253bbe522a420e88ea3940d4d98a935300
[Whisper] fix shape mismatch in tests (#39074) fix shape mismatch
[ { "path": "tests/models/whisper/test_modeling_whisper.py", "patch": "@@ -2040,7 +2040,7 @@ def test_large_timestamp_generation(self):\n [50365, 2221, 13, 2326, 388, 391, 307, 264, 50244, 295, 264, 2808, 5359, 11, 293, 321, 366, 5404, 281, 2928, 702, 14943, 13, 50629, 50682, 6966, 307, 2221, 13, ...
2025-06-27T09:27:42
rust-lang/rust
228a7bb91809fefa7eee61f4ec5960e4a263563f
a3ce646c3ca97632d4c3a637704d8153d8feb0bf
Fix typos in "Libraries and Metadata"
[ { "path": "src/doc/rustc-dev-guide/src/backend/libs-and-metadata.md", "patch": "@@ -28,8 +28,8 @@ format is specific to `rustc`, and may change over time. This file contains:\n [`-C embed-bitcode=no`][embed-bitcode] CLI option to improve compile times\n and reduce disk space if LTO is not needed.\n * `r...
2025-05-18T13:37:18
golang/go
f1dce319ffd9d3663f522141abfb9c1ec9d92e04
7aeaad5c86174f61b084d72d89fb02d7fc64391c
cmd/go: with -mod=vendor, don't panic if there are duplicate requirements In loadModFile with -mod=vendor, load the vendor list and use it to initialize the module graph before calling updateRoots. In updateLazyRoots with any mode other than "mod", return the original *Requirements if no roots needed to be upgraded, ...
[ { "path": "src/cmd/go/internal/modload/buildlist.go", "patch": "@@ -191,6 +191,19 @@ func (rs *Requirements) rootSelected(path string) (version string, ok bool) {\n \treturn \"\", false\n }\n \n+// hasRedundantRoot returns true if the root list contains multiple requirements\n+// of the same module or a req...
2021-08-05T22:18:42
vercel/next.js
e13ace582469cc78cb8697be309779d18b2ee05f
98d6e47234190872f1f42797267e5ed82b0afdb0
Fix applyFocusAndScroll with server patch (#45782) fix #42492 ## 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 exi...
[ { "path": "packages/next/src/client/components/router-reducer/reducers/server-patch-reducer.test.tsx", "patch": "@@ -1,28 +1,69 @@\n import React from 'react'\n-import { FlightData, FlightRouterState } from '../../../../server/app-render'\n+import type { fetchServerResponse as fetchServerResponseType } from...
2023-02-10T19:55:22
nodejs/node
697c3da30820c37cdd571e64c467494452b38d4b
f8b1e0e4b9c8395969df859f9de5663cd576cf1c
test: fix assert parameter order in test-https-localaddress.js PR-URL: https://github.com/nodejs/node/pull/23599 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By...
[ { "path": "test/parallel/test-https-localaddress.js", "patch": "@@ -39,7 +39,7 @@ const options = {\n \n const server = https.createServer(options, function(req, res) {\n console.log(`Connect from: ${req.connection.remoteAddress}`);\n- assert.strictEqual('127.0.0.2', req.connection.remoteAddress);\n+ as...
2018-10-12T18:33:54
electron/electron
5bdc2003760ec8e07b490bb1ac1f53048ccfcfb6
f2c8ea085b7ca86577ef0ebd164227618d03ebb8
Fix tense of error message Thanks for putting this project together; really enjoying hacking with it so far!
[ { "path": "atom/browser/default_app/main.js", "patch": "@@ -53,7 +53,7 @@ if (option.file && !option.webdriver) {\n dialog.showErrorBox('Error opening app', 'The app provided is not a valid atom-shell app, please read the docs on how to write one:\\nhttps://github.com/atom/atom-shell/tree/master/docs'...
2015-03-02T20:08:12
huggingface/transformers
a52478253bbe522a420e88ea3940d4d98a935300
84e8696caebea4cc8afb16a62d5eaae29f01fdd9
[docs] Tensor parallelism (#38241) * updates * feedback * badges * fix? * fix? * fix? * fix?
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -97,7 +97,7 @@\n - local: perf_infer_gpu_one\n title: GPU\n - local: perf_infer_gpu_multi\n- title: Distributed GPU inference\n+ title: Distributed inference\n - local: perf_infer_cpu\n title: CPU\n - local: tf_xla",...
2025-06-26T21:40:45
golang/go
7aeaad5c86174f61b084d72d89fb02d7fc64391c
507cc341ec2cb96b0199800245f222146f799266
runtime/cgo: when using msan explicitly unpoison cgoCallers This avoids an incorrect msan uninitialized memory report when using runtime.SetCgoTraceback when a signal occurs while the fifth argument register is undefined. See the issue for more details. Fixes #47543 Change-Id: I3d1b673e2c93471ccdae0171a99b88b5a60628...
[ { "path": "misc/cgo/testsanitizers/msan_test.go", "patch": "@@ -42,6 +42,7 @@ func TestMSAN(t *testing.T) {\n \t\t{src: \"msan5.go\"},\n \t\t{src: \"msan6.go\"},\n \t\t{src: \"msan7.go\"},\n+\t\t{src: \"msan8.go\"},\n \t\t{src: \"msan_fail.go\", wantErr: true},\n \t}\n \tfor _, tc := range cases {", "ad...
2021-08-05T03:55:28
vercel/next.js
98d6e47234190872f1f42797267e5ed82b0afdb0
946ccb00fcef365786fb5622f95bd2454557fb58
Fix type checking for generateStaticParams (#45788 Address the problem reported in https://github.com/vercel/next.js/discussions/41745#discussioncomment-4936492. ## Bug - [ ] Related issues linked using `fixes #number` - [x] Integration tests added - [ ] Errors have a helpful link attached, see [`contributin...
[ { "path": "packages/next/src/build/webpack/plugins/flight-types-plugin.ts", "patch": "@@ -29,7 +29,7 @@ type TEntry = typeof entry\n \n check<IEntry, TEntry>(entry)\n \n-type PageParams = Record<string, string>\n+type PageParams = any\n interface PageProps {\n params: any\n searchParams?: any\n@@ -54,7 ...
2023-02-10T19:16:38
nodejs/node
f8b1e0e4b9c8395969df859f9de5663cd576cf1c
f781b2cbea8aaf6c6c47bff61499b8f03703db30
test: change order of assert.strictEquals arguments Fix assert.strictEquals argument order. Arguments were actual first, expected second, contrary to the documentation. Now, actual value is first and expected value is second. PR-URL: https://github.com/nodejs/node/pull/23600 Reviewed-By: James M Snell <jasnell@gmail...
[ { "path": "test/parallel/test-tcp-wrap-listen.js", "patch": "@@ -10,15 +10,15 @@ const { WriteWrap } = internalBinding('stream_wrap');\n const server = new TCP(TCPConstants.SOCKET);\n \n const r = server.bind('0.0.0.0', 0);\n-assert.strictEqual(0, r);\n+assert.strictEqual(r, 0);\n let port = {};\n server.ge...
2018-10-12T18:06:31
electron/electron
d8d0f15ca80ab72478a23c1721325ad1fb0d2683
1d1db66abd3f63ffa9f72e3e9ee5449d14c99630
fix readme style
[ { "path": "README.md", "patch": "@@ -13,10 +13,10 @@ Prebuilt binaries of atom-shell for Linux, Windows and Mac can be found on the\n You can also use [`npm`](https://docs.npmjs.com/) to install prebuilt atom-shell binaries:\n \n ```\n-# install globally in your PATH\n+# Install globally in your $PATH\n npm...
2015-03-01T19:58:33
huggingface/transformers
b372bb5ed1ef618739ee205e629204a866dd755e
f171e7e884f4435a372b0690a50db251bc4302a8
fix `layoutlmv3` tests (#39050) * fix * fix * fix * fix * fix * fix --------- Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": "tests/models/layoutlmv3/test_image_processing_layoutlmv3.py", "patch": "@@ -120,11 +120,13 @@ def test_LayoutLMv3_integration_test(self):\n # fmt: off\n # the words and boxes were obtained with Tesseract 5.3.0\n expected_words = [['11:14', 'to', '11:39', 'a.m',...
2025-06-26T18:07:17
golang/go
507cc341ec2cb96b0199800245f222146f799266
891547e2d4bc2a23973e2c9f972ce69b2b48478e
doc: add example for conversion from slice expressions to array ptr Fixes #47599 Change-Id: I8f4ccd3b0c2bcdb057ee853163b4421229141333 Reviewed-on: https://go-review.googlesource.com/c/go/+/340351 Trust: Cuong Manh Le <cuong.manhle.vn@gmail.com> Run-TryBot: Cuong Manh Le <cuong.manhle.vn@gmail.com> TryBot-Result: Go B...
[ { "path": "doc/go_spec.html", "patch": "@@ -4329,6 +4329,7 @@ <h4 id=\"Conversions_from_slice_to_array_pointer\">Conversions from slice to array\n <pre>\n s := make([]byte, 2, 4)\n s0 := (*[0]byte)(s) // s0 != nil\n+s1 := (*[1]byte)(s[1:]) // &amp;s1[0] == &amp;s[1]\n s2 := (*[2]byte)(s) // &amp;...
2021-08-08T17:52:21
vercel/next.js
61aa1fd70d9ad0c418cbd5acb16cf7448636a3ee
e3895034ccb13c87429e34d054c55c2646558e91
fix: use prerelease update-informer to cut ureq (vercel/turbo#3726) `update-informer` has some good stuff in the pipeline that allows us to specify the http client we use. This is a quick and dirty add support for the updater on Windows ARM. If we don't want to use a non-release version of `update-informer` than ve...
[ { "path": "crates/turbo-updater/Cargo.toml", "patch": "@@ -6,11 +6,20 @@ description = \"Minimal wrapper around update-informer to provide npm registry su\n license = \"MPL-2.0\"\n publish = false\n \n+[features]\n+# Allows configuring a specific tls backend for reqwest.\n+# See top level Cargo.toml for mor...
2023-02-10T18:50:11
rust-lang/rust
abbf8fe6e7abf6b6b612bcc65f87ded71a6ce562
d16c82dba15f4aaf61874f6668417856002d32a6
fix an if statement that can be collapsed
[ { "path": "library/compiler-builtins/crates/libm-macros/src/lib.rs", "patch": "@@ -1,3 +1,5 @@\n+#![feature(let_chains)]\n+\n mod enums;\n mod parse;\n mod shared;\n@@ -266,27 +268,27 @@ fn validate(input: &mut StructuredInput) -> syn::Result<Vec<&'static MathOpInfo>\n }\n }\n \n- if let Some...
2025-05-18T08:14:22
nodejs/node
f781b2cbea8aaf6c6c47bff61499b8f03703db30
17c35a6297e1b8b97bb0cddc1c69cc573fb7aed0
test: fix assert equal order of arguments PR-URL: https://github.com/nodejs/node/pull/23602 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Trivikram Kamat <tr...
[ { "path": "test/parallel/test-net-connect-handle-econnrefused.js", "patch": "@@ -31,6 +31,6 @@ server.close(common.mustCall(() => {\n const c = net.createConnection(port);\n c.on('connect', common.mustNotCall());\n c.on('error', common.mustCall((e) => {\n- assert.strictEqual('ECONNREFUSED', e.code)...
2018-10-12T18:33:29
huggingface/transformers
2f50230c59ec9f17431236ed6625082cc385c76c
23b7e73f0581a880370477597dc948e07c2f064b
fix `t5gemma` tests (#39052) * fix * fix * fix * fix * fix --------- Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": "src/transformers/models/t5gemma/modeling_t5gemma.py", "patch": "@@ -41,7 +41,7 @@\n from ...modeling_rope_utils import ROPE_INIT_FUNCTIONS, dynamic_rope_update\n from ...modeling_utils import ALL_ATTENTION_FUNCTIONS, PreTrainedModel\n from ...processing_utils import Unpack\n-from ...utils import ...
2025-06-26T16:48:14
golang/go
d10a90471275bf2d91c4c853d7d1f75f23a70a32
9e0ac72d680e71d22c7d31950a16d4f92f08305a
[dev.typeparams] cmd/compile: don't export/import type parameter indices anymore types2 now determines type parameter indices lazily, so we don't need them just as we are importing. We set them in types1 as we are importing the type param list itself. type param indices are not strongly needed in types1 - we only use...
[ { "path": "src/cmd/compile/internal/importer/iimport.go", "patch": "@@ -364,10 +364,6 @@ func (r *importReader) obj(name string) {\n \t\tif r.p.exportVersion < iexportVersionGenerics {\n \t\t\terrorf(\"unexpected type param type\")\n \t\t}\n-\t\t// Type parameter indices are lazily \"allocated\".\n-\t\t// T...
2021-08-06T23:29:09
vercel/next.js
946ccb00fcef365786fb5622f95bd2454557fb58
1c5983fe95b79cc9ea1e52d19e69adf7827eda5a
Update turbopack to 230209.02 (#45776)Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com> # New Features - https://github.com/vercel/turbo/pull/3540 - https://github.com/vercel/turbo/pull/3549 - https://github.com/vercel/turbo/pull/3465 - https://github.com/vercel/turbo/pull/3550 - htt...
[ { "path": "packages/next-swc/Cargo.lock", "patch": "@@ -18,7 +18,7 @@ version = \"0.19.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n checksum = \"a76fd60b23679b7d19bd066031410fb7e458ccc5e958eb5c325888ce4baedc97\"\n dependencies = [\n- \"gimli 0.27.0\",\n+ \"gimli 0.27.1\",\n ]\n...
2023-02-10T16:40:19
rust-lang/rust
e12d6757393035aa2de55d0f1712ef7656c60589
7ec06fc3b14933b1937f11ee028e2e8f245e7857
delay error for unsupported options
[ { "path": "compiler/rustc_builtin_macros/src/asm.rs", "patch": "@@ -347,15 +347,13 @@ fn validate_raw_asm_args<'a>(\n \n for (symbol, option, span, full_span) in new_options {\n if !asm_macro.is_supported_option(option) {\n- /*\n- ...
2025-04-29T21:39:10
electron/electron
e98953a5a563648a69b6cb8535d1f27febeec887
0c99f3baa6be3224504fc0c5101a1e8de1b03c58
win: Fix calling FILE_PATH_LITERAL for variable, fixes #1143
[ { "path": "atom/common/node_bindings.cc", "patch": "@@ -174,11 +174,12 @@ node::Environment* NodeBindings::CreateEnvironment(\n #endif\n \n // Feed node the path to initialization script.\n- const char* process_type = is_browser_ ? \"browser\" : \"renderer\";\n+ base::FilePath::StringType process_type =...
2015-02-27T20:21:19
nodejs/node
febb7656e3dc336952319f91b02efbc898b9c65a
6151040d08d222e88c314d0f3cba6284d13b85b3
test: fix order of assert args in client response domain test PR-URL: https://github.com/nodejs/node/pull/23604 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By:...
[ { "path": "test/parallel/test-http-client-response-domain.js", "patch": "@@ -44,8 +44,8 @@ server.listen(common.PIPE, function() {\n \n function test() {\n \n- d.on('error', common.mustCall(function(err) {\n- assert.strictEqual('should be caught by domain', err.message);\n+ d.on('error', common.mustCal...
2018-10-12T18:38:17
huggingface/transformers
23b7e73f0581a880370477597dc948e07c2f064b
58c768922618cf11ce769fb8368c26c6db54c535
fix `test_compare_unprocessed_logit_scores` (#39053) fix Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": "tests/generation/test_utils.py", "patch": "@@ -3807,7 +3807,7 @@ def test_compare_unprocessed_logit_scores(self):\n logits_gen = outputs.logits[0][0]\n \n # assert that unprocessed logits from generate() are same as those from modal eval()\n- self.assertListEqual(logits_fwd...
2025-06-26T16:36:56
golang/go
891547e2d4bc2a23973e2c9f972ce69b2b48478e
8eaf4d16bc69724cd450345cbaf55f2e2aef9b9c
doc/go1.17: fix a typo introduced in CL 335135 Change-Id: I62388bcb6d6f910ffa95d3db856ea29838573256 Reviewed-on: https://go-review.googlesource.com/c/go/+/340590 Trust: Bryan C. Mills <bcmills@google.com> Run-TryBot: Bryan C. Mills <bcmills@google.com> Reviewed-by: Rob Pike <r@golang.org>
[ { "path": "doc/go1.17.html", "patch": "@@ -150,7 +150,7 @@ <h4 id=\"graph-pruning\">Pruned module graphs in <code>go 1.17</code> modules</h4>\n the pruned module graph, the <code>go.mod</code> file for each module needs to\n include more detail about the transitive dependencies relevant to that module.\...
2021-08-07T01:10:31
rust-lang/rust
de8e305ba8feae17e5bc1281647865dc3f1deadf
5af9652e5c733eb14c9a28b92c7a2608cbf7ea59
a new parser generating the exact same error messages Co-authored-by: Travis Cross <tc@traviscross.com>
[ { "path": "compiler/rustc_builtin_macros/src/asm.rs", "patch": "@@ -4,7 +4,7 @@ use rustc_ast::ptr::P;\n use rustc_ast::tokenstream::TokenStream;\n use rustc_ast::{AsmMacro, token};\n use rustc_data_structures::fx::{FxHashMap, FxIndexMap};\n-use rustc_errors::PResult;\n+use rustc_errors::{DiagCtxtHandle, PR...
2025-04-29T20:43:46
vercel/next.js
906f22955f358d00f426e7af14e8e6e59e2a5a41
e538a72f66a93c558f4a40b01743e69c8f5a0d6c
Various Rope updates and fixes (vercel/turbo#3629) Updates and fixes a few items: - Fix: Prevents a Rope from containing an empty `Bytes` section - Perf: Use a `Box<[RopeElem]>` instead of a `Vec<RopeElem>`, reducing memory useage - Perf: Implement fast path for `Rope::to_str()` when containing a single `Shared` ...
[ { "path": "crates/turbo-tasks-fs/src/rope.rs", "patch": "@@ -3,7 +3,8 @@ use std::{\n cmp::min,\n fmt::Debug,\n io::{self, BufRead, Read, Result as IoResult, Write},\n- mem, ops,\n+ mem,\n+ ops::{AddAssign, Deref},\n pin::Pin,\n sync::Arc,\n task::{Context as TaskContext, Po...
2023-02-10T16:22:32
electron/electron
78b856268ee899bbdb2b4d7d3990fde5ea487915
b6787a9b34aea0c067adef8091804c846a3a3cd6
Fix cpplint errors.
[ { "path": "atom/browser/browser.cc", "patch": "@@ -118,7 +118,9 @@ void Browser::NotifyAndShutdown() {\n \n bool Browser::HandleBeforeQuit() {\n bool prevent_default = false;\n- FOR_EACH_OBSERVER(BrowserObserver, observers_, OnBeforeQuit(&prevent_default));\n+ FOR_EACH_OBSERVER(BrowserObserver,\n+ ...
2015-02-26T05:57:25
huggingface/transformers
58c768922618cf11ce769fb8368c26c6db54c535
5154497607970fbd8a03f89a767dffb65619b5ce
[`Flex Attn`] Fix torch 2.5.1 incompatibilities (#37406) * remove compile on mask creation, ensure kv blocks do not explode on indices * trigger ci * switch dynamic compilation to false * patch new masking functions as well * add len check * i was wrong * last comment
[ { "path": "src/transformers/integrations/flex_attention.py", "patch": "@@ -32,10 +32,11 @@\n from packaging import version\n \n from ..utils import is_torch_flex_attn_available, logging\n-from ..utils.import_utils import _torch_version, is_torchdynamo_compiling\n+from ..utils.import_utils import _torch_vers...
2025-06-26T16:23:55
nodejs/node
31cb2971f455c515b7825bbb74e6a20e51af1c65
a039c863c4ab4210bb7435fe6c13f130c8a44781
test: fix assertions args order PR-URL: https://github.com/nodejs/node/pull/23608 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@...
[ { "path": "test/parallel/test-http-chunk-problem.js", "patch": "@@ -53,8 +53,8 @@ function executeRequest(cb) {\n 'shasum' ].join(' '),\n (err, stdout, stderr) => {\n assert.ifError(err);\n- assert.strictEqual('8c206a1a87599f532ce68675536f0b1546900d7a',\n- ...
2018-10-12T18:46:14
golang/go
63b968f4f86f4c23ce92b7ac2feda4fc7ca17c8e
70546f6404c5927a9868a80ccbf4c6c2beaea671
doc/go1.17: clarify Modules changes Writing CL 333629 clarified my thinking about the behavioral changes associated with lazy loading. There are really two interrelated changes — graph pruning, and lazy loading proper — that are both made possible by the added redundancy in the go.mod file. (I had initially approache...
[ { "path": "doc/go1.17.html", "patch": "@@ -134,35 +134,54 @@ <h2 id=\"tools\">Tools</h2>\n \n <h3 id=\"go-command\">Go command</h3>\n \n-<h4 id=\"lazy-loading\">Lazy module loading</h4>\n+<a id=\"lazy-loading\"><!-- for existing links only --></a>\n+<h4 id=\"graph-pruning\">Pruned module graphs in <code>go ...
2021-07-16T20:51:11
vercel/next.js
792ca8755dca19d781d537b9765ed2df9bc93b66
fab373da1bd60b667660d9d13e9764afa9744fc6
fix incorrect segment path (vercel/turbo#3739) fixes app dir with `/(basic)/about` routes
[ { "path": "packages/next-swc/crates/next-core/src/app_source.rs", "patch": "@@ -324,6 +324,7 @@ pub async fn create_app_source(\n EcmascriptChunkPlaceablesVc::cell(server_runtime_entries),\n fallback_page,\n server_root,\n+ server_root,\n LayoutSegmentsVc::cell(Vec::ne...
2023-02-10T14:40:37
huggingface/transformers
0a8081b03d118da9a8c3fa143a03afe54a5c624e
c63cfd6a833d629a74c098933017c61dd755969d
[Modeling] Fix encoder CPU offloading for whisper (#38994) * fix cpu offloading for whisper Signed-off-by: Kyle Sayers <kylesayrs@gmail.com> * unskip offloading tests Signed-off-by: Kyle Sayers <kylesayrs@gmail.com> * revert small change Signed-off-by: Kyle Sayers <kylesayrs@gmail.com> * remove tests Signed-off...
[ { "path": "src/transformers/models/whisper/modeling_whisper.py", "patch": "@@ -687,9 +687,9 @@ def forward(\n inputs_embeds = nn.functional.gelu(self.conv2(inputs_embeds))\n \n inputs_embeds = inputs_embeds.permute(0, 2, 1)\n- embed_pos = self.embed_positions.weight\n+ all_posi...
2025-06-26T15:56:33
electron/electron
43e44f8c350776fdec4936a02fcf5d0193abac3b
f1ad8836d1b19301a243a2ef124c2088b9d74a31
Fix window.open options parsing: remove excessive whitespace (gets inserted in property names), avoid creating dummy properties if not needed, turn 1/0 to true/false, convert integer strings to strings (fixes width/height).
[ { "path": "atom/renderer/lib/override.coffee", "patch": "@@ -26,21 +26,25 @@ unless process.guestInstanceId?\n # Make the browser window or guest view emit \"new-window\" event.\n window.open = (url, frameName='', features='') ->\n options = {}\n- for feature in features.split ','\n- [name, value] = f...
2015-02-18T12:36:05
nodejs/node
a039c863c4ab4210bb7435fe6c13f130c8a44781
99c16900c8eba7baa64dbd4f5f978412871410a2
test: fix parameters in test-repl.js fixed order of parameters in assert.strictEqual() assertion functions, first argument provided was the expected value and the second value was the actual value. this is backwards from the documentation for assertions like assert.strictEqual() where the first value being tested and...
[ { "path": "test/parallel/test-repl.js", "patch": "@@ -784,8 +784,8 @@ function startTCPRepl() {\n client.setEncoding('utf8');\n \n client.on('connect', common.mustCall(() => {\n- assert.strictEqual(true, client.readable);\n- assert.strictEqual(true, client.writable);\n+ assert.strictE...
2018-10-12T18:46:07
golang/go
3a9fd99849bbd9eab7e4e14a4dda95239c41ab83
c3b57af8bc0fb4fe9b30e42891e9aff54c0c7a82
[dev.typeparams] cmd/compile/internal/syntax: cleanup panic calls End-users are not expected to deal with the details of panics, so providing extra information such as an "internal error" prefix is not helpful. Matches the types2 changes made in https://golang.org/cl/339969 . Change-Id: Icb34a9daab981a84f41f8ae7ae5d...
[ { "path": "src/cmd/compile/internal/syntax/parser.go", "patch": "@@ -604,7 +604,7 @@ func (p *parser) typeDecl(group *Group) Decl {\n \t\t\t} else {\n \t\t\t\t// x is the array length expression\n \t\t\t\tif debug && x == nil {\n-\t\t\t\t\tpanic(\"internal error: nil expression\")\n+\t\t\t\t\tpanic(\"length...
2021-08-05T04:17:54
vercel/next.js
c98aaed7746869557aad789ae8e6b9f9acc1594e
5966aa62e0fd587299f3eee43d1aad180d494ec0
fix incorrect segment path (vercel/turbo#3739) fixes app dir with `/(basic)/about` routes
[ { "path": "crates/next-core/src/app_source.rs", "patch": "@@ -324,6 +324,7 @@ pub async fn create_app_source(\n EcmascriptChunkPlaceablesVc::cell(server_runtime_entries),\n fallback_page,\n server_root,\n+ server_root,\n LayoutSegmentsVc::cell(Vec::new()),\n ou...
2023-02-10T14:40:37
electron/electron
a8c227d5f51665decbafb3bb72c3431484016247
9646c28a4151299a176a88202a1e3dde8b8117c9
Fix cpplint warnings
[ { "path": "atom/common/asar/asar_util.cc", "patch": "@@ -5,6 +5,7 @@\n #include \"atom/common/asar/asar_util.h\"\n \n #include <map>\n+#include <string>\n \n #include \"atom/common/asar/archive.h\"\n #include \"base/files/file_path.h\"\n@@ -14,11 +15,10 @@\n \n namespace asar {\n \n-typedef std::map<base::F...
2015-02-12T11:50:28
nodejs/node
99c16900c8eba7baa64dbd4f5f978412871410a2
fca21739627f2daadea51f6ead23730e15d70e79
test: reverse arguments in assert.strictEqual assert.strictEqual() had incorrect order of arguments with expected and actual values reversed. PR-URL: https://github.com/nodejs/node/pull/23613 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Anna Henning...
[ { "path": "test/parallel/test-http-keep-alive-close-on-header.js", "patch": "@@ -46,7 +46,7 @@ server.listen(0, function() {\n port: this.address().port,\n agent: agent\n }, function(res) {\n- assert.strictEqual(1, agent.sockets[name].length);\n+ assert.strictEqual(agent.sockets[name].length...
2018-10-12T18:39:59
huggingface/transformers
c63cfd6a833d629a74c098933017c61dd755969d
3e5cc1285503bbdb6a0a3e173b5ae90566862215
Gemma 3n (#39059) * Gemma 3n * initial commit of Gemma 3n scaffold * Fixing param pass through on Gemm3p5RMSNorm * Adds Einsum layer to Gemma 3n * Updating EinsumLayer API * Undoing erroneous force push * Reverting RMSNorm to with_scale by default * Adds LAuReL to Gemma 3n * Adds AltUp to Gemma 3n * Adding Ge...
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -959,6 +959,8 @@\n title: FLAVA\n - local: model_doc/gemma3\n title: Gemma3\n+ - local: model_doc/gemma3n\n+ title: Gemma3n\n - local: model_doc/git\n title: GIT\n - local: model_doc/glm4v", "addi...
2025-06-26T15:55:47
golang/go
0811108670a178eb3d1403da81bfed20a7ffe1d7
93285c89d1146e2698d2b8e5bf45279961f5026e
[dev.typeparams] cmd/compile/internal/types2: fix make with type parameter argument For make with a type parameter argument, the structural type of the type parameter's constraint determines what make is making. Change-Id: I3b48f8ce3236b7624e0638b5f5be208c5915c987 Reviewed-on: https://go-review.googlesource.com/c/go/...
[ { "path": "src/cmd/compile/internal/types2/builtins.go", "patch": "@@ -472,39 +472,21 @@ func (check *Checker) builtin(x *operand, call *syntax.CallExpr, id builtinId) (\n \t\t\treturn\n \t\t}\n \n-\t\tmin, max := -1, 10\n-\t\tvar valid func(t Type) bool\n-\t\tvalid = func(t Type) bool {\n-\t\t\tvar m int\n...
2021-08-05T01:01:41