repo
stringclasses
15 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
64.3k
files
listlengths
1
300
timestamp
timestamp[s]date
2013-03-13 20:45:00
2026-04-11 07:48:46
huggingface/transformers
a50b099a2f4b985dc665c59180b2eb65d786044a
f8786de5e0cde36cc591e963e4332bf70460f752
[LW-DETR] Fix training (#44441) * Fix training * Investigate more * Fix LW-DETR two-stage bbox gradient flow * Add training scripts * Remove unwanted files * pad class scores as well * Update pyproject * Add progress * Remove scripts * Restore pyproject * Restore config docstring * Restore config docstring ...
[ { "path": "src/transformers/models/lw_detr/configuration_lw_detr.py", "patch": "@@ -179,7 +179,7 @@ def __init__(\n batch_norm_eps=1e-5,\n # decoder\n d_model=256,\n- dropout=0.1,\n+ dropout=0.0,\n decoder_ffn_dim=2048,\n decoder_n_points=4,\n de...
2026-03-09T15:36:02
golang/go
5cb5437b6daee8971be0bd393535e263333ef311
7472b4c324970895b1d44f39c284d72c40d4b621
cmd/go/internal/vcsweb/vcstest: skip bzr test if deps not found The linux-arm64 trybots are consistently failing with vcstest_test.go:155: 2025/01/30 21:50:41 hello.txt: > handle bzr > env BZR_EMAIL='Russ Cox <rsc@google.com>' > env EMAIL='Russ Cox <rsc@google.com>' > bzr init-repo...
[ { "path": "src/cmd/go/internal/vcweb/vcstest/vcstest_test.go", "patch": "@@ -158,6 +158,13 @@ func TestScripts(t *testing.T) {\n \t\t\t\tif notInstalled := (vcweb.ServerNotInstalledError{}); errors.As(err, &notInstalled) || errors.Is(err, exec.ErrNotFound) {\n \t\t\t\t\tt.Skip(err)\n \t\t\t\t}\n+\n+\t\t\t\t...
2025-02-04T19:56:38
vercel/next.js
04a164ffdfbcf8307fa46ae9d0566d4c7ce3225f
dcd5ed0ae81cee5f3ea36e9742d30260b35f7f29
fix: Rspack not skip .d.ts file (#79285) Next.js skips resolving `.d.ts` files. Rspack can achieve the same behavior by adding the `resolve.restrictions: [/^(?!.*\.d\.ts$).*$/]` configuration. Following test cases will be passed: - test/integration/typescript-paths/test/index.test.js - typescript paths default behavi...
[ { "path": "packages/next/src/build/webpack-config.ts", "patch": "@@ -779,6 +779,8 @@ export default async function getBaseWebpackConfig(\n ].filter(Boolean) as webpack.ResolvePluginInstance[],\n ...((isRspack && jsConfigPath\n ? {\n+ // Skip paths that are routed to a .d.ts file\n+ ...
2025-05-23T20:13:21
facebook/react
1ad0460693e61646c05d7a214be823ebcf7b6c3a
2b4a1d86ffa16863ba6e4ccea33151a3abe589c3
[sprout] Add shared runtime, improve error reporting --- I added ~20 more tests to Sprout to get more of a feel for what the test framework would need to support all fixtures. I'm relatively confident that the approach outlined in [the original workplace post](https://fburl.com/workplace/ftu8woch) works to migra...
[ { "path": "compiler/forget/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/console-readonly.expect.md", "patch": "@@ -2,8 +2,10 @@\n ## Input\n \n ```javascript\n+import { shallowCopy } from \"shared-runtime\";\n+\n function Component(props) {\n- const x = makeObject(props);\n+ const x ...
2023-08-17T17:28:08
huggingface/transformers
f8786de5e0cde36cc591e963e4332bf70460f752
09677910aca4c64e86ee121a93ea18fc8299a081
fix(tokenizer): Only strip Fast from class names in AutoTokenizer if used as a suffix (#44443) * fix: Prevent AutoTokenizer from garbling class names * fix: Fix ci/circleci: check_code_quality --------- Co-authored-by: Matt <Rocketknight1@users.noreply.github.com>
[ { "path": "src/transformers/models/auto/tokenization_auto.py", "patch": "@@ -680,8 +680,8 @@ def from_pretrained(\n and config_model_type is not None\n and config_model_type != \"\"\n and TOKENIZER_MAPPING_NAMES.get(config_model_type) is not None\n- and TOKENIZ...
2026-03-09T15:02:46
golang/go
ef7f09149b4af54839e191841ddbfaff8640a484
b07b20fbb591ac77158e1089299ce5acad71ffde
cmd/compile: prefer hv2 <= 127 over hv2 < 128 This is shorter to encode on AMD64/x86. Shrinks a few functions and doesn't seem to cause any regressions. No size impact on other archs. Covers a bit more than CL 639935. compilecmp linux/amd64: unicode/utf8 unicode/utf8.RuneCountInString changed unicode/utf8.RuneCount...
[ { "path": "src/cmd/compile/internal/walk/range.go", "patch": "@@ -342,7 +342,10 @@ func walkRange(nrange *ir.RangeStmt) ir.Node {\n \n \t\t// if hv2 < utf8.RuneSelf\n \t\tnif := ir.NewIfStmt(base.Pos, nil, nil, nil)\n-\t\tnif.Cond = ir.NewBinaryExpr(base.Pos, ir.OLT, hv2, ir.NewInt(base.Pos, utf8.RuneSelf))...
2025-01-13T20:35:04
ollama/ollama
8b6e5baee71c6a1588cf062b150f229b2436e1d8
75d17fc6c20514417193882de7a0ece75ee301d1
CI: Set up temporary opt-out Vulkan support (#12614) Initially Vulkan support in Ollama will require building from source. Once it is more thoroughly tested and we have fixed any critical bugs, then we can bundle Vulkan into the official binary releases.
[ { "path": ".github/workflows/release.yaml", "patch": "@@ -237,13 +237,13 @@ jobs:\n include:\n - os: linux\n arch: amd64\n- target: archive\n+ target: archive_novulkan\n - os: linux\n arch: amd64\n target: rocm\n ...
2025-10-15T21:18:01
electron/electron
9028bb79a85fedf64230c2f1c6a29ab072c98c20
8004cb8722c8d52f4cd553bbaea86750149e8ca4
fix: empty result of `webContents.getUserAgent()` (#35069) fix: empty result of webContents.getUserAgent()
[ { "path": "shell/browser/api/electron_api_web_contents.cc", "patch": "@@ -675,10 +675,8 @@ WebContents::WebContents(v8::Isolate* isolate,\n auto session = Session::CreateFrom(isolate, GetBrowserContext());\n session_.Reset(isolate, session.ToV8());\n \n- absl::optional<std::string> user_agent_override ...
2022-07-29T15:09:47
vercel/next.js
3f3539269ac8b78072f0389823f43b650638f4d3
6679022c95bfa5a273a410bc81773f474c6acec9
[turbopack] Fix the stubbed out implementation of `signature` so that it works in a web worker. (#79509) ## What Fix the stubbed out runtime hook for react HMR to correctly support both the `register` and `signature` APIs, by moving the stubs into the runtime directly. This way TSC can tell us we failed to uphold th...
[ { "path": "turbopack/crates/turbopack-ecmascript-runtime/js/src/browser/runtime/base/dev-base.ts", "patch": "@@ -129,15 +129,6 @@ const getOrInstantiateModuleFromParent: GetOrInstantiateModuleFromParent<\n })\n }\n \n-function getDevWorkerBlobURL(chunks: ChunkPath[]) {\n- return getWorkerBlobURL(\n- c...
2025-05-23T16:44:03
facebook/react
5448b33eb01dc334bf3a1beeada77d47902683fb
d6dea6b9b90c790e69dfce7e7f0ceeb9d1bfe5d0
[yarn workspaces] Add typescript dependencies to tsconfig --- Previously, I used `yarn workspace build fixture-test-utils` and `yarn workspace build babel-plugin-react-forget` to recompile dependencies on sprout. However, tsc supports project references which was intended to solve this problem https://www.typesc...
[ { "path": "compiler/forget/packages/babel-plugin-react-forget/tsconfig.json", "patch": "@@ -2,7 +2,10 @@\n \"extends\": \"@tsconfig/node16-strictest/tsconfig.json\",\n \"compilerOptions\": {\n \"declaration\": true,\n+ \"rootDir\": \"src\",\n \"outDir\": \"dist\",\n+ // https://github.com/...
2023-08-16T19:38:30
huggingface/transformers
09677910aca4c64e86ee121a93ea18fc8299a081
ce7efd8f19c39413a4692268b6903560178e5e3d
[tie weights] 🚨 If both weights are present with same weights, still tie them (#44497) * add equality check * fix * fix tests * compare shapes as well, just in case * oups caps
[ { "path": "src/transformers/modeling_utils.py", "patch": "@@ -397,7 +397,7 @@ def remove_tied_weights_from_state_dict(\n ) -> dict[str, torch.Tensor]:\n \"\"\"\n Remove all tied weights from the given `state_dict`, making sure to keep only the main weight that `model`\n- will expect when reloadin...
2026-03-09T15:00:22
ollama/ollama
8fafc8af77105030ce485c96c355dafce316ec24
c3c85aa06c1b7dcf8d7d811a4ebdf53d407faceb
ml/backend/ggml: NVML fallback for unified memory GPUs (#12619) * Simplify NVML fallback for unified memory GPUs Remove device-specific checks and environment variable dependency for NVML_ERROR_NOT_SUPPORTED fallback. When NVML doesn't support memory queries, unconditionally use /proc/meminfo instead of checking devi...
[ { "path": "llama/patches/0029-NVML-fallback-for-unified-memory-GPUs.patch", "patch": "@@ -0,0 +1,137 @@\n+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001\n+From: Santosh Bhavani <santosh.bhavani@live.com>\n+Date: Wed, 15 Oct 2025 09:29:51 -0700\n+Subject: [PATCH] NVML fallback for uni...
2025-10-15T18:40:06
golang/go
ad7b46ee4ac1cee5095d64b01e8cf7fcda8bee5e
d96fd2e758d79a60f2c3df46e9b15e9ad084a5cb
go/parser, go/types, syntax, types2: report invalid uses of ... by parsers Check correct use of ...'s in parameter lists in parsers. This allows the type checkers to assume correct ASTs with respect to ... use. Adjust some error messages: if a ... is used in a result parameter list, the error is now more accurate. E...
[ { "path": "src/cmd/compile/internal/syntax/parser.go", "patch": "@@ -650,7 +650,7 @@ func (p *parser) typeDecl(group *Group) Decl {\n \t\t\t\t// d.Name \"[\" pname ...\n \t\t\t\t// d.Name \"[\" pname ptype ...\n \t\t\t\t// d.Name \"[\" pname ptype \",\" ...\n-\t\t\t\td.TParamList = p.paramList(pname, ptype,...
2024-11-25T21:08:34
electron/electron
7f757075bc5ac35c751aecf0dd4a94d0daf21f7d
674596d11e5ad72b6651073619d282fbfea74ae1
docs: update E21 release date (#35122) * docs: update E21 release date * chore: fix lint Co-authored-by: Keeley Hammond <khammond@slack-corp.com>
[ { "path": "docs/tutorial/electron-timelines.md", "patch": "@@ -24,10 +24,11 @@ check out our [Electron Versioning](./electron-versioning.md) doc.\n | 14.0.0 | -- | 2021-May-27 | 2021-Aug-31 | M93 | v14.17 | 🚫 |\n | 15.0.0 | 2021-Jul-20 | 2021-Sep-01 | 2021-Sep-21 | M94 | v16.5 | 🚫 |\n | 16.0.0 | 2021-Sep-...
2022-07-29T04:54:48
huggingface/transformers
ce7efd8f19c39413a4692268b6903560178e5e3d
86eafab5fb1b305d4f63a442b7c525e83535f946
Fix AMD Docker image build timeout by pinning Flash Attention commit (#44546) pin fa commit
[ { "path": "docker/transformers-pytorch-amd-gpu/Dockerfile", "patch": "@@ -36,10 +36,12 @@ RUN python3 -m pip uninstall -y kernels\n # On ROCm, torchcodec is required to decode audio files and 0.4 or 0.6 fails\n RUN python3 -m pip install --no-cache-dir \"torchcodec==0.7\"\n \n-# Install flash attention from...
2026-03-09T14:37:50
vercel/next.js
a2d4733276724b426a93e271e0afc3934074e935
b6251f7e4bf3268fb3393c1da9045f9156d96ce6
Turbopack: leave `chunks` in `rscModuleMapping` empty (#79511) Previously, `clientReferenceManifest.rscModuleMapping.*.chunks` would list the RSC entry, such as `server/app/encryption/page.js` which contains ```js const CHUNK_PUBLIC_PATH = "server/app/encryption/page.js"; const runtime = require("../../chunks/ssr/[tur...
[ { "path": "crates/next-api/src/app.rs", "patch": "@@ -1459,7 +1459,6 @@ impl AppEndpoint {\n entry_name: app_entry.original_name.clone(),\n client_references,\n client_references_chunks,\n- rsc_app_entry_chunks: app_entry_chunks,...
2025-05-23T12:39:22
ollama/ollama
3dcfd5f69e186ccd186a94848e870a87828be68a
53a969d509cdf7472622c648d03525b5150ddbc0
llm: Perform eviction when num_gpu is set with new estimates Currently, if you set num_gpu then this forces the model to load with that number of layers in the current configuration. This is done regardless of any other information, which means that no eviction is performed even if another model is loaded. This behav...
[ { "path": "llm/server.go", "patch": "@@ -928,7 +928,7 @@ func (s *ollamaServer) createLayout(systemInfo discover.SystemInfo, systemGPUs d\n \t\t\t}\n \t\t}\n \n-\t\tlibraryGpuLayers := assignLayers(layers, gl, s.options.NumGPU, lastUsedGPU)\n+\t\tlibraryGpuLayers := assignLayers(layers, gl, requireFull, s.o...
2025-10-15T00:21:16
electron/electron
62001dc6cbfd78a82d2fca849ca5eb0504cd0b71
ff804e3a748c72f4812af8ccf3b1d7442a468f4a
fix: crash on startup in X11 (#35075) Fixes #34996.
[ { "path": "shell/browser/electron_browser_main_parts.cc", "patch": "@@ -278,12 +278,6 @@ void ElectronBrowserMainParts::PostEarlyInitialization() {\n }\n \n int ElectronBrowserMainParts::PreCreateThreads() {\n-#if defined(USE_AURA)\n- if (!display::Screen::GetScreen()) {\n- screen_ = views::CreateDeskto...
2022-07-27T04:44:44
huggingface/transformers
86eafab5fb1b305d4f63a442b7c525e83535f946
adc0d9aee00f5b963ddd09bfc84d55ccda19581c
Make `_prepare_input_fn` and `_prepare_output_fn` instance methods (#44499) fix: make _prepare_input_fn and _prepare_output_fn regular methods Co-authored-by: Ferdinand Mom <47445085+3outeille@users.noreply.github.com>
[ { "path": "src/transformers/integrations/tensor_parallel.py", "patch": "@@ -648,11 +648,11 @@ def __init__(self, device_mesh=None, rank=None, empty_param=None):\n self.device_mesh = device_mesh\n self.empty_param = empty_param\n \n- @staticmethod\n- def _prepare_input_fn(mod, inputs, d...
2026-03-09T14:29:32
facebook/react
d6dea6b9b90c790e69dfce7e7f0ceeb9d1bfe5d0
9d1a842a833bc16766a2ae34266934cf287949fc
[sprout][fixtures] Annotate some fixtures --- This PR is an example of how to update fixture to add sprout annotations. Running with `yarn sprout --verbose --filter` shows the fixture outputs. ``` PASS array-access-assignment ok [[2],[[2],[],[3]]] PASS array-expression-spread ok [0,1,2,3,null,4,5,6,"z...
[ { "path": "compiler/forget/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/array-access-assignment.expect.md", "patch": "@@ -13,8 +13,8 @@ function foo(a, b, c) {\n \n export const FIXTURE_ENTRYPOINT = {\n fn: foo,\n- params: [\"TodoAdd\"],\n- isComponent: \"TodoAdd\",\n+ params: [1,...
2023-08-16T19:38:29
vercel/next.js
278f0f099cb67918bb4855cdaf52c97ecfb6c6c6
ded56f952154a40dcfe53bdb38c73174e9eca9e5
fix(dev-overlay): Better handle edge-case file paths in launchEditor (#79526) Without this, some files may fail to open correctly. Internal discussion: https://vercel.slack.com/archives/C07UWUAF95Z/p1747261772629689
[ { "path": "packages/next/src/client/components/react-dev-overlay/utils/launch-editor.test.ts", "patch": "@@ -0,0 +1,8 @@\n+import { escapeApplescriptStringFragment } from './launch-editor'\n+\n+describe('applescript string escaping', () => {\n+ it('should escape strings correctly', () => {\n+ const resu...
2025-05-23T00:55:24
golang/go
530c829270bef744b3acae7891a0635874af3fd4
4160ebf28f69a738203571bba6abab6ec0913080
syscall: use consistent message for ESTALE on Linux For some reason the ESTALE error message differed on Linux systems. On Linux strerror normally returns "Stale file handle" for ESTALE, except possibly in the en_GB locale. The mkerrors.sh script sets LC_ALL=C, so it should always produces "stale file handle". However...
[ { "path": "src/syscall/zerrors_linux_386.go", "patch": "@@ -1467,7 +1467,7 @@ var errors = [...]string{\n \t113: \"no route to host\",\n \t114: \"operation already in progress\",\n \t115: \"operation now in progress\",\n-\t116: \"stale NFS file handle\",\n+\t116: \"stale file handle\",\n \t117: \"structure ...
2025-01-17T17:59:50
ollama/ollama
850da848c58869474c97fc5c4ae58d27f05b65a1
2aba569a2a593f56651ded7f5011480ece70c80f
logs: fix bogus "0 MiB free" log line (#12590) On the llama runner, after the recent GGML bump a new log line reports incorrect 0 MiB free after our patch to remove memory from the props. This adjusts the llama.cpp code to fetch the actual free memory of the active device.
[ { "path": "llama/llama.cpp/src/llama.cpp", "patch": "@@ -267,10 +267,12 @@ static struct llama_model * llama_model_load_from_file_impl(\n for (auto * dev : model->devices) {\n ggml_backend_dev_props props;\n ggml_backend_dev_get_props(dev, &props);\n+ size_t memory_free, memory_to...
2025-10-14T18:26:28
electron/electron
ff804e3a748c72f4812af8ccf3b1d7442a468f4a
9416091180e18c1ba1f625f86505332a018d9049
fix: use win_clang_x64 binary for x86 extract symbols (#35078) fix: use win_clang_x64 for x86 extract symbols
[ { "path": "appveyor.yml", "patch": "@@ -170,19 +170,16 @@ build_script:\n - python %LOCAL_GOMA_DIR%\\goma_ctl.py stat\n - python3 electron/build/profile_toolchain.py --output-json=out/Default/windows_toolchain_profile.json\n - 7z a node_headers.zip out\\Default\\gen\\node_headers\n- # Temporarily dis...
2022-07-27T04:33:07
huggingface/transformers
adc0d9aee00f5b963ddd09bfc84d55ccda19581c
7d6fa9352a9bd65ade47bbd6f7c79d868c40ed74
Fix: Conditionally import `torch.distributed.fsdp` in `trainer_seq2seq.py` (#44507) * fix: conditionally import torch.distributed.fsdp in trainer_seq2seq * fix: sort imports in trainer_seq2seq.py --------- Co-authored-by: DELUXA <you@example.com> Co-authored-by: Ferdinand Mom <47445085+3outeille@users.noreply.githu...
[ { "path": "src/transformers/trainer_seq2seq.py", "patch": "@@ -20,7 +20,6 @@\n \n import torch\n from torch import nn\n-from torch.distributed.fsdp import FullyShardedDataParallel\n from torch.utils.data import Dataset\n \n from .generation.configuration_utils import GenerationConfig\n@@ -30,6 +29,9 @@\n fr...
2026-03-09T14:27:19
vercel/next.js
3235c6f87011fcdfc5de863d12029948314fe00a
ed2db11e4788337736d3001f1de718e0473c6299
[turbopack] Fix a buggy serializer (#79520) Because regexes aren't naively serializable, we use a simple alternate representation and then just re-parse them when deserializing. A trivial bug was introduced in #78251 that has broken deserialization. Fix that and add a unit test. My only defense for such a silly mi...
[ { "path": "Cargo.lock", "patch": "@@ -9508,6 +9508,7 @@ dependencies = [\n \"regex\",\n \"regress\",\n \"serde\",\n+ \"serde_json\",\n \"turbo-tasks\",\n \"turbo-tasks-build\",\n ]", "additions": 1, "deletions": 0, "language": "Unknown" }, { "path": "turbopack/crates/turbo-esregex/C...
2025-05-22T22:19:38
facebook/react
9d1a842a833bc16766a2ae34266934cf287949fc
c4ae2a48dcd81ccd4a82326d7d3b9e7c9b3b457f
[sprout] Enable sprout on all new fixtures --- Rename `SproutOnlyFilterTodoRemove.ts` to `SproutTodoFilter.ts`. I've tried to group the skipped fixtures by difficulty and add comments about what need to be done, also happy to change the structure of this. From this point, sprout will run on all new fixtures by ...
[ { "path": "compiler/forget/packages/sprout/README.md", "patch": "@@ -1,33 +1,23 @@\n-## Sprout\n+## Sprout 🌱\n React Forget test framework that executes compiler fixtures.\n \n-Currently, Sprout runs each fixture with a known set of inputs and annotations. We hope to add fuzzing capabilities to Sprout, syn...
2023-08-16T19:38:28
golang/go
4160ebf28f69a738203571bba6abab6ec0913080
dcebb675b3fa0fd8d3056323a9f7f857ce4a2105
net: permit Interface with no Name On darwin the utun interface sometimes has no name. Fixes #71064 Change-Id: Iec51641880515f8bd3f97bd892c26f68fd588fa3 Reviewed-on: https://go-review.googlesource.com/c/go/+/641855 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Auto-Submit:...
[ { "path": "src/internal/routebsd/interface_classic.go", "patch": "@@ -20,9 +20,7 @@ func (w *wireFormat) parseInterfaceMessage(b []byte) (Message, error) {\n \t\treturn nil, errInvalidMessage\n \t}\n \tattrs := uint(nativeEndian.Uint32(b[4:8]))\n-\tif attrs&syscall.RTA_IFP == 0 {\n-\t\treturn nil, nil\n-\t}...
2025-01-09T21:04:51
electron/electron
9416091180e18c1ba1f625f86505332a018d9049
6d9e8b65bc94dea8fc47f4e03c1833263c3622e9
fix: allow setsize to be called within a move or resize for preventDefault (#34843) fix: #34599 allow setsize to be called within a move or resize for preventDefault
[ { "path": "shell/browser/native_window_views.cc", "patch": "@@ -729,7 +729,6 @@ void NativeWindowViews::SetBounds(const gfx::Rect& bounds, bool animate) {\n #if BUILDFLAG(IS_WIN)\n if (is_moving_ || is_resizing_) {\n pending_bounds_change_ = bounds;\n- return;\n }\n #endif\n ", "additions": 0...
2022-07-27T00:02:06
vercel/next.js
65858a8480d65ede48b47676b5f817a0dde5cfe5
d491c8067864a6f2a178a5fa3374130e5e54f470
Turbopack Build: Fix next/font test (#79502) ## What? Fixes the test which assumed specific hashes. While digging into this with @sokra and @mischnic we found that the reason it currently preloads 4 instead of 2 files is because of source based side-effects detection that Turbopack does not have yet. We've created a...
[ { "path": "test/e2e/next-font/with-font-declarations-file.test.ts", "patch": "@@ -1,5 +1,5 @@\n import cheerio from 'cheerio'\n-import { createNext, FileRef } from 'e2e-utils'\n+import { createNext } from 'e2e-utils'\n import { NextInstance } from 'e2e-utils'\n import { renderViaHTTP } from 'next-test-utils...
2025-05-22T15:57:55
facebook/react
c4ae2a48dcd81ccd4a82326d7d3b9e7c9b3b457f
9d1f2c86ed43df75639d41ed018190b895aad9db
[sprout] patch bug + add verbose mode --- ``` yarn sprout --verbose ``` Verbose mode prints out all outputs of tests. The test output is a status (`ok` or `exception`), a returned or thrown value, and a set of console logs. Currently as of #1960 , this is the output: ```sh $ yarn workspace babel-plugin...
[ { "path": "compiler/forget/packages/sprout/src/runner-evaluator.ts", "patch": "@@ -29,10 +29,22 @@ const PLACEHOLDER_VALUE = Symbol();\n const seen = new Map();\n \n return JSON.stringify(result, (_key, val) => {\n- if (typeof val === \"object\") {\n+ if (typeof val === \"function\") {\n+ ret...
2023-08-16T19:32:15
golang/go
439d39a719da12c213aeb69a09c5aaef83d9df67
82337de9f2157a132257b2e2fe5ae8f1ad57ff20
all: replace reflect.Value.Type.Kind with reflect.Value.Kind Fixes #46107 Change-Id: I170f3cacda652752cd740e04b565a616a0e43fd1 Reviewed-on: https://go-review.googlesource.com/c/go/+/632635 Reviewed-by: Rob Pike <r@golang.org> Reviewed-by: Cherry Mui <cherryyz@google.com> Commit-Queue: Ian Lance Taylor <iant@google.co...
[ { "path": "src/cmd/fix/cftype.go", "patch": "@@ -67,14 +67,14 @@ func typefix(f *ast.File, badType func(string) bool) bool {\n \t\t\t\treturn\n \t\t\t}\n \t\t\tv := reflect.ValueOf(n)\n-\t\t\tif v.Type().Kind() != reflect.Pointer {\n+\t\t\tif v.Kind() != reflect.Pointer {\n \t\t\t\treturn\n \t\t\t}\n \t\t\t...
2024-12-01T20:06:26
electron/electron
b42fd1ddca873b7354e39558935eba517fe1706e
182ab9ad7646ccf42b25e539990f8cb0c40f68b5
fix: handle WCO pressed state when going maximized -> minimized (#35070)
[ { "path": "shell/browser/native_window_views.h", "patch": "@@ -225,6 +225,7 @@ class NativeWindowViews : public NativeWindow,\n \n #if BUILDFLAG(IS_WIN)\n void HandleSizeEvent(WPARAM w_param, LPARAM l_param);\n+ void ResetWindowControls();\n void SetForwardMouseMessages(bool forward);\n static LRESUL...
2022-07-26T17:30:15
ollama/ollama
2aba569a2a593f56651ded7f5011480ece70c80f
fd8aa947f3f096a876fe2d3e2bfd4861eda930bb
Vulkan based on #9650 (#11835) * implement the vulkan C backend * add support in gpu.go * add support in gen_linux.sh * it builds * fix segfault * fix compilation * fix free memory monitor * fix total memory monitor * update gpu.go * fix build * fix check_perfmon len * remove cap_get_bound check * fix vulk...
[ { "path": ".github/workflows/test.yaml", "patch": "@@ -52,14 +52,32 @@ jobs:\n container: rocm/dev-ubuntu-22.04:6.1.2\n extra-packages: rocm-libs\n flags: '-DAMDGPU_TARGETS=gfx1010 -DCMAKE_PREFIX_PATH=/opt/rocm'\n+ - preset: Vulkan\n+ container: ubuntu...
2025-10-14T17:59:58
vercel/next.js
7ccdad985d9ceea9eb13c31f9af1137be810df78
c916835f0ab8d1ee7a0235e3ae0007e09fce5d91
Turbopack Build: Fix dynamic-missing-gsp test (#79472) ## What? Fixes the test by changing the path it checks, both webpack and turbopack versions are okay, the Turbopack version is better though holding the full path root to page.js file. Also fixed the test to not add `export const dynamic = undefined` as that is ...
[ { "path": "test/integration/app-dir-export/test/dynamic-missing-gsp-prod.test.ts", "patch": "@@ -10,7 +10,7 @@ describe('app dir - with output export - dynamic missing gsp prod', () => {\n dynamicPage: 'undefined',\n generateStaticParamsOpt: 'set noop',\n expectedErrMsg:\n- ...
2025-05-22T11:55:51
golang/go
82337de9f2157a132257b2e2fe5ae8f1ad57ff20
77f5ecef3a4f30644eadb922a8ba5deb76fa8e07
test/issue71226: add cast to avoid clang error Change-Id: I2d8ecb7b5f48943697d454d09947fdb1817809d0 Reviewed-on: https://go-review.googlesource.com/c/go/+/646295 TryBot-Bypass: Ian Lance Taylor <iant@google.com> Reviewed-by: Ian Lance Taylor <iant@google.com> Auto-Submit: Ian Lance Taylor <iant@google.com> Reviewed-by...
[ { "path": "test/fixedbugs/issue71226.go", "patch": "@@ -14,7 +14,7 @@ package main\n #include <stdio.h>\n \n static void CFn(_GoString_ gostr) {\n-\tprintf(\"%.*s\\n\", _GoStringLen(gostr), _GoStringPtr(gostr));\n+\tprintf(\"%.*s\\n\", (int)(_GoStringLen(gostr)), _GoStringPtr(gostr));\n }\n */\n import \"C\...
2025-02-03T17:50:38
electron/electron
0be73d18ef7386584fac964794c2f5a3dcc48f01
c842f63383d8d9500a850e3470972de74ff0809f
fix: Make disable_color_correct_rendering patch work again (#35050) Fix disable_color_correct_rendering patch.
[ { "path": "patches/chromium/disable_color_correct_rendering.patch", "patch": "@@ -20,14 +20,15 @@ to deal with color spaces. That is being tracked at\n https://crbug.com/634542 and https://crbug.com/711107.\n \n diff --git a/cc/trees/layer_tree_host_impl.cc b/cc/trees/layer_tree_host_impl.cc\n-index 6a148c3...
2022-07-26T16:35:10
huggingface/transformers
7d6fa9352a9bd65ade47bbd6f7c79d868c40ed74
78aee7e8486fd731da8824633e85664bcbd9f7bb
Fix ShieldGemma2 non-reproducible outputs by adding _tied_weights_keys (#44358) * Fix ShieldGemma2 non-reproducible outputs by adding _tied_weights_keys The checkpoint has `text_config.tie_word_embeddings = True`, meaning `lm_head.weight` should be tied to `embed_tokens.weight`. However, `ShieldGemma2ForImageClassifi...
[ { "path": "src/transformers/models/shieldgemma2/configuration_shieldgemma2.py", "patch": "@@ -30,7 +30,8 @@ class ShieldGemma2Config(PreTrainedConfig):\n The begin-of-image token index to wrap the image prompt.\n eoi_token_index (`int`, *optional*, defaults to 256000):\n The end-of-image...
2026-03-09T14:27:16
facebook/react
9d1f2c86ed43df75639d41ed018190b895aad9db
43e3cd61f844b32804c3e2822a1645450baaa02a
[sprout] Codemod: add todos for test fixtures --- Codemod to add an `export FIXTURE_ENTRYPOINT` with todo values for params for tests with at least one param and 0 refs to external values
[ { "path": "compiler/forget/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/array-access-assignment.expect.md", "patch": "@@ -11,6 +11,12 @@ function foo(a, b, c) {\n return [x, z];\n }\n \n+export const FIXTURE_ENTRYPOINT = {\n+ fn: foo,\n+ params: [\"TodoAdd\"],\n+ isComponent: \"To...
2023-08-16T19:32:15
vercel/next.js
c916835f0ab8d1ee7a0235e3ae0007e09fce5d91
129ab0ee1666be0f592e4a55506de1bd1b3ebca4
Turbopack Build: Fix _error loading test (#79455) ## What? Fixes the test but also uses a better implementation that makes the request block by Playwright instead of deleting files on disk. Making it closer to the actual behavior we expect, i.e. browser fails to load the file -> hard navigation.
[ { "path": "test/integration/error-load-fail/test/index.test.js", "patch": "@@ -1,16 +1,8 @@\n /* eslint-env jest */\n \n import { join } from 'path'\n-import fs from 'fs-extra'\n import webdriver from 'next-webdriver'\n-import {\n- nextBuild,\n- nextStart,\n- findPort,\n- killApp,\n- check,\n- getPage...
2025-05-22T11:55:34
ollama/ollama
05982a95cb9e053fadf309e60ec9ff2bc58ba32e
4987f13d345d77844b6737edadaa1f0432df004c
Qwen3VL Cloud Parser and Renderer (#12526) * working (other than tool call is the incorrect order) for tool calls and tools * Tests work, other than image tags (tests do not go through server) and tools (not in the correct order, but contents are the same) * testing for qwen3vl parser - toolparser is working * made...
[ { "path": "api/types.go", "patch": "@@ -266,9 +266,9 @@ func (pt PropertyType) String() string {\n \n type ToolProperty struct {\n \tAnyOf []ToolProperty `json:\"anyOf,omitempty\"`\n-\tType PropertyType `json:\"type\"`\n+\tType PropertyType `json:\"type,omitempty\"`\n \tItems a...
2025-10-13T23:52:33
golang/go
3caf5bd09e84f77cc5e0394819d57a1beca87fcb
3a81ebea0de65aa877f46afb80575ec67b7d9170
text/scanner: add required ScanComments in example Fixes #71133 Change-Id: I11f792bf4cb275e7bc3585cd92a4b327a3b6e368 Reviewed-on: https://go-review.googlesource.com/c/go/+/646036 Reviewed-by: Ian Lance Taylor <iant@google.com> Auto-Submit: Ian Lance Taylor <iant@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@...
[ { "path": "src/text/scanner/scanner.go", "patch": "@@ -50,7 +50,7 @@ func (pos Position) String() string {\n // to configure a [Scanner] such that it only recognizes (Go) identifiers,\n // integers, and skips comments, set the Scanner's Mode field to:\n //\n-//\tScanIdents | ScanInts | SkipComments\n+//\tSc...
2025-02-01T16:42:22
huggingface/transformers
78aee7e8486fd731da8824633e85664bcbd9f7bb
362792116eb0c84adeec2334c8c8b63aba978e39
Tensor Parallelism and `mps` device (#44506) fix: fail when using `mps` with TP Co-authored-by: Ferdinand Mom <47445085+3outeille@users.noreply.github.com>
[ { "path": "src/transformers/integrations/tensor_parallel.py", "patch": "@@ -55,7 +55,7 @@ def initialize_tensor_parallelism(\n # Detect the accelerator on the machine. If no accelerator is available, it returns CPU.\n device_type = torch._C._get_accelerator().type\n if device_type ==...
2026-03-09T14:27:10
electron/electron
648c9934c01c12ea082a18fdf690c37e3112ce12
aeba6ca973c8ed8a8b75cceb4e0dde33f3595850
fix: properly fire serial-port-added and serial-port-removed events (#34958) Based on 2309652: [webhid] Notify chooser context observers on shutdown | https://chromium-review.googlesource.com/c/chromium/src/+/2309652
[ { "path": "shell/browser/serial/electron_serial_delegate.cc", "patch": "@@ -71,15 +71,15 @@ device::mojom::SerialPortManager* ElectronSerialDelegate::GetPortManager(\n \n void ElectronSerialDelegate::AddObserver(content::RenderFrameHost* frame,\n Observer* observer) ...
2022-07-25T14:50:19
facebook/react
43e3cd61f844b32804c3e2822a1645450baaa02a
ce015a164b86ee6e2ac5bdfb73c8a0484bd52c25
[snap] Use sync fs apis to stop crashes --- Not sure why, but snap kept silently crashing when I used fs/promises to write to many file handles. I tried a `.catch(...)`, but couldn't figure it out. This diff changes snap to use sync fs apis to avoid crashes, but I'd love to get feedback if someone knows how to d...
[ { "path": "compiler/forget/packages/snap/src/runner.ts", "patch": "@@ -7,8 +7,16 @@\n \n import watcher from \"@parcel/watcher\";\n import chalk from \"chalk\";\n-import { COMPILER_PATH, LOGGER_PATH, FIXTURES_PATH, FILTER_FILENAME, FILTER_PATH, readTestFilter, TestFilter } from 'fixture-test-utils';\n-impor...
2023-08-16T19:32:14
vercel/next.js
6020a8b1c0b5e8646a4082f2c892c5650ff86c6a
e26e9dd60ef10a388f59651ff95a54132fd9c7df
Docs IA 2.0: Reorder PPR page and fix some nits (#79282) Co-authored-by: Joseph <joseph.chamochumbi@vercel.com>
[ { "path": "docs/01-app/01-getting-started/04-images.mdx", "patch": "@@ -125,7 +125,7 @@ Since Next.js does not have access to remote files during the build process, you\n To safely allow images from remote servers, you need to define a list of supported URL patterns in [`next.config.js`](/docs/app/api-refer...
2025-05-22T06:15:27
golang/go
1118da25148d20f0fc275dd7ce7a08bd4ac4bdf2
e57769d5ad251a26d7676cd7a63e5332b26a35f0
text/template improved comparison error addresses issue #71421 Addresses issue #71421, improves the error message given for comparison. Previous error message did not specify the types causing conflict, just said incompatible types, new error message specifies the two types causing the issue. Change-Id: I9d940ab7573c...
[ { "path": "src/text/template/funcs.go", "patch": "@@ -409,7 +409,6 @@ func not(arg reflect.Value) bool {\n \n var (\n \terrBadComparisonType = errors.New(\"invalid type for comparison\")\n-\terrBadComparison = errors.New(\"incompatible types for comparison\")\n \terrNoComparison = errors.New(\"miss...
2025-01-31T20:57:20
huggingface/transformers
362792116eb0c84adeec2334c8c8b63aba978e39
395a5ed3b317f07eeff2d74fcfbf86a43143a2b3
Fix failing `GPTNeoModelLanguageGenerationTest` (#44515) Fix failing GPTNeoModelLanguageGenerationTest
[ { "path": "tests/models/gpt_neo/test_modeling_gpt_neo.py", "patch": "@@ -502,7 +502,7 @@ def test_gpt_neo_sample(self):\n torch.manual_seed(0)\n tokenized = tokenizer(\"Today is a nice day and\", return_tensors=\"pt\", return_token_type_ids=True)\n input_ids = tokenized.input_ids.to(...
2026-03-09T14:10:49
ollama/ollama
4987f13d345d77844b6737edadaa1f0432df004c
e638f2acb6af7ef3d4a86567a43196bd895463bd
Llama cpp bump (df1b612): granite docling / mamba2 optimizations / multimodal encoding fixes (#12552) * feat: Bump llama.cpp to df1b612 Branch: LlamaCPPBump-GraniteDocling Signed-off-by: Gabe Goodhart <ghart@us.ibm.com> * fix(mtmd): Correctly encode text chunks during mtmd tokenization There can be text chunks tha...
[ { "path": "Makefile.sync", "patch": "@@ -1,6 +1,6 @@\n UPSTREAM=https://github.com/ggml-org/llama.cpp.git\n WORKDIR=llama/vendor\n-FETCH_HEAD=364a7a6d4a786e98947c8a90430ea581213c0ba9\n+FETCH_HEAD=7049736b2dd9011bf819e298b844ebbc4b5afdc9\n \n .PHONY: help\n help:", "additions": 1, "deletions": 1, ...
2025-10-13T22:26:18
vercel/next.js
49fe0f507042320586344b00d2cb8c5f646191d6
a2cc0734a456e6cdc5076d16c63039d550f193fa
fix(test/e2e): Increase timeout of flaky basepath test (#79481) Reducing this timeout from the default of 3000ms to 2500ms makes the failure reproduce 100% of the time for me. Increasing it, I'm unable to reproduce the issue. Tested with: ``` pnpm test-dev-turbo test/e2e/basepath/router-events.test.ts 'should use ur...
[ { "path": "test/e2e/basepath/router-events.test.ts", "patch": "@@ -124,7 +124,7 @@ describe('basePath', () => {\n { shallow: false },\n ],\n ])\n- })\n+ }, 10_000)\n } finally {\n await browser.close()\n }", "additions": 1, "deletions": 1, "l...
2025-05-22T02:03:59
facebook/react
ce015a164b86ee6e2ac5bdfb73c8a0484bd52c25
6b242c12a969a44399deab2dd1f9a47c95f47763
[sprout] Codemod: add isComponent: false annotations to current fixtures To keep the type signature simple, let's always have the same set of keys in `FIXTURE_ENTRYPOINT`
[ { "path": "compiler/forget/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/alias-nested-member-path.expect.md", "patch": "@@ -14,6 +14,7 @@ function component() {\n export const FIXTURE_ENTRYPOINT = {\n fn: component,\n params: [],\n+ isComponent: false,\n };\n \n ```\n@@ -54,6 +55,7...
2023-08-16T19:32:13
huggingface/transformers
395a5ed3b317f07eeff2d74fcfbf86a43143a2b3
1cdae08e16cfb693b7a667a7e8d6bf32360f6782
Fix failing `MarianIntegrationTests` (#44519) Fix failing MarianMTModel tests
[ { "path": "tests/models/marian/test_modeling_marian.py", "patch": "@@ -404,8 +404,9 @@ def eos_token_id(self) -> int:\n def model(self):\n model: MarianMTModel = MarianMTModel.from_pretrained(self.model_name).to(torch_device)\n c = model.config\n- self.assertListEqual(c.bad_words_...
2026-03-09T14:10:29
ollama/ollama
e638f2acb6af7ef3d4a86567a43196bd895463bd
18087f2ec71d3c4bbe7cfb61eca15b196f34b423
runner: fix shifting on llama runner (#12604)
[ { "path": "runner/llamarunner/runner.go", "patch": "@@ -162,6 +162,7 @@ func (s *Server) NewSequence(prompt string, images []llm.ImageData, params NewSe\n \t\tembeddingOnly: params.embedding,\n \t\tstop: params.stop,\n \t\tnumKeep: params.numKeep,\n+\t\tshift: params.shift...
2025-10-13T20:46:33
golang/go
f7b8dd9033663944e3b563afaeb55dace4c060fc
9896da303a74c7af02f711fbb49ac08e4ef3590b
io/fs: add ReadLinkFS interface Added implementations for *io/fs.subFS, os.DirFS, and testing/fstest.MapFS. Amended testing/fstest.TestFS to check behavior. Addressed TODOs in archive/tar and os.CopyFS around symbolic links. I am deliberately not changing archive/zip in this CL, since it currently does not resolve s...
[ { "path": "api/next/49580.txt", "patch": "@@ -0,0 +1,8 @@\n+pkg io/fs, func Lstat(FS, string) (FileInfo, error) #49580\n+pkg io/fs, func ReadLink(FS, string) (string, error) #49580\n+pkg io/fs, type ReadLinkFS interface { Lstat, Open, ReadLink } #49580\n+pkg io/fs, type ReadLinkFS interface, Lstat(string) (...
2024-07-16T17:21:30
vercel/next.js
a2cc0734a456e6cdc5076d16c63039d550f193fa
e680bee9cc1378e624267f786f9ee31a6d9f5a9a
Model prerender store as separate server and client scopes (#79429) When we adopted the architecture of WorkUnitStore the idea was that code could be running in only one scope at a time. The point was to limit accidental leakage of incorrect data into a scope, for instance by carrying request data into a cache functio...
[ { "path": "packages/next/errors.json", "patch": "@@ -690,5 +690,7 @@\n \"689\": \"The \\\\`compiler.defineServer\\\\` option is configured to replace the \\\\`%s\\\\` variable. This variable is either part of a Next.js built-in or is already configured.\",\n \"690\": \"Invariant: loadManifests called fo...
2025-05-21T23:23:30
facebook/react
d2983888f436308353b6559fd96c4df7a494db8b
904ea6c9e44a276a43462b591f2be43dfe6d2658
[sprout] Initial draft of sprout 🌱 test runner --- ## Sprout 🌱 Overview **(Overview copied from [sprout/README.md](https://github.com/facebook/react-forget/blob/0468ddf8bbee54a9394317a667ea4ed96bb3bef3/forget/packages/sprout/README.md))** React Forget test framework that executes compiler fixtures. Current...
[ { "path": "compiler/forget/packages/babel-plugin-react-forget/package.json", "patch": "@@ -12,7 +12,9 @@\n \"test\": \"yarn jest && yarn snap:build && yarn snap\",\n \"jest\": \"tsc && ts-node \\\"$(yarn --silent which jest)\\\"\",\n \"snap\": \"node ../snap/dist/main.js\",\n+ \"sprout\": \"n...
2023-08-14T23:26:02
huggingface/transformers
1cdae08e16cfb693b7a667a7e8d6bf32360f6782
70ca366fca24e57d1390eb35e32341a6a1ca142f
fix pin_memory for contiguous batching (#44455) * fix pin_memory for contiguous batching Signed-off-by: jiqing-feng <jiqing.feng@intel.com> * use get_available_devices Signed-off-by: jiqing-feng <jiqing.feng@intel.com> * add comment Signed-off-by: jiqing-feng <jiqing.feng@intel.com> --------- Signed-off-by: jiq...
[ { "path": "src/transformers/generation/continuous_batching/input_outputs.py", "patch": "@@ -20,6 +20,7 @@\n \n from transformers.configuration_utils import PretrainedConfig\n \n+from ...utils import get_available_devices\n from ...utils.metrics import traced\n from .cache import PagedAttentionCache\n from ....
2026-03-09T13:49:29
ollama/ollama
6c833d5f8d824c87aa54b2fbfe97b94d7c4be541
6544e1473525c381e89aba4778283900b3ad7145
fix(qwen3): deepseek distill deepseek's qwen3 distill uses a different rope scheme so support both
[ { "path": "model/models/qwen3/model.go", "patch": "@@ -15,11 +15,17 @@ import (\n )\n \n type Options struct {\n-\thiddenSize, numHeads, numKVHeads int\n-\teps float32\n-\tropeBase, ropeScale float32\n-\n-\tkeyLength, valueLength int\n+\thiddenSize,\n+\tnumHeads,\n+...
2025-10-13T19:09:53
golang/go
6adf54a3ebca857ae529b78c03945750731042ed
bf351677c4c134f15d28cf5352964838609de129
cmd/cgo: declare _GoString{Len,Ptr} in _cgo_export.h Fixes #71226 Change-Id: I91c46a4310a9c7a9fcd1e3a131ca16e46949edb3 Reviewed-on: https://go-review.googlesource.com/c/go/+/642235 Auto-Submit: Ian Lance Taylor <iant@golang.org> Reviewed-by: David Chase <drchase@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@...
[ { "path": "src/cmd/cgo/out.go", "patch": "@@ -1938,6 +1938,8 @@ const builtinExportProlog = `\n \n #ifndef GO_CGO_GOSTRING_TYPEDEF\n typedef struct { const char *p; ptrdiff_t n; } _GoString_;\n+extern size_t _GoStringLen(_GoString_ s);\n+extern const char *_GoStringPtr(_GoString_ s);\n #endif\n \n #endif", ...
2025-01-11T00:35:24
vercel/next.js
e680bee9cc1378e624267f786f9ee31a6d9f5a9a
5ce7065020b9722f0cbc3ee238de049f86582892
fix(next-swc): Fix react compiler usefulness detector (#79479) ### What? Fix usefulness detector for the React Compiler ### Why? JSX was also target of the React Compiler ### How? Closes https://github.com/vercel/next.js/issues/79385
[ { "path": "crates/next-custom-transforms/src/react_compiler.rs", "patch": "@@ -38,6 +38,18 @@ impl Visit for Finder {\n if self.found {\n return;\n }\n+ if matches!(\n+ node,\n+ Expr::JSXMember(..)\n+ | Expr::JSXNamespacedName(..)\n+ ...
2025-05-21T22:47:22
facebook/react
5669fc73c0d0ac00d744e22b067bcfc3312b8314
02e8cf97909029e0510c1a4e651d9679d2e2cc1b
[snap] Refactor fixture utils to separate package --- Move shared functions to `fixture-test-utils` package.
[ { "path": "compiler/forget/packages/fixture-test-utils/package.json", "patch": "@@ -0,0 +1,25 @@\n+{\n+ \"name\": \"fixture-test-utils\",\n+ \"version\": \"1.0.0\",\n+ \"main\": \"dist/index.js\",\n+ \"license\": \"MIT\",\n+ \"scripts\": {\n+ \"build\": \"rimraf dist && tsc\",\n+ \"test\": \"echo...
2023-08-14T23:26:01
huggingface/transformers
70ca366fca24e57d1390eb35e32341a6a1ca142f
0130c7da68a9bb888103cf6d7cb2fd0c9c3edf87
Fix continuous batching for multimodal models (#44436) * Fix continuous batching for multimodal models * Add continuous batching test for VLM * Fall back to regular generate for non-text-only models * Add warning when falling back from continuous batching --------- Co-authored-by: jiwon-jeong <jiwon-jeong@lotte.n...
[ { "path": "src/transformers/cli/serve.py", "patch": "@@ -807,6 +807,14 @@ def continuous_batching_chat_completion(self, req: dict, request_id: str) -> Str\n self.running_continuous_batching_manager = None\n \n model, processor = self.load_model_and_processor(model_id_and_revision)\n+...
2026-03-09T13:48:41
electron/electron
1ed191114acb4182baef715729906ed7bfc02fa3
d4e97483aa3880ed29f46603b19bac9d80d7e653
fix: clean up callback handling in `webContents.print()` (#34894) * refactor: clean up callback handling in webContents.print() * chore: update patches Co-authored-by: PatchUp <73610968+patchup[bot]@users.noreply.github.com>
[ { "path": "patches/chromium/printing.patch", "patch": "@@ -134,7 +134,7 @@ index 1e158ecd686e775f656d5a05a9d916ce8f075fa8..20613012d1e6f435c3211d78ec311cf0\n \n void PrintJobWorkerOop::UnregisterServiceManagerClient() {\n diff --git a/chrome/browser/printing/print_view_manager_base.cc b/chrome/browser/pri...
2022-07-21T10:46:15
golang/go
bf351677c4c134f15d28cf5352964838609de129
9d6af4082b4ee0dc912a5cd108581f6eefd778a5
cmd/cgo: add C declaration parameter unused attribute Fixes #71225 Change-Id: I3e60fdf632f2aa0e63b24225f13e4ace49906925 Reviewed-on: https://go-review.googlesource.com/c/go/+/642196 Reviewed-by: David Chase <drchase@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> ...
[ { "path": "src/cmd/cgo/out.go", "patch": "@@ -1094,7 +1094,7 @@ func (p *Package) writeExports(fgo2, fm, fgcc, fgcch io.Writer) {\n \t\t// This unpacks the argument struct above and calls the Go function.\n \t\tfmt.Fprintf(fgo2, \"func _cgoexp%s_%s(a *%s) {\\n\", cPrefix, exp.ExpName, gotype)\n \n-\t\tfmt.F...
2025-01-11T00:22:20
vercel/next.js
5ce7065020b9722f0cbc3ee238de049f86582892
c660bd4f61015a3db293fffb0dcb330b2258cef7
build: Update `swc_core` to `v26.0.1` and `styled-jsx` (#79464) ### What? - Update `swc_core`. The changelog for swc_core: https://github.com/swc-project/swc/compare/swc_core%40v26.0.0...swc_core%40v26.0.1 - Update `styled-jsx` to the latest version. ### Why? To apply the bugfix for `styled-jsx`. https://gith...
[ { "path": "Cargo.lock", "patch": "@@ -3009,7 +3009,7 @@ dependencies = [\n \"httpdate\",\n \"itoa\",\n \"pin-project-lite\",\n- \"socket2 0.5.8\",\n+ \"socket2 0.4.9\",\n \"tokio\",\n \"tower-service\",\n \"tracing\",\n@@ -7306,9 +7306,9 @@ dependencies = [\n \n [[package]]\n name = \"styled_jsx\"\n-v...
2025-05-21T22:46:26
facebook/react
45d884bb6b443bc8c34633e32916791236d34e7b
cb2ba7118f6b826a4847db687e752b2815b5cb54
Fix LeaveSSA missing param declarations Nice find from @mofeiz, we weren't adding declarations for function params in LeaveSSA. This caused us to hit an invariant for update expressions that updated params which assumed that all named variables had a declaration. This is why it's helpful to add invariants, it help...
[ { "path": "compiler/forget/packages/babel-plugin-react-forget/src/ReactiveScopes/PruneNonEscapingScopes.ts", "patch": "@@ -430,8 +430,6 @@ function computeMemoizationInputs(\n rvalues: value.children,\n };\n }\n- case \"PrefixUpdate\":\n- case \"PostfixUpdate\":\n case \"Debugger...
2023-08-14T22:48:05
huggingface/transformers
0130c7da68a9bb888103cf6d7cb2fd0c9c3edf87
deb7dcd97889bafec6acb0fb2f8ad679c3cc1161
Fix KeyError in _parse_type_hint when Union contains Any (#44525) fix: handle missing "type" key in Union subtype schema In _parse_type_hint, when processing Union types, the code accesses subtype["type"] without checking the key exists. Union types containing `Any` crash because _get_json_schema_type(Any) returns {}...
[ { "path": "src/transformers/utils/chat_template_utils.py", "patch": "@@ -114,7 +114,7 @@ def _parse_type_hint(hint: str) -> dict:\n if len(subtypes) == 1:\n # A single non-null type can be expressed directly\n return_dict = subtypes[0]\n- elif all(isinstance(subtype[\"...
2026-03-09T13:43:22
electron/electron
67eda4bcc81754a973a4455cd6db5ac624f4bfa0
9f0e7126c422c12333544de0a20f954addd13061
fix: add support for --ozone-platform-hint flag on Linux (#34937)
[ { "path": "filenames.gni", "patch": "@@ -23,6 +23,7 @@ filenames = {\n \n lib_sources_linux = [\n \"shell/browser/browser_linux.cc\",\n+ \"shell/browser/electron_browser_main_parts_linux.cc\",\n \"shell/browser/lib/power_observer_linux.cc\",\n \"shell/browser/lib/power_observer_linux.h\",\n...
2022-07-21T08:37:54
ollama/ollama
6db8da99588de07a49fe788df6b53a7637b21344
0c68ec8d6a243e4d7b91091d49a69d419bb7e29e
routes: fix built-in renderers for `api/generate` Made it so when api/generate builds up a message array and generates the prompt it now goes through the same function as `api/chat` for consistency. This is where we hook the optional built-in renderers to bypass templates, which was missing for `api/generate` before t...
[ { "path": "server/routes.go", "patch": "@@ -403,12 +403,11 @@ func (s *Server) GenerateHandler(c *gin.Context) {\n \t\t\t\tmsgs = append(msgs, m.Messages...)\n \t\t\t}\n \n+\t\t\tuserMsg := api.Message{Role: \"user\", Content: req.Prompt}\n \t\t\tfor _, i := range images {\n-\t\t\t\timgPrompt := \"\"\n-\t\t...
2025-10-11T20:57:43
golang/go
b25b5f3ff4e671aa4f5897c788137fe91f62cf57
4f11d5879a01e64cb8bd59911bb205ffedd4f265
runtime: fix GODEBUG=gccheckmark=1 and add smoke test This change fixes GODEBUG=gccheckmark=1 which seems to have bit-rotted. Because the root jobs weren't being reset, it wasn't doing anything. Then, it turned out that checkmark mode would queue up noscan objects in workbufs, which caused it to fail. Then it turned o...
[ { "path": "src/cmd/dist/test.go", "patch": "@@ -752,8 +752,8 @@ func (t *tester) registerTests() {\n \t\t\t})\n \t}\n \n-\t// GODEBUG=gcstoptheworld=2 tests. We only run these in long-test\n-\t// mode (with GO_TEST_SHORT=0) because this is just testing a\n+\t// GC debug mode tests. We only run these in long...
2024-08-27T21:02:02
vercel/next.js
5dad2d4f2cb9a8b6bc4b6968fea326bd41219140
7903a5745158671f7943214838ee541adfc7f6a0
Turbopack: avoid negative uppers and follower and use retry loop instead (#79451) ### Why? Multiple graph modifications can happen concurrently. Each modification only locks one or two tasks in the graph at a single step, but a full graph modification could affect many tasks in graph. So modifications are executed st...
[ { "path": "turbopack/crates/turbo-tasks-backend/src/backend/operation/aggregation_update.rs", "patch": "@@ -4,8 +4,12 @@ use std::{\n hash::Hash,\n mem::take,\n num::NonZeroU32,\n+ ops::ControlFlow,\n+ thread::yield_now,\n+ time::{Duration, Instant},\n };\n \n+use anyhow::Result;\n use ...
2025-05-21T22:39:25
facebook/react
0fb5b61ac6951a492242618e4ace6c1826335efc
5ea1397b2b62875dfb521cf8de0efcc15d0df797
Float integrity bugfix (#27224) Stacked on #27223 When a script resource adopts certain props from a preload for that resource the integrity prop was incorrectly getting assinged to the referrerPolicy prop instead. This is now fixed.
[ { "path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js", "patch": "@@ -2872,7 +2872,7 @@ function adoptPreloadPropsForScript(\n if (scriptProps.referrerPolicy == null)\n scriptProps.referrerPolicy = preloadProps.referrerPolicy;\n if (scriptProps.integrity == null)\n- scriptProps...
2023-08-14T17:10:24
ollama/ollama
0c68ec8d6a243e4d7b91091d49a69d419bb7e29e
70d9e363e16ea8617d5ec4d1011323a6ff6f845c
discover: fix typo (#12565)
[ { "path": "discover/runner.go", "patch": "@@ -408,7 +408,7 @@ func (r *bootstrapRunner) HasExited() bool {\n \n func bootstrapDevices(ctx context.Context, ollamaLibDirs []string, extraEnvs []string) []ml.DeviceInfo {\n \t// TODO DRY out with llm/server.go\n-\tslog.Debug(\"spawing runner with\", \"OLLAMA_LIB...
2025-10-11T19:06:02
huggingface/transformers
deb7dcd97889bafec6acb0fb2f8ad679c3cc1161
b8d6b845d18d57868e17ac6576799886ebe53171
Fix AssistantTracker.is_active() returning False after activation with empty lists (#44524) fix: use identity check in AssistantTracker.is_active() After activation, _rendered_blocks and _generation_indices are set to list arguments which may be empty []. The previous truthiness check returned False for empty lists, ...
[ { "path": "src/transformers/utils/chat_template_utils.py", "patch": "@@ -439,7 +439,7 @@ def _generation_support(self, context: jinja2.nodes.EvalContext, caller: jinja2.\n return rv\n \n def is_active(self) -> bool:\n- return self._rendered_blocks or self._generation_indices\n...
2026-03-09T13:35:35
golang/go
e5ae12ab82e09539b77cfba3fa1c4c31f5b948db
e2f342fc51a70351205af839dff2749bc7a977e2
net/url: add panic to unhex for imposible error case Change-Id: I9f39b3d2a1a0a3e510afc874dd071302b2b0c89e Reviewed-on: https://go-review.googlesource.com/c/go/+/643555 Reviewed-by: Damien Neil <dneil@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Ian ...
[ { "path": "src/net/url/url.go", "patch": "@@ -67,8 +67,9 @@ func unhex(c byte) byte {\n \t\treturn c - 'a' + 10\n \tcase 'A' <= c && c <= 'F':\n \t\treturn c - 'A' + 10\n+\tdefault:\n+\t\tpanic(\"invalid hex character\")\n \t}\n-\treturn 0\n }\n \n type encoding int", "additions": 2, "deletions": 1,...
2025-01-20T20:54:28
electron/electron
9e0a3c44dd9dd55367f5c7b7fceb11460e1e6e40
1b96a3aa1d81837fa08b018bbb97c5917d1d8f45
chore: bump chromium to 105.0.5187.0 (main) (#34921) * chore: bump chromium in DEPS to 105.0.5179.0 * chore: update patches * 3758224: Reland^2 "[flags] Enable freezing of flags" https://chromium-review.googlesource.com/c/v8/v8/+/3758224 * chore: bump chromium in DEPS to 105.0.5181.0 * chore: update pat...
[ { "path": ".circleci/config/base.yml", "patch": "@@ -1006,9 +1006,17 @@ steps-electron-gn-check: &steps-electron-gn-check\n - *step-generate-deps-hash\n - *step-touch-sync-done\n - maybe-restore-portaled-src-cache\n- - *step-wait-for-goma\n- - *step-gn-gen-default\n- - *step-gn-check\n+...
2022-07-20T11:03:34
vercel/next.js
2b1d7d39ccde90f18becd13d4d16758c7c4a625b
7e44fe350e9c2e6b0c41e67e82e319a01e7ece97
fix: remove redundant performance.measure usage (#79475) `performance.measure` here is causing problems but I also do not see the point of keeping it, so this PR deletes it. Closes NDX-1050 Fixes https://github.com/vercel/next.js/issues/79188
[ { "path": "packages/next/src/lib/require-instrumentation-client.ts", "patch": "@@ -9,13 +9,7 @@ if (process.env.NODE_ENV === 'development') {\n const startTime = performance.now()\n module.exports = require('private-next-instrumentation-client')\n const endTime = performance.now()\n-\n const duratio...
2025-05-21T21:12:45
facebook/react
011570a0785d4d2f0fd23dd5eae37ac797ce882b
57f648009cea9ce84ed3480ba5ca50794e680b02
[rust][sema] Bubble unresolved references (for hoisting) This is a precursor to adding support for hoisting in semantic analysis. Previously when we encountered an unknown reference we immediately reported an error. But hoisted variables may be referenced before they're defined, so we don't know for sure when we s...
[ { "path": "compiler/forget/crates/forget_semantic_analysis/src/analyzer.rs", "patch": "@@ -86,10 +86,9 @@ impl Analyzer {\n where\n F: FnMut(&mut Self) -> (),\n {\n- let scope = self.manager.add_scope(self.current, kind);\n- let previous = std::mem::replace(&mut self.current, s...
2023-08-14T17:08:02
huggingface/transformers
b8d6b845d18d57868e17ac6576799886ebe53171
24ba4c843bc89fac6c1f229d01b204302db1143d
Fix and re-enable extra_state tests (#43510) * fix and re-enable extra_state tests Signed-off-by: Peter St. John <pstjohn@nvidia.com> * check loading info in tests Signed-off-by: Peter St. John <pstjohn@nvidia.com> --------- Signed-off-by: Peter St. John <pstjohn@nvidia.com> Co-authored-by: Cyril Vallez <cyril.va...
[ { "path": "src/transformers/core_model_loading.py", "patch": "@@ -898,6 +898,11 @@ def set_param_for_module(\n module_path, _, param_name = target_name.rpartition(\".\")\n module_obj = model.get_submodule(module_path) if module_path else model\n \n+ if param_name == torch.nn.modules.module._EXTRA...
2026-03-09T12:05:29
ollama/ollama
1a2feb2a970c8331e1d34f68877190c169999c44
aab2190420a21d9bc7287e8029e46ada14aef431
ollamarunner: fix deadlock hardErrCh will deadlock since forwardBatch is blocked on computeStartedCh which never gets sent. since the response to hardErrCh is to panic, just panic instead
[ { "path": "runner/ollamarunner/runner.go", "patch": "@@ -321,9 +321,6 @@ type Server struct {\n \t// TODO (jmorganca): make this n_batch\n \tbatchSize int\n \n-\t// Used to signal a hard failure during async processing which will panic the runner\n-\thardErrCh chan error\n-\n \t// Simple counter used only f...
2025-10-10T23:38:12
golang/go
37f27fbecd422da9fefb8ae1cc601bc5b4fec44b
77d20838e9cc3ad4f9c167db245752569d7ffc48
cmd/go: enable fips test and fix caching bug Enable the cmd/go fips test now that v1.0.0.zip has been checked in. Will still need to enable the alias half when the alias is checked in. Also fix a problem that was causing spurious failures, by fixing repeated unpackings and also disabling modindex reads of the virtual...
[ { "path": "src/cmd/go/internal/modfetch/cache.go", "patch": "@@ -113,6 +113,13 @@ func DownloadDir(ctx context.Context, m module.Version) (string, error) {\n \t\treturn dir, err\n \t}\n \n+\t// Special case: ziphash is not required for the golang.org/fips140 module,\n+\t// because it is unpacked from a file...
2024-11-17T22:17:50
electron/electron
60b6e74e3fda131add79009ccae2e48e6a460620
ba25714e16386c1bdc517066ba67eb965120c709
fix: merge crash annotations instead of overwriting (#34795) ElectronCrashReporterClient::GetProcessSimpleAnnotations() merges annotations provided as argument with global_annotations_, preserving useful information.
[ { "path": "shell/app/electron_crash_reporter_client.cc", "patch": "@@ -190,7 +190,9 @@ bool ElectronCrashReporterClient::GetShouldCompressUploads() {\n \n void ElectronCrashReporterClient::GetProcessSimpleAnnotations(\n std::map<std::string, std::string>* annotations) {\n- *annotations = global_annotat...
2022-07-19T16:18:04
vercel/next.js
7e44fe350e9c2e6b0c41e67e82e319a01e7ece97
ca6280dcd96ba1eb720b0d87e4925a69cfb58ee9
disallow unstable_rootParams in client components (#79471) unstable_rootParams is a server component API and should not be allowed to be accessed from client components. This change adds a compiler error if this import is detected within the client module graph.
[ { "path": "crates/next-custom-transforms/src/transforms/react_server_components.rs", "patch": "@@ -640,7 +640,7 @@ impl ReactServerComponentValidator {\n invalid_client_imports: vec![Atom::from(\"server-only\"), Atom::from(\"next/headers\")],\n \n invalid_client_lib_apis_mapping: FxH...
2025-05-21T20:49:58
facebook/react
e2485341846fec767f68b5c7c25b277699962054
a49335f72a84a76ac7b39f1e6b3a7701bd6e53f7
[rust] SSA fixes after operand refactor When updating the data model for operands from instruction indices to identifiers, I forgot to rewrite terminal operands.Doing so required a refactor to use the new BlockRewriter helper.
[ { "path": "compiler/forget/crates/forget_fixtures/tests/fixtures/simple-ssa.js", "patch": "@@ -0,0 +1,9 @@\n+function Component(props) {\n+ let a;\n+ if (props) {\n+ a = 1;\n+ } else {\n+ a = 2;\n+ }\n+ return a;\n+}", "additions": 9, "deletions": 0, "language": "JavaScript" }, { ...
2023-08-14T16:54:26
huggingface/transformers
24ba4c843bc89fac6c1f229d01b204302db1143d
976d8cc98865e28d9d826447528441290d90df46
Fix ansi codes in loading reports when not connected to terminal (#44544) * fix * better
[ { "path": "src/transformers/utils/loading_report.py", "patch": "@@ -118,8 +118,8 @@ def _make_table(rows, headers):\n }\n \n \n-def _color(s, color):\n- \"\"\"Return color-formatted input `s` if `sys.stdout` is interactive, e.g. connected to a terminal.\"\"\"\n+def _style(s, color):\n+ \"\"\"Return co...
2026-03-09T11:52:14
ollama/ollama
e0cd51166130d03b8ca1f0261478a0c4ddd983f2
207332078f9a9c9eb097c2138471a3120eeadce2
fix test
[ { "path": "convert/tensor.go", "patch": "@@ -35,7 +35,7 @@ func splitDim(t Tensor, dim int, splits ...split) iter.Seq[*ggml.Tensor] {\n \n \t\t\tslice := split.slices\n \t\t\tif len(slice) == 0 {\n-\t\t\t\tslice := slices.Repeat([]tensor.Slice{nil}, len(shape))\n+\t\t\t\tslice = slices.Repeat([]tensor.Slice...
2025-10-07T23:46:37
golang/go
77d20838e9cc3ad4f9c167db245752569d7ffc48
ce7ea0a6a529ce91327900e29afc3abd620030b4
cmd: update golang.org/x/tools to CL 645697, and revendor go get golang.org/x/tools@9874647 # CL 645697 go mod tidy go mod vendor Fixes #71485 Change-Id: I72d8f82abd0c6e05f2698d8a372bf9485002d1b3 Reviewed-on: https://go-review.googlesource.com/c/go/+/645336 Reviewed-by: Carlos Amedee <carlos@golang.org> Auto-Submit:...
[ { "path": "src/cmd/go.mod", "patch": "@@ -11,7 +11,7 @@ require (\n \tgolang.org/x/sys v0.28.0\n \tgolang.org/x/telemetry v0.0.0-20241204182053-c0ac0e154df3\n \tgolang.org/x/term v0.27.0\n-\tgolang.org/x/tools v0.28.0\n+\tgolang.org/x/tools v0.28.1-0.20250131145412-98746475647e\n )\n \n require (", "add...
2025-01-31T15:06:15
electron/electron
05d4966251580cd4ae95479ccbbfdd5e8a70702f
eb8c9452cb38b6bd32bdc92724cc1fb42a3d43dc
fix: delegate to `PrintViewManagerBase` on failed print (#34893) fix: delegate to PrintViewManagerBase on failed print
[ { "path": "shell/browser/printing/print_view_manager_electron.cc", "patch": "@@ -163,12 +163,23 @@ void PrintViewManagerElectron::ScriptedPrint(\n }\n \n void PrintViewManagerElectron::ShowInvalidPrinterSettingsError() {\n+ if (headless_jobs_.size() == 0) {\n+ PrintViewManagerBase::ShowInvalidPrinterSet...
2022-07-19T12:46:08
vercel/next.js
ed0980415318c1fa313a739580ab4f528a6e0878
72f5429fe068a034763a50c2152eabf14d0166cd
Docs: Fix broken link (#79456)
[ { "path": "docs/01-app/03-building-your-application/02-data-fetching/01-fetching.mdx", "patch": "@@ -238,4 +238,4 @@ export const getPost = cache(async (id) => {\n \n ### Revalidating cached data\n \n-Learn more about revalidating cached data with [Incremental Static Regeneration](/docs/app/building-your-ap...
2025-05-21T14:48:37
facebook/react
dd8b743f6ab9e1f3e615ed5f19d5697f59051d7e
6c719f62a07114cfa23631e79a8962f6c770ddda
[be] Refactor gating logic in babel plugin `compileProgram` was getting complex, so this extracts some of the logic into smaller functions. Additionally, the `try` block now only wraps the `compileFn` generator from Pipeline, which means not accidentally catching other non-Forget errors
[ { "path": "compiler/forget/packages/babel-plugin-react-forget/src/Entrypoint/Program.ts", "patch": "@@ -39,145 +39,125 @@ function hasAnyUseForgetDirectives(directives: t.Directive[]): boolean {\n return false;\n }\n \n-export function compileProgram(\n- program: NodePath<t.Program>,\n+/**\n+ * Runs the ...
2023-08-11T20:38:52
huggingface/transformers
976d8cc98865e28d9d826447528441290d90df46
de0c82d2d8d169ad6926e901136060939af17dfc
Follow-up typing checking fixes (#44500) - Do proper type check in case jax is installed. - Make sure older torch versions don't raise typing issues
[ { "path": "src/transformers/generation/continuous_batching/requests.py", "patch": "@@ -46,13 +46,13 @@ def get_device_and_memory_breakdown() -> tuple[torch.device, int, int, int]:\n torch.xpu.empty_cache()\n torch.xpu.synchronize()\n total_memory = torch.xpu.get_device_properties(dev...
2026-03-09T10:47:30
ollama/ollama
207332078f9a9c9eb097c2138471a3120eeadce2
93085127f443a39190cf46efa62c51287c3714e1
fix lint
[ { "path": "convert/convert_gptoss.go", "patch": "@@ -89,11 +89,11 @@ func (m *gptossModel) Tensors(ts []Tensor) []*ggml.Tensor {\n \t\t\tout = append(out, slices.Collect(splitDim(t, 1,\n \t\t\t\tsplit{\n \t\t\t\t\tReplacer: strings.NewReplacer(\"gate_up_exps\", \"gate_exps\"),\n-\t\t\t\t\tslices: []tensor.S...
2025-10-07T23:39:14
electron/electron
eb8c9452cb38b6bd32bdc92724cc1fb42a3d43dc
38848c5bf77b2fa62b3dddecfe1aecba8d4ae48f
fix: crash on `BrowserWindow.setEnabled()` (#34904) fix: crash on BrowserWindow.setEnabled()
[ { "path": "shell/browser/native_window_mac.mm", "patch": "@@ -484,7 +484,8 @@ void ViewDidMoveToSuperview(NSView* self, SEL _cmd) {\n // [window_ performClose:nil], the window won't close properly\n // even after the user has ended the sheet.\n // Ensure it's closed before calling [window_ performClos...
2022-07-19T10:31:49
vercel/next.js
646b4c3c60695c16aa47f2e1b3688fb0df7dbeb8
f4406d8c58c6d1caf7a9c547c53c278a214c7ea2
[Segment Cache] Fix: Skew during dynamic prefetch (#79416) Fixes a bug that occurred when prefetching a Link to a dynamic page on a different deployment. I didn't catch this earlier during dogfooding because the app we were testing it on was using skew protection. It also only applies to non-PPR/static routes. This p...
[ { "path": ".gitignore", "patch": "@@ -33,6 +33,7 @@ coverage\n # test output\n test/**/out/*\n test/**/next-env.d.ts\n+test/**/.next*\n .DS_Store\n /e2e-tests\n test/tmp/**", "additions": 1, "deletions": 0, "language": "Unknown" }, { "path": "packages/next/src/client/components/segment-c...
2025-05-21T14:31:08
golang/go
4f48ad5c6b2775ab295ea0062b93527cbf4ea9d0
1f58ad5d6d2eebc1939a65a511ca84c9b997cd6a
cmd/link/internal/loader: fix linknames from FIPS 140 frozen tree blockedLinknames was updated in CL 635676 after the lib/fips140 zip mechanism was last tested. linknames from crypto/internal/fips140/v1.0.0 need to be allowed if they'd be allowed from crypto/internal/fips140. Change-Id: I6a6a4656022118d4739ae14831f2a...
[ { "path": "src/cmd/link/internal/loader/loader.go", "patch": "@@ -2394,6 +2394,16 @@ func (l *Loader) checkLinkname(pkg, name string, s Sym) {\n \t\t\tif pkg == p {\n \t\t\t\treturn // pkg is allowed\n \t\t\t}\n+\t\t\t// crypto/internal/fips140/vX.Y.Z/... is the frozen version of\n+\t\t\t// crypto/internal/...
2025-01-29T02:18:01
facebook/react
4e3618ae41669c95a3377ae615c727f74f89d141
533fc28c1b8ea2c6ed459e914849665f497755ff
[Float][Fizz] Fix srcSet and sizes handling for suspensey img preloads (#27217) imageSrcSet should have been srcSet when referencing an img tag. imageSizes should have been sizes. This caused preloads for img tags using srcSet and sizes to incorrectly render as having a href only, dropping the srcSet and sizes part...
[ { "path": "packages/react-dom-bindings/src/server/ReactFizzConfigDOM.js", "patch": "@@ -2399,8 +2399,8 @@ function pushImg(\n ) {\n // We have a suspensey image and ought to preload it to optimize the loading of display blocking\n // resources.\n- const {src, imageSrcSet, imageSizes} = props;\n...
2023-08-11T18:27:22
huggingface/transformers
6a9b2c0c635ffa6d544d5034ea777e2e72c88013
701628527ae1ef37473f05f5d94fac7f457a3f8f
Fix backend dependency (#44542) fix
[ { "path": "src/transformers/models/higgs_audio_v2_tokenizer/modeling_higgs_audio_v2_tokenizer.py", "patch": "@@ -36,6 +36,7 @@\n from .configuration_higgs_audio_v2_tokenizer import HiggsAudioV2TokenizerConfig\n \n \n+@requires(backends=(\"torchaudio\",))\n @auto_docstring\n class HiggsAudioV2TokenizerPreTra...
2026-03-09T10:01:00
ollama/ollama
15e3611d3d13f5ee48aae9ec893529cf7acd972a
77060d462cc0ef171d5ebb66b8070175c53212df
logs: quiet down context canceled on completion and scheduler noise (#12553) * logs: quiet down context canceled on completion If the client closes the connection before Completion finishes, we were logging at error level implying the runner crashed which was misleading. time=2025-10-08T22:59:20.566-07:00 level=ERRO...
[ { "path": "llm/server.go", "patch": "@@ -1486,7 +1486,10 @@ func (s *llmServer) Completion(ctx context.Context, req CompletionRequest, fn fu\n \tserverReq.Header.Set(\"Content-Type\", \"application/json\")\n \n \tres, err := http.DefaultClient.Do(serverReq)\n-\tif err != nil {\n+\tif err != nil && errors.Is...
2025-10-09T17:37:47
golang/go
1f58ad5d6d2eebc1939a65a511ca84c9b997cd6a
90ec9996cb6e7ea98ffeab1b6e28037d79e81026
Revert "os: employ sendfile(2) for file-to-file copying on Linux when needed" This reverts CL 603295. Reason for revert: can cause child exit_group to hang. This is not a clean revert. CL 603098 did a major refactoring of the tests. That refactor is kept, just the sendfile-specific tests are dropped from the linux t...
[ { "path": "src/os/readfrom_linux_test.go", "patch": "@@ -242,25 +242,19 @@ func testSpliceToTTY(t *testing.T, proto string, size int64) {\n }\n \n var (\n-\tcopyFileTests = []copyFileTestFunc{newCopyFileRangeTest, newSendfileOverCopyFileRangeTest}\n-\tcopyFileHooks = []copyFileTestHook{hookCopyFileRange, ho...
2025-01-27T22:05:22
electron/electron
57b02e153de798edb2fc415e19792e64f191a349
8a0df1f487449e25ccc9a2bc13e7160fe82bc61d
fix: potential hang on print settings failure (#34892)
[ { "path": "patches/chromium/printing.patch", "patch": "@@ -78,7 +78,7 @@ index 331a084371402b5a2440b5d60feac8f0189e84b9..6755d1f497cef4deea6b83df1d8720dc\n : PdfRenderSettings::Mode::POSTSCRIPT_LEVEL3;\n }\n diff --git a/chrome/browser/printing/print_job_worker.cc b/chrome/browser/printin...
2022-07-19T09:45:10