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 | 09677910aca4c64e86ee121a93ea18fc8299a081 | ce7efd8f19c39413a4692268b6903560178e5e3d | [tie weights] 🚨 If both weights are present with same weights, still tie them (#44497)
* add equality check
* fix
* fix tests
* compare shapes as well, just in case
* oups caps | [
{
"path": "src/transformers/modeling_utils.py",
"patch": "@@ -397,7 +397,7 @@ def remove_tied_weights_from_state_dict(\n ) -> dict[str, torch.Tensor]:\n \"\"\"\n Remove all tied weights from the given `state_dict`, making sure to keep only the main weight that `model`\n- will expect when reloadin... | 2026-03-09T15:00:22 |
ollama/ollama | 5d22953ba7913cde3f791ba4aa4ae6c55f3f56bf | d245dffed838b03aadc213df95880d03b22a619c | cuda: get driver version after props (#12707)
Users on Windows without GPUs are reporting errors relating to
cudaDriverGetVersion with the device set to -1. This ensures we only grab the
driver once we're enumerating actual devices. | [
{
"path": "llama/patches/0026-GPU-discovery-enhancements.patch",
"patch": "@@ -6,20 +6,20 @@ Subject: [PATCH] GPU discovery enhancements\n Expose more information about the devices through backend props, and leverage\n management libraries for more accurate VRAM usage reporting if available.\n ---\n- ggml/i... | 2025-10-20T17:57:27 |
vercel/next.js | 5dad2d4f2cb9a8b6bc4b6968fea326bd41219140 | 7903a5745158671f7943214838ee541adfc7f6a0 | Turbopack: avoid negative uppers and follower and use retry loop instead (#79451)
### Why?
Multiple graph modifications can happen concurrently. Each modification only locks one or two tasks in the graph at a single step, but a full graph modification could affect many tasks in graph. So modifications are executed st... | [
{
"path": "turbopack/crates/turbo-tasks-backend/src/backend/operation/aggregation_update.rs",
"patch": "@@ -4,8 +4,12 @@ use std::{\n hash::Hash,\n mem::take,\n num::NonZeroU32,\n+ ops::ControlFlow,\n+ thread::yield_now,\n+ time::{Duration, Instant},\n };\n \n+use anyhow::Result;\n use ... | 2025-05-21T22:39:25 |
facebook/react | c4ae2a48dcd81ccd4a82326d7d3b9e7c9b3b457f | 9d1f2c86ed43df75639d41ed018190b895aad9db | [sprout] patch bug + add verbose mode
---
```
yarn sprout --verbose
```
Verbose mode prints out all outputs of tests. The test output is a status (`ok`
or `exception`), a returned or thrown value, and a set of console logs.
Currently as of #1960 , this is the output:
```sh
$ yarn workspace babel-plugin... | [
{
"path": "compiler/forget/packages/sprout/src/runner-evaluator.ts",
"patch": "@@ -29,10 +29,22 @@ const PLACEHOLDER_VALUE = Symbol();\n const seen = new Map();\n \n return JSON.stringify(result, (_key, val) => {\n- if (typeof val === \"object\") {\n+ if (typeof val === \"function\") {\n+ ret... | 2023-08-16T19:32:15 |
ollama/ollama | ba2253dc30552abc646e0b9f2ee2f6ea01248044 | 68e04c7ff88dca128016f75dc5bbd2f794bd2028 | win: more verbose load failures (#12683)
When loading the dynamic libraries, if something goes wrong report some
details. Unfortunately this wont explain which dependencies are missing,
but this breadcrumb in the logs should help us diagnose GPU discovery
failures. | [
{
"path": "llama/patches/0031-report-LoadLibrary-failures.patch",
"patch": "@@ -0,0 +1,32 @@\n+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001\n+From: Daniel Hiltgen <daniel@ollama.com>\n+Date: Fri, 17 Oct 2025 14:17:00 -0700\n+Subject: [PATCH] report LoadLibrary failures\n+\n+---\n+ ... | 2025-10-18T00:13:16 |
electron/electron | 95019f0454ba5b3c61bdabec48d1756a1f16ecae | 4190ec248260c3e7673889f2ed77625f47812a4e | fix: update Windows caption buttons to match Win11 style (#34790) | [
{
"path": "filenames.gni",
"patch": "@@ -85,6 +85,8 @@ filenames = {\n \"shell/browser/ui/message_box_win.cc\",\n \"shell/browser/ui/tray_icon_win.cc\",\n \"shell/browser/ui/views/electron_views_delegate_win.cc\",\n+ \"shell/browser/ui/views/win_icon_painter.cc\",\n+ \"shell/browser/ui/vie... | 2022-07-12T07:13:40 |
huggingface/transformers | ce7efd8f19c39413a4692268b6903560178e5e3d | 86eafab5fb1b305d4f63a442b7c525e83535f946 | Fix AMD Docker image build timeout by pinning Flash Attention commit (#44546)
pin fa commit | [
{
"path": "docker/transformers-pytorch-amd-gpu/Dockerfile",
"patch": "@@ -36,10 +36,12 @@ RUN python3 -m pip uninstall -y kernels\n # On ROCm, torchcodec is required to decode audio files and 0.4 or 0.6 fails\n RUN python3 -m pip install --no-cache-dir \"torchcodec==0.7\"\n \n-# Install flash attention from... | 2026-03-09T14:37:50 |
golang/go | 7a2e88e9117e838f258b175fa535f671396d13da | c112c0af1328ef0aae989ae20d27359a18f72543 | net/http: update NewRequestWithContext wrong link to NewRequest
Fixes #70874
Change-Id: Icbcfc95e6b45521880287dcc3bc8609461a3b401
GitHub-Last-Rev: 05276c56b019d8774e8eee881101509cf83c0f3d
GitHub-Pull-Request: golang/go#70877
Reviewed-on: https://go-review.googlesource.com/c/go/+/637035
Reviewed-by: qiu laidongfeng2 <... | [
{
"path": "src/net/http/request.go",
"patch": "@@ -873,9 +873,9 @@ func NewRequest(method, url string, body io.Reader) (*Request, error) {\n //\n // NewRequestWithContext returns a Request suitable for use with\n // [Client.Do] or [Transport.RoundTrip]. To create a request for use with\n-// testing a Server... | 2025-01-06T02:10:08 |
ollama/ollama | c744134287788cef18a64f7c022fc7cfee9a8737 | 4be41d2d4562b39712da8fee1e16ae1d81cf9697 | vulkan: Get FilterID from Backend for Vulkan (#12655)
* vulkan: Get FilterID from Backend for Vulkan
* Fixing patch | [
{
"path": "discover/runner.go",
"patch": "@@ -550,13 +550,6 @@ func bootstrapDevices(ctx context.Context, ollamaLibDirs []string, extraEnvs []s\n \t}\n \tlogutil.Trace(\"runner enumerated devices\", \"OLLAMA_LIBRARY_PATH\", ollamaLibDirs, \"devices\", devices)\n \n-\t// Enumerate returned devices starting a... | 2025-10-16T16:07:35 |
golang/go | f966695ccea356e4e4e8cc0328276e2d00c9fc1e | 5da026354c0229c5a61dbe907c080cef7adc11bc | context: use "canceled" in docs to refer to timed-out contexts
In documentation, we've usually but not always referred to a
context with a closed Done channel as "done" rather than
"canceled", to avoid ambiguity between a context canceled
by calling a CancelFunc and one past its deadline.
This actually adds ambiguity... | [
{
"path": "src/context/context.go",
"patch": "@@ -10,23 +10,25 @@\n // calls to servers should accept a Context. The chain of function\n // calls between them must propagate the Context, optionally replacing\n // it with a derived Context created using [WithCancel], [WithDeadline],\n-// [WithTimeout], or [W... | 2025-01-03T19:47:39 |
huggingface/transformers | 86eafab5fb1b305d4f63a442b7c525e83535f946 | adc0d9aee00f5b963ddd09bfc84d55ccda19581c | Make `_prepare_input_fn` and `_prepare_output_fn` instance methods (#44499)
fix: make _prepare_input_fn and _prepare_output_fn regular methods
Co-authored-by: Ferdinand Mom <47445085+3outeille@users.noreply.github.com> | [
{
"path": "src/transformers/integrations/tensor_parallel.py",
"patch": "@@ -648,11 +648,11 @@ def __init__(self, device_mesh=None, rank=None, empty_param=None):\n self.device_mesh = device_mesh\n self.empty_param = empty_param\n \n- @staticmethod\n- def _prepare_input_fn(mod, inputs, d... | 2026-03-09T14:29:32 |
vercel/next.js | 2b1d7d39ccde90f18becd13d4d16758c7c4a625b | 7e44fe350e9c2e6b0c41e67e82e319a01e7ece97 | fix: remove redundant performance.measure usage (#79475)
`performance.measure` here is causing problems but I also do not see the
point of keeping it, so this PR deletes it.
Closes NDX-1050
Fixes https://github.com/vercel/next.js/issues/79188 | [
{
"path": "packages/next/src/lib/require-instrumentation-client.ts",
"patch": "@@ -9,13 +9,7 @@ if (process.env.NODE_ENV === 'development') {\n const startTime = performance.now()\n module.exports = require('private-next-instrumentation-client')\n const endTime = performance.now()\n-\n const duratio... | 2025-05-21T21:12:45 |
electron/electron | f63bba8ce24917f1c78a8804496fe0f5b461b0af | 8f3fb8db09ac049894c8ab099979810899f9435b | fix: set Wayland application ID (#34855)
* refactor: extract XDG app ID logic into a method
* fix: set application ID on Wayland | [
{
"path": "shell/browser/native_window_views.cc",
"patch": "@@ -51,6 +51,7 @@\n #include \"shell/browser/ui/views/client_frame_view_linux.h\"\n #include \"shell/browser/ui/views/frameless_view.h\"\n #include \"shell/browser/ui/views/native_frame_view.h\"\n+#include \"shell/common/platform_util.h\"\n #includ... | 2022-07-11T18:26:18 |
facebook/react | 9d1f2c86ed43df75639d41ed018190b895aad9db | 43e3cd61f844b32804c3e2822a1645450baaa02a | [sprout] Codemod: add todos for test fixtures
---
Codemod to add an `export FIXTURE_ENTRYPOINT` with todo values for params for
tests with at least one param and 0 refs to external values | [
{
"path": "compiler/forget/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/array-access-assignment.expect.md",
"patch": "@@ -11,6 +11,12 @@ function foo(a, b, c) {\n return [x, z];\n }\n \n+export const FIXTURE_ENTRYPOINT = {\n+ fn: foo,\n+ params: [\"TodoAdd\"],\n+ isComponent: \"To... | 2023-08-16T19:32:15 |
vercel/next.js | 7e44fe350e9c2e6b0c41e67e82e319a01e7ece97 | ca6280dcd96ba1eb720b0d87e4925a69cfb58ee9 | disallow unstable_rootParams in client components (#79471)
unstable_rootParams is a server component API and should not be allowed
to be accessed from client components. This change adds a compiler error
if this import is detected within the client module graph. | [
{
"path": "crates/next-custom-transforms/src/transforms/react_server_components.rs",
"patch": "@@ -640,7 +640,7 @@ impl ReactServerComponentValidator {\n invalid_client_imports: vec![Atom::from(\"server-only\"), Atom::from(\"next/headers\")],\n \n invalid_client_lib_apis_mapping: FxH... | 2025-05-21T20:49:58 |
huggingface/transformers | adc0d9aee00f5b963ddd09bfc84d55ccda19581c | 7d6fa9352a9bd65ade47bbd6f7c79d868c40ed74 | Fix: Conditionally import `torch.distributed.fsdp` in `trainer_seq2seq.py` (#44507)
* fix: conditionally import torch.distributed.fsdp in trainer_seq2seq
* fix: sort imports in trainer_seq2seq.py
---------
Co-authored-by: DELUXA <you@example.com>
Co-authored-by: Ferdinand Mom <47445085+3outeille@users.noreply.githu... | [
{
"path": "src/transformers/trainer_seq2seq.py",
"patch": "@@ -20,7 +20,6 @@\n \n import torch\n from torch import nn\n-from torch.distributed.fsdp import FullyShardedDataParallel\n from torch.utils.data import Dataset\n \n from .generation.configuration_utils import GenerationConfig\n@@ -30,6 +29,9 @@\n fr... | 2026-03-09T14:27:19 |
golang/go | 31cabcf08429be71299975f7961822d26f8ea389 | eb0c2b2f96d9590631c0fd502a6c570635399f0a | crypto/internal/fips140: mark OpenBSD unsupported
Since OpenBSD 7.3, external linking uses -fexecute-only, which breaks
the integrity check. Since we are not validating on OpenBSD anyway,
mark it as unsupported at least for now.
Fixes #70880
Change-Id: I6a6a4656b6c7a97c0962b4158d920f9e6b19678e
Reviewed-on: https://g... | [
{
"path": "src/cmd/dist/test.go",
"patch": "@@ -1812,6 +1812,7 @@ func (t *tester) fipsSupported() bool {\n \tcase goarch == \"wasm\",\n \t\tgoos == \"windows\" && goarch == \"386\",\n \t\tgoos == \"windows\" && goarch == \"arm\",\n+\t\tgoos == \"openbsd\",\n \t\tgoos == \"aix\":\n \t\treturn false\n \t}",
... | 2025-01-01T14:08:28 |
electron/electron | 2eb0e5dcab7e339bb2bff763d21c27181cc99d9a | 459404f53690fed4e9785dffebcb625e2d04d428 | fix: safer check for WCO button updates (#34833) | [
{
"path": "shell/browser/native_window_views.cc",
"patch": "@@ -876,7 +876,7 @@ bool NativeWindowViews::IsMovable() {\n void NativeWindowViews::SetMinimizable(bool minimizable) {\n #if BUILDFLAG(IS_WIN)\n FlipWindowStyle(GetAcceleratedWidget(), minimizable, WS_MINIMIZEBOX);\n- if (titlebar_overlay_enable... | 2022-07-11T09:45:01 |
ollama/ollama | de670570c919f5c3e906b3beb91e9d2fc7ebe600 | 201d93716e365766af734406df6b637207b75a63 | fs/ggml: fix function name in comment (#12630) | [
{
"path": "fs/ggml/type.go",
"patch": "@@ -229,7 +229,7 @@ const (\n \tTensorTypeMXFP4\n )\n \n-// ParseFileType parses the provided GGUF file type\n+// ParseTensorType parses the provided GGUF tensor type\n // Only Ollama supported types are considered valid\n func ParseTensorType(s string) (TensorType, er... | 2025-10-16T04:53:38 |
facebook/react | 43e3cd61f844b32804c3e2822a1645450baaa02a | ce015a164b86ee6e2ac5bdfb73c8a0484bd52c25 | [snap] Use sync fs apis to stop crashes
---
Not sure why, but snap kept silently crashing when I used fs/promises to write
to many file handles. I tried a `.catch(...)`, but couldn't figure it out. This
diff changes snap to use sync fs apis to avoid crashes, but I'd love to get
feedback if someone knows how to d... | [
{
"path": "compiler/forget/packages/snap/src/runner.ts",
"patch": "@@ -7,8 +7,16 @@\n \n import watcher from \"@parcel/watcher\";\n import chalk from \"chalk\";\n-import { COMPILER_PATH, LOGGER_PATH, FIXTURES_PATH, FILTER_FILENAME, FILTER_PATH, readTestFilter, TestFilter } from 'fixture-test-utils';\n-impor... | 2023-08-16T19:32:14 |
electron/electron | eba9d3fc79ce636bacffa6ebf5ed69e674b0a2e9 | 1941c88442b61f3e83125f197becc83cf6975a9c | fix: ensure v8 pointer compression + sandbox is enabled on 64bit native modules (#34844)
* fix: ensure v8 pointer compression + sandbox is enabled on 64bit native modules
* build: rely on config.gypi to enable pointer compression | [
{
"path": "patches/node/.patches",
"patch": "@@ -45,3 +45,4 @@ fix_add_v8_enable_reverse_jsargs_defines_in_common_gypi.patch\n json_parse_errors_made_user-friendly.patch\n build_define_libcpp_abi_namespace_as_cr_to_align_with_chromium.patch\n support_v8_sandboxed_pointers.patch\n+build_ensure_v8_pointer_com... | 2022-07-08T08:06:06 |
golang/go | 5d626c49ec0b43c1703d16967f0351eae13e7cb8 | 81566aff3a1787fc81d320be5c1b3cb7da081936 | spec: fix a dead link
Change-Id: If99aa8073cc0e7fe36d3775c635eaaab230fcd04
GitHub-Last-Rev: 06dbd990c72ee0e9c08254addd5ce669bfbe1883
GitHub-Pull-Request: golang/go#71083
Reviewed-on: https://go-review.googlesource.com/c/go/+/638638
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
Auto-Submit: Jorropo <jorropo.pgm@g... | [
{
"path": "doc/go_spec.html",
"patch": "@@ -5906,7 +5906,7 @@ <h3 id=\"Order_of_evaluation\">Order of evaluation</h3>\n expression, assignment, or\n <a href=\"#Return_statements\">return statement</a>,\n all function calls, method calls,\n-<a href=\"#Receive operator\">receive operations</a>,\n+<a href=\"#R... | 2025-01-02T20:49:07 |
vercel/next.js | ed0980415318c1fa313a739580ab4f528a6e0878 | 72f5429fe068a034763a50c2152eabf14d0166cd | Docs: Fix broken link (#79456) | [
{
"path": "docs/01-app/03-building-your-application/02-data-fetching/01-fetching.mdx",
"patch": "@@ -238,4 +238,4 @@ export const getPost = cache(async (id) => {\n \n ### Revalidating cached data\n \n-Learn more about revalidating cached data with [Incremental Static Regeneration](/docs/app/building-your-ap... | 2025-05-21T14:48:37 |
ollama/ollama | 8b6e5baee71c6a1588cf062b150f229b2436e1d8 | 75d17fc6c20514417193882de7a0ece75ee301d1 | CI: Set up temporary opt-out Vulkan support (#12614)
Initially Vulkan support in Ollama will require building from source. Once it is
more thoroughly tested and we have fixed any critical bugs, then we can
bundle Vulkan into the official binary releases. | [
{
"path": ".github/workflows/release.yaml",
"patch": "@@ -237,13 +237,13 @@ jobs:\n include:\n - os: linux\n arch: amd64\n- target: archive\n+ target: archive_novulkan\n - os: linux\n arch: amd64\n target: rocm\n ... | 2025-10-15T21:18:01 |
facebook/react | ce015a164b86ee6e2ac5bdfb73c8a0484bd52c25 | 6b242c12a969a44399deab2dd1f9a47c95f47763 | [sprout] Codemod: add isComponent: false annotations to current fixtures
To keep the type signature simple, let's always have the same set of keys in
`FIXTURE_ENTRYPOINT` | [
{
"path": "compiler/forget/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/alias-nested-member-path.expect.md",
"patch": "@@ -14,6 +14,7 @@ function component() {\n export const FIXTURE_ENTRYPOINT = {\n fn: component,\n params: [],\n+ isComponent: false,\n };\n \n ```\n@@ -54,6 +55,7... | 2023-08-16T19:32:13 |
electron/electron | 1941c88442b61f3e83125f197becc83cf6975a9c | e83c3ec74442f0533e2d66c53fa84a075ebc20ae | fix: `setRepresentedFilename` with non-default `titlebarStyle` (#34834)
fix: setRepresentedFilename with non-default titlebarStyle | [
{
"path": "shell/browser/native_window_mac.mm",
"patch": "@@ -1150,6 +1150,8 @@ void ViewDidMoveToSuperview(NSView* self, SEL _cmd) {\n \n void NativeWindowMac::SetRepresentedFilename(const std::string& filename) {\n [window_ setRepresentedFilename:base::SysUTF8ToNSString(filename)];\n+ if (buttons_proxy... | 2022-07-08T06:33:42 |
ollama/ollama | 8fafc8af77105030ce485c96c355dafce316ec24 | c3c85aa06c1b7dcf8d7d811a4ebdf53d407faceb | ml/backend/ggml: NVML fallback for unified memory GPUs (#12619)
* Simplify NVML fallback for unified memory GPUs
Remove device-specific checks and environment variable dependency for
NVML_ERROR_NOT_SUPPORTED fallback. When NVML doesn't support memory
queries, unconditionally use /proc/meminfo instead of checking devi... | [
{
"path": "llama/patches/0029-NVML-fallback-for-unified-memory-GPUs.patch",
"patch": "@@ -0,0 +1,137 @@\n+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001\n+From: Santosh Bhavani <santosh.bhavani@live.com>\n+Date: Wed, 15 Oct 2025 09:29:51 -0700\n+Subject: [PATCH] NVML fallback for uni... | 2025-10-15T18:40:06 |
vercel/next.js | 646b4c3c60695c16aa47f2e1b3688fb0df7dbeb8 | f4406d8c58c6d1caf7a9c547c53c278a214c7ea2 | [Segment Cache] Fix: Skew during dynamic prefetch (#79416)
Fixes a bug that occurred when prefetching a Link to a dynamic page on a
different deployment. I didn't catch this earlier during dogfooding
because the app we were testing it on was using skew protection. It also
only applies to non-PPR/static routes.
This p... | [
{
"path": ".gitignore",
"patch": "@@ -33,6 +33,7 @@ coverage\n # test output\n test/**/out/*\n test/**/next-env.d.ts\n+test/**/.next*\n .DS_Store\n /e2e-tests\n test/tmp/**",
"additions": 1,
"deletions": 0,
"language": "Unknown"
},
{
"path": "packages/next/src/client/components/segment-c... | 2025-05-21T14:31:08 |
golang/go | 4b652e9f5f5c0793f2e41cd2876bce5a241b2c95 | 0afd7e85e5d7154161770f06a17d09bf1ffa3e94 | cmd/go: fix two typos in helpdoc.go
Change-Id: Ib750438107db6c82020cfb4abbab52435012b7fc
GitHub-Last-Rev: 3fa9b8c7bc70965c1ec9082b00c9b5a7af9751ef
GitHub-Pull-Request: golang/go#71082
Reviewed-on: https://go-review.googlesource.com/c/go/+/639217
Auto-Submit: Ian Lance Taylor <iant@golang.org>
Reviewed-by: Michael Matl... | [
{
"path": "src/cmd/go/alldocs.go",
"patch": "@@ -2181,7 +2181,7 @@\n // fields of all events to reconstruct the text format output, as it would\n // have appeared from go build without the -json flag.\n //\n-// Note that there may also be non-JSON error text on stdnard error, even\n+// Note that there may a... | 2025-01-02T21:05:21 |
facebook/react | d2983888f436308353b6559fd96c4df7a494db8b | 904ea6c9e44a276a43462b591f2be43dfe6d2658 | [sprout] Initial draft of sprout 🌱 test runner
---
## Sprout 🌱 Overview
**(Overview copied from
[sprout/README.md](https://github.com/facebook/react-forget/blob/0468ddf8bbee54a9394317a667ea4ed96bb3bef3/forget/packages/sprout/README.md))**
React Forget test framework that executes compiler fixtures.
Current... | [
{
"path": "compiler/forget/packages/babel-plugin-react-forget/package.json",
"patch": "@@ -12,7 +12,9 @@\n \"test\": \"yarn jest && yarn snap:build && yarn snap\",\n \"jest\": \"tsc && ts-node \\\"$(yarn --silent which jest)\\\"\",\n \"snap\": \"node ../snap/dist/main.js\",\n+ \"sprout\": \"n... | 2023-08-14T23:26:02 |
ollama/ollama | 3dcfd5f69e186ccd186a94848e870a87828be68a | 53a969d509cdf7472622c648d03525b5150ddbc0 | llm: Perform eviction when num_gpu is set with new estimates
Currently, if you set num_gpu then this forces the model to
load with that number of layers in the current configuration.
This is done regardless of any other information, which means
that no eviction is performed even if another model is loaded.
This behav... | [
{
"path": "llm/server.go",
"patch": "@@ -928,7 +928,7 @@ func (s *ollamaServer) createLayout(systemInfo discover.SystemInfo, systemGPUs d\n \t\t\t}\n \t\t}\n \n-\t\tlibraryGpuLayers := assignLayers(layers, gl, s.options.NumGPU, lastUsedGPU)\n+\t\tlibraryGpuLayers := assignLayers(layers, gl, requireFull, s.o... | 2025-10-15T00:21:16 |
electron/electron | 7ec88584b50f74b3d596448976781e91ea052e47 | 47d8d4cc5c0b945d52cc7c4b21c6cfe749b3df57 | fix: WCO pressed background state updates (#34771) | [
{
"path": "shell/browser/native_window_views_win.cc",
"patch": "@@ -11,6 +11,7 @@\n #include \"shell/browser/browser.h\"\n #include \"shell/browser/native_window_views.h\"\n #include \"shell/browser/ui/views/root_view.h\"\n+#include \"shell/browser/ui/views/win_frame_view.h\"\n #include \"shell/common/elect... | 2022-07-07T15:17:20 |
huggingface/transformers | 7d6fa9352a9bd65ade47bbd6f7c79d868c40ed74 | 78aee7e8486fd731da8824633e85664bcbd9f7bb | Fix ShieldGemma2 non-reproducible outputs by adding _tied_weights_keys (#44358)
* Fix ShieldGemma2 non-reproducible outputs by adding _tied_weights_keys
The checkpoint has `text_config.tie_word_embeddings = True`, meaning
`lm_head.weight` should be tied to `embed_tokens.weight`. However,
`ShieldGemma2ForImageClassifi... | [
{
"path": "src/transformers/models/shieldgemma2/configuration_shieldgemma2.py",
"patch": "@@ -30,7 +30,8 @@ class ShieldGemma2Config(PreTrainedConfig):\n The begin-of-image token index to wrap the image prompt.\n eoi_token_index (`int`, *optional*, defaults to 256000):\n The end-of-image... | 2026-03-09T14:27:16 |
vercel/next.js | f4406d8c58c6d1caf7a9c547c53c278a214c7ea2 | ddb727a4c0974008ba52ab9be9a2e24ba54c47be | docs: `htmlLimitedBots` config value should be a RegExp (#79454)
Closes: https://linear.app/vercel/issue/DOC-4697/htmllimitedbots-value
Also fixes `Behavior` sub heading | [
{
"path": "docs/01-app/05-api-reference/04-functions/generate-metadata.mdx",
"patch": "@@ -1152,7 +1152,7 @@ ReactDOM.prefetchDNS(href: string)\n > - These methods are currently only supported in Client Components, which are still Server Side Rendered on initial page load.\n > - Next.js in-built features su... | 2025-05-21T14:27:41 |
golang/go | 0afd7e85e5d7154161770f06a17d09bf1ffa3e94 | 3c8e5b13df931e88fde51ff09b27cceeaab9f6c4 | cmd/go: document GOCACHEPROG in go help environment
This adds GOCACHEPROG to the list of environment variables in "go help
environment" and points to the cacheprog package documentation for
details of the protocol.
Fixes #71032
Updates #59719
Change-Id: Ib8f5804926a8fa59237661076d129c2852665ac3
Reviewed-on: https://... | [
{
"path": "src/cmd/go/alldocs.go",
"patch": "@@ -2333,6 +2333,10 @@\n //\tGOCACHE\n //\t\tThe directory where the go command will store cached\n //\t\tinformation for reuse in future builds.\n+//\tGOCACHEPROG\n+//\t\tA command (with optional space-separated flags) that implements an\n+//\t\texternal go comm... | 2024-12-27T18:11:02 |
facebook/react | 5669fc73c0d0ac00d744e22b067bcfc3312b8314 | 02e8cf97909029e0510c1a4e651d9679d2e2cc1b | [snap] Refactor fixture utils to separate package
---
Move shared functions to `fixture-test-utils` package. | [
{
"path": "compiler/forget/packages/fixture-test-utils/package.json",
"patch": "@@ -0,0 +1,25 @@\n+{\n+ \"name\": \"fixture-test-utils\",\n+ \"version\": \"1.0.0\",\n+ \"main\": \"dist/index.js\",\n+ \"license\": \"MIT\",\n+ \"scripts\": {\n+ \"build\": \"rimraf dist && tsc\",\n+ \"test\": \"echo... | 2023-08-14T23:26:01 |
ollama/ollama | 850da848c58869474c97fc5c4ae58d27f05b65a1 | 2aba569a2a593f56651ded7f5011480ece70c80f | logs: fix bogus "0 MiB free" log line (#12590)
On the llama runner, after the recent GGML bump a new log line reports
incorrect 0 MiB free after our patch to remove memory from the props. This
adjusts the llama.cpp code to fetch the actual free memory of the active device. | [
{
"path": "llama/llama.cpp/src/llama.cpp",
"patch": "@@ -267,10 +267,12 @@ static struct llama_model * llama_model_load_from_file_impl(\n for (auto * dev : model->devices) {\n ggml_backend_dev_props props;\n ggml_backend_dev_get_props(dev, &props);\n+ size_t memory_free, memory_to... | 2025-10-14T18:26:28 |
huggingface/transformers | 78aee7e8486fd731da8824633e85664bcbd9f7bb | 362792116eb0c84adeec2334c8c8b63aba978e39 | Tensor Parallelism and `mps` device (#44506)
fix: fail when using `mps` with TP
Co-authored-by: Ferdinand Mom <47445085+3outeille@users.noreply.github.com> | [
{
"path": "src/transformers/integrations/tensor_parallel.py",
"patch": "@@ -55,7 +55,7 @@ def initialize_tensor_parallelism(\n # Detect the accelerator on the machine. If no accelerator is available, it returns CPU.\n device_type = torch._C._get_accelerator().type\n if device_type ==... | 2026-03-09T14:27:10 |
vercel/next.js | ddb727a4c0974008ba52ab9be9a2e24ba54c47be | f71cc1553390217e0de81eee29959ead8f0bb6b1 | Turbopack Build: Fix css-modules test (#79441)
## What?
The setup already works but the test fails because the urls are relative
with Turbopack. I've updated the test. | [
{
"path": "test/integration/css/test/css-modules.test.js",
"patch": "@@ -153,20 +153,26 @@ describe('should handle unresolved files gracefully', () => {\n encoding: 'utf8',\n })\n .filter((f) => f.endsWith('.css'))\n+ // Ensure the loop is more deterministic\n+ ... | 2025-05-21T14:08:43 |
electron/electron | 98cd16d336f512406eee3565be1cead86514db7b | e5db178ab6ced4bd2fb315457dc1e3cabf9d379f | chore: fix typos (#34731) | [
{
"path": "docs/api/environment-variables.md",
"patch": "@@ -139,8 +139,7 @@ green and non-draggable regions will be colored red to aid debugging.\n \n ### `ELECTRON_DEBUG_NOTIFICATIONS`\n \n-Adds extra logs to [`Notification`](./notification.md) lifecycles on macOS to aid in debugging. Extra logging will b... | 2022-07-05T15:49:56 |
golang/go | 3c8e5b13df931e88fde51ff09b27cceeaab9f6c4 | 20da34c6d2f6a4d03304f55a6d6f1418ca11b091 | cmd/go/internal/cacheprog: drop redundant Prog prefixes
Now that these types are in their own package, drop the unnecessary
Prog prefixes from everything.
Updates #71032
Updates #59719
Change-Id: Id54edf0473754e3b21a71beb72803fb5481206c1
Reviewed-on: https://go-review.googlesource.com/c/go/+/638996
Reviewed-by: Maur... | [
{
"path": "src/cmd/go/internal/cache/prog.go",
"patch": "@@ -39,7 +39,7 @@ type ProgCache struct {\n \n \t// can are the commands that the child process declared that it supports.\n \t// This is effectively the versioning mechanism.\n-\tcan map[cacheprog.ProgCmd]bool\n+\tcan map[cacheprog.Cmd]bool\n \n \t//... | 2024-12-27T18:27:21 |
facebook/react | 45d884bb6b443bc8c34633e32916791236d34e7b | cb2ba7118f6b826a4847db687e752b2815b5cb54 | Fix LeaveSSA missing param declarations
Nice find from @mofeiz, we weren't adding declarations for function params in
LeaveSSA. This caused us to hit an invariant for update expressions that updated
params which assumed that all named variables had a declaration. This is why
it's helpful to add invariants, it help... | [
{
"path": "compiler/forget/packages/babel-plugin-react-forget/src/ReactiveScopes/PruneNonEscapingScopes.ts",
"patch": "@@ -430,8 +430,6 @@ function computeMemoizationInputs(\n rvalues: value.children,\n };\n }\n- case \"PrefixUpdate\":\n- case \"PostfixUpdate\":\n case \"Debugger... | 2023-08-14T22:48:05 |
huggingface/transformers | 362792116eb0c84adeec2334c8c8b63aba978e39 | 395a5ed3b317f07eeff2d74fcfbf86a43143a2b3 | Fix failing `GPTNeoModelLanguageGenerationTest` (#44515)
Fix failing GPTNeoModelLanguageGenerationTest | [
{
"path": "tests/models/gpt_neo/test_modeling_gpt_neo.py",
"patch": "@@ -502,7 +502,7 @@ def test_gpt_neo_sample(self):\n torch.manual_seed(0)\n tokenized = tokenizer(\"Today is a nice day and\", return_tensors=\"pt\", return_token_type_ids=True)\n input_ids = tokenized.input_ids.to(... | 2026-03-09T14:10:49 |
vercel/next.js | 8751df4ee3d78a5ba53ae2ab7103da02d2637a06 | 6b1e48080e896e0d44a05fe009cb79d2d3f91774 | [Segment Cache] Fix: Ensure server references can be prerendered (#79448) | [
{
"path": ".changeset/spotty-hotels-train.md",
"patch": "@@ -0,0 +1,5 @@\n+---\n+\"next\": patch\n+---\n+\n+[Segment Cache] Fix: Ensure server references can be prerendered",
"additions": 5,
"deletions": 0,
"language": "Markdown"
},
{
"path": "packages/next/src/server/app-render/app-rend... | 2025-05-21T12:40:02 |
electron/electron | c885f9063bda5032fe430bbee724f77b66ce034a | c3920c5c02a6875b444a7c4017ba85145b658fec | docs: document the removal of IA32 Linux support (#34787)
* docs: document the removal of IA32 Linux support
Chromium had dropped support for IA32 Linux, so the Chromium
102.0.4999.0 upgrade PR,
https://github.com/electron/electron/pull/33731, had introduced the commit,
https://github.com/electron/electron/pull/... | [
{
"path": "docs/breaking-changes.md",
"patch": "@@ -98,7 +98,10 @@ is the origin that is checking for device permission.\n \n ## Planned Breaking API Changes (19.0)\n \n-None\n+### Removed: IA32 Linux binaries\n+\n+This is a result of Chromium 102.0.4999.0 dropping support for IA32 Linux.\n+This concludes t... | 2022-06-30T16:23:03 |
golang/go | 858a0e9dfd10ac94a0b9de4429749f0cb99e8cb8 | a63aee4955d8236f657a94101d6a703be97e98ec | crypto/tls: properly return ECH retry configs
When ECH is rejected, properly take retry configs from the encrypted
extensions message. Also fix the bogo shim to properly test for this
behavior.
We should properly map the full BoringSSL -> Go errors so that we don't
run into a similar failure in the future, but this i... | [
{
"path": "src/crypto/tls/bogo_config.json",
"patch": "@@ -246,5 +246,8 @@\n 25,\n 29,\n 4588\n- ]\n+ ],\n+ \"ErrorMap\": {\n+ \":ECH_REJECTED:\": \"tls: server rejected ECH\"\n+ }\n }",
"additions": 4,
"deletions": 1,
"language": "JSON"
},
{
"p... | 2024-12-30T18:36:55 |
facebook/react | 0fb5b61ac6951a492242618e4ace6c1826335efc | 5ea1397b2b62875dfb521cf8de0efcc15d0df797 | Float integrity bugfix (#27224)
Stacked on #27223
When a script resource adopts certain props from a preload for that
resource the integrity prop was incorrectly getting assinged to the
referrerPolicy prop instead. This is now fixed. | [
{
"path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js",
"patch": "@@ -2872,7 +2872,7 @@ function adoptPreloadPropsForScript(\n if (scriptProps.referrerPolicy == null)\n scriptProps.referrerPolicy = preloadProps.referrerPolicy;\n if (scriptProps.integrity == null)\n- scriptProps... | 2023-08-14T17:10:24 |
huggingface/transformers | 395a5ed3b317f07eeff2d74fcfbf86a43143a2b3 | 1cdae08e16cfb693b7a667a7e8d6bf32360f6782 | Fix failing `MarianIntegrationTests` (#44519)
Fix failing MarianMTModel tests | [
{
"path": "tests/models/marian/test_modeling_marian.py",
"patch": "@@ -404,8 +404,9 @@ def eos_token_id(self) -> int:\n def model(self):\n model: MarianMTModel = MarianMTModel.from_pretrained(self.model_name).to(torch_device)\n c = model.config\n- self.assertListEqual(c.bad_words_... | 2026-03-09T14:10:29 |
ollama/ollama | 2aba569a2a593f56651ded7f5011480ece70c80f | fd8aa947f3f096a876fe2d3e2bfd4861eda930bb | Vulkan based on #9650 (#11835)
* implement the vulkan C backend
* add support in gpu.go
* add support in gen_linux.sh
* it builds
* fix segfault
* fix compilation
* fix free memory monitor
* fix total memory monitor
* update gpu.go
* fix build
* fix check_perfmon len
* remove cap_get_bound check
* fix vulk... | [
{
"path": ".github/workflows/test.yaml",
"patch": "@@ -52,14 +52,32 @@ jobs:\n container: rocm/dev-ubuntu-22.04:6.1.2\n extra-packages: rocm-libs\n flags: '-DAMDGPU_TARGETS=gfx1010 -DCMAKE_PREFIX_PATH=/opt/rocm'\n+ - preset: Vulkan\n+ container: ubuntu... | 2025-10-14T17:59:58 |
vercel/next.js | 5136f8ecfd06f638325a2f45656744cbebd3fe97 | 6440778d60690fe74a564de47f54d9496ea3fead | [dynamicIO] Avoid timeout errors with dynamic params in `"use cache"` (#78882) | [
{
"path": ".changeset/tricky-planes-worry.md",
"patch": "@@ -0,0 +1,5 @@\n+---\n+\"next\": patch\n+---\n+\n+[dynamicIO] Avoid timeout errors with dynamic params in `\"use cache\"`",
"additions": 5,
"deletions": 0,
"language": "Markdown"
},
{
"path": ".vscode/settings.json",
"patch": ... | 2025-05-20T21:15:55 |
golang/go | 847c357bbb819f8f042b715d6ccdaa8fd89c305d | d1d93129506c78cc8ee25644384286822d93c81a | cmd/go: remove references to gopath-get
Fixes #70912
Change-Id: Id87a13f7c9bf972502d14c9674a27f743b849715
Reviewed-on: https://go-review.googlesource.com/c/go/+/639155
Reviewed-by: Sam Thanawalla <samthanawalla@google.com>
Reviewed-by: Michael Matloob <matloob@golang.org>
LUCI-TryBot-Result: Go LUCI <golang-scoped@lu... | [
{
"path": "src/cmd/go/alldocs.go",
"patch": "@@ -739,11 +739,6 @@\n //\n // For more about specifying packages, see 'go help packages'.\n //\n-// This text describes the behavior of get using modules to manage source\n-// code and dependencies. If instead the go command is running in GOPATH\n-// mode, the d... | 2024-12-28T19:25:08 |
electron/electron | 1f814eacb2875c17d6ef6d0f702fc1c4003bcde6 | ad2b1fee59c2e4352b0c5664f72c0067a2ef4d7f | build: fix release_dependency_versions workflow (#34573)
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> | [
{
"path": ".github/workflows/release_dependency_versions.yml",
"patch": "@@ -10,7 +10,7 @@ env:\n jobs:\n check_tag:\n runs-on: ubuntu-latest\n- id: check_tag\n+ steps:\n - uses: actions/checkout@v3\n - name: Check Tag\n run: |",
"additions": 1,
"deletions": 1,
"languag... | 2022-06-29T12:55:59 |
facebook/react | 011570a0785d4d2f0fd23dd5eae37ac797ce882b | 57f648009cea9ce84ed3480ba5ca50794e680b02 | [rust][sema] Bubble unresolved references (for hoisting)
This is a precursor to adding support for hoisting in semantic analysis.
Previously when we encountered an unknown reference we immediately reported an
error. But hoisted variables may be referenced before they're defined, so we
don't know for sure when we s... | [
{
"path": "compiler/forget/crates/forget_semantic_analysis/src/analyzer.rs",
"patch": "@@ -86,10 +86,9 @@ impl Analyzer {\n where\n F: FnMut(&mut Self) -> (),\n {\n- let scope = self.manager.add_scope(self.current, kind);\n- let previous = std::mem::replace(&mut self.current, s... | 2023-08-14T17:08:02 |
huggingface/transformers | 1cdae08e16cfb693b7a667a7e8d6bf32360f6782 | 70ca366fca24e57d1390eb35e32341a6a1ca142f | fix pin_memory for contiguous batching (#44455)
* fix pin_memory for contiguous batching
Signed-off-by: jiqing-feng <jiqing.feng@intel.com>
* use get_available_devices
Signed-off-by: jiqing-feng <jiqing.feng@intel.com>
* add comment
Signed-off-by: jiqing-feng <jiqing.feng@intel.com>
---------
Signed-off-by: jiq... | [
{
"path": "src/transformers/generation/continuous_batching/input_outputs.py",
"patch": "@@ -20,6 +20,7 @@\n \n from transformers.configuration_utils import PretrainedConfig\n \n+from ...utils import get_available_devices\n from ...utils.metrics import traced\n from .cache import PagedAttentionCache\n from .... | 2026-03-09T13:49:29 |
golang/go | d1d93129506c78cc8ee25644384286822d93c81a | 94f15810e6beadf21f3363d3ae17d83abfd3ae74 | crypto/tls: fix Config.Time in tests using expired certificates
Fixes #71077
Change-Id: I6a6a465685f3bd50a5bb35a160f87b59b74fa6af
Reviewed-on: https://go-review.googlesource.com/c/go/+/639655
Auto-Submit: Ian Lance Taylor <iant@google.com>
Reviewed-by: Damien Neil <dneil@google.com>
LUCI-TryBot-Result: Go LUCI <golan... | [
{
"path": "src/crypto/tls/handshake_client_test.go",
"patch": "@@ -856,6 +856,7 @@ func testResumption(t *testing.T, version uint16) {\n \t\tMaxVersion: version,\n \t\tCipherSuites: []uint16{TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256, TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384},\n \t\tCertificates: testCertificates... | 2025-01-02T00:34:40 |
electron/electron | ad2b1fee59c2e4352b0c5664f72c0067a2ef4d7f | 35ff95d3c71849ac97ced178a2330b9d4651f250 | fix: re-enable HKDF crypto functionality (#34767)
* fix: re-enable HKDF crypto functionality
* chore: update patches
Co-authored-by: PatchUp <73610968+patchup[bot]@users.noreply.github.com> | [
{
"path": "patches/node/fix_crypto_tests_to_run_with_bssl.patch",
"patch": "@@ -537,6 +537,19 @@ index af2146982c7a3bf7bd7527f44e4b17a3b605026e..f6b91f675cfea367c608892dee078b56\n \n // Non-XOF hash functions should accept valid outputLength options as well.\n assert.strictEqual(crypto.createHash('sh... | 2022-06-29T12:53:57 |
vercel/next.js | e675d2ba99f3fcca2928dacee22e16c46df9ed28 | deb49c4cd76e3850c620cb71a8011936adb53a11 | docs: fix spacing in installation instructions (#79257)
This PR fixes a minor spacing issue in the "Run the development server"
section of the installation guide.
No functionality is affected.
---------
Co-authored-by: JJ Kasper <jj@jjsweb.site> | [
{
"path": "docs/01-app/01-getting-started/01-installation.mdx",
"patch": "@@ -226,7 +226,7 @@ export default function Page() {\n \n 1. Run `npm run dev` to start the development server.\n 2. Visit `http://localhost:3000` to view your application.\n-3. Edit the<AppOnly>`app/page.tsx`</AppOnly> <PagesOnly>`pa... | 2025-05-20T17:59:53 |
ollama/ollama | 05982a95cb9e053fadf309e60ec9ff2bc58ba32e | 4987f13d345d77844b6737edadaa1f0432df004c | Qwen3VL Cloud Parser and Renderer (#12526)
* working (other than tool call is the incorrect order) for tool calls and tools
* Tests work, other than image tags (tests do not go through server) and tools (not in the correct order, but contents are the same)
* testing for qwen3vl parser - toolparser is working
* made... | [
{
"path": "api/types.go",
"patch": "@@ -266,9 +266,9 @@ func (pt PropertyType) String() string {\n \n type ToolProperty struct {\n \tAnyOf []ToolProperty `json:\"anyOf,omitempty\"`\n-\tType PropertyType `json:\"type\"`\n+\tType PropertyType `json:\"type,omitempty\"`\n \tItems a... | 2025-10-13T23:52:33 |
facebook/react | e2485341846fec767f68b5c7c25b277699962054 | a49335f72a84a76ac7b39f1e6b3a7701bd6e53f7 | [rust] SSA fixes after operand refactor
When updating the data model for operands from instruction indices to
identifiers, I forgot to rewrite terminal operands.Doing so required a refactor
to use the new BlockRewriter helper. | [
{
"path": "compiler/forget/crates/forget_fixtures/tests/fixtures/simple-ssa.js",
"patch": "@@ -0,0 +1,9 @@\n+function Component(props) {\n+ let a;\n+ if (props) {\n+ a = 1;\n+ } else {\n+ a = 2;\n+ }\n+ return a;\n+}",
"additions": 9,
"deletions": 0,
"language": "JavaScript"
},
{
... | 2023-08-14T16:54:26 |
huggingface/transformers | 70ca366fca24e57d1390eb35e32341a6a1ca142f | 0130c7da68a9bb888103cf6d7cb2fd0c9c3edf87 | Fix continuous batching for multimodal models (#44436)
* Fix continuous batching for multimodal models
* Add continuous batching test for VLM
* Fall back to regular generate for non-text-only models
* Add warning when falling back from continuous batching
---------
Co-authored-by: jiwon-jeong <jiwon-jeong@lotte.n... | [
{
"path": "src/transformers/cli/serve.py",
"patch": "@@ -807,6 +807,14 @@ def continuous_batching_chat_completion(self, req: dict, request_id: str) -> Str\n self.running_continuous_batching_manager = None\n \n model, processor = self.load_model_and_processor(model_id_and_revision)\n+... | 2026-03-09T13:48:41 |
electron/electron | 35ff95d3c71849ac97ced178a2330b9d4651f250 | 6257e0c348ed3e30b8b7799475adeb6019138f95 | fix: `<datalist>` bounds vertical cutoff (#34759) | [
{
"path": "shell/browser/ui/views/autofill_popup_view.cc",
"patch": "@@ -174,7 +174,7 @@ void AutofillPopupView::DrawAutofillEntry(gfx::Canvas* canvas,\n const int text_align =\n is_rtl ? gfx::Canvas::TEXT_ALIGN_RIGHT : gfx::Canvas::TEXT_ALIGN_LEFT;\n gfx::Rect value_rect = entry_rect;\n- value_r... | 2022-06-29T08:14:03 |
golang/go | 5efb4239c6627e81e82b88377b9eb947f7f253d4 | 0d8aa8cce69f97747e7ce69b8416c1cfca5d939f | spec: document that string conversions don't guarantee result slice capacity
Fixes #24163.
Change-Id: If389c4abf3b9b6e4eba6f31c3c12779329456df6
Reviewed-on: https://go-review.googlesource.com/c/go/+/637655
Reviewed-by: Robert Griesemer <gri@google.com>
Reviewed-by: Ian Lance Taylor <iant@google.com>
Auto-Submit: Robe... | [
{
"path": "doc/go_spec.html",
"patch": "@@ -5686,6 +5686,8 @@ <h4 id=\"Conversions_to_and_from_a_string_type\">Conversions to and from a string\n <li>\n Converting a value of a string type to a slice of bytes type\n yields a non-nil slice whose successive elements are the bytes of the string.\n+The <a href=... | 2024-12-18T22:15:48 |
huggingface/transformers | 0130c7da68a9bb888103cf6d7cb2fd0c9c3edf87 | deb7dcd97889bafec6acb0fb2f8ad679c3cc1161 | Fix KeyError in _parse_type_hint when Union contains Any (#44525)
fix: handle missing "type" key in Union subtype schema
In _parse_type_hint, when processing Union types, the code
accesses subtype["type"] without checking the key exists.
Union types containing `Any` crash because _get_json_schema_type(Any)
returns {}... | [
{
"path": "src/transformers/utils/chat_template_utils.py",
"patch": "@@ -114,7 +114,7 @@ def _parse_type_hint(hint: str) -> dict:\n if len(subtypes) == 1:\n # A single non-null type can be expressed directly\n return_dict = subtypes[0]\n- elif all(isinstance(subtype[\"... | 2026-03-09T13:43:22 |
facebook/react | dd8b743f6ab9e1f3e615ed5f19d5697f59051d7e | 6c719f62a07114cfa23631e79a8962f6c770ddda | [be] Refactor gating logic in babel plugin
`compileProgram` was getting complex, so this extracts some of the logic into
smaller functions. Additionally, the `try` block now only wraps the `compileFn`
generator from Pipeline, which means not accidentally catching other non-Forget
errors | [
{
"path": "compiler/forget/packages/babel-plugin-react-forget/src/Entrypoint/Program.ts",
"patch": "@@ -39,145 +39,125 @@ function hasAnyUseForgetDirectives(directives: t.Directive[]): boolean {\n return false;\n }\n \n-export function compileProgram(\n- program: NodePath<t.Program>,\n+/**\n+ * Runs the ... | 2023-08-11T20:38:52 |
vercel/next.js | dd7fed079cee6861172e749b3a31c257ab206406 | e06d2d8705179171439ce7ca6dea91645378b08b | Fork the globset strategy for turbopack (#79333)
## What
After discussion with [upstream](https://github.com/BurntSushi/ripgrep/issues/3049) it was determined that upstreaming a function like `can_skip_directory` wasn't aligned. It turns out the needs of ripgrep and ours are somewhat divergent. Instead they encourag... | [
{
"path": "Cargo.lock",
"patch": "@@ -9736,6 +9736,7 @@ dependencies = [\n \"notify\",\n \"parking_lot\",\n \"rayon\",\n+ \"regex\",\n \"rstest\",\n \"rustc-hash 2.1.1\",\n \"serde\",",
"additions": 1,
"deletions": 0,
"language": "Unknown"
},
{
"path": "crates/next-core/src/next_se... | 2025-05-20T17:08:39 |
golang/go | 0d8aa8cce69f97747e7ce69b8416c1cfca5d939f | 8857a5a33ffaff475abd6e4364d2c5a0f53c2baf | spec: describe representation of values
Add a section on the representation of values:
distinguish between values that are self-contained
and values that contain references while avoiding
the notion of "reference types" which is misleading.
Also, use "predeclared identifier nil" rather than
"predeclared value nil" be... | [
{
"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.24 (Dec 16, 2024)\",\n+\t\"Subtitle\": \"Language version go1.24 (Dec 30, 2024)\",\n \t\"Path\": \"/ref/spec\"\n }-->\n \n@@ -798,7 +798,6 @@... | 2024-12-12T23:26:54 |
electron/electron | 44b9ee51f45466603728721d23fb4dd95061c142 | 07294cbf15a94a6150877b67178911273cb022cf | fix: resolve symlinks when computing relative asar paths for integrity (#34776) | [
{
"path": "shell/common/asar/archive_mac.mm",
"patch": "@@ -11,6 +11,7 @@\n #include <iomanip>\n #include <string>\n \n+#include \"base/files/file_util.h\"\n #include \"base/logging.h\"\n #include \"base/mac/bundle_locations.h\"\n #include \"base/mac/foundation_util.h\"\n@@ -21,7 +22,8 @@\n namespace asar {... | 2022-06-28T23:02:00 |
huggingface/transformers | deb7dcd97889bafec6acb0fb2f8ad679c3cc1161 | b8d6b845d18d57868e17ac6576799886ebe53171 | Fix AssistantTracker.is_active() returning False after activation with empty lists (#44524)
fix: use identity check in AssistantTracker.is_active()
After activation, _rendered_blocks and _generation_indices are set
to list arguments which may be empty []. The previous truthiness
check returned False for empty lists, ... | [
{
"path": "src/transformers/utils/chat_template_utils.py",
"patch": "@@ -439,7 +439,7 @@ def _generation_support(self, context: jinja2.nodes.EvalContext, caller: jinja2.\n return rv\n \n def is_active(self) -> bool:\n- return self._rendered_blocks or self._generation_indices\n... | 2026-03-09T13:35:35 |
ollama/ollama | 4987f13d345d77844b6737edadaa1f0432df004c | e638f2acb6af7ef3d4a86567a43196bd895463bd | Llama cpp bump (df1b612): granite docling / mamba2 optimizations / multimodal encoding fixes (#12552)
* feat: Bump llama.cpp to df1b612
Branch: LlamaCPPBump-GraniteDocling
Signed-off-by: Gabe Goodhart <ghart@us.ibm.com>
* fix(mtmd): Correctly encode text chunks during mtmd tokenization
There can be text chunks tha... | [
{
"path": "Makefile.sync",
"patch": "@@ -1,6 +1,6 @@\n UPSTREAM=https://github.com/ggml-org/llama.cpp.git\n WORKDIR=llama/vendor\n-FETCH_HEAD=364a7a6d4a786e98947c8a90430ea581213c0ba9\n+FETCH_HEAD=7049736b2dd9011bf819e298b844ebbc4b5afdc9\n \n .PHONY: help\n help:",
"additions": 1,
"deletions": 1,
... | 2025-10-13T22:26:18 |
vercel/next.js | e06d2d8705179171439ce7ca6dea91645378b08b | 2d48158402645f2eb6d4e1ecccfdbcf47b2fe1c6 | Turbopack build: Fix production-browser-sourcemaps test (#79374)
## What?
The test assumes that the sourcemap files live at a certain place and
match the js filename. In Turbopack they don't because they're content
hashed.
This fixes the tests by reading the sourcemap path and reading using
that path instead. | [
{
"path": "test/integration/production-browser-sourcemaps/test/index.test.js",
"patch": "@@ -1,41 +1,26 @@\n /* eslint-env jest */\n import fs from 'fs-extra'\n-import { join } from 'path'\n-import { nextBuild, getPageFileFromBuildManifest } from 'next-test-utils'\n+import { dirname, join } from 'path'\n+im... | 2025-05-20T16:47:04 |
facebook/react | 4e3618ae41669c95a3377ae615c727f74f89d141 | 533fc28c1b8ea2c6ed459e914849665f497755ff | [Float][Fizz] Fix srcSet and sizes handling for suspensey img preloads (#27217)
imageSrcSet should have been srcSet when referencing an img tag.
imageSizes should have been sizes. This caused preloads for img tags
using srcSet and sizes to incorrectly render as having a href only,
dropping the srcSet and sizes part... | [
{
"path": "packages/react-dom-bindings/src/server/ReactFizzConfigDOM.js",
"patch": "@@ -2399,8 +2399,8 @@ function pushImg(\n ) {\n // We have a suspensey image and ought to preload it to optimize the loading of display blocking\n // resources.\n- const {src, imageSrcSet, imageSizes} = props;\n... | 2023-08-11T18:27:22 |
electron/electron | 704b2199b3457f01611795eb3d36b4cb85ff5641 | f1087cc830872365c7e9dade7b44de099853b08c | build: fix building with enable_basic_printing false (#34711)
* build: fix building with enable_basic_printing false
* temp flags for ci builds
* fix other systems
* disable cups
* disable print preview
* revert changes
* merge with printing.patch | [
{
"path": "patches/chromium/printing.patch",
"patch": "@@ -10,6 +10,29 @@ majority of changes originally come from these PRs:\n \n This patch also fixes callback for manual user cancellation and success.\n \n+diff --git a/BUILD.gn b/BUILD.gn\n+index c46cbf1bec22c36b97fde5601ca9b2966ee80933..edf371d10bcac60d... | 2022-06-28T14:34:00 |
golang/go | 8857a5a33ffaff475abd6e4364d2c5a0f53c2baf | 3c4102bfd4dc87cba19152af834754170b863b39 | crypto/tls: fix misspelling in comment
Change-Id: Ie36a19ed6d6922e68f98e43745a417a24f8a7828
GitHub-Last-Rev: 6fb32e3d1d4f35704d466b53796e8ddeaf936d72
GitHub-Pull-Request: golang/go#71060
Reviewed-on: https://go-review.googlesource.com/c/go/+/639215
Auto-Submit: Ian Lance Taylor <iant@google.com>
Reviewed-by: Roland Sh... | [
{
"path": "src/crypto/tls/handshake_messages.go",
"patch": "@@ -97,7 +97,7 @@ type clientHelloMsg struct {\n \tpskBinders [][]byte\n \tquicTransportParameters []byte\n \tencryptedClientHello []byte\n-\t// extensions are only populated on the servers-ide of a handsh... | 2024-12-30T20:00:49 |
huggingface/transformers | b8d6b845d18d57868e17ac6576799886ebe53171 | 24ba4c843bc89fac6c1f229d01b204302db1143d | Fix and re-enable extra_state tests (#43510)
* fix and re-enable extra_state tests
Signed-off-by: Peter St. John <pstjohn@nvidia.com>
* check loading info in tests
Signed-off-by: Peter St. John <pstjohn@nvidia.com>
---------
Signed-off-by: Peter St. John <pstjohn@nvidia.com>
Co-authored-by: Cyril Vallez <cyril.va... | [
{
"path": "src/transformers/core_model_loading.py",
"patch": "@@ -898,6 +898,11 @@ def set_param_for_module(\n module_path, _, param_name = target_name.rpartition(\".\")\n module_obj = model.get_submodule(module_path) if module_path else model\n \n+ if param_name == torch.nn.modules.module._EXTRA... | 2026-03-09T12:05:29 |
ollama/ollama | e638f2acb6af7ef3d4a86567a43196bd895463bd | 18087f2ec71d3c4bbe7cfb61eca15b196f34b423 | runner: fix shifting on llama runner (#12604) | [
{
"path": "runner/llamarunner/runner.go",
"patch": "@@ -162,6 +162,7 @@ func (s *Server) NewSequence(prompt string, images []llm.ImageData, params NewSe\n \t\tembeddingOnly: params.embedding,\n \t\tstop: params.stop,\n \t\tnumKeep: params.numKeep,\n+\t\tshift: params.shift... | 2025-10-13T20:46:33 |
facebook/react | 6c719f62a07114cfa23631e79a8962f6c770ddda | c3ec002d69e94b4b48ba2da41ab6cf4d2c3ff06d | [ez] ComponentDeclaration transforms only into FunctionDeclaration
ComponentDeclarations can only be transformed into FunctionDeclarations, so the
types were wrong | [
{
"path": "compiler/forget/packages/babel-plugin-react-forget/src/Entrypoint/Program.ts",
"patch": "@@ -330,7 +330,7 @@ function shouldVisitNode(\n fn: NodePath<t.FunctionDeclaration | t.ArrowFunctionExpression>,\n pass: CompilerPass\n ): boolean {\n- if (pass.opts.enableOnlyOnReactScript) {\n+ if (pa... | 2023-08-11T17:31:06 |
vercel/next.js | 2d48158402645f2eb6d4e1ecccfdbcf47b2fe1c6 | fb0968777419873d0b2c9c9063f9c22d04705505 | Turbopack build: Fix NODE_ENV test (#79377)
## What?
This test was checking for an arbitrary value, it wasn't clear to me why
this particular value given it's not in the source code.
I've changed it to an application-level check instead of checking the
Next.js internals. | [
{
"path": "test/integration/non-standard-node-env-warning/pages/index.js",
"patch": "@@ -1 +1,7 @@\n-export default () => 'hi'\n+export default function Page() {\n+ if (process.env.NODE_ENV === 'production') {\n+ return <h1>Hello Production</h1>\n+ } else {\n+ return <h1>Hello Other</h1>\n+ }\n+}",... | 2025-05-20T16:40:38 |
golang/go | 3c4102bfd4dc87cba19152af834754170b863b39 | b702a26cf8f2298de6d264c1cbc09042e2b0ac22 | encoding/binary: add documentation for endian methods
While the comments are on an unexported type, gopls correctly
shows them when using the exported vars LittleEndian and BigEndian.
Fixes #68083
Change-Id: I53668c3140ad00f7b58437be74e6df773e2916f1
GitHub-Last-Rev: cef717123cdc632b59683f4ce55aee6c286ca4c7
GitHub-Pu... | [
{
"path": "src/encoding/binary/binary.go",
"patch": "@@ -65,29 +65,34 @@ var BigEndian bigEndian\n \n type littleEndian struct{}\n \n+// Uint16 returns the uint16 representation of b[0:2].\n func (littleEndian) Uint16(b []byte) uint16 {\n \t_ = b[1] // bounds check hint to compiler; see golang.org/issue/148... | 2024-12-30T20:00:43 |
huggingface/transformers | 24ba4c843bc89fac6c1f229d01b204302db1143d | 976d8cc98865e28d9d826447528441290d90df46 | Fix ansi codes in loading reports when not connected to terminal (#44544)
* fix
* better | [
{
"path": "src/transformers/utils/loading_report.py",
"patch": "@@ -118,8 +118,8 @@ def _make_table(rows, headers):\n }\n \n \n-def _color(s, color):\n- \"\"\"Return color-formatted input `s` if `sys.stdout` is interactive, e.g. connected to a terminal.\"\"\"\n+def _style(s, color):\n+ \"\"\"Return co... | 2026-03-09T11:52:14 |
ollama/ollama | 6c833d5f8d824c87aa54b2fbfe97b94d7c4be541 | 6544e1473525c381e89aba4778283900b3ad7145 | fix(qwen3): deepseek distill
deepseek's qwen3 distill uses a different rope scheme so support both | [
{
"path": "model/models/qwen3/model.go",
"patch": "@@ -15,11 +15,17 @@ import (\n )\n \n type Options struct {\n-\thiddenSize, numHeads, numKVHeads int\n-\teps float32\n-\tropeBase, ropeScale float32\n-\n-\tkeyLength, valueLength int\n+\thiddenSize,\n+\tnumHeads,\n+... | 2025-10-13T19:09:53 |
facebook/react | cbb815e90739c788a9d9309e6dec9c93d74453a0 | 74a062ba9dfe0228069bfc776abc3e5bd9176440 | [rust] Port EliminateRedundantPhi fix | [
{
"path": "compiler/forget/crates/forget_fixtures/tests/snapshots/fixtures_test__fixtures@function-expressions.js.snap",
"patch": "@@ -58,7 +58,7 @@ bb0 (block)\n [14] #16 = Binary unknown #14 + unknown #15\n [15] #17 = 8\n [16] #18 = Binary unknown #16 + unknown #17\n- [17] #... | 2023-08-10T14:59:50 |
vercel/next.js | fb0968777419873d0b2c9c9063f9c22d04705505 | 1ae1b9ba23ff5521ccc8991f3eea6d5c62695671 | [release] fix: use correct step id when publishing (#79408)
<!-- 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 Cont... | [
{
"path": ".github/workflows/build_and_deploy.yml",
"patch": "@@ -603,7 +603,7 @@ jobs:\n \n # New release process\n - name: Publish to NPM\n- id: publish-packages\n+ id: changesets\n if: ${{ env.__NEW_RELEASE == 'true' }}\n uses: changesets/action@v1\n with... | 2025-05-20T16:15:16 |
electron/electron | e86d1cba75be6e5134a3190432b4aae6b19134e8 | 032e1d9befad640ee6edc276cec1ebd1e84bc73f | chore: bump chromium to 105.0.5129.0 (main) (#34403)
* chore: bump chromium in DEPS to 104.0.5096.0
* 3651284: Use the entry settings object for window.open navigation
https://chromium-review.googlesource.com/c/chromium/src/+/3651284
* 3644598: Make RenderFrameHost used for notification permission decision
... | [
{
"path": "DEPS",
"patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '104.0.5073.0',\n+ '105.0.5129.0',\n 'node_version':\n 'v16.15.1',\n 'nan_version':",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
"path": "build/... | 2022-06-27T20:50:08 |
golang/go | b702a26cf8f2298de6d264c1cbc09042e2b0ac22 | 15f232456a8741c84ee0bd38dce28978eab6a491 | os: mention fsys modifications during CopyFS
Fixes #70465
Change-Id: I47055df9ca5b1df21a361b0b8eea4c7d157e6403
Reviewed-on: https://go-review.googlesource.com/c/go/+/639156
Commit-Queue: Ian Lance Taylor <iant@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Review... | [
{
"path": "src/os/dir.go",
"patch": "@@ -145,6 +145,9 @@ func ReadDir(name string) ([]DirEntry, error) {\n //\n // Symbolic links in dir are followed.\n //\n+// New files added to fsys (including if dir is a subdirectory of fsys)\n+// while CopyFS is running are not guaranteed to be copied.\n+//\n // Copyin... | 2024-12-28T20:10:21 |
huggingface/transformers | 976d8cc98865e28d9d826447528441290d90df46 | de0c82d2d8d169ad6926e901136060939af17dfc | Follow-up typing checking fixes (#44500)
- Do proper type check in case jax is installed.
- Make sure older torch versions don't raise typing issues | [
{
"path": "src/transformers/generation/continuous_batching/requests.py",
"patch": "@@ -46,13 +46,13 @@ def get_device_and_memory_breakdown() -> tuple[torch.device, int, int, int]:\n torch.xpu.empty_cache()\n torch.xpu.synchronize()\n total_memory = torch.xpu.get_device_properties(dev... | 2026-03-09T10:47:30 |
facebook/react | 74a062ba9dfe0228069bfc776abc3e5bd9176440 | b8f1d37b6a4e5abbf3c9d80b45b6fc773fbd4c50 | [rust] Autofix lints | [
{
"path": "compiler/forget/crates/forget_build_hir/src/build.rs",
"patch": "@@ -2,9 +2,8 @@ use std::collections::HashSet;\n \n use forget_diagnostics::Diagnostic;\n use forget_estree::{\n- AssignmentTarget, BinaryExpression, BlockStatement, Expression, ExpressionOrSpread,\n- ExpressionOrSuper, ForIni... | 2023-08-10T14:59:50 |
vercel/next.js | 1ae1b9ba23ff5521ccc8991f3eea6d5c62695671 | cd2ab0d6c0eb6a623516002c12aa80bc3c7a36e4 | Turbopack Build: Fix next/dynamic test (#79407)
Alternative solution for #79406, see the extensive description over
there
Fixes PACK-4514
---------
Co-authored-by: Tim Neutkens <tim@timneutkens.nl> | [
{
"path": "crates/next-api/src/loadable_manifest.rs",
"patch": "@@ -1,8 +1,7 @@\n use anyhow::Result;\n use next_core::{next_manifests::LoadableManifest, util::NextRuntime};\n use rustc_hash::FxHashMap;\n-use turbo_rcstr::RcStr;\n-use turbo_tasks::{ResolvedVc, TryFlatJoinIterExt, ValueToString, Vc};\n+use t... | 2025-05-20T15:00:13 |
golang/go | ba1deb1ceef956bdb3ca5a9570f132cf19ccc9f6 | fd5e0d26d9383ff80fd365bdfcb50d6c8a97e44c | cmd/link: document that -s implies -w
Existing documentation does not reference implicit behavior.
Updates the documentation to reflect that -s implies -w.
Fixes #71051
Change-Id: I5c139c37f5f78596365e38479be4c865a4d4dd62
GitHub-Last-Rev: a3e462c4168284529ea1b0d03bc25fb1c12f1da5
GitHub-Pull-Request: golang/go#71053
... | [
{
"path": "src/cmd/link/doc.go",
"patch": "@@ -118,6 +118,7 @@ Flags:\n \t\tLink with race detection libraries.\n \t-s\n \t\tOmit the symbol table and debug information.\n+\t\tImplies the -w flag, which can be negated with -w=0.\n \t-tmpdir dir\n \t\tWrite temporary files to dir.\n \t\tTemporary files are o... | 2024-12-29T02:37:06 |
electron/electron | 3b881e4a132742b30e2f7a61203c1bfec5b81364 | 106aa0e9228250015eef99eaa9063bafa9fc187b | fix: WCO respects maximizable/closable/minimizable (#34677) | [
{
"path": "shell/browser/native_window_views.cc",
"patch": "@@ -876,6 +876,11 @@ bool NativeWindowViews::IsMovable() {\n void NativeWindowViews::SetMinimizable(bool minimizable) {\n #if BUILDFLAG(IS_WIN)\n FlipWindowStyle(GetAcceleratedWidget(), minimizable, WS_MINIMIZEBOX);\n+ if (titlebar_overlay_enabl... | 2022-06-23T17:08:32 |
huggingface/transformers | 6a9b2c0c635ffa6d544d5034ea777e2e72c88013 | 701628527ae1ef37473f05f5d94fac7f457a3f8f | Fix backend dependency (#44542)
fix | [
{
"path": "src/transformers/models/higgs_audio_v2_tokenizer/modeling_higgs_audio_v2_tokenizer.py",
"patch": "@@ -36,6 +36,7 @@\n from .configuration_higgs_audio_v2_tokenizer import HiggsAudioV2TokenizerConfig\n \n \n+@requires(backends=(\"torchaudio\",))\n @auto_docstring\n class HiggsAudioV2TokenizerPreTra... | 2026-03-09T10:01:00 |
ollama/ollama | 6db8da99588de07a49fe788df6b53a7637b21344 | 0c68ec8d6a243e4d7b91091d49a69d419bb7e29e | routes: fix built-in renderers for `api/generate`
Made it so when api/generate builds up a message array and generates the
prompt it now goes through the same function as `api/chat` for
consistency. This is where we hook the optional built-in renderers to
bypass templates, which was missing for `api/generate` before t... | [
{
"path": "server/routes.go",
"patch": "@@ -403,12 +403,11 @@ func (s *Server) GenerateHandler(c *gin.Context) {\n \t\t\t\tmsgs = append(msgs, m.Messages...)\n \t\t\t}\n \n+\t\t\tuserMsg := api.Message{Role: \"user\", Content: req.Prompt}\n \t\t\tfor _, i := range images {\n-\t\t\t\timgPrompt := \"\"\n-\t\t... | 2025-10-11T20:57:43 |
vercel/next.js | f3d3809f7db309e578fbbd93fa9879df12e0f36d | 4f2b2de0d75a552a56f1df36f466bbb8ae936e73 | fix: rspack framework and lib cacheGroups (#79172)
This pull request updates the Webpack configuration in
`webpack-config.ts` to add specific cache group settings for Rspack
builds. The changes aim to improve the chunking strategy by introducing
new cache groups for `framework` and `lib` when Rspack is used.
### Chan... | [
{
"path": "packages/next/src/build/utils.ts",
"patch": "@@ -1931,3 +1931,7 @@ export function collectMeta({\n \n return meta\n }\n+\n+export const RSPACK_DEFAULT_LAYERS_REGEX = new RegExp(\n+ `^(|${[WEBPACK_LAYERS.pagesDirBrowser, WEBPACK_LAYERS.pagesDirEdge, WEBPACK_LAYERS.pagesDirNode].join('|')})$`\n+... | 2025-05-20T03:18:56 |
golang/go | fd5e0d26d9383ff80fd365bdfcb50d6c8a97e44c | a785d11ac47560c12202a79a25ddd6ba610976e9 | go/doc: resolve imports before predeclared identifiers in examples
Fixes #70611
Fixes #70630
Change-Id: I868e68dbdf50ce34259eeef7b3d7985ede1f4c0b
Reviewed-on: https://go-review.googlesource.com/c/go/+/639175
Reviewed-by: Ian Lance Taylor <iant@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accoun... | [
{
"path": "src/go/doc/example.go",
"patch": "@@ -192,13 +192,6 @@ func playExample(file *ast.File, f *ast.FuncDecl) *ast.File {\n \t// Find unresolved identifiers and uses of top-level declarations.\n \tdepDecls, unresolved := findDeclsAndUnresolved(body, topDecls, typMethods)\n \n-\t// Remove predeclared i... | 2024-12-28T19:50:11 |
facebook/react | 7feaabfe68c94ad8d9817c06b8a792cf3fc47859 | 6bca9fb7a3f991b39c14a3f1c8a7bb00b1510a9a | [rust] Use hermes parser for Forget fixture tests
Replaces the use of SWC parser in the Forget fixture tests with Hermes Parser.
This includes aligning on a single type to represent JS Values and numbers
(combining semi-duplicated code from forget_hir and forget_estree) and adding
support for lowering babel-style ... | [
{
"path": "compiler/forget/Cargo.lock",
"patch": "@@ -515,7 +515,7 @@ version = \"0.1.0\"\n dependencies = [\n \"forget_build_hir\",\n \"forget_estree\",\n- \"forget_estree_swc\",\n+ \"forget_hermes_parser\",\n \"forget_hir\",\n \"forget_optimization\",\n \"forget_semantic_analysis\",",
"additions"... | 2023-08-10T14:59:49 |
huggingface/transformers | fefc3fa205aae3fb44127142e0771b0c8762ee46 | 4ffdc394cca2e3e63d3d72e1fa9e41f2aee6030e | Fixed typo in docs/source/en/kv_cache.md (#44501)
Resolves: #44492 | [
{
"path": "docs/source/en/kv_cache.md",
"patch": "@@ -67,7 +67,7 @@ out = model.generate(**inputs, do_sample=False, max_new_tokens=20, past_key_valu\n \n ## Fixed-size cache\n \n-The default [`DynamicCache`] prevents you from taking advantage of most just-in-time (JIT) optimizations because the cache size i... | 2026-03-06T20:05:36 |
electron/electron | 11924bdbb271a1db97d4fe4666935bca435ceb0d | cd19a741b1a1cbd0ab7560314f1a77bed922bddb | chore: modernize ListValue usage in dict_util.mm and related files (#34661)
* chore: modernize ListValue usage in dict_util.mm and related files
* use base::Value::{Dict,List} instead of raw base::Value
* fix compile
* fix build
* fix build again | [
{
"path": "shell/browser/api/electron_api_app.cc",
"patch": "@@ -706,13 +706,13 @@ void App::OnWillFinishLaunching() {\n Emit(\"will-finish-launching\");\n }\n \n-void App::OnFinishLaunching(const base::DictionaryValue& launch_info) {\n+void App::OnFinishLaunching(base::Value::Dict launch_info) {\n #if BU... | 2022-06-23T06:28:41 |
ollama/ollama | 0c68ec8d6a243e4d7b91091d49a69d419bb7e29e | 70d9e363e16ea8617d5ec4d1011323a6ff6f845c | discover: fix typo (#12565) | [
{
"path": "discover/runner.go",
"patch": "@@ -408,7 +408,7 @@ func (r *bootstrapRunner) HasExited() bool {\n \n func bootstrapDevices(ctx context.Context, ollamaLibDirs []string, extraEnvs []string) []ml.DeviceInfo {\n \t// TODO DRY out with llm/server.go\n-\tslog.Debug(\"spawing runner with\", \"OLLAMA_LIB... | 2025-10-11T19:06:02 |
facebook/react | a20eea25197df0da80104917df414747eeab1ac9 | 201becd3d294b38824930a818e3412c6e04ba2eb | Update README.md (#27209)
Update links from the old documentation to the new version
<!--
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.
... | [
{
"path": "README.md",
"patch": "@@ -6,7 +6,7 @@ React is a JavaScript library for building user interfaces.\n * **Component-Based:** Build encapsulated components that manage their own state, then compose them to make complex UIs. Since component logic is written in JavaScript instead of templates, you can... | 2023-08-09T17:21:43 |
golang/go | a785d11ac47560c12202a79a25ddd6ba610976e9 | 2b794ed86cb1b718bc212ee90fecbb8f3b28a744 | unique: fix typo
Change-Id: I9f66e3d7aa7b546ebf34d6aa8c7a6558bf35ca82
Reviewed-on: https://go-review.googlesource.com/c/go/+/639055
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Ian Lance Taylor <iant@google.com>
Auto-Submit: Ian Lance Taylor <iant@google.com>
R... | [
{
"path": "src/unique/handle.go",
"patch": "@@ -89,7 +89,7 @@ func Make[T comparable](value T) Handle[T] {\n }\n \n var (\n-\t// uniqueMaps is an index of type-specific sync maps used for unique.Make.\n+\t// uniqueMaps is an index of type-specific concurrent maps used for unique.Make.\n \t//\n \t// The two-... | 2024-12-28T05:05:38 |
huggingface/transformers | 4ffdc394cca2e3e63d3d72e1fa9e41f2aee6030e | 6f8bc991d33c34bd75a05e79df8b8955eeea7d49 | Docs: fix SigLIP2 usage examples (#43641)
* Docs: fix SigLIP2 usage examples
Use torch_dtype instead of dtype in pipeline/from_pretrained examples and keep processor/model IDs consistent in the quantization snippet.
Ref: #39692
* Use dtype in SigLIP2 pipeline example
* Use dtype in SigLIP2 AutoModel examples
----... | [
{
"path": "docs/source/en/model_doc/siglip2.md",
"patch": "@@ -284,4 +284,4 @@ inputs = tokenizer(\n ## Siglip2Tokenizer\n \n [[autodoc]] Siglip2Tokenizer\n- - __call__\n\\ No newline at end of file\n+ - __call__",
"additions": 1,
"deletions": 1,
"language": "Markdown"
}
] | 2026-03-06T20:02:56 |
Subsets and Splits
Assembly Language GitHub Issues
Retrieves a sample of assembly-language related commits with their details, but doesn't provide meaningful analysis or patterns beyond basic filtering.
Swift Compiler Issues Analysis
Retrieves all training data for the Swift programming language repository, providing basic filtering but offering limited analytical insight beyond identifying relevant code examples.