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 | 3c3ba37ba57b66ccced0d9c41e1f0c0f48868a20 | 118d4e62c380a4dfb7a0c53a0001a19d0cee6567 | tests: `PointeeSized` bounds with extern types
These tests necessarily need to change now that `?Sized` is not
sufficient to accept extern types and `PointeeSized` is now necessary. In
addition, the `size_of_val`/`align_of_val` test can now be changed to
expect an error. | [
{
"path": "tests/codegen/dst-offset.rs",
"patch": "@@ -3,16 +3,17 @@\n //@ compile-flags: -C no-prepopulate-passes -Copt-level=0\n \n #![crate_type = \"lib\"]\n-#![feature(extern_types)]\n+#![feature(extern_types, sized_hierarchy)]\n \n+use std::marker::PointeeSized;\n use std::ptr::addr_of;\n \n // Hack to... | 2025-01-22T18:07:04 |
huggingface/transformers | e54defcfc265a1cc4f62edbf977747a0a443c812 | b3bd815786c36f4e6c3791fae0a96cac86658b32 | [`Flex Attn`] Fix lse x attention sinks logic (#41249)
fix | [
{
"path": "src/transformers/integrations/flex_attention.py",
"patch": "@@ -282,10 +282,10 @@ def score_mod(score, batch_idx, head_idx, q_idx, kv_idx):\n # On CPU we must skip returning LSE due to a runtime issue; elsewhere, follow PyTorch API and return it\n return_lse = query.device.type != \"cpu\"... | 2025-10-02T15:49:39 |
nodejs/node | 296712602b4cba785ccda72623c0cbe3b4584abb | 39f4158bc38ff2925b86563082c8d26ab3d20b17 | doc: fix comma of the list in worker_threads.md
PR-URL: https://github.com/nodejs/node/pull/26838
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Masashi Hirano <shisama07@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Vse Mozhet Byt <vsem... | [
{
"path": "doc/api/worker_threads.md",
"patch": "@@ -375,7 +375,7 @@ Notable differences inside a Worker environment are:\n - The [`process.stdin`][], [`process.stdout`][] and [`process.stderr`][]\n may be redirected by the parent thread.\n - The [`require('worker_threads').isMainThread`][] property is se... | 2019-03-21T12:47:00 |
golang/go | 79e03a9281ba03f9f79904f074e2e343f2140bdd | e9ef931e0649563e800f0a284ad3606564a88b35 | cmd/compile: include register-resident output params in DWARF-gen
During the register ABI work, a change was made in CL 302071 to
"stackframe" to treat register-resident output parameter (PARAMOUT)
variables that same as locals, which meant that if they were unused,
we'd delete them from the "Dcl" slice. This has the ... | [
{
"path": "src/cmd/compile/internal/dwarfgen/dwarf.go",
"patch": "@@ -150,6 +150,19 @@ func createDwarfVars(fnsym *obj.LSym, complexOK bool, fn *ir.Func, apDecls []*ir\n \tdcl := apDecls\n \tif fnsym.WasInlined() {\n \t\tdcl = preInliningDcls(fnsym)\n+\t} else {\n+\t\t// The backend's stackframe pass prunes... | 2021-11-10T15:44:00 |
rust-lang/rust | e6238ba7dbdf01445a7691e333c3630d3180f43e | 1229c820941d6788352f061b7edcb9b5a3c28513 | trait_sel: sort `{Meta,Pointee}Sized` diagnostics last
Like `Sized` diagnostics, sorting `MetaSized` and `PointeeSized`
diagnostics last prevents earlier more useful diagnostics from being
skipped because there has already been error tainting. | [
{
"path": "compiler/rustc_trait_selection/src/error_reporting/traits/mod.rs",
"patch": "@@ -160,17 +160,24 @@ impl<'a, 'tcx> TypeErrCtxt<'a, 'tcx> {\n })\n .collect();\n \n- // Ensure `T: Sized` and `T: WF` obligations come last. This lets us display diagnostics\n- // w... | 2025-01-23T18:31:28 |
vercel/next.js | 1f6a45d2e0a2e98fc5897ec6de51f39a901badf3 | 82a01c11a7f13206b39fef323f56c21a9256841a | Land reverted fix for chunk file names (#48625)
This PR re-adds #48583, which was accidentally reverted in #48589
(unrelated) somehow. | [
{
"path": "packages/next/src/build/webpack/plugins/flight-manifest-plugin.ts",
"patch": "@@ -135,7 +135,6 @@ export class ClientReferenceManifestPlugin {\n cssFiles: {},\n clientModules: {},\n }\n- const dev = this.dev\n \n const clientRequestsSet = new Set()\n \n@@ -256,13 +255,18 @@... | 2023-04-20T13:29:59 |
nodejs/node | 39f4158bc38ff2925b86563082c8d26ab3d20b17 | df0870dddf15ab5396ab9842fdbe4c06a8186cda | lib: move extra properties into error creation
This encapsulates the Node.js errors more by adding extra properties
to an error inside of the function to create the error message instead
of adding the properties at the call site. That simplifies the usage
of our errors and makes sure the expected properties are always... | [
{
"path": "lib/_stream_readable.js",
"patch": "@@ -309,15 +309,13 @@ function addChunk(stream, state, chunk, addToFront) {\n }\n \n function chunkInvalid(state, chunk) {\n- var er;\n if (!Stream._isUint8Array(chunk) &&\n typeof chunk !== 'string' &&\n chunk !== undefined &&\n !state.obj... | 2019-03-18T14:41:19 |
golang/go | e9ef931e0649563e800f0a284ad3606564a88b35 | a01a6d6efea52802f455849cd52ef7f8d049033a | cmd/compile/internal/ssa: fix debug location gen issue with zero width ops
Revamp the way that buildLocationLists() handles zero-width
operations, to fix a couple of problems that result in bad debug
locations.
The problematic scenario in this specific bug is where you have a
parameter arriving in a register X, then ... | [
{
"path": "src/cmd/compile/internal/ssa/debug.go",
"patch": "@@ -1120,54 +1120,93 @@ func (state *debugState) buildLocationLists(blockLocs []*BlockDebug) {\n \t\t\t\tv.Op == OpArgIntReg || v.Op == OpArgFloatReg\n \t\t}\n \n+\t\tblockPrologComplete := func(v *Value) bool {\n+\t\t\tif b.ID != state.f.Entry.ID... | 2021-11-08T18:53:55 |
rust-lang/rust | 7ab1321f976f0b0452f6d8339ecb954d666d9f8a | c162328d3070f4d7a018cf901e80ed8052f2e4a8 | trait_sel: stash `{Meta,Pointee}Sized` errors
`Sized` errors are currently stashed to improve diagnostics and this
must happen with `{Meta,Pointee}Sized` too to maintain diagnostic
output. | [
{
"path": "compiler/rustc_trait_selection/src/error_reporting/traits/ambiguity.rs",
"patch": "@@ -199,7 +199,10 @@ impl<'a, 'tcx> TypeErrCtxt<'a, 'tcx> {\n // avoid inundating the user with unnecessary errors, but we now\n // check upstream for type errors and don't add the o... | 2025-02-27T21:20:20 |
electron/electron | 728a5db3b46e62d0b37b47570ff7b57c231b146a | feedd0c43d5de031ea5b6255518e7e65df08c7ad | Update brightray: fix building on Windows | [
{
"path": "vendor/brightray",
"patch": "@@ -1 +1 @@\n-Subproject commit a6e35dc2fc8c8ac9a7eb1528035b7221f2ebd092\n+Subproject commit d788bdfe0bcd4672e62ed0e777876e76897e4613",
"additions": 1,
"deletions": 1,
"language": "Unknown"
}
] | 2015-11-16T08:47:51 |
vercel/next.js | 82a01c11a7f13206b39fef323f56c21a9256841a | 189e6a3687924de3172438a2912973bd49c1e37e | Fix TYPO in otel docs (#48623)
<!-- 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 Contributors
### Improving Docum... | [
{
"path": "docs/advanced-features/open-telemetry.md",
"patch": "@@ -57,7 +57,6 @@ Firstly you need to install OpenTelemetry packages:\n \n ```bash\n npm install @opentelemetry/sdk-node @opentelemetry/resources @opentelemetry/semantic-conventions @opentelemetry/sdk-trace-base @opentelemetry/exporter-trace-ot... | 2023-04-20T11:30:40 |
nodejs/node | df0870dddf15ab5396ab9842fdbe4c06a8186cda | 0622ce6e7f9746938c62d6e91bfffbe5a1de0757 | test: remove internal error tests
These tests tested internal functionality in a way that bypassed all
code that could reach these cases. It gives a false feeling of safety
that some code works as intended while there is no guarantee that
it indeed works as it should.
Therefore it seemed best to remove all of these. ... | [
{
"path": "test/parallel/test-internal-errors.js",
"patch": "@@ -6,7 +6,6 @@ const {\n restoreStdout,\n } = require('../common/hijackstdio');\n \n-const { internalBinding } = require('internal/test/binding');\n const assert = require('assert');\n const errors = require('internal/errors');\n \n@@ -101,125 ... | 2019-03-18T17:22:54 |
golang/go | 1ec51087e57d242e5556210a426307984d9ef0b3 | 99fa49e4b7f74fb21cc811270fe42c9b7fa99668 | cmd/link/internal/loadelf: better error message for ignored symbols
Currently it's quite hard to debug these error messages about ignored symbols
because there are only some numbers and no symbol name. Add symbol name. Before:
135029: sym#952: ignoring symbol in section 11 (type 0)
After:
135029: sym#952 (_ZN11__sanit... | [
{
"path": "src/cmd/link/internal/loadelf/ldelf.go",
"patch": "@@ -599,7 +599,7 @@ func Load(l *loader.Loader, arch *sys.Arch, localSymVersion int, f *bio.Reader,\n \t\t\tif strings.HasPrefix(elfsym.name, \".LASF\") { // gcc on s390x does this\n \t\t\t\tcontinue\n \t\t\t}\n-\t\t\treturn errorf(\"%v: sym#%d: ... | 2021-11-10T18:51:34 |
electron/electron | 8ff0b050f878157bcdc38c29a4dfb49ec5f2c016 | 0e7f09523b807cec05f3ece55f6d23f1a03c8dce | There is no more NotificationError | [
{
"path": "brightray/browser/win/windows_toast_notification.cc",
"patch": "@@ -12,15 +12,15 @@\n using namespace ABI::Windows::Data::Xml::Dom;\n \n namespace brightray {\n- \n+\n WindowsToastNotification::WindowsToastNotification(\n const std::string& app_name,\n scoped_ptr<content::DesktopNotifica... | 2015-11-16T08:47:34 |
rust-lang/rust | 86ab2b60cd22f6190eb586c889f8a2504f0d926b | f0b84b8dcfc15c3936256ccb438b1d050620ff3c | hir_analysis: add `{Meta,Pointee}Sized` bounds
Opting-out of `Sized` with `?Sized` is now equivalent to adding a
`MetaSized` bound, and adding a `MetaSized` or `PointeeSized` bound
is equivalent to removing the default `Sized` bound - this commit
implements this change in `rustc_hir_analysis::hir_ty_lowering`.
`MetaS... | [
{
"path": "compiler/rustc_hir_analysis/src/check/mod.rs",
"patch": "@@ -76,6 +76,7 @@ pub use check::{check_abi, check_abi_fn_ptr, check_custom_abi};\n use rustc_abi::{ExternAbi, VariantIdx};\n use rustc_data_structures::fx::{FxHashSet, FxIndexMap};\n use rustc_errors::{Diag, ErrorGuaranteed, pluralize, str... | 2025-02-27T21:19:51 |
vercel/next.js | 189e6a3687924de3172438a2912973bd49c1e37e | 925bb3b02568ea19deee2baae074c800a834121c | use structured images with metainfo (blur placeholder) (#48531)
### What?
add support for blur placeholder generation to turbopack
add `StructuredImageModuleType` which is used with `ModuleType::Custom`
to allow importing an image as `{ url, width, height, blurDataURL,
blurWidth, blurHeight }`
in contrast t... | [
{
"path": "Cargo.lock",
"patch": "@@ -400,7 +400,7 @@ dependencies = [\n [[package]]\n name = \"auto-hash-map\"\n version = \"0.1.0\"\n-source = \"git+https://github.com/vercel/turbo.git?tag=turbopack-230418.1#e6d32837a3800d2409110c6524dd874e6b0d06fe\"\n+source = \"git+https://github.com/vercel/turbo.git?ta... | 2023-04-20T00:18:59 |
nodejs/node | 0622ce6e7f9746938c62d6e91bfffbe5a1de0757 | 96c3224de0e938d308ab579e4cf7336e87c67d88 | doc: fix changelog date typo
PR-URL: https://github.com/nodejs/node/pull/26831
Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Beth Griggs <Bethany.Griggs@uk.ibm.com> | [
{
"path": "doc/changelogs/CHANGELOG_V6.md",
"patch": "@@ -78,7 +78,7 @@\n will be supported actively until April 2018 and maintained until April 2019.\n \n <a id=\"6.17.0\"></a>\n-## 2018-02-28, Version 6.17.0 'Boron' (LTS), @rvagg\n+## 2019-02-28, Version 6.17.0 'Boron' (LTS), @rvagg\n \n This is a securit... | 2019-03-20T23:56:03 |
golang/go | d5a5a13ad987db9bcdda8c6cecb84ed8583ea68d | 3949faf72e8285622ebfdf3bd573125dcd5453d2 | sync: clarify the validity to call Map methods inside Range
This change clarifies that calling all Map methods inside the callback
of Range is allowed. For further assurance, a nested range call test
is also added.
Fixes #46399
Change-Id: I0a766a5c1470e6b573ec35df1ccd62b2e46f1561
Reviewed-on: https://go-review.googl... | [
{
"path": "src/sync/map.go",
"patch": "@@ -311,8 +311,9 @@ func (e *entry) delete() (value interface{}, ok bool) {\n //\n // Range does not necessarily correspond to any consistent snapshot of the Map's\n // contents: no key will be visited more than once, but if the value for any key\n-// is stored or dele... | 2021-07-26T08:56:30 |
huggingface/transformers | b3bd815786c36f4e6c3791fae0a96cac86658b32 | e4930d6bde027ed21fd3dd91dbbfdc95e0221dd4 | Fix mxfp4 dequantization (#41292)
fix | [
{
"path": "src/transformers/integrations/mxfp4.py",
"patch": "@@ -343,7 +343,6 @@ def dequantize(module, param_name, param_value, target_device, dq_param_name, **\n to_contiguous,\n rank,\n device_mesh,\n- set_param=False,\n ... | 2025-10-02T14:47:42 |
nodejs/node | f47adfbda5c06263a78c0c74a705b0d5d3cd2944 | 67c9f424b80ce0a3b86cfa54f030cb1b8fe11707 | src: fix DTrace GC callbacks DCHECKs and add cleanup
Use the variant of GC callbacks that takes data to
avoid running into DCHECKs when multiple Environments try to add
the same callback to the same isolate multiple times.
In addition, remove the callbacks in the Environment cleanup hook.
PR-URL: https://github.com/n... | [
{
"path": "src/node_dtrace.cc",
"patch": "@@ -248,15 +248,19 @@ void DTRACE_HTTP_CLIENT_RESPONSE(const FunctionCallbackInfo<Value>& args) {\n NODE_HTTP_CLIENT_RESPONSE(&conn, conn.remote, conn.port, conn.fd);\n }\n \n-\n-void dtrace_gc_start(Isolate* isolate, GCType type, GCCallbackFlags flags) {\n+void d... | 2019-03-18T15:14:49 |
golang/go | 4d0683965bd05aee6845bf6849c85c4bf2bb10d4 | 23f653df963ddf3ae618290edbb0c55530fcf483 | net: do more faithful conversion from AddrPort to UDPAddr
A UDPAddr with a nil IP is a valid state, representing an AF-agnostic
unspecified address, so checking for addr.IsValid() isn't correct;
remove that, as it's only needed in the UDP rx path where it can be
added. Secondly, forcing everything to be IPv6 also is n... | [
{
"path": "src/net/udpsock.go",
"patch": "@@ -99,16 +99,12 @@ func ResolveUDPAddr(network, address string) (*UDPAddr, error) {\n \treturn addrs.forResolve(network, address).(*UDPAddr), nil\n }\n \n-// UDPAddrFromAddrPort returns addr as a UDPAddr.\n-//\n-// If addr is not valid, it returns nil.\n+// UDPAddr... | 2021-11-05T12:02:09 |
huggingface/transformers | 1d7ebff39807e3ed65674605b8c13954d02bff7f | 9d02602f0f597493257f5a738f3df149c1f93cbf | Fix - remove deprecated args checking in deepspeed intergrations (#41282)
Remove deprecated args checking in deepspeed intergrations
Signed-off-by: nguyen599 <pnvmanh2123@gmail.com>
Co-authored-by: Marc Sun <57196510+SunMarc@users.noreply.github.com> | [
{
"path": "src/transformers/integrations/deepspeed.py",
"patch": "@@ -356,11 +356,6 @@ def deepspeed_optim_sched(trainer, hf_deepspeed_config, args, num_training_steps\n \n optimizer = None\n if \"optimizer\" in config:\n- if args.optim == \"adafactor\":\n- raise ValueError(\n- ... | 2025-10-02T13:59:50 |
rust-lang/rust | ac8b506ca7a803939e20065fdd1a0949efebd6e9 | ad60d8eace04b8d9c498e102b845ff477fcf47a8 | Fix some unused fields in AST visitor | [
{
"path": "compiler/rustc_ast/src/visit.rs",
"patch": "@@ -884,7 +884,7 @@ macro_rules! common_visitor_and_walkers {\n TyKind::BareFn(function_declaration) => {\n let BareFnTy { safety, ext: _, generic_params, decl, decl_span } =\n &$($mut)? **func... | 2025-06-16T18:14:14 |
golang/go | 96c94c2c831a5c074d33e2b7b553e91eb602e6bd | 229b90931312aa1686f4bace25d1f40f896884ad | cmd/compile/internal/types2: slightly relax notion of structural type
If we have all channel types in a constraint, there is no structural type
if they don't all have the same channel direction (and identical element
types, of course). By allowing different channel types for the purposes of
the structural type, as lon... | [
{
"path": "src/cmd/compile/internal/types2/compilersupport.go",
"patch": "@@ -25,10 +25,12 @@ func AsTypeParam(t Type) *TypeParam {\n \treturn u\n }\n \n-// If t is a type parameter, StructuralType returns the single underlying\n-// type of all types in the type parameter's type constraint if it exists,\n-/... | 2021-11-10T20:11:03 |
vercel/next.js | 925bb3b02568ea19deee2baae074c800a834121c | 864f065392ac68bc7efbdca46fe5cc55d8f0d30a | Upgrade React (#48589)
Second try for #48561
<!-- 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 Contributor... | [
{
"path": "lerna.json",
"patch": "@@ -16,5 +16,5 @@\n \"registry\": \"https://registry.npmjs.org/\"\n }\n },\n- \"version\": \"13.3.1-canary.16\"\n+ \"version\": \"13.3.1-canary.15\"\n }",
"additions": 1,
"deletions": 1,
"language": "JSON"
},
{
"path": "package.json",
"... | 2023-04-20T00:05:49 |
huggingface/transformers | bc33fd3fc21f9b69e2b48ab8db890435752ac5fd | 639ad8ccd91db497aa2d6f8af7f5218d5adc8b92 | Add processor and intergration test for qwen3vl (#41277)
* support aux loss in qwen3vlmoe
* update qwen3vl processor test!
* add integration tests for qwen3vl-30a3
* remove duplicated decorator
* code clean
* fix consistency
* do not inherit from nn.Linear for better quantization
* pass check | [
{
"path": "src/transformers/models/qwen3_vl/modeling_qwen3_vl.py",
"patch": "@@ -37,7 +37,7 @@\n from ...modeling_rope_utils import ROPE_INIT_FUNCTIONS, dynamic_rope_update\n from ...modeling_utils import ALL_ATTENTION_FUNCTIONS, PreTrainedModel\n from ...processing_utils import Unpack\n-from ...utils impor... | 2025-10-02T12:59:04 |
nodejs/node | 42dbaed4605f44c393a057aad75a31cac1d0e5f5 | 4306300b5ea8d8c4ff3daf64c7ed5fd64055ec2f | tls: support TLSv1.3
This introduces TLS1.3 support and makes it the default max protocol,
but also supports CLI/NODE_OPTIONS switches to disable it if necessary.
TLS1.3 is a major update to the TLS protocol, with many security
enhancements. It should be preferred over TLS1.2 whenever possible.
TLS1.3 is different e... | [
{
"path": "doc/api/cli.md",
"patch": "@@ -443,21 +443,43 @@ added: v4.0.0\n Specify an alternative default TLS cipher list. Requires Node.js to be built\n with crypto support (default).\n \n-### `--tls-v1.0`\n+### `--tls-max-v1.2`\n <!-- YAML\n added: REPLACEME\n -->\n \n-Enable TLSv1.0 and greater in defau... | 2018-11-29T01:58:08 |
huggingface/transformers | 894a2bdd8c1d5447dcdbf6c5ccaa7cdd7213cae5 | 1cc90695511a4ebb649673081583ac9895b99f23 | Fix pylint generator warnings (#41258)
Fix pylint generator warnings
Signed-off-by: cyy <cyyever@outlook.com> | [
{
"path": "examples/legacy/run_chinese_ref.py",
"patch": "@@ -55,7 +55,7 @@ def get_chinese_word(tokens: list[str]):\n def add_sub_symbol(bert_tokens: list[str], chinese_word_set: set()):\n if not chinese_word_set:\n return bert_tokens\n- max_word_len = max([len(w) for w in chinese_word_set])... | 2025-10-02T12:35:42 |
golang/go | 229b90931312aa1686f4bace25d1f40f896884ad | f410786c5f12d0cc4f44ce9daf8d0883df39a2f6 | cmd/compile: don't do Resolve on OKEY identifiers during import
For generic functions, we can export untransformed OKEY nodes, and the
key identifier is written as an ONONAME. But in this case, we do not
want to call Resolve() on the identifier, since we may resolve to a
global type (as happens in this issue) or other... | [
{
"path": "src/cmd/compile/internal/typecheck/iexport.go",
"patch": "@@ -1735,6 +1735,8 @@ func (w *exportWriter) expr(n ir.Node) {\n \t\tn := n.(*ir.Name)\n \t\tif (n.Class == ir.PEXTERN || n.Class == ir.PFUNC) && !ir.IsBlank(n) {\n \t\t\tw.op(ir.ONONAME)\n+\t\t\t// Indicate that this is not an OKEY entry.... | 2021-11-10T19:39:18 |
vercel/next.js | 9c0a8ce730d04ace51c65804ff6ff26e48593c00 | f078da3f314a0873dbfedbb2bb24e3412ccb7581 | Docs: Unify note formatting (#48417)
<!-- 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 Contributors
### Improving... | [
{
"path": "contributing/docs/adding-documentation.md",
"patch": "@@ -37,4 +37,4 @@ After:\n ]\n ```\n \n-Note: the manifest is checked automatically in the \"lint\" step in CI when opening a PR.\n+> **Note**: The manifest is checked automatically in the \"lint\" step in CI when opening a PR.",
"addition... | 2023-04-19T20:21:28 |
nodejs/node | 4306300b5ea8d8c4ff3daf64c7ed5fd64055ec2f | d933cc4b022ecf9f51b969b0636c9693f2373a7b | timers: fix refresh inside callback
When `timers.refresh()` is called inside a callback, the timer would
incorrectly end up unrefed and thus not keep the event loop alive.
PR-URL: https://github.com/nodejs/node/pull/26721
Fixes: https://github.com/nodejs/node/issues/26642
Reviewed-By: Ruben Bridgewater <ruben@bridgew... | [
{
"path": "lib/internal/timers.js",
"patch": "@@ -469,7 +469,7 @@ function getTimerCallbacks(runNextTicks) {\n if (start === undefined)\n start = getLibuvNow();\n insert(timer, timer[kRefed], start);\n- } else {\n+ } else if (!timer._idleNext && !timer._idlePrev... | 2019-03-17T18:26:01 |
huggingface/transformers | 1cc90695511a4ebb649673081583ac9895b99f23 | 4f286fbbf83b7688f4bf299264c1327f5347d3ba | Fix unnecessary single-item container checks (#41279)
Signed-off-by: Yuanyuan Chen <cyyever@outlook.com> | [
{
"path": "examples/legacy/pytorch-lightning/run_ner.py",
"patch": "@@ -72,12 +72,12 @@ def prepare_data(self):\n self.labels,\n args.max_seq_length,\n self.tokenizer,\n- cls_token_at_end=bool(self.config.model_type in [\"xlnet\"... | 2025-10-02T12:35:11 |
golang/go | f410786c5f12d0cc4f44ce9daf8d0883df39a2f6 | a881409960a2a8117c99dcc0c91ab74885a3c53a | cmd/go: add 'go mod vendor -o' flag
Adds a new flag to 'go mod vendor' which overrides the default
'vendor' destination directory. This can be helpful for writing the
vendor tree to a temporary location for use by other tools.
The argument can be a relative or an absolute path.
This flag has no other influence on how ... | [
{
"path": "src/cmd/go/alldocs.go",
"patch": "@@ -1295,7 +1295,7 @@\n //\n // Usage:\n //\n-// \tgo mod vendor [-e] [-v]\n+// \tgo mod vendor [-e] [-v] [-o outdir]\n //\n // Vendor resets the main module's vendor directory to include all packages\n // needed to build and test all the main module's packages.\... | 2021-07-28T14:03:21 |
electron/electron | ceee820d4ac30751859b351f4b2321cc67c65e94 | 266c22903bd0cbf2bfc7d0c4fa968fa684724cf2 | Fix typos in download-item.md | [
{
"path": "docs-translations/ko-KR/api/download-item.md",
"patch": "@@ -82,7 +82,7 @@ win.webContents.session.on('will-download', function(event, item, webContents) {\n 다운로드 아이템의 파일 이름을 표현하는 문자열을 반환합니다.\n \n **참고:** 실제 파일 이름과 로컬 디스크에 저장되는 파일의 이름은 서로 다를 수 있습니다. 예를 들어\n-만약 사용자가 파일을 저장할 때 파일 이름을 바꿨다면 실제 파일명과 저... | 2015-11-16T04:44:25 |
vercel/next.js | 1827f36e5eb4ba9fe1c3b0bf02e889f192ff4808 | 9b3bd73bb570066489048f7e90a8345eafceb8d5 | Fix chunk file names in flight manifest (#48583)
This PR corrects the file names of chunks in the flight manifest.
Previously we assume that the chunk file is always named as
`(requiredChunk.name || requiredChunk.id) + '-' + requiredChunk.hash`
and located in `static/chunks`. This isn't always true (see the comment)
e... | [
{
"path": "packages/next/src/build/webpack/plugins/flight-manifest-plugin.ts",
"patch": "@@ -135,7 +135,6 @@ export class ClientReferenceManifestPlugin {\n cssFiles: {},\n clientModules: {},\n }\n- const dev = this.dev\n \n const clientRequestsSet = new Set()\n \n@@ -256,13 +255,18 @@... | 2023-04-19T18:11:47 |
nodejs/node | a7fdb42c1acc4e9859c1014faf553690d2e247ef | 4265021085775b16ad30ae7edcc74b31f1001d04 | doc: remove How Does LTS Work section from Collaborator Guide
The How Does LTS Work section duplicates material in the release plan,
to which there is already a link in the doc. Unfortunately, it has gone
out of sync with the release plan, resulting in incorrect material being
in the Collaborator Guide. (The Release W... | [
{
"path": "COLLABORATOR_GUIDE.md",
"patch": "@@ -639,20 +639,9 @@ git push upstream master\n \n Long Term Support (LTS) guarantees 30-month support cycles for specific Node.js\n versions. You can find more information\n-[in the full release plan](https://github.com/nodejs/Release#release-plan).\n-\n-#### Ho... | 2019-03-17T20:28:49 |
huggingface/transformers | f1b64c5b069c24494da845d2995dae0c83fef047 | 2f3e26669202d885fd8bfef5cc27019c355ef916 | Unify is_torchvision_v2_available with is_torchvision_available (#41259)
Fix is_torchvision_v2_available
Signed-off-by: Yuanyuan Chen <cyyever@outlook.com> | [
{
"path": "src/transformers/image_processing_utils_fast.py",
"patch": "@@ -46,7 +46,6 @@\n auto_docstring,\n is_torch_available,\n is_torchvision_available,\n- is_torchvision_v2_available,\n is_vision_available,\n logging,\n )\n@@ -60,14 +59,13 @@\n import torch\n \n if is_torchvi... | 2025-10-02T11:56:37 |
electron/electron | 266c22903bd0cbf2bfc7d0c4fa968fa684724cf2 | c5e706bc30241ddee9be3292444cf21f89816c20 | Small fixes | [
{
"path": "docs-translations/ko-KR/api/download-item.md",
"patch": "@@ -81,8 +81,8 @@ win.webContents.session.on('will-download', function(event, item, webContents) {\n \n 다운로드 아이템의 파일 이름을 표현하는 문자열을 반환합니다.\n \n-**참고:** 실제 파일 이름과 로컬 디스크에 저장되는 파일의 이름과 언제나 같음을 보장하지 않습니다.\n-만약 유저가 파일을 저장할 때 파일 이름을 바꿨다면 실제 파일명과 ... | 2015-11-16T04:43:16 |
golang/go | a881409960a2a8117c99dcc0c91ab74885a3c53a | b2d826c09f0f73cd9dc0022a2b052543e8bf4c06 | runtime: rewrite TestPhysicalMemoryUtilization
This test changes TestPhysicalMemoryUtilization to be simpler, more
robust, and more honest about what's going on.
Fixes #49411.
Change-Id: I913ef055c6e166c104c62595c1597d44db62018c
Reviewed-on: https://go-review.googlesource.com/c/go/+/362978
Trust: Michael Knyszek <mk... | [
{
"path": "src/runtime/testdata/testprog/gc.go",
"patch": "@@ -132,81 +132,75 @@ func GCFairness2() {\n func GCPhys() {\n \t// This test ensures that heap-growth scavenging is working as intended.\n \t//\n-\t// It sets up a specific scenario: it allocates two pairs of objects whose\n-\t// sizes sum to size.... | 2021-11-10T20:14:15 |
nodejs/node | 78162ad570bfb991e2416c7850be546848a6fcc0 | 4e08daabc889a87a14ad130d3386fd042274e6e7 | doc: document `error` event is optionally emitted after `.destroy()`
`error` event on each kind of stream is optionally emitted when
`.destroy()` method is called. It depends on `._destroy()`
implementation. In default implementation this event will no be
fired unless `error` parameter has been provided.
It was alrea... | [
{
"path": "doc/api/stream.md",
"patch": "@@ -372,10 +372,10 @@ added: v8.0.0\n * `error` {Error} Optional, an error to emit with `'error'` event.\n * Returns: {this}\n \n-Destroy the stream. Optionally emit an `'error'` event, and always emit\n-a `'close'` event.\n-After this call, the writable stream has e... | 2019-03-11T18:06:12 |
huggingface/transformers | 2f3e26669202d885fd8bfef5cc27019c355ef916 | 313504bcdde78cde3fd38f19131817dbdfbf7a93 | fix async client for transformers chat (#41255)
* fix-client
* fix | [
{
"path": "src/transformers/commands/chat.py",
"patch": "@@ -687,7 +687,6 @@ async def _inner_run(self):\n \n model = self.args.model_name_or_path + \"@\" + self.args.model_revision\n host = \"http://localhost\" if self.args.host == \"localhost\" else self.args.host\n- client = AsyncI... | 2025-10-02T11:23:37 |
golang/go | b2d826c09f0f73cd9dc0022a2b052543e8bf4c06 | 23dd389ac6ef59210580614c4a73e0d0a13c2911 | internal/cache: document 'go clean -fuzzcache' in README
Fixes: #48900
Change-Id: I9235441886ed7cbdfdcbd283480f52d9216c3ea2
Reviewed-on: https://go-review.googlesource.com/c/go/+/357233
Reviewed-by: Bryan C. Mills <bcmills@google.com>
Reviewed-by: Katie Hockman <katie@golang.org>
Run-TryBot: Bryan C. Mills <bcmills@g... | [
{
"path": "src/cmd/go/internal/cache/default.go",
"patch": "@@ -30,6 +30,7 @@ var (\n // README as a courtesy to explain where it came from.\n const cacheREADME = `This directory holds cached build artifacts from the Go build system.\n Run \"go clean -cache\" if the directory is getting too large.\n+Run \"g... | 2021-10-21T09:01:10 |
vercel/next.js | 9b3bd73bb570066489048f7e90a8345eafceb8d5 | 191acdf8cbde7d9ad7262ee05456f2ebeef90056 | prettier fix for `next-swc` (#47873)
This enables the existing prettier config to auto apply to code inside
the `next-swc` package | [
{
"path": ".prettierignore",
"patch": "@@ -13,7 +13,8 @@ lerna.json\n .github/actions/next-stats-action/.work\n .github/actions/issue-validator/index.mjs\n .github/actions/issue-labeler/lib/index.js\n-packages/next-swc/crates/**/*\n+packages/next-swc/crates/next-core/js/src/compiled/**/*\n+packages/next-swc... | 2023-04-19T17:44:27 |
nodejs/node | 927f29d244e95a38816c305d82d290bd10b5938b | e08ac04a1a6bcfa792c2a164c753f4fb16fa09b8 | lib: lazy load `v8` in error-serdes
Lazy loading `v8` in `lib/internal/error-serdes.js` reduces the number
of loaded modules by the bootstrap code for Worker threads by seven.
PR-URL: https://github.com/nodejs/node/pull/26689
Refs: https://github.com/nodejs/node/pull/26501#discussion_r264849750
Reviewed-By: Ruben Bri... | [
{
"path": "lib/internal/error-serdes.js",
"patch": "@@ -1,7 +1,6 @@\n 'use strict';\n \n const Buffer = require('buffer').Buffer;\n-const { serialize, deserialize } = require('v8');\n const {\n SafeSet,\n Object,\n@@ -84,7 +83,9 @@ function lazyUtil() {\n return util;\n }\n \n+let serialize;\n functio... | 2019-03-15T18:18:29 |
golang/go | 23dd389ac6ef59210580614c4a73e0d0a13c2911 | 6406e09f69c70b10cab58702f10456a3e9a83bef | cmd/compile/internal/types2: refer to structural rather than single underlying type in errors
This brings the error messages in sync with the terminology that
will be used it the spec.
Change-Id: Ia05993776c649be9eb2cdf948a583b9a49f9b192
Reviewed-on: https://go-review.googlesource.com/c/go/+/362997
Reviewed-by: Rober... | [
{
"path": "src/cmd/compile/internal/types2/builtins.go",
"patch": "@@ -470,7 +470,7 @@ func (check *Checker) builtin(x *operand, call *syntax.CallExpr, id builtinId) (\n \t\tcase *Map, *Chan:\n \t\t\tmin = 1\n \t\tcase nil:\n-\t\t\tcheck.errorf(arg0, invalidArg+\"cannot make %s; type set has no single under... | 2021-11-10T17:33:53 |
huggingface/transformers | 7938e91faabb051f3a001cd39c173d4697c2d81c | e6a8e7debed69d4cf5d493158f3f347931c24c9a | MoE + vllm = 😻 (#40132)
* update modeling mixtral
* oups[13;2u
* fix
* better naming?
* compute softmax and top_k inside the experts
* update minamax as well
* models that will need an update
* more models that need a fix
* stash
* fix mixtral
* update olmoe
* update
* update
* current changes
* nits
... | [
{
"path": "docs/source/en/model_doc/switch_transformers.md",
"patch": "@@ -105,7 +105,6 @@ print(tokenizer.decode(outputs[0]))\n ## SwitchTransformersTop1Router\n \n [[autodoc]] SwitchTransformersTop1Router\n- - _compute_router_probabilities\n - forward\n \n ## SwitchTransformersSparseMLP",
"addi... | 2025-10-02T10:12:44 |
vercel/next.js | 191acdf8cbde7d9ad7262ee05456f2ebeef90056 | 9f5463dc9a5194142ef4394a0f144470bb11d2ed | Remove expired link resources via MutationObserver during development (#48578)
Closes NEXT-684, closes #43396.
This PR implements a temporary workaround to address the issue that some
browsers are always caching CSS resources during the lifetime of a
session. We re-introduce the versioning query to the resource to av... | [
{
"path": "packages/next/src/client/app-index.tsx",
"patch": "@@ -296,4 +296,56 @@ export function hydrate() {\n if (isError) {\n reactRoot.render(reactEl)\n }\n+\n+ // TODO-APP: Remove this logic when Float has GC built-in in development.\n+ if (process.env.NODE_ENV !== 'production') {\n+ cons... | 2023-04-19T16:38:52 |
electron/electron | e12e119381ab1170c8394f62bb26cccce6703bf1 | ad776887da5e8fe6115cb6e2f4e48d76564f02b9 | Update as upstream
* Update as upstream
* Fix typos
* Improve grammar | [
{
"path": "docs-translations/ko-KR/README.md",
"patch": "@@ -31,32 +31,32 @@\n ### 메인 프로세스에서 사용할 수 있는 모듈:\n \n * [app](api/app.md)\n-* [auto-updater](api/auto-updater.md)\n-* [browser-window (0% 번역됨)](api/browser-window.md)\n-* [content-tracing](api/content-tracing.md)\n+* [autoUpdater](api/auto-updater.md)... | 2015-11-16T03:15:21 |
nodejs/node | 97a919b12dd214b4c1e938ed2cd0d25a3b2cdeab | a91d36fcc12c90f842d38f4a6b50809133bf1bc7 | inspector: patch C++ debug options instead of process._breakFirstLine
Instead of patching process._breakFirstLine to inform the JS land
to wait for the debugger, check that the JS land has not yet
serialized the options and then patch the debug options from C++.
The changes will be carried into JS later during option ... | [
{
"path": "src/env-inl.h",
"patch": "@@ -675,6 +675,14 @@ inline void Environment::set_has_run_bootstrapping_code(bool value) {\n has_run_bootstrapping_code_ = value;\n }\n \n+inline bool Environment::has_serialized_options() const {\n+ return has_serialized_options_;\n+}\n+\n+inline void Environment::se... | 2019-03-11T20:28:51 |
golang/go | 097aaa9cd68fdce10b81fbba43fbb6569a95b53f | 8a3be150775f80850e179bd1860b286be27ca407 | go/doc: don't treat functions returning type parameters as constructors
Functions returning type parameters were erroneously being interpreted
as 'constructors' of their type parameter, resulting in them being
excluded from documentation. Fix this by explicitly excluding type
parameters when looking for defined type n... | [
{
"path": "src/go/doc/reader.go",
"patch": "@@ -425,6 +425,11 @@ func (r *reader) readFunc(fun *ast.FuncDecl) {\n \t\t\t\tfactoryType = t.Elt\n \t\t\t}\n \t\t\tif n, imp := baseTypeName(factoryType); !imp && r.isVisible(n) && !r.isPredeclared(n) {\n+\t\t\t\tif lookupTypeParam(n, fun.Type.TypeParams) != nil ... | 2021-11-10T16:21:57 |
rust-lang/rust | 718df66f4f2224efd25947ca32947998436dea88 | 68ac5abb067806a88464ddbfbd3c7eec877b488d | Two changes: Have BorrowError & BorrowMutError derive Debug and add
more information to Display implementation for BorrowError/BorrowMutError
- The BorrowError/BorrowMutError Debug implementations do not print
anything differently from what the derived implementation does, so we
don't need it.
- This change also adds... | [
{
"path": "library/core/src/cell.rs",
"patch": "@@ -732,54 +732,48 @@ pub struct RefCell<T: ?Sized> {\n /// An error returned by [`RefCell::try_borrow`].\n #[stable(feature = \"try_borrow\", since = \"1.13.0\")]\n #[non_exhaustive]\n+#[derive(Debug)]\n pub struct BorrowError {\n #[cfg(feature = \"debug_... | 2025-06-14T01:07:58 |
huggingface/transformers | e6a8e7debed69d4cf5d493158f3f347931c24c9a | 30b79effb5d13c9319c1a32aa239c1cc238f67cb | Fix binding of video frames to video placeholder in `InternVL` model (#41237)
* Fix binding video frames to video placeholder in prompt
Signed-off-by: Daniel Bershatsky <daniel.bershatsky@gmail.com>
* Add test on binding video frames to prompt
Signed-off-by: Daniel Bershatsky <daniel.bershatsky@gmail.com>
* Fix co... | [
{
"path": "src/transformers/models/internvl/processing_internvl.py",
"patch": "@@ -40,7 +40,9 @@ class InternVLProcessorKwargs(ProcessingKwargs, total=False):\n \"images_kwargs\": {\n \"crop_to_patches\": True,\n },\n- \"videos_kwargs\": {},\n+ \"videos_kwargs\": {\... | 2025-10-02T09:43:35 |
vercel/next.js | 9f5463dc9a5194142ef4394a0f144470bb11d2ed | 7b6e336bc58790f1006cd00adcd5a27988e6d62b | build(cargo): move workspaces manifest to top level (#48198)
<!-- 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:
## Fo... | [
{
"path": ".github/CODEOWNERS",
"patch": "@@ -28,3 +28,7 @@\n /packages/next/src/build/ @timneutkens @ijjk @shuding @vercel/web-tooling @huozhi\n /packages/next/src/telemetry/ @timneutkens @ijjk @shuding @padmaia\n /packages/next-swc/ @timneutken... | 2023-04-19T16:38:36 |
electron/electron | c1373d7480c48036fed38297770751f5944482ed | fe214e08068a36e4f98febecd62b31011de474af | Fix typo in notifications example docs | [
{
"path": "docs/tutorial/desktop-environment-integration.md",
"patch": "@@ -16,7 +16,7 @@ the [HTML5 Notification API](https://notifications.spec.whatwg.org/), using\n the currently running operating system's native notification APIs to display it.\n \n ```javascript\n-var myNotificiation = new Notification... | 2015-11-15T15:48:09 |
nodejs/node | 84156cf10ed10a8f675272f09f30dce4ef6f022c | 5fc6c1daed2ef41fda5147904ef8240a399f7943 | module: do not share the internal require function with public loaders
This patch removes `NativeModule.require` and
`NativeModule.requireWithFallbackInDeps`. The public loaders now
have to use a special method
`NativeModule.prototype.compileForPublicLoader()` to compile native
modules. In addition this patch moves th... | [
{
"path": "lib/internal/bootstrap/loaders.js",
"patch": "@@ -19,7 +19,7 @@\n // can be created using NODE_MODULE_CONTEXT_AWARE_CPP() with the flag\n // NM_F_LINKED.\n // - internalBinding(): the private internal C++ binding loader, inaccessible\n-// from user land because they are only available from ... | 2019-03-09T17:12:05 |
golang/go | e984240d310302764c66bb4bf84b5747e05cf8ef | 02d7eab52796574b44717d45d5def42c9068b56a | runtime: fix unworkable comments for go:nosplit
Change-Id: I71c29a2dc7e5b2b6bc35093535228d2907b16b47
Reviewed-on: https://go-review.googlesource.com/c/go/+/361595
Run-TryBot: Ian Lance Taylor <iant@golang.org>
TryBot-Result: Go Bot <gobot@golang.org>
Reviewed-by: Ian Lance Taylor <iant@golang.org>
Trust: Hajime Hoshi ... | [
{
"path": "src/runtime/sys_darwin.go",
"patch": "@@ -156,7 +156,7 @@ func pthread_kill_trampoline()\n // mmap is used to do low-level memory allocation via mmap. Don't allow stack\n // splits, since this function (used by sysAlloc) is called in a lot of low-level\n // parts of the runtime and callers often ... | 2021-11-05T14:50:55 |
huggingface/transformers | 30b79effb5d13c9319c1a32aa239c1cc238f67cb | aabf0a03cb5ebf34bf17cf157c88a34a76cb8a86 | Remove SageMakerTrainer (#41267)
* Remove SageMakerTrainer
Signed-off-by: Yuanyuan Chen <cyyever@outlook.com>
* More removal
Signed-off-by: Yuanyuan Chen <cyyever@outlook.com>
* More fixes
Signed-off-by: Yuanyuan Chen <cyyever@outlook.com>
---------
Signed-off-by: Yuanyuan Chen <cyyever@outlook.com> | [
{
"path": "src/transformers/__init__.py",
"patch": "@@ -471,7 +471,6 @@\n \"prune_layer\",\n \"infer_device\",\n ]\n- _import_structure[\"sagemaker\"] = []\n _import_structure[\"time_series_utils\"] = []\n _import_structure[\"trainer\"] = [\"Trainer\"]\n _import_structure[... | 2025-10-02T09:16:32 |
electron/electron | 2a7f874373c44d1606cbabe2c921763732fca87c | fe214e08068a36e4f98febecd62b31011de474af | browser: fix reloadignoringcache api | [
{
"path": "atom/browser/api/atom_api_web_contents.cc",
"patch": "@@ -658,10 +658,6 @@ void WebContents::Stop() {\n web_contents()->Stop();\n }\n \n-void WebContents::ReloadIgnoringCache() {\n- web_contents()->GetController().ReloadIgnoringCache(false);\n-}\n-\n void WebContents::GoBack() {\n atom::Atom... | 2015-11-13T20:55:23 |
vercel/next.js | 7b6e336bc58790f1006cd00adcd5a27988e6d62b | 7f2a4ac1d2a1b1f00f2a619fa91f6b3448f49556 | docs: fix minimum Node.js version to `14.18.0` (#48545)
fixes #42729
According to #42729, the minimum Node.js version of Next is `14.18.0`,
but some docs say `14.6.0`, and it's error-prone.
https://github.com/vercel/next.js/issues/42729#issuecomment-1309947579
pointed out it's a bug rather than wrong documentation.
... | [
{
"path": "docs/getting-started.md",
"patch": "@@ -14,7 +14,7 @@ If you have questions about anything related to Next.js, you're always welcome t\n \n #### System Requirements\n \n-- [Node.js 14.6.0](https://nodejs.org/) or newer\n+- [Node.js 14.18.0](https://nodejs.org/) or newer\n - MacOS, Windows (includ... | 2023-04-19T15:16:37 |
nodejs/node | 6d090124fd69516516d0b9c79b0bf3f8f072cef0 | 6e678b1b5925d042ad731e9db139e2f67df9110d | test: fix intrinsics test
So far this test did not verify that the call did indeed fail since
the error case was not checked. This makes sure the error is indeed
thrown as expected.
PR-URL: https://github.com/nodejs/node/pull/26660
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Richard Lau <riclau@uk... | [
{
"path": "test/parallel/test-freeze-intrinsics.js",
"patch": "@@ -3,8 +3,7 @@\n require('../common');\n const assert = require('assert');\n \n-try {\n- Object.defineProperty = 'asdf';\n- assert(false);\n-} catch {\n-}\n+assert.throws(\n+ () => Object.defineProperty = 'asdf',\n+ TypeError\n+);",
"ad... | 2019-03-14T11:36:59 |
rust-lang/rust | fec46a44ba01a6e1df5c2e54621fcfc2b2f7d236 | 46c14b7b3ffe35c8c708cf141b379ea76364784c | Fix clippy lints | [
{
"path": "build_system/src/build.rs",
"patch": "@@ -33,7 +33,7 @@ impl BuildArg {\n }\n arg => {\n if !build_arg.config_info.parse_argument(arg, &mut args)? {\n- return Err(format!(\"Unknown argument `{}`\", arg));\n+ ... | 2025-06-16T13:34:09 |
huggingface/transformers | aabf0a03cb5ebf34bf17cf157c88a34a76cb8a86 | bcdd5532bfd48660c029a0ddb8f9c76cb02039b2 | Fix multi-video timestamp bug in Qwen-3-VL and GLM4V (#41229)
* fix multi-video timestamp bug in qwen3vl,glm4v
* run make fix-copies to sync modular files
* run make fix-copies to sync modular files
---------
Co-authored-by: UBT <daqin.luo@ubtrobot.com> | [
{
"path": "src/transformers/models/glm4v/modular_glm4v.py",
"patch": "@@ -1639,7 +1639,7 @@ def __call__(\n num_frames = video_grid_thw[video_index][0]\n video_structure = \"\"\n \n- metadata = video_metadata[i]\n+ metadata = vide... | 2025-10-02T09:15:57 |
golang/go | 02d7eab52796574b44717d45d5def42c9068b56a | 57dc6e247538301fb312e8ee35d3385f5d5efc28 | go/parser: allow parsing aliases with type parameters
We already guard against this in the type checker, and it will
eventually be allowed per the accepted proposal.
Add a placeholder error code for the corresponding type checker error.
Change-Id: I5cc2f1413ecc89ec2094f7178fdb156fb8cc2e43
Reviewed-on: https://go-rev... | [
{
"path": "src/go/parser/parser.go",
"patch": "@@ -2539,9 +2539,11 @@ func (p *parser) parseGenericType(spec *ast.TypeSpec, openPos token.Pos, name0 *\n \tlist := p.parseParameterList(name0, token.RBRACK)\n \tclosePos := p.expect(token.RBRACK)\n \tspec.TypeParams = &ast.FieldList{Opening: openPos, List: lis... | 2021-10-31T15:33:00 |
electron/electron | dedf3553e2bb2063bbd73b2fb29a052fad50a2d7 | cdc27a85c0ff6833a34e09bef666281cbc07c84b | Call content::DesktopNotificationDelegate::NotificationError when toast notification fails on Windows | [
{
"path": "brightray/browser/win/windows_toast_notification.cc",
"patch": "@@ -85,6 +85,11 @@ void WindowsToastNotification::NotificationDismissed() {\n delete this;\n }\n \n+void WindowsToastNotification::NotificationFailed() {\n+ delegate_->NotificationError();\n+ delete this;\n+}\n+\n bool WindowsToa... | 2015-11-10T19:39:24 |
vercel/next.js | 6f30c911d6f331510a1a118085b98e6eb54edd21 | 56b32eb5ee0135b4d0517bf5555dc9c0823f9240 | Prefer to use deployment url for metadata routes on production (#48556)
Use should only need to configure one `metadataBase` as fixed domain or
url but metadata image routes can still work properly with `VERCEL_URL`
in preview deployments
If you configured `new URL('https://mydomain.com')`, it will work for
canonical... | [
{
"path": "packages/next/src/lib/metadata/default-metadata.tsx",
"patch": "@@ -1,14 +1,9 @@\n import type { ResolvedMetadata } from './types/metadata-interface'\n \n export function createDefaultMetadata(): ResolvedMetadata {\n- const defaultMetadataBase =\n- process.env.NODE_ENV === 'production' && pro... | 2023-04-19T10:26:08 |
nodejs/node | 6e678b1b5925d042ad731e9db139e2f67df9110d | cf51ee4dcf6981434e3a461bb4439a5a41d7cd9d | src,win: fix usage of deprecated v8::Object::Set
PR-URL: https://github.com/nodejs/node/pull/26735
Refs: https://github.com/nodejs/node/issues/26733
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Refael Ackermann <refack@gmail.com>
Reviewed-By: Richard Lau <riclau@uk.ibm.com> | [
{
"path": "src/api/exceptions.cc",
"patch": "@@ -213,16 +213,22 @@ Local<Value> WinapiErrnoException(Isolate* isolate,\n }\n \n Local<Object> obj = e.As<Object>();\n- obj->Set(env->errno_string(), Integer::New(isolate, errorno));\n+ obj->Set(env->context(), env->errno_string(), Integer::New(isolate, e... | 2019-03-18T12:50:26 |
huggingface/transformers | 55d63e86eac12c127ad420ec5b18c99eaf75ae62 | 522b79a346c4a188fd16548a7e0bc0ad15b86e5a | fix asr pipeline ut failures (#41275)
* fix asr pipeline ut failures
Signed-off-by: Yao, Matrix <matrix.yao@intel.com>
* make style
Signed-off-by: Yao, Matrix <matrix.yao@intel.com>
---------
Signed-off-by: Yao, Matrix <matrix.yao@intel.com> | [
{
"path": "tests/pipelines/test_pipelines_automatic_speech_recognition.py",
"patch": "@@ -615,7 +615,8 @@ def test_torch_whisper_batched(self):\n {\"text\": \" Nor is Mr. Quilters' manner less interesting than his matter.\"},\n ]\n \n- output = speech_recognizer(ds[\"audio\"], bat... | 2025-10-02T08:32:03 |
golang/go | cc14fcac2bc1d452841336b9aeee3b1d47880f37 | 318c024b498621932ace08736c38a51fe5519a63 | cmd/compile/internal/types2: disallow type cycles through type parameter lists
If we reach a generic type that is part of a cycle
and we are in a type parameter list, we have a cycle
through a type parameter list, which is invalid.
Fixes #49439.
Change-Id: Ia6cf97e1748ca0c0e61c02841202050091365b0b
Reviewed-on: https... | [
{
"path": "src/cmd/compile/internal/types2/check.go",
"patch": "@@ -46,6 +46,7 @@ type context struct {\n \tpos syntax.Pos // if valid, identifiers are looked up as if at position pos (used by Eval)\n \tiota constant.Value // value of iota in a constant declarati... | 2021-11-09T00:09:11 |
electron/electron | e76a7f7b7d662ebcd7d6a441e1dfc39118638775 | 5d52ff76ab62ac366a882f8f7e033b367f9f3d65 | Fix typo, tray => Tray | [
{
"path": "atom/browser/api/lib/exports/electron.coffee",
"patch": "@@ -45,7 +45,7 @@ Object.defineProperties module.exports,\n screen:\n enumerable: true\n get: -> require '../screen'\n- tray:\n+ Tray:\n enumerable: true\n get: -> require '../tray'\n # The internal modules, invisible ... | 2015-11-13T13:52:05 |
vercel/next.js | 56b32eb5ee0135b4d0517bf5555dc9c0823f9240 | 7350c5fb34d5bb1dc28707dfd23d3cc844127e0b | Fix instrumentation.js initialization in prod on Vercel (#48557)
If `this.serverOptions.dir` is `'.'` or missing (which seems to be the
case in Vercel's `___next_launcher.cjs`), this code was calling
`require(join('.', '.next', 'server', 'instrumentation'))` which is
`require('.next/server/instrumentation')`; notably,... | [
{
"path": "packages/next/src/server/next-server.ts",
"patch": "@@ -334,7 +334,7 @@ export default class NextNodeServer extends BaseServer {\n this.nextConfig.experimental.instrumentationHook\n ) {\n try {\n- const instrumentationHook = await require(join(\n+ const instrumentati... | 2023-04-19T08:00:29 |
nodejs/node | 174da74701b28eeeb70a59045f2f1f44839cda51 | 9d064439e5716df250363ed6f88198c86eb63521 | doc: add ZYSzys to collaborators
Fixes: https://github.com/nodejs/node/issues/26440
PR-URL: https://github.com/nodejs/node/pull/26730
Fixes: https://github.com/nodejs/node/issues/26440
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net> | [
{
"path": "README.md",
"patch": "@@ -488,6 +488,8 @@ For information about the governance of the Node.js project, see\n **Yorkie Liu** <yorkiefixer@gmail.com>\n * [yosuke-furukawa](https://github.com/yosuke-furukawa) -\n **Yosuke Furukawa** <yosuke.furukawa@gmail.com>\n+* [ZYSzys](https://github... | 2019-03-18T11:04:46 |
huggingface/transformers | 522b79a346c4a188fd16548a7e0bc0ad15b86e5a | 9f2d5666f8fda5b647e5f64dfc8ba1edd7a87a1e | add more activation kernels, follow up (#40944)
* add more activation kernels
* fixing style
* fix version | [
{
"path": "src/transformers/activations.py",
"patch": "@@ -12,6 +12,7 @@\n # See the License for the specific language governing permissions and\n # limitations under the License.\n \n+import functools\n import math\n from collections import OrderedDict\n \n@@ -26,7 +27,8 @@\n logger = logging.get_logger(__... | 2025-10-02T06:45:05 |
rust-lang/rust | 05af962fa4457ca7a2b9e9a67bcec86ecb7344c2 | 9848c66a363043600670cba78a1221b6b80ed987 | Fix warnings when not using the `master` feature | [
{
"path": "src/builder.rs",
"patch": "@@ -4,8 +4,8 @@ use std::convert::TryFrom;\n use std::ops::Deref;\n \n use gccjit::{\n- BinaryOp, Block, ComparisonOp, Context, Function, FunctionType, LValue, Location, RValue,\n- ToRValue, Type, UnaryOp,\n+ BinaryOp, Block, ComparisonOp, Context, Function, LV... | 2025-06-16T12:35:50 |
golang/go | f5f94340910421baea624ca08e5f51343515cae8 | 578ada410de8065dbca46bca08a5993d1307f423 | go/types: remove most asX converters (cleanup)
This is a port of CL 362118 to go/types, which is itself a roll-forward
of CL 362254, containing a bugfix.
Change-Id: I20067c7adf56bf64fe9ad080d998a7aefbdc1053
Reviewed-on: https://go-review.googlesource.com/c/go/+/362617
Trust: Robert Findley <rfindley@google.com>
Run-T... | [
{
"path": "src/go/types/assignments.go",
"patch": "@@ -71,7 +71,7 @@ func (check *Checker) assignment(x *operand, T Type, context string) {\n \t}\n \n \t// A generic (non-instantiated) function value cannot be assigned to a variable.\n-\tif sig := asSignature(x.typ); sig != nil && sig.TypeParams().Len() > 0... | 2021-11-09T21:41:01 |
electron/electron | 9ac87e844a08e5131c1e327e616eb19ddfb79948 | 8f56387bd954d8eba1b4448ed61255f992ab108e | Fix node_bindings link in Simplified Chinese document translation | [
{
"path": "docs/development/atom-shell-vs-node-webkit.md",
"patch": "@@ -35,7 +35,7 @@ __3. Node Integration__\n In NW.js, the Node integration in web pages requires patching Chromium to\n work, while in Electron we chose a different way to integrate the libuv loop\n with each platform's message loop to avo... | 2015-11-13T07:41:20 |
huggingface/transformers | c4b505d0f7e696bf67f999d6ba958931322f2def | 01c9e1ba683b3e50d7c76bf92f2d470759fd5e81 | Don't convert to `safetensors` on the fly if the call is from testing (#41194)
* don't convert
* disable
* Update src/transformers/modeling_utils.py
Co-authored-by: Cyril Vallez <cyril.vallez@huggingface.co>
* fix
* disable
* disable
* disable
---------
Co-authored-by: ydshieh <ydshieh@users.noreply.github.co... | [
{
"path": ".circleci/create_circleci_config.py",
"patch": "@@ -29,6 +29,7 @@\n \"RUN_PIPELINE_TESTS\": False,\n # will be adjust in `CircleCIJob.to_dict`.\n \"RUN_FLAKY\": True,\n+ \"DISABLE_SAFETENSORS_CONVERSION\": True,\n }\n # Disable the use of {\"s\": None} as the output is way too long... | 2025-10-01T15:46:21 |
nodejs/node | 0f745bf9bde4e19dd352f10299d4365a4edaf386 | 1ceb6d8e9b516052e21b1dabd1ab19e3c3488e1e | tls: return correct version from getCipher()
OpenSSL 1.0.0 returned incorrect version information. OpenSSL 1.1.0
fixed this, but returning the correct information broke our tests, so
was considered semver-major. Because of this, the version was hard-coded
to the OpenSSL 1.0.0 (incorrect) string in 5fe81c8aff03261.
Th... | [
{
"path": "doc/api/tls.md",
"patch": "@@ -717,18 +717,25 @@ socket has been destroyed, `null` will be returned.\n ### tlsSocket.getCipher()\n <!-- YAML\n added: v0.11.4\n+changes:\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/26625\n+ description: Return the minimum cipher ve... | 2019-03-12T19:09:24 |
vercel/next.js | d7816687d8336c1f5fbf6550026e58fd9074a1b0 | 36bc37cda6c5c55592ccc1b9bd73b7244ef29e5d | support require.context (vercel/turbo#4399)
fix WEB-535 | [
{
"path": "crates/turbopack-dev/js/src/runtime.js",
"patch": "@@ -17,6 +17,8 @@\n /** @typedef {import('../types').SourceType.Update} SourceTypeUpdate */\n /** @typedef {import('../types').Exports} Exports */\n /** @typedef {import('../types').EsmInteropNamespace} EsmInteropNamespace */\n+/** @typedef {impo... | 2023-04-18T15:56:37 |
golang/go | 578ada410de8065dbca46bca08a5993d1307f423 | 795cb333d94ee7f5632500f3e2ae98012b8d73e6 | mime: keep parsing after trailing semicolon
Fixes #46323
Change-Id: Ibd624b1aaa15f907b7eb965b4eaec61018a45486
GitHub-Last-Rev: 7ad670b088144a2a09860dd990c53dea75c0d40f
GitHub-Pull-Request: golang/go#47029
Reviewed-on: https://go-review.googlesource.com/c/go/+/332509
Trust: Ian Lance Taylor <iant@golang.org>
Trust: Da... | [
{
"path": "src/mime/mediatype.go",
"patch": "@@ -163,7 +163,7 @@ func ParseMediaType(v string) (mediatype string, params map[string]string, err e\n \t\t\tif strings.TrimSpace(rest) == \";\" {\n \t\t\t\t// Ignore trailing semicolons.\n \t\t\t\t// Not an error.\n-\t\t\t\treturn\n+\t\t\t\tbreak\n \t\t\t}\n \t\... | 2021-07-05T11:22:03 |
huggingface/transformers | 01c9e1ba683b3e50d7c76bf92f2d470759fd5e81 | 025531981cd9cfa538655987d5237decacd91c48 | [t5gemma] fix `get_text_config` and related fixes (#40939)
* tmp commit
* t5gemma fixes | [
{
"path": "src/transformers/cache_utils.py",
"patch": "@@ -395,7 +395,12 @@ def update(\n if not self.is_initialized:\n self.lazy_initialization(key_states)\n \n- cache_position = cache_kwargs.get(\"cache_position\")\n+ # Some old models give None for `cache_position` or ev... | 2025-10-01T14:55:26 |
nodejs/node | daa97df343daa79fbd49c3d77d3ddca254ca9303 | 993bdff9ff189dd32b8f782df24a1c8994392dd1 | child_process: ensure message sanity at source
Error messages coming out of de-serialization at the send target
is not consumable. So detect the scenario and fix it at the send source
Ref: https://github.com/nodejs/node/issues/20314
PR-URL: https://github.com/nodejs/node/pull/24787
Reviewed-By: Luigi Pinca <luigipin... | [
{
"path": "lib/internal/child_process.js",
"patch": "@@ -665,6 +665,18 @@ function setupChannel(target, channel) {\n if (message === undefined)\n throw new ERR_MISSING_ARGS('message');\n \n+ // Non-serializable messages should not reach the remote\n+ // end point; as any failure in the strin... | 2018-12-02T14:23:28 |
vercel/next.js | 041662b4d0843e7721abbfd8b541c313dfd39a78 | 3a133d2ddea9d96a364ed987b178d3f12c56416e | feat(turbopack): support modularizeImports next.js config (#48511)
<!-- Thanks for opening a PR! Your contribution is much appreciated.
To make sure your PR is handled as smoothly as possible we request that
you follow the checklist sections below.
Choose the right checklist for the change(s) that you're making:
... | [
{
"path": "packages/next-swc/crates/next-core/Cargo.toml",
"patch": "@@ -22,6 +22,7 @@ indoc = { workspace = true }\n allsorts = { workspace = true }\n futures = { workspace = true }\n turbo-binding = { workspace = true, features = [\n+ \"__swc_transform_modularize_imports\",\n \"__feature_auto_hash_map\... | 2023-04-18T13:02:42 |
huggingface/transformers | 025531981cd9cfa538655987d5237decacd91c48 | 32567739740da86ddf96c60a23cf2d0494ce4145 | [`FA3`] Fix masking and loading logic in same process (#41217)
fix loading and fa3 masking | [
{
"path": "src/transformers/integrations/hub_kernels.py",
"patch": "@@ -191,7 +191,7 @@ def load_and_register_kernel(attn_implementation: str) -> None:\n if attention_wrapper is None:\n attention_wrapper = flash_attention_forward\n kernel_function = partial(attention_wrapper, imp... | 2025-10-01T14:36:12 |
electron/electron | fdc19f2d3a16e703fbcc6985a4a98673a0292936 | d3caea91b073b1c38117135c7e720b2a7deef047 | Fix building on Windows | [
{
"path": "chromium_src/chrome/common/chrome_paths_win.cc",
"patch": "@@ -15,9 +15,6 @@\n #include \"base/win/metro.h\"\n #include \"base/win/scoped_co_mem.h\"\n #include \"chrome/common/chrome_constants.h\"\n-#include \"chrome/common/chrome_switches.h\"\n-#include \"chrome/installer/util/browser_distributi... | 2015-11-13T05:23:13 |
golang/go | 1c86beeadfc7a370048ad58f76b1b60b5bcd06ee | cb908f1d4dd24dad17105022df7b0e96ac1d6988 | go/types: report error for incomplete struct composite literal type
This is a port of CL 361412 to go/types.
Change-Id: Ie5bccc7faba7ca9230e712f867b27ca9dcddba79
Reviewed-on: https://go-review.googlesource.com/c/go/+/362739
Trust: Robert Findley <rfindley@google.com>
Run-TryBot: Robert Findley <rfindley@google.com>
T... | [
{
"path": "src/go/types/expr.go",
"patch": "@@ -1230,6 +1230,12 @@ func (check *Checker) exprInternal(x *operand, e ast.Expr, hint Type) exprKind {\n \n \t\tswitch utyp := structure(base).(type) {\n \t\tcase *Struct:\n+\t\t\t// Prevent crash if the struct referred to is not yet set up.\n+\t\t\t// See analog... | 2021-11-09T19:20:11 |
nodejs/node | ed60e863e74786dfb1f868f2a17c939843b64c25 | 3b6344ce42f35e83a580ef55a19c23becccdaa07 | test: fix test-heapdump-worker
This test was broken by d35af56e5f3b1334c4360dbf8a013d0c522fe5f8.
Refs: https://github.com/nodejs/node/pull/21283
Fixes: https://github.com/nodejs/node/issues/26712
PR-URL: https://github.com/nodejs/node/pull/26713
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: Gireesh Punat... | [
{
"path": "test/pummel/test-heapdump-worker.js",
"patch": "@@ -9,7 +9,6 @@ const worker = new Worker('setInterval(() => {}, 100);', { eval: true });\n validateSnapshotNodes('Node / Worker', [\n {\n children: [\n- { node_name: 'Node / AsyncRequest', edge_name: 'thread_stopper_' },\n { node_n... | 2019-03-17T11:16:57 |
huggingface/transformers | 32567739740da86ddf96c60a23cf2d0494ce4145 | d848a3953aeb7debdbfbc6bfbf788c528cd40e46 | FP-Quant NVFP4 and Python 3.9 support (#39876)
* quartet
* quartet qat -> quartet
* format
* bf16 backward
* interfaces
* forward_method
* quartet -> fp_quant
* style
* List -> list
* list typing
* fixed format and annotations
* test_fp_quant
* docstrings and default dtypes
* better docstring and removed ... | [
{
"path": "docker/transformers-quantization-latest-gpu/Dockerfile",
"patch": "@@ -82,6 +82,9 @@ RUN python3 -m pip uninstall -y flash-attn\n # this line must be added in order for python to be aware of transformers.\n RUN cd transformers && python3 setup.py develop\n \n+# Add fp-quant for quantization testi... | 2025-10-01T13:58:22 |
vercel/next.js | 5418bc8cebcac3ae877adfa81d475bb373e2eb24 | b656b3e9d24bfcd8cab1222982c15ec53e7e46ba | Chunking Context Refactor pt. 3: Address PR comments from pt. 2 (vercel/turbo#4601)
See https://github.com/vercel/turbo/pull/4546 for the first attempt.
This causes Next.js tests to fail. ~~Currently figuring out what's
wrong.~~
This surfaced an existing issue in our chunk optimization logic, where
chunks of differe... | [
{
"path": "crates/turbopack-core/src/chunk/containment_tree.rs",
"patch": "@@ -0,0 +1,220 @@\n+use std::{cell::RefCell, mem::take, rc::Rc};\n+\n+use anyhow::Result;\n+use indexmap::{IndexMap, IndexSet};\n+use turbo_tasks::TryJoinIterExt;\n+use turbo_tasks_fs::{FileSystemPathOptionVc, FileSystemPathVc};\n+\n... | 2023-04-18T12:51:22 |
electron/electron | 05d2e431debde75edd84d83b357fb7b3a6eea9c7 | 83ae9f8d71007944b9f9e5b631740ea7a416e1b9 | Fix building on OS X | [
{
"path": "chromium_src/chrome/common/chrome_constants.cc",
"patch": "@@ -3,10 +3,16 @@\n // found in the LICENSE file.\n \n #include \"chrome/common/chrome_constants.h\"\n-#include \"chrome/common/chrome_version.h\"\n+\n+#define FPL FILE_PATH_LITERAL\n \n namespace chrome {\n \n+#if defined(OS_MACOSX)\n+co... | 2015-11-13T05:03:00 |
golang/go | cb908f1d4dd24dad17105022df7b0e96ac1d6988 | 4aa0746f6abae7dc112883e79f93993a430bd340 | go/types: don't return an array type with invalid length
In preparation for porting CL 361412, fix a discrepancy in go/types,
where [-1]T is returned for an array type with invalid length.
Change-Id: Ia32f5b66c9c561ccf0c32af1922fc4690c66dbc3
Reviewed-on: https://go-review.googlesource.com/c/go/+/362738
Trust: Robert ... | [
{
"path": "src/go/types/api_test.go",
"patch": "@@ -342,7 +342,7 @@ func TestTypesInfo(t *testing.T) {\n \t\t{broken + `x2; func _() { var a, b string; type x struct {f string}; z := &x{f: a; f: b;}}`, `b`, `string`},\n \t\t{broken + `x3; var x = panic(\"\");`, `panic`, `func(interface{})`},\n \t\t{`package... | 2021-11-09T19:56:39 |
nodejs/node | 8e308e8b2804344768037b5764328cf5cfdfaade | f1056542f0cf2520e122d93afbaada6b6599e49b | deps,v8: cherry-pick 385aa80
Original commit message:
Correct removal of redundant moves
The logic for removing while iterating is non-standard and
a left over from a previous index based loop. This patch
replaces it with a standard erase based version.
This fixes a runtime crash with MSVC that ... | [
{
"path": "common.gypi",
"patch": "@@ -37,7 +37,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.6',\n+ 'v8_embedder_string': '-node.7',\n \n ##### V8 defaults for Node.js #####\n "... | 2019-03-16T14:44:59 |
huggingface/transformers | d848a3953aeb7debdbfbc6bfbf788c528cd40e46 | e4913bdf505e9184ac9647d13172b9ce1b38fd9a | Remove all instances of `is_safetensors_available` (#41233)
* safetensors is a core dep
* fix
* ok
* simplify branching
* keep it for now
---------
Co-authored-by: Cyril Vallez <cyril.vallez@gmail.com> | [
{
"path": "src/transformers/commands/env.py",
"patch": "@@ -14,7 +14,6 @@\n \n \n import contextlib\n-import importlib.util\n import io\n import os\n import platform\n@@ -26,7 +25,6 @@\n from ..integrations.deepspeed import is_deepspeed_available\n from ..utils import (\n is_accelerate_available,\n- ... | 2025-10-01T13:57:28 |
vercel/next.js | 96923ed89416115e6c7034cf9722927e990b832c | 902bb404548a439a70aaef6d13b9b3e2e91c2dbb | Fix static opt of routes generation for static metadata files (#48528)
x-ref: [slack
thread](https://vercel.slack.com/archives/C03KAR5DCKC/p1681781435607369)
For static metadata files, we should always generate static routes
instead of generate dynamic routes, so that they won't be deployed as
serverless functions wh... | [
{
"path": "packages/next/src/lib/metadata/get-metadata-route.ts",
"patch": "@@ -1,4 +1,4 @@\n-import { isMetadataRoute } from './is-metadata-route'\n+import { isMetadataRoute, isMetadataRouteFile } from './is-metadata-route'\n import path from '../../shared/lib/isomorphic/path'\n import { djb2Hash } from '.... | 2023-04-18T12:13:55 |
electron/electron | f2439cefd0dba89df02993011ac46dd32a1f79a6 | 852500e5faade74d7cf41f257150af7f6c752a63 | linux: Don't throw error when using autoUpdater
Fix #3194. | [
{
"path": "atom/browser/api/lib/auto-updater.coffee",
"patch": "@@ -1,7 +1,5 @@\n-switch process.platform\n- when 'win32'\n- module.exports = require './auto-updater/auto-updater-win'\n- when 'darwin'\n- module.exports = require './auto-updater/auto-updater-mac'\n+module.exports =\n+ if process.pla... | 2015-11-13T02:58:10 |
golang/go | 4aa0746f6abae7dc112883e79f93993a430bd340 | a65a095ca423c21bdd53a6a8300b501b88d60137 | cmd/go: add workspace pruning mode
[ this is a roll-forward of golang.org/cl/357169 with minor changes
to fix the cmd/go/internal/modload tests: because they don't run the
go command, some initialization isn't run on the test and modroots is
empty in cases it can't be when the full command setup is done. So
directly c... | [
{
"path": "src/cmd/go/internal/modload/buildlist.go",
"patch": "@@ -38,11 +38,17 @@ type Requirements struct {\n \t// If pruned, the graph includes only the root modules, the explicit\n \t// requirements of those root modules, and the transitive requirements of only\n \t// the root modules that do not suppo... | 2021-10-19T18:05:29 |
huggingface/transformers | 1c8f206ecc31c3a9aa7e515f668c262d6939867d | 3016717f0d904910fd9a55b3708e76024e71fe72 | Fix pylint warnings (#41222)
* Remove unused variables
Signed-off-by: Yuanyuan Chen <cyyever@outlook.com>
* Remove reimported packages
Signed-off-by: Yuanyuan Chen <cyyever@outlook.com>
* Fix code
Signed-off-by: Yuanyuan Chen <cyyever@outlook.com>
* Fix pylint warnings
Signed-off-by: Yuanyuan Chen <cyyever@outl... | [
{
"path": "src/transformers/__init__.py",
"patch": "@@ -770,7 +770,6 @@\n from .utils import is_torch_npu_available as is_torch_npu_available\n from .utils import is_torch_xla_available as is_torch_xla_available\n from .utils import is_torch_xpu_available as is_torch_xpu_available\n- from .ut... | 2025-10-01T13:16:22 |
rust-lang/rust | 9848c66a363043600670cba78a1221b6b80ed987 | 82d7cd4dbc407bc8169b868a7b3e07d37bc4b154 | Fix warnings | [
{
"path": "build_system/src/fuzz/reduce.rs",
"patch": "@@ -39,7 +39,6 @@ fn remove_dup_assign(\n ends: usize,\n cache: &mut ResultCache,\n ) {\n- let mut curr = 0;\n let mut file_copy = file.clone();\n let mut reduction_count = 0;\n // Not worth it.\n@@ -427,7 +426,6 @@ pub(super) fn ... | 2025-06-16T12:23:45 |
vercel/next.js | 902bb404548a439a70aaef6d13b9b3e2e91c2dbb | 12472b4c60069771faf5eebf37013dfcee1bce5d | Remove unused code from `test-pack` turbo task (#48487)
We decided in https://github.com/vercel/next.js/pull/48308 that we won't
use `turbo` when packing packages for tests.
This PR removes all code associated with that effort. The whole thing
fas behind a flag, so it shouldn't affect anything.
fix NEXT-1025 | [
{
"path": ".github/actions/next-stats-action/src/prepare/repo-setup.js",
"patch": "@@ -55,146 +55,111 @@ module.exports = (actionInfo) => {\n }\n },\n async linkPackages({ repoDir, nextSwcVersion }) {\n- let useTestPack = process.env.NEXT_TEST_PACK\n+ const pkgPaths = new Map()\n+ ... | 2023-04-18T12:12:00 |
golang/go | a65a095ca423c21bdd53a6a8300b501b88d60137 | 805b4d56364ec40f29fc7efba5de537d14036c6a | cmd/go/internal/bug: remove duplicate code
Change-Id: I8a14b2fbb44f7ed1ea126cf27adc447f33fdf6f2
Reviewed-on: https://go-review.googlesource.com/c/go/+/313170
Reviewed-by: Bryan C. Mills <bcmills@google.com>
Run-TryBot: Bryan C. Mills <bcmills@google.com>
TryBot-Result: Go Bot <gobot@golang.org>
Trust: Cherry Mui <cher... | [
{
"path": "src/cmd/go/internal/bug/bug.go",
"patch": "@@ -106,8 +106,9 @@ func printGoEnv(w io.Writer) {\n }\n \n func printGoDetails(w io.Writer) {\n-\tprintCmdOut(w, \"GOROOT/bin/go version: \", filepath.Join(runtime.GOROOT(), \"bin/go\"), \"version\")\n-\tprintCmdOut(w, \"GOROOT/bin/go tool compile -V: \... | 2021-04-24T14:19:07 |
electron/electron | 852500e5faade74d7cf41f257150af7f6c752a63 | ce6a7c7d088eb0dc387a99c6ed74fd9ee839a0eb | Fix a few places using old style require | [
{
"path": "atom/browser/api/lib/auto-updater/auto-updater-win.coffee",
"patch": "@@ -1,6 +1,6 @@\n-app = require 'app'\n-url = require 'url'\n+{app} = require 'electron'\n {EventEmitter} = require 'events'\n+url = require 'url'\n \n squirrelUpdate = require './squirrel-update-win'\n ",
"additions": 2,
... | 2015-11-13T01:38:22 |
Subsets and Splits
Assembly Language GitHub Issues
Retrieves a sample of assembly-language related commits with their details, but doesn't provide meaningful analysis or patterns beyond basic filtering.
Swift Compiler Issues Analysis
Retrieves all training data for the Swift programming language repository, providing basic filtering but offering limited analytical insight beyond identifying relevant code examples.