repo
stringclasses
15 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
64.3k
files
listlengths
1
300
timestamp
timestamp[s]date
2013-03-13 20:45:00
2026-04-11 07:48:46
golang/go
867a3d55024b654347fcbc0782a39ecd57d94a27
334a591a3f4d868368913328b3e81ddf5b0f46fa
test: apply GO_TEST_TIMEOUT_SCALE scaling to test timeouts Change run.go to apply the GO_TEST_TIMEOUT_SCALE scaling factor to test timeouts (mentioned in "-t" clause in test header). Also with this patch, bump up the timeout for fixedbugs/issue46234.go from 30 to 45 seconds, to avoid flakes on very slow builders. Up...
[ { "path": "test/fixedbugs/issue46234.go", "patch": "@@ -1,5 +1,6 @@\n-// buildrun -t 30\n+// buildrun -t 45\n \n+//go:build !js\n // +build !js\n \n // Copyright 2021 The Go Authors. All rights reserved.", "additions": 2, "deletions": 1, "language": "Go" }, { "path": "test/run.go", "...
2022-02-02T19:09:26
nodejs/node
fb4d5286b05dd02054ae0e471ab9d3c3b3845381
b5e818197f127b36f18fb0d0481928227b88b053
src: fix off-by-one error in native SetImmediate Previously, the throwing callback would have been re-executed in case of an exception. This patch corrects the calculation to exclude the callback. PR-URL: https://github.com/nodejs/node/pull/28082 Fixes: https://github.com/nodejs/node/issues/26754 Reviewed-By: Michael...
[ { "path": "src/env.cc", "patch": "@@ -641,6 +641,11 @@ void Environment::RunAndClearNativeImmediates() {\n if (!try_catch.HasTerminated())\n FatalException(isolate(), try_catch);\n \n+ // We are done with the current callback. Increase the counter so that\n+ // the st...
2019-06-05T21:27:42
huggingface/transformers
d3ee06b8cb5e45aab51b85aafd54f4b3f7cad2e2
8eef4bbf2b73e717df8348ae7dcba3488c39fc34
FIX Error when trying to load non-LoRA PEFT (#42663) * FIX Error when trying to load non-LoRA PEFT This PR fixes a bug that prevented non-LoRA PEFT adapters to be loaded into a transformers model. A test for this has been added. Additionally, also testing if a non-LoRA adapter can be added to a transformers model. T...
[ { "path": "src/transformers/integrations/peft.py", "patch": "@@ -279,9 +279,6 @@ def load_adapter(\n )\n peft_config.inference_mode = not is_trainable\n \n- if peft_config.peft_type != PeftType.LORA:\n- raise ValueError(\"Hotswapping is currently only supported for ...
2025-12-08T13:54:57
vercel/next.js
cc46d97232d73902453a67bad66f8685ad9efd5e
18b133e6a355e6ad40a2c596601ac151ad5c1356
Update module-path-aliases.md (#43592) <!-- 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 that you're making: --> ## Bug - [ ] Related ...
[ { "path": "docs/02-app/01-building-your-application/06-configuring/04-absolute-imports-and-module-aliases.mdx", "patch": "@@ -130,3 +130,34 @@ export default function HomePage() {\n )\n }\n ```\n+\n+Each of the `\"paths\"` are relative to the `baseUrl` location. For example:\n+\n+```json\n+// tsconfig.jso...
2023-06-14T02:53:17
golang/go
334a591a3f4d868368913328b3e81ddf5b0f46fa
1d6051380c1faa3e515db73c4cfe14f807e2c686
os: don't repeat dir argument in CreateTemp error The dir argument is already in prefix, we shouldn't add it again. Change-Id: I42a158bec3a43950fce24f57b808da3ad8c5ef5b Reviewed-on: https://go-review.googlesource.com/c/go/+/383636 Trust: Ian Lance Taylor <iant@golang.org> Run-TryBot: Ian Lance Taylor <iant@golang.org...
[ { "path": "src/os/tempfile.go", "patch": "@@ -46,7 +46,7 @@ func CreateTemp(dir, pattern string) (*File, error) {\n \t\t\tif try++; try < 10000 {\n \t\t\t\tcontinue\n \t\t\t}\n-\t\t\treturn nil, &PathError{Op: \"createtemp\", Path: dir + string(PathSeparator) + prefix + \"*\" + suffix, Err: ErrExist}\n+\t\t...
2022-02-07T03:34:32
huggingface/transformers
e3ceeafde80b9e00bb3a4685217cfd4cbdeb83c7
5ee9ffe386c5ecc77d8009ab648b8c4c109931ea
[`mRope`] Fix warnings (#42660) fix warning
[ { "path": "src/transformers/models/glm4v/configuration_glm4v.py", "patch": "@@ -234,7 +234,9 @@ def __init__(\n self.attention_dropout = attention_dropout\n self.rope_parameters = rope_parameters\n \n- super().__init__(tie_word_embeddings=tie_word_embeddings, ignore_keys_at_rope_valid...
2025-12-08T12:59:42
nodejs/node
76bf7ee77e7f5926af0729c5465bd98d8830f0e5
b245257b70750bdc52a8c315de4b10965dacfed6
doc,n-api: fix typo PR-URL: https://github.com/nodejs/node/pull/28178 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Revi...
[ { "path": "doc/api/n-api.md", "patch": "@@ -145,7 +145,7 @@ available to the module code.\n \n ## N-API Version Matrix\n \n-N-API versions are additive and versioned independantly from Node.js.\n+N-API versions are additive and versioned independently from Node.js.\n Version 4 is an extension to version 3 i...
2019-06-11T15:52:35
vercel/next.js
18b133e6a355e6ad40a2c596601ac151ad5c1356
0bda6287b638f49345bb31480acea8c73207246f
docs: fixed a typo in parallel routes (#51267) `allow` => `allows`
[ { "path": "docs/02-app/01-building-your-application/01-routing/08-parallel-routes.mdx", "patch": "@@ -25,7 +25,7 @@ Parallel Routing allows you to define independent error and loading states for e\n height=\"1218\"\n />\n \n-Parallel Routing also allow you to conditionally render a slot based on certain c...
2023-06-14T02:45:48
golang/go
aadbfc30afe7be3bc8d90e8267e7c9ca2dff95f4
f1903fd4ecbf7a1e524bf71ddecb8650b9d2ea9f
go/types, types2: always use missingMethodReason in checker.Implements Remove special case where we don't have a *Checker and always use Checker.missingMethodReason in Checker.implements. Look for zero methods rather than empty interface to exit early from Checker.missingMethod, and remove the extra test in Checker.i...
[ { "path": "src/cmd/compile/internal/types2/errors.go", "patch": "@@ -167,8 +167,13 @@ func (check *Checker) markImports(pkg *Package) {\n \t}\n }\n \n+// check may be nil.\n func (check *Checker) sprintf(format string, args ...interface{}) string {\n-\treturn sprintf(check.qualifier, false, format, args...)...
2022-02-04T00:07:28
huggingface/transformers
ba1ad5359394c6dab864d5fb56658f35516c5fa5
ca1698ef52b516ec9133b8be922fad772486541a
Use hfh's is_offline_mode helper (#42657) * Use hfh's is_offline_mode helper * fix tests
[ { "path": "examples/pytorch/summarization/run_summarization.py", "patch": "@@ -45,6 +45,7 @@\n import numpy as np\n from datasets import load_dataset\n from filelock import FileLock\n+from huggingface_hub import is_offline_mode\n \n import transformers\n from transformers import (\n@@ -61,7 +62,7 @@\n S...
2025-12-08T09:24:59
electron/electron
7d4e0629d67f831bdeb834486d327842e0418675
ae0d007c5e4060af55724bae36a704bd5a14ca35
Fix the link error
[ { "path": "script/lib/config.py", "patch": "@@ -8,7 +8,7 @@\n \n BASE_URL = os.getenv('LIBCHROMIUMCONTENT_MIRROR') or \\\n 'https://s3.amazonaws.com/github-janky-artifacts/libchromiumcontent'\n-LIBCHROMIUMCONTENT_COMMIT = '2da28b049031082ab9f76ac7f331276a5fa6ab46'\n+LIBCHROMIUMCONTENT_COMMIT = '1a4c5e51...
2016-04-14T09:22:29
nodejs/node
4b1bcae681e209984604341f2acfe722345b1b23
43a51708589ac789ce08beaeb49d6d778dfbdc49
build,win: delegate lint-cpp to make * look for GNU Make in the Path or use wsl PR-URL: https://github.com/nodejs/node/pull/28102 Fixes: https://github.com/nodejs/node/issues/28086 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: João Reis <reis@janeasystems.com>
[ { "path": "vcbuild.bat", "patch": "@@ -593,51 +593,17 @@ goto lint-cpp\n \n :lint-cpp\n if not defined lint_cpp goto lint-js\n-call :run-lint-cpp src\\*.c src\\*.cc src\\*.h test\\addons\\*.cc test\\addons\\*.h test\\js-native-api\\*.cc test\\js-native-api\\*.cc test\\js-native-api\\*.h test\\node-api\\*.cc...
2019-06-06T16:16:08
vercel/next.js
0bda6287b638f49345bb31480acea8c73207246f
691598ecee1b832373df9aa9d6c0c30f2048d77a
fix(cli): add all available options to cli commands, format them consistently (#48708) ### What? Add all available options to cli commands Consistent formatting for all options ### Why? Options were not consistent across all commands, some were missing Co-authored-by: Steven <229881+styfle@users.noreply.github.com...
[ { "path": "errors/invalid-i18n-config.md", "patch": "@@ -1,6 +1,6 @@\n # Invalid i18n config\n \n-#### Why This Error\n+#### Why This Error Occurred\n \n In your `next.config.js` file you provided an invalid config for the `i18n` field. This could mean the limit for 100 locale items was exceeded.\n ", "...
2023-06-14T02:36:08
huggingface/transformers
ca1698ef52b516ec9133b8be922fad772486541a
81b84175e2d9e69da042cd3160b60464e95de18e
[Quantization] Fix FP8 experts replacing (#42654) small fix Co-authored-by: Marc Sun <57196510+SunMarc@users.noreply.github.com>
[ { "path": "src/transformers/integrations/finegrained_fp8.py", "patch": "@@ -606,7 +606,7 @@ def replace_with_fp8_linear(\n module_kwargs = {} if pre_quantized else {\"dtype\": None}\n new_module = None\n with init_empty_weights():\n- if \"gate_up_proj\" in module_name or \...
2025-12-08T09:20:55
golang/go
f1903fd4ecbf7a1e524bf71ddecb8650b9d2ea9f
ef843ae49c8a8ad6494da294fc46b0e80147e715
go/types, types2: simplify Checker.typeAssertion, use same code in both type checkers - Remove the xtyp argument from the Checker.typeAssertion parameter list; it was confusing and not needed. Adjusted call sites. - Simplify logic in Checker.typeAssertion. - Use the same code in both types2 and go/types, specifica...
[ { "path": "src/cmd/compile/internal/types2/expr.go", "patch": "@@ -1578,8 +1578,7 @@ func (check *Checker) exprInternal(x *operand, e syntax.Expr, hint Type) exprKin\n \t\t\tcheck.errorf(x, invalidOp+\"cannot use type assertion on type parameter value %s\", x)\n \t\t\tgoto Error\n \t\t}\n-\t\txtyp, _ := und...
2022-02-03T23:03:02
nodejs/node
43a51708589ac789ce08beaeb49d6d778dfbdc49
d74dc17afe883128f7e7163785570861c6571757
domain: error handler runs outside of its domain Before this change, domains' error handlers would run with the corresponding domain as the active domain. This creates the possibility for domains' error handlers to call themselves recursively if an event emitter created in the error handler emits an error, or if the e...
[ { "path": "lib/domain.js", "patch": "@@ -132,7 +132,7 @@ function topLevelDomainCallback(cb, ...args) {\n \n // It's possible to enter one domain while already inside\n // another one. The stack is each entered domain.\n-const stack = [];\n+let stack = [];\n exports._stack = stack;\n internalBinding('domain...
2019-02-19T22:29:31
vercel/next.js
691598ecee1b832373df9aa9d6c0c30f2048d77a
99142b5897efa207ff42af31bbde278ac71de149
Fix middleware documentation (#48876) In the actual documentation, `value` does not exist. I removed `value` and work correctly <!-- 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. Ch...
[ { "path": "docs/02-app/01-building-your-application/01-routing/11-middleware.mdx", "patch": "@@ -140,8 +140,8 @@ import type { NextRequest } from 'next/server'\n export function middleware(request: NextRequest) {\n // Assume a \"Cookie:nextjs=fast\" header to be present on the incoming request\n // Gett...
2023-06-14T02:18:11
rust-lang/rust
9eb85122558fd7c3a8909939f9cbe4d0f15d73f3
0732085b436ef3d9a88a2ca8e8354d8eb8bc5d4d
fix: `std-instead-of-core` FP when not all items come from the new crate
[ { "path": "clippy_lints/src/std_instead_of_core.rs", "patch": "@@ -1,10 +1,10 @@\n use clippy_config::Conf;\n-use clippy_utils::diagnostics::span_lint_and_sugg;\n+use clippy_utils::diagnostics::{span_lint_and_help, span_lint_and_sugg};\n use clippy_utils::is_from_proc_macro;\n use clippy_utils::msrvs::Msrv;...
2025-06-28T17:13:17
huggingface/transformers
ff13eb668aa03f151ded71636d723f2e490ad967
e3673ed42936e4597074e98ba017fcaab3d4a8eb
Lasr model (#42648) * nit on dac! * first commit * fixes * passing all API tests * nit * update * test update * make style * make * fixes * fix * test update * return attention mask by default * doc update * make * make * fix
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -901,6 +901,8 @@\n title: Hubert\n - local: model_doc/kyutai_speech_to_text\n title: Kyutai Speech-To-Text\n+ - local: model_doc/lasr\n+ title: LASR\n - local: model_doc/mimi\n title: Mimi\n - local: ...
2025-12-05T19:14:35
golang/go
ef843ae49c8a8ad6494da294fc46b0e80147e715
d9eba71a643f31e509dd08884509c5b2c1ab26a4
go/types, types2: simplify missingMethodReason Added a funcString helper so we don't need to rewrite strings with strings.Replace. Use compiler format for error message about wrong method type; this removes another unnecessary variation. Simplify conditions for pointer-to-interface related error: if one of the invol...
[ { "path": "src/cmd/compile/internal/types2/lookup.go", "patch": "@@ -7,6 +7,7 @@\n package types2\n \n import (\n+\t\"bytes\"\n \t\"strings\"\n )\n \n@@ -364,48 +365,40 @@ func (check *Checker) missingMethod(V Type, T *Interface, static bool) (method,\n \n // missingMethodReason returns a string giving the ...
2022-02-03T05:36:50
nodejs/node
0640526303bbe9c41801e2ad795f9cccb29f1fa4
25399e4c9cea290e0bb061b0208cb4e9e5e17642
worker: make MessagePort constructor non-callable Refactor the C++ code for creating `MessagePort`s to skip calling the constructor and instead directly instantiating the `InstanceTemplate`, and always throw an error from the `MessagePort` constructor. This aligns behaviour with the web, and creating single `MessageP...
[ { "path": "doc/api/errors.md", "patch": "@@ -703,6 +703,14 @@ non-writable `stdout` or `stderr` stream.\n \n A constructor for a class was called without `new`.\n \n+<a id=\"ERR_CONSTRUCT_CALL_INVALID\"></a>\n+### ERR_CONSTRUCT_CALL_INVALID\n+<!--\n+added: REPLACEME\n+-->\n+\n+A class constructor was called...
2019-06-02T17:42:22
vercel/next.js
0f03ef14f0088eaf869f4ae5d6a7272dc7f9eb54
d27a4969f61bc1db2f6f56d7b0cf2b73cfa56552
chore(docs): codemod docs should mention `.` for cwd (#51264) These docs were wrong because `./pages` is not sufficient to run a codemod. Imagine a project that has `./components` and `./pages` and many directories for example. Also its important to run at the root of the Next.js project so that the path has ...
[ { "path": "docs/02-app/01-building-your-application/08-upgrading/01-codemods.mdx", "patch": "@@ -31,7 +31,7 @@ Replacing `<transform>` and `<path>` with appropriate values.\n ##### `built-in-next-font`\n \n ```bash filename=\"Terminal\"\n-npx @next/codemod@latest built-in-next-font\n+npx @next/codemod@lates...
2023-06-13T21:44:53
rust-lang/rust
57a5e3b6d29b31f9af7afbeacde90cf131a23d43
d22ce4c5eb40d718a1465967acfb8cee38e3aec8
Fix duplicate errors for `link_section`, `rustc_layout_scalar_valid_range_start` and `rustc_layout_scalar_valid_range_end`
[ { "path": "compiler/rustc_parse/src/validate_attr.rs", "patch": "@@ -305,6 +305,9 @@ fn emit_malformed_attribute(\n | sym::link_name\n | sym::export_name\n | sym::rustc_macro_transparency\n+ | sym::link_section\n+ | sym::rustc_layout_scalar_valid_ran...
2025-07-01T14:12:17
huggingface/transformers
e3673ed42936e4597074e98ba017fcaab3d4a8eb
1d86d00ec3c9de948cf7d60e8d7d845560c8b8d1
[docs] Attention backends + continuous batching (#42329) * attention * continuous batching * fix import * feedback * link to blog post * feedback * fix import
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -23,8 +23,6 @@\n title: Legacy model contribution\n - local: auto_docstring\n title: Documenting a model\n- - local: attention_interface\n- title: Customizing attention function\n title: Models\n - sections:\n - local: f...
2025-12-05T19:02:22
golang/go
d9eba71a643f31e509dd08884509c5b2c1ab26a4
727790a2fda02e75844ce91320c05fd2bf1f431d
go/types, types2: fix bug in types2.MissingMethod Because Checker.missingMethod also looks up methods matching matching case-folded names, when Checker.missingMethod returns an alternative method, that method does not automatically have the wrong type. It may be a method with a different name. Adjust types2.MissingMe...
[ { "path": "src/cmd/compile/internal/types2/api_test.go", "patch": "@@ -2369,3 +2369,61 @@ type Bad Bad // invalid type\n \t\t}\n \t}\n }\n+\n+func TestMissingMethodAlternative(t *testing.T) {\n+\tconst src = `\n+package p\n+type T interface {\n+\tm()\n+}\n+\n+type V0 struct{}\n+func (V0) m() {}\n+\n+type V1...
2022-02-03T00:31:26
electron/electron
de60acbfdeb98531c6057f714adc931c44e4c887
2f107fcbe15a68bc97e8ed841a3619d27f050cb2
Fix race initialising DevtoolsNetworkController
[ { "path": "brightray/browser/browser_context.cc", "patch": "@@ -141,7 +141,7 @@ net::URLRequestContextGetter* BrowserContext::CreateRequestContext(\n DCHECK(!url_request_getter_.get());\n url_request_getter_ = new URLRequestContextGetter(\n this,\n- GetDevToolsNetworkController(),\n+ net...
2016-04-14T01:29:14
rust-lang/rust
d22ce4c5eb40d718a1465967acfb8cee38e3aec8
0b67d14b31aefa8a2bf8e336ee4f029e046dd545
Fix duplicate help on export_name and others Signed-off-by: Jonathan Brouwer <jonathantbrouwer@gmail.com>
[ { "path": "compiler/rustc_attr_parsing/src/session_diagnostics.rs", "patch": "@@ -577,10 +577,7 @@ impl<'a, G: EmissionGuarantee> Diagnostic<'a, G> for AttributeParseError {\n diag.code(E0565);\n }\n AttributeParseErrorReason::ExpectedNameValue(None) => {\n- ...
2025-06-29T10:40:30
nodejs/node
5872705796d89d48bc4bf5f0b35678b0bd148ec2
0f900405e52061136f7b5d69e6f2453309064c8a
src: restore stdio on program exit Record the state of the stdio file descriptors on start-up and restore them to that state on exit. This should prevent issues where node.js sometimes leaves stdio in raw or non-blocking mode. This is a reworked version of commit c2c9c0c3d3 from May 2018 that was reverted in commit ...
[ { "path": "src/node.cc", "patch": "@@ -108,6 +108,7 @@\n #else\n #include <pthread.h>\n #include <sys/resource.h> // getrlimit, setrlimit\n+#include <termios.h> // tcgetattr, tcsetattr\n #include <unistd.h> // STDIN_FILENO, STDERR_FILENO\n #endif\n \n@@ -194,7 +195,7 @@ void WaitForInspectorDi...
2019-05-24T14:11:19
vercel/next.js
d27a4969f61bc1db2f6f56d7b0cf2b73cfa56552
94accfacf1070e2e412d3b9348f8a65b5fb9f977
Fix code example filename for related-links (#51256)
[ { "path": "docs/05-community/01-contribution-guide.mdx", "patch": "@@ -131,11 +131,11 @@ The following fields are **optional**:\n ```yaml filename=\"optional-fields.mdx\"\n ---\n nav_title: Nav Item Title\n-source: /app/building-your-application/optimizing/images\n+source: app/building-your-application/opti...
2023-06-13T18:36:41
huggingface/transformers
1d86d00ec3c9de948cf7d60e8d7d845560c8b8d1
fccb04998af44166524c2a7cfe0d946b99aef497
[loading] Correctly load params during offloading & careful memory considerations (#42632) * do not load everything in advance * fix * fix * fix * fix * fix memory leaks during conversion * oupsi * fix device_map * add doc * fix * doc * make it a method * doc * first shot at test * fix test * fix * rev...
[ { "path": "src/transformers/core_model_loading.py", "patch": "@@ -20,7 +20,7 @@\n import re\n from abc import abstractmethod\n from collections import defaultdict\n-from collections.abc import MutableMapping, MutableSet\n+from collections.abc import Callable, MutableMapping, MutableSet\n from concurrent.fut...
2025-12-05T17:33:51
electron/electron
cb2343c69eb36ef3ada3d5b4434d8d6642554747
c3ac92b500aceb382f4e175fe81a9696b7677dbc
Update process.md translation error, change "实效" to “失效".
[ { "path": "docs-translations/zh-CN/api/process.md", "patch": "@@ -31,7 +31,7 @@ process.once('loaded', function() {\n \n ### `process.noAsar`\n \n-设置它为 `true` 可以使 `asar` 文件在node的内置模块中实效.\n+设置它为 `true` 可以使 `asar` 文件在node的内置模块中失效.\n \n ## 方法\n \n@@ -45,4 +45,4 @@ process.once('loaded', function() {\n \n * `ma...
2016-04-14T02:08:01
golang/go
727790a2fda02e75844ce91320c05fd2bf1f431d
d5bd3f9a6c3833d0c12ec45e1c73f8adf32ee2dd
go/types, types2: remove superflous type parameter length checks There is no need to check for length equality of type parameter lists in Checker.missingMethod: the Identical predicate does this check. Furthermore, we don't have methods with their own type parameters. Remove the unnecessary (duplicate) code. Also, up...
[ { "path": "src/cmd/compile/internal/types2/lookup.go", "patch": "@@ -285,28 +285,21 @@ func MissingMethod(V Type, T *Interface, static bool) (method *Func, wrongType b\n \treturn m, typ != nil\n }\n \n-// If we accept type parameters for methods, (at least) the code\n-// guarded with this constant will need...
2022-02-02T23:04:58
huggingface/transformers
4ad279fb981ea341a09c04a5239e862fb33262cb
01267073bc5393cb8d1c21ffd2816b803705cc74
Fixing typo in documentation (philosophy) (#42647) Just a small typo fix in philosphy.md: out current, stable principles. -> our current, stable principles.
[ { "path": "docs/source/en/philosophy.md", "patch": "@@ -21,7 +21,7 @@ Transformers is a PyTorch-first library. It provides models that are faithful to\n A longer, in-depth article with examples, visualizations and timelines is available [here](https://huggingface.co/spaces/transformers-community/Transformer...
2025-12-05T14:49:49
rust-lang/rust
0b67d14b31aefa8a2bf8e336ee4f029e046dd545
149bdde97e65779b126ec1ae6bcbe152fd90f856
Fix `#[rustc_macro_transparency]` giving two errors Signed-off-by: Jonathan Brouwer <jonathantbrouwer@gmail.com>
[ { "path": "compiler/rustc_parse/src/validate_attr.rs", "patch": "@@ -304,6 +304,7 @@ fn emit_malformed_attribute(\n | sym::track_caller\n | sym::link_name\n | sym::export_name\n+ | sym::rustc_macro_transparency\n ) {\n return;\n }", "additio...
2025-06-29T09:35:31
vercel/next.js
94accfacf1070e2e412d3b9348f8a65b5fb9f977
6431b19906b8937b71ea5f03d8802f16aca93ad0
Adds homepage to `eslint-config-next` package (#51059) Fixes (partially) #50843. --------- Co-authored-by: Steven <steven@ceriously.com> Co-authored-by: JJ Kasper <jj@jjsweb.site>
[ { "path": "packages/eslint-config-next/package.json", "patch": "@@ -8,6 +8,7 @@\n \"url\": \"vercel/next.js\",\n \"directory\": \"packages/eslint-config-next\"\n },\n+ \"homepage\": \"https://nextjs.org/docs/app/building-your-application/configuring/eslint#eslint-config\",\n \"dependencies\": {...
2023-06-13T18:22:05
nodejs/node
0f900405e52061136f7b5d69e6f2453309064c8a
1a0fd6027759296e66b691f9c4e841c69b8eb995
doc: update assert's validation functions Using `assert.throws()` or `assert.rejects()` in combination with validation function can be very powerful. Using them by returning any value besides `true` makes debugging very difficult though because there's no context or reason why the error validation failed. Thus, it is ...
[ { "path": "doc/api/assert.md", "patch": "@@ -1210,10 +1210,14 @@ assert.throws(\n () => {\n throw new Error('Wrong value');\n },\n- function(err) {\n- if ((err instanceof Error) && /value/.test(err)) {\n- return true;\n- }\n+ (err) => {\n+ assert(err instanceof Error);\n+ assert(/...
2019-05-19T22:30:45
golang/go
d5bd3f9a6c3833d0c12ec45e1c73f8adf32ee2dd
63e833154c230e9f46b41f913b12d3c72912cabc
go/types, types2: use same method lookup code in both type checkers types2 has some code to handle case-folding when doing method lookups which was missing in go/types. This change is a first step to match the implementations. Specifically: In types2: - remove the lookupMethodFold names in favor of just lookupMethod,...
[ { "path": "src/cmd/compile/internal/types2/lookup.go", "patch": "@@ -55,23 +55,23 @@ func LookupFieldOrMethod(T Type, addressable bool, pkg *Package, name string) (o\n \t// not have found it for T (see also issue 8590).\n \tif t, _ := T.(*Named); t != nil {\n \t\tif p, _ := t.Underlying().(*Pointer); p != n...
2022-02-02T21:18:56
electron/electron
3c6e9332315c94b933c63271059224bf7cb571d9
f403950503eb82bcfa230b13a909572beff75fc0
:memo: Add Debugging Instructions for Windows Ref #5140
[ { "path": "docs/README.md", "patch": "@@ -89,4 +89,5 @@ an issue:\n * [Build Instructions (OS X)](development/build-instructions-osx.md)\n * [Build Instructions (Windows)](development/build-instructions-windows.md)\n * [Build Instructions (Linux)](development/build-instructions-linux.md)\n+* [Debug Instruct...
2016-04-13T22:39:05
rust-lang/rust
149bdde97e65779b126ec1ae6bcbe152fd90f856
86b54d5729f019d5e2c5acff4ddfddbd7af2fde3
Fix `#[must_use = 1]` not giving an error Signed-off-by: Jonathan Brouwer <jonathantbrouwer@gmail.com>
[ { "path": "compiler/rustc_attr_parsing/src/attributes/must_use.rs", "patch": "@@ -21,7 +21,16 @@ impl<S: Stage> SingleAttributeParser<S> for MustUseParser {\n span: cx.attr_span,\n reason: match args {\n ArgParser::NoArgs => None,\n- ArgParser::NameValu...
2025-06-29T09:34:29
huggingface/transformers
01267073bc5393cb8d1c21ffd2816b803705cc74
626875b65f8c9ff9366f7522193a10df8b99d950
small cleaning of quantization class (#42633) * small cleaning * fix * Apply suggestions from code review Co-authored-by: Mohamed Mekkouri <93391238+MekkCyber@users.noreply.github.com> --------- Co-authored-by: Mohamed Mekkouri <93391238+MekkCyber@users.noreply.github.com>
[ { "path": "docs/source/en/quantization/contribute.md", "patch": "@@ -46,26 +46,30 @@ Some quantization methods may require \"pre-quantizing\" the model through data ca\n \n ## Create new HFQuantizer class\n \n+0. The best starting point would be to have a look at another quantization method such as Finegrai...
2025-12-05T14:48:51
vercel/next.js
6431b19906b8937b71ea5f03d8802f16aca93ad0
8a0686e28db3f782b59cfec90b347fc65a9568d6
Fix broken link (#51253) Fix broken link in client-side rendering page
[ { "path": "docs/03-pages/01-building-your-application/02-rendering/05-client-side-rendering.mdx", "patch": "@@ -7,7 +7,7 @@ related:\n - pages/building-your-application/rendering/server-side-rendering\n - pages/building-your-application/rendering/static-site-generation\n - pages/building-your-ap...
2023-06-13T18:08:19
nodejs/node
1a0fd6027759296e66b691f9c4e841c69b8eb995
4a3af65a88122307a86b28bf385b8f87767803e6
assert: add partial support for evaluated code in simple assert This makes sure using `assert.ok()` in `new Function()` statements visualizes the actual call site in the error message. PR-URL: https://github.com/nodejs/node/pull/27781 Reviewed-By: Rich Trott <rtrott@gmail.com>
[ { "path": "lib/assert.js", "patch": "@@ -269,24 +269,31 @@ function getErrMessage(message, fn) {\n Error.prepareStackTrace = tmpPrepare;\n \n const filename = call.getFileName();\n-\n- if (!filename) {\n- return message;\n- }\n-\n const line = call.getLineNumber() - 1;\n let column = call.getCo...
2019-05-20T10:56:21
huggingface/transformers
626875b65f8c9ff9366f7522193a10df8b99d950
28906c3c25cf7cc2fa6bc6ff261f6170ea79b508
[kernels] fix typing for Kernel mapping (#42623) * fix * fix
[ { "path": "src/transformers/integrations/hub_kernels.py", "patch": "@@ -78,7 +78,7 @@ def use_kernel_func_from_hub(func_name: str):\n )\n return lambda func: func\n \n- _KERNEL_MAPPING: dict[str, dict[Device | str, LayerRepository]] = {\n+ _KERNEL_MAPPING: dict[str, dict[De...
2025-12-05T14:30:27
electron/electron
8f0e594007b805b0641eeb57a89ac50aa0de4653
43c44da50bb2e0bf38a0c6af632533e14baef525
Fix lint warnings
[ { "path": "lib/browser/api/browser-window.js", "patch": "@@ -82,7 +82,7 @@ BrowserWindow.prototype._init = function () {\n let isVisible = this.isVisible() && !this.isMinimized()\n let visibilityChanged = () => {\n let newState = this.isVisible() && !this.isMinimized()\n- if (isVisible != newStat...
2016-04-13T14:10:31
golang/go
63e833154c230e9f46b41f913b12d3c72912cabc
e052044d6b25a76603cafbfb1099cf4196528556
go/types, types2: better error messages for expression switches Fixes #50965. Change-Id: I61a74bdb46cf5e72ab94dbe8bd114704282b6211 Reviewed-on: https://go-review.googlesource.com/c/go/+/382354 Trust: Robert Griesemer <gri@golang.org> Reviewed-by: Robert Findley <rfindley@google.com>
[ { "path": "src/cmd/compile/internal/types2/expr.go", "patch": "@@ -878,15 +878,14 @@ Error:\n \t\t\tcause = check.sprintf(\"operator %s not defined on %s\", op, check.kindString(errOp.typ)) // catch-all\n \t\t}\n \t}\n-\t// For switches, report errors on the first (case) operand.\n-\t// TODO(gri) adjust err...
2022-02-02T05:43:00
rust-lang/rust
86b54d5729f019d5e2c5acff4ddfddbd7af2fde3
0fcf295b64693e39e53507e8385ae61f790a45fd
Fix double error for `export_name` Signed-off-by: Jonathan Brouwer <jonathantbrouwer@gmail.com>
[ { "path": "compiler/rustc_parse/src/validate_attr.rs", "patch": "@@ -303,6 +303,7 @@ fn emit_malformed_attribute(\n | sym::must_use\n | sym::track_caller\n | sym::link_name\n+ | sym::export_name\n ) {\n return;\n }", "additions": 1, "del...
2025-06-29T09:30:47
vercel/next.js
bfbfa872fe5fab3dfde2d906160059487fa4bf1d
e048f4ef037d7eaff765adb2867d219a43a333d9
ci(workflow): skip test trace upload when test skips (#51190) <!-- 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: ## F...
[ { "path": ".github/workflows/build_and_test.yml", "patch": "@@ -184,24 +184,11 @@ jobs:\n \n report-test-results:\n needs: ['test-dev', 'test-prod', 'test-integration', 'test-turbopack-dev']\n- runs-on: [self-hosted, linux, x64]\n- name: upload test trace to datadog\n- # We'll not block the C...
2023-06-13T15:06:15
nodejs/node
4a3af65a88122307a86b28bf385b8f87767803e6
81496567e76006a7d07a8552215fc6333c183480
assert: improve regular expression validation This makes sure `assert.throws()` and `assert.rejects()` result in an easy to understand error message instead of rethrowing the actual error. This should significantly improve the debugging experience in case people use an regular expression to validate their errors. Thi...
[ { "path": "lib/assert.js", "patch": "@@ -549,30 +549,38 @@ function compareExceptionKey(actual, expected, key, message, keys, fn) {\n }\n }\n \n-function expectedException(actual, expected, msg, fn) {\n+function expectedException(actual, expected, message, fn) {\n if (typeof expected !== 'function') {\n...
2019-05-19T21:23:18
huggingface/transformers
28906c3c25cf7cc2fa6bc6ff261f6170ea79b508
e5aad213628b356674e9f36078f88ae5feaf1619
Compress (#42643) * fix compressed tensor tests Signed-off-by: jiqing-feng <jiqing.feng@intel.com> * update Signed-off-by: jiqing-feng <jiqing.feng@intel.com> * update comment Signed-off-by: jiqing-feng <jiqing.feng@intel.com> * format Signed-off-by: jiqing-feng <jiqing.feng@intel.com> --------- Signed-off-by...
[ { "path": "tests/quantization/compressed_tensors_integration/test_compressed_models.py", "patch": "@@ -80,7 +80,9 @@ def _has_nested_attr(obj, attr_path):\n if comp_decomp_obj is not None and hasattr(submodule, \"weight\"):\n if \"sparse-only\" in uncompressed_mod...
2025-12-05T14:28:57
rust-lang/rust
8fdf0ef0ae32369a6fe82b2ef69b1f5e5dc68be1
aa7cc5d2f453853a4025cf029f3e42625c7e1e18
loop match: handle opaque patterns fixes issue 143203
[ { "path": "compiler/rustc_mir_build/src/builder/matches/mod.rs", "patch": "@@ -2970,6 +2970,9 @@ impl<'a, 'tcx> Builder<'a, 'tcx> {\n }\n Constructor::Wildcard => true,\n \n+ // Opaque patterns must not be matched on structurally.\n+ Constructor::Opaque(_) => fa...
2025-07-01T09:48:42
golang/go
e052044d6b25a76603cafbfb1099cf4196528556
f9763a648bbe4468118b95e147bc5e81268d0341
go/types, types2: better error messages for comparisons Refactor Checker.comparison such that its logic is easier to reason about and so that special cases can be handled more directly. Use the appropriate operand (of 1st or 2nd operand) for error reporting (position and type), rather than always using the first oper...
[ { "path": "src/cmd/compile/internal/types2/expr.go", "patch": "@@ -770,52 +770,82 @@ func (check *Checker) implicitTypeAndValue(x *operand, target Type) (Type, const\n \treturn target, nil, 0\n }\n \n-func (check *Checker) comparison(x, y *operand, op syntax.Operator) {\n+// If switchCase is true, the opera...
2022-02-01T05:25:14
huggingface/transformers
e5aad213628b356674e9f36078f88ae5feaf1619
20890e3b901b264ffa2a5c31b4c26304bc3a5e61
Fix saving multiple tokenizers for custom processors (#42630) fix saving multiple tokenizers for custom processors
[ { "path": "src/transformers/processing_utils.py", "patch": "@@ -696,14 +696,10 @@ def to_dict(self) -> dict[str, Any]:\n # extra attributes to be kept\n attrs_to_save += [\"auto_map\"]\n \n- if \"tokenizer\" in output:\n- del output[\"tokenizer\"]\n- if \"qformer_tok...
2025-12-05T14:21:19
vercel/next.js
e048f4ef037d7eaff765adb2867d219a43a333d9
0840793abfb4a4b2e56c91a6c57c8b539b6997a6
[Docs] Recommend `prettier-fix` in PR template and contribution guide (#51237) Recommend running `prettier-fix` before opening docs PRs to fix formatting issues. I've found that `lint-fix` is currently not fixing formatting issues. Related: https://vercel.slack.com/archives/C03S9JCH2Q5/p1686647582580629
[ { "path": ".github/pull_request_template.md", "patch": "@@ -6,6 +6,7 @@ Choose the right checklist for the change(s) that you're making:\n \n ### Improving Documentation\n \n+- Run `pnpm prettier-fix` to fix formatting issues before opening the PR.\n - Read the Docs Contribution Guide to ensure your contrib...
2023-06-13T14:54:06
nodejs/node
81496567e76006a7d07a8552215fc6333c183480
e4ec4f2656f14d3992da154c46f6c0c44025f30d
assert: print more lines in the error diff So far consequitive identical lines were collapsed if there were at least three. Now they are only collapsed from five identical lines on. This also simplifies the implementation a tiny bit by abstracting some logic. PR-URL: https://github.com/nodejs/node/pull/28058 Reviewe...
[ { "path": "lib/internal/assert/assertion_error.js", "patch": "@@ -122,7 +122,7 @@ function createErrDiff(actual, expected, operator) {\n let a = actualLines[actualLines.length - 1];\n let b = expectedLines[expectedLines.length - 1];\n while (a === b) {\n- if (i++ < 2) {\n+ if (i++ < 3) {\n ...
2019-06-03T14:05:37
electron/electron
0a39449694cf874c92a04d0b634d2dfe0627ac48
92882c358a0cdf091059a8cec98a00762f368c17
spec: loadUrl should not crash in did-fail-provisional-load handler
[ { "path": "spec/api-browser-window-spec.js", "patch": "@@ -153,6 +153,14 @@ describe('browser-window module', function () {\n })\n w.loadURL('file://' + path.join(fixtures, 'api', 'did-fail-load-iframe.html'))\n })\n+\n+ it('does not crash in did-fail-provisional-load handler', function (...
2016-04-13T10:39:11
golang/go
f9763a648bbe4468118b95e147bc5e81268d0341
56a539724809122ecee26acddc3b8a7b775afed6
internal/fuzz: change meaning of "total" in output Fixes #51023 Change-Id: I7dd9f7c696e15ba9c6c887d4c4e0f4d281a82b17 Reviewed-on: https://go-review.googlesource.com/c/go/+/383414 Trust: Katie Hockman <katie@golang.org> Reviewed-by: Roland Shoemaker <roland@golang.org> Reviewed-by: Bryan Mills <bcmills@google.com> Run...
[ { "path": "src/internal/fuzz/fuzz.go", "patch": "@@ -597,7 +597,7 @@ type coordinator struct {\n \n \t// interestingCount is the number of unique interesting values which have\n \t// been found this execution.\n-\tinterestingCount int64\n+\tinterestingCount int\n \n \t// warmupInputCount is the count of all...
2022-02-04T22:02:49
huggingface/transformers
20890e3b901b264ffa2a5c31b4c26304bc3a5e61
366de9a6c399ccfc062602a49174260c3ccc33d0
Offloading need to add the prefix into the offload_index (#42624) * add prefix * stupide typing rules * peft integration as well
[ { "path": "src/transformers/integrations/accelerate.py", "patch": "@@ -466,10 +466,10 @@ def expand_device_map(device_map, param_names):\n \n \n def accelerate_disk_offload(\n+ model: \"PreTrainedModel\",\n disk_offload_folder: str | None,\n checkpoint_files: list[str] | None,\n device_map: d...
2025-12-05T14:15:22
vercel/next.js
0840793abfb4a4b2e56c91a6c57c8b539b6997a6
b89da42985139875cea1a0cd145e78b0202b626f
Fix all 404 links (#51209) I found some 404 links in jsdoc, so I used ripgrep to find and fix all the broken links to fix all the other links in this PR.
[ { "path": "errors/static-page-generation-timeout.md", "patch": "@@ -15,5 +15,5 @@ When restarted it will retry all uncompleted jobs, but if a job was unsuccessful\n \n ### Useful Links\n \n-- [`getStaticPaths`](https://nextjs.org/docs/basic-features/data-fetching/get-static-paths.md)\n-- [`getStaticProps`](...
2023-06-13T14:25:40
nodejs/node
e4ec4f2656f14d3992da154c46f6c0c44025f30d
a3ea54f5abd48decb1526c58fafd4cd757dbb02b
assert: fix error diff In some edge cases an identical line could be printed twice. This is now fixed by changing the algorithm a bit. It will now verify how many lines were identical before the current one. PR-URL: https://github.com/nodejs/node/pull/28058 Reviewed-By: Rich Trott <rtrott@gmail.com>
[ { "path": "lib/internal/assert/assertion_error.js", "patch": "@@ -52,25 +52,18 @@ function inspectValue(val) {\n maxArrayLength: Infinity,\n // Assert compares only enumerable properties (with a few exceptions).\n showHidden: false,\n- // Having a long line as error is better than wra...
2019-06-03T13:34:35
huggingface/transformers
366de9a6c399ccfc062602a49174260c3ccc33d0
75ae02f0f8b4bb04b7ee147e8b57ebe76e27ac7c
Fix a typo in GGML integration of Qwen2 MoE (#42650) Just like `"qwen3_moe"` below, name of the key must be `"qwen2_moe"` with one underscore. Signed-off-by: Tsukasa OI <floss_llm@irq.a4lg.com>
[ { "path": "src/transformers/integrations/ggml.py", "patch": "@@ -76,7 +76,7 @@\n \"attention.layer_norm_rms_epsilon\": \"rms_norm_eps\",\n \"vocab_size\": \"vocab_size\",\n },\n- \"qwen2moe\": {\n+ \"qwen2_moe\": {\n \"context_length\": \"max_position_embeddings\",\n ...
2025-12-05T14:12:25
golang/go
2aafd9ea179ec308607c131dbda438abac2b9184
02224c8ce471b9618081c69d952fb8597f71b7e6
cmd/go: preserve LIBRARY_PATH and C_INCLUDE_PATH for script tests In bespoke build environments default libraries may be specificied with LIBRARY_PATH, C_INCLUDE_PATH enviroment variables to overide the system (i.e glibc). Allow them though to allow cgo testing of these enviroments. Fixes #50985 Change-Id: I7497a77...
[ { "path": "src/cmd/go/script_test.go", "patch": "@@ -142,6 +142,8 @@ var extraEnvKeys = []string{\n \t\"SYSTEMROOT\", // must be preserved on Windows to find DLLs; golang.org/issue/25210\n \t\"WINDIR\", // must be preserved on Windows to be able to run PowerShell command; golang.org/issu...
2022-02-04T19:45:18
vercel/next.js
b89da42985139875cea1a0cd145e78b0202b626f
a611641cec051064dcdfd4391c888945f2b2c187
[docs] Fix typo in parallel routes (#51238)
[ { "path": "docs/02-app/01-building-your-application/01-routing/08-parallel-routes.mdx", "patch": "@@ -294,7 +294,7 @@ export default function CatchAll() {\n }\n ```\n \n-> Catch-all routes take presedence over `default.js`.\n+> Catch-all routes take precedence over `default.js`.\n \n ### Conditional Routes\...
2023-06-13T13:54:37
rust-lang/rust
b87f756d4d5dfa3cdfd3c79d2ac6d1810fe3c948
c4743bd2b9b2831320e758c9f74a84c32325b24c
Fix building std_detect on s390x
[ { "path": "src/inline_asm.rs", "patch": "@@ -51,6 +51,26 @@ pub(crate) fn codegen_inline_asm_terminator<'tcx>(\n return;\n }\n \n+ if fx.tcx.sess.target.arch == \"s390x\"\n+ && template.len() == 3\n+ && template[0] == InlineAsmTemplatePiece::String(\"stfle 0(\".into())\n+ ...
2025-07-01T08:57:27
nodejs/node
a3ea54f5abd48decb1526c58fafd4cd757dbb02b
f7ffa523123419ba49404b9d9d10a1eb68e4a012
assert: limit string inspection when logging assertion errors This makes sure long strings as `actual` or `expected` values on an `AssertionError` won't be logged completely. This is important as the actual value is somewhat redundant in combination with the error message which already logs the difference between the ...
[ { "path": "lib/internal/assert/assertion_error.js", "patch": "@@ -429,11 +429,37 @@ class AssertionError extends Error {\n }\n \n [inspect.custom](recurseTimes, ctx) {\n+ // Long strings should not be fully inspected.\n+ const tmpActual = this.actual;\n+ const tmpExpected = this.expected;\n+\n+...
2019-06-02T15:36:24
huggingface/transformers
afa43c73a2cea3c44d78585e424fc2b4ad2ba068
ee7e67bf6abf0fe994bb02b1d3e6a30a4ea0970f
test ci training for text model only (#42597) * begin test ci training * add better logging * add better logging + training loop * fix sentence + grad_norm assert * create circlci config fort training * fix ci to detect training_ci job * add -s for pytest CI * add generate assert as well * make training ci tri...
[ { "path": ".circleci/create_circleci_config.py", "patch": "@@ -318,6 +318,14 @@ def job_name(self):\n parallelism=6,\n )\n \n+training_ci_job = CircleCIJob(\n+ \"training_ci\",\n+ additional_env={\"RUN_TRAINING_TESTS\": True},\n+ docker_image=[{\"image\": \"huggingface/transformers-torch-light\...
2025-12-05T12:56:49
electron/electron
a048bddaa55bb055558676801bf56c456512c3a3
c1f64b3f85eafe00fb87941d3bf5d6aa306a2019
:memo: Fix url to relative [ci skip]
[ { "path": "docs-translations/ko-KR/api/menu.md", "patch": "@@ -382,4 +382,4 @@ OS X에선 지정한 어플리케이션 메뉴에 상관없이 메뉴의 첫번\n ```\n \n [AboutInformationPropertyListFiles]: https://developer.apple.com/library/ios/documentation/general/Reference/InfoPlistKeyReference/Articles/AboutInformationPropertyListFiles.html\n-[se...
2016-04-11T01:51:31
golang/go
02224c8ce471b9618081c69d952fb8597f71b7e6
6e56fcedfb6338e0a75dadef190a1c342e837cf4
cmd/go: accept "-F dir" in compiler flags Fixes #51008 Change-Id: I5e47c7be59d4aae1d5059d99231422212cffa23a Reviewed-on: https://go-review.googlesource.com/c/go/+/383217 Trust: Ian Lance Taylor <iant@golang.org> Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gopher Robot <gobot@golang.org> Reviewed-by:...
[ { "path": "src/cmd/go/internal/work/security.go", "patch": "@@ -131,6 +131,7 @@ var validCompilerFlagsWithNextArg = []string{\n \t\"-D\",\n \t\"-U\",\n \t\"-I\",\n+\t\"-F\",\n \t\"-framework\",\n \t\"-include\",\n \t\"-isysroot\",", "additions": 1, "deletions": 0, "language": "Go" }, { "...
2022-02-04T20:22:19
vercel/next.js
2a93345f14084b9e430ce91c359c3c81ac4fe0b2
b80dc83b23fe9af27699e9305137740b4ac523f5
[Docs] fix example function param and signature (#51235) Apparently the object deconstruction in the example doesn't work. This PR proposes a working version: ```diff - export default function Page({ params: { slug: string } }) { - return <div>My Post: {slug}</div> - } + export default function Page({ params }: { p...
[ { "path": "docs/02-app/01-building-your-application/01-routing/05-dynamic-routes.mdx", "patch": "@@ -22,14 +22,14 @@ Dynamic Segments are passed as the `params` prop to [`layout`](/docs/app/api-ref\n For example, a blog could include the following route `app/blog/[slug]/page.js` where `[slug]` is the Dynami...
2023-06-13T13:33:31
rust-lang/rust
e7fa5364c67dbd45a92432678878d406ad715630
708ea873b11b7a099cbdd59c1d45f3743362554e
fix tests (run cargo uibless after fmt)
[ { "path": "tests/ui/neg_multiply.fixed", "patch": "@@ -84,12 +84,12 @@ fn float() {\n }\n \n struct Y {\n- delta: f64\n+ delta: f64,\n }\n \n fn nested() {\n- let a = Y {delta: 1.0};\n- let b = Y {delta: 1.0};\n+ let a = Y { delta: 1.0 };\n+ let b = Y { delta: 1.0 };\n let _ = (-(a.del...
2025-07-01T08:51:18
huggingface/transformers
35f32e947e29a98f712817fc3b571ea01ec53989
390dca67e554b2b8f131064d4b6d991bf3ab3105
regression from tokenizers v5 to fix fast reference for pipeline (#42628)
[ { "path": "src/transformers/pipelines/document_question_answering.py", "patch": "@@ -146,7 +146,9 @@ class DocumentQuestionAnsweringPipeline(ChunkPipeline):\n \n def __init__(self, *args, **kwargs):\n super().__init__(*args, **kwargs)\n- if self.tokenizer is not None and not self.tokenize...
2025-12-05T10:05:16
nodejs/node
18a8eec378d4794b3256233a1599730b998b1183
c1f0cbe961658b02ae51fe35bfe2d323d49ece34
test: improve unexpected warnings error If someone adds an `expectsWarning` listener without handling all warning triggered in that test file, it'll result in a cryptic error message. This improves the situation by providing an explicit error about the unexpected warning. PR-URL: https://github.com/nodejs/node/pull/2...
[ { "path": "test/common/index.js", "patch": "@@ -528,7 +528,15 @@ let catchWarning;\n function expectWarning(nameOrMap, expected, code) {\n if (catchWarning === undefined) {\n catchWarning = {};\n- process.on('warning', (warning) => catchWarning[warning.name](warning));\n+ process.on('warning', (...
2019-05-19T22:35:36
golang/go
6e56fcedfb6338e0a75dadef190a1c342e837cf4
4afcc9f35e97b4e96f2f350f2a00ea65f43f4175
internal/nettrace: fix spelling error Change-Id: Ibf51c0687197c0d791916b21cba7f8408aa5300a Reviewed-on: https://go-review.googlesource.com/c/go/+/383216 Reviewed-by: Ian Lance Taylor <iant@golang.org> Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gopher Robot <gobot@golang.org> Trust: Kevin Burke <kevi...
[ { "path": "src/internal/nettrace/nettrace.go", "patch": "@@ -27,7 +27,7 @@ type Trace struct {\n \tDNSStart func(name string)\n \n \t// DNSDone is called after a DNS lookup completes (or fails).\n-\t// The coalesced parameter is whether singleflight de-dupped\n+\t// The coalesced parameter is whether single...
2022-02-04T19:27:17
electron/electron
3c44dfa21042a25b5a43821c5a8107ac8ffd6103
1fe97ddf2ee06143235faca336392ed0b927b71c
:memo: Fix grammatical typos [ci skip]
[ { "path": "docs-translations/ko-KR/api/crash-reporter.md", "patch": "@@ -43,7 +43,7 @@ crashReporter.start({\n **참고:** OS X에선 Windows와 Linux의 `breakpad`와 달리 새로운 `crashpad`\n 클라이언트를 사용합니다. 오류 수집 기능을 활성화 시키려면 오류를 수집하고 싶은 메인\n 프로세스나 랜더러 프로세스에서 `crashReporter.start` 메서드를 호출하여 `crashpad`를\n-초기화 해야합니다.\n+초기화해야 합니...
2016-04-11T01:33:47
rust-lang/rust
2eccb7a5f8e08d551c3b09deaa318609f1e3497b
b3eb17c1151f1666f9f36afb603ea75cdc3ac9e0
Fix rustc test suite
[ { "path": "scripts/test_rustc_tests.sh", "patch": "@@ -34,6 +34,7 @@ git checkout -- tests/ui/entry-point/auxiliary/bad_main_functions.rs\n # vendor intrinsics\n rm tests/ui/asm/x86_64/evex512-implicit-feature.rs # unimplemented AVX512 x86 vendor intrinsic\n rm tests/ui/simd/dont-invalid-bitcast-x86_64.rs #...
2025-07-01T08:21:45
huggingface/transformers
390dca67e554b2b8f131064d4b6d991bf3ab3105
328396d9675771b05a7c265df62a5f7b29f5bdd0
Fixed convert_batch_to_list_format staticmethod function call (#42476) Fixed TypeError: TokenizerTesterMixin.convert_batch_to_list_format() takes 1 positional argument but 2 were given
[ { "path": "tests/test_tokenization_common.py", "patch": "@@ -2302,7 +2302,9 @@ def test_batch_encode_plus_batch_sequence_length(self):\n \n encoded_sequences = [tokenizer(sequence) for sequence in sequences]\n encoded_sequences_batch = tokenizer(sequences, padding=False)\n- self.asser...
2025-12-05T09:17:21
vercel/next.js
d544c2806e8b27130d8930dd283aac987b6f4532
cefdb27662d37a5e29e2e467b7ad666dbe9790ac
docs: fix prettier lint (#51222) Fix prettier lint errors in #51080
[ { "path": "docs/02-app/02-api-reference/02-file-conventions/01-metadata/app-icons.mdx", "patch": "@@ -14,16 +14,16 @@ There are two ways to set app icons:\n \n ## Image files (.ico, .jpg, .png)\n \n-Use an image file to set an app icon by placing a `favicon`, `icon`, or `apple-icon` image file within your `...
2023-06-13T09:19:10
nodejs/node
1f143b8625c2985b4317a40f279232f562417077
8f98cf5e15db62ce1e156486ecfd79b0534c68b4
build: fix configure script to work with Apple Clang 11 PR-URL: https://github.com/nodejs/node/pull/28071 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Refael Ackermann (רפאל פלחי) <refack@gmail.com>
[ { "path": "configure.py", "patch": "@@ -710,7 +710,7 @@ def get_llvm_version(cc):\n \n def get_xcode_version(cc):\n return get_version_helper(\n- cc, r\"(^Apple LLVM version) ([0-9]+\\.[0-9]+)\")\n+ cc, r\"(^Apple (?:clang|LLVM) version) ([0-9]+\\.[0-9]+)\")\n \n def get_gas_version(cc):\n try:", ...
2019-06-05T11:17:03
golang/go
4afcc9f35e97b4e96f2f350f2a00ea65f43f4175
4e2410617d7b13e63e80ad77c9b2d44abaf39e9a
go/parser, go/types: don't parse type parameters on methods The go/parser package is updated to report an error on method type parameters, and to not store them in the AST. Tests are updated accordingly, and error messages are normalized accross go/parser and the compiler syntax package. Before this CL, go/parser wou...
[ { "path": "src/go/parser/parser.go", "patch": "@@ -977,7 +977,7 @@ func (p *parser) parseFuncType() *ast.FuncType {\n \tpos := p.expect(token.FUNC)\n \ttparams, params := p.parseParameters(true)\n \tif tparams != nil {\n-\t\tp.error(tparams.Pos(), \"function type cannot have type parameters\")\n+\t\tp.error...
2022-02-02T23:40:27
huggingface/transformers
f8e69286fb4b7f4cc778514e1c83c8a1f579f328
91865a69db92496b312847a41cf82b48c8589826
Move max_new_tokens recommendation into GenerationConfig docstring (#42384) * docs: clarify recommended usage of max_new_tokens in generate() * Move max_new_tokens recommendation into GenerationConfig docstring * Remove Note about max_new_tokens and max_length * Update src/transformers/generation/configuration_util...
[ { "path": "docs/source/en/main_classes/text_generation.md", "patch": "@@ -41,4 +41,4 @@ like token streaming.\n \n [[autodoc]] GenerationMixin\n - generate\n- - compute_transition_scores\n+ - compute_transition_scores\n\\ No newline at end of file", "additions": 1, "deletions": 1, "lan...
2025-12-05T06:14:26
rust-lang/rust
6c4221818e00828ecf54b395475477f49d0ea716
a4d584e7a6d2bb4ce08b72faec0c35206dd6e4b7
libm: Improved integer utilities, implement shifts and bug fixes for i256 and u256 `i256` and `u256` - operators now use the same overflow convention as primitives - implement `<<` and `-` (previously just `>>` and `+`) - implement `Ord` correctly (the previous `PartialOrd` was broken) - correct `i256::SIGNED` to `tru...
[ { "path": "library/compiler-builtins/libm-test/benches/icount.rs", "patch": "@@ -119,6 +119,22 @@ fn icount_bench_u256_add(cases: Vec<(u256, u256)>) {\n }\n }\n \n+#[library_benchmark]\n+#[bench::linspace(setup_u256_add())]\n+fn icount_bench_u256_sub(cases: Vec<(u256, u256)>) {\n+ for (x, y) in cases...
2025-07-01T08:07:48
electron/electron
1fe97ddf2ee06143235faca336392ed0b927b71c
0a806182631a0919eae0390cc3080c5102040b11
:memo: Fix url locale [ci skip]
[ { "path": "docs-translations/ko-KR/api/frameless-window.md", "patch": "@@ -1,6 +1,6 @@\n # Frameless Window\n \n-Frameless Window는 [창 테두리](https://developer.mozilla.org/en-US/docs/Glossary/Chrome)가\n+Frameless Window는 [창 테두리](https://developer.mozilla.org/ko/docs/Glossary/Chrome)가\n 없는 윈도우를 말합니다. 이 기능은 윈도우의...
2016-04-11T01:29:24
vercel/next.js
9fc904f489cfead3a388913c009efa4c00ee8cc4
cdfdaab67d7bb73c74689321cdb04d0e214bed2f
docs: fix typos in Server Actions docs. (#51185)
[ { "path": "docs/02-app/01-building-your-application/03-data-fetching/04-server-actions.mdx", "patch": "@@ -158,7 +158,7 @@ export default function AddToCart({ productId }) {\n \n #### `formAction`\n \n-You can use `formAction` prop to handle **Form Actions** on elements such as `button`, `input type=\"submi...
2023-06-12T22:07:27
nodejs/node
58fc168807458df7fd6991a0712836a997c734fe
0cd112a07ec3ee71e56df7a04353ae99ca84b5b5
module: handle empty require.resolve() options If require.resolve() is passed an options object, but the paths option is not present, then use the default require.resolve() paths. PR-URL: https://github.com/nodejs/node/pull/28078 Fixes: https://github.com/nodejs/node/issues/28077 Reviewed-By: Richard Lau <riclau@uk.i...
[ { "path": "lib/internal/modules/cjs/loader.js", "patch": "@@ -598,7 +598,9 @@ Module._resolveFilename = function(request, parent, isMain, options) {\n }\n }\n }\n- } else if (options.paths !== undefined) {\n+ } else if (options.paths === undefined) {\n+ paths = Module._res...
2019-06-05T19:35:13
golang/go
248ad855b7d0e49839b7b4281d9e60e222368583
896df422a7cecbace10f5877beeeb1476b6061ae
misc/cgo/test: disable unhelpful GCC warning GCC 9 warns about a change in the ABI of passing structs with bitfields, but we don't care. Fixes #50987 Change-Id: Ica658d04172a42a7be788f94d31a714bb8c4766f Reviewed-on: https://go-review.googlesource.com/c/go/+/382956 Trust: Ian Lance Taylor <iant@golang.org> Run-TryBot...
[ { "path": "misc/cgo/test/test.go", "patch": "@@ -367,6 +367,11 @@ void init() {\n // Cgo incorrectly computed the alignment of structs\n // with no Go accessible fields as 0, and then panicked on\n // modulo-by-zero computations.\n+\n+// issue 50987\n+// disable arm64 GCC warnings\n+#cgo CFLAGS: -Wno-psabi ...
2022-02-03T20:43:48
electron/electron
fca3a5f853073e3f7d320ddc1b7b45c2523d44b2
066092abb6d29209f35b6d5c5ce31ce41b181919
Update quick-start.md Translation error about system events(line43).
[ { "path": "docs-translations/zh-CN/tutorial/quick-start.md", "patch": "@@ -40,7 +40,7 @@ your-app/\n ```\n **注意**:如果 `main` 字段没有在 `package.json` 声明,Electron会优先加载 `index.js`。\n \n-`main.js` 应该用于创建窗口和处理系统时间,一个典型的例子如下:\n+`main.js` 应该用于创建窗口和处理系统事件,一个典型的例子如下:\n ```javascript\n var app = require('app'); // 控制应用生...
2016-04-10T03:23:26
vercel/next.js
3b2ee1e085854d78bea747ac0fa6f14009d1e208
4ae8bc7da0b1f44be11cfbb14ffa31dfad72bb77
docs: Fix typo on strategy for next/script. (#51189)
[ { "path": "docs/02-app/02-api-reference/01-components/script.mdx", "patch": "@@ -196,7 +196,7 @@ Examples of scripts that do not need to load immediately and can be fetched with\n \n Scripts that use the `worker` strategy are off-loaded to a web worker in order to free up the main thread and ensure that onl...
2023-06-12T22:06:12
nodejs/node
0cd112a07ec3ee71e56df7a04353ae99ca84b5b5
5f71520d10f5646e488849d8d35a89f94860ebfa
tools: fix update-babel-eslint.sh script The `-f` flag was missing a space after the module version. PR-URL: https://github.com/nodejs/node/pull/27670 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Refael Ackermann (רפאל פלחי) <refack@gmail.com> Reviewed-B...
[ { "path": "tools/update-babel-eslint.sh", "patch": "@@ -16,7 +16,7 @@ npm init --yes\n npm install --global-style --no-bin-links --production --no-package-lock babel-eslint@latest\n \n # Use dmn to remove some unneeded files.\n-npx dmn@2.2.2-f clean\n+npx dmn@2.2.2 -f clean\n # Use removeNPMAbsolutePaths to...
2019-05-29T12:18:21
golang/go
896df422a7cecbace10f5877beeeb1476b6061ae
1ab827371858e02f864f91e7dc561ae48eb7bbd0
crypto/x509: support NumericString in DN components Fixes #48171 Change-Id: Ia2e1920c0938a1f8659935a4f725a7e5090ef2c0 Reviewed-on: https://go-review.googlesource.com/c/go/+/347034 Trust: Roland Shoemaker <roland@golang.org> Run-TryBot: Roland Shoemaker <roland@golang.org> TryBot-Result: Gopher Robot <gobot@golang.org...
[ { "path": "src/crypto/x509/parser.go", "patch": "@@ -51,9 +51,9 @@ func isPrintable(b byte) bool {\n }\n \n // parseASN1String parses the ASN.1 string types T61String, PrintableString,\n-// UTF8String, BMPString, and IA5String. This is mostly copied from the\n-// respective encoding/asn1.parse... methods, r...
2021-09-03T16:56:23
electron/electron
1a842bf9d50b8a424bcd7a29183c2b795fbb656b
50f51899de609d75ea7a33dfb531b79f630d0780
Fix trailing whitespace caught by linter.
[ { "path": "atom/browser/net/atom_network_delegate.cc", "patch": "@@ -36,7 +36,7 @@ const char* ResourceTypeToString(content::ResourceType type) {\n return \"other\";\n }\n }\n- \n+\n namespace {\n \n void RunSimpleListener(const AtomNetworkDelegate::SimpleListener& listener,", "additions": 1,...
2016-04-08T20:15:40
vercel/next.js
0c9041e5b9b4153318e00a0e9ff7ef17fafdaa96
9d0129c635d71f56e57554abf7e0596978e3a7bb
Fix a mistake URL in "docs/generate-metadata.mdx/metadataBase" (#51199) The sample output of `metadataBase` configuration (`<head <link rel="alternate" ...>`) had an incorrect `href`: https://nextjs.org/docs/app/api-reference/functions/generate-metadata#metadatabase
[ { "path": "docs/02-app/02-api-reference/04-functions/generate-metadata.mdx", "patch": "@@ -392,8 +392,8 @@ export const metadata = {\n \n ```html filename=\"<head> output\" hideLineNumbers\n <link rel=\"canonical\" href=\"https://acme.com\" />\n-<link rel=\"alternate\" hreflang=\"en-US\" href=\"https://next...
2023-06-12T21:34:15
rust-lang/rust
c3fb7d1d1c3d05be8ed3abdfd01196782f6c7821
fdad98d7463eebcdca94716ec3036c38a8d66f50
Make some compiletest errors/warnings/help more visually obvious
[ { "path": "src/tools/compiletest/src/common.rs", "patch": "@@ -11,6 +11,7 @@ use serde::de::{Deserialize, Deserializer, Error as _};\n \n pub use self::Mode::*;\n use crate::executor::{ColorConfig, OutputFormat};\n+use crate::fatal;\n use crate::util::{Utf8PathBufExt, add_dylib_path};\n \n macro_rules! stri...
2025-06-30T08:59:28
nodejs/node
6a5376bb94f10d262df881226c05699c28cdd139
fddc2d7a7eac87be04e4b3cb26ef45e6dcc07fac
doc: split example into two This makes sure the "good" and "bad" examples are split into two. Otherwise it'll result in an parse error. PR-URL: https://github.com/nodejs/node/pull/27670 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Refael Ackermann (רפאל ...
[ { "path": "doc/api/cli.md", "patch": "@@ -218,22 +218,23 @@ or be removed in the future.\n \n To avoid these cases, any builtin function overrides should be defined upfront:\n \n-<!-- eslint-disable no-redeclare -->\n ```js\n const o = {};\n // THROWS: Cannot assign read only property 'toString' of object\n...
2019-05-20T13:48:42
golang/go
1ab827371858e02f864f91e7dc561ae48eb7bbd0
7f9494c277a471f6f47f4af3036285c0b1419816
cmd/compile: ensure size is computed for shape types Fixes #50993 Change-Id: I5f1bf5a8375c3da3203083b11de26962523ccb36 Reviewed-on: https://go-review.googlesource.com/c/go/+/382874 Trust: Keith Randall <khr@golang.org> Run-TryBot: Keith Randall <khr@golang.org> TryBot-Result: Gopher Robot <gobot@golang.org> Reviewed-...
[ { "path": "src/cmd/compile/internal/typecheck/subr.go", "patch": "@@ -1480,6 +1480,7 @@ func Shapify(t *types.Type, index int, tparam *types.Type) *types.Type {\n \ts.SetUnderlying(u)\n \ts.SetIsShape(true)\n \ts.SetHasShape(true)\n+\ttypes.CalcSize(s)\n \tname.SetType(s)\n \tname.SetTypecheck(1)\n \tsubmap...
2022-02-03T17:44:21
electron/electron
c1b1348735e969c496cc87adbbc8819b4c98b24b
066092abb6d29209f35b6d5c5ce31ce41b181919
Add `resourceType` arg to webContents `did-get-response-details` event. Fixes #5074 and follows @zcbenz's recommendation to expose ResourceTypeToString from atom_network_delegate publicly. Also adds testing for other arguments to the `did-get-response-details` events, since there were no existing tests for them.
[ { "path": "atom/browser/api/atom_api_web_contents.cc", "patch": "@@ -14,6 +14,7 @@\n #include \"atom/browser/atom_browser_context.h\"\n #include \"atom/browser/atom_browser_main_parts.h\"\n #include \"atom/browser/native_window.h\"\n+#include \"atom/browser/net/atom_network_delegate.h\"\n #include \"atom/br...
2016-04-08T18:19:36
vercel/next.js
9d0129c635d71f56e57554abf7e0596978e3a7bb
8a11835fbe71c085da009d98198798deab8e9f09
Fix standalone not found (#51172) Fixes #50232 Passing down the private env into `'render-server'` module to pick up the proper react with require-hook in standalone server fix NEXT-1260
[ { "path": "packages/next/src/build/utils.ts", "patch": "@@ -1922,20 +1922,21 @@ export async function copyTracedFiles(\n serverOutputPath,\n `${\n moduleType\n- ? `import http from 'http'\n+ ? `\\\n+import http from 'http'\n import path from 'path'\n import { fileURLToPath } from...
2023-06-12T21:14:32
huggingface/transformers
91865a69db92496b312847a41cf82b48c8589826
3a8d291ac439fca3decb9b800ea22500cffeaf50
Fix FSDP bnb error (#42600) * fix * Apply style fixes * Fix * Apply style fixes * rm --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: Mohamed Mekkouri <93391238+MekkCyber@users.noreply.github.com>
[ { "path": "src/transformers/integrations/bitsandbytes.py", "patch": "@@ -223,7 +223,9 @@ def _replace_with_bnb_linear(\n if pre_quantized:\n # this is kind of an edge case when supporting both loading and quantization ...\n ...
2025-12-05T05:39:25
nodejs/node
26de13a15c3d20b484ac830c8f4aa38d69651b2a
62ac84b5f81a747e8f7693138949d841c1b98851
util: refactor inspecting long lines Using the `util.inspect` `compact` mode set to something else than `true` resulted in breaking long lines in case the line would exceed the `breakLength` option and if it contained whitespace and or new lines. It turned out that this behavior was less useful than originally expect...
[ { "path": "lib/internal/util/inspect.js", "patch": "@@ -127,8 +127,6 @@ const numberRegExp = /^(0|[1-9][0-9]*)$/;\n const coreModuleRegExp = /^ at (?:[^/\\\\(]+ \\(|)((?<![/\\\\]).+)\\.js:\\d+:\\d+\\)?$/;\n const nodeModulesRegExp = /[/\\\\]node_modules[/\\\\](.+?)(?=[/\\\\])/g;\n \n-const readableRegExp...
2019-06-02T14:07:08
golang/go
7f9494c277a471f6f47f4af3036285c0b1419816
0003d9da093ce1cb19aebb074da4506fade35a66
crypto/elliptic: make IsOnCurve return false for invalid field elements Thanks to Guido Vranken for reporting this issue. Fixes #50974 Fixes CVE-2022-23806 Change-Id: I0201c2c88f13dd82910985a495973f1683af9259 Reviewed-on: https://go-review.googlesource.com/c/go/+/382455 Run-TryBot: Filippo Valsorda <filippo@golang.o...
[ { "path": "src/crypto/elliptic/elliptic.go", "patch": "@@ -89,6 +89,11 @@ func (curve *CurveParams) IsOnCurve(x, y *big.Int) bool {\n \t\treturn specific.IsOnCurve(x, y)\n \t}\n \n+\tif x.Sign() < 0 || x.Cmp(curve.P) >= 0 ||\n+\t\ty.Sign() < 0 || y.Cmp(curve.P) >= 0 {\n+\t\treturn false\n+\t}\n+\n \t// y² =...
2022-02-02T17:13:17
electron/electron
8d8d5878a3f3c36da83da8e5d64ad9d44cf7946b
577480421d51d67149158732119f136f30d25522
Rename ATOM_ ipc event prefix to ELECTRON_
[ { "path": "lib/browser/api/browser-window.js", "patch": "@@ -28,7 +28,7 @@ BrowserWindow.prototype._init = function () {\n width: 800,\n height: 600\n }\n- return ipcMain.emit('ATOM_SHELL_GUEST_WINDOW_MANAGER_WINDOW_OPEN', event, url, frameName, disposition, options)\n+ return ipcMain....
2016-04-06T23:21:26
vercel/next.js
8a11835fbe71c085da009d98198798deab8e9f09
a6a9d65c8c002db3c5ad62f1af8dcf545769013b
Strip _rsc query for navigation between app and page (#51195) Fix a missing case from #50970 When navigating from app to page, the `_rsc` query should still be stripped
[ { "path": "packages/next/src/client/components/router-reducer/fetch-server-response.ts", "patch": "@@ -85,9 +85,9 @@ export async function fetchServerResponse(\n credentials: 'same-origin',\n headers,\n })\n- const canonicalUrl = res.redirected\n- ? urlToUrlWithoutFlightMarker(res.ur...
2023-06-12T20:36:36