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 |
|---|---|---|---|---|---|
electron/electron | 16e224bb86318c6a9b96f2f0d5157898daa49a35 | 459d389e03d5245dc42d1df5988e939e45ba0e3b | Don't set browser_handles_all_top_level_requests
POST requests currently can not be handled on browser side.
Fix #1945. | [
{
"path": "atom/browser/common_web_contents_delegate.cc",
"patch": "@@ -16,7 +16,6 @@\n #include \"content/public/browser/child_process_security_policy.h\"\n #include \"content/public/browser/render_process_host.h\"\n #include \"content/public/browser/render_view_host.h\"\n-#include \"content/public/common/... | 2015-06-12T08:23:26 |
rust-lang/rust | e15d6fae921cd981e47604a2e9406dd1c724f148 | ca67119d5fa91f9237e8ed91fc64fd448107e2d4 | fixed `too many files open` issue | [
{
"path": "library/stdarch/crates/intrinsic-test/src/arm/functions.rs",
"patch": "@@ -2,11 +2,12 @@ use super::argument::Argument;\n use super::config::{AARCH_CONFIGURATIONS, POLY128_OSTREAM_DEF, build_notices};\n use super::format::Indentation;\n use super::intrinsic::Intrinsic;\n-use crate::common::gen_c:... | 2025-03-30T08:15:29 |
vercel/next.js | fcfab172828df218eac847297cf9642001d8f3d2 | 844776ef95aa3b5cdf88448284101139a678189f | Fix(typedRoutes): fixed StaticRoutes and DynamicRoutes being empty causing invalid syntax (#46620)
When `dynamicRouteTypes`/`staticRouteTypes` is empty, an invalid `link.d.ts` is generated. This just handles that case.
## Bug
- [ ] Related issues linked using `fixes #number`
- [ ] Integration tests added
- [ ] Err... | [
{
"path": "packages/next/src/build/webpack/plugins/next-types-plugin.ts",
"patch": "@@ -196,7 +196,6 @@ function createRouteDefinitions(\n }\n }\n \n- const fallback = !edgeRoutes.length && !nodeRoutes.length ? 'string' : ''\n const routes = [...edgeRoutes, ...nodeRoutes, ...extraRoutes]\n \n // ... | 2023-03-01T16:41:36 |
golang/go | 3100f54f209b9dc3c277e028d70850c975a2de54 | 738cebb1747335c182af64614041ceb2b2303f74 | cmd/compile/internal/types2: merge Named type loading and expansion
Clean port of CL 349410 from go/types to types2 with 2 adjustments:
using syntax.Pos instead of token.Pos, and using TypeHash instead
of typeHash.
Fixes #47887.
Change-Id: Ifd8495e4187b5e30aaf80702768d82aad5e10cf4
Reviewed-on: https://go-review.goog... | [
{
"path": "src/cmd/compile/internal/types2/decl.go",
"patch": "@@ -317,7 +317,7 @@ func (check *Checker) validType(typ Type, path []Object) typeInfo {\n \t\t}\n \n \tcase *Named:\n-\t\tt.expand(check.conf.Environment)\n+\t\tt.resolve(check.conf.Environment)\n \n \t\t// don't touch the type if it is from a d... | 2021-09-15T00:02:30 |
huggingface/transformers | f2aca3ecccc4ffb533fc66da73b61085b7bd58b3 | f3598a95c7558ed051ec76bb1ddd3fbe751abcef | fix cache inheritance (#39748)
* fix cache inheritance
* styule | [
{
"path": "src/transformers/generation/continuous_batching.py",
"patch": "@@ -32,7 +32,6 @@\n from torch.profiler import profile, schedule, tensorboard_trace_handler\n from tqdm import tqdm\n \n-from ..cache_utils import Cache\n from ..configuration_utils import PretrainedConfig\n from ..generation.configur... | 2025-07-29T09:24:44 |
electron/electron | 0e6a70c556363befe1e9f8be2d168fc030e7aa49 | 13c1b078f98ba79164540b33e6a7407298b15fa7 | Tranlsate quick-start-jp.md: status first
Translate: quick-start-jp.md
Fix bug
Tranlsate the world web
Change the method
Translate tutorial/quick-start-jp.md
Translate docs
Translate
Translate quick-start | [
{
"path": "docs/tutorial/quick-start-jp.md",
"patch": "@@ -0,0 +1,131 @@\n+# クイックスタート\n+\n+## 導入\n+\n+ElectronではリッチなネイティブAPIを持ったランタイムを提供することによってピュアなJavaScriptでデスクトップアプリケーションをつくることができます。ウェブサーバーの代わりにデスクトップアプリケーションに焦点をあてたio.jsランタイムであるといえばわかりやすいかもしれません。\n+\n+ElectronはJavaScriptをGUIライブラリにバインディングしません。その代わりに、Elect... | 2015-06-07T06:52:19 |
rust-lang/rust | a55a3705f63e0a6286a21a14c4575c04b65e6853 | 5b6ca80458518247baed9a7627577274ac0fe8e9 | fix: Skip pattern analysis on type mismatches | [
{
"path": "src/tools/rust-analyzer/crates/hir-ty/src/diagnostics/expr.rs",
"patch": "@@ -324,6 +324,9 @@ impl ExprValidator {\n let &Statement::Let { pat, initializer, else_branch: None, .. } = stmt else {\n continue;\n };\n+ if self.infer.type_mismatch_for... | 2025-05-27T23:11:14 |
vercel/next.js | 844776ef95aa3b5cdf88448284101139a678189f | d167ecce47dee9105f1a8a797bc356ab1ce9e47b | Support named exports for server references (#46558)
NEXT-424
Note that this change also prepares for upcoming PRs to support arrow functions.
## Bug
- [ ] Related issues linked using `fixes #number`
- [ ] Integration tests added
- [ ] Errors have a helpful link attached, see [`contributing.md`](https://github.com/... | [
{
"path": "packages/next-swc/crates/core/src/server_actions.rs",
"patch": "@@ -8,13 +8,7 @@ use next_binding::swc::core::{\n BytePos, FileName, DUMMY_SP,\n },\n ecma::{\n- ast::{\n- op, ArrayLit, AssignExpr, AssignPatProp, BlockStmt, CallExpr, ComputedPropName, Decl,\n- ... | 2023-03-01T15:30:40 |
golang/go | 2da3375e9b4980e368a8641f54cc53c4af4d1a12 | c7f2f51fed15b410dea5f608420858b401887d0a | runtime: in adjustTimers back up as far as necessary
When the adjustTimers function removed a timer it assumed it was
sufficient to continue the heap traversal at that position.
However, in some cases a timer will be moved to an earlier
position in the heap. If that timer is timerModifiedEarlier,
that can leave timerM... | [
{
"path": "src/runtime/time.go",
"patch": "@@ -367,9 +367,9 @@ func deltimer(t *timer) bool {\n \n // dodeltimer removes timer i from the current P's heap.\n // We are locked on the P when this is called.\n-// It reports whether it saw no problems due to races.\n+// It returns the smallest changed index in ... | 2021-08-20T23:55:04 |
nodejs/node | 46094e42c362979d69bbad901e8c626d5af29ee1 | 628f95503f1964b727ede62c731ce46f1e116af6 | test: fix argument order in assert.strictEqual
PR-URL: https://github.com/nodejs/node/pull/24594
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Shingo Inoue <leko.noor@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com> | [
{
"path": "test/parallel/test-child-process-cwd.js",
"patch": "@@ -43,7 +43,7 @@ function testCwd(options, expectCode = 0, expectData) {\n // Can't assert callback, as stayed in to API:\n // _The 'exit' event may or may not fire after an error has occurred._\n child.on('exit', function(code, signal) {... | 2018-11-24T07:15:56 |
huggingface/transformers | 75794792ad6f23f09729674bc97a8338085f22b2 | 4f8f51be4e230a98b53561b1a0e63c713caad3d4 | BLIPs clean-up (#35560)
* blips clean up
* update processor
* readability
* fix processor length
* fix copies
* tmp
* update and fix copies
* why keep these, delete?
* fix test fetcher
* irrelevant comment
* fix tests
* fix tests
* fix copies | [
{
"path": "src/transformers/models/blip_2/modeling_blip_2.py",
"patch": "@@ -1539,16 +1539,25 @@ def forward(\n \n # step 3: use the language model, conditioned on the query outputs and the prompt\n language_model_inputs = self.language_projection(query_output)\n- language_model_atten... | 2025-07-29T08:03:06 |
electron/electron | 18fcd6990b204dca7b43b54c2fbb9556a7132954 | 5fe130a684fadc650c02d91038c9642a5ab4e60b | win: Fix running spec | [
{
"path": "spec/webview-spec.coffee",
"patch": "@@ -54,7 +54,7 @@ describe '<webview> tag', ->\n assert.equal e.message, 'function'\n done()\n webview.addEventListener 'console-message', listener2\n- webview.src = \"file://#{fixtures}/pages/native-module.html\"\n+ w... | 2015-06-11T06:14:22 |
vercel/next.js | d167ecce47dee9105f1a8a797bc356ab1ce9e47b | 494943cbdbe4af73156077f2a404102e017476c2 | Documentation: Update link-no-children error page for new link (#46514)
The example still has an `<a>` inside the `<Link>` which was deprecated
with next 13.
Current page: https://nextjs.org/docs/messages/link-no-children
<!--
Thanks for opening a PR! Your contribution is much appreciated.
To make sure your P... | [
{
"path": "errors/link-no-children.md",
"patch": "@@ -11,9 +11,11 @@ import Link from 'next/link'\n \n export default function Home() {\n return (\n- <Link href=\"/about\"></Link>\n- // or\n- <Link href='/about' />\n+ <>\n+ <Link href=\"/about\" legacyBehavior></Link>\n+ // or\n+ ... | 2023-03-01T10:01:04 |
huggingface/transformers | 4f8f51be4e230a98b53561b1a0e63c713caad3d4 | c353f2bb5e29a52a15831d3fbe565f7b7fff3a08 | Add Fast Segformer Processor (#37024)
* Add Fast Segformer Processor
* Modified the params according to segformer model
* modified test_image_processing_Segformer_fast args
- removed redundant params like do_center_crop,center_crop which aren't present in the original segformer class
* added segmentation_maps proc... | [
{
"path": "docs/source/en/model_doc/segformer.md",
"patch": "@@ -128,6 +128,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+## SegformerImageProcessorFast\n+\n+[[autodoc]] SegformerImageProcessorFast\n+... | 2025-07-28T19:22:32 |
golang/go | c7f2f51fed15b410dea5f608420858b401887d0a | 0bb40b08c4884952d7facce3135ff9e50847763f | cmd/go: remove subcommand prefix from error messages
For example, errors that started before with "go mod download: " now
start with "go: " instead.
Previously, we had a mix of errors with and without subcommand
prefixes, even in packages like modload that ostensibly aren't tied
to any specific command. This change m... | [
{
"path": "src/cmd/go/internal/base/tool.go",
"patch": "@@ -36,7 +36,7 @@ func Tool(toolName string) string {\n \t}\n \t// Give a nice message if there is no tool with that name.\n \tif _, err := os.Stat(toolPath); err != nil {\n-\t\tfmt.Fprintf(os.Stderr, \"go tool: no such tool %q\\n\", toolName)\n+\t\tfm... | 2021-09-13T17:58:25 |
electron/electron | 71598e15bf0ca2fd8de338d864cc37776608c6c2 | cd3c06144896e071034f86e2b65b845ce73ab71b | Update node to fix crash caused by malloc | [
{
"path": "vendor/node",
"patch": "@@ -1 +1 @@\n-Subproject commit 0a8c4d2a8c0118348b5072b1e21bc4bd148b238b\n+Subproject commit ab1b3ba0b0076d7aa72e80caf8045fb6f7a68be0",
"additions": 1,
"deletions": 1,
"language": "Unknown"
}
] | 2015-06-10T13:08:54 |
huggingface/transformers | c353f2bb5e29a52a15831d3fbe565f7b7fff3a08 | 14adcbd93774c6f7d76c5b7b24f097b609037ab2 | Superpoint fast image processor (#37804)
* feat: superpoint fast image processor
* fix: reran fast cli command to generate fast config
* feat: updated test cases
* fix: removed old model add
* fix: format fix
* Update src/transformers/models/superpoint/image_processing_superpoint_fast.py
Co-authored-by: Yoni Goz... | [
{
"path": "docs/source/en/model_doc/superpoint.md",
"patch": "@@ -130,6 +130,11 @@ processed_outputs = processor.post_process_keypoint_detection(outputs, [image_si\n \n [[autodoc]] SuperPointImageProcessor\n \n+- preprocess\n+\n+## SuperPointImageProcessorFast\n+\n+[[autodoc]] SuperPointImageProcessorFast\n... | 2025-07-28T18:15:06 |
nodejs/node | 086482da6dc50693c72a25a64774103e6c1a5e1a | 6f64cda1ee578d121e328756ac7401f0ee8e1d62 | doc: document fs.write limitation with TTY
Fixes: https://github.com/nodejs/node/issues/24550
PR-URL: https://github.com/nodejs/node/pull/24571
Reviewed-By: Refael Ackermann <refack@gmail.com>
Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
Reviewed-By: Bart... | [
{
"path": "doc/api/fs.md",
"patch": "@@ -3528,6 +3528,13 @@ On Linux, positional writes don't work when the file is opened in append mode.\n The kernel ignores the position argument and always appends the data to\n the end of the file.\n \n+On Windows, if the file descriptor is connected to the console (e.g... | 2018-11-22T16:36:17 |
electron/electron | cd3c06144896e071034f86e2b65b845ce73ab71b | 163790d1075dc07c81dbe1c8c8499a35829d3d13 | win: Fix compilation error | [
{
"path": "atom/browser/atom_browser_client.cc",
"patch": "@@ -14,6 +14,7 @@\n #include \"atom/browser/window_list.h\"\n #include \"atom/common/options_switches.h\"\n #include \"base/command_line.h\"\n+#include \"base/files/file_util.h\"\n #include \"base/strings/string_number_conversions.h\"\n #include \"c... | 2015-06-10T11:34:30 |
vercel/next.js | 725fbc29ce7371a019914d456df3933a1f7c0fa1 | 9dfbe931f58f5256a9d291b5be11198d06d1c552 | [next/jest] Support path aliases from `tsconfig`/`jsconfig` (#45815)
<!--
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 follow the checklist sections below.
Choose the right checklist for the change(s) that you're making:... | [
{
"path": "docs/testing.md",
"patch": "@@ -320,17 +320,7 @@ const createJestConfig = nextJest({\n const customJestConfig = {\n // Add more setup options before each test is run\n // setupFilesAfterEnv: ['<rootDir>/jest.setup.js'],\n- // if using TypeScript with a baseUrl set to the root directory then ... | 2023-03-01T09:52:32 |
huggingface/transformers | 14adcbd93774c6f7d76c5b7b24f097b609037ab2 | 1c6b47451dacb296844ad5cfbbbde480c8a8708f | Fix AMD dockerfile for audio models (#39669) | [
{
"path": "docker/transformers-pytorch-amd-gpu/Dockerfile",
"patch": "@@ -3,9 +3,6 @@ LABEL maintainer=\"Hugging Face\"\n \n ARG DEBIAN_FRONTEND=noninteractive\n \n-ARG TORCH_VISION='0.22.0'\n-ARG TORCH_AUDIO='2.7.0'\n-\n RUN apt update && \\\n apt install -y --no-install-recommends git libsndfile1-dev ... | 2025-07-28T17:05:41 |
electron/electron | 3cea64b0f60df3ca4cc0c00f36f9ca88ec1e0dd3 | 9868d46d630625f92c0ece066e5d84b20ecdbb0e | Fix typo | [
{
"path": "brightray/browser/browser_context.cc",
"patch": "@@ -55,7 +55,7 @@ class BrowserContext::ResourceContext : public content::ResourceContext {\n return scoped_ptr<net::ClientCertStore>(new net::ClientCertStoreNSS(\n net::ClientCertStoreNSS::PasswordDelegateFactory()));\n #elif d... | 2015-06-10T11:30:35 |
huggingface/transformers | 1c6b47451dacb296844ad5cfbbbde480c8a8708f | fc2bd1eac0327e849c6125033a13e3f6af6ee69e | Fix cache-related tests (#39676)
* fix
* fix kyutai at last
* fix unrelated tests and copies
* update musicgen as well
* revert tensor
* fix old test failures
* why it wasn't added? | [
{
"path": "src/transformers/generation/utils.py",
"patch": "@@ -2055,7 +2055,7 @@ def _prepare_cache_for_generation(\n generation_config.cache_implementation = None\n \n generation_config.cache_implementation = generation_config.cache_implementation or getattr(\n- self.config.... | 2025-07-28T15:30:11 |
vercel/next.js | 9dfbe931f58f5256a9d291b5be11198d06d1c552 | 5acabf00d89d8739758ee6382c0a98959b0ad3e6 | Check if server error already had its message updated (#46367)
I haven't been able to reproduce this consistently. But sometimes it
seems that the same error instance is thrown, causing the additional
error info to be appended multiple times. This adds a check to see if
the error message already has been updated, a... | [
{
"path": "packages/next/src/lib/format-server-error.test.ts",
"patch": "@@ -0,0 +1,30 @@\n+import { formatServerError } from './format-server-error'\n+\n+describe('formatServerError', () => {\n+ it('should not append message several times', () => {\n+ const err = new Error(\n+ 'Class extends value... | 2023-03-01T09:40:21 |
golang/go | bf26e43d0f9a6c9d43c206877917e66f0fc24a19 | 2933c451a06ee0f97a698d1383cfbda988374137 | go/types: eliminate Named.instPos
We no longer need to use the nilness of Named.instPos to signal whether
instance expansion has occurred, so remove it from the Named struct by
instead closing over the instantiation position in the resolver.
This means we cannot print instance markers for unexpanded instances:
instan... | [
{
"path": "src/go/internal/gcimporter/gcimporter_test.go",
"patch": "@@ -238,9 +238,6 @@ func TestImportTypeparamTests(t *testing.T) {\n func sanitizeObjectString(s string) string {\n \tvar runes []rune\n \tfor _, r := range s {\n-\t\tif r == '#' {\n-\t\t\tcontinue // trim instance markers\n-\t\t}\n \t\tif ... | 2021-09-10T19:12:57 |
rust-lang/rust | 1afdb550193caea993648e2dc34427335eaca4b2 | 82160c49a3f102e7f485c491408f8813196f780d | Fix to 128 bit int unaligned loads | [
{
"path": "src/builder.rs",
"patch": "@@ -924,7 +924,12 @@ impl<'a, 'gcc, 'tcx> BuilderMethods<'a, 'tcx> for Builder<'a, 'gcc, 'tcx> {\n // dereference after a drop, for instance.\n // FIXME(antoyo): this check that we don't call get_aligned() a second time on a type.\n // Ideally, w... | 2025-05-23T10:24:53 |
huggingface/transformers | fc2bd1eac0327e849c6125033a13e3f6af6ee69e | 7623aa3e5f5d2e8a34d7a0bbe5b6290e9a832205 | Fix Layer device placement in Caches (#39732)
* fix device placement
* style
* typo in comment | [
{
"path": "src/transformers/cache_utils.py",
"patch": "@@ -263,6 +263,14 @@ def update(\n key_states = key_states.to(self.keys.dtype)\n value_states = value_states.to(self.values.dtype)\n \n+ # This may be needed if the Layer was not created with the right device in the beginning, i.e... | 2025-07-28T14:37:11 |
rust-lang/rust | 703e051f36013e620eece08151fd3f6e435fd278 | 430e23044914f759f5674cfae542a366f6cca7e9 | add perf fixme for `MaybeInitializedPlaces` domain | [
{
"path": "compiler/rustc_borrowck/src/type_check/liveness/trace.rs",
"patch": "@@ -472,6 +472,18 @@ impl<'a, 'typeck, 'tcx> LivenessContext<'a, 'typeck, 'tcx> {\n self.flow_inits.get_or_insert_with(|| {\n let tcx = self.typeck.tcx();\n let body = self.typeck.body;\n+ ... | 2025-05-27T21:17:01 |
vercel/next.js | 5acabf00d89d8739758ee6382c0a98959b0ad3e6 | 7f0b9e262bb079a81926f667d05bbcd184a3afdb | test(utils): support turbopack-based overlay error text lookup (#46589
<!--
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 follow the checklist sections below.
Choose the right checklist for the change(s) that you're makin... | [
{
"path": "test/lib/next-test-utils.js",
"patch": "@@ -669,16 +669,27 @@ export async function hasRedbox(browser, expected = true) {\n \n export async function getRedboxHeader(browser) {\n return retry(\n- () =>\n- evaluate(browser, () => {\n+ () => {\n+ if (shouldRunTurboDevTest()) {\n ... | 2023-03-01T09:23:39 |
golang/go | 2933c451a06ee0f97a698d1383cfbda988374137 | 137543bb93e15286b54d58d17d51e609ed49339a | go/types: merge Named type loading and expansion
Named type expansion and loading were conceptually similar: a mechanism
for lazily resolving type information in a concurrency-safe manner.
Unify them into a 'resolve' method, that delegates to a resolver func to
produce type parameters, underlying, and methods.
By lev... | [
{
"path": "src/go/types/decl.go",
"patch": "@@ -316,7 +316,7 @@ func (check *Checker) validType(typ Type, path []Object) typeInfo {\n \t\t}\n \n \tcase *Named:\n-\t\tt.expand(check.conf.Environment)\n+\t\tt.resolve(check.conf.Environment)\n \t\t// don't touch the type if it is from a different package or th... | 2021-09-10T14:23:23 |
nodejs/node | 6f64cda1ee578d121e328756ac7401f0ee8e1d62 | cc399cf5b2253dd9f3bcdeeff422059d58795d75 | tools,doc: fix version picker bug in html.js
The processing of strings like `8.x` into a major version number and a
minor version number results in minor versions that are `NaN`. In that
situation, since the picker will link to the latest docs in the
major version, include the version in the version picker.
Fixes: ht... | [
{
"path": "test/doctool/test-doctool-html.js",
"patch": "@@ -95,6 +95,10 @@ const testData = [\n html: '<ol><li>fish</li><li>fish</li></ol>' +\n '<ul><li>Red fish</li><li>Blue fish</li></ul>',\n },\n+ {\n+ file: fixtures.path('altdocs.md'),\n+ html: '<li><a href=\"https://nodejs.org/docs/... | 2018-11-25T07:06:55 |
electron/electron | 731773765e1844fe859524c31bdc8f77e9e2aa60 | 333fe874904b447bb55bef79cc49ef6c729bd7ed | Update iojs to fix linking on Linux | [
{
"path": "vendor/node",
"patch": "@@ -1 +1 @@\n-Subproject commit f642ab6e532647b5ee8828e79054990439e2b34b\n+Subproject commit 0a8c4d2a8c0118348b5072b1e21bc4bd148b238b",
"additions": 1,
"deletions": 1,
"language": "Unknown"
}
] | 2015-06-10T08:40:35 |
huggingface/transformers | 7623aa3e5f5d2e8a34d7a0bbe5b6290e9a832205 | 28f2619868805a11f3afd03a7428ef10d1653752 | Fix `Qwen2AudioForConditionalGeneration.forward()` and `test_flash_attn_kernels_inference_equivalence` (#39503)
* Add missing cache_position argument.
* Pass cache_position to language model.
* Overwrite prepare_inputs_for_generation.
* Set model to half precision for Flash Attention test.
* Cast model to bfloat16... | [
{
"path": "src/transformers/models/qwen2_audio/modeling_qwen2_audio.py",
"patch": "@@ -19,7 +19,6 @@\n from typing import Callable, Optional, Union\n \n import torch\n-import torch.utils.checkpoint\n from torch import nn\n \n from ...activations import ACT2FN\n@@ -727,6 +726,7 @@ def forward(\n outp... | 2025-07-28T14:35:08 |
vercel/next.js | 5306df81c6a29734cc5b9428206efe1ef20394f0 | b0b5cd8dc0734992b0d28d7b65727935e441198d | Implement middleware support for Turbopack (#46397)
This implements middleware support for Turbopack's route resolver. In
https://github.com/vercel/turbo/pull/3930, I'm updating the data that we
pass to include a new `MiddlewareConfig`, which includes the files
needed for invoking the edge function and the matchers... | [
{
"path": "packages/next/src/build/analysis/get-page-static-info.ts",
"patch": "@@ -140,7 +140,7 @@ async function tryToReadFile(filePath: string, shouldThrow: boolean) {\n }\n }\n \n-function getMiddlewareMatchers(\n+export function getMiddlewareMatchers(\n matcherOrMatchers: unknown,\n nextConfig: N... | 2023-03-01T08:16:04 |
nodejs/node | cc399cf5b2253dd9f3bcdeeff422059d58795d75 | 9910cc29bc14160cb4e718e61b87dc6de7cbbfaa | 2018-11-27, Version 11.3.0 (Current)
This is a security release. All Node.js users should consult the security
release summary at:
https://nodejs.org/en/blog/vulnerability/november-2018-security-releases/
for details on patched vulnerabilities.
Fixes for the following CVEs are included in this release:
* Node.js... | [
{
"path": "CHANGELOG.md",
"patch": "@@ -28,7 +28,8 @@ release.\n </tr>\n <tr>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V11.md#11.2.0\">11.2.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V11.md#11.3.0\">11.3.0</a></b><br/>\n+<a href=\"doc/changelogs/CHANGELOG_V11.md#11.2.0\"... | 2018-11-25T10:51:58 |
golang/go | 3a72175cdcbfb64cca5968be52ac964f69d3a44a | b2c04f0d48234765ce37bbb178bd174f3857929a | cmd/compile: fix test/typeparam/mdempsky/4.go for -G=3
Change-Id: I894ee000561a3c6afede8df697b1bce4576ceef0
Reviewed-on: https://go-review.googlesource.com/c/go/+/349012
Reviewed-by: Dan Scales <danscales@google.com>
Trust: Dan Scales <danscales@google.com>
Trust: Keith Randall <khr@golang.org> | [
{
"path": "src/cmd/compile/internal/typecheck/iimport.go",
"patch": "@@ -1166,10 +1166,26 @@ func (r *importReader) stmtList() []ir.Node {\n \t\tif n.Op() == ir.OBLOCK {\n \t\t\tn := n.(*ir.BlockStmt)\n \t\t\tlist = append(list, n.List...)\n-\t\t} else {\n-\t\t\tlist = append(list, n)\n+\t\t\tcontinue\n \t\... | 2021-09-10T12:56:29 |
huggingface/transformers | 28f2619868805a11f3afd03a7428ef10d1653752 | 88aed92b59f3148c961e0056f21fac1820fd2b81 | skip `Glm4MoeModelTest::test_torch_compile_for_training` (#39670)
* fix
* fix
* fix
---------
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": "tests/models/glm4_moe/test_modeling_glm4_moe.py",
"patch": "@@ -79,8 +79,8 @@ class Glm4MoeModelTest(CausalLMModelTest, unittest.TestCase):\n test_pruning = False\n fx_compatible = False\n model_tester_class = Glm4MoeModelTester\n- # used in `test_torch_compile_for_training`\n- ... | 2025-07-28T14:30:40 |
electron/electron | 132c13a11bdab8b147606866770d01bd307f60cf | 04d24f61fee0c7eb2a778ef77002aac27a7019ec | Fix calls to deprecated node::ThrowError API | [
{
"path": "atom/browser/api/atom_api_power_monitor.cc",
"patch": "@@ -41,8 +41,9 @@ void PowerMonitor::OnResume() {\n // static\n v8::Local<v8::Value> PowerMonitor::Create(v8::Isolate* isolate) {\n if (!Browser::Get()->is_ready()) {\n- node::ThrowError(\"Cannot initialize \\\"power-monitor\\\" module\"... | 2015-06-10T06:21:09 |
nodejs/node | 9910cc29bc14160cb4e718e61b87dc6de7cbbfaa | 59fdaede521e250186a9f376ddde334898115282 | 2018-11-27, Version 10.14.0 'Dubnium' (LTS)
This is a security release. All Node.js users should consult the security
release summary at:
https://nodejs.org/en/blog/vulnerability/november-2018-security-releases/
for details on patched vulnerabilities.
Fixes for the following CVEs are included in this release:
... | [
{
"path": "CHANGELOG.md",
"patch": "@@ -33,7 +33,8 @@ release.\n <a href=\"doc/changelogs/CHANGELOG_V11.md#11.0.0\">11.0.0</a><br/>\n </td>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V10.md#10.13.0\">10.13.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V10.md#10.14.0\">10.... | 2018-11-25T08:17:30 |
vercel/next.js | b0b5cd8dc0734992b0d28d7b65727935e441198d | abf8a42326c336734ee01af8573cdff8a719b4bd | Add page path to repeated slashes in href error (#46557)
Currently if you find this error in your logs it's difficult to know
where it occurred. This adds the page pathname to the error message.
Before
.match(/(\\/\\/|\\\\)/)) {\n console.error(\n- `Invalid href passed to next/router: ${urlAsString}, repeated forward-slashes (//) or backslas... | 2023-03-01T08:10:11 |
huggingface/transformers | 88aed92b59f3148c961e0056f21fac1820fd2b81 | da823fc04e2e249c7a7c73bda1ec219c07359d60 | Update `QAPipelineTests::test_large_model_course` after #39193 (#39666)
fix
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": "tests/pipelines/test_pipelines_question_answering.py",
"patch": "@@ -412,7 +412,7 @@ def test_large_model_course(self):\n \n self.assertEqual(\n nested_simplify(outputs),\n- {\"answer\": \"Jax, PyTorch and TensorFlow\", \"end\": 1919, \"score\": 0.971, \"start\": 18... | 2025-07-28T14:26:49 |
golang/go | 181e8cde301cd8205489e746334174fee7290c9b | 8699425b5527e24dc184d61d949d7f6db37c0c5c | go/internal/gcimporter: remove outdated comment
CL 349010 ported the fix from CL 349009, but forgot to remove the
outdated comment from old solution. This CL removes that one.
Change-Id: Ia401295e9d0984f4a088ddce5db09d306bfd89b6
Reviewed-on: https://go-review.googlesource.com/c/go/+/349729
Trust: Cuong Manh Le <cuong... | [
{
"path": "src/go/internal/gcimporter/iimport.go",
"patch": "@@ -284,8 +284,6 @@ type importReader struct {\n \tprevColumn int64\n }\n \n-// obj reads import declaration for an object. It may not read\n-// the entire declaration, e.g, for recursive type.\n func (r *importReader) obj(name string) {\n \ttag :... | 2021-09-14T03:36:29 |
huggingface/transformers | da823fc04e2e249c7a7c73bda1ec219c07359d60 | 686bb3b098910adb28df3a8c65e2dbe9567ca32e | mllama outputs refactor (#39643)
* mllama outputs refactor
* forgot kwargs
* fix output
* add can_record_outputs
* correct @check_model_inputs placement
* ruff and copies
* rebase
* feedback
* only return hidden_states
---------
Co-authored-by: ita.zaporozhets@huggingface.co <ita_zaporozhets@ip-26-0-161-153.... | [
{
"path": "src/transformers/models/mllama/modeling_mllama.py",
"patch": "@@ -27,11 +27,13 @@\n from ...generation import GenerationMixin\n from ...modeling_attn_mask_utils import AttentionMaskConverter\n from ...modeling_flash_attention_utils import FlashAttentionKwargs\n+from ...modeling_layers import Grad... | 2025-07-28T13:59:20 |
vercel/next.js | abf8a42326c336734ee01af8573cdff8a719b4bd | cccf4f2a29c3782950aa038161746fcd84c61166 | Fix static to dynamic error in dev (#46597)
This corrects the static to dynamic error incorrectly showing in
development since we don't have enough information to accurately know if
this error should be thrown or not unless a build has been done.
Fixes: https://github.com/vercel/next.js/issues/46436
x-ref: [slac... | [
{
"path": "packages/next/src/server/base-server.ts",
"patch": "@@ -1550,7 +1550,10 @@ export default abstract class Server<ServerOptions extends Options = Options> {\n isNotFound = (renderOpts as any).isNotFound\n isRedirect = (renderOpts as any).isRedirect\n \n- if (isAppPath && isSSG && i... | 2023-03-01T07:37:12 |
nodejs/node | 59fdaede521e250186a9f376ddde334898115282 | 957aeba35211bdadbc3e345639efee11362891a5 | 2018-11-27, Version 8.14.0 'Carbon' (LTS)
This is a security release. All Node.js users should consult the security
release summary at:
https://nodejs.org/en/blog/vulnerability/november-2018-security-releases/
for details on patched vulnerabilities.
Fixes for the following CVEs are included in this release:
* ... | [
{
"path": "CHANGELOG.md",
"patch": "@@ -51,7 +51,8 @@ release.\n <a href=\"doc/changelogs/CHANGELOG_V10.md#10.0.0\">10.0.0</a><br/>\n </td>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V8.md#8.13.0\">8.13.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V8.md#8.14.0\">8.14.0</... | 2018-11-25T05:21:28 |
golang/go | ee91bb83198f61aa8f26c3100ca7558d302c0a98 | 2953cd00836323112846b21f60fa1d68aa0f9a77 | cmd/compile: prevent typecheck importer reading type parameter twice
This is a port of CL 349009 to typecheck importer.
Fixes #48306
Change-Id: Iec3f078089346bd85f0ab739896e079940325011
Reviewed-on: https://go-review.googlesource.com/c/go/+/349011
Trust: Cuong Manh Le <cuong.manhle.vn@gmail.com>
Trust: Dan Scales <d... | [
{
"path": "src/cmd/compile/internal/typecheck/iimport.go",
"patch": "@@ -316,16 +316,12 @@ func (r *importReader) doDecl(sym *types.Sym) *ir.Name {\n \t\treturn n\n \n \tcase 'T', 'U':\n-\t\tvar rparams []*types.Type\n-\t\tif tag == 'U' {\n-\t\t\trparams = r.typeList()\n-\t\t}\n-\n \t\t// Types can be recur... | 2021-09-10T01:34:03 |
huggingface/transformers | 686bb3b098910adb28df3a8c65e2dbe9567ca32e | a0fa500a3d94960dff5bfe07c0c92717ab915d86 | Remove all expired deprecation cycles (#39725)
* remove all deprecation cycles
* style
* fix
* remove
* remove
* fix
* Update modular_dpt.py
* back
* typo
* typo
* final fix
* remove all args | [
{
"path": "src/transformers/generation/candidate_generator.py",
"patch": "@@ -37,8 +37,6 @@\n from ..tokenization_utils_base import PreTrainedTokenizerBase\n from .configuration_utils import GenerationConfig\n \n-from ..utils.deprecation import deprecate_kwarg\n-\n \n class CandidateGenerator:\n ... | 2025-07-28T13:43:41 |
vercel/next.js | 0c923c330adada68d71f2b048049ca7a5353640e | 9fdddb36295fd9a580e32108dbb9b6e87b5b2810 | Async Storage Cleanup (#46586)
<!--
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 follow the checklist sections below.
Choose the right checklist for the change(s) that you're making:
-->
Cleaned up duplicate code aro... | [
{
"path": "packages/next/src/build/webpack/loaders/next-edge-app-route-loader/handle.ts",
"patch": "@@ -30,7 +30,7 @@ export function getHandle({ page, mod }: any) {\n extendedReq,\n extendedRes,\n // TODO: pass incrementalCache here\n- {},\n+ { supportsDynamicHTML: true },\n ... | 2023-03-01T06:28:51 |
nodejs/node | 957aeba35211bdadbc3e345639efee11362891a5 | b77f699a84219702ccef6387882c0fdcb58529bb | 2018-11-27, Version 6.15.0 'Boron' (LTS)
This is a security release. All Node.js users should consult the security
release summary at:
https://nodejs.org/en/blog/vulnerability/november-2018-security-releases/
for details on patched vulnerabilities.
Fixes for the following CVEs are included in this release:
* N... | [
{
"path": "CHANGELOG.md",
"patch": "@@ -81,7 +81,8 @@ release.\n <a href=\"doc/changelogs/CHANGELOG_V8.md#8.0.0\">8.0.0</a><br/>\n </td>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V6.md#6.14.4\">6.14.4</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V6.md#6.15.0\">6.15.0</a></b... | 2018-11-24T12:05:20 |
golang/go | b8c802b1161528fcf8ba78b1dff5720dd5b4eb9f | 4a4221e8187189adcc6463d2d96fe2e8da290132 | cmd/compile: prevent importReader reading type parameter twice
The importReader always reads type parameter before declaring type stub
declaration. Thus, for recursive type, the type parameter is going to be
read twice, cause the bound more than once error.
To fix this, only read the type parameter after declaring st... | [
{
"path": "src/cmd/compile/internal/importer/iimport.go",
"patch": "@@ -318,17 +318,17 @@ func (r *importReader) obj(name string) {\n \t\tr.declare(types2.NewFunc(pos, r.currPkg, name, sig))\n \n \tcase 'T', 'U':\n-\t\tvar tparams []*types2.TypeParam\n-\t\tif tag == 'U' {\n-\t\t\ttparams = r.tparamList()\n-... | 2021-09-10T00:44:02 |
huggingface/transformers | 4c7da9fedf185cecda3de3945fa4c84e5c7ca996 | cbede2969ba9878796b7e9b6723e823f68a3125f | PATCH: add back n-dim device-mesh + fix tp trainer saving (#39693)
* Feat: something
* Feat: initial changes
* tmp changes to unblock
* Refactor
* remove todo
* Feat: docstring
* Fix: saving of distributed model in trainer
* Fix: distributed saving with trainer
* Feat: add pure tp saving
* Only require tp dim... | [
{
"path": "src/transformers/modeling_utils.py",
"patch": "@@ -4472,7 +4472,7 @@ def from_pretrained(\n A torch tensor parallel degree. If not provided would default to world size.\n device_mesh (`torch.distributed.DeviceMesh`, *optional*):\n A torch device mesh. I... | 2025-07-28T12:29:58 |
electron/electron | 09c5da7147d3934efee209a7cfeedd6651b2c7c1 | 0fef09281b27fcb6de9f90d521e549026e79b4c5 | Fixing cpplint line width | [
{
"path": "atom/common/crash_reporter/crash_reporter.cc",
"patch": "@@ -46,7 +46,8 @@ std::vector<CrashReporter::UploadReportResult>\n CrashReporter::GetUploadedReports(const std::string& path) {\n std::string file_content;\n std::vector<CrashReporter::UploadReportResult> result;\n- if (base::ReadFileT... | 2015-06-10T04:06:40 |
vercel/next.js | 9fdddb36295fd9a580e32108dbb9b6e87b5b2810 | ff699471bf1a76e537905f2f0da09ad1bb86438a | Fix async generateMetadata type in ts plugin (#46596)
Corrects async return type for `generateMetadata`
x-ref: https://github.com/vercel/next.js/pull/45723/files#r1121140364
## Bug
- [x] Related issues linked using `fixes #number`
- [ ] Integration tests added
- [ ] Errors have a helpful link attached, see
... | [
{
"path": "packages/next/src/server/typescript/rules/metadata.ts",
"patch": "@@ -8,7 +8,7 @@ import {\n } from '../utils'\n \n const TYPE_ANOTATION = ': Metadata'\n-const TYPE_ANOTATION_ASYNC = ': Promise<Metadata> | Metadata'\n+const TYPE_ANOTATION_ASYNC = ': Promise<Metadata>'\n const TYPE_IMPORT = `\\n\\... | 2023-03-01T06:18:47 |
nodejs/node | b77f699a84219702ccef6387882c0fdcb58529bb | ee618a7ab239c98d945c723a4e225bc409151736 | url: avoid hostname spoofing w/ javascript protocol
CVE-2018-12123
Fixes: https://github.com/nodejs-private/security/issues/205
PR-URL: https://github.com/nodejs-private/node-private/pull/145
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
Reviewed-By: Anna Henn... | [
{
"path": "lib/url.js",
"patch": "@@ -267,13 +267,13 @@ Url.prototype.parse = function parse(url, parseQueryString, slashesDenoteHost) {\n if (slashesDenoteHost || proto || hostPattern.test(rest)) {\n var slashes = rest.charCodeAt(0) === CHAR_FORWARD_SLASH &&\n rest.charCodeAt(1) ===... | 2018-09-10T10:57:07 |
golang/go | 9a58aa267e3686c86d3e5bf1d14117a2a127838c | 42057e9848d40fc6181cd7a68fd788c652772b8d | spec: fix prose about terminating statements
CL 85215 added prose to provide some minimal intuition for the
definition of a "terminating statement". While the original definition
was perfectly fine, the added prose was actually incorrect: If the
terminating statement is a goto, it might jump to a labeled statement
fol... | [
{
"path": "doc/go_spec.html",
"patch": "@@ -1,6 +1,6 @@\n <!--{\n \t\"Title\": \"The Go Programming Language Specification\",\n-\t\"Subtitle\": \"Version of Aug 23, 2021\",\n+\t\"Subtitle\": \"Version of Sep 14, 2021\",\n \t\"Path\": \"/ref/spec\"\n }-->\n \n@@ -4561,9 +4561,8 @@ <h2 id=\"Statements\">State... | 2021-09-11T00:06:43 |
huggingface/transformers | b56d721397028a562b1e6444a8e493171e659202 | 02ea23cbdea63c46a2f3cb1a58d5b6f8d96f6872 | [configuration] remove redundant `classmethod` (#38812)
* remove redundant classmethod
* warning message, add space between words
* fix tests
* fix copies | [
{
"path": "src/transformers/configuration_utils.py",
"patch": "@@ -1199,6 +1199,42 @@ def get_text_config(self, decoder=False) -> \"PretrainedConfig\":\n config_to_return = self\n return config_to_return\n \n+ @classmethod\n+ def from_text_vision_configs(cls, text_config, vision_co... | 2025-07-28T10:38:48 |
electron/electron | 0fef09281b27fcb6de9f90d521e549026e79b4c5 | f91a81fe77aa59a75792c8f7bd3b7510acfcd017 | Guarding webview attributes against polluted Object.prototypes
Ran into an error with the buildParams function breaking when using a JavaScript library that modified the Object.prototype, this small fix resolves the issue. | [
{
"path": "atom/renderer/lib/web-view/web-view.coffee",
"patch": "@@ -173,7 +173,7 @@ class WebViewImpl\n params =\n instanceId: @viewInstanceId\n userAgentOverride: @userAgentOverride\n- for attributeName, attribute of @attributes\n+ for own attributeName, attribute of @attributes\n ... | 2015-06-09T23:17:00 |
vercel/next.js | ff699471bf1a76e537905f2f0da09ad1bb86438a | 9b6ede295ccbfeeefe6b3d27022953d2c41b6eeb | Fix(typedRoutes): fixed Webpack crashing without redirects/rewrites (#46591)
<!--
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 follow the checklist sections below.
Choose the right checklist for the change(s) that you're... | [
{
"path": "packages/next/src/build/webpack-build.ts",
"patch": "@@ -91,8 +91,8 @@ async function webpackBuildImpl(): Promise<{\n appDir: NextBuildContext.appDir!,\n pagesDir: NextBuildContext.pagesDir!,\n rewrites: NextBuildContext.rewrites!,\n- originalRewrites: NextBuildContext.originalRewr... | 2023-03-01T06:12:11 |
huggingface/transformers | 02ea23cbdea63c46a2f3cb1a58d5b6f8d96f6872 | 8b237b86398e108447427825703f7a80780785aa | update ernie model card (#39657)
* update ernie model doc
Signed-off-by: Zhang Jun <jzhang533@gmail.com>
* address ruff format error reported by ci
Signed-off-by: Zhang Jun <jzhang533@gmail.com>
* address check_repository_consistency error reported by ci
Signed-off-by: Zhang Jun <jzhang533@gmail.com>
---------
... | [
{
"path": "docs/source/en/model_doc/ernie.md",
"patch": "@@ -14,29 +14,83 @@ rendered properly in your Markdown viewer.\n \n -->\n \n+<div style=\"float: right;\">\n+ <div class=\"flex flex-wrap space-x-1\">\n+ <img alt=\"PyTorch\" src=\"https://img.shields.io/badge/PyTorch-DE3412?style=flat&logo=... | 2025-07-28T10:21:18 |
nodejs/node | af8d9e3972bba423ab0027239062b894030db5c7 | f413f7c9cf5749c231c4b4e667dc2cbab959dd59 | http: fix header limit errors and test for llhttp
Ref: https://github.com/nodejs-private/node-private/pull/143
PR-URL: https://github.com/nodejs-private/node-private/pull/149
Reviewed-By: Rod Vagg <rod@vagg.org> | [
{
"path": "src/node_http_parser.cc",
"patch": "@@ -30,7 +30,7 @@\n #include \"v8.h\"\n \n #include <stdlib.h> // free()\n-#include <string.h> // strdup()\n+#include <string.h> // strdup(), strchr()\n \n #include \"http_parser_adaptor.h\"\n \n@@ -367,7 +367,7 @@ class Parser : public AsyncWrap, public Str... | 2018-11-21T04:33:49 |
golang/go | 42057e9848d40fc6181cd7a68fd788c652772b8d | 960d036f8f7387de9b06fde6601af43ecaa650e6 | cmd/compile: save the note of fields when translating struct
Fixes #48317
Change-Id: I756ae6253022870071004332dd8f49169307f7e6
Reviewed-on: https://go-review.googlesource.com/c/go/+/349013
Run-TryBot: Dan Scales <danscales@google.com>
TryBot-Result: Go Bot <gobot@golang.org>
Reviewed-by: Keith Randall <khr@golang.org... | [
{
"path": "src/cmd/compile/internal/typecheck/subr.go",
"patch": "@@ -1312,6 +1312,7 @@ func (ts *Tsubster) tstruct(t *types.Type, force bool) *types.Type {\n \t\t\t// the type param, not the instantiated type).\n \t\t\tnewfields[i] = types.NewField(f.Pos, f.Sym, t2)\n \t\t\tnewfields[i].Embedded = f.Embedd... | 2021-09-10T17:14:54 |
vercel/next.js | 076844e59fcca4ce3be304bc6c808fac9e549735 | 5d48d7e6ed2431b4f014c99204538f695ee35947 | Ensure URL can be passed to fetch correctly (#46592
Fixes:

## Bug
- [x] Related issues linked using `fixes #number`
- [x] Integration tests added
- [ ] Errors hav... | [
{
"path": "packages/next/src/server/lib/patch-fetch.ts",
"patch": "@@ -28,7 +28,11 @@ export function patchFetch({\n },\n async (input: RequestInfo | URL, init: RequestInit | undefined) => {\n const staticGenerationStore = staticGenerationAsyncStorage.getStore()\n- const isRequestInput = ... | 2023-03-01T05:32:28 |
electron/electron | 29abfa68e91c36465441cff0a5d0b08e5ed2376e | ab98dcd7cf30f80135f997a131c0562dbb656f08 | Fix grammar and JS example for Chrome command line switches docs | [
{
"path": "docs/api/chrome-command-line-switches.md",
"patch": "@@ -1,6 +1,6 @@\n # Supported Chrome command line switches\n \n-Following command lines switches in Chrome browser are also Supported in\n+The following command lines switches in Chrome browser are also supported in\n Electron, you can use [app... | 2015-06-09T14:59:14 |
huggingface/transformers | 8b237b86398e108447427825703f7a80780785aa | 6638b3642df84ddde6cfb453c09ee8dfb520f60f | [processors] add tests for helper fn (#39629)
* add tests for helpers
* duplicate test for each model
* why llava next video has no helper
* oops must have been in the commit
* fix test after rebase
* add copy from | [
{
"path": "src/transformers/models/aria/image_processing_aria.py",
"patch": "@@ -515,8 +515,8 @@ def get_number_of_image_patches(self, height: int, width: int, images_kwargs=Non\n Returns:\n `int`: Number of patches per image.\n \"\"\"\n- split_image = images_kwargs.get(\"... | 2025-07-28T09:41:58 |
nodejs/node | 1db808ca5f54ac30a47818112f78378c93ef2be6 | 11c17e4bc912af7dd5b6ef47176fcccee9064b50 | lib: fix comment nits in bootstrap\loaders.js
PR-URL: https://github.com/nodejs/node/pull/24641
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com> | [
{
"path": "lib/internal/bootstrap/loaders.js",
"patch": "@@ -19,7 +19,7 @@\n // can be created using NODE_MODULE_CONTEXT_AWARE_CPP() with the flag\n // NM_F_LINKED.\n // - internalBinding(): the private internal C++ binding loader, inaccessible\n-// from user land because they are only available from ... | 2018-11-23T22:31:52 |
golang/go | 81a4fe6fd29a427c613038260ea12c5374cc5894 | f93a63addbbca69d7817c8993a88511ec31424cd | cmd/link/internal/ld: re-enable DWARF tests on solaris/illumos
It looks like these are fixed on current tip after CL 84655
marked them to be skipped.
Fixes #23168
Change-Id: I0020e6da1042f723eb54186ef0fe925df5326230
Reviewed-on: https://go-review.googlesource.com/c/go/+/349250
Trust: Tobias Klauser <tobias.klauser@g... | [
{
"path": "src/cmd/link/internal/ld/dwarf_test.go",
"patch": "@@ -614,9 +614,6 @@ func TestInlinedRoutineRecords(t *testing.T) {\n \tif runtime.GOOS == \"plan9\" {\n \t\tt.Skip(\"skipping on plan9; no DWARF symbol table in executables\")\n \t}\n-\tif runtime.GOOS == \"solaris\" || runtime.GOOS == \"illumos\... | 2021-09-13T15:26:03 |
electron/electron | 13b6ed6dc527e765267adf9b9477df728c0a650e | 8aa815e6d183132eee8b084c612729cd5e7651b8 | Fix several typos and grammar errors | [
{
"path": "docs/api/browser-window.md",
"patch": "@@ -753,7 +753,7 @@ Calling `event.preventDefault()` can prevent creating new windows.\n Emitted when user or the page wants to start an navigation, it can happen when\n `window.location` object is changed or user clicks a link in the page.\n \n-This event w... | 2015-06-09T14:49:21 |
huggingface/transformers | 6638b3642df84ddde6cfb453c09ee8dfb520f60f | 5c15eb55d217bcc053068325a54d2b79f6824c3a | xpu optimization for generation case (#39573)
* xpu optimization for generation case
Signed-off-by: Wang, Yi A <yi.a.wang@intel.com>
* fix ci failure
Signed-off-by: Wang, Yi A <yi.a.wang@intel.com>
---------
Signed-off-by: Wang, Yi A <yi.a.wang@intel.com> | [
{
"path": "src/transformers/integrations/sdpa_attention.py",
"patch": "@@ -2,14 +2,16 @@\n \n import torch\n \n-from ..utils import logging\n+from ..utils import is_torch_xpu_available, logging\n from ..utils.import_utils import is_torch_greater_or_equal\n \n \n logger = logging.get_logger(__name__)\n \n \n... | 2025-07-28T09:34:58 |
rust-lang/rust | c021e7a9d2818e7d9f71bd38124d4e2c212007d6 | b06113dc5cd6fbb2cc63918f9e861929537f41fd | scrape-examples.js: fix typos
Co-authored-by: Guillaume Gomez <guillaume1.gomez@gmail.com> | [
{
"path": "src/librustdoc/html/static/js/rustdoc.d.ts",
"patch": "@@ -497,7 +497,7 @@ declare namespace rustdoc {\n * First field is the start and end char index,\n * other fields seem to be unused.\n *\n- * generated by `render_call_locations` in `render/mod.rs`.\n+ * Generated by `r... | 2025-05-27T17:50:14 |
nodejs/node | 567b9f86cc2fa94ea6cd8cf53b5c832081a908d6 | bb04a8bbf2dc97ee3e75f985de1b8b6ff4f0619c | lib: suppress crypto related env vars in help msg
This commit adds a crypto check to suppress the crypto related
environment variables introduced in Commit
399bb3c95af821350774c18f469ab700387f38e1 ("doc: add NODE_DEBUG_NATIVE to API
docs").
Without this check, test/parallel/test-cli-node-print-help.js will fail
when ... | [
{
"path": "lib/internal/print_help.js",
"patch": "@@ -1,6 +1,7 @@\n 'use strict';\n \n const { types } = internalBinding('options');\n+const hasCrypto = Boolean(process.versions.openssl);\n \n const typeLookup = [];\n for (const key of Object.keys(types))\n@@ -33,11 +34,6 @@ const envVars = new Map([\n ... | 2018-11-21T15:23:00 |
huggingface/transformers | 5c15eb55d217bcc053068325a54d2b79f6824c3a | 6a61e16626d26ea209e94a15b9ab3bfff7ba9bc5 | fix(tokenization): check token.content for trie (#39587)
fix: check token.content for trie | [
{
"path": "src/transformers/tokenization_utils.py",
"patch": "@@ -589,7 +589,7 @@ def _add_tokens(self, new_tokens: Union[list[str], list[AddedToken]], special_to\n \n def _update_trie(self, unique_no_split_tokens: Optional[str] = []):\n for token in self._added_tokens_decoder.values():\n- ... | 2025-07-28T09:28:56 |
rust-lang/rust | 65bdb31a97af553c4fd932a171b74eaad76c1c53 | 0fc6f1672bdde8163164f10e46d2d9ffcaeb2161 | Report text_direction_codepoint_in_literal when parsing
- The lint is now reported in code that gets removed/modified/duplicated
by macro expansion.
- Spans are more accurate
- Fixes #140281 | [
{
"path": "compiler/rustc_lint/src/early/diagnostics.rs",
"patch": "@@ -187,6 +187,27 @@ pub(super) fn decorate_lint(\n lints::ReservedMultihash { suggestion }.decorate_lint(diag);\n }\n }\n+ BuiltinLintDiag::HiddenUnicodeCodepoints {\n+ label,\n+ ... | 2025-05-14T10:43:39 |
golang/go | ac40c9872f6e8ef095dcc6ee556236782eee4f76 | c8a58f29dcb2b4f38ca4fcf4d2a2a80f606c9573 | reflect: fix _faststr optimization
CL 345486 introduced an optimization to reflect's map accesses
which is not quite correct. We can't use the optimized code if the
value type is >128 bytes.
See cmd/compile/internal/walk/walk.go:mapfast
Fixes #48357
Change-Id: I8e3c7858693083dd4393a8de48ca5fa47bab66f2
Reviewed-on: ... | [
{
"path": "src/reflect/value.go",
"patch": "@@ -1517,7 +1517,7 @@ func (v Value) MapIndex(key Value) Value {\n \t// of unexported fields.\n \n \tvar e unsafe.Pointer\n-\tif key.kind() == String && tt.key.Kind() == String {\n+\tif key.kind() == String && tt.key.Kind() == String && tt.elem.size <= maxValSize ... | 2021-09-13T16:17:22 |
huggingface/transformers | 6a61e16626d26ea209e94a15b9ab3bfff7ba9bc5 | a6393e7d28e652c598ced79f0107f1eff370df1b | Fix missing initialization of `FastSpeech2Conformer` (#39689)
* fix missing initialization of FastSpeech2Conformer
* switch order and reactivate tests
---------
Co-authored-by: Cyril Vallez <cyril.vallez@gmail.com> | [
{
"path": "src/transformers/models/fastspeech2_conformer/modeling_fastspeech2_conformer.py",
"patch": "@@ -966,14 +966,18 @@ class FastSpeech2ConformerPreTrainedModel(PreTrainedModel):\n \n def _init_weights(self, module):\n \"\"\"Initialize the weights\"\"\"\n- if isinstance(module, (nn.... | 2025-07-28T08:47:39 |
rust-lang/rust | a5c16e6cb82d5e5d53e43f9d5f7aeb68c676ddda | 6f7927d9b515344840afe88aab4a0d01c2b995d6 | Make links in coinduction.md clickable
Although they are clickable in the github preview, they aren't in the actual rendered HTML on https://rustc-dev-guide.rust-lang.org/.
This commit fixes that. | [
{
"path": "src/doc/rustc-dev-guide/src/solve/coinduction.md",
"patch": "@@ -237,14 +237,14 @@ Alternatively, we could simply always treat the equate branch of `normalizes_to`\n Any cycles should result in infinite types, which aren't supported anyways and would only\n result in overflow when deeply normaliz... | 2025-05-27T14:43:51 |
nodejs/node | aa0c22c42d3cd7b80bbac850b357d0bd29f15364 | d564347989ab8f361c81cfcb6fe0a76fd91b7ee2 | test: fix arguments order in `assert.strictEqual`
PR-URL: https://github.com/nodejs/node/pull/24612
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Shingo Inoue <leko.noor@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Reviewed-By: Gireesh Punathil... | [
{
"path": "test/parallel/test-http-default-encoding.js",
"patch": "@@ -54,5 +54,5 @@ server.listen(0, function() {\n });\n \n process.on('exit', () => {\n- assert.strictEqual(expected, result);\n+ assert.strictEqual(result, expected);\n });",
"additions": 1,
"deletions": 1,
"language": "JavaSc... | 2018-11-24T07:41:07 |
golang/go | c8a58f29dcb2b4f38ca4fcf4d2a2a80f606c9573 | e74e363a6b3e71ec5a49a3aae8c2523abb72faa7 | cmd/go: add test to check for a potential workspace loading issue
This test checks that we load the same graph regardless of the path to
the requested module in the workspace.
We currently don't. This will be fixed in a future change that redoes
workspace mode's usage of the Requirements structure.
For #45713
Chang... | [
{
"path": "src/cmd/go/testdata/script/work_prune.txt",
"patch": "@@ -0,0 +1,104 @@\n+# This test makes sure workspace mode's handling of the module graph\n+# is compatible with module pruning. The graph we load from either of\n+# the workspace modules should be the same, even if their graphs\n+# don't overl... | 2021-09-08T21:28:09 |
huggingface/transformers | a6393e7d28e652c598ced79f0107f1eff370df1b | 18a7c29ff8431193887e1065777e9cde29d46e53 | fix missing model._tp_size from ep refactor (#39688)
* fix missing model._tp_size from ep refactor
* restore setting device_mesh too | [
{
"path": "src/transformers/integrations/tensor_parallel.py",
"patch": "@@ -1081,6 +1081,8 @@ def verify_tp_plan(expected_keys: list[str], tp_plan: dict[str, str] | None):\n def distribute_model(model, distributed_config, device_mesh, tp_size):\n _plan = \"_tp_plan\"\n model._tp_plan = getattr(model... | 2025-07-26T10:26:36 |
rust-lang/rust | 026baa1c6fb397e9bd2c171d750c939232c13a58 | b5eb9893f42a469d330046089539f908d4728384 | Do not get proc_macro from the sysroot in rustc
With the stage0 refactor the proc_macro version found in the sysroot
will no longer always match the proc_macro version that proc-macros get
compiled with by the rustc executable that uses this proc_macro. This
will cause problems as soon as the ABI of the bridge gets ch... | [
{
"path": "Cargo.lock",
"patch": "@@ -3444,6 +3444,7 @@ dependencies = [\n \"rustc_macros\",\n \"rustc_parse\",\n \"rustc_parse_format\",\n+ \"rustc_proc_macro\",\n \"rustc_session\",\n \"rustc_span\",\n \"rustc_target\",\n@@ -3733,6 +3734,7 @@ dependencies = [\n \"rustc_lint_defs\",\n \"rustc_macro... | 2025-05-27T10:30:47 |
nodejs/node | 14707b681da02ef290a986f7613797a3c7ec1ad5 | afab340e6708a86d8573d44041704873cf558d0e | lib: fix nits in lib/internal/bootstrap/cache.js
* Unwrap short lines.
* Unify comments.
* Decrease function calls.
PR-URL: https://github.com/nodejs/node/pull/24581
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-B... | [
{
"path": "lib/internal/bootstrap/cache.js",
"patch": "@@ -3,15 +3,10 @@\n // This is only exposed for internal build steps and testing purposes.\n // We create new copies of the source and the code cache\n // so the resources eventually used to compile builtin modules\n-// cannot be tampered with even with... | 2018-11-23T18:33:32 |
golang/go | e74e363a6b3e71ec5a49a3aae8c2523abb72faa7 | bced369a50acf50358f52e5c9c0a30d8bdb707ef | strings: add Clone function
The new strings.Clone function copies the input string
without the returned cloned string referencing the
input strings memory.
goarch: amd64
cpu: Intel(R) Core(TM) i5-1038NG7 CPU @ 2.00GHz
name time/op
Clone-8 24.2ns ± 2%
name alloc/op
Clone-8 48.0B ± 0%
name allocs/op
C... | [
{
"path": "src/strings/clone.go",
"patch": "@@ -0,0 +1,23 @@\n+// Copyright 2021 The Go Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style\n+// license that can be found in the LICENSE file.\n+\n+package strings\n+\n+import (\n+\t\"unsafe\"\n+)\n+\n+// Clone returns a fres... | 2021-08-28T15:54:10 |
huggingface/transformers | 97f8c71f52f98ece7d0fdda4438b08c00123270c | d6e9f71a6ef8687500ba1ec2eca8a7ba911dcf3d | Add padding-free to Granite hybrid moe models (#39677)
* start fixing kwarg handling
* fmt
* updates padding free tests
* docs
* add missing kwargs modeling_granitemoe.py
* run modular util
* rm unrelated changes from modular util | [
{
"path": "docs/source/en/model_doc/granitemoehybrid.md",
"patch": "@@ -48,6 +48,32 @@ for i in output:\n \n This HF implementation is contributed by [Sukriti Sharma](https://huggingface.co/SukritiSharma) and [Alexander Brooks](https://huggingface.co/abrooks9944).\n \n+## Notes\n+\n+- `GraniteMoeHybridForCa... | 2025-07-25T18:10:50 |
vercel/next.js | fc10d023666311029dbee679923cd030da63dafa | 7e2d931ffa6a32c8963d426a491813a196991090 | feat(overlay): apply data-* header for the error desc (vercel/turbo#4015)
Partially resolves WEB-671.
There are some test cases use `data-nextjs-dialog-header` to lookup its
inner text to verify error output. Due to differences of error overlay
layout between turbopack / next-dev, those 2 have different inner tex... | [
{
"path": "packages/next-swc/crates/next-core/js/src/overlay/internal/container/RuntimeError.tsx",
"patch": "@@ -255,7 +255,11 @@ export function RuntimeErrorsDialogBody({\n </small>\n </LeftRightDialogHeader>\n </div>\n- <h2 id=\"nextjs__container_errors_desc\" data-severity=\"... | 2023-03-01T01:27:30 |
nodejs/node | e20be47c17e7117091528953d74eb63671c655d6 | 9389b464eaea7e74cf60c1d81c7bf1efda4e8897 | build: replace `-not` with `!` in `find`
Replace `find -not` usage with `find !` as `-not` is not universally
supported.
Fixes: https://github.com/nodejs/node/issues/24634
PR-URL: https://github.com/nodejs/node/pull/24635
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Rev... | [
{
"path": "Makefile",
"patch": "@@ -1084,7 +1084,7 @@ tools/.docmdlintstamp: $(LINT_MD_DOC_FILES)\n LINT_MD_TARGETS = src lib benchmark test tools/doc tools/icu\n LINT_MD_ROOT_DOCS := $(wildcard *.md)\n LINT_MD_MISC_FILES := $(shell find $(LINT_MD_TARGETS) -type f \\\n- -not -path '*node_modules*' -not -pa... | 2018-11-25T05:11:22 |
golang/go | 0d8a4bfc962a606584be0a76ed708f86b44164c7 | 23832ba2e2fb396cda1dacf3e8afcb38ec36dcba | bufio: add Writer.AvailableBuffer
This adds a new Writer.AvailableBuffer method that returns
an empty buffer with a possibly non-empty capacity for use
with append-like APIs.
The typical usage pattern is something like:
b := bw.AvailableBuffer()
b = appendValue(b, v)
bw.Write(b)
It allows logic combining append-l... | [
{
"path": "src/bufio/bufio.go",
"patch": "@@ -633,6 +633,14 @@ func (b *Writer) Flush() error {\n // Available returns how many bytes are unused in the buffer.\n func (b *Writer) Available() int { return len(b.buf) - b.n }\n \n+// AvailableBuffer returns an empty buffer with b.Available() capacity.\n+// Thi... | 2021-08-04T08:22:45 |
huggingface/transformers | d6e9f71a6ef8687500ba1ec2eca8a7ba911dcf3d | 5da6ad27314cc1d3ebd43d7d9dcb373413c93048 | Fix tied weight test (#39680)
Update test_modeling_common.py | [
{
"path": "tests/test_modeling_common.py",
"patch": "@@ -2565,7 +2565,6 @@ def test_load_save_without_tied_weights(self):\n \n def test_tied_weights_keys(self):\n config, _ = self.model_tester.prepare_config_and_inputs_for_common()\n- config.get_text_config().tie_word_embeddings = True\n ... | 2025-07-25T18:09:33 |
vercel/next.js | 8f08dd995279e50df75f4ac8a66b37e11b9a0338 | 897c2420a8aa9a1f517e2d6d20d56a3ba47aa60b | feat(overlay): apply data-* header for the error desc (vercel/turbo#4015)
Partially resolves WEB-671.
There are some test cases use `data-nextjs-dialog-header` to lookup its
inner text to verify error output. Due to differences of error overlay
layout between turbopack / next-dev, those 2 have different inner tex... | [
{
"path": "crates/next-core/js/src/overlay/internal/container/RuntimeError.tsx",
"patch": "@@ -255,7 +255,11 @@ export function RuntimeErrorsDialogBody({\n </small>\n </LeftRightDialogHeader>\n </div>\n- <h2 id=\"nextjs__container_errors_desc\" data-severity=\"error\">\n+ <... | 2023-03-01T01:27:30 |
nodejs/node | 9389b464eaea7e74cf60c1d81c7bf1efda4e8897 | 8c0aa84f854d29ef44485d52c8bddba7a3ce77d0 | net: emit "write after end" errors in the next tick
This commit makes those errors caused by calling
`net.Socket.write()` after sockets ending be emitted in the next
tick.
PR-URL: https://github.com/nodejs/node/pull/24457
Fixes: https://github.com/nodejs/node/issues/24111
Reviewed-By: Anna Henningsen <anna@addaleax.n... | [
{
"path": "lib/net.js",
"patch": "@@ -401,8 +401,7 @@ function writeAfterFIN(chunk, encoding, cb) {\n // eslint-disable-next-line no-restricted-syntax\n var er = new Error('This socket has been ended by the other party');\n er.code = 'EPIPE';\n- // TODO: defer error events consistently everywhere, no... | 2018-11-18T06:56:02 |
rust-lang/rust | a963e6fc386cb91d33ff4ca020ceaf7bf590ee27 | 0fc6f1672bdde8163164f10e46d2d9ffcaeb2161 | tests: mark option-niche-eq as fixed on LLVM 21
Some combination of recent Rust changes (between 3d86494a0d01 and
aa57e46e24a4 from what I can tell) and changes in LLVM 21 (not recently,
as best I can tell) have caused this test to start showing the behavior
we want, so it's time to move this test to a proper place an... | [
{
"path": "tests/codegen/option-niche-eq.rs",
"patch": "@@ -1,5 +1,7 @@\n+//@ revisions: REGULAR LLVM21\n //@ min-llvm-version: 20\n //@ compile-flags: -Copt-level=3 -Zmerge-functions=disabled\n+//@ [LLVM21] min-llvm-version: 21\n #![crate_type = \"lib\"]\n \n extern crate core;\n@@ -74,3 +76,12 @@ pub fn n... | 2025-05-27T14:52:09 |
electron/electron | f8c6056eecf3c343ebdb5a9cb86499db1d1087bf | 03ab9b2686dcabfdfafdae6375bdb525dd51e2a3 | Upgrade brightray, fix #1901 | [
{
"path": "vendor/brightray",
"patch": "@@ -1 +1 @@\n-Subproject commit ae06dded48b7f08d47bb29c798d3cdfd64aa6a81\n+Subproject commit 1cba3a459e9629916655c98716b32ccd1869ef56",
"additions": 1,
"deletions": 1,
"language": "Unknown"
}
] | 2015-06-09T03:09:41 |
golang/go | a50225a0dc1e83449a76b80b2fbed77af516483c | cf2fe5d6f12f075f265ba067869fc5f0e3b23ff0 | bufio: make Reader.Reset and Writer.Reset work on the zero value
For batch allocation reasons, it would be useful to nest a
bufio.Reader or bufio.Writer in a struct as a value,
rather than a pointer. When the Reset method is called,
have it use the default buffer size if the buffer is nil.
Fixes #45374
Change-Id: I8... | [
{
"path": "src/bufio/bufio.go",
"patch": "@@ -68,7 +68,12 @@ func (b *Reader) Size() int { return len(b.buf) }\n \n // Reset discards any buffered data, resets all state, and switches\n // the buffered reader to read from r.\n+// Calling Reset on the zero value of Reader initializes the internal buffer\n+//... | 2021-08-04T07:57:07 |
huggingface/transformers | 5da6ad27314cc1d3ebd43d7d9dcb373413c93048 | c06d4cd6ce870ea353afec8d12678206a7f2ba61 | fix break for ckpt without _tp_plan (#39658)
* fix break for ckpt without _tp_plan
* Update src/transformers/modeling_utils.py
* Update src/transformers/modeling_utils.py
---------
Co-authored-by: wangzhengtao <wangzhengtao@msh.team>
Co-authored-by: Arthur <48595927+ArthurZucker@users.noreply.github.com> | [
{
"path": "src/transformers/modeling_utils.py",
"patch": "@@ -5991,8 +5991,9 @@ def caching_allocator_warmup(model: PreTrainedModel, expanded_device_map: dict,\n if not accelerator_device_map:\n return\n \n+ tp_plan = getattr(model, \"_tp_plan\", []) or []\n tp_plan_regex = (\n- re... | 2025-07-25T18:03:48 |
rust-lang/rust | 871327e9c7a6d44e233b31213858a224451afa74 | c79bbfab78dcb0a72aa3b2bc35c00334b58bfe2e | rustdoc: linking to a local proc macro no longer warns
fixes https://github.com/rust-lang/rust/issues/91274
Co-authored-by: Guillaume Gomez <guillaume1.gomez@gmail.com> | [
{
"path": "src/librustdoc/passes/collect_intra_doc_links.rs",
"patch": "@@ -22,6 +22,7 @@ use rustc_resolve::rustdoc::{\n MalformedGenerics, has_primitive_or_keyword_docs, prepare_to_doc_link_resolution,\n source_span_for_markdown_range, strip_generics_from_path,\n };\n+use rustc_session::config::Cr... | 2025-05-22T22:44:10 |
vercel/next.js | b5f92c444b24c746093ca1be21020c659eeebf01 | 5532b6a93fe1d64c999ba3201cb10cd49315e8f6 | Fix: canonical should allow relative urls (#46584)
alternate urls should allow string type for relative paths
## Bug
Fixes #45824
- [x] Related issues linked using `fixes #number`
- [x] Integration tests added
- [ ] Errors have a helpful link attached, see
[`contributing.md`](https://github.com/vercel/next... | [
{
"path": "packages/next/src/lib/metadata/resolvers/resolve-basics.ts",
"patch": "@@ -51,7 +51,9 @@ export const resolveAlternates: FieldResolverWithMetadataBase<'alternates'> = (\n ) => {\n if (!alternates) return null\n const result: ResolvedAlternateURLs = {\n- canonical: resolveUrl(alternates.can... | 2023-03-01T00:17:08 |
nodejs/node | 7b50258e420e9b724c89200f76217e3bd8bac9c6 | c5db2df32588a954dc8d74eef08da7d57e93a3b2 | test: fix assert.strictEqual
PR-URL: https://github.com/nodejs/node/pull/24619
Reviewed-By: Shingo Inoue <leko.noor@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.c... | [
{
"path": "test/parallel/test-stream-writev.js",
"patch": "@@ -115,7 +115,7 @@ function test(decode, uncork, multi, next) {\n w.on('finish', function() {\n // make sure finish comes after all the write cb\n cnt('finish')();\n- assert.deepStrictEqual(expectChunks, actualChunks);\n+ assert.dee... | 2018-11-24T08:03:30 |
golang/go | c8dfa306babb91e88f8ba25329b3ef8aa11944e1 | 17f62c0ac3de14c3dbff77b706f86dfb7dc820c7 | [dev.fuzz] testing: F.Setenv plus various fixes and revisions
I spent some time looking through all the changes we've made to
testing and cmd/go/... on the dev.fuzz branch. CL 348469 shows those
differences. This CL fixes comments, TODOs, and simplifies code in a
few places. It also implements F.Setenv.
Change-Id: I6... | [
{
"path": "src/cmd/go/internal/cfg/cfg.go",
"patch": "@@ -61,7 +61,7 @@ var (\n func defaultContext() build.Context {\n \tctxt := build.Default\n \n-\t// TODO(b/187972950): remove this tag before merging to master.\n+\t// TODO(#47037): remove this tag before merging to master.\n \tctxt.BuildTags = []string{... | 2021-09-10T17:45:47 |
electron/electron | 64c4a3450762c9986c1604f62f52f92cf2b29ed7 | 418264d42a8b61fc5e26b2bba7f4a3538d65ea55 | Make devtools_web_contents_ is destroyed before everything
The WebContentsDestroyed still access the other members, so if they are
destroyed before the devtools_web_contents_ in the destructor, we will
crash there. | [
{
"path": "brightray/browser/inspectable_web_contents_impl.cc",
"patch": "@@ -159,10 +159,10 @@ void InspectableWebContentsImpl::RegisterPrefs(PrefRegistrySimple* registry) {\n \n InspectableWebContentsImpl::InspectableWebContentsImpl(\n content::WebContents* web_contents)\n- : web_contents_(web_cont... | 2015-06-09T02:41:25 |
huggingface/transformers | c06d4cd6ce870ea353afec8d12678206a7f2ba61 | 3e4d584a5b2b81e11755f47835d86bdc63e744f1 | Add EXAONE 4.0 model (#39129)
* Add EXAONE 4.0 model
* Refactor EXAONE 4.0 modeling code
* Fix cache slicing on SWA + FA2
* Fix cache slicing on FA2 + HybridCache
* Update EXAONE 4.0 modeling code for main branch
* Update o_proj for asymmetric projection
* Address PR feedback
* Add EXAONE 4.0 docs
* Update EXA... | [
{
"path": "docs/source/en/_toctree.yml",
"patch": "@@ -453,6 +453,8 @@\n title: ErnieM\n - local: model_doc/esm\n title: ESM\n+ - local: model_doc/exaone4\n+ title: EXAONE-4.0\n - local: model_doc/falcon\n title: Falcon\n - local: model_doc/falcon3",
... | 2025-07-25T17:58:28 |
rust-lang/rust | 905fc0a008915dff74fed8bf47ec6c3f8fae5899 | 0fc6f1672bdde8163164f10e46d2d9ffcaeb2161 | Make some assertions in solver into debug assertions | [
{
"path": "compiler/rustc_next_trait_solver/src/canonicalizer.rs",
"patch": "@@ -94,8 +94,8 @@ impl<'a, D: SolverDelegate<Interner = I>, I: Interner> Canonicalizer<'a, D, I> {\n } else {\n value\n };\n- assert!(!value.has_infer(), \"unexpected infer in {value:?}\");\n- ... | 2025-05-27T13:44:28 |
vercel/next.js | 5532b6a93fe1d64c999ba3201cb10cd49315e8f6 | 11494c30024c010523bdc7c27b772695c4c37c54 | Fix app client child entry not being disposed when deleting the file (#46583)
Currently if a file or folder (that contains an entry) is renamed in app dir, the dev server will stop working because we never remove the old entry. Since all client entries in app dir are created as child entries programmatically via the R... | [
{
"path": "packages/next/src/build/webpack/plugins/flight-client-entry-plugin.ts",
"patch": "@@ -247,7 +247,7 @@ export class FlightClientEntryPlugin {\n \n // Replace file suffix as `.js` will be added.\n const bundlePath = normalizePathSep(\n- relativeRequest.replace(/\\.(js|ts)x?... | 2023-02-28T23:32:03 |
Subsets and Splits
Assembly Language GitHub Issues
Retrieves a sample of assembly-language related commits with their details, but doesn't provide meaningful analysis or patterns beyond basic filtering.
Swift Compiler Issues Analysis
Retrieves all training data for the Swift programming language repository, providing basic filtering but offering limited analytical insight beyond identifying relevant code examples.