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
huggingface/transformers
91b1ab1fdfa81a552644a92fbe3e8d88de40e167
a594e09e3924120f1f5508e7d81946bf3504df2b
casually dropping the most capable open weights on the planet (#45192) * model previously unable to use tools --------- Co-authored-by: Douglas Reid <dougreid@google.com> Co-authored-by: Luciano Martins <lucianomartins@google.com> Co-authored-by: Mayank Chaturvedi <imayank@google.com> Co-authored-by: Phil Culliton...
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -1182,6 +1182,8 @@\n title: Gemma3\n - local: model_doc/gemma3n\n title: Gemma3n\n+ - local: model_doc/gemma4\n+ title: Gemma4\n - local: model_doc/git\n title: GIT\n - local: model_doc/glm46v", "...
2026-04-02T15:24:39
golang/go
70d499cd897ce7827f8ca3f7ba284bf97216c8d8
1f0ef6bec73e972d15e1c44307558a8263f81ea4
test/heapsampling.go: slow down allocation rate and reduce iterations As far as I can tell, this test suffers from #52433. For some reason, this seems to become more of a problem on the windows/386 than anywhere else. This CL is an attempt at a mitigation by slowing down the allocation rate by inserting runtime.Gosche...
[ { "path": "test/heapsampling.go", "patch": "@@ -45,7 +45,7 @@ func main() {\n // the testcase allows for a 10% margin of error, but only fails if it\n // consistently fails across three experiments, avoiding flakes.\n func testInterleavedAllocations() error {\n-\tconst iters = 100000\n+\tconst iters = 50000...
2022-05-27T18:14:58
electron/electron
774a15f4c8686a22b5d6f8aca7edecd4fd68234a
b7c4cde11a0075890ccfb7f9b560d97fe93a3472
:memo: Improve grammar [ci skip] * Use `formal` tense. * Small fixes.
[ { "path": "docs-translations/ko-KR/api/app.md", "patch": "@@ -607,25 +607,25 @@ Returns `Object`:\n * `task` - 특정 인수로 앱을 실행시킬 작업.\n * `separator` - 표준 `Tasks` 카테고리에서 항목을 구분할 수 있습니다.\n * `file` - 점프 목록을 만든 앱을 사용하여 파일을 열 파일 링크. 이것이\n- 동작하려면 그 파일 형식을 앱이 처리할 수 있게 등록되있어야 한다. (하지만,\n+ 동작하려면 그 파일 형식을 앱...
2016-10-12T03:18:13
rust-lang/rust
c7b81f38f8f5dee79be0fbddfba551eea3f98bf8
00de833b60b6198f092901e1b2f6a10e6f3a89da
Fix double "fatal error: " in message
[ { "path": "src/tools/miri/src/bin/log/setup.rs", "patch": "@@ -60,7 +60,7 @@ fn init_logger_once(early_dcx: &EarlyDiagCtxt) {\n #[cfg(not(feature = \"tracing\"))]\n {\n crate::fatal_error!(\n- \"fatal error: cannot enable MIRI_TRACING since Miri was...
2025-07-22T16:42:11
huggingface/transformers
a594e09e3924120f1f5508e7d81946bf3504df2b
4932e9721e230bea915341e7f04db32885b6c6af
Internalise the NomicBERT model (#43067) * Created nomicBert skeleton * Implement modular_nomic_bert Co-authored-by: Felix Arkle <felixarkle@icloud.com> * Implement convert_nomic_bert_to_hf * Complete nomic_bert conversion script key mappings and fix NomicBertSelfAttention signature * Create nomic bert documentat...
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -726,6 +726,8 @@\n title: NLLB\n - local: model_doc/nllb-moe\n title: NLLB-MoE\n+ - local: model_doc/nomic_bert\n+ title: NomicBERT\n - local: model_doc/nystromformer\n title: Nyströmformer\n - local:...
2026-04-02T14:21:03
vercel/next.js
92cf73d4489d5b274bfe968fa741492d479569e6
9adddc27aa5417f2e4587db476f7a1c7028a8efb
Remove IncomingMessage type where unused (#55387) There were a few places where both `BaseNextRequest` and `IncomingMessage` could be passed in, even though all calls were already `BaseNextRequest`. This PR cleans up the cases where it `IncomingMessage` is never passed. Also found that `handleBasePath` wasn't used...
[ { "path": "packages/next/src/server/server-utils.ts", "patch": "@@ -1,4 +1,3 @@\n-import type { IncomingMessage } from 'http'\n import type { Rewrite } from '../lib/load-custom-routes'\n import type { RouteMatchFn } from '../shared/lib/router/utils/route-matcher'\n import type { NextConfig } from './config'...
2023-09-14T19:35:09
golang/go
0f57c88bce9899a91686646a1e9cd7aae55911ef
42f1b37b7b46714455a3a54e506bff982aa50fa2
misc/cgo/testsanitizers: buffer the signal channel in TestTSAN/tsan11 This fix is analogous to the one in CL 407888. 'go vet' catches the error, but it is not run on this file because the file is (only) compiled when running testsanitizers/TestTSAN. Fixes #53113. Change-Id: I74f7b7390a9775ff00a06214c1019ba28846dd11...
[ { "path": "misc/cgo/testsanitizers/testdata/tsan11.go", "patch": "@@ -45,7 +45,7 @@ static void register_handler(int signo) {\n import \"C\"\n \n func main() {\n-\tch := make(chan os.Signal)\n+\tch := make(chan os.Signal, 1)\n \tsignal.Notify(ch, syscall.SIGUSR2)\n \n \tC.register_handler(C.int(syscall.SIGU...
2022-05-27T15:42:59
huggingface/transformers
4932e9721e230bea915341e7f04db32885b6c6af
57e84139542c8c297873f35fcd25f66ffcf132ae
Fix resized LM head weights being overwritten by post_init (#45079) When `tie_word_embeddings=False`, `_get_resized_lm_head()` creates a new `nn.Linear` without `_is_hf_initialized`, causing `post_init()` to reinitialize its weights. Set the flag after weight copying is done. Fixes #35141
[ { "path": "src/transformers/modeling_utils.py", "patch": "@@ -2984,6 +2984,7 @@ def _get_resized_lm_head(\n new_lm_head, old_lm_head, num_tokens_to_copy, transposed, has_new_lm_head_bias\n )\n \n+ new_lm_head._is_hf_initialized = True\n return new_lm_head\n \n ...
2026-04-02T14:13:31
rust-lang/rust
00de833b60b6198f092901e1b2f6a10e6f3a89da
2a81b4fad6bc5d089808d10cd880de040339cea6
Fix missing $ in enter_trace_span!
[ { "path": "src/tools/miri/src/helpers.rs", "patch": "@@ -1465,7 +1465,7 @@ pub struct MaybeEnteredTraceSpan {\n #[macro_export]\n macro_rules! enter_trace_span {\n ($name:ident :: $subname:ident $($tt:tt)*) => {{\n- enter_trace_span!(stringify!($name), $name = %stringify!(subname) $($tt)*)\n+ ...
2025-07-22T11:45:37
vercel/next.js
9adddc27aa5417f2e4587db476f7a1c7028a8efb
cb5e75d97b8debdb2423e37016644ebd4ad769f5
fix: examples/cms-keystonejs-embedded/package.json to reduce vulnerabilities (#55354) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-PROMPTS-1729737 - https://snyk.io/vuln/SNYK-JS-SHELLQUOTE-1766506 - https://snyk.io/vuln/SNYK-JS-TAR-1579152 - https://snyk.io/vuln/SNYK-JS-TAR-1...
[ { "path": "examples/cms-keystonejs-embedded/package.json", "patch": "@@ -8,7 +8,7 @@\n },\n \"dependencies\": {\n \"@keystone-next/fields\": \"^15.0.0\",\n- \"@keystone-next/keystone\": \"^25.0.0\",\n+ \"@keystone-next/keystone\": \"^27.0.2\",\n \"next\": \"10.2.2\",\n \"react\": \"18....
2023-09-14T19:31:03
nodejs/node
625a0ec5e18f85ee7b1589f308d2c93116484007
07c55bb81fcf05a070168e570b618461ad4a847e
readline,repl: add substring based history search This improves the current history search feature by adding substring based history search similar to ZSH. In case the `UP` or `DOWN` buttons are pressed after writing a few characters, the start string up to the current cursor is used to search the history. All other ...
[ { "path": "doc/api/repl.md", "patch": "@@ -22,10 +22,11 @@ be connected to any Node.js [stream][].\n \n Instances of [`repl.REPLServer`][] support automatic completion of inputs,\n completion preview, simplistic Emacs-style line editing, multi-line inputs,\n-[ZSH][] like reverse-i-search, ANSI-styled output...
2019-12-27T14:32:39
huggingface/transformers
b10552e99dc4974b30126995baea455df43f8476
423f2a31d2bd05bdc1dc30dd938389edaa998fde
Fix TypeError: 'NoneType' object is not iterable in GenerationMixin.generate (#45164) Fix for None layer_types
[ { "path": "src/transformers/generation/utils.py", "patch": "@@ -1852,7 +1852,7 @@ def _prepare_cache_for_generation(\n # linear attention models always need to pass the config, otherwise it will use an Attention cache for the LinearAttention layers\n is_linear_attention = any(\n ...
2026-04-02T13:55:16
golang/go
42f1b37b7b46714455a3a54e506bff982aa50fa2
524210bbb2866156892bbc8d2da24e00a6544f95
doc: fix up race detector release note It's already mentioned under runtime/race, we don't need it also mentioned under runtime. Change-Id: I538322b32d75b9642f3ead03539fccb95988ef8c Reviewed-on: https://go-review.googlesource.com/c/go/+/408875 Reviewed-by: Keith Randall <khr@google.com> Reviewed-by: Carlos Amedee <ca...
[ { "path": "doc/go1.19.html", "patch": "@@ -308,16 +308,13 @@ <h3 id=\"minor_library_changes\">Minor changes to the library</h3>\n the <code>-trimpath</code> flag set and the <code>GOROOT</code>\n variable is not set in the process environment.\n </p>\n- <p><!-- CL 333529 -->\n- TODO:...
2022-05-26T16:58:18
rust-lang/rust
2a81b4fad6bc5d089808d10cd880de040339cea6
7a8288bce479b12f489a2b66b5cee1dfc6ff2e07
Use i64 for tracing chrome "id" Perfetto gives an error if an id does not fit in an 64-bit signed integer in 2's complement.
[ { "path": "src/tools/miri/src/bin/log/tracing_chrome.rs", "patch": "@@ -12,6 +12,7 @@\n //! ```rust\n //! tracing::info_span!(\"my_span\", tracing_separate_thread = tracing::field::Empty, /* ... */)\n //! ```\n+//! - use i64 instead of u64 for the \"id\" in [ChromeLayer::get_root_id] to be compatible ...
2025-07-22T11:43:30
vercel/next.js
cb5e75d97b8debdb2423e37016644ebd4ad769f5
6506c1ce96cf44ab3917c9b2952a5aa3afbe13df
example: fix example error (#54599) example: fix example error
[ { "path": "examples/with-ant-design/app/AntdRegistry.tsx", "patch": "@@ -3,13 +3,14 @@\n import React from 'react'\n import { useServerInsertedHTML } from 'next/navigation'\n import { StyleProvider, createCache, extractStyle } from '@ant-design/cssinjs'\n+import type Entity from '@ant-design/cssinjs/es/Cach...
2023-09-14T19:09:05
huggingface/transformers
423f2a31d2bd05bdc1dc30dd938389edaa998fde
ade7a05a42bf53b183bb78c181743be063c5ff14
fix(models): Fix dtype mismatch in SwitchTransformers and TimmWrapperModel (#45074) * fix: Cast inputs to match weight dtype * new: Add test * change: Upcast to float32 instead of downcasting
[ { "path": "src/transformers/models/switch_transformers/modeling_switch_transformers.py", "patch": "@@ -91,6 +91,7 @@ def forward(self, hidden_states: torch.Tensor) -> tuple[torch.Tensor, torch.Tens\n if self.training and self.jitter_noise > 0:\n # Multiply the token inputs by the uniform...
2026-04-02T13:21:19
nodejs/node
07c55bb81fcf05a070168e570b618461ad4a847e
b4ae0cb97a1a0968cacd34390606d9acf49baf1f
repl: improve preview length calculation The preview had an off by one error in case colors where deactivated and did not take fullwidth unicode characters into account when displaying the preview. PR-URL: https://github.com/nodejs/node/pull/31112 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: James ...
[ { "path": "lib/internal/repl/utils.js", "patch": "@@ -31,26 +31,19 @@ const {\n } = require('readline');\n \n const {\n- commonPrefix\n+ commonPrefix,\n+ getStringWidth,\n } = require('internal/readline/utils');\n \n const { inspect } = require('util');\n \n const debug = require('internal/util/debuglog'...
2019-12-26T20:00:38
golang/go
fd0ffedae2dd9e202efc2dd7f7937baa08600d26
55c42c289240c15171a8d05943cf7717f1a79cd6
doc: replace tabs with spaces for alignment in code snippets Fixes #52255 Change-Id: Ibb518cf2f6bac9e1ffc426a014afe80cc4c0df5e Reviewed-on: https://go-review.googlesource.com/c/go/+/399394 Reviewed-by: Jamal Carvalho <jamal@golang.org> Reviewed-by: Robert Griesemer <gri@google.com>
[ { "path": "doc/go_spec.html", "patch": "@@ -800,7 +800,7 @@ <h2 id=\"Types\">Types</h2>\n TypeArgs = \"[\" TypeList [ \",\" ] \"]\" .\n TypeList = Type { \",\" Type } .\n TypeLit = ArrayType | StructType | PointerType | FunctionType | InterfaceType |\n-\t SliceType | MapType | ChannelType .\n+ ...
2022-04-09T22:55:33
electron/electron
a8e59ccd3dd2ffe473299f594b919dc6847a07a7
57852366bb60120a2aacaa47d34f4915dec0a1ea
fix links to testing docs
[ { "path": "docs/development/build-instructions-linux.md", "patch": "@@ -121,7 +121,7 @@ $ sudo ln -s /usr/lib/libncurses.so.5 /usr/lib/libtinfo.so.5\n \n ## Tests\n \n-See [Build System Overview: Tests](docs/development/build-system-overview.md#tests)\n+See [Build System Overview: Tests](build-system-overvi...
2016-10-06T17:25:33
huggingface/transformers
538368903c6ecdc5f489a8eed4ce809e58fdafb5
abc417a4b6cf05e474921449641f2ff0cc93d3dd
[misc] fix qwen35 tests: correct the text model type and skip reverse_mapping (#45173) * tests: skip qwen3.5 reverse mapping for vlm * update
[ { "path": "tests/models/qwen3_5/test_modeling_qwen3_5.py", "patch": "@@ -162,7 +162,7 @@ def __init__(\n \"vocab_size\": 99,\n \"intermediate_size\": 37,\n \"max_position_embeddings\": 512,\n- \"model_type\": \"qwen3_vl\",\n+ \"model_type\": \"qwen3_...
2026-04-02T12:47:39
nodejs/node
5f76f7607e56a84d00d6de0faef93c2848943e72
1b8eb22761985ba669897b036fc1889243a57ba2
doc: rename iterator to iterable in examples PR-URL: https://github.com/nodejs/node/pull/31252 Fixes: https://github.com/nodejs/node/issues/31222 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "doc/api/stream.md", "patch": "@@ -2647,8 +2647,8 @@ const finished = util.promisify(stream.finished);\n \n const writable = fs.createWriteStream('./file');\n \n-async function pump(iterator, writable) {\n- for await (const chunk of iterator) {\n+async function pump(iterable, writable) {\n+ for ...
2020-01-07T21:59:54
rust-lang/rust
60b054533fb607d0fac9716c1a6b94e9efa3b7a5
94f725f8d214c4143c0a5bf8802f6d250fb30b3d
Fix cronjob Zulip message
[ { "path": "src/tools/miri/.github/workflows/ci.yml", "patch": "@@ -219,7 +219,7 @@ jobs:\n It would appear that the [Miri cron job build]('\"https://github.com/$GITHUB_REPOSITORY/actions/runs/$GITHUB_RUN_ID\"') failed.\n \n This likely means that rustc changed the miri directory and\n- ...
2025-07-25T06:27:18
golang/go
55c42c289240c15171a8d05943cf7717f1a79cd6
d29d0314c1ee64b2cf925b9c8ee535a6e52c5386
doc/go1.19: fix strconv.Quote pkg link For #51400. Change-Id: I122b3a58e5fbaaa8ceb5b013e8e392f4bcbbd2e5 Reviewed-on: https://go-review.googlesource.com/c/go/+/408495 Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org> Reviewed-by: Ian Lance Taylor <iant@google.com> Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
[ { "path": "doc/go1.19.html", "patch": "@@ -355,7 +355,7 @@ <h3 id=\"minor_library_changes\">Minor changes to the library</h3>\n <dl id=\"strconv\"><dt><a href=\"/pkg/strconv/\">strconv</a></dt>\n <dd>\n <p><!-- CL 397255 -->\n- <a href=\"/pkg/strconv/#strconv.Quote\"><code>strconv.Quote</code></a...
2022-05-25T13:39:37
vercel/next.js
e23dac0cbf9505cbb0c4f8a86e2e521b537da9e6
cd1a50f13319a36a89e304c1773345f71cca1cf4
fix: added support for tests to add resolutions for deps (#55398) Some tests may depend on `latest` to help us catch problems earlier. This adds support for the `resolutions` field for tests to allow pinning of deps that may be problematic upstream.
[ { "path": "test/e2e/app-dir/rsc-basic/rsc-basic.test.ts", "patch": "@@ -22,6 +22,12 @@ createNextDescribe(\n 'styled-components': 'latest',\n 'server-only': 'latest',\n },\n+ resolutions: {\n+ '@babel/core': '7.22.18',\n+ '@babel/parser': '7.22.16',\n+ '@babel/types': '7.22...
2023-09-14T17:35:13
electron/electron
7dd1ebc734952a652883605fbf838244c82d72b2
06065d1c5d3b93d7d31057f2d83874ea00de2456
Fix oops typos
[ { "path": "chromium_src/chrome/browser/process_singleton_posix.cc", "patch": "@@ -353,7 +353,7 @@ bool IsAppSandboxed() {\n // NB: There is no sane API for this, we have to just guess by\n // reading tea leaves\n base::FilePath home_dir;\n- if (!PathService.Get(base::DIR_HOME, &home_dir)) {\n+ if (!...
2016-10-11T21:02:29
huggingface/transformers
a118714602774818c3a003b18d83ab48548e51d7
bb8031052cbd88f8b30c75df84b9703eee80200f
Use doc-builder runnable example for GLM-ASR (#44277) * use real tests frm the doc * revert change * now in main * added runnable in the CI doctest (in parallel) * explicitely activate hf-doc-builder * added extra step for circleci * doc pointers * remove custom step * use a single source of truth for the hf-d...
[ { "path": "CONTRIBUTING.md", "patch": "@@ -394,7 +394,7 @@ You'll need **[Python 3.9](https://github.com/huggingface/transformers/blob/main\n make sure you install the [documentation builder](https://github.com/huggingface/doc-builder).\n \n ```bash\n- pip install hf-doc-builder\n+ pip install \"....
2026-04-02T08:47:07
rust-lang/rust
35404461e29343ec61eb79ca8408ae31f8941452
d976ef8ae494cc8fd6672d43c49377e43c2876b5
Fix gen panics doc template for debug_assert And add assert_eq, assert_ne, assert_matches support Input: ```rust pub fn $0foo(x: bool) { debug_assert!(x); } ``` Old: ```rust /// . /// /// # Panics /// /// Panics if . pub fn foo(x: bool) { debug_assert!(x); } ``` This PR fixes: ```rust /// . pub fn foo(x:...
[ { "path": "src/tools/rust-analyzer/crates/ide-assists/src/handlers/generate_documentation_template.rs", "patch": "@@ -313,12 +313,28 @@ fn crate_name(ast_func: &ast::Fn, ctx: &AssistContext<'_>) -> Option<String> {\n /// `None` if function without a body; some bool to guess if function can panic\n fn can_pa...
2025-07-25T02:57:38
nodejs/node
1b8eb22761985ba669897b036fc1889243a57ba2
e468759c7dc21b4706a9efae9eb3ed25bc076c11
doc: fix stream async iterator sample The for await loop into writable loop could cause an unhandled exception in the case where we are waiting for data from the async iterable and this no `'error'` handler is registered on the writable. Fixes: https://github.com/nodejs/node/issues/31222 PR-URL: https://github.com/n...
[ { "path": "doc/api/stream.md", "patch": "@@ -2647,15 +2647,23 @@ const finished = util.promisify(stream.finished);\n \n const writable = fs.createWriteStream('./file');\n \n-(async function() {\n+async function pump(iterator, writable) {\n for await (const chunk of iterator) {\n // Handle backpressure...
2020-01-07T21:40:52
golang/go
d29d0314c1ee64b2cf925b9c8ee535a6e52c5386
dbf52204751b5231b28a977c9cda3189c9493b2e
runtime: don't inspect the stack for delayed signals from TSAN Cgo TSAN (not the Go race detector) intercepts signals and calls the signal handler at a later time. When the signal handler is called, the memory may have changed, but the signal context remains old. As the signal context and the memory don't match, it is...
[ { "path": "src/runtime/signal_unix.go", "patch": "@@ -608,12 +608,24 @@ var testSigusr1 func(gp *g) bool\n func sighandler(sig uint32, info *siginfo, ctxt unsafe.Pointer, gp *g) {\n \t_g_ := getg()\n \tc := &sigctxt{info, ctxt}\n+\tmp := _g_.m\n+\n+\t// Cgo TSAN (not the Go race detector) intercepts signals...
2022-05-25T14:15:28
huggingface/transformers
bb8031052cbd88f8b30c75df84b9703eee80200f
f38d6639fa6b82a401f4e2ea7fef1a3eb550c1a6
CI] Small T5 expectations updated (#45138) fix t5
[ { "path": "tests/models/t5/test_modeling_t5.py", "patch": "@@ -1058,7 +1058,7 @@ def test_small_v1_1_integration_test(self):\n loss = model(input_ids.to(torch_device), labels=labels.to(torch_device)).loss\n mtf_score = -(labels.shape[-1] * loss.item())\n \n- EXPECTED_SCORE = -40.1645\...
2026-04-02T08:07:18
vercel/next.js
0e003ed3ec478ea0196a5eb07f6b9ea7e20c737d
3c1613a436757bf025b84d4fd2e4e801f62cdc2f
Update ContextCondition::InPath to match exact path (vercel/turbo#5938) ### Description Updates the `ContextCondition::InPath` matching code to also accept the exact path as "in". | InPath | `InPath("/foo/bar")` | `InPath("/foo/bar/baz.js`") | |---------------------|----------------------|-------------------...
[ { "path": "crates/turbopack/src/condition.rs", "patch": "@@ -54,7 +54,10 @@ impl ContextCondition {\n .await\n }\n ContextCondition::Not(condition) => condition.matches(path).await.map(|b| !b),\n- ContextCondition::InPath(other_path) => Ok(path.is_insid...
2023-09-14T17:11:32
rust-lang/rust
6b4181f1e39f2e309de6aa15e69f0b2f6889570d
e70d213275746edc2abfb1055d8bd6dda2d59749
Do not assert layout in KnownPanicsLint.
[ { "path": "compiler/rustc_const_eval/src/interpret/operand.rs", "patch": "@@ -243,6 +243,17 @@ impl<'tcx, Prov: Provenance> std::ops::Deref for ImmTy<'tcx, Prov> {\n }\n \n impl<'tcx, Prov: Provenance> ImmTy<'tcx, Prov> {\n+ #[inline(always)]\n+ pub fn try_from_immediate(imm: Immediate<Prov>, layout: ...
2025-07-20T16:24:33
nodejs/node
e468759c7dc21b4706a9efae9eb3ed25bc076c11
60026c7d9d3cf120de318f16171ebd78c0a08917
src: fix -Wbraced-scalar-init warning PR-URL: https://github.com/nodejs/node/pull/31254 Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: David Carlier <devnexen@gmail.com> Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail....
[ { "path": "src/node_options.cc", "patch": "@@ -325,7 +325,7 @@ EnvironmentOptionsParser::EnvironmentOptionsParser() {\n &EnvironmentOptions::userland_loader,\n kAllowedInEnvironment);\n AddAlias(\"--loader\", \"--experimental-loader\");\n- AddAlias(\"--experimental-modules\", { \"...
2020-01-08T03:36:40
golang/go
dbf52204751b5231b28a977c9cda3189c9493b2e
ec9258029e40f7952051f5762b036b9d7f4f91f9
cmd/compile: mark closures made for generic function expressions as wrappers Fixes #52237 Change-Id: I7488020c8d157e069202017a293d18230e3aef0d Reviewed-on: https://go-review.googlesource.com/c/go/+/408876 Reviewed-by: Cherry Mui <cherryyz@google.com> TryBot-Result: Gopher Robot <gobot@golang.org> Run-TryBot: Keith Ra...
[ { "path": "src/cmd/compile/internal/noder/stencil.go", "patch": "@@ -407,6 +407,7 @@ func (g *genInst) buildClosure(outer *ir.Func, x ir.Node) ir.Node {\n \n \t// Make a new internal function.\n \tfn, formalParams, formalResults := startClosure(pos, outer, typ)\n+\tfn.SetWrapper(true) // See issue 52237\n \...
2022-05-26T18:33:09
vercel/next.js
3c1613a436757bf025b84d4fd2e4e801f62cdc2f
7919f2adf231e9c75f79c522b9535a30b9320ee5
improve error handling of developer workflow tool (vercel/turbo#5952) ### Description improve error handling in the developer workflow tooling Closes WEB-1563
[ { "path": "packages/devlow-bench/README.md", "patch": "@@ -86,12 +86,12 @@ describe(\n import { measureTime, reportMeasurement } from \"devlow-bench\";\n \n // Measure a time\n-measureTime(\"name of the timing\", {\n+await measureTime(\"name of the timing\", {\n /* optional options */\n });\n \n // Report...
2023-09-14T15:33:52
huggingface/transformers
f38d6639fa6b82a401f4e2ea7fef1a3eb550c1a6
43ed69fe91642e0b37cdc243bb3af2629108f727
fix: correct type annotations across config classes for @strict validation (#45007) * fix: correct type annotations across config classes for @strict validation Fix bool fields mistyped as int (would fail @strict validation): - BigBird, Cohere2: use_cache: int → bool - MBart, M2M100: scale_embedding: int → bool - OLM...
[ { "path": "src/transformers/models/align/configuration_align.py", "patch": "@@ -50,8 +50,8 @@ class AlignTextConfig(PreTrainedConfig):\n num_attention_heads: int = 12\n intermediate_size: int = 3072\n hidden_act: str = \"gelu\"\n- hidden_dropout_prob: float = 0.1\n- attention_probs_dropout...
2026-04-01T17:37:55
rust-lang/rust
e70d213275746edc2abfb1055d8bd6dda2d59749
b56aaec52bc0fa35591a872fb4aac81f606e265c
Add crash tests.
[ { "path": "tests/crashes/139872.rs", "patch": "@@ -0,0 +1,12 @@\n+//@ known-bug: #139872\n+\n+enum E {\n+ V16(u16),\n+ V32(u32),\n+}\n+\n+static C: (E, u16, str) = (E::V16(0xDEAD), 0x600D, 0xBAD);\n+\n+pub fn main() {\n+ let (_, n, _) = C;\n+}", "additions": 12, "deletions": 0, "languag...
2025-07-20T15:46:17
nodejs/node
a566c05a4996ddf78f2d4993247ec12f57f1f5f6
e4bff131cae5239b5ffd1c705005f29ba7bf6fa9
test: fix recursive rm test to actually use tmpdir Previously folders were created in the root of the project and would therefore stay there in case of errors. This changes the test to create all directories in the temp directory (`tmpdir.path`). PR-URL: https://github.com/nodejs/node/pull/31250 Reviewed-By: Bryan En...
[ { "path": "test/parallel/test-fs-rmdir-recursive.js", "patch": "@@ -6,10 +6,13 @@ const assert = require('assert');\n const fs = require('fs');\n const path = require('path');\n const { validateRmdirOptions } = require('internal/fs/utils');\n-let count = 0;\n \n tmpdir.refresh();\n \n+let count = 0;\n+const...
2020-01-07T20:34:30
golang/go
ec9258029e40f7952051f5762b036b9d7f4f91f9
f8c26a59a49e23074b20b91ed3c75958ddc81559
internal/cpu: fix cpu cacheLineSize for loong64 We choose 64 because the L1 Dcache of Loongson 3A5000 CPU is 4-way 256-line 64-byte-per-line. Change-Id: Ifb9a9f993dd6f75b5adb4ff6e4d93e945b1b2a98 Reviewed-on: https://go-review.googlesource.com/c/go/+/408854 Run-TryBot: Ian Lance Taylor <iant@google.com> TryBot-Result:...
[ { "path": "src/internal/cpu/cpu_loong64.go", "patch": "@@ -6,6 +6,8 @@\n \n package cpu\n \n-const CacheLinePadSize = 32\n+// CacheLinePadSize is used to prevent false sharing of cache lines.\n+// We choose 64 because Loongson 3A5000 the L1 Dcache is 4-way 256-line 64-byte-per-line.\n+const CacheLinePadSize...
2022-05-26T11:38:02
huggingface/transformers
43ed69fe91642e0b37cdc243bb3af2629108f727
d55f0350a25333406daeafb7c250bb4ba3bf43a1
Fix explicit local code resolution for tokenizers and image processors (#45169) * Fix tokenizer `explicit_local_code` detection Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com> * Fix image processor `explicit_local_code` detection Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.gi...
[ { "path": "src/transformers/models/auto/image_processing_auto.py", "patch": "@@ -725,7 +725,7 @@ def from_pretrained(cls, pretrained_model_name_or_path, *inputs, **kwargs):\n has_remote_code = image_processor_auto_map is not None\n has_local_code = image_processor_class is not None or type(c...
2026-04-01T17:00:34
vercel/next.js
42ad2cef2297159aea13f948200daae2a91ab696
724ece8508456eed74414b47a0073e56706d42a7
Set standalone server default hostname to `0.0.0.0` (#54445) By default Next.js listens on localhost, platforms like Google Cloud Run and fly.io will fail to deploy apps that listen on `localhost`, Next.js should bind to `0.0.0.0` instead Related to #54342 Fixes #49777 Fixes #54133
[ { "path": "packages/next/src/build/utils.ts", "patch": "@@ -1984,7 +1984,7 @@ if (!process.env.NEXT_MANUAL_SIG_HANDLE) {\n }\n \n const currentPort = parseInt(process.env.PORT, 10) || 3000\n-const hostname = process.env.HOSTNAME || 'localhost'\n+const hostname = process.env.HOSTNAME || '0.0.0.0'\n \n let ke...
2023-09-14T15:30:56
electron/electron
66f825beb1d2619ee4e663d00e8f9b4f41c191e2
4ae190dab930975bd0d686b86c43d0547515c61c
Upgrade brightray for devtools dock state preference fix
[ { "path": "vendor/brightray", "patch": "@@ -1 +1 @@\n-Subproject commit abae71b0b35ba525dd91ba8894de637d7f9dd827\n+Subproject commit d2259cd8266cf197d73a6a696d39d779a97e679a", "additions": 1, "deletions": 1, "language": "Unknown" } ]
2016-10-11T15:45:42
huggingface/transformers
d55f0350a25333406daeafb7c250bb4ba3bf43a1
38593c2e83964079576eb646fe9b68cce16114dc
Fix T5Attention shape mismatch under Tensor Parallelism (#45109) * Fix T5Attention shape mismatch under Tensor Parallelism T5Attention.forward hard-codes n_heads and inner_dim in view() calls. When ColwiseParallel shards q/k/v projections, the output dim becomes inner_dim / tp_size, but n_heads stays unchanged, causi...
[ { "path": "src/transformers/models/longt5/modeling_longt5.py", "patch": "@@ -433,8 +433,8 @@ def forward(\n # if key_value_states are provided this layer is used as a cross-attention layer for the decoder\n is_cross_attention = key_value_states is not None\n \n- query_states = self.q(...
2026-04-01T16:11:11
nodejs/node
9d5d4f84e3a54fc585276fd5a74ff592783be6ff
d1d71db61be531f657c0e0b3f88dd300776ef709
2020-01-09, Version 10.18.1 'Dubnium' (LTS) - http2: fix session memory accounting after pausing (Michael Lehenbauer) [#30684](https://github.com/nodejs/node/pull/30684) - n-api: correct bug in napi_get_last_error (Octavian Soldea) [#28702](https://github.com/nodejs/node/pull/28702) - tools: update tzdata to 2019c...
[ { "path": "CHANGELOG.md", "patch": "@@ -62,7 +62,8 @@ release.\n <a href=\"doc/changelogs/CHANGELOG_V12.md#12.0.0\">12.0.0</a><br/>\n </td>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V10.md#10.18.0\">10.18.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V10.md#10.18.1\">10....
2020-01-07T15:26:46
golang/go
78b8e4fbce8a49d7624362242e344968c4fa8382
e6d8b05a61e3977f5769e8e896d24d2d26dcb23c
cmd/dist: support spaces and quotes in CC As of CL 334732 `go build` can accept `$CC` with spaces and quotes, which lets us easily use `zig cc` as the C compiler, or easily pass extra compiler parameters: ``` CC="zig cc" go build <...> CC="clang-13 -v" go build <...> CC="zig cc -Wl,--print-gc-sections" go build <...>...
[ { "path": "src/cmd/dist/build.go", "patch": "@@ -1630,15 +1630,21 @@ func checkCC() {\n \tif !needCC() {\n \t\treturn\n \t}\n-\tif output, err := exec.Command(defaultcc[\"\"], \"--help\").CombinedOutput(); err != nil {\n+\tcc, err := quotedSplit(defaultcc[\"\"])\n+\tif err != nil {\n+\t\tfatalf(\"split CC: ...
2022-05-20T07:32:48
vercel/next.js
129f56d3e7e2b33b9c14d0ac51dad23a999df697
4ec555e1d9d1645e313c1a7f153df67a41a63d91
more turbopack HMR fixes and test case (#55368) ### What? improve test case to check HMR reenable deduplication for server side hmr events add aggregation of client side HMR events ### Turbopack Changes * https://github.com/vercel/turbo/pull/5936 <!-- Will Binns-Smith - Update http mock and clap --> * htt...
[ { "path": "Cargo.lock", "patch": "@@ -460,7 +460,7 @@ dependencies = [\n [[package]]\n name = \"auto-hash-map\"\n version = \"0.1.0\"\n-source = \"git+https://github.com/vercel/turbo.git?tag=turbopack-230908.2#b46996f30fe46370e6f7d9bc0907725ea2add792\"\n+source = \"git+https://github.com/vercel/turbo.git?ta...
2023-09-14T13:50:59
electron/electron
75feeca0f09df8da0eaadf8d1bd605a77b24a42a
120aa1c9ce538657bce83197846f7891b15e7362
Small fix to grammar in Build instructions (macOS)
[ { "path": "docs/development/build-instructions-osx.md", "patch": "@@ -9,7 +9,7 @@ Follow the guidelines below for building Electron on macOS.\n * [node.js](http://nodejs.org) (external)\n \n If you are using the Python downloaded by Homebrew, you also need to install\n-following python modules:\n+the follow...
2016-10-11T14:41:28
huggingface/transformers
38593c2e83964079576eb646fe9b68cce16114dc
c1237d9bec73c24546b909b10468eef5043ec30f
[refactor] Serving into proper modules (#44796) * new serve file * app * model_manager done * update serve * style * poc done * renaming * fix * new tests * update metrics and processor * hardcode n_batch for now * add response api + compile * more tests * add it for now but we will move it * remove cach...
[ { "path": "docker/transformers-all-latest-gpu/Dockerfile", "patch": "@@ -105,6 +105,9 @@ RUN python3 -m pip install --no-cache-dir python-Levenshtein\n # For `FastSpeech2ConformerTokenizer` tokenizer\n RUN python3 -m pip install --no-cache-dir g2p-en\n \n+# For serving tests (audio pipelines)\n+RUN python3 ...
2026-04-01T15:42:00
golang/go
e6d8b05a61e3977f5769e8e896d24d2d26dcb23c
581a63c93c4a239913b574d1bfa1a4d3d02c2788
Revert "reflect: deprecate (Slice|String)Header" This reverts CL 401434. Reason for revert: We should't deprecate these without a replacement. Fixes #53079 Change-Id: I5515b03e39787d4e528a98c733cdb643b86b17ce Reviewed-on: https://go-review.googlesource.com/c/go/+/408815 Reviewed-by: Ian Lance Taylor <iant@google.co...
[ { "path": "doc/go1.19.html", "patch": "@@ -299,11 +299,6 @@ <h3 id=\"minor_library_changes\">Minor changes to the library</h3>\n \n <dl id=\"reflect\"><dt><a href=\"/pkg/reflect/\">reflect</a></dt>\n <dd>\n- <p><!-- CL 401434 -->\n- <a href=\"/pkg/reflect/#SliceHeader\"><code>SliceHeader</code></a...
2022-05-26T17:52:28
nodejs/node
93b0e39ce2bbbf35c0e77e6d4b8e0e2d909d21c4
aff6fffec584eb08a6a5e774c5b613fcb073c94c
src: remove uses of node::InitializeV8Platform() This requires minor changes to src/env.cc to deal with `node::tracing::AgentWriterHandle::GetTracingController()` now possibly returning a nullptr, because the cctest doesn't set one. It seems plausible to me that embedders won't set one either so that seems like an ok...
[ { "path": "src/env.cc", "patch": "@@ -332,8 +332,8 @@ Environment::Environment(IsolateData* isolate_data,\n \n if (tracing::AgentWriterHandle* writer = GetTracingAgentWriter()) {\n trace_state_observer_ = std::make_unique<TrackingTraceStateObserver>(this);\n- TracingController* tracing_controller =...
2020-01-07T13:18:56
vercel/next.js
84b1e7e6b45c3970fc90bc5b41c560fb21b7c9f8
9953db4a3005cb507137dc0a022f28c5584cc79b
fix: upgrade @emotion/css from 11.10.0 to 11.11.2 (#55352) upgrade @emotion/css from 11.10.0 to 11.11.2. Co-authored-by: Snyk bot <19733683+snyk-bot@users.noreply.github.com>
[ { "path": "examples/with-emotion-vanilla/package.json", "patch": "@@ -9,7 +9,7 @@\n \"@emotion/babel-plugin\": \"11.10.2\"\n },\n \"dependencies\": {\n- \"@emotion/css\": \"11.10.0\",\n+ \"@emotion/css\": \"11.11.2\",\n \"@emotion/server\": \"11.10.0\",\n \"next\": \"latest\",\n \"...
2023-09-14T13:34:47
electron/electron
15fae91ac7fdc56d5c216c24911da60a92eddbe2
4ae190dab930975bd0d686b86c43d0547515c61c
Apply changes about crash-reporter
[ { "path": "docs-translations/ko-KR/api/crash-reporter.md", "patch": "@@ -1,8 +1,8 @@\n # crashReporter\n \n-> 원격 서버에 크래시 정보를 보고합니다.\n+> 원격 서버에 오류 보고를 제출합니다.\n \n-다음 예시는 윈격 서버에 애플리케이션 크래시 정보를 자동으로 보고하는 예시입니다:\n+다음은 윈격 서버에 애플리케이션 오류 보고를 자동으로 제출하는 예시입니다:\n \n ```javascript\n const {crashReporter} = require('el...
2016-10-10T14:29:38
huggingface/transformers
c1237d9bec73c24546b909b10468eef5043ec30f
6abd9725ee7d809dc974991f8ff6c958afb63a3a
Re-add regex substitutions to the response parsing spec (#45166) * Re-add regex substitutions to the spec * make fix-repo * Update the test schema to drop the empty content block * Trigger tests
[ { "path": "src/transformers/utils/chat_parsing_utils.py", "patch": "@@ -70,14 +70,22 @@ def recursive_parse(\n \n # If not, we have to do a little parsing. First, set some vars and do basic validation\n node_type = node_schema.get(\"type\")\n- has_regex = \"x-regex\" in node_schema or \"x-regex-i...
2026-04-01T15:46:32
golang/go
0ab71cc065c0ce70d7df8bf498723b5a1c7a89c1
62b38000ab42603ec217c99d187e03bd51bfa739
doc/go1.19: fix reflect pkg link and "a" section Change-Id: Ica05b2b699d8f6383c713460a473ccf753bc78c0 Reviewed-on: https://go-review.googlesource.com/c/go/+/408494 Reviewed-by: Ian Lance Taylor <iant@google.com> Auto-Submit: Dmitri Shuralyov <dmitshur@golang.org> Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> Rev...
[ { "path": "doc/go1.19.html", "patch": "@@ -300,8 +300,8 @@ <h3 id=\"minor_library_changes\">Minor changes to the library</h3>\n <dl id=\"reflect\"><dt><a href=\"/pkg/reflect/\">reflect</a></dt>\n <dd>\n <p><!-- CL 401434 -->\n- <a href=\"/pkg/strconv/#reflect.SliceHeader\"></a><code>reflect.Slice...
2022-05-25T13:34:37
nodejs/node
f2a089a754046c1bd950cebefd8bdb2960fdce32
85ef944f639532b230424b3c6b3a0c35caa80957
test: fix unit test logging with python3 A logfile must be opened as a text file and encoding is specified. Then it can accept a string. Current behaviour we get, Message: 'ok 2834 sequential/test-worker-prof' Arguments: () --- Logging error --- Traceback (most recent call last): File "/usr/lib64/python3.7/log...
[ { "path": "tools/test.py", "patch": "@@ -1534,7 +1534,7 @@ def Main():\n logger.addHandler(ch)\n logger.setLevel(logging.INFO)\n if options.logfile:\n- fh = logging.FileHandler(options.logfile, mode='wb')\n+ fh = logging.FileHandler(options.logfile, encoding='utf-8', mode='w')\n logger.addHa...
2020-01-02T13:41:09
huggingface/transformers
6abd9725ee7d809dc974991f8ff6c958afb63a3a
9914a3641f7aaaabb0bcdfcd73a54a1cfa70c3e7
fix bug for janus model image generation (#45044) * fix bug for janus model image generation Signed-off-by: Liu, Kaixuan <kaixuan.liu@intel.com> * update expected tokens Signed-off-by: Liu, Kaixuan <kaixuan.liu@intel.com> * update Signed-off-by: Liu, Kaixuan <kaixuan.liu@intel.com> * update comment Signed-off-b...
[ { "path": "src/transformers/models/janus/modeling_janus.py", "patch": "@@ -18,7 +18,6 @@\n # See the License for the specific language governing permissions and\n # limitations under the License.\n \n-import copy\n from collections.abc import Callable\n from dataclasses import dataclass\n \n@@ -1204,23 +120...
2026-04-01T10:02:10
vercel/next.js
9953db4a3005cb507137dc0a022f28c5584cc79b
2c1043ebc43cbbc8ff1c7b38be30efce4cd57b57
Revert "feat(turbopack): support next.js specific node polyfills" (#55385) Reverts vercel/next.js#55343 Closes WEB-1562 it fails CI with: ``` ● node builtins › should support node.js builtins in server component SyntaxError: Unexpected end of JSON input at JSON.parse (<anonymous>) ...
[ { "path": "packages/next-swc/crates/next-core/src/next_import_map.rs", "patch": "@@ -661,12 +661,6 @@ pub async fn insert_next_shared_aliases(\n import_map.insert_singleton_alias(\"react\", project_path);\n import_map.insert_singleton_alias(\"react-dom\", project_path);\n \n- //https://github.com...
2023-09-14T13:16:33
electron/electron
619f74fa126b4685ac06fbe4220e29c050121d54
d5b3ef538076b11786d6cb56b5000ff73ea557e8
fix Menu example
[ { "path": "docs/api/menu.md", "patch": "@@ -16,7 +16,7 @@ An example of creating the application menu in the main process with the\n simple template API:\n \n ```javascript\n-const {Menu} = require('electron')\n+const {app, Menu} = require('electron')\n \n const template = [\n {\n@@ -111,9 +111,8 @@ const...
2016-10-11T06:01:35
rust-lang/rust
da6618097f9dea0baf5950b588d38fefa0544a07
60a978d2e9c7b49f21de9d665365427882e781ae
Detect prefixed attributes as duplicated
[ { "path": "clippy_lints/src/attrs/duplicated_attributes.rs", "patch": "@@ -2,6 +2,7 @@ use super::DUPLICATED_ATTRIBUTES;\n use clippy_utils::diagnostics::span_lint_and_then;\n use itertools::Itertools;\n use rustc_ast::{Attribute, MetaItem};\n+use rustc_ast_pretty::pprust::path_to_string;\n use rustc_data_s...
2025-07-24T23:34:01
golang/go
62b38000ab42603ec217c99d187e03bd51bfa739
16e7613b2e1861b25c6549051337d1d8a850cf63
runtime/internal/syscall: use correct result names for loong64 Fixes "GOARCH=loong64 go vet runtime/internal/syscall" Change-Id: I5879eec3ff07b0c69a5a8ac8e854733261e98fbf Reviewed-on: https://go-review.googlesource.com/c/go/+/408695 Reviewed-by: Ian Lance Taylor <iant@google.com> Run-TryBot: Ian Lance Taylor <iant@go...
[ { "path": "src/runtime/internal/syscall/asm_linux_loong64.s", "patch": "@@ -17,13 +17,13 @@ TEXT ·Syscall6(SB),NOSPLIT,$0-80\n \tMOVW\t$-4096, R12\n \tBGEU\tR12, R4, ok\n \tMOVV\t$-1, R12\n-\tMOVV\tR12, r1+56(FP) // r1\n-\tMOVV\tR0, r2+64(FP) // r2\n+\tMOVV\tR12, r1+56(FP)\n+\tMOVV\tR0, r2+64(FP)\n \tS...
2022-05-25T22:41:59
huggingface/transformers
9914a3641f7aaaabb0bcdfcd73a54a1cfa70c3e7
e7e9efaa455d037f8fb33432c535555915b17e2f
Fix incorrect TrainingArguments example in training.md (#45150) * Correct comment in training.md for TrainingArguments Fix comment formatting for TrainingArguments instantiation. * Update docs/source/en/training.md Co-authored-by: Steven Liu <59462357+stevhliu@users.noreply.github.com> --------- Co-authored-by: S...
[ { "path": "docs/source/en/training.md", "patch": "@@ -115,7 +115,7 @@ model = AutoModelForCausalLM.from_pretrained(model_name, dtype=\"auto\")\n </hfoptions>\n \n ```py\n-TrainingArguments(\n+training_args = TrainingArguments(\n output_dir=\"qwen3-finetuned\",\n num_train_epochs=3,\n per_device_...
2026-03-31T18:25:06
nodejs/node
e908323b7e081a29c45e8447f9eb38c911a9a89b
92cef79779d121d934dcb161c068bdac35e6a963
2020-01-07, Version v13.6.0 (Current) Notable changes: * assert: * Implement `assert.match()` and `assert.doesNotMatch()` (Ruben Bridgewater) https://github.com/nodejs/node/pull/30929 * events: * Add `EventEmitter.on` to async iterate over events (Matteo Collina) https://github.com/nodejs/node/pull/27994 ...
[ { "path": "CHANGELOG.md", "patch": "@@ -29,7 +29,8 @@ release.\n </tr>\n <tr>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V13.md#13.5.0\">13.5.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V13.md#13.6.0\">13.6.0</a></b><br/>\n+<a href=\"doc/changelogs/CHANGELOG_V13.md#13.5.0\"...
2020-01-07T07:33:44
vercel/next.js
2c1043ebc43cbbc8ff1c7b38be30efce4cd57b57
e8adcd8527aa1fc94f3bd52b9618e0c3de26fca1
Turbopack: Allow Pages entrypoint template to import user's `.ts` files (#55296) ### What? This adds an exception for the entrypoint templates directory which will prevent the restricted resolve options from taking over. So, the templates entrypoint will be able to import with the user's default resolve options,...
[ { "path": "packages/next-swc/crates/next-core/src/middleware.rs", "patch": "@@ -29,7 +29,7 @@ pub async fn get_middleware_module(\n project_root: Vc<FileSystemPath>,\n userland_module: Vc<Box<dyn Module>>,\n ) -> Result<Vc<Box<dyn Module>>> {\n- let template_file = \"build/templates/middleware.js...
2023-09-14T12:54:44
rust-lang/rust
0aa92fdba699a3227d9d1f7ed8121785d7b3b502
d4dea4bbe7c61311f91d408f2ba0eab3fa1d7de6
fix ip_constant when call wrapped in extra parens
[ { "path": "clippy_lints/src/methods/ip_constant.rs", "patch": "@@ -1,21 +1,16 @@\n use clippy_utils::consts::{ConstEvalCtxt, Constant};\n use clippy_utils::diagnostics::span_lint_and_then;\n use rustc_errors::Applicability;\n-use rustc_hir::{Expr, ExprKind, QPath, Ty, TyKind};\n+use rustc_hir::{Expr, ExprKi...
2025-06-18T00:21:44
huggingface/transformers
bc576731d46cdf0936daf0833dc1a1bdd1b4898a
81db7d3513a7045ef96c55eec71b8075c529d098
DeepGEMM (#44832) * deep gemm * standardize * clear deepgemm flow and blackwell optimization * avoid unnecessary gathers in grouped mm * assertions and drop the synced path * use lazy load kernel * style * add prefix and check for cuda runtime version * better names * exit on missing functions * comment abou...
[ { "path": "src/transformers/integrations/finegrained_fp8.py", "patch": "@@ -19,8 +19,9 @@\n from ..activations import ACT2FN\n from ..core_model_loading import ConversionOps, _IdentityOp\n from ..quantizers.quantizers_utils import should_convert_module\n-from ..utils import is_kernels_available, is_torch_av...
2026-03-31T15:04:02
golang/go
16e7613b2e1861b25c6549051337d1d8a850cf63
557244cef70e508f0eeaaa23903e8859d39318be
cmd/cgo: use --no-gc-sections if available zig cc passes `--gc-sections` to the underlying linker, which then causes undefined symbol errors when compiling with cgo but without C code. Add `-Wl,--no-gc-sections` to make it work with zig cc. Minimal example: **main.go** package main import _ "runtime/cgo" ...
[ { "path": "src/cmd/go/internal/work/exec.go", "patch": "@@ -2528,6 +2528,13 @@ func (b *Builder) compilerCmd(compiler []string, incdir, workdir string) []strin\n \t\ta = append(a, \"-Qunused-arguments\")\n \t}\n \n+\t// zig cc passes --gc-sections to the underlying linker, which then causes\n+\t// undefined...
2022-05-25T02:55:34
rust-lang/rust
1de927c7c46444b6bdd3d508a4935b64095f696e
5d22242a3a84a55be2f648a94eecff58887547f4
library/windows_targets: Fix macro expansion error in 'link' macro A recent change altered the definition of the link! macro when the windows_raw_dylib feature is enabled, changing its syntax from pub macro {..} to pub macro($tt:tt) {..} in #143592 This change introduced a build failure with the error: "macros that...
[ { "path": "library/windows_targets/src/lib.rs", "patch": "@@ -34,22 +34,12 @@ pub macro link_dylib {\n \n #[cfg(feature = \"windows_raw_dylib\")]\n pub macro link($($tt:tt)*) {\n- $crate::link_raw_dylib!($($tt)*)\n+ $crate::link_raw_dylib!($($tt)*);\n }\n \n #[cfg(not(feature = \"windows_raw_dylib\"))...
2025-07-24T21:23:59
vercel/next.js
e8adcd8527aa1fc94f3bd52b9618e0c3de26fca1
17ba84b7a7774ca09917ec3fbf44074d534b5c12
feat(turbopack): support next.js specific node polyfills (#55343) - feat(turbopack): support next.js specific node polyfills - test(turbopack): migrate polyfill tests <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you f...
[ { "path": "packages/next-swc/crates/next-core/src/next_import_map.rs", "patch": "@@ -661,6 +661,12 @@ pub async fn insert_next_shared_aliases(\n import_map.insert_singleton_alias(\"react\", project_path);\n import_map.insert_singleton_alias(\"react-dom\", project_path);\n \n+ //https://github.com...
2023-09-14T12:52:16
nodejs/node
f5512ff61ecb668c2f49b7c05d3227ef7aa5e85f
b9e6c1bcb2767e9dea634ae17d5632a3b5f0e368
2020-01-07, Version 12.14.1 'Erbium' (LTS) Notable changes: - crypto: fix key requirements in asymmetric cipher (Tobias Nießen) https://github.com/nodejs/node/pull/30249 - deps: - update llhttp to 2.0.1 (Fedor Indutny) https://github.com/nodejs/node/pull/30553 - update nghttp2 to 1.40.0 (gengjiawen) ...
[ { "path": "CHANGELOG.md", "patch": "@@ -38,7 +38,8 @@ release.\n <a href=\"doc/changelogs/CHANGELOG_V13.md#13.0.0\">13.0.0</a><br/>\n </td>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V12.md#12.14.0\">12.14.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V12.md#12.14.1\">12....
2019-12-09T11:20:14
huggingface/transformers
81db7d3513a7045ef96c55eec71b8075c529d098
2dba8e0495974930af02274d75bd182d22cc1686
fix: prefer registered config over remote code in AutoConfig.from_pretrained (#45094) * Prefer registered classes over remote code in Auto*.from_pretrained When a class has been explicitly registered via AutoConfig.register() (or other Auto*.register()), it should take precedence over auto_map remote code. Previously...
[ { "path": "src/transformers/models/auto/auto_factory.py", "patch": "@@ -208,6 +208,9 @@ def from_config(cls, config, **kwargs):\n trust_remote_code = kwargs.pop(\"trust_remote_code\", None)\n has_remote_code = hasattr(config, \"auto_map\") and cls.__name__ in config.auto_map\n has_lo...
2026-03-31T14:40:50
golang/go
557244cef70e508f0eeaaa23903e8859d39318be
757f3c802aaf3e01647e644ff7ee160af1751c63
go/printer: if comment gets formatted away, don't squash We were dropping the preceding whitespace. Fixes #53059 Change-Id: Ide0d6a76c463a7481ec4883a8568f7f7b5e87e9f Reviewed-on: https://go-review.googlesource.com/c/go/+/408394 Reviewed-by: Robert Griesemer <gri@google.com> Run-TryBot: Ian Lance Taylor <iant@google....
[ { "path": "src/go/printer/printer.go", "patch": "@@ -747,6 +747,18 @@ func (p *printer) intersperseComments(next token.Position, tok token.Token) (wro\n \t\t\t// a top-level doc comment.\n \t\t\tlist = formatDocComment(list)\n \t\t\tchanged = true\n+\n+\t\t\tif len(p.comment.List) > 0 && len(list) == 0 {\n+...
2022-05-25T02:51:37
rust-lang/rust
94c0cf891e4427083072b9050b89dd0332a616ae
246733a3d978de41c5b77b8120ba8f41592df9f1
Rename tests/ui/SUMMARY.md and update rustc dev guide on error-pattern
[ { "path": "src/doc/rustc-dev-guide/src/tests/ui.md", "patch": "@@ -309,7 +309,8 @@ fn main((ؼ\n \n Use `//~?` to match an error without line information.\n `//~?` is precise and will not match errors if their line information is available.\n-It should be preferred to using `error-pattern`, which is imprecis...
2025-07-23T01:42:50
electron/electron
9f42c4c4416153bd4e6eac5eededef03d6bace66
e24267d06056664d392c40b8dd188b6608a90254
Fix dot
[ { "path": "docs/api/crash-reporter.md", "patch": "@@ -88,5 +88,5 @@ a `multipart/form-data` `POST`:\n * `_companyName` String - The company name in the `crashReporter` `options`\n object.\n * `upload_file_minidump` File - The crash report in the format of `minidump`.\n-* All level one properties of the `e...
2016-10-10T14:31:05
nodejs/node
b9e6c1bcb2767e9dea634ae17d5632a3b5f0e368
405e7b45575ef39264067e68ee4ef5db466eebb2
stream: sync stream unpipe resume pipe() ondata should not control flow state if cleaned up. Fixes: https://github.com/nodejs/node/issues/31190 PR-URL: https://github.com/nodejs/node/pull/31191 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Matteo Collin...
[ { "path": "lib/_stream_readable.js", "patch": "@@ -739,6 +739,7 @@ Readable.prototype.pipe = function(dest, pipeOpts) {\n debug('false write response, pause', state.awaitDrainWriters.size);\n state.awaitDrainWriters.add(dest);\n }\n+ src.pause();\n }\n if (!ond...
2020-01-05T10:55:34
vercel/next.js
9b788c592ea837f2f624b512030d11d3fd8d839a
b61dd997537636724ac3b053b0c7b67d0099fe65
fix memory leak in require.cache cleanup (#55377) ### What? We need to clear `.parent` and `.children` when deleting from require.cache ### Why? otherwise we leak memory Closes WEB-1558
[ { "path": "packages/next/src/build/webpack/plugins/nextjs-require-cache-hot-reloader.ts", "patch": "@@ -12,6 +12,7 @@ const originModules = [\n require.resolve('../../../server/require'),\n require.resolve('../../../server/load-components'),\n require.resolve('../../../server/next-server'),\n+ requir...
2023-09-14T12:49:39
golang/go
757f3c802aaf3e01647e644ff7ee160af1751c63
78b722d8c2f764c3048c6f0344e9ebcd2687813d
net: add even more timing slop for TestDialParallel This test expects dials of a closed port to complete in about the same amount of time: an initial probe value +/- 20%. Reduce test flakes on Windows by increasing the slop to +/- 50% of the original value. Fixes #52173 Change-Id: I813492c36aca2b0264b3b5b8c96e8bf971...
[ { "path": "src/net/dial_test.go", "patch": "@@ -302,8 +302,8 @@ func TestDialParallel(t *testing.T) {\n \t\t// We used to always use 95 milliseconds as the slop,\n \t\t// but that was flaky on Windows. See issue 35616.\n \t\tslop := 95 * time.Millisecond\n-\t\tif fifth := tt.expectElapsed / 5; fifth > slop...
2022-05-24T23:13:42
huggingface/transformers
2dba8e0495974930af02274d75bd182d22cc1686
a91232af09f59e2e1c96561901c92e01e238c355
🚨 [Cache] Native mamba & hybrid cache (#44950) * add Cache and test on Mamba * fix * fix * fix * fix * fix * final fix * test hybrid with jamba * fix tests * fixes * fix * fix * fix * combine both types + zambas * add config mapèping * adjust tests * fix * fix * fix * more models * final mambas *...
[ { "path": "docs/source/en/model_doc/falcon_mamba.md", "patch": "@@ -111,13 +111,6 @@ outputs = model.generate(**inputs, max_new_tokens=100)\n print(tokenizer.decode(outputs[0], skip_special_tokens=True))\n ```\n \n-## FalconMambaCache\n-\n-[[autodoc]] FalconMambaCache\n- - update_conv_state\n- - updat...
2026-03-31T13:09:42
nodejs/node
66f4e4edcbf0f4d32e050793b25d99cfa546e11f
57a1ca99abea8a58fc9870896fc3aca374cdb6cc
stream: do not emit 'end' after 'error' Refs: https://github.com/nodejs/node/issues/6083 PR-URL: https://github.com/nodejs/node/pull/31182 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
[ { "path": "lib/_stream_readable.js", "patch": "@@ -1215,7 +1215,7 @@ function endReadableNT(state, stream) {\n debug('endReadableNT', state.endEmitted, state.length);\n \n // Check that we didn't get one last unshift.\n- if (!state.endEmitted && state.length === 0) {\n+ if (!state.errorEmitted && !sta...
2020-01-03T20:41:44
vercel/next.js
fd43180ea724ea69cd3c00d333394e4e0f2811d8
38ed207cf573d51538380b39b185717ca8552141
CSS HMR fixes (vercel/turbo#5948) ### Description handle multiple hmr events at the same time fix a race condition when updating CSS too fast Closes WEB-1556
[ { "path": "crates/turbopack-ecmascript-runtime/js/src/dev/client/hmr-client.ts", "patch": "@@ -28,7 +28,16 @@ export function connect({\n handleSocketConnected(sendMessage);\n break;\n default:\n- handleSocketMessage(msg.data as ServerMessage);\n+ if (Array.isArray(msg.da...
2023-09-14T12:18:43
golang/go
7791e934c882fd103357448aee0fd577b20013ce
9cd1818a7d019c02fa4898b3e45a323e35033290
hash/crc32: fix typo in arm64 archInitCastagnoli panic message Change-Id: I5291216d5416eccd5a67b45b2f32cf2932b3747f Reviewed-on: https://go-review.googlesource.com/c/go/+/407974 Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> Run-TryBot: Tobias Klauser <tobias.klauser@gmail.com> Reviewed-by: Ian Lance Taylor <iant...
[ { "path": "src/hash/crc32/crc32_arm64.go", "patch": "@@ -19,7 +19,7 @@ func archAvailableCastagnoli() bool {\n \n func archInitCastagnoli() {\n \tif !cpu.ARM64.HasCRC32 {\n-\t\tpanic(\"arch-specific crc32 instruction for Catagnoli not available\")\n+\t\tpanic(\"arch-specific crc32 instruction for Castagnoli...
2022-05-23T22:09:30
huggingface/transformers
a91232af09f59e2e1c96561901c92e01e238c355
3a4a66278555bbe7d6a617a16191a51e1a998fe7
[serving] Fix continuous batching JSON response serialization (#45057) * Fix continuous batching JSON response serialization Change model_dump_json() to model_dump() to avoid double JSON encoding. When using continuous batching with stream=false, the response was being double-encoded as a string instead of returning ...
[ { "path": "examples/pytorch/transformers_serve_cb_eval_job.py", "patch": "@@ -0,0 +1,192 @@\n+# /// script\n+# dependencies = [\n+# \"inspect-ai\",\n+# \"inspect-evals\",\n+# \"huggingface-hub\",\n+# \"transformers[serving] @ git+https://github.com/huggingface/transformers.git@main\",\n+# ...
2026-03-31T12:56:00
rust-lang/rust
a19b46d745cc2ef4d6fbff32119a3a9331bda8e1
6017fe65968cbe044e1f9a0638376e788829736b
fix markdown Co-authored-by: Philipp Krones <hello@philkrones.com>
[ { "path": ".github/ISSUE_TEMPLATE/new_lint.yml", "patch": "@@ -60,7 +60,7 @@ body:\n You can also look through the list of [rustc's allowed-by-default lints][allowed-by-default],\n as those won't show up in the playground above.\n \n- [allowed-by-default](https://doc.rust-lang.org/rus...
2025-07-24T19:10:12
electron/electron
2acd7f4d12b3ee5d2b921474aff72bcc7cf8da2b
4d49156dac68a626141806cc8dc5b2951ff73198
fix NativeImage link path
[ { "path": "docs/api/structures/thumbar-button.md", "patch": "@@ -1,6 +1,6 @@\n # ThumbarButton Object\n \n-* `icon` [NativeImage](native-image.md) - The icon showing in thumbnail\n+* `icon` [NativeImage](../native-image.md) - The icon showing in thumbnail\n toolbar.\n * `click` Function\n * `tooltip` Stri...
2016-10-08T04:25:39
nodejs/node
783f8c626ce363a2b42c74dbc271c79d229cded1
66310c2b78df24ec79668dc30e4df675c978a9be
test: change buffer offset to accommodate V8 BackingStore To avoid problem with the behavior of new V8 BackingStore API, change the offset. The base address of each test case will be different. Fixes: https://github.com/nodejs/node/issues/31061 PR-URL: https://github.com/nodejs/node/pull/31171 Reviewed-By: Anna Henn...
[ { "path": "test/addons/buffer-free-callback/test.js", "patch": "@@ -16,20 +16,24 @@ function check(size, alignment, offset) {\n global.gc();\n }\n \n+// NOTE: If adding more check() test cases,\n+// be sure to not duplicate alignment/offset.\n+// Refs: https://github.com/nodejs/node/issues/31061#issuecomm...
2019-12-24T06:24:00
golang/go
9cd1818a7d019c02fa4898b3e45a323e35033290
b6bcd0d1352578033eea0490790b6af3bf300b3f
path/filepath: do not remove prefix "." when following path contains ":". Fixes #52476 Change-Id: I9eb72ac7dbccd6322d060291f31831dc389eb9bb Reviewed-on: https://go-review.googlesource.com/c/go/+/401595 Auto-Submit: Ian Lance Taylor <iant@google.com> Reviewed-by: Alex Brainman <alex.brainman@gmail.com> Run-TryBot: Ian...
[ { "path": "src/path/filepath/path.go", "patch": "@@ -117,9 +117,21 @@ func Clean(path string) string {\n \t\tcase os.IsPathSeparator(path[r]):\n \t\t\t// empty path element\n \t\t\tr++\n-\t\tcase path[r] == '.' && (r+1 == n || os.IsPathSeparator(path[r+1])):\n+\t\tcase path[r] == '.' && r+1 == n:\n \t\t\t//...
2022-04-22T01:07:51
huggingface/transformers
3a4a66278555bbe7d6a617a16191a51e1a998fe7
676559d5022b74aaa0cee1cee0842b7f27c5320e
refactoring: speedup static checks with disk cache (#44992) * added a cache * use a shared cache * added cache in repo checker * more caching * more caching * display elapsed times * added test coverage * Remove check_repo cache changes from speedup branch * fix bad merge * per-checker glob * fixed a couple ...
[ { "path": ".gitignore", "patch": "@@ -172,6 +172,7 @@ tags\n \n # modeling structure lint cache\n utils/mlinter/.mlinter_cache.json\n+utils/.checkers_cache.json\n \n # modular conversion\n *.modular_backup", "additions": 1, "deletions": 0, "language": "Unknown" }, { "path": "tests/repo_u...
2026-03-31T12:23:32
rust-lang/rust
0b6c1d38618d1f694541621d97712afaabde01f4
b16879304602614a89dd7bd0bd67f0e05204f279
Enable skipped `f32` and `f64` multiplication tests The fix has since made it to nightly, so the skips here can be removed.
[ { "path": "library/compiler-builtins/builtins-test/src/bench.rs", "patch": "@@ -17,10 +17,6 @@ pub fn skip_sys_checks(test_name: &str) -> bool {\n \"extend_f16_f32\",\n \"trunc_f32_f16\",\n \"trunc_f64_f16\",\n- // FIXME(#616): re-enable once fix is in nightly\n- // <ht...
2025-07-24T12:31:49
vercel/next.js
b61dd997537636724ac3b053b0c7b67d0099fe65
1ffc40ac6d262f43a50db6d0c19b3fef96df7c6a
Fix CPU profile generation (#55365) Noticed not all CPU profiles were written since the recent server changes. This ensures they're always written as `CPU.main`. Also adds support for `next build`.
[ { "path": "packages/next/src/cli/next-build.ts", "patch": "@@ -1,4 +1,6 @@\n #!/usr/bin/env node\n+\n+import '../server/lib/cpu-profile'\n import { existsSync } from 'fs'\n import * as Log from '../build/output/log'\n import { CliCommand } from '../lib/commands'", "additions": 2, "deletions": 0, ...
2023-09-14T09:47:28
nodejs/node
75b30c606c9b18fdb2634e8fe5e2ca5e9a889286
9085c03806dbc9eb48e14c2afa49080deee0ee3c
stream: emit 'error' asynchronously errorOrDestroy emits 'error' synchronously due to compat reasons. However, it should be possible to use correct async behaviour for new code. PR-URL: https://github.com/nodejs/node/pull/29744 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Benjamin Gruenbaum <be...
[ { "path": "doc/api/stream.md", "patch": "@@ -1853,7 +1853,8 @@ methods only.\n The `callback` method must be called to signal either that the write completed\n successfully or failed with an error. The first argument passed to the\n `callback` must be the `Error` object if the call failed or `null` if the\n...
2019-09-28T05:33:47
huggingface/transformers
676559d5022b74aaa0cee1cee0842b7f27c5320e
09a0bbb21ac50eae76bec1c600ff711f135a4f91
:rotating_light: [`LightGlue`] Remove remote code execution (#45122) * fix * style
[ { "path": "src/transformers/models/lightglue/configuration_lightglue.py", "patch": "@@ -40,8 +40,6 @@ class LightGlueConfig(PreTrainedConfig):\n The confidence threshold used to prune points\n filter_threshold (`float`, *optional*, defaults to 0.1):\n The confidence threshold used to fil...
2026-03-31T11:59:41
golang/go
ccf84a97501b1cc894536162479279df1e165fc5
0a30cf9536f06d52a214370e9eeb03f8bcfc1e6a
cmd/compile: catch pointless recursion on function types If a function type has no type parameters, note when it is visited and do not recur. (It must be visited at least once because of closures and their associated types occurring in a generic context). Fixes #51832. Change-Id: Iee20612ffd0a03b838b9e59615f4a0206f...
[ { "path": "src/cmd/compile/internal/typecheck/subr.go", "patch": "@@ -1013,6 +1013,8 @@ type Tsubster struct {\n \tVars map[*ir.Name]*ir.Name\n \t// If non-nil, function to substitute an incomplete (TFORW) type.\n \tSubstForwFunc func(*types.Type) *types.Type\n+\t// Prevent endless recursion on functions. S...
2022-05-16T21:50:31
vercel/next.js
1ffc40ac6d262f43a50db6d0c19b3fef96df7c6a
423d66b08683a29ad21f2d765983099820508b3a
fix turbopack HMR, fix disconnect detection (#55361) ### What? Fix reload in turbopack on every change Fix loosing of events due to debouncing Fix writing of CSS files for CSS HMR ### Why? Since we removed the pong event, the websocket impl would cause reconnects every 5 seconds loosing HMR events... ### How? Cl...
[ { "path": "packages/next-swc/crates/next-api/src/project.rs", "patch": "@@ -597,6 +597,18 @@ impl Project {\n .get(self.client_relative_path().join(identifier)))\n }\n \n+ #[turbo_tasks::function]\n+ async fn hmr_content_and_write(\n+ self: Vc<Self>,\n+ identifier: String...
2023-09-14T09:03:52
huggingface/transformers
09a0bbb21ac50eae76bec1c600ff711f135a4f91
4f2871932477e23190406004383da557a270d9a0
Fix stupid test fetcher (#45140) * comment * fix(tests_fetcher): skip files with docstring/comment-only changes in get_diff Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * Revert "comment" This reverts commit fd58eac8dcca82df04f36217187d0c6c061290a3. * test(tests_fetcher): add test for docstring-only ...
[ { "path": "tests/repo_utils/test_tests_fetcher.py", "patch": "@@ -39,6 +39,7 @@\n diff_is_docstring_only,\n extract_imports,\n get_all_tests,\n+ get_diff,\n get_module_dependencies,\n get_repo_utils_tests,\n get_tree_starting_at,\n@@ -313,6 +314,23 @@ def test_diff_is_docstring_on...
2026-03-31T10:58:18
rust-lang/rust
e958b20af7ad3e3a053070a9c45389fe463ccc0c
5d22242a3a84a55be2f648a94eecff58887547f4
Fix unused_parens false positive
[ { "path": "compiler/rustc_lint/src/unused.rs", "patch": "@@ -1062,6 +1062,7 @@ pub(crate) struct UnusedParens {\n /// ```\n /// type Example = Box<dyn Fn() -> &'static dyn Send>;\n /// ```\n+#[derive(Copy, Clone)]\n enum NoBoundsException {\n /// The type must be parenthesized.\n None,\n@@ -1340,7 +...
2025-07-09T16:46:11
nodejs/node
c9b93e234454322ac0b7a6cd29d394f428f3e37d
256c9a43f4b20214b9fb5448c9fb228ff2624058
lib: replace use of Error with primordials PR-URL: https://github.com/nodejs/node/pull/31163 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: David Carlier <devnexen@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Trivikram Kamat <triv...
[ { "path": "lib/.eslintrc.yaml", "patch": "@@ -15,6 +15,8 @@ rules:\n message: \"Use `const { BigInt } = primordials;` instead of the global.\"\n - name: Boolean\n message: \"Use `const { Boolean } = primordials;` instead of the global.\"\n+ - name: Error\n+ message: \"Use `const { Er...
2020-01-02T18:19:02
golang/go
0a30cf9536f06d52a214370e9eeb03f8bcfc1e6a
d5ae7a64876630ab40f7bd04fdb5ad6a3733dae7
builtin: clarify effect of close on receive Fixes #53041 Change-Id: If6580c8f0f14edfdc297d3239a7767ce0570ff79 Reviewed-on: https://go-review.googlesource.com/c/go/+/407975 Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> Run-TryBot: Ian Lance Taylor <iant@google.com> Reviewed-by: Ian Lance Taylor <iant@google.com>...
[ { "path": "src/builtin/builtin.go", "patch": "@@ -236,7 +236,7 @@ func imag(c ComplexType) FloatType\n //\n //\tx, ok := <-c\n //\n-// will also set ok to false for a closed channel.\n+// will also set ok to false for a closed and empty channel.\n func close(c chan<- Type)\n \n // The panic built-in functio...
2022-05-23T22:52:21
huggingface/transformers
4f2871932477e23190406004383da557a270d9a0
6b28829743dec03c01ccf3e8b5d9dbc40054974e
[CB] Add warmup feature (#45112) * comment about regional compile * Warmup feature * Add compile to not skip warmup * fixes * Added info about warmup * style * Added comparison helper in the CB overall bm * Update example * Smarter warmup * Bounds on warmup * Style and done * done done * CI reroll
[ { "path": "benchmark_v2/benchmark_scripts/continuous_batching_overall.py", "patch": "@@ -1,3 +1,5 @@\n+import argparse\n+import json\n import re\n import subprocess\n from pathlib import Path\n@@ -8,10 +10,11 @@\n SCRIPT_LOCATION = (Path(__file__).parent.parent.parent / \"examples/pytorch/continuous_batchin...
2026-03-31T07:29:06
vercel/next.js
055b5df50d9ca0f9550bef26f09a47ae88fd605b
f2f582c17fed58a791c72f292a026192078331f2
Update generate-metadata.mdx (#55347) fixed a grammatical blunder
[ { "path": "docs/02-app/02-api-reference/04-functions/generate-metadata.mdx", "patch": "@@ -993,7 +993,7 @@ The following metadata types do not currently have built-in support. However, th\n \n ### Resource hints\n \n-The `<link>` element has a number of `rel` keywords that can be used to hint to the browser...
2023-09-14T02:08:23
rust-lang/rust
a73d7e3ab9cc29cb427c1463d1a02b89dd7728b6
bd85df192d07660511b711cd7d4cae5b5a85577a
fix up issues with internal compiler docs revealed by stricter lint
[ { "path": "compiler/rustc_mir_transform/src/elaborate_drop.rs", "patch": "@@ -611,6 +611,7 @@ where\n ///\n /// For example, with 3 fields, the drop ladder is\n ///\n+ /// ```text\n /// .d0:\n /// ELAB(drop location.0 [target=.d1, unwind=.c1])\n /// .d1:\n@@ -621,8 +622,10 @@ ...
2025-07-24T17:37:46
electron/electron
d39182b41a7eb74199970d9567f519565d331155
16e3991ffa300ea1855e49d24b6046b5c0322448
Pass crashes directory instead of product name and temp dir
[ { "path": "atom/common/api/atom_api_crash_reporter.cc", "patch": "@@ -40,8 +40,6 @@ void Initialize(v8::Local<v8::Object> exports, v8::Local<v8::Value> unused,\n base::Bind(&CrashReporter::Start, report));\n dict.SetMethod(\"_getUploadedReports\",\n base::Bind(&CrashRepor...
2016-10-06T17:39:57