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 | d0dd26a88c019d54f22463daae81e785f5867565 | 93453233bd00cc641d2f959f1faf236e0094c2bf | html/template, text/template: implement break and continue for range loops
Break and continue for range loops was accepted as a proposal in June 2017.
It was implemented in CL 66410 (Oct 2017)
but then rolled back in CL 92155 (Feb 2018)
because html/template changes had not been implemented.
This CL reimplements brea... | [
{
"path": "src/html/template/context.go",
"patch": "@@ -6,6 +6,7 @@ package template\n \n import (\n \t\"fmt\"\n+\t\"text/template/parse\"\n )\n \n // context describes the state an HTML parser must be in when it reaches the\n@@ -22,6 +23,7 @@ type context struct {\n \tjsCtx jsCtx\n \tattr attr\n \tele... | 2021-05-20T16:46:33 |
electron/electron | 124919611832c26645f5d436776971ab7c346805 | 967c273ddb8d0694109b930b8a86f6ef1576da6c | Fix docs typo
It was breaking the docs site build because it's a code block type | [
{
"path": "docs/api/browser-window-ko.md",
"patch": "@@ -1059,7 +1059,7 @@ app.on('ready', function() {\n \n The `cookies` gives you ability to query and modify cookies, an example is:\n \n-```javascipt\n+```javascript\n var BrowserWindow = require('browser-window');\n \n var win = new BrowserWindow({ width... | 2015-07-12T02:46:26 |
huggingface/transformers | b347e93567a1770fe1ae588ac2fd51898028e6ed | 7188e2e28c6d663284634732564143b820a03f8b | [typing] Fix return typehint for decoder and inv_freq annotation (#39610)
* fix return typehint for decoder and annotate inv_freq
* fix modular
* Fix consistency
* Move annotation on class level
* missing annotations
* add comment | [
{
"path": "src/transformers/models/arcee/modeling_arcee.py",
"patch": "@@ -82,6 +82,8 @@ def extra_repr(self):\n \n \n class ArceeRotaryEmbedding(nn.Module):\n+ inv_freq: torch.Tensor # fix linting for `register_buffer`\n+\n def __init__(self, config: ArceeConfig, device=None):\n super().__i... | 2025-08-07T13:10:22 |
nodejs/node | afeb56adf0c106cc4535d0ee20da078478be7ca2 | c992639fbdc61fa78dc407ac09f633b102c55925 | doc: fix author-ready conflict
The onboarding docs still contained an outdated description of the
`author-ready` label. Now it references the main description to
prevent any future conflicts.
PR-URL: https://github.com/nodejs/node/pull/25015
Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
Reviewed-By: Luigi Pinc... | [
{
"path": "doc/onboarding.md",
"patch": "@@ -96,11 +96,7 @@ onboarding session.\n `semver-major` label\n * When adding a `semver-*` label, add a comment explaining why you're adding\n it. Do it right away so you don't forget!\n- * Please add the `author-ready` label for PRs where:\n- * t... | 2018-12-13T14:36:42 |
vercel/next.js | f1fba5b456b0edb850b04ebe00775d30b828a35f | a5a13fe930060058cea406ebbbb4454a480c95e5 | chore: improve PR labeling, fix, sort, add new team member (#46675)
## What?
This PR has its main goal to improve the experience of opening/reviewing
a PR.
It improves the PR template, as well as extends PR auto-labeling.
## Why?
There are 2 parts to the PR template:
- Individual contributors: The cu... | [
{
"path": ".github/labeler.json",
"patch": "@@ -1,53 +1,65 @@\n {\n \"labels\": {\n- \"area: examples\": [\"examples/**\"],\n- \"area: documentation\": [\"docs/**\", \"errors/**\"],\n \"area: create-next-app\": [\"packages/create-next-app/**\"],\n- \"type: next\": [\n- \"packages/next/**... | 2023-03-07T09:54:46 |
golang/go | 93453233bd00cc641d2f959f1faf236e0094c2bf | ee69b09424f611d02d4b0f0da3eff875e075438f | cmd/compile: fix unsafe.Add with small-size offsets operands
Like other builtin functions, unsafe.Add's len operand is allowed to
be variable sized. However, unlike other builtins, it doesn't get
lowered to a runtime function call, so we never end up coercing it to
a specific type. As a result, we could end up constru... | [
{
"path": "src/cmd/compile/internal/ssagen/ssa.go",
"patch": "@@ -3206,6 +3206,11 @@ func (s *state) exprCheckPtr(n ir.Node, checkPtrOK bool) *ssa.Value {\n \t\tn := n.(*ir.BinaryExpr)\n \t\tptr := s.expr(n.X)\n \t\tlen := s.expr(n.Y)\n+\n+\t\t// Force len to uintptr to prevent misuse of garbage bits in the... | 2021-09-22T22:56:58 |
electron/electron | d6ae874038400a0c9367f8a6c14d62e5a951c907 | 967c273ddb8d0694109b930b8a86f6ef1576da6c | emit error object on process.on('uncaughtException') in renderer
Chromium added the actual `error` object to the 5th parameter in `window.onerror`. This should be emitted as opposed to the `errorMsg` string. Worse yet, since `errorMsg` wasn't an instance of `Error`, any code that assumes this in any `process.on('uncau... | [
{
"path": "atom/renderer/lib/init.coffee",
"patch": "@@ -77,7 +77,7 @@ if nodeIntegration in ['true', 'all', 'except-iframe', 'manual-enable-iframe']\n global.__dirname = __dirname\n \n # Redirect window.onerror to uncaughtException.\n- window.onerror = (error) ->\n+ window.onerror = (message, filen... | 2015-07-10T19:38:03 |
huggingface/transformers | 2b19a06692daffea72f1fe619ce5b4c9d532f406 | 555cbf59178134d1b713a7022129aaddfe6e70cf | Fix gemma3n feature extractor's incorrect squeeze (#39919)
* fix gemma3n squeeze
Signed-off-by: Isotr0py <2037008807@qq.com>
* add regression test
Signed-off-by: Isotr0py <mozf@mail2.sysu.edu.cn>
---------
Signed-off-by: Isotr0py <2037008807@qq.com>
Signed-off-by: Isotr0py <mozf@mail2.sysu.edu.cn> | [
{
"path": "src/transformers/models/gemma3n/feature_extraction_gemma3n.py",
"patch": "@@ -261,7 +261,7 @@ def _extract_spectrogram(self, waveform: np.ndarray, attention_mask: np.ndarray)\n if self.per_bin_stddev is not None:\n log_mel_spec = log_mel_spec / self.per_bin_stddev # Broadcast... | 2025-08-07T10:34:28 |
nodejs/node | c61327d37673ab2ea454d14c36329b113aaca32a | 549761eb2aac12a2697bd75fc755f46d0b2fd4fb | worker: drain messages from internal message port
When the worker thread exits, drain the messages also from the internal
message port so that the call to 'kDispose' will occur only after all
the messages from the worker were processed in the parent, so stdio
messages from the worker will be successfully pushed to the... | [
{
"path": "lib/internal/worker.js",
"patch": "@@ -317,6 +317,7 @@ class Worker extends EventEmitter {\n [kOnExit](code) {\n debug(`[${threadId}] hears end event for Worker ${this.threadId}`);\n MessagePortPrototype.drain.call(this[kPublicPort]);\n+ MessagePortPrototype.drain.call(this[kPort]);\... | 2018-12-10T05:29:50 |
vercel/next.js | e0e627cf2ac26f66231927c9b3d5bc53de67d6d6 | 26768571ad22532d145494d46c00aa12910ef30c | Ensure chained middleware rewrites work properly (#46866)
Follow-up to https://github.com/vercel/next.js/pull/45772 this ensures
the rewrite header can be correctly set when a chained middleware
rewrite is occurring.
x-ref: [slack
thread](https://vercel.slack.com/archives/C01RGMANU9Y/p1678074803731489)
## Bug... | [
{
"path": "packages/next/src/server/web/adapter.ts",
"patch": "@@ -152,11 +152,22 @@ export async function adapter(params: {\n * with an internal header so the client knows which component to load\n * from the data request.\n */\n- if (isDataReq) {\n- response.headers.set(\n- '... | 2023-03-07T07:21:42 |
huggingface/transformers | 555cbf59178134d1b713a7022129aaddfe6e70cf | 597ed1a11d9b4f8c17bf7ccea8ea2cdfab14f0b5 | [Idefics] fix device mismatch (#39981)
fix | [
{
"path": "src/transformers/models/idefics2/modeling_idefics2.py",
"patch": "@@ -147,8 +147,8 @@ def forward(self, pixel_values: torch.FloatTensor, patch_attention_mask: torch.B\n nb_patches_h = p_attn_mask[:, 0].sum()\n nb_patches_w = p_attn_mask[0].sum()\n \n- h_indices ... | 2025-08-07T09:12:04 |
electron/electron | 6383eb876ed451d84ada751c0f0ff37440d49cd0 | 260ec96edd9fad146ddbbf3be4abcf483d59c501 | Fix failed specs caused by window.open url parsing | [
{
"path": "spec/api-browser-window-spec.coffee",
"patch": "@@ -192,7 +192,7 @@ describe 'browser-window module', ->\n it 'emits when window.open is called', (done) ->\n w.webContents.once 'new-window', (e, url, frameName) ->\n e.preventDefault()\n- assert.equal url, 'http://host'\n+... | 2015-07-10T04:14:25 |
nodejs/node | 549761eb2aac12a2697bd75fc755f46d0b2fd4fb | 05002373176e8758c8c604f06659e171de4ca902 | src: include node_internals.h in node_metadata.cc
Currently, if configured --without-ssl the following compiler error will
be generated:
../src/node_metadata.cc:29:12:
error: use of undeclared identifier 'llhttp_version'
llhttp = llhttp_version;
^
../src/node_metadata.cc:30:17:
error: use of undeclared id... | [
{
"path": "src/node_metadata.cc",
"patch": "@@ -2,6 +2,7 @@\n #include \"ares.h\"\n #include \"nghttp2/nghttp2ver.h\"\n #include \"node.h\"\n+#include \"node_internals.h\"\n #include \"util.h\"\n #include \"uv.h\"\n #include \"v8.h\"",
"additions": 1,
"deletions": 0,
"language": "Unknown"
}
] | 2018-12-10T07:14:47 |
vercel/next.js | 8f5ffed72e665568a11ab3cc164e0e65aa776419 | 0f621cb1332dcd44d14be87f814b0b4a1d860889 | Update fetch cache handling with POST requests (#46856)
This updates to no longer skip caching POST or authed requests with the
fetch cache and instead we bail when `cookies()` or `headers()` is used
prior which is a better heuristic to signal user specific data would be
related to the fetch request.
x-ref: [sla... | [
{
"path": "packages/next/src/server/app-render.tsx",
"patch": "@@ -1205,7 +1205,14 @@ export async function renderToHTMLOrFlight(\n }\n \n if (typeof layoutOrPageMod?.revalidate === 'number') {\n- defaultRevalidate = layoutOrPageMod.revalidate\n+ defaultRevalidate = layoutOrPageMod... | 2023-03-07T05:30:29 |
electron/electron | 260ec96edd9fad146ddbbf3be4abcf483d59c501 | 4379d24e9df11ced6849488b7492c4353ce30aa5 | Resolve relative urls in window.open, fix #2166 | [
{
"path": "atom/renderer/lib/override.coffee",
"patch": "@@ -2,6 +2,12 @@ process = global.process\n ipc = require 'ipc'\n remote = require 'remote'\n \n+# Helper function to resolve relative url.\n+a = document.createElement 'a'\n+resolveUrl = (url) ->\n+ a.href = url\n+ a.href\n+\n # Window object retur... | 2015-07-10T03:36:25 |
huggingface/transformers | 597ed1a11d9b4f8c17bf7ccea8ea2cdfab14f0b5 | 6121e9e46c4fc4e5c91d9f927aef5490691850cf | Various test fixes for AMD (#39978)
* Add amd expectation in internvl
* Add amd expectation to llama
* Added bnb decorator for a llava test that requires bnb
* Added amd expectation for mistral3
* Style | [
{
"path": "tests/models/internvl/test_modeling_internvl.py",
"patch": "@@ -652,10 +652,11 @@ def test_llama_small_model_integration_forward(self):\n \n expected_logits_all = Expectations(\n {\n- (\"xpu\", 3): torch.tensor([-9.8750, -0.5703, 1.4297, -10.3125, -10.3125], dty... | 2025-08-07T08:57:04 |
golang/go | ee69b09424f611d02d4b0f0da3eff875e075438f | 1319b1476ea6f55c780936d133a005054fa81234 | cmd/compile: break out constants for local and global dictionary prefixes
Create constant LocalDictName for the pname/refix for dictionary
parameters or local variables, and constant GlobalDictPrefix for the
prefix for names of global dictionaries. I wanted to make sure these
constants were set up as we add more refer... | [
{
"path": "src/cmd/compile/internal/noder/stencil.go",
"patch": "@@ -401,10 +401,7 @@ func (g *irgen) buildClosure(outer *ir.Func, x ir.Node) ir.Node {\n \tvar dictVar *ir.Name\n \tvar dictAssign *ir.AssignStmt\n \tif outer != nil {\n-\t\t// Note: for now this is a compile-time constant, so we don't really ... | 2021-09-22T15:52:41 |
nodejs/node | a1b283c2cacccb2e6d6f3a2382d986cd4ead11b4 | 9a2654601e58cb738463ea4a195400dd0cdd37ad | src: create env->inspector_console_api_object earlier
Previously we create env->inspector_console_api_object() when
`process.binding('inspector')` is called, which may be too late
if the inspector console is used before the first call to
`process.binding('inspector')` - that is possible when
using `--inspect-brk-node`... | [
{
"path": "src/env.cc",
"patch": "@@ -341,6 +341,13 @@ void Environment::Start(const std::vector<std::string>& args,\n static uv_once_t init_once = UV_ONCE_INIT;\n uv_once(&init_once, InitThreadLocalOnce);\n uv_key_set(&thread_local_env, this);\n+\n+#if HAVE_INSPECTOR\n+ // This needs to be set befor... | 2018-12-08T14:31:57 |
vercel/next.js | d59aa9655e7a46056a4e98c3a79d40a118f6157d | 70d6438217b2e591af793d3910a4ff9a550f5128 | Port error overlay hydration error to pages directory (#46677)
Co-authored-by: JJ Kasper <jj@jjsweb.site> | [
{
"path": "packages/next/src/client/components/react-dev-overlay/internal/helpers/parse-component-stack.ts",
"patch": "@@ -18,7 +18,7 @@ export function parseComponentStack(\n const webpackFile = match[3]\n \n // Stop parsing the component stack if we reach a Next.js component\n- if (webpac... | 2023-03-07T03:40:25 |
huggingface/transformers | 6121e9e46c4fc4e5c91d9f927aef5490691850cf | cdeaad96b7bb37bd5295898e05968eb11ae5e20f | Support input_embeds in torch exportable decoders (#39836)
* Support input_embeds in torch exportable decoders
* Hybrid cache update
* Manually change some callsites
* AI changes the rest of the call sites
* Make either input_ids/inputs_embeds mandatory
* Clean up
* Ruff check --fix
* Fix test
* pr review
* R... | [
{
"path": "src/transformers/integrations/executorch.py",
"patch": "@@ -198,59 +198,65 @@ class TorchExportableModuleForDecoderOnlyLM(torch.nn.Module):\n def __init__(\n self,\n model: PreTrainedModel,\n- max_batch_size: int = 1,\n- max_cache_len: int = 4096,\n ):\n ... | 2025-08-07T08:51:31 |
electron/electron | 4379d24e9df11ced6849488b7492c4353ce30aa5 | fedf764b7beeeb70b9ff0b7519e61c6503a3bfa2 | Event "close" => "closed", fix #2149 | [
{
"path": "atom/browser/api/atom_api_web_contents.cc",
"patch": "@@ -250,7 +250,7 @@ void WebContents::MoveContents(content::WebContents* source,\n }\n \n void WebContents::CloseContents(content::WebContents* source) {\n- Emit(\"closed\");\n+ Emit(\"close\");\n if (type_ == BROWSER_WINDOW)\n owner_w... | 2015-07-10T02:38:15 |
golang/go | 1319b1476ea6f55c780936d133a005054fa81234 | 333f3de2a10f22269b567d82144ab3528a3e6c07 | cmd/go/internal/test: pass only analysis flags to vet
In go test vet=x, x should be off, all, or one of the analyses supported
by vet. All other flags should not be passed to vet. This CL maintains a
list of supported vet analyzers by running go tool vet -flags and
parsing the flag info to figure out the names of the ... | [
{
"path": "src/cmd/go/internal/test/flagdefs.go",
"patch": "@@ -36,3 +36,37 @@ var passFlagToTest = map[string]bool{\n \t\"trace\": true,\n \t\"v\": true,\n }\n+\n+var passAnalyzersToVet = map[string]bool{\n+\t\"asmdecl\": true,\n+\t\"assign\": true,\n+\t... | 2021-08-11T20:47:07 |
nodejs/node | 9a2654601e58cb738463ea4a195400dd0cdd37ad | a0bdeb553068d844dbe6005f0080620f1d0a673f | zlib: throw TypeError if callback is missing
Get a proper stack trace when no callback is passed.
PR-URL: https://github.com/nodejs/node/pull/24929
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-B... | [
{
"path": "lib/zlib.js",
"patch": "@@ -73,6 +73,8 @@ for (var ck = 0; ck < ckeys.length; ck++) {\n }\n \n function zlibBuffer(engine, buffer, callback) {\n+ if (typeof callback !== 'function')\n+ throw new ERR_INVALID_ARG_TYPE('callback', 'function', callback);\n // Streams do not support non-Buffer A... | 2018-12-09T23:11:29 |
vercel/next.js | 70d6438217b2e591af793d3910a4ff9a550f5128 | 533748d3834cfaf6f7807d6e5f0bf96d99c247c1 | Improve the readability of full page refresh error in dev mode (#46634)
Co-authored-by: JJ Kasper <jj@jjsweb.site> | [
{
"path": "packages/next/src/server/dev/hot-reloader.ts",
"patch": "@@ -389,7 +389,24 @@ export default class HotReloader {\n stackTrace\n )?.[1]\n if (file) {\n- fileMessage = ` when ${file} changed`\n+ // `file` is filepat... | 2023-03-07T02:20:34 |
huggingface/transformers | cdeaad96b7bb37bd5295898e05968eb11ae5e20f | 2593932f10684d7522183bab30b179a80d9a7d16 | [superglue] Fixed the way batch mask was applied to the scores before match assignment computation (#39968)
fix: mask filling to score was wrong | [
{
"path": "src/transformers/models/superglue/modeling_superglue.py",
"patch": "@@ -676,8 +676,10 @@ def _match_image_pair(\n \n if mask is not None:\n mask = mask.reshape(batch_size, 2, num_keypoints)\n- mask0 = mask[:, 0].unsqueeze(-1).expand(-1, -1, num_keypoints)\n- ... | 2025-08-07T08:49:39 |
electron/electron | 39c6e2d2e52503b22c81d65cbced8f3fb9a3070f | 35aaad68d78b35c0183ff5d4fbdb7cc1b2c6fb75 | Linter fixes | [
{
"path": "atom/browser/native_window.cc",
"patch": "@@ -8,6 +8,10 @@\n #include <utility>\n #include <vector>\n \n+#if defined(OS_WIN)\n+#include <shlobj.h>\n+#endif\n+\n #include \"atom/browser/atom_browser_context.h\"\n #include \"atom/browser/atom_browser_main_parts.h\"\n #include \"atom/browser/browser... | 2015-07-10T00:00:19 |
golang/go | 1537f14db558ced001ba6e5d75dadcca173b0189 | 41bb7446dcc5179047512aa10c5e6d01eb870b54 | io: fix spelling in documentation
Change-Id: Ie23a9f1300a803d9c713e82b0d892dd90333ca7b
Reviewed-on: https://go-review.googlesource.com/c/go/+/351371
Reviewed-by: Robert Griesemer <gri@golang.org>
Reviewed-by: Ian Lance Taylor <iant@golang.org> | [
{
"path": "src/io/io.go",
"patch": "@@ -47,7 +47,7 @@ var EOF = errors.New(\"EOF\")\n // middle of reading a fixed-size block or data structure.\n var ErrUnexpectedEOF = errors.New(\"unexpected EOF\")\n \n-// ErrNoProgress is returned by some clients of an Reader when\n+// ErrNoProgress is returned by some ... | 2021-09-22T07:54:35 |
nodejs/node | 2e4a163012d9a960f014935272cd279e5e72a93b | e5878eaf5e6b891907d2cd668637abb4fd389a5e | tls: support "BEGIN TRUSTED CERTIFICATE" for ca:
Support the same PEM certificate formats for the ca: option to
tls.createSecureContext() that are supported by openssl when loading a
CAfile.
Fixes: https://github.com/nodejs/node/issues/24761
PR-URL: https://github.com/nodejs/node/pull/24733
Reviewed-By: Anna Henning... | [
{
"path": "doc/api/tls.md",
"patch": "@@ -1054,6 +1054,9 @@ argument.\n <!-- YAML\n added: v0.11.13\n changes:\n+ - version: REPLACEME\n+ pr-url: REPLACEME\n+ description: The `ca:` option now supports `BEGIN TRUSTED CERTIFICATE`.\n - version: v11.4.0\n pr-url: https://github.com/nodejs/node/pu... | 2018-11-30T19:20:55 |
huggingface/transformers | 2593932f10684d7522183bab30b179a80d9a7d16 | 513f76853b00bb30ee6d152d689c0e7f5359e55f | Gemma3 fixes (#39960)
* Fix multiple devices issue
* Added expectations for rocm 9.4
* Ruff | [
{
"path": "src/transformers/models/gemma3/modeling_gemma3.py",
"patch": "@@ -922,7 +922,9 @@ def forward(\n is_image = (token_type_ids == 1).to(cache_position.device)\n new_image_start = is_image & ~nn.functional.pad(is_image, (1, 0), value=0)[:, :-1]\n image_... | 2025-08-07T07:57:21 |
electron/electron | fc9612a5ed7e71dd02433b9a5ee8e16936356fe4 | fb99bfac526e7dbbd085d223787841ad714715e1 | Fix sample code indention | [
{
"path": "docs/api/global-shortcut.md",
"patch": "@@ -10,25 +10,25 @@ var app = require('app');\n var globalShortcut = require('global-shortcut');\n \n app.on('ready', function() {\n- // Register a 'ctrl+x' shortcut listener.\n- var ret = globalShortcut.register('ctrl+x', function() {\n- conso... | 2015-07-09T14:49:16 |
vercel/next.js | 533748d3834cfaf6f7807d6e5f0bf96d99c247c1 | 003b3af7005d89ce562f162557b7f8cb2360ec0f | next/font refactoring and additional unit tests (#46731)
Currently all helper functions are exported from huge utils files. This
moves the helper functions to their own files, this approach aligns
better with the rest of the codebase.
The unit tests are split up and colocated with the function it tests.
Also add... | [
{
"path": "errors/google-fonts-missing-subsets.md",
"patch": "@@ -1,4 +1,4 @@\n-# Missing specified subset for a `@next/font/google` font\n+# Missing specified subset for a `next/font/google` font\n \n #### Why This Error Occurred\n \n@@ -21,7 +21,7 @@ const inter = Inter({ subsets: ['latin'] })\n module.ex... | 2023-03-07T01:16:25 |
golang/go | 41bb7446dcc5179047512aa10c5e6d01eb870b54 | 5b75a9b2c3078ab2ef8398c47be5b30ea02c03d3 | cmd/compile/internal/types2: don't panic if targs don't match tparams when substituting
This is a clean port of CL 351337 from go/types to types2.
Change-Id: I974bf79fcc1ec0016c38e4c0b361d05f7b44e649
Reviewed-on: https://go-review.googlesource.com/c/go/+/351466
Trust: Robert Griesemer <gri@golang.org>
Run-TryBot: Rob... | [
{
"path": "src/cmd/compile/internal/types2/named.go",
"patch": "@@ -330,7 +330,7 @@ func (check *Checker) completeMethod(env *Environment, m *Func) {\n // TODO(rfindley): eliminate this function or give it a better name.\n func safeUnderlying(typ Type) Type {\n \tif t, _ := typ.(*Named); t != nil {\n-\t\tre... | 2021-09-22T20:38:05 |
nodejs/node | 83ec33b9335a7140c1f8b46357303ff7a8122a0d | 2f75eed1aa50ee1ce3d3cdd47bb4108ff5de4679 | stream: fix end-of-stream for HTTP/2
HTTP/2 streams call `.end()` on themselves from their
`.destroy()` method, which might be queued (e.g. due to network
congestion) and not processed before the stream itself is destroyed.
In that case, the `_writableState.ended` property could be set before
the stream emits its `'c... | [
{
"path": "lib/internal/streams/end-of-stream.js",
"patch": "@@ -36,22 +36,24 @@ function eos(stream, opts, callback) {\n \n callback = once(callback);\n \n- const ws = stream._writableState;\n- const rs = stream._readableState;\n let readable = opts.readable || (opts.readable !== false && stream.read... | 2018-12-09T19:05:11 |
huggingface/transformers | 513f76853b00bb30ee6d152d689c0e7f5359e55f | 743bb5f52e29d83e5d3fd3db4d83146bd4edce28 | Modular fix: remove the model name in `find_file_type` (#39897)
* remove the model name in the class name
* add comment | [
{
"path": "utils/modular_model_converter.py",
"patch": "@@ -1086,13 +1086,15 @@ def replace_class_node(\n }\n \n \n-def find_file_type(class_name: str) -> str:\n+def find_file_type(class_name: str, model_name: str) -> str:\n \"\"\"Based on a class name, find the file type corresponding to the class.\n ... | 2025-08-06T23:31:07 |
golang/go | 1e5774889212bdaff5d061b2a45cd0093a291b44 | 7a03ca65b303474c2ea610178105304eae1180df | cmd/compile, go/types: allow `any` anywhere (as a type)
Adjust types2 and go/types and some test cases.
Because `any` is not treated specially anymore in constraint
position we get additional errors in constraints if `any` is
used before Go1.18 (in addition to the error that type parameter
lists are not permitted bef... | [
{
"path": "src/cmd/compile/internal/types2/decl.go",
"patch": "@@ -625,13 +625,7 @@ func (check *Checker) collectTypeParams(dst **TypeParamList, list []*syntax.Fiel\n \t\t// This also preserves the grouped output of type parameter lists\n \t\t// when printing type strings.\n \t\tif i == 0 || f.Type != list[... | 2021-09-22T18:26:40 |
huggingface/transformers | 743bb5f52e29d83e5d3fd3db4d83146bd4edce28 | ac0b4684657cbff1e8eecb0d966d10b71843dca0 | chore: update Deformable_Detr model card (#39902)
* chore: update Deformable_Detr model card
* fix: added pipeline, automodel examples and checkpoints link
* Update deformable_detr.md
---------
Co-authored-by: Steven Liu <59462357+stevhliu@users.noreply.github.com> | [
{
"path": "docs/source/en/model_doc/deformable_detr.md",
"patch": "@@ -14,43 +14,83 @@ rendered properly in your Markdown viewer.\n \n -->\n \n-# Deformable DETR\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&log... | 2025-08-06T19:45:14 |
nodejs/node | 91c1f8a79b615126e406d97384db7606d9602356 | 6c6c5630a70175e4f9509cc292dc2192f86f1817 | src: use Local version of ToBoolean()
This fixes a deprecation warning.
PR-URL: https://github.com/nodejs/node/pull/24924
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
Reviewed-By: James M Snell <jasn... | [
{
"path": "src/js_native_api_v8.cc",
"patch": "@@ -11,10 +11,6 @@\n #define CHECK_TO_NUMBER(env, context, result, src) \\\n CHECK_TO_TYPE((env), Number, (context), (result), (src), napi_number_expected)\n \n-#define CHECK_TO_BOOL(env, context, result, src) \\\n- CHECK_TO_TYPE((env), Boolean, (... | 2018-12-09T18:27:13 |
golang/go | 7a03ca65b303474c2ea610178105304eae1180df | ccfc41eee01772576f83784ae44578e955e4ae6f | internal/fuzz,cmd/compile: don't add race instrumentation to counters
Don't add race detector instrumentation to the fuzzing counters,
allowing usage of -race without immediately triggering the
detector. Also fixes a minor race in contextReader.Read.
Fixes #48307
Change-Id: Idb2cfeaa4283f8a74473b4bac6cd68eed577e943
... | [
{
"path": "src/cmd/compile/internal/ssa/writebarrier.go",
"patch": "@@ -650,7 +650,7 @@ func IsSanitizerSafeAddr(v *Value) bool {\n \t\t// read-only once initialized.\n \t\treturn true\n \tcase OpAddr:\n-\t\treturn v.Aux.(*obj.LSym).Type == objabi.SRODATA\n+\t\treturn v.Aux.(*obj.LSym).Type == objabi.SRODAT... | 2021-09-16T18:33:17 |
huggingface/transformers | ac0b4684657cbff1e8eecb0d966d10b71843dca0 | cf243a1bf85e2197dac2cfc1f9b23c0e99493fa2 | [bugfix] fix flash_attention_2 unavailable error on Ascend NPU (#39844) | [
{
"path": "src/transformers/integrations/npu_flash_attention.py",
"patch": "@@ -267,3 +267,8 @@ def npu_apply_rotary_emb(x, cos, sin, **kwargs):\n sin = sin.unsqueeze(0).unsqueeze(2)\n \n return npu_rotary_mul(x, cos, sin)\n+\n+\n+def get_npu_flash_attn_funcs():\n+ # return flash attention re... | 2025-08-06T17:48:52 |
rust-lang/rust | f1778074fb8089f5c1bdf611b702248df8d400e1 | 38081f22c2d7380f272aa1d7fa9b935637701c2d | Remove RUSTC_RETRY_LINKER_ON_SEGFAULT hack
It looks like this was added 6 years ago because of issues with the
MacOS linker. MacOS got a new linker in the meantime, so that should
probably be resolved now. Hopefully. | [
{
"path": "compiler/rustc_codegen_ssa/src/back/link.rs",
"patch": "@@ -6,7 +6,7 @@ use std::fs::{File, OpenOptions, read};\n use std::io::{BufWriter, Write};\n use std::ops::{ControlFlow, Deref};\n use std::path::{Path, PathBuf};\n-use std::process::{ExitStatus, Output, Stdio};\n+use std::process::{Output, ... | 2025-05-29T21:15:44 |
vercel/next.js | 003b3af7005d89ce562f162557b7f8cb2360ec0f | ceb028a4690138d649ea6eeceafc48353b9078bc | Update vendored React (#46826)
This PR updates vendored React to the latest `@next` version, as well as
corresponding changes to the manifest and module reference generation
code.
The new React version includes the following upstream changes:
- 49f741046 Fix: Infinite act loop caused by wrong shouldYield (#263... | [
{
"path": "package.json",
"patch": "@@ -190,11 +190,11 @@\n \"random-seed\": \"0.3.0\",\n \"react\": \"18.2.0\",\n \"react-17\": \"npm:react@17.0.2\",\n- \"react-builtin\": \"npm:react@18.3.0-next-41110021f-20230301\",\n+ \"react-builtin\": \"npm:react@18.3.0-next-49f741046-20230305\",\n ... | 2023-03-07T00:51:10 |
electron/electron | e627592eed98d9771d2088ba9d07d4e745356837 | 3e6394a00471c95f9d9385e53531c15ed0b05d0d | Reuse ShowMessageBox in ShowErrorBox | [
{
"path": "atom/browser/ui/message_box_gtk.cc",
"patch": "@@ -184,14 +184,12 @@ void ShowMessageBox(NativeWindow* parent,\n \n void ShowErrorBox(const base::string16& title, const base::string16& content) {\n if (Browser::Get()->is_ready()) {\n- GtkWidget* dialog = gtk_message_dialog_new(\n- NUL... | 2015-07-07T08:57:19 |
golang/go | 635e49388bf746a2b8c7ab1e9026aede0eb88b31 | e128749be88278768c50907ca87270b9d5e96eb5 | cmd/cgo: add go:notinheap annotation to Windows handle types
Fixes #42018
Change-Id: I6a40f3effe860e67a45fca2e8ab86f3e9887ffee
Reviewed-on: https://go-review.googlesource.com/c/go/+/350070
Trust: Elias Naur <mail@eliasnaur.com>
Reviewed-by: Keith Randall <khr@golang.org>
Run-TryBot: Keith Randall <khr@golang.org> | [
{
"path": "misc/cgo/test/cgo_test.go",
"patch": "@@ -59,6 +59,7 @@ func Test28896(t *testing.T) { test28896(t) }\n func Test30065(t *testing.T) { test30065(t) }\n func Test32579(t *testing.T) { test32579(t) }\n func Test31891(t *testing.T) { te... | 2021-09-15T13:36:54 |
nodejs/node | 6c6c5630a70175e4f9509cc292dc2192f86f1817 | 8c290fd0f131924e1b54bb80cddbb9809c2937a8 | 2018-12-11, Version 10.14.2 'Dubnium' (LTS)
Notable changes:
* deps:
* upgrade to c-ares v1.15.0 (Ben Noordhuis)
https://github.com/nodejs/node/pull/23854
* Windows:
* A crashing process will now show the names of stack frames if the node.pdb
file is available. (Refael Ackermann)
https://github.com/no... | [
{
"path": "CHANGELOG.md",
"patch": "@@ -35,7 +35,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.1\">10.14.1</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V10.md#10.14.2\">10.... | 2018-11-29T17:02:08 |
huggingface/transformers | cf243a1bf85e2197dac2cfc1f9b23c0e99493fa2 | 6902ffa505970a39bd90f69b1afaa7affd564ac5 | Fix `fix_and_overwrite` mode of `utils/check_docstring.py` (#39369)
* bug in fix mode of check_docstring | [
{
"path": "utils/check_docstrings.py",
"patch": "@@ -823,16 +823,19 @@ def match_docstring_with_signature(obj: Any) -> Optional[tuple[str, str]]:\n except OSError:\n source = []\n \n+ # Find the line where the docstring starts\n idx = 0\n while idx < len(source) and '\"\"\"' not in so... | 2025-08-06T17:37:25 |
rust-lang/rust | c6eb1d95d35bcaa0e9cf0e387cd98d4310ed434c | 642e49bfed2481e54e252732be20d3c24cbec9e8 | rustdoc: display doc(cfg(false)) properly
before we had an extra 'on' that was
ungramatical.
fixes https://github.com/rust-lang/rust/issues/138112 | [
{
"path": "src/librustdoc/clean/cfg.rs",
"patch": "@@ -171,10 +171,15 @@ impl Cfg {\n \n /// Renders the configuration for long display, as a long HTML description.\n pub(crate) fn render_long_html(&self) -> String {\n- let on = if self.should_use_with_in_description() { \"with\" } else { \"o... | 2025-05-29T20:40:50 |
vercel/next.js | ceb028a4690138d649ea6eeceafc48353b9078bc | 7d5a213c71da7cd7bd26b5eee469e2be358d165e | Fix(typedRoutes): fixed type Route resolving to type any (#46679)
This PR makes `typedRoutes` stricter by constraining generics in `Route` to type string. I've also made generating types for routes a bit more efficient by moving `redirects` and `rewrites`'s processing to the plugin's constructor since `rewrites` an... | [
{
"path": "packages/next/src/build/webpack/plugins/next-types-plugin.ts",
"patch": "@@ -136,14 +136,63 @@ async function collectNamedSlots(layoutPath: string) {\n \n export const devPageFiles = new Set<string>()\n \n-const edgeRoutes: string[] = []\n-const nodeRoutes: string[] = []\n+// By exposing the stat... | 2023-03-07T00:05:39 |
electron/electron | 02e28ea7583c32d4ea9cb57c62aa4131d09eb488 | b98cdf71c493aea68c3a849eee7cb148371e910b | Fix focusing message box | [
{
"path": "atom/browser/ui/message_box_gtk.cc",
"patch": "@@ -12,6 +12,7 @@\n #include \"chrome/browser/ui/libgtk2ui/gtk2_signal.h\"\n #include \"chrome/browser/ui/libgtk2ui/gtk2_util.h\"\n #include \"chrome/browser/ui/libgtk2ui/skia_utils_gtk2.h\"\n+#include \"ui/views/widget/desktop_aura/x11_desktop_handl... | 2015-07-07T08:42:03 |
golang/go | ccf140f3d79248f5dc5e326b0d2942aa4ba70b98 | 91c2318e67da2e5948cd8ed0420863af69142c3d | internal/fuzz: allocate memory for mutated strings
Rather than directly pointing at the underlying scratch slice, allocate
memory for strings. This prevents mutation of previous values we've
passed to the fuzz function, which may be retained by something that
expects them to be immutable.
Fixes golang/go#48308
Chang... | [
{
"path": "src/internal/fuzz/mutator.go",
"patch": "@@ -106,12 +106,7 @@ func (m *mutator) mutate(vals []interface{}, maxBytes int) {\n \t\t\tcopy(m.scratch, v)\n \t\t}\n \t\tm.mutateBytes(&m.scratch)\n-\t\tvar s string\n-\t\tshdr := (*reflect.StringHeader)(unsafe.Pointer(&s))\n-\t\tbhdr := (*reflect.SliceH... | 2021-09-14T19:40:10 |
nodejs/node | 60ce2fd827e4f6e4a8a4f39816f93b3043ec92e1 | 083b31d850aaee53d877162b15aaa317ae8d9f39 | module: don't search in require.resolve.paths
The paths used by require.resolve() should be treated as
starting points for module resolution, and not actually
searched.
PR-URL: https://github.com/nodejs/node/pull/23683
Fixes: https://github.com/nodejs/node/issues/18408
Refs: https://github.com/nodejs/node/issues/2364... | [
{
"path": "lib/internal/modules/cjs/loader.js",
"patch": "@@ -584,9 +584,6 @@ Module._resolveFilename = function(request, parent, isMain, options) {\n fakeParent.paths = Module._nodeModulePaths(path);\n const lookupPaths = Module._resolveLookupPaths(request, fakeParent, true);\n \n- if (!pa... | 2018-10-16T03:36:56 |
huggingface/transformers | 6902ffa505970a39bd90f69b1afaa7affd564ac5 | cb2e0df2ec93e719c766dbf15470e34354634100 | remove `triton_kernels` dep with `kernels` instead (#39926)
* remove dep
* style
* rm import
* fix
* style
* simplify
* style | [
{
"path": "src/transformers/integrations/mxfp4.py",
"patch": "@@ -49,17 +49,21 @@\n \n # Copied from GPT_OSS repo and vllm\n def quantize_to_mxfp4(w):\n- from triton_kernels.numerics_details.mxfp import downcast_to_mxfp\n+ downcast_to_mxfp = triton_kernels_hub.numerics_details.mxfp.downcast_to_mxfp\n ... | 2025-08-06T17:31:20 |
vercel/next.js | 527afe1cae56d7ff4f4d56837b774dce65bb5c52 | a0c4354be82415cd8c3013fbabaeb050f57dba1d | Change @next/font to next/font in examples (#46836)
Migrate examples using `@next/font` to `next/font`.
## Bug
- [ ] Related issues linked using `fixes #number`
- [ ] Integration tests added
- [ ] Errors have a helpful link attached, see [`contributing.md`](https://github.com/vercel/next.js/blob/canary/contributing.... | [
{
"path": "examples/app-dir-mdx/app/page.tsx",
"patch": "@@ -1,5 +1,5 @@\n import Image from 'next/image'\n-import { Inter } from '@next/font/google'\n+import { Inter } from 'next/font/google'\n import styles from './page.module.css'\n import Content from './message.mdx'\n ",
"additions": 1,
"deleti... | 2023-03-06T21:01:13 |
rust-lang/rust | 3464b4b231e3e4a09e102696228fe950eb1672e5 | c136fb7734716a078cd82a7364245128923eb7e4 | ci: Allow concurrency outside of pull requests
When multiple merges to `master` happen before a CI run completes, the
in-progress job is getting canceled. Fix this by using the commit sha
for the group key if a pull request number is not available, rather than
`github.ref` (which is always `refs/head/master` after mer... | [
{
"path": "library/compiler-builtins/.github/workflows/main.yaml",
"patch": "@@ -5,7 +5,7 @@ on:\n \n concurrency:\n # Make sure that new pushes cancel running jobs\n- group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}\n+ group: ${{ github.workflow }}-${{ github.event.pu... | 2025-05-29T19:01:03 |
huggingface/transformers | cb2e0df2ec93e719c766dbf15470e34354634100 | 9ab75fc428156ce9ae6aae1baf91fd63b4eb3f9d | [image processor] fix glm4v (#39964)
* fix glm4v image process
* Update src/transformers/models/glm4v/image_processing_glm4v.py
---------
Co-authored-by: Pavel Iakubovskii <qubvel@gmail.com> | [
{
"path": "src/transformers/models/glm4v/image_processing_glm4v.py",
"patch": "@@ -141,7 +141,7 @@ def __init__(\n super().__init__(**kwargs)\n if size is not None and (\"shortest_edge\" not in size or \"longest_edge\" not in size):\n raise ValueError(\"size must contain 'shortes... | 2025-08-06T16:46:58 |
golang/go | 91c2318e67da2e5948cd8ed0420863af69142c3d | dc5b1d31c8c648b2fad1b2e85f6cca2dc1249455 | runtime: call cgocallbackg indirectly on PPC64
This is CL 312669, for PPC64.
cgocallback calls cgocallbackg after switching the stack. Call it
indirectly to bypass the linker's nosplit check. The nosplit check
fails after CL 351271, which removes ABI aliases. It would have
been failing before but the linker's nosplit... | [
{
"path": "src/runtime/asm_ppc64x.s",
"patch": "@@ -688,7 +688,10 @@ havem:\n \tMOVD R5, FIXED_FRAME+0(R1)\n \tMOVD R6, FIXED_FRAME+8(R1)\n \tMOVD R7, FIXED_FRAME+16(R1)\n-\tBL\truntime·cgocallbackg(SB)\n+\n+\tMOVD\t$runtime·cgocallbackg(SB), R12\n+\tMOVD\tR12, CTR\n+\tCALL\t(CTR) // indirect call ... | 2021-09-22T14:16:06 |
nodejs/node | 2cb8f247512d611d3dfe81c2441e8028bfb0e8f0 | 951b1c3e09bae8395dde0d4f5cecb1fde117fa94 | http: switch default parser to llhttp
Refs: https://github.com/nodejs/node/pull/24739
Fixes: https://github.com/nodejs/node/issues/24730
PR-URL: https://github.com/nodejs/node/pull/24870
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Fedor Indutny <fedor.indu... | [
{
"path": "configure.py",
"patch": "@@ -187,7 +187,7 @@\n parser.add_option('--experimental-http-parser',\n action='store_true',\n dest='experimental_http_parser',\n- help='use llhttp instead of http_parser by default')\n+ help='(no-op)')\n \n shared_optgroup.add_option('--shared-http-parser',... | 2018-12-05T19:42:10 |
vercel/next.js | 59c86bfdd6e9d040e152d3e2fdb234bd8abe403e | 2d4d758a9adc639ae0f345b76bd1c84da68b9d9f | fix module options in middleware (vercel/turbo#4083)
### Description
allows to use jsx in middleware | [
{
"path": "packages/next-swc/crates/next-core/js/src/entry/router.ts",
"patch": "@@ -75,7 +75,7 @@ async function getResolveRoute(\n );\n \n return await makeResolver(dir, nextConfig, {\n- files: middlewareChunkGroup,\n+ files: middlewareChunkGroup.filter((f) => /\\.[mc]?js$/.test(f)),\n match... | 2023-03-06T19:19:35 |
huggingface/transformers | 9ab75fc428156ce9ae6aae1baf91fd63b4eb3f9d | 43b3f58875e93ddaa66ac0610cb6da3a6fc37768 | fix typo (#39936)
* fix typo
* fix modular instead
* fix
---------
Co-authored-by: y.korobko <y.korobko@tbank.ru> | [
{
"path": "src/transformers/models/gpt_oss/modeling_gpt_oss.py",
"patch": "@@ -75,7 +75,7 @@ def __init__(self, config):\n \n def forward(self, hidden_states: torch.Tensor, router_indices=None, routing_weights=None) -> torch.Tensor:\n \"\"\"\n- When training is is more efficient to just l... | 2025-08-06T16:21:24 |
rust-lang/rust | 268440a09c3d25505442e3a6292825f9526c9520 | af48d429a3b2670f70f4e9fc43e2a5fe5c499cde | add separate allocator for MiriMachine
Update src/alloc/isolated_alloc.rs
Co-authored-by: Ralf Jung <post@ralfj.de>
allow multiple seeds
use bitsets
fix xcompile
listened to reason and made my life so much easier
fmt
Update src/machine.rs
Co-authored-by: Ralf Jung <post@ralfj.de>
fixups
avoid some clones
Up... | [
{
"path": "src/tools/miri/no_alloc",
"patch": "@@ -0,0 +1,46 @@\n+{\n+ \"backtraces\": {\n+ \"mean\": 2.3829520464,\n+ \"stddev\": 0.07651981051526706\n+ },\n+ \"big-allocs\": {\n+ \"mean\": 0.1673647059473684,\n+ \"stddev\": 0.013478818300072831\n+ },\n+ \"mse\": {\n+ \"mean\": 0.813367... | 2025-05-27T14:18:17 |
golang/go | dc5b1d31c8c648b2fad1b2e85f6cca2dc1249455 | 09d3df0183a78a3900a888873519cc7d994d5e19 | [dev.fuzz] internal/fuzz: more fuzzing output adjustments
This change also makes it so that non-recoverable errors (which should
be pretty rare) will no longer be minimized as these failures can be
flakier and harder to minimize successfully.
Updates golang/go#48132
Change-Id: I991d837993ea1fb0304b3ec491cc725ef52656... | [
{
"path": "src/cmd/go/testdata/script/test_fuzz_minimize.txt",
"patch": "@@ -48,10 +48,10 @@ go run check_testdata.go FuzzMinimizerRecoverable 50\n ! go test -run=FuzzMinimizerRecoverable minimizer_test.go\n rm testdata\n \n-# Test that minimization is working for non-recoverable errors.\n+# Test that minim... | 2021-09-21T19:51:45 |
nodejs/node | 951b1c3e09bae8395dde0d4f5cecb1fde117fa94 | 24e6b709eadd320ae39fd942261ac111446bb3c9 | doc: update "Testing and CI" in Collaborator Guide
Update "Testing and CI" in the Collaborator Guide. Remove redundant
material. Shorten sentences. Remove incorrect material. (Specifically,
we don't require test cases to be included in all pull requests that
modify exectuable code. For example, if code is refactored, ... | [
{
"path": "COLLABORATOR_GUIDE.md",
"patch": "@@ -174,20 +174,17 @@ the comment anyway to avoid any doubt.\n \n ### Testing and CI\n \n-All bugfixes require a test case which demonstrates the defect. The\n-test should *fail* before the change, and *pass* after the change.\n-\n-All pull requests that modify e... | 2018-12-07T06:38:50 |
electron/electron | 41c1a34b4f1777ac1cf68c3d6d467bb18a1d3fff | 8f06bd6f3e217dd9d636525dcb91cab86459081a | Fix a type error on window.moveTo API. | [
{
"path": "atom/browser/api/lib/browser-window.coffee",
"patch": "@@ -16,9 +16,10 @@ BrowserWindow::_init = ->\n options = show: true, width: 800, height: 600\n ipc.emit 'ATOM_SHELL_GUEST_WINDOW_MANAGER_WINDOW_OPEN', event, url, frameName, options\n \n- # window.move(...)\n+ # window.resizeTo(...)... | 2015-07-06T23:22:10 |
vercel/next.js | 9a8275cfdfe1d0b0ce4e4adc4077ce95cbdf3c20 | 396c0faae3100626c7f65f618331307bc5efd6a3 | fix module options in middleware (vercel/turbo#4083)
### Description
allows to use jsx in middleware | [
{
"path": "crates/next-core/js/src/entry/router.ts",
"patch": "@@ -75,7 +75,7 @@ async function getResolveRoute(\n );\n \n return await makeResolver(dir, nextConfig, {\n- files: middlewareChunkGroup,\n+ files: middlewareChunkGroup.filter((f) => /\\.[mc]?js$/.test(f)),\n matcher: middlewareConf... | 2023-03-06T19:19:35 |
huggingface/transformers | 43b3f58875e93ddaa66ac0610cb6da3a6fc37768 | dff6185d612c89cfa32edfab62eabc14583a5fbb | Fix grammatical error in MoE variable name: expert_hitted → expert_hit, hitted_experts → hit_experts (#39959)
* Fix grammatical error: expert_hitted -> expert_hit in MoE implementations
* Fix grammatical error: hitted_experts -> hit_experts in MoE implementation | [
{
"path": "src/transformers/integrations/mxfp4.py",
"patch": "@@ -264,8 +264,8 @@ def topk(vals, k):\n \n expt_data = compute_expt_data_torch(hist, n_local_experts, n_gates_pad)\n \n- hitted_experts = n_expts_act\n- return RoutingData(gate_scal, hist, n_local_experts, hitted_experts, expt_... | 2025-08-06T15:45:19 |
rust-lang/rust | af16553893152ba74b0391b02c31f083c2f519b1 | 151b1cb04777e1e9630045d52f14bc0e7adf5787 | symcheck: Print the command to make reproducing errors easier | [
{
"path": "library/compiler-builtins/crates/symbol-check/src/main.rs",
"patch": "@@ -46,15 +46,16 @@ fn main() {\n /// Run `cargo build` with the provided additional arguments, collecting the list of created\n /// libraries.\n fn exec_cargo_with_args(args: &[&str]) -> Vec<PathBuf> {\n- let mut cmd = Comm... | 2025-05-29T16:07:54 |
golang/go | e925c4640d52587e6657bccc40899888b657e6df | 7158ae4e32894cf7050eef287c5e9818b9fb9ce1 | go/types: add a test for argument error unwrapping
Add a sanity-check test that ArgumentErrors unwrap their inner Err.
Change-Id: I5a670a490deeabc03a64e42b3843f79d622ba958
Reviewed-on: https://go-review.googlesource.com/c/go/+/351338
Trust: Robert Findley <rfindley@google.com>
Run-TryBot: Robert Findley <rfindley@goo... | [
{
"path": "src/go/types/api_test.go",
"patch": "@@ -2012,6 +2012,20 @@ func TestInstantiateErrors(t *testing.T) {\n \t}\n }\n \n+func TestArgumentErrorUnwrapping(t *testing.T) {\n+\tvar err error = &ArgumentError{\n+\t\tIndex: 1,\n+\t\tErr: Error{Msg: \"test\"},\n+\t}\n+\tvar e Error\n+\tif !errors.As(err... | 2021-09-22T00:58:33 |
nodejs/node | 24e6b709eadd320ae39fd942261ac111446bb3c9 | 4dc10ac7d7ddd2cc52e84d1394f7e863d576109f | src: use isolate version of BooleanValue()
This fixes deprecation warnings.
PR-URL: https://github.com/nodejs/node/pull/24883
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com>
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Reviewed-By: Anna Henningsen <anna@a... | [
{
"path": "src/inspector_js_api.cc",
"patch": "@@ -215,7 +215,7 @@ static void AsyncTaskScheduledWrapper(const FunctionCallbackInfo<Value>& args) {\n void* task = GetAsyncTask(task_id);\n \n CHECK(args[2]->IsBoolean());\n- bool recurring = args[2]->BooleanValue(env->context()).FromJust();\n+ bool recu... | 2018-12-07T06:29:58 |
electron/electron | 7231de7c2b6ea2e7a1f9b1cace78171caf76afdc | ae3b47aa7506c73f57240edd9c1321f3601512ec | Update using-native-node-modules.md
update to newest version and x64 fix for popular systems | [
{
"path": "docs/tutorial/using-native-node-modules.md",
"patch": "@@ -38,12 +38,12 @@ where to download headers and which version to use:\n \n ```bash\n $ cd /path-to-module/\n-$ HOME=~/.electron-gyp node-gyp rebuild --target=0.25.0 --arch=ia64 --dist-url=https://atom.io/download/atom-shell\n+$ HOME=~/.elec... | 2015-07-06T12:05:15 |
vercel/next.js | 2d4d758a9adc639ae0f345b76bd1c84da68b9d9f | 6babc5ec434408a96382986a996fa8e1319773ed | ci(workflow): fix build errors (vercel/turbo#4082)
### Description
Minor fix for the daily next.js test runs. | [
{
"path": "packages/next-swc/crates/next-core/src/next_font_google/mod.rs",
"patch": "@@ -448,10 +448,10 @@ async fn get_mock_stylesheet(\n \n let ExecutionContext {\n env,\n- project_root: _,\n+ project_path,\n intermediate_output_path,\n } = *execution_context.await?;... | 2023-03-06T18:03:27 |
huggingface/transformers | dff6185d612c89cfa32edfab62eabc14583a5fbb | c7844c7a8e4348281ef93b065c0542bec169d67c | docs: fix typo in 'quantization-aware training' (#39904) | [
{
"path": "docs/source/en/quantization/fp_quant.md",
"patch": "@@ -16,7 +16,7 @@ rendered properly in your Markdown viewer.\n \n # FP-Quant\n \n-[FP-Quant](https://github.com/IST-DASLab/FP-Quant) is a family of quantization algorithms tailored for the Blackwell generation of Nvidia GPUs. The goal is to allo... | 2025-08-06T14:52:43 |
rust-lang/rust | 151b1cb04777e1e9630045d52f14bc0e7adf5787 | 8db9bd6a59c8c59b8d04ee647f071e81f79f6225 | Change `compiler-builtins` to edition 2024
Do the same for `builtins-test-intrinsics`. Mostly this means updating
`extern` to `unsafe extern`, and fixing a few new Clippy lints. | [
{
"path": "library/compiler-builtins/builtins-test-intrinsics/Cargo.toml",
"patch": "@@ -1,7 +1,7 @@\n [package]\n name = \"builtins-test-intrinsics\"\n version = \"0.1.0\"\n-edition = \"2021\"\n+edition = \"2024\"\n publish = false\n license = \"MIT OR Apache-2.0\"\n ",
"additions": 1,
"deletions":... | 2025-05-29T15:40:05 |
nodejs/node | a1a5c0419e62f9ae3bbef9fb04fac2d867c9e509 | c3dd0d001abdb983d19987c76cad7ef30ef82a25 | lib: improve error creation performance
In case of an error where we only care about a cleaned up stack
trace it is cheaper to reset the stack trace limit for the error
that is created. That way the stack frames do not have to be
computed twice.
PR-URL: https://github.com/nodejs/node/pull/24747
Reviewed-By: Anna Henn... | [
{
"path": "lib/_http_outgoing.js",
"patch": "@@ -446,20 +446,32 @@ function matchHeader(self, state, field, value) {\n \n function validateHeaderName(name) {\n if (typeof name !== 'string' || !name || !checkIsHttpToken(name)) {\n+ // Reducing the limit improves the performance significantly. We do not\... | 2018-11-18T02:50:13 |
golang/go | 7158ae4e32894cf7050eef287c5e9818b9fb9ce1 | 051df0d722fd2ec4473f2ac0ae868a3487927d68 | go/types: don't panic if targs don't match tparams when substituting
Invalid code may produce instances where the number of type arguments
does not match the number of type parameters. Such code will cause an
error, but should not cause a panic when substituting in those invalid
instances.
Fixes #48529
Change-Id: Ie... | [
{
"path": "src/go/types/named.go",
"patch": "@@ -332,7 +332,7 @@ func (check *Checker) completeMethod(env *Environment, m *Func) {\n // TODO(rfindley): eliminate this function or give it a better name.\n func safeUnderlying(typ Type) Type {\n \tif t, _ := typ.(*Named); t != nil {\n-\t\treturn t.resolve(nil)... | 2021-09-22T00:20:36 |
huggingface/transformers | dd70a8cb9d6d2036fc4cb717b5d1184eed88b62c | 82eb67e62a0a66b46647ff4132c173d2f3b8b54f | Fix MXFP4 quantizer validation to allow CPU inference with dequantize option (#39953)
* Fix MXFP4 quantizer validation to enable CPU dequantization
Move dequantize check before CUDA availability check to allow
CPU inference when quantization_config.dequantize is True.
This enables users to run MXFP4 models on CPU b... | [
{
"path": "src/transformers/quantizers/quantizer_mxfp4.py",
"patch": "@@ -56,15 +56,16 @@ def validate_environment(self, *args, **kwargs):\n \"Using mxfp4 quantization requires torch\"\n \"Please install the latest version of torch ( pip install --upgrade torch )\"\n ... | 2025-08-06T13:20:41 |
vercel/next.js | 396c0faae3100626c7f65f618331307bc5efd6a3 | a62af52c4ce5a42c9859c9d0a6817b9f683bda81 | ci(workflow): fix build errors (vercel/turbo#4082)
### Description
Minor fix for the daily next.js test runs. | [
{
"path": "crates/next-core/src/next_font_google/mod.rs",
"patch": "@@ -448,10 +448,10 @@ async fn get_mock_stylesheet(\n \n let ExecutionContext {\n env,\n- project_root: _,\n+ project_path,\n intermediate_output_path,\n } = *execution_context.await?;\n- let context... | 2023-03-06T18:03:27 |
rust-lang/rust | a63f4826cf2ccceeedff5fb19ba0cbffc1ef5d65 | 97c0bebdf7094434c0fb2f941d7136c9c3ade986 | Replace the `nm` symbol check with a Rust implementation
This should be less error-prone and adaptable than the `nm` version, and
have better cross-platform support without needing LLVM `nm` installed. | [
{
"path": "library/compiler-builtins/Cargo.toml",
"patch": "@@ -6,6 +6,7 @@ members = [\n \"crates/libm-macros\",\n \"crates/musl-math-sys\",\n \"crates/panic-handler\",\n+ \"crates/symbol-check\",\n \"crates/util\",\n \"libm\",\n \"libm-test\",",
"additions": 1,
"deletion... | 2025-04-19T07:38:43 |
electron/electron | ae3b47aa7506c73f57240edd9c1321f3601512ec | 99e8238f90354eeda8c855ead124bc97cbf0d87f | Inherit current window's node-integration in window.open by default
Fix #2100. | [
{
"path": "atom/renderer/lib/override.coffee",
"patch": "@@ -51,6 +51,12 @@ window.open = (url, frameName='', features='') ->\n \n (options[name] = parseInt(options[name], 10) if options[name]?) for name in ints\n \n+ # Inherit the node-integration option of current window.\n+ unless options['node-integ... | 2015-07-06T08:21:08 |
huggingface/transformers | 82eb67e62a0a66b46647ff4132c173d2f3b8b54f | 9e76a6bb546397588c6c9a348241340eb39f89a6 | [docs] ko toc fix (#39927) | [
{
"path": "docs/source/ko/_toctree.yml",
"patch": "@@ -327,8 +327,6 @@\n title: (번역중) Contribute new quantization method\n title: (번역중) 경량화 메소드\n - sections:\n- - local: performance\n- title: 성능 및 확장성\n - local: in_translation\n title: (번역중) Quantization\n - local: llm_optims\n@@ -348,8 +3... | 2025-08-06T10:12:34 |
nodejs/node | c3dd0d001abdb983d19987c76cad7ef30ef82a25 | 61a89630ee5664b1f909b310a016b522a6285521 | build: fix compiler version detection
Compiler version tuples should be numeric for tuple comparisons
to work.
Also correct check for AIX where the minimum supported GCC is 6.3.0
PR-URL: https://github.com/nodejs/node/pull/24879
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Reviewed-By: Ben Noordhuis <info@bnoordh... | [
{
"path": "configure.py",
"patch": "@@ -655,8 +655,8 @@ def try_check_compiler(cc, lang):\n \n values = (proc.communicate()[0].split() + ['0'] * 7)[0:7]\n is_clang = values[0] == '1'\n- gcc_version = tuple(values[1:1+3])\n- clang_version = tuple(values[4:4+3])\n+ gcc_version = tuple(map(int, values[1... | 2018-12-06T19:35:02 |
golang/go | 051df0d722fd2ec4473f2ac0ae868a3487927d68 | 085c609a70f8f156734efe2cf4bfb5fe8bd94363 | io: fix spelling in documentation for writerFunc
Change-Id: I9f55188859944e1b2b140d3547bcfcb335c5ff50
Reviewed-on: https://go-review.googlesource.com/c/go/+/351370
Reviewed-by: Ian Lance Taylor <iant@golang.org>
Trust: Robert Griesemer <gri@golang.org> | [
{
"path": "src/io/multi_test.go",
"patch": "@@ -141,7 +141,7 @@ func testMultiWriter(t *testing.T, sink interface {\n \t}\n }\n \n-// writerFunc is an Writer implemented by the underlying func.\n+// writerFunc is a Writer implemented by the underlying func.\n type writerFunc func(p []byte) (int, error)\n \n... | 2021-09-22T01:50:32 |
vercel/next.js | a0c4354be82415cd8c3013fbabaeb050f57dba1d | a9be8902927d2ddc159b39aca3adc8aab40c273c | update dynamic-import.md example (#46787)
Because there is a TS error when is set just a string:
`TS2322: Type '() => string' is not assignable to type '(loadingProps: DynamicOptionsLoadingProps) => Element | null'. Type 'string' is not assignable to type 'Element'.` | [
{
"path": "docs/advanced-features/dynamic-import.md",
"patch": "@@ -23,7 +23,7 @@ By using `next/dynamic`, the header component will not be included in the page's\n import dynamic from 'next/dynamic'\n \n const DynamicHeader = dynamic(() => import('../components/header'), {\n- loading: () => 'Loading...',\... | 2023-03-06T14:28:02 |
huggingface/transformers | 910b3193575049172c49f9d1de09603421084d29 | 369c99d0cea403b77bd0aef818527106453fd9fc | Fix CI: Tests failing on CPU due to `torch.device('cpu').index` being None (#39933)
replace routing_weights.device.index with a | [
{
"path": "src/transformers/models/granitemoe/modeling_granitemoe.py",
"patch": "@@ -119,7 +119,8 @@ def load_balancing_loss_func(\n router_per_expert_attention_mask, dim=0\n )\n \n- rank = routing_weights.shape[1] * int(routing_weights.device.index)\n+ device_index = routing_weigh... | 2025-08-06T08:22:43 |
golang/go | 085c609a70f8f156734efe2cf4bfb5fe8bd94363 | 3664950ef68089716b9f22062db66a347c7246d4 | cmd/go: fix go command fails to perform concurrent compilation
CL 344909 fixed the bug in the order of passing gcflags from cmd/go to
cmd/compile. In that process, we merged the flags passed by cmd/go and
the flags specified by "-gcflags" to one variable. That causes the
gcBackendConcurrency function fails to detect c... | [
{
"path": "src/cmd/go/internal/work/gc.go",
"patch": "@@ -75,7 +75,7 @@ func (gcToolchain) gc(b *Builder, a *Action, archive string, importcfg, embedcfg\n \t}\n \n \tpkgpath := pkgPath(a)\n-\tgcflags := []string{\"-p\", pkgpath}\n+\tdefaultGcFlags := []string{\"-p\", pkgpath}\n \tif p.Module != nil {\n \t\t... | 2021-09-20T17:23:28 |
vercel/next.js | 440b95e28910f1fae9e29b2a2b59188d7d0faac9 | 4c723f4d66feaff2b5dd7ea8d079409675573357 | Refactor SWC transform to support named default export (#46778)
Since the default export syntax is not `fnDecl` but `fnExpr` I added two new methods to abstract out all the transform logic and made both `visit_mut_fn_decl` and `visit_mut_fn_expr` use that.
Next step is to support default exports without an ident (`ex... | [
{
"path": "packages/next-swc/crates/core/src/server_actions.rs",
"patch": "@@ -78,24 +78,8 @@ struct ServerActions<C: Comments> {\n export_actions: Vec<String>,\n }\n \n-impl<C: Comments> VisitMut for ServerActions<C> {\n- fn visit_mut_export_decl(&mut self, decl: &mut ExportDecl) {\n- let old... | 2023-03-06T11:53:13 |
nodejs/node | 61a89630ee5664b1f909b310a016b522a6285521 | 22564b99cb9dff471f40c1ad0245d99b9224a207 | inspector: split the HostPort being used and the one parsed from CLI
Instead of using a shared pointer of the entire debug option set,
pass the parsed debug option to inspector classes by value because
they are set once the CLI argument parsing is done. Add another shared
pointer to HostPort being used by the inspecto... | [
{
"path": "src/env-inl.h",
"patch": "@@ -585,6 +585,10 @@ inline std::shared_ptr<EnvironmentOptions> Environment::options() {\n return options_;\n }\n \n+inline std::shared_ptr<HostPort> Environment::inspector_host_port() {\n+ return inspector_host_port_;\n+}\n+\n inline std::shared_ptr<PerIsolateOptions... | 2018-12-01T17:30:30 |
huggingface/transformers | 369c99d0cea403b77bd0aef818527106453fd9fc | b771e476a8d827e4ab36fb1879a093011985f2fe | Avoid `utils/check_bad_commit.py` failing due to rate limit (requesting `api.github.com`) (#39918)
fix
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": "utils/check_bad_commit.py",
"patch": "@@ -171,6 +171,12 @@ def get_commit_info(commit):\n print(f\"start_commit: {args.start_commit}\")\n print(f\"end_commit: {args.end_commit}\")\n \n+ # `get_commit_info` uses `requests.get()` to request info. via `api.github.com` without using token.... | 2025-08-05T19:52:20 |
golang/go | 3664950ef68089716b9f22062db66a347c7246d4 | 04572fa29ba689dcdd098cc6b7f84307bf1e171b | go/types: tweaks to ArgumentError to be more idiomatic
This CL makes a few changes to the new ArgumentError type to be more
idiomatic:
- Use a pointer receiver for methods.
- Export fields, similarly to Error. ArgumentError has a clear meaning
(an error associated with an index), so there is no need to hide its
... | [
{
"path": "src/go/types/api.go",
"patch": "@@ -64,15 +64,12 @@ func (err Error) Error() string {\n \n // An ArgumentError holds an error associated with an argument index.\n type ArgumentError struct {\n-\tindex int\n-\terror\n+\tIndex int\n+\tErr error\n }\n \n-// Index returns the positional index of th... | 2021-09-21T22:15:25 |
vercel/next.js | 6b8307b2c00cc712dc1ec8d7682d7eee34d4ddd1 | 088c19f709c8b355d23535290d1908beac356577 | add argon2 to serverComponentsExternalPackages auto-optOut list (#46779)
this fixes the same as #46493 but for
[argon2](https://www.npmjs.com/package/argon2)
<!--
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 th... | [
{
"path": "packages/next/src/lib/server-external-packages.json",
"patch": "@@ -2,6 +2,7 @@\n \"@prisma/client\",\n \"@sentry/nextjs\",\n \"@sentry/node\",\n+ \"argon2\",\n \"autoprefixer\",\n \"aws-crt\",\n \"bcrypt\",",
"additions": 1,
"deletions": 0,
"language": "JSON"
}
] | 2023-03-05T18:19:51 |
huggingface/transformers | b771e476a8d827e4ab36fb1879a093011985f2fe | eb6e26acf3aeea8c46487e68a86809a4a3a8abc7 | [CI] post-`GptOss` fixes for green CI (#39929) | [
{
"path": "docs/source/en/_toctree.yml",
"patch": "@@ -511,6 +511,8 @@\n title: GPT2\n - local: model_doc/gpt_bigcode\n title: GPTBigCode\n+ - local: model_doc/gpt_oss\n+ title: GptOss\n - local: model_doc/gptsan-japanese\n title: GPTSAN Japanese\n - loc... | 2025-08-05T18:04:59 |
golang/go | 48cf96c256ff1ec68fd9f9daa59900352d916730 | f6f6621312263e1e3ea2928bdccc967f0f977865 | cmd/compile: don't create or instantiate methods on shape types
We should never use or need methods on non-interface shape types. We do
have corresponding functions instantiated with the appropriate
shape types that take the dictionary and the shape-based receiver as the
first two arguments. Each such function has the... | [
{
"path": "src/cmd/compile/internal/reflectdata/reflect.go",
"patch": "@@ -356,6 +356,13 @@ func methods(t *types.Type) []*typeSig {\n \n // imethods returns the methods of the interface type t, sorted by name.\n func imethods(t *types.Type) []*typeSig {\n+\tif t.HasShape() && !t.IsInterface() {\n+\t\t// No... | 2021-09-20T22:34:09 |
nodejs/node | 3fe00effe0d1905486472ed82f7716321d6ac8e1 | 008b904c069b0a5139036e21542b69f2fc35ba1e | test: make http2 timeout test robust
Instead of using magic values for the server timeout in
test-http2-session-timeout, measure the duration of the first request
(which should be longer than subsequent requests) and use that value.
Fixes: https://github.com/nodejs/node/issues/20628
PR-URL: https://github.com/nodejs... | [
{
"path": "test/sequential/sequential.status",
"patch": "@@ -23,5 +23,3 @@ test-http2-large-file: PASS, FLAKY\n [$system==aix]\n \n [$arch==arm]\n-# https://github.com/nodejs/node/issues/20628\n-test-http2-session-timeout: PASS,FLAKY",
"additions": 0,
"deletions": 2,
"language": "Unknown"
},
... | 2018-12-06T18:21:05 |
vercel/next.js | 088c19f709c8b355d23535290d1908beac356577 | 605f7e0e0cd779170e009ae75467383ce498aaf4 | Correct server reference manifest in prod build (#46683)
Since we have 2 server compilers (node and edge), the `serverActions`
object will always get overridden by the second compilation during `next
build`. Like the client reference manifest, we need to have 2 objects
for each compiler and merge them when outputti... | [
{
"path": "packages/next/src/build/index.ts",
"patch": "@@ -3,6 +3,7 @@ import type { AppBuildManifest } from './webpack/plugins/app-build-manifest-plug\n import type { PagesManifest } from './webpack/plugins/pages-manifest-plugin'\n import type { NextConfigComplete } from '../server/config-shared'\n import... | 2023-03-05T18:00:48 |
electron/electron | cb3e758bc605c2e97cb1e8711971cc93d6fa9c53 | 2bcf8c7bc20d7de6edd6e512044862e70c1e47e7 | Fixed and clarified crash-reporter documentation
It was unclear to us until we looked through the atom source code that crashReporter.start must be ran in each renderer process | [
{
"path": "docs/api/crash-reporter.md",
"patch": "@@ -1,6 +1,6 @@\n # crash-reporter\n \n-An example of automatically submitting crash reporters to remote server:\n+An example of automatically submitting crash reporters to a remote server:\n \n ```javascript\n crashReporter = require('crash-reporter');\n@@ ... | 2015-07-03T18:34:36 |
huggingface/transformers | 7c38d8fc23146e732d4098760bdcb27d7d12c90c | 738c1a3899d361274a02f2306f46e70fd8c2bd46 | Add GPT OSS model from OpenAI (#39923)
* fix
* nice
* where i am at
* Bro this works
* Update src/transformers/integrations/tensor_parallel.py
* cleanups
* yups that was breaking
* Update src/transformers/models/openai_moe/modeling_openai_moe.py
* gather on experts and not mlp
* add changes for latest conver... | [
{
"path": "docs/source/en/_toctree.yml",
"patch": "@@ -617,6 +617,8 @@\n title: OLMoE\n - local: model_doc/open-llama\n title: Open-Llama\n+ - local: model_doc/openai_moe\n+ title: OpenAIMoe\n - local: model_doc/opt\n title: OPT\n - local: model_doc/pega... | 2025-08-05T16:02:18 |
golang/go | 2f70ce36d79ee94855daf7c6feb9a1296f9adfac | fdf2053d52e122f3e8cddccdf742f94333df09a8 | internal/fuzz: temporarily work around test failures after dev.fuzz merge
- Skip test_fuzz_cache and test_fuzz_seed_corpus on 386.
- Skip worker benchmarks when race mode is enabled.
- Stub coverage function on platforms we haven't tested yet. It's
causing package initialization to panic on aix/ppc64.
For #48504
C... | [
{
"path": "src/cmd/go/testdata/script/test_fuzz_cache.txt",
"patch": "@@ -1,6 +1,9 @@\n # TODO(jayconrod): support shared memory on more platforms.\n [!darwin] [!linux] [!windows] skip\n \n+# TODO(#48504): fix and re-enable.\n+[linux] [386] skip\n+\n [short] skip\n env GOCACHE=$WORK/cache\n ",
"addition... | 2021-09-20T23:29:50 |
vercel/next.js | 605f7e0e0cd779170e009ae75467383ce498aaf4 | 9dd24a593187dd4e177e542abd9ae3a7dd9474d3 | Update view-source.tsx (#46790)
Fixes #46789
## Bug
- [X] Related issues linked using `fixes #number`
## Feature
- [X] Documentation added
## Documentation / Examples
- [X] Make sure the linting passes by running `pnpm build && pnpm lint`
- [X] The "examples guidelines" are followed from [our contributing ... | [
{
"path": "examples/image-component/components/view-source.tsx",
"patch": "@@ -15,7 +15,7 @@ const ViewSource = ({ pathname }: ViewSourceProps) => (\n >\n <a\n title=\"View Source\"\n- href={`https://github.com/vercel/next.js/tree/canary/examples/image-component/${pathname}`}\n+ href={... | 2023-03-05T17:47:15 |
nodejs/node | 008b904c069b0a5139036e21542b69f2fc35ba1e | 6780683a7a28a01c25243560da7eae1ff8c0a089 | test: fix wrong parameter
PR-URL: https://github.com/nodejs/node/pull/24844
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> | [
{
"path": "test/parallel/test-path-join.js",
"patch": "@@ -90,7 +90,7 @@ joinTests.push([\n [['//', 'foo/bar'], '\\\\foo\\\\bar'],\n [['//', '/foo/bar'], '\\\\foo\\\\bar'],\n [['\\\\\\\\', '/', '/foo/bar'], '\\\\foo\\\\bar'],\n- [['//'], '/'],\n+ [['//'], '\\\\'],\n // No U... | 2018-12-05T04:03:14 |
huggingface/transformers | 738c1a3899d361274a02f2306f46e70fd8c2bd46 | d2ae766836d1862a814ccd016306727111627673 | 🌐 [i18n-KO] Translated `cache_explanation.md` to Korean (#39535)
* update: _toctree.yml
* docs: ko: cache_explanation.md
* feat: nmt draft
* fix: apply yijun-lee's comments
* fix: apply 4N3MONE's comments
* docs: update cache_position
* docs: update cache-storage-implementation
* update: add h2 tag in cache-po... | [
{
"path": "docs/source/ko/_toctree.yml",
"patch": "@@ -295,6 +295,94 @@\n title: 커뮤니티 리소스\n - local: troubleshooting\n title: 문제 해결\n+ - local: gguf\n+ title: GGUF 파일들과의 상호 운용성\n+ - local: modular_transformers\n+ title: transformers에서의 모듈성\n+ title: (번역중) 개발자 가이드\n+- sections:\n+ - local... | 2025-08-05T15:20:13 |
electron/electron | 9159b068357eb6efd2ad5c8004940fe9949f155e | 4c761126980b37cdf98f08d144051b4873dd3761 | Fix uploading headers when release draft exists | [
{
"path": "script/upload.py",
"patch": "@@ -55,7 +55,7 @@ def main():\n releases = github.repos(ATOM_SHELL_REPO).releases.get()\n tag_exists = False\n for release in releases:\n- if release['tag_name'] == args.version:\n+ if not release['draft'] and release['tag_name'] == args.version:\n t... | 2015-07-03T09:44:36 |
vercel/next.js | 9dd24a593187dd4e177e542abd9ae3a7dd9474d3 | 139e573da2fff9c3da0975cc0a26fbb566b2a362 | Fix middleware 404 prefetch case (#46782)
Ensures we properly generate the 404 page when a path is being prefetched with middleware configured.
## Bug
- [x] Related issues linked using `fixes #number`
- [x] Integration tests added
- [ ] Errors have a helpful link attached, see [`contributing.md`](https://github.com... | [
{
"path": "packages/next/src/server/base-server.ts",
"patch": "@@ -1196,7 +1196,11 @@ export default abstract class Server<ServerOptions extends Options = Options> {\n // when we are handling a middleware prefetch and it doesn't\n // resolve to a static data route we bail early to avoid\n // une... | 2023-03-05T02:32:53 |
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.