repo
stringclasses
15 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
64.3k
files
listlengths
1
300
timestamp
timestamp[s]date
2013-03-13 20:45:00
2026-04-11 07:48:46
huggingface/transformers
4a1ad8da8d6b36a60269ef1deadc474e9243aec1
62236a0a23c1fb442b58241cdaa61dc42753caeb
SAM2 Video support fp16 (#43268) * fix: cast memory attention inputs to inference session dtype * chore: fix formatting * add fix and tests --------- Co-authored-by: yonigozlan <yoni.gozlan@huggingface.co>
[ { "path": "src/transformers/models/sam2_video/modeling_sam2_video.py", "patch": "@@ -2495,7 +2495,7 @@ def _prepare_memory_conditioned_features(\n num_object_pointer_tokens = object_pointers.shape[0]\n \n # Step 4: Concatenate all retrieved memories and their positional embeddings\n-...
2026-01-22T16:00:00
nodejs/node
e4bbbcc84bd10be1e9e8e66d42542c70c1a02056
5e3b4d6ed957ca03ae7178c7697549f470b6d86e
fs: add fs.writev() which exposes syscall writev() fs with writev allow many buffers to be pushed to underlying OS APIs in one batch, so this should improve write speed to files. Refs: https://github.com/nodejs/node/issues/2298 PR-URL: https://github.com/nodejs/node/pull/25925 Fixes: https://github.com/nodejs/node/i...
[ { "path": "doc/api/fs.md", "patch": "@@ -3863,6 +3863,52 @@ changes:\n For detailed information, see the documentation of the asynchronous version of\n this API: [`fs.write(fd, string...)`][].\n \n+## fs.writev(fd, buffers[, position], callback)\n+<!-- YAML\n+added: REPLACEME\n+-->\n+\n+* `fd` {integer}\n+*...
2019-02-04T16:18:39
huggingface/transformers
62236a0a23c1fb442b58241cdaa61dc42753caeb
1f1532adcaa8cf873ca6586ff31a4120f544b751
Fix: adding pad_token_id in Qwen3VLTextConfig (#43398) * Fix: adding pad_token_id in Qwen3VLTextConfig * Fix: adding pad_token_id in Qwen3VLTextConfig * updated the docstring with pad_token_id * updated the docstring with pad_token_id * added test nested in Qwen3VLModelTest for missing pad_token_id * Updated pad_...
[ { "path": "src/transformers/models/qwen3_vl/configuration_qwen3_vl.py", "patch": "@@ -109,6 +109,8 @@ class Qwen3VLTextConfig(PreTrainedConfig):\n Whether to use a bias in the query, key, value and output projection layers during self-attention.\n attention_dropout (`float`, *optional*, ...
2026-01-22T15:25:46
golang/go
6378c0e753b75089611c8ca973b6e1777cf5aff8
58631ba54f45506f2f178bb01d22273e7dfba674
go/build: avoid setting Default.GOROOT when runtime.GOROOT() is empty Previously, we called path.Clean on the value of runtime.GOROOT() even if it was empty, which would set it explicitly to ".". That would cause (*Context).importGo to assume that errors resolving paths in GOROOT are fatal and return early: https://cs...
[ { "path": "src/cmd/go/testdata/script/build_trimpath_goroot.txt", "patch": "@@ -23,11 +23,11 @@ stdout '^runtime '$TESTGO_GOROOT${/}src${/}runtime'$'\n \n ! go run -trimpath .\n stdout '^GOROOT $'\n-stderr '^package runtime is not in GOROOT \\(src'${/}'runtime\\)$'\n+stderr 'cannot find package \"runtime\" ...
2022-03-08T21:29:00
huggingface/transformers
1f1532adcaa8cf873ca6586ff31a4120f544b751
1908fb6132126cae909a559685a78f3ebfe39356
Fix failing `recurrent_gemma` tests (#43405) Fix failing recurrent_gemma tests
[ { "path": "src/transformers/models/recurrent_gemma/modeling_recurrent_gemma.py", "patch": "@@ -219,7 +219,7 @@ def forward(\n # Partial rotary embedding\n query_rot, query_pass = torch.chunk(query_states, int(1 / self.partial_rotary_factor), dim=-1)\n key_rot, key_pass = torch.chunk(...
2026-01-22T14:45:15
nodejs/node
0bbda5e5aede9b264a3c6188529c9dbed1ec9719
91a4cb71753b7c7012022e3e67c7a1f16f3b5e80
fs: allow int64 offset in fs.read/readSync/fd.read Since v10.10.0, 'buf' can be any DataView, meaning the largest byteLength can be Float64Array.BYTES_PER_ELEMENT * kMaxLength = 17,179,869,176. 'offset' can now be up to 2**53 - 1. This makes it possible to tile reads into a large buffer. Breaking: now throws if read...
[ { "path": "lib/fs.js", "patch": "@@ -453,7 +453,12 @@ function read(fd, buffer, offset, length, position, callback) {\n validateBuffer(buffer);\n callback = maybeCallback(callback);\n \n- offset |= 0;\n+ if (offset == null) {\n+ offset = 0;\n+ } else {\n+ validateSafeInteger(offset, 'offset');\...
2019-03-18T18:27:13
rust-lang/rust
fddd05bd7f2a01004f5c21c99f5fcab0f47e3b45
1bc289da3a90cecf3d288c28a2c8a5d8c9fcd371
some clippy fixes
[ { "path": "library/stdarch/crates/core_arch/src/aarch64/neon/generated.rs", "patch": "@@ -7925,7 +7925,7 @@ pub fn vcvth_f16_u64(a: u64) -> f16 {\n #[unstable(feature = \"stdarch_neon_f16\", issue = \"136306\")]\n pub fn vcvth_n_f16_s16<const N: i32>(a: i16) -> f16 {\n static_assert!(N >= 1 && N <= 16);...
2025-07-06T07:15:54
golang/go
58631ba54f45506f2f178bb01d22273e7dfba674
9ac75d39514402d9b314e758524dcc28612b8937
internal/testenv: add GOROOT and use it to fix tests broken with -trimpath This fixes many (but not all) of the tests that currently fail (due to a bogus path reported by runtime.GOROOT) when run with 'go test -trimpath std cmd'. Updates #51461 Change-Id: Ia2cc05705529c4859e7928f32eeceed647f2e986 Reviewed-on: https:...
[ { "path": "src/cmd/api/goapi.go", "patch": "@@ -34,9 +34,11 @@ func goCmd() string {\n \tif runtime.GOOS == \"windows\" {\n \t\texeSuffix = \".exe\"\n \t}\n-\tpath := filepath.Join(runtime.GOROOT(), \"bin\", \"go\"+exeSuffix)\n-\tif _, err := os.Stat(path); err == nil {\n-\t\treturn path\n+\tif goroot := bu...
2022-03-09T22:19:23
vercel/next.js
7ea788e4728fa045f5417b814464ed765913c6f2
1ffada9a70711ac881bf353638547d707778f8b0
docs: Improve error handling docs for server-side errors. (#52302) This PR adds more info about `error.message`, `error.digest`, and omission of sensitive error details from Server Components. --------- Co-authored-by: Tim Neutkens <tim@timneutkens.nl> Co-authored-by: Lee Robinson <me@leerob.io>
[ { "path": "docs/02-app/01-building-your-application/01-routing/07-error-handling.mdx", "patch": "@@ -1,13 +1,16 @@\n ---\n title: Error Handling\n description: Handle runtime errors by automatically wrapping route segments and their nested children in a React Error Boundary.\n+related:\n+ links:\n+ - ap...
2023-07-09T22:38:19
huggingface/transformers
1908fb6132126cae909a559685a78f3ebfe39356
5c77298c9379df31c4a2c859688197f3ac71d125
Fix failing `ChameleonIntegrationTests` (#43401) Fix failing ChameleonIntegrationTests
[ { "path": "tests/models/chameleon/test_modeling_chameleon.py", "patch": "@@ -338,7 +338,7 @@ def test_model_7b(self):\n )\n prompt = \"<image>Describe what do you see here and tell me about the history behind it?\"\n \n- inputs = processor(images=image, text=prompt, return_tensors=\"p...
2026-01-22T14:41:58
rust-lang/rust
ae5cb5f66d88f75d88eb9d37fc1bf73c169f47c5
1b0bc594a75dfc1cdedc6c17052cf44de101e632
Mention more APIs in `ParseIntError` docs
[ { "path": "library/core/src/num/error.rs", "patch": "@@ -45,8 +45,11 @@ impl From<!> for TryFromIntError {\n \n /// An error which can be returned when parsing an integer.\n ///\n-/// This error is used as the error type for the `from_str_radix()` functions\n-/// on the primitive integer types, such as [`i8...
2025-07-07T19:43:59
nodejs/node
4a2bd69db99c1bb8692e1f653edcb225fbc23032
a890771cd0a31bda055fc71741ace7822bc678dd
stream: fix destroy() behavior Ensure errorEmitted is always set. Only emit 'error' once. PR-URL: https://github.com/nodejs/node/pull/29058 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com> Reviewed...
[ { "path": "doc/api/stream.md", "patch": "@@ -281,6 +281,9 @@ The stream is not closed when the `'error'` event is emitted unless the\n [`autoDestroy`][writable-new] option was set to `true` when creating the\n stream.\n \n+After `'error'`, no further events other than `'close'` *should* be emitted\n+(includ...
2019-07-15T22:03:23
electron/electron
0c710fce336d976647b68e85deb3837fd7a744f4
c1272743b922d8f2f2990977a863c5776c4c36cf
:apple: Fix 'setAspectRatio(0)' not resetting the default behaviour.
[ { "path": "atom/browser/native_window_mac.mm", "patch": "@@ -718,14 +718,11 @@ - (void)drawRect:(NSRect)dirtyRect {\n const gfx::Size& extra_size) {\n NativeWindow::SetAspectRatio(aspect_ratio, extra_size);\n \n- // We can't just pass the aspect ratio to Cocoa, si...
2016-05-27T12:56:34
huggingface/transformers
5c77298c9379df31c4a2c859688197f3ac71d125
6e1cde6780e40175e8729e4c095bda64601347f0
Fix typo in docstring for `Sam3TrackerConfig` (#43368) * Fix typo in docstring for `Sam3TrackerConfig` * Fix `Sam2Config` typo in `configuration_sam2.py` * Run `make fix-repo`
[ { "path": "src/transformers/models/edgetam/configuration_edgetam.py", "patch": "@@ -271,7 +271,7 @@ class EdgeTamConfig(PreTrainedConfig):\n ... )\n \n >>> # Initializing a EdgeTamConfig with `\"facebook/edgetam.1_hiera_tiny\"` style configuration\n- >>> configuration = EdgeTamconfig()\n+ >>> ...
2026-01-22T14:22:03
vercel/next.js
632a582807fe4883b54d8e67fc1f7dcd0d72a79d
99490de928fa6a5309e1f52523438b74a2b4dbd6
Fix metadata layer webpack rule for server-only (#52403) After we separating the metadata routes to a separate layer, we didn't apply the webpack alias rules properly to it as it's should still be treated as pure "server" side This PR fixes the aliasing for that new metadata layer and make it working properly with "s...
[ { "path": "packages/next/src/build/webpack-config.ts", "patch": "@@ -83,6 +83,9 @@ const NEXT_PROJECT_ROOT_DIST_CLIENT = path.join(\n 'client'\n )\n \n+const isWebpackServerLayer = (layer: string | null) =>\n+ Boolean(layer && WEBPACK_LAYERS.GROUP.server.includes(layer))\n+\n if (parseInt(React.version) ...
2023-07-09T18:23:51
nodejs/node
4111c57f7ca3fd2993b60e86bea2abe63d124c65
841df6a9b68f431129343c49fc9bb6ed4d83f89b
fs: add default options for *stat() PR-URL: https://github.com/nodejs/node/pull/29114 Fixes: https://github.com/nodejs/node/issues/29113 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "lib/fs.js", "patch": "@@ -796,7 +796,7 @@ function readdirSync(path, options) {\n return options.withFileTypes ? getDirents(path, result) : result;\n }\n \n-function fstat(fd, options, callback) {\n+function fstat(fd, options = { bigint: false }, callback) {\n if (typeof options === 'function...
2019-08-14T05:15:10
huggingface/transformers
6e1cde6780e40175e8729e4c095bda64601347f0
79a58a747047ef5c2892f5eb3cb06ff229611e82
Fix always issuing generation deprecation warning (#43389) Commit 38e5987 from PR #43194 introduced a minor bug that causes the issuing of a deprecation warning regardless of the user using the deprecated interface. For example: ``` model.generate(**input_ids, do_sample=False) ``` would issue a deprecation warning no...
[ { "path": "src/transformers/generation/utils.py", "patch": "@@ -1812,7 +1812,7 @@ def _prepare_generation_config(\n generation_config.cache_implementation = None\n \n # It doesn't make sense to allow kwargs and `generation_config`, that should be mutually exclusive\n- if generatio...
2026-01-22T14:16:34
electron/electron
b0c72adbe165eb077299d0313da053961b2814b6
c1272743b922d8f2f2990977a863c5776c4c36cf
:apple: Fix context menus only showing on primary monitor.
[ { "path": "atom/browser/api/atom_api_menu_mac.mm", "patch": "@@ -52,15 +52,18 @@\n // If no preferred item is specified, try to show all of the menu items.\n if (!positioning_item) {\n CGFloat windowBottom = CGRectGetMinY([view window].frame);\n- CGFloat distaceFromBottom = windowBottom + positio...
2016-05-26T21:43:38
vercel/next.js
99490de928fa6a5309e1f52523438b74a2b4dbd6
0abc874ed55cbecf214cd7186a80c69e084eacc9
fix metadata-related typo in MDX documentation (#52446)
[ { "path": "docs/02-app/01-building-your-application/06-configuring/05-mdx.mdx", "patch": "@@ -226,7 +226,7 @@ To add a layout to your MDX page, create a new component and import it into the\n import { MyLayoutComponent } from 'my-components';\n import HelloWorld from './hello.mdx';\n \n-export const meta = ...
2023-07-09T14:34:15
golang/go
9ac75d39514402d9b314e758524dcc28612b8937
9a932c5712bebb2620e0719a93773403f4fb563d
cmd/link: avoid stamping runtime.defaultGOROOT when paths are being trimmed Previously, runtime.GOROOT() would return the string "go" in a binary build with -trimpath. This change stamps the empty string instead, using a sentinel value passed from cmd/go that looks like the GOROOT environment variable (either "$GOROOT...
[ { "path": "src/cmd/go/internal/work/gc.go", "patch": "@@ -27,7 +27,7 @@ import (\n )\n \n // The 'path' used for GOROOT_FINAL when -trimpath is specified\n-const trimPathGoRootFinal = \"go\"\n+const trimPathGoRootFinal string = \"$GOROOT\"\n \n var runtimePackages = map[string]struct{}{\n \t\"internal/abi\"...
2022-03-15T20:37:50
huggingface/transformers
79a58a747047ef5c2892f5eb3cb06ff229611e82
199c0d0a1deb6dddfc18af414bab8e1ef6e9eb37
Fix typo in custom models documentation (#43399) The kwargs is expected to be `trust_remote_code` (ref: [`from_pretrained()` function source](https://github.com/huggingface/transformers/blob/57278c904c5158999d31a0db8bfcd63360c37b48/src/transformers/modeling_utils.py#L3902))
[ { "path": "docs/source/en/custom_models.md", "patch": "@@ -294,4 +294,4 @@ resnet50d.push_to_hub(\"custom-resnet50d\")\n \n The pretrained weights, configuration, `modeling.py` and `configuration.py` files should all be uploaded to the Hub now in a [repository](https://hf.co/sgugger/custom-resnet50d) under ...
2026-01-22T13:45:43
nodejs/node
791409a9ce0d4487c84c9857ade84a29c34b542e
0f8f4cd3d7a7596188f257b1c23523111b95f48e
doc: fixup changelog for v10.16.3 Remove (SEMVER-MINOR) label from patch commit. Add link to table. Refs: https://github.com/nodejs/node/pull/26990 PR-URL: https://github.com/nodejs/node/pull/29159 Reviewed-By: Beth Griggs <Bethany.Griggs@uk.ibm.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: An...
[ { "path": "doc/changelogs/CHANGELOG_V10.md", "patch": "@@ -10,6 +10,7 @@\n </tr>\n <tr>\n <td valign=\"top\">\n+<a href=\"#10.16.3\">10.16.3</a><br/>\n <a href=\"#10.16.2\">10.16.2</a><br/>\n <a href=\"#10.16.1\">10.16.1</a><br/>\n <a href=\"#10.16.0\">10.16.0</a><br/>\n@@ -84,7 +85,7 @@ Vulnerabilities fix...
2019-08-16T09:18:18
electron/electron
836f8ab33cb85d437e4ec68edb1b7372899fefce
570dc7ca9bc3a69b9018a01ec46b9e541d76ea56
:bug: Fix setFullscreen() on Windows This ensures that a BrowserWindow responds to `setFullscreen(true)` if `full screenable` was not defined during creation. This bug was on Windows only.
[ { "path": "atom/browser/native_window.cc", "patch": "@@ -146,6 +146,11 @@ void NativeWindow::InitFromOptions(const mate::Dictionary& options) {\n bool fullscreen = false;\n if (options.Get(options::kFullscreen, &fullscreen) && !fullscreen)\n fullscreenable = false;\n+ // On Windows, we can only ent...
2016-05-26T17:06:42
vercel/next.js
0abc874ed55cbecf214cd7186a80c69e084eacc9
9ccc6fc4a6414655f2d893f82cfd7f0d07dd601f
chore(ci): fix turbo input path globs (#52414) This PR fixes turbo.json inputs to avoid cache hit when it should be cache miss. Example PR it was incorrectly cached: - [PR 52407](https://github.com/vercel/next.js/pull/52407) - [Commit 06b780](https://github.com/vercel/next.js/pull/52407/commits/06b780e15eb8f855e9ae8...
[ { "path": "turbo.json", "patch": "@@ -41,35 +41,35 @@\n \"//#typescript\": {},\n \"rust-check\": {\n \"inputs\": [\n- \".cargo/**\",\n- \"packages/next-swc/crates/**\",\n- \"**/Cargo.toml\",\n- \"**/Cargo.lock\"\n+ \"../../.cargo/**\",\n+ \"../../packa...
2023-07-08T01:57:24
rust-lang/rust
81dd4e61ed8b63d3398a4bdee033edccc75d2994
9580d61dc52b08e2986eb4005f2cd991f112718e
use preinterned symbol fixes https://github.com/rust-lang/rust-clippy/actions/runs/16126736130/job/45505355614?pr=15222#logs
[ { "path": "clippy_lints/src/exit.rs", "patch": "@@ -68,7 +68,7 @@ impl<'tcx> LateLintPass<'tcx> for Exit {\n // if you instead check for the parent of the `exit()` call being the entrypoint function, as this worked before,\n // in compilation contexts like --all-targets (which includ...
2025-07-07T20:17:19
golang/go
67f6b8c98715f265f38aff4052356ef6e6b35dfe
9465878114232d4a9cd755fee9241fff1d63bbea
cmd/go: avoid stamping VCS metadata in test binaries Invoking a VCS tool requires that the VCS tool be installed, and also adds latency to build commands. Unfortunately, we had been mistakenly loading VCS metadata for tests of "main" packages. Users almost never care about versioning for test binaries, because 'go te...
[ { "path": "src/cmd/go/internal/list/list.go", "patch": "@@ -567,6 +567,7 @@ func runList(ctx context.Context, cmd *base.Command, args []string) {\n \tpkgOpts := load.PackageOpts{\n \t\tIgnoreImports: *listFind,\n \t\tModResolveTests: *listTest,\n+\t\tLoadVCS: cfg.BuildBuildvcs,\n \t}\n \tpkgs := l...
2022-03-18T15:40:34
huggingface/transformers
199c0d0a1deb6dddfc18af414bab8e1ef6e9eb37
2d4d8fe4aa3ad29986c5c7e831e1fcf119efe8ae
fix: access `rope_theta` correctly in `Llama4VisionRotaryEmbedding` (#43281) Signed-off-by: Tcc0403 <76503978+Tcc0403@users.noreply.github.com> Co-authored-by: Raushan Turganbay <raushan@huggingface.co>
[ { "path": "src/transformers/models/llama4/modeling_llama4.py", "patch": "@@ -1006,7 +1006,7 @@ def forward(self, hidden_states: torch.Tensor) -> torch.Tensor:\n \n \n class Llama4VisionRotaryEmbedding(nn.Module):\n- def __init__(self, config):\n+ def __init__(self, config: Llama4VisionConfig):\n ...
2026-01-22T11:22:24
electron/electron
0b9c11a5f230e55cc6d5c4a097c7f9cc927f2a88
9684f61e12e8c0651359ec040addfe6b72885f5d
Fix pylint warnings
[ { "path": "script/upload.py", "patch": "@@ -9,8 +9,8 @@\n \n from lib.config import PLATFORM, get_target_arch, get_chromedriver_version, \\\n get_platform_key, get_env_var\n-from lib.util import electron_gyp, execute, get_electron_version, parse_version, \\\n- scop...
2016-05-26T01:06:25
nodejs/node
0f8f4cd3d7a7596188f257b1c23523111b95f48e
71b5ce58854c196e2cdc5abdecd386d7135b9824
doc: fix introduced_in note in querystring.md The method descriptions mentioned the right version but for some reason the top-level description did not. Well, now it does. PR-URL: https://github.com/nodejs/node/pull/29014 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com...
[ { "path": "doc/api/querystring.md", "patch": "@@ -1,6 +1,6 @@\n # Query String\n \n-<!--introduced_in=v0.10.0-->\n+<!--introduced_in=v0.1.25-->\n \n > Stability: 2 - Stable\n ", "additions": 1, "deletions": 1, "language": "Markdown" } ]
2019-08-06T11:45:05
vercel/next.js
9ccc6fc4a6414655f2d893f82cfd7f0d07dd601f
e50c9180a305a01a313ec182783566af7daa0588
[turbopack]: Remove skipped integration tests (#52421) https://github.com/vercel/next.js/pull/52413 removed all of our skipped tests, and the test suite that runs them will panic if none are found as a safety feature.
[ { "path": "packages/next-swc/crates/next-dev-tests/tests/integration.rs", "patch": "@@ -115,7 +115,7 @@ fn run_async_test<'a, T>(future: impl Future<Output = T> + Send + 'a) -> T {\n #[testing::fixture(\"tests/integration/*/*/*/input\")]\n fn test(resource: PathBuf) {\n let resource = resource.parent()....
2023-07-07T23:41:07
huggingface/transformers
2d4d8fe4aa3ad29986c5c7e831e1fcf119efe8ae
eff263cd595bb47013af292ba619447cc842f4ab
GptOss experts implementation (#43227) * experts impl gpt oss * no need to transpose dequantized experts * skip test_reverse_loading_mapping * fix custom gating * revert transposition and simply support transposed experts to avoid modifying eager * style * don't rely on weight shapes as they can be square matric...
[ { "path": "src/transformers/conversion_mapping.py", "patch": "@@ -21,6 +21,7 @@\n Chunk,\n Concatenate,\n ErnieFuseAndSplitTextVisionExperts,\n+ Force16BytesAlignment,\n MergeModulelist,\n Transpose,\n WeightConverter,\n@@ -40,6 +41,23 @@\n \n def _build_checkpoint_conversion_mapp...
2026-01-22T09:34:32
golang/go
9465878114232d4a9cd755fee9241fff1d63bbea
a682a5c711097378a72e6cf3d498832e813a14e8
time: fix zoneinfo.zip locating logic when built with -trimpath When the test binary is built with the -trimpath flag, runtime.GOROOT() is invalid, and must not be used to locate GOROOT/lib/time/zoneinfo.zip. (We can use other sources instead.) However, the test for the package expects zoneinfo.zip to definitely exis...
[ { "path": "src/time/export_android_test.go", "patch": "@@ -4,9 +4,13 @@\n \n package time\n \n-func ForceAndroidTzdataForTest(tzdata bool) {\n-\tforceZipFileForTesting(false)\n-\tif tzdata {\n-\t\tzoneSources = zoneSources[:len(zoneSources)-1]\n+func ForceAndroidTzdataForTest() (undo func()) {\n+\tallowGoro...
2022-03-10T05:19:05
electron/electron
d1c302800f9268852cbceaea104f4ad02f881d5a
b86ded3b54544414e6d5f29e80eb465f37a2c041
Fix: Properly notify observers when window prevents close
[ { "path": "atom/browser/native_window_mac.mm", "patch": "@@ -6,6 +6,7 @@\n \n #include <string>\n \n+#include \"atom/browser/window_list.h\"\n #include \"atom/common/color_util.h\"\n #include \"atom/common/draggable_region.h\"\n #include \"atom/common/options_switches.h\"\n@@ -553,6 +554,11 @@ - (void)drawR...
2016-05-25T23:25:51
rust-lang/rust
c000a0136ccec78d3a7d6cf5ad0422eeb13bf9eb
1f36d4df9369b5665e936e812b587e1c6bfa0e28
fix: check against 'main' function name instead of entrypoint function update docs to be a bit more clear
[ { "path": "clippy_lints/src/exit.rs", "patch": "@@ -1,25 +1,38 @@\n use clippy_utils::diagnostics::span_lint;\n-use clippy_utils::is_entrypoint_fn;\n use rustc_hir::{Expr, ExprKind, Item, ItemKind, OwnerNode};\n use rustc_lint::{LateContext, LateLintPass, LintContext};\n use rustc_session::declare_lint_pass...
2025-07-07T19:08:38
nodejs/node
affa23bc88849f962e6fd784852c3db242bfeb19
004e2b759ffff2dff4b0d45c630e3305350b41df
2019-08-15, Version 8.16.1 'Carbon' (LTS) This is a security release. Notable changes: Node.js, as well as many other implementations of HTTP/2, have been found vulnerable to Denial of Service attacks. See https://github.com/Netflix/security-bulletins/blob/master/advisories/third-party/2019-002.md for more informati...
[ { "path": "CHANGELOG.md", "patch": "@@ -70,7 +70,8 @@ release.\n <a href=\"doc/changelogs/CHANGELOG_V10.md#10.0.0\">10.0.0</a><br/>\n </td>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V8.md#8.16.0\">8.16.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V8.md#8.16.1\">8.16.1</...
2019-08-15T17:51:19
golang/go
fcf6afb82dc1e9f80a6260467026adc11d5c9529
7e5804cb7014bf3154542a3d2afc68c3a61b7452
cmd/compile: pointers to notinheap types need their own shape They should not share a shape with regular pointers. We could coalesce multiple pointer-to-not-in-heap types, but doesn't seem worth it - just make them fully stenciled. Fixes #51733 Change-Id: Ie8158177226fbc46a798e71c51897a82f15153df Reviewed-on: https:...
[ { "path": "src/cmd/compile/internal/typecheck/subr.go", "patch": "@@ -1532,7 +1532,7 @@ func Shapify(t *types.Type, index int, tparam *types.Type) *types.Type {\n \t// Note: pointers to arrays are special because of slice-to-array-pointer\n \t// conversions. See issue 49295.\n \tif u.Kind() == types.TPTR &&...
2022-03-18T17:46:15
vercel/next.js
d11aafb7405ddf2c953ca9d22de160a8592759dc
f45a7fce9a71dd12683ba05e5812747a17830f9e
Update swc_core to `v0.79.13` (#52371) ### What? Update SWC crates to `v0.79.13`. ### Why? - Explicit resource management proposal is now fully implemented, although it's behind a parser flag because it's stage 3 - Some bugs of `swcMinify` are fixed. ### How? Closes WEB-1272 ## Turbopack updates * https://git...
[ { "path": "Cargo.lock", "patch": "@@ -412,7 +412,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-230706.3#ab723987de55dfa4694cac11b6d0bbabc7ed330b\"\n+source = \"git+https://github.com/vercel/turbo.git?ta...
2023-07-07T19:37:05
huggingface/transformers
eff263cd595bb47013af292ba619447cc842f4ab
de306e8e14672dd8392b4bd344054a6a18de8613
Make Transformers more torch-exportable and dynamo-friendly (#42317) * make vlms export friendly * seq2seq lms * biogpt * more vlms * colqwen2 * vision models * more vlms * more vlms * more vlms * vectorized vision embedding * fixup * more vlms * more vlms * generate_masks_with_special_tokens_and_transfer...
[ { "path": "examples/modular-transformers/modeling_new_task_model.py", "patch": "@@ -19,7 +19,7 @@\n from ...modeling_outputs import BaseModelOutputWithPast\n from ...modeling_utils import PreTrainedModel\n from ...processing_utils import Unpack\n-from ...utils import ModelOutput, auto_docstring, can_return_...
2026-01-22T09:07:48
rust-lang/rust
2bff99c2756faa8d9e79fc74af9edfe33761277a
1b0bc594a75dfc1cdedc6c17052cf44de101e632
Fix in String docs: remove 'else' from 'something else similar'
[ { "path": "library/alloc/src/string.rs", "patch": "@@ -156,7 +156,7 @@ use crate::vec::{self, Vec};\n /// ```\n ///\n /// Next, what should `s[i]` return? Because indexing returns a reference\n-/// to underlying data it could be `&u8`, `&[u8]`, or something else similar.\n+/// to underlying data it could be...
2025-07-07T19:05:16
electron/electron
7e209dd9824915a1df0735a4f0934262127cf81d
8f1943bc7b7cfdcfeedfd4330c0deba95f44ebc9
ATOM_SHELL_INTERNAL_CRASH_SERVICE -> ELECTRON_INTERNAL_CRASH_SERVICE
[ { "path": "atom/app/atom_main.cc", "patch": "@@ -105,7 +105,7 @@ int APIENTRY wWinMain(HINSTANCE instance, HINSTANCE, wchar_t* cmd, int) {\n base::AtExitManager atexit_manager;\n base::i18n::InitializeICU();\n return atom::NodeMain(argc, argv);\n- } else if (IsEnvSet(\"ATOM_SHELL_INTERNAL_CRASH...
2016-05-24T17:22:13
nodejs/node
004e2b759ffff2dff4b0d45c630e3305350b41df
edc2e5be34abe45b6d2e0dbccecb1771ecf82286
2019-08-15, Version 10.16.3 'Dubnium' (LTS) This is a security release. Notable changes: Node.js, as well as many other implementations of HTTP/2, have been found vulnerable to Denial of Service attacks. See https://github.com/Netflix/security-bulletins/blob/master/advisories/third-party/2019-002.md for more informa...
[ { "path": "CHANGELOG.md", "patch": "@@ -41,7 +41,8 @@ release.\n <a href=\"doc/changelogs/CHANGELOG_V12.md#12.0.0\">12.0.0</a><br/>\n </td>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V10.md#10.16.2\">10.16.2</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V10.md#10.16.3\">10....
2019-08-15T15:53:20
golang/go
0a49f706e172443d817cfb3d44e5b366da1cc72a
7747c33a41491be74da65b116718f4df7a2f8337
cmd/go: run 'go help documentation' through gofmt in TestDocsUpToDate mkalldocs.sh runs gofmt on the output, but the test does not. If go help documentation and gofmt disagree, the test will fail. Fix that. Change-Id: I837374a2d36cb5d71278ecefe2a7b6544622c576 Reviewed-on: https://go-review.googlesource.com/c/go/+/384...
[ { "path": "src/cmd/go/help_test.go", "patch": "@@ -6,6 +6,8 @@ package main_test\n \n import (\n \t\"bytes\"\n+\t\"go/format\"\n+\tdiffpkg \"internal/diff\"\n \t\"os\"\n \t\"testing\"\n \n@@ -23,11 +25,17 @@ func TestDocsUpToDate(t *testing.T) {\n \tbuf := new(bytes.Buffer)\n \t// Match the command in mkall...
2022-02-04T16:55:33
huggingface/transformers
de306e8e14672dd8392b4bd344054a6a18de8613
9a6e8a2d1c13a5740a89dc353db4dc54e8908940
Support any capturing groups in WeightTransform reverse mapping (#43205) * support any capturing groups in reverse mapping * define utils and fix test_reverse_loading_mapping * Fix test_reverse_loading_mapping * fix non deterministic behavior. * nit
[ { "path": "src/transformers/core_model_loading.py", "patch": "@@ -49,6 +49,38 @@\n logger = logging.get_logger(__name__)\n \n \n+def process_target_pattern(pattern: str) -> tuple[str, str | None]:\n+ \"\"\"\n+ Process a target pattern for reverse mapping (when targets become sources).\n+\n+ This ha...
2026-01-21T18:19:17
vercel/next.js
6c42be6174a4d97dbf29867bc3aeb3c0ef468a4a
9102da041c4284379c0694ce3d534f17290f95aa
Update nightly toolchain (vercel/turbo#5376) ### Description This updates the nightly toolchain from nightly-2023-03-09 to nightly-2023-07-03. This PR includes Clippy fixes and rustfmt fixes (let else formatting, finally!) Next.js PR: https://github.com/vercel/next.js/pull/51757 ### Testing Instruction...
[ { "path": "crates/turbo-tasks-bytes/src/stream.rs", "patch": "@@ -15,7 +15,7 @@ use serde::{Deserialize, Deserializer, Serialize, Serializer};\n /// writer (which can be sent to another thread). As new values are written, any\n /// pending readers will be woken up to receive the new value.\n #[derive(Clone,...
2023-07-07T19:19:59
nodejs/node
edc2e5be34abe45b6d2e0dbccecb1771ecf82286
a15cd9d4186df4588a08aa0bf8df20e772c03053
2019-08-15, Version 12.8.1 (Current) This is a security release. Notable changes: Node.js, as well as many other implementations of HTTP/2, have been found vulnerable to Denial of Service attacks. See https://github.com/Netflix/security-bulletins/blob/master/advisories/third-party/2019-002.md for more information. ...
[ { "path": "CHANGELOG.md", "patch": "@@ -28,7 +28,8 @@ release.\n </tr>\n <tr>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V12.md#12.8.0\">12.8.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V12.md#12.8.1\">12.8.1</a></b><br/>\n+<a href=\"doc/changelogs/CHANGELOG_V12.md#12.8.0\"...
2019-08-15T08:18:41
golang/go
f02108636c3b098b3153e90b6478e292628ac4f9
3d19e8da7997eaf4ba18bfdf489c3bdb373a0c4d
runtime: allow TestCtrlHandler to run in ConPTY Fixes #51602. Previous test would not run in a pseudo-console (ConPTY). New test avoids taskkill entirely by having the child request its own console window be closed. Verified that this runs locally (within a real console), over SSH (within a pseudo-console), and that...
[ { "path": "src/runtime/signal_windows_test.go", "patch": "@@ -10,7 +10,6 @@ import (\n \t\"os/exec\"\n \t\"path/filepath\"\n \t\"runtime\"\n-\t\"strconv\"\n \t\"strings\"\n \t\"syscall\"\n \t\"testing\"\n@@ -92,13 +91,16 @@ func TestCtrlHandler(t *testing.T) {\n \n \t// run test program\n \tcmd = exec.Comma...
2022-03-17T16:38:00
huggingface/transformers
93dd4fb9faad8c3b0f181e581f6e4ac061c0edfe
16904622ec989a8a5c9a3a75d1a6af21a6be28ab
Add Solar-Open Model (#43244) * feat: implement solar-open-100b * feat: update modeling_solar_open.py * feat: update solar-open config * chore: apply style * feat: remove _tied_weights_keys * feat: update modeling code * chore: remove speech_to_text_2 in modeling * docs: solar_open model * test: solar open mod...
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -725,6 +725,8 @@\n title: RWKV\n - local: model_doc/seed_oss\n title: Seed-Oss\n+ - local: model_doc/solar_open\n+ title: SolarOpen\n - local: model_doc/splinter\n title: Splinter\n - local: model_doc...
2026-01-21T16:45:01
vercel/next.js
f45a7fce9a71dd12683ba05e5812747a17830f9e
ffc471cdc750d55027fe6c36ac82ea93c42278e5
Temporarily revert change to pages render (#52407) This reverts the change to the pages render until a more substantial refactor can ensure that using the custom `app.render` method will attach a match to the request metadata. - Fixes #52384
[ { "path": "packages/next/src/build/webpack/loaders/next-edge-ssr-loader/index.ts", "patch": "@@ -155,7 +155,11 @@ const edgeSSRLoader: webpack.LoaderDefinitionFunction<EdgeSSRLoaderQuery> =\n ? `import * as userland500Page from ${stringified500Path}`\n : ''\n }\n- const render...
2023-07-07T17:58:36
huggingface/transformers
16904622ec989a8a5c9a3a75d1a6af21a6be28ab
3fec8c25d1eacaff2adc522ece9b9632e96395cb
Fix non-deterministic output in MoE experts with batched_mm/grouped_mm (#43362) Co-authored-by: Ilyas Moutawwakil <57442720+IlyasMoutawwakil@users.noreply.github.com>
[ { "path": "src/transformers/integrations/moe.py", "patch": "@@ -71,8 +71,8 @@ def batched_mm_experts_forward(\n device = hidden_states.device\n num_top_k = top_k_index.size(-1)\n num_tokens = hidden_states.size(0)\n+ hidden_dim = hidden_states.size(-1)\n num_experts = self.gate_up_proj.si...
2026-01-21T16:14:50
nodejs/node
695e38be69a780417eef32db744528c3c78d6b0b
b2c7c51d0bfa1b2165be409f1cedb7b1d4beaddf
http2: consider 0-length non-end DATA frames an error This is intended to mitigate CVE-2019-9518. PR-URL: https://github.com/nodejs/node/pull/29122 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "src/node_http2.cc", "patch": "@@ -979,8 +979,7 @@ int Http2Session::OnFrameReceive(nghttp2_session* handle,\n frame->hd.type);\n switch (frame->hd.type) {\n case NGHTTP2_DATA:\n- session->HandleDataFrame(frame);\n- break;\n+ return session->HandleDataFrame(frame);\n ...
2019-08-10T21:37:58
golang/go
3d19e8da7997eaf4ba18bfdf489c3bdb373a0c4d
adfee1e1e7b3236770c19d255e945613a53a34cc
syscall: unskip TestDirentRepeat on freebsd TestDirentRepeat fails on FreeBSD 11, but seems to pass on newer versions. Go 1.18 is the last release to support FreeBSD 11 per https://golang.org/doc/go1.18#freebsd and there are no FreeBSD 11 builders anymore. Thus unskip TestDirentRepeat to verify the issue is indeed fix...
[ { "path": "src/syscall/dirent_test.go", "patch": "@@ -97,9 +97,6 @@ func TestDirentRepeat(t *testing.T) {\n \t\tif size < 1024 {\n \t\t\tsize = 1024 // DIRBLKSIZ, see issue 31403.\n \t\t}\n-\t\tif runtime.GOOS == \"freebsd\" {\n-\t\t\tt.Skip(\"need to fix issue 31416 first\")\n-\t\t}\n \t}\n \n \t// Make a ...
2022-03-17T23:01:24
electron/electron
c2633460ebcfbb94196dfa6cca33ba9d46504b92
4cd0de0e87552c8e2502c14c65a749ac04c931e5
Improve documentation of `ses.cookies.set()` Fix description of the `details.url` param in `ses.cookies.set()`, and clarify the fact that cookies without an expiration date will not be retained between sessions.
[ { "path": "docs/api/session.md", "patch": "@@ -137,20 +137,21 @@ with `callback(error, cookies)` on complete.\n #### `ses.cookies.set(details, callback)`\n \n * `details` Object\n- * `url` String - Retrieves cookies which are associated with `url`\n+ * `url` String - The url to associate the cookie with.\...
2016-05-25T05:46:17
vercel/next.js
ffc471cdc750d55027fe6c36ac82ea93c42278e5
82dd3dbf3542937e41d347043d59bac2eebb65c5
Turbopack: Use a different chunking context for web entry (#52404) This fixes Turbopack integration tests. In https://github.com/vercel/next.js/pull/51928, I made it so all dev chunking contexts output to the same directory. However, in the case of the web entry source, this can lead to conflicts. This PR ensures the...
[ { "path": "packages/next-swc/crates/next-core/src/web_entry_source.rs", "patch": "@@ -6,7 +6,7 @@ use turbopack_binding::{\n },\n turbopack::{\n core::{\n- chunk::ChunkableAssetVc,\n+ chunk::{ChunkableAssetVc, ChunkingContextVc},\n compile_time_defines,\n ...
2023-07-07T16:28:18
huggingface/transformers
3fec8c25d1eacaff2adc522ece9b9632e96395cb
eebf8562eeeb75e693885279ad4c10a156321f28
🚨Default to fast image processors for all models (#41388) * remove attributes and add all missing sub processors to their auto classes * remove all mentions of .attributes * cleanup * fix processor tests * fix modular * remove last attributes * fixup * fixes after merge * fix wrong tokenizer in auto florence2...
[ { "path": "src/transformers/image_processing_utils.py", "patch": "@@ -38,9 +38,6 @@\n class BaseImageProcessor(ImageProcessingMixin):\n valid_kwargs = ImagesKwargs\n \n- def __init__(self, **kwargs):\n- super().__init__(**kwargs)\n-\n @property\n def is_fast(self) -> bool:\n \"...
2026-01-21T16:08:23
nodejs/node
474577cf54c3a5f48dec8ab88bd2d03881e2ac02
599eee0990c98ef0e6cc32f1c9dbf2f35b63a923
http2: limit number of rejected stream openings Limit the number of streams that are rejected upon creation. Since each such rejection is associated with an `NGHTTP2_ENHANCE_YOUR_CALM` error that should tell the peer to not open any more streams, continuing to open streams should be read as a sign of a misbehaving pee...
[ { "path": "src/node_http2.cc", "patch": "@@ -6,6 +6,7 @@\n #include \"node_http2.h\"\n #include \"node_http2_state.h\"\n #include \"node_perf.h\"\n+#include \"node_revert.h\"\n #include \"util-inl.h\"\n \n #include <algorithm>\n@@ -921,11 +922,17 @@ int Http2Session::OnBeginHeadersCallback(nghttp2_session* ...
2019-08-10T20:27:48
golang/go
adfee1e1e7b3236770c19d255e945613a53a34cc
489102de18cff38d1b12d09eeb7e60af42492d63
runtime/cgo: remove memset in _cgo_sys_thread_start on freebsd/arm pthread_attr_init on freebsd properly initializes the pthread_attr, there is no need to zero it before the call. The comment and code were probably copied from the linux/arm implementation. This aligns the implementation on freebsd/arm with the implem...
[ { "path": "src/runtime/cgo/gcc_freebsd_arm.c", "patch": "@@ -37,7 +37,6 @@ x_cgo_init(G *g, void (*setg)(void*))\n \tpthread_attr_destroy(&attr);\n }\n \n-\n void\n _cgo_sys_thread_start(ThreadStart *ts)\n {\n@@ -50,12 +49,7 @@ _cgo_sys_thread_start(ThreadStart *ts)\n \tSIGFILLSET(ign);\n \tpthread_sigmask(...
2022-03-17T21:39:53
electron/electron
545c9f5bedb350042659842ae4f44d4a0a5d87de
f34cd8767cc54a73bf7e49fa69a108031cc67a6d
Ignore invalid parameter error in Electron
[ { "path": "atom/app/atom_main_delegate.cc", "patch": "@@ -30,6 +30,13 @@ bool IsBrowserProcess(base::CommandLine* cmd) {\n return process_type.empty();\n }\n \n+#if defined(OS_WIN)\n+void InvalidParameterHandler(const wchar_t*, const wchar_t*, const wchar_t*,\n+ unsigned int, u...
2016-05-25T04:45:25
vercel/next.js
67d7219cfd5dc08d01181f06c23a7f57d52382e5
27a252b9536264689ce9a2dc323c85a750dc1c4c
Fix typos in examples/with-redux (#52368) Two minor typos fixed: `Thnuk` >> `Thunk` `configre` >> `configure`
[ { "path": "examples/with-redux/lib/redux/createAppAsyncThunk.ts", "patch": "@@ -5,7 +5,7 @@ import { createAsyncThunk } from '@reduxjs/toolkit'\n import type { ReduxState, ReduxDispatch } from './store'\n \n /**\n- * ? A utility function to create a typed Async Thnuk Actions.\n+ * ? A utility function to cr...
2023-07-07T12:18:50
huggingface/transformers
eebf8562eeeb75e693885279ad4c10a156321f28
0dfb28e18f8d27c559a7aba21e9d77a23ef5f160
Add conversion mapping to Qwen3 Omni MoE Thinker submodel (#43373) fix
[ { "path": "src/transformers/conversion_mapping.py", "patch": "@@ -248,6 +248,7 @@ def _build_checkpoint_conversion_mapping():\n mapping[\"longcat_flash\"] = mapping[\"qwen2_moe\"].copy()\n mapping[\"qwen3_moe\"] = mapping[\"qwen2_moe\"].copy()\n mapping[\"qwen3_omni_moe\"] = mapping[\"qwen2_moe\...
2026-01-21T15:06:49
golang/go
3ea22cf3c4b32e6473ad1358a3cbfccc11abc5be
485d67bd38c94617921f55b99e89be0e9cbda39d
crypto/x509: return err ans1.Marshal gives an error Fixes #50663 Change-Id: I18754922bf139049443c0395eaa1606049df1331 GitHub-Last-Rev: 57ff5ddfe39c211ccff60aa74a30f97ddf7015fb GitHub-Pull-Request: golang/go#50667 Reviewed-on: https://go-review.googlesource.com/c/go/+/379094 Reviewed-by: Katie Hockman <katie@golang.or...
[ { "path": "src/crypto/x509/x509.go", "patch": "@@ -1269,10 +1269,7 @@ func marshalKeyUsage(ku KeyUsage) (pkix.Extension, error) {\n \tbitString := a[:l]\n \tvar err error\n \text.Value, err = asn1.Marshal(asn1.BitString{Bytes: bitString, BitLength: asn1BitLength(bitString)})\n-\tif err != nil {\n-\t\treturn...
2022-02-01T00:36:33
nodejs/node
8dae8d12dff4c3b6454fb36c91cef2f9f8d663df
fd148d38d259fee8507cdb5c57dda82e1d1a4819
http2: improve JS-side debug logging DRY up the `debug()` calls, and in particular, avoid building template strings before we know whether we need to. PR-URL: https://github.com/nodejs/node/pull/29122 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "lib/internal/http2/core.js", "patch": "@@ -138,6 +138,26 @@ const { StreamPipe } = internalBinding('stream_pipe');\n const { _connectionListener: httpConnectionListener } = http;\n const debug = require('internal/util/debuglog').debuglog('http2');\n \n+// TODO(addaleax): See if this can be made m...
2019-08-05T15:22:30
huggingface/transformers
cc3c3c6042dc1c8464a647a5273c90a12a16d6d3
5c773b8a84677192d4a52edc1e2c8823f9c1dcea
fix(models) : string mutation bug in from_proteinnet_string (#43380) fix(models): string mutation bug in from_proteinnet_string
[ { "path": "src/transformers/models/esm/openfold_utils/protein.py", "patch": "@@ -81,9 +81,8 @@ def from_proteinnet_string(proteinnet_str: str) -> Protein:\n for g in groups:\n if g[0] == \"[PRIMARY]\":\n seq = g[1][0].strip()\n- for i in range(len(seq)):\n- ...
2026-01-21T12:58:38
vercel/next.js
27a252b9536264689ce9a2dc323c85a750dc1c4c
b2c6bc45720e98f94b9eac2d6acbf5bbee086063
chore(ci): update logging for release (#52357) ``` Error: Command failed: git clone https://github.com/vercel/next.js --single-branch --branch v13.4.NaN --depth=20 /tmp/next-statsmIAdTr/main-repo Cloning into '/tmp/next-statsmIAdTr/main-repo'... warning: Could not find remote branch v13.4.NaN to clone. fatal: Remo...
[ { "path": ".github/actions/next-stats-action/src/index.js", "patch": "@@ -72,12 +72,12 @@ if (!allowedActions.has(actionInfo.actionName) && !actionInfo.isRelease) {\n let mainRef = statsConfig.mainBranch\n \n if (actionInfo.isRelease) {\n- logger('Release detected, using last stable tag')...
2023-07-07T11:46:00
golang/go
2d32594396b231b39d09ec21d34b22b0270268b5
3d7392a08f00a7328af45c877dc0b3a431780c5b
runtime: call testenv.MustHaveCGO in a couple of tests Fixes #51695 Change-Id: Icfe9d26ecc28a7db9040d50d4661cf9e8245471e Reviewed-on: https://go-review.googlesource.com/c/go/+/392916 Trust: Ian Lance Taylor <iant@golang.org> Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gopher Robot <gobot@golang.org>...
[ { "path": "src/runtime/signal_windows_test.go", "patch": "@@ -24,6 +24,7 @@ func TestVectoredHandlerDontCrashOnLibrary(t *testing.T) {\n \t\tt.Skip(\"this test can only run on windows/amd64\")\n \t}\n \ttestenv.MustHaveGoBuild(t)\n+\ttestenv.MustHaveCGO(t)\n \ttestenv.MustHaveExecPath(t, \"gcc\")\n \ttestpr...
2022-03-16T04:05:11
huggingface/transformers
5c773b8a84677192d4a52edc1e2c8823f9c1dcea
44f9a387e00835975e7e69630ba278c2dc912aeb
[docs] finetuning (#43312) * finetuning * minor fixes * feedback * update
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -228,14 +228,16 @@\n title: Quantization\n - isExpanded: false\n sections:\n- - local: community_integrations/sglang\n- title: SGLang\n- - local: community_integrations/tensorrt-llm\n- title: TensorRT-LLM\n- - local: community_integrations/v...
2026-01-20T22:21:43
nodejs/node
e505a741e30d7101a0c4b9159d9e48589a76e16c
d30354859cb58a5ceaa77fd286a551b932236382
doc: note that stream error can close stream PR-URL: https://github.com/nodejs/node/pull/29082 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
[ { "path": "doc/api/stream.md", "patch": "@@ -277,7 +277,9 @@ added: v0.9.4\n The `'error'` event is emitted if an error occurred while writing or piping\n data. The listener callback is passed a single `Error` argument when called.\n \n-The stream is not closed when the `'error'` event is emitted.\n+The str...
2019-08-11T09:23:46
vercel/next.js
412992ad6ea298c54e35946cca7c9e1da7c01a06
eb3d748759248934e485dc0680c641c3e94615a0
fix: prevent infinite dev refresh on nested parallel routes (#52362) ### What? HMR causes infinite reloads for parallel routes when the corresponding page component is nested ### Why? In 4900fa21b078fd1ec1adc5d570fcfb560be8aeb6, code was added to remove `/@children` from the page path (if present) but in 59b36349eb86...
[ { "path": "packages/next/src/server/dev/on-demand-entry-handler.ts", "patch": "@@ -98,9 +98,9 @@ export function getEntryKey(\n pageBundleType: 'app' | 'pages' | 'root',\n page: string\n ) {\n- // TODO: handle the /@children slot better\n- // this is a quick hack to handle when children is provided as...
2023-07-07T07:41:21
huggingface/transformers
e9d68f6a03914847e3ee73389f0415f684fc0e88
ca99469eb1d243b5f5b3a1f7a94938d9b988c3a6
fix: Correct ESM TrunkConfig self-modulo in validation (#43348) * fix(esm): Correct TrunkConfig self-modulo validation bug * fix: Remove issue-related error handling
[ { "path": "src/transformers/models/esm/configuration_esm.py", "patch": "@@ -101,16 +101,6 @@ def __post_init__(self):\n \n if self.max_recycles <= 0:\n raise ValueError(f\"`max_recycles` should be positive, got {self.max_recycles}.\")\n- if self.sequence_state_dim % self.sequence_...
2026-01-19T14:23:47
golang/go
c6244b59095a74b77c977d250708ba1858ae2388
0fca8a8f25cf4636fd980e72ba0bded4230922de
runtime/debug: do not require a GOROOT/src prefix in TestStack When paths are trimmed, the reported file locations begin with the package import path (not GOROOT/src). Updates #51461. Change-Id: Ia6814f970aee11f3d933e75c75136d679d19e220 Reviewed-on: https://go-review.googlesource.com/c/go/+/391815 Trust: Bryan Mills...
[ { "path": "src/runtime/debug/stack_test.go", "patch": "@@ -5,11 +5,26 @@\n package debug_test\n \n import (\n+\t\"bytes\"\n+\t\"fmt\"\n+\t\"internal/testenv\"\n+\t\"os\"\n+\t\"os/exec\"\n+\t\"path/filepath\"\n+\t\"runtime\"\n \t. \"runtime/debug\"\n \t\"strings\"\n \t\"testing\"\n )\n \n+func TestMain(m *te...
2022-03-11T04:57:57
nodejs/node
f7321dc7f950bb8027a589ca86e0f650b8301661
a352a7129e380c518d9676c55389adae10e9017d
test: skip test-fs-access if root Currently, if this test is run as the root user the following failure will occur: === release test-fs-access === Path: parallel/test-fs-access (node:46733) internal/test/binding: These APIs are for internal testing only. Do not use them. Can't clean tmpdir: /root/node/test/.tmp.522 F...
[ { "path": "test/parallel/test-fs-access.js", "patch": "@@ -5,6 +5,9 @@\n // and the errors thrown from these APIs include the desired properties\n \n const common = require('../common');\n+if (!common.isWindows && process.getuid() === 0)\n+ common.skip('as this test should not be run as `root`');\n+\n cons...
2019-08-12T08:38:30
vercel/next.js
27217146cf983cab90e70693976fc111d475ef90
2c12c6add92deb892b575f1c5070a928b4155c63
fix: metadatabase warning message (#52363) This PR is a small grammar change to the warning message since "fallbacks to" is not grammatically correct.
[ { "path": "packages/next/src/lib/metadata/resolvers/resolve-url.ts", "patch": "@@ -33,7 +33,7 @@ export function getSocialImageFallbackMetadataBase(\n \n if (isMetadataBaseMissing) {\n Log.warnOnce(\n- `\\nmetadata.metadataBase is not set for resolving social open graph or twitter images, fallbac...
2023-07-07T00:08:10
huggingface/transformers
ca99469eb1d243b5f5b3a1f7a94938d9b988c3a6
772dcaa7de4c5e89550a1820d6b77257ac64d6e0
fix failed unit test for glm_moe_lite model (#43346) * fix failed unit test for glm_moe_lite model Signed-off-by: Liu, Kaixuan <kaixuan.liu@intel.com> * use 128,not 64 Signed-off-by: Liu, Kaixuan <kaixuan.liu@intel.com> --------- Signed-off-by: Liu, Kaixuan <kaixuan.liu@intel.com>
[ { "path": "tests/models/glm4_moe_lite/test_modeling_glm4_moe_lite.py", "patch": "@@ -47,13 +47,15 @@ def __init__(\n q_lora_rank=16,\n qk_nope_head_dim=64,\n qk_rope_head_dim=64,\n+ v_head_dim=128,\n ):\n super().__init__(parent=parent)\n self.n_routed_expe...
2026-01-19T12:36:55
golang/go
0fca8a8f25cf4636fd980e72ba0bded4230922de
c379c3d58d5482f4c8fe97466a99ce70e630ad44
crypto/x509: fix Certificate.Verify crash (Primarily from Josh) Fixes #51759 Co-authored-by: Josh Bleecher Snyder <josharian@gmail.com> Change-Id: I0a6f2623b57750abd13d5e194b5c6ffa3be6bf72 Reviewed-on: https://go-review.googlesource.com/c/go/+/393655 Trust: Brad Fitzpatrick <bradfitz@golang.org> Run-TryBot: Brad Fit...
[ { "path": "src/crypto/x509/root_darwin.go", "patch": "@@ -13,6 +13,9 @@ func (c *Certificate) systemVerify(opts *VerifyOptions) (chains [][]*Certificate\n \tcerts := macOS.CFArrayCreateMutable()\n \tdefer macOS.ReleaseCFArray(certs)\n \tleaf := macOS.SecCertificateCreateWithData(c.Raw)\n+\tif leaf == 0 {\n+...
2022-03-17T16:39:46
electron/electron
6de4249af8dc008daccb288bdddbeb23c2602b40
deb15e60b578e1576b1e6538f1e0a3e6355d3baf
Tweak resolve filename error message
[ { "path": "default_app/main.js", "patch": "@@ -257,9 +257,10 @@ function loadApplicationPackage (packagePath) {\n try {\n Module._resolveFilename(packagePath, module, true)\n } catch (e) {\n- showErrorMessage('Unable to find Electron app.\\n\\n' +\n- `See: ${packagePath}`)\n+ ...
2016-05-24T16:41:31
vercel/next.js
2c12c6add92deb892b575f1c5070a928b4155c63
4b2eef4600ed8181528bf7f695094d3d8ecd6da4
chore(docs): fix link to `useSearchParams` (#52348) ### Overview The purpose of this PR is to remove the wrong link to useParams in the useSearchParams documentation. Co-authored-by: Steven <229881+styfle@users.noreply.github.com>
[ { "path": "docs/02-app/02-api-reference/04-functions/use-search-params.mdx", "patch": "@@ -258,7 +258,7 @@ To access search params in [Pages](/docs/app/api-reference/file-conventions/page\n \n Unlike Pages, [Layouts](/docs/app/api-reference/file-conventions/layout) (Server Components) **do not** receive the...
2023-07-06T23:33:55
nodejs/node
a352a7129e380c518d9676c55389adae10e9017d
427e5348a267b7c88879b47f8d942fc3e84b30e9
buffer: improve ERR_BUFFER_OUT_OF_BOUNDS default This commit changes the default message used by ERR_BUFFER_OUT_OF_BOUNDS. Previously, the default message implied that the problematic was always a write, which is not accurate. PR-URL: https://github.com/nodejs/node/pull/29098 Fixes: https://github.com/nodejs/node/iss...
[ { "path": "lib/internal/errors.js", "patch": "@@ -710,7 +710,7 @@ E('ERR_BUFFER_OUT_OF_BOUNDS',\n if (name) {\n return `\"${name}\" is outside of buffer bounds`;\n }\n- return 'Attempt to write outside buffer bounds';\n+ return 'Attempt to access memory outside buffer bounds';\n }, Ran...
2019-08-12T21:03:47
huggingface/transformers
772dcaa7de4c5e89550a1820d6b77257ac64d6e0
24807bfcf4a21286fa2a7e728f381ddaaca7bbc7
[Fix] Add missing init_kwargs to MistralCommonBackend for v5 processor compatibility (#43141)
[ { "path": "src/transformers/tokenization_mistral_common.py", "patch": "@@ -268,6 +268,15 @@ def __init__(\n if kwargs and not set(kwargs.keys()).issubset(_VALID_INIT_KWARGS):\n raise ValueError(f\"Kwargs {list(kwargs.keys())} are not supported to init `MistralCommonBackend`.\")\n \n+ ...
2026-01-19T11:06:35
golang/go
c379c3d58d5482f4c8fe97466a99ce70e630ad44
599d5395ebb41eb17bbe77e75d12ed0d13294767
cmd/compile: set conversions to unsafe.Pointer as an escaping operation when -asan is enabled When ASan is enabled, treat conversions to unsafe.Pointer as an escaping operation. In this way, all pointer operations on the stack objects will become operations on the escaped heap objects. As we've already supported ASan ...
[ { "path": "misc/cgo/testsanitizers/asan_test.go", "patch": "@@ -41,6 +41,9 @@ func TestASAN(t *testing.T) {\n \t\t{src: \"asan4_fail.go\", memoryAccessError: \"use-after-poison\", errorLocation: \"asan4_fail.go:13\"},\n \t\t{src: \"asan5_fail.go\", memoryAccessError: \"use-after-poison\", errorLocation: \"a...
2021-06-07T06:24:45
huggingface/transformers
24807bfcf4a21286fa2a7e728f381ddaaca7bbc7
27c901740e03152bd7b8fdbc52ddf32d10b86b59
[`Docs`] Fix other lang deprecations of a few pipelines (#43292) * fix * remove docs for image2text
[ { "path": "MIGRATION_GUIDE_V5.md", "patch": "@@ -578,7 +578,7 @@ Linked PRs:\n \n ## Pipelines\n \n-`Text2TextPipeline`, as well as the related `SummarizationPipeline` and `TranslationPipeline`, were deprecated and will now be removed.\n+`Text2TextGenerationPipeline`, as well as the related `SummarizationPi...
2026-01-16T17:36:57
electron/electron
f691a46d4dc6f754227d7f419905af9d132b6c38
67c88d2f8a95043f8b504454fba7d3f5bc504511
Use dialog.showErrorBox
[ { "path": "default_app/main.js", "patch": "@@ -275,15 +275,7 @@ function loadApplicationPackage (packagePath) {\n \n function showErrorMessage (message) {\n app.focus()\n- dialog.showMessageBox({\n- message: 'Error opening app',\n- detail: message,\n- buttons: ['OK', 'Learn More']\n- }, (respon...
2016-05-24T16:37:52
vercel/next.js
f0fc83b40c7bf8d01e0d6c43943659bd210b2617
1045644655c8d29cdad9bd5ee0a3c73d6d7ad097
Fix trailing slash with locale domain (#52343) This ensures we normalize the trailing slash with a locale domain href correctly. Reproduction with patch can be seen here https://reproduction-link-inconsistency-96cg0lqc9-vtest314-ijjk-testing.vercel.app/dynamic/alpha/ Fixes: https://github.com/vercel/next.js/is...
[ { "path": "packages/next/src/client/get-domain-locale.ts", "patch": "@@ -1,6 +1,7 @@\n import type { DomainLocale } from '../server/config'\n import type { normalizeLocalePath as NormalizeFn } from './normalize-locale-path'\n import type { detectDomainLocale as DetectFn } from './detect-domain-locale'\n+imp...
2023-07-06T20:56:30
nodejs/node
f114e5ba330a08803bb6dc7f16f20890ca493718
d7a4ace34bfada46265569f3e6cb73774a6b52ce
doc, lib, src, test, tools: fix assorted typos PR-URL: https://github.com/nodejs/node/pull/29075 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "doc/api/https.md", "patch": "@@ -42,7 +42,7 @@ changes:\n is specified using an IP address, in which case the default is `''` (no\n extension).\n \n- See [`Session Resumption`][] for infomation about TLS session reuse.\n+ See [`Session Resumption`][] for information about TLS sessio...
2019-08-10T05:48:03
golang/go
9956a5423e40bab92c572489eae26ba80ed803ab
8427429c592588af8c49522c76b3e0e0e335d270
text/scanner: guard against installed IsIdentRune that accepts EOF IsIdentRune may be installed by a client of the scanner. If the installed function accepts EOF as a valid identifier rune, Scan calls may not terminate. Check for EOF when a user-defined IsIdentRune is used. Fixes #50909. Change-Id: Ib104b03ee59e2d5...
[ { "path": "src/text/scanner/scanner.go", "patch": "@@ -346,7 +346,7 @@ func (s *Scanner) errorf(format string, args ...any) {\n \n func (s *Scanner) isIdentRune(ch rune, i int) bool {\n \tif s.IsIdentRune != nil {\n-\t\treturn s.IsIdentRune(ch, i)\n+\t\treturn ch != EOF && s.IsIdentRune(ch, i)\n \t}\n \tret...
2022-03-16T04:44:37
huggingface/transformers
27c901740e03152bd7b8fdbc52ddf32d10b86b59
000438aadf3105ee8473ee29ef678e8cfbca606a
Fix post_process_semantic_segmentation removing valid class in Conditional DETR (#42681) * Fix post_process_semantic_segmentation removing valid class in Conditional DETR Fixes #42679 Conditional DETR does not have a null class unlike DETR, so the `[..., :-1]` slice was incorrectly removing the last valid class. Th...
[ { "path": "src/transformers/models/conditional_detr/image_processing_conditional_detr.py", "patch": "@@ -1483,7 +1483,6 @@ def post_process_object_detection(\n \n return results\n \n- # Copied from transformers.models.detr.image_processing_detr.DetrImageProcessor.post_process_semantic_segmentatio...
2026-01-16T16:35:41
rust-lang/rust
aa331b1c5f91562d8c1ad0875b5e0dc6668dc2b0
4b506ca0e1821e71fd8a6c7434dc02b5bd432a34
Fix a case where the link type was `None` Which caused a panic.
[ { "path": "src/tools/rust-analyzer/crates/ide/src/doc_links.rs", "patch": "@@ -505,7 +505,7 @@ fn map_links<'e>(\n Event::End(Tag::Link(link_type, target, _)) => {\n in_link = false;\n Event::End(Tag::Link(\n- end_link_type.unwrap_or(link_type),\n+ ...
2025-07-07T17:44:18
vercel/next.js
c878caa3bc3b94018fe290c6d80656248fdfd837
ce483fd7c38ec137e862216974828b97c5dbd329
Fix to use keep-alive in standalone mode (#50221) You can specify keepAliveTimeout as an environment variable in standalone mode, but there is a problem with it not being properly applied. #46052 #### before <img width="574" alt="2023-05-24 12 49 12" src="https://github.com/vercel/next.js/assets/90969158/90...
[ { "path": "packages/next/src/build/utils.ts", "patch": "@@ -1955,6 +1955,10 @@ if (!process.env.NEXT_MANUAL_SIG_HANDLE) {\n const currentPort = parseInt(process.env.PORT, 10) || 3000\n const hostname = process.env.HOSTNAME || 'localhost'\n const keepAliveTimeout = parseInt(process.env.KEEP_ALIVE_TIMEOUT, 10...
2023-07-06T16:59:59
golang/go
8427429c592588af8c49522c76b3e0e0e335d270
f839aaa22b66bc556fac72f7396082212d2ef45d
os: raise open file rlimit at startup Some systems set an artificially low soft limit on open file count, for compatibility with code that uses select and its hard-coded maximum file descriptor (limited by the size of fd_set). Go does not use select, so it should not be subject to these limits. On some systems the li...
[ { "path": "src/os/rlimit.go", "patch": "@@ -0,0 +1,32 @@\n+// Copyright 2022 The Go Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style\n+// license that can be found in the LICENSE file.\n+\n+//go:build aix || darwin || dragonfly || freebsd || linux || netbsd || openbsd ||...
2022-03-14T15:27:46
huggingface/transformers
a7f857daf0a819096ac8eacffcbc709f825483c4
fdef96bfd4985976eaaa87e0c480ff82199ddeda
Remove image-to-text pipeline (#43306) * Remove image-to-text pipeline * Remove from not-doctested too * Remove tests and docs * Remove tests and docs * Remove more references to image-to-text and seq2seq * Remove a few more references + do fixes * Remove a few more references + do fixes
[ { "path": "MIGRATION_GUIDE_V5.md", "patch": "@@ -579,7 +579,7 @@ Linked PRs:\n ## Pipelines\n \n `Text2TextPipeline`, as well as the related `SummarizationPipeline` and `TranslationPipeline`, were deprecated and will now be removed.\n-`pipeline` classes are intended as a high-level, beginner-friendly API, b...
2026-01-16T13:23:30
vercel/next.js
ce483fd7c38ec137e862216974828b97c5dbd329
a17f07aa5b6fdbad1f5686732bbafdc8f03da8b5
fix(create-next-app): add missing metadata type (#52299) This pull request adds the missing `Metadata` type declaration to the root layout of the `create-next-app` templates. The metadata object was missing its type definition, which has been resolved by adding the appropriate type import and annotation. -------...
[ { "path": "packages/create-next-app/templates/app-tw/ts/app/layout.tsx", "patch": "@@ -1,9 +1,10 @@\n import './globals.css'\n+import type { Metadata } from 'next'\n import { Inter } from 'next/font/google'\n \n const inter = Inter({ subsets: ['latin'] })\n \n-export const metadata = {\n+export const metada...
2023-07-06T16:58:43
rust-lang/rust
b4e68e212ece6896ea574c6345e14d4350c5c517
6268d0aa34b46981533b09827c1454b8cf27e032
Respect endianness correctly in CheckEnums test suite The endianness can change the test expectation for the enum check. This change is fixing the failing tests on big endian by changing the tests so that they behave the same as on little endian.
[ { "path": "tests/ui/mir/enum/convert_non_integer_break.rs", "patch": "@@ -1,6 +1,6 @@\n //@ run-fail\n //@ compile-flags: -C debug-assertions\n-//@ error-pattern: trying to construct an enum from an invalid value 0x10000\n+//@ error-pattern: trying to construct an enum from an invalid value\n \n #[allow(dea...
2025-07-02T17:33:28
huggingface/transformers
fdef96bfd4985976eaaa87e0c480ff82199ddeda
dfdede252984a1bf3a6e46aeb2a93ee75b4b51c6
Fix incorrect dimension naming in Gemma3 projector (#43285) * Fix incorrect dimension naming in Gemma3 projector * Apply make fix-repo to fix CI --------- Co-authored-by: woojung-kim <woojung.kim@samsung.com>
[ { "path": "src/transformers/models/gemma3/modeling_gemma3.py", "patch": "@@ -694,11 +694,11 @@ def __init__(self, config: Gemma3Config):\n self.avg_pool = nn.AvgPool2d(kernel_size=self.kernel_size, stride=self.kernel_size)\n \n def forward(self, vision_outputs: torch.Tensor):\n- batch_siz...
2026-01-16T12:47:12
golang/go
66865363f017a8d4cb0b07d84a3a6117fcf1cd30
1cfe1007cdf17ee381443cd0d8ae31962805f96e
syscall: call ABI0 exitsyscall on Plan 9/AMD64 CL 376356 changes syscall.Syscall to call ABIInternal entersyscall and exitsyscall. As mentioned in the CL description, it is important to call entersyscall without ABI wrapper, but it is not important to call exitsyscall this way. In fact, it is actually problematic -- o...
[ { "path": "src/syscall/asm_plan9_amd64.s", "patch": "@@ -38,15 +38,15 @@ TEXT\t·Syscall(SB),NOSPLIT,$168-64\n \tMOVQ\t$128, sysargs1-152(SP)\n \tMOVQ\t$SYS_ERRSTR, BP\n \tSYSCALL\n-\tCALL\truntime·exitsyscall<ABIInternal>(SB)\n+\tCALL\truntime·exitsyscall(SB) // call via ABI wrapper, ensuring ABIInternal fi...
2022-03-16T23:21:49
rust-lang/rust
2cb24783f549da6723b729921c320c1b39960bd7
25cf7d13c960a3ac47d1424ca354077efb6946ff
Fix missing words in future tracking issue Fixes some sloppy editing on my part.
[ { "path": ".github/ISSUE_TEMPLATE/tracking_issue_future.md", "patch": "@@ -14,7 +14,7 @@ it would be `T-libs-api`.\n Also check for any `A-` labels to add.\n -->\n \n-This is the **tracking issue** for the `YOUR_LINT_NAME_HERE` future-compatibility warning and other related errors. The goal of this page is ...
2025-07-07T15:40:04
vercel/next.js
b095e9e9808d86931ed6f8068b1a25357f9daa9d
914158607fac9a15e1d75431b92331c4dc1d0a3b
Test Progressive Enhancement of Server Actions (#52062) Adds a regression test for testing progressive enhancement of Server Actions. Both when passed from a Server Component and when imported into a Client Component. #51723 landed a bit too early which broke this but it'll be fixed again once React is upgraded....
[ { "path": "test/e2e/app-dir/actions/app-action-progressive-enhancement.test.ts", "patch": "@@ -0,0 +1,45 @@\n+/* eslint-disable jest/no-standalone-expect */\n+import { createNextDescribe } from 'e2e-utils'\n+import { check } from 'next-test-utils'\n+\n+createNextDescribe(\n+ 'app-dir action progressive enh...
2023-07-06T16:21:59
huggingface/transformers
dfdede252984a1bf3a6e46aeb2a93ee75b4b51c6
35a09896f997f0dac8b3f1c7b10e10b48321ae91
[loading] Fix Transpose Operation, and qwen3_vl_moe mapping (#43307) * fix * oups * style * remove duplicated comment * add TODO * oupsi style * remove TODO as basically every op will need to be checked very carefully - tp fully broken rn
[ { "path": "src/transformers/conversion_mapping.py", "patch": "@@ -82,6 +82,21 @@ def _build_checkpoint_conversion_mapping():\n operations=[MergeModulelist(dim=0)],\n ),\n ],\n+ \"qwen3_vl_moe\": [\n+ WeightConverter(\n+ source_patterns=[\n...
2026-01-16T11:27:20
golang/go
8d4da2c7b582783f30f9c93c2bcb0641748103e2
e5e638e512e1ec27673d5e01e99eb870899be7f7
all: update vendored golang.org/x/tools Update the vendored golang.org/x/tools to pick up the fix for #51717. This also picks up some changes to support Fuzz tests in the tests analyzer, but they are currently still guarded by an internal flag. Fixes #51717 Updates #36905 Change-Id: Ibcd5006624dd9cd9797c811093985e8...
[ { "path": "src/cmd/go.mod", "patch": "@@ -5,11 +5,11 @@ go 1.18\n require (\n \tgithub.com/google/pprof v0.0.0-20211104044539-f987b9c94b31\n \tgolang.org/x/arch v0.0.0-20210923205945-b76863e36670\n-\tgolang.org/x/mod v0.6.0-dev.0.20211102181907-3a5865c02020\n+\tgolang.org/x/mod v0.6.0-dev.0.20220106191415-9...
2022-03-16T22:42:57
rust-lang/rust
be9669f8f4d13ef7a68d21f0fc66f856eec6d7d5
556d20a834126d2d0ac20743b9792b8474d6d03c
fix the link in `rustdoc.md`
[ { "path": "src/doc/rustdoc.md", "patch": "@@ -1,3 +1,3 @@\n % Rust Documentation\n \n-This has been moved [into the book](book/documentation.html).\n+This has been moved [into the rustdoc book](rustdoc/index.html).", "additions": 1, "deletions": 1, "language": "Markdown" } ]
2025-07-04T15:43:02
vercel/next.js
914158607fac9a15e1d75431b92331c4dc1d0a3b
38e45f25b23a1ed7d36a32638448cf8c7eb21aa3
chore: fix next dev turbopack benchmark (#52328) This is a follow up to PR https://github.com/vercel/next.js/pull/52291 which removed the `next.config.js` which started causing an error during CI: ``` @next/swc:test-cargo-bench: error: couldn't read packages/next-swc/crates/next-dev/benches/next.config.js: No su...
[ { "path": "packages/next-swc/crates/next-dev/benches/bundler.rs", "patch": "@@ -69,11 +69,6 @@ impl Bundler for TurboNext {\n return Err(anyhow!(\"pnpm build failed. See above.\"));\n }\n \n- fs::write(\n- install_dir.join(\"next.config.js\"),\n- include_byte...
2023-07-06T15:58:25
huggingface/transformers
625ad844550caa3ff2f978827ad391a2e5ce6775
6d4d98410220a366c4bc78b175fac9db4d91c1f6
Switch gradient checkpointing default to `use_reentrant=False` (PyTorch recommended) (#43203) * Switch gradient checkpointing default to use_reentrant=False (PyTorch recommended) * All testers * revert * skip for the right reason * skip for right reason and this one is fixed * skip for the right reason * fix up ...
[ { "path": "src/transformers/modeling_utils.py", "patch": "@@ -3051,7 +3051,7 @@ def gradient_checkpointing_enable(self, gradient_checkpointing_kwargs=None):\n raise ValueError(f\"{self.__class__.__name__} does not support gradient checkpointing.\")\n \n if gradient_checkpointing_kwargs i...
2026-01-16T10:19:48
nodejs/node
b4f0a18b5a717b10d2d1c98e7aba85f0ac33aa68
2103ae483547831281e1e3882029e37d445689a7
tools: allow single JS file for --link-module The description for the --link-module configuration option is as follows: $ ./configure --help | grep -A 5 'link-module' --link-module=LINKED_MODULE Path to a JS file to be bundled in the binary as a builtin. This module will b...
[ { "path": "Makefile", "patch": "@@ -294,6 +294,10 @@ jstest: build-addons build-js-native-api-tests build-node-api-tests ## Runs addo\n \t\t$(CI_JS_SUITES) \\\n \t\t$(CI_NATIVE_SUITES)\n \n+.PHONY: tooltest\n+tooltest:\n+\t@$(PYTHON) test/tools/test-js2c.py\n+\n .PHONY: coverage-run-js\n coverage-run-js:\n ...
2019-06-27T03:17:43