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 |
|---|---|---|---|---|---|
electron/electron | f9d797d1ea00e9239a7b1c74bae3861cefb8e023 | e14fd62f4626bb016f3bf2f2e48ec7d892924304 | win: Fix compiler warning | [
{
"path": "atom/browser/api/atom_api_app.cc",
"patch": "@@ -310,14 +310,15 @@ bool App::MakeSingleInstance(\n process_singleton_startup_lock_->Unlock();\n \n switch (process_singleton_->NotifyOtherProcessOrCreate()) {\n- case ProcessSingleton::NotifyResult::PROCESS_NONE:\n- return false;\n ... | 2015-10-22T08:55:54 |
huggingface/transformers | 946e5f95ea0894e5c88f7915547ed3ffcafa56cd | 870add3dafbf388b97581f1eb8945960bf047a7e | fix wrong height and width when read video use torchvision (#41091) | [
{
"path": "src/transformers/video_utils.py",
"patch": "@@ -546,8 +546,8 @@ def sample_indices_fn(metadata, **kwargs):\n metadata.update(\n {\n \"frames_indices\": indices,\n- \"height\": video.shape[1],\n- \"width\": video.shape[2],\n+ \"height\": vid... | 2025-09-23T12:35:44 |
vercel/next.js | fb78e61ba0949929e18a84ba957a421b7302f2c2 | 8bacad921be0f8cbf88a1e1d4ee12fbdf54faa6e | Fix typeof expression in layout router (#48245)
Fix the `typeof window === undefined` expression. | [
{
"path": "packages/next/src/client/components/layout-router.tsx",
"patch": "@@ -8,7 +8,7 @@ import type {\n Segment,\n } from '../../server/app-render/types'\n import type { ErrorComponent } from './error-boundary'\n-import { FocusAndScrollRef } from './router-reducer/router-reducer-types'\n+import type ... | 2023-04-11T14:38:18 |
golang/go | 6fefb7f9f3b632bdd0c3997ecc5b1096a5077cdf | b68c02e2919aec347438a7ec6512b0d2accd163f | cmd/compile: gracefully fallback when inline bodies are missing
Currently, we rely on a "crawling" step during export to identify
function and method bodies that need to be exported or re-exported so
we can trim out unnecessary ones and reduce build artifact sizes. To
catch cases where we expect a function to be inlin... | [
{
"path": "src/cmd/compile/internal/inline/inl.go",
"patch": "@@ -309,7 +309,7 @@ func (v *hairyVisitor) doNode(n ir.Node) bool {\n \t\t\tbreak\n \t\t}\n \n-\t\tif fn := inlCallee(n.X); fn != nil && fn.Inl != nil {\n+\t\tif fn := inlCallee(n.X); fn != nil && typecheck.HaveInlineBody(fn) {\n \t\t\tv.budget -... | 2021-11-04T20:28:25 |
huggingface/transformers | ae606928217bdb32c9c3acd997b5ef9bf523cab5 | f682797866f06f8fc88a296ab52da18910d9acae | Remove unused arguments (#40916)
* Fix unused arguments
Signed-off-by: Yuanyuan Chen <cyyever@outlook.com>
* More fixes
Signed-off-by: Yuanyuan Chen <cyyever@outlook.com>
---------
Signed-off-by: Yuanyuan Chen <cyyever@outlook.com> | [
{
"path": "src/transformers/generation/candidate_generator.py",
"patch": "@@ -524,7 +524,7 @@ def get_candidates(self, input_ids: torch.LongTensor) -> tuple[torch.LongTensor,\n self.assistant_kwargs.pop(\"attention_mask\", None)\n \n assistant_output = self.assistant_model.generate(**generat... | 2025-09-23T11:40:51 |
electron/electron | ca876e424bd71de5fe09d6efb56e79482cfffed9 | 230f2760e7c9136f94b2893d94b90339a7e0208c | Fix crash when calling app.quit() before app is ready | [
{
"path": "atom/browser/browser.cc",
"patch": "@@ -53,8 +53,14 @@ void Browser::Shutdown() {\n is_quiting_ = true;\n \n FOR_EACH_OBSERVER(BrowserObserver, observers_, OnQuit());\n- base::MessageLoop::current()->PostTask(\n- FROM_HERE, base::MessageLoop::QuitWhenIdleClosure());\n+\n+ if (base::Mes... | 2015-10-22T08:06:37 |
vercel/next.js | 8bacad921be0f8cbf88a1e1d4ee12fbdf54faa6e | 83e05e6ee94ad5042196b160b0b2dd3d598897fb | Fix typo in script.md (#48225)
occuring -> occurring
I hope it helps.
<!-- 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": "docs/api-reference/next/script.md",
"patch": "@@ -69,7 +69,7 @@ The loading strategy of the script. There are four different strategies that can\n \n Scripts that load with the `beforeInteractive` strategy are injected into the initial HTML from the server, downloaded before any Next.js module, a... | 2023-04-11T13:26:23 |
golang/go | b68c02e2919aec347438a7ec6512b0d2accd163f | 3b5add5d683572a81ed57007612bc2c712aa7789 | internal/poll: fix the wrong function names in comments
Change-Id: Ib17df2751209129ad6d1c148829625b347b702a9
Reviewed-on: https://go-review.googlesource.com/c/go/+/361514
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
Reviewed-by: Ian Lance Taylor <iant@golang.org>
Trust: Brad Fitzpatrick <bradfitz@golang.org> | [
{
"path": "src/internal/poll/fd_windows.go",
"patch": "@@ -593,7 +593,7 @@ func (fd *FD) ReadFrom(buf []byte) (int, syscall.Sockaddr, error) {\n \treturn n, sa, nil\n }\n \n-// ReadFrom wraps the recvfrom network call for IPv4.\n+// ReadFromInet4 wraps the recvfrom network call for IPv4.\n func (fd *FD) Rea... | 2021-11-05T02:40:31 |
huggingface/transformers | f682797866f06f8fc88a296ab52da18910d9acae | f4a6c65951b0d6c76418b008200df8b57f410cc5 | Fix typing (#40788)
* Fix optional typing
Signed-off-by: Yuanyuan Chen <cyyever@outlook.com>
* Fix optional typing
Signed-off-by: Yuanyuan Chen <cyyever@outlook.com>
* Fix schema typing
Signed-off-by: Yuanyuan Chen <cyyever@outlook.com>
* Fix typing
* Fix typing
* Fix typing
* Fix typing
* Use np.ndarray
Si... | [
{
"path": "src/transformers/audio_utils.py",
"patch": "@@ -23,8 +23,11 @@\n import warnings\n from collections.abc import Sequence\n from io import BytesIO\n-from typing import Any, Optional, Union\n+from typing import TYPE_CHECKING, Any, Optional, Union\n \n+\n+if TYPE_CHECKING:\n+ import torch\n import... | 2025-09-23T11:36:02 |
electron/electron | acb2c099f6dde04bffa8e3c2cf422409abee8987 | 63cc2ec3691324df91ae3814bae21327baf16ffd | Make sure current task runner is available
When calling makeSingleInstance we have to ensure current task runnder
is available, otherwise crash may happen. | [
{
"path": "atom/browser/atom_browser_main_parts.cc",
"patch": "@@ -62,17 +62,15 @@ void AtomBrowserMainParts::PreEarlyInitialization() {\n void AtomBrowserMainParts::PostEarlyInitialization() {\n brightray::BrowserMainParts::PostEarlyInitialization();\n \n- {\n- // Temporary set the bridge_task_runner... | 2015-10-22T06:56:57 |
vercel/next.js | 7f1d7c4fd2192d724855d9d35cf370804dd274a5 | 8b791737e1963e965e4520442f9ab91124917052 | Fix documentation link for transpilePackages in NextConfig (#48121)
The documentation link in NextConfig's JSDoc for 'transpilePackages' was
returning a 404 error. | [
{
"path": "packages/next/src/server/config-shared.ts",
"patch": "@@ -588,7 +588,7 @@ export interface NextConfig extends Record<string, any> {\n /**\n * Automatically transpile and bundle dependencies from local packages (like monorepos) or from external dependencies (`node_modules`). This replaces the... | 2023-04-10T19:19:02 |
golang/go | 3b5add5d683572a81ed57007612bc2c712aa7789 | 0a5ca2422f14f9c17a017207feb9f83f94ce0e89 | bufio: fix typo in comment
Change-Id: I6074334bc73ee1773fc83d049142ad764e39e5a9
GitHub-Last-Rev: 6a8789318ab132a169a89be807394af55c855ce9
GitHub-Pull-Request: golang/go#49373
Reviewed-on: https://go-review.googlesource.com/c/go/+/361413
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
Reviewed-by: Ian Lance Taylor ... | [
{
"path": "src/bufio/bufio_test.go",
"patch": "@@ -1520,7 +1520,7 @@ func TestReaderDiscard(t *testing.T) {\n \t\t\twantBuffered: 0,\n \t\t},\n \t\t// Any error from filling shouldn't show up until we\n-\t\t// get past the valid bytes. Here we return we return 5 valid bytes at the same time\n+\t\t// get pas... | 2021-11-05T04:57:59 |
huggingface/transformers | f4a6c65951b0d6c76418b008200df8b57f410cc5 | 89e0f472f4d4f637949e44d0b3aa9b204139849c | Fix typos in documentation (#41087)
Signed-off-by: Yuanyuan Chen <cyyever@outlook.com> | [
{
"path": "docs/source/en/chat_templating.md",
"patch": "@@ -189,7 +189,7 @@ model.generate(**formatted_chat)\n \n ## Model training\n \n-Training a model with a chat template is a good way to ensure the template matches the tokens the model was trained on. Apply the chat template as a preprocessing step to... | 2025-09-23T11:27:04 |
nodejs/node | a52c1ead0221a0c913d55d86ddddbe2ff3d04d5b | d8d008ce6d222544880323aaa885e01cbe823831 | 2019-03-05, Version 10.15.3 'Dubnium' (LTS)
Notable Changes
* **doc**
* add antsmartian to collaborators (Anto Aravinth)
[#24655](https://github.com/nodejs/node/pull/24655)
* **http**
* fix error check in Execute() (Brian White)
[#25863](https://github.com/nodejs/node/pull/25863)
* **stream**
* fix end-... | [
{
"path": "CHANGELOG.md",
"patch": "@@ -42,7 +42,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.15.2\">10.15.2</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V10.md#10.15.3\">10.... | 2019-02-12T23:03:44 |
rust-lang/rust | 535b0d57085c4db4eb6818b58a042ff8d1f2a918 | 4ef75291b5dd6739212f1f61666d19d4e086690d | fix: `exhaustive_structs` FP on structs with default valued field | [
{
"path": "clippy_lints/src/exhaustive_items.rs",
"patch": "@@ -76,7 +76,7 @@ impl LateLintPass<'_> for ExhaustiveItems {\n \"exported enums should not be exhaustive\",\n [].as_slice(),\n ),\n- ItemKind::Struct(_, _, v) => (\n+ ItemKind::Stru... | 2025-06-09T14:35:57 |
vercel/next.js | 2cb5876b7b99b9c6f105552e0743afc2d26cb61f | b896a1286771c1d0992a85bdfb7e106b0f8efb32 | Enable opening source file in build error overlay (#48194)
It's only possible to open the source file in the editor on runtime
errors:
<img width="951" alt="image"
src="https://user-images.githubusercontent.com/25056922/230925905-b6741246-90f3-4c5a-8211-f3b85cc63275.png">
For build errors, the source file is jus... | [
{
"path": "packages/next/src/client/components/react-dev-overlay/internal/components/Terminal/EditorLink.tsx",
"patch": "@@ -1,22 +1,37 @@\n import React from 'react'\n import { useOpenInEditor } from '../../helpers/use-open-in-editor'\n \n-export function EditorLink({ file }: { file: string }) {\n+type Edi... | 2023-04-10T18:13:34 |
golang/go | 0a5ca2422f14f9c17a017207feb9f83f94ce0e89 | bd580a0d10729553a7905481d17eed0436198866 | crypto/ecdsa: draw a fixed amount of entropy while signing
The current code, introduced in CL 2422, mixes K bits of entropy with
the private key and message digest to generate the signature nonce,
where K is half the bit size of the curve. While the ECDLP complexity
(and hence security level) of a curve is half its bi... | [
{
"path": "src/crypto/ecdsa/ecdsa.go",
"patch": "@@ -200,12 +200,8 @@ var errZeroParam = errors.New(\"zero parameter\")\n func Sign(rand io.Reader, priv *PrivateKey, hash []byte) (r, s *big.Int, err error) {\n \trandutil.MaybeReadByte(rand)\n \n-\t// Get min(log2(q) / 2, 256) bits of entropy from rand.\n-\t... | 2021-09-27T18:40:06 |
huggingface/transformers | 62ce6fcb60ccd4e11d095893623cceedba4c6fe2 | 257fe5eea8ef22d03c5c48c2a7c95c5bf1017d33 | Fix argument name in benchmarking script (#41086)
* Fix argument name in benchmarking script
* Adjust vars | [
{
"path": "benchmark_v2/run_benchmarks.py",
"patch": "@@ -347,7 +347,7 @@ def main():\n )\n \n parser.add_argument(\n- \"--upload-to-hub\",\n+ \"--push-to-hub\",\n type=str,\n help=\"Upload results to HuggingFace Dataset (provide dataset name, e.g., 'username/benchmark-... | 2025-09-23T11:05:27 |
rust-lang/rust | 963fdbc8521839baf833e007e8135794fd1d49d2 | c35911781925bcbfdeb5e6e1adb305097af46801 | variadic functions: remove list of supported ABIs from error | [
{
"path": "compiler/rustc_hir_analysis/messages.ftl",
"patch": "@@ -595,7 +595,7 @@ hir_analysis_value_of_associated_struct_already_specified =\n .label = re-bound here\n .previous_bound_label = `{$item_name}` bound here first\n \n-hir_analysis_variadic_function_compatible_convention = C-variadic fu... | 2025-06-13T15:18:26 |
nodejs/node | 6df7bd6c3b5e95328034d397784bed184508bf85 | 86c87e679fe6ecf78bc3c00248e5d6a991301cec | deps: add s390 asm rules for OpenSSL-1.1.1
This is a floating patch against OpenSSL-1.1.1 to generate asm files
with Makefile rules.
PR-URL: https://github.com/nodejs/node/pull/26327
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
Reviewed-By: Ben Noordhuis ... | [
{
"path": "deps/openssl/openssl/crypto/chacha/build.info",
"patch": "@@ -9,6 +9,8 @@ GENERATE[chacha-armv4.S]=asm/chacha-armv4.pl $(PERLASM_SCHEME)\n INCLUDE[chacha-armv4.o]=..\n GENERATE[chacha-armv8.S]=asm/chacha-armv8.pl $(PERLASM_SCHEME)\n INCLUDE[chacha-armv8.o]=..\n+GENERATE[chacha-s390x.S]=asm/chacha... | 2018-03-07T14:52:52 |
golang/go | 35c7234601c409a1d1595e4eb9fe72e8ba4e6464 | 3839b6001470f7bc73c9a80f6458f7111ae3d9cc | runtime: add always-preempt maymorestack hook
This adds a maymorestack hook that forces a preemption at every
possible cooperative preemption point. This would have helped us catch
several recent preemption-related bugs earlier, including #47302,
#47304, and #47441.
For #48297.
Change-Id: Ib82c973589c8a7223900e1842... | [
{
"path": "src/runtime/debug.go",
"patch": "@@ -61,3 +61,37 @@ func NumGoroutine() int {\n func debug_modinfo() string {\n \treturn modinfo\n }\n+\n+// mayMoreStackPreempt is a maymorestack hook that forces a preemption\n+// at every possible cooperative preemption point.\n+//\n+// This is valuable to apply... | 2021-09-15T21:14:21 |
vercel/next.js | 9c9fdabbd4f31dde5eef830bcb7bdf8bdd377449 | 772f3e750975e4cd1d93e77d5f3d7a06957048e5 | Fix next-flight-loader resourcePath in Windows (#48152)
### What?
It's path backslash and string escape bug at
[next-flight-loader](https://linear.app/vercel/issue/NEXT-flight-loader),
in Windows
### Why?
### How?
Closes NEXT-940
Fixes #47704 | [
{
"path": "packages/next/src/build/webpack/loaders/next-flight-loader/index.ts",
"patch": "@@ -64,7 +64,7 @@ export default async function transformSource(\n \n let esmSource = `\\\n import { createProxy } from \"${moduleProxy}\"\n-const proxy = createProxy(\"${this.resourcePath}\")\n+const proxy = cr... | 2023-04-10T17:01:20 |
huggingface/transformers | 257fe5eea8ef22d03c5c48c2a7c95c5bf1017d33 | 0ec03257810cae0c3f03190c6c09a9273e92ae09 | Switch to `python:3.10-slim` for CircleCI docker images (#41067)
fix
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": "docker/consistency.dockerfile",
"patch": "@@ -1,4 +1,4 @@\n-FROM python:3.9-slim\n+FROM python:3.10-slim\n ENV PYTHONDONTWRITEBYTECODE=1\n USER root\n ARG REF=main",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
"path": "docker/custom-tokenizers.dockerfile",
"... | 2025-09-23T10:48:48 |
nodejs/node | 4b84152e61b2ef8355c440f60350c2033bb23117 | c8e0c09086184ddf6ade60865f729d5d4c2f577c | src: fix if indent in node_http2.cc
PR-URL: https://github.com/nodejs/node/pull/26396
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: Masashi Hirano <shisama07@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewa... | [
{
"path": "src/node_http2.cc",
"patch": "@@ -1875,8 +1875,9 @@ Http2Stream::Http2Stream(Http2Session* session,\n \n // Limit the number of header pairs\n max_header_pairs_ = session->GetMaxHeaderPairs();\n- if (max_header_pairs_ == 0)\n- max_header_pairs_ = DEFAULT_MAX_HEADER_LIST_PAIRS;\n+ if (max_h... | 2019-03-02T13:39:52 |
electron/electron | bac3d2e372b68a252c89adad91cac64b9801a9e4 | 73f4aa1113819cc7c2aa2e1ae590dfef1ec29479 | Update crash-reporter.md | [
{
"path": "docs/api/crash-reporter.md",
"patch": "@@ -59,11 +59,10 @@ ID.\n \n The crash reporter will send the following data to the `submitUrl` as `POST`:\n \n-* `rept` String - e.g. 'electron-crash-service'.\n * `ver` String - The version of Electron.\n * `platform` String - e.g. 'win32'.\n * `process_ty... | 2015-10-22T00:07:36 |
golang/go | 3839b6001470f7bc73c9a80f6458f7111ae3d9cc | 1c4cfd80109da81a2c6cf49b4d3ff49c45af8e03 | cmd/{asm,compile,internal/obj}: add "maymorestack" support
This adds a debugging hook for optionally calling a "maymorestack"
function in the prologue of any function that might call morestack
(whether it does at run time or not). The maymorestack function will
let us improve lock checking and add debugging modes that... | [
{
"path": "src/cmd/asm/internal/flags/flags.go",
"patch": "@@ -28,6 +28,10 @@ var (\n \tCompilingRuntime = flag.Bool(\"compiling-runtime\", false, \"source to be compiled is part of the Go runtime\")\n )\n \n+var DebugFlags struct {\n+\tMayMoreStack string `help:\"call named function before all stack growth... | 2019-08-20T21:39:09 |
huggingface/transformers | 0ec03257810cae0c3f03190c6c09a9273e92ae09 | 577fa6f1672ec3e8e4e6f27f47301b285560eded | Minor addition, no split modules for VideoMAEE (#41051)
* added no split modules
* fixed typo
---------
Co-authored-by: Raushan Turganbay <raushan@huggingface.co> | [
{
"path": "src/transformers/models/videomae/modeling_videomae.py",
"patch": "@@ -402,6 +402,7 @@ class VideoMAEPreTrainedModel(PreTrainedModel):\n base_model_prefix = \"videomae\"\n main_input_name = \"pixel_values\"\n supports_gradient_checkpointing = True\n+ _no_split_modules = [\"VideoMAEE... | 2025-09-23T09:53:51 |
vercel/next.js | 772f3e750975e4cd1d93e77d5f3d7a06957048e5 | 9c0e52089628c25c13a5bce6fb57b18f65dbbae1 | Add experimental React related warning (#47986)
For now, this isn't a strong requirement as normal `fetch` requests will
still work with `react@next`. But in the future, form related props e.g.
`action=` and `formAction=` requires the experimental build.
Fixes NEXT-954. | [
{
"path": "packages/next/src/build/webpack-config.ts",
"patch": "@@ -2248,6 +2248,7 @@ export default async function getBaseWebpackConfig(\n appDir,\n dev,\n isEdgeServer,\n+ useExperimentalReact,\n })),\n hasAppDir &&\n !isCli... | 2023-04-10T12:37:23 |
rust-lang/rust | 764e97c86b47ef4b3c2f085982342b456b4bc2bc | 015c7770ec0ffdba9ff03f1861144a827497f8ca | compiletest: Clarify that `--no-capture` is needed with `--verbose`
Confusingly, this does not make compile test print what command is used
to run a ui test:
./x test tests/ui/panics/abort-on-panic.rs --verbose
It is also necessary to pass `--no-capture`, like this:
./x test tests/ui/panics/abort-on-panic.r... | [
{
"path": "src/tools/compiletest/src/util.rs",
"patch": "@@ -29,6 +29,7 @@ fn path_div() -> &'static str {\n pub fn logv(config: &Config, s: String) {\n debug!(\"{}\", s);\n if config.verbose {\n+ // Note: `./x test ... --verbose --no-capture` is needed to see this print.\n println!(\... | 2025-06-13T14:43:07 |
huggingface/transformers | 577fa6f1672ec3e8e4e6f27f47301b285560eded | 03c92884b5e52c95ab70cf12681b3f90dc71732d | fix crash when using chat to send 2+ request to gptoss (#40536)
Signed-off-by: Wang, Yi <yi.a.wang@intel.com> | [
{
"path": "src/transformers/commands/serving.py",
"patch": "@@ -1026,7 +1026,9 @@ def generate_chat_completion(self, req: dict) -> Generator[str, None, None]:\n \n last_kv_cache = None\n if self.is_continuation(req) and not must_discard_cache:\n- last_kv_cache = self.last_kv_cache... | 2025-09-23T09:50:23 |
nodejs/node | c8e0c09086184ddf6ade60865f729d5d4c2f577c | acc506c2d2771dab8d7bba6d3452bc5180dff7cf | https: add missing localPort while create socket
In `_tls_wrap.js` while calling `socket.connect` the `localPort` was
missing, restore it.
PR-URL: https://github.com/nodejs/node/pull/24554
Fixes: https://github.com/nodejs/node/issues/24543
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Ruben Bridgewater... | [
{
"path": "lib/_tls_wrap.js",
"patch": "@@ -1299,6 +1299,7 @@ exports.connect = function connect(...args) {\n host: options.host,\n family: options.family,\n localAddress: options.localAddress,\n+ localPort: options.localPort,\n lookup: options.lookup\n };\n ",
"addition... | 2018-11-21T15:12:17 |
electron/electron | b61c2e6ff7333f172dca600ee8bbd419cf00f9f6 | 73f4aa1113819cc7c2aa2e1ae590dfef1ec29479 | quick fix removing excess character | [
{
"path": "docs/tutorial/mac-app-store-submission-guide.md",
"patch": "@@ -1,26 +1,26 @@\n # Mac App Store Submission Guide\n \n-Since v0.34.0, Electron allows submitting packaged apps to the Mac App Store \n-(MAS). This guide provides information on: how to submit your app and the \n+Since v0.34.0, Electro... | 2015-10-21T20:03:12 |
golang/go | 1c4cfd80109da81a2c6cf49b4d3ff49c45af8e03 | 0e5f287fde7b2cf11c8cffb7839f970a8f3e2f9b | cmd/compile,cmd/internal/objabi: move -d flag parser to objabi
This moves and slightly generalizes the -d debug flag parser from
cmd/compile/internal/base to cmd/internal/objabi so that we can use
the same debug flag syntax in other tools.
This makes a few minor tweaks to implementation details. The flag
itself is no... | [
{
"path": "src/cmd/compile/internal/base/debug.go",
"patch": "@@ -6,15 +6,6 @@\n \n package base\n \n-import (\n-\t\"fmt\"\n-\t\"log\"\n-\t\"os\"\n-\t\"reflect\"\n-\t\"strconv\"\n-\t\"strings\"\n-)\n-\n // Debug holds the parsed debugging configuration values.\n var Debug DebugFlags\n \n@@ -26,7 +17,7 @@ va... | 2021-09-17T14:07:41 |
rust-lang/rust | 10ba25f7ce4b98ec0958ad7ce52bc2585f6fbb55 | 013e06c5ffef976c8f9b197e63155477529ed369 | fmaximum,fminimum: Fix incorrect result and add tests
After adding tests, the current implementation for fminimum fails when
provided a negative zero and NaN as inputs:
---- math::fminimum_fmaximum_num::tests::fmaximum_num_spec_tests_f64 stdout ----
thread 'math::fminimum_fmaximum_num::tests::fmaximum_num_sp... | [
{
"path": "library/compiler-builtins/libm/src/math/fmin_fmax.rs",
"patch": "@@ -82,22 +82,77 @@ mod tests {\n fn fmin_spec_test<F: Float>(f: impl Fn(F, F) -> F) {\n let cases = [\n (F::ZERO, F::ZERO, F::ZERO),\n- (F::ONE, F::ONE, F::ONE),\n (F::ZERO, F::ONE, F:... | 2025-06-02T17:20:22 |
huggingface/transformers | cbb290ec23ccd9b5c1d1ff4d333477449891debb | 8048c614bfc65209df4ec18a431cedd128ddf714 | Improve documentation and errors in Mamba2-based models (#41063)
* fix bug in Mamba2 docs
* correct 'because on of' issue
* link to other Mamba2 model types
* github URL is not changed
* update error message in generated files | [
{
"path": "docs/source/en/model_doc/mamba2.md",
"patch": "@@ -1,4 +1,4 @@\n-<!--Copyright 2024 The HuggingFace Team. All rights reserved.\n+<!--Copyright 2025 The HuggingFace Team. All rights reserved.\n \n Licensed under the Apache License, Version 2.0 (the \"License\"); you may not use this file except in... | 2025-09-22T17:36:20 |
nodejs/node | 1bdcfa7abe308bb7f79cd3679e9f345b58b37334 | 33880d79dd2ed9f7d5c437e2bba802d298e24b62 | doc: fix up N-API support matrix
The support matrix was out of date. Update
with current status.
Fixes: https://github.com/nodejs/node/issues/25801
PR-URL: https://github.com/nodejs/node/pull/26377
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: James M Snell... | [
{
"path": "doc/api/n-api.md",
"patch": "@@ -145,13 +145,13 @@ available to the module code.\n \n ## N-API Version Matrix\n \n-| | 1 | 2 | 3 |\n-|:-----:|:-------:|:--------:|:--------:|\n-| v4.x | | | |\n-| v6.x | | | v6.14.2* |\n-| v8.x... | 2019-03-01T15:44:53 |
golang/go | 0e5f287fde7b2cf11c8cffb7839f970a8f3e2f9b | 256a8fc6ef297f2a2cec0cb7c918f61706b6f9a3 | runtime: use correct constant when computing nsec remainder
A code comment on amd64 for windows and plan9 contained a snippet for
splitting apart the sec and nsec components of a unix timestamp, with
produced assembly below, which was then cleaned up by hand. When arm64
was ported, that code snippet in the comment wen... | [
{
"path": "src/runtime/sys_plan9_amd64.s",
"patch": "@@ -94,7 +94,7 @@ TEXT runtime·walltime(SB),NOSPLIT,$8-12\n \tMOVQ\t0(SP), AX\n \n \t// generated code for\n-\t//\tfunc f(x uint64) (uint64, uint64) { return x/1000000000, x%100000000 }\n+\t//\tfunc f(x uint64) (uint64, uint64) { return x/1000000000, x%10... | 2021-11-04T23:10:31 |
rust-lang/rust | 2abdea9293bedf65acc94f977a9b61d0d989183b | 72d99d070a587e220d056244fcdb0954d40195fc | Fix spelling mistakes or ignore spell checking some parts of code | [
{
"path": "src/asm.rs",
"patch": "@@ -1,3 +1,5 @@\n+// cSpell:ignoreRegExp [afkspqvwy]reg\n+\n use std::borrow::Cow;\n \n use gccjit::{LValue, RValue, ToRValue, Type};\n@@ -138,7 +140,7 @@ impl<'a, 'gcc, 'tcx> AsmBuilderMethods<'tcx> for Builder<'a, 'gcc, 'tcx> {\n // `outputs.len() + inputs.len()`.... | 2025-06-13T14:27:21 |
huggingface/transformers | aa30e0642e2697a83e8457d62f8e228789af26d0 | 1bb69cce820ee62889593ebe95efce5e795f16f7 | Update quantization CI (#41068)
* fix
* new everything
* fix | [
{
"path": "docker/transformers-quantization-latest-gpu/Dockerfile",
"patch": "@@ -1,4 +1,4 @@\n-FROM nvidia/cuda:12.1.1-cudnn8-devel-ubuntu22.04\n+FROM nvidia/cuda:12.6.0-cudnn-devel-ubuntu22.04\n LABEL maintainer=\"Hugging Face\"\n \n ARG DEBIAN_FRONTEND=noninteractive\n@@ -9,9 +9,9 @@ SHELL [\"sh\", \"-lc... | 2025-09-22T16:10:16 |
rust-lang/rust | 6438b31117bf8c8ebea6701e178ec4194a0ffcdd | 44092665c6a293b3b07afcf4cadaa074f316718e | Fix link to the contribution guide | [
{
"path": "src/tools/rust-analyzer/docs/book/src/troubleshooting.md",
"patch": "@@ -46,5 +46,4 @@ It is especially useful when the `repo` doesn’t use external crates or\n the standard library.\n \n If you want to go as far as to modify the source code to debug the\n-problem, be sure to take a look at the [d... | 2025-06-13T14:35:03 |
electron/electron | 444f461269f77c67d4ce1bb6009baba15d98b71e | 2d410ede4890551240f7745a967c67213ca29b3e | Fix memory corruption when cleaning timer | [
{
"path": "atom/app/uv_task_runner.cc",
"patch": "@@ -48,8 +48,13 @@ void UvTaskRunner::OnTimeout(uv_timer_t* timer) {\n \n self->tasks_[timer].Run();\n self->tasks_.erase(timer);\n- uv_unref(reinterpret_cast<uv_handle_t*>(timer));\n- delete timer;\n+ uv_timer_stop(timer);\n+ uv_close(reinterpret_ca... | 2015-10-21T12:46:16 |
golang/go | 256a8fc6ef297f2a2cec0cb7c918f61706b6f9a3 | 76c48e9346bba98689e059aaee5952c17d45a48c | sync/atomic: disable GC during TestHammerStoreLoad
TestHammerStoreLoad involves a stress test of StorePointer, which has a
write barrier. The "pointer" that is being written is not a real value,
which is generally fine (though not *really* safe) on 64-bit systems
because they never point to an actual object.
On 32-bi... | [
{
"path": "src/sync/atomic/atomic_test.go",
"patch": "@@ -7,6 +7,7 @@ package atomic_test\n import (\n \t\"fmt\"\n \t\"runtime\"\n+\t\"runtime/debug\"\n \t\"strings\"\n \t. \"sync/atomic\"\n \t\"testing\"\n@@ -1196,6 +1197,11 @@ func TestHammerStoreLoad(t *testing.T) {\n \t}\n \tconst procs = 8\n \tdefer ru... | 2021-11-04T23:13:12 |
vercel/next.js | 9c0e52089628c25c13a5bce6fb57b18f65dbbae1 | 2bcdfbb6ab45907eaa1b6f57a49ca5cdbeca9597 | Re-land "Vendor `react@experimental` under an `experimentalReact` flag" (#48041)
Reverts vercel/next.js#48038
fix NEXT-926
---
The root cause was that when copying the package.json, I removed all
fields except for a few (such as `exports`) but missed the `browser`
field. That caused the client bundle to res... | [
{
"path": "package.json",
"patch": "@@ -197,11 +197,13 @@\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-85de6fde5-20230328\",\n+ \"react-builtin\": \"npm:react@18.3.0-next-b14f8da15-20230403\",\n+ ... | 2023-04-08T15:16:24 |
huggingface/transformers | 1bb69cce820ee62889593ebe95efce5e795f16f7 | f15258dec24385bd9982ed9721797a33195343df | Fix CI jobs being all red 🔴 (false positive) (#41059)
fix
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": ".github/workflows/model_jobs.yml",
"patch": "@@ -141,8 +141,8 @@ jobs:\n script -q -c \"PATCH_TESTING_METHODS_TO_COLLECT_OUTPUTS=yes _PATCHED_TESTING_METHODS_OUTPUT_DIR=/transformers/reports/${{ env.machine_type }}_${{ inputs.report_name_prefix }}_${{ env.matrix_folders }}_test_reports ... | 2025-09-22T14:51:00 |
nodejs/node | d775d74698e1b321580b1560fbcee7943750aedc | b2abda9ba0b7b8bfbbf14e990ea86434f3f20de3 | tools: roll inspector_protocol to f67ec5
Fixes: https://github.com/nodejs/node/issues/25808
PR-URL: https://github.com/nodejs/node/pull/26303
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Refael Ackermann <refack@gmail.com> | [
{
"path": "src/inspector/node_inspector.gypi",
"patch": "@@ -34,7 +34,7 @@\n '<(protocol_tool_path)/templates/Imported_h.template',\n '<(protocol_tool_path)/templates/TypeBuilder_cpp.template',\n '<(protocol_tool_path)/templates/TypeBuilder_h.template',\n- '<(protocol_tool_path)/CodeG... | 2019-02-25T20:43:13 |
rust-lang/rust | 1d41c2c01c9d32b22b1b702cfe04e2f7aae477af | ed44c0e3b3a4f90c464361ec6892c1d42c15ea8f | Merge unboxed trait object error suggestion into regular dyn incompat error | [
{
"path": "compiler/rustc_hir_analysis/src/check/wfcheck.rs",
"patch": "@@ -382,8 +382,6 @@ fn check_trait_item<'tcx>(\n _ => (None, trait_item.span),\n };\n \n- check_dyn_incompatible_self_trait_by_name(tcx, trait_item);\n-\n // Check that an item definition in a subtrait is shadowing a ... | 2025-06-13T10:57:00 |
golang/go | 156abe51221c5723c3ff524ea0fcbe65d8272bfa | 2c32f29f2f88e56f329547467090e7315cd3c1e8 | runtime: fix hard goal calculation
The new GC pacer has a bug where the hard goal isn't set in relation to
the original heap goal, but rather to the one already extrapolated for
overshoot.
In practice, I have never once seen this case arise because the
extrapolated goal used for overshoot is conservative. No test bec... | [
{
"path": "src/runtime/mgcpacer.go",
"patch": "@@ -517,7 +517,7 @@ func (c *gcControllerState) revise() {\n \t\t\t// growths. It's OK to use more memory this cycle to scan all the live heap,\n \t\t\t// because the next GC cycle is inevitably going to use *at least* that much\n \t\t\t// memory anyway.\n-\t\t... | 2021-11-04T21:09:34 |
huggingface/transformers | c9939b3ab6f8dda4dea8a29a479755659c36ac96 | 4f36011545807a9d03a81bfd8fc4f1014badc02d | Remove repeated import (#40937)
* Remove repeated import
Signed-off-by: Yuanyuan Chen <cyyever@outlook.com>
* Fix conflict
Signed-off-by: Yuanyuan Chen <cyyever@outlook.com>
---------
Signed-off-by: Yuanyuan Chen <cyyever@outlook.com> | [
{
"path": "src/transformers/data/data_collator.py",
"patch": "@@ -737,8 +737,6 @@ def get_generator(self, seed):\n \n return torch.Generator().manual_seed(seed)\n else:\n- import numpy as np\n-\n return np.random.default_rng(seed)\n \n def create_rng(self):",
... | 2025-09-22T12:57:13 |
vercel/next.js | 71a29a17b85d3e8d8d24a48fc2ed8b601e458797 | db7b3bdbcf342a6d87d053c0cdab8ad1120608ac | Support og image with edge (#48086)
Fixing edge runtime doesn't work with exports from dynamic metaddata
image routes. If there's a match, don't do extra matching.
Fixes NEXT-866 | [
{
"path": "packages/next/src/server/next-server.ts",
"patch": "@@ -24,6 +24,7 @@ import {\n Params,\n } from '../shared/lib/router/utils/route-matcher'\n import type { MiddlewareRouteMatch } from '../shared/lib/router/utils/middleware-route-matcher'\n+import type { RouteMatch } from './future/route-matche... | 2023-04-07T23:27:32 |
nodejs/node | d57c526cfd822ea55ecb2fecfb804c4a91b5293f | d3d79d9f86124441763ef28c11667d78cf93af58 | win,build: add arbitrary and binlog options
This change adds a 'msbuild_arg' option to vcbuild.bat that can be used
to pass arbitrary flags to MSBuild.
It also adds a 'binlog' flag as a shortcut 'msbuild_arg' option to
enable binary logging to `%config%\node.binlog`. This is especially
convenient when debugging chang... | [
{
"path": "vcbuild.bat",
"patch": "@@ -1,5 +1,9 @@\n @if not defined DEBUG_HELPER @ECHO OFF\n \n+:: Other scripts rely on the environment variables set in this script, so we\n+:: explicitly allow them to persist in the calling shell.\n+endlocal\n+\n if /i \"%1\"==\"help\" goto help\n if /i \"%1\"==\"--help\... | 2018-12-14T00:43:45 |
rust-lang/rust | 527f35a28f2661e40b1b6824103861312f3a188d | 6c8138de8f1c96b2f66adbbc0e37c73525444750 | doc: mention that intrinsics should not be called in user code
Intrinsic functions declared in `std::intrinsics` are an implementation
detail and should not be called directly by the user. The compiler
explicitly warns against their use in user code:
```
warning: the feature `core_intrinsics` is internal to the compi... | [
{
"path": "library/core/src/intrinsics/mod.rs",
"patch": "@@ -1,5 +1,9 @@\n //! Compiler intrinsics.\n //!\n+//! The functions in this module are implementation details of `core` and should\n+//! not be used outside of the standard library. We generally provide access to\n+//! intrinsics via stable wrapper ... | 2025-06-13T10:47:53 |
golang/go | 2c32f29f2f88e56f329547467090e7315cd3c1e8 | 71fc881cff79d0f3b352c20b947f4911892864fa | cmd/go: clarify errors for pseudo-version commit length
These error messages contain the expected shortened revision in braces,
but don't explicitly tell the user that this is the expected one.
Just unified it with the "does not match version-control timestamp" error which does the same...
Change-Id: I8e07df7bd776fd... | [
{
"path": "src/cmd/go/internal/modfetch/coderepo.go",
"patch": "@@ -567,11 +567,11 @@ func (r *codeRepo) validatePseudoVersion(info *codehost.RevInfo, version string)\n \tif rev != info.Short {\n \t\tswitch {\n \t\tcase strings.HasPrefix(rev, info.Short):\n-\t\t\treturn fmt.Errorf(\"revision is longer than ... | 2021-10-29T03:23:15 |
huggingface/transformers | 4f36011545807a9d03a81bfd8fc4f1014badc02d | 2b8a7e82b5d0bc21fb1ecafe4412ae2600728acf | [testing] Fix `seed_oss` (#41052)
* fix
* fix
* fix
* fix
* fix
* fix
* Update tests/models/seed_oss/test_modeling_seed_oss.py
Co-authored-by: Anton Vlasjuk <73884904+vasqu@users.noreply.github.com>
* fix
---------
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
Co-authored-by: Anton Vlasjuk <7388... | [
{
"path": "tests/models/seed_oss/test_modeling_seed_oss.py",
"patch": "@@ -90,54 +90,27 @@ class SeedOssIntegrationTest(unittest.TestCase):\n input_text = [\"How to make pasta?\", \"Hi ByteDance-Seed\"]\n model_id = \"ByteDance-Seed/Seed-OSS-36B-Base\"\n \n- def tearDown(self):\n+ def setUp(se... | 2025-09-22T12:54:30 |
electron/electron | d092c6acc956fd5b2c4e1431f9a25dbac17e681b | c92889462789b540f6f3f583a10ddd80af8e95b7 | osx: Implement draggable region with mouseDownCanMoveWindow
Previously we implemented draggable region by tracking mouse position,
it is buggy and causing some problems. But it is interesting that until
this didn't cause troubles until recently. | [
{
"path": "atom/browser/native_window.cc",
"patch": "@@ -43,26 +43,6 @@ DEFINE_WEB_CONTENTS_USER_DATA_KEY(atom::NativeWindowRelay);\n \n namespace atom {\n \n-namespace {\n-\n-// Convert draggable regions in raw format to SkRegion format. Caller is\n-// responsible for deleting the returned SkRegion instanc... | 2015-10-20T23:33:43 |
vercel/next.js | 6b9af3e0d1ffe074b11959c8ca4cddf008266d83 | 98dfbc077537595341e3932283e027a1ca28af1b | Fix fallback detection logic when multiple generateStaticParams are needed (#47982)
### What?
Our current logic of detecting if a route allows dynamic params or not
(`fallback`) is flawed, and this PR fixes it.
### Why?
Right now, if no `generateStaticParams` is specified we return
`fallback: undefined` dur... | [
{
"path": "packages/next/src/build/utils.ts",
"patch": "@@ -1086,6 +1086,7 @@ export type AppConfig = {\n }\n export type GenerateParams = Array<{\n config?: AppConfig\n+ isDynamicSegment?: boolean\n segmentPath: string\n getStaticPaths?: GetStaticPaths\n generateStaticParams?: any\n@@ -1133,9 +113... | 2023-04-07T17:56:40 |
nodejs/node | d9536f73e510b346be943c2c8450bf94e4630c4f | 17b7fa75c345ec2ef59c489a33aa14f346d60dc5 | tools: update node-lint-md-cli-rollup lockfile
This includes an update for chownr from 1.0.1 to 1.1.1, which means a
fix for the issue described in
https://github.com/isaacs/chownr/issues/14. While not a
user-facing issue, it seems like a good idea to patch promptly anyway.
PR-URL: https://github.com/nodejs/node/pull... | [
{
"path": "tools/node-lint-md-cli-rollup/package-lock.json",
"patch": "@@ -4,10 +4,39 @@\n \"lockfileVersion\": 1,\n \"requires\": true,\n \"dependencies\": {\n+ \"@types/node\": {\n+ \"version\": \"11.10.4\",\n+ \"resolved\": \"https://registry.npmjs.org/@types/node/-/node-11.10.4.tgz\",... | 2019-03-02T06:01:14 |
huggingface/transformers | 6eff44bb8db3c90614b45cc960e70c21bd5246c8 | 9ff47a71e4f75810387aba361c6153cdf8e48c69 | Fix outdated torch version check (#40925)
Update torch minimum version check to 2.2
Signed-off-by: Yuanyuan Chen <cyyever@outlook.com> | [
{
"path": "src/transformers/utils/import_utils.py",
"patch": "@@ -236,9 +236,9 @@ def _is_package_available(pkg_name: str, return_version: bool = False) -> Union[\n \n _torch_available, _torch_version = _is_package_available(\"torch\", return_version=True)\n if _torch_available:\n- _torch_available = ver... | 2025-09-22T12:38:07 |
golang/go | 71fc881cff79d0f3b352c20b947f4911892864fa | 82481525280e4d0c74cb3f6341ce2f4653a165b8 | cmd/go: ensure that 'go test' prints the FAIL line for a package on a new line
Fixes #49317
Change-Id: I4038fd4c1d845d54ecbbf82bf73060db1b44c9bc
Reviewed-on: https://go-review.googlesource.com/c/go/+/361095
Trust: Bryan C. Mills <bcmills@google.com>
Run-TryBot: Bryan C. Mills <bcmills@google.com>
TryBot-Result: Go Bo... | [
{
"path": "src/cmd/go/internal/test/test.go",
"patch": "@@ -1405,15 +1405,25 @@ func (c *runCache) builderRunTest(b *work.Builder, ctx context.Context, a *work.\n \t\tif bytes.HasPrefix(out, tooManyTargetsToFuzz[1:]) || bytes.Contains(out, tooManyTargetsToFuzz) {\n \t\t\tnorun = \" [will not fuzz, -fuzz mat... | 2021-11-03T14:39:54 |
vercel/next.js | 536b4dca8cc319e408dcddcea998af950c1a2b89 | 0097c12a92276b6c3fe31bdc435ebfbbc6e28878 | Update deployment.md (#48062)
Since the code above is referring to `package.json` it should be `npm
run build` and `npm run start` instead of running `next build` and `next
start` directly
<!-- Thanks for opening a PR! Your contribution is much appreciated.
To make sure your PR is handled as smoothly as possible... | [
{
"path": "docs/deployment.md",
"patch": "@@ -71,7 +71,7 @@ First, ensure your `package.json` has the `\"build\"` and `\"start\"` scripts:\n }\n ```\n \n-Then, run `next build` to build your application. Finally, run `next start` to start the Node.js server. This server supports all features of Next.js.\n+T... | 2023-04-07T15:38:59 |
nodejs/node | 8c597df3502c26fba74c966168376c818b61b73b | 5e23bac9dd689a8d11b0acbb2b6aab874170102c | http2: improve compatibility with http/1
When using the compatibility API the connection header is from now on
ignored instead of throwing an `ERR_HTTP2_INVALID_CONNECTION_HEADERS`
error.
This logs a warning in such case to notify the user about the ignored
header.
PR-URL: https://github.com/nodejs/node/pull/23908
Fi... | [
{
"path": "lib/internal/http2/compat.js",
"patch": "@@ -45,6 +45,7 @@ const {\n } = constants;\n \n let statusMessageWarned = false;\n+let statusConnectionHeaderWarned = false;\n \n // Defines and implements an API compatibility layer on top of the core\n // HTTP/2 implementation, intended to provide an int... | 2018-10-21T18:48:05 |
huggingface/transformers | 9ff47a71e4f75810387aba361c6153cdf8e48c69 | ae9ef2e1510eff1e9a620cad9648d0cca5c547cb | Fix condition for emitting warning when generation exceeds max model length (#40775)
correct warning when generation exceeds max model length
Signed-off-by: Yannick Schnider <yannick.schnider1@ibm.com> | [
{
"path": "src/transformers/generation/stopping_criteria.py",
"patch": "@@ -76,9 +76,9 @@ def __init__(self, max_length: int, max_position_embeddings: Optional[int] = Non\n def __call__(self, input_ids: torch.LongTensor, scores: torch.FloatTensor, **kwargs) -> torch.BoolTensor:\n cur_len = input... | 2025-09-22T12:21:38 |
rust-lang/rust | 595e88ae7d3cca6b05b1dfb4c3cd3ed74a1a7861 | 015c7770ec0ffdba9ff03f1861144a827497f8ca | Windows: make read_dir stop iterating on error | [
{
"path": "library/std/src/sys/fs/windows.rs",
"patch": "@@ -132,6 +132,7 @@ impl Iterator for ReadDir {\n let mut wfd = mem::zeroed();\n loop {\n if c::FindNextFileW(handle.0, &mut wfd) == 0 {\n+ self.handle = None;\n match api:... | 2025-06-13T09:49:48 |
vercel/next.js | a71227a40f1fa0039ae190d13eaddd8b95080449 | 883933b6c590842d78e600903b4a5db21d80c9e0 | parallel routes: fix layout not re-rendering (#48066)
### What?
This PR makes the parent layout of parallel routes re-render when the
parallel route segments are different or when either of them has a
refetch marker.
Example:
```
.
└── app/
├── page.ts
├── layout.ts
├── foo/
│ └── page... | [
{
"path": "packages/next/src/client/components/router-reducer/apply-flight-data.ts",
"patch": "@@ -32,6 +32,7 @@ export function applyFlightData(\n // Copy subTreeData for the root node of the cache.\n cache.status = CacheStates.READY\n cache.subTreeData = state.cache.subTreeData\n+ cache.par... | 2023-04-07T13:23:08 |
huggingface/transformers | 37152f84464dea9086dd1d88cd58f63c2129ee69 | 8a52288dba56a5c36cb7e1cf28da43ceaccd5808 | Fix typos in English/Chinese documentation (#41031)
* Fix typos and formatting in English docs
Signed-off-by: Yuanyuan Chen <cyyever@outlook.com>
* Fix typos and formatting in Chinese docs
Signed-off-by: Yuanyuan Chen <cyyever@outlook.com>
---------
Signed-off-by: Yuanyuan Chen <cyyever@outlook.com> | [
{
"path": "docs/source/en/run_scripts.md",
"patch": "@@ -104,7 +104,7 @@ torchrun \\\n ...\n ```\n \n-PyTorch supports TPUs, hardware designed to accelerate performance, through the [PyTorch/XLA](https://github.com/pytorch/xla/blob/master/README.md) package. Launch the `xla_spawn.py` script and use `num... | 2025-09-22T11:31:46 |
nodejs/node | 5e23bac9dd689a8d11b0acbb2b6aab874170102c | 2bf6e71d9e6045d6e49c5fb8d7b66d6deb605ddd | src: fix typo in callback.cc
PR-URL: https://github.com/nodejs/node/pull/26337
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> | [
{
"path": "src/api/callback.cc",
"patch": "@@ -220,7 +220,7 @@ MaybeLocal<Value> MakeCallback(Isolate* isolate,\n MaybeLocal<Value> ret =\n InternalMakeCallback(env, recv, callback, argc, argv, asyncContext);\n if (ret.IsEmpty() && env->makecallback_depth() == 0) {\n- // This is only for legacy... | 2019-02-27T15:24:05 |
vercel/next.js | 10b93557818abe0b3875ae7bc62cc8c67f335238 | 8d3e42e556ea2014ca879b4a3586e554700333aa | turbopack: pass ENV vars to route handlers (#48048)
Same as https://github.com/vercel/next.js/pull/47767, we need to pass
the full list of `process.env` keys to the edge invocation so that the
ENV vars are available to the route handlers.
Fixes https://github.com/vercel/turbo/issues/4489
Fixes https://github.com... | [
{
"path": "packages/next-swc/crates/next-core/js/src/entry/app/route.ts",
"patch": "@@ -1,39 +1,39 @@\n // IPC need to be the first import to allow it to catch errors happening during\n // the other imports\n-import startHandler from \"@vercel/turbopack-next/internal/api-server-handler\";\n-import { runEdge... | 2023-04-07T02:33:55 |
huggingface/transformers | 5f891b36cd0f7dae1843aa4a5a7c36d3f69f2ec0 | c05f9d2f0e406912396c4fa1eef7ac53ff033425 | Fix typing of tuples (#41028)
* Fix tuple typing
Signed-off-by: Yuanyuan Chen <cyyever@outlook.com>
* More fixes
Signed-off-by: Yuanyuan Chen <cyyever@outlook.com>
* More fixes
Signed-off-by: Yuanyuan Chen <cyyever@outlook.com>
---------
Signed-off-by: Yuanyuan Chen <cyyever@outlook.com> | [
{
"path": "src/transformers/image_processing_utils_fast.py",
"patch": "@@ -131,7 +131,7 @@ def max_across_indices(values: Iterable[Any]) -> list[Any]:\n return [max(values_i) for values_i in zip(*values)]\n \n \n-def get_max_height_width(images: list[\"torch.Tensor\"]) -> tuple[int]:\n+def get_max_heigh... | 2025-09-22T11:29:07 |
electron/electron | 4bc54ac5e376a6022b37f16f79460055893bdc2a | 5886398f22bbdc1ed9e0bb3c4fca44bdaa82090b | Fix up filenames to include Chrome source | [
{
"path": "filenames.gypi",
"patch": "@@ -128,10 +128,9 @@\n 'atom/browser/atom_browser_main_parts.h',\n 'atom/browser/atom_browser_main_parts_mac.mm',\n 'atom/browser/atom_browser_main_parts_posix.cc',\n- 'atom/browser/atom_process_finder_win.cc',\n- 'atom/browser/atom_process_s... | 2015-10-20T21:33:34 |
nodejs/node | df67cd0fef65f8988e5189769e6e6fc3fb0aa716 | 000788ec23c584c3ded71dae5cab057de0f416bd | inspector: print all listening addresses
Some hostnames have multiple interfaces. Before this commit, the
inspector only printed the first one. Now, it prints them all.
No test. I can't think of a reliable way to test this on the CI matrix.
PR-URL: https://github.com/nodejs/node/pull/26008
Fixes: https://github.com/... | [
{
"path": "src/inspector_socket_server.cc",
"patch": "@@ -93,22 +93,6 @@ const char* MatchPathSegment(const char* path, const char* expected) {\n return nullptr;\n }\n \n-void PrintDebuggerReadyMessage(const std::string& host,\n- int port,\n- con... | 2019-02-08T13:34:43 |
rust-lang/rust | f6b64d153332b2f3d5f8e1116405f4f1d9beea4e | a30f16706a5d0f78a70264d62bb071a07c5c4c83 | Fix link to good first issues | [
{
"path": "src/tools/rust-analyzer/docs/book/src/contributing/README.md",
"patch": "@@ -30,7 +30,7 @@ Discussion happens in this Zulip stream:\n \n # Issue Labels\n \n-* [good-first-issue](https://github.com/rust-lang/rust-analyzer/labels/good%20first%20issue)\n+* [good-first-issue](https://github.com/rust-... | 2025-06-13T05:55:07 |
golang/go | 82481525280e4d0c74cb3f6341ce2f4653a165b8 | 1f9dce749db804a8cce767adde3701378db1461c | test: fix indentation for -shuffle help text
The help text for the go test -shuffle flag is not indented like the
other flags. This patch brings it into alignment.
Fixes #49357
Change-Id: I3f18dc7cd84d5f23099262acf6e2fedccb11379c
Reviewed-on: https://go-review.googlesource.com/c/go/+/361395
Reviewed-by: Bryan C. Mil... | [
{
"path": "src/cmd/go/alldocs.go",
"patch": "@@ -2854,11 +2854,11 @@\n // \t exhaustive tests.\n //\n // \t-shuffle off,on,N\n-// \t\tRandomize the execution order of tests and benchmarks.\n-// \t\tIt is off by default. If -shuffle is set to on, then it will seed\n-// \t\tthe randomizer using the system ... | 2021-11-04T18:14:59 |
huggingface/transformers | c05f9d2f0e406912396c4fa1eef7ac53ff033425 | 55a1eaf6f08c86110b73a7b91cba9792f8c76ef2 | [testing] Fix `qwen2_audio` (#41018)
* fix
* fix
* fix
* fix
* fix
* fix
* fix
* fix
* fix
* fix
* fix
* fix
---------
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": "tests/models/qwen2_audio/test_modeling_qwen2_audio.py",
"patch": "@@ -198,6 +198,7 @@ def test_sdpa_can_dispatch_composite_models(self):\n @require_torch\n class Qwen2AudioForConditionalGenerationIntegrationTest(unittest.TestCase):\n def setUp(self):\n+ cleanup(torch_device, gc_collect... | 2025-09-22T10:45:31 |
vercel/next.js | 8d3e42e556ea2014ca879b4a3586e554700333aa | 40687daed24cf85ccf3174c503bad9042ddc31cc | turbopack: bind server to IPv6 loopback (#47948)
This accomplishes 2 things:
1. binds the turbopack dev server to the IPv6 unspecified address
2. initializes our router with the same hostname/port of the turobpack
server
The first matches the behavior of the Node.js dev server. The IPv6
unspecified address is s... | [
{
"path": "packages/next-swc/crates/next-core/js/package.json",
"patch": "@@ -10,7 +10,7 @@\n \"check\": \"tsc --noEmit\"\n },\n \"dependencies\": {\n- \"@vercel/turbopack-dev-runtime\": \"https://gitpkg.vercel.app/vercel/turbo/crates/turbopack-dev/js?turbopack-230321.3\",\n+ \"@vercel/turbopa... | 2023-04-07T00:58:26 |
electron/electron | 4a4b829cfc91ff50534b9679e3ef3f2c192cdce2 | 50fab0733bbfcb6c504e9230347971c00c27acec | Fix callback handle usage | [
{
"path": "atom/browser/api/atom_api_app.cc",
"patch": "@@ -269,10 +269,21 @@ v8::Local<v8::Value> App::DefaultSession(v8::Isolate* isolate) {\n return v8::Local<v8::Value>::New(isolate, default_session_);\n }\n \n-bool App::MakeSingleInstance(const ProcessSingleton::NotificationCallback& callback) {\n+... | 2015-10-20T01:02:54 |
nodejs/node | 2c6d94f3db89ed4dfa3e68e7e945c10e3662ea41 | af8b92c0731603e5337cca3202603402d345c0a9 | src: fix warnings around node_options
* header explicit usage, order, and reduce use of `*-inl.h`
* pointer -> const reference when possible
* no variable recyclicng
* `std::begin/end` prefered over `instance.begin/end`
* `USE` for explicit unused resaults
PR-URL: https://github.com/nodejs/node/pull/26280
Fixes: http... | [
{
"path": "src/node_config.cc",
"patch": "@@ -1,7 +1,7 @@\n #include \"env-inl.h\"\n #include \"node.h\"\n #include \"node_i18n.h\"\n-#include \"node_options-inl.h\"\n+#include \"node_options.h\"\n #include \"util-inl.h\"\n \n namespace node {",
"additions": 1,
"deletions": 1,
"language": "Unkno... | 2019-02-25T20:42:28 |
rust-lang/rust | 013e06c5ffef976c8f9b197e63155477529ed369 | b5fafd9816c228e27aac30289fafb2d2ebb49069 | Eliminate `build.rs`-generated Aarch64 atomic macros (#951)
Replace `build.rs` Rust generation with macros, using the unstable
`${concat(...)}`.
Fixes: https://github.com/rust-lang/compiler-builtins/issues/947 | [
{
"path": "library/compiler-builtins/builtins-test/tests/lse.rs",
"patch": "@@ -1,4 +1,5 @@\n #![feature(decl_macro)] // so we can use pub(super)\n+#![feature(macro_metavar_expr_concat)]\n #![cfg(all(target_arch = \"aarch64\", target_os = \"linux\", not(feature = \"no-asm\")))]\n \n /// Translate a byte siz... | 2025-06-13T05:27:47 |
golang/go | 1f9dce749db804a8cce767adde3701378db1461c | 978e39e9e647d7359a41ac32992ef6ff5380be08 | cmd/go: download fewer dependencies in 'go mod download'
In modules that specify 'go 1.17' or higher, the go.mod file
explicitly requires modules for all packages transitively imported by
the main module. Users tend to use 'go mod download' to prepare for
testing the main module itself, so we should only download thos... | [
{
"path": "doc/go1.18.html",
"patch": "@@ -90,6 +90,19 @@ <h3 id=\"go-command\">Go command</h3>\n package.\n </p>\n \n+<p><!-- https://golang.org/issue/44435 -->\n+ If the main module's <code>go.mod</code> file\n+ specifies <a href=\"/ref/mod#go-mod-file-go\"><code>go</code> <code>1.17</code></a>\n+ or... | 2021-10-20T18:02:24 |
huggingface/transformers | 55a1eaf6f08c86110b73a7b91cba9792f8c76ef2 | db802aafa447c056956fd7cd01a5bac6200b3acf | Fix Qwen video tests (#41049)
fix test | [
{
"path": "src/transformers/models/qwen2_5_omni/processing_qwen2_5_omni.py",
"patch": "@@ -62,8 +62,10 @@ class Qwen2_5OmniProcessorKwargs(ProcessingKwargs, total=False):\n \"seconds_per_chunk\": 2.0,\n \"position_id_per_seconds\": 25,\n \"use_audio_in_video\": False,\n- ... | 2025-09-22T10:28:11 |
vercel/next.js | 40687daed24cf85ccf3174c503bad9042ddc31cc | 690208b11fd5506d5d7eb842c0bec60bfddadce4 | Update query param prefix to reduce length (#48051)
With the addition of the query prefix we can hit the max length for PCRE
named matches so this reduces the prefix length and ensures we go
through the param name validation still
x-ref: https://twitter.com/simonecervini/status/1644123851003928579 | [
{
"path": "packages/next/src/lib/constants.ts",
"patch": "@@ -1,6 +1,6 @@\n import type { ServerRuntime } from '../../types'\n \n-export const NEXT_QUERY_PARAM_PREFIX = 'nextParam'\n+export const NEXT_QUERY_PARAM_PREFIX = 'nxtP'\n \n // in seconds\n export const CACHE_ONE_YEAR = 31536000",
"additions": ... | 2023-04-07T00:52:24 |
electron/electron | 8288a224587a5634a7057dbbbeafe838d012a4a4 | 88dd1480cc7601cf6f96923018eeaffdcbeef9c9 | Fix build against old OneShotTimer | [
{
"path": "atom/browser/process_singleton_posix.cc",
"patch": "@@ -503,7 +503,7 @@ class ProcessSingleton::LinuxWatcher\n // reads.\n size_t bytes_read_;\n \n- base::OneShotTimer timer_;\n+ base::OneShotTimer<SocketReader> timer_;\n \n DISALLOW_COPY_AND_ASSIGN(SocketReader);\n };",
"... | 2015-10-19T21:07:23 |
huggingface/transformers | 8a2f24a321912efe9821991393cb28dcf88d0283 | ebbcf00ad1b06fa87effe179d128e73390255844 | Making compute_loss_func always take priority in Trainer (#40632)
* logger warn, if-else logic improved
* redundant if condition fix | [
{
"path": "src/transformers/trainer.py",
"patch": "@@ -4115,16 +4115,27 @@ def compute_loss(\n if self.args.past_index >= 0:\n self._past = outputs[self.args.past_index]\n \n- if labels is not None:\n+ # User-defined compute_loss function\n+ if self.compute_loss_func... | 2025-09-22T09:47:34 |
golang/go | 978e39e9e647d7359a41ac32992ef6ff5380be08 | 99699d14fe538f6886948ee6d3cc57f7f2a9bff7 | crypto/elliptic: tolerate large inputs to IsOnCurve methods
The behavior of all Curve methods and package functions when provided an
off-curve point is undefined, except for IsOnCurve which should really
always return false, not panic.
Change-Id: I52f65df25c5af0314fef2c63d0778db72c0f1313
Reviewed-on: https://go-revie... | [
{
"path": "src/crypto/elliptic/elliptic_test.go",
"patch": "@@ -241,6 +241,16 @@ func testMarshalCompressed(t *testing.T, curve Curve, x, y *big.Int, want []byte\n \t}\n }\n \n+func TestLargeIsOnCurve(t *testing.T) {\n+\ttestAllCurves(t, func(t *testing.T, curve Curve) {\n+\t\tlarge := big.NewInt(1)\n+\t\tl... | 2021-11-04T20:08:08 |
nodejs/node | af8b92c0731603e5337cca3202603402d345c0a9 | 31be55203fd220142cdefdf957a5a71374c07876 | src: refactor node options parsers to mitigate MSVC bug
PR-URL: https://github.com/nodejs/node/pull/26280
Fixes: https://github.com/nodejs/node/issues/25593
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> | [
{
"path": "src/node.cc",
"patch": "@@ -546,7 +546,7 @@ int ProcessGlobalArgs(std::vector<std::string>* args,\n std::vector<std::string> v8_args;\n \n Mutex::ScopedLock lock(per_process::cli_options_mutex);\n- options_parser::PerProcessOptionsParser::instance.Parse(\n+ options_parser::Parse(\n ar... | 2019-02-23T22:21:56 |
vercel/next.js | 690208b11fd5506d5d7eb842c0bec60bfddadce4 | 1e81af047d7bbd6324a4630e33d6200f2d086e4a | fix: show error when "next start" is used with "output" config (#47989)
fix #47334
fix NEXT-861 | [
{
"path": "docs/api-reference/cli.md",
"patch": "@@ -82,7 +82,7 @@ Or using the `PORT` environment variable:\n PORT=4000 npx next dev\n ```\n \n-> Note: `PORT` can not be set in `.env` as booting up the HTTP server happens before any other code is initialized.\n+> Note: `PORT` cannot be set in `.env` as boo... | 2023-04-07T00:28:27 |
golang/go | 99699d14fe538f6886948ee6d3cc57f7f2a9bff7 | 6d1fffac6388d965616520eb23f36885760d5b66 | cmd/compile: fix TypeDefn to deal with node with no Ntype set
Adjust TypeDefn(), which is used by reportTypeLoop(), to work for nodes
with no Ntype set (which are all nodes in -G=3 mode). Normally,
reportTypeLoop() would not be called, because the types2 typechecker
would have already caught it. This is a possible way... | [
{
"path": "src/cmd/compile/internal/ir/name.go",
"patch": "@@ -146,7 +146,10 @@ func (n *Name) editChildren(edit func(Node) Node) {}\n // That is, given \"type T Defn\", it returns Defn.\n // It is used by package types.\n func (n *Name) TypeDefn() *types.Type {\n-\treturn n.Ntype.Type()\n+\tif n.Ntype != ... | 2021-11-04T18:59:17 |
huggingface/transformers | ebbcf00ad1b06fa87effe179d128e73390255844 | 67097bf34055c55b886dc92014fd628c9a70e168 | Adding support for Qwen3Omni (#41025)
* Add Qwen3Omni
* make fix-copies, import properly
* nit
* fix wrong setup. Why was audio_token_id renamed ?
* upds
* more processing fixes
* yup
* fix more generation tests
* down to 1?
* fix import issue
* style, update check repo
* up
* fix quality at my best
* fin... | [
{
"path": "docs/source/en/_toctree.yml",
"patch": "@@ -1143,6 +1143,8 @@\n title: Qwen2Audio\n - local: model_doc/qwen2_vl\n title: Qwen2VL\n+ - local: model_doc/qwen3_omni_moe\n+ title: Qwen3-Omni-MoE\n - local: model_doc/qwen3_vl\n title: Qwen3VL\n - l... | 2025-09-21T21:46:27 |
nodejs/node | 48ab54c3237753397bb03f6a931247a6d8b031bf | 28db96f31c2724b16d6b9bec19c600023365b7cc | report: use triggerReport() to handle exceptions
This commit uses the triggerReport() binding to handle
uncaught exceptions and removes the custom onUncaughtException
function.
PR-URL: https://github.com/nodejs/node/pull/26386
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: James M Snell <jasnell@gmail.com> | [
{
"path": "lib/internal/process/execution.js",
"patch": "@@ -116,7 +116,10 @@ function createFatalException() {\n report.syncConfig(config, false);\n if (Array.isArray(config.events) &&\n config.events.includes('exception')) {\n- report.onUnCaughtException(er ? e... | 2019-03-01T22:10:25 |
vercel/next.js | 1e81af047d7bbd6324a4630e33d6200f2d086e4a | fc29a13ad2ff8c48379e92c67d10c968b706f62a | Change metadata routes suffix to number and chars (#48026)
Follow up of #47985
Change `-\d{6}` to `-[a-z0-9]{6}` which reduces the chance of hash
collision | [
{
"path": "packages/next/src/lib/metadata/get-metadata-route.ts",
"patch": "@@ -8,13 +8,13 @@ import { djb2Hash } from '../../shared/lib/hash'\n *\n * e.g.\n * /app/open-graph.tsx -> /open-graph/route\n- * /app/(post)/open-graph.tsx -> /open-graph/route-123456\n+ * /app/(post)/open-graph.tsx -> /open-gra... | 2023-04-06T23:38:02 |
huggingface/transformers | 67097bf34055c55b886dc92014fd628c9a70e168 | 8076e755e532dcf4083fc7a869be8d3418b9078c | Fix benchmark runner argument name (#41012) | [
{
"path": ".github/workflows/benchmark_v2.yml",
"patch": "@@ -12,11 +12,6 @@ on:\n required: false\n type: string\n default: ''\n- upload_to_hub:\n- description: 'Uploading results to a HuggingFace Dataset'\n- required: false\n- type: string\n- defaul... | 2025-09-20T08:53:56 |
electron/electron | fb8ca33d5d88ff09713dd6dde65930a9051cb58a | 2c4a24d26b8b2353c13fb3bc1ccc963c1107d377 | Add ELECTRON_ENABLE_STACK_DUMPING env
It enables in-process stack dumping, which is convenient for debugging. | [
{
"path": "atom/app/atom_main_delegate.cc",
"patch": "@@ -71,10 +71,13 @@ bool AtomMainDelegate::BasicStartupComplete(int* exit_code) {\n // Logging with pid and timestamp.\n logging::SetLogItems(true, false, true, false);\n \n-#if defined(DEBUG) && defined(OS_LINUX)\n // Enable convient stack printin... | 2015-10-20T05:02:48 |
golang/go | 6d1fffac6388d965616520eb23f36885760d5b66 | fc5e8cd6c9de00f8d7da645343934c548e62223e | runtime: set and clear only the relevant bits in allocToCache
Currently allocToCache ham-handedly calls pageAlloc.allocRange on the
full size of the cache. This is fine as long as scavenged bits are never
set when alloc bits are set. This is true right now, but won't be true
as of the next CL.
This change makes alloc... | [
{
"path": "src/runtime/mpagecache.go",
"patch": "@@ -123,9 +123,10 @@ func (p *pageAlloc) allocToCache() pageCache {\n \t}\n \tc := pageCache{}\n \tci := chunkIndex(p.searchAddr.addr()) // chunk index\n+\tvar chunk *pallocData\n \tif p.summary[len(p.summary)-1][ci] != 0 {\n \t\t// Fast path: there's free pa... | 2021-10-18T18:22:02 |
nodejs/node | a0778a97e19fb6e661a4277f18f758443d20470c | 6c38fcff1d074e058d427e817a0a61c0f03e0aba | repl: use object writer for thrown errors
This makes us use the defaults that were set for the REPL, i.e.
aligns with the printing of expression completion values, and in
particular enables color support.
PR-URL: https://github.com/nodejs/node/pull/26361
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-... | [
{
"path": "lib/repl.js",
"patch": "@@ -422,7 +422,7 @@ function REPLServer(prompt,\n (_, pre, line) => pre + (line - 1));\n }\n }\n- errStack = util.inspect(e);\n+ errStack = self.writer(e);\n \n // Remove one line error braces to... | 2019-02-28T10:03:37 |
vercel/next.js | fc29a13ad2ff8c48379e92c67d10c968b706f62a | 2a68ecf5094f03fb7158961f8e809010de3fd39e | Fix query normalize on edge deploy (#48045)
Fixes:
https://github.com/vercel/next.js/actions/runs/4632507508/jobs/8196861461#step:6:464 | [
{
"path": "packages/next/src/server/web-server.ts",
"patch": "@@ -23,6 +23,7 @@ import { isDynamicRoute } from '../shared/lib/router/utils'\n import { interpolateDynamicPath, normalizeVercelUrl } from './server-utils'\n import { getNamedRouteRegex } from '../shared/lib/router/utils/route-regex'\n import { I... | 2023-04-06T22:01:04 |
huggingface/transformers | 8076e755e532dcf4083fc7a869be8d3418b9078c | 022c882e1432af66ef55337b5c91ad2d838365ca | Update after #41007 (#41014)
* fix
* fix
---------
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": "tests/models/phimoe/test_modeling_phimoe.py",
"patch": "@@ -14,7 +14,6 @@\n \n \"\"\"Testing suite for the PyTorch PhiMoE model.\"\"\"\n \n-import copy\n import unittest\n \n from parameterized import parameterized\n@@ -59,6 +58,7 @@ def forward(\n past_key_values=self.cache,\n ... | 2025-09-19T19:55:46 |
electron/electron | e3535d664b49bcc0a88b9d73dd297840e66d4f61 | b3c7e2bf337fe1a013b46acd625ae16e733004d3 | Fixed linter issues but now the code looks awful | [
{
"path": "atom/browser/atom_browser_context.cc",
"patch": "@@ -61,7 +61,7 @@ AtomBrowserContext::AtomBrowserContext(const std::string& partition,\n bool in_memory)\n : brightray::BrowserContext(partition, in_memory),\n job_factory_(new AtomURLRequestJobFacto... | 2015-10-19T20:12:17 |
golang/go | 9b2dd1f7714b38f1bfe25676357b62c1bb4cad64 | 961aab26bffece299f1528b44d260ea0a921ac56 | internal/fuzz: fix internal error handling
This doesn't handle every possible scenario,
but improves the one we can control. For example,
if the worker panics for some reason, we have no
way of knowing whether the panic occurred in an
expected way (while executing the fuzz target) or
due to an internal error in the wo... | [
{
"path": "src/internal/fuzz/worker.go",
"patch": "@@ -153,7 +153,7 @@ func (w *worker) coordinate(ctx context.Context) error {\n \t\t\t\tWarmup: input.warmup,\n \t\t\t\tCoverageData: input.coverageData,\n \t\t\t}\n-\t\t\tentry, resp, err := w.client.fuzz(ctx, input.entry, args)\n+\t\t\tentry, resp, i... | 2021-11-03T18:44:16 |
huggingface/transformers | 022c882e1432af66ef55337b5c91ad2d838365ca | 966b3dbcbefaa358ce1fe51b687b756fd5b877ed | Fix Glm4v test (#41011)
fix | [
{
"path": "tests/models/glm4v_moe/test_modeling_glm4v_moe.py",
"patch": "@@ -297,6 +297,7 @@ def test_inputs_embeds_matches_input_ids(self):\n \n \n @require_torch\n+@slow\n class Glm4vMoeIntegrationTest(unittest.TestCase):\n model = None\n \n@@ -310,7 +311,8 @@ def get_model(cls):\n \n @classmethod... | 2025-09-19T16:54:26 |
vercel/next.js | 2a68ecf5094f03fb7158961f8e809010de3fd39e | 79031e608a1b871ab4f3f3228cc1a66d93bf470b | Fix stable release start (#48044)
x-ref:
https://github.com/vercel/next.js/actions/runs/4632849191/jobs/8197395820 | [
{
"path": "scripts/start-release.js",
"patch": "@@ -71,6 +71,7 @@ async function main() {\n child.stdin.write(ansiEscapes.cursorDown(1))\n }\n child.stdin.write('\\n')\n+ child.stdin.write('y\\n')\n }\n await child\n ",
"additions": 1,
"deletions": 0,
"language": "JavaScript... | 2023-04-06T21:52:56 |
nodejs/node | ccaebdef66f62775ff8cc5d6fa21881a883c08fc | 1d97374f69b53c6f518a975c1029cac43a308d32 | esm: process proxy Symbol.toString fix
PR-URL: https://github.com/nodejs/node/pull/25963
Reviewed-By: John-David Dalton <john.david.dalton@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Gus Caplan <me@gus.host>
Reviewed-By: Tiancheng "Timothy" Gu <timothygu99@gmail.com>
Reviewed-By: Ruben Bri... | [
{
"path": "lib/internal/bootstrap/node.js",
"patch": "@@ -309,6 +309,12 @@ function setupProcessObject() {\n const origProcProto = Object.getPrototypeOf(process);\n Object.setPrototypeOf(origProcProto, EventEmitter.prototype);\n EventEmitter.call(process);\n+ Object.defineProperty(process, Symbol.toS... | 2019-02-06T15:42:24 |
electron/electron | 9d8bff7d0458e43332fa0a912b627a65d37b52d0 | 859ef0b2980ef3f0518f38148a34cc019d95efbc | Update to brightray.gyp : libresolv
In Following with this PR https://github.com/atom/brightray/pull/153
@joshaber helped me to work out this was causing a build error Xcode 7 for libresolv | [
{
"path": "brightray/brightray.gyp",
"patch": "@@ -134,7 +134,7 @@\n '$(SDKROOT)/System/Library/Frameworks/Foundation.framework',\n '$(SDKROOT)/System/Library/Frameworks/Security.framework',\n '$(SDKROOT)/System/Library/Frameworks/SystemConfiguration.fra... | 2015-10-19T19:36:08 |
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.