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
vercel/next.js
685a68716f78d9720044d064e94a615eaa59acb2
94b246469e6af89d7f509b7a5c3381452543d0f9
Always show warning if fetch cache limit hit (#79384) We previously weren't showing any indication when we weren't setting to the runtime cache in production due to the size limit being hit which can make debugging cache misses very tricky so this ensures we always show the warning not just in dev mode. x-ref: [slack...
[ { "path": "packages/next/src/server/lib/incremental-cache/index.ts", "patch": "@@ -571,11 +571,12 @@ export class IncrementalCache implements IncrementalCacheType {\n !this.hasCustomCacheHandler &&\n itemSize > 2 * 1024 * 1024\n ) {\n+ const warningText = `Failed to set Next.js data cac...
2025-05-19T19:29:15
electron/electron
218797eb61375a18b6126dfc9f511759585da84d
e410109a3d12e5b305f87e6e13967f2e3f88f3f5
fix: allow macOS debug builds to be built (#34536) Extending the `testing` GN profile with the arguments documented to allow breakpoint debugging (https://www.electronjs.org/docs/latest/development/debugging#breakpoint-debugging) doesn't quite work on macOS: ```sh is_debug = true symbol_level = 2 forbid_non_c...
[ { "path": "chromium_src/BUILD.gn", "patch": "@@ -92,6 +92,7 @@ static_library(\"chrome\") {\n \"//chrome/browser/media/webrtc/system_media_capture_permissions_stats_mac.h\",\n \"//chrome/browser/media/webrtc/system_media_capture_permissions_stats_mac.mm\",\n \"//chrome/browser/media/webrtc...
2022-06-22T08:18:12
ollama/ollama
1a2feb2a970c8331e1d34f68877190c169999c44
aab2190420a21d9bc7287e8029e46ada14aef431
ollamarunner: fix deadlock hardErrCh will deadlock since forwardBatch is blocked on computeStartedCh which never gets sent. since the response to hardErrCh is to panic, just panic instead
[ { "path": "runner/ollamarunner/runner.go", "patch": "@@ -321,9 +321,6 @@ type Server struct {\n \t// TODO (jmorganca): make this n_batch\n \tbatchSize int\n \n-\t// Used to signal a hard failure during async processing which will panic the runner\n-\thardErrCh chan error\n-\n \t// Simple counter used only f...
2025-10-10T23:38:12
facebook/react
201becd3d294b38824930a818e3412c6e04ba2eb
cb3404a0ccd8b5edf5d2b90bd844742090e38f42
Bugfix: Fix crash when suspending in shell during useSES re-render (#27199) This adds a regression test for a bug where, after a store mutation, the updated data causes the shell of the app to suspend. When re-rendering due to a concurrent store mutation, we must check for the RootDidNotComplete exit status again...
[ { "path": "packages/react-reconciler/src/ReactFiberWorkLoop.js", "patch": "@@ -892,58 +892,39 @@ export function performConcurrentWorkOnRoot(\n let exitStatus = shouldTimeSlice\n ? renderRootConcurrent(root, lanes)\n : renderRootSync(root, lanes);\n- if (exitStatus !== RootInProgress) {\n- if ...
2023-08-08T18:11:11
huggingface/transformers
6f8bc991d33c34bd75a05e79df8b8955eeea7d49
a1101f3aab7c0230873d8a5763f07164f633750a
Fix type checker (#44502) fix
[ { "path": "src/transformers/utils/import_utils.py", "patch": "@@ -505,7 +505,7 @@ def is_torch_bf16_gpu_available() -> bool:\n if is_torch_musa_available():\n return torch.musa.is_bf16_supported() if hasattr(torch, \"musa\") else False\n if is_torch_mlu_available():\n- return torch.ml...
2026-03-06T17:09:34
golang/go
e3cd55e9d293d519e622e788e902f372dc30338a
39794819aa0950f143fa59c41b577bf6a2f81455
cmd/go/internal/work: allow @ character in some -Wl, linker flags on darwin The GNU linker interprets @file as "read command-line options from file". Thus, we forbid values starting with @ on linker flags. However, this causes a problem when targeting Darwin. @executable_path, @loader_path, and @rpath are special valu...
[ { "path": "src/cmd/go/internal/work/security.go", "patch": "@@ -227,6 +227,21 @@ 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...
2024-12-27T07:21:53
vercel/next.js
f3f6b6c45255afd3d232efd6773b67b50383a316
77ecc7caf48d4c57c07009ee39c65ae5ba9d7923
[release] couple `next` and `@next/swc` versions (#79036) ### Why? Since Next.js emits a debug warning to help catch when a stale `@next/swc` version is being used, couple their versions to be published together. https://github.com/vercel/next.js/blob/3f2a3647ee619c92f2d576b83dfde748003a7f31/packages/next/src/build...
[ { "path": ".changeset/config.json", "patch": "@@ -2,7 +2,7 @@\n \"$schema\": \"https://unpkg.com/@changesets/config@3.1.1/schema.json\",\n \"changelog\": \"@changesets/cli/changelog\",\n \"commit\": false,\n- \"fixed\": [],\n+ \"fixed\": [[\"next\", \"@next/swc\"]],\n \"linked\": [],\n \"access\...
2025-05-19T17:47:55
electron/electron
bf52318c76ac110e9a916ca553394c2c15a6381c
73c85410c56f0a4024fd0fd1ee6aa5360c30621a
fix: modernize ListValue in net converters (#34657)
[ { "path": "shell/common/gin_converters/net_converter.cc", "patch": "@@ -153,20 +153,20 @@ v8::Local<v8::Value> Converter<net::CertPrincipal>::ToV8(\n v8::Local<v8::Value> Converter<net::HttpResponseHeaders*>::ToV8(\n v8::Isolate* isolate,\n net::HttpResponseHeaders* headers) {\n- base::DictionaryVa...
2022-06-22T08:14:57
ollama/ollama
e0cd51166130d03b8ca1f0261478a0c4ddd983f2
207332078f9a9c9eb097c2138471a3120eeadce2
fix test
[ { "path": "convert/tensor.go", "patch": "@@ -35,7 +35,7 @@ func splitDim(t Tensor, dim int, splits ...split) iter.Seq[*ggml.Tensor] {\n \n \t\t\tslice := split.slices\n \t\t\tif len(slice) == 0 {\n-\t\t\t\tslice := slices.Repeat([]tensor.Slice{nil}, len(shape))\n+\t\t\t\tslice = slices.Repeat([]tensor.Slice...
2025-10-07T23:46:37
huggingface/transformers
03d0496893fb2b8f94379c1a87a451ec680d7453
821e3fbdfd117951089ab994e6626fb5ceb331ff
fix model parallelism bug for eurobert model (#44490) Signed-off-by: Liu, Kaixuan <kaixuan.liu@intel.com>
[ { "path": "src/transformers/models/eurobert/modeling_eurobert.py", "patch": "@@ -512,6 +512,7 @@ def forward(\n if attention_mask is None:\n pooled_output = last_hidden_state.mean(dim=1)\n else:\n+ attention_mask = attention_mask.to(last...
2026-03-06T14:16:40
golang/go
39794819aa0950f143fa59c41b577bf6a2f81455
7c03fe70b897581aacc0092315f75abd08ebeeee
doc/initial: remove fixed-width spacing notice Ever since CL 362015 in 2021 it hasn't been necessary to set "fixed-width phrases with non-fixed-width spaces" because the site CSS now takes care of this typesetting convention. Change-Id: Id84f711b65cddf389dc485aa362b23c9c531cbfd Reviewed-on: https://go-review.googleso...
[ { "path": "doc/initial/1-intro.md", "patch": "@@ -1,9 +1,3 @@\n-<!--\n-NOTE: In this document and others in this directory, the convention is to\n-set fixed-width phrases with non-fixed-width spaces, as in\n-`hello` `world`.\n--->\n-\n <style>\n main ul li { margin: 0.5em 0; }\n </style>", "additions"...
2024-12-27T16:25:06
facebook/react
ea17cc18f458010c89c1bf494be08bb782d034af
997f52fbb30ec4b777b66edcdd75f594d9fe0c55
[Fizz][Float] emit viewport meta before preloads (#27201) Fixes: #27200 preloads for images that appear before the viewport meta may be loaded twice because the proper device image information is not used with the preload but is with the image itself. The viewport meta should be emitted earlier than all preload...
[ { "path": "packages/react-dom-bindings/src/server/ReactFizzConfigDOM.js", "patch": "@@ -1920,6 +1920,9 @@ function pushMeta(\n \n if (typeof props.charSet === 'string') {\n return pushSelfClosing(responseState.charsetChunks, props, 'meta');\n+ } else if (props.name === 'viewport') {\n+ ...
2023-08-07T22:22:48
ollama/ollama
207332078f9a9c9eb097c2138471a3120eeadce2
93085127f443a39190cf46efa62c51287c3714e1
fix lint
[ { "path": "convert/convert_gptoss.go", "patch": "@@ -89,11 +89,11 @@ func (m *gptossModel) Tensors(ts []Tensor) []*ggml.Tensor {\n \t\t\tout = append(out, slices.Collect(splitDim(t, 1,\n \t\t\t\tsplit{\n \t\t\t\t\tReplacer: strings.NewReplacer(\"gate_up_exps\", \"gate_exps\"),\n-\t\t\t\t\tslices: []tensor.S...
2025-10-07T23:39:14
golang/go
d7c3e93c16eeb328e9d943aa4fbd5ec8c793ec1b
cce75da30b6a1a58f7265401279cab707d403dcf
iter: improve documentation with iterator example In introducing iterators, package iter gives an example of how to use an iterator in a range-over-func loop, but currently does not give an example of what an iterator implementation might look like. This change adds the example of map.Keys() before the usage example....
[ { "path": "src/iter/iter.go", "patch": "@@ -28,7 +28,22 @@ or index-value pairs.\n Yield returns true if the iterator should continue with the next\n element in the sequence, false if it should stop.\n \n-Iterator functions are most often called by a range loop, as in:\n+For instance, [maps.Keys] returns an...
2024-12-26T20:27:33
huggingface/transformers
821e3fbdfd117951089ab994e6626fb5ceb331ff
cb17d70d826be788f9fd7a9bc19aa7e7bbd56bf0
Update `ty` to 0.0.20 (#44494) - updates ty to 0.2.0 - pinned regex package (older versions did not have typing stubs) - fixed a couple of typing failures that went through via other parallel branches
[ { "path": "setup.py", "patch": "@@ -119,12 +119,12 @@\n \"pytest-xdist\",\n \"pytest-order\",\n \"python>=3.10.0\",\n- \"regex!=2019.12.17\",\n+ \"regex>=2025.10.22\",\n \"rhoknp>=1.1.0,<1.3.1\",\n \"rjieba\",\n \"rouge-score!=0.0.7,!=0.0.8,!=0.1,!=0.1.1\",\n \"ruff==0.14.1...
2026-03-06T13:30:23
facebook/react
43677da7e465d89ac33bc5603d6fba83c50f1bc1
e33c9c43ccd36113f2d85d700f231679c7068612
Add instructions for UpdateExpression variants Adds new instructions to accurately model UpdateExpression semantics, since `x++` is un-intuitively not the same as `x = x + 1`. There are a few different ways to model the combination of prefix/postfix and increment/decrement: * One instruction for all combinations ...
[ { "path": "compiler/forget/packages/babel-plugin-react-forget/src/HIR/BuildHIR.ts", "patch": "@@ -1753,56 +1753,43 @@ function lowerExpression(\n });\n return { kind: \"UnsupportedNode\", node: exprNode, loc: exprLoc };\n }\n- if (expr.node.prefix) {\n- builder.errors.push(...
2023-08-07T20:50:32
ollama/ollama
15e3611d3d13f5ee48aae9ec893529cf7acd972a
77060d462cc0ef171d5ebb66b8070175c53212df
logs: quiet down context canceled on completion and scheduler noise (#12553) * logs: quiet down context canceled on completion If the client closes the connection before Completion finishes, we were logging at error level implying the runner crashed which was misleading. time=2025-10-08T22:59:20.566-07:00 level=ERRO...
[ { "path": "llm/server.go", "patch": "@@ -1486,7 +1486,10 @@ func (s *llmServer) Completion(ctx context.Context, req CompletionRequest, fn fu\n \tserverReq.Header.Set(\"Content-Type\", \"application/json\")\n \n \tres, err := http.DefaultClient.Do(serverReq)\n-\tif err != nil {\n+\tif err != nil && errors.Is...
2025-10-09T17:37:47
golang/go
cce75da30b6a1a58f7265401279cab707d403dcf
772f024c615ec13c6cd28bf024e9d6be852201b6
crypto/mlkem: swap order of return values of Encapsulate Per FIPS 203 (https://csrc.nist.gov/pubs/fips/203/final), the order of return values should be sharedKey, ciphertext. This commit simply swaps those return values and updates any consumers of the Encapsulate() method to respect the new order. Fixes #70950 Chan...
[ { "path": "src/crypto/internal/fips140/mlkem/cast.go", "patch": "@@ -40,7 +40,7 @@ func init() {\n \t\tdk := &DecapsulationKey768{}\n \t\tkemKeyGen(dk, d, z)\n \t\tek := dk.EncapsulationKey()\n-\t\tc, Ke := ek.EncapsulateInternal(m)\n+\t\tKe, c := ek.EncapsulateInternal(m)\n \t\tKd, err := dk.Decapsulate(c)...
2024-12-23T01:36:59
facebook/react
e33c9c43ccd36113f2d85d700f231679c7068612
ff2f2e068540a29d82b5ba7a970444621007f5a5
[ssa] Patch: propagate every rewrite to function expressions --- #1899 only propagated eliminated phi nodes to function expressions on the first iteration through blocks. However, this was buggy as later iterations could introduce rewrites that need to be propagated. [playground repro](https://0xeac7-forget.ve...
[ { "path": "compiler/forget/packages/babel-plugin-react-forget/src/SSA/EliminateRedundantPhi.ts", "patch": "@@ -46,7 +46,6 @@ export function eliminateRedundantPhi(\n // compare to see if any new rewrites were added in that iteration.\n let size = rewrites.size;\n do {\n- const isFirstIteration = !h...
2023-08-07T21:41:35
ollama/ollama
1fc35f1260a525aca8b63fcc9ed953b54c5eaace
aa45f7ce27f41ce28e08701cd7b0ef6671646053
kvcache: Clean up sliding window state with independent batches Sliding windows models (e.g. gpt-oss, gemma3) remove tokens that are out of the cache's window each time we start a new forward pass. The cache storage needs to handle the window size for each sequence plus the batch size, since the batch needs to attend...
[ { "path": "kvcache/causal.go", "patch": "@@ -160,7 +160,15 @@ func (c *Causal) Init(backend ml.Backend, dtype ml.DType, maxSequences, capacity\n \tif c.swaMemorySize == 0 {\n \t\tc.swaMemorySize = c.swaWindowSize\n \t}\n-\tif int(c.swaMemorySize) > capacity {\n+\t// We will allocate space in the cache for t...
2025-10-06T23:04:53
electron/electron
530a022b0548eb50acde87b5d18b5cff8eb7bbca
f3f327823e577c5869b78c806f99644e9dabfb29
fix: window button visibility fullscreen interaction (#34530)
[ { "path": "shell/browser/native_window_mac.mm", "patch": "@@ -1517,12 +1517,15 @@ void ViewDidMoveToSuperview(NSView* self, SEL _cmd) {\n \n void NativeWindowMac::SetWindowButtonVisibility(bool visible) {\n window_button_visibility_ = visible;\n- // The visibility of window buttons are managed by |button...
2022-06-21T07:35:53
golang/go
772f024c615ec13c6cd28bf024e9d6be852201b6
b9955f0ad952a22388eead15e3d15610a29e03a0
weak: fix typo in warning about tiny allocator optimization Fixes #70972. Change-Id: Ib04c2a3129a1da651a0b4674b372aec73966115a Reviewed-on: https://go-review.googlesource.com/c/go/+/638377 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Ian Lance Taylor <iant@goo...
[ { "path": "src/weak/pointer.go", "patch": "@@ -52,7 +52,7 @@ import (\n // nil, even after an object is no longer referenced, the runtime is allowed to\n // perform a space-saving optimization that batches objects together in a single\n // allocation slot. The weak pointer for an unreferenced object in such...
2024-12-23T20:42:42
vercel/next.js
5d2082ba3637427fd5d09928b63207eae84b7687
854992f4d7ca576390c231c1ab97643b37dc44f6
fix(doc): fix typo (#79369) <!-- 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: ## For Contributors ### Improving Document...
[ { "path": "docs/01-app/05-api-reference/02-components/image.mdx", "patch": "@@ -122,7 +122,7 @@ A boolean that causes the image to expand to the size of the parent element.\n \n **Object Fit**:\n \n-If no styles are applied to the image, the image will stretch to fit the container. You can use `objectFit` t...
2025-05-19T17:31:21
facebook/react
ff2f2e068540a29d82b5ba7a970444621007f5a5
adfae63f208b1e8e98c1923a2ac8e26686173253
[patch] Gate EliminatePhi fix behind feature flag
[ { "path": "compiler/forget/packages/babel-plugin-react-forget/src/SSA/EliminateRedundantPhi.ts", "patch": "@@ -106,19 +106,20 @@ export function eliminateRedundantPhi(\n for (const place of eachInstructionOperand(instr)) {\n rewritePlace(place, rewrites);\n }\n- if (instr.va...
2023-08-07T21:41:34
ollama/ollama
aa45f7ce27f41ce28e08701cd7b0ef6671646053
4e5d862ec47467a87124a180ae91de703283d14c
discover: Disable flash attention for Jetson Xavier (CC 7.2) GGML picks the wrong kernel and these systems fail with: Sep 28 22:25:39 xavier ollama[48999]: //ml/backend/ggml/ggml/src/ggml-cuda/fattn-wmma-f16.cu:437: ERROR: CUDA kernel flash_attn_ext_f16 has no device code compatible with CUDA arch 720. ggml-cuda.cu wa...
[ { "path": "discover/gpu.go", "patch": "@@ -2,7 +2,6 @@ package discover\n \n import (\n \t\"context\"\n-\t\"fmt\"\n \t\"log/slog\"\n \t\"os\"\n \t\"path/filepath\"\n@@ -62,17 +61,14 @@ func devInfoToInfoList(devs []ml.DeviceInfo) GpuInfoList {\n \t\t\tDependencyPath: dev.LibraryPath,\n \t\t\tDriverMajor: ...
2025-10-07T18:37:58
huggingface/transformers
cb17d70d826be788f9fd7a9bc19aa7e7bbd56bf0
4f91111b8ef37bd227f33c7facb92c41aa77604d
Add auto-docstring on configs (#44296) * seems to work like this * update more models * update more models * and more * more * add more model * more * update * update * more * all args are in auto file now * a bit more * update * last bacth * leftovers * fix repo * fix modular docs * fix repo * updat...
[ { "path": "src/transformers/models/afmoe/configuration_afmoe.py", "patch": "@@ -15,98 +15,29 @@\n \n from ...configuration_utils import PreTrainedConfig, layer_type_validation\n from ...modeling_rope_utils import RopeParameters\n-from ...utils import logging\n+from ...utils import auto_docstring, logging\n ...
2026-03-06T11:58:10
golang/go
b9955f0ad952a22388eead15e3d15610a29e03a0
eef35e3bd989afcbf4141a570d933ff05b866504
cmd/link, runtime: apply a delta to RODATA->DATA relocations On AIX, an R_ADDR relocation from an RODATA symbol to a DATA symbol does not work, as the dynamic loader can change the address of the data section, and it is not possible to apply a dynamic relocation to RODATA. In order to get the correct address, we apply...
[ { "path": "src/cmd/link/internal/ld/data.go", "patch": "@@ -424,6 +424,9 @@ func (st *relocSymState) relocsym(s loader.Sym, P []byte) {\n \t\t\t\t// FIXME: It should be forbidden to have R_ADDR from a\n \t\t\t\t// symbol which isn't in .data. However, as .text has the\n \t\t\t\t// same address once loaded, ...
2024-12-21T03:33:15
electron/electron
2bbbc66eb83b42041d768ea64f5ada9ed1ffd301
3cd52231341ca9a19704da356122c48a4dc33551
build: build & release libcxx objects on darwin (#34586) * build: build & release libcxx objects on darwin * Fix merge error Co-authored-by: Cheng Zhao <zcbenz@gmail.com>
[ { "path": ".circleci/config/base.yml", "patch": "@@ -794,8 +794,8 @@ step-maybe-generate-libcxx: &step-maybe-generate-libcxx\n if [ \"`uname`\" == \"Linux\" ]; then\n ninja -C out/Default electron:libcxx_headers_zip -j $NUMBER_OF_NINJA_PROCESSES\n ninja -C out/Default electron:libcxxab...
2022-06-21T01:35:16
vercel/next.js
854992f4d7ca576390c231c1ab97643b37dc44f6
8eaf44b0364b7bca794918da990f8c73420cff7f
[build-sourcemaps] Sourcemap errors during prerender if `experimental.enablePrerenderSourceMaps` is enabled (#79109)
[ { "path": ".changeset/swift-socks-find.md", "patch": "@@ -0,0 +1,5 @@\n+---\n+'next': patch\n+---\n+\n+Sourcemap errors during prerender if `experimental.enablePrerenderSourceMaps` is enabled", "additions": 5, "deletions": 0, "language": "Markdown" }, { "path": "packages/next/src/build/i...
2025-05-19T17:16:34
facebook/react
997f52fbb30ec4b777b66edcdd75f594d9fe0c55
493f72b0a7111b601c16b8ad8bc2649d82c184a0
fix[devtools/updateFiberRecursively]: mount suspense fallback set in timed out case (#27147) Fixes https://github.com/facebook/react/issues/26793. I have received a constantly reproducible example of the error, that is mentioned in the issue above. When starting `Reload and Profile` in DevTools, React reports an ...
[ { "path": "packages/react-devtools-shared/src/backend/renderer.js", "patch": "@@ -2345,6 +2345,18 @@ export function attach(\n const prevFallbackChildSet = prevFiberChild\n ? prevFiberChild.sibling\n : null;\n+\n+ if (prevFallbackChildSet == null && nextFallbackChildSet != null) {...
2023-08-03T19:02:18
ollama/ollama
bd15eba4e4a2979df61e197573e75c8f2f62ffc8
bc712786707245cb739b53262b84b3bafbb31fec
Bring back escape valve for llm libraries and fix Jetpack6 crash (#12529) * Bring back escape valve for llm libraries If the new discovery logic picks the wrong library, this gives users the ability to force a specific one using the same pattern as before. This can also potentially speed up bootstrap discovery if one...
[ { "path": "discover/gpu.go", "patch": "@@ -6,7 +6,9 @@ import (\n \t\"log/slog\"\n \t\"os\"\n \t\"path/filepath\"\n+\t\"regexp\"\n \t\"runtime\"\n+\t\"strconv\"\n \t\"strings\"\n \n \t\"github.com/ollama/ollama/format\"\n@@ -146,3 +148,35 @@ func GetSystemInfo() SystemInfo {\n \t\tGPUs: gpus,\n \t}\n }\n+\n...
2025-10-07T23:06:14
huggingface/transformers
4f91111b8ef37bd227f33c7facb92c41aa77604d
d5e555a632682555332c3c8e938461efd49d52b9
Fix failed unit tests for moonshine_streaming model (#43936)
[ { "path": "src/transformers/models/moonshine_streaming/modeling_moonshine_streaming.py", "patch": "@@ -822,7 +822,7 @@ def forward(\n position_embeddings = self.pos_emb(\n torch.arange(encoder_hidden_states.shape[1], device=encoder_hidden_states.device)\n )\n- encoder_hidd...
2026-03-06T07:39:08
golang/go
9f6c80a76ad56f653b743fe2df3f2296210c90d6
05d8984781f7cf2f0f39b53699a558b6a1965c6c
cmd/go/internal/work: allow single character values in -Wl, linker flags Allow single character values in -Wl, linker flags by modifying the regular expressions to use the star operator instead of the plus operator. Fixes #70924 Change-Id: Ie7940197cc8503440a87c6b29409a13377a20534 GitHub-Last-Rev: 42e8ac87d600239cef...
[ { "path": "src/cmd/go/internal/work/security.go", "patch": "@@ -201,23 +201,23 @@ var validLinkerFlags = []*lazyregexp.Regexp{\n \tre(`-Wl,--end-group`),\n \tre(`-Wl,--(no-)?export-dynamic`),\n \tre(`-Wl,-E`),\n-\tre(`-Wl,-framework,[^,@\\-][^,]+`),\n+\tre(`-Wl,-framework,[^,@\\-][^,]*`),\n \tre(`-Wl,--hash...
2024-12-20T06:45:52
electron/electron
6e9466f96b48fce7ca98cf308a9c6700ee90733a
e2f42e5d994a27f461e503b72934e3e4111ce29f
fix: overzealous media key listening on Windows (#34594)
[ { "path": "patches/chromium/fix_media_key_usage_with_globalshortcuts.patch", "patch": "@@ -59,10 +59,10 @@ index ad366d0fd4c3a637d75a102ab56984f0d01bfc04..d63eb133fd4bab1ea309bb8c742acf88\n // true if register successfully, or false if 1) the specificied |accelerator|\n // has been registered by anoth...
2022-06-20T10:40:10
vercel/next.js
8eaf44b0364b7bca794918da990f8c73420cff7f
5333dda84f240cbbc9d89d11f67c10be8fd82487
Fixed rewrite param parsing for interception routes in Vercel deployments (#79204) > [!NOTE] > - Introduced in [PR #67400](https://github.com/vercel/next.js/pull/67400) and released in [v15.0.0-canary.54](https://github.com/vercel/next.js/releases/tag/v15.0.0-canary.54) > - See failed test in deployment [GitHub Acti...
[ { "path": ".changeset/shaggy-owls-visit.md", "patch": "@@ -0,0 +1,5 @@\n+---\n+'next': patch\n+---\n+\n+Fixed rewrite params of the interception routes not being parsed correctly in certain deployed environments", "additions": 5, "deletions": 0, "language": "Markdown" }, { "path": "packa...
2025-05-19T17:09:29
ollama/ollama
918231931cb6db86ce1586788a47a3cba8d76d30
04c1849878b16c260bdddb8d80b5b48871b93f68
win: fix build script (#12513)
[ { "path": "scripts/build_windows.ps1", "patch": "@@ -179,7 +179,7 @@ function buildROCm() {\n if ($LASTEXITCODE -ne 0) { exit($LASTEXITCODE)}\n & cmake --install build --component \"HIP\" --strip\n if ($LASTEXITCODE -ne 0) { exit($LASTEXITCODE)}\n- rm -f $scrip...
2025-10-06T21:46:45
huggingface/transformers
d8526c5052ea28af394f04c74b0fde3ffb57c3b6
1118de0e4953ce96e183ffa90a41c507669ba652
[vLLM] Fix backward compatibility with hardcoded subprocessors classes in processors (#44447) * Fix compatibility with hardcoded subprocessor class in processors * add deprecation warning
[ { "path": "src/transformers/processing_utils.py", "patch": "@@ -1521,6 +1521,14 @@ def _get_arguments_from_pretrained(cls, pretrained_model_name_or_path, processor\n elif is_primary:\n # Primary non-tokenizer sub-processor: load via Auto class\n auto_processor_cla...
2026-03-05T16:07:28
golang/go
500675a7c8c72bd6b1054a7eb4daaf61970f5ad7
06b191e11f6f78b19e5c5a43b3d0c461226c7084
cmd/compile: load map length with the right type len(map) is lowered to loading the first field of the map structure, which is the length. Currently it is a load of an int. With the old map, the first field is indeed an int. With Swiss map, however, it is a uint64. On big-endian 32-bit machine, loading an (32-bit) int...
[ { "path": "src/cmd/compile/internal/ssagen/ssa.go", "patch": "@@ -5452,12 +5452,15 @@ func (s *state) referenceTypeBuiltin(n *ir.UnaryExpr, x *ssa.Value) *ssa.Value {\n \tif n.X.Type().IsChan() && n.Op() == ir.OCAP {\n \t\ts.Fatalf(\"cannot inline cap(chan)\") // must use runtime.chancap now\n \t}\n+\tif n....
2024-12-21T20:54:34
electron/electron
e2f42e5d994a27f461e503b72934e3e4111ce29f
ec98e95b8ac48a313cd8acb1c723829e40b108df
chore: fix BrowserView painting when origin updated (#34581) chore: fix View painting when origin updated
[ { "path": "shell/browser/native_browser_view_views.cc", "patch": "@@ -130,6 +130,9 @@ void NativeBrowserViewViews::SetBounds(const gfx::Rect& bounds) {\n view->SetBoundsRect(bounds);\n ResetAutoResizeProportions();\n \n+ view->InvalidateLayout();\n+ view->SchedulePaint();\n+\n // Ensure draggable re...
2022-06-20T04:31:53
vercel/next.js
04bfbdab6e299ba049fb98ec96b57986554e8ab4
e9e30ee743ec91910bcbf56f75a14b9a83a1729e
test: fix more Runtime/Recoverable Error flakiness in HMR (#79371) Follow-up to #79254, there's one more test flaking with the same issue. I pulled the label-ignoring logic out into ```ts expect(browser).toDisplayRedbox('...', { label: false }) ``` so that it's easy to find these later when we fix the underlying is...
[ { "path": "test/development/acceptance-app/ReactRefreshLogBox.test.ts", "patch": "@@ -1279,19 +1279,24 @@ describe('ReactRefreshLogBox app', () => {\n )\n const { session, browser } = sandbox\n \n- await expect(browser).toDisplayRedbox(`\n+ await expect(browser).toDisplayRedbox(\n+ `\n ...
2025-05-19T14:46:47
ollama/ollama
292767afb48fe4c3acc3233e88a45e5a3f93ffec
ae5e0f08893346ba9a61e86c0507b39b90d1ed38
CI: fix win arm build (#12502) Resolve subtle erroraction stickiness difference between x86 and arm builder setup
[ { "path": ".github/workflows/release.yaml", "patch": "@@ -214,11 +214,15 @@ jobs:\n go-version-file: go.mod\n - name: Verify gcc is actually clang\n run: |\n- gcc -v \n- if (((& gcc -v 2>&1) -join \"`n\") -notmatch 'clang') {\n+ $ErrorActionPreference='Cont...
2025-10-04T18:46:45
huggingface/transformers
1118de0e4953ce96e183ffa90a41c507669ba652
f4825d59e7b828658d3915e652a81f4ae8645aff
[remote code/vllm] Fix incorrect tied weights (#44469) fix
[ { "path": "src/transformers/modeling_utils.py", "patch": "@@ -4609,11 +4609,13 @@ def mark_tied_weights_as_initialized(self, loading_info):\n # Note: this is never an issue in main Transformers, as we never do module-tying, only parameter-tying, and we know\n # which params are supposed to b...
2026-03-05T15:07:53
facebook/react
015029dc655d0593a470bb4bcefd08e4126aaf48
50b09542790824f8d973ad265e49aab41cf8e954
[patch] Fix for constant propagation bug in VR Store --- Changes in `@enableOptimizeFunctionExpressions` caused a bug in the last Forget sync to VR Store. The repro can be summarized to something like this: ```js function foo() { const x = true; // some constant or global // Add some branching for type inf...
[ { "path": "compiler/forget/packages/babel-plugin-react-forget/src/SSA/EliminateRedundantPhi.ts", "patch": "@@ -27,9 +27,13 @@ import {\n * and phis rewrite all their identifiers based on this table. The algorithm loops over the CFG repeatedly\n * until there are no new rewrites: for a CFG without back-edg...
2023-08-02T21:30:57
golang/go
06b191e11f6f78b19e5c5a43b3d0c461226c7084
110ab1aaf4b0055027b86ff564b66a47e0f37b58
internal/syscall/unix: apply fstatat fix to linux/mips64le Apply CL 633280 to linux/mips64le, as it has the same struct as mips64. Updates #70659. Change-Id: Ibab635e69e44682eb214bf6a00f4cd75816b2d34 Reviewed-on: https://go-review.googlesource.com/c/go/+/637739 TryBot-Result: Gopher Robot <gobot@golang.org> Reviewed...
[ { "path": "src/internal/syscall/unix/at_fstatat.go", "patch": "@@ -2,7 +2,7 @@\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 dragonfly || (linux && !(loong64 || mips64)) || netbsd || (openbsd && mips64)\n+//go:build dragonfly || (...
2024-12-21T05:07:34
electron/electron
ec98e95b8ac48a313cd8acb1c723829e40b108df
bf4efb693b571addc1b3ce8ed78288abdc9967a0
fix: performance problem in `crashReporter.start()` on macOS (#34609) fix: performance problem in crashReporter.start() on macOS This change reduces the duration of crashReporter.start() on Intel macOS from 622 milliseconds to 257 milliseconds! Backports https://chromium-review.googlesource.com/c/crashpad/crash...
[ { "path": "patches/chromium/.patches", "patch": "@@ -111,3 +111,4 @@ make_gtk_getlibgtk_public.patch\n build_disable_print_content_analysis.patch\n custom_protocols_plzserviceworker.patch\n feat_filter_out_non-shareable_windows_in_the_current_application_in.patch\n+posix_replace_doubleforkandexec_with_forka...
2022-06-20T04:31:29
vercel/next.js
e9e30ee743ec91910bcbf56f75a14b9a83a1729e
aaf8a16f5653c15a895c262b21c6c4916d052109
docs: Fix flag for taint (#79370) Closes: https://linear.app/vercel/issue/DOC-4668/document-the-experimentaltaint-option-in-nextconfigts Flag value was incorrect.
[ { "path": "docs/01-app/05-api-reference/05-config/01-next-config-js/taint.mdx", "patch": "@@ -18,7 +18,7 @@ import type { NextConfig } from 'next'\n \n const nextConfig: NextConfig = {\n experimental: {\n- ppr: 'incremental',\n+ taint: true,\n },\n }\n \n@@ -29,7 +29,7 @@ export default nextConfig...
2025-05-19T14:35:09
huggingface/transformers
b923fd1d63652b1e442f62c51391bc9d1e1f6f8d
23863c5413f9743cf2c9f33318ac06cfe41a5116
Fix failing `DepthProModelIntegrationTest` (#44456) Fix failing DepthProModelIntegrationTest
[ { "path": "tests/models/depth_pro/test_modeling_depth_pro.py", "patch": "@@ -311,7 +311,7 @@ class DepthProModelIntegrationTest(unittest.TestCase):\n def test_inference_depth_estimation(self):\n model_path = \"apple/DepthPro-hf\"\n image_processor = DepthProImageProcessor.from_pretrained...
2026-03-05T14:52:40
ollama/ollama
33801c1597edca5dd04c5de117db89b5bc27f43a
e4340667e33e0efa5dee471917d71ad6011e59ba
Fixed Deepseek2 adding nil tensor error
[ { "path": "model/models/deepseek2/model.go", "patch": "@@ -150,7 +150,9 @@ func (moe *sparse) Moe(ctx ml.Context, hiddenStates, topKIndices, topKWeights ml\n }\n \n func (moe *sparse) topKIndices(ctx ml.Context, scores ml.Tensor, opts *Options) ml.Tensor {\n-\tscores = scores.Add(ctx, moe.ExpProbsBias)\n+\t...
2025-10-03T21:20:06
facebook/react
2d8da0d32dc3b5347689b8b58114d4312dafeb1f
203d5ad43bd9268a52c99aa0abd2b71f155b9695
[babel] Don't console.error on unknown options Internally these are considered errors in our pipelines
[ { "path": "compiler/forget/packages/babel-plugin-react-forget/src/Entrypoint/Options.ts", "patch": "@@ -108,18 +108,12 @@ export function parsePluginOptions(obj: unknown): PluginOptions {\n if (obj == null || typeof obj !== \"object\") {\n return defaultOptions;\n }\n- const invalidOptions: Array<s...
2023-08-02T16:34:18
golang/go
110ab1aaf4b0055027b86ff564b66a47e0f37b58
669d87a935536eb14cb2db311a83345359189924
slices: document two oddities Fixes #70935 Change-Id: Idf4a38a05ba595d616b6469a14419ff873bbd354 Reviewed-on: https://go-review.googlesource.com/c/go/+/638095 Reviewed-by: Keith Randall <khr@golang.org> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Keith Randall...
[ { "path": "src/slices/slices.go", "patch": "@@ -414,6 +414,7 @@ func Grow[S ~[]E, E any](s S, n int) S {\n \t\tpanic(\"cannot be negative\")\n \t}\n \tif n -= cap(s) - len(s); n > 0 {\n+\t\t// This expression allocates only once (see test).\n \t\ts = append(s[:cap(s)], make([]E, n)...)[:len(s)]\n \t}\n \tre...
2024-12-20T14:28:55
electron/electron
20538c4f34a471677d40ef304e76ae46a3a3c3f1
d2e539c7d4fb16615164222fd9568ed81d7aacc1
fix: draggable regions updating on bounds change (#34582)
[ { "path": "shell/browser/native_browser_view_views.cc", "patch": "@@ -27,6 +27,9 @@ void NativeBrowserViewViews::SetAutoResizeFlags(uint8_t flags) {\n \n void NativeBrowserViewViews::UpdateDraggableRegions(\n const std::vector<mojom::DraggableRegionPtr>& regions) {\n+ if (&draggable_regions_ != &region...
2022-06-17T10:01:38
vercel/next.js
aaf8a16f5653c15a895c262b21c6c4916d052109
0790b78dd2452d5db25456b60ec4859ef9265f4e
Remove prospective fallback prerenders (#79304) The prospective fallback prerenders, which ensured that a fallback shell could be prerendered without errors, were only needed when Dynamic IO was enabled and PPR was disabled. This scenario is no longer supported.
[ { "path": "packages/next/src/build/index.ts", "patch": "@@ -193,7 +193,6 @@ import {\n } from '../server/lib/experimental/ppr'\n import { FallbackMode, fallbackModeToFallbackField } from '../lib/fallback'\n import { RenderingMode } from './rendering-mode'\n-import { getParamKeys } from '../server/request/fa...
2025-05-19T13:49:08
ollama/ollama
e4340667e33e0efa5dee471917d71ad6011e59ba
2fa1e92a995e7599bf6403dc6055cf2f4a4d68ce
Workaround broken NVIDIA iGPU free VRAM data (#12490) The CUDA APIs for reporting free VRAM are useless on NVIDIA iGPU systems as they only return the kernels actual free memory and ignore buff/cache allocations which on a typical system will quickly fill up most of the free system memory. As a result, we incorrectly...
[ { "path": "discover/runner.go", "patch": "@@ -330,6 +330,9 @@ func GPUDevices(ctx context.Context, runners []FilteredRunnerDiscovery) []ml.Dev\n \t\t}\n \t}\n \n+\t// Apply any iGPU workarounds\n+\tiGPUWorkarounds(devices)\n+\n \treturn devices\n }\n \n@@ -540,3 +543,32 @@ func GetDevicesFromRunner(ctx cont...
2025-10-03T19:17:21
huggingface/transformers
23863c5413f9743cf2c9f33318ac06cfe41a5116
df8b60222590ae4e563306dd35bbd3a1f8a3122f
[timesfm2_5] fix loss scaling (#44465) fix loss scaling
[ { "path": "src/transformers/models/timesfm2_5/modeling_timesfm2_5.py", "patch": "@@ -844,14 +844,17 @@ def _flip_quantiles(x: torch.Tensor) -> torch.Tensor:\n loss = None\n if future_values is not None:\n target_len = future_values.shape[1]\n- valid_mean_predictions = ...
2026-03-05T14:43:54
facebook/react
5230e6d8491a21b8c4566d503d05bf05065e5185
e77d975b169a4e768e2efec2a506eb4a1bd1090d
Add failing test case for ValidateNoSetStateInRender bug The current heuristic to check if setState is called in render is based on whether the lambda containing the call to setState has a mutable range that got extended. This doesn't seem to work in all cases so this validation needs a bit more work before we can...
[ { "path": "compiler/forget/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/error.bug-validate-no-set-state-not-all-mutable-range-extensions-are-bad.expect.md", "patch": "@@ -0,0 +1,39 @@\n+\n+## Input\n+\n+```javascript\n+function Component(props) {\n+ const logEvent = useLogging(props.a...
2023-07-27T21:08:01
golang/go
669d87a935536eb14cb2db311a83345359189924
45f49139f5c0c4921239b7f0865c4041e663b1d0
runtime/pprof: continued attempt to deflake the VMInfo test. This change catches an additional error message to trigger skipping the test when the underlying system is failing. Fixes #62352 Change-Id: I5c12b20f3e9023597ff89fc905c0646a80ec4811 Reviewed-on: https://go-review.googlesource.com/c/go/+/637995 Reviewed-by:...
[ { "path": "src/runtime/pprof/vminfo_darwin_test.go", "patch": "@@ -97,7 +97,7 @@ func useVMMap(t *testing.T) (hi, lo uint64, retryable bool, err error) {\n \t\tt.Logf(\"vmmap output: %s\", out)\n \t\tif ee, ok := cmdErr.(*exec.ExitError); ok && len(ee.Stderr) > 0 {\n \t\t\tt.Logf(\"%v: %v\\n%s\", cmd, cmdEr...
2024-12-19T23:55:05
vercel/next.js
0e784439f9c53416564a3b0dc9620511521b4d08
c23f08e3d9bc1c1497ce9e01268f615698a83355
docs: --verbose option in dev mode is not yet supported (#79366) Closes: https://linear.app/vercel/issue/DOC-4677/remove-reference-to-next-dev-verbose Fixes: https://github.com/vercel/next.js/issues/79337 For now, `--verbose` is not supported for `next dev`. --------- Co-authored-by: Delba de Oliveira <32464864+del...
[ { "path": "docs/01-app/02-guides/local-development.mdx", "patch": "@@ -137,12 +137,20 @@ The experimental `serverComponentsHmrCache` option allows you to cache `fetch` r\n \n ### Detailed fetch logging\n \n-Use this command to see more detailed information about what's happening during development:\n+Use th...
2025-05-19T12:47:28
ollama/ollama
2fa1e92a995e7599bf6403dc6055cf2f4a4d68ce
07e36761c380b838b2d4156dafde59105892b1ad
test: add template error test (#12489)
[ { "path": "template/template_test.go", "patch": "@@ -154,24 +154,55 @@ func TestTemplate(t *testing.T) {\n }\n \n func TestParse(t *testing.T) {\n-\tcases := []struct {\n+\tvalidCases := []struct {\n+\t\tname string\n \t\ttemplate string\n \t\tvars []string\n \t}{\n-\t\t{\"{{ .Prompt }}\", []string{...
2025-10-03T19:05:34
facebook/react
12e6cee06f64d7640047f60936822dd021b1c0f5
20b175fcd5f49e77b4f77e0a2dc1b3f236afde06
[eslint-plugin] Update hermes-parser to 0.15.0 This includes a fix where the HermesToBabelAdapter was incorrectly outputting a `ClassMethod` instead of `ClassPrivateMethod` in certain scenarios. This was causing issues with our eslint plugin as it would crash on any file containing private methods because a malfor...
[ { "path": "compiler/forget/packages/eslint-plugin-react-forget/package.json", "patch": "@@ -17,7 +17,7 @@\n \"@babel/core\": \"^7.19.1\",\n \"@babel/plugin-proposal-private-methods\": \"^7.18.6\",\n \"babel-plugin-react-forget\": \"*\",\n- \"hermes-parser\": \"^0.14.0\"\n+ \"hermes-parser\...
2023-07-27T15:46:50
golang/go
45f49139f5c0c4921239b7f0865c4041e663b1d0
e63eb98e98709a68bf7781a34a3297b72521826e
runtime: test trap panic parsing in TestTracebackSystem This mirrors https://go.dev/cl/637755, as x/telemetry is now aware of sigpanic preceding trap frames. For #70637. Change-Id: I13a775f25e89047702d4f2d463ce3210bcf192d9 Reviewed-on: https://go-review.googlesource.com/c/go/+/638015 Reviewed-by: Cherry Mui <cherryy...
[ { "path": "src/runtime/crash_test.go", "patch": "@@ -32,8 +32,11 @@ const entrypointVar = \"RUNTIME_TEST_ENTRYPOINT\"\n \n func TestMain(m *testing.M) {\n \tswitch entrypoint := os.Getenv(entrypointVar); entrypoint {\n-\tcase \"crash\":\n-\t\tcrash()\n+\tcase \"panic\":\n+\t\tcrashViaPanic()\n+\t\tpanic(\"u...
2024-12-20T01:58:19
electron/electron
ea4278754c0d818d88aa0ee4be62f5a61fd07297
f418a49857979a72cb199244aee335ffd9b82f47
chore: fix spelling errors in multiple files (#34574) * chore: fix spelling in .circleci Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> * chore: fix spelling in BUILD.gn Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> * chore: fix spelling in appveyor.yml Signed-...
[ { "path": ".circleci/config/base.yml", "patch": "@@ -639,7 +639,7 @@ step-electron-publish: &step-electron-publish\n echo 'Uploading Electron release distribution to Azure'\n script/release/uploaders/upload.py --verbose --UPLOAD_TO_STORAGE\n else\n- echo 'Uploading Electron rele...
2022-06-16T07:46:11
vercel/next.js
fe91fdfb918c1839f444e9472a8918326862c651
aa96aa961566532853ff5fff021dfab71b0bb687
fix: replaceIdentifiersInAst takes an expression, not a string (#79196) missed this one in #78916. Weirdly enough the replacement seems to be working fine -- i guess something in recast was parsing the string (i.e. `path.replace("__turbopack_load_by_url__")` worked somehow). but that's not allowed according to recast'...
[ { "path": "packages/next/taskfile.js", "patch": "@@ -1935,7 +1935,12 @@ export async function copy_vendor_react(task_) {\n const ast = parseFile(source, { sourceFileName: filepath })\n replaceIdentifiersInAst(\n ast,\n- new Map([['__turbopack_load__', '__turbopack_...
2025-05-19T12:38:35
huggingface/transformers
df8b60222590ae4e563306dd35bbd3a1f8a3122f
522975849c4235fafe595b1808e93eb3b16f0124
Fix failing `ProphetNetModelIntegrationTest` (#44439) * Fix failing ProphetNetModelIntegrationTest * Remove comment. --------- Co-authored-by: Anton Vlasjuk <73884904+vasqu@users.noreply.github.com>
[ { "path": "tests/models/prophetnet/test_modeling_prophetnet.py", "patch": "@@ -1154,7 +1154,7 @@ def test_pretrained_checkpoint_hidden_states(self):\n @slow\n def test_cnndm_inference(self):\n model = ProphetNetForConditionalGeneration.from_pretrained(\"microsoft/prophetnet-large-uncased-cnn...
2026-03-05T14:33:03
facebook/react
8405d8644fd20758e422aa4fc58ea4a50df5ee3e
6912c31056651e2144a9b69d09ed3797dba60079
[eslint] Add plugin-proposal-private-methods There was a bug in our internal Hermes to Babel adapter which caused some malformed AST to be constructed, which babel would then validate as being incorrect. That bug was fixed, but we still have to add this plugin so that private class methods can be parsed by babel. ...
[ { "path": "compiler/forget/packages/eslint-plugin-react-forget/package.json", "patch": "@@ -15,6 +15,7 @@\n },\n \"dependencies\": {\n \"@babel/core\": \"^7.19.1\",\n+ \"@babel/plugin-proposal-private-methods\": \"^7.18.6\",\n \"babel-plugin-react-forget\": \"*\",\n \"hermes-parser\": \"^...
2023-07-27T14:52:28
ollama/ollama
c29fb007c0695210b833008775aed67a507f1f5a
730ed6e9e12d0bf182d554a54dee8bbbef6a88c7
CI: temporarily disable clang install (#12486) This will likely yield builds that have problems with unicode characters but at least we can start testing the release while we try to find an alternate clang compiler for windows, or mingw ships a fixed version.
[ { "path": ".github/workflows/release.yaml", "patch": "@@ -186,7 +186,8 @@ jobs:\n if: matrix.arch == 'amd64'\n run: |\n $ErrorActionPreference = \"Stop\"\n- Start-Process \"C:\\msys64\\usr\\bin\\pacman.exe\" -ArgumentList @(\"-S\", \"--noconfirm\", \"mingw-w64-clang-x86_64...
2025-10-03T03:31:18
golang/go
e63eb98e98709a68bf7781a34a3297b72521826e
7b6c94dd037b5d78afca70975109294d7439517c
net/http: fix nil panic in test Observed on a builder in an unrelated CL. https://logs.chromium.org/logs/golang/buildbucket/cr-buildbucket/8728107031663629713/+/u/step/11/log/2 goroutine 27937 gp=0xc00000f6c0 m=20 mp=0xc000085008 [running]: panic({0x560ac0?, 0xa1f400?}) C:/b/s/w/ir/x/w/goroot/src/runtime/panic.go:80...
[ { "path": "src/net/http/transport_test.go", "patch": "@@ -5500,7 +5500,9 @@ timeoutLoop:\n \t\t\t\t\treturn false\n \t\t\t\t}\n \t\t\t}\n-\t\t\tres.Body.Close()\n+\t\t\tif err == nil {\n+\t\t\t\tres.Body.Close()\n+\t\t\t}\n \t\t\tconns := idleConns()\n \t\t\tif len(conns) != 1 {\n \t\t\t\tif len(conns) == 0...
2024-12-19T18:35:34
electron/electron
bad8d5e08af159371b0dc2875eb6c2281bff59a5
4ec95edf06d751e43d23a865751ec890f9f8cb69
fix: make preload calculation identical between sandbox & non-sandboxed (#34531)
[ { "path": "lib/browser/rpc-server.ts", "patch": "@@ -68,6 +68,10 @@ ipcMainUtils.handleSync(IPC_MESSAGES.BROWSER_SANDBOX_LOAD, async function (event\n };\n });\n \n+ipcMainUtils.handleSync(IPC_MESSAGES.BROWSER_NONSANDBOX_LOAD, function (event) {\n+ return { preloadPaths: event.sender._getPreloadPaths() }...
2022-06-15T20:22:28
huggingface/transformers
522975849c4235fafe595b1808e93eb3b16f0124
81b53436bf97b8cb02040839a902e0b799be3159
fix: Load model with co-located adapter from local path (Granite Speech) (#43781) * fix: Only overwrite the pretrained_model_name_or_path if needed with adapter The check is based on the assumption that if the current value is a path on disk and there is a `config.json` present in that path, the path points to a full...
[ { "path": "src/transformers/integrations/peft.py", "patch": "@@ -954,7 +954,14 @@ def maybe_load_adapters(\n if _adapter_model_path is not None and os.path.isfile(_adapter_model_path):\n with open(_adapter_model_path, \"r\", encoding=\"utf-8\") as f:\n _adapter_model_path = pretraine...
2026-03-05T14:14:43
vercel/next.js
34039551d2e5f611c0abde31a197d9985918adaf
b08c5a35a507fca0cce3d64c2e8112947d5688eb
[test] Use unique error messages in `server-source-maps` (#79108) Allows unambigious assertions on CLI output. Not that interesting for dev but `next build` will have the logs for all pages in all tests. I also made the pages static where possible so that we'll be able to assert on the logged errors during `next b...
[ { "path": "test/e2e/app-dir/server-source-maps/fixtures/default/app/bad-sourcemap/page.js", "patch": "@@ -1,12 +1,10 @@\n // Compile with pnpm tsc test/e2e/app-dir/server-source-maps/fixtures/default/bad-sourcemap/page.js --allowJs --sourceMap --target esnext --outDir test/e2e/app-dir/server-source-maps/fix...
2025-05-19T06:38:59
golang/go
7b6c94dd037b5d78afca70975109294d7439517c
cb72406c36e5c39c049fd150d65be67372ba60e2
cmd/go: drop fips140 build ID hacks We were trying to keep all binaries stale in fips140 mode so that every build would write and leave behind a fips.o in the work directory for use by validating labs. That breaks various staleness checks, including the one in cmd/dist during GOFIPS140=latest ./make.bash. Revert the ...
[ { "path": "src/cmd/go/internal/fips140/fips140.go", "patch": "@@ -40,14 +40,8 @@\n //\n //\tGOFIPS140=latest go build -work my/binary\n //\n-// will leave fips.o behind in $WORK/b001. Auditors like to be able to\n-// see that file. Accordingly, when [Enabled] returns true,\n-// [cmd/go/internal/work.Builder...
2024-12-17T15:40:41
facebook/react
f21270a97d531c45e7f57960a5436a1fd9e9c35c
90c3a3866d59c76b504d5e6c87a64a71ee6641d0
[rust] Complete estree through ES2021 Adds more AST types to handle the full ES2021 spec. At least, in theory I defined the schema correctly, and we'll have to just fix any bugs as we encounter them.
[ { "path": "compiler/forget/crates/forget_estree/src/generated.rs", "patch": "@@ -36,6 +36,11 @@ pub struct RegExpValue {\n pub pattern: String,\n pub flags: String,\n }\n+#[derive(Serialize, Deserialize, Clone, Debug)]\n+pub struct TemplateElementValue {\n+ pub cooked: Option<String>,\n+ pub r...
2023-07-25T22:58:58
electron/electron
4c7c0b41c2027db27cf563e9eabb95cc8adf96bb
21ef8501e7c71cd8d56828e21d310d07f9d86510
feat: add immersive dark mode on windows (#33624) * feat: add immersive dark mode * fix syntax and add header * add me * Update fuses.json5 * fix: redraw title bar on dark mode change * chore: SetWindowTheme doesn't seem to be needed * chore: separate out Win 10 dark mode implementation * final to...
[ { "path": "BUILD.gn", "patch": "@@ -725,14 +725,6 @@ source_set(\"electron_lib\") {\n \n sources += get_target_outputs(\":electron_fuses\")\n \n- if (is_win && enable_win_dark_mode_window_ui) {\n- sources += [\n- \"shell/browser/win/dark_mode.cc\",\n- \"shell/browser/win/dark_mode.h\",\n- ...
2022-06-14T16:27:28
huggingface/transformers
81b53436bf97b8cb02040839a902e0b799be3159
130f1644873e2bbd4b234b68e71c65e85ed86825
[Trainer] fix SP loss (#44461) * fix SP loss * better fallback * Apply suggestion from @kashif
[ { "path": "src/transformers/integrations/deepspeed.py", "patch": "@@ -703,7 +703,18 @@ def deepspeed_sp_compute_loss(accelerator, model, inputs, return_outputs, pc):\n outputs = model(**inputs)\n loss = outputs.loss\n \n- sp_group = accelerator.torch_device_mesh[\"sp\"].get_group()\n+ # Prefer...
2026-03-05T12:45:36
vercel/next.js
aa7d4de472519f1b1a7a191177edfd08ab61b521
53933954e37887ed29777e95101f3e828557157a
Enable `ppr` when `dynamicIO` is enabled (#79302) With this PR, we're automatically enabling `ppr` when `dynamicIO` is enabled, and forbid using `ppr: 'incremental'` or `ppr: false` together with `dynamicIO: true`. While implementing the config validation, I noticed that the `userConfig`, `config`, and `result` obj...
[ { "path": ".changeset/dry-roses-nail.md", "patch": "@@ -0,0 +1,5 @@\n+---\n+\"next\": patch\n+---\n+\n+Enable `ppr` when `dynamicIO` is enabled", "additions": 5, "deletions": 0, "language": "Markdown" }, { "path": "packages/next/errors.json", "patch": "@@ -679,5 +679,6 @@\n \"678\"...
2025-05-17T20:31:20
ollama/ollama
730ed6e9e12d0bf182d554a54dee8bbbef6a88c7
dc06601677b6d5a833ae8206778b4acfdc290b81
ci: fix windows build (#12485)
[ { "path": ".github/workflows/release.yaml", "patch": "@@ -163,7 +163,7 @@ jobs:\n cmake --preset \"${{ matrix.preset }}\" ${{ matrix.flags }} -DOLLAMA_RUNNER_DIR=\"${{ matrix.runner_dir }}\"\n cmake --build --parallel --preset \"${{ matrix.preset }}\"\n cmake --install build --...
2025-10-03T02:16:01
golang/go
cb72406c36e5c39c049fd150d65be67372ba60e2
4f0561f9d354233787de7aa9eff8119a2d4cd5c6
cmd/go: fix two-step toolchain upgrade through go install, GOTOOLCHAIN If we do one upgrade because of a go install target's go.mod file, we still might need a second upgrade to implement the GOTOOLCHAIN minimum. Instead of allowing a two-step switch (which we were cutting off anyway), skip the first step and go strai...
[ { "path": "src/cmd/go/internal/toolchain/select.go", "patch": "@@ -169,7 +169,7 @@ func Select() {\n \t}\n \n \tgotoolchain = minToolchain\n-\tif (mode == \"auto\" || mode == \"path\") && !goInstallVersion() {\n+\tif (mode == \"auto\" || mode == \"path\") && !goInstallVersion(minVers) {\n \t\t// Read go.mod...
2024-12-18T20:42:48
facebook/react
fdb368d9e7430b50b9c506e76ccd46bf0576ef9b
3ff846d106de9273f59d1e4457793a5fcf625aef
Uninstall unused Webpack 4 packages (#27058) <!-- 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 ma...
[ { "path": "package.json", "patch": "@@ -97,7 +97,6 @@\n \"tmp\": \"^0.1.0\",\n \"typescript\": \"^3.7.5\",\n \"web-streams-polyfill\": \"^3.1.1\",\n- \"webpack\": \"^4.41.2\",\n \"yargs\": \"^15.3.1\"\n },\n \"devEngines\": {", "additions": 0, "deletions": 1, "language": "...
2023-07-25T17:55:05
huggingface/transformers
5c31e940e3470ab92b8083dfa797200f67793d30
cc7ab9be508ce6ed3637bba9e50367b29b742dc6
skip 1 invalid test case for higgs_audio_v2 (#44350) * skip 1 invalid test case for higgs_audio_v2 Signed-off-by: Liu, Kaixuan <kaixuan.liu@intel.com> * fix bug Signed-off-by: Liu, Kaixuan <kaixuan.liu@intel.com> * update Signed-off-by: Liu, Kaixuan <kaixuan.liu@intel.com> * update Signed-off-by: Liu, Kaixuan <...
[ { "path": "src/transformers/models/higgs_audio_v2/generation_higgs_audio_v2.py", "patch": "@@ -107,7 +107,7 @@ def __init__(\n \n @add_start_docstrings(LOGITS_PROCESSOR_INPUTS_DOCSTRING)\n def __call__(self, input_ids: torch.LongTensor, scores: torch.FloatTensor) -> torch.FloatTensor:\n- scor...
2026-03-05T11:08:08
electron/electron
bed38e0985d6dd0f48b43627c158821b926e61ed
8de5cdb426eaf380e2ab242b53427a0d9a509de7
fix: crash when `setWindowOpenHandler` callback throws (#34523) * fix: crash when setWindowOpenHandler throws * refactor: throw as process uncaughtException event
[ { "path": "lib/browser/api/web-contents.ts", "patch": "@@ -482,6 +482,7 @@ WebContents.prototype._callWindowOpenHandler = function (event: Electron.Event,\n if (!this._windowOpenHandler) {\n return defaultResponse;\n }\n+\n const response = this._windowOpenHandler(details);\n \n if (typeof respo...
2022-06-14T16:22:23
golang/go
f4e3ec3dbe3b8e04a058d266adf8e048bab563f2
6aa46eb75005c87ab4d44d989e1688362991c731
crypto/ecdsa: fix condition for fips140=only check Fixes #70894 Change-Id: I78c9f2e46006ffc5f1d2886218f8aaaf3f1b59eb GitHub-Last-Rev: 11f0b452f57aacc40139eab557a8bed1386ad07b GitHub-Pull-Request: golang/go#70904 Reviewed-on: https://go-review.googlesource.com/c/go/+/637455 Reviewed-by: Filippo Valsorda <filippo@golan...
[ { "path": "src/crypto/ecdsa/ecdsa.go", "patch": "@@ -183,7 +183,7 @@ func GenerateKey(c elliptic.Curve, rand io.Reader) (*PrivateKey, error) {\n }\n \n func generateFIPS[P ecdsa.Point[P]](curve elliptic.Curve, c *ecdsa.Curve[P], rand io.Reader) (*PrivateKey, error) {\n-\tif fips140only.Enabled && fips140onl...
2024-12-18T16:19:24
vercel/next.js
42b1c400c977cbe43147c083714e7f6bd38cff80
f270834d6a67265426afe1f36f8a41b499506ed4
Turbopack build: Fix type: module with output: standalone (#79292) ## What? This PR ensures we first clean the `.next/standalone` folder before writing into it. Currently the order is: 1. Write package.json to `.next/standalone/package.json` 1. Delete `.next/standalone` 1. Check `.nft.json` files and write the file...
[ { "path": "packages/next/src/build/utils.ts", "patch": "@@ -1539,6 +1539,10 @@ export async function copyTracedFiles(\n staticPages: Set<string>\n ) {\n const outputPath = path.join(distDir, 'standalone')\n+\n+ // Clean up standalone directory first.\n+ await fs.rm(outputPath, { recursive: true, force...
2025-05-17T07:31:08
ollama/ollama
dc06601677b6d5a833ae8206778b4acfdc290b81
1ed2881ef05cd62d97f3fc3687301f9c69249e3b
ci: fix windows build (#12484)
[ { "path": ".github/workflows/release.yaml", "patch": "@@ -163,7 +163,7 @@ jobs:\n cmake --preset \"${{ matrix.preset }}\" ${{ matrix.flags }} -DOLLAMA_RUNNER_DIR=\"${{ matrix.runner_dir }}\"\n cmake --build --parallel --preset \"${{ matrix.preset }}\"\n cmake --install build --...
2025-10-03T01:59:26
facebook/react
dcb6549ddae8c10a826503222d6bd7c2dfb770a4
3f0afcbe471fdebab1b2df9c006d587f044aeb07
[hir] Bailout when reading from React namespace Forget doesn't understand the React namespace object and generates incorrect code when compiling code that loads props from this namespace object. This PR makes Forget bailout when we see a property load from React namespace object.
[ { "path": "compiler/forget/packages/babel-plugin-react-forget/src/HIR/BuildHIR.ts", "patch": "@@ -2215,6 +2215,20 @@ function lowerMemberExpression(\n const object =\n loweredObject ?? lowerExpressionToTemporary(builder, objectNode);\n \n+ if (objectNode.isIdentifier() && objectNode.node.name === \"R...
2023-07-25T15:08:32
huggingface/transformers
cc7ab9be508ce6ed3637bba9e50367b29b742dc6
421c7f6248e28d24d84ee000252a1e71fbc24917
Fix position_ids typo in Qwen3_5TextModel forward pass (#44399) * Fix position_ids typo in Qwen3_5TextModel forward pass In `Qwen3_5TextModel.forward`, after splitting `position_ids` into `text_position_ids` (index 0, for text) and `position_ids` (indices 1:, for temporal/height/width), the decoder layer call incorre...
[ { "path": "src/transformers/models/qwen3_5/modeling_qwen3_5.py", "patch": "@@ -1354,7 +1354,7 @@ def forward(\n hidden_states,\n position_embeddings=position_embeddings,\n attention_mask=layer_mask,\n- position_ids=position_ids,\n+ ...
2026-03-05T09:47:23
electron/electron
954fd725009093660599a03a6926d57717f5a8c4
8157a01a42a4e0fdda1358757aaf48756014a506
fix: make navigator.userAgentData non-empty (#34481)
[ { "path": "BUILD.gn", "patch": "@@ -371,6 +371,7 @@ source_set(\"electron_lib\") {\n \"//chrome/app/resources:platform_locale_settings\",\n \"//components/autofill/core/common:features\",\n \"//components/certificate_transparency\",\n+ \"//components/embedder_support:browser_util\",\n \"/...
2022-06-13T16:35:42
vercel/next.js
f270834d6a67265426afe1f36f8a41b499506ed4
dfcb8cb16862b733d9c1df9326bc7fb94bced9b0
[dynamicIO] fix: do not apply import tracking transform in edge (#79284) Dynamic import tracking should never be applied to edge runtime code, because: 1. `dynamicIO` prerendering is not supported for edge 2. the implementation of `dynamicIO` prerendering relies on node-specific APIs. I missed this in #74152. This PR...
[ { "path": "crates/next-core/src/next_server/transforms.rs", "patch": "@@ -178,7 +178,12 @@ pub async fn get_next_server_transforms_rules(\n ServerContextType::Middleware { .. } | ServerContextType::Instrumentation { .. } => false,\n };\n \n- if is_app_dir && *next_config.enable_dynamic_io().a...
2025-05-17T01:29:40
golang/go
971448ddf8c55a5f4a829735a5a96cacf982f230
95b433eed428afbb4ab32f0f2541774e939989c7
testing: support B.Context and F.Context CL 603959 added T.Context for #36532. The discussion on the proposal only mentions t.Context. However, the implementation of CL 603959 also added B.Context and F.Context. They were added to the API listing, and B.Context was mentioned in the release notes. Unfortunately, the ...
[ { "path": "src/cmd/go/testdata/script/test_fuzz_context.txt", "patch": "@@ -0,0 +1,47 @@\n+[!fuzz] skip\n+[short] skip\n+env GOCACHE=$WORK/cache\n+\n+# Test fuzz.Context.\n+go test -vet=off context_fuzz_test.go\n+stdout ^ok\n+! stdout FAIL\n+\n+go test -vet=off -fuzz=Fuzz -fuzztime=1x context_fuzz_test.go\n...
2024-12-17T23:31:10
ollama/ollama
1ed2881ef05cd62d97f3fc3687301f9c69249e3b
0bda72892cc8b42a649e950f004b100020bcd1aa
templates: fix crash in improperly defined templates (#12483)
[ { "path": "server/images.go", "patch": "@@ -105,12 +105,16 @@ func (m *Model) Capabilities() []model.Capability {\n \n \tbuiltinParser := parsers.ParserForName(m.Config.Parser)\n \t// Check for tools capability\n-\tif slices.Contains(m.Template.Vars(), \"tools\") || (builtinParser != nil && builtinParser.Ha...
2025-10-03T00:25:55
facebook/react
3f0afcbe471fdebab1b2df9c006d587f044aeb07
82e426e2298724c8c63d495fb9ec0b6c39ac1fdf
[test] Failing test for using hooks from React namespace Forget assumes hooks are imported and used directly without the React namespace and generates incorrect code when if there's a namespace.
[ { "path": "compiler/forget/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/_bug.hooks-with-React-namespace.expect.md", "patch": "@@ -0,0 +1,30 @@\n+\n+## Input\n+\n+```javascript\n+function Foo() {\n+ const [x, setX] = React.useState(1);\n+ return x;\n+}\n+\n+```\n+\n+## Code\n+\n+```ja...
2023-07-25T14:56:46
electron/electron
2a9b3cc9cdabb5055dc367c490a8a62f839d1c59
7ca3f55b1070594589244a81095884dcc152af37
chore: remove unused proxy-window-open.snapshot.txt (#34501) chore: remove unused spec-main/fixtures/snapshots/proxy-window-open.snapshot.txt
[ { "path": "spec-main/fixtures/snapshots/proxy-window-open.snapshot.txt", "patch": "@@ -1,166 +0,0 @@\n-[\n- [\n- \"top=5,left=10,resizable=no\",\n- {\n- \"sender\": \"[WebContents]\",\n- \"frameId\": 1,\n- \"processId\": \"placeholder-process-id\"\n- },\n- \"about:blank\",\n- ...
2022-06-13T07:01:34
vercel/next.js
21c0b4270976662fa694c66276dd79e2eaf4c982
b42b442eadbb5ae19494693888a2895df5caef68
Do not run CI for modifying changeset related files (#79315) <!-- 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: ## For Con...
[ { "path": "scripts/run-for-change.js", "patch": "@@ -9,6 +9,7 @@ const CHANGE_ITEM_GROUPS = {\n 'docs',\n 'errors',\n 'examples',\n+ '.changeset',\n 'UPGRADING.md',\n 'contributing.md',\n 'contributing',", "additions": 1, "deletions": 0, "language": "JavaScript" } ]
2025-05-16T21:23:03
ollama/ollama
fdb109469f14631329a18bc782a381996842d0d6
05a43e078a89247dcc71c703c1bee2af97c1655d
llm: Allow overriding flash attention setting As we automatically enable flash attention for more models, there are likely some cases where we get it wrong. This allows setting OLLAMA_FLASH_ATTENTION=0 to disable it, even for models that usually have flash attention.
[ { "path": "envconfig/config.go", "patch": "@@ -145,8 +145,8 @@ func Remotes() []string {\n \treturn r\n }\n \n-func Bool(k string) func() bool {\n-\treturn func() bool {\n+func BoolWithDefault(k string) func(defaultValue bool) bool {\n+\treturn func(defaultValue bool) bool {\n \t\tif s := Var(k); s != \"\" ...
2025-10-01T21:38:09
facebook/react
18f7481ebf6db8103889c3ae051c41c2067355d5
3e317b8bbfe4d3861730c5739a76670903bfc97b
[rust] General-purpose diagnostic type and helpers This PR adapts the `Diagnostic` type and helpers from Relay Compiler to Forget. The main changes are: * Removing some fields it doesn't seem we'll use for a while, if ever (like machine-readable arbitrary key/value data) * Switching from Relay Compiler's `Locat...
[ { "path": "compiler/forget/Cargo.lock", "patch": "@@ -451,10 +451,20 @@ name = \"forget_build_hir\"\n version = \"0.1.0\"\n dependencies = [\n \"bumpalo\",\n+ \"forget_diagnostics\",\n \"forget_estree\",\n \"forget_hir\",\n \"indexmap 2.0.0\",\n+ \"thiserror\",\n+]\n+\n+[[package]]\n+name = \"forget_dia...
2023-07-14T06:21:45
huggingface/transformers
421c7f6248e28d24d84ee000252a1e71fbc24917
a2da4b16633ef9c2679b3a9e300b938851c6b80a
[core] 🚨 Completely remove cache positions (#44181) * fully remove from the mask api * fully remove from cache api * remove it from llama + modulars * remove them from all modulars of llama descendants * reapply all those modualrs * a few more * style * style * better get_seq_length * fix signatures * fix d...
[ { "path": "src/transformers/cache_utils.py", "patch": "@@ -1,6 +1,5 @@\n from abc import ABC, abstractmethod\n from collections.abc import Iterable\n-from typing import Any\n \n import torch\n \n@@ -42,11 +41,11 @@ def lazy_initialization(self, key_states: torch.Tensor, value_states: torch.Tens\n \n @ab...
2026-03-04T18:08:40
electron/electron
e5543a2dd22a79d7ae3fc1ff88c96a46c80e4158
bd81ae08acf2a2ebb9f6ca7c17590b472ddae789
fix: all files selection logic on linux (#34496)
[ { "path": "shell/browser/ui/file_dialog_gtk.cc", "patch": "@@ -32,8 +32,11 @@ static const int kPreviewWidth = 256;\n static const int kPreviewHeight = 512;\n \n std::string MakeCaseInsensitivePattern(const std::string& extension) {\n- std::string pattern(\"*.\");\n+ // If the extension is the \"all files...
2022-06-13T06:57:03
ollama/ollama
05a43e078a89247dcc71c703c1bee2af97c1655d
bc8909fb38525c89dda842d4ecfc86a933089a99
fix panic on bootstrapDevices (#12475) Wrong index variable was used.
[ { "path": "discover/runner.go", "patch": "@@ -456,7 +456,7 @@ func bootstrapDevices(ctx context.Context, ollamaLibDirs []string, extraEnvs []s\n \t\t\t\textra := strings.SplitN(extraEnvs[j], \"=\", 2)\n \t\t\t\tif cmp[0] == extra[0] {\n \t\t\t\t\tcmd.Env[i] = extraEnvs[j]\n-\t\t\t\t\textraDone[i] = true\n+\...
2025-10-02T00:39:29
vercel/next.js
b42b442eadbb5ae19494693888a2895df5caef68
7e5ed3b182bdee78eca78eb77f76d2f2b072b98a
Client router should discard stale prefetch entries for static pages (#79309) When navigating to a static page that was previously prefetched, the client router should discard a stale prefetch entry, and fetch the page again, if the stale time has passed. The selected stale time is either the default value of 5 minut...
[ { "path": "packages/next/src/client/components/router-reducer/fetch-server-response.ts", "patch": "@@ -187,9 +187,13 @@ export async function fetchServerResponse(\n const contentType = res.headers.get('content-type') || ''\n const interception = !!res.headers.get('vary')?.includes(NEXT_URL)\n co...
2025-05-16T20:54:56
huggingface/transformers
a2da4b16633ef9c2679b3a9e300b938851c6b80a
78ff3a1cb5070ff639857f9caa702dc9934bb59c
chore(typing): Add type checking to `src/transformers/generation` (#44233) * 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": "AGENTS.md", "patch": "@@ -1,5 +1,5 @@\n ## Useful commands\n-- `make style`: runs formatters and linters, necessary to pass code style checks\n+- `make style`: runs formatters, linters and type checker, necessary to pass code style checks\n - `make fix-repo`: auto-fixes copies, modular conversion...
2026-03-04T17:24:34
facebook/react
68b0effca3dd3ef64edb98662dd7f8d049958e6f
8ed6c6ab088c4cf022b85335534acd8991106161
[rust] Workspace hygiene I've primarily used what Cargo calls virtual workspaces, where the top-level Cargo.toml just lists a bunch of packages and they each have their own dependencies. This is fine, but i've noticed that more repos are using real workspaces and they offer a bunch of benefits. You define the depe...
[ { "path": "compiler/forget/Cargo.lock", "patch": "@@ -233,18 +233,6 @@ dependencies = [\n \"serde\",\n ]\n \n-[[package]]\n-name = \"build-hir\"\n-version = \"0.1.0\"\n-dependencies = [\n- \"bumpalo\",\n- \"estree\",\n- \"hir\",\n- \"indexmap 2.0.0\",\n- \"miette 5.9.0\",\n- \"thiserror\",\n-]\n-\n [[packa...
2023-07-14T02:39:46
electron/electron
bd81ae08acf2a2ebb9f6ca7c17590b472ddae789
57b863c2130c80caf47c4c226ae113bf465a3d9d
fix: don't require glibc 2.29+ on linux arm64 builds (#34491) * build: use sid sysroot for linux arm64
[ { "path": "script/sysroots.json", "patch": "@@ -10,9 +10,9 @@\n \"Tarball\": \"debian_bullseye_arm_sysroot.tar.xz\"\n },\n \"bullseye_arm64\": {\n- \"Sha1Sum\": \"de38cc85d51a820c3307e1937f3c2d3cedcce988\",\n+ \"Sha1Sum\": \"5a56c1ef714154ea5003bcafb16f21b0f8dde023\",\n ...
2022-06-10T18:15:52