repo
stringclasses
15 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
64.3k
files
listlengths
1
300
timestamp
timestamp[s]date
2013-03-13 20:45:00
2026-04-11 07:48:46
huggingface/transformers
0efcf1b069a87d7093783edcc4caf874f4edb5a6
0573124fc15c8969b19054c297ab094b096fdff1
Avoid `Image.open` failure (#44645) * fix Image.open failure in case "tests/models/prompt_depth_anything/test_modeling_prompt_depth_anything.py::PromptDepthAnythingModelIntegrationTest::test_inference" Signed-off-by: Wang, Yi <yi.a.wang@intel.com> * updated Signed-off-by: Wang, Yi <yi.a.wang@intel.com> --------- ...
[ { "path": "tests/models/llava_next/test_modeling_llava_next.py", "patch": "@@ -130,7 +130,7 @@ def test_flash_attention_2_padding_matches_padding_free_with_position_ids(self):\n class LlavaNextForConditionalGenerationIntegrationTest(unittest.TestCase):\n def setUp(self):\n self.processor = AutoP...
2026-03-27T11:11:05
golang/go
969a0da362ce846360782b34bfad7a18c2f64628
767c0fb9fd1e7d7210276be45b0abb5d14d34484
runtime: route calls to msan_memmove through cgo This avoids problems when the C linker doesn't want to see the Go relocation. Fixes #71954 Change-Id: I7cf884c4059d596cad6074ade02020d5a724f20e Reviewed-on: https://go-review.googlesource.com/c/go/+/652180 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accoun...
[ { "path": "src/runtime/msan.go", "patch": "@@ -64,4 +64,4 @@ func msanmove(dst, src unsafe.Pointer, sz uintptr)\n //go:cgo_import_static __msan_write_go\n //go:cgo_import_static __msan_malloc_go\n //go:cgo_import_static __msan_free_go\n-//go:cgo_import_static __msan_memmove\n+//go:cgo_import_static __msan_m...
2025-02-25T23:40:39
ollama/ollama
62d1f01ab4d63c3042e942379e9ef4b77f5c3fba
10e51c51771ea8536715876ee6707928712be41e
ci: Fix windows build (#14754) Instead of relying on sh for wildcard, do it in Go for better windows compatibility.
[ { "path": "x/mlxrunner/mlx/generator/main.go", "patch": "@@ -97,8 +97,18 @@ func main() {\n \tqc := tree_sitter.NewQueryCursor()\n \tdefer qc.Close()\n \n-\tvar funs []Function\n+\tvar files []string\n \tfor _, arg := range flag.Args() {\n+\t\tmatches, err := filepath.Glob(arg)\n+\t\tif err != nil {\n+\t\t\...
2026-03-10T02:27:59
electron/electron
79d2fc9c234059baf474e7f33a722bd1cb142e39
d092e6bda4c7ba840f76ef835135f6ac94e02803
build: fixup mksnapshot args on linux (#36531)
[ { "path": ".circleci/config/base.yml", "patch": "@@ -707,7 +707,7 @@ step-mksnapshot-build: &step-mksnapshot-build\n ninja -C out/Default electron:electron_mksnapshot -j $NUMBER_OF_NINJA_PROCESSES\n gn desc out/Default v8:run_mksnapshot_default args > out/Default/mksnapshot_args\n # ...
2022-12-01T19:12:32
huggingface/transformers
0573124fc15c8969b19054c297ab094b096fdff1
4ee7f51e468b7408513dc294dad20e4edb13594f
chore: Fix mlinter cache location (#45052) chor: Fix mlinter cache location
[ { "path": ".gitignore", "patch": "@@ -171,7 +171,7 @@ tags\n .ruff_cache\n \n # modeling structure lint cache\n-utils/.check_modeling_structure_cache.json\n+utils/mlinter/.mlinter_cache.json\n \n # modular conversion\n *.modular_backup", "additions": 1, "deletions": 1, "language": "Unknown" } ...
2026-03-27T10:17:02
golang/go
767c0fb9fd1e7d7210276be45b0abb5d14d34484
b38b0c0088039b03117b87eee61583ac4153f2b7
go/scanner: report specific error for UCS-2 encoded files Windows text files may be encoded as UCS-2 (i.e. 2-byte UTF-16). This CL causes the scanner to emit a better error when it reads a file in this encoding. + test Fixes #71950 Change-Id: Ia65bbf9a60e36984b0f3e4865591aa6978d2bde2 Reviewed-on: https://go-review....
[ { "path": "src/go/scanner/scanner.go", "patch": "@@ -71,7 +71,17 @@ func (s *Scanner) next() {\n \t\t\t// not ASCII\n \t\t\tr, w = utf8.DecodeRune(s.src[s.rdOffset:])\n \t\t\tif r == utf8.RuneError && w == 1 {\n-\t\t\t\ts.error(s.offset, \"illegal UTF-8 encoding\")\n+\t\t\t\tin := s.src[s.rdOffset:]\n+\t\t\...
2025-02-25T20:25:56
facebook/react
b25c14feb133ffad247cf5cb8358ecaebd75d962
2726484823e9690e207c435a7523f058f640c651
[tests][be] Clean up fixture selection logic --- Refactor selection logic to be easier to read; add support for .jsx test files (feels a bit weird adding a `.jsx` fixture and not seeing it get run)
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/tsconfig.json", "patch": "@@ -20,6 +20,7 @@\n },\n \"include\": [\n \"./compiler/**/*.js\",\n+ \"./compiler/**/*.jsx\",\n \"./compiler/**/*.ts\",\n \"./compiler/**/*.tsx\"\n ]", "additions": 1, "deleti...
2023-11-09T21:50:00
electron/electron
eb291485bb655c5e2f18224481e3858de3dcb8dc
4ff0642af745e57df6736b9d68fe0228b8e28968
chore: drop support for Windows 7 / 8 / 8.1 (#36427) * chore: drop support for Windows 7 & 8 * chore: remove disable-redraw-lock.patch * chore: update patches * Update docs/breaking-changes.md Co-authored-by: Erick Zhao <erick@hotmail.ca> * Update docs/breaking-changes.md Co-authored-by: Keeley Hammo...
[ { "path": "README.md", "patch": "@@ -39,7 +39,7 @@ For more installation options and troubleshooting tips, see\n Each Electron release provides binaries for macOS, Windows, and Linux.\n \n * macOS (High Sierra and up): Electron provides 64-bit Intel and ARM binaries for macOS. Apple Silicon support was adde...
2022-12-01T01:13:29
huggingface/transformers
4ee7f51e468b7408513dc294dad20e4edb13594f
05514c4bb641ba1537d17048fd93f50f45d5f19d
Embedding VLMs don't need a head (#45000) * squash * fix copies * skip, we dont need to load base model for it * oops, one more regex since now we have no prefix
[ { "path": "src/transformers/conversion_mapping.py", "patch": "@@ -88,9 +88,6 @@ def _build_checkpoint_conversion_mapping():\n WeightRenaming(source_patterns=r\"language_model.model\", target_patterns=\"language_model\"),\n WeightRenaming(source_patterns=r\"language_model.lm_head\", t...
2026-03-27T09:43:28
ollama/ollama
afb4c62fbf6839319dbe93c1bbb9eb7fc9a67c3e
e790dc435b148933da3b98b423397bf022e38104
cloud_proxy: handle stream disconnects gracefully (#14685) Previously we were printing out bad errors for expected cases like clients disconnecting. Now we only debug log when that happens (which still might help in cases where we're figuring out why an integration isn't working). For other errors, we print out a prop...
[ { "path": "server/cloud_proxy.go", "patch": "@@ -4,6 +4,7 @@ import (\n \t\"bytes\"\n \t\"context\"\n \t\"encoding/json\"\n+\t\"errors\"\n \t\"fmt\"\n \t\"io\"\n \t\"log/slog\"\n@@ -204,7 +205,25 @@ func proxyCloudRequestWithPath(c *gin.Context, body []byte, path string, disable\n \tc.Status(resp.StatusCode...
2026-03-07T03:18:52
golang/go
b38b0c0088039b03117b87eee61583ac4153f2b7
8203265d5eef37bf41d7d2df126f77ebd5abc999
cmd/compile: document -embedcfg flag Fixes #71942 Change-Id: Ie7e795506a9c8781f0e0963012233a7ed1093855 Reviewed-on: https://go-review.googlesource.com/c/go/+/652475 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Auto-Submit: Ian Lance Taylor <iant@golang.org> Reviewed-by: Mi...
[ { "path": "src/cmd/compile/doc.go", "patch": "@@ -60,6 +60,11 @@ Flags:\n \t\tAllow references to Go symbols in shared libraries (experimental).\n \t-e\n \t\tRemove the limit on the number of errors reported (default limit is 10).\n+\t-embedcfg file\n+\t\tRead go:embed configuration from file.\n+\t\tThis is...
2025-02-25T18:51:29
vercel/next.js
45263d66e47c66bdddf38f6ff379aef75233fd99
d2d2bf94695c65a12b31bd81c7c1a7f948782969
[fix] clone the config module to avoid mutation (#80573)
[ { "path": "packages/next/src/server/config.ts", "patch": "@@ -1267,10 +1267,12 @@ export default async function loadConfig(\n throw err\n }\n \n- const userConfig = (await normalizeConfig(\n+ // Clone a new userConfig each time to avoid mutating the original\n+ const loadedConfig = (await...
2025-06-17T15:22:59
facebook/react
bb92520ba5639fcf81dbf3189a68703b34459a9d
973ec414bd78fc458f995ef865ec3ab1d7c2a37d
Some existing InvalidConfig errors should be invariants Now that we have validation of the compiler config, these old errors weren't categorized correctly. Readjusted them to be invariants instead.
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Imports.ts", "patch": "@@ -23,22 +23,21 @@ export function addImportsToProgram(\n * Codegen currently does not rename import specifiers, so we do additional\n * validation here\n */\n- if (identifiers.has(importSpecifier...
2023-11-08T19:10:18
huggingface/transformers
05514c4bb641ba1537d17048fd93f50f45d5f19d
7b00e3ba398d355d5f277a4896743b16f21049eb
Fix GraniteConfig type hints to accept int for multiplier fields (#45019) * Fix GraniteConfig type hints to accept int for multiplier fields Fixes #44877 * Also update granitemoe and granitemoeshared multiplier type hints
[ { "path": "src/transformers/models/granite/configuration_granite.py", "patch": "@@ -80,10 +80,10 @@ class GraniteConfig(PreTrainedConfig):\n attention_bias: bool = False\n attention_dropout: float | int = 0.0\n mlp_bias: bool = False\n- embedding_multiplier: float = 1.0\n- logits_scaling: ...
2026-03-27T09:20:14
electron/electron
4ff0642af745e57df6736b9d68fe0228b8e28968
835e248dfff8bb585770be18ed0df74b29e81c7b
fix: treat maxWidth/Height<=0 as unlimited (#36487)
[ { "path": "shell/browser/native_window.cc", "patch": "@@ -175,7 +175,11 @@ void NativeWindow::InitFromOptions(const gin_helper::Dictionary& options) {\n int max_width = max_size.width() > 0 ? max_size.width() : INT_MAX;\n int max_height = max_size.height() > 0 ? max_size.height() : INT_MAX;\n bool hav...
2022-12-01T01:02:22
golang/go
8203265d5eef37bf41d7d2df126f77ebd5abc999
beb314c0dbcbe03b576123e99e1331348f858ecc
cmd/compile, runtime: optimize concatbytes CL 527935 optimized []byte(string1 + string2) to use runtime.concatbytes to prevent concatenating of strings before converting to slices. However, the optimization is implemented without allowing temporary buffer for slice on stack, causing un-necessary allocations. To fix t...
[ { "path": "src/cmd/compile/internal/test/issue71943_test.go", "patch": "@@ -0,0 +1,23 @@\n+// Copyright 2025 The Go Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style\n+// license that can be found in the LICENSE file.\n+\n+package test\n+\n+import (\n+\t\"crypto/sha256\"\...
2025-02-25T16:59:14
ollama/ollama
288077c3a3b69d717e7bf1af576d28885657826a
4425c54eda899cfb3f17932165c6a43bab922fee
build: smarter docker parallelism (#14653) Our Dockerfile leverages parallel stages for more efficient builds. However, our old parallel settings were naive and lead to under/over utilization depending on the capabilities of your build system. This change switches to using Ninja for all our docker cmake builds to le...
[ { "path": "Dockerfile", "patch": "@@ -1,28 +1,18 @@\n # vim: filetype=dockerfile\n \n ARG FLAVOR=${TARGETARCH}\n-ARG PARALLEL=8\n \n ARG ROCMVERSION=6.3.3\n ARG JETPACK5VERSION=r35.4.1\n ARG JETPACK6VERSION=r36.4.0\n ARG CMAKEVERSION=3.31.2\n+ARG NINJAVERSION=1.12.1\n ARG VULKANVERSION=1.4.321.1\n \n FROM -...
2026-03-07T00:36:22
facebook/react
7aca04a0d677f2a4adcaff18c951992016f4605b
4e7d4378804d982105bd35cf43dc8c6dcb779521
[babel] Refactor handleError to pass the error first Pass the most important and required argument as the first parameter.
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Program.ts", "patch": "@@ -66,9 +66,9 @@ type CompileResult = {\n };\n \n function handleError(\n+ err: CompilerError,\n pass: CompilerPass,\n- fnLoc: t.SourceLocation | null,\n- err: CompilerError\n+ fnLoc: t.SourceLocation | null\...
2023-11-08T16:09:19
vercel/next.js
d2d2bf94695c65a12b31bd81c7c1a7f948782969
77c45462f9b50e9328a77337c669b417e232eaa7
fix: mark file system incremental cache as external so it's memory is shared (#80586) This moves the in-memory LRU cache on the file system cache handler as external so that it's shared between different instances of the file system cache module.
[ { "path": "packages/next/src/server/lib/incremental-cache/file-system-cache.ts", "patch": "@@ -1,5 +1,5 @@\n import type { RouteMetadata } from '../../../export/routes/types'\n-import type { CacheHandler, CacheHandlerContext, CacheHandlerValue } from './'\n+import type { CacheHandler, CacheHandlerContext, C...
2025-06-17T15:15:56
huggingface/transformers
7b00e3ba398d355d5f277a4896743b16f21049eb
23773e7140dc4037f658d263b95aef76bb6ef00d
fix: preserve rotary_pct across save/load cycle in GPTNeoX configs (#44985) * fix: preserve rotary_pct across save/load cycle in GPTNeoX configs Use setdefault instead of unconditional assignment for partial_rotary_factor in GPTNeoXConfig and GPTNeoXJapaneseConfig, so the value saved in rope_parameters is not overwri...
[ { "path": "src/transformers/models/gpt_neox/configuration_gpt_neox.py", "patch": "@@ -95,7 +95,7 @@ def convert_rope_params_to_dict(self, **kwargs):\n # Standardize and validate the correctness of rotary position embeddings parameters\n # Model uses non-standard naming for rope params, overw...
2026-03-27T09:05:08
electron/electron
665cf03f741f3d0bcb0800db5bb31c0707e4987e
f527b8aa2a670edb84c6bda1f01623a69bc40212
fix: handle Notification requireInteraction option (#36477)
[ { "path": "shell/browser/notifications/platform_notification_service.cc", "patch": "@@ -35,6 +35,9 @@ void OnWebNotificationAllowed(base::WeakPtr<Notification> notification,\n options.icon = icon;\n options.silent = audio_muted ? true : data.silent;\n options.has_reply = false;\n+ if (data.re...
2022-11-30T21:18:35
golang/go
61641c11455af9571e6e01449c7ea774b0069594
eed2208f152d1172993a3193374625683e244100
cmd/link: put .got section in __DATA_CONST segment On Darwin, the .got section can be placed in a read-only segment. Only the dynamic linker should modify it at start-up time. Other read-only sections, like .typelink and .itablink, are already placed in the __DATA_CONST segment. Do the same for the .got section. Fix...
[ { "path": "src/cmd/link/internal/ld/data.go", "patch": "@@ -1920,7 +1920,6 @@ func (state *dodataState) allocateDataSections(ctxt *Link) {\n \t\tsym.SFIPSINFO,\n \t\tsym.SELFSECT,\n \t\tsym.SMACHO,\n-\t\tsym.SMACHOGOT,\n \t\tsym.SWINDOWS,\n \t}\n \tfor _, symn := range writable {\n@@ -1932,6 +1931,9 @@ func...
2025-01-24T11:23:42
ollama/ollama
4425c54eda899cfb3f17932165c6a43bab922fee
778899a5d215776bb1d8805ae19a77f47e6069aa
create: fix localhost handling (#14681)
[ { "path": "cmd/cmd.go", "patch": "@@ -132,6 +132,17 @@ func getModelfileName(cmd *cobra.Command) (string, error) {\n \treturn absName, nil\n }\n \n+// isLocalhost returns true if the configured Ollama host is a loopback or unspecified address.\n+func isLocalhost() bool {\n+\thost := envconfig.Host()\n+\th, ...
2026-03-07T00:35:58
facebook/react
4e7d4378804d982105bd35cf43dc8c6dcb779521
0beeb1e7ad283a718fbf7a8ff67d8dff3be90dfd
[babel] Remove unused PipelineError Most of the use cases are already handled with ErrorSeverity.InvalidConfig
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Options.ts", "patch": "@@ -138,11 +138,6 @@ export type LoggerEvent =\n fnLoc: t.SourceLocation | null;\n fnName: string | null;\n memoSlots: number;\n- }\n- | {\n- kind: \"PipelineError\";\n- fnLoc: t.Sour...
2023-11-08T16:09:18
huggingface/transformers
16d437e43adffaef9cd60070563f2afe6a5703a4
97b7727e1129bcaebe42ce57ce37fa1a48847a89
fix: protect torch imports in processing files and fix import guards - Guard import torch in processing_cohere_asr.py with is_torch_available() - Add @requires(backends=("torch",)) to CohereAsrProcessor - Fix is_vision_available() to use actual import test instead of find_spec - Fix is_torchvision_available() and is_t...
[ { "path": "src/transformers/models/cohere_asr/processing_cohere_asr.py", "patch": "@@ -12,12 +12,14 @@\n # See the License for the specific language governing permissions and\n # limitations under the License.\n \n-import torch\n-\n from ...audio_utils import AudioInput, make_list_of_audio\n from ...process...
2026-03-27T00:14:51
vercel/next.js
2caf822d5264cc99c656e5a5e939d649b071f38d
e2e82e99571417a26e90788a86b73b2a34fdface
fix: Rspack dev gets stuck after removing a page (#80555) Rspack's incremental build algorithm causes a situation where deleted entries in dynamic entries still get built. If a page is deleted, an infinite loop occurs in the corresponding `next-app-loader`, causing the entire compilation to hang. The root cause of t...
[ { "path": "packages/next/errors.json", "patch": "@@ -708,5 +708,6 @@\n \"707\": \"Invariant app-page handler received invalid cache entry %s\",\n \"708\": \"Failed to persist Chrome DevTools workspace UUID. The Chrome DevTools Workspace needs to be reconnected after the next page reload.\",\n \"709\":...
2025-06-17T05:34:12
electron/electron
e3b7c3024f6f70155efb1022b691954280f983cb
9f007b9afb5217b35ee3bb582024bf762d70e4ce
docs: fix loadExtension example (#36489)
[ { "path": "docs/api/extensions.md", "patch": "@@ -20,7 +20,7 @@ work). Extensions are installed per-`session`. To load an extension, call\n ```js\n const { session } = require('electron')\n \n-session.loadExtension('path/to/unpacked/extension').then(({ id }) => {\n+session.defaultSession.loadExtension('path...
2022-11-30T19:29:02
golang/go
cc16fb52e6f1eafaee468f8563525ec391e016f5
1e92ff11f5fa9d495c05414591516402a202539c
cmd/compile: ensure we don't reuse temporary register Before this CL, we could use the same register for both a temporary register and for moving a value in the output register out of the way. Fixes #71857 Change-Id: Iefbfd9d4139136174570d8aadf8a0fb391791ea9 Reviewed-on: https://go-review.googlesource.com/c/go/+/651...
[ { "path": "src/cmd/compile/internal/ssa/regalloc.go", "patch": "@@ -1677,6 +1677,7 @@ func (s *regAllocState) regalloc(f *Func) {\n \t\t\t\t}\n \t\t\t\ttmpReg = s.allocReg(m, &tmpVal)\n \t\t\t\ts.nospill |= regMask(1) << tmpReg\n+\t\t\t\ts.tmpused |= regMask(1) << tmpReg\n \t\t\t}\n \n \t\t\t// Now that all...
2025-02-23T18:34:00
ollama/ollama
4eab60c1e2e25aed9df102de40e9c6f0b1200bdb
1af850e6e3668ece1c953bb27e38e8827393adff
Reapply "don't require pulling stubs for cloud models" again (#14608) * Revert "Revert "Reapply "don't require pulling stubs for cloud models"" (#14606)" This reverts commit 39982a954e056b73fb071212715913a1f0cd4dcc. * fix test + do cloud lookup only when seeing cloud models --------- Co-authored-by: ParthSareen <p...
[ { "path": "cmd/cmd.go", "patch": "@@ -41,6 +41,7 @@ import (\n \t\"github.com/ollama/ollama/cmd/tui\"\n \t\"github.com/ollama/ollama/envconfig\"\n \t\"github.com/ollama/ollama/format\"\n+\t\"github.com/ollama/ollama/internal/modelref\"\n \t\"github.com/ollama/ollama/parser\"\n \t\"github.com/ollama/ollama/p...
2026-03-06T22:27:47
facebook/react
8b12f179d3350d6719b0dacc83d4153d9cc3da23
3f7b9e23e38e9338a66e313cd5842a25e23a5668
Add tests to make sure our config validation error message doesn't regress
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/envConfig-test.ts", "patch": "@@ -0,0 +1,29 @@\n+/**\n+ * Copyright (c) Meta Platforms, Inc. and affiliates.\n+ *\n+ * This source code is licensed under the MIT license found in the\n+ * LICENSE file in the root directory of this source t...
2023-11-08T16:09:15
golang/go
973a9eb8bf883b3856d94624138ecfe30cac3ea0
434de2f8e9d3837711e0f853a2873cbb83325019
net: properly wrap context cancellation errors and return DNSErrors consistently Fixes #71939 Change-Id: Id7cd720fcca2812ffca2b1b20fe923914422d994 GitHub-Last-Rev: 4671f338c91b5826c669fbd113c176e22f5020e5 GitHub-Pull-Request: golang/go#71941 Reviewed-on: https://go-review.googlesource.com/c/go/+/652275 Commit-Queue: ...
[ { "path": "src/net/cgo_unix.go", "patch": "@@ -47,11 +47,7 @@ func (eai addrinfoErrno) isAddrinfoErrno() {}\n func doBlockingWithCtx[T any](ctx context.Context, lookupName string, blocking func() (T, error)) (T, error) {\n \tif err := acquireThread(ctx); err != nil {\n \t\tvar zero T\n-\t\treturn zero, &DNS...
2025-02-25T08:23:26
vercel/next.js
8f2e058c2435e78542f7160627180f0ff8c74cb5
0baf4041c4ea6791688699694b7520d502378afb
test: fix failures caused by format discrepancies between rspack and other bundlers (#80314) This pull request updates error recovery tests to improve compatibility with the Rspack bundler by introducing an `isRspack` flag and modifying test cases to handle Rspack-specific error formats. The changes ensure that runtim...
[ { "path": "test/development/acceptance-app/error-recovery.test.ts", "patch": "@@ -5,6 +5,8 @@ import { check } from 'next-test-utils'\n import path from 'path'\n import { outdent } from 'outdent'\n \n+const isRspack = !!process.env.NEXT_RSPACK\n+\n describe('Error recovery app', () => {\n const { next, is...
2025-06-17T04:28:14
electron/electron
2c723d7e84dfab5ad97fc0927426a0b2cd7a15b5
16a7bd71024789fcabb9362888ee4638852b1eb1
fix: enable crashpad for ELECTRON_RUN_AS_NODE processes (#36460) * wip: enable crashpad for node processes fix: add PID testing method wip: plumb fd into child_process in node * node::ProcessInitializationFlags::kNoDefaultSignalHandling * chore: clean up debug logging * chore: gate platform includes ...
[ { "path": "filenames.gni", "patch": "@@ -530,6 +530,7 @@ filenames = {\n \"shell/browser/window_list_observer.h\",\n \"shell/browser/zoom_level_delegate.cc\",\n \"shell/browser/zoom_level_delegate.h\",\n+ \"shell/common/api/crashpad_support.cc\",\n \"shell/common/api/electron_api_asar.cc\...
2022-11-29T15:33:54
huggingface/transformers
97b7727e1129bcaebe42ce57ce37fa1a48847a89
78bdaf0b39c29737b9ca48a274ef4a34bdafd4d1
Fix release full (#45029) * first part of the fix * fix torch imports * revert * fix: make from transformers import * work without torch - `is_torchvision_available`, `is_timm_available`, `is_torchaudio_available`, `is_torchao_available`, `is_accelerate_available` now return False when torch is not installed, ...
[ { "path": ".circleci/config.yml", "patch": "@@ -175,6 +175,28 @@ jobs:\n - store_artifacts:\n path: ~/transformers/installed.txt\n - run: make check-repository-consistency\n+ - run:\n+ name: \"Test import with all backends (torch + PIL + to...
2026-03-27T00:11:22
facebook/react
3f7b9e23e38e9338a66e313cd5842a25e23a5668
42497b60f5935c14fdbcd4b6250d507aa3149e63
Don't allow null to be passed to validateEnvironmentConfig zod will throw an error if we pass null, so let's not do this. Adding a temporary workaround until we start validating PluginOptions.
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Program.ts", "patch": "@@ -257,7 +257,11 @@ export function compileProgram(\n \n let compiledFn: CodegenFunction;\n try {\n- const config = validateEnvironmentConfig(pass.opts.environment);\n+ /*\n+ * TODO(lauren):...
2023-11-08T16:09:14
ollama/ollama
1af850e6e3668ece1c953bb27e38e8827393adff
9b0c7cc7b90562b370ce6a30efdc667326799223
parsers: repair unclosed arg_value tags in GLM tool calls (#14656) GLM models sometimes omits </arg_value> closing tags in tool call XML, causing xml.Unmarshal to fail with "element <arg_value> closed by </tool_call>". This is a known issue across the GLM family. Sanitize the input to fix closing arg_key values so e...
[ { "path": "model/parsers/glm46.go", "patch": "@@ -345,6 +345,47 @@ func escapeGLM46Content(s string) string {\n \treturn result.String()\n }\n \n+// repairUnclosedArgValues inserts missing </arg_value> closing tags.\n+// GLM models sometimes omit the closing tag, producing XML like:\n+//\n+//\t<arg_value>va...
2026-03-06T22:08:34
golang/go
434de2f8e9d3837711e0f853a2873cbb83325019
bdef1778311c19c997d4fb14a4374bd712014d13
spec: remove notion of core types This CL removes the notion of core types from the spec. Instead of referring to core types, each section that did so before is reverted to approx. the pre-generics (1.17) prose, and additional paragraphs cover the type parameter cases as needed. The hope is that this makes it easier...
[ { "path": "doc/go_spec.html", "patch": "@@ -1,6 +1,6 @@\n <!--{\n \t\"Title\": \"The Go Programming Language Specification\",\n-\t\"Subtitle\": \"Language version go1.25 (Feb 3, 2025)\",\n+\t\"Subtitle\": \"Language version go1.25 (Feb 25, 2025)\",\n \t\"Path\": \"/ref/spec\"\n }-->\n \n@@ -1856,110 +1856,1...
2025-01-30T23:11:19
vercel/next.js
d60157fc0b8f0c6b2caf189c0b24dae96e0e5683
c6abe5ae767856badf0202814281855beb129392
[devtools] Port cache invalidation logic from turbopack to webpack (#80184) We want to support the "reset bundler cache" button in webpack/rspack. The webpack cache is a lot more stable, but it'd be good to have as a relative baseline once we have telemetry. We don't use a persistent cache in rspack (it's an experime...
[ { "path": "packages/next/errors.json", "patch": "@@ -707,5 +707,6 @@\n \"706\": \"Invariant: static responses cannot be streamed %s\",\n \"707\": \"Invariant app-page handler received invalid cache entry %s\",\n \"708\": \"Failed to persist Chrome DevTools workspace UUID. The Chrome DevTools Workspace...
2025-06-17T01:01:33
electron/electron
16a7bd71024789fcabb9362888ee4638852b1eb1
bbb590b7776cd9cbb15a4866171e71408924e988
fix: reimplement Tray with StatusIconLinuxDbus on Linux (#36333)
[ { "path": "BUILD.gn", "patch": "@@ -632,16 +632,8 @@ source_set(\"electron_lib\") {\n sources += [\n \"shell/browser/certificate_manager_model.cc\",\n \"shell/browser/certificate_manager_model.h\",\n- \"shell/browser/ui/gtk/app_indicator_icon.cc\",\n- \"shell/browser/ui/gtk/app_ind...
2022-11-28T19:36:25
huggingface/transformers
78bdaf0b39c29737b9ca48a274ef4a34bdafd4d1
e895107784ea68cd80e101acda5eb53aa07b9392
Add cohere asr (#45023) * cohere-asr model * repo udpates * tmp weight mapping * add fast tests * fix compile * add integration tests * update integration tests * fixes * clearer API * test update * fix * cosmetics * fix on parakeet encoder * modular update * Update src/transformers/models/cohere_asr/con...
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -1002,6 +1002,8 @@\n title: Bark\n - local: model_doc/clap\n title: CLAP\n+ - local: model_doc/cohere_asr\n+ title: Cohere ASR\n - local: model_doc/csm\n title: CSM\n - local: model_doc/dac", "add...
2026-03-26T22:48:11
facebook/react
42497b60f5935c14fdbcd4b6250d507aa3149e63
33ffde4836d5e72f8109282e8f97af20179313dc
[error] Prefix side-effecting function names with throw I did a double take when I thought we didn't handle returning the error when reading the code and when I edited the code, typescript told me that there's no need to return as creating the error will throw. This PR makes it clear from the name of the functi...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/CompilerError.ts", "patch": "@@ -116,15 +116,17 @@ export class CompilerError extends Error {\n }\n }\n \n- static todo(options: Omit<CompilerErrorDetailOptions, \"severity\">): never {\n+ static throwTodo(\n+ options: Omit<CompilerErrorD...
2023-11-08T16:09:13
ollama/ollama
9896e3627f7bdc135fd888cdd48e61d0108a1244
15732f0ea77320bb20851a84a296a645fabd56b5
cmd/config: fix cloud model limit lookups in integrations (#14650)
[ { "path": "cmd/config/droid_test.go", "patch": "@@ -1277,7 +1277,8 @@ func TestDroidEdit_LocalModelDefaultMaxOutput(t *testing.T) {\n func TestDroidEdit_CloudModelLimitsUsed(t *testing.T) {\n \t// Verify that every cloud model in cloudModelLimits has a valid output\n \t// value that would be used for maxOut...
2026-03-05T21:57:28
golang/go
bdef1778311c19c997d4fb14a4374bd712014d13
2f036e1475f9d794451927d90c07d9f8c258db77
go/parser: require label after goto Fixes #70957 Change-Id: Ied7cf29ea3e02bb71ddce8a19ddd381ce5991ed1 GitHub-Last-Rev: 310bd1537b7a36758f3fbf8db476fa68e1a11599 GitHub-Pull-Request: golang/go#70958 Reviewed-on: https://go-review.googlesource.com/c/go/+/638395 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-acc...
[ { "path": "src/cmd/compile/internal/syntax/testdata/issue70957.go", "patch": "@@ -0,0 +1,9 @@\n+// Copyright 2024 The Go Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style\n+// license that can be found in the LICENSE file.\n+\n+package p\n+\n+func f() { goto /* ERROR synt...
2025-01-07T18:28:10
vercel/next.js
27fed1c1b6ef86c88d99749105256a6117e9c69b
1e5bb42a817f08b55bd0821698b552d69ae3245b
docs: fix typo (#80501) <!-- 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 Documentatio...
[ { "path": "docs/01-app/01-getting-started/04-linking-and-navigating.mdx", "patch": "@@ -135,7 +135,7 @@ export default function Loading() {\n }\n ```\n \n-Behind the scenes, Next.js will automatically wrap the `page.tsx` contents and in a `<Suspense>` boundary. The prefetched fallback UI will be shown while...
2025-06-16T11:47:46
electron/electron
679ce632a99d35e42ee3c42be5cb05401bd2af77
629c54ba36fcca787cd3ac69924a2527ba131bfc
build: fixup appveyor image for release (#36429) * build: make sure symstore is in the PATH when baking an image * build: update to use fixed baked image * cleanup sdk install
[ { "path": "appveyor.yml", "patch": "@@ -25,7 +25,7 @@\n \n version: 1.0.{build}\n build_cloud: electronhq-16-core\n-image: e-110.0.5415.0\n+image: e-110.0.5415.0-fix\n environment:\n GIT_CACHE_PATH: C:\\Users\\appveyor\\libcc_cache\n ELECTRON_OUT_DIR: Default", "additions": 1, "deletions": 1, ...
2022-11-22T21:57:49
huggingface/transformers
67100ccaad9b406d05a1214d95293cb0623b7890
69f9d552e9f7977291e707f1ae260c64193ea6ab
[CB] Persistent manager (#44435) * Stacked commits cb-persistent * Rebase fixes * style * ty compliance * Fix * nit
[ { "path": "src/transformers/generation/configuration_utils.py", "patch": "@@ -1585,7 +1585,7 @@ class ContinuousBatchingConfig:\n The decode path handles batches has no dynamic KV length, so static shapes are a better fit.\n use_default_compile_configs (`bool`, *optional*, defaults to `F...
2026-03-26T21:47:57
ollama/ollama
15732f0ea77320bb20851a84a296a645fabd56b5
562c76d7cc15520e20f985105305227de0b6bb47
cmd: use native Ollama API endpoint for OpenClaw (#14649) Remove the /v1 suffix from the OpenClaw provider baseUrl so it uses the native Ollama API instead of the OpenAI-compatible endpoint. The /v1 endpoint my break tool calling in OpenClaw.
[ { "path": "cmd/config/openclaw.go", "patch": "@@ -502,7 +502,7 @@ func (c *Openclaw) Edit(models []string) error {\n \t\tollama = make(map[string]any)\n \t}\n \n-\tollama[\"baseUrl\"] = envconfig.Host().String() + \"/v1\"\n+\tollama[\"baseUrl\"] = envconfig.Host().String()\n \t// needed to register provider...
2026-03-05T21:29:17
facebook/react
702aadd82b2548f87c579fead92476e3efc64ac7
64dffe9e78607dda0977b72f77cadf17c404a57b
Fix to only add imports if we compiled something We should only add imports if we actually compiled anything, this is what caused the internal issue despite the file in question not having any functions opted-in to compilation.
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Program.ts", "patch": "@@ -356,9 +356,8 @@ export function compileProgram(\n // Forget compiled the component, we need to update existing imports of unstable_useMemoCache\n if (compiledFns.length > 0) {\n updateUseMemoCacheImport(...
2023-11-08T00:22:03
vercel/next.js
1e5bb42a817f08b55bd0821698b552d69ae3245b
029c8638f71dd8360ab8215bc4582d0d99b19d92
docs: fix typo (#80500) <!-- 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 Documentatio...
[ { "path": "docs/01-app/01-getting-started/04-linking-and-navigating.mdx", "patch": "@@ -8,7 +8,7 @@ related:\n - app/guides/prefetching\n ---\n \n-In Next.js, routes are rendered on the server by default. This often means the client has to wait for a server response before a new route can be shown. Next...
2025-06-16T11:46:52
golang/go
c2ae5c7443fc8bda1d2b06390d4b439e81fb4b09
6adf08f747aff60810e754ca74e1bef381cbae86
cmd/compile, runtime: use PC of deferreturn for panic transfer this removes the old conditional-on-register-value handshake from the deferproc/deferprocstack logic. The "line" for the recovery-exit frame itself (not the defers that it runs) is the closing brace of the function. Reduces code size slightly (e.g. go co...
[ { "path": "src/cmd/compile/internal/amd64/ssa.go", "patch": "@@ -1441,24 +1441,7 @@ var nefJumps = [2][2]ssagen.IndexJump{\n \n func ssaGenBlock(s *ssagen.State, b, next *ssa.Block) {\n \tswitch b.Kind {\n-\tcase ssa.BlockPlain:\n-\t\tif b.Succs[0].Block() != next {\n-\t\t\tp := s.Prog(obj.AJMP)\n-\t\t\tp.T...
2025-02-19T21:47:31
huggingface/transformers
882ffdbbd6b8ad50feaa860d702e70950cfc95d0
d81ad48109331f910fd81f699869855cbd50f681
[`fix`] Use the correct _tied_weights_keys for CamembertForCausalLM (#45031) Use the correct _tied_weights_keys for CamembertForCausalLM
[ { "path": "src/transformers/models/camembert/modeling_camembert.py", "patch": "@@ -1154,7 +1154,7 @@ def forward(\n )\n class CamembertForCausalLM(CamembertPreTrainedModel, GenerationMixin):\n _tied_weights_keys = {\n- \"lm_head.decoder.weight\": \"camembert.embeddings.word_embeddings.weight\",\n...
2026-03-26T18:50:02
ollama/ollama
82848a7806c0c54faef21a11b8fe4b488e24dfab
39982a954e056b73fb071212715913a1f0cd4dcc
model: fix renderer and parser for qwen3.5 (#14605)
[ { "path": "model/parsers/parsers.go", "patch": "@@ -50,7 +50,7 @@ func ParserForName(name string) Parser {\n \tcase \"qwen3-thinking\":\n \t\tp = &Qwen3Parser{hasThinkingSupport: true, defaultThinking: true}\n \tcase \"qwen3.5\":\n-\t\tp = &Qwen3Parser{hasThinkingSupport: true, defaultThinking: true}\n+\t\t...
2026-03-04T04:58:29
electron/electron
629c54ba36fcca787cd3ac69924a2527ba131bfc
2751c2b07f52b65822dc1c1f25687f4f4770d01f
feat: add support for WebUSB (#36289) * feat: add support for WebUSB * fixup for gn check * fixup gn check on Windows * Apply review feedback Co-authored-by: Charles Kerr <charles@charleskerr.com> * chore: address review feedback * chore: removed unneeded code * Migrate non-default ScopedObservati...
[ { "path": "docs/api/session.md", "patch": "@@ -239,7 +239,7 @@ app.whenReady().then(() => {\n const selectedDevice = details.deviceList.find((device) => {\n return device.vendorId === '9025' && device.productId === '67'\n })\n- callback(selectedPort?.deviceId)\n+ callback(selectedDevice?...
2022-11-22T21:50:32
facebook/react
64dffe9e78607dda0977b72f77cadf17c404a57b
9d5ff320badcb81c914a010105fc033c2a595d4c
repro for gating error despite no compiled functions
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/error.gating-with-no-compiled-functions.expect.md", "patch": "@@ -0,0 +1,19 @@\n+\n+## Input\n+\n+```javascript\n+// @gating\n+import { isForgetEnabled_Fixtures } from \"ReactForgetFeatureFlag\";\n+\n+export default 42;\n...
2023-11-08T00:09:29
vercel/next.js
029c8638f71dd8360ab8215bc4582d0d99b19d92
4d133b0aeb1da1a376ef533271f2c8ea289639bc
docs: fix typos (#80503) <!-- 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 Documentati...
[ { "path": "docs/01-app/01-getting-started/04-linking-and-navigating.mdx", "patch": "@@ -297,7 +297,7 @@ However, disabling prefetching comes with trade-offs:\n - **Static routes** will only be fetched when the user clicks the link.\n - **Dynamic routes** will need to be rendered on the server first before t...
2025-06-16T11:44:53
huggingface/transformers
ec196140eb9b43653bc62877d7b746869a527c28
da37a4d95758f90a0b37253b33618b382c7ca722
Ensure final evaluation runs with step-based evaluation strategy (#44146) * rebase * merge conflict * merge conflict1 * merge conflict trainer * blank space qulity run * lint error * modify test to address our change * rebase * rebase * rebase * rebase * test updated with delay check * checkpoint tests upd...
[ { "path": "src/transformers/trainer_callback.py", "patch": "@@ -591,6 +591,14 @@ def on_step_end(self, args: TrainingArguments, state: TrainerState, control: Tra\n # End training\n if state.global_step >= state.max_steps:\n control.should_training_stop = True\n+ # Eval...
2026-03-26T16:17:22
golang/go
549a88fa53c4d7d5ad702cdc90b3f0c763deb12e
d45d502fbb989e140c979b16837b1c2126dd18ab
go/types, types2: better error messages for calls Provide the exact error cause instead of reporting a missing core type. For #70128. Change-Id: I34bd401115742883cb6aef7997477473b2464abb Reviewed-on: https://go-review.googlesource.com/c/go/+/651256 Reviewed-by: Robert Griesemer <gri@google.com> Auto-Submit: Robert G...
[ { "path": "src/cmd/compile/internal/types2/call.go", "patch": "@@ -242,10 +242,16 @@ func (check *Checker) callExpr(x *operand, call *syntax.CallExpr) exprKind {\n \t// signature may be generic\n \tcgocall := x.mode == cgofunc\n \n-\t// a type parameter may be \"called\" if all types have the same signature...
2025-02-21T00:23:11
ollama/ollama
e8fcb295864f08edb041dbb8adc63e9c595bcfc9
97d2f05a6d74e843eb8c49ec537394b12bb80be9
model/renderers: fix glm-ocr image tags in renderer prompts (#14584)
[ { "path": "model/renderers/glmocr.go", "patch": "@@ -8,7 +8,21 @@ import (\n \t\"github.com/ollama/ollama/api\"\n )\n \n-type GlmOcrRenderer struct{}\n+type GlmOcrRenderer struct {\n+\tuseImgTags bool\n+}\n+\n+func (r *GlmOcrRenderer) renderContent(message api.Message, imageOffset int) (string, int) {\n+\tv...
2026-03-03T20:51:34
facebook/react
9d5ff320badcb81c914a010105fc033c2a595d4c
00cb557b12ecc3991ed35570f69b3f0284a9a545
[babel] Fix default value for `environment` option When an `environment` isn't explicitly provided by the user's config, we used to default this to `null` in `parsePluginOptions` which is called right at the start of the Babel plugin. These parsed options were then being passed to zod, which was expecting an objec...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Options.ts", "patch": "@@ -146,7 +146,7 @@ export type Logger = {\n export const defaultOptions: PluginOptions = {\n compilationMode: \"infer\",\n panicThreshold: \"CRITICAL_ERRORS\",\n- environment: null,\n+ environment: {},\n lo...
2023-11-07T23:58:21
vercel/next.js
4d133b0aeb1da1a376ef533271f2c8ea289639bc
dcdb2e18d6c7faadc56c22d4087affd0d29cab48
docs: fix a typo in `static-exports.mdx` (#80541) <!-- 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 ...
[ { "path": "docs/01-app/02-guides/static-exports.mdx", "patch": "@@ -1,5 +1,5 @@\n ---\n-title: How to create an static export of your Next.js application\n+title: How to create a static export of your Next.js application\n nav_title: Static Exports\n description: Next.js enables starting as a static site or...
2025-06-16T11:39:12
electron/electron
c6d6af255109b9fc0c48f245c908d87830c26620
b71cccb0d657919ac80d30fde646b0260425f1a1
chore: bump node to v18.12.1 (main) (#36356) * chore: bump node in DEPS to v18.12.1 * chore: update patches * chore: add missing <algorithm> include * src: add detailed embedder process initialization AP https://github.com/nodejs/node/pull/44121 * chore: update gn build files * dns: support dns modul...
[ { "path": "DEPS", "patch": "@@ -4,7 +4,7 @@ vars = {\n 'chromium_version':\n '110.0.5415.0',\n 'node_version':\n- 'v18.10.0',\n+ 'v18.12.1',\n 'nan_version':\n '16fa32231e2ccd89d2804b3f765319128b20c4ac',\n 'squirrel.mac_version':", "additions": 1, "deletions": 1, "language"...
2022-11-21T15:55:01
huggingface/transformers
da37a4d95758f90a0b37253b33618b382c7ca722
61efa3229a0cdd77cec9359a68e416a456c020c3
Add `base_model_tp_plan` to `OlmoeConfig` (#44668) * Rebase: Add base_model_tp_plan to OlmoeConfig (dataclass style) Rebased onto main after configs were migrated to dataclasses. Adds base_model_tp_plan as a class attribute and TensorParallelTesterMixin to the OLMoE test suite. Co-Authored-By: Claude Opus 4.6 <norep...
[ { "path": "src/transformers/models/olmoe/configuration_olmoe.py", "patch": "@@ -44,6 +44,17 @@ class OlmoeConfig(PreTrainedConfig):\n keys_to_ignore_at_inference = [\"past_key_values\"]\n attribute_map = {\"num_local_experts\": \"num_experts\"}\n \n+ # Default tensor parallel plan for base model ...
2026-03-26T13:40:42
golang/go
d45d502fbb989e140c979b16837b1c2126dd18ab
bdcd6d1b653dd7a5b3eb9a053623f85433ff9e6b
go/types, types2: better error messages for for-range clauses Provide the exact error cause instead of reporting a missing core type. For #70128. Change-Id: I835698fa1f22382711bd54b974d2c87ee17e9065 Reviewed-on: https://go-review.googlesource.com/c/go/+/651215 Reviewed-by: Robert Griesemer <gri@google.com> Reviewed-...
[ { "path": "src/cmd/compile/internal/types2/compilersupport.go", "patch": "@@ -32,7 +32,7 @@ func CoreType(t Type) Type {\n // RangeKeyVal returns the key and value types for a range over typ.\n // It panics if range over typ is invalid.\n func RangeKeyVal(typ Type) (Type, Type) {\n-\tkey, val, _, ok := rang...
2025-02-20T23:01:36
ollama/ollama
8207e55ec7eb3a2cf4cb20917518514d981a6a01
ad16bffc7d5332c74f59c6afcf43efe60ca885cd
don't require pulling stubs for cloud models (#14574) * don't require pulling stubs for cloud models This is a first in a series of PRs that will better integrate Ollama's cloud into the API and CLI. Previously we used to have a layer of indirection where you'd first have to pull a "stub" model that contains a refere...
[ { "path": "cmd/cmd.go", "patch": "@@ -41,6 +41,7 @@ import (\n \t\"github.com/ollama/ollama/cmd/tui\"\n \t\"github.com/ollama/ollama/envconfig\"\n \t\"github.com/ollama/ollama/format\"\n+\t\"github.com/ollama/ollama/internal/modelref\"\n \t\"github.com/ollama/ollama/parser\"\n \t\"github.com/ollama/ollama/p...
2026-03-03T18:46:33
vercel/next.js
dcdb2e18d6c7faadc56c22d4087affd0d29cab48
3efa94ec5bdc37b05e069b1cfc9082b83e5afeac
Fix small grammar error in searchParams section (#80548) <!-- 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 Contrib...
[ { "path": "docs/01-app/05-api-reference/03-file-conventions/page.mdx", "patch": "@@ -60,7 +60,7 @@ export default async function Page({ params }) {\n | `app/shop/[category]/[item]/page.js` | `/shop/1/2` | `Promise<{ category: '1', item: '2' }>` |\n | `app/shop/[...slug]/page.js` | `/shop/1/2` | `Pro...
2025-06-16T11:38:21
electron/electron
9c48992e21c64f25391b7057c85f35a61ba5ff08
7529ebfe0e20ff0456aaab29c22346e35cf074ce
chore: fix dangling promise in npm install (#36379) * Fix dangling promise introduced in #33979 * fix reject in callback * simplify code Co-authored-by: Black-Hole <158blackhole@gmail.com> Co-authored-by: Black-Hole <158blackhole@gmail.com>
[ { "path": "npm/install.js", "patch": "@@ -70,29 +70,21 @@ function isInstalled () {\n \n // unzips and makes path.txt point at the correct executable\n function extractFile (zipPath) {\n- return new Promise((resolve, reject) => {\n- const distPath = process.env.ELECTRON_OVERRIDE_DIST_PATH || path.join(_...
2022-11-18T23:21:11
golang/go
bdcd6d1b653dd7a5b3eb9a053623f85433ff9e6b
f77bba43aa223fc86fd223f3ea4ef60db8e0c583
strconv: use builtin min function in commonPrefixLenIgnoreCase To make code a bit simpler. Change-Id: I33b3e04bc810a4838584c477854ef612b355579a GitHub-Last-Rev: 6d5bbc2a2877193e1319b9e626f408eda399666e GitHub-Pull-Request: golang/go#71927 Reviewed-on: https://go-review.googlesource.com/c/go/+/651975 Reviewed-by: Ian ...
[ { "path": "src/strconv/atof.go", "patch": "@@ -18,10 +18,7 @@ var optimize = true // set to false to force slow-path conversions for testing\n // prefix of s and prefix, with the character case of s ignored.\n // The prefix argument must be all lower-case.\n func commonPrefixLenIgnoreCase(s, prefix string) ...
2025-02-24T13:05:31
facebook/react
bccd06a6326978ca7dc6287880f0a8046d47140c
688305a978958c087e3a204fc40db9ea5d2cfc7f
[babel] Simplify noEmit and hasCriticalError check
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Program.ts", "patch": "@@ -283,9 +283,7 @@ export function compileProgram(\n return;\n }\n \n- if (pass.opts.noEmit) {\n- return;\n- } else if (!hasCriticalError) {\n+ if (!pass.opts.noEmit && !hasCriticalError) {\...
2023-11-07T11:04:35
ollama/ollama
c1e3ef4bccb6beacf401acab18e6b4b1e0c1d4f9
a3093cd5e58a27f08a97e0122a57c83b50540f71
mlxrunner: Refcount pinned tensors Otherwise, it is error prone to manage multiple components working with the same tensor.
[ { "path": "x/mlxrunner/mlx/array.go", "patch": "@@ -20,7 +20,7 @@ import (\n type Array struct {\n \tctx C.mlx_array\n \tname string\n-\tpinned bool\n+\tpinned int\n }\n \n var arrays []*Array\n@@ -129,7 +129,7 @@ func (t *Array) Clone() *Array {\n func Pin(s ...*Array) {\n \tfor _, t := range s {\n \t...
2026-03-02T20:48:02
vercel/next.js
3efa94ec5bdc37b05e069b1cfc9082b83e5afeac
64702a9e422d42034a714ae40a8514d7911d0150
docs: fix typo (#80549) <!-- 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 Documentatio...
[ { "path": "docs/01-app/02-guides/forms.mdx", "patch": "@@ -111,7 +111,7 @@ export async function updateUser(userId, formData) {}\n \n ## Form validation\n \n-Forms can be validate on the client or server.\n+Forms can be validated on the client or server.\n \n - For **client-side validation**, you can use th...
2025-06-16T11:33:58
electron/electron
7529ebfe0e20ff0456aaab29c22346e35cf074ce
4f1f263a9a98abb1c4e265c1d19e281312adf5b2
fix: remove unneeded --turbo-profiling-input arg from mksnapshot_args (#36378) fix: remove unneeded --turbo-profiling-input args from mksnapshot_args
[ { "path": ".circleci/config/base.yml", "patch": "@@ -701,6 +701,13 @@ step-mksnapshot-build: &step-mksnapshot-build\n if [ \"$USE_PREBUILT_V8_CONTEXT_SNAPSHOT\" != \"1\" ]; then\n ninja -C out/Default electron:electron_mksnapshot -j $NUMBER_OF_NINJA_PROCESSES\n gn desc out/Default v8:r...
2022-11-17T22:49:12
golang/go
f77bba43aa223fc86fd223f3ea4ef60db8e0c583
dceee2e983f5dab65c3905ecf40e70e15cf41b7d
net: accept a valid IP address in LookupMX Fixes #56025 Change-Id: I202fdd0e11afeb22c5bc22d91fe4bfea8987e727 Reviewed-on: https://go-review.googlesource.com/c/go/+/651056 Reviewed-by: Michael Knyszek <mknyszek@google.com> Reviewed-by: Roland Shoemaker <roland@golang.org> Auto-Submit: Ian Lance Taylor <iant@golang.org...
[ { "path": "doc/next/6-stdlib/99-minor/net/56025.md", "patch": "@@ -0,0 +1,5 @@\n+[LookupMX] and [(*Resolver).LookupMX] now return DNS names that look\n+like valid IP address, as well as valid domain names.\n+Previously if a name server returned an IP address as a DNS name,\n+LookupMX would discard it, as re...
2025-02-20T20:12:35
facebook/react
688305a978958c087e3a204fc40db9ea5d2cfc7f
cf70ef899e50db5eb463d98ac41e1ed1f08ff031
Check if critical error before throwing
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Program.ts", "patch": "@@ -278,9 +278,8 @@ export function compileProgram(\n memoSlots: compiledFn.memoSlotsUsed,\n });\n } catch (err) {\n- handleError(pass, fn.node.loc ?? null, err);\n-\n hasCriticalError |...
2023-11-07T11:04:34
ollama/ollama
3490e9590bbaba174f89c03207b42727150460e0
8da09b1e7e7394a818bc0f36d4244a927a91c126
model/qwen3next: avoid crash in in DeltaNet when offloading (#14541) Co-authored-by: Yossi Ovadia <jabadia@gmail.com>
[ { "path": "model/models/qwen3next/deltanet.go", "patch": "@@ -454,6 +454,10 @@ func (gdn *GatedDeltaNet) deltaNetChunked(\n \tvT := v.Permute(ctx, 1, 0, 2, 3).Contiguous(ctx, chunkSize, headVDim, nChunks, numVHeads*nSeqs)\n \tstateT := state.Permute(ctx, 1, 0, 2, 3).Contiguous(ctx, headVDim, headVDim, 1, nu...
2026-03-02T02:44:04
vercel/next.js
2c95fefdacdeed440893273d34f956fb8d36e8f8
c6775aef908f4a85ffdf3f8d25cc038b937bbc15
[dynamicIO] Use filled Resume Data Cache for final-phase prerenders (#79743) When a route with dynamic params is prerendered using defined params from `generateStaticParams`, the filled Resume Data Cache is now used for the final-phase prerender of the matching optional fallback shell. This ensures that the fallback ...
[ { "path": "packages/next/src/build/templates/app-page.ts", "patch": "@@ -365,9 +365,9 @@ export async function handler(\n \n // If the warmup is successful, we should use the resume data\n // cache from the warmup.\n- if (warmup.metadata.devRenderResumeDataCache) {\n- ...
2025-06-14T13:19:32
golang/go
fda918389947d32e854ddfc8c972b88bd31369c4
e382bf5b322c9814e910212ebd19907b68606c49
syscall: allow \x00-prefixed unix abstract socket to use full path length Fixes #70893 Change-Id: Ia0aaa497dad335fe962d52d3f115d26e8046e36f GitHub-Last-Rev: 7dd663678d8aecdfac94541a570dfbd1aa2577e7 GitHub-Pull-Request: golang/go#71851 Reviewed-on: https://go-review.googlesource.com/c/go/+/650875 Reviewed-by: Ian Lanc...
[ { "path": "src/net/unixsock_linux_test.go", "patch": "@@ -49,6 +49,23 @@ func TestUnixAutobindClose(t *testing.T) {\n \tln.Close()\n }\n \n+func TestUnixAbstractLongNameNulStart(t *testing.T) {\n+\t// Create an abstract socket name that starts with a null byte (\"\\x00\")\n+\t// whose length is the maximum ...
2025-02-22T23:02:57
facebook/react
d6ff65ecc707af73a1775aa10e88b18049721d67
337c17a66fc326ded8f1614783712fbdf05b8d25
Add runtime validation for ExternalFunction Use zod to do runtime validation and throw if incorrect. This PR only adds validation for ExternalFunction, will validate other options in follow on PRs.
[ { "path": "compiler/packages/babel-plugin-react-forget/package.json", "patch": "@@ -31,7 +31,9 @@\n \"@babel/types\": \"^7.19.0\",\n \"chalk\": \"4\",\n \"invariant\": \"^2.2.4\",\n- \"pretty-format\": \"^24\"\n+ \"pretty-format\": \"^24\",\n+ \"zod\": \"^3.22.4\",\n+ \"zod-validatio...
2023-11-07T11:04:33
ollama/ollama
a60b9adcce8fb40b1ad3678d992de5969692a9ea
a16f96658b92921dfe2bba68a4c6314eb0665a47
mlxrunner: Fix prompt eval timing and count metrics Only the last token's processing time is included in prompt processing, giving an artificially high rate. In addition, the number of tokens only included the tokens that miss the cache, instead of our historic total tokens.
[ { "path": "x/mlxrunner/pipeline.go", "patch": "@@ -74,6 +74,7 @@ func (r *Runner) TextGenerationPipeline(request Request) error {\n \tcaches := session.caches\n \ttokens := session.remaining\n \n+\tnow := time.Now()\n \ttotal, processed := len(tokens), 0\n \tfor total-processed > 1 {\n \t\tif err := request...
2026-02-26T22:45:14
vercel/next.js
16cb4c5360a7f27cc3d89c0e03840e26511888f2
8e0c32228be83d3acf8ffced5c61e4320440c5db
fix(turbopack): Fix config caching for turbopack + React Compiler (#80498) ### What? Modify the caching logic to include the whole filename when compiling with the React Compiler. ### Why? When RC is enabled, we cannot cache the config merely using the extension.
[ { "path": "packages/next/src/build/babel/loader/get-config.ts", "patch": "@@ -37,27 +37,31 @@ interface CharacteristicsGermaneToCaching {\n isPageFile: boolean\n isNextDist: boolean\n hasModuleExports: boolean\n- fileExt: string\n+ fileNameOrExt: string\n }\n \n const fileExtensionRegex = /\\.([a-z]...
2025-06-13T20:24:02
electron/electron
87c183df6a6b758ace3097eeb176c2643398e29d
517225b99e5ba2bac068a58208ce9a85402ba9eb
chore: bump chromium to 110.0.5415.0 (main) (#36186) * chore: bump chromium in DEPS to 109.0.5386.0 * chore: bump chromium in DEPS to 109.0.5388.0 * chore: bump chromium in DEPS to 109.0.5390.0 * chore: bump chromium in DEPS to 109.0.5392.0 * chore: bump chromium in DEPS to 109.0.5394.0 * chore: bump ch...
[ { "path": "BUILD.gn", "patch": "@@ -1485,7 +1485,7 @@ dist_zip(\"electron_ffmpeg_zip\") {\n \n electron_chromedriver_deps = [\n \":licenses\",\n- \"//chrome/test/chromedriver\",\n+ \"//chrome/test/chromedriver:chromedriver_server\",\n \"//electron/buildflags\",\n ]\n ", "additions": 1, "deleti...
2022-11-17T19:59:23
huggingface/transformers
09832b2ae515cfbd020327f5d3ba2dafe6edf83c
b1ba6d7d2af770b9c7ab0bac38da2f242e40a6d3
Dynamic weight conversion is recursive (#44300) * split out from timm PR * all other VLMs * timm backbone is not here * oops, extra key is breaking eveerything * . * this test * maybe * fix missing keys when loading from hub * now fix fast tests * merge gone wrong * fix repo * refine the regex again! * clo...
[ { "path": "docs/source/en/model_doc/maskformer.md", "patch": "@@ -64,6 +64,10 @@ This model was contributed by [francesco](https://huggingface.co/francesco). The\n \n [[autodoc]] models.maskformer.modeling_maskformer.MaskFormerForInstanceSegmentationOutput\n \n+## MaskFormerDetrConfig\n+\n+[[autodoc]] MaskF...
2026-03-26T11:45:57
golang/go
fba83cdfc6c4818af5b773afa39e457d16a6db7a
a65078204c3c170514af58d325b3197c91be281c
cmd/compile/internal/ssa: correct MOVDnop handling for arm64 The extension-removing rules for ARM64 were moved to late lower in CL 568616. This means that the late lower pass can now generate MOVDreg, however the rules that potentially eliminate MOVDreg only exist in the earlier pass. Fix this by duplicating the MOVDr...
[ { "path": "src/cmd/compile/internal/ssa/_gen/ARM64latelower.rules", "patch": "@@ -85,3 +85,11 @@\n (MOVWUreg x:(MOVBUreg _)) => (MOVDreg x)\n (MOVWUreg x:(MOVHUreg _)) => (MOVDreg x)\n (MOVWUreg x:(MOVWUreg _)) => (MOVDreg x)\n+\n+// if a register move has only 1 use, just use the same register without emit...
2024-09-04T14:01:52
facebook/react
72c27b6893188be833839923b33d739a93b3ed6e
c424cbbfa7822b47fc73b112514426d149d3c98a
Feature flag for transitively freezing values This PR adds a feature flag to model a potential new-in-practice rule in React: that freezing a function expression also freezes its closed-over values, transitively. For example, in the following code `data` is frozen when the lambda that captures it is is passed to u...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/HIR/Environment.ts", "patch": "@@ -175,6 +175,41 @@ export type EnvironmentConfig = {\n */\n enableEmitFreeze: ExternalFunction | null;\n \n+ /**\n+ * Forget infers certain operations as \"freezing\" a value, such that those\n+ * values sh...
2023-11-06T16:33:32
vercel/next.js
711b1bad5fff3045bc880c88ca4c384d47b48fd3
2aa74a8978ec056f9358c66a46a0329da096feae
[dynamicIO] Split up static generation into two phases (#79629) When `experimental.dynamicIO` is enabled, we're now prerendering fallback shells for routes that have some entries defined in `generateStaticParams` in a second phase, after the more specific route are prerendered. This will allow us to offer better erro...
[ { "path": "packages/next/src/build/index.ts", "patch": "@@ -735,7 +735,7 @@ const staticWorkerExposedMethods = [\n 'getDefinedNamedExports',\n 'exportPages',\n ] as const\n-type StaticWorker = typeof import('./worker') & Worker\n+export type StaticWorker = typeof import('./worker') & Worker\n export fun...
2025-06-13T18:15:26
electron/electron
d8bb17231814b85df0ff492e8198522efa830da3
654e5715125d1aad8222feeb4c793adf6215dc78
fix: abort ShipIt installation attempt at the final mile if the app is running (#36130) * fix: abort ShipIt installation attempt at the final mile if the app is running * chore: remove only * Update patches/squirrel.mac/fix_abort_installation_attempt_at_the_final_mile_if_the_app_is.patch Co-authored-by: Jerem...
[ { "path": "patches/squirrel.mac/.patches", "patch": "@@ -3,3 +3,4 @@ fix_ensure_that_self_is_retained_until_the_racsignal_is_complete.patch\n fix_use_kseccschecknestedcode_kseccsstrictvalidate_in_the_sec.patch\n feat_add_new_squirrel_mac_bundle_installation_method_behind_flag.patch\n refactor_use_posix_spaw...
2022-11-14T18:12:16
huggingface/transformers
b1ba6d7d2af770b9c7ab0bac38da2f242e40a6d3
c9faacd7d57459157656bdffe049dabb6293f011
Don't run `tests_hub` if no tests found (#45014) * fix * fix * fix --------- Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": "utils/tests_fetcher.py", "patch": "@@ -1106,16 +1106,29 @@ def parse_commit_message(commit_message: str) -> dict[str, bool]:\n def create_test_list_from_filter(full_test_list, out_path):\n os.makedirs(out_path, exist_ok=True)\n all_test_files = \"\\n\".join(full_test_list)\n+\n+ # Coll...
2026-03-26T09:32:37
facebook/react
c424cbbfa7822b47fc73b112514426d149d3c98a
35fee3135561ec3259cce695f4e2bb0863f7d7e0
Add validation against instructions not part of their scope Adds an internal compiler assertion pass which checks that all the instructions which are necessary for constructing a given scope correctly end up within the corresponding ReactiveScopeBlock. All known cases where this can occur are fixed earlier in the ...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Pipeline.ts", "patch": "@@ -36,6 +36,7 @@ import {\n import {\n CodegenFunction,\n alignReactiveScopesToBlockScopes,\n+ assertScopeInstructionsWithinScopes,\n buildReactiveBlocks,\n buildReactiveFunction,\n codegenReactiveFunct...
2023-11-06T16:33:31
ollama/ollama
a16f96658b92921dfe2bba68a4c6314eb0665a47
18ab09b431c5c63322504648c8851a4ce8f75394
mlxrunner: Enforce model context limit Currently, context length is unbounded - the cache will keep growing forever independent of the model's trained context length. This caps it and enforces semantics similar to most cloud services: - Long prompts will result in an error, not truncation. - Generation that exceeds ...
[ { "path": "server/images.go", "patch": "@@ -71,6 +71,10 @@ type Model struct {\n \tTemplate *template.Template\n }\n \n+func (m *Model) IsMLX() bool {\n+\treturn m.Config.ModelFormat == \"safetensors\"\n+}\n+\n // Capabilities returns the capabilities that the model supports\n func (m *Model) Capabilities()...
2026-02-25T23:07:09
golang/go
e7cd4979bec709b6d9c7428912e66348405e2a51
282a14ec617ea663740026687d0ec5130066d75c
cmd: initial compiler+linker support for DWARF5 .debug_addr This patch rolls the main .debug_info DWARF section from version 4 to version 5, and also introduces machinery in the Go compiler and linker for taking advantage of the DWARF5 ".debug_addr" section for subprogram DIE "high" and "low" PC attributes. All functi...
[ { "path": "src/cmd/compile/internal/gc/compile.go", "patch": "@@ -114,6 +114,8 @@ func prepareFunc(fn *ir.Func) {\n \tir.CurFunc = fn\n \twalk.Walk(fn)\n \tir.CurFunc = nil // enforce no further uses of CurFunc\n+\n+\tbase.Ctxt.DwTextCount++\n }\n \n // compileFunctions compiles all functions in compilequeu...
2024-12-11T18:15:27
vercel/next.js
7dad4ac2bc32e4c3c408b1d5368243296fa1b75c
3d599a673b725132df9adcba42bea69a8976d143
chore: fix link to good first issue (#80478) Fixes: #80472 Link to good-first-issue lacked some encoding
[ { "path": "packages/next/README.md", "patch": "@@ -39,7 +39,7 @@ Contributions to Next.js are welcome and highly appreciated. However, before you\n \n ### Good First Issues:\n \n-We have a list of **[good first issues](https://github.com/vercel/next.js/labels/good%20first%20issue)** that contain bugs that h...
2025-06-13T12:57:40
huggingface/transformers
c9faacd7d57459157656bdffe049dabb6293f011
35b005bba4de1d4b3c3789451adb5cf7469b1522
Fix type hint for `attention_chunk_size` in `Llama4TextConfig` (#45002) Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com>
[ { "path": "src/transformers/models/llama4/configuration_llama4.py", "patch": "@@ -165,7 +165,7 @@ class Llama4TextConfig(PreTrainedConfig):\n rope_parameters: RopeParameters | dict | None = None\n no_rope_layers: list[int] | None = None\n no_rope_layer_interval: int = 4\n- attention_chunk_siz...
2026-03-25T20:34:42
electron/electron
75d2caf451c925a826229ae27264c9b54de9b6db
1b1609aa0f7e282286ef2e842d5c895adcedfc86
chore: upgrade to Node.js v18 (#35999) * chore: update to Node.js v18 * child_process: improve argument validation https://github.com/nodejs/node/pull/41305 * bootstrap: support configure-time user-land snapshot https://github.com/nodejs/node/pull/42466 * chore: update GN patch * src: disambiguate te...
[ { "path": "DEPS", "patch": "@@ -4,7 +4,7 @@ vars = {\n 'chromium_version':\n '109.0.5382.0',\n 'node_version':\n- 'v16.17.1',\n+ 'v18.10.0',\n 'nan_version':\n '16fa32231e2ccd89d2804b3f765319128b20c4ac',\n 'squirrel.mac_version':", "additions": 1, "deletions": 1, "language"...
2022-11-10T21:31:20
facebook/react
0d3f3884b871088c92a76822dd221d06bad40df6
1607fb39c3148eb1dc31005af4b07a7024954de3
Fix for IIFE return values mutated later Fixes for the previous PR. What was happening is that our inference was inferring the correct mutable ranges and reactive scopes, but the inlining process left the instructions from the IIFEs inside a separate block, with a 'label' terminal preceding it. When we converted t...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Pipeline.ts", "patch": "@@ -115,6 +115,18 @@ function* runWithEnvironment(\n pruneMaybeThrows(hir);\n yield log({ kind: \"hir\", name: \"PruneMaybeThrows\", value: hir });\n \n+ validateUseMemo(hir);\n+\n+ dropManualMemoization(hir)...
2023-11-06T16:33:29
ollama/ollama
18ab09b431c5c63322504648c8851a4ce8f75394
638faeac547bb9968e8f365791dc5f46887a4625
mlxrunner: Propagate pipeline errors to client via api.StatusError Errors that occur during pipeline processing are currently only logged but not sent back to the client. Rather than using HTTP status codes as we have historically done, this serializes errors as messages to allow sending them at any time during the st...
[ { "path": "x/mlxrunner/client.go", "patch": "@@ -22,6 +22,7 @@ import (\n \t\"sync/atomic\"\n \t\"time\"\n \n+\t\"github.com/ollama/ollama/api\"\n \t\"github.com/ollama/ollama/llm\"\n \t\"github.com/ollama/ollama/ml\"\n \t\"github.com/ollama/ollama/x/imagegen\"\n@@ -192,6 +193,20 @@ type completionOpts stru...
2026-02-26T20:23:06
golang/go
282a14ec617ea663740026687d0ec5130066d75c
31b800abe6a599f001a545d98437b9d821cef5c2
cmd/internal/objabi,cmd/link/internal/sym: add SDWARFADDR symbol type Add a new symbol type: SDWARFADDR. This kind of symbol stores content to be added to the DWARF .debug_addr section (new with DWARF5). At the moment these symbols are created only in the linker, but it's not hard to imagine other implementations in w...
[ { "path": "src/cmd/internal/objabi/symkind.go", "patch": "@@ -70,6 +70,7 @@ const (\n \tSDWARFRANGE\n \tSDWARFLOC\n \tSDWARFLINES\n+\tSDWARFADDR\n \t// Coverage instrumentation counter for libfuzzer.\n \tSLIBFUZZER_8BIT_COUNTER\n \t// Coverage instrumentation counter, aux variable for cmd/cover", "addit...
2024-12-06T00:01:22
vercel/next.js
3d599a673b725132df9adcba42bea69a8976d143
e1045df08d9f8f0d6c57afbf9ab9ab576bf67a25
Fix variable assignment in docs example (#80418) ### What? Fixes small bug in Javascript code example where same variable is declared again. ### How? Same as this PR #74744 which fixed the Typescript code. Co-authored-by: Delba de Oliveira <32464864+delbaoliveira@users.noreply.github.com>
[ { "path": "docs/01-app/01-getting-started/07-fetching-data.mdx", "patch": "@@ -165,11 +165,11 @@ export default function Posts({\n import { use } from 'react'\n \n export default function Posts({ posts }) {\n- const posts = use(posts)\n+ const allPosts = use(posts)\n \n return (\n <ul>\n- {post...
2025-06-13T12:22:26
huggingface/transformers
35b005bba4de1d4b3c3789451adb5cf7469b1522
c17877c2ad39f8f736d5ea8a34f98e562843fc83
Fix AutoProcessor.from_pretrained silently dropping hub kwargs (#44710) * Fix AutoProcessor.from_pretrained silently dropping hub kwargs The previous code used inspect.signature(cached_file).parameters to filter kwargs before passing them to cached_file(). However, since cached_file() is defined with **kwargs in its ...
[ { "path": "src/transformers/models/auto/processing_auto.py", "patch": "@@ -14,7 +14,6 @@\n \"\"\"AutoProcessor class.\"\"\"\n \n import importlib\n-import inspect\n import json\n from collections import OrderedDict\n from typing import TYPE_CHECKING\n@@ -299,7 +298,18 @@ def from_pretrained(cls, pretrained_...
2026-03-25T18:04:21
facebook/react
1607fb39c3148eb1dc31005af4b07a7024954de3
60af6671d72540b472c1701ce7d42da4f4e3a16d
Repro for incorrect memoization of iife We construct invalid mutable ranges in these cases because the range starts within a labeled block. We need to run merge consecutive scopes and EnterSSA after inlining so that the code is lifted out of the labeled block to the correct scope, and so that we create phis for re...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/bug.iife-return-modified-later-phi.expect.md", "patch": "@@ -0,0 +1,53 @@\n+\n+## Input\n+\n+```javascript\n+function Component(props) {\n+ const items = (() => {\n+ if (props.cond) {\n+ return [];\n+ } else {...
2023-11-06T16:33:28
electron/electron
1b1609aa0f7e282286ef2e842d5c895adcedfc86
5fc3ed936e7ee5f3258782c0a0312cd9a2ebb174
fix: `app.dock.setIcon()` crash before app ready (#36279) fix: dock.setIcon() crash before app ready
[ { "path": "shell/browser/browser_mac.mm", "patch": "@@ -447,6 +447,13 @@\n image = native_image->image();\n }\n \n+ // This is needed when this fn is called before the browser\n+ // process is ready, since supported scales are normally set\n+ // by ui::ResourceBundle::InitSharedInstance\n+ // duri...
2022-11-09T16:13:24
ollama/ollama
dd5eb6337dab84d76d7edec2c102064504d75378
79917cf80bf74538a4ae694e6b61adb908b0f8df
mlxrunner: Fix panic on full KV cache hit When the entire prompt was already cached (e.g. repeated prompt), findRemaining returned an empty slice, causing FromValues to panic on an index-out-of-range accessing a zero-length byte slice. Fix by always keeping at least one token to re-evaluate so the pipeline can seed t...
[ { "path": "x/mlxrunner/cache.go", "patch": "@@ -78,6 +78,12 @@ func (c *kvCache) findRemaining(tokens []int32) []int32 {\n \t\tprefix++\n \t}\n \n+\t// Always keep at least one token to re-evaluate so the\n+\t// pipeline can seed token generation from it.\n+\tif prefix == len(tokens) && prefix > 0 {\n+\t\tp...
2026-02-26T01:03:31