repo stringclasses 15
values | fix_commit stringlengths 40 40 | buggy_commit stringlengths 40 40 | message stringlengths 3 64.3k | files listlengths 1 300 | timestamp timestamp[s]date 2013-03-13 20:45:00 2026-04-11 07:48:46 |
|---|---|---|---|---|---|
golang/go | eb9f090d1b543f54b319cab78027cdf2ce1a08b8 | 205640ed7b6b93d88351c85f0ecfb37d075f8dcf | cmd/link: use "CC --print-prog-name" to locate tools
When building for macOS with external linking, we currently use
"xcrun" to invoke "dsymutil" and "strip" tools. That doesn't work
well for cross compilation. Use "CC --print-prog-name" to find the
tool path instead.
Fixes #47316.
Change-Id: Ib30c6494c48bfb6a505dc2... | [
{
"path": "src/cmd/link/internal/ld/lib.go",
"patch": "@@ -1644,13 +1644,31 @@ func (ctxt *Link) hostlink() {\n \t}\n \n \tif combineDwarf {\n+\t\t// Find \"dsymutils\" and \"strip\" tools using CC --print-prog-name.\n+\t\tvar cc []string\n+\t\tcc = append(cc, ctxt.extld()...)\n+\t\tcc = append(cc, hostlink... | 2021-07-22T22:57:52 |
huggingface/transformers | 0f9c2595cd6e113e0f1780181314838cbd5e716a | 412c9c3030d6eed09770c7ba80d6952d80bf8a57 | updated visualBERT modelcard (#40057)
* updated visualBERT modelcard
* fix: Review for VisualBERT card | [
{
"path": "docs/source/en/model_doc/visual_bert.md",
"patch": "@@ -14,87 +14,116 @@ rendered properly in your Markdown viewer.\n \n -->\n \n-# VisualBERT\n-\n-<div class=\"flex flex-wrap space-x-1\">\n-<img alt=\"PyTorch\" src=\"https://img.shields.io/badge/PyTorch-DE3412?style=flat&logo=pytorch&logoColor=w... | 2025-08-13T19:47:32 |
vercel/next.js | 74891fde180281cabbc0e7472dd986ab8c76df03 | 84104af63e9a27e8c6053bcbb09a0dd8fd3d5943 | Add auto-detection of image/x-icon content type (#47013)
Added auto-detection of image/x-icon content type by analyzing response buffer
fixes https://github.com/vercel/next.js/discussions/45998
Co-authored-by: Steven <229881+styfle@users.noreply.github.com> | [
{
"path": "packages/next/src/server/image-optimizer.ts",
"patch": "@@ -33,6 +33,7 @@ const PNG = 'image/png'\n const JPEG = 'image/jpeg'\n const GIF = 'image/gif'\n const SVG = 'image/svg+xml'\n+const ICO = 'image/x-icon'\n const CACHE_VERSION = 3\n const ANIMATABLE_TYPES = [WEBP, PNG, GIF]\n const VECTOR_T... | 2023-03-10T20:36:33 |
nodejs/node | b4b9e0e28c434de926593e42248b7c18b7839b12 | fe5b8dca40bbd209a319843d907e5ce809add8b4 | src: fulfill Maybe contract in InlineDecoder
Use an empty/nothing `Maybe<>` to indicate a pending exception.
PR-URL: https://github.com/nodejs/node/pull/25140
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Reviewed-By: Shelley Vohr <codebytere@gmail.com>
Reviewed-By: Jame... | [
{
"path": "src/string_bytes.h",
"patch": "@@ -42,7 +42,7 @@ class StringBytes {\n enum encoding enc = ParseEncoding(env->isolate(), encoding, _default);\n if (!StringBytes::IsValidString(string, enc)) {\n env->ThrowTypeError(\"Bad input string\");\n- return v8::Just(false);\n+ ... | 2018-12-19T20:50:28 |
electron/electron | 0e779e20c3fbf79bb37609a5257a5c87b9a18503 | 2d5c0ac9eebb5bf37de1dcb3375511d6dd6afbab | Fix compilation error caused by #2340 | [
{
"path": "atom/browser/api/atom_api_session.cc",
"patch": "@@ -10,6 +10,7 @@\n #include \"atom/browser/api/atom_api_cookies.h\"\n #include \"atom/browser/atom_browser_context.h\"\n #include \"atom/common/native_mate_converters/gurl_converter.h\"\n+#include \"atom/common/native_mate_converters/file_path_con... | 2015-07-30T02:38:04 |
rust-lang/rust | 33127afef04b26d1cb69fd98cd30c6c8181eff4b | ba55b7ce3cd931af7123e334647584f6fbdb3c20 | Fix typo in `StructuralPartialEq` docs
`equialent` => `equivalent` | [
{
"path": "library/core/src/marker.rs",
"patch": "@@ -200,7 +200,7 @@ pub trait Unsize<T: ?Sized> {\n ///\n /// Constants are only allowed as patterns if (a) their type implements\n /// `PartialEq`, and (b) interpreting the value of the constant as a pattern\n-/// is equialent to calling `PartialEq`. This e... | 2025-06-01T14:15:00 |
huggingface/transformers | eb5768a86e178651079e00691c5dbdc94b78878a | 68a13cd4a65d0624a5b87827c6e0709a882613f0 | [docs] Fix ko toctree (#40138)
Update _toctree.yml | [
{
"path": "docs/source/ko/_toctree.yml",
"patch": "@@ -1067,7 +1067,7 @@\n title: GraniteVision\n - local: in_translation\n title: (번역중) GIT\n- - local: model_doc/grounding_dino\n+ - local: model_doc/grounding-dino\n title: Grounding DINO\n - local: in_translati... | 2025-08-13T18:24:58 |
electron/electron | 8d09f13bad57012b007641b9103dfb3f61c56fb9 | b68356b9b92d0fa3d97db3a660bb477c43a34884 | Fix running callback when global.global is deleted
Close #2366. | [
{
"path": "atom/common/api/lib/callbacks-registry.coffee",
"patch": "@@ -1,3 +1,5 @@\n+global = global # the \"global.global\" might be deleted later\n+\n module.exports =\n class CallbacksRegistry\n constructor: ->",
"additions": 2,
"deletions": 0,
"language": "Unknown"
}
] | 2015-07-30T02:27:34 |
nodejs/node | fe5b8dca40bbd209a319843d907e5ce809add8b4 | 54fa59c8bf441e4e8c187150f7ffe11680e9ccba | crypto: fix zero byte allocation assertion failure
When an empty string was passed, malloc might have returned a nullptr
depending on the platform, causing an assertion failure. This change
makes private key parsing behave as public key parsing does, causing
a BIO error instead that can be caught in JS.
Fixes: https:... | [
{
"path": "src/node_crypto.cc",
"patch": "@@ -2696,7 +2696,7 @@ static bool IsSupportedAuthenticatedMode(const EVP_CIPHER_CTX* ctx) {\n template <typename T>\n static T* MallocOpenSSL(size_t count) {\n void* mem = OPENSSL_malloc(MultiplyWithOverflowCheck(count, sizeof(T)));\n- CHECK_NOT_NULL(mem);\n+ CH... | 2018-12-28T15:07:28 |
vercel/next.js | c8248fe9f6a8d5022228212b93da382267fff2e0 | 64685a806aef4ebdad88b473e330106dadf327d6 | avoid sending modules in parent for dynamic imports (vercel/turbo#4056)
### Description
Keeps track of available modules when importing new chunk groups. Omits
assets that are already available in the parent chunk group(s) when
determining assets to be included in chunks.
### Testing Instructions
Dynamic imports sh... | [
{
"path": "crates/next-core/js/src/entry/app/server-to-client-ssr.tsx",
"patch": "@@ -1,6 +1,6 @@\n import { createProxy } from \"next/dist/build/webpack/loaders/next-flight-loader/module-proxy\";\n \n-(\"TURBOPACK { chunking-type: parallel }\");\n+(\"TURBOPACK { chunking-type: isolatedParallel }\");\n // @... | 2023-03-10T19:42:22 |
rust-lang/rust | 89dc07acb5b00ece97399c1c248e8db869b1f3fd | 466e0fb1549e6eeee1571579308268af58639b2a | chore: fix smart quote in comment used by update_lints script | [
{
"path": "clippy_dev/src/update_lints.rs",
"patch": "@@ -73,8 +73,8 @@ pub fn generate_lint_files(\n (\n \"clippy_lints/src/lib.rs\",\n &mut update_text_region_fn(\n- \"// begin lints modules, do not remove this comment, it’s used in `update_li... | 2025-06-01T13:50:33 |
golang/go | 205640ed7b6b93d88351c85f0ecfb37d075f8dcf | 9112d296e84315a07d76a24874037448e2affdd7 | runtime: avoid run TestSyscallN in parallel
Fixes #48012
Change-Id: Ie27eb864ac387ecf5155a3aefa81661f1448ace5
Reviewed-on: https://go-review.googlesource.com/c/go/+/345670
Trust: Bryan C. Mills <bcmills@google.com>
Trust: Heschi Kreinick <heschi@google.com>
Run-TryBot: Bryan C. Mills <bcmills@google.com>
TryBot-Resul... | [
{
"path": "src/runtime/syscall_windows_test.go",
"patch": "@@ -770,7 +770,6 @@ func TestSyscallN(t *testing.T) {\n \tfor arglen := 0; arglen <= runtime.MaxArgs; arglen++ {\n \t\targlen := arglen\n \t\tt.Run(fmt.Sprintf(\"arg-%d\", arglen), func(t *testing.T) {\n-\t\t\tt.Parallel()\n \t\t\targs := make([]str... | 2021-08-27T15:08:23 |
nodejs/node | 903630e72ece60c764b9cac9d0941400377b7ac6 | 69470c87cc65e92acb15883d2d031fe9fa1f4c54 | benchmark: fix net-wrap-js-stream-passthrough
The net-wrap-js-stream-passthrough benchmark was inadvertently broken by
00944c7cc25f391c3fbeba1e054a56a62cf0de12. This fixes it.
PR-URL: https://github.com/nodejs/node/pull/25273
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com> | [
{
"path": "benchmark/net/net-wrap-js-stream-passthrough.js",
"patch": "@@ -17,7 +17,7 @@ var encoding;\n \n function main({ dur, len, type }) {\n // Can only require internals inside main().\n- const JSStreamWrap = require('internal/wrap_js_stream');\n+ const JSStreamWrap = require('internal/js_stream_s... | 2018-12-29T16:19:38 |
vercel/next.js | 2e5169014382a139ad70966f940bd48355b5fa6e | 4bea437c7df3051cfbe04f17ceed0733a8ad9e30 | avoid sending modules in parent for dynamic imports (vercel/turbo#4056)
### Description
Keeps track of available modules when importing new chunk groups. Omits
assets that are already available in the parent chunk group(s) when
determining assets to be included in chunks.
### Testing Instructions
Dynamic imports sh... | [
{
"path": "packages/next-swc/crates/next-core/js/src/entry/app/server-to-client-ssr.tsx",
"patch": "@@ -1,6 +1,6 @@\n import { createProxy } from \"next/dist/build/webpack/loaders/next-flight-loader/module-proxy\";\n \n-(\"TURBOPACK { chunking-type: parallel }\");\n+(\"TURBOPACK { chunking-type: isolatedPar... | 2023-03-10T19:42:22 |
electron/electron | 90bd32c6800bbb7cd20a4c1fe8a1fe7e781ca104 | 1e9eccf959492e81956b40cc69ccacb8159c3379 | Replaced 'browser' with 'main'
"A JavaScript error occured in the browser process" is confusing. Replacing it with 'main', just like everywhere else. | [
{
"path": "atom/browser/lib/init.coffee",
"patch": "@@ -38,7 +38,7 @@ process.on 'uncaughtException', (error) ->\n # Show error in GUI.\n stack = error.stack ? \"#{error.name}: #{error.message}\"\n message = \"Uncaught Exception:\\n#{stack}\"\n- require('dialog').showErrorBox 'A JavaScript error occu... | 2015-07-29T13:04:34 |
golang/go | d4aed7e42cd187c3031350489dba814f29f215a5 | b043d231fa1e1cbc17ddcfb007d92d83dee72428 | debug/gosym: run TestPCLine on Linux/AMD64 in short mode
Currently TestPCLine is skipped in short mode. The test builds a
Linux/AMD64 binary, so it makes sense to skip it if we're cross
compiling, as building the runtime takes a while. But if we are
on Linux/AMD64, it will only build a small amount of code, which
isn'... | [
{
"path": "src/debug/gosym/pclntab_test.go",
"patch": "@@ -29,6 +29,10 @@ func dotest(t *testing.T) {\n \tif runtime.GOARCH != \"amd64\" {\n \t\tt.Skipf(\"skipping on non-AMD64 system %s\", runtime.GOARCH)\n \t}\n+\t// This test builds a Linux/AMD64 binary. Skipping in short mode if cross compiling.\n+\tif ... | 2021-09-30T16:02:56 |
rust-lang/rust | d4aed518a51d74a12f0664ea4ed7891cf2315800 | 1652187a03a137fe20ec05ae48b5b74f862dc0a9 | Do not count deprecated lints in lint total
In order to be consistent with our documentation, deprecated lints
should not be counted when displaying the total number of lints on the
[web site](https://rust-lang.github.io/rust-clippy/master/index.html).
For example, as of 2025-06-01, there are 784 non-deprecated lints... | [
{
"path": "util/gh-pages/script.js",
"patch": "@@ -602,7 +602,7 @@ filters.filterLints();\n updateLintCount();\n \n function updateLintCount() {\n- const allLints = filters.getAllLints();\n+ const allLints = filters.getAllLints().filter(lint => lint.group != \"deprecated\");\n const totalLints = a... | 2025-06-01T11:35:13 |
huggingface/transformers | 68a13cd4a65d0624a5b87827c6e0709a882613f0 | 25ad9c8c92f13090eb96a848eb361229e80c7498 | Add Segment Anything 2 (SAM2) (#32317)
* initial comment
* test
* initial conversion for outline
* intermediate commit for configuration
* chore:init files for sam2
* adding arbitary undefined config
* check
* add vision
* make style
* init sam2 base model
* Fix imports
* Linting
* chore:sam to sam2 classe... | [
{
"path": "docs/source/en/_toctree.yml",
"patch": "@@ -1097,6 +1097,10 @@\n title: Qwen2Audio\n - local: model_doc/qwen2_vl\n title: Qwen2VL\n+ - local: model_doc/sam2\n+ title: SAM2\n+ - local: model_doc/sam2_video\n+ title: SAM2 Video\n - local: model_do... | 2025-08-13T18:18:05 |
vercel/next.js | 84104af63e9a27e8c6053bcbb09a0dd8fd3d5943 | c75c4e56c59fcae7a3f4698413f894e5ea094de5 | fix: added jsdom & canvas to the external packages list - fixes #46893 (#46990)
fixes #46893
### What?
fixing compile issue reguarding the dompurify package.
### Why?
To allow the usage of dompurify
### How?
Added jsdom and canvas to the external packages list which are used by dompurify and throw errors if not add... | [
{
"path": "packages/next/src/lib/server-external-packages.json",
"patch": "@@ -6,11 +6,13 @@\n \"autoprefixer\",\n \"aws-crt\",\n \"bcrypt\",\n+ \"canvas\",\n \"cypress\",\n \"eslint\",\n \"express\",\n \"firebase-admin\",\n \"jest\",\n+ \"jsdom\",\n \"lodash\",\n \"mongodb\",\n \"ne... | 2023-03-10T19:27:41 |
electron/electron | 643ed27fd4c92c3715dc3df441ad157fc16ad9fd | 046a8e8a08439dca9d7a5c0fcdabd69dd93d3c43 | Check whether entry is null
This fixes the crash in #7877. | [
{
"path": "atom/browser/native_window.cc",
"patch": "@@ -549,7 +549,7 @@ void NativeWindow::BeforeUnloadDialogCancelled() {\n void NativeWindow::TitleWasSet(content::NavigationEntry* entry,\n bool explicit_set) {\n bool prevent_default = false;\n- std::string text = base::U... | 2015-07-29T10:26:20 |
nodejs/node | 69470c87cc65e92acb15883d2d031fe9fa1f4c54 | baf03962c1b63a25018d206dd0acc9f152452fd4 | lib: simplify several debug() calls
Avoid calling Array.prototype.join() in debug() calls. These
are evaluated on every call, even if the debug() call is a
no-op. This commit replaces the join() calls with the %j
placeholder.
PR-URL: https://github.com/nodejs/node/pull/25241
Reviewed-By: Ruben Bridgewater <ruben@brid... | [
{
"path": "lib/internal/http2/core.js",
"patch": "@@ -477,8 +477,8 @@ function onOrigin(origins) {\n const session = this[kOwner];\n if (session.destroyed)\n return;\n- debug(`Http2Session ${sessionName(session[kType])}: origin received: ` +\n- `${origins.join(', ')}`);\n+ debug('Http2Sessi... | 2018-12-27T15:06:23 |
rust-lang/rust | a71c00a7134dd442aeea13291b7baa3d4e04f965 | aa5832b142a2bfd322659d60f5d57e25d2a1bd5d | resolve if-let-chain FIXME on bootstrap
Signed-off-by: onur-ozkan <work@onurozkan.dev> | [
{
"path": "src/bootstrap/src/core/build_steps/tool.rs",
"patch": "@@ -1197,9 +1197,9 @@ fn run_tool_build_step(\n artifact_kind: ToolArtifactKind::Binary,\n });\n \n- // FIXME: This should just be an if-let-chain, but those are unstable.\n- if let Some(add_bins_to_sysroot) =\n- ... | 2025-06-01T11:37:49 |
huggingface/transformers | 25ad9c8c92f13090eb96a848eb361229e80c7498 | bec6926696e66c6d8878e3501016489548ff6b89 | Fix Janus (#40140)
fix | [
{
"path": "src/transformers/models/janus/modeling_janus.py",
"patch": "@@ -1360,7 +1360,6 @@ def generate(\n batch_size=batch_size * 2,\n # we should have at least a cache len of seq_len + num_image_tokens.\n max_cache_len=max(generation_config.max_length, num... | 2025-08-13T18:12:21 |
golang/go | b043d231fa1e1cbc17ddcfb007d92d83dee72428 | 7162c4c7caf72a3f29d3ceee48ff352dab659472 | debug/gosym: fix version check in file table access
Go 1.16 and 1.18 table are the same for that part. Accept 1.18
version number in that code.
Fixes #48699.
Change-Id: I44eafa279a94bd06444f61518aedd541b25390fd
Reviewed-on: https://go-review.googlesource.com/c/go/+/353329
Trust: Cherry Mui <cherryyz@google.com>
Run-... | [
{
"path": "src/debug/gosym/pclntab.go",
"patch": "@@ -490,7 +490,7 @@ func (t *LineTable) findFileLine(entry uint64, filetab, linetab uint32, filenum,\n \tfileStartPC := filePC\n \tfor t.step(&fp, &filePC, &fileVal, filePC == entry) {\n \t\tfileIndex := fileVal\n-\t\tif t.version == ver116 {\n+\t\tif t.vers... | 2021-09-30T15:46:41 |
vercel/next.js | 7e5881b72aad12818837073fae9b6ced6ac9e1d2 | fd6b93d46e1678371bc8d7b756a5e4ebb133ffd9 | update turbopack (#46994)
# Bugfixes
* https://github.com/vercel/turbo/pull/4149
* https://github.com/vercel/turbo/pull/4151
Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com> | [
{
"path": "packages/next-swc/Cargo.lock",
"patch": "@@ -150,7 +150,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-230309.2#d923d44a1444795538639f921a6af4b7cbb6e583\"\n+source = \"git+https://github.com/v... | 2023-03-10T16:59:48 |
huggingface/transformers | 20c6b478cd6e704685901e16c842f56bd13f884e | 6b728f18300a2afe4fb2455605fec4084a6931e4 | 🚨 Use lru_cache for sine pos embeddings MaskFormer (#40007)
* use lru_cache for sine pos embeddings maskformer
* fix calls to pos embed
* change maxsize to 1 | [
{
"path": "src/transformers/models/mask2former/modeling_mask2former.py",
"patch": "@@ -28,6 +28,7 @@\n from ...modeling_layers import GradientCheckpointingLayer\n from ...modeling_outputs import BaseModelOutput, BaseModelOutputWithCrossAttentions\n from ...modeling_utils import PreTrainedModel\n+from ...pyt... | 2025-08-13T17:05:22 |
golang/go | 665626928807c484d31a4bcb3b4b553a7a9d80eb | 2d6d5584179cf89e44abc2829fcdc68c29dfc5a4 | cmd/asm: add error check for move constant instructions on arm64
The current Go assembler encodes "MOVK $(0<<16|32|48), Rd" as the
same binary with "MOVK $0, Rd", but for arm64 move constant instructions
MOVK, MOVN and MOVZ, "op $0, Rd" and "op $(0<<16|32|48), Rd" have
different semantics. In order not to change the w... | [
{
"path": "src/cmd/asm/internal/asm/testdata/arm64error.s",
"patch": "@@ -430,4 +430,6 @@ TEXT errors(SB),$0\n \tSTP\t(R3, R4), 0x1234567(R27) // ERROR \"REGTMP used in large offset store\"\n \tLDP\t0x1234567(R27), (R3, R4) // ERROR \"REGTMP used in large offs... | 2021-09-28T05:46:14 |
vercel/next.js | fd6b93d46e1678371bc8d7b756a5e4ebb133ffd9 | d200e5fa1d395948d76c115fe25b8ded5761ab5d | Generate fixed route path for favicon.ico (#46997)
Generate `/favicon.ico` route when favicon.ico is placed into `app/`.
Still collect favicon metadata image information through
metadata-image-loader but don't emit the file to static dist anymore.
Also collect favicon through metadata routes, and render it as sta... | [
{
"path": "packages/next/src/build/webpack/loaders/metadata/discover.ts",
"patch": "@@ -1,16 +1,12 @@\n import type webpack from 'webpack'\n import type { AppLoaderOptions } from '../next-app-loader'\n-import type { CollectingMetadata } from './types'\n+import type {\n+ CollectingMetadata,\n+ PossibleImag... | 2023-03-10T16:12:44 |
nodejs/node | ab02d380e5aca7cb304c4660e2071ae4dd841461 | 74a9221f6f2f706b8eb4eda7c73cbb65a0b3cfb7 | test: split test-whatwg-encoding-textdecoder-fatal.js
Split `test-whatwg-encoding-textdecoder-fatal.js` into
- `test-whatwg-encoding-custom-textdecoder-fatal.js` which
is a customized version of the WPT that tests for Node.js-specific
error codes.
- `test-whatwg-encoding-custom-textdecoder-invalid-arg` which
te... | [
{
"path": "test/parallel/test-whatwg-encoding-custom-textdecoder-fatal.js",
"patch": "@@ -1,6 +1,7 @@\n 'use strict';\n \n // From: https://github.com/w3c/web-platform-tests/blob/39a67e2fff/encoding/textdecoder-fatal.html\n+// With the twist that we specifically test for Node.js error codes\n \n const commo... | 2018-12-20T06:29:13 |
huggingface/transformers | 6b728f18300a2afe4fb2455605fec4084a6931e4 | 127e33f759ee86571b01d3d2e6ea7d684aed4e15 | 🌐 [i18n-KO] Translated grounding-dino.md to Korean (#39861)
* docs: ko: grounding-dino.md
* feat: nmt draft
* fix: manual edits
* Update docs/source/ko/model_doc/grounding-dino.md
Co-authored-by: Kim Juwon <81630351+Kim-Ju-won@users.noreply.github.com>
* Update docs/source/ko/model_doc/grounding-dino.md
Co-auth... | [
{
"path": "docs/source/ko/_toctree.yml",
"patch": "@@ -1066,6 +1066,8 @@\n - local: in_translation\n title: GraniteVision\n - local: in_translation\n+ title: (번역중) GIT\n+ - local: model_doc/grounding_dino\n title: Grounding DINO\n - local: in_translation\n ... | 2025-08-13T17:01:05 |
golang/go | d3ad216f8e7ea7699fe44990c65213c26aba907d | 88ea8a5fe0526bc53e944420c42cf75fc7b11c4f | cmd/link, runtime: use offset for _func.entry
The first field of the func data stored by the linker is the
entry PC for the function. Prior to this change, this was stored
as a relocation to the function. Change this to be an offset
relative to runtime.text.
This reduces the number of relocations on darwin/arm64 by a... | [
{
"path": "src/cmd/link/internal/ld/pcln.go",
"patch": "@@ -72,7 +72,7 @@ func makePclntab(ctxt *Link, container loader.Bitmap) (*pclntab, []*sym.Compilat\n \n \tstate := &pclntab{\n \t\t// This is the size of the _func object in runtime/runtime2.go.\n-\t\tfuncSize: uint32(ctxt.Arch.PtrSize + 9*4),\n+\t\tfu... | 2021-09-29T00:06:56 |
rust-lang/rust | 9f8e157a1f1942dcde6489b047aedcadc5a887a3 | af0829b9f1875e811f5a8bb1d7cdca76aa596248 | Fix tokio/file-io.rs test relying on `read`/`write` not being short
The test did `write` and `read` and hoped that it would read/write
everything, which doesn't always happen and caused CI failures.
Switch to `write_all` and `read_to_end` to make it more reliable. | [
{
"path": "src/tools/miri/tests/pass-dep/tokio/file-io.rs",
"patch": "@@ -20,7 +20,7 @@ async fn test_create_and_write() -> io::Result<()> {\n let mut file = File::create(&path).await?;\n \n // Write 10 bytes to the file.\n- file.write(b\"some bytes\").await?;\n+ file.write_all(b\"some bytes\"... | 2025-06-01T09:43:55 |
nodejs/node | 8a60be4f0fd6a8f6591b7d591e20960fc4372fe4 | 00944c7cc25f391c3fbeba1e054a56a62cf0de12 | process: make internal/queue_microtask.js more self-contained
- Instead of passing triggerFatalException through node.js,
simply put it on `internalBinding('util')` which has to be
loaded anyway.
- Expose the implementation of `queueMicrotask` directly instead
of through an unnecessary factory function.
PR-URL:... | [
{
"path": "lib/internal/bootstrap/node.js",
"patch": "@@ -14,8 +14,7 @@\n \n // This file is compiled as if it's wrapped in a function with arguments\n // passed by node::LoadEnvironment()\n-/* global process, loaderExports, triggerFatalException */\n-/* global isMainThread */\n+/* global process, loaderExp... | 2018-12-23T01:27:35 |
golang/go | ed57d7bb15992bf7ffbbe643401b03f0a418663c | 40fa8c200cc18a361843a526f3e0116e5dfd006f | debug/gosym: refactor handling of funcdata
We do a bunch of manual offset calculations everywhere.
Add a bit of type safety and some helpers.
In addition to making the code clearer and providing a place
to hang some documentation, it also makes upcoming changes easier.
name old time/op new time/op ... | [
{
"path": "src/debug/gosym/pclntab.go",
"patch": "@@ -279,24 +279,24 @@ func (t *LineTable) go12Funcs() []Func {\n \t\tf := &funcs[i]\n \t\tf.Entry = t.uintptr(t.functab[2*i*int(t.ptrsize):])\n \t\tf.End = t.uintptr(t.functab[(2*i+2)*int(t.ptrsize):])\n-\t\tinfo := t.funcdata[t.uintptr(t.functab[(2*i+1)*int... | 2021-09-23T20:11:04 |
rust-lang/rust | f023a69f32352531a8da2f43e2ca4cd087317f8c | aa57e46e24a4a08cc336325e92567b40b0c2ba62 | Async drop - type instead of async drop fn and incorrect drop signature don't ICE now | [
{
"path": "compiler/rustc_mir_transform/src/elaborate_drop.rs",
"patch": "@@ -1,6 +1,7 @@\n use std::{fmt, iter, mem};\n \n use rustc_abi::{FIRST_VARIANT, FieldIdx, VariantIdx};\n+use rustc_hir::def::DefKind;\n use rustc_hir::lang_items::LangItem;\n use rustc_index::Idx;\n use rustc_middle::mir::*;\n@@ -254... | 2025-05-28T06:56:23 |
vercel/next.js | 10f2268f4e0a5e5238cea4fc86f43e1eaa4d679b | 05f6de10869021dbb6124e174778e2108c9b4e8e | Add Zod and router state validation (#46962)
This PR adds Zod to the precompiled libraries, and use it to create schemas for the router state tree for validation. In other planned features/changes, Zod will also be used to do run-time data validation.
Fixes NEXT-135. | [
{
"path": "packages/next/package.json",
"patch": "@@ -302,7 +302,8 @@\n \"webpack\": \"5.74.0\",\n \"webpack-sources1\": \"npm:webpack-sources@1.4.3\",\n \"webpack-sources3\": \"npm:webpack-sources@3.2.3\",\n- \"ws\": \"8.2.3\"\n+ \"ws\": \"8.2.3\",\n+ \"zod\": \"3.21.4\"\n },\n \"r... | 2023-03-10T13:37:45 |
huggingface/transformers | 127e33f759ee86571b01d3d2e6ea7d684aed4e15 | ac52c77a66ac407b2c207b65e3580bec6051be93 | 🌐 [i18n-KO] Translated `optimizers.md` to Korean (#40011)
* docs: ko: optimizers.md
* feat: optimizers draft
* fix: manual edits
* docs: ko: update optimizers.md
* Update docs/source/ko/optimizers.md
Co-authored-by: Minseo Kim <75977640+luckyvickyricky@users.noreply.github.com>
* Update docs/source/ko/optimizer... | [
{
"path": "docs/source/ko/_toctree.yml",
"patch": "@@ -117,8 +117,8 @@\n title: 트레이너(Trainer)\n - local: training\n title: 사전 학습된 모델 미세 조정하기\n- - local: in_translation\n- title: (번역중) Optimizers\n+ - local: optimizers\n+ title: 옵티마이저(Optimizers)\n - local: hpo_train\n ... | 2025-08-13T17:00:47 |
nodejs/node | 59aa94112eb88176b60430e8e65436b7a55b270d | 08387b245ecfe5fb736d2d6753b880e644a4f3e2 | tls: fix initRead socket argument name
"wrapped" argument is the caller's "socket", not its "wrap", and its
referred to as "socket" in the comments, so call it that.
PR-URL: https://github.com/nodejs/node/pull/25153
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Reviewe... | [
{
"path": "lib/_tls_wrap.js",
"patch": "@@ -271,15 +271,17 @@ function onerror(err) {\n }\n }\n \n-function initRead(tls, wrapped) {\n+// Used by both client and server TLSSockets to start data flowing from _handle,\n+// read(0) causes a StreamBase::ReadStart, via Socket._read.\n+function initRead(tls, so... | 2018-12-19T22:30:20 |
golang/go | 40fa8c200cc18a361843a526f3e0116e5dfd006f | 5930cff093c44b86a299c1841ab4e6a2c7a239d2 | cmd/go/internal/modcmd: fix "go mod editwork" error text
Fixes #48583
Change-Id: I863ece5c546c383a2f46b8b1a36cbf9f2526d3ed
Reviewed-on: https://go-review.googlesource.com/c/go/+/352709
Reviewed-by: Jay Conrod <jayconrod@google.com>
Trust: Dmitri Shuralyov <dmitshur@golang.org> | [
{
"path": "src/cmd/go/internal/modcmd/editwork.go",
"patch": "@@ -118,7 +118,7 @@ func runEditwork(ctx context.Context, cmd *base.Command, args []string) {\n \t\t\tlen(workedits) > 0\n \n \tif !anyFlags {\n-\t\tbase.Fatalf(\"go: no flags specified (see 'go help mod edit').\")\n+\t\tbase.Fatalf(\"go: no flag... | 2021-09-28T06:05:20 |
huggingface/transformers | ac52c77a66ac407b2c207b65e3580bec6051be93 | 5337f3052db90e8f5f8f64afcbf257da603d56fb | 🌐 [i18n-KO] Translated `gpt2.md` to Korean (#39808)
* docs: ko: bamba.md
* feat: nmt draft
* fix: manual edits
* docs: ko: gpt2.md
* feat: nmt draft
* fix: manual edits
* Remove bamba.md from docs/source/ko/model_doc/
* Update _toctree.yml | [
{
"path": "docs/source/ko/_toctree.yml",
"patch": "@@ -573,8 +573,8 @@\n title: GPT NeoX Japanese\n - local: in_translation\n title: GPT-J\n- - local: in_translation\n- title: GPT2\n+ - local: model_doc/gpt2\n+ title: GPT-2\n - local: in_translation\n ... | 2025-08-13T17:00:25 |
rust-lang/rust | 810a564d9b80429e31eea198faf735712229a968 | 337c11e5932275e7d450c1f2e26f289f0ddfa717 | Fix TLS model on bootstrap for cygwin | [
{
"path": "src/bootstrap/src/core/builder/cargo.rs",
"patch": "@@ -1004,7 +1004,12 @@ impl Builder<'_> {\n // efficient initial-exec TLS model. This doesn't work with `dlopen`,\n // so we can't use it by default in general, but we can use it for tools\n // and our own internal librar... | 2025-06-01T06:56:54 |
electron/electron | 45f5a10d5df6a950fff69e58e224b7dcf3bfa95b | edde653d60c46eeebd7d07e60f755ef68f858e55 | Use NSImageView to draw tray icon.
* Fixes Tempate image doesn't show correctly in dark mode.
* Fixes the tray icon is stretched showing in menubar.
* Fixes title color will not reversed in dark mode. | [
{
"path": "atom/browser/ui/tray_icon_cocoa.mm",
"patch": "@@ -12,8 +12,8 @@\n \n namespace {\n \n-const CGFloat kStatusItemLength = 26;\n-const CGFloat kMargin = 3;\n+// By default, OS X sets 4px to tray image as left and right padding margin.\n+const CGFloat kHorizontalMargin = 4;\n \n } // namespace\n \... | 2015-07-29T05:27:07 |
nodejs/node | 7a867b8140fa5f5c3211a6b653912748ceee8012 | 59fa7f12571f721bfe2f5952bc7fe415abb3ad1c | test: mark two tests as flaky in AIX
sequential/test-inspector-debug-end and
parallel/test-child-process-execfile
Off late these have been failing in AIX. Debugging core dump
suggested that this is a side effect of exit-race that is
described in https://github.com/nodejs/node/issues/25007
Mart these as flaky in AIX ... | [
{
"path": "test/parallel/parallel.status",
"patch": "@@ -34,3 +34,5 @@ test-cli-node-options: PASS,FLAKY\n [$system==freebsd]\n \n [$system==aix]\n+# https://github.com/nodejs/node/issues/25029\n+test-child-process-execfile: PASS,FLAKY",
"additions": 2,
"deletions": 0,
"language": "Unknown"
},... | 2018-12-19T07:56:42 |
huggingface/transformers | 5337f3052db90e8f5f8f64afcbf257da603d56fb | e4223fa9150580beca9a3ae5fc72e0e1ef20fe37 | 🚨🚨 [generate] ignore `cache_implementation="hybrid"` hub defaults (#40135)
* working?
* fix tests | [
{
"path": "src/transformers/generation/utils.py",
"patch": "@@ -1742,6 +1742,13 @@ def _prepare_generation_config(\n generation_config = self.generation_config\n using_model_generation_config = True\n \n+ # Related to #40039: prior to this PR, models with sliding window at... | 2025-08-13T15:57:41 |
vercel/next.js | 594b76ebd8842f600f475b6099215ea95875dede | 81407d4836331d4a36cebcda3ca9f5dd218226d6 | fix HMR when module evaluation throws (vercel/turbo#4151)
### Description
* before a self accepting module was disconnected from it's parents and
after an error in module evaluation it failed to continue updating.
* now it keep being connected to its parents, allowing a HMR update to
bubble to the parent when evaluat... | [
{
"path": "crates/turbopack-ecmascript/js/src/runtime.js",
"patch": "@@ -8,6 +8,11 @@\n /** @typedef {import('../types').GetFirstModuleChunk} GetFirstModuleChunk */\n \n /** @typedef {import('../types').Module} Module */\n+/** @typedef {import('../types').SourceInfo} SourceInfo */\n+/** @typedef {import('..... | 2023-03-10T12:01:16 |
golang/go | 5930cff093c44b86a299c1841ab4e6a2c7a239d2 | e213c72fb9492a409bd0ed9620ca9aaaa96ddebe | debug/gosym: add benchmark
Use a Go 1.15 executable for the benchmark, because it is handy.
Most of the code paths are shared for Go 1.2+.
Change-Id: Id7ddc76a05d76335108c58ff9f1ab2ff837b7227
Reviewed-on: https://go-review.googlesource.com/c/go/+/353131
Trust: Josh Bleecher Snyder <josharian@gmail.com>
Trust: Brad Fi... | [
{
"path": "src/debug/gosym/pclntab_test.go",
"patch": "@@ -267,7 +267,8 @@ func TestPCLine(t *testing.T) {\n \t}\n }\n \n-// Test that we can parse a pclntab from 1.15.\n+// read115Executable returns a hello world executable compiled by Go 1.15.\n+//\n // The file was compiled in /tmp/hello.go:\n // [BEGIN]... | 2021-09-29T17:16:47 |
electron/electron | e9da74e58a504c6682d340a5207a7d98069bff16 | bd6019ba0d753451154e93348ad374b13ef92778 | fix devtools workspace api to accept file path | [
{
"path": "brightray/browser/inspectable_web_contents_delegate.h",
"patch": "@@ -14,9 +14,10 @@ class InspectableWebContentsDelegate {\n const std::string& url, const std::string& content, bool save_as) {}\n virtual void DevToolsAppendToFile(\n const std::string& url, const std::string& conten... | 2015-07-24T09:43:36 |
nodejs/node | 59fa7f12571f721bfe2f5952bc7fe415abb3ad1c | eaa1544d974d701c1eed7b42308ca6031e65c833 | deps: cherry-pick 26b145a from upstream V8
Original commit message:
[api] Deprecate ExternalStringResourceBase::IsCompressible
R=yangguo@chromium.org
Bug: v8:8238
Change-Id: Ia59aefc54c2e9f4fa3348c42fb45e7fadab8ee76
Reviewed-on: https://chromium-review.googlesource.com/c/1349231
Reviewed-by:... | [
{
"path": "common.gypi",
"patch": "@@ -38,7 +38,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.7',\n+ 'v8_embedder_string': '-node.8',\n \n ##### V8 defaults for Node.js #####\n "... | 2018-12-21T23:49:29 |
vercel/next.js | 01f25243920f040a8197f86ca547032a422d4f3a | 511b244f4a5182931b7a963ced031eb883d76a46 | fix pathname for data requests (vercel/turbo#4149)
### Description
| input file | HTML pathname | Data pathname |
| ------------------ | ------------- | ---------------- |
| index.tsx | / | .../index.json |
| blog.tsx | /blog | .../blog.json |
| pricing/index.tsx... | [
{
"path": "packages/next-swc/crates/next-core/src/util.rs",
"patch": "@@ -47,14 +47,10 @@ pub async fn pathname_for_path(\n } else {\n path\n };\n- let path = if data {\n- path\n+ let path = if path == \"index\" && !data {\n+ \"\"\n } else {\n- if path == \"ind... | 2023-03-10T08:40:43 |
rust-lang/rust | be13ce341a663b61f785fea86554915ebf94c59d | 108a36efe42da0f534ebdccd1f594d5a0f1dfe0b | implement `va_arg` for `powerpc`
This actually fixes a bug where before only 20 arguments could be passed. As far as I can tell, an arbitrary number of arguments is now supported | [
{
"path": "compiler/rustc_codegen_llvm/src/va_arg.rs",
"patch": "@@ -237,6 +237,150 @@ fn emit_aapcs_va_arg<'ll, 'tcx>(\n val\n }\n \n+fn emit_powerpc_va_arg<'ll, 'tcx>(\n+ bx: &mut Builder<'_, 'll, 'tcx>,\n+ list: OperandRef<'tcx, &'ll Value>,\n+ target_ty: Ty<'tcx>,\n+) -> &'ll Value {\n+ ... | 2025-05-26T22:28:47 |
golang/go | e213c72fb9492a409bd0ed9620ca9aaaa96ddebe | 82ac9ab83a47468046bda9bf6c4676a9695fae24 | internal/fuzz: disconnect stdout and stderr from the worker
This was useful for debugging while we were developing
the feature, but is now causing extraneous prints that
make the command output difficult to read.
This change also prevents the go command from printing
an extraneous "FAIL" when fuzzing is enabled.
Fix... | [
{
"path": "src/cmd/go/internal/test/test.go",
"patch": "@@ -1790,9 +1790,23 @@ func builderNoTest(b *work.Builder, ctx context.Context, a *work.Action) error {\n \treturn nil\n }\n \n-// printExitStatus is the action for printing the exit status\n+// printExitStatus is the action for printing the final exit... | 2021-09-28T19:59:34 |
electron/electron | 2c97cd64cf31b0284b0cf8731e063f118f9c8240 | ff6b9d0907cc4f5cc449df14b2a58ca2c8a892ab | Minor style fix for #2352 | [
{
"path": "atom/common/api/atom_api_native_image.cc",
"patch": "@@ -181,6 +181,7 @@ gfx::Size NativeImage::GetSize() {\n #if !defined(OS_MACOSX)\n void NativeImage::SetTemplateImage(bool setAsTemplate) {\n }\n+\n bool NativeImage::IsTemplateImage() {\n }\n #endif",
"additions": 1,
"deletions": 0,
... | 2015-07-29T03:48:40 |
huggingface/transformers | e4223fa9150580beca9a3ae5fc72e0e1ef20fe37 | 9e21e502411d947f41391da72d8d6b636c6ea065 | 🌐 [i18n-KO] Translated `main_classes/optimizer_schedules.md` to Korean (#39713)
* docs: ko: main_classes/optimizer_schedules
* feat: nmt draft
* fix: improve TOC anchors and expressions in optimizer_schedules
- Add TOC anchors to all section headers
- Fix terminology and improve Korean expressions
* fix: Correct ... | [
{
"path": "docs/source/ko/_toctree.yml",
"patch": "@@ -412,8 +412,8 @@\n title: 텍스트 생성\n - local: main_classes/onnx\n title: ONNX\n- - local: in_translation\n- title: (번역중) Optimization\n+ - local: main_classes/optimizer_schedules\n+ title: 최적화\n - local: main_classes/out... | 2025-08-13T15:23:09 |
vercel/next.js | 81407d4836331d4a36cebcda3ca9f5dd218226d6 | 27f66174a2c24ea7b81126b5138260f252f64ca9 | fix pathname for data requests (vercel/turbo#4149)
### Description
| input file | HTML pathname | Data pathname |
| ------------------ | ------------- | ---------------- |
| index.tsx | / | .../index.json |
| blog.tsx | /blog | .../blog.json |
| pricing/index.tsx... | [
{
"path": "crates/next-core/src/util.rs",
"patch": "@@ -47,14 +47,10 @@ pub async fn pathname_for_path(\n } else {\n path\n };\n- let path = if data {\n- path\n+ let path = if path == \"index\" && !data {\n+ \"\"\n } else {\n- if path == \"index\" {\n- ... | 2023-03-10T08:40:43 |
nodejs/node | ca9c0c90c28ed012cdd5be4e94a974ad07fd9b9a | 455bcca00574de4f1533476bd42496a649f07de4 | src: add .code and SSL specific error properties
SSL errors have a long structured message, but lacked the standard .code
property which can be used for stable comparisons. Add a `code`
property, as well as the 3 string components of an SSL error: `reason`,
`library`, and `function`.
PR-URL: https://github.com/nodejs... | [
{
"path": "src/env.h",
"patch": "@@ -183,6 +183,7 @@ constexpr size_t kFsStatsBufferLength = kFsStatsFieldsNumber * 2;\n V(fingerprint_string, \"fingerprint\") \\\n V(flags_string, \"flags\") \\\n V(fragment_st... | 2018-11-22T02:02:53 |
golang/go | 82ac9ab83a47468046bda9bf6c4676a9695fae24 | e48cf0db4edb139901946fcee1497bd539229d71 | text/template: check final value for short-circuit and/or
There was a bug in the short-circuit code for and/or added in CL 321490:
it ignored the value passed in by an earlier pipeline.
For #31103
Change-Id: Ic31f4d7cedfe563ef968cbb712ecfb2413c42eb5
Reviewed-on: https://go-review.googlesource.com/c/go/+/353130
Trust... | [
{
"path": "src/text/template/exec.go",
"patch": "@@ -721,9 +721,12 @@ func (s *state) evalCall(dot, fun reflect.Value, isBuiltin bool, node parse.Node\n \t\tfor _, arg := range args {\n \t\t\tv = s.evalArg(dot, argType, arg).Interface().(reflect.Value)\n \t\t\tif truth(v) == (name == \"or\") {\n-\t\t\t\tbre... | 2021-09-29T17:50:18 |
huggingface/transformers | 9e21e502411d947f41391da72d8d6b636c6ea065 | 486844579b39e7fe2ff36044c683378463259d33 | 🌐 [i18n-KO] Translated `jamba.md` to Korean (#39890)
* docs: ko: jamba.md
* feat: nmt draft
* fix: manual edits
* fix: resolve suggestion
Co-authored-by: Minseo Kim <75977640+luckyvickyricky@users.noreply.github.com>
---------
Co-authored-by: Minseo Kim <75977640+luckyvickyricky@users.noreply.github.com> | [
{
"path": "docs/source/ko/_toctree.yml",
"patch": "@@ -597,7 +597,7 @@\n title: HGNet-V2\n - local: in_translation\n title: I-BERT\n- - local: in_translation\n+ - local: model_doc/jamba\n title: Jamba\n - local: in_translation\n title: JetMoe\n@@ -1241,4... | 2025-08-13T15:22:28 |
huggingface/transformers | 486844579b39e7fe2ff36044c683378463259d33 | f445caeb0f6577e1ef2bc59149e264fdf0d25461 | 🌐 [i18n-KO] Translated `main_classes/processors.md` to Korean (#39519)
* docs: ko: processors.md
* feat: nmt draft
* fix: manual edits
* Update docs/source/ko/main_classes/processors.md
Co-authored-by: Ahnjj_DEV <ahnjj.dev@gmail.com>
* Update docs/source/ko/main_classes/processors.md
Co-authored-by: Ahnjj_DEV <... | [
{
"path": "docs/source/ko/_toctree.yml",
"patch": "@@ -420,12 +420,14 @@\n title: PEFT\n - local: in_translation\n title: (번역중) Pipelines\n- - local: main_classes/tokenizer\n- title: 토크나이저\n+ - local: main_classes/processors\n+ title: 프로세서\n - local: main_classes/quantiza... | 2025-08-13T15:21:38 |
golang/go | 99d5d8ab6b6819f84bb62aeb3b1eaefaab01989f | b35c668072204c2ef2773df383bab5b04b7abca6 | go/types, types2: rename Environment to Context
Replace the name Environment with Context, as discussed in #47916. Along
the way, fix some stale or inaccurate comments.
The Environment type remains temporarily as an alias for Context, to
allow the x/tools Trybot to pass until dependency on types.Environment
can be re... | [
{
"path": "src/cmd/compile/internal/noder/import.go",
"patch": "@@ -43,12 +43,12 @@ var haveLegacyImports = false\n // for an imported package by overloading writeNewExportFunc, then\n // that payload will be mapped into memory and passed to\n // newReadImportFunc.\n-var newReadImportFunc = func(data string... | 2021-09-29T13:35:02 |
nodejs/node | 728777d2d0634a9c5ea0726b4d08ca91ed5ab503 | 67b724fa77556a0a43660774be5fc16152d7d363 | test: fix test-repl-envvars
In 180f86507d496b11aa35b2df4594629a92cce329, the test was changed
so that the `env` argument of `createInternalRepl()` also contained
external environment variables, because keeping them can be necessary
for spawning processes on some systems.
However, this test does not spawn new processe... | [
{
"path": "test/parallel/test-repl-envvars.js",
"patch": "@@ -36,7 +36,7 @@ const tests = [\n ];\n \n function run(test) {\n- const env = Object.assign({}, process.env, test.env);\n+ const env = test.env;\n const expected = test.expected;\n const opts = {\n terminal: true,",
"additions": 1,
... | 2018-12-26T12:21:57 |
vercel/next.js | 71dbcacf175554c3ec2fcde506450e779e852041 | 9f08ef8daf28bd4e19894c617617f88ad9d1bdff | Do not re-assign `process.env` (#46914)
## Checklist
- [ ] Related issues linked using `fixes #number`
- no related issue exists, happy to open one if desired
- [x] Tests added
- not sure if specific tests are needed? there is an integration test
for environment variables, and Next.js relies a lot on passing... | [
{
"path": "packages/next-env/index.ts",
"patch": "@@ -20,6 +20,18 @@ type Log = {\n error: (...args: any[]) => void\n }\n \n+function replaceProcessEnv(sourceEnv: Env) {\n+ Object.keys(process.env).forEach((key) => {\n+ if (sourceEnv[key] === undefined || sourceEnv[key] === '') {\n+ delete proces... | 2023-03-09T22:41:50 |
electron/electron | 42ce91323c429d4f99eba5b44261e966f00a856c | 0ca9dfbc129d0ee9a526744f21b653b6cc089f2c | docs: Small style fix for #2337 | [
{
"path": "docs/api/tray.md",
"patch": "@@ -74,15 +74,15 @@ will be emitted if the tray icon has context menu.\n \n ### Event: 'double-clicked'\n \n-Emitted when the tray icon is double clicked.\n-\n * `event`\n * `bounds` Object - the bounds of tray icon\n * `x` Integer\n * `y` Integer\n * `width` In... | 2015-07-29T03:28:20 |
huggingface/transformers | f445caeb0f6577e1ef2bc59149e264fdf0d25461 | 11537c3e0c8e92e420e2bfbf37d19722db47ed70 | Fix hidden torchvision>=0.15 dependency issue (#39928)
* use pil_torch_interpolation_mapping for NEAREST/NEAREST_EXACT
* fix min torchvision version
* use InterpolationMode directly
* remove unused is_torchvision_greater_or_equal,
* nit | [
{
"path": "src/transformers/image_utils.py",
"patch": "@@ -31,6 +31,7 @@\n is_torch_available,\n is_torch_tensor,\n is_torchvision_available,\n+ is_torchvision_v2_available,\n is_vision_available,\n logging,\n requires_backends,\n@@ -59,7 +60,9 @@\n from torchvision.transf... | 2025-08-13T15:13:42 |
nodejs/node | 3614157b7882cc4d22602280eb3c775b3250d8e1 | 4e31a7f3546bb848058a55b3aa629b5f12d1caf9 | doc: fix lint in CHANGELOG_V6
introduced in 7b9c9b3dcc
PR-URL: https://github.com/nodejs/node/pull/25233
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Gus Caplan <me@gus.host> | [
{
"path": "doc/changelogs/CHANGELOG_V6.md",
"patch": "@@ -85,7 +85,7 @@ a missing CLI flag to adjust the max header size of the http parser.\n \n ### Notable Changes\n \n-* **cli**: \n+* **cli**:\n - add --max-http-header-size flag (cjihrig) [#24811](https://github.com/nodejs/node/pull/24811)\n * **http**... | 2018-12-26T17:57:42 |
vercel/next.js | 9f08ef8daf28bd4e19894c617617f88ad9d1bdff | 9be98e4aecff4770117015f8c586278417570b13 | fix: Add NODE_OPTIONS for debugging in next-dev (#46757)
<!--
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/src/cli/next-dev.ts",
"patch": "@@ -477,22 +477,27 @@ If you cannot make the changes above, but still want to try out\\nNext.js v13 wit\n let config: NextConfig\n let childProcess: ChildProcess | null = null\n \n- const isDebugging = process.execArgv.some((localArg)... | 2023-03-09T22:12:54 |
rust-lang/rust | 7f7c415d03e6ec431a65a6f5625026761ab9f913 | 852f15c0f146fc292c9b20f2a8f44c1f671d7845 | library: explain TOCTOU races in `fs::remove_dir_all`
In the previous description it said there was a TOCTOU race but did not
explain exactly what the problem was. I sat down with the CVE, reviewed
its text, and created this explanation. This context should hopefully
help people understand the actual risk as-such.
In... | [
{
"path": "library/std/src/fs.rs",
"patch": "@@ -2915,17 +2915,28 @@ pub fn remove_dir<P: AsRef<Path>>(path: P) -> io::Result<()> {\n ///\n /// # Platform-specific behavior\n ///\n-/// This function currently corresponds to `openat`, `fdopendir`, `unlinkat` and `lstat` functions\n-/// on Unix (except for RE... | 2025-05-02T01:23:07 |
huggingface/transformers | ebceef343aba3fc0c1265649752de55f465429af | e78571f5ced094a9245186f286d4a1b1d13baeb5 | Collated reports (#40080)
* Add initial collated reports script and job definition
* provide commit hash for this run. Also use hash in generated artifact name. Json formatting
* tidy
* Add option to upload collated reports to hf hub
* Add glob pattern for test report folders
* Fix glob
* Use machine_type as pat... | [
{
"path": ".github/workflows/collated-reports.yml",
"patch": "@@ -0,0 +1,49 @@\n+name: CI collated reports\n+\n+on:\n+ workflow_call:\n+ inputs:\n+ job:\n+ required: true\n+ type: string\n+ report_repo_id:\n+ required: true\n+ type: string\n+ machine_type:\n+ ... | 2025-08-13T12:48:15 |
nodejs/node | 78f2e142c5277dc91fb6b3e81249c25f1fb46110 | 9542324d9e9124f869c79d9f4a35d0d7bd458c5d | 2018-12-26, Version 10.15.0 'Dubnium' (LTS)
The 10.14.0 security release introduced some unexpected breakages on
the 10.x release line. This is a special release to fix a regression
in the HTTP binary upgrade response body and add a missing CLI flag
to adjust the max header size of the http parser.
Notable Changes:
... | [
{
"path": "CHANGELOG.md",
"patch": "@@ -36,7 +36,8 @@ release.\n <a href=\"doc/changelogs/CHANGELOG_V11.md#11.0.0\">11.0.0</a><br/>\n </td>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V10.md#10.14.2\">10.14.2</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V10.md#10.15.0\">10.... | 2018-12-21T23:26:11 |
vercel/next.js | 8e14b672cc068a0b077de6e6994d14a24904ba6a | 9a41ba9ac4c6be2e90130f924933c093a9746005 | Update Turbopack to 230309.2 (#46971)
# New Features
- https://github.com/vercel/turbo/pull/3975
# Bug Fixes
- https://github.com/vercel/turbo/pull/4129
- https://github.com/vercel/turbo/pull/4134
- https://github.com/vercel/turbo/pull/4062
# Performance
- https://github.com/vercel/turbo/pull/4093 | [
{
"path": ".github/workflows/build_test_deploy.yml",
"patch": "@@ -9,7 +9,7 @@ name: Build, test, and deploy\n env:\n NAPI_CLI_VERSION: 2.14.7\n TURBO_VERSION: 1.6.3\n- RUST_TOOLCHAIN: nightly-2022-11-04\n+ RUST_TOOLCHAIN: nightly-2023-03-09\n PNPM_VERSION: 7.24.3\n NODE_MAINTENANCE_VERSION: 16\n ... | 2023-03-09T21:24:24 |
rust-lang/rust | a8b5e706b7ed81a294150d2a909ca4d6dc3daeb3 | 642e49bfed2481e54e252732be20d3c24cbec9e8 | source_span_for_markdown_range: fix utf8 violation
it is non-trivial to reproduce this bug through rustdoc,
which uses this function less than clippy,
so the regression test was added as a unit test
instead of an integration test. | [
{
"path": "compiler/rustc_resolve/src/rustdoc.rs",
"patch": "@@ -12,10 +12,14 @@ use rustc_data_structures::fx::FxIndexMap;\n use rustc_data_structures::unord::UnordSet;\n use rustc_middle::ty::TyCtxt;\n use rustc_span::def_id::DefId;\n+use rustc_span::source_map::SourceMap;\n use rustc_span::{DUMMY_SP, Inn... | 2025-05-27T21:52:48 |
huggingface/transformers | 8d19231bca9438b70754aacea0badd85d9c6bcb7 | 34a1fc6426fa86efd6eea3e3da5acdba32c28085 | [serve] allow array `content` inputs for LLMs (#39829)
fix bug; add tests | [
{
"path": "src/transformers/commands/serving.py",
"patch": "@@ -829,13 +829,22 @@ def get_processor_inputs_from_inbound_messages(messages, modality: Modality):\n parsed_message = {\"role\": message[\"role\"], \"content\": []}\n \n if modality == Modality.LLM:\n- # If w... | 2025-08-13T10:26:19 |
golang/go | 10186e8d691f2af92c17034a70b01ca7eb9f4fee | 2fad7dbb893737a01c7ab4f382720a2b0440b736 | debug/gosym: adjust go12* method comments
These methods are for use with Go 1.2 _and later_ pcln tables.
Make that clearer.
Change-Id: Iee06e0828fd5895639b654363b6d91bf9151d224
Reviewed-on: https://go-review.googlesource.com/c/go/+/352950
Trust: Josh Bleecher Snyder <josharian@gmail.com>
Reviewed-by: Cherry Mui <cher... | [
{
"path": "src/debug/gosym/pclntab.go",
"patch": "@@ -264,7 +264,7 @@ func (t *LineTable) parsePclnTab() {\n \tt.version = possibleVersion\n }\n \n-// go12Funcs returns a slice of Funcs derived from the Go 1.2 pcln table.\n+// go12Funcs returns a slice of Funcs derived from the Go 1.2+ pcln table.\n func (t... | 2021-09-28T22:57:09 |
rust-lang/rust | f8e97badb26f1436d062b3bfdd4f50adc41b843a | 852f15c0f146fc292c9b20f2a8f44c1f671d7845 | Add const support for float rounding methods
Add const support for the float rounding methods floor, ceil, trunc,
fract, round and round_ties_even.
This works by moving the calculation logic from
src/tools/miri/src/intrinsics/mod.rs
into
compiler/rustc_const_eval/src/interpret/intrinsics.rs.
All relevant... | [
{
"path": "compiler/rustc_const_eval/src/interpret/intrinsics.rs",
"patch": "@@ -518,6 +518,103 @@ impl<'tcx, M: Machine<'tcx>> InterpCx<'tcx, M> {\n sym::fabsf64 => self.float_abs_intrinsic::<Double>(args, dest)?,\n sym::fabsf128 => self.float_abs_intrinsic::<Quad>(args, dest)?,\n \... | 2025-05-19T21:34:32 |
vercel/next.js | 9a41ba9ac4c6be2e90130f924933c093a9746005 | 09d21d6e998cfd122a6e90e63f2e25a179fab80b | Improve RSC compiler error in external module (#46953)
When the RSC compiler error was caused by an external package, make the
error message display which import caused the error. Also don't show
node_module files in the import trace.
Continuation of https://github.com/vercel/next.js/pull/45484
Before
![ima... | [
{
"path": "packages/next/src/build/webpack/plugins/wellknown-errors-plugin/getModuleTrace.ts",
"patch": "@@ -1,18 +1,59 @@\n import type { webpack } from 'next/dist/compiled/webpack/webpack'\n+import loaderUtils from 'next/dist/compiled/loader-utils3'\n import { relative } from 'path'\n \n-export function f... | 2023-03-09T20:27:57 |
electron/electron | b08af8947384f101ee8587bbae166d57ab439961 | b9cf0f21266f6c11213b0a3b7b07e47edd46594b | Style fix for #2328 | [
{
"path": "atom/browser/ui/win/notify_icon.cc",
"patch": "@@ -28,20 +28,18 @@ NotifyIcon::NotifyIcon(NotifyIconHost* host,\n icon_id_(id),\n window_(window),\n message_id_(message),\n- menu_model_(NULL) {\n-\n+ menu_model_(NULL),\n+ has_tray_app_id_hash_(false) {\n // NB: ... | 2015-07-29T03:22:12 |
huggingface/transformers | 34a1fc6426fa86efd6eea3e3da5acdba32c28085 | 060b86e21d0460fbd2b6e642d0fbc8f19f679039 | Fix QuantoQuantizedCache import issues (#40109)
* fix quantoquantized | [
{
"path": "src/transformers/cache_utils.py",
"patch": "@@ -16,9 +16,6 @@\n )\n \n \n-if _is_quanto_greater_than_0_2_5 := is_quanto_greater(\"0.2.5\", accept_dev=True):\n- from optimum.quanto import MaxOptimizer, qint2, qint4, quantize_weight\n-\n if is_hqq_available():\n from hqq.core.quantize import... | 2025-08-13T10:22:59 |
nodejs/node | 9542324d9e9124f869c79d9f4a35d0d7bd458c5d | 7b9c9b3dcc310a617d6a20c2a18f9da175b69a8e | 2018-12-26, Version 8.15.0 'Carbon' (LTS)
The 8.14.0 security release introduced some unexpected breakages on
the 8.x release line. This is a special release to fix a regression
in the HTTP binary upgrade response body and add a missing CLI flag
to adjust the max header size of the http parser.
Notable changes:
* cl... | [
{
"path": "CHANGELOG.md",
"patch": "@@ -57,7 +57,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.14.1\">8.14.1</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V8.md#8.15.0\">8.15.0</... | 2018-12-21T23:37:55 |
golang/go | 2fad7dbb893737a01c7ab4f382720a2b0440b736 | c2de759581aef5d14fd07b843caf76db3c8a115b | debug/gosym: add hook to disable recovers
debug/gosym assumes throughout that bogus input means a malformed file.
That's generally true, but not when you're changing the package.
In that case, the panic usually indicates a newly introduced bug,
and seeing the panic is really useful.
Add a manually-enabled way to make... | [
{
"path": "src/debug/gosym/pclntab.go",
"patch": "@@ -193,10 +193,12 @@ func (t *LineTable) parsePclnTab() {\n \t// Error paths through this code will default the version to 1.1.\n \tt.version = ver11\n \n-\tdefer func() {\n-\t\t// If we panic parsing, assume it's a Go 1.1 pclntab.\n-\t\trecover()\n-\t}()\n... | 2021-09-28T20:13:49 |
electron/electron | b10560a5b09cf6558d884f64b8d9fd218d4d9913 | 4de4ef1ccca514b7b5315dbb52c427dcf66641d4 | Fix typo in auto-updater.md | [
{
"path": "docs/api/auto-updater.md",
"patch": "@@ -107,7 +107,7 @@ Emitted when there is an error while updating.\n \n ## Event: checking-for-update\n \n-Emitted when checking for an update has started.\n+Emitted when checking if an update has started.\n \n ## Event: update-available\n ",
"additions": ... | 2015-07-28T15:51:41 |
vercel/next.js | 09d21d6e998cfd122a6e90e63f2e25a179fab80b | 1e7f4a58fec9a60337d736d4befad0b1274818d1 | Move error overlay recovery tests to new file (#46965)
Move error overlay recovery tests in `ReactRefreshLogBox.test.ts` to a
new file. This is already done for the app router tests, but this does
it for the old router as well. Makes `ReactRefreshLogBox.test.ts` faster
to run. | [
{
"path": "test/development/acceptance/ReactRefreshLogBox.test.ts",
"patch": "@@ -2,7 +2,7 @@\n import { sandbox } from './helpers'\n import { createNext } from 'e2e-utils'\n import { NextInstance } from 'test/lib/next-modes/base'\n-import { check, getSnapshotTestDescribe } from 'next-test-utils'\n+import {... | 2023-03-09T20:15:30 |
nodejs/node | 7b9c9b3dcc310a617d6a20c2a18f9da175b69a8e | ab76eac3016db9d84cea045e9ab1be89ed35cb60 | 2018-12-26, Version 6.16.0 'Boron' (LTS)
The 6.15.0 security release introduced some unexpected breakages on
the 6.x release line. This is a special release to fix a regression
in the HTTP binary upgrade response body and add a missing CLI flag
to adjust the max header size of the http parser.
Notable changes:
* cli... | [
{
"path": "CHANGELOG.md",
"patch": "@@ -89,7 +89,8 @@ release.\n <a href=\"doc/changelogs/CHANGELOG_V8.md#8.0.0\">8.0.0</a><br/>\n </td>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V6.md#6.15.1\">6.15.1</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V6.md#6.16.0\">6.16.0</a></b... | 2018-12-21T23:43:08 |
golang/go | c2de759581aef5d14fd07b843caf76db3c8a115b | aeb4fbabc0aaa5293dd34821c450855e9ff82230 | cmd/compile: make sure shapes have proper indexes for sub-instantiation
The computation for determining the shapes to use at the top of
getInstantation was not always creating shapes with the proper indexes.
If an instantiation is being called from another instantiated function,
we cannot just copy the shape types unc... | [
{
"path": "src/cmd/compile/internal/noder/stencil.go",
"patch": "@@ -610,21 +610,16 @@ func (g *irgen) getInstantiation(nameNode *ir.Name, shapes []*types.Type, isMeth\n \t// number of instantiations we have to generate. You can actually have a mix\n \t// of shape and non-shape arguments, because of inferre... | 2021-09-29T04:14:17 |
huggingface/transformers | 060b86e21d0460fbd2b6e642d0fbc8f19f679039 | 849c3778c620004e8d117cfb66ceb332350a65c4 | changed xLSTMRMSNorm to RMSNorm (#40113)
* changed xLSTMRMS.. to RMS...
* fix linter error
---------
Co-authored-by: Nikita <nikita@Nikitas-MacBook-Pro.local> | [
{
"path": "src/transformers/models/xlstm/modeling_xlstm.py",
"patch": "@@ -29,9 +29,9 @@\n \n \n if is_xlstm_available():\n+ from xlstm.xlstm_large.model import RMSNorm as xLSTMRMSNorm\n from xlstm.xlstm_large.model import mLSTMBlock as xLSTMBlock\n from xlstm.xlstm_large.model import mLSTMStateT... | 2025-08-13T09:10:42 |
electron/electron | 617bff8ec85b4717316d0fe8e258868e4f9f6e05 | 7ceca9f4269929b5a1c5e98e82a42b72e08f919e | Fix a missing the specified mime type check in <input> accept attribute. | [
{
"path": "atom/browser/web_dialog_helper.cc",
"patch": "@@ -43,14 +43,15 @@ file_dialog::Filters GetFileTypesFromAcceptType(\n // Skip the first character.\n extensions.push_back(extension.substr(1));\n } else {\n- if (ascii_type == \"image/*\" || ascii_type == \"audio/*\" ||\n- ... | 2015-07-28T02:30:36 |
nodejs/node | 09519953ea1285e4d756e2dcdadaa77d6bc03245 | b4145b89593a24006c8b4223b7aa40c18b2b588b | src: fix compiler warnings in node_crypto.cc
During the time between https://github.com/nodejs/node/pull/24234
being opened and it landing, a V8 update occurred that deprecated
several APIs. This commit fixes the following compiler warnings:
../src/node_crypto.cc:3342:11:
warning: 'Set' is deprecated: Use maybe ver... | [
{
"path": "src/node_crypto.cc",
"patch": "@@ -3339,10 +3339,12 @@ Local<Function> KeyObject::Initialize(Environment* env, Local<Object> target) {\n GetAsymmetricKeyType);\n env->SetProtoMethod(t, \"export\", Export);\n \n- target->Set(FIXED_ONE_BYTE_STRING(env->isolate()... | 2018-12-24T16:03:11 |
huggingface/transformers | 849c3778c620004e8d117cfb66ceb332350a65c4 | 85d536a93be3f979638ecd5b39e600ab8724c238 | [bugfix] Fix tensor device in Idefics2, Idefics3, and SmolVLM (#39975)
* [bugfix] ensure correct tensor device in Idefics2, Idefics3, and SmolVLM models
* to cuda | [
{
"path": "src/transformers/models/idefics2/modeling_idefics2.py",
"patch": "@@ -141,8 +141,12 @@ def forward(self, pixel_values: torch.FloatTensor, patch_attention_mask: torch.B\n embeddings = patch_embeds.flatten(2).transpose(1, 2)\n \n max_nb_patches_h, max_nb_patches_w = max_im_h // self... | 2025-08-13T07:58:50 |
golang/go | 3f224bbf9a52cf2e19cdd2ada4a6d7372cc70141 | e180e2c27c3c3f06a4df6352386efedc15a1e38c | go/types: avoid infinite recursion in unification
This is an almost clean port of CL 352832 from types2 to go/types:
The nest files and unify.go where copied verbatim; unify.go was
adjusted with correct package name, a slightly different comment
was restored to what it was. The test files got adjustments for
error pos... | [
{
"path": "src/go/types/infer.go",
"patch": "@@ -128,7 +128,7 @@ func (check *Checker) infer(posn positioner, tparams []*TypeParam, targs []Type,\n \t\tif inferred != tpar {\n \t\t\tcheck.errorf(arg, _Todo, \"%s %s of %s does not match inferred type %s for %s\", kind, targ, arg.expr, inferred, tpar)\n \t\t}... | 2021-09-29T03:42:45 |
electron/electron | a44f14d76ef8d0444f4375f3773fecd36ad1c20c | 74b45221950b03bbdcee1dbe84a604db33d415f6 | Fix code formatting issues | [
{
"path": "atom/browser/ui/event_util.h",
"patch": "@@ -1,3 +1,7 @@\n+// Copyright (c) 2015 GitHub, Inc.\n+// Use of this source code is governed by the MIT license that can be\n+// found in the LICENSE file.\n+\n #ifndef ATOM_BROWSER_UI_EVENT_UTIL_H_\n #define ATOM_BROWSER_UI_EVENT_UTIL_H_\n \n@@ -15,6 +19... | 2015-07-27T10:33:15 |
huggingface/transformers | 85d536a93be3f979638ecd5b39e600ab8724c238 | 31ab7168ff7e07f61c90134e5238c4d97606aa70 | 🌐 [i18n-KO] Translated `tiny_agents.md` to Korean (#39913)
* docs: ko: tiny_agents.md
* feat: nmt draft
* fix: manual edits
* fix: manual edits | [
{
"path": "docs/source/ko/_toctree.yml",
"patch": "@@ -91,6 +91,10 @@\n - local: in_translation\n title: (번역중) Tools and RAG\n title: 모델을 사용해 대화하기\n+ - sections:\n+ - local: tiny_agents\n+ title: Tiny-Agents CLI 및 MCP 도구\n+ title: 서빙(Serving)\n - sections:\n - local: in_trans... | 2025-08-13T05:54:16 |
golang/go | 435718edd9e9ba60d0c5bca45cc9d57c6b5527bc | b8a601756abdb6f1503e41d86c122c4e7c7409ff | cmd/compile/internal/types2: avoid infinite recursion in unification
If the type T inferred for a type parameter P is P itself (or a derived
type containing P), a subsequent unification step leads to infinite
recursion: at each encounter of P with the already inferred type T
(which is or contains P), P stands for that... | [
{
"path": "src/cmd/compile/internal/types2/testdata/fixedbugs/issue48619.go2",
"patch": "@@ -0,0 +1,22 @@\n+// Copyright 2021 The Go Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style\n+// license that can be found in the LICENSE file.\n+\n+package p\n+\n+func f[P any](a, ... | 2021-09-28T20:50:15 |
electron/electron | f2b2c58758464d1aece8340e694f7416a425b2de | b6f6bf9778e1e49cb2e5192e7d6ddbd427b8ddf4 | :memo: :art: Grammar fix | [
{
"path": "docs/tutorial/quick-start.md",
"patch": "@@ -176,4 +176,4 @@ it from [here](https://github.com/atom/electron/releases).\n ### Run as a distribution\n After you're done writing your app, you can create a distribution by\n following the [Application distribution](./application-distribution.md) guid... | 2015-07-27T00:31:01 |
rust-lang/rust | b1a1df2efe0a2d3af7d71566d09d4724a89e039a | a261d167ac33c8fa9fc5fd46f70f46679fefb5b9 | Fix consider borrowing for else-if | [
{
"path": "compiler/rustc_hir_typeck/src/fn_ctxt/suggestions.rs",
"patch": "@@ -2713,6 +2713,31 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {\n ));\n }\n \n+ // Don't try to suggest ref/deref on an `if` expression, because:\n+ // - The... | 2025-05-31T16:34:26 |
vercel/next.js | 27f66174a2c24ea7b81126b5138260f252f64ca9 | 9db94fbdfc3bbab814291b0d7184331278adad71 | fix next.js source map resolving (vercel/turbo#4062)
### Description
Before the error overlay didn't show the source mapped file.
Now it does.
* The wrapped ContentSources need to wrap a Rewrite result.
* Instead of returning a ContentSourceResult from a different
ContentSource, one need to use Rewrite to get the da... | [
{
"path": "crates/turbopack-dev-server/src/lib.rs",
"patch": "@@ -1,6 +1,7 @@\n #![feature(min_specialization)]\n #![feature(trait_alias)]\n #![feature(array_chunks)]\n+#![feature(iter_intersperse)]\n \n pub mod html;\n mod http;",
"additions": 1,
"deletions": 0,
"language": "Rust"
},
{
... | 2023-03-09T19:00:46 |
huggingface/transformers | 0ce24f5a885e694e4dfd49cb74336099bab48f40 | 83dbebc429abd86ff4d4a2601fa4575e3145c753 | Fix Causality Handling in Flash Attention to Support Bidirectional Attention (#39707)
Fix the is_causal logic to enable bidirectional attention
Co-authored-by: Arthur <48595927+ArthurZucker@users.noreply.github.com> | [
{
"path": "src/transformers/integrations/flash_attention.py",
"patch": "@@ -58,16 +58,18 @@ def flash_attention_forward(\n else:\n target_dtype = next(layer for layer in module.modules() if isinstance(layer, torch.nn.Linear)).weight.dtype\n \n- # FA2 always relies on the value set in ... | 2025-08-12T16:16:28 |
nodejs/node | d93f93aa99aead77fb52d16a0d8f7d9af047a69a | 79aab5dd7cfe30f807b5d197c95aea9dd59ecb40 | dns: fix TTL value for AAAA replies to `resolveAny()`
We were previously reading from the wrong offset, namely
the one into the final results array, not the one for the
AAAA results itself, which could have lead to reading
uninitialized or out-of-bounds data.
Also, adjust the test accordingly; TTL values are not
modi... | [
{
"path": "src/cares_wrap.cc",
"patch": "@@ -1265,14 +1265,16 @@ class QueryAnyWrap: public QueryWrap {\n }\n \n CHECK_EQ(aaaa_count, naddr6ttls);\n+ CHECK_EQ(ret->Length(), a_count + aaaa_count);\n for (uint32_t i = a_count; i < ret->Length(); i++) {\n Local<Object> obj = Object::New(e... | 2018-12-22T20:18:13 |
golang/go | 1c6e50a15200673eb90c817cb6709be5d06cd3f4 | ff7b04136091f8208352e97c117ca6489ca95a86 | cmd/go: make 'go get' fail with an error when outside a module
There's no go.mod file for 'go get' to update, so it has no effect,
other than checking arguments and filling the module cache. That might
be useul in some cases, but it seems better to fail loudly in case the
user hasn't seen the deprecation warning, for ... | [
{
"path": "src/cmd/go/internal/modget/get.go",
"patch": "@@ -273,6 +273,8 @@ func runGet(ctx context.Context, cmd *base.Command, args []string) {\n \t\tbase.Fatalf(\"go: -insecure flag is no longer supported; use GOINSECURE instead\")\n \t}\n \n+\tmodload.ForceUseModules = true\n+\n \t// Do not allow any up... | 2021-09-24T20:26:35 |
huggingface/transformers | 83dbebc429abd86ff4d4a2601fa4575e3145c753 | 9977cf17392fe5b821dc026ab76d3f5ed16e03f2 | [trainer] ensure special tokens in model configs are aligned with tokenizer at train time (#38441)
* tmp commit
* add test
* make fixup
* reset warns/info in test | [
{
"path": "src/transformers/generation/configuration_utils.py",
"patch": "@@ -792,8 +792,8 @@ def validate(self, strict=False):\n )\n if logging.get_verbosity() >= logging.WARNING:\n warning_message += \" Set `TRANSFORMERS_VERBOSITY=info` for more details.... | 2025-08-12T15:32:07 |
electron/electron | b0e73532de0330c6b67363b249e6ec6074d85f1c | 7ceca9f4269929b5a1c5e98e82a42b72e08f919e | protocol: fix request headers in urlRequestFetchJob | [
{
"path": "atom/browser/net/url_request_fetch_job.cc",
"patch": "@@ -107,10 +107,7 @@ URLRequestFetchJob::URLRequestFetchJob(\n }\n \n // Use |request|'s headers.\n- net::HttpRequestHeaders headers;\n- if (request->GetFullRequestHeaders(&headers)) {\n- fetcher_->SetExtraRequestHeaders(headers.ToStr... | 2015-07-26T21:21:41 |
vercel/next.js | 511b244f4a5182931b7a963ced031eb883d76a46 | 42fa76a3f7c667f7d0cb266448fa121bb1661424 | improve introspection (vercel/turbo#4135)
### Description
Add more details to introspection and make it more robust to errors
during introspection
### Testing Instructions
go to http://localhost:3000/__turbopack__/ | [
{
"path": "packages/next-swc/crates/next-core/src/next_client_chunks/with_chunks.rs",
"patch": "@@ -222,7 +222,7 @@ impl AssetReference for WithChunksAssetReference {\n #[turbo_tasks::value_impl]\n impl ChunkableAssetReference for WithChunksAssetReference {\n #[turbo_tasks::function]\n- fn chunking_t... | 2023-03-09T16:08:03 |
nodejs/node | 79aab5dd7cfe30f807b5d197c95aea9dd59ecb40 | 86e2ec41af072248b88629df3dccbd4d557fab20 | net: use decodeStrings public API for writable stream
Instead of using an undocumented underscore-prefixed property to
configure the writable stream instance to not encode strings as buffers,
use the public API which is an options property passed to the
constructor.
Refs: https://github.com/nodejs/node/issues/445
PR... | [
{
"path": "lib/net.js",
"patch": "@@ -255,6 +255,8 @@ function Socket(options) {\n options.allowHalfOpen = true;\n // For backwards compat do not emit close on destroy.\n options.emitClose = false;\n+ // Handle strings directly.\n+ options.decodeStrings = false;\n stream.Duplex.call(this, options)... | 2018-12-24T05:59:19 |
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.