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
6abd9725ee7d809dc974991f8ff6c958afb63a3a
9914a3641f7aaaabb0bcdfcd73a54a1cfa70c3e7
fix bug for janus model image generation (#45044) * fix bug for janus model image generation Signed-off-by: Liu, Kaixuan <kaixuan.liu@intel.com> * update expected tokens Signed-off-by: Liu, Kaixuan <kaixuan.liu@intel.com> * update Signed-off-by: Liu, Kaixuan <kaixuan.liu@intel.com> * update comment Signed-off-b...
[ { "path": "src/transformers/models/janus/modeling_janus.py", "patch": "@@ -18,7 +18,6 @@\n # See the License for the specific language governing permissions and\n # limitations under the License.\n \n-import copy\n from collections.abc import Callable\n from dataclasses import dataclass\n \n@@ -1204,23 +120...
2026-04-01T10:02:10
vercel/next.js
322adb9835e6cadf3b33c9963ac2c1953581195a
992d507c4ddd4f20ab3760fe91c42279d132bc03
[devtools] Fix Turbopack indicator (#80753)
[ { "path": "packages/next/next-devtools.webpack-config.js", "patch": "@@ -18,7 +18,6 @@ function shouldIgnorePath(modulePath) {\n */\n module.exports = ({ dev, ...rest }) => {\n const experimental = false\n- const turbo = false\n \n const bundledReactChannel = experimental ? '-experimental' : ''\n \n@@...
2025-06-22T08:13:42
electron/electron
cdb65c15a81ba36685696daa4ffcb974481d8c5a
c3f02d7df2a0282adc1c453ad998c7fd864e709b
fix: make plugin helper executable unconditional (#36971)
[ { "path": "shell/app/electron_main_delegate_mac.mm", "patch": "@@ -15,7 +15,6 @@\n #include \"base/strings/sys_string_conversions.h\"\n #include \"content/common/mac_helpers.h\"\n #include \"content/public/common/content_paths.h\"\n-#include \"ppapi/buildflags/buildflags.h\"\n #include \"shell/browser/mac/e...
2023-01-21T00:42:45
ollama/ollama
727d69ddf39ef80ecebb76e417ccbc0b83861498
f622b0c5fc0afa46f0275b1a38adf072de3c0424
tui: fix signin on headless Linux systems (#14627) Defensively handle environments without a display server to ensure signin remains usable on headless VMs and SSH sessions. - Skip calling xdg-open when neither DISPLAY nor WAYLAND_DISPLAY is set, preventing silent failures or unexpected browser handlers - Render the ...
[ { "path": "cmd/launch/models.go", "patch": "@@ -92,6 +92,10 @@ func OpenBrowser(url string) {\n \tcase \"darwin\":\n \t\t_ = exec.Command(\"open\", url).Start()\n \tcase \"linux\":\n+\t\t// Skip on headless systems where no display server is available\n+\t\tif os.Getenv(\"DISPLAY\") == \"\" && os.Getenv(\"W...
2026-03-18T18:11:17
huggingface/transformers
9914a3641f7aaaabb0bcdfcd73a54a1cfa70c3e7
e7e9efaa455d037f8fb33432c535555915b17e2f
Fix incorrect TrainingArguments example in training.md (#45150) * Correct comment in training.md for TrainingArguments Fix comment formatting for TrainingArguments instantiation. * Update docs/source/en/training.md Co-authored-by: Steven Liu <59462357+stevhliu@users.noreply.github.com> --------- Co-authored-by: S...
[ { "path": "docs/source/en/training.md", "patch": "@@ -115,7 +115,7 @@ model = AutoModelForCausalLM.from_pretrained(model_name, dtype=\"auto\")\n </hfoptions>\n \n ```py\n-TrainingArguments(\n+training_args = TrainingArguments(\n output_dir=\"qwen3-finetuned\",\n num_train_epochs=3,\n per_device_...
2026-03-31T18:25:06
vercel/next.js
4a4715e76105bd962e9a02e4bbcaf14d4034b4c7
e830e85fd0e5f95d8e3fe83d2351bdd5a87b6781
feat(turbopack): Print a warning about performance when starting with an invalidated cache (#80631) We want to show a warning to the user when we start up with an invalidated cache, letting them know why `next dev` might be a little slower than usual. This is done by writing a JSON-encoded `reason_code` value to the ...
[ { "path": "crates/napi/src/next_api/project.rs", "patch": "@@ -35,6 +35,7 @@ use turbo_tasks::{\n message_queue::{CompilationEvent, Severity, TimingEvent},\n trace::TraceRawVcs,\n };\n+use turbo_tasks_backend::db_invalidation::invalidation_reasons;\n use turbo_tasks_fs::{\n DiskFileSystem, FileC...
2025-06-20T23:01:07
facebook/react
00abc5acf5e02fc72b1f7107d803efcdb358f441
2efd85f145c021ac61098844b69353fc49b3878d
[be][tests] Run todo fixtures --- Snap should compile all fixtures to record changes in results, even `todo` prefixed ones. Previously, they were skipped as we noted the correlation of `// @skip` pragmas and file naming. Now, no fixture should be skipped as our compiler pipeline should be able to handle every ...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/rules-of-hooks/todo.bail.rules-of-hooks-279ac76f53af.expect.md", "patch": "@@ -0,0 +1,29 @@\n+\n+## Input\n+\n+```javascript\n+// @skip\n+// Unsupported input\n+\n+// Valid -- this is a regression test.\n+jest.useFakeTime...
2023-11-14T18:04:28
ollama/ollama
d727aacd04e531db9fe2a797b31c032d626b69ef
fa69b833cd1323b2d96b80da9e38cadc7e8fe97a
mlx: quantized embeddings, fast SwiGLU, and runtime fixes (#14884) Add QuantizedEmbedding and EmbeddingLayer interface so models can use quantized embedding weights and expose tied output projections. This change updates gemma3, glm4_moe_lite, llama, qwen3, and qwen3_5 to use the new interface.
[ { "path": "x/mlxrunner/mlx/ops_extra.go", "patch": "@@ -310,6 +310,12 @@ func Log(a *Array) *Array {\n \treturn out\n }\n \n+func Logaddexp(a, b *Array) *Array {\n+\tout := New(\"LOGADDEXP\")\n+\tC.mlx_logaddexp(&out.ctx, a.ctx, b.ctx, DefaultStream().ctx)\n+\treturn out\n+}\n+\n func SoftmaxAxis(a *Array, ...
2026-03-17T18:21:38
huggingface/transformers
bc576731d46cdf0936daf0833dc1a1bdd1b4898a
81db7d3513a7045ef96c55eec71b8075c529d098
DeepGEMM (#44832) * deep gemm * standardize * clear deepgemm flow and blackwell optimization * avoid unnecessary gathers in grouped mm * assertions and drop the synced path * use lazy load kernel * style * add prefix and check for cuda runtime version * better names * exit on missing functions * comment abou...
[ { "path": "src/transformers/integrations/finegrained_fp8.py", "patch": "@@ -19,8 +19,9 @@\n from ..activations import ACT2FN\n from ..core_model_loading import ConversionOps, _IdentityOp\n from ..quantizers.quantizers_utils import should_convert_module\n-from ..utils import is_kernels_available, is_torch_av...
2026-03-31T15:04:02
vercel/next.js
6c70938cb748c0d196da9344d072a52d31e62914
1f04759542ae24defecf72de0fd00fc560e48b68
[ppr] RDC for RSCs (#79638) This pull request introduces support for handling postponed state in dynamic React Server Components (or RSC) requests, enabling the use of the encoded Resume Data Cache (or RDC). The changes include adjustments to the server logic to better manage dynamic responses and improve caching beha...
[ { "path": "packages/next/errors.json", "patch": "@@ -712,5 +712,7 @@\n \"711\": \"Can't resolve %s\",\n \"712\": \"`rspack.warnForEdgeRuntime` is not supported by the wasm bindings.\",\n \"713\": \"Unexpected error during process lookup\",\n- \"714\": \"cannot run loadNative when `NEXT_TEST_WASM` is ...
2025-06-20T22:04:44
electron/electron
885c1878d436ee79f0870fa6f46af8727914b6d8
5ce8dfdcb57ca961ffc11795d32c756ce703ab3c
test: fix nativeTheme test when system in dark mode (#36943)
[ { "path": "spec/api-native-theme-spec.ts", "patch": "@@ -36,6 +36,7 @@ describe('nativeTheme module', () => {\n });\n \n it('should emit the \"updated\" event when it is set and the resulting \"shouldUseDarkColors\" value changes', async () => {\n+ nativeTheme.themeSource = 'light';\n let...
2023-01-20T02:59:20
facebook/react
593ecee66a609d4a4c2b36b39b1e5e23b2456dd1
07cc4a0002d0bbaaf8910404895eeb9c199831c4
Add a feature flag to enable expiration of retry lanes (#27694) An attempt to see if we can bring back expiration of retry lanes to avoid cases resolving Suspense can be starved by frequent updates. In the past, this caused increase browser crashes, but a lot of time has passed since then. Just trying if we can r...
[ { "path": "packages/react-reconciler/src/ReactFiberLane.js", "patch": "@@ -19,11 +19,12 @@ export type Lane = number;\n export type LaneMap<T> = Array<T>;\n \n import {\n- enableSchedulingProfiler,\n- enableUpdaterTracking,\n allowConcurrentByDefault,\n+ enableRetryLaneExpiration,\n+ enableSchedulingP...
2023-11-14T15:15:17
golang/go
908af6529c1d3094da999fdafe79313c41826afa
817218a26c39911176c0d67258c637459f8d2fca
archive/zip: error on ReadDir if there are invalid file names Fixes #50179 Change-Id: I616a6d1279d025e345d2daa6d44b687c8a2d09e1 Reviewed-on: https://go-review.googlesource.com/c/go/+/656495 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Auto-Submit: Ian Lance Taylor <iant@go...
[ { "path": "src/archive/zip/reader.go", "patch": "@@ -8,6 +8,7 @@ import (\n \t\"bufio\"\n \t\"encoding/binary\"\n \t\"errors\"\n+\t\"fmt\"\n \t\"hash\"\n \t\"hash/crc32\"\n \t\"internal/godebug\"\n@@ -988,6 +989,12 @@ func (d *openDir) ReadDir(count int) ([]fs.DirEntry, error) {\n \t\ts, err := d.files[d.of...
2025-03-10T22:10:58
ollama/ollama
bcf6d55b54b9792083e785b5cfaf6ad8eb9f8dca
810d4f9c22319491cd3ac360afed6d2cae6be99a
launch: fix web search, add web fetch, and enable both for local (#14886)
[ { "path": "cmd/launch/openclaw.go", "patch": "@@ -14,6 +14,8 @@ import (\n \t\"strings\"\n \t\"time\"\n \n+\t\"golang.org/x/mod/semver\"\n+\n \t\"github.com/ollama/ollama/api\"\n \t\"github.com/ollama/ollama/cmd/internal/fileutil\"\n \t\"github.com/ollama/ollama/envconfig\"\n@@ -90,10 +92,8 @@ func (c *Open...
2026-03-16T23:26:19
huggingface/transformers
81db7d3513a7045ef96c55eec71b8075c529d098
2dba8e0495974930af02274d75bd182d22cc1686
fix: prefer registered config over remote code in AutoConfig.from_pretrained (#45094) * Prefer registered classes over remote code in Auto*.from_pretrained When a class has been explicitly registered via AutoConfig.register() (or other Auto*.register()), it should take precedence over auto_map remote code. Previously...
[ { "path": "src/transformers/models/auto/auto_factory.py", "patch": "@@ -208,6 +208,9 @@ def from_config(cls, config, **kwargs):\n trust_remote_code = kwargs.pop(\"trust_remote_code\", None)\n has_remote_code = hasattr(config, \"auto_map\") and cls.__name__ in config.auto_map\n has_lo...
2026-03-31T14:40:50
facebook/react
084e4325b9eaa26d4c5313f55c2d612579d379fb
0821a57fa88021ffaca92043653c7ff8646f89ba
Convert PanicThresholdOptions to zod type
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Options.ts", "patch": "@@ -6,25 +6,29 @@\n */\n \n import * as t from \"@babel/types\";\n+import { z } from \"zod\";\n import { CompilerErrorDetailOptions } from \"../CompilerError\";\n import { ExternalFunction, PartialEnvironmentConfig...
2023-11-14T11:46:23
electron/electron
5ce8dfdcb57ca961ffc11795d32c756ce703ab3c
4e4ae9ff530257b350eddfd0b4b970726f07c95f
docs: Change factuality and word choice in app.runningUnderARM64Translation (#36947) Change factuality and word choice. Added "or WOW" to the phrase, "when they are running the x64 version under Rosetta", to reflect the use of a supported platform, Windows, as a possible scenario. Changed the wording of that same ...
[ { "path": "docs/api/app.md", "patch": "@@ -1566,5 +1566,4 @@ an ARM64 translator (like the macOS\n or Windows [WOW](https://en.wikipedia.org/wiki/Windows_on_Windows)).\n \n You can use this property to prompt users to download the arm64 version of\n-your application when they are running the x64 version und...
2023-01-19T20:00:06
vercel/next.js
6afdb1b8778438e2d69e894049a0ba49c90fa542
2502c0a40c78b4eaa284c5b2925430764c384137
[turbopack] Reduce indirection in turbo-tasks dispatching (#80695) ### What? TurboTasks uses numeric ids to reference traits, values and functions, these are used to in serialization routines, dispatching and runtime type checking for traits. This PR adjusts the dispatching codepaths to instead leverage `&'static` re...
[ { "path": "turbopack/crates/turbo-tasks-backend/src/backend/mod.rs", "patch": "@@ -24,8 +24,8 @@ use rustc_hash::{FxHashMap, FxHashSet, FxHasher};\n use smallvec::{SmallVec, smallvec};\n use tokio::time::{Duration, Instant};\n use turbo_tasks::{\n- CellId, FunctionId, FxDashMap, KeyValuePair, RawVc, Read...
2025-06-20T20:46:43
golang/go
3fb8b4f3db21396a69bfaa0bdbf1252214c93ecd
8867af920748f8aa4e9beb5bb8b88c34c85766f2
all: move //go:debug decoratemappings=0 test to cmd/go test/decoratemappingszero.go is intended to test that //go:debug decoratemappings=0 disables annonations. Unfortunately, //go:debug processing is handled by cmd/go, but cmd/internal/testdir (which runs tests from test/) generally invokes the compiler directly, th...
[ { "path": "src/cmd/go/testdata/script/godebug_decoratemappings_comment.txt", "patch": "@@ -1,14 +1,18 @@\n-// run\n+env GO111MODULE=on\n \n-// Copyright 2025 The Go Authors. All rights reserved.\n-// Use of this source code is governed by a BSD-style\n-// license that can be found in the LICENSE file.\n+[!G...
2025-03-11T19:09:46
ollama/ollama
810d4f9c22319491cd3ac360afed6d2cae6be99a
856c047a6cad0cff20cc0e1995f92826a7280dba
runner: fix swallowed error in allocModel graph reservation In allocModel(), the first call to reserveWorstCaseGraph(true) had its error silently discarded — `return nil` was used instead of `return err`. This meant that if the prompt-sized graph reservation failed (e.g. due to insufficient memory), the error was swa...
[ { "path": "runner/ollamarunner/runner.go", "patch": "@@ -1231,7 +1231,7 @@ func (s *Server) allocModel(\n \n \terr = s.reserveWorstCaseGraph(true)\n \tif err != nil {\n-\t\treturn nil\n+\t\treturn err\n \t}\n \n \treturn s.reserveWorstCaseGraph(false)", "additions": 1, "deletions": 1, "language"...
2026-03-14T02:35:40
huggingface/transformers
2dba8e0495974930af02274d75bd182d22cc1686
a91232af09f59e2e1c96561901c92e01e238c355
🚨 [Cache] Native mamba & hybrid cache (#44950) * add Cache and test on Mamba * fix * fix * fix * fix * fix * final fix * test hybrid with jamba * fix tests * fixes * fix * fix * fix * combine both types + zambas * add config mapèping * adjust tests * fix * fix * fix * more models * final mambas *...
[ { "path": "docs/source/en/model_doc/falcon_mamba.md", "patch": "@@ -111,13 +111,6 @@ outputs = model.generate(**inputs, max_new_tokens=100)\n print(tokenizer.decode(outputs[0], skip_special_tokens=True))\n ```\n \n-## FalconMambaCache\n-\n-[[autodoc]] FalconMambaCache\n- - update_conv_state\n- - updat...
2026-03-31T13:09:42
facebook/react
0821a57fa88021ffaca92043653c7ff8646f89ba
07d6c6d8aad8767f1b6dc9b6724e60951df5598d
[playground] Capture Babel parsing errors Before: <img width="1416" alt="Screenshot 2023-11-14 at 9 09 53 AM" src="https://github.com/facebook/react-forget/assets/565765/f53daf34-080a-4804-9a61-77c141c05d21"> After: <img width="1444" alt="Screenshot 2023-11-14 at 9 09 45 AM" src="https://github.com/facebook/r...
[ { "path": "compiler/apps/playground/components/Editor/EditorImpl.tsx", "patch": "@@ -84,6 +84,12 @@ function parseFunctions(\n });\n } catch (e) {\n console.error(e);\n+ CompilerError.throwInvalidJS({\n+ reason: String(e),\n+ description: null,\n+ loc: null,\n+ suggestions: ...
2023-11-14T18:24:38
electron/electron
55c818d0a84400621c0817c8a2e4cc17d9eb24c8
9630e26e6dec503bc82ca4b9f87ebf0344311ca5
fix: `<datalist>` dropdown positioning (#36934) fix: datalist dropdown positioning
[ { "path": "shell/browser/ui/autofill_popup.cc", "patch": "@@ -33,12 +33,14 @@\n \n namespace electron {\n \n+namespace {\n+\n void CalculatePopupXAndWidthHorizontallyCentered(\n int popup_preferred_width,\n const gfx::Rect& content_area_bounds,\n const gfx::Rect& element_bounds,\n bool is_rt...
2023-01-19T18:44:23
vercel/next.js
2502c0a40c78b4eaa284c5b2925430764c384137
baf3a7123f0fa8734ec5e452cc325cd2b1926991
chore(swc-wasm): Fix and clean up various issues with swc-wasm tests (#80471) - Follow the naming conventions of other environment variables and prefix `TEST_WASM` with `NEXT_TEST_WASM` so that there's less chance of conflicts with user code - Remove the logic in `setup-wasm.mjs` that modifies the repository (not grea...
[ { "path": ".github/workflows/build_and_test.yml", "patch": "@@ -473,15 +473,12 @@ jobs:\n skipNativeInstall: 'yes'\n afterBuild: |\n rustup target add wasm32-unknown-unknown\n- curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh\n node ./scripts/normalize...
2025-06-20T20:14:43
golang/go
8591f8e19e3a2e75e86b486ac8a9ec7ff4f3bcbe
39b783780a471961ae381a9fc37a5a1e468f5c21
log/slog: use consistent call depth for all output This makes all log functions keep a consistent call structure to be nice with the handleWriter in the slog package which expects a strict level of 4. Fixes #67362. Change-Id: Ib967c696074b1ca931f6656dd27ff1ec484233b8 GitHub-Last-Rev: 49bc424986875da2dd244b57f8b0851d...
[ { "path": "src/log/log.go", "patch": "@@ -191,8 +191,7 @@ func putBuffer(p *[]byte) {\n // provided for generality, although at the moment on all pre-defined\n // paths it will be 2.\n func (l *Logger) Output(calldepth int, s string) error {\n-\tcalldepth++ // +1 for this frame.\n-\treturn l.output(0, calld...
2025-03-05T22:33:50
ollama/ollama
79c1e93c005ebeccb31b8482da9d71a446af9b5f
f8b657c9670a4319930e8d7e5444460df91a7b5d
bench: improve benchmarking tool (#14240) New features: - Warmup phase to eliminate cold-start outliers - time-to-first-token measured in each epoch - VRAM/memory tracking to identify CPU spillover - Controlled prompt length - Defaults to 6 epochs and 200 tokens max Benchstat fixes: - ns/request instead of ns/op — no...
[ { "path": "cmd/bench/README.md", "patch": "@@ -1,27 +1,31 @@\n Ollama Benchmark Tool\n ---------------------\n \n-A Go-based command-line tool for benchmarking Ollama models with configurable parameters and multiple output formats.\n+A Go-based command-line tool for benchmarking Ollama models with configura...
2026-03-15T18:47:31
huggingface/transformers
a91232af09f59e2e1c96561901c92e01e238c355
3a4a66278555bbe7d6a617a16191a51e1a998fe7
[serving] Fix continuous batching JSON response serialization (#45057) * Fix continuous batching JSON response serialization Change model_dump_json() to model_dump() to avoid double JSON encoding. When using continuous batching with stream=false, the response was being double-encoded as a string instead of returning ...
[ { "path": "examples/pytorch/transformers_serve_cb_eval_job.py", "patch": "@@ -0,0 +1,192 @@\n+# /// script\n+# dependencies = [\n+# \"inspect-ai\",\n+# \"inspect-evals\",\n+# \"huggingface-hub\",\n+# \"transformers[serving] @ git+https://github.com/huggingface/transformers.git@main\",\n+# ...
2026-03-31T12:56:00
facebook/react
07d6c6d8aad8767f1b6dc9b6724e60951df5598d
0794aacdbf8b3a995cdbb49966c716cf8d6d224f
[playground] Show error when compiling unsupported functions Before: <img width="1117" alt="Screenshot 2023-11-14 at 9 11 28 AM" src="https://github.com/facebook/react-forget/assets/565765/d1ec2b5f-1bc5-4d29-9811-effcd39581e4"> After: <img width="1115" alt="Screenshot 2023-11-14 at 9 11 18 AM" src="https://gi...
[ { "path": "compiler/apps/playground/components/Editor/EditorImpl.tsx", "patch": "@@ -9,7 +9,10 @@ import { parse, ParserPlugin } from \"@babel/parser\";\n import traverse, { NodePath } from \"@babel/traverse\";\n import * as t from \"@babel/types\";\n import {\n+ CompilerError,\n+ CompilerErrorDetail,\n ...
2023-11-14T09:10:31
electron/electron
b69236d1770d98768b3698760c81388c0ae9e3e2
b1548c2dbefdcd8f823c18175715fc5d34b09781
test: fix test for USB device.forget() (#36942)
[ { "path": "spec/chromium-spec.ts", "patch": "@@ -3071,7 +3071,7 @@ describe('navigator.usb', () => {\n if (haveDevices) {\n const grantedDevices = await w.webContents.executeJavaScript('navigator.usb.getDevices()');\n if (grantedDevices.length > 0) {\n- const deletedDevice = await w.w...
2023-01-18T21:30:01
vercel/next.js
ac59bdad61163bf2b8ff2503c5ff6951a95e197e
0fbbb6a3e025aba3d18f2b2853ee677ba8d4984c
[devtools] port runtime error handling to hook (#80567) This will be used for sharing the error across the Error Overlay and the DevTools Panel.
[ { "path": "packages/next/src/next-devtools/dev-overlay/container/errors.tsx", "patch": "@@ -1,11 +1,10 @@\n-import { useState, useMemo, useRef, Suspense } from 'react'\n+import { useMemo, useRef, Suspense } from 'react'\n import type { DebugInfo } from '../../shared/types'\n import { Overlay, OverlayBackdro...
2025-06-20T18:09:12
golang/go
598df45fceb6e10d643ed0c07a3df80cffd507f1
be2ecfbff88f20a888ec49446a45dd6bc8ed8d12
net: unblock UDP Reads upon Close on plan9, add test Fixes #72770 Change-Id: I42be7c7349961188f4b5d73287a3550aba323893 Reviewed-on: https://go-review.googlesource.com/c/go/+/656395 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Ian Lance Taylor <iant@google.com>...
[ { "path": "src/net/fd_plan9.go", "patch": "@@ -126,6 +126,11 @@ func (fd *netFD) Close() error {\n \t\t\treturn err\n \t\t}\n \t}\n+\tif fd.net == \"udp\" {\n+\t\t// The following line is required to unblock Reads.\n+\t\t// See https://go.dev/issue/72770.\n+\t\tfd.SetReadDeadline(time.Now().Add(-time.Hour))...
2025-03-10T18:45:10
facebook/react
480c11bdb199794160cab0ede3a7b696e47edb98
800b874ed1841220e97737136a3a18b1a139eb31
[hoisting] Make hoisting related errors consolidatable Noticed from our paste that we weren't correctly rolling up hoisting related errors due to specific information being in the error title, so this PR moves them into description instead.
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Inference/InferReferenceEffects.ts", "patch": "@@ -27,6 +27,7 @@ import {\n } from \"../HIR/HIR\";\n import { FunctionSignature } from \"../HIR/ObjectShape\";\n import {\n+ printIdentifier,\n printMixedHIR,\n printPlace,\n printSourceLocation...
2023-11-13T21:54:54
vercel/next.js
44c0809a31fd23e5c33c24636bfe82a6024e230b
8a9682f791953e13af7f53fd17caa29c749e503a
[devtools] port call stack (#80550) Since the Error Overlay call stack had dedicated handlers for animation, it wasn't able to reuse them. Therefore, port the UI part of the call stack and receive handlers as props, so that the call stack component can be shared with the Error Overlay and the DevTools panel.
[ { "path": "packages/next/src/next-devtools/dev-overlay/components/call-stack/call-stack.stories.tsx", "patch": "@@ -1,6 +1,6 @@\n import type { Meta, StoryObj } from '@storybook/react'\n import { CallStack } from './call-stack'\n-import { withShadowPortal } from '../../../storybook/with-shadow-portal'\n+imp...
2025-06-20T16:45:23
electron/electron
b1548c2dbefdcd8f823c18175715fc5d34b09781
1d98b27a6643d6b6cbc4d9d426d6d5acc4b45e2a
fix: webview background color on reload (#36920)
[ { "path": "shell/browser/api/electron_api_web_contents.cc", "patch": "@@ -1523,13 +1523,15 @@ void WebContents::HandleNewRenderFrame(\n // Set the background color of RenderWidgetHostView.\n auto* web_preferences = WebContentsPreferences::From(web_contents());\n if (web_preferences) {\n- absl::opti...
2023-01-18T13:46:47
huggingface/transformers
3a4a66278555bbe7d6a617a16191a51e1a998fe7
676559d5022b74aaa0cee1cee0842b7f27c5320e
refactoring: speedup static checks with disk cache (#44992) * added a cache * use a shared cache * added cache in repo checker * more caching * more caching * display elapsed times * added test coverage * Remove check_repo cache changes from speedup branch * fix bad merge * per-checker glob * fixed a couple ...
[ { "path": ".gitignore", "patch": "@@ -172,6 +172,7 @@ tags\n \n # modeling structure lint cache\n utils/mlinter/.mlinter_cache.json\n+utils/.checkers_cache.json\n \n # modular conversion\n *.modular_backup", "additions": 1, "deletions": 0, "language": "Unknown" }, { "path": "tests/repo_u...
2026-03-31T12:23:32
golang/go
be2ecfbff88f20a888ec49446a45dd6bc8ed8d12
73fea035bf1e4e68ef14995a389d4fd8df5c6a34
debug/dwarf: read DWARF 5 cu base offsets on SeekPC() path This patch fixes a bug in CL 655976 relating to DWARF 5 support; we were reading in compile unit base offsets on the Seek() path but not on the corresponding SeekPC path (we need the offsets to be read in both cases). Updates #26379. Fixes #72778. Change-Id:...
[ { "path": "src/debug/dwarf/entry.go", "patch": "@@ -919,6 +919,7 @@ func (r *Reader) SeekPC(pc uint64) (*Entry, error) {\n \t\tr.cu = nil\n \t\tu := &r.d.unit[unit]\n \t\tr.b = makeBuf(r.d, u, \"info\", u.off, u.data)\n+\t\tr.collectDwarf5BaseOffsets(u)\n \t\te, err := r.Next()\n \t\tif err != nil {\n \t\t\...
2025-03-11T13:16:05
facebook/react
800b874ed1841220e97737136a3a18b1a139eb31
e6c5c9a0053a466b3049e3bd4513b92b5c18e1c5
fix main Forgot to update snapshots when addressing PR feedback.
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/validate-no-set-state-in-render-uncalled-function-with-mutable-range-is-valid.expect.md", "patch": "@@ -7,12 +7,12 @@ function Component(props) {\n const logEvent = useLogging(props.appId);\n const [currentStep, setCu...
2023-11-13T21:14:27
huggingface/transformers
676559d5022b74aaa0cee1cee0842b7f27c5320e
09a0bbb21ac50eae76bec1c600ff711f135a4f91
:rotating_light: [`LightGlue`] Remove remote code execution (#45122) * fix * style
[ { "path": "src/transformers/models/lightglue/configuration_lightglue.py", "patch": "@@ -40,8 +40,6 @@ class LightGlueConfig(PreTrainedConfig):\n The confidence threshold used to prune points\n filter_threshold (`float`, *optional*, defaults to 0.1):\n The confidence threshold used to fil...
2026-03-31T11:59:41
vercel/next.js
80062e58bb8df11b987ee6e96a16815073605b6b
7446af4fce02d37d943163e146b369e169edb421
fix: rspack code analyzer should only handle javascript module (#80711) When import json module in middleware will case error, because codeAnalyzerBySwc should only handle javascript module.
[ { "path": "packages/next/src/build/webpack/plugins/middleware-plugin.ts", "patch": "@@ -583,7 +583,12 @@ async function codeAnalyzerBySwc(\n if (module.constructor.name !== 'NormalModule') {\n continue\n }\n- const originalSource = (module as webpack.NormalModule).originalSource()\n+ con...
2025-06-20T16:34:47
electron/electron
a9e7bb0027d6fc29a864d41fcd76cadd61a01e72
ad1a09bb10870a73de95232d97886ae273226242
fix: Cmd+Tab not working when exiting kiosk mode (#36854)
[ { "path": "shell/browser/native_window_mac.mm", "patch": "@@ -1030,9 +1030,12 @@ void ViewDidMoveToSuperview(NSView* self, SEL _cmd) {\n is_kiosk_ = true;\n SetFullScreen(true);\n } else if (!kiosk && is_kiosk_) {\n- [NSApp setPresentationOptions:kiosk_options_];\n is_kiosk_ = false;\n ...
2023-01-16T09:06:43
golang/go
73fea035bf1e4e68ef14995a389d4fd8df5c6a34
a588c6fba6d411245d72b9e071eedc3b4d00a0c8
cmd/go: allow symlinks of non-directory files in embed We previously disallowed all non-regular files being embedded. This CL relaxes the restriction a little: if the GODEBUG embedfollowsymlinks=1 is set, we allow the leaf files being embedded (not the directories containing them) to be symlinks. The files pointed to ...
[ { "path": "doc/godebug.md", "patch": "@@ -164,6 +164,11 @@ reverts to the pre-Go 1.25 behavior. This setting is fixed at program startup\n time, and can't be modified by changing the `GODEBUG` environment variable\n after the program starts.\n \n+Go 1.25 added a new `embedfollowsymlinks` setting that contro...
2025-01-16T20:44:55
ollama/ollama
3980c0217d27e05a441808a446e7ee5ea7e04256
870599f5da26977bf5a8e04bd5221f12d5af9907
server: decompress zstd request bodies in cloud passthrough middleware (#14827) When a zstd-compressed request (e.g. from Codex CLI) hits /v1/responses with a cloud model the request failed. Fix by decompressing zstd bodies before model extraction, so cloud models are detected and proxied directly without the writer ...
[ { "path": "middleware/openai.go", "patch": "@@ -18,6 +18,9 @@ import (\n \t\"github.com/ollama/ollama/openai\"\n )\n \n+// maxDecompressedBodySize limits the size of a decompressed request body\n+const maxDecompressedBodySize = 20 << 20\n+\n type BaseWriter struct {\n \tgin.ResponseWriter\n }\n@@ -512,7 +51...
2026-03-13T22:06:47
facebook/react
dcbdf064915fc2187687acc12cf62232ab2b2a47
8d415296009b3a014e4d4678c41a9520d5acd894
Extra test case related to memoization "within" freeze I found an interesting edge case in the previous diff with mutation of a value that appears in the expression of an object key: ```javascript const key = {} const object = { [mutateAndReturnOtherValue(key)]: 42, }; mutate(key); ``` We analyze and...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/mutation-during-jsx-construction.expect.md", "patch": "@@ -0,0 +1,53 @@\n+\n+## Input\n+\n+```javascript\n+import { identity, mutate, mutateAndReturnNewValue } from \"shared-runtime\";\n+\n+function Component(props) {\n+ ...
2023-11-13T19:03:00
huggingface/transformers
09a0bbb21ac50eae76bec1c600ff711f135a4f91
4f2871932477e23190406004383da557a270d9a0
Fix stupid test fetcher (#45140) * comment * fix(tests_fetcher): skip files with docstring/comment-only changes in get_diff Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * Revert "comment" This reverts commit fd58eac8dcca82df04f36217187d0c6c061290a3. * test(tests_fetcher): add test for docstring-only ...
[ { "path": "tests/repo_utils/test_tests_fetcher.py", "patch": "@@ -39,6 +39,7 @@\n diff_is_docstring_only,\n extract_imports,\n get_all_tests,\n+ get_diff,\n get_module_dependencies,\n get_repo_utils_tests,\n get_tree_starting_at,\n@@ -313,6 +314,23 @@ def test_diff_is_docstring_on...
2026-03-31T10:58:18
vercel/next.js
7446af4fce02d37d943163e146b369e169edb421
f004f2cd854a7bec5f3e3c2157f2674977b6d67e
add git merge driver for errors.json (#80722) Adds a merge driver that can automatically re-number messages added to `errors.json` if a merge conflict occurs. Now, it would be easier to just run `pnpm update-error-codes`, but that's slow and requires installing deps + building everything, so i'm just manually merging ...
[ { "path": ".gitattributes", "patch": "@@ -4,3 +4,6 @@ packages/next/compiled/** -text linguist-vendored\n \n # Make next/src/build folder indexable for github search\n build/** linguist-generated=false\n+\n+# Custom merge driver for auto-generated errors.json\n+packages/next/errors.json merge=errors-json", ...
2025-06-20T15:56:28
golang/go
a588c6fba6d411245d72b9e071eedc3b4d00a0c8
ae4c13afc51d81e9aefdfb101e895bc7318c05cd
go/types, types2: report better error messages for make calls Change-Id: I4593aeb4cad1e2c3f4705ed5249ac0bad910162f Reviewed-on: https://go-review.googlesource.com/c/go/+/655518 Auto-Submit: Robert Griesemer <gri@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Revie...
[ { "path": "src/cmd/compile/internal/types2/builtins.go", "patch": "@@ -518,18 +518,30 @@ func (check *Checker) builtin(x *operand, call *syntax.CallExpr, id builtinId) (\n \t\t\treturn\n \t\t}\n \n+\t\tu, err := commonUnder(T, func(_, u Type) *typeError {\n+\t\t\tswitch u.(type) {\n+\t\t\tcase *Slice, *Map,...
2025-03-08T00:00:53
ollama/ollama
abf8e8e9c81c00270876c250ad886dfc4a20c8b2
f3f31a81924a7b3a1b3ad37a1294a22c8d1d192e
middleware: handle non-JSON error responses gracefully (#14828) writeError in both OpenAI and Anthropic middleware writers would return a raw json.SyntaxError when the error payload wasn't valid JSON (e.g. "invalid character 'e' looking for beginning of value"). Fall back to using the raw bytes as the error message in...
[ { "path": "middleware/anthropic.go", "patch": "@@ -34,12 +34,13 @@ func (w *AnthropicWriter) writeError(data []byte) (int, error) {\n \t\tError string `json:\"error\"`\n \t}\n \tif err := json.Unmarshal(data, &errData); err != nil {\n-\t\treturn 0, err\n+\t\t// If the error response isn't valid JSON, use th...
2026-03-13T21:50:49
huggingface/transformers
4f2871932477e23190406004383da557a270d9a0
6b28829743dec03c01ccf3e8b5d9dbc40054974e
[CB] Add warmup feature (#45112) * comment about regional compile * Warmup feature * Add compile to not skip warmup * fixes * Added info about warmup * style * Added comparison helper in the CB overall bm * Update example * Smarter warmup * Bounds on warmup * Style and done * done done * CI reroll
[ { "path": "benchmark_v2/benchmark_scripts/continuous_batching_overall.py", "patch": "@@ -1,3 +1,5 @@\n+import argparse\n+import json\n import re\n import subprocess\n from pathlib import Path\n@@ -8,10 +10,11 @@\n SCRIPT_LOCATION = (Path(__file__).parent.parent.parent / \"examples/pytorch/continuous_batchin...
2026-03-31T07:29:06
facebook/react
f47685c6020cf3a9b5cec21e2c6eef02c7303ec6
7db2388fff15a6c66a9b9e96ce596ccd3c98f099
[be] Flag and test for unexpected exceptions during compilations
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Pipeline.ts", "patch": "@@ -361,6 +361,15 @@ function* runWithEnvironment(\n const ast = codegenReactiveFunction(reactiveFunction).unwrap();\n yield log({ kind: \"ast\", name: \"Codegen\", value: ast });\n \n+ /**\n+ * This flag sh...
2023-11-12T19:56:10
electron/electron
c953109f01ec595b5986542995fa7b86326e411d
3f764cbbd52ee75755915928f7a604af788c3bb8
build: remove older branch migration helpers (#36888) * build: remove older branch migration helpers * chore: fix typo
[ { "path": "script/lib/utils.js", "patch": "@@ -6,11 +6,6 @@ const path = require('path');\n const ELECTRON_DIR = path.resolve(__dirname, '..', '..');\n const SRC_DIR = path.resolve(ELECTRON_DIR, '..');\n \n-const RELEASE_BRANCH_PATTERN = /(\\d)+-(?:(?:[0-9]+-x$)|(?:x+-y$))/;\n-// TODO(main-migration): Simpl...
2023-01-12T17:05:26
vercel/next.js
bc640c09966b26dfb8330ac3cd4d89f3c2600bb8
0b6a580c6cc0384b18325ea0f9ed6c16f24a2292
Fix Next DevTools Storybook in recent Node.js versions (#80713) Affected all Node.js versions with `require(esm)` support. We needed https://github.com/storybookjs/addon-webpack5-compiler-swc/commit/70a8e63516bd4f664c2751b9094f38697f39f0ff to fix `pnpm storybook`. Tested with Node.js 20.19.2 which previously failed.
[ { "path": "packages/next/package.json", "patch": "@@ -173,7 +173,7 @@\n \"@storybook/addon-a11y\": \"8.6.0\",\n \"@storybook/addon-essentials\": \"8.6.0\",\n \"@storybook/addon-interactions\": \"8.6.0\",\n- \"@storybook/addon-webpack5-compiler-swc\": \"1.0.5\",\n+ \"@storybook/addon-webpac...
2025-06-20T11:07:13
golang/go
ae4c13afc51d81e9aefdfb101e895bc7318c05cd
e5d3ece35d34a0d00ad8131d4dd7af7951aada68
go/types, types2: report better error messages for slice expressions Explicitly compute the common underlying type and while doing so report better slice-expression relevant error messages. Streamline message format for index and slice errors. This removes the last uses of the coreString and match functions. Delete t...
[ { "path": "src/cmd/compile/internal/types2/index.go", "patch": "@@ -183,7 +183,7 @@ func (check *Checker) indexExpr(x *operand, e *syntax.IndexExpr) (isFuncInst boo\n \t}\n \n \tif !valid {\n-\t\tcheck.errorf(e.Pos(), NonSliceableOperand, invalidOp+\"cannot index %s\", x)\n+\t\tcheck.errorf(e.Pos(), NonSlic...
2025-03-07T19:26:38
huggingface/transformers
66958ae60e221e39356576031d6eb893d4228c2c
8213e0d920d52cb00dcade16b6d1f6e952ac0a8c
Fix tests for `janus` model (#44739) * fix `padding_side` bug for janus model Signed-off-by: Liu, Kaixuan <kaixuan.liu@intel.com> * fix bug for `_prepare_config_headdim` Signed-off-by: Liu, Kaixuan <kaixuan.liu@intel.com> * update Signed-off-by: Liu, Kaixuan <kaixuan.liu@intel.com> * update code Signed-off-by: ...
[ { "path": "src/transformers/models/janus/processing_janus.py", "patch": "@@ -45,7 +45,7 @@ class JanusTextKwargs(TextKwargs, total=False):\n class JanusProcessorKwargs(ProcessingKwargs, total=False):\n text_kwargs: JanusTextKwargs\n _defaults = {\n- \"text_kwargs\": {\"padding\": False, \"gen...
2026-03-31T06:46:00
ollama/ollama
f3f31a81924a7b3a1b3ad37a1294a22c8d1d192e
9e7ba835da03a99c7b471dfae4b35cd7ef797957
anthropic: close thinking block before tool_use when no text in between (#14825) Root cause: StreamConverter.Process() only incremented contentIndex when closing a thinking block if text content was present. When a model emitted thinking followed directly by a tool_use block (no text in between), thinkingDone was neve...
[ { "path": "anthropic/anthropic.go", "patch": "@@ -852,6 +852,19 @@ func (c *StreamConverter) Process(r api.ChatResponse) []StreamEvent {\n \t\t\tcontinue\n \t\t}\n \n+\t\t// Close thinking block if still open (thinking → tool_use without text in between)\n+\t\tif c.thinkingStarted && !c.thinkingDone {\n+\t\...
2026-03-13T20:12:05
facebook/react
9965db70bdb7b97a12e791e1463d67fe169c2b50
bd3661020e325378efd0bd2fe3e391ded9923ce0
Revert "[babel] Remove unused PipelineError" This reverts commit 10d129a8406e9d226abdb6943bf8512e34ce91db --- Reverts #2311 due to undocumented assumptions being broken. I also added some comments to `LoggerEvents` to explain each event type. In `Program.ts`, we have something like the following code. `compile...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Options.ts", "patch": "@@ -138,6 +138,11 @@ export type LoggerEvent =\n fnLoc: t.SourceLocation | null;\n fnName: string | null;\n memoSlots: number;\n+ }\n+ | {\n+ kind: \"PipelineError\";\n+ fnLoc: t.Sour...
2023-11-10T22:09:29
electron/electron
ce56d614a373fee7d412143825e13d9bbbfb69b0
a9c03950c080e31111e04c87ae5532ec2f608280
chore: fix typo in promise rejection (#36763)
[ { "path": "lib/browser/api/web-contents.ts", "patch": "@@ -272,7 +272,7 @@ WebContents.prototype.printToPDF = async function (options) {\n \n if (options.pageRanges !== undefined) {\n if (typeof options.pageRanges !== 'string') {\n- return Promise.reject(new Error('printBackground must be a Strin...
2023-01-12T11:32:56
golang/go
e5d3ece35d34a0d00ad8131d4dd7af7951aada68
2d097e363a6fce725802ecbde6d0d1b90f45290d
go/types, types2: remove need for coreString in signature.go Also, add additional test cases for NewSignatureType to check expected panic behavior. Change-Id: If26cd81a2af384bf2084dd09119483c0584715c8 Reviewed-on: https://go-review.googlesource.com/c/go/+/655695 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project...
[ { "path": "src/cmd/compile/internal/types2/issues_test.go", "patch": "@@ -627,38 +627,62 @@ func TestIssue50646(t *testing.T) {\n \n func TestIssue55030(t *testing.T) {\n \t// makeSig makes the signature func(typ...)\n-\tmakeSig := func(typ Type) {\n+\t// If valid is not set, making that signature is expect...
2025-03-07T00:06:55
vercel/next.js
0b6a580c6cc0384b18325ea0f9ed6c16f24a2292
7c458922eaf10adb840962c12512c9655829b616
[test] Add repro for SSR bug when large chunks are deferred in Flight (#80661)
[ { "path": "test/e2e/app-dir/metadata/app/large-shell/[slug]/page.tsx", "patch": "@@ -0,0 +1,125 @@\n+import type { Metadata } from 'next'\n+\n+export const experimental_ppr = true\n+\n+export const generateMetadata = async ({ params }): Promise<Metadata> => {\n+ const { slug } = await params\n+ return { t...
2025-06-20T10:57:03
huggingface/transformers
8213e0d920d52cb00dcade16b6d1f6e952ac0a8c
a9c6700a5078e8a9276656a0d0b82b32958624b7
CB improvements for serving (#45063) * merge * update * fix * style * simpler * style * review ! * style * batch output * style * type
[ { "path": "src/transformers/generation/continuous_batching/continuous_api.py", "patch": "@@ -12,11 +12,12 @@\n # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n # See the License for the specific language governing permissions and\n # limitations under the License.\n+import asynci...
2026-03-30T18:34:18
ollama/ollama
bb867c6fdbc4739751f0fc6d8fd2ade20684041d
81f4506a61674ef3c30ed3eeeefa74c1dc8080ac
launch: fix headless --yes integration flow and policy scoping (#14815)
[ { "path": "cmd/launch/command_test.go", "patch": "@@ -160,6 +160,27 @@ func TestLaunchCmdTUICallback(t *testing.T) {\n \t\t}\n \t})\n \n+\tt.Run(\"--yes flag without integration returns error\", func(t *testing.T) {\n+\t\ttuiCalled := false\n+\t\tmockTUI := func(cmd *cobra.Command) {\n+\t\t\ttuiCalled = tru...
2026-03-13T18:45:36
facebook/react
6b3834a45b585e4340734139841ae81dc1b1a75d
6a7f3aa858b3a8670d6a4861e30f248b335e55bd
Guard against unmounted components when accessing public instances on Fabric (#27687) ## Summary This fixes an error in `getPublicInstanceFromInstanceHandle` where we throw an error when trying to access the public instance from the fiber of an unmounted component. This shouldn't throw but return `null` instead....
[ { "path": "packages/react-native-renderer/src/ReactFiberConfigFabric.js", "patch": "@@ -278,13 +278,21 @@ function getPublicTextInstance(\n export function getPublicInstanceFromInternalInstanceHandle(\n internalInstanceHandle: InternalInstanceHandle,\n ): null | PublicInstance | PublicTextInstance {\n+ c...
2023-11-10T15:49:07
electron/electron
fefb22a83d8f3ed4d16a8b2814873bdfbb4ee8a0
2a7d0a84c0c0e18b98e94816f2655cd69eeac471
chore: enable microtask queue per window agent (#36870) * chore: enable microtask queue per window agent * chore: switch policies on context microtask queue * fix: ensure node::Environment is valid
[ { "path": "patches/v8/.patches", "patch": "@@ -9,3 +9,4 @@ fix_disable_implies_dcheck_for_node_stream_array_buffers.patch\n revert_runtime_dhceck_terminating_exception_in_microtasks.patch\n chore_disable_is_execution_terminating_dcheck.patch\n force_cppheapcreateparams_to_be_noncopyable.patch\n+chore_allow_...
2023-01-11T16:59:32
vercel/next.js
7c458922eaf10adb840962c12512c9655829b616
ce5796a9f4476726ba4ecede21fd66d29de72e03
[test] Reduce flakiness of instrumentation-order (#80712) The test was implicitly relying on `preloadEntriesOnStart` to load the module in our prod tests. Fixes https://github.com/vercel/next.js/actions/runs/15774186781/job/44464850249?pr=80710#step:34:282 and [other flakes](https://app.datadoghq.com/ci/test/runs?q...
[ { "path": "test/e2e/app-dir/instrumentation-order/instrumentation-order.test.ts", "patch": "@@ -1,35 +1,31 @@\n import { nextTestSetup } from 'e2e-utils'\n-import { waitFor } from 'next-test-utils'\n-\n-const ORDERED_LOGS = [\n- 'instrumentation:side-effect',\n- 'instrumentation:register:begin',\n- 'inst...
2025-06-20T09:57:43
golang/go
2d097e363a6fce725802ecbde6d0d1b90f45290d
e3ea8e68fb91bdc510cb7702981609ce5a9da12e
go/types, types2: better error messages for copy built-in Rather than relying on coreString, use the new commonUnder function to determine the argument slice element types. Factor out this functionality, which is shared for append and copy, into a new helper function sliceElem (similar to chanElem). Use sliceElem for...
[ { "path": "src/cmd/compile/internal/types2/builtins.go", "patch": "@@ -83,48 +83,19 @@ func (check *Checker) builtin(x *operand, call *syntax.CallExpr, id builtinId) (\n \tswitch id {\n \tcase _Append:\n \t\t// append(s S, x ...E) S, where E is the element type of S\n-\t\t// spec: \"The variadic function ap...
2025-03-06T23:44:01
huggingface/transformers
a9c6700a5078e8a9276656a0d0b82b32958624b7
b7074b1e069dab83d5892f596bf47997692b795d
Add Music Flamingo (#43538) * Music flamingo * Fix pos embeddings * Method arg docstrings * Add tests & docs * Fix AF3 dtype bug * Fix the MF performance issue * Fix pos embeddings * Fix embeddings & format * Remove external deps * Update processor token names * Cleanup * Simplify RotaryEmbedding to lang-on...
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -1256,6 +1256,8 @@\n title: mllama\n - local: model_doc/mm-grounding-dino\n title: MM Grounding DINO\n+ - local: model_doc/musicflamingo\n+ title: MusicFlamingo\n - local: model_doc/nougat\n title: Nougat\n...
2026-03-30T18:04:21
ollama/ollama
a6b27d776b57a50b31028e591fc78de4e967a104
539741199e2db2485fd0f590f1ec35158a4ec663
ci: fix missing windows zip file (#14807) Use 7z compression (better compression rate) if found in path. That alone isn't sufficient to get us under 2G, so MLX is now split out as a discrete download. Fix CI so it will fail if artifacts fail to upload.
[ { "path": ".github/workflows/release.yaml", "patch": "@@ -583,11 +583,19 @@ jobs:\n for payload in dist/*.txt dist/*.zip dist/*.tgz dist/*.tar.zst dist/*.exe dist/*.dmg dist/*.ps1 dist/*.sh ; do\n echo \"Uploading $payload\"\n gh release upload ${GITHUB_REF_NAME} $payload -...
2026-03-12T23:14:00
facebook/react
0e352ea01c0209b6c5e23f0e857af4e01c783024
78c71bc545bf5c0fdeedc023b69fafe05d988067
[Fizz] Fix for failing id overwrites for postpone (#27684) When we postpone during a render we inject a new segment synchronously which we postpone. That gets assigned an ID so we can refer to it immediately in the postponed state. When we do that, the parent segment may complete later even though it's also sync...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMFizzStaticBrowser-test.js", "patch": "@@ -1495,4 +1495,51 @@ describe('ReactDOMFizzStaticBrowser', () => {\n 'hello',\n ]);\n });\n+\n+ // @gate enablePostpone\n+ it('can render a deep list of single components where one postpones', async () ...
2023-11-10T03:52:31
electron/electron
2a7d0a84c0c0e18b98e94816f2655cd69eeac471
f31826f4a0c44756305087f11cf0de794e68c447
fix: missing libcxx headers (#36863) * chore: add libcxx script to precommit hook * chore: run gen-libc++-filename.js
[ { "path": "filenames.libcxx.gni", "patch": "@@ -271,6 +271,10 @@ libcxx_headers = [\n \"//buildtools/third_party/libc++/trunk/include/__debug\",\n \"//buildtools/third_party/libc++/trunk/include/__debug_utils/randomize_range.h\",\n \"//buildtools/third_party/libc++/trunk/include/__errc\",\n+ \"//buil...
2023-01-11T16:59:03
huggingface/transformers
813c7c6b2e84b963a1f14bd28a36ee68986ef2d9
62a8e1287c24e01581a03f0cf05a4c02322fbcb6
Fix few issues in Qwen_3_Omni_Moe (#44848) * Fix Qwen3OmniMoeConfig has no attribute initializer_range * Fix passing of args * Fix no_split_modules * fix * fix and improve * format * fix modular * fix modular * comment --------- Co-authored-by: Anton Vlasjuk <73884904+vasqu@users.noreply.github.com> Co-autho...
[ { "path": "src/transformers/generation/utils.py", "patch": "@@ -688,7 +688,14 @@ def _maybe_initialize_input_ids_for_generation(\n break\n \n if \"inputs_embeds\" in model_kwargs:\n- return torch.ones((batch_size, 0), dtype=torch.long, device=self.device)\n+ ret...
2026-03-30T16:42:59
vercel/next.js
d49c6a40348cbfa6dea1d4ec3daaac25e7a3551d
32613645e5b1df27b1bcc9c8c0799ee278a03af8
overwrite redirect SSG meta.status to 200 for RSC requests (#80391) For a static route that simply returns a `redirect`: ``` export default function Page() { redirect("/about"); } ``` the SSG generates a `.meta` file for the route at build time, that looks like: ``` { "status": 307, "headers": { "location": ...
[ { "path": "packages/next/src/build/templates/app-page.ts", "patch": "@@ -83,6 +83,7 @@ export const __next_app__ = {\n }\n \n import * as entryBase from '../../server/app-render/entry-base' with { 'turbopack-transition': 'next-server-utility' }\n+import { RedirectStatusCode } from '../../client/components/r...
2025-06-19T23:39:00
golang/go
2abe5ceb1968edb882c8318af674c4133dd0bb75
574a9fa60e593154fbbe64f992b7e6656e3ab0b7
testing: warn against calling Log after a test completes Fixes #40343 Change-Id: Id266f4b57131e9e148e5aa2be86b67fe6d73b20a Reviewed-on: https://go-review.googlesource.com/c/go/+/656415 Auto-Submit: Ian Lance Taylor <iant@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount....
[ { "path": "src/testing/testing.go", "patch": "@@ -1083,6 +1083,7 @@ func (c *common) logDepth(s string, depth int) {\n // and records the text in the error log. For tests, the text will be printed only if\n // the test fails or the -test.v flag is set. For benchmarks, the text is always\n // printed to avoi...
2025-03-10T19:41:09
ollama/ollama
539741199e2db2485fd0f590f1ec35158a4ec663
8f45236d09332949aa91774dc9eb46caf2abbbc1
mlx: perf improvements (#14768) * mlx: perf improvements Fix nn.go to call mlx_fast_layer_norm instead of manually implementing (mean, subtract, variance, rsqrt, multiply, add — 6 ops) Fix llama.go, gemma3.go to remove RepeatKV to tile K/V tensors to match the Q head count, since scaled_dot_product_attention nativel...
[ { "path": "x/imagegen/nn/nn_test.go", "patch": "@@ -303,7 +303,7 @@ func BenchmarkLinearSmall(b *testing.B) {\n \tmlx.Eval(x)\n \n \tb.ResetTimer()\n-\tfor i := 0; i < b.N; i++ {\n+\tfor range b.N {\n \t\tout := linear.Forward(x)\n \t\tmlx.Eval(out)\n \t}\n@@ -320,7 +320,7 @@ func BenchmarkLinearLarge(b *te...
2026-03-12T19:01:28
facebook/react
c47c306a7a23d3c796b148d303764e2832da480c
7bdd7cc2d8aca24ea46474ee8a5a5e300109332e
refactor[ci/build]: preserve header format in artifacts (#27671) In order to make Haste work with React's artifacts, It is important to keep headers in this format: ``` /** * ... ... * ... */ ``` For optimization purposes, Closure compiler will actually modify these headers by removing * prefixes, which is...
[ { "path": "scripts/rollup/build.js", "patch": "@@ -470,11 +470,10 @@ function getPlugins(\n // I'm going to port \"art\" to ES modules to avoid this problem.\n // Please don't enable this for anything else!\n isUMDBundle && entry === 'react-art' && commonjs(),\n- // License and haste ...
2023-11-09T16:00:21
huggingface/transformers
62a8e1287c24e01581a03f0cf05a4c02322fbcb6
02063e683595e4a3e7f4e5be2fee17cab129e4bb
Fix PP test_ocr_queries (#45123) test_ocr_queries value fix
[ { "path": "tests/models/pp_chart2table/test_processing_pp_chart2table.py", "patch": "@@ -40,7 +40,7 @@ def test_ocr_queries(self):\n add_generation_prompt=True,\n )\n inputs = processor(images=image_input, text=inputs, return_tensors=\"pt\")\n- self.assertEqual(inputs[\"in...
2026-03-30T16:10:24
electron/electron
f31826f4a0c44756305087f11cf0de794e68c447
1d9a4ab02cb198de27de8636d0893bcc27c671cf
fix: `getUserMedia` duplicate permissions call (#36787) * fix: getUserMedia duplicate permissions call * test: add regression test
[ { "path": "patches/chromium/short-circuit_permissions_checks_in_mediastreamdevicescontroller.patch", "patch": "@@ -15,60 +15,60 @@ short-circuit all the permissions checks in MSDC for now to allow us to\n unduplicate this code.\n \n diff --git a/components/webrtc/media_stream_devices_controller.cc b/compone...
2023-01-11T10:55:31
ollama/ollama
c222735c02a3fda18cdbd05ccae2d5dc1a290b42
87d21c7fc053da5b0b37898af89c932e404692ea
mlx: only log load errors when MLX is needed (#14764) This suppresses irrelevant/noisy errors in the GGML runner.
[ { "path": "x/mlxrunner/mlx/dynamic.go", "patch": "@@ -16,9 +16,14 @@ import (\n )\n \n var initError error\n+var initLoadError string\n \n // CheckInit returns any error that occurred during MLX dynamic library initialization.\n+// When initialization failed, detailed load errors are logged to help diagnose...
2026-03-11T17:31:31
vercel/next.js
1141e677aed5c21f98b9629190335407a823abfd
d4fcf46d938339206fb567ffca4258b5132c8b09
test: improve action test reliability (#80587) ## Summary This PR improves test reliability for the app-dir actions test suite by addressing race conditions and modernizing file system operations. ## Changes ### Test Improvements - **Fixed race conditions** in revalidation tests by ensuring proper sequencing of...
[ { "path": "test/e2e/app-dir/actions/app-action.test.ts", "patch": "@@ -8,10 +8,10 @@ import {\n getRedboxSource,\n } from 'next-test-utils'\n import type { Request, Response } from 'playwright'\n-import fs from 'fs-extra'\n-import nodeFs from 'fs'\n-import { join } from 'path'\n+import fs from 'node:fs/pr...
2025-06-19T18:50:02
golang/go
4635ad047a426f43a4b70cd11ce52b062d0da34f
5b4209fedb10086e845cabdb02d2990a6090841b
crypto/tls: align cert decode alert w/ BSSL For malformed client/server certificates in a TLS handshake send a decode_error alert, matching BoringSSL behaviour. Previously crypto/tls used a bad_certificate alert for this purpose. The TLS specification is imprecise enough to allow this to be considered a spec. justifi...
[ { "path": "src/crypto/tls/bogo_config.json", "patch": "@@ -54,7 +54,6 @@\n \"KyberKeyShareIncludedSecond\": \"we always send the Kyber key share first\",\n \"KyberKeyShareIncludedThird\": \"we always send the Kyber key share first\",\n \"GREASE-Server-TLS13\": \"We don't send GREASE ...
2025-02-26T19:13:15
facebook/react
69eb9ccccc93d0ac4bf63e64c515e544c6dbff16
f92a058ca5ebde1566d70f85cfd40d7fb5cfc38b
[snap] Add option to set panicThreshold
[ { "path": "compiler/packages/fixture-test-utils/src/compiler-utils.ts", "patch": "@@ -7,7 +7,10 @@\n \n import assert from \"assert\";\n import type { runReactForgetBabelPlugin as RunReactForgetBabelPlugin } from \"babel-plugin-react-forget/src/Babel/RunReactForgetBabelPlugin\";\n-import { CompilationMode }...
2023-11-09T12:00:34
huggingface/transformers
02063e683595e4a3e7f4e5be2fee17cab129e4bb
2da00a3cec88fac160d481406e7961cf59472894
Fix TypeError in rope validation when ignore_keys is a list (#45069) `_check_received_keys` performs `received_keys -= ignore_keys` where `received_keys` is a `set`. When model configs are loaded from JSON (e.g. via huggingface_hub dataclass validation), sets get deserialized as lists since JSON has no set type, causi...
[ { "path": "src/transformers/modeling_rope_utils.py", "patch": "@@ -916,7 +916,7 @@ def _check_received_keys(\n \n # Some models need to store model-specific keys, and we don't want to throw warning at them\n if ignore_keys is not None:\n- received_keys -= ignore_keys\n+ ...
2026-03-30T11:26:37
electron/electron
1d9a4ab02cb198de27de8636d0893bcc27c671cf
b3d16e727c587cd9933b3f9f76276ab4511c5aac
chore: bump node to v18.13.0 (main) (#36818) * chore: bump node in DEPS to v18.13.0 * child_process: validate arguments for null bytes https://github.com/nodejs/node/pull/44782 * bootstrap: merge main thread and worker thread initializations https://github.com/nodejs/node/pull/44869 * module: ensure rel...
[ { "path": "DEPS", "patch": "@@ -4,7 +4,7 @@ vars = {\n 'chromium_version':\n '111.0.5518.0',\n 'node_version':\n- 'v18.12.1',\n+ 'v18.13.0',\n 'nan_version':\n '16fa32231e2ccd89d2804b3f765319128b20c4ac',\n 'squirrel.mac_version':", "additions": 1, "deletions": 1, "language"...
2023-01-11T10:33:48
vercel/next.js
d4fcf46d938339206fb567ffca4258b5132c8b09
fc9939938d96fb7221ff25954e62218e0cd83ddc
fix: mark the shared cache controls as external so it's memory is shared (#80588) This PR refactors the default cache handler and shared cache controls to be marked as external modules, improving build optimization and module boundaries. ### Changes - **Marked shared cache controls as external**: Renamed `shared-cac...
[ { "path": "packages/next/src/build/webpack/loaders/next-edge-app-route-loader/index.ts", "patch": "@@ -37,7 +37,7 @@ const EdgeAppRouteLoader: webpack.LoaderDefinitionFunction<EdgeAppRouteLoaderQue\n \n if (!cacheHandlers.default) {\n cacheHandlers.default = require.resolve(\n- '../../../.....
2025-06-19T18:49:35
golang/go
01688daca63c3775f07f908268af99bd3d3c9386
2611d81dc82ba18bb9dd45afce9a412b0b821913
crypto/tls: support bogo -wait-for-debugger When this command line flag is provided to the BoGo runner it will: * Disable some timeouts * Limit concurrency to 1 worker at a time * Pass the -wait-for-debugger flag to the shim process * Print the PID of the shim process to status output On the shim-side, we need to re...
[ { "path": "src/crypto/tls/bogo_shim_notunix_test.go", "patch": "@@ -0,0 +1,11 @@\n+// Copyright 2025 The Go Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style\n+// license that can be found in the LICENSE file.\n+\n+//go:build !unix || wasm\n+\n+package tls\n+\n+func pause...
2025-02-19T17:39:32
ollama/ollama
87d21c7fc053da5b0b37898af89c932e404692ea
54e05172a03c79c9f59539a6c572d904a2f2cf66
MLX: harden for init failures (#14777) The CLI now links to the lazy-load MLX code, but that still happens in init functions. On internal MLX errors, the CLI exits before it has a chance to start. This change re-wires the MLX error handling so it doesn't exit by default. The MLX based runners currently expect exits...
[ { "path": "x/imagegen/cmd/engine/main.go", "patch": "@@ -79,6 +79,10 @@ func main() {\n \t\tlog.Fatalf(\"MLX initialization failed: %v\", mlx.GetMLXInitError())\n \t}\n \n+\t// Restore strict error handling now that we know MLX is working.\n+\t// During init(), a safe handler prevented exit(-1) on GPU error...
2026-03-11T05:52:23
facebook/react
746890329452cbec8685eb3466847c5f17d9dc77
7508dcd5cc245e376860d65402972e418199264d
[Static][Fizz] bootstrap scripts should only emit once (#27674) I introduced a bug in a recent change to how bootstrap scripts are handled. Rather than clearing out the bootstrap script state from ResumableState on completion of the prerender I did it during the flushing phase which comes later after the postponed ...
[ { "path": "packages/react-dom-bindings/src/server/ReactFizzConfigDOM.js", "patch": "@@ -690,6 +690,13 @@ export function resetResumableState(\n resumableState.moduleScriptResources = {};\n }\n \n+export function completeResumableState(resumableState: ResumableState): void {\n+ // This function is called ...
2023-11-09T01:51:47
electron/electron
414791232a79c783d3d758fe11a864344d513660
168726a0521dd53f160b216f7b84832b1368fff5
fix: RTL `WindowButtonsProxy` buttons (#36839) * fix: RTL WindowButtonsProxy buttons * chore: address review feedback
[ { "path": "shell/browser/browser.h", "patch": "@@ -202,6 +202,8 @@ class Browser : public WindowListObserver {\n bool UpdateUserActivityState(const std::string& type,\n base::Value::Dict user_info);\n \n+ void ApplyForcedRTL();\n+\n // Bounce the dock icon.\n enum class...
2023-01-10T11:19:00
golang/go
2611d81dc82ba18bb9dd45afce9a412b0b821913
b0e7f95aacbfed6cca892859ec2589c3bd7cf0b8
crypto/tls: ignore TLS 1.3 user canceled alerts When encountering alertUserCanceled in a TLS 1.3 handshake, ignore the alert and retry reading a record. This matches existing logic for how TLS 1.2 alertLevelWarning alerts are handled. For broader context, TLS 1.3 removed warning-level alerts except for alertUserCance...
[ { "path": "src/crypto/tls/bogo_config.json", "patch": "@@ -47,12 +47,12 @@\n \"*DTLS*\": \"No DTLS\",\n \"SendEmptyRecords*\": \"crypto/tls doesn't implement spam protections\",\n \"SendWarningAlerts*\": \"crypto/tls doesn't implement spam protections\",\n+ \"SendUserCanceledA...
2025-02-19T15:30:50
ollama/ollama
8c4d5d6c2f9aa849742333deb35e510e5e6fd665
bc72b140161d542c6ed0e30d4c812a1038537adc
cloud_proxy: send ollama client version (#14769) This was previously included in the user agent, and we've made use of it in the past to hotpatch bugs server-side for particular Ollama versions.
[ { "path": "server/cloud_proxy.go", "patch": "@@ -20,13 +20,15 @@ import (\n \t\"github.com/ollama/ollama/auth\"\n \t\"github.com/ollama/ollama/envconfig\"\n \tinternalcloud \"github.com/ollama/ollama/internal/cloud\"\n+\t\"github.com/ollama/ollama/version\"\n )\n \n const (\n-\tdefaultCloudProxyBaseURL ...
2026-03-10T22:53:25
vercel/next.js
fc9939938d96fb7221ff25954e62218e0cd83ddc
a362b340f23798663ce17db49c051ca48ddc91ca
fix: server actions should fetch from the router canonicalUrl (#80690) A test related to navigation + server action handling was frequently flaking in CI ([x-ref](https://github.com/vercel/next.js/actions/runs/15746992788/job/44386768835#step:34:2634)). When simulating a 20x browser slowdown, it's fairly easy to repro...
[ { "path": "packages/next/src/client/components/router-reducer/reducers/server-action-reducer.ts", "patch": "@@ -87,7 +87,7 @@ async function fetchServerAction(\n \n const body = await encodeReply(usedArgs, { temporaryReferences })\n \n- const res = await fetch('', {\n+ const res = await fetch(state.cano...
2025-06-19T17:25:18
huggingface/transformers
2da00a3cec88fac160d481406e7961cf59472894
2dbee5af1c91acf55cf81ce68417875279ab0675
[Bugfix] Remove incorrect torchvision requirement from PIL backend image processors (#45045) * [Bugfix] Remove incorrect torchvision requirement from PIL backend image processors PR #45029 added @requires(backends=("vision", "torch", "torchvision")) to 67 PIL backend image_processing_pil_*.py files. This causes PIL b...
[ { "path": "src/transformers/image_processing_backends.py", "patch": "@@ -529,7 +529,7 @@ def resize(\n self,\n image: np.ndarray,\n size: SizeDict,\n- resample: Union[\"PILImageResampling\", \"tvF.InterpolationMode\", int] | None = None,\n+ resample: \"PILImageResamplin...
2026-03-30T07:25:49
facebook/react
88b00dec4778ffa230cceca81af3328f49e1efd9
52d542ad6d410008c495084f511247f43387055f
Update stack diffing algorithm in describeNativeComponentFrame (#27132) ## Summary There's a bug with the existing stack comparison algorithm in `describeNativeComponentFrame` — specifically how it attempts to find a common root frame between the control and sample stacks. This PR attempts to fix that bug by inj...
[ { "path": "packages/shared/ReactComponentStackFrame.js", "patch": "@@ -60,6 +60,17 @@ if (__DEV__) {\n componentFrameCache = new PossiblyWeakMap<Function, string>();\n }\n \n+/**\n+ * Leverages native browser/VM stack frames to get proper details (e.g.\n+ * filename, line + col number) for a single compon...
2023-11-08T16:45:31
electron/electron
168726a0521dd53f160b216f7b84832b1368fff5
1c9e7687f9a13580fb38a93bd0578f2f849ebd07
fix: handle null/undefined options for fs.readdir (#34764)
[ { "path": "lib/asar/fs-wrapper.ts", "patch": "@@ -623,11 +623,11 @@ export const wrapFsWithAsar = (fs: Record<string, any>) => {\n };\n \n const { readdir } = fs;\n- fs.readdir = function (pathArgument: string, options: { encoding?: string | null; withFileTypes?: boolean } = {}, callback?: Function) {\...
2023-01-10T11:16:39
ollama/ollama
62d1f01ab4d63c3042e942379e9ef4b77f5c3fba
10e51c51771ea8536715876ee6707928712be41e
ci: Fix windows build (#14754) Instead of relying on sh for wildcard, do it in Go for better windows compatibility.
[ { "path": "x/mlxrunner/mlx/generator/main.go", "patch": "@@ -97,8 +97,18 @@ func main() {\n \tqc := tree_sitter.NewQueryCursor()\n \tdefer qc.Close()\n \n-\tvar funs []Function\n+\tvar files []string\n \tfor _, arg := range flag.Args() {\n+\t\tmatches, err := filepath.Glob(arg)\n+\t\tif err != nil {\n+\t\t\...
2026-03-10T02:27:59
vercel/next.js
e4c838c1d07dea560ae7f00f96e58ec18e602d5e
75b7fe201f73a1fb3b962b07aa0baac4d57f6029
Add `--debug-prerender` option for `next build` (#80667) When running `next build --debug-prerender`, we will set a few experimental flags that ensure the following: - No minification is applied to server code. - `experimental.serverMinification = false`, or - `experimental.turbopackMinify = false` - Sou...
[ { "path": "packages/next/src/bin/next.ts", "patch": "@@ -124,7 +124,10 @@ program\n )}`\n )\n .option('-d, --debug', 'Enables a more verbose build output.')\n-\n+ .option(\n+ '--debug-prerender',\n+ 'Enables debug mode for prerendering. Not for production use!'\n+ )\n .option('--no-lint', ...
2025-06-19T15:13:03
golang/go
b0e7f95aacbfed6cca892859ec2589c3bd7cf0b8
04164e5f5a82eeaf09fedda14c90af5bb65a1627
crypto/tls: run SkipNewSessionTicket bogo test This commit removes SkipNewSessionTicket from the bogo_config.json excluded tests list. Previously this test was being skipped with a TODO that there might be a bug here. In practice it seems like there's no bug and the test is handled correctly by crypto/tls. When acti...
[ { "path": "src/crypto/tls/bogo_config.json", "patch": "@@ -52,7 +52,6 @@\n \"JustConfiguringKyberWorks\": \"we always send a X25519 key share with Kyber\",\n \"KyberKeyShareIncludedSecond\": \"we always send the Kyber key share first\",\n \"KyberKeyShareIncludedThird\": \"we always s...
2025-02-18T17:41:34
huggingface/transformers
ecdf95c66c88e08f5e2aaadeb7a7c03739565aa8
12b6b57cac0397db0afda56f3ab0101729bc5f0f
fix: add identity reverse_op to dequantize ops for save_pretrained (#44983) fix: add identity reverse_op to dequantize operations for save_pretrained Dequantize operations (Mxfp4Dequantize, Fp8Dequantize, MetalDequantize) raise NotImplementedError on reverse_op, causing save_pretrained to fail for models loaded with ...
[ { "path": "src/transformers/core_model_loading.py", "patch": "@@ -101,6 +101,17 @@ def reverse_op(self) -> ConversionOps:\n raise NotImplementedError\n \n \n+class _IdentityOp(ConversionOps):\n+ \"\"\"Pass-through reverse op for dequantize operations.\n+\n+ Dequantized weights are already in t...
2026-03-27T17:09:03
facebook/react
52d542ad6d410008c495084f511247f43387055f
2c8a139a593e0294c3a6953d74b451bd05fdcfca
Enable enableUnifiedSyncLane (#27646) <!-- Thanks for submitting a pull request! We appreciate you spending the time to work on these changes. Please provide enough information so that others can review your pull request. The three fields below are mandatory. Before submitting a pull request, please make sure...
[ { "path": "packages/shared/ReactFeatureFlags.js", "patch": "@@ -151,7 +151,7 @@ export const enableUseRefAccessWarning = false;\n // Enables time slicing for updates that aren't wrapped in startTransition.\n export const forceConcurrentByDefaultForTesting = false;\n \n-export const enableUnifiedSyncLane = _...
2023-11-08T00:45:33
electron/electron
f56a26c4f70dca6e9468ba15a82007d4a9ad53d6
1a9c338c92a50ad2891953a7fd2cecc2e7414bc0
build: fix broken stale issues workflow (#36843)
[ { "path": ".github/workflows/stale.yml", "patch": "@@ -24,6 +24,7 @@ jobs:\n exempt-issue-labels: \"discussion,security \\U0001F512,enhancement :sparkles:\"\n only-pr-labels: not-a-real-label\n pending-repro:\n+ runs-on: ubuntu-latest\n steps:\n - uses: actions/stale@3de26...
2023-01-09T18:16:58
ollama/ollama
afb4c62fbf6839319dbe93c1bbb9eb7fc9a67c3e
e790dc435b148933da3b98b423397bf022e38104
cloud_proxy: handle stream disconnects gracefully (#14685) Previously we were printing out bad errors for expected cases like clients disconnecting. Now we only debug log when that happens (which still might help in cases where we're figuring out why an integration isn't working). For other errors, we print out a prop...
[ { "path": "server/cloud_proxy.go", "patch": "@@ -4,6 +4,7 @@ import (\n \t\"bytes\"\n \t\"context\"\n \t\"encoding/json\"\n+\t\"errors\"\n \t\"fmt\"\n \t\"io\"\n \t\"log/slog\"\n@@ -204,7 +205,25 @@ func proxyCloudRequestWithPath(c *gin.Context, body []byte, path string, disable\n \tc.Status(resp.StatusCode...
2026-03-07T03:18:52
vercel/next.js
73202480cf04533407304050cd17baa606de6153
e25792b54997020cd389cd6f38d73ffd9ad47c3c
Prevent typescript errors in IDE for newly generated tests (part 2) (#80664) Follow-up to #78247. This prevents the following error when first opening the generated test file in the IDE: ``` Cannot find module 'e2e-utils' or its corresponding type declarations. ``` We're adding the patterns `**/*.test.ts` and `**/*....
[ { "path": "turbo/generators/config.ts", "patch": "@@ -94,6 +94,11 @@ export default function generator(plop: NodePlopAPI): void {\n type: 'add',\n templateFile: path.join(cnaTemplatePath, 'tsconfig.json'),\n path: path.join(targetPath, name, 'tsconfig.json'),\n+ transf...
2025-06-19T10:34:33