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
rust-lang/rust
011d4aa81f1d20b4923a01c7162caa5f0042b8ba
cdac44e608c3df9a241e0a1b53b3f62af250dbf1
Call `get_switch_int_data` on a block with SwitchInt terminator Fix a mix-up of a block with its predecessors in handling of SwitchInt edge effects for backward analysis. Note that this functionality is currently unused, so change has no practical impact.
[ { "path": "compiler/rustc_mir_dataflow/src/framework/direction.rs", "patch": "@@ -113,7 +113,7 @@ impl Direction for Backward {\n }\n \n mir::TerminatorKind::SwitchInt { ref targets, ref discr } => {\n- if let Some(mut data) = analysis.get_switch_int_data(b...
2025-07-11T06:10:16
vercel/next.js
2b1ef2bf32c80365b4a7ebf368584b92653fce73
f01b40d3a93b50322a0b970c927ff75316a9ef85
Revert "export namespace object instead commonjs interop object" (vercel/turbo#5620) Reverts vercel/turbo#5619 That's just wrong. There is no `namespace` property, just `namespaceObject`, but in case of ESM `namespaceObject === export` anyway.
[ { "path": "crates/turbopack-build/src/ecmascript/node/entry/chunk.rs", "patch": "@@ -138,8 +138,7 @@ impl EcmascriptBuildNodeEntryChunk {\n writedoc!(\n code,\n r#\"\n- const internalModule = runtime.getOrInstantiateRuntimeModule({}, CHUNK_PUBLIC_PATH);\n- ...
2023-07-27T11:26:56
electron/electron
58c1d38c96499e4e4f3b498704d88b3feb29a004
c98f419bc805a4feddaccd299191e721a900b757
Remove lint errors
[ { "path": "default_app/main.js", "patch": "@@ -91,7 +91,7 @@ app.once('ready', () => {\n }\n },\n {\n- role: 'togglefullscreen',\n+ role: 'togglefullscreen'\n },\n {\n label: 'Toggle Developer Tools',", "additions": 1, "deletions"...
2016-06-22T21:13:12
nodejs/node
7899a96e66a2f9bb836ca80d8264954848633a3d
355f2ad466dc155cae233e3990d19b094dd72b46
worker: keep allocators for transferred SAB instances alive longer Keep the `ArrayBuffer::Allocator` behind a `SharedArrayBuffer` instance alive for at least as long as the receiving Isolate lives, if the `SharedArrayBuffer` instance isn’t already destroyed through GC. This is to work around the fact that V8 7.9 star...
[ { "path": "src/env.cc", "patch": "@@ -1036,6 +1036,21 @@ char* Environment::Reallocate(char* data, size_t old_size, size_t size) {\n return new_data;\n }\n \n+void Environment::AddArrayBufferAllocatorToKeepAliveUntilIsolateDispose(\n+ std::shared_ptr<v8::ArrayBuffer::Allocator> allocator) {\n+ if (kee...
2019-09-20T21:42:31
huggingface/transformers
d75266f17e89b1618ac93802b0c4ced0f2a014bc
a276a763fa785a7f429c5ce8241f5b16064b2f44
🚨 T5Gemma2 model structure (#43633) * maybe * fix repo * fix test * do conversion but can't tests, hub is down? * oops * ah the model was gated! * override helper * fix repo and test * Update src/transformers/models/t5gemma2/modular_t5gemma2.py Co-authored-by: Anton Vlasjuk <73884904+vasqu@users.noreply.gith...
[ { "path": "src/transformers/conversion_mapping.py", "patch": "@@ -70,6 +70,16 @@\n \n def _build_checkpoint_conversion_mapping():\n mapping = {\n+ \"t5gemma2\": [\n+ WeightRenaming(r\"(?<!vision_model\\.)encoder.embed_tokens.\", \"encoder.text_model.embed_tokens.\"),\n+ Weig...
2026-02-04T14:44:53
rust-lang/rust
ef5c209df3b8557e29af0482f2eeb004ff265621
119574f83576dc1f3ae067f9a97986d4e2b0826c
tidy: clippy fixes
[ { "path": "src/tools/tidy/src/alphabetical.rs", "patch": "@@ -103,7 +103,7 @@ fn check_section<'a>(\n \n let prev_line_trimmed_lowercase = prev_line.trim_start_matches(' ');\n \n- if version_sort(&trimmed_line, &prev_line_trimmed_lowercase).is_lt() {\n+ if version_sort(trimmed_line, pr...
2025-07-09T15:36:35
vercel/next.js
f01b40d3a93b50322a0b970c927ff75316a9ef85
1686f37b0c739d36bc82b816e1b4acbb2aaa25cc
fix esm export in build runtime (vercel/turbo#5621) ### Description it didn't set `namespaceObject = exports`
[ { "path": "crates/turbopack-ecmascript-runtime/js/src/build/runtime.ts", "patch": "@@ -128,7 +128,7 @@ function instantiateModule(id: ModuleId, source: SourceInfo): Module {\n y: externalImport,\n f: requireContext.bind(null, module),\n i: esmImport.bind(null, module),\n- s: esm.bind(...
2023-07-27T11:26:43
nodejs/node
355f2ad466dc155cae233e3990d19b094dd72b46
b2634238d8d50e3801cb716e3f3165be1c50418a
src: try showing stack traces when process._fatalException is not set So that the stack trace of errors shown in internal code run during bootstrap (before process._fatalException is set) can be printed. PR-URL: https://github.com/nodejs/node/pull/29624 Refs: https://github.com/nodejs/node/pull/29593 Reviewed-By: Jer...
[ { "path": "src/node_errors.cc", "patch": "@@ -324,6 +324,8 @@ static void ReportFatalException(Environment* env,\n break;\n }\n case EnhanceFatalException::kDontEnhance: {\n+ USE(err_obj->Get(env->context(), env->stack_string())\n+ .ToLocal(&stack_trace));\n ...
2019-09-20T01:48:23
electron/electron
6f9c4766fcd12b0b834f476a5c323dbbf74ea079
6b1df5838cc5a372fd7d5a817c29cffb069bc446
Fix usages of global BrowserContext in App::ImportCertificate
[ { "path": "atom/browser/api/atom_api_app.cc", "patch": "@@ -463,10 +463,11 @@ void App::DisableHardwareAcceleration(mate::Arguments* args) {\n void App::ImportCertificate(\n const base::DictionaryValue& options,\n const net::CompletionCallback& callback) {\n- auto browser_context = AtomBrowserMainP...
2016-06-22T07:10:36
huggingface/transformers
a276a763fa785a7f429c5ce8241f5b16064b2f44
d95672f8dfe5a5f3f2d4a7a1476d51b33ea835a6
Update torch minimum version to 2.4 (#41307) * Update torch minimum version to 2.4 Signed-off-by: Yuanyuan Chen <cyyever@outlook.com> * More PyTorch 2.4 fixes Signed-off-by: cyy <cyyever@outlook.com> * More PyTorch 2.4 fixes Signed-off-by: cyy <cyyever@outlook.com> * More fixes Signed-off-by: cyy <cyyever@outlo...
[ { "path": "README.md", "patch": "@@ -81,7 +81,7 @@ Explore the [Hub](https://huggingface.com/) today to find a model and use Transf\n \n ## Installation\n \n-Transformers works with Python 3.9+, and [PyTorch](https://pytorch.org/get-started/locally/) 2.1+.\n+Transformers works with Python 3.9+, and [PyTorch...
2026-02-04T14:12:30
rust-lang/rust
28612748f61767c20c93da45156fc4ebde604dc1
119574f83576dc1f3ae067f9a97986d4e2b0826c
x: clippy fixes
[ { "path": "src/tools/x/src/main.rs", "patch": "@@ -89,7 +89,7 @@ fn exec_or_status(command: &mut Command) -> io::Result<ExitStatus> {\n fn handle_result(result: io::Result<ExitStatus>, cmd: Command) {\n match result {\n Err(error) => {\n- eprintln!(\"Failed to invoke `{:?}`: {}\", cmd...
2025-07-11T05:03:22
golang/go
029d2c4524e729dbd913475ca4a5138bb6c5e099
9d6c711e3c7f16fd4dd2e812d855e881c6692f3e
flag: recover panic when calling String on zero value in PrintDefaults When printing the usage message, recover panics when calling String methods on reflect-constructed flag.Value zero values. Collect the panic messages and include them at the end of the PrintDefaults output so that the programmer knows to fix the pa...
[ { "path": "src/flag/flag.go", "patch": "@@ -488,7 +488,7 @@ func Set(name, value string) error {\n \n // isZeroValue determines whether the string represents the zero\n // value for a flag.\n-func isZeroValue(flag *Flag, value string) bool {\n+func isZeroValue(flag *Flag, value string) (ok bool, err error) ...
2022-03-29T23:37:07
vercel/next.js
911ba88888eeaaa8152507d3e2d344615d1297c0
127c5bbf80d44e256533db028d7a595a1c3defe0
some bugfixes to resolving and context creation (#53219) ### What? pulled out of #52983
[ { "path": "packages/next-swc/crates/next-build/src/next_pages/page_entries.rs", "patch": "@@ -44,6 +44,7 @@ use turbopack_binding::{\n },\n ecmascript::{\n chunk::{EcmascriptChunkPlaceable, EcmascriptChunkingContext},\n+ utils::StringifyJs,\n EcmascriptModu...
2023-07-27T07:46:50
nodejs/node
b2634238d8d50e3801cb716e3f3165be1c50418a
c5f5f84a33967862036c7d87f4bbde6a59d3820a
src: disconnect inspector before exiting out of fatal exception So that coverage, .etc are properly written in case of a normal fatal exception. PR-URL: https://github.com/nodejs/node/pull/29611 Fixes: https://github.com/nodejs/node/issues/29570 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: David Carlier ...
[ { "path": "src/node_errors.cc", "patch": "@@ -978,6 +978,9 @@ void TriggerUncaughtException(Isolate* isolate,\n \n // Now we are certain that the exception is fatal.\n ReportFatalException(env, error, message, EnhanceFatalException::kEnhance);\n+#if HAVE_INSPECTOR\n+ profiler::EndStartedProfilers(env);...
2019-09-19T02:36:02
huggingface/transformers
d95672f8dfe5a5f3f2d4a7a1476d51b33ea835a6
225254c1835c6233e93a93671ade7a128e21776a
Fix dtype in image-text-to-text pipe (#43731) * fix * do in pixrtal same thing as in CLIP-style models * typo...
[ { "path": "src/transformers/models/pixtral/modeling_pixtral.py", "patch": "@@ -493,7 +493,8 @@ def forward(\n image_sizes = [(height, width)] * batch_size\n \n # pass images through initial convolution independently\n- patch_embeds = self.patch_conv(pixel_values)\n+ target_...
2026-02-04T13:54:51
electron/electron
a82a2485d7191acc88ba11f83bc1f5b2d05f6a5e
49fd3ff41b64e388b8bd81db97b0af54f484a5dd
fix debugger event headings
[ { "path": "docs/api/web-contents.md", "patch": "@@ -1035,15 +1035,15 @@ Detaches the debugger from the `webContents`.\n \n Send given command to the debugging target.\n \n-### Event: 'detach'\n+#### Event: 'detach'\n \n * `event` Event\n * `reason` String - Reason for detaching debugger.\n \n Emitted when d...
2016-06-17T21:01:33
golang/go
ecee4a32918c5e575303530abb9a504a235a1c71
be8ee5a58f8c30e95e425779fb31b2ae4e35cb8c
cmd/internal/obj/arm64: fix encoding error for SYS instruction Currently using the SYS instruction will report the "illegal combination" error. This is because the assembler parser treats the register operand as p.To, while optab defines it as p.Reg. This CL fixes this bug. Change-Id: I57799a7c19934b0c62278948f4efaa4...
[ { "path": "src/cmd/asm/internal/asm/testdata/arm64.s", "patch": "@@ -1627,4 +1627,6 @@ again:\n \tMSR\tR13, ZCR_EL1 // 0d1218d5\n \tMRS\tZCR_EL1, R23 // 171238d5\n \tMSR\tR17, ZCR_EL1 // 111218d5\n+\tSYS\t$32768, R1 //...
2022-03-31T07:34:01
vercel/next.js
c73fdfd87cbd5a2e57039ede6c545c67b2e43667
22ca85946ee87a7af2d967565aeb4efa4b1ec978
Fix file tracing issues for not-found pages (#53231) This fixes the `.nft.json` output for not-found pages to correctly grab the client reference manifest. We were checking for `entryPoint.name.startsWith('app/')` but then asserting on `entryPoint.name === '/_not-found'` when determining the manifest path. This also ...
[ { "path": "packages/next/src/build/index.ts", "patch": "@@ -2549,6 +2549,16 @@ export default async function build(\n appConfig.revalidate === 0 ||\n exportConfig.initialPageRevalidationMap[page] === 0\n \n+ if (hasDynamicData && pageInfos.get(page)?.static) {\n+ ...
2023-07-27T00:08:53
huggingface/transformers
225254c1835c6233e93a93671ade7a128e21776a
1687954f5aaec9d38f368f812ea8d3673bf17579
Preventing initialization of siglip's lecun_normal_, default_flax_embed_init in ZeRO3 (#43574) * Prevent redundant initialization in lecun_normal_ and default_flax_embed_init * apply style * fix check_repository_consistency * lecun_normal_ & default_flax_embed init > initialization.py * Update src/transformers/ini...
[ { "path": "src/transformers/initialization.py", "patch": "@@ -11,6 +11,7 @@\n # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n # See the License for the specific language governing permissions and\n # limitations under the License.\n+import math\n import sys\n from collections im...
2026-02-04T13:39:50
nodejs/node
1fa403762c035dca35bae9a18a4e4c3edf9d55f3
0c32ca96c878488c923022a8828bef541e0df9ae
console,util: fix missing recursion end while inspecting prototypes This makes sure prototypes won't be inspected infinitely for some obscure object creations. The depth is now taken into account and the recursion ends when the depth limit is reached. PR-URL: https://github.com/nodejs/node/pull/29647 Fixes: https://g...
[ { "path": "lib/internal/util/inspect.js", "patch": "@@ -351,7 +351,7 @@ function getEmptyFormatArray() {\n return [];\n }\n \n-function getConstructorName(obj, ctx) {\n+function getConstructorName(obj, ctx, recurseTimes) {\n let firstProto;\n const tmp = obj;\n while (obj) {\n@@ -372,10 +372,23 @@ f...
2019-09-21T19:26:02
golang/go
c4efe7fb2777fca05a904b0c62bee8915e13b03f
5dbfa6e61a2a733bca601c330967d12a3a5b12f4
mime/multipart: allow nested boundary with outer boundary+dash prefix Fixes #46042 Change-Id: Icd243eb12c6e260aeead04710f12340048a0e859 Reviewed-on: https://go-review.googlesource.com/c/go/+/338549 Trust: Damien Neil <dneil@google.com> Run-TryBot: Damien Neil <dneil@google.com> TryBot-Result: Gopher Robot <gobot@gola...
[ { "path": "src/mime/multipart/multipart.go", "patch": "@@ -264,7 +264,8 @@ func scanUntilBoundary(buf, dashBoundary, nlDashBoundary []byte, total int64, re\n // and the caller has verified already that bytes.HasPrefix(buf, prefix) is true.\n //\n // matchAfterPrefix returns +1 if the buffer does match the b...
2021-07-30T10:02:51
vercel/next.js
0d4ec1047d20f36c76ca153d1e0073057b7daea1
e4573a0513b74ca5a3c82f7478a8b5bd9cdfc9ed
fix(next-swc): exclude raw target triples without native bindings (#53230) <!-- 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 ma...
[ { "path": "packages/next/src/build/swc/index.ts", "patch": "@@ -16,7 +16,6 @@ const nextVersion = process.env.__NEXT_VERSION as string\n \n const ArchName = arch()\n const PlatformName = platform()\n-const triples = platformArchTriples[PlatformName]?.[ArchName] || []\n \n const infoLog = (...args: any[]) =>...
2023-07-26T22:32:08
huggingface/transformers
1687954f5aaec9d38f368f812ea8d3673bf17579
257a602f8d9f5b2df2ba5b63c1b276e99388b5a3
🚨 Generation cache preparation (#43679) * do smth * how did this even happen O_o * fix models * dia needs only one prefill, fix * fxi repo again * comments, comments * almost forgot
[ { "path": "src/transformers/cache_utils.py", "patch": "@@ -7,6 +7,7 @@\n from .configuration_utils import PreTrainedConfig\n from .utils import (\n is_hqq_available,\n+ is_optimum_quanto_available,\n is_quanto_greater,\n is_torch_greater_or_equal,\n is_torchdynamo_compiling,\n@@ -584,7 +5...
2026-02-04T13:22:50
nodejs/node
fdd5d4ad4a228af6e5a7dc74ddf0e03dc5637254
4ef3ccbbe09d2f0cde8da078f9d2543332b152d2
bootstrap: add exception handling for profiler bootstrap Add exception handling for the case when profile is not bootstrapped when coverage is enabled. Fixes: https://github.com/nodejs/node/issues/29542 PR-URL: https://github.com/nodejs/node/pull/29552 Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Ann...
[ { "path": "lib/internal/bootstrap/pre_execution.js", "patch": "@@ -120,8 +120,16 @@ function setupCoverageHooks(dir) {\n const { resolve } = require('path');\n const coverageDirectory = resolve(cwd, dir);\n const { sourceMapCacheToObject } = require('internal/source_map');\n- internalBinding('profile...
2019-09-14T00:09:46
huggingface/transformers
257a602f8d9f5b2df2ba5b63c1b276e99388b5a3
0c4fe5c6cdf9c923e0e5fccd8dcf35fb587588cf
fix: AttributeError for Qwen3_omni_moe (#43593) * correct-fix-through-modular * fix-duplicate
[ { "path": "src/transformers/models/qwen3_omni_moe/configuration_qwen3_omni_moe.py", "patch": "@@ -572,6 +572,7 @@ def __init__(\n rope_parameters: int | None = None,\n attention_bias: bool | None = False,\n sliding_window: int | None = None,\n+ max_window_layers: int | None = ...
2026-02-04T10:44:29
golang/go
5dbfa6e61a2a733bca601c330967d12a3a5b12f4
baf6df06c0525b0bbcf43066f3360eb31b8e7941
cmd/internal/obj/riscv: fix illegal form of MOV instructions The MOV like instructions should only have two operands. Change-Id: Icbfb49e47a91ac305194c2f140d3d81c912f6d6d GitHub-Last-Rev: 2b25aaa0ed126e8a019db09247953b27123d493f GitHub-Pull-Request: golang/go#52073 Reviewed-on: https://go-review.googlesource.com/c/go...
[ { "path": "src/cmd/asm/internal/asm/testdata/riscv64error.s", "patch": "@@ -22,5 +22,9 @@ TEXT errors(SB),$0\n \tMOVBU\tX5, (X6)\t\t\t// ERROR \"unsupported unsigned store\"\n \tMOVHU\tX5, (X6)\t\t\t// ERROR \"unsupported unsigned store\"\n \tMOVWU\tX5, (X6)\t\t\t// ERROR \"unsupported unsigned store\"\n+\t...
2022-03-31T14:34:32
electron/electron
8ffd069689d9ad81a8492b5e01ecb85bada604d4
a5976055bfc81380c7820c55a0d9566e33ce39ed
mac: Fix maximize/unmaximize event emitted before window is maximized
[ { "path": "atom/browser/native_window_mac.mm", "patch": "@@ -70,6 +70,7 @@ - (void)viewDidMoveToSuperview {\n @interface AtomNSWindowDelegate : NSObject<NSWindowDelegate> {\n @private\n atom::NativeWindowMac* shell_;\n+ bool is_zooming_;\n }\n - (id)initWithShell:(atom::NativeWindowMac*)shell;\n @end\n@...
2016-06-22T05:06:54
vercel/next.js
6c3560dbbd0f1b083ec9e15791cd94d1f113452e
f814fb80469ea1576057514df452aae28479541c
[create-next-app] fix template css for top / bottom alignment (#53227) Fixes a small CSS regression with the `create-next-app` template(s). Especially evident with templates using Tailwind CSS. Before: <img width="1047" alt="image" src="https://github.com/vercel/next.js/assets/74513600/9d3e8ef4-52b9-4590-be26-ee91f4b...
[ { "path": "packages/create-next-app/templates/app-tw/js/app/page.js", "patch": "@@ -3,7 +3,7 @@ import Image from 'next/image'\n export default function Home() {\n return (\n <main className=\"flex min-h-screen flex-col items-center justify-between p-24\">\n- <div className=\"z-10 w-full max-w-5x...
2023-07-26T20:41:08
nodejs/node
e573c39b889db13a1c3da14a5116a7615653cf6c
1665a9330c0fa9f4a79c900e6250938ac8d7a9e5
http: don't emit 'data' after 'error' PR-URL: https://github.com/nodejs/node/pull/28711 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Luigi Pinca <luigipi...
[ { "path": "lib/_http_client.js", "patch": "@@ -406,9 +406,6 @@ function socketErrorListener(err) {\n req.emit('error', err);\n }\n \n- // Handle any pending data\n- socket.read();\n-\n const parser = socket.parser;\n if (parser) {\n parser.finish();", "additions": 0, "deletions": 3, ...
2019-07-15T23:06:01
huggingface/transformers
0c4fe5c6cdf9c923e0e5fccd8dcf35fb587588cf
480ed54e80ea09530ed8820028afc8d0b0b17b18
🚨 Delete duplicate code in backbone utils (#43323) * draft * first make it work, then make pretty * :eyes: * unused attributes? * everythgin we need is in the config! * push * update * update * fixes * forgot * push more changes * move it out from mxin * last test fixes i hope * delete backbone utils fro...
[ { "path": "docs/source/en/backbones.md", "patch": "@@ -36,8 +36,8 @@ This guide describes the backbone class, backbones from the [timm](https://hf.co\n \n There are two backbone classes.\n \n-- [`~transformers.utils.BackboneMixin`] allows you to load a backbone and includes functions for extracting the feat...
2026-02-04T10:37:56
golang/go
baf6df06c0525b0bbcf43066f3360eb31b8e7941
a4ffeb9edd23e1edbea87eb9ebd8cbb84fad6efa
debug/elf: ajdust SectionOverlap test for proper fields The current SectionOverlap tests Size (addr) with Offset (file) This CL set this test for overlap of Size + Addr and Offset + FileSize Fixes #51939 Change-Id: Ied4c0b87f61c4d5e52139a8295c371f55abc776f Reviewed-on: https://go-review.googlesource.com/c/go/+/3959...
[ { "path": "src/debug/elf/file_test.go", "patch": "@@ -913,14 +913,32 @@ func TestNoSectionOverlaps(t *testing.T) {\n \t\tif sih.Type == SHT_NOBITS {\n \t\t\tcontinue\n \t\t}\n+\t\t// checking for overlap in file\n \t\tfor j, sj := range f.Sections {\n \t\t\tsjh := sj.SectionHeader\n-\t\t\tif i == j || sjh.T...
2022-03-26T07:15:45
electron/electron
90b64504fcc4d72272ee12a89133a45904739999
62d0dbea5a2382dacc2231a6150d0a4699498e4b
spec: Fix failing tests of Menu
[ { "path": "spec/api-menu-spec.js", "patch": "@@ -231,7 +231,7 @@ describe('menu module', function () {\n }\n }\n ])\n- menu.delegate.executeCommand(menu.items[0].commandId)\n+ menu.delegate.executeCommand({}, menu.items[0].commandId)\n })\n })\n \n@@ -244,7 +244,7 @@ ...
2016-06-22T04:36:10
vercel/next.js
f814fb80469ea1576057514df452aae28479541c
31d2b720d9b7215d412f6cdd6abc83bf064dd2a3
feat(next-swc): log swc download url if fails (#53176) <!-- 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: ## For Cont...
[ { "path": "packages/next/src/lib/download-swc.ts", "patch": "@@ -90,8 +90,14 @@ async function extractBinary(\n \n const registry = getRegistry()\n \n- await fetch(`${registry}${pkgName}/-/${tarFileName}`).then((res) => {\n+ const downloadUrl = `${registry}${pkgName}/-/${tarFileName}`\n+\n+ awa...
2023-07-26T20:13:37
nodejs/node
ab9b8e73eb1d664c0959e361478f47a546bda223
54a0553a9f0d3106fc0ab10296bdf4e17775ccbe
doc: fix some signatures of .end() methods In `.end()` methods, an optional `encoding` parameter makes sense only if the `data` (`chunk`) parameter is provided. PR-URL: https://github.com/nodejs/node/pull/29615 Reviewed-By: David Carlier <devnexen@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By...
[ { "path": "doc/api/http.md", "patch": "@@ -1175,7 +1175,7 @@ deprecated: REPLACEME\n \n See [`response.socket`][].\n \n-### response.end([data][, encoding][, callback])\n+### response.end([data[, encoding]][, callback])\n <!-- YAML\n added: v0.1.90\n changes:", "additions": 1, "deletions": 1, "l...
2019-09-19T13:21:36
huggingface/transformers
379ec6b9529becf0a464fa58ee783b6bdef4034a
71ade562dfa215b9db3c5f36bcba0414e3e193d9
Add EXAONE-MoE implementations (#43080) * Add EXAONE-MoE implementations Co-authored-by: Junwon Hwang <nuclear1221@gmail.com> Co-authored-by: Kibong Choi <rlqhd26@naver.com> * Add documentations of EXAONE-MoE * Fix EXAONE configs * Change model prefix into ExaoneMoe * Remove unnecessary classes and update EXAONE ...
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -509,6 +509,8 @@\n title: ESM\n - local: model_doc/exaone4\n title: EXAONE-4.0\n+ - local: model_doc/exaone_moe\n+ title: EXAONE-MoE\n - local: model_doc/falcon\n title: Falcon\n - local: model_doc/fa...
2026-02-03T17:27:35
golang/go
a41763539c7ad09a22720a517a28e6018ca4db0f
fb2a9d27e395af5bb0c88d0fa453bba868275800
net/http: handle 3xx responses with no Location RFC 7231 does not require that a 3xx response contain a Location header. When receiving such a response, just return it to the caller rather than treating it as an error. Fixes #49281. Change-Id: I66c06d81b0922016384a0f4ff32bf52e3a3d5983 Reviewed-on: https://go-review....
[ { "path": "src/net/http/client.go", "patch": "@@ -519,17 +519,6 @@ func redirectBehavior(reqMethod string, resp *Response, ireq *Request) (redirect\n \t\tshouldRedirect = true\n \t\tincludeBody = true\n \n-\t\t// Treat 307 and 308 specially, since they're new in\n-\t\t// Go 1.8, and they also require re-sen...
2022-01-04T18:34:50
electron/electron
fbfac6d49bd49c90106e68ae78e71d9789459ac3
395c3727020792a9a8975d4d8b5aa5f788f7fc93
Fix lint errors
[ { "path": "lib/browser/api/menu-item.js", "patch": "@@ -76,7 +76,7 @@ const MenuItem = (function () {\n \n if (this.role && rolesMap[this.role] && process.platform !== 'darwin' && (focusedWindow != null)) {\n const methodName = rolesMap[this.role]\n- if(methodInApp[methodName]) {\n+ ...
2016-06-21T16:07:56
vercel/next.js
31d2b720d9b7215d412f6cdd6abc83bf064dd2a3
39fd9177efdb27bf77fbeb6fb0186b2217c1b0bd
Reimplement stream cancellation (#52281) ### What? This reimplements our stream cancellation code for a few more cases: 1. Adds support in all stream-returning APIs 2. Fixes cancellation detection in node 16 3. Implements out-of-band detection, so can cancel in the middle of a read It also (finally) adds tes...
[ { "path": "packages/next-swc/crates/next-core/js/src/entry/app/edge-page-bootstrap.ts", "patch": "@@ -80,11 +80,27 @@ async function render(request: NextRequest, event: NextFetchEvent) {\n response.headers.append('Vary', RSC_VARY_HEADER)\n \n const writer = tranform.writable.getWriter()\n- result.pipe(...
2023-07-26T19:57:34
huggingface/transformers
01e860ebc6b827c88e2d75e70864d1b618364653
71956a81e3aff08e6c726e03ff457c489aa2eb65
fix norm_eps dtype (#43669) * fix norm_eps dtype * fix norm_eps dtype
[ { "path": "src/transformers/models/modernbert/configuration_modernbert.py", "patch": "@@ -155,7 +155,7 @@ def __init__(\n max_position_embeddings: int | None = 8192,\n initializer_range: float | None = 0.02,\n initializer_cutoff_factor: float | None = 2.0,\n- norm_eps: int | N...
2026-02-03T14:33:10
golang/go
9a53b472b5ed41f9fe79a73f1236ed3f45f8871a
ff6b6c61d7818e4a32402acbf65940afa372368e
crypto/x509: properly handle issuerUniqueID and subjectUniqueID Fixes #51754 Change-Id: I3bfa15db3497de9fb82d6391d87fca1ae9ba6543 Reviewed-on: https://go-review.googlesource.com/c/go/+/394297 Trust: Roland Shoemaker <roland@golang.org> Run-TryBot: Roland Shoemaker <roland@golang.org> Auto-Submit: Roland Shoemaker <ro...
[ { "path": "src/crypto/x509/parser.go", "patch": "@@ -941,10 +941,10 @@ func parseCertificate(der []byte) (*Certificate, error) {\n \t}\n \n \tif cert.Version > 1 {\n-\t\tif !tbs.SkipOptionalASN1(cryptobyte_asn1.Tag(1).Constructed().ContextSpecific()) {\n+\t\tif !tbs.SkipOptionalASN1(cryptobyte_asn1.Tag(1).C...
2022-03-22T00:26:26
electron/electron
3c92825e2aab64abfde6efeb54ac1069a0832221
712141f1533b484f86fc5d80413b485ceb16617b
Fix init list order
[ { "path": "atom/browser/api/frame_subscriber.cc", "patch": "@@ -17,8 +17,8 @@ FrameSubscriber::FrameSubscriber(v8::Isolate* isolate,\n content::RenderWidgetHostView* view,\n const FrameCaptureCallback& callback,\n ...
2016-06-21T12:32:22
vercel/next.js
ea4f6a02580c2bd533436dade72d8d695c07a55c
b0c1697f1e3f15109a9e00e32d41c7b4ca792eaa
add hydration error testcase when using `useId()` in a client component (#53223) Quick follow up to https://github.com/vercel/next.js/pull/53216 to add a missing test case
[ { "path": "test/development/acceptance-app/hydration-error.test.ts", "patch": "@@ -221,4 +221,41 @@ describe('Error overlay for hydration errors', () => {\n \n await cleanup()\n })\n+\n+ it('should not show a hydration error when using `useId` in a client component', async () => {\n+ const { clean...
2023-07-26T18:46:42
huggingface/transformers
71956a81e3aff08e6c726e03ff457c489aa2eb65
affcf45994a8b356f96c2a58e88ed8d679e46539
Llava onevision: output align for tests and add `image_sizes` input param (#43678) * unify expected output for llava_onevision model Signed-off-by: Liu, Kaixuan <kaixuan.liu@intel.com> * add `image_sizes` in test common Signed-off-by: Liu, Kaixuan <kaixuan.liu@intel.com> * change back to original code for lighton_...
[ { "path": "tests/models/lighton_ocr/test_modeling_lighton_ocr.py", "patch": "@@ -244,15 +244,11 @@ def _prepare_for_class(self, inputs_dict, model_class, return_labels=False):\n \"\"\"\n inputs_dict = super()._prepare_for_class(inputs_dict, model_class, return_labels=return_labels)\n \n- ...
2026-02-03T14:30:05
golang/go
ff6b6c61d7818e4a32402acbf65940afa372368e
434b2a5d0dbdfdce6327beb06ca03c02b3fd2785
net: skip tests that use netsh on the windows-arm64-10 builder These tests sometimes hang on Windows 10 on ARM64, due to what appears to be a platform bug. Since we have not yet observed any such hangs on the windows-arm64-11 builder, I am leaving the tests otherwise enabled on the theory that the platform bug may hav...
[ { "path": "src/net/net_windows_test.go", "patch": "@@ -8,6 +8,7 @@ import (\n \t\"bufio\"\n \t\"bytes\"\n \t\"fmt\"\n+\t\"internal/testenv\"\n \t\"io\"\n \t\"os\"\n \t\"os/exec\"\n@@ -205,6 +206,13 @@ func runCmd(args ...string) ([]byte, error) {\n }\n \n func checkNetsh(t *testing.T) {\n+\tif testenv.Build...
2022-03-31T18:58:20
huggingface/transformers
affcf45994a8b356f96c2a58e88ed8d679e46539
ab56d8a31ce6b4b0b69b50fd54315fb473903a6a
Fix CLIPOutput attentions not being returned (#43657) * Fix CLIPOutput attentions not being returned Fixes #43618 CLIPVisionTransformer and CLIPTextTransformer were not passing through the 'hidden_states' and 'attentions' from the encoder outputs to the BaseModelOutputWithPooling return value. This regression in v5...
[ { "path": "src/transformers/models/clip/modeling_clip.py", "patch": "@@ -587,6 +587,8 @@ def forward(\n return BaseModelOutputWithPooling(\n last_hidden_state=last_hidden_state,\n pooler_output=pooled_output,\n+ hidden_states=encoder_outputs.hidden_states,\n+ ...
2026-02-03T13:51:21
vercel/next.js
b0c1697f1e3f15109a9e00e32d41c7b4ca792eaa
66ffc3cd3907c195132adad6366244ecfa79d0da
Fix hydration errors caused by root ErrorOverlay (#53216) A bug was introduced in #52843 that causes hydration issues -- this fixes that by moving the previous logic into the existing `isError` path that doesn't trigger a call to `hydrateRoot` ensuring we are only doing this on the client tree Fixes #53110 and F...
[ { "path": "packages/next/src/client/app-index.tsx", "patch": "@@ -226,8 +226,6 @@ const StrictModeIfEnabled = process.env.__NEXT_STRICT_MODE_APP\n : React.Fragment\n \n function Root({ children }: React.PropsWithChildren<{}>): React.ReactElement {\n- const [hadRuntimeError, setHadRuntimeError] = React.us...
2023-07-26T18:17:59
huggingface/transformers
ab56d8a31ce6b4b0b69b50fd54315fb473903a6a
c20ba1948898c397127088118d84453550541e12
[`Attn`] Fixup interface usage after refactor (#43706) * fix * repo fix * make it one copy
[ { "path": "src/transformers/models/conditional_detr/modeling_conditional_detr.py", "patch": "@@ -490,9 +490,9 @@ def forward(\n key_states = self.k_proj(query_key_input).view(hidden_shape).transpose(1, 2)\n value_states = self.v_proj(hidden_states).view(hidden_shape).transpose(1, 2)\n \n- ...
2026-02-03T13:45:15
nodejs/node
54a0553a9f0d3106fc0ab10296bdf4e17775ccbe
aa32e13968a00ee4dccea4cf9aa388a6ff613d89
build: do not indent assignments in Makefile Indented assignment in a Makefile can be interpreted as a command in e.g. GNU Make 3.81 which results in the following error: ``` make: CPPLINT_QUIET: No such file or directory ``` PR-URL: https://github.com/nodejs/node/pull/29623 Reviewed-By: Sam Roberts <vieuxtech@gmail...
[ { "path": "Makefile", "patch": "@@ -1312,9 +1312,9 @@ else\n endif\n \n ifeq ($(V),1)\n-\tCPPLINT_QUIET =\n+CPPLINT_QUIET =\n else\n-\tCPPLINT_QUIET = --quiet\n+CPPLINT_QUIET = --quiet\n endif\n .PHONY: lint-cpp\n # Lints the C++ code with cpplint.py and check-imports.py.", "additions": 2, "deletion...
2019-09-20T01:42:37
golang/go
434b2a5d0dbdfdce6327beb06ca03c02b3fd2785
a84ef500213ef6c2a0e4bfd82253e9fcd28f1f62
syscall: relax output check in TestGroupCleanupUserNamespace “If you have a procedure with ten parameters, you probably missed some.” ― attr. Alan J. Perlis I argue that the same is true for hard-coded special cases. In TestGroupCleanupUserNamespace, instead of a curated list of strings observed in the wild we now c...
[ { "path": "src/syscall/exec_linux_test.go", "patch": "@@ -258,12 +258,14 @@ func TestGroupCleanup(t *testing.T) {\n \t\tt.Fatalf(\"Cmd failed with err %v, output: %s\", err, out)\n \t}\n \tstrOut := strings.TrimSpace(string(out))\n+\tt.Logf(\"id: %s\", strOut)\n+\n \texpected := \"uid=0(root) gid=0(root)\"\...
2022-03-31T20:51:32
vercel/next.js
4cb14b5110967d871c60a262c22a63ffecf09017
f389d815fd8730a7b952ed73ca61184c7a00f569
Fix grammatical error in docs (#53197) Changed 'created' to 'create' for improved grammar and clarity in the documentation. Find it under `Custom App` [https://nextjs.org/docs/pages/building-your-application/routing/custom-app](url)
[ { "path": "docs/03-pages/01-building-your-application/01-routing/04-custom-app.mdx", "patch": "@@ -5,7 +5,7 @@ description: Control page initialization and add a layout that persists for all\n \n Next.js uses the `App` component to initialize pages. You can override it and control the page initialization an...
2023-07-26T13:25:25
huggingface/transformers
c20ba1948898c397127088118d84453550541e12
432ddfadcdeb5c0b0d597fed6c1edc30efb511b6
Fix model/processor mismatch in SigLIP2 quantization example (#43652) The quantization example used mismatched model and processor: - Model: google/siglip2-large-patch16-512 - Processor: google/siglip2-base-patch16-224 This caused issues because the processor configuration didn't match the model being used. Fixed by ...
[ { "path": "docs/source/en/model_doc/siglip2.md", "patch": "@@ -125,7 +125,7 @@ from PIL import Image\n from transformers import AutoProcessor, AutoModel, BitsAndBytesConfig\n \n bnb_config = BitsAndBytesConfig(load_in_4bit=True)\n-model = AutoModel.from_pretrained(\"google/siglip2-large-patch16-512\", quant...
2026-02-03T13:37:19
nodejs/node
95d6ad67bfc9ef3e2f4705c81c88e32c5b1cea51
a861b84d5d260d580243741b8e2f1c2b7330a6a2
fs: remove unnecessary argument check Writable already assures that only Buffer's are passed to _write. Also this is not the "correct" way to handle errors inside _write. PR-URL: https://github.com/nodejs/node/pull/29043 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> ...
[ { "path": "lib/internal/fs/streams.js", "patch": "@@ -3,7 +3,6 @@\n const { Math, Object } = primordials;\n \n const {\n- ERR_INVALID_ARG_TYPE,\n ERR_OUT_OF_RANGE\n } = require('internal/errors').codes;\n const { validateNumber } = require('internal/validators');\n@@ -235,6 +234,9 @@ function WriteStream...
2019-08-08T09:18:39
golang/go
a84ef500213ef6c2a0e4bfd82253e9fcd28f1f62
31ee4bb28dff98f29654e7f1b43488641b3157db
cmd/go: prevent go work use panic when given a file The current implementation fails to identify that an argument to go work use is a file when expecting a directory, and panics when attempting to access it as a directory. This change checks arguments are directories and generates an error otherwise. Fixes #51749 Ch...
[ { "path": "src/cmd/go/internal/workcmd/use.go", "patch": "@@ -85,13 +85,14 @@ func runUse(ctx context.Context, cmd *base.Command, args []string) {\n \tlookDir := func(dir string) {\n \t\tabsDir, dir := pathRel(workDir, dir)\n \n-\t\tfi, err := os.Stat(filepath.Join(absDir, \"go.mod\"))\n+\t\tfi, err := fsys...
2022-03-17T15:36:52
electron/electron
8a9f2261d0d8a5b73353a23c876897bdea180567
74321dce74259d18163cbbb318aec431bf05c5a1
Add default error handler to remote promises (#6151) * Add failing spec for unhandled main process exception * Remove unused return * Use let/const instead of var * Add spec for unhandled rejection in renderer process * Prevent unhandled rejection defaul * Use once instead of on * Add default fulfill...
[ { "path": "lib/browser/rpc-server.js", "patch": "@@ -54,7 +54,7 @@ let getObjectPrototype = function (object) {\n // Convert a real value into meta data.\n let valueToMeta = function (sender, value, optimizeSimpleObject = false) {\n // Determine the type of value.\n- let meta = { type: typeof value }\n+ ...
2016-06-21T00:54:15
vercel/next.js
cbbfebf5da1723a76b46bf5a8851d34a785bcfb8
7160af3dbad82cb318153df70699a764751c199c
Handle basePath app-dir minimal case (#53189) This ensures even when the invoke headers aren't present we properly handle `basePath`. Tested against https://tmp-contents-idtza0iup-vtest314-ijjk-testing.vercel.app/hello/world Fixes: https://github.com/vercel/vercel/actions/runs/5660473696/job/15342856245?pr=10...
[ { "path": "packages/next/src/server/base-server.ts", "patch": "@@ -720,11 +720,11 @@ export default abstract class Server<ServerOptions extends Options = Options> {\n addRequestMeta(req, '_nextHadBasePath', true)\n }\n \n+ const useMatchedPathHeader =\n+ this.minimalMode && typeof ...
2023-07-26T04:05:47
huggingface/transformers
432ddfadcdeb5c0b0d597fed6c1edc30efb511b6
670f5ab6e798501554900867c722f7df186dda30
Fix crash of custom models in Notebook or Repl (#43690) * fix * oupsi
[ { "path": "src/transformers/modeling_utils.py", "patch": "@@ -1936,7 +1936,11 @@ def _can_set_attn_implementation(cls) -> bool:\n \"\"\"Detect whether the class supports setting its attention implementation dynamically. It is an ugly check based on\n opening the file, but avoids maintaining ...
2026-02-03T13:20:17
rust-lang/rust
ed1088eec4235e7bb86ff9ea4c231c5b5472f7b7
46ff0a85657fcc08f36fec0a06455536c3296121
Use `track_caller` more for better error spans in `clippy_dev`
[ { "path": "clippy_dev/src/utils.rs", "patch": "@@ -338,6 +338,7 @@ pub struct FileUpdater {\n dst_buf: String,\n }\n impl FileUpdater {\n+ #[track_caller]\n fn update_file_checked_inner(\n &mut self,\n tool: &str,\n@@ -361,6 +362,7 @@ impl FileUpdater {\n }\n }\n \n+ ...
2025-05-23T18:37:52
nodejs/node
872d803faf568ff71e8808cf9f469a38c67abf61
ef2e9e359c6dcc512beb7fe0356e05df907dd855
doc: remove the suffix number of the anchor link Remove the number '11' as the suffix anchor id for the 'Developer's Certificate of Origin 1.1'. PR-URL: https://github.com/nodejs/node/pull/29468 Refs: https://github.com/nodejs/node/pull/6257 Reviewed-By: David Carlier <devnexen@gmail.com> Reviewed-By: James M Snell <...
[ { "path": "CONTRIBUTING.md", "patch": "@@ -3,7 +3,7 @@\n * [Code of Conduct](#code-of-conduct)\n * [Issues](#issues)\n * [Pull Requests](#pull-requests)\n-* [Developer's Certificate of Origin 1.1](#developers-certificate-of-origin-11)\n+* [Developer's Certificate of Origin 1.1](#developers-certificate-of-or...
2019-09-06T05:42:37
golang/go
31ee4bb28dff98f29654e7f1b43488641b3157db
825309962fd6d8e34f7f38f51c4994395826d139
strconv: quote rune 007F as \x7f, not \u007f \u007f is not wrong but it's weird to use \u when we could use the shorter \x. Fixes #52062 Change-Id: Ica4bdc2463128051876f44e15297ed1e9edf1de8 Reviewed-on: https://go-review.googlesource.com/c/go/+/397255 Trust: Ian Lance Taylor <iant@golang.org> Reviewed-by: Rob Pike <...
[ { "path": "api/go1.1.txt", "patch": "@@ -371,7 +371,7 @@ pkg debug/elf, const ELFCLASSNONE = 0\n pkg debug/elf, const ELFDATA2LSB = 1\n pkg debug/elf, const ELFDATA2MSB = 2\n pkg debug/elf, const ELFDATANONE = 0\n-pkg debug/elf, const ELFMAG = \"\\u007fELF\"\n+pkg debug/elf, const ELFMAG = \"\\x7fELF\"\n pk...
2022-03-31T19:30:14
huggingface/transformers
670f5ab6e798501554900867c722f7df186dda30
36ec3bfa33ebf6c3b38a1d6808292aeea4aae84d
Simplify TrainingArguments docstring (#43568) * update docstring * fix * rm whitespace * fix * update docstring * Apply suggestion from @qgallouedec Co-authored-by: Quentin Gallouédec <45557362+qgallouedec@users.noreply.github.com> * quentin suggestions * Apply suggestions from code review Co-authored-by: Ste...
[ { "path": "src/transformers/training_args.py", "patch": "@@ -194,276 +194,469 @@ def _convert_str_dict(passed_value: dict):\n return passed_value\n \n \n-# TODO: `TrainingArguments` users rely on it being fully mutable. In the future see if we can narrow this to a few keys: https://github.com/huggingfac...
2026-02-03T12:52:07
vercel/next.js
7160af3dbad82cb318153df70699a764751c199c
d0cbf359dd3c3c60a71f00f04fc84daa4f3445b1
fix(next/image): washed out blur placeholder (#52583) Fixes #52548 This PR fixes the issue of the `<Image />` "blur" placeholder where the placeholder image appears "washed out" and feathered around the edges. The fix does NOT involve any API changes - only the underlying SVG filter is updated. The filter wor...
[ { "path": "packages/next/src/shared/lib/image-blur-svg.ts", "patch": "@@ -16,20 +16,19 @@ export function getImageBlurSvg({\n blurDataURL: string\n objectFit?: string\n }): string {\n- const std = blurWidth && blurHeight ? '1' : '20'\n- const svgWidth = blurWidth || widthInt\n- const svgHeight = blur...
2023-07-26T01:45:24
electron/electron
3529f8a40af1d8dca0aea02533fed486035fe6d0
a35915ee9fabcfbec73ed69ba722bb8c1d21fcae
Frame subscriber bugfix + added only_damaged option
[ { "path": "atom/browser/api/atom_api_web_contents.cc", "patch": "@@ -1195,11 +1195,18 @@ void WebContents::SendInputEvent(v8::Isolate* isolate,\n }\n \n void WebContents::BeginFrameSubscription(\n- const FrameSubscriber::FrameCaptureCallback& callback) {\n+ mate::Arguments* args) {\n+ FrameSubscriber::...
2016-06-21T00:15:39
nodejs/node
b82ffd952633f663d2c5b9074f037430f302b44a
1fceccb4cfe250dffe9455fd2158db452376c8cc
doc: fix require call for spawn() in code example PR-URL: https://github.com/nodejs/node/pull/29621 Reviewed-By: David Carlier <devnexen@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "doc/api/child_process.md", "patch": "@@ -112,7 +112,7 @@ bat.on('exit', (code) => {\n \n ```js\n // OR...\n-const { exec } = require('child_process');\n+const { exec, spawn } = require('child_process');\n exec('my.bat', (err, stdout, stderr) => {\n if (err) {\n console.error(err);", "ad...
2019-09-19T21:49:55
huggingface/transformers
36ec3bfa33ebf6c3b38a1d6808292aeea4aae84d
b6a202f868d261c7404d331cf9d8ce03aec12fe2
Composite model inherit automatically all important properties from their children (#43691) * add * add them all * small fix * update example * fix test * fix * add test * update docstring
[ { "path": "examples/modular-transformers/modeling_new_task_model.py", "patch": "@@ -16,10 +16,10 @@\n from ...generation import GenerationMixin\n from ...masking_utils import create_masks_for_generate\n from ...modeling_flash_attention_utils import FlashAttentionKwargs\n-from ...modeling_outputs import Base...
2026-02-03T11:33:22
golang/go
825309962fd6d8e34f7f38f51c4994395826d139
bdd0f0f780cf650ed7844dbc1bcfab20460783cc
cmd/go: allow either test to complete first in TestScript/test_chatty_parallel_success_run This fixes a failure mode observed in https://build.golang.org/log/7b28a914b1914dabe94f7c4e36ad6466ebd4de5d, in which the expected CONT lines are present but the test completions are reported in a different (but valid) order. C...
[ { "path": "src/cmd/go/testdata/script/test_chatty_parallel_success_run.txt", "patch": "@@ -2,7 +2,7 @@\n # multiple parallel outputs have the appropriate CONT lines between them.\n go test -parallel 3 chatty_parallel -v\n \n-stdout '=== RUN TestInterruptor/interruption\\n=== CONT TestLog\\n chatty_par...
2022-03-31T15:03:00
vercel/next.js
e60a1e747c3f521fc24dfd9ee2989e13afeb0a9b
84197ece65d249f0f42ce32f5af204a34e107503
Fix minimal basePath handling (#53174) We no longer handle basePath stripping further down in minimal mode so this prevents the re-adding we used to do. Manually tested with https://33-base-path-gsp-404-m8w6hhs1m-vtest314-ijjk-testing.vercel.app/docs/api/hello Fixes: [slack thread](https://vercel.slack.com/ar...
[ { "path": "packages/next/src/server/base-server.ts", "patch": "@@ -930,9 +930,7 @@ export default abstract class Server<ServerOptions extends Options = Options> {\n for (const key of routeParamKeys) {\n delete parsedUrl.query[key]\n }\n- parsedUrl.pathname = `${this....
2023-07-25T19:33:43
huggingface/transformers
b6a202f868d261c7404d331cf9d8ce03aec12fe2
dab8734f275512cbcd2132e64b79a614008c4075
Update configuration_qwen3.py (#43703) wrong `rms_norm_type`
[ { "path": "src/transformers/models/qwen3/configuration_qwen3.py", "patch": "@@ -134,7 +134,7 @@ def __init__(\n hidden_act: str | None = \"silu\",\n max_position_embeddings: int | None = 32768,\n initializer_range: float | None = 0.02,\n- rms_norm_eps: int | None = 1e-6,\n+ ...
2026-02-03T10:21:30
nodejs/node
8235ffd7863305485dbbe27e7ed8bbe9f369d19d
8f06773a8cd73aef37ddc8f68d2c8202f1a8c45a
console: skip/strip %c formatting Fixes: https://github.com/nodejs/node/issues/29605 Refs: https://console.spec.whatwg.org PR-URL: https://github.com/nodejs/node/pull/29606 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Michaël Zasso <targos@protonmail.com> R...
[ { "path": "doc/api/util.md", "patch": "@@ -185,6 +185,9 @@ property take precedence over `--trace-deprecation` and\n <!-- YAML\n added: v0.5.3\n changes:\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/29606\n+ description: The `%c` specifier is ignored now.\n - version: v11....
2019-09-18T21:21:47
golang/go
bdd0f0f780cf650ed7844dbc1bcfab20460783cc
23756207fb68c34ae15a030319dc31248e21cf45
cmd/compile: better propagation of desired registers This fixes two independent problems: We normally propagate desired registers backwards through opcodes that are marked resultInArg0. Unfortunately for the desired register computation, ADDQconst is not marked as resultInArg0. This is because the amd64 backend can w...
[ { "path": "src/cmd/compile/internal/ssa/regalloc.go", "patch": "@@ -1237,7 +1237,7 @@ func (s *regAllocState) regalloc(f *Func) {\n \t\t\t\tdesired.clobber(j.regs)\n \t\t\t\tdesired.add(v.Args[j.idx].ID, pickReg(j.regs))\n \t\t\t}\n-\t\t\tif opcodeTable[v.Op].resultInArg0 {\n+\t\t\tif opcodeTable[v.Op].resu...
2022-03-26T17:05:04
vercel/next.js
e1133cf0970e80d8f88e6c3516881780703eb7f5
d68097553730d859a6be91158fc3e489f971ea57
fix(edge): allow `Request` cloning via `NextRequest` (#53157) ### What? Allow the following: ```ts new NextRequest(new Request(...)) ``` ### Why? Cloning a request by passing it to the constructor of another `Request` is allowed by the spec: https://developer.mozilla.org/en-US/docs/Web/API/Request/Request#paramete...
[ { "path": "packages/next/src/server/web/spec-extension/request.ts", "patch": "@@ -20,7 +20,8 @@ export class NextRequest extends Request {\n const url =\n typeof input !== 'string' && 'url' in input ? input.url : String(input)\n validateURL(url)\n- super(url, init)\n+ if (input instanceo...
2023-07-25T11:36:39
huggingface/transformers
dab8734f275512cbcd2132e64b79a614008c4075
cf3fda19cc3d0c7360e08f45d8f6819c1548b185
fix gptoss tp crash (#43695) Signed-off-by: Wang, Yi <yi.a.wang@intel.com>
[ { "path": "src/transformers/models/gpt_oss/configuration_gpt_oss.py", "patch": "@@ -36,7 +36,7 @@ class GptOssConfig(PreTrainedConfig):\n \"layers.*.self_attn.k_proj\": \"colwise\",\n \"layers.*.self_attn.v_proj\": \"colwise\",\n \"layers.*.self_attn.o_proj\": \"rowwise\",\n- ...
2026-02-03T10:20:29
electron/electron
5e459b057e2b2f40c6262097123c68aec0179b98
6bd1a2dec604033b4e0771dad902300af7ea43cc
Use fixed ID for app indicators
[ { "path": "atom/browser/ui/tray_icon_gtk.cc", "patch": "@@ -4,14 +4,22 @@\n \n #include \"atom/browser/ui/tray_icon_gtk.h\"\n \n-#include \"base/guid.h\"\n+#include \"atom/browser/browser.h\"\n+#include \"base/strings/stringprintf.h\"\n #include \"base/strings/utf_string_conversions.h\"\n #include \"chrome/...
2016-06-20T08:35:45
nodejs/node
e74f30894c46c94aa1329e8462f811b8d5e54a91
f634f37be0f9464ab6e5318cd88af89cd416b5a6
src: fix closing weak `HandleWrap`s on GC In 0af62aae07ccbb3783030367ffe4, this was overlooked, with it possibly leading to hard crashes. Refs: https://github.com/nodejs/node/pull/29317 PR-URL: https://github.com/nodejs/node/pull/29640 Reviewed-By: Ben Coe <bencoe@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com...
[ { "path": "src/handle_wrap.cc", "patch": "@@ -72,11 +72,11 @@ void HandleWrap::Close(Local<Value> close_callback) {\n if (state_ != kInitialized)\n return;\n \n- CHECK_EQ(false, persistent().IsEmpty());\n uv_close(handle_, OnClose);\n state_ = kClosing;\n \n- if (!close_callback.IsEmpty() && clo...
2019-09-21T00:15:32
huggingface/transformers
cf3fda19cc3d0c7360e08f45d8f6819c1548b185
c640b63a0f780e2a0ff4d221bf5fbe732c23b06b
[CB] Keep order of incoming requests (#43626) * CB now keeps the order of incoming requests despite sorting * Fix test order * Add reordering for generate batch * Lower nb of generated tokens and add details
[ { "path": "src/transformers/generation/continuous_batching/continuous_api.py", "patch": "@@ -691,14 +691,17 @@ def add_requests(\n streaming: bool = False,\n record_timestamps: bool = False,\n ) -> None:\n- # If there is prefix sharing, we sort the inputs to maximize cache hits\n+...
2026-02-03T09:59:44
golang/go
96081f854547353caaa77b795974f76b24572493
9743fdd097171cada6231503974209edc5400ee8
cmd/compile: remove a false dependency for TZCNT LZCNT/TZCNT on some Intel CPUs suffer from a false dependency on the destination register. The problem was mentioned in the GCC Ticket: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=62011#c7 and fixed with https://gcc.gnu.org/viewcvs?rev=214112&root=gcc&view=rev Change...
[ { "path": "src/cmd/compile/internal/amd64/ssa.go", "patch": "@@ -265,8 +265,7 @@ func ssaGenValue(s *ssagen.State, v *ssa.Value) {\n \n \tcase ssa.OpAMD64BLSIQ, ssa.OpAMD64BLSIL,\n \t\tssa.OpAMD64BLSMSKQ, ssa.OpAMD64BLSMSKL,\n-\t\tssa.OpAMD64BLSRQ, ssa.OpAMD64BLSRL,\n-\t\tssa.OpAMD64TZCNTQ, ssa.OpAMD64TZCNT...
2021-12-06T15:46:25
vercel/next.js
48375e492b32b946a92d68c3cbee76384be60db5
8dede2a4f5683f6fc4aa23d20b23f17af8be4f57
chore(ci): fix validate-docs-links for non-PR (#53129) This PR fixes an issue when `validate-docs-links` is run on a branch like `canary` instead of a branch from a PR. Example error message: https://github.com/vercel/next.js/actions/runs/5649063425/job/15302604957
[ { "path": ".github/actions/validate-docs-links/src/index.ts", "patch": "@@ -59,8 +59,14 @@ const COMMENT_TAG = '<!-- LINK_CHECKER_COMMENT -->'\n const { context, getOctokit } = github\n const octokit = getOctokit(process.env.GITHUB_TOKEN!)\n const { owner, repo } = context.repo\n-const pullRequest = context...
2023-07-24T21:34:45
huggingface/transformers
c640b63a0f780e2a0ff4d221bf5fbe732c23b06b
bdc583d4dbf2b0a344f225aa144122601f34acde
Fix Apertus model loading (NotImplementedError: Cannot copy out of meta tensor; no data!) (#43473) Fix meta tensor loading NotImplementedError: Cannot copy out of meta tensor; no data! Co-authored-by: Cyril Vallez <cyril.vallez@huggingface.co>
[ { "path": "src/transformers/activations.py", "patch": "@@ -247,8 +247,8 @@ def __init__(\n self.register_buffer(\"eps\", torch.tensor(eps, dtype=dtype))\n self.with_vector_loads = with_vector_loads\n # Temporary until xIELU CUDA fully implemented\n- self._beta_scalar = float(s...
2026-02-03T09:50:37
nodejs/node
f634f37be0f9464ab6e5318cd88af89cd416b5a6
9f830f37daf55a2c903153e1681873a8cd61baee
deps: V8: cherry-pick deac757 Original commit message: [debugger] Fix code coverage for break/return inside switch-case Case statements have a list of statements associated with them, but are not blocks, and were hence not fixed-up correctly for code coverage. This CL also applies the fix-up to the "...
[ { "path": "common.gypi", "patch": "@@ -39,7 +39,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.12',\n+ 'v8_embedder_string': '-node.13',\n \n ##### V8 defaults for Node.js #####\n...
2019-09-20T02:50:23
golang/go
9743fdd097171cada6231503974209edc5400ee8
40504892c1720a3a36d82c492fd2302b7ccb870a
go/build: set allTags even when short-circuiting x_GOOS_GOARCH.go Fixes #52053 Change-Id: I0e1f2737f97a4656913b34a731d8de2c77a15b4d Reviewed-on: https://go-review.googlesource.com/c/go/+/396918 Trust: Ian Lance Taylor <iant@golang.org> Run-TryBot: Ian Lance Taylor <iant@golang.org> Reviewed-by: Bryan Mills <bcmills@g...
[ { "path": "src/go/build/build.go", "patch": "@@ -1974,6 +1974,10 @@ func (ctxt *Context) goodOSArchFile(name string, allTags map[string]bool) bool {\n \t}\n \tn := len(l)\n \tif n >= 2 && knownOS[l[n-2]] && knownArch[l[n-1]] {\n+\t\tif allTags != nil {\n+\t\t\t// In case we short-circuit on l[n-1].\n+\t\t\t...
2022-03-30T23:36:14
vercel/next.js
8dede2a4f5683f6fc4aa23d20b23f17af8be4f57
d8f4fa89466bf52c43abb7f89d1c139686775343
chore(test): fix flaky tsconfig.json test (#53132) This test was [sometimes failing]( https://github.com/vercel/next.js/actions/runs/5649220907/job/15303327768?pr=53130#step:27:230) because the `tsconfig.json` is [written as an empty object](https://github.com/vercel/next.js/blob/a26bac96048c7231271b5947eaf80241e...
[ { "path": "test/development/correct-tsconfig-defaults/index.test.ts", "patch": "@@ -28,13 +28,14 @@ describe('correct tsconfig.json defaults', () => {\n \n await next.start()\n \n+ let content: string\n // wait for tsconfig to be written\n await check(async () => {\n- await nex...
2023-07-24T21:33:55
huggingface/transformers
bdc583d4dbf2b0a344f225aa144122601f34acde
683c3e9f3e0c0654497e35a2b034b011b532132e
Remove `num_frames` in ASR pipeline (#43546) * fix pop Signed-off-by: jiqing-feng <jiqing.feng@intel.com> * rm num_frames in asr pipeline Signed-off-by: jiqing-feng <jiqing.feng@intel.com> * rm return_token_timestamps Signed-off-by: jiqing-feng <jiqing.feng@intel.com> --------- Signed-off-by: jiqing-feng <jiqin...
[ { "path": "src/transformers/pipelines/automatic_speech_recognition.py", "patch": "@@ -480,10 +480,8 @@ def preprocess(self, inputs, chunk_length_s=0, stride_length_s=None):\n inputs,\n sampling_rate=self.feature_extractor.sampling_rate,\n ...
2026-02-03T09:48:21
electron/electron
a3dd6c635fa3fb32d362661164308d64f9f2246d
3428874907ca14099c39fd58149dfda1b37ed494
Avoid calling Environment::GetCurrent for unjected contexts It seems to cause crashes when it is called for contexts that do not have node integrations.
[ { "path": "atom/renderer/atom_renderer_client.cc", "patch": "@@ -282,6 +282,11 @@ void AtomRendererClient::DidCreateScriptContext(\n \n void AtomRendererClient::WillReleaseScriptContext(\n v8::Handle<v8::Context> context, content::RenderFrame* render_frame) {\n+ // Only allow node integration for the m...
2016-06-20T07:51:42
rust-lang/rust
ed96f00682c8c170c7fd680eef9bd6c2021669f9
2a023bf80a6fbd6a06d5460a34eb247b986286ed
fix typos in function names in the `target_feature` test
[ { "path": "tests/rustdoc-json/attrs/target_feature.rs", "patch": "@@ -6,17 +6,17 @@\n pub fn test1() {}\n \n //@ is \"$.index[?(@.name=='test2')].attrs\" '[\"#[target_feature(enable=\\\"avx\\\", enable=\\\"avx2\\\")]\"]'\n-//@ is \"$.index[?(@.name=='test1')].inner.function.header.is_unsafe\" false\n+//@ is...
2025-07-10T23:27:39
nodejs/node
ba3be578d8bbca1bafc391984b0e6f037507dcbc
dc7c7b83bedb1723344f3bf2e31bb666675e5fec
stream: don't emit finish on error After 'error' only 'close' should be emitted. PR-URL: https://github.com/nodejs/node/pull/28979 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "doc/api/stream.md", "patch": "@@ -2425,7 +2425,8 @@ and `stream.Readable` classes, respectively. The `'finish'` event is emitted\n after [`stream.end()`][stream-end] is called and all chunks have been processed\n by [`stream._transform()`][stream-_transform]. The `'end'` event is emitted\n after ...
2019-08-05T14:07:49
golang/go
913ecf492d99801eefdebd7eb6773a5ea98107f8
c5c66d78b21074c562ece01d6682d4a499815786
cmd/compile: fix clobberFlags for BSWAP BSWAP does not affect EFLAGS on neither 386 nor x64. Set the clobberFlags value accordingly. Change-Id: Ib9e88400607fea44bb51fe95dc4d77e7cb54bfec Reviewed-on: https://go-review.googlesource.com/c/go/+/391494 Reviewed-by: Keith Randall <khr@golang.org> Run-TryBot: Keith Randall ...
[ { "path": "src/cmd/compile/internal/ssa/gen/386Ops.go", "patch": "@@ -306,7 +306,7 @@ func init() {\n \t\t{name: \"BSRL\", argLength: 1, reg: gp11, asm: \"BSRL\", clobberFlags: true}, // arg0 # of high-order zeroes ; undef if zero\n \t\t{name: \"BSRW\", argLength: 1, reg: gp11, asm: \"BSRW\", clobberFlags: ...
2022-03-10T14:35:17
huggingface/transformers
683c3e9f3e0c0654497e35a2b034b011b532132e
aefa23ad1c52de9c115f3d762fe1a1eda643275a
remove ipex and ccl for xpu and cpu (#42852) * remove ipex and ccl for xpu and cpu, since all ipex optimizations are upstreamed to PyTorch or kernels-community; ccl for xpu is upstreamed to PyTorch built-in xccl backend; ccl for cpu will use gloo Signed-off-by: Yao, Matrix <matrix.yao@intel.com> * fix style Signed-...
[ { "path": "docs/source/en/perf_train_gpu_one.md", "patch": "@@ -277,7 +277,6 @@ Refer to the table below to help you choose the right backend for your training\n | ofi | uses TorchScripts [optimize_for_inference](https://pytorch.org/docs/stable/generated/torch.jit.optimize_for_inference.html#torch-jit-optim...
2026-02-03T09:40:29
vercel/next.js
d8f4fa89466bf52c43abb7f89d1c139686775343
9da305fe320b89ee2f8c3cfb7ecbf48856368913
Fix not found hangs the build with overridden node env (#53106) ### Why In #52985 the not found solution introduces `NODE_ENV` to determine if it his the not found boundary and should render the not found, as in the next build mode, we have `/_not-found` as a special route which has a empty parallel route, but in nex...
[ { "path": "packages/next/src/server/app-render/app-render.tsx", "patch": "@@ -102,6 +102,11 @@ function ErrorHtml({\n )\n }\n \n+function createNotFoundLoaderTree(loaderTree: LoaderTree): LoaderTree {\n+ // Align the segment with parallel-route-default in next-app-loader\n+ return ['__DEFAULT__', {}, lo...
2023-07-24T21:00:53
nodejs/node
4396bebfe1fc024ff6badf2ead40f1b5127d4e67
ac4195992290ef6f0b62e2b218ee0dba059f2a76
module: error for CJS .js load within type: module PR-URL: https://github.com/nodejs/node/pull/29492 Reviewed-By: Jan Krems <jan.krems@gmail.com>
[ { "path": "lib/internal/modules/cjs/loader.js", "patch": "@@ -212,16 +212,17 @@ Module._debug = deprecate(debug, 'Module._debug is deprecated.', 'DEP0077');\n // -> a.<ext>\n // -> a/index.<ext>\n \n-// Check if the directory is a package.json dir.\n-const packageMainCache = Object.create(null);\n-// Ex...
2019-09-08T15:20:43
golang/go
c5c66d78b21074c562ece01d6682d4a499815786
b1e83c0513cc009192ebb6fcf5e232adf23552d4
debug/pe: skip TestReadCOFFSymbolAuxInfo on big-endian systems Disable the new TestReadCOFFSymbolAuxInfo testpoint on big endian systems, pending resolution of issue 52079. The newly added interfaces for reading symbol definition aux info is not working properly when reading PE objects obj big-endian systems. Updates...
[ { "path": "src/debug/pe/symbols_test.go", "patch": "@@ -6,6 +6,7 @@ package pe\n \n import (\n \t\"fmt\"\n+\t\"runtime\"\n \t\"testing\"\n )\n \n@@ -17,6 +18,13 @@ type testpoint struct {\n }\n \n func TestReadCOFFSymbolAuxInfo(t *testing.T) {\n+\n+\tswitch runtime.GOARCH {\n+\tcase \"mips\", \"mips64\", \"...
2022-03-31T17:15:51
rust-lang/rust
a745e2cae3640fdd478a6a11d25976d80d19d8ed
d964e55de2c43e2a5eb7ab3889ca73c8d4ce1370
fix(arithmetic_side_effects): don't warn on `NonZeroU*.get() - 1`
[ { "path": "clippy_lints/src/operators/arithmetic_side_effects.rs", "patch": "@@ -3,12 +3,11 @@ use clippy_config::Conf;\n use clippy_utils::consts::{ConstEvalCtxt, Constant};\n use clippy_utils::diagnostics::span_lint;\n use clippy_utils::ty::is_type_diagnostic_item;\n-use clippy_utils::{expr_or_init, is_fr...
2025-07-09T18:37:20
huggingface/transformers
aefa23ad1c52de9c115f3d762fe1a1eda643275a
8012fde3579718f750ef2bd5fd0e8ddf6bcabd6c
🚨 Refactor DETR to updated standards (#41549) * refactor attention and many other * remove return_dict interface * improve variable names * use _can_record_outputs and add real support for pixel and queries masks, vision input embeds and query embeds * split self attention and cross attention * nits * standardi...
[ { "path": "src/transformers/conversion_mapping.py", "patch": "@@ -62,6 +62,8 @@\n \"hunyuan_v1_moe\": \"qwen2_moe\",\n \"flex_olmo\": \"qwen2_moe\",\n \"olmoe\": \"qwen2_moe\",\n+ \"rt_detr_v2\": \"rt_detr\",\n+ \"pp_doclayout_v3\": \"rt_detr\",\n }\n \n \n@@ -224,6 +226,52 @@ def _build_c...
2026-02-02T23:42:50
nodejs/node
d36cef7496fb6c9549eb599407bd8ebaeb3d7152
566479179082154decc2af59dbb64e53f200e970
deps: V8: cherry-pick 35c6d4d Original commit message: Make code generator python3.7 compatible (async keyword). Change-Id: Ifcd8b8cb1de60a007c7bbd4564d7869e83cb7109 Fixes: https://github.com/nodejs/node/issues/29548 Refs: - https://github.com/nodejs/node/issues/29548#issuecomment-531717985 - https://github...
[ { "path": "deps/v8/third_party/inspector_protocol/code_generator.py", "patch": "@@ -43,6 +43,9 @@ def json_object_hook(object_dict):\n items = [(k, os.path.join(output_base, v) if k == \"output\" else v)\n for (k, v) in items]\n keys, values = list(zip(*items))\n+ # 'async' i...
2019-09-16T20:54:01
golang/go
37065847d87df92b5eb246c88ba2085efcf0b331
5138401209a70475451561b18d2c6d92bda93810
crypto/elliptic: tolerate zero-padded scalars in generic P-256 Fixes #52075 Change-Id: I595a7514c9a0aa1b9c76aedfc2307e1124271f27 Reviewed-on: https://go-review.googlesource.com/c/go/+/397135 Trust: Filippo Valsorda <filippo@golang.org> Run-TryBot: Filippo Valsorda <filippo@golang.org> TryBot-Result: Gopher Robot <gob...
[ { "path": "src/crypto/elliptic/p256.go", "patch": "@@ -51,7 +51,7 @@ func p256GetScalar(out *[32]byte, in []byte) {\n \tn := new(big.Int).SetBytes(in)\n \tvar scalarBytes []byte\n \n-\tif n.Cmp(p256Params.N) >= 0 {\n+\tif n.Cmp(p256Params.N) >= 0 || len(in) > len(out) {\n \t\tn.Mod(n, p256Params.N)\n \t\tsc...
2022-03-31T16:31:58
rust-lang/rust
0e00ba127bd9babd88d488060fd85ff9b840a80e
f6d38909b4984a172023a555b7faf3d11b87c9de
Upgrade dependencies to the latest version This picks up a fix in `rustc_apfloat` [1] that resolves a problem with `fma`. [1]: https://github.com/rust-lang/rustc_apfloat/releases/tag/rustc_apfloat-v0.2.3%2Bllvm-462a31f5a5ab
[ { "path": "library/compiler-builtins/builtins-test/Cargo.toml", "patch": "@@ -12,7 +12,7 @@ license = \"MIT AND Apache-2.0 WITH LLVM-exception AND (MIT OR Apache-2.0)\"\n # `xoshiro128**` is used for its quality, size, and speed at generating `u32` shift amounts.\n rand_xoshiro = \"0.7\"\n # To compare floa...
2025-07-10T21:50:49
huggingface/transformers
56c4b5e37f92b4ee8716beca3b26dee5c5e63dc5
78e4f885286fc8c811685c5a59178e579b9e5879
🚨Fix floating-point precision in JanusImageProcessor resize (#43187) * Fix floating-point precision in JanusImageProcessor resize * Regenerate image_processing_janus.py from modular file * Fix int() truncation in deepseek_vl and janus_fast * fix-repo * fix integration tests --------- Co-authored-by: yonigozlan ...
[ { "path": "src/transformers/models/deepseek_vl/image_processing_deepseek_vl.py", "patch": "@@ -189,8 +189,8 @@ def resize(\n delta = size / max_size\n # Largest side becomes `size` and the other side is scaled according to the aspect ratio.\n output_size_nonpadded = [\n- m...
2026-02-02T18:47:33
electron/electron
ea38916c270b55df9fcc3c2c8d2fa6898ef64027
c4c768ea8c2746f9765a250a9c9143ee3e5e71aa
Fix typo in DevTools Extensions tutorial
[ { "path": "docs/tutorial/devtools-extension.md", "patch": "@@ -45,7 +45,7 @@ Following Devtools Extensions are tested and guaranteed to work in Electron:\n \n ### What should I do if a DevTools Extension is not working?\n \n-Fist please make sure the extension is still being maintained, some extensions\n+Fi...
2016-06-19T16:24:00
nodejs/node
954bf56c1e9a4a1c195114f61d9b0fe39c80ca2e
4d798e1b1bbbbbf0a45fb478e153621fc37bb242
doc: fix nits in net.md * Add missing types. * Fix function signatures. * Fix typos. * Unify comment style. * Fix ASCII sorting of bottom references. PR-URL: https://github.com/nodejs/node/pull/29577 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Anto Aravinth <anto.aravinth.cse@gmail.com> Reviewed-By: Ric...
[ { "path": "doc/api/net.md", "patch": "@@ -130,7 +130,7 @@ as a string.\n const server = net.createServer((socket) => {\n socket.end('goodbye\\n');\n }).on('error', (err) => {\n- // handle errors here\n+ // Handle errors here.\n throw err;\n });\n \n@@ -147,7 +147,7 @@ Don't call `server.address()` unt...
2019-09-16T11:38:05
golang/go
378221bd6e73bdc21884fed9e32f53e6672ca0cd
cdee8004ab5fa71d705979eaaee0948200256ed0
debug/pe: add APIs for reading section def aux info Add hooks to support reading of section definition symbol aux data (including COMDAT information) from the aux symbols associated with section definition symbols. The COFF symbol array made available by "pe.File" includes entries for aux symbols, but doesn't expose t...
[ { "path": "api/next/51868.txt", "patch": "@@ -0,0 +1,36 @@\n+pkg debug/pe, const IMAGE_COMDAT_SELECT_ANY = 2 #51686\n+pkg debug/pe, const IMAGE_COMDAT_SELECT_ANY ideal-int #51686\n+pkg debug/pe, const IMAGE_COMDAT_SELECT_ASSOCIATIVE = 5 #51686\n+pkg debug/pe, const IMAGE_COMDAT_SELECT_ASSOCIATIVE ideal-int ...
2022-03-22T12:49:52
huggingface/transformers
78e4f885286fc8c811685c5a59178e579b9e5879
a9cf5e533981e0c9c2b0a9c7271a392b36345004
Docs: fix typos in Get started (index, quicktour) (#43666) - index.md: "multimodal model" → "multimodal models" - quicktour.md: "Pytorch" → "PyTorch"
[ { "path": "docs/source/en/index.md", "patch": "@@ -20,7 +20,7 @@ rendered properly in your Markdown viewer.\n </h3>\n \n Transformers acts as the model-definition framework for state-of-the-art machine learning models in text, computer\n-vision, audio, video, and multimodal model, for both inference and tra...
2026-02-02T17:47:52
vercel/next.js
d8c4700a37abfe4d49fc13c2e253a9822cd54a4f
909dad557db501602f2121fbda5085e608c4ee26
refactor(codemod): replace chalk with picocolors (#53115) The PR replaces `chalk` inside `@next/codemod` with `picocolors`. Generally, `@next/codemod` is used through `npx`/`pnpx` as it serves as a sort of "one-time fix". By replacing `chalk` with the `picocolors` (which is 14 times smaller and 2 times faster), we ca...
[ { "path": "packages/next-codemod/bin/cli.ts", "patch": "@@ -13,7 +13,7 @@ import inquirer from 'inquirer'\n import meow from 'meow'\n import path from 'path'\n import execa from 'execa'\n-import chalk from 'chalk'\n+import { yellow } from 'picocolors'\n import isGitClean from 'is-git-clean'\n import { unins...
2023-07-24T17:56:45