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
ollama/ollama
ed78e127d0578ece5787bfbc6beb5191aa01edc6
d432ade714156098eac42f633a3911a3cf09dd41
fix(cmd): unload model before removal (#12832) this change fixes two bugs with `ollama rm`: 1. before a model is removed, it will first be stopped. this only happens for the first argument and skipped for all other models 2. models are unloaded indiscriminately. this errors for cloud models and should be omitte...
[ { "path": "cmd/cmd.go", "patch": "@@ -280,6 +280,13 @@ func loadOrUnloadModel(cmd *cobra.Command, opts *runOptions) error {\n \t\treturn err\n \t}\n \n+\tif info, err := client.Show(cmd.Context(), &api.ShowRequest{Model: opts.Model}); err != nil {\n+\t\treturn err\n+\t} else if info.RemoteHost != \"\" {\n+\...
2025-10-30T17:41:49
golang/go
290ec2d92bca6472fdabce51fc331b3bcaa7129d
7c6b047ea14dcc6aa948f901956511c4e8691abf
bufio: don't do empty Write at start of WriteTo The empty Write will cause the wrong thing to happen when using io.Copy to copy to a package-based stream. Fixes #71424 Change-Id: I046a27539447182692ac76a8bdd422327345dd8d Reviewed-on: https://go-review.googlesource.com/c/go/+/644535 Reviewed-by: Keith Randall <khr@go...
[ { "path": "src/bufio/bufio.go", "patch": "@@ -519,9 +519,11 @@ func (b *Reader) WriteTo(w io.Writer) (n int64, err error) {\n \tb.lastByte = -1\n \tb.lastRuneSize = -1\n \n-\tn, err = b.writeBuf(w)\n-\tif err != nil {\n-\t\treturn\n+\tif b.r < b.w {\n+\t\tn, err = b.writeBuf(w)\n+\t\tif err != nil {\n+\t\t\...
2025-01-27T05:52:58
facebook/react
ce82a56fa64435aaa0abaa5070b01187a1eaa439
80efd75b8e5f83a5473afa0dc45f49428e2fce6f
[ci] Fix output of parser benchmark yarn adds some other output, so just run the script directly
[ { "path": "compiler/.github/workflows/bench.yml", "patch": "@@ -30,7 +30,7 @@ jobs:\n - run: yarn install --frozen-lockfile\n working-directory: bench/parser-benchmark\n - name: Run benchmark\n- run: yarn bench --ci --sampleSize=3 | tee results.json\n+ run: node index.js --...
2023-08-24T14:14:28
huggingface/transformers
1c70fdbc9ae5e7607e4c54be64a726c412598e37
ff2ba441a8bc9f7636bf22def908b53bfa4e1db2
Fix missing BPE token conversion step in Chameleon (#44582) Convert image tokens to BPE tokens before embedding
[ { "path": "src/transformers/models/chameleon/modeling_chameleon.py", "patch": "@@ -899,8 +899,10 @@ def get_image_features(\n pixel_values (`torch.FloatTensor` of shape `(batch_size, num_channels, image_size, image_size)`):\n The tensors corresponding to the input images.\n \"\"\...
2026-03-11T11:17:18
vercel/next.js
7cbc15ab709ea10b0139897cce7baa45d50a9043
0eb276b4cada5a6558ac42e4d97d8f5aee1ca982
Turbopack Build: Fix conflicting page error (#79634) ## What? Implements the missing part of the error to make the test pass. Small difference between webpack/Turbopack is that Turbopack will spot the conflict earlier and because of that errors earlier too, making the path still correct but shorter, not a problem in...
[ { "path": "crates/next-core/src/app_structure.rs", "patch": "@@ -767,6 +767,7 @@ fn directory_tree_to_entrypoints(\n #[turbo_tasks::value]\n struct DuplicateParallelRouteIssue {\n app_dir: ResolvedVc<FileSystemPath>,\n+ previously_inserted_page: AppPage,\n page: AppPage,\n }\n \n@@ -783,11 +784,1...
2025-05-27T13:43:43
golang/go
88108cc563418ab962e41bdcc54a1d2010c2efcf
372f2d802201583b0af2db2fa023d355812db2b1
cmd/go: adjust testsuite to add reraised panic message A couple of tests generate different output due to CL 645916 for issue #71517. Fixes #71593 Fixes #71594 Change-Id: Ifaeff4e9de8d881202bd9e6394c9b9cff8959596 Reviewed-on: https://go-review.googlesource.com/c/go/+/647495 LUCI-TryBot-Result: Go LUCI <golang-scoped...
[ { "path": "src/cmd/go/testdata/script/test_cleanup_failnow.txt", "patch": "@@ -14,8 +14,8 @@ env GOGC=off\n \n ! go test -v cleanup_failnow/panic_nocleanup_test.go\n ! stdout 'no tests to run'\n-stdout '(?s)panic: die \\[recovered\\].*panic: die'\n-! stdout '(?s)panic: die \\[recovered\\].*panic: die.*panic...
2025-02-06T23:01:17
electron/electron
faa2f7afa3d5b0a21d153412d8c728d76c2a45d9
f3dbdaaf33f29e8ffe6921e767fcab877f921dec
test: migrate asar specs to main runner (#35230) * test: migrate node specs to main * test: migrate asar specs to main runner * fix execFile
[ { "path": "spec-main/asar-spec.ts", "patch": "@@ -5,6 +5,10 @@ import { Worker } from 'worker_threads';\n import { BrowserWindow, ipcMain } from 'electron/main';\n import { closeAllWindows } from './window-helpers';\n import { emittedOnce } from './events-helpers';\n+import { getRemoteContext, ifdescribe, i...
2022-08-09T07:39:14
ollama/ollama
d432ade714156098eac42f633a3911a3cf09dd41
06b3422d5f973ba9026333dc49f312d5d649629d
fix: qwen2.5vl, qwen3vl composite image (#12841) this change fixes images with an alpha channel by overlaying the image onto a white background
[ { "path": "model/models/qwen25vl/process_image.go", "patch": "@@ -79,6 +79,8 @@ type Grid struct {\n }\n \n func (p *ImageProcessor) ProcessImage(img image.Image) ([]float32, *Grid, error) {\n+\timg = imageproc.Composite(img)\n+\n \torigWidth := img.Bounds().Dx()\n \torigHeight := img.Bounds().Dy()\n ", ...
2025-10-30T17:33:19
facebook/react
856dc5e43352454b1d06c13e233d565ceda77e61
31034b6de73c7cd9093e92a34e384d84c082aa4e
Fix escaping in action error URL (#27273) This URL is generated on the client (there's an equivalent but shorter SSR version too) when a function is used as an action. It should never happen but it'll be invoked if a form is manually submitted or event is stopped early. The `'` wasn't escaped so this yielded inv...
[ { "path": "packages/react-dom-bindings/src/client/ReactDOMComponent.js", "patch": "@@ -501,7 +501,7 @@ function setProp(\n // eslint-disable-next-line no-script-url\n \"javascript:throw new Error('\" +\n 'A React form was unexpectedly submitted. If you called form.submi...
2023-08-22T23:10:00
vercel/next.js
0eb276b4cada5a6558ac42e4d97d8f5aee1ca982
fc17ba97100db45bb986654c95e15e34fa5f38b6
Turbopack Build: Fix edge _document test (#79628) ## What? Currently there's a specific case when you set `runtime: 'experimental-edge'` for `_document.js` or `_app.js` where we incorrectly write a bundle that is wrapped with the route handling code to disk. This in turn causes `_document.js` to break during prerende...
[ { "path": "crates/next-api/src/pages.rs", "patch": "@@ -907,36 +907,39 @@ impl PageEndpoint {\n .module();\n \n let config = parse_config_from_source(ssr_module, NextRuntime::default()).await?;\n- Ok(if config.runtime == NextRuntime::Edge {\n- let modules = create_page_...
2025-05-27T13:43:29
huggingface/transformers
ff2ba441a8bc9f7636bf22def908b53bfa4e1db2
0e7cb4e3ea3daaeef626148522f80b751e9559bd
[Performance] FP8 Grouped and Batched Matmuls (#44231) * simplify * finegrained fp8 moe forwards * optimized fp8 fused, batched and grouped paths * fix * wrap triton * fix calls * fix * remove fused quant kernel (litlle gain and unnecessary) and use torch library wrappers for better torch compileability * use ...
[ { "path": "src/transformers/integrations/finegrained_fp8.py", "patch": "@@ -11,51 +11,85 @@\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 torch\n+import torch.nn...
2026-03-11T08:51:00
ollama/ollama
cbe1cf06c44c6ff0901851c04b6bd8650ece7c5f
0a2d92081bb6b6b2d3eab5908fce08cfcf736e1d
Update README.md (#12822) Fixed broken docs links
[ { "path": "README.md", "patch": "@@ -22,7 +22,7 @@ Get up and running with large language models.\n curl -fsSL https://ollama.com/install.sh | sh\n ```\n \n-[Manual install instructions](https://github.com/ollama/ollama/blob/main/docs/linux.md)\n+[Manual install instructions](https://docs.ollama.com/linux#m...
2025-10-30T17:14:39
facebook/react
86198b923199224b60533952b636348bb0484a6d
dd480ef923930c8906a02664b01bcdea50707b5d
[Float][Fizz][Legacy] hoisted elements no longer emit before `<html>` in legacy apis such as `renderToString()` (#27269) renderToString is a legacy server API which used a trick to avoid having the DOCTYPE included when rendering full documents by setting the root formatcontext to HTML_MODE rather than ROOT_HTML_MOD...
[ { "path": "packages/react-dom-bindings/src/server/ReactFizzConfigDOM.js", "patch": "@@ -371,11 +371,11 @@ export function createResponseState(\n // Constants for the insertion mode we're currently writing in. We don't encode all HTML5 insertion\n // modes. We only include the variants as they matter for the...
2023-08-22T17:54:33
electron/electron
f3dbdaaf33f29e8ffe6921e767fcab877f921dec
0400eb2e60578add06d48fb662236e7eaf2122fb
build: fix error in the `ts-compile-doc-change` step (#35258) build: fix error in the ts-compile-doc-change step Fixes the following error: https://app.circleci.com/pipelines/github/electron/electron/56517/workflows/ea0f6548-e0ac-40c6-bacb-e24610cd6670/jobs/1287168?invite=true#step-103-29 ```sh $ webpack --conf...
[ { "path": ".circleci/config/base.yml", "patch": "@@ -990,7 +990,7 @@ step-ts-compile: &step-ts-compile\n do\n out=\"${f:29}\"\n if [ \"$out\" != \"base.js\" ]; then\n- node script/yarn webpack --config $f --output-filename=$out --output-path=./.tmp --env.mode=development\n+ ...
2022-08-08T21:09:09
golang/go
372f2d802201583b0af2db2fa023d355812db2b1
8163ea1458763aa38fa9197e479bd30cb0145429
unicode/utf8: remove init from utf8_test TestConstants and init test the same thing, remove init, it does not exist in utf16_test.go either. Fixes #71579 Change-Id: Ie0afd640bebde822733b6eac0bf98a17872f4e5f GitHub-Last-Rev: d7224c18376e00038261279abdfa954abc3a8303 GitHub-Pull-Request: golang/go#71582 Reviewed-on: ht...
[ { "path": "src/unicode/utf8/utf8_test.go", "patch": "@@ -12,16 +12,6 @@ import (\n \t. \"unicode/utf8\"\n )\n \n-// Validate the constants redefined from unicode.\n-func init() {\n-\tif MaxRune != unicode.MaxRune {\n-\t\tpanic(\"utf8.MaxRune is wrong\")\n-\t}\n-\tif RuneError != unicode.ReplacementChar {\n-...
2025-02-06T21:33:18
vercel/next.js
fc17ba97100db45bb986654c95e15e34fa5f38b6
8b7f937e369061d615d026069708ed0f9ee0a19a
Docs: scrub html in `ld+json` script (#79627) Closes: https://linear.app/vercel/issue/DOC-4708/json-ld-security-w-jsonstringify Fixes: https://github.com/vercel/next.js/issues/79593
[ { "path": "docs/01-app/02-guides/json-ld.mdx", "patch": "@@ -6,7 +6,11 @@ description: Learn how to add JSON-LD to your Next.js application to describe yo\n \n [JSON-LD](https://json-ld.org/) is a format for structured data that can be used by search engines and AI to to help them understand the structure o...
2025-05-27T13:23:05
electron/electron
91f9436ad8e6028bf2909008e5814867289b9310
34b985c5560aac4bb86d3697f8358647d38e79a7
fix: app.relaunch loses args when execPath specified (#35108)
[ { "path": "shell/browser/api/electron_api_app.cc", "patch": "@@ -1151,7 +1151,9 @@ bool App::Relaunch(gin::Arguments* js_args) {\n \n gin_helper::Dictionary options;\n if (js_args->GetNext(&options)) {\n- if (options.Get(\"execPath\", &exec_path) || options.Get(\"args\", &args))\n+ bool has_exec_p...
2022-08-08T08:12:06
facebook/react
dd480ef923930c8906a02664b01bcdea50707b5d
e76a5aca781abdc237f044131790ea615b500532
Fix: Stylesheet in error UI suspends indefinitely (#27265) This fixes the regression test added in the previous commit. The "Suspensey commit" implementation relies on the `shouldRemainOnPreviousScreen` function to determine whether to 1) suspend the commit 2) activate a parent fallback and schedule a retry. The i...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMFloat-test.js", "patch": "@@ -3385,7 +3385,6 @@ body {\n );\n });\n \n- // @gate FIXME\n it('loading a stylesheet as part of an error boundary UI, during initial render', async () => {\n class ErrorBoundary extends React.Component {\n st...
2023-08-22T15:22:30
golang/go
8163ea1458763aa38fa9197e479bd30cb0145429
478ad013f90fe1dbb199d22f41b93c920ae0d5e9
weak: prevent unsafe conversions using weak pointers Prevent conversions between Pointer types, like we do for sync/atomic.Pointer. Fixes #71583 Change-Id: I20e83106d8a27996f221e6cd9d52637b0442cea4 Reviewed-on: https://go-review.googlesource.com/c/go/+/647195 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-a...
[ { "path": "src/weak/pointer.go", "patch": "@@ -56,6 +56,9 @@ import (\n // referenced object. Typically, this batching only happens for tiny\n // (on the order of 16 bytes or less) and pointer-free objects.\n type Pointer[T any] struct {\n+\t// Mention T in the type definition to prevent conversions\n+\t// ...
2025-02-06T13:07:38
huggingface/transformers
0e7cb4e3ea3daaeef626148522f80b751e9559bd
8464284d2f65b60b2c80cf41fd9b57891ebe25ef
Make paligemma embed tokens standard (#44432) * make pali standard * init buffers * fix repo
[ { "path": "src/transformers/models/cohere2/modeling_cohere2.py", "patch": "@@ -363,7 +363,6 @@ def __init__(self, config: Cohere2Config):\n super().__init__(config)\n self.padding_idx = config.pad_token_id\n self.vocab_size = config.vocab_size\n-\n self.embed_tokens = nn.Embe...
2026-03-11T08:26:30
ollama/ollama
05aff4a4f18ced0fe9989a7e8b0246e5c3ae08af
0d140bd1af59def462a0d3fe61c89b468162b5e7
tests: fix embeddinggemma integration test (#12830)
[ { "path": "integration/testdata/embed.json", "patch": "@@ -8,6 +8,6 @@\n \t\"paraphrase-multilingual\": [-0.019807, -0.124781, -0.010519, 0.035812, -0.103448, 0.051982, 0.035322, 0.030018, -0.179976, 0.194586, 0.129194, 0.157071, 0.083678, 0.074628, 0.093773, -0.367580, 0.002608, 0.086277, 0.050985, -0.0056...
2025-10-29T18:07:28
vercel/next.js
ead767a1a7b6d7c9ed631a0c7786cdf089762901
2d81adc5201ad282ae8fb69ec8f24fddc56d3ae1
Turbopack: avoid panics due to eventual consistency (#79242) ### What? Avoid panics in favor of bails as this might happen due to eventual consistency.
[ { "path": "turbopack/crates/turbopack-core/src/module_graph/chunk_group_info.rs", "patch": "@@ -3,7 +3,7 @@ use std::{\n ops::{Deref, DerefMut},\n };\n \n-use anyhow::{Result, bail};\n+use anyhow::{Context, Result, bail};\n use either::Either;\n use indexmap::map::Entry;\n use roaring::RoaringBitmap;\n@...
2025-05-27T09:58:09
golang/go
478ad013f90fe1dbb199d22f41b93c920ae0d5e9
9b4a462a7d85753738723402e298039c3424e584
runtime: don't duplicate reraised panic values in printpanics Change the output printed when crashing with a reraised panic value to not duplicate that value. Changes output of panicking with "PANIC", recovering, and reraising from: panic: PANIC [recovered] panic: PANIC to: panic: PANIC [recovered, reraise...
[ { "path": "doc/next/4-runtime.md", "patch": "@@ -1 +1,18 @@\n ## Runtime {#runtime}\n+\n+<!-- go.dev/issue/71517 -->\n+\n+The message printed when a program exits due to an unhandled panic\n+that was recovered and re-raised no longer repeats the text of\n+the panic value.\n+\n+Previously, a program which pa...
2025-01-31T23:03:15
electron/electron
76431ac1fa395386da6655d006d3f96119d37995
a11cc3274f3db09a72f4cc0ff71da4bb1b6da4b1
test: temporarily disable tests on mas arm64 that are causing a crash (#35226) * test: temporarily disable test on mas arm64 that is causing crash * disable the right test * chore: speculative fix for CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER crash * enable all the tests * Revert "chore: speculati...
[ { "path": "spec-main/api-browser-window-spec.ts", "patch": "@@ -5255,7 +5255,8 @@ describe('BrowserWindow module', () => {\n });\n });\n \n- describe('contextIsolation option with and without sandbox option', () => {\n+ // TODO (jkleinsc) renable these tests on mas arm64\n+ ifdescribe(!process.mas ...
2022-08-06T23:02:04
facebook/react
3f5b8c214f64f72aeb1ec0e0aae3d2185b3362a6
7d1c3c15892d8c31c7ca4661f601c41d8541fa8c
Jest: remove haste config (#27257) Since we're not using haste at all, we can just remove the config to disable haste instead of enabling, just to inject an implementation that blocks any haste modules from being recognized. Test Plan: Creating a module and required it to get the expected error that the module ...
[ { "path": "scripts/jest/config.base.js", "patch": "@@ -2,9 +2,6 @@\n \n module.exports = {\n globalSetup: require.resolve('./setupGlobal.js'),\n- haste: {\n- hasteImplModulePath: require.resolve('./noHaste.js'),\n- },\n modulePathIgnorePatterns: [\n '<rootDir>/scripts/rollup/shims/',\n '<ro...
2023-08-22T14:12:28
ollama/ollama
0d140bd1af59def462a0d3fe61c89b468162b5e7
93e45f0f0d3fbc28d23cc71a68f05249cd53c03f
fix: conv2d bias (#12834)
[ { "path": "ml/nn/convolution.go", "patch": "@@ -10,7 +10,8 @@ type Conv2D struct {\n func (m *Conv2D) Forward(ctx ml.Context, t ml.Tensor, s0, s1, p0, p1, d0, d1 int) ml.Tensor {\n \tt = m.Weight.Conv2D(ctx, t, s0, s1, p0, p1, d0, d1)\n \tif m.Bias != nil {\n-\t\tt = t.Add(ctx, m.Bias)\n+\t\t// Bias shape i...
2025-10-29T18:03:43
vercel/next.js
c0104dcf55a1b70b7e307a96328f5d48b4bbc2a3
522793548a23298bd17cae272802959ba5fc7f98
Turbopack: improve error handling when DB read/deserialization fails (#79545) ### What? Instead of only printing on DB read errors, panic instead of continuing with a corrupted graph. Also improve the error message to be more clear about deserialization errors: Before: ``` Looking up data for TaskId 3 failed: miss...
[ { "path": "turbopack/crates/turbo-tasks-backend/src/backend/mod.rs", "patch": "@@ -220,9 +220,13 @@ impl<B: BackingStorage> TurboTasksBackendInner<B> {\n Self {\n options,\n start_time: Instant::now(),\n- session_id: backing_storage.next_session_id(),\n+ ...
2025-05-27T07:43:17
huggingface/transformers
8464284d2f65b60b2c80cf41fd9b57891ebe25ef
42ff4f324f02448dcf03ea7d619f682b4e62c010
chore(typing): Add type checking to `src/transformers/quantizers` (#44412) * chore(typing): add `ty` type checking for src/transformers/generation Add type declarations for mixin host-class attributes on GenerationMixin, class-level annotations for dynamically-set attributes on GenerationConfig, and fix minor typing ...
[ { "path": "Makefile", "patch": "@@ -7,7 +7,7 @@ check_dirs := examples tests src utils scripts benchmark benchmark_v2\n exclude_folders := \"\"\n \n # Directories to type-check with ty\n-ty_check_dirs := src/transformers/utils src/transformers/generation\n+ty_check_dirs := src/transformers/_typing.py src/t...
2026-03-11T08:18:57
golang/go
0da7fafac4eabec799df40278f68ba86b574afea
65004c7bf4a1193af7742a6de9bc515c4b07bb75
net: fix ListenMulitcastUDP to work properly when interface has no IPv4 The existing implementation would either fail or bind to the wrong interface when the requested interface had no IPv4 address, such as when the Ethernet cable was unplugged. Now on Linux, it will always bind to the requested interface. On other o...
[ { "path": "src/net/sockopt_posix.go", "patch": "@@ -7,7 +7,6 @@\n package net\n \n import (\n-\t\"internal/bytealg\"\n \t\"runtime\"\n \t\"syscall\"\n )\n@@ -43,35 +42,6 @@ func interfaceToIPv4Addr(ifi *Interface) (IP, error) {\n \treturn nil, errNoSuchInterface\n }\n \n-func setIPv4MreqToInterface(mreq *sy...
2025-01-25T21:21:53
electron/electron
a11cc3274f3db09a72f4cc0ff71da4bb1b6da4b1
a719568ac131885c736047e4bb532c70ba4591a8
build: fix webpack prod failure (#35227)
[ { "path": "package.json", "patch": "@@ -73,7 +73,7 @@\n \"typescript\": \"^4.5.5\",\n \"webpack\": \"^5.73.0\",\n \"webpack-cli\": \"^4.10.0\",\n- \"wrapper-webpack-plugin\": \"^2.1.0\"\n+ \"wrapper-webpack-plugin\": \"^2.2.0\"\n },\n \"private\": true,\n \"scripts\": {", "additi...
2022-08-05T16:21:00
facebook/react
7d1c3c15892d8c31c7ca4661f601c41d8541fa8c
b2772592321db426a81d52becea9dc86394afe29
Regression test: Stylesheet suspends indefinitely when part of error boundary UI during initial hydration (#27258) Adds a failing test for a case discovered by Next.js. An error boundary is triggered during initial hydration, and the error fallback includes a stylesheet. If the stylesheet has not yet been loaded, th...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMFloat-test.js", "patch": "@@ -3385,6 +3385,93 @@ body {\n );\n });\n \n+ // @gate FIXME\n+ it('loading a stylesheet as part of an error boundary UI, during initial render', async () => {\n+ class ErrorBoundary extends React.Component {\n+ s...
2023-08-21T23:14:56
ollama/ollama
a342160803f4b9cbd85c2cdf411c265af224f385
f6c29409dc0823fcb0b42e8138ea3e208d6b5edf
docs: fix root api documentation page (#12813)
[ { "path": "docs/api.md", "patch": "@@ -1,3 +1,47 @@\n-# API Reference\n+---\n+title: \"Introduction\"\n+---\n \n-Ollama's API reference now lives here: https://docs.ollama.com/api\n+Ollama's API allows you to run and interact with models programatically.\n+\n+## Get started\n+\n+If you're just getting start...
2025-10-29T02:17:54
vercel/next.js
05dc8408beaccef01f24e2f1cfd95cc99e502e6e
e5f2e0f9c1a78b9a391085c803f6711a54120088
Unflake `Undefined default export` test (#79632) [flakiness metric](https://app.datadoghq.com/ci/test/runs?query=test_level%3Atest%20env%3Aci%20%40git.repository.id%3Agithub.com%2Fvercel%2Fnext.js%20%40test.service%3Anextjs%20%40test.status%3Afail%20%40test.name%3A%22Undefined%20default%20export%20should%20error%20whe...
[ { "path": "test/development/acceptance-app/undefined-default-export.test.ts", "patch": "@@ -1,11 +1,11 @@\n import path from 'path'\n import { FileRef, nextTestSetup } from 'e2e-utils'\n import { createSandbox } from 'development-sandbox'\n+import { retry } from 'next-test-utils'\n \n describe('Undefined de...
2025-05-26T12:14:08
huggingface/transformers
42ff4f324f02448dcf03ea7d619f682b4e62c010
4b442cd65a3f725ac09030eadcbf166e4ae24c00
Fix: AQLM quantizer to match updated replace_with_aqlm_linear signature (#44577) fix AQML argument
[ { "path": "src/transformers/quantizers/quantizer_aqlm.py", "patch": "@@ -55,7 +55,7 @@ def _process_model_before_weight_loading(\n replace_with_aqlm_linear(\n model,\n quantization_config=self.quantization_config,\n- linear_weights_not_to_quantize=self.quantization...
2026-03-10T17:36:04
golang/go
65004c7bf4a1193af7742a6de9bc515c4b07bb75
cd595be6d669af171bc28bdc939cc36785717718
cmd/go: report gcc ld error message when linking fails The output of the gcc ld command is useful to understand why a package that uses cgo can't use internal linking. We should log it. Change-Id: Id524065fc5348be57387f2b67d1e00861f9adf15 Reviewed-on: https://go-review.googlesource.com/c/go/+/646315 LUCI-TryBot-Resul...
[ { "path": "src/cmd/go/internal/work/exec.go", "patch": "@@ -2208,7 +2208,7 @@ func (b *Builder) gccld(a *Action, objdir, outfile string, flags []string, objs\n \t}\n \n \tcmdargs := []any{cmd, \"-o\", outfile, objs, flags}\n-\t_, err := sh.runOut(base.Cwd(), b.cCompilerEnv(), cmdargs...)\n+\tout, err := sh....
2025-02-03T20:05:51
electron/electron
c47031a279492a074804ed5cfe714d5c92b3d128
74432a313cb05bf61b1aaae889357d81f8620031
docs: Fix the URL bugs at tutorial-6-publishing-updating.md (#35175) * Update tutorial-6-publishing-updating.md The dot at the end of the URL will depend on the site that cannot open. Because it will open `https://update.electronjs.org./` which does not exist. * docs: fix the URL problems at tutorial-6-publishin...
[ { "path": "docs/tutorial/tutorial-6-publishing-updating.md", "patch": "@@ -27,7 +27,7 @@ into your app code.\n ## Using update.electronjs.org\n \n The Electron maintainers provide a free auto-updating service for open-source apps\n-at https://update.electronjs.org. Its requirements are:\n+at [https://update...
2022-08-03T14:20:37
facebook/react
1c568435185789c1916e2474b2e96fb2fb1d7e6f
6be03b681e330054d8a7ea6d8348c8ae13285528
[tests] Allow .ts, .tsx fixture files
[ { "path": "compiler/forget/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/jsx-tag-evaluation-order.expect.md", "patch": "@@ -4,7 +4,7 @@\n ```javascript\n import { StaticText1, StaticText2 } from \"shared-runtime\";\n \n-function Component(props) {\n+function Component(props: { value: st...
2023-08-22T16:54:01
ollama/ollama
f6c29409dc0823fcb0b42e8138ea3e208d6b5edf
7d25b9e194f106e9c2a5289dfde40077c0838b7d
docs: add new cloud model + fix openai redirect (#12812)
[ { "path": "docs/api.md", "patch": "@@ -0,0 +1,3 @@\n+# API Reference\n+\n+Ollama's API reference now lives here: https://docs.ollama.com/api", "additions": 3, "deletions": 0, "language": "Markdown" }, { "path": "docs/cloud.mdx", "patch": "@@ -17,6 +17,7 @@ Ollama currently supports t...
2025-10-29T02:09:07
vercel/next.js
e5f2e0f9c1a78b9a391085c803f6711a54120088
e0d4df2180111bcb1511fc08d40d4c1b237326dd
[release-new] fix: release pr commit contains `(#number)` at last (#79611) When the "Version Packages" PR is merged, the created commit is the format of "Version Packages (#number)". Therefore, the check-is-release.js script won't match the current regex. Also, I modified the workflows that use the `check-is-release.j...
[ { "path": ".github/workflows/build_and_deploy.yml", "patch": "@@ -19,8 +19,9 @@ env:\n #\n # See https://doc.rust-lang.org/rustc/platform-support/apple-darwin.html#os-version for more details\n MACOSX_DEPLOYMENT_TARGET: 11.0\n- # This will become \"true\" if the latest commit is\n- # \"Version Packa...
2025-05-26T12:02:49
huggingface/transformers
4b442cd65a3f725ac09030eadcbf166e4ae24c00
519c26f9c41bd77bdd20fc0420dd766a2482193e
[device_map] Fix device_map computation by correctly adjusting memory available (#44565) * fix * safe fix * fix * typo * better
[ { "path": "src/transformers/integrations/accelerate.py", "patch": "@@ -43,7 +43,7 @@\n \n if is_accelerate_available():\n from accelerate import dispatch_model\n- from accelerate.utils import get_max_memory\n+ from accelerate.utils import get_max_memory as accelerate_max_memory\n from accelera...
2026-03-10T17:15:58
electron/electron
74432a313cb05bf61b1aaae889357d81f8620031
4e919c919c030cdcf215256a7573864afd7748a2
docs: fix link in tutorial (#35192) Relands https://github.com/electron/electronjs.org-new/pull/240 upstream
[ { "path": "docs/tutorial/tutorial-4-adding-features.md", "patch": "@@ -64,7 +64,7 @@ into end users' hands.\n \n [discord]: https://discord.gg/electronjs\n [github]: https://github.com/electron/electronjs.org-new/issues/new\n-[how to]: ./examples.md\n+[how-to]: ./examples.md\n [node-platform]: https://nodej...
2022-08-03T14:12:06
huggingface/transformers
519c26f9c41bd77bdd20fc0420dd766a2482193e
1bd97f246318456c1b87cf8ef8dc043ec1a53fff
Fix PR comment CI for quantization job (#44579) try Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": ".github/workflows/self-scheduled.yml", "patch": "@@ -449,7 +449,7 @@ jobs:\n working-directory: /transformers\n env:\n commit_sha: ${{ inputs.commit_sha || github.sha }}\n- run: git fetch && git checkout \"$commit_sha\"\n+ run: git fetch origin \"$commit_sh...
2026-03-10T16:58:42
golang/go
cd595be6d669af171bc28bdc939cc36785717718
a8e532b0f234b3bbf7a1cdcd4213d154e82ba08e
cmd/compile: prefer an add when shifting left by 1 ADD(Q|L) has generally twice the throughput. Came up in CL 626998. Throughput by arch: Zen 4: SHLL (R64, 1): 0.5 ADD (R64, R64): 0.25 Intel Alder Lake: SHLL (R64, 1): 0.5 ADD (R64, R64): 0.2 Intel Haswell: SHLL (R64, 1): 0.5 ADD (R64, R64): 0.25 Also...
[ { "path": "src/cmd/compile/internal/ssa/_gen/AMD64.rules", "patch": "@@ -664,9 +664,11 @@\n // Handle bit-testing in the form (a>>b)&1 != 0 by building the above rules\n // and further combining shifts.\n (BT(Q|L)const [c] (SHRQconst [d] x)) && (c+d)<64 => (BTQconst [c+d] x)\n+(BT(Q|L)const [c] (ADDQ x x)) ...
2025-01-11T18:26:57
vercel/next.js
e0d4df2180111bcb1511fc08d40d4c1b237326dd
3175a22feb40cf0d424324493b61cb83c5199451
[ppr] Narrow condition for fallback shell generation at runtime (#79565) This addresses a bug where a fallback shell was generated at runtime when it was not expected to do so. This was an issue with how the `x-now-route-matches` header was parsed and was incorrectly assuming that a falsy header was the same as compar...
[ { "path": ".changeset/giant-bushes-sink.md", "patch": "@@ -0,0 +1,5 @@\n+---\n+'next': patch\n+---\n+\n+Resolved bug where hitting the parameterized path directly would cause a fallback shell generation instead of just rendering the route with the parameterized placeholders.", "additions": 5, "delet...
2025-05-26T11:57:20
ollama/ollama
14977a93506b853f07cc06fa50c211570435877a
29f63f37c87e2c5a908bfb6b2c8b3320052e0bbe
Fix vulkan PCI ID and ID handling (#12775) * Fix vulkan PCI ID and ID handling Intel GPUs may not report PCI IDs which was leading to incorrect overlap detection. Switch to using the existing PCI IDs, however AMD GPUs claim not to report PCI IDs, but actually do, so try anyway, as this is required for ADLX to find t...
[ { "path": "discover/runner.go", "patch": "@@ -117,7 +117,7 @@ func GPUDevices(ctx context.Context, runners []ml.FilteredRunnerDiscovery) []ml.\n \n \t\t// In the second pass, we more deeply initialize the GPUs to weed out devices that\n \t\t// aren't supported by a given library. We run this phase in paral...
2025-10-28T22:15:35
electron/electron
afa4f5052bf5984821b01729a94dcd5b0e04d794
7b8fb2b07418c7bad6ce811ca75c926ee53663fc
fix: consider dock space when showing menu (#35194)
[ { "path": "shell/browser/api/electron_api_menu_mac.mm", "patch": "@@ -131,7 +131,7 @@\n if (!item) {\n CGFloat windowBottom = CGRectGetMinY([view window].frame);\n CGFloat lowestMenuPoint = windowBottom + position.y - [menu size].height;\n- CGFloat screenBottom = CGRectGetMinY([view window].scr...
2022-08-03T08:52:42
vercel/next.js
2219ba0da9efe1eba18cdd7fe8d837e5390b0c65
e4d18b05632d8dbfee18d5572dfa385e00929dee
[release] fix: correctly set tag during publish (#79548) ### Why? The `process.env.RELEASE_TYPE` handling was set incorrectly. It should've been set to the "trigger" workflow, but instead, it was set to the "publish" workflow. Therefore, the "publish" workflow needs to know which dist tag to set for publish. -------...
[ { "path": ".github/workflows/build_and_deploy.yml", "patch": "@@ -611,7 +611,6 @@ jobs:\n env:\n GITHUB_TOKEN: ${{ secrets.RELEASE_BOT_GITHUB_TOKEN }}\n NPM_TOKEN: ${{ secrets.NPM_TOKEN_ELEVATED }}\n- RELEASE_TYPE: ${{ github.event.inputs.releaseType }}\n \n # Add ...
2025-05-26T10:12:24
facebook/react
bcd692fca43543f765c222077ea9fef275d49389
c4d000ce49cc93c2091d8d44506fa7b2092ccbeb
Promote enableOptimizeFunctionExpressions to default/only option We’ve had this feature turned on internally for a while with only a couple minor bugs and no fundamental issues. It’s a necessary change for simplifying function expression dependencies and context variables, so let’s remove the feature flag and fix ...
[ { "path": "compiler/forget/apps/playground/components/Editor/index.tsx", "patch": "@@ -115,7 +115,6 @@ function parsePragma(pragma: string) {\n let disableAllMemoization = false;\n let validateRefAccessDuringRender = true;\n let enableEmitFreeze = null;\n- let enableOptimizeFunctionExpressions = true...
2023-08-18T19:06:16
ollama/ollama
1bdd81691063003e8be5a856942273bd7ca15acd
ad6f6a1d29f45a5c7266bcd7edb5671621e86810
create: inherit FROM model's renderer/parser On main, the `RENDERER` and `PARSER` fields from the `Modelfile` don't get propagated to a new model created with a `req.From` parameter. This is easily triggered via `ollama run qwen3-coder`, then running some save command like `/save qwen3-coder-custom`. Added a regressi...
[ { "path": "server/create.go", "patch": "@@ -119,6 +119,27 @@ func (s *Server) CreateHandler(c *gin.Context) {\n \t\t\t\tif err != nil {\n \t\t\t\t\tch <- gin.H{\"error\": err.Error()}\n \t\t\t\t}\n+\n+\t\t\t\tif err == nil && !remote && (config.Renderer == \"\" || config.Parser == \"\") {\n+\t\t\t\t\tmanife...
2025-10-27T22:14:19
huggingface/transformers
1bd97f246318456c1b87cf8ef8dc043ec1a53fff
3b6c11d47befa9b66755142dbf301f36a096db11
Fix error message label and docstring default in load_sharded_checkpoint (#44523) fix: correct error message label and docstring default in load_sharded_checkpoint Fix two bugs in load_sharded_checkpoint: 1. Copy-paste error: error message for unexpected_keys incorrectly said "Missing key(s)" instead of "Unexpecte...
[ { "path": "src/transformers/trainer_utils.py", "patch": "@@ -1064,7 +1064,7 @@ def load_sharded_checkpoint(model, folder, strict=True, prefer_safe=True):\n folder (`str` or `os.PathLike`): A path to a folder containing the sharded checkpoint.\n strict (`bool`, *optional*, defaults to `True`)...
2026-03-10T15:33:59
electron/electron
7b8fb2b07418c7bad6ce811ca75c926ee53663fc
4e8480b15b63cf71648f8f9357713b8827dec27c
fix: Wayland general CSD fixes (#34955) * fix: broken wayland window decorations due to botched chromium update The `GetTitlebarBounds().height()` is obviously intended to be placed in the `top` parameter, which used to be the second one before upstream removed multi-parameter `gfx::Rect::Inset`, but it's the fir...
[ { "path": "patches/chromium/.patches", "patch": "@@ -114,3 +114,4 @@ disable_freezing_flags_after_init_in_node.patch\n short-circuit_permissions_checks_in_mediastreamdevicescontroller.patch\n chore_add_electron_deps_to_gitignores.patch\n chore_allow_chromium_to_handle_synthetic_mouse_events_for_touch.patch\...
2022-08-03T08:51:52
vercel/next.js
e4d18b05632d8dbfee18d5572dfa385e00929dee
624a40b7f8c96c0a698b0c4b6122a5f1fa52c4d9
Turbopack: use unsigned values for follower and upper edges (#79489) <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose the right checklist for the change(s) that you're making: ##...
[ { "path": "turbopack/crates/turbo-tasks-backend/src/backend/operation/aggregation_update.rs", "patch": "@@ -1304,10 +1304,6 @@ impl AggregationUpdateQueue {\n follower_in_upper = true;\n return None;\n };\n- if old < 0 {\...
2025-05-26T06:45:28
facebook/react
d5a8e801571fbada273171e646d6b50d4cd81992
5b6370234c1dd34f1e95aefe0bf023f29a5f7083
[rust][ci] Run cargo check/fmt Formats the codebase, fixes some clippy lints, and updates CI to check that code is formatted.
[ { "path": "compiler/.github/workflows/rust.yml", "patch": "@@ -17,15 +17,53 @@ on:\n \n env:\n CARGO_TERM_COLOR: always\n+ RUSTFLAGS: -Dwarnings\n \n jobs:\n test:\n- runs-on: ubuntu-latest\n+ name: Rust Test (${{ matrix.target.os }})\n+ strategy:\n+ matrix:\n+ target:\n+ ...
2023-08-17T19:59:29
huggingface/transformers
1cbb9c2ece62a73007fa5c36a49c40c09c7bfda6
652f2f7a50096f1fc65356b4e7bb1b50fe1888fc
[`fix`] Prevent crash with Apertus without xielu installed (#44567) Prevent crash with Apertus without xielu installed
[ { "path": "src/transformers/activations.py", "patch": "@@ -267,9 +267,8 @@ def __init__(\n logger.warning_once(msg)\n except Exception as err:\n logger.warning_once(\n- \"CUDA-fused xIELU not available (%s) – falling back to a Python version.\\n\"\n- ...
2026-03-10T13:23:33
electron/electron
4e8480b15b63cf71648f8f9357713b8827dec27c
3fe00d75e9499ed9f55754548358e10385ab169e
chore: fix linking with component ffmpeg (#35178)
[ { "path": "BUILD.gn", "patch": "@@ -901,6 +901,13 @@ if (is_mac) {\n \"@executable_path/../../../../../..\",\n ]\n }\n+\n+ # For component ffmpeg under non-component build, it is linked from\n+ # @loader_path. However the ffmpeg.dylib is moved to a different place\n+ # when genera...
2022-08-03T07:51:30
vercel/next.js
734754760f7606f1da3865b27bdbcb6a73cfe029
dc84c3f3e44a48a7c45c9d51c2476603098e9883
[release] fix: `GITHUB_TOKEN` is needed to open release pr (#79609) To open a "Version Packages" PR, the Action requires a `GITHUB_TOKEN` token. Discovered while testing: ![CleanShot 2025-05-25 at 13 38 56@2x](https://github.com/user-attachments/assets/91d6b4b6-0f13-4cf1-85d7-fa309ca3aaa0)
[ { "path": ".github/workflows/trigger_release_new.yml", "patch": "@@ -111,3 +111,5 @@ jobs:\n uses: changesets/action@v1\n with:\n version: pnpm ci:version\n+ env:\n+ GITHUB_TOKEN: ${{ secrets.RELEASE_BOT_GITHUB_TOKEN }}", "additions": 2, "deletions": 0, ...
2025-05-25T14:04:58
golang/go
51bf2cf7cfa999777697a9548d59d22c3716fbde
220fe7987138a4b6c63de4b750fda58852237560
Revert "cmd/go/internal/work: allow @ character in some -Wl, linker flags on darwin" This reverts CL 638075 (commit e3cd55e9d293d519e622e788e902f372dc30338a). This change introduced a security issue as @ flags are first resolved as files by the darwin linker, before their meaning as flags, allowing the flag filtering...
[ { "path": "src/cmd/go/internal/work/security.go", "patch": "@@ -227,21 +227,6 @@ var validLinkerFlags = []*lazyregexp.Regexp{\n \tre(`\\./.*\\.(a|o|obj|dll|dylib|so|tbd)`),\n }\n \n-var validLinkerFlagsOnDarwin = []*lazyregexp.Regexp{\n-\t// The GNU linker interprets `@file` as \"read command-line options f...
2025-01-29T16:03:59
facebook/react
ac1a16c67e268fcb2c52e91717cbc918c7c24446
ade82b8dd956bdaa5b7c47400fba9152c2435756
Add Postpone API (#27238) This adds an experimental `unstable_postpone(reason)` API. Currently we don't have a way to model effectively an Infinite Promise. I.e. something that suspends but never resolves. The reason this is useful is because you might have something else that unblocks it later. E.g. by updating...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -21,7 +21,9 @@ import type {HintModel} from 'react-server/src/ReactFlightServerConfig';\n \n import type {CallServerCallback} from './ReactFlightReplyClient';\n \n-import {enableBinaryFlight} from 'shared/ReactFeatureFlags';\n+import t...
2023-08-17T17:26:14
huggingface/transformers
c7648c8fd5dd6c3d5eed114b3763dadf4a3ea051
b7e4da0443af063d531c8c272b1ba0bdfcdf0702
Fix failing `MusicgenStereo` integration tests (#44527) * Fix failing PerceptionLMForConditionalGenerationIntegrationTest * Fix failing MusicgenStereoIntegrationTests * make style * Revert perception lm changes
[ { "path": "tests/models/musicgen/test_modeling_musicgen.py", "patch": "@@ -1291,7 +1291,9 @@ def test_generate_text_audio_prompt(self):\n class MusicgenStereoIntegrationTests(unittest.TestCase):\n @cached_property\n def model(self):\n- return MusicgenForConditionalGeneration.from_pretrained(\...
2026-03-10T12:20:20
electron/electron
3d4d1b33ba7f33fbdf377c7abc4c185ba1f29578
53cd23159e0eeddf32399560e163c3fe1a1c144b
fix: fail non-fatally when InitLogging fails (#35138)
[ { "path": "shell/common/logging.cc", "patch": "@@ -141,7 +141,7 @@ void InitElectronLogging(const base::CommandLine& command_line,\n : APPEND_TO_OLD_LOG_FILE;\n bool success = InitLogging(settings);\n if (!success) {\n- PLOG(FATAL) << \"Failed to init logging\";\n+ PLOG(ERROR) << \"Faile...
2022-08-02T19:45:30
vercel/next.js
0e769b3283c75b3adb95df0490f6bd73592bfb91
20fabb959eba2fffdea4c60c42288c632e06caf4
Fix --tag argument in publish-release (#79599) Somehow `@ts-check` didn't catch this array not being spread anymore.
[ { "path": "scripts/publish-release.js", "patch": "@@ -86,7 +86,8 @@ const cwd = process.cwd()\n '--access',\n 'public',\n '--ignore-scripts',\n- ['--tag', tag],\n+ '--tag',\n+ tag,\n ],\n { stdio: 'pipe' }\n )", "additions": ...
2025-05-25T00:38:40
facebook/react
3ce41169303eceb47b4a5147e8fceeea23a145e8
543d27c2f0e43113fb22740a90946eeb52e57bb5
[rust][sema] Only create one scope per function/class Fixes up function and class handling to not create nested scopes in some cases. Doesn't affect name resolution otherwise.
[ { "path": "compiler/forget/crates/forget_semantic_analysis/src/analyzer.rs", "patch": "@@ -149,53 +149,49 @@ impl Analyzer {\n }\n \n fn visit_function<T: IntoFunction>(&mut self, node: &T) {\n+ assert_eq!(self.manager.scope(self.current).kind, ScopeKind::Function);\n let function = n...
2023-08-17T17:03:00
huggingface/transformers
b7e4da0443af063d531c8c272b1ba0bdfcdf0702
5a098a1e01034095f037c8a37f7fe87c31118e26
Fix zamba2 rotary embedding call when use_mem_rope is False (#44551) * only call rotary_emb when config.use_mem_rope is True * add fix in modular
[ { "path": "src/transformers/models/zamba2/modeling_zamba2.py", "patch": "@@ -1339,7 +1339,12 @@ def forward(\n past_key_values=past_key_values,\n position_ids=position_ids,\n )\n- position_embeddings = self.rotary_emb(hidden_states, position_ids=position_ids)\n+\n+ ...
2026-03-10T11:43:36
golang/go
220fe7987138a4b6c63de4b750fda58852237560
b45c7d546669c37bbfdb1dedffa1b3e12acfc18c
cmd/go: add '-skip' to list of cacheable test flags -run is cacheable, so -skip should be cacheable too. Fixes #70692 Change-Id: I16880189b0d3a963f8f08008fc7fedcdc6f11630 Cq-Include-Trybots: luci.golang.try:gotip-linux-amd64-longtest,gotip-windows-amd64-longtest Reviewed-on: https://go-review.googlesource.com/c/go/+...
[ { "path": "src/cmd/go/alldocs.go", "patch": "@@ -1890,7 +1890,7 @@\n // The rule for a match in the cache is that the run involves the same\n // test binary and the flags on the command line come entirely from a\n // restricted set of 'cacheable' test flags, defined as -benchtime, -cpu,\n-// -list, -paralle...
2025-02-05T20:27:29
electron/electron
e3893632e7e7cf39fff160946fdc19a7ae058da2
0cdc946b2708c3592ec1c413f28a28442c843183
fix: touch events not recognized by WCO on windows (#35117)
[ { "path": "patches/chromium/.patches", "patch": "@@ -114,3 +114,4 @@ fix_allow_guest_webcontents_to_enter_fullscreen.patch\n disable_freezing_flags_after_init_in_node.patch\n short-circuit_permissions_checks_in_mediastreamdevicescontroller.patch\n chore_add_electron_deps_to_gitignores.patch\n+chore_allow_ch...
2022-08-02T03:13:58
ollama/ollama
e0ead1adee0a36f8aecf0df9747996354ee1ed8c
d515aed6c3c23cc7830462c2b4055076e207fc9d
embeddings: base64 encoding fix (#12715)
[ { "path": "middleware/openai.go", "patch": "@@ -7,6 +7,7 @@ import (\n \t\"io\"\n \t\"math/rand\"\n \t\"net/http\"\n+\t\"strings\"\n \n \t\"github.com/gin-gonic/gin\"\n \n@@ -44,7 +45,8 @@ type RetrieveWriter struct {\n \n type EmbedWriter struct {\n \tBaseWriter\n-\tmodel string\n+\tmodel string\n...
2025-10-22T18:27:44
huggingface/transformers
5a098a1e01034095f037c8a37f7fe87c31118e26
0e3be3878de5bd23362d37f303be5039437371cb
[Bugfix] fix video inference of qwen3vl and qwen3.5 series (#44474) * fix video inference of qwen3vl and qwen3.5 series * fix ci * get_rope_index inhert from qwen2vl * add test for qwen3vl,qwen3.5 * fix ci * use assertListEqual instead * update CI result
[ { "path": "src/transformers/models/qwen3_5/modeling_qwen3_5.py", "patch": "@@ -1472,24 +1472,8 @@ def get_rope_index(\n **kwargs,\n ) -> tuple[torch.Tensor, torch.Tensor]:\n \"\"\"\n- Calculate the 3D rope index based on image and video's sizes. The utility expects a `vision + tex...
2026-03-10T09:42:50
golang/go
ee6e0a5ed6a11f79f40ca58ca5337ec5bad16ebb
721f5ca4edc8073b777bd71df6801b237d72c332
internal/routebsd: fix typo in sockAddrLen identifer name For #70528. Change-Id: I0db75cb998aeb299676384fe59bf241db18ebc5c Reviewed-on: https://go-review.googlesource.com/c/go/+/646975 Reviewed-by: Cherry Mui <cherryyz@google.com> Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> Auto-Submit: Dmitri Shuralyov <dmit...
[ { "path": "src/internal/routebsd/address.go", "patch": "@@ -133,7 +133,7 @@ func parseInetAddr(af int, b []byte) (Addr, error) {\n \t\t}\n \t\tvar ip [ipv6Len]byte\n \t\tsockAddrLen := int(b[0])\n-\t\tif sockaddrLen != 0 {\n+\t\tif sockAddrLen != 0 {\n \t\t\tn := off6 + ipv6Len\n \t\t\tif sockAddrLen < n {\...
2025-02-05T18:52:56
facebook/react
dafa4687659d6ae33a90b80ba5e2e92cb73a077d
bfb7d2bfbd5a8fe2906cf42a5a4a448406c741d7
[rust][sema] Allow defining/resolving known globals Adds an option to pass a list of known globals into the semantic analyzer so that references to globals can be checked. As a follow-up we'll need to distinguish between different types of semantic analysis errors, so that callers which don't want to validate glob...
[ { "path": "compiler/forget/crates/forget_fixtures/tests/fixtures_test.rs", "patch": "@@ -21,7 +21,7 @@ fn fixtures() {\n \n let mut output = String::new();\n \n- let mut analysis = analyze(&ast);\n+ let mut analysis = analyze(&ast, Default::default());\n let diagnostics = analy...
2023-08-16T23:44:40
electron/electron
0cdc946b2708c3592ec1c413f28a28442c843183
0d36c0cdc6fe616fe235e0f1aa32b691054d503d
fix: modify file extension generation on Windows (#34723) * fix: modify file extension generation on Windows * modify includes * include vector in header * add win build flags * remove hardcoded strings * Update shell/browser/electron_download_manager_delegate.h Co-authored-by: Charles Kerr <charles@...
[ { "path": "shell/browser/electron_download_manager_delegate.cc", "patch": "@@ -30,6 +30,16 @@\n #include \"shell/common/gin_converters/file_path_converter.h\"\n #include \"shell/common/options_switches.h\"\n \n+#if BUILDFLAG(IS_WIN)\n+#include <vector>\n+\n+#include \"base/i18n/case_conversion.h\"\n+#includ...
2022-08-02T00:40:17
ollama/ollama
d515aed6c3c23cc7830462c2b4055076e207fc9d
5fe7ba1b9b1c7f4d67e1ff52adc7bd4285d0e01b
cloud: don't error sending empty messages (#12724)
[ { "path": "server/routes.go", "patch": "@@ -1874,10 +1874,14 @@ func (s *Server) ChatHandler(c *gin.Context) {\n \t\t\treq.Options = map[string]any{}\n \t\t}\n \n-\t\tmsgs := append(m.Messages, req.Messages...)\n-\t\tif req.Messages[0].Role != \"system\" && m.System != \"\" {\n-\t\t\tmsgs = append([]api.Mes...
2025-10-22T01:12:14
huggingface/transformers
52c93cfb2e58b2d38d864c4f466dc743dce51597
a08aa52d4b4e37f8f33364ce85bd3a66c2c1cac0
chameleon added to MODELS_WITH_INCORRECT_HUB_TOKENIZER_CLASS (#44475) Co-authored-by: Harry Mellor <19981378+hmellor@users.noreply.github.com>
[ { "path": "src/transformers/models/auto/tokenization_auto.py", "patch": "@@ -341,6 +341,7 @@\n # These models will be forced to use TokenizersBackend.\n MODELS_WITH_INCORRECT_HUB_TOKENIZER_CLASS: set[str] = {\n \"arctic\",\n+ \"chameleon\",\n \"deepseek_vl\",\n \"deepseek_vl_v2\",\n \"dee...
2026-03-09T22:21:44
facebook/react
ade82b8dd956bdaa5b7c47400fba9152c2435756
0fb5b61ac6951a492242618e4ace6c1826335efc
[Flight] Refactor emit and process functions (#27234) Since we no longer have externally configured "process" methods, I just inlined all of those. The main thing in this refactor is that I just inlined all the error branches into just `emitErrorChunk`. I'm not sure why it was split up an repeated before but thi...
[ { "path": "packages/react-server/src/ReactFlightServer.js", "patch": "@@ -298,12 +298,7 @@ function serializeThenable(request: Request, thenable: Thenable<any>): number {\n case 'rejected': {\n const x = thenable.reason;\n const digest = logRecoverableError(request, x);\n- if (__DEV__) ...
2023-08-16T21:04:21
golang/go
a7cbea833276454597c583751629a3e11cfa9232
f6ea0621d2e7e7386d7f58241fb34bc78e39ebcc
cmd/go: skip bzr tests if 'bzr help' has non-zero exit code It appears to be quite easy to end up with a broken 'bzr' installation. For example, if bzr was installed via a system-wide package manager and intends to work with a system-wide Python installation, it may break if another 'python3' binary is added to PATH. ...
[ { "path": "src/cmd/go/internal/vcweb/script.go", "patch": "@@ -32,6 +32,17 @@ import (\n func newScriptEngine() *script.Engine {\n \tconds := script.DefaultConds()\n \n+\tadd := func(name string, cond script.Cond) {\n+\t\tif _, ok := conds[name]; ok {\n+\t\t\tpanic(fmt.Sprintf(\"condition %q is already regi...
2025-02-05T00:54:25
ollama/ollama
d2b63c19b326a5bfeacdfd407a95cf706927e1a0
94f110b35aaa774a797cde3ee16e7260ee46b855
fs(ggml): fill in arch prefix if necessary (#12646)
[ { "path": "convert/convert_test.go", "patch": "@@ -18,6 +18,7 @@ import (\n \t\"strings\"\n \t\"testing\"\n \n+\t\"github.com/google/go-cmp/cmp\"\n \t\"github.com/ollama/ollama/fs/ggml\"\n )\n \n@@ -339,13 +340,8 @@ func TestConvertAdapter(t *testing.T) {\n \t\t\t}\n \n \t\t\tactual := generateResultsJSON(t...
2025-10-20T23:42:18
electron/electron
7588bb7425522959206daaa25d7e1f36c7015934
6c17dd229618d6033b0e2255db29315cd3a891a4
fix: DCHECK entering fullscreen while loading url (#35111) * fix: DCHECK entering fullscreen while loading url * spec: fixup test
[ { "path": "shell/browser/api/electron_api_web_contents.cc", "patch": "@@ -1327,6 +1327,8 @@ void WebContents::OnEnterFullscreenModeForTab(\n return;\n }\n \n+ owner_window()->set_fullscreen_transition_type(\n+ NativeWindow::FullScreenTransitionType::HTML);\n exclusive_access_manager_->fullscre...
2022-08-01T20:52:58
vercel/next.js
b3e6064cc30a885d1cb36ec422dcc2b5d53b8922
2bb5ed2103498d3ccc3ac3b085ae39b1e18f8478
docs (data fetching): fix typo in startTransition call (#79578) Fix typo in useEffect hook when calling the startTransition hook. <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose...
[ { "path": "docs/01-app/03-building-your-application/02-data-fetching/03-server-actions-and-mutations.mdx", "patch": "@@ -678,7 +678,7 @@ export default function ViewCount({ initialViews }: { initialViews: number }) {\n const [isPending, startTransition] = useTransition()\n \n useEffect(() => {\n- sta...
2025-05-24T20:37:47
huggingface/transformers
138c1c813c6586d5702f9719e00114c1f8e99070
1a50a3b13b6d17c2637fe19e94a8c459bd4208a5
Fix: Remove references to `text2text-generation`, `summarization` and `translation` pipeline tasks (#44510) * fix: clean up docs of summarization and translation pipeline * remove references of text2text-generation task * Update docs/source/en/tasks/prompting.md Co-authored-by: Steven Liu <59462357+stevhliu@users.n...
[ { "path": "docs/source/ar/task_summary.md", "patch": "@@ -221,15 +221,6 @@\n \n في الأيام الأولى، كانت نماذج الترجمة في الغالب أحادية اللغة، ولكن مؤخرًا، كان هناك اهتمام متزايد بالنماذج متعددة اللغات التي يمكنها الترجمة بين العديد من أزواج اللغات.\n \n-```py\n->>> from transformers import pipeline\n-\n->>> ...
2026-03-09T19:00:13
facebook/react
796080f4d1797ba2819b736e1e2ce2cfb6512d98
2edf66ecdfa31bbae9384b0f8993a0fbe6e0b025
[rust][sema] Statically detect some TDZ violations The [temporal dead zone](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/let#temporal_dead_zone_tdz), often abbreviated TDZ, is the period between the start of its declaring block and the line that contains the let/const/class declarat...
[ { "path": "compiler/forget/crates/forget_semantic_analysis/src/analyzer.rs", "patch": "@@ -7,8 +7,8 @@ use forget_estree::{\n };\n \n use crate::{\n- AstNode, DeclarationKind, Label, LabelId, LabelKind, ReferenceKind, ScopeId, ScopeKind,\n- ScopeManager,\n+ AstNode, DeclarationId, DeclarationKind, ...
2023-08-16T00:20:34
golang/go
f6ea0621d2e7e7386d7f58241fb34bc78e39ebcc
b7c9cdd53cb39934f74b1cdbe08ad1f9e4a12e78
internal/routebsd: fix parsing network address of length zero This applies CL 646555 from the net repository to this copy. For #70528 Change-Id: Ib7e23accfa3f278392e7bdca6f8544b8f1395e7e Reviewed-on: https://go-review.googlesource.com/c/go/+/646676 Reviewed-by: Damien Neil <dneil@google.com> Auto-Submit: Ian Lance T...
[ { "path": "src/internal/routebsd/address.go", "patch": "@@ -102,44 +102,52 @@ func (a *InetAddr) Family() int {\n // parseInetAddr parses b as an internet address for IPv4 or IPv6.\n func parseInetAddr(af int, b []byte) (Addr, error) {\n \tconst (\n-\t\toff4 = 4 // offset of in_addr\n-\t\toff6 = 8 // offset...
2025-02-04T23:11:42
ollama/ollama
5d22953ba7913cde3f791ba4aa4ae6c55f3f56bf
d245dffed838b03aadc213df95880d03b22a619c
cuda: get driver version after props (#12707) Users on Windows without GPUs are reporting errors relating to cudaDriverGetVersion with the device set to -1. This ensures we only grab the driver once we're enumerating actual devices.
[ { "path": "llama/patches/0026-GPU-discovery-enhancements.patch", "patch": "@@ -6,20 +6,20 @@ Subject: [PATCH] GPU discovery enhancements\n Expose more information about the devices through backend props, and leverage\n management libraries for more accurate VRAM usage reporting if available.\n ---\n- ggml/i...
2025-10-20T17:57:27
vercel/next.js
2bb5ed2103498d3ccc3ac3b085ae39b1e18f8478
adc81abd894e1a3ea77b9ec23ed314275596319f
[release-legacy] fix: set `stable` dist tag for backport releases instead of `latest` (#79596) ### Why? If the current version is less than the latest, it means this is a backport release. Since NPM sets the `latest` tag by default during publishing, when users install `next@latest`, they might get the backported ver...
[ { "path": "scripts/publish-release.js", "patch": "@@ -3,6 +3,7 @@\n \n const path = require('path')\n const execa = require('execa')\n+const semver = require('semver')\n const { Sema } = require('async-sema')\n const { execSync } = require('child_process')\n const fs = require('fs')\n@@ -32,6 +33,34 @@ cons...
2025-05-24T20:12:32
huggingface/transformers
1a50a3b13b6d17c2637fe19e94a8c459bd4208a5
0a0ac7a2875cf481f1edf77552a7c5a6ae1399a5
fix(testing): Fix MoonshineEncoder UnboundLocalError and Florence2VisionBackbone dtype mismatch (#44503) fix: Resolve runtime errors in MoonshineEncoder and Florence2VisionBackbone
[ { "path": "src/transformers/models/florence2/modeling_florence2.py", "patch": "@@ -558,6 +558,8 @@ def __init__(self, config: Florence2VisionConfig):\n def forward(\n self, hidden_states: torch.Tensor, **kwargs: Unpack[TransformersKwargs]\n ) -> tuple | BaseModelOutputWithPooling:\n+ ...
2026-03-09T16:31:42
facebook/react
2edf66ecdfa31bbae9384b0f8993a0fbe6e0b025
34914796b247b8fd2912fe90ebd301ad7b2fdb74
[rust][sema] Resolve all references after traversing program Previously we attempted to resolve each reference at the close of its defining scope, and if it couldn't be resolved yet we bubbled the unresolved reference up to the parent scope. That approach isn't ideal for two reasons: * First, it's inefficient sin...
[ { "path": "compiler/forget/crates/forget_semantic_analysis/src/analyzer.rs", "patch": "@@ -14,13 +14,23 @@ use crate::{\n pub fn analyze(ast: &Program) -> ScopeManager {\n let mut analyzer = Analyzer::new(ast);\n analyzer.visit_program(ast);\n- analyzer.manager\n+ analyzer.complete()\n }\n \n ...
2023-08-15T19:33:45
golang/go
b7c9cdd53cb39934f74b1cdbe08ad1f9e4a12e78
bcfa00cbd259a8653547b227f8207ab43bf7d5c8
cmd/compile: establish limits of bool to uint8 conversions Improves bound check elimination for: func arrayLargeEnough(b bool, a [2]int64) int64 { c := byte(0) if b { c = 1 } // this bound check gets elided return a[c] } We also detect never true branches like: func cCanOnlyBe0or1(b boo...
[ { "path": "src/cmd/compile/internal/ssa/prove.go", "patch": "@@ -1653,6 +1653,10 @@ func initLimit(v *Value) limit {\n \tcase OpCtz8, OpBitLen8:\n \t\tlim = lim.unsignedMax(8)\n \n+\t// bool to uint8 conversion\n+\tcase OpCvtBoolToUint8:\n+\t\tlim = lim.unsignedMax(1)\n+\n \t// length operations\n \tcase Op...
2025-01-14T21:13:29
electron/electron
6c17dd229618d6033b0e2255db29315cd3a891a4
29434ee7c671637bf2be54d0200ff4cdddec1d76
fix: ensure native modules use the correct config (#35159) * fix: ensure native modules are built with config.gypi This works by patching node.h to check that two defines are set using the equivilant of an XNOR operation. One define "ELECTRON_ENSURE_CONFIG_GYPI" is set via common.gypi which is _already_ used to bu...
[ { "path": "BUILD.gn", "patch": "@@ -233,6 +233,7 @@ action(\"electron_js2c\") {\n action(\"generate_config_gypi\") {\n outputs = [ \"$root_gen_dir/config.gypi\" ]\n script = \"script/generate-config-gypi.py\"\n+ inputs = [ \"//third_party/electron_node/configure.py\" ]\n args = rebase_path(outputs) +...
2022-08-01T14:52:26
ollama/ollama
ba2253dc30552abc646e0b9f2ee2f6ea01248044
68e04c7ff88dca128016f75dc5bbd2f794bd2028
win: more verbose load failures (#12683) When loading the dynamic libraries, if something goes wrong report some details. Unfortunately this wont explain which dependencies are missing, but this breadcrumb in the logs should help us diagnose GPU discovery failures.
[ { "path": "llama/patches/0031-report-LoadLibrary-failures.patch", "patch": "@@ -0,0 +1,32 @@\n+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001\n+From: Daniel Hiltgen <daniel@ollama.com>\n+Date: Fri, 17 Oct 2025 14:17:00 -0700\n+Subject: [PATCH] report LoadLibrary failures\n+\n+---\n+ ...
2025-10-18T00:13:16
vercel/next.js
b7a7752f144b11815af1eebf8632656ceef88ba6
0adbbd2ee198d576a42b754553615ca166ff2604
de-flake ReactRefreshLogBox (app) (#79573) This test is failing fairly consistently in CI. I suspect it's a timing issue for when the error is thrown and when the redbox gets triggered.
[ { "path": "test/development/acceptance-app/ReactRefreshLogBox.test.ts", "patch": "@@ -1460,11 +1460,14 @@ describe('ReactRefreshLogBox app', () => {\n \n await next.patchFile('index.js', \"throw new Error('module error')\")\n \n- if (isTurbopack) {\n- // TODO(veil): Turbopack is flaky. Pos...
2025-05-23T21:51:55
facebook/react
875d7175ac4d8d13b6ac038a4dcd2bcd0cb8faa8
b133b6c0b47f2f124430cc2ab3d3bdee70c6c921
[rust] cargo fix
[ { "path": "compiler/forget/crates/forget_estree/src/generated_extensions.rs", "patch": "@@ -1,6 +1,6 @@\n // Manual extensions to generated types\n use crate::{\n- ArrowFunctionExpression, Function, FunctionDeclaration, FunctionExpression, ImportDeclaration,\n+ ArrowFunctionExpression, Function, Funct...
2023-08-15T16:31:49
huggingface/transformers
0a0ac7a2875cf481f1edf77552a7c5a6ae1399a5
a049c0044867607b697aaef55de6f87df2120baa
fix FSDP loading with meta devices (#44473) * fix FSDP loading with meta devices * unit tests for fsdp w cpu+meta fixes (claude): * simplify and limit to fsdp * simplify more and fix tests with mocks to fsdp functions * handle prequantized weights too * add a bit more explanations in comment * style --------- ...
[ { "path": "src/transformers/modeling_utils.py", "patch": "@@ -4548,8 +4548,23 @@ def _initialize_missing_keys(self, is_quantized: bool) -> None:\n `_initialize_weights`. Indeed, since the corresponding weights are missing from the state dict, they will not be replaced and need to\n be initia...
2026-03-09T15:46:22
electron/electron
b67c69d741c648569d86c5a7846f2559219f9b14
00e9bf107a6357029b3e4c247456450c3d2554a4
fix: remove skip-taskbar feature on Linux. (#35123)
[ { "path": "docs/api/browser-window.md", "patch": "@@ -1323,7 +1323,7 @@ win.setSheetOffset(toolbarRect.height)\n \n Starts or stops flashing the window to attract user's attention.\n \n-#### `win.setSkipTaskbar(skip)`\n+#### `win.setSkipTaskbar(skip)` _macOS_ _Windows_\n \n * `skip` boolean\n ", "additi...
2022-08-01T10:42:02
ollama/ollama
c744134287788cef18a64f7c022fc7cfee9a8737
4be41d2d4562b39712da8fee1e16ae1d81cf9697
vulkan: Get FilterID from Backend for Vulkan (#12655) * vulkan: Get FilterID from Backend for Vulkan * Fixing patch
[ { "path": "discover/runner.go", "patch": "@@ -550,13 +550,6 @@ func bootstrapDevices(ctx context.Context, ollamaLibDirs []string, extraEnvs []s\n \t}\n \tlogutil.Trace(\"runner enumerated devices\", \"OLLAMA_LIBRARY_PATH\", ollamaLibDirs, \"devices\", devices)\n \n-\t// Enumerate returned devices starting a...
2025-10-16T16:07:35
golang/go
be2b809e5b888ed0ee636f1e07340640ffd88842
a1ea78c470d3136b7aed42a4d8b94497563f98ea
os: fix race condition in readdir by atomically initializing dirinfo This change ensures that dirinfo in the File struct is initialized atomically, avoiding redundant allocations when multiple goroutines access it concurrently. Instead of creating separate buffers, we now use CompareAndSwap to guarantee thread-safe in...
[ { "path": "src/os/dir_plan9.go", "patch": "@@ -11,12 +11,19 @@ import (\n )\n \n func (file *File) readdir(n int, mode readdirMode) (names []string, dirents []DirEntry, infos []FileInfo, err error) {\n-\t// If this file has no dirinfo, create one.\n-\td := file.dirinfo.Load()\n-\tif d == nil {\n-\t\td = new...
2025-02-03T05:56:31
vercel/next.js
5c8f6206b1b2454b3453ab78d45cff1ea28b4f26
50ffa681fb4c2953983286e14f0f0d23731fc3ed
Revert "[next-server] skip setting vary header for basic routes" (#79426) Reverts vercel/next.js#77797 Reinstate the `Vary` header to prevent browsers from incorrectly reusing RSC responses during bfcache restores.
[ { "path": "packages/next/src/server/base-server.ts", "patch": "@@ -104,6 +104,7 @@ import {\n NEXT_ROUTER_SEGMENT_PREFETCH_HEADER,\n NEXT_DID_POSTPONE_HEADER,\n NEXT_URL,\n+ NEXT_ROUTER_STATE_TREE_HEADER,\n NEXT_IS_PRERENDER_HEADER,\n } from '../client/components/app-router-headers'\n import type {...
2025-05-23T20:44:39
huggingface/transformers
a049c0044867607b697aaef55de6f87df2120baa
a50b099a2f4b985dc665c59180b2eb65d786044a
Fix: Remove references to transformers run command (#44513) * fix: remove references of transformer run * fix: add_dates
[ { "path": "docs/source/en/model_doc/albert.md", "patch": "@@ -84,13 +84,6 @@ for token_id in top_k[0]:\n print(f\"Prediction: {tokenizer.decode([token_id])}\")\n ```\n \n-</hfoption>\n-<hfoption id=\"transformers CLI\">\n-\n-```bash\n-echo -e \"Plants create [MASK] through a process known as photosynthe...
2026-03-09T15:37:16
facebook/react
15e0ecaa8f507369a46a0b17fabfd69c60d0f6a2
f2a1a6a6e4fccb1fb6470f9e61b6ea111bf25a41
[rust] Convert Hermes source locations to ESTree SourceRange Teaches the hermes->estree conversion to convert source ranges. This means our diagnostics now point to the actual source of the error: <img width="903" alt="Screenshot 2023-08-14 at 5 39 50 PM" src="https://github.com/facebook/react-forget/assets/64258...
[ { "path": "compiler/forget/Cargo.lock", "patch": "@@ -288,6 +288,7 @@ dependencies = [\n \"forget_utils\",\n \"indexmap\",\n \"insta\",\n+ \"miette\",\n \"serde_json\",\n ]\n ", "additions": 1, "deletions": 0, "language": "Unknown" }, { "path": "compiler/forget/crates/forget_estree_c...
2023-08-15T00:36:58
ollama/ollama
de670570c919f5c3e906b3beb91e9d2fc7ebe600
201d93716e365766af734406df6b637207b75a63
fs/ggml: fix function name in comment (#12630)
[ { "path": "fs/ggml/type.go", "patch": "@@ -229,7 +229,7 @@ const (\n \tTensorTypeMXFP4\n )\n \n-// ParseFileType parses the provided GGUF file type\n+// ParseTensorType parses the provided GGUF tensor type\n // Only Ollama supported types are considered valid\n func ParseTensorType(s string) (TensorType, er...
2025-10-16T04:53:38
golang/go
0825475599d40c786c19c3449e22d2db66754456
5cb5437b6daee8971be0bd393535e263333ef311
cmd/compile: do not treat OpLocalAddr as load in DSE Fixes #70409 Fixes #47107 Change-Id: I82a66c46f6b76c68e156b5d937273b0316975d44 Reviewed-on: https://go-review.googlesource.com/c/go/+/629016 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Keith Randall <khr@go...
[ { "path": "src/cmd/compile/internal/ssa/deadstore.go", "patch": "@@ -52,9 +52,8 @@ func dse(f *Func) {\n \t\t\t\tif v.Op == OpLocalAddr {\n \t\t\t\t\tif _, ok := localAddrs[v.Aux]; !ok {\n \t\t\t\t\t\tlocalAddrs[v.Aux] = v\n-\t\t\t\t\t} else {\n-\t\t\t\t\t\tcontinue\n \t\t\t\t\t}\n+\t\t\t\t\tcontinue\n \t\t...
2024-11-18T09:34:20
electron/electron
00e9bf107a6357029b3e4c247456450c3d2554a4
9028bb79a85fedf64230c2f1c6a29ab072c98c20
docs: new main -> renderers messageChannel example (#34978) * docs: new main -> renderers messageChannel example * consistent use of your * fix a typo * linting * markdown linting * Update docs/tutorial/message-ports.md Co-authored-by: Erick Zhao <erick@hotmail.ca> * update code example headings, ...
[ { "path": "docs/tutorial/message-ports.md", "patch": "@@ -8,8 +8,7 @@ your app.\n \n Here is a very brief example of what a MessagePort is and how it works:\n \n-```js\n-// renderer.js ///////////////////////////////////////////////////////////////\n+```js title='renderer.js (Renderer Process)'\n // Message...
2022-07-29T16:47:43
vercel/next.js
b11a172b15104bd6c6be0ef3eab4c9366c0995c8
04a164ffdfbcf8307fa46ae9d0566d4c7ce3225f
Fix build and deploy workflow (#79569) Fix syntax error introduced in https://github.com/vercel/next.js/pull/79409 This error is hidden on the workflows page unfortunately so isn't seen on the PR itself https://github.com/vercel/next.js/actions/runs/15216527935?pr=79563
[ { "path": ".github/workflows/build_and_deploy.yml", "patch": "@@ -618,7 +618,7 @@ jobs:\n if: steps.changesets.outputs.pullRequestNumber\n run: 'gh pr edit ${{ steps.changesets.outputs.pullRequestNumber }} --add-label \"created-by: CI\"'\n env:\n- GITHUB_TOKEN: ${{ secrets.G...
2025-05-23T20:22:00