repo
stringclasses
10 values
pr_number
int64
7
155k
title
stringlengths
4
137
body
stringlengths
0
68.4k
buggy_commit
stringlengths
40
40
fix_commit
stringlengths
40
40
buggy_distance
int64
1
30
confidence
stringclasses
3 values
files
listlengths
1
5
electron/electron
50,398
fix: don't re-parse URL unnecessarily when handling dialogs
Backport of #50062 See that PR for details. Notes: Fixed crash when handling JavaScript dialogs from windows opened with invalid or empty URLs.
null
1766e229ebfa84d8c526eebc4e7283490bd06a22
null
low
[ { "filename": "lib/browser/api/web-contents.ts", "patch": "@@ -782,8 +782,7 @@ WebContents.prototype._init = function () {\n const originCounts = new Map<string, number>();\n const openDialogs = new Set<AbortController>();\n this.on('-run-dialog', async (info, callback) => {\n- const originUrl = ne...
nodejs/node
61,477
url: enable simdutf for ada
Speeds up encoding operations. Benchmark CI: https://ci.nodejs.org/view/Node.js%20benchmark/job/benchmark-node-micro-benchmarks/1785/ <details><summary>Results</summary> ``` confidence improvement accuracy (*) (**) (***) url/legacy-url-get-prop.js e=1 type='auth' ...
null
1bc0fdd9221057248664e8de6e2dbd7ed2ba07a7
null
low
[ { "filename": "deps/ada/ada.gyp", "patch": "@@ -6,10 +6,19 @@\n {\n 'target_name': 'ada',\n 'type': 'static_library',\n- 'include_dirs': ['.'],\n+ 'include_dirs': [\n+ '.',\n+ '<(DEPTH)/deps/v8/third_party/simdutf',\n+ ],\n 'direct_dependent_settings': {\n ...
ollama/ollama
13,682
x: add missing cmd commands to experimental mode
The experimental interactive mode was missing some standard commands. This adds support for: - /set parameter, wordwrap, think, verbose options - /show info, license, modelfile, parameters, system, template - /load to switch models - /save to save session as a new model This model will get redone, but leavi...
1ef42417275ea06df702b9f68a8ad5a8e1b8859e
91926601dc030894aeb816dbf80bbb33d81f467a
7
medium
[ { "filename": "x/cmd/run.go", "patch": "@@ -707,6 +707,10 @@ func GenerateInteractive(cmd *cobra.Command, modelName string, wordWrap bool, op\n \t\t\tcontinue\n \t\tcase strings.HasPrefix(line, \"/help\"), strings.HasPrefix(line, \"/?\"):\n \t\t\tfmt.Fprintln(os.Stderr, \"Available Commands:\")\n+\t\t\tfmt....
ollama/ollama
13,679
x/imagegen/transfer: fix timeout and progress reporting
This fixes two issues introduced in https://github.com/ollama/ollama/pull/13659 - Remove 5-minute HTTP client timeout that caused "context deadline exceeded" errors on large file downloads. This was unnecessary - Fix progress bar total going down on resume by calculating total from all blobs upfront and reporting...
258494001680241c93fcdda7b71de02c55883e38
361d6c16c23b60f84eb1d2134914610c0ae5836b
4
medium
[ { "filename": "x/imagegen/transfer/download.go", "patch": "@@ -45,24 +45,33 @@ func download(ctx context.Context, opts DownloadOptions) error {\n \t\treturn nil\n \t}\n \n-\t// Filter existing\n-\tvar blobs []Blob\n+\t// Calculate total from all blobs (for accurate progress reporting on resume)\n \tvar tota...
facebook/react
35,164
[DevTools] Move "Back to full tree view" into Activity list item
The back button made it seem like a different UI when it's really just part of the list. It's also closer to the final UI where we display filtered Activities. Resolves https://github.com/facebook/react/pull/35092#issuecomment-3543236399 https://github.com/user-attachments/assets/9dec7ec3-c989-44e3-9455-2a619af...
7f1a085b282d30dbb151f40c41bd53fc9045deb1
74fa1667a7355fd55591d82b0e1e992909b1dca0
23
medium
[ { "filename": "packages/react-devtools-shared/src/devtools/views/SuspenseTab/ActivityList.js", "patch": "@@ -30,8 +30,6 @@ import {\n } from '../Components/TreeContext';\n import {useHighlightHostInstance} from '../hooks';\n import {StoreContext} from '../context';\n-import ButtonIcon from '../ButtonIcon';\...
rust-lang/rust
154,520
Add doc links to `ExtractIf` of `BTree{Set,Map}` and `LinkedList`
There were links for `Hash{Set,Map}` and `Vec{,Deque}` versions, but not these three.
null
b7ea4b70dbf97ebbe6f194c7ab83f4ca09c1ed7b
null
low
[ { "filename": "library/alloc/src/collections/btree/map.rs", "patch": "@@ -2102,7 +2102,9 @@ impl<K, V> Default for Values<'_, K, V> {\n }\n }\n \n-/// An iterator produced by calling `extract_if` on BTreeMap.\n+/// This `struct` is created by the [`extract_if`] method on [`BTreeMap`].\n+///\n+/// [`extr...
huggingface/transformers
44,640
Add register method for `ParallelInterface`
# What does this PR do? - Add `"embedding_colwise"` tp plan - Add register methods for `ParallelInterface`. Without it, we can register plans with the register method, but not the corresponding `plan_to_weight_dim` and `plan_to_bias_dim`.
adc2f16bf1824f7b57c790b4cf3bc48f95ecec69
39f1c8d5d294779dbd13248b0986e510c477c529
13
medium
[ { "filename": "src/transformers/integrations/tensor_parallel.py", "patch": "@@ -1218,6 +1218,7 @@ class ParallelInterface(GeneralInterface):\n _global_mapping = (\n {\n \"embedding_rowwise\": EmbeddingParallel(embedding_dim_sharding=0),\n+ \"embedding_colwise\": EmbeddingP...
vercel/next.js
91,924
turbo-tasks-backend: assert non-transient task_ids in track_modification
### What? Add a `debug_assert!` in `StorageWriteGuard::track_modification` to enforce that transient `TaskId`s are never inserted into the persistence-modified set. ### Why? Concurrent server component HMR updates triggered a runtime panic in Turbopack: ``` internal error: entered unreachable code: transient task_i...
null
16935744fbd44743e9546cbcc578be3e473c0035
null
low
[ { "filename": "turbopack/crates/turbo-tasks-backend/src/backend/storage.rs", "patch": "@@ -302,6 +302,10 @@ impl StorageWriteGuard<'_> {\n category: SpecificTaskDataCategory,\n #[allow(unused_variables)] name: &str,\n ) {\n+ debug_assert!(\n+ !self.inner.key().is_transi...
ollama/ollama
13,678
Fix cmake install command in README
Update installation command for MLX component in README.
33ee7168ba1e16c813b52dc2c9417efa1e2e9f20
7e2496e88e916f8a4f08b21b3f2c472258fed629
10
medium
[ { "filename": "x/README.md", "patch": "@@ -9,7 +9,7 @@ Support is currently limited to MacOS and Linux with CUDA GPUs. We're looking t\n ```\n cmake --preset MLX\n cmake --build --preset MLX --parallel\n-cmake --install --component MLX\n+cmake --install build --component MLX\n go build -tags mlx .\n ```\n ...
electron/electron
50,401
fix: don't re-parse URL unnecessarily when handling dialogs
Backport of #50062 See that PR for details. Notes: Fixed crash when handling JavaScript dialogs from windows opened with invalid or empty URLs.
null
cca4a7388deeb51e54448b9316d05b14b9b629a9
null
low
[ { "filename": "lib/browser/api/web-contents.ts", "patch": "@@ -777,8 +777,7 @@ WebContents.prototype._init = function () {\n const originCounts = new Map<string, number>();\n const openDialogs = new Set<AbortController>();\n this.on('-run-dialog', async (info, callback) => {\n- const originUrl = ne...
huggingface/transformers
44,666
Another (small) set of fixes required for tiny model creation
# What does this PR do? - 2 model tester classes didn't follow the usual way we do things, which cause the tiny model creation script to fail with those model classes. - (the script initializes instances of model testers, in order to call methods like `get_config`) - Add a `get_config` for `Gemma3nAudioModelT...
96a33c5a8ffb66b2b3fac71c48bcbabd519f31e6
80572efa0501a0881d23ceb508e19464a6c24288
14
medium
[ { "filename": "tests/models/gemma3n/test_modeling_gemma3n.py", "patch": "@@ -109,6 +109,9 @@ def get_audio_encoder_config(self):\n conf_attention_context_left=5,\n )\n \n+ def get_config(self):\n+ return self.get_audio_encoder_config()\n+\n def prepare_config_and_inputs_for...
nodejs/node
62,246
tools: validate all commits that are pushed to `main`
Thanks to https://github.com/nodejs/core-validate-commit/issues/135, we can now skip the checkout of the repo. Tested on https://github.com/nodejs/node-auto-test/actions/runs/23064217105/job/66998326028. <!-- Before submitting a pull request, please read: - the CONTRIBUTING guide at https://github.com/nodejs/...
null
2e5731eeebeedd99f18d6ead69a29abf8852d687
null
low
[ { "filename": ".github/workflows/notify-on-push.yml", "patch": "@@ -30,20 +30,16 @@ jobs:\n \n validateCommitMessage:\n name: Notify on Push on `main` with invalid message\n- if: github.repository == 'nodejs/node'\n # cannot use ubuntu-slim here because rtCamp/action-slack-notify is dockerized\...
facebook/react
35,215
[compiler][snap] Fix for filter mode with nested files, 'error.' prefix
Fixes some issues i ran into w my recent snap changes: * Correctly match against patterns that contain subdirectories, eg `fbt/fbt-call` * When checking if the input pattern has an extension, only prune known supported extensions. Our convention of `error.<name>` for fixtures that error makes the rest of the test name...
ea4899e13f9e29815321e3cac70fa08bb8ed790a
627b583650078514eff22498514682a8522282b1
23
medium
[ { "filename": "compiler/packages/snap/src/fixture-utils.ts", "patch": "@@ -44,21 +44,6 @@ function stripExtension(filename: string, extensions: Array<string>): string {\n return filename;\n }\n \n-/**\n- * Strip all extensions from a filename\n- * e.g., \"foo.expect.md\" -> \"foo\"\n- */\n-function stripA...
rust-lang/rust
154,190
Don't fuse in `MapWindows`
<!-- homu-ignore:start --> <!-- If this PR is related to an unstable feature or an otherwise tracked effort, please link to the relevant tracking issue here. If you don't know of a related tracking issue or there are none, feel free to ignore this. This PR will get automatically assigned to a reviewer. In case y...
null
df5f98513b0fc1ba92b8058150bf3c2f44fa4870
null
low
[ { "filename": "library/core/src/iter/adapters/map_windows.rs", "patch": "@@ -14,10 +14,7 @@ pub struct MapWindows<I: Iterator, F, const N: usize> {\n }\n \n struct MapWindowsInner<I: Iterator, const N: usize> {\n- // We fuse the inner iterator because there shouldn't be \"holes\" in\n- // the sliding ...
vercel/next.js
91,206
Tracing: tag spans as failed if their runner fn fails
This adds a dedicated attribute, `failed`, to a span representing if the procedure failed. It's then set if the runner function threw. Test Plan: Added an e2e test
null
f803fa7c7171f1ade4943583e1e8565c8435f65c
null
low
[ { "filename": "packages/next/src/trace/trace.ts", "patch": "@@ -133,6 +133,9 @@ export class Span {\n traceFn<T>(fn: (span: Span) => T): T {\n try {\n return fn(this)\n+ } catch (e) {\n+ this.attrs['failed'] = true\n+ throw e\n } finally {\n this.stop()\n }\n@@ -141,6 ...
ollama/ollama
13,674
Fix Ollama Troubleshooting Page
The file [`docs/troubleshooting.md`](https://github.com/ollama/ollama/blob/main/docs/troubleshooting.md) links to the Ollama troubleshooting webpage, but that webpage renders the same file, resulting in a circular reference. As a result, [`docs/troubleshooting.mdx`](https://github.com/ollama/ollama/blob/m...
null
5b84e29882021dd80ecd858a675f80540d9b0627
null
low
[ { "filename": ".github/ISSUE_TEMPLATE/10_bug_report.yml", "patch": "@@ -13,7 +13,7 @@ body:\n id: logs\n attributes:\n label: Relevant log output\n- description: Please copy and paste any relevant log output. See [Troubleshooting Guide](https://github.com/ollama/ollama/blob/main/docs/trou...
nodejs/node
62,201
worker: heap profile optimizations
This PR makes two small optimizations to worker heap profile serialization: - Stop the sampling heap profiler immediately after `GetAllocationProfile()` instead of after JSON serialization completes. - Serialize heap profiles without extra indentation and newlines.
null
82409af5a27f5af6c30e5b2752100bbcbcb97165
null
low
[ { "filename": "src/node_worker.cc", "patch": "@@ -1121,7 +1121,8 @@ static bool serializeProfile(Isolate* isolate, std::ostringstream& out_stream) {\n if (!profile) {\n return false;\n }\n- JSONWriter writer(out_stream, false);\n+ profiler->StopSamplingHeapProfiler();\n+ JSONWriter writer(out_str...
huggingface/transformers
44,334
Fix CookieCutter
# What does this PR do? I had some issues with running `transformers-cli add-new-model-like`. This PR fixes it. Fixes #44661.
null
75aaf68307404eda6ad7f3b6401372c6f3dfeb7c
null
low
[ { "filename": "src/transformers/cli/add_new_model_like.py", "patch": "@@ -142,6 +142,7 @@ def __init__(self, lowercase_name: str):\n \n # Get tokenizer class\n if self.lowercase_name in TOKENIZER_MAPPING_NAMES:\n+ self.tokenizer_class = None\n self.fast_tokenizer_class...
ollama/ollama
13,664
dockerfile: remove unused COPY command
258494001680241c93fcdda7b71de02c55883e38
7cc2a653f2634389403b4af4b07fc5c801a81604
1
high
[ { "filename": "Dockerfile", "patch": "@@ -182,7 +182,6 @@ COPY --from=cuda-12 dist/lib/ollama /lib/ollama/\n COPY --from=cuda-13 dist/lib/ollama /lib/ollama/\n COPY --from=vulkan dist/lib/ollama /lib/ollama/\n COPY --from=mlx /go/src/github.com/ollama/ollama/dist/lib/ollama /lib/ollama/\n-COPY --from=...
electron/electron
50,376
build(deps): bump flatted from 3.2.7 to 3.4.1 in the npm_and_yarn group across 1 directory
#### Description of Change Bumps the npm_and_yarn group with 1 update in the / directory: [flatted](https://github.com/WebReflection/flatted). Updates `flatted` from 3.2.7 to 3.4.1 <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/WebReflection/flatted/commit/2a02dce7c641dec31194c67663...
null
72797d7b4254dee923659ba290797969ef46272c
null
low
[ { "filename": "yarn.lock", "patch": "@@ -6164,9 +6164,9 @@ __metadata:\n linkType: hard\n \n \"flatted@npm:^3.1.0\":\n- version: 3.2.7\n- resolution: \"flatted@npm:3.2.7\"\n- checksum: 10c0/207a87c7abfc1ea6928ea16bac84f9eaa6d44d365620ece419e5c41cf44a5e9902b4c1f59c9605771b10e4565a0cb46e99d78e0464e8aabb4...
ollama/ollama
13,662
x: request access for all commands, add welcome message
adds ability to disable bash tool with --no-bash flag and runtime commands This change allows users to disable the bash tool for safety and control: - Add --no-bash flag to disable bash tool at startup - Add /bash on and /bash off commands to toggle bash tool at runtime - Add welcome message warning users when ...
68fafd3002ef23df6f062cb4b0e542e0a3f11317
1ef42417275ea06df702b9f68a8ad5a8e1b8859e
1
medium
[ { "filename": "cmd/cmd.go", "patch": "@@ -520,7 +520,7 @@ func RunHandler(cmd *cobra.Command, args []string) error {\n \n \t// Check for experimental flag\n \tisExperimental, _ := cmd.Flags().GetBool(\"experimental\")\n-\tyoloMode, _ := cmd.Flags().GetBool(\"yolo\")\n+\tyoloMode, _ := cmd.Flags().GetBool(\"...
facebook/react
35,202
[compiler] Script to enable a feature by default and update tests
--- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/35202). * #35201 * __->__ #35202
null
16e16ec6ffe159ba831203eeeb7efe72df82c4be
null
low
[ { "filename": "compiler/.claude/settings.local.json", "patch": "@@ -0,0 +1,9 @@\n+{\n+ \"permissions\": {\n+ \"allow\": [\n+ \"Bash(node scripts/enable-feature-flag.js:*)\"\n+ ],\n+ \"deny\": [],\n+ \"ask\": []\n+ }\n+}", "additions": 9, "deletions": 0 }, { "filename": "co...
rust-lang/rust
154,110
Change "error finalizing incremental compilation" text and emit it as a note, not a warning
As mentioned in https://github.com/rust-lang/rust/issues/151181#issuecomment-3762036971 and https://github.com/rust-lang/rust/issues/151181#issuecomment-4068842260 the current message could be improved: 1. Right now it displays as "warning: error ..." which is confusing (is it an error or a warning) 2. It doesn't g...
null
ee64422ffaaeb17c8b03bd3e145adbb748d8e43f
null
low
[ { "filename": "compiler/rustc_incremental/src/errors.rs", "patch": "@@ -192,7 +192,8 @@ pub(crate) struct DeleteFull<'a> {\n }\n \n #[derive(Diagnostic)]\n-#[diag(\"error finalizing incremental compilation session directory `{$path}`: {$err}\")]\n+#[diag(\"did not finalize incremental compilation session di...
facebook/react
35,192
[compiler] Adjustments to exhaustive deps messages, disable the lint rule
Similar to ValidateHookUsage, we implement this check in the compiler for safety but (for now) continue to rely on the existing rule for actually reporting errors to users. --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.de...
67c1487ffd872c95a3bb7d8104eac6eca79fe8cb
9599e7a787cce2a41c35d783d45a160dfebab277
1
medium
[ { "filename": "compiler/packages/babel-plugin-react-compiler/src/CompilerError.ts", "patch": "@@ -1067,7 +1067,15 @@ function getRuleForCategoryImpl(category: ErrorCategory): LintRule {\n name: 'memo-dependencies',\n description:\n 'Validates that useMemo() and useCallback() specif...
golang/go
54,390
net/url: strip relative path components for JoinPath
Fixes #54385
e7f2e5697ac8b9b6ebfb3e0d059a8c318b4709eb
1a8dfadbfe26978cba0d6ce57bf437a93f796da6
18
medium
[ { "filename": "src/encoding/json/bench_test.go", "patch": "@@ -18,6 +18,7 @@ import (\n \t\"io\"\n \t\"os\"\n \t\"reflect\"\n+\t\"regexp\"\n \t\"runtime\"\n \t\"strings\"\n \t\"sync\"\n@@ -508,3 +509,33 @@ func BenchmarkEncodeMarshaler(b *testing.B) {\n \t\t}\n \t})\n }\n+\n+func BenchmarkEncoderEncode(b *t...
ollama/ollama
13,663
x: improve approval selector with dynamic info and clearer labels
- Rename "Always allow" to "Allow for this session" for clarity - Show allowlist info next to session option (e.g., "ls in tools/ directory") - Add "(optional reason)" placeholder for deny input - Support dynamic warning messages
53a5a9e9ae3a6e40610d81ac6fbfb9d30921ff97
68fafd3002ef23df6f062cb4b0e542e0a3f11317
6
medium
[ { "filename": "x/agent/approval.go", "patch": "@@ -33,7 +33,7 @@ type ApprovalResult struct {\n // Option labels for the selector (numbered for quick selection)\n var optionLabels = []string{\n \t\"1. Execute once\",\n-\t\"2. Always allow\",\n+\t\"2. Allow for this session\",\n \t\"3. Deny\",\n }\n \n@@ -49...
facebook/react
35,190
[compiler] Allow extraneous non-reactive locals
The existing exhaustive-deps rule allows omitting non-reactive dependencies, even if they're not memoized. Conceptually, if a value is non-reactive then it cannot semantically change. Even if the value is a new object, that object represents the exact same value and doesn't necessitate redoing downstream computation. ...
454e01e603464b19ec3b6991a7a781cf1908ac84
67c1487ffd872c95a3bb7d8104eac6eca79fe8cb
1
medium
[ { "filename": "compiler/packages/babel-plugin-react-compiler/src/Validation/ValidateExhaustiveDependencies.ts", "patch": "@@ -43,20 +43,37 @@ import {retainWhere} from '../Utils/utils';\n const DEBUG = false;\n \n /**\n- * Validates that existing manual memoization had exhaustive dependencies.\n- * Memoizat...
vercel/next.js
91,107
fix(turbopack): unref ThreadsafeFunctions to allow Node.js exit after build
## What? Calls `unref()` on the `ThreadsafeFunction`s created in `NapiNextTurbopackCallbacks::from_js` (`throw_turbopack_internal_error` and `on_before_deferred_entries`). ## Why? These `ThreadsafeFunction`s are not unref'd, which means they keep the Node.js event loop alive even after `project_shutdown` compl...
null
b1db02697c8b856ab7298ba72f4fd9e6aa7df302
null
low
[ { "filename": "crates/next-napi-bindings/src/next_api/project.rs", "patch": "@@ -421,7 +421,7 @@ pub fn project_new(\n turbo_engine_options: NapiTurboEngineOptions,\n napi_callbacks: NapiNextTurbopackCallbacksJsObject,\n ) -> napi::Result<JsObject> {\n- let napi_callbacks = NapiNextTurbopackCallb...
facebook/react
35,186
[compiler] Allow manual dependencies to have different optionality than inferred deps
Since adding this validation we've already changed our inference to use knowledge from manual memoization to inform when values are frozen and which values are non-nullable. To align with that, if the user chooses to use different optionality btw the deps and the memo block/callback, that's fine. The key is that eg `x...
c9a8cf3411baed43d4e24fab6ec895768b297fd2
454e01e603464b19ec3b6991a7a781cf1908ac84
1
medium
[ { "filename": "compiler/packages/babel-plugin-react-compiler/src/Validation/ValidateExhaustiveDependencies.ts", "patch": "@@ -24,6 +24,7 @@ import {\n InstructionKind,\n isStableType,\n isSubPath,\n+ isSubPathIgnoringOptionals,\n isUseRefType,\n LoadGlobal,\n ManualMemoDependency,\n@@ -240,7 +2...
ollama/ollama
13,654
docker: add missing deps
The new MLX library has extra dependencies. Verification using a temporary image I pushed with this change: ``` % docker run --rm -it --runtime=nvidia --gpus all -e LD_LIBRARY_PATH=/usr/local/nvidia/lib:/usr/local/nvidia/lib64:/lib/ollama/mlx_cuda_v13/ --entrypoint /bin/imagegen dhiltgen/ollama:0.14.0-rc0-0-g33ee...
33ee7168ba1e16c813b52dc2c9417efa1e2e9f20
3cfe9fe146417920f2588b6bfbbef2657c3ef2d5
2
high
[ { "filename": "Dockerfile", "patch": "@@ -205,7 +205,7 @@ COPY --from=build /bin/ollama /bin/ollama\n \n FROM ubuntu:24.04\n RUN apt-get update \\\n- && apt-get install -y ca-certificates libvulkan1 \\\n+ && apt-get install -y ca-certificates libvulkan1 libopenblas0 \\\n && apt-get clean \\\n ...
nodejs/node
62,123
diagnostics_channel: add diagnostics channels for web locks
This PR adds diagnostics channels support for `locks.request()` giving visibility into the lock request lifecycle. Four channels are emitted: - `locks.request.start` when a request begins - `locks.request.grant` when the lock is granted - `locks.request.miss` when the lock is not immediately available ...
null
1989f4d25413b5d62da9f1b4ef9bcb1d1780f0ad
null
low
[ { "filename": "doc/api/diagnostics_channel.md", "patch": "@@ -1447,6 +1447,50 @@ Emitted when [`child_process.spawn()`][] encounters an error.\n \n Emitted when [`process.execve()`][] is invoked.\n \n+#### Web Locks\n+\n+> Stability: 1 - Experimental\n+\n+<!-- YAML\n+added: REPLACEME\n+-->\n+\n+These channe...
electron/electron
50,387
fix: correct utility process exit code on Windows
Backport of #50256 See that PR for details. Notes: Fixed utilityProcess exit event reporting incorrect exit codes on Windows when the exit code has the high bit
null
a8dfe3687cfe76611d9559520132bd3c4f54f4b3
null
low
[ { "filename": "shell/browser/api/electron_api_utility_process.cc", "patch": "@@ -258,7 +258,7 @@ void UtilityProcessWrapper::OnServiceProcessLaunch(\n EmitWithoutEvent(\"spawn\");\n }\n \n-void UtilityProcessWrapper::HandleTermination(uint64_t exit_code) {\n+void UtilityProcessWrapper::HandleTermination(u...
facebook/react
35,185
[compiler] Allow nonreactive stable types as extraneous deps
When checking ValidateExhaustiveDeps internally, this seems to be the most common case that it flags. The current exhaustive-deps rule allows extraneous deps if they are a set of stable types. So here we reuse our existing isStableType() util in the compiler to allow this case. --- [//]: # (BEGIN SAPLING FOOTER) Stac...
40b4a5bf71ba7864556a5589b270b237f453c032
c9a8cf3411baed43d4e24fab6ec895768b297fd2
3
medium
[ { "filename": "compiler/packages/babel-plugin-react-compiler/src/Validation/ValidateExhaustiveDependencies.ts", "patch": "@@ -261,6 +261,20 @@ export function validateExhaustiveDependencies(\n extra.push(dep);\n }\n \n+ /*\n+ * For compatiblity with the existing exhaustive-deps rule, we all...
huggingface/transformers
44,654
Fix AWQ tests for GPTQModel migration
This PR fixes the AWQ test suite to align with the GPTQModel migration (following #41567 and #42776). ### Changes - **Fix `replace_with_awq_linear` return value**: The function now returns the model directly instead of a tuple `(model, _)`, updated all call sites accordingly. - **Use `BaseQuantLinear` for type c...
null
f2f7c89413b89949a84f278b071e53f89f7fcb72
null
low
[ { "filename": "tests/quantization/autoawq/test_awq.py", "patch": "@@ -110,7 +110,8 @@ class AwqTest(unittest.TestCase):\n )\n \n EXPECTED_OUTPUT_BF16 = [\n- \"Hello my name is Katie and I am a 20 year old student at the University of North Carolina at Chapel Hill. I am a junior and I am major...
ollama/ollama
13,656
x: disable web search tool registration
Temporarily disable web search from being registered in the default tool registry while keeping the implementation intact for future use.
12e2b3514ad4cbe6e585498fb815979ea002834d
a23b559b4ce8b469eebd448e630564076ab1fefc
5
medium
[ { "filename": "x/tools/registry.go", "patch": "@@ -94,9 +94,10 @@ func (r *Registry) Count() int {\n // - OLLAMA_AGENT_DISABLE_BASH=1 disables bash\n func DefaultRegistry() *Registry {\n \tr := NewRegistry()\n-\tif os.Getenv(\"OLLAMA_AGENT_DISABLE_WEBSEARCH\") == \"\" {\n-\t\tr.Register(&WebSearchTool{})\n-...
facebook/react
35,184
[compiler] Ignore ESLint suppressions when ValidateMemoDeps enabled
With `ValidateExhaustiveMemoDependencies` we can now check exhaustive dependencies for useMemo and useCallback within the compiler, without relying on the separate exhaustive-deps rule. Until now we've bailed out of any component/hook that suppresses this rule, since the suppression _might_ affect a memoization value....
50e7ec8a694072fd6fcd52182df8a75211bf084d
fca172e3f3b29aee12e4e99b8f151e7fd138a8db
5
medium
[ { "filename": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Program.ts", "patch": "@@ -400,7 +400,15 @@ export function compileProgram(\n */\n const suppressions = findProgramSuppressions(\n pass.comments,\n- pass.opts.eslintSuppressionRules ?? DEFAULT_ESLINT_SUPPRESSIONS,\n+ ...
huggingface/transformers
44,581
fix(models, testing): Fix Llama4 vision rotary meta tensor initialization and MyT5 get_tokenizer signature
### What does this PR do? The following issues were identified and fixed in this PR: → **Llama-4 Vision:** [freqs_ci is stored as a plain attr](https://github.com/huggingface/transformers/blob/153894c013/src/transformers/models/llama4/modeling_llama4.py#L1032) in [Llama4VisionRotaryEmbedding](https://github.com/h...
ca960f0cc0d2c2549b0f1834a51fa91230e50134
b7626311663ee66509c7e691afc5a65ff7acacea
4
medium
[ { "filename": "src/transformers/models/llama4/modeling_llama4.py", "patch": "@@ -485,6 +485,8 @@ def _init_weights(self, module):\n if isinstance(module, Llama4TextExperts):\n init.normal_(module.gate_up_proj, mean=0.0, std=std)\n init.normal_(module.down_proj, mean=0.0, std=...
ollama/ollama
13,650
x: redesign agent UI with minimal styling
- Remove box drawing characters from approval modal - Replace colored status messages with bold labels - Use bold/grey styling for selection indicators - Add human-readable tool display names (Web Search, Bash) - Simplify Yes/No prompt styling - Lowercase all status text for consistency Color palette reduced to...
e30e08a7d6c0fd300ee9e276d89687c5d097e3f3
53a5a9e9ae3a6e40610d81ac6fbfb9d30921ff97
1
medium
[ { "filename": "x/agent/approval.go", "patch": "@@ -37,6 +37,25 @@ var optionLabels = []string{\n \t\"3. Deny\",\n }\n \n+// toolDisplayNames maps internal tool names to human-readable display names.\n+var toolDisplayNames = map[string]string{\n+\t\"bash\": \"Bash\",\n+\t\"web_search\": \"Web Search\",...
electron/electron
50,256
fix: correct utility process exit code on Windows
On Windows, process exit codes are 32-bit unsigned integers (DWORD). When passed from Chromium to Electron as a signed int and then implicitly converted to uint64_t, values with the high bit set (e.g., NTSTATUS codes) undergo sign extension, producing incorrect values. Cast the exit code to uint32_t before widening ...
76331f05644b8a8e43319736fe1688ed87dd7e67
9ccc752a43a93c17a30442c4977375e81f6b6bb9
16
medium
[ { "filename": "shell/browser/api/electron_api_utility_process.cc", "patch": "@@ -246,7 +246,7 @@ void UtilityProcessWrapper::OnServiceProcessLaunch(\n EmitWithoutEvent(\"spawn\");\n }\n \n-void UtilityProcessWrapper::HandleTermination(uint64_t exit_code) {\n+void UtilityProcessWrapper::HandleTermination(u...
rust-lang/rust
154,468
Revert "Rollup merge of #154200 - resrever:enable-dwarf-call-sites, r=dingxiangfei2009"
This reverts commit 2f1603077b249819ec6ab6ba2a73b2f5b8079382, reversing changes made to 6e3c17424d5c97770f1de534fb1bec496de4d9cf. Debugging perf. hit from https://github.com/rust-lang/rust/pull/154384. The binary size hits from https://github.com/rust-lang/rust/pull/154468#issuecomment-4144557076 were due to thi...
null
fb27476aaf1012f1f6ace6306f9b990e0d989c31
null
low
[ { "filename": "compiler/rustc_codegen_llvm/src/debuginfo/mod.rs", "patch": "@@ -471,7 +471,7 @@ impl<'ll, 'tcx> DebugInfoCodegenMethods<'tcx> for CodegenCx<'ll, 'tcx> {\n // FIXME(eddyb) does this need to be separate from `loc.line` for some reason?\n let scope_line = loc.line;\n \n- ...
vercel/next.js
91,216
Adds a Start button to the Instant Navs panel to initiate inspection …
…of client navs. Allows the initial screen to be dismissed without reloading the app. https://github.com/user-attachments/assets/56b08c57-bd78-4d38-875d-244a450b7325
19a19a3924a388cf346526a0a666fd3692e704f3
5920e9db2e206ee986916e1e658090eefc27df8d
26
medium
[ { "filename": "packages/next/src/next-devtools/dev-overlay/components/instant-navs/instant-navs-panel.tsx", "patch": "@@ -36,9 +36,9 @@ export function InstantNavsPanel() {\n }\n }, [dispatch])\n \n- // Navigation detection: watch state.page for changes while in waiting state\n+ // Navigation detect...
ollama/ollama
13,640
x: remove Ctrl+O tool output expansion feature
Remove the pager interface and inline toggle for viewing tool output. This removes ErrExpandOutput, LastToolOutput tracking, and all related handling to simplify the codebase.
12e2b3514ad4cbe6e585498fb815979ea002834d
e30e08a7d6c0fd300ee9e276d89687c5d097e3f3
1
medium
[ { "filename": "readline/errors.go", "patch": "@@ -6,9 +6,6 @@ import (\n \n var ErrInterrupt = errors.New(\"Interrupt\")\n \n-// ErrExpandOutput is returned when user presses Ctrl+O to expand tool output\n-var ErrExpandOutput = errors.New(\"ExpandOutput\")\n-\n type InterruptError struct {\n \tLine []rune\n...
nodejs/node
61,927
deps: update googletest to a35bc7693c117a048152beeb34f6aac354b9423f
This is an automated update of googletest to a35bc7693c117a048152beeb34f6aac354b9423f.
null
10655d6e68a9ea42c5f034356436780b09fdfa5d
null
low
[ { "filename": "deps/googletest/include/gtest/gtest-test-part.h", "patch": "@@ -37,6 +37,7 @@\n #include <iosfwd>\n #include <ostream>\n #include <string>\n+#include <string_view>\n #include <vector>\n \n #include \"gtest/internal/gtest-internal.h\"\n@@ -65,10 +66,10 @@ class GTEST_API_ [[nodiscard]] TestPar...
vercel/next.js
91,215
remove worktrees accidentally committed in #90166
🤦‍♂️
a5f36eb27d68bdf5b7acf3299a8c8083e2329ec9
9848d22842049693526f18bb5788e6d7fbc62fc4
12
medium
[ { "filename": ".claude/worktrees/keen-bassi", "patch": "@@ -1 +0,0 @@\n-Subproject commit 0d1968d350efcb3890dda9f429053027013de536", "additions": 0, "deletions": 1 }, { "filename": ".claude/worktrees/modest-stonebraker", "patch": "@@ -1 +0,0 @@\n-Subproject commit b9757fc8d466ee39d6b4437...
ollama/ollama
13,636
template: fix args-as-json rendering
In #13525, I accidentally broke templates' ability to automatically render tool call function arguments as JSON. We do need these to be proper maps because we need templates to be able to call range, which can't be done on custom types.
e51dead6363e941b480f5bf1270254db7e175083
626af2d80973270c4d59b8df7153ac47ad67ed7b
3
medium
[ { "filename": "template/template.go", "patch": "@@ -381,6 +381,28 @@ func (t templateTools) String() string {\n \treturn string(bts)\n }\n \n+// templateArgs is a map type with JSON string output for templates.\n+type templateArgs map[string]any\n+\n+func (t templateArgs) String() string {\n+\tif t == nil {...
ollama/ollama
13,629
olmo3: fix flaky test
I introduced this in <https://github.com/ollama/ollama/pull/13525>
e51dead6363e941b480f5bf1270254db7e175083
6c3faafed27a1b7c3b0b4261f97fa1f82f51408e
1
medium
[ { "filename": "model/renderers/olmo3_test.go", "patch": "@@ -227,9 +227,9 @@ func TestOlmo3Renderer(t *testing.T) {\n \t\t\t\t\t\t\tID: \"call_1\",\n \t\t\t\t\t\t\tFunction: api.ToolCallFunction{\n \t\t\t\t\t\t\t\tName: \"book_flight\",\n-\t\t\t\t\t\t\t\tArguments: testArgs(map[string]any{\n-\t\t\t\t\t\t\t\...
facebook/react
35,160
[DevTools] hotkey to start/stop profiling
## Summary The built-in browser profiler supports starting/stopping with Cmd+E. For Symmetry this adds the same hotkey for react devtools profiler. ## How did you test this change? yarn build:\<browser name\> yarn run test:\<browser name\> <img width="483" height="135" alt="Screenshot 2025-11-17 at 14 30 34...
null
fd524fe02a86c3e92a207d90da970941320f337f
null
low
[ { "filename": "packages/react-devtools-shared/src/__tests__/profilerContext-test.js", "patch": "@@ -584,4 +584,75 @@ describe('ProfilerContext', () => {\n await utils.actAsync(() => context.selectFiber(childID, 'Child'));\n expect(inspectedElementID).toBe(parentID);\n });\n+\n+ it('should toggle ...
electron/electron
50,386
fix: correct utility process exit code on Windows
Backport of #50256 See that PR for details. Notes: Fixed utilityProcess exit event reporting incorrect exit codes on Windows when the exit code has the high bit
null
43bb93908c4a0fe113357d5d8100f602e2695d27
null
low
[ { "filename": "shell/browser/api/electron_api_utility_process.cc", "patch": "@@ -259,7 +259,7 @@ void UtilityProcessWrapper::OnServiceProcessLaunch(\n EmitWithoutEvent(\"spawn\");\n }\n \n-void UtilityProcessWrapper::HandleTermination(uint64_t exit_code) {\n+void UtilityProcessWrapper::HandleTermination(u...
huggingface/transformers
44,621
pipelines do not have modelcard
# What does this PR do? Fixes #43170 for `modelcard` removal Quick reproduce: ``` from transformers import pipeline fmp=pipeline("fill-mask","google-bert/bert-base-cased") fmp.save_pretrained("tmpdir") ``` ## Before submitting - [ ] This PR fixes a typo or improves the docs (you can dismiss the other c...
null
2548d0dbda93e29b1e94cbee64cfb25fbc03610a
null
low
[ { "filename": "src/transformers/pipelines/base.py", "patch": "@@ -985,9 +985,6 @@ def save_pretrained(self, save_directory: str | os.PathLike, **kwargs: Any):\n if self.image_processor is not None:\n self.image_processor.save_pretrained(save_directory, **kwargs)\n \n- if self.mode...
rust-lang/rust
154,494
triagebot: add reminder for bumping CI LLVM stamp
I'm not sure what else can be done automatically to help us not forget this, but at least this gives a chance for the PR author/reviewer to be reminded (e.g. myself).
null
599602b1a6fb14b4fd7dece7db416873023cc5cc
null
low
[ { "filename": "triagebot.toml", "patch": "@@ -1412,6 +1412,15 @@ cc = [\"@m-ou-se\"]\n [mentions.\"compiler/rustc_ast_lowering/src/format.rs\"]\n cc = [\"@m-ou-se\"]\n \n+[mentions.\"src/ci/github-actions/jobs.yml\"]\n+message = \"\"\"\n+> [!WARNING]\n+>\n+> If you are changing how CI LLVM is built or linke...
facebook/react
34,472
[compiler] ValidateExhaustiveDeps disallows unnecessary non-reactive deps
Just to be consistent, we disallow unnecessary deps even if they're known to be non-reactive.
df75af4edca7f316e6bfcfcde67197e8a57d1101
40b4a5bf71ba7864556a5589b270b237f453c032
1
medium
[ { "filename": "compiler/packages/babel-plugin-react-compiler/src/CompilerError.ts", "patch": "@@ -600,7 +600,8 @@ function printErrorSummary(category: ErrorCategory, message: string): string {\n case ErrorCategory.Suppression:\n case ErrorCategory.Syntax:\n case ErrorCategory.UseMemo:\n- case...
facebook/react
34,471
[compiler] Auto-fix for non-exhaustive deps
Records more information in DropManualMemoization so that we know the full span of the manual dependencies array (if present). This allows ValidateExhaustiveDeps to include a suggestion with the correct deps. --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with ...
bcc3fd8b05acc6cb4947b15938dc55b4b72fe31f
df75af4edca7f316e6bfcfcde67197e8a57d1101
1
medium
[ { "filename": "compiler/packages/babel-plugin-react-compiler/src/HIR/HIR.ts", "patch": "@@ -817,6 +817,11 @@ export type StartMemoize = {\n * (e.g. useMemo without a second arg)\n */\n deps: Array<ManualMemoDependency> | null;\n+ /**\n+ * The source location of the dependencies argument. Used for...
ollama/ollama
13,599
fix: return error when embedding contains NaN or Inf values
Fixes #13572 ## Changes - Add NaN/Inf validation in the normalize function - Return clear error message when embedding contains invalid values - Add test cases for NaN and Inf inputs
8852220f59c12cf3165f5643d38453ffecbb722d
37f6f3af24ad567e2160f79545f1a10a207467a2
7
medium
[ { "filename": "server/routes.go", "patch": "@@ -752,9 +752,15 @@ func (s *Server) EmbedHandler(c *gin.Context) {\n \t\t\t\treturn err\n \t\t\t}\n \t\t\t// TODO: this first normalization should be done by the model\n-\t\t\tembedding = normalize(embedding)\n+\t\t\tembedding, err = normalize(embedding)\n+\t\t\...
electron/electron
50,385
fix: correct utility process exit code on Windows
Backport of #50256 See that PR for details. Notes: Fixed utilityProcess exit event reporting incorrect exit codes on Windows when the exit code has the high bit
44ebbc11ed4b43befbbf33fa211288784c874834
0d0a58cbd4d5e04765797f9a009143c47681e700
10
medium
[ { "filename": "shell/browser/api/electron_api_utility_process.cc", "patch": "@@ -246,7 +246,7 @@ void UtilityProcessWrapper::OnServiceProcessLaunch(\n EmitWithoutEvent(\"spawn\");\n }\n \n-void UtilityProcessWrapper::HandleTermination(uint64_t exit_code) {\n+void UtilityProcessWrapper::HandleTermination(u...
nodejs/node
62,213
deps: update merve to 1.2.2
This is an automated update of merve to 1.2.2.
59a522af24173b244cb86829de145d46b143a45c
aac5b68211c0ec7fbb008094da358b39aa366519
20
medium
[ { "filename": "deps/merve/merve.cpp", "patch": "@@ -1,4 +1,4 @@\n-/* auto-generated on 2026-03-06 11:46:19 -0500. Do not edit! */\n+/* auto-generated on 2026-03-11 12:53:21 -0400. Do not edit! */\n #include \"merve.h\"\n \n /* begin file src/parser.cpp */\n@@ -1478,11 +1478,13 @@ class CJSLexer {\n }\n \n...
vercel/next.js
91,210
Fix syntax contexts in server action transform
``` let x: Ident = IdentName::new(name, span).into(); ``` should never be done. It uses `SyntaxContext::default()` for the Ident. So from swc's perspective, you are referring to a different variable than you think. When constructing an `Ident`, you should usually always provide a SyntaxContext. I think this would pose...
null
196ed2b83919892d45eaf7aed80852d0c9cc38c7
null
low
[ { "filename": "crates/next-custom-transforms/src/transforms/server_actions.rs", "patch": "@@ -481,12 +481,15 @@ impl<C: Comments> ServerActions<C> {\n ) -> Box<Expr> {\n let mut new_params: Vec<Param> = vec![];\n \n+ let closure_bound_ident =\n+ Ident::new(atom!(\"$$ACTION_CLOS...
facebook/react
35,174
[compiler] Remove useState argument constraint. no-derived-computations-in-effects
Summary: I missed this conditional messing things up for undefined useState() calls. We should be tracking them. I also missed a test that expect an error was not throwing. Test Plan: Update broken test --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [Rev...
7ee974de927e9bbe10a44441ab49bafd9f5467a2
7d67591041e3ac47eac3bab6cff209071d4c0c6c
1
medium
[ { "filename": "compiler/packages/babel-plugin-react-compiler/src/Validation/ValidateNoDerivedComputationsInEffects_exp.ts", "patch": "@@ -388,7 +388,7 @@ function recordInstructionDerivations(\n dependencies: deps,\n });\n }\n- } else if (isUseStateType(lvalue.identifier) && value...
facebook/react
35,173
[compiler] Prevent innaccurate derivation recording on FunctionExpressions on no-derived-computation-in-effects
Summary: The operands of a function expression are the elements passed as context. This means that it doesn't make sense to record mutations for them. The relevant mutations will happen in the function body, so we need to prevent FunctionExpression type instruction from running the logic for effect mutations. This w...
257b033fc7b0518e7b1db32ca24e2354933b9d0e
7ee974de927e9bbe10a44441ab49bafd9f5467a2
17
medium
[ { "filename": "compiler/packages/babel-plugin-react-compiler/src/Validation/ValidateNoDerivedComputationsInEffects_exp.ts", "patch": "@@ -52,6 +52,8 @@ type ValidationContext = {\n readonly setStateUsages: Map<IdentifierId, Set<SourceLocation>>;\n };\n \n+const MAX_FIXPOINT_ITERATIONS = 100;\n+\n class De...
nodejs/node
62,202
doc: remove outdated Chrome 66 and ndb references from debugger
Remove outdated references from `doc/api/debugger.md`: - Chrome 66.0.3345.0 version check from 2018 (irrelevant for any currently supported Chrome) - "yet" language about worker thread debugging support in Chrome DevTools (supported since 2020) - Recommendation to use [ndb](https://github.com/GoogleChromeLabs/ndb/), w...
null
e42dbefea7f60e3db09c88cc3bc90c0652d876ae
null
low
[ { "filename": "doc/api/debugger.md", "patch": "@@ -260,13 +260,5 @@ For help, see: https://nodejs.org/en/docs/inspector\n at the end of the URL is generated on the fly, it varies in different\n debugging sessions.)\n \n-If the Chrome browser is older than 66.0.3345.0,\n-use `inspector.html` instead of `js_a...
huggingface/transformers
44,611
fix(models): Forward timm model kwargs to timm.create_model for OmDet-Turbo
### What does this PR do? The following issue was identified and fixed in this PR: → [This PR (🚨 Delete duplicate code in backbone utils)](https://github.com/huggingface/transformers/pull/43323) structured config loading to use [BackboneMixin.consolidate_backbone_kwargs_to_config](https://github.com/huggingface/...
null
3dd82faf3e887043db772d4c1191ec40271a1584
null
low
[ { "filename": "src/transformers/models/omdet_turbo/configuration_omdet_turbo.py", "patch": "@@ -161,6 +161,13 @@ def __init__(\n **kwargs,\n )\n \n+ # Extract timm.create_model kwargs; TimmBackbone doesn't forward arbitrary config attrs to timm\n+ timm_kwargs = {}\n+ ...
vercel/next.js
91,213
Preserve RSC metadata in Proxy request with skipProxyUrlNormalize
## Summary - preserve Flight/RSC headers on the Proxy request instance when URL normalization is skipped (`skipProxyUrlNormalize`) - preserve the `_rsc` query on the request URL in that same mode so custom proxy logic can access it - document this behavior in the Proxy API docs, including guidance for `NextResponse.rew...
3162af8dff5e531373176ede9476d99aa8818a09
bf56c71261121149fc8b55799eb0895168d16c8f
23
medium
[ { "filename": "docs/01-app/03-api-reference/03-file-conventions/proxy.mdx", "patch": "@@ -220,7 +220,7 @@ Proxy defaults to using the Node.js runtime. The [`runtime`](/docs/app/api-refer\n \n ## Advanced Proxy flags\n \n-In `v13.1` of Next.js two additional flags were introduced for proxy, `skipMiddlewareUr...
rust-lang/rust
154,200
debuginfo: emit DW_TAG_call_site entries
Set `FlagAllCallsDescribed` on function definition DIEs so LLVM emits DW_TAG_call_site entries, letting debuggers and analysis tools track tail calls. <!-- homu-ignore:start --> <!-- If this PR is related to an unstable feature or an otherwise tracked effort, please link to the relevant tracking issue here. If yo...
null
2f1603077b249819ec6ab6ba2a73b2f5b8079382
null
low
[ { "filename": "compiler/rustc_codegen_llvm/src/debuginfo/mod.rs", "patch": "@@ -471,7 +471,7 @@ impl<'ll, 'tcx> DebugInfoCodegenMethods<'tcx> for CodegenCx<'ll, 'tcx> {\n // FIXME(eddyb) does this need to be separate from `loc.line` for some reason?\n let scope_line = loc.line;\n \n- ...
ollama/ollama
13,574
app/ui: add swift syntax highlighting support
Fixes #13476 Adds Swift as a supported language in the syntax highlighter for code blocks in the chat UI.
null
2e78653ff99536885ab6bbbc00f20dd34d499102
null
low
[ { "filename": "app/ui/app/src/lib/highlighter.ts", "patch": "@@ -147,6 +147,7 @@ export const highlighterPromise = createHighlighter({\n \"c\",\n \"cpp\",\n \"sql\",\n+ \"swift\",\n \"yaml\",\n \"markdown\",\n ],", "additions": 1, "deletions": 0 } ]
electron/electron
50,369
ci: output build cache hit rate as GHA annotation
Backport of #50361 See that PR for details. Notes: none <!-- Please add a one-line description for app developers to read in the release notes, or 'none' if no notes relevant to app developers. Examples and help on special cases: https://github.com/electron/clerk/blob/main/README.md#examples -->
null
16a038502a4ea0c79976be60bcc8f28a49f1ab99
null
low
[ { "filename": "script/build-stats.mjs", "patch": "@@ -32,7 +32,8 @@ async function main () {\n }));\n const hitRate = stats.CacheHit / (stats.Remote + stats.CacheHit + stats.LocalFallback);\n \n- console.log(`Effective cache hit rate: ${(hitRate * 100).toFixed(2)}%`);\n+ const messagePrefix = process....
huggingface/transformers
44,629
Ensure same `dtype` for subconfig when `_from_config`
# What does this PR do? Fixes "auto" dtype when the model is initialized `from_config` It was already fixed for `from_pretrained` in https://github.com/huggingface/transformers/pull/42990 but vLLM creates models with `AutoModel._from_config` which caused the same dtype mismatch error Added a test as well. cc @...
e45078f24038c479a2e734192006804af2e1a21a
9574fb69040fdf93df58463bef3d2f310533be2d
18
medium
[ { "filename": "src/transformers/modeling_utils.py", "patch": "@@ -1454,6 +1454,12 @@ def _from_config(cls, config, **kwargs):\n if isinstance(dtype, str):\n dtype = getattr(torch, dtype)\n \n+ # Set the same `dtype` on all subconfigs to avoid dtype mismatch. When \"auto\" dtype\n+...
nodejs/node
62,204
doc: add throwIfNoEntry version history to fs.stat
Add missing YAML version history entries for the `throwIfNoEntry` option on `fs.stat` and `fsPromises.stat`, added in v25.7.0 via #61178. The synchronous variants (`fs.statSync`, `fsPromises.statSync`) already had entries from #33716. This brings the async/callback and promise-based APIs in line. Verified: `git tag -...
null
ee417909ace0674d96f0f756322fda4a6ce1bc00
null
low
[ { "filename": "doc/api/fs.md", "patch": "@@ -1709,6 +1709,10 @@ Removes files and directories (modeled on the standard POSIX `rm` utility).\n <!-- YAML\n added: v10.0.0\n changes:\n+ - version: v25.7.0\n+ pr-url: https://github.com/nodejs/node/pull/61178\n+ description: Accepts a `throwIfNoEntry` opt...
facebook/react
30,730
[Fizz] handle throwing after abort during render
It is possible to throw after aborting during a render and we were not properly tracking this. We use an AbortSigil to mark whether a rendering task needs to abort but the throw interrupts that and we end up handling an error on the error pathway instead. This change reworks the abort-while-rendering support to be r...
null
7954db9398b9afa962167577a6c6940be3856c39
null
low
[ { "filename": "packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js", "patch": "@@ -8377,6 +8377,48 @@ describe('ReactDOMFizzServer', () => {\n );\n });\n \n+ it('can support throwing after aborting during a render', async () => {\n+ function App() {\n+ return (\n+ <div>\n+ ...
rust-lang/rust
154,515
Notify stdarch maintainers on changes in std_detect
cc @Amanieu @folkertdev @Kobzol It would be nice to be notified when std_detect changes, as it is spiritually a part of stdarch. Also assign @rust-lang/libs to std_detect
null
8c8e0c307456e431e72a4483833c6733b88fc153
null
low
[ { "filename": "triagebot.toml", "patch": "@@ -1073,6 +1073,10 @@ instead.\n \"\"\"\n cc = [\"@Amanieu\", \"@folkertdev\", \"@sayantn\"]\n \n+[mentions.\"library/std_detect\"]\n+message = \"Some changes occurred in `std_detect`\"\n+cc = [\"@Amanieu\", \"@folkertdev\", \"@sayantn\"]\n+\n [mentions.\"library/c...
vercel/next.js
91,912
[test] Deflake instant-navs-devtools
Apparently `timeout` is racing Playwright's IPC communication. I've never seen `*instant` selectors timeout though so I'm just increasing the `*instant` timeout for this specific test. Chances are the problem is some (css) transition that didn't finish in time.
null
861b644d079a5d5a22cce3c1f604ee8dcb5429dc
null
low
[ { "filename": "test/development/app-dir/instant-navs-devtools/instant-navs-devtools.test.ts", "patch": "@@ -38,7 +38,10 @@ describe('instant-nav-panel', () => {\n }\n \n async function clickStartClientNav(browser: Playwright) {\n- await browser.elementByCssInstant('[data-instant-nav-client]').click()...
electron/electron
50,361
ci: output build cache hit rate as GHA annotation
#### Description of Change <!-- Thank you for your Pull Request. Please provide a description above and review the requirements below. Contributors guide: https://github.com/electron/electron/blob/main/CONTRIBUTING.md NOTE: PRS submitted without this template will be automatically closed. --> Small quali...
null
1ad832a4c18a2e7e20b40e0c124395fc5d48ba6d
null
low
[ { "filename": "script/build-stats.mjs", "patch": "@@ -32,7 +32,8 @@ async function main () {\n }));\n const hitRate = stats.CacheHit / (stats.Remote + stats.CacheHit + stats.LocalFallback);\n \n- console.log(`Effective cache hit rate: ${(hitRate * 100).toFixed(2)}%`);\n+ const messagePrefix = process....
huggingface/transformers
44,507
Fix: Conditionally import `torch.distributed.fsdp` in `trainer_seq2seq.py`
# What does this PR do? `torch.distributed.fsdp` is not available in all PyTorch builds (for example, Windows ROCm). Importing it unconditionally at the top level causes an immediate crash with: ``` ModuleNotFoundError: No module named 'torch._C._distributed_c10d'; 'torch._C' is not a package ``` This makes `imp...
null
adc0d9aee00f5b963ddd09bfc84d55ccda19581c
null
low
[ { "filename": "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 @@\...
electron/electron
50,372
ci: don't run auto close for certain circumstances
#### Description of Change - Followup to #50348. That PR unfortunately autoclosed roller PRs since those use a simpler PR description. This PR changes the auto close logic to only fire for fork PRs. Additionally, this PR changes to ignore draft PRs until they are ready for review. <!-- Thank you for your Pull Req...
8e077a09f342844694384adacf1feb769e22c5a0
5b2b9cdeff33b2a3e9296e749c070856b0a3e0e2
3
high
[ { "filename": ".github/workflows/pr-template-check.yml", "patch": "@@ -2,14 +2,13 @@ name: PR Template Check\n \n on:\n pull_request_target:\n- types: [opened, edited]\n- branches:\n- - main\n+ types: [opened, ready_for_review]\n \n permissions: {}\n \n jobs:\n check-pr-template:\n+ if:...
ollama/ollama
13,531
llm: Avoid integer underflow on llama engine memory layout
On the llama engine, when we compute the memory layout, we reserve a buffer to allow for some flexibility for incorrect estimates. This is subtracted from GPU free memory and on GPUs with limited memory, it may underflow. Fixes #13494
abe67acf8a882efd002717e0b81ca5328bac58cb
172b5924af1f08277a7d6133d9bbfd4bd7438f01
21
medium
[ { "filename": "llm/server.go", "patch": "@@ -524,8 +524,13 @@ func (s *llamaServer) Load(ctx context.Context, systemInfo ml.SystemInfo, system\n \t// Use the size of one layer as a buffer\n \tlayers := s.ggml.Tensors().GroupLayers()\n \tif blk0, ok := layers[\"blk.0\"]; ok {\n+\t\tbuffer := blk0.Size() + kv...
nodejs/node
62,178
crypto: default ML-KEM and ML-DSA pkcs8 export to seed-only format
Configure OpenSSL provider parameters to prefer seed-only format when exporting ML-KEM and ML-DSA private keys that contain a seed. Keys without a seed continue to use the private-only (`expandedKey`) format. The `both` format (current default) will not be supported by BoringSSL and Web Cryptography at all and seed-...
null
da5843b91d4347845ab3bedc6b82dcf2348ab477
null
low
[ { "filename": "doc/api/crypto.md", "patch": "@@ -2121,6 +2121,11 @@ type, value, and parameters. This method is not\n <!-- YAML\n added: v11.6.0\n changes:\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/62178\n+ description: ML-KEM and ML-DSA private key `'pkcs8'` export now\n...
facebook/react
34,075
Fix form status reset when component state is updated
Alternate to https://github.com/facebook/react/pull/33351 without the regression highlighted in https://github.com/facebook/react/pull/33351#discussion_r2247272687 Host context is now updated in `pushHostContext` (similar to normal React Context) in addition to during `updateHostComponent`. Closes https://github....
null
8ac5f4eb3601f7381462f8b74ecf24d47259cc20
null
low
[ { "filename": "packages/react-dom/src/__tests__/ReactDOMForm-test.js", "patch": "@@ -2281,4 +2281,64 @@ describe('ReactDOMForm', () => {\n await submit(formRef.current);\n assertLog(['stringified action']);\n });\n+\n+ it('form actions should retain status when nested state changes', async () => ...
huggingface/transformers
44,612
fix: cast to proper dtype in EmbeddingParallel
# What does this PR do? The output function hook in `EmbeddingParallel` casts the mask to fp32. It breaks things for neuron devices. Suggested fix: cast to the outputs' dtype.
745341d8a27e6160caf1a18cdd3e81d876a4a3ad
adc2f16bf1824f7b57c790b4cf3bc48f95ecec69
1
high
[ { "filename": "src/transformers/integrations/tensor_parallel.py", "patch": "@@ -967,7 +967,7 @@ def _prepare_output_fn(self, mod, outputs, device_mesh):\n input_mask = mod._input_mask\n # Use multiplication instead of in-place assignment to preserve gradients\n mask_expan...
rust-lang/rust
154,515
Notify stdarch maintainers on changes in std_detect
cc @Amanieu @folkertdev @Kobzol It would be nice to be notified when std_detect changes, as it is spiritually a part of stdarch. Also assign @rust-lang/libs to std_detect
null
8c8e0c307456e431e72a4483833c6733b88fc153
null
low
[ { "filename": "triagebot.toml", "patch": "@@ -1073,6 +1073,10 @@ instead.\n \"\"\"\n cc = [\"@Amanieu\", \"@folkertdev\", \"@sayantn\"]\n \n+[mentions.\"library/std_detect\"]\n+message = \"Some changes occurred in `std_detect`\"\n+cc = [\"@Amanieu\", \"@folkertdev\", \"@sayantn\"]\n+\n [mentions.\"library/c...
ollama/ollama
13,518
Revert "Omit args and params in ToolFunctions"
Reverts ollama/ollama#13516
0fadeffaee76c50d84f21e81400c606fcc08c4f8
522c11a7632944aa889252e9a044dea6219475d4
1
medium
[ { "filename": "api/types.go", "patch": "@@ -341,7 +341,7 @@ type ToolFunctionParameters struct {\n \tDefs any `json:\"$defs,omitempty\"`\n \tItems any `json:\"items,omitempty\"`\n \tRequired []string `json:\"required,omitempty\"`\n-\tProper...
vercel/next.js
91,840
[create-next-app] Skip interactive prompts when CLI flags are provided
When AI agents run `create-next-app` with explicit flags like `--typescript --tailwind --eslint --app --src-dir`, the CLI still enters interactive mode and prompts for any unspecified options: ``` ➜ npx create-next-app my-app --typescript --tailwind --eslint --app --src-dir --use-pnpm ✔ Would you like to use React Com...
null
9a6346302ab564e2d848ed0c1b77e381cd5246af
null
low
[ { "filename": "packages/create-next-app/index.ts", "patch": "@@ -251,19 +251,45 @@ async function run(): Promise<void> {\n type DisplayConfigItem = {\n key: keyof typeof defaults\n values?: Record<string, string>\n+ flags?: Record<string, string>\n }\n \n const displayConfig: Di...
huggingface/transformers
44,608
Allow to disable stdout hiding for TP
# What does this PR do? By default, `initialize_tensor_parallelism` hides stdout and stderr for ranks > 0. While convenient, this is not perfect for dev and debugging. I suggest we simply add a flag to be able to disable this feature if wanted.
ece0221af84f98ea091797d27066d7600c79151b
745341d8a27e6160caf1a18cdd3e81d876a4a3ad
12
medium
[ { "filename": "src/transformers/integrations/tensor_parallel.py", "patch": "@@ -82,13 +82,6 @@ def initialize_tensor_parallelism(\n index = current_device.current_device()\n tp_device = torch.device(device_type, index)\n device_map = tp_device\n- # Silence outp...
ollama/ollama
13,516
Omit args and params in ToolFunctions
1c094038bcfe0ca40c90273cb7228f8ad34b7417
0fadeffaee76c50d84f21e81400c606fcc08c4f8
2
medium
[ { "filename": "api/types.go", "patch": "@@ -341,7 +341,7 @@ type ToolFunctionParameters struct {\n \tDefs any `json:\"$defs,omitempty\"`\n \tItems any `json:\"items,omitempty\"`\n \tRequired []string `json:\"required,omitempty\"`\n-\tProper...
facebook/react
35,141
[compiler] Consider setter from useOptimistic non-reactive
Closes https://github.com/facebook/react/issues/35138
21f282425c751ee7926416642a0aded88d218623
0972e23908b573faa5beebc0eb1154f792c53b62
13
medium
[ { "filename": "compiler/packages/babel-plugin-react-compiler/src/HIR/Globals.ts", "patch": "@@ -23,6 +23,7 @@ import {\n BuiltInUseInsertionEffectHookId,\n BuiltInUseLayoutEffectHookId,\n BuiltInUseOperatorId,\n+ BuiltInUseOptimisticId,\n BuiltInUseReducerId,\n BuiltInUseRefId,\n BuiltInUseStat...
vercel/next.js
91,379
Turbopack: Only patch lockfile when bindings fails to load
## What? Currently the lockfile patching is always triggered eagerly but it's only awaited when it fails to load. The patching still affects builds that don't need it. This changes that.
43f9017719b9983f1d4a37c0e67d3100c12b7f67
e6bf5f69a23e6b8681dbc9cb59e7c1cdbe3b9b3c
13
medium
[ { "filename": "packages/next/src/build/swc/index.ts", "patch": "@@ -229,16 +229,6 @@ export async function loadBindings(\n }\n \n pendingBindings = new Promise(async (resolve, reject) => {\n- if (!lockfilePatchPromise.cur) {\n- // always run lockfile check once so that it gets patched\n- //...
electron/electron
50,370
ci: output build cache hit rate as GHA annotation
Backport of #50361 See that PR for details. Notes: none <!-- Please add a one-line description for app developers to read in the release notes, or 'none' if no notes relevant to app developers. Examples and help on special cases: https://github.com/electron/clerk/blob/main/README.md#examples -->
null
9a7381a328afa90eff60dd6e2cd2c5bba1e0b51a
null
low
[ { "filename": "script/build-stats.mjs", "patch": "@@ -32,7 +32,8 @@ async function main () {\n }));\n const hitRate = stats.CacheHit / (stats.Remote + stats.CacheHit + stats.LocalFallback);\n \n- console.log(`Effective cache hit rate: ${(hitRate * 100).toFixed(2)}%`);\n+ const messagePrefix = process....
nodejs/node
62,189
build: skip dockit on IBMi
Similar to AIX, IBMi build was timing out after this [commit](https://github.com/nodejs/node/commit/76215dc9938dd151ff629d20546431be8d53f435#diff-76ed074a9305c04054cdebb9e9aad2d818052b07091de1f20cad0bbac34ffb52) Link for the build - https://ci.nodejs.org/job/node-test-commit-ibmi/nodes=ibmi74-ppc64/2252/console ```...
null
66a687f2bed2eb39ad82fc078596f5bbc77c1787
null
low
[ { "filename": "Makefile", "patch": "@@ -838,6 +838,10 @@ out/doc/api: doc/api\n # Using grouped targets (&:) so Make knows one command produces all outputs\n ifeq ($(OSTYPE),aix)\n # TODO(@nodejs/web-infra): AIX is currently hanging during HTML minification\n+$(apidocs_html) $(apidocs_json) out/doc/api/all....
rust-lang/rust
154,453
Fix ice in rustdoc of private reexport
Fixes rust-lang/rust#154383 The root cause is rustdoc could still try to resolve links for source docs that resolver did not cache in `ResolveDocLinks::Exported` mode. The test case will not crash with `--document-private-items` option, which will use `ResolveDocLinks::All`. The fix makes rustdoc skip link re...
null
0ba684b705563086795ddc0baa69859c02505023
null
low
[ { "filename": "src/librustdoc/passes/collect_intra_doc_links.rs", "patch": "@@ -1067,17 +1067,27 @@ impl LinkCollector<'_, '_> {\n #[instrument(level = \"debug\", skip_all)]\n fn resolve_links(&mut self, item: &Item) {\n let tcx = self.cx.tcx;\n- if !self.cx.document_private()\n- ...
ollama/ollama
13,508
types: add nested property support for tools
null
1c094038bcfe0ca40c90273cb7228f8ad34b7417
null
low
[ { "filename": "api/types.go", "patch": "@@ -283,11 +283,12 @@ func (pt PropertyType) String() string {\n }\n \n type ToolProperty struct {\n-\tAnyOf []ToolProperty `json:\"anyOf,omitempty\"`\n-\tType PropertyType `json:\"type,omitempty\"`\n-\tItems any `json:\"items,omitempty...
huggingface/transformers
44,498
feat: add neuron in tensor parallelism initialization
# What does this PR do? Add the `neuron` backend for initialization in TP.
null
ece0221af84f98ea091797d27066d7600c79151b
null
low
[ { "filename": "src/transformers/integrations/tensor_parallel.py", "patch": "@@ -63,7 +63,7 @@ def initialize_tensor_parallelism(\n local_rank = int(os.environ[\"LOCAL_RANK\"])\n world_size = int(os.environ[\"WORLD_SIZE\"])\n \n- backend_map = {\"cuda\": \"nccl\...
nodejs/node
62,188
repl: add customizable error handling
Whether or not an exception should be handled when it was thrown in the REPL's context but the REPL is already closed is something that will depend on the details of the specific REPL instance's use case. Adding this option lets the REPL's creator control the details of this behavior. This resolves a TODO recentl...
bd3cba5633e8a363407747bed4123a8c695076fa
5e3951e0add844c3c4ef73c5b4456b162491ef60
20
medium
[ { "filename": "doc/api/repl.md", "patch": "@@ -709,6 +709,9 @@ npx codemod@latest @nodejs/repl-builtin-modules\n <!-- YAML\n added: v0.1.91\n changes:\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/62188\n+ description: The `handleError` parameter has been added.\n - version...
facebook/react
35,148
[compiler][snap] Support pattern of files to test as CLI argument
I've been trying out LLM agents for compiler development, and one thing i found is that the agent naturally wants to run `yarn snap <pattern>` to test a specific fixture, and I want to be able to tell it (directly or in rules/skills) to do this in order to get the debug output from all the compiler passes. Agents can ...
null
ea4899e13f9e29815321e3cac70fa08bb8ed790a
null
low
[ { "filename": "compiler/packages/snap/src/fixture-utils.ts", "patch": "@@ -44,6 +44,21 @@ function stripExtension(filename: string, extensions: Array<string>): string {\n return filename;\n }\n \n+/**\n+ * Strip all extensions from a filename\n+ * e.g., \"foo.expect.md\" -> \"foo\"\n+ */\n+function stripA...
vercel/next.js
91,380
Use charCodeAt for normalizePathTrailingSlash
## What? Using `charCodeAt` is faster than startWith for this case.
null
382dbb8206c8e6287afbd54020ad6f970778f890
null
low
[ { "filename": "packages/next/src/client/normalize-trailing-slash.ts", "patch": "@@ -6,7 +6,8 @@ import { parsePath } from '../shared/lib/router/utils/parse-path'\n * in `next.config.js`.\n */\n export const normalizePathTrailingSlash = (path: string) => {\n- if (!path.startsWith('/') || process.env.__NEX...
ollama/ollama
13,505
revert granite-embedding
903b1fc97f37fda25fd233ed853355acfc0f63cf
f6a016f49dddc1468b4622681af0e1cb0a65f92f
3
high
[ { "filename": "model/models/bert/embed.go", "patch": "@@ -157,8 +157,6 @@ func New(c fs.Config) (model.Model, error) {\n \tswitch c.String(\"tokenizer.ggml.model\", \"bert\") {\n \tcase \"bert\":\n \t\tprocessor = model.NewWordPiece(vocab, true)\n-\tcase \"gpt2\":\n-\t\tprocessor = model.NewBytePairEncoding...
electron/electron
50,371
ci: output build cache hit rate as GHA annotation
Backport of #50361 See that PR for details. Notes: none <!-- Please add a one-line description for app developers to read in the release notes, or 'none' if no notes relevant to app developers. Examples and help on special cases: https://github.com/electron/clerk/blob/main/README.md#examples -->
null
49a9efa76408868d95260c8d2e12e63aaecf289f
null
low
[ { "filename": "script/build-stats.mjs", "patch": "@@ -32,7 +32,8 @@ async function main () {\n }));\n const hitRate = stats.CacheHit / (stats.Remote + stats.CacheHit + stats.LocalFallback);\n \n- console.log(`Effective cache hit rate: ${(hitRate * 100).toFixed(2)}%`);\n+ const messagePrefix = process....
facebook/react
35,147
[compiler] Improve setState-in-effects rule to account for ref-gated conditionals
Conditionally calling setState in an effect is sometimes necessary, but should generally follow the pattern of using a "previous vaue" ref to manually compare and ensure that the setState is idempotent. See fixture for an example. --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com...
21f282425c751ee7926416642a0aded88d218623
b946a249b560a2d3afe1a1c8553d5491b1767cb3
9
medium
[ { "filename": "compiler/packages/babel-plugin-react-compiler/src/HIR/Environment.ts", "patch": "@@ -672,9 +672,14 @@ export const EnvironmentConfigSchema = z.object({\n validateNoDynamicallyCreatedComponentsOrHooks: z.boolean().default(false),\n \n /**\n- * When enabled, allows setState calls in effec...
rust-lang/rust
154,472
resolve: Never lookup glob names in modules from other crates
This is basically rust-lang/rust#151211, but with the check moved one level above and slightly more work skipped. rust-lang/rust#151211 showed small, but very consistent perf improvements (see "Show non-relevant results"), but I didn't notice back then. (This change logically falls into my current work on splitting...
null
3f3c6f45dc68eb71d1e01ae716bad4da164dfbf1
null
low
[ { "filename": "compiler/rustc_resolve/src/ident.rs", "patch": "@@ -638,6 +638,13 @@ impl<'ra, 'tcx> Resolver<'ra, 'tcx> {\n Err(ControlFlow::Break(..)) => return decl,\n }\n }\n+ Scope::ModuleGlobs(module, _)\n+ if let ModuleKind::Def...
nodejs/node
58,552
meta: bump github/codeql-action from 3.28.16 to 3.28.18
Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3.28.16 to 3.28.18. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/github/codeql-action/releases">github/codeql-action's releases</a>.</em></p> <blockquote> <h2>v3.28.18</h2> <h1>CodeQL Action Changelo...
52f387e6e00425888df65409d37bb380f443d01b
ff8c4091d503365570eaa0f3bb7c79db55bf56ae
2
medium
[ { "filename": ".github/workflows/codeql.yml", "patch": "@@ -27,15 +27,15 @@ jobs:\n \n # Initializes the CodeQL tools for scanning.\n - name: Initialize CodeQL\n- uses: github/codeql-action/init@28deaeda66b76a05916b6923827895f2b14ab387 # v3.28.16\n+ uses: github/codeql-action/init...
huggingface/transformers
44,638
Fix output capturing for Backbones
# What does this PR do? As per the title. Supersedes https://github.com/huggingface/transformers/pull/44614. This one is the result of a long debugging session and discussion with @vasqu. The issue is as follow: - Backbone ALWAYS need to capture their outputs - In `test_sdpa_can_compile_dynamic`, we EXTERNALLY c...
null
45d8d93659fe08cb0530f37a3a519d1cef663687
null
low
[ { "filename": "src/transformers/backbone_utils.py", "patch": "@@ -20,6 +20,7 @@\n from huggingface_hub import repo_exists\n \n from .utils import logging\n+from .utils.output_capturing import maybe_install_capturing_hooks\n \n \n logger = logging.get_logger(__name__)\n@@ -181,6 +182,18 @@ def __init__(self,...
vercel/next.js
91,381
Perf: Use headers object directly in checkIsOnDemandRevalidate
## What? Converting from `req.headers` to `Headers` is expensive. Here it's only used to check/read headers only, so directly using the object when it's available is better.
null
ff7d03989c06d73f1055e9fa2393205454c60812
null
low
[ { "filename": "packages/next/src/server/api-utils/index.ts", "patch": "@@ -1,4 +1,4 @@\n-import type { IncomingMessage } from 'http'\n+import type { IncomingHttpHeaders, IncomingMessage } from 'http'\n import type { BaseNextRequest } from '../base-http'\n import type { CookieSerializeOptions } from 'next/di...
ollama/ollama
13,502
remove unnecessary code
slog is already lazily evaluated so this code is completely redundant
null
2dd029de129663f5529bbf82d22e844d46e46b6a
null
low
[ { "filename": "model/bytepairencoding.go", "patch": "@@ -2,9 +2,7 @@ package model\n \n import (\n \t\"cmp\"\n-\t\"fmt\"\n \t\"iter\"\n-\t\"log/slog\"\n \t\"slices\"\n \t\"strings\"\n \n@@ -245,14 +243,6 @@ func (bpe BytePairEncoding) Encode(s string, addSpecial bool) ([]int32, error) {\n \treturn ids, nil\...
electron/electron
50,368
ci: output build cache hit rate as GHA annotation
Backport of #50361 See that PR for details. Notes: none <!-- Please add a one-line description for app developers to read in the release notes, or 'none' if no notes relevant to app developers. Examples and help on special cases: https://github.com/electron/clerk/blob/main/README.md#examples -->
null
a4955396e18cc64a83bc5e2805e6b98ec092e1ed
null
low
[ { "filename": "script/build-stats.mjs", "patch": "@@ -32,7 +32,8 @@ async function main () {\n }));\n const hitRate = stats.CacheHit / (stats.Remote + stats.CacheHit + stats.LocalFallback);\n \n- console.log(`Effective cache hit rate: ${(hitRate * 100).toFixed(2)}%`);\n+ const messagePrefix = process....