repo stringclasses 15
values | fix_commit stringlengths 40 40 | buggy_commit stringlengths 40 40 | message stringlengths 3 64.3k | files listlengths 1 300 | timestamp timestamp[s]date 2013-03-13 20:45:00 2026-04-11 07:48:46 |
|---|---|---|---|---|---|
ollama/ollama | 2e78653ff99536885ab6bbbc00f20dd34d499102 | f5f74e12c19f2a4e19119dd962c0845e37dbb74e | app/ui: add swift syntax highlighting support (#13574)
Fixes #13476
Signed-off-by: majiayu000 <1835304752@qq.com> | [
{
"path": "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,
"language": "Unknown"
}
] | 2026-01-03T07:12:08 |
golang/go | 1901e2647f5724df38e9a9a3756dad01704bc783 | 5f3dabbb79fb3dc8eea9a5050557e9241793dce3 | test: add test for findTypeLoop with symbols from other packages
CL 274294 improved findTypeLoop but also fixed a new found bug on master
branch. This Cl adds test cases for this.
Updates #44266
Change-Id: Ie4a07a3487758a1e4ad2f2847dcde975b10d2a77
Reviewed-on: https://go-review.googlesource.com/c/go/+/292889
Run-Try... | [
{
"path": "test/fixedbugs/issue44266.go",
"patch": "@@ -0,0 +1,23 @@\n+// errorcheck\n+\n+// Copyright 2021 The Go Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style\n+// license that can be found in the LICENSE file.\n+\n+package p\n+\n+import \"io\"\n+\n+type T1 interfac... | 2021-02-16T18:14:19 |
huggingface/transformers | fa8763ce172fff0ae38280bf8cd7428c4921e0ed | 4bc39de5c34d4ffed42af4ddbf7bce0ed8a8bba6 | Fixed typo of 'avilable' in prompts.py (#35145) | [
{
"path": "src/transformers/agents/prompts.py",
"patch": "@@ -395,7 +395,7 @@ def download_prompt(prompt_or_repo_id, agent_name, mode=\"run\"):\n SYSTEM_PROMPT_PLAN = \"\"\"You are a world expert at making efficient plans to solve any task using a set of carefully crafted tools.\n \n Now for the given task,... | 2024-12-09T16:40:32 |
nodejs/node | 67bbc841850b9652a489754368f683e5089c717b | 5579118521b8aec87962c1b76f040f9a46316381 | doc: update to adding listens on SIGUSR1
Updated the doc/api/process.md documentation to reflect that
listening on SIGUSR1 could impact the debugger.
Fixes: https://github.com/nodejs/node/issues/19619
PR-URL: https://github.com/nodejs/node/pull/19709
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Trivikram ... | [
{
"path": "doc/api/process.md",
"patch": "@@ -366,7 +366,7 @@ process.on('SIGTERM', handle);\n ```\n \n * `SIGUSR1` is reserved by Node.js to start the [debugger][]. It's possible to\n- install a listener but doing so will _not_ stop the debugger from starting.\n+ install a listener but doing so might int... | 2018-03-30T21:49:57 |
vercel/next.js | d2681ecc7453f9093972a7694b69e3ad97539e13 | 5a132bab5542e0950f75ff7c951f41a1ee05d26d | Revamp errors and logging (#467)
This updates all of our Issues to have a consistent display, and changes the way we display source code and debug-level details. In particular, this makes the following changes:
1. Cleans up the title/description of existing issues
- We were filling the `title` field with too much ... | [
{
"path": "crates/next-core/src/nodejs/issue.rs",
"patch": "@@ -1,5 +1,5 @@\n use anyhow::Result;\n-use turbo_tasks::{primitives::StringVc, ValueToString};\n+use turbo_tasks::primitives::StringVc;\n use turbo_tasks_fs::FileSystemPathVc;\n use turbopack_core::issue::{Issue, IssueVc};\n \n@@ -13,11 +13,8 @@ p... | 2022-10-10T06:24:54 |
ollama/ollama | 18fdcc94e55d8ca393be9d01b30246dbbca6f6af | 7ad036992f3f31cba3c567f7054ad4aa77e01c1a | docs: fix broken .md links and render issues (#13550) | [
{
"path": "docs/faq.mdx",
"patch": "@@ -14,11 +14,11 @@ curl -fsSL https://ollama.com/install.sh | sh\n \n ## How can I view the logs?\n \n-Review the [Troubleshooting](./troubleshooting.md) docs for more about using logs.\n+Review the [Troubleshooting](./troubleshooting) docs for more about using logs.\n \... | 2025-12-23T17:44:55 |
golang/go | 5f3dabbb79fb3dc8eea9a5050557e9241793dce3 | 7af821a661be57cdd13212695cd6c1095487f2b4 | cmd/compile: fix import of functions of multiple nested closure
For import of functions with closures, the connections among closure
variables are constructed on-the-fly via CaptureName(). For multiple
nested closures, we need to temporarily set r.curfn to each closure we
construct, so that the processing of closure v... | [
{
"path": "src/cmd/compile/internal/typecheck/iimport.go",
"patch": "@@ -986,15 +986,19 @@ func (r *importReader) node() ir.Node {\n \t\tfn.ClosureVars = cvars\n \t\tr.allClosureVars = append(r.allClosureVars, cvars...)\n \n-\t\tfn.Dcl = r.readFuncDcls(fn)\n-\t\tbody := r.stmtList()\n+\t\tfn.Inl = &ir.Inlin... | 2021-02-19T17:40:35 |
huggingface/transformers | 4bc39de5c34d4ffed42af4ddbf7bce0ed8a8bba6 | 8e806a336f53af4603fcc6868e6abd9058fbb8fd | Super tiny fix logging message (#35132)
Update integration_utils.py | [
{
"path": "src/transformers/integrations/integration_utils.py",
"patch": "@@ -1235,7 +1235,7 @@ def setup(self, args, state, model):\n \n logger.debug(\n f\"MLflow experiment_name={self._experiment_name}, run_name={args.run_name}, nested={self._nested_run},\"\n- f\" tags={self... | 2024-12-09T16:31:32 |
vercel/next.js | e933e1d211ea16c349898e141d9733b4cd06e3d8 | 425490c2b14db07f07f7f14e264c2109b714b4e9 | Load `beforeInteractive` scripts properly without blocking hydration (#41164)
This PR ensures that for the app directory, `beforeInteractive`, `afterInteractive` and `lazyOnload` scripts via `next/script` are properly supported.
For both `beforeInteractive` and `afterInteractive` scripts, a preload link tag needs to ... | [
{
"path": "packages/next/client/app-bootstrap.js",
"patch": "@@ -0,0 +1,61 @@\n+/**\n+ * Before starting the Next.js runtime and requiring any module, we need to make\n+ * sure the following scripts are executed in the correct order:\n+ * - Polyfills\n+ * - next/script with `beforeInteractive` strategy\n+ *... | 2022-10-09T15:08:51 |
ollama/ollama | 172b5924af1f08277a7d6133d9bbfd4bd7438f01 | 8852220f59c12cf3165f5643d38453ffecbb722d | 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 | [
{
"path": "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[0]\... | 2025-12-19T23:10:55 |
huggingface/transformers | 7238387f67ab89c41502414e552c703a362d3bf5 | de8a0b7547451f8f7ef2c0ac1f338ba77c614cec | Fix typo in EETQ Tests (#35160)
fix | [
{
"path": "tests/quantization/eetq_integration/test_eetq.py",
"patch": "@@ -119,7 +119,7 @@ def test_quantized_model_conversion(self):\n \n self.assertEqual(nb_linears - 1, nb_eetq_linear)\n \n- # Try with `linear_weights_not_to_quantize`\n+ # Try with `modules_to_not_convert`\n ... | 2024-12-09T13:13:36 |
golang/go | 1126bbb82ab2f81dcb33df696a1bb601a98d3174 | 1678829d9555761c0fa6571fd3bcaec016add3d2 | go/parser: return ast.BadExpr for missing index operands
The parser was returning the indexed operand when a slice or index or
instance expression was missing any index arguments (as in the
expression `a[]`). This can result in returning an *ast.Ident for the
LHS of the (invalid) assignment `a[] = ...` -- in this case... | [
{
"path": "src/go/parser/parser.go",
"patch": "@@ -1485,8 +1485,9 @@ func (p *parser) parseIndexOrSliceOrInstance(x ast.Expr) ast.Expr {\n \t\t// empty index, slice or index expressions are not permitted;\n \t\t// accept them for parsing tolerance, but complain\n \t\tp.errorExpected(p.pos, \"operand\")\n+\t... | 2021-02-22T20:39:00 |
nodejs/node | 64211405dab824a570e52d000891c49415cc42b8 | 88773af540a36b23a47af0d6c4ce03b8cc3ef9aa | deps: ICU 61.1 bump
- Update to released ICU 61.1, including:
- CLDR 33 (many new languages and data improvements)
- Many small API additions, improvements, and bug fixes
- note: 'icu::' namespace is no longer used by default
(Necessated https://github.com/nodejs/node/pull/18667 )
PR-URL: https://github.com/... | [
{
"path": "LICENSE",
"patch": "@@ -122,8 +122,8 @@ The externally maintained libraries used by Node.js are:\n \"\"\"\n COPYRIGHT AND PERMISSION NOTICE (ICU 58 and later)\n \n- Copyright © 1991-2017 Unicode, Inc. All rights reserved.\n- Distributed under the Terms of Use in http://www.unicode.org... | 2018-03-26T22:29:02 |
vercel/next.js | 9427514d69a819fd3493a089e6ec8ea7be37d614 | c3b6b0f790b69f83960cc1c891ac9b29e80cbe42 | prepare css for different types and transforms (vercel/turbo#477)
following the design of ecmascript parse and modules
fix a few nitpicks | [
{
"path": "packages/next-swc/crates/next-core/src/server_render/asset.rs",
"patch": "@@ -5,7 +5,8 @@ use turbo_tasks::{\n };\n use turbo_tasks_fs::FileSystemPathVc;\n use turbopack::ecmascript::{\n- EcmascriptInputTransform, EcmascriptInputTransformsVc, EcmascriptModuleAssetVc, ModuleAssetType,\n+ Ecm... | 2022-10-09T11:47:33 |
huggingface/transformers | 1ccca8f48c493a4804921da66f65023e3f9c8d9c | c8c8dffbe45ebef0a8dba4a51024e5e5e498596b | Fix GA loss bugs and add unit test (#35121)
* fix GA bugs and add unit test
* narrow down model loss unit test diff gap
* format code to make ruff happy
* send num_items_in_batch argument to decoder
* fix GA loss bug in BertLMHeadModel
* use TinyStories-33M to narrow down diff gap
* fotmat code
* missing .confi... | [
{
"path": "src/transformers/models/bert/modeling_bert.py",
"patch": "@@ -1325,6 +1325,7 @@ def forward(\n output_attentions: Optional[bool] = None,\n output_hidden_states: Optional[bool] = None,\n return_dict: Optional[bool] = None,\n+ **loss_kwargs,\n ) -> Union[Tuple[tor... | 2024-12-09T08:57:41 |
ollama/ollama | 971d62595a14e4b349bb18d7980662cec7080e8c | ffbe8e076df9e2e67aab016ea3ec64822369b725 | fix: qwen2.5 vl rope (#13486)
* qwen25vl: bump max pixels
* qwen25vl: mrope
fix qwen2.5vl window
* qwen25vl: vision rope | [
{
"path": "ml/backend/ggml/ggml.go",
"patch": "@@ -1534,7 +1534,8 @@ func (t *Tensor) RoPE(ctx ml.Context, positions ml.Tensor, ropeDim int, ropeBase\n \t\t\tunsafe.SliceData(mropeSections),\n \t\t\tC.int(opts.Type),\n \t\t\tcmp.Or(C.int(opts.YaRN.OriginalContextLength), 128<<10),\n-\t\t\tC.float(ropeBase),... | 2025-12-16T01:30:33 |
golang/go | 1678829d9555761c0fa6571fd3bcaec016add3d2 | 094048b93845c08e0f2db8639764f9564e64835b | cmd/compile: correctly use X15 to zero frame
In CL 288093 we reserve X15 as the zero register and use that to
zero values. It only covered zeroing generated in SSA but missed
zeroing the frame generated late in the compilation. The latter
still uses X0, but now DUFFZERO expects X15, so it doesn't
actually zero the fra... | [
{
"path": "src/cmd/compile/internal/amd64/ggen.go",
"patch": "@@ -56,8 +56,8 @@ func dzDI(b int64) int64 {\n \n func zerorange(pp *objw.Progs, p *obj.Prog, off, cnt int64, state *uint32) *obj.Prog {\n \tconst (\n-\t\tax = 1 << iota\n-\t\tx0\n+\t\tax = 1 << iota // if AX is already zeroed.\n+\t\tx15 ... | 2021-02-22T22:43:08 |
nodejs/node | 88773af540a36b23a47af0d6c4ce03b8cc3ef9aa | 7238b927737d66769db8d70dea3fa6a8f2b09e0e | doc: fix lint nits in COLLABORATOR_GUIDE.md
PR-URL: https://github.com/nodejs/node/pull/19762
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Jan Krems <jan.krems@gmail.com> | [
{
"path": "COLLABORATOR_GUIDE.md",
"patch": "@@ -408,7 +408,7 @@ recommended but not required.\n \n ### Deprecations\n \n-__Deprecation__ refers to the identification of Public APIs that should no\n+**Deprecation** refers to the identification of Public APIs that should no\n longer be used.\n \n Node.js use... | 2018-04-02T22:52:13 |
vercel/next.js | 5a132bab5542e0950f75ff7c951f41a1ee05d26d | ebd64c379518307893a8af5068101cb48f4e4894 | prepare css for different types and transforms (#477)
following the design of ecmascript parse and modules
fix a few nitpicks | [
{
"path": "crates/next-core/src/server_render/asset.rs",
"patch": "@@ -5,7 +5,8 @@ use turbo_tasks::{\n };\n use turbo_tasks_fs::FileSystemPathVc;\n use turbopack::ecmascript::{\n- EcmascriptInputTransform, EcmascriptInputTransformsVc, EcmascriptModuleAssetVc, ModuleAssetType,\n+ EcmascriptInputTransf... | 2022-10-09T11:47:33 |
huggingface/transformers | 15ab310c3a5318530b15f83ac5bf57c3718d1b2f | 98e8062df3cf82b367e8a243963e4afb0d9d3407 | Fix private forked repo. CI (#35114)
fix
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": ".circleci/create_circleci_config.py",
"patch": "@@ -133,7 +133,7 @@ def to_dict(self):\n \"command\": \"\"\"dpkg-query --show --showformat='${Installed-Size}\\t${Package}\\n' | sort -rh | head -25 | sort -h | awk '{ package=$2; sub(\".*/\", \"\", package); printf(\"%.5f GB %s\\n\"... | 2024-12-06T11:03:31 |
ollama/ollama | aacd1cb3947d9a9e2c7be4ad52b15a03984cac2d | e3731fb1605dd0949766b9d209427c62fe588bf8 | fix: define GGML_VERSION variables for proper SOVERSION expansion (#13469)
The ggml/src/CMakeLists.txt uses GGML_VERSION_MAJOR for the shared
library SOVERSION property, but these variables were not defined when
building from ollama's CMakeLists.txt.
This caused libggml-base.so to be named with a literal "SOVERSION"
... | [
{
"path": "CMakeLists.txt",
"patch": "@@ -54,6 +54,13 @@ include_directories(${CMAKE_CURRENT_SOURCE_DIR}/ml/backend/ggml/ggml/src/ggml-cp\n \n add_compile_definitions(NDEBUG GGML_VERSION=0x0 GGML_COMMIT=0x0)\n \n+# Define GGML version variables for shared library SOVERSION\n+# These are required by ggml/src... | 2025-12-15T22:42:15 |
golang/go | 1391d4142cab5e5b83ca3362be67af80ba2f95e8 | 04903476fe6a1bba4ed751f5e234bccb5a651a9b | fix typo in issue16760.go
fix typo in issue16760.go, unconditinally -> unconditionally
Change-Id: I3a04fbcb23395c562821b35bc2d81cfaec0bc1ed
GitHub-Last-Rev: 5ce52a3deb52826bc28022776c3fe3ffa7376084
GitHub-Pull-Request: golang/go#44495
Reviewed-on: https://go-review.googlesource.com/c/go/+/294969
Trust: Alberto Doniz... | [
{
"path": "test/fixedbugs/issue16760.go",
"patch": "@@ -6,7 +6,7 @@\n \n // Make sure we don't start marshaling (writing to the stack)\n // arguments until those arguments are evaluated and known\n-// not to unconditinally panic. If they unconditionally panic,\n+// not to unconditionally panic. If they unco... | 2021-02-22T13:30:03 |
rust-lang/rust | b7bc8d08b5dfd547b576471744be5025b9c77925 | 9c5cdfe30addd2aa583dd1357645daf8bc6cbd60 | internal: fix panic in `view_crate_graph` | [
{
"path": "src/tools/rust-analyzer/crates/ide/src/view_crate_graph.rs",
"patch": "@@ -1,4 +1,5 @@\n use dot::{Id, LabelText};\n+use ide_db::base_db::salsa::plumbing::AsId;\n use ide_db::{\n FxHashMap, RootDatabase,\n base_db::{\n@@ -78,7 +79,8 @@ impl<'a> dot::Labeller<'a, Crate, Edge<'a>> for DotCr... | 2025-04-01T16:47:11 |
nodejs/node | cd5f353405842329fc44d25d677735a8538d6c43 | 4d749e105282604f20e49b311a27c960473cfc2f | lib: make isStackOverflowError() engine-agnostic
Assumption that stack overflow exception has name == "RangeError" is
v8-specific. Updated logic to dynamically capture error name when
capturing error message.
PR-URL: https://github.com/nodejs/node/pull/19705
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: ... | [
{
"path": "lib/internal/errors.js",
"patch": "@@ -572,25 +572,29 @@ function dnsException(err, syscall, hostname) {\n return ex;\n }\n \n-let MAX_STACK_MESSAGE;\n+let maxStack_ErrorName;\n+let maxStack_ErrorMessage;\n /**\n- * Returns true if `err` is a `RangeError` with an engine-specific message.\n+ * R... | 2018-03-30T17:07:49 |
huggingface/transformers | a5bb52847139bf6ad7489ac62a5fb6d0fa3d2ec6 | e27465c8011998c051403b22b7ccceca15de37db | Fix signatures for processing kwargs (#35105)
* add conversion script
* remove pg2 refs
* fixup style
* small update
* get correct scaling
* add back missing bos
* fix missing config keys
* might revert this pos_embeddings
* fixup 9b config
* fix 9b
* fixup 9b conversion for good + add ba... | [
{
"path": "src/transformers/models/paligemma/convert_paligemma2_weights_to_hf.py",
"patch": "@@ -0,0 +1,415 @@\n+# coding=utf-8\n+# Copyright 2024 The HuggingFace Inc. team.\n+#\n+# Licensed under the Apache License, Version 2.0 (the \"License\");\n+# you may not use this file except in compliance with the ... | 2024-12-05T17:15:48 |
vercel/next.js | f7a7c3fafaa52fadd27bcb0712a0a1ad2d5ac68d | 52a69e6117c9683c7e1152a7849062731d721d9c | Handle `as` on next/link with new router (#41285)
Kudos @dferber90 who found this issue. Added a test and handled it gracefully for now. Keep in mind the behavior can't be 1-1 so it takes the `as` as the `href` value given that masking of parameters in this way is no longer supported, that will be superseded by parall... | [
{
"path": "packages/next/client/link.tsx",
"patch": "@@ -182,7 +182,10 @@ function linkClicked(\n // If `beforePopState` doesn't exist on the router it's the AppRouter.\n const method: keyof AppRouterInstance = replace ? 'replace' : 'push'\n \n- router[method](href, { forceOptimisticNavigat... | 2022-10-08T17:42:55 |
rust-lang/rust | 8f04875e980235590d2d1af43b9c4f16453fd330 | 8408e2810b5e670b6ae82b72e4e6770363e90f78 | fix: don't drop references with more than one definition.
Implicit field references during struct initialization were
being dropped because get_definition was returning None because
there were multiple definitions.
This adds a new helper, `get_defintions`, that supports returning
more than one definition for a given ... | [
{
"path": "src/tools/rust-analyzer/crates/ide/src/static_index.rs",
"patch": "@@ -1,17 +1,17 @@\n //! This module provides `StaticIndex` which is used for powering\n //! read-only code browsers and emitting LSIF\n \n+use arrayvec::ArrayVec;\n use hir::{Crate, HirFileIdExt, Module, Semantics, db::HirDatabase... | 2025-04-04T00:45:12 |
ollama/ollama | e3731fb1605dd0949766b9d209427c62fe588bf8 | 8dbc9e7b68eedcffb44ad2b29b4bdacce5f936ac | renderers: add olmo3.1 and olmo3 fixes (#13447) | [
{
"path": "model/renderers/olmo3.go",
"patch": "@@ -10,12 +10,15 @@ import (\n )\n \n const (\n-\tolmo3DefaultSystemMessage = \"You are a helpful function-calling AI assistant. \"\n-\tolmo3NoFunctionsMessage = \"You do not currently have access to any functions. \"\n-\tolmo3WithFunctionsMessage = \"You ar... | 2025-12-15T19:26:43 |
golang/go | 04903476fe6a1bba4ed751f5e234bccb5a651a9b | 87e984ab2988afccdb75a4c235b318ec6be46e6a | cmd/compile: reject some rare looping CFGs in shortcircuit
One CFGs that shortcircuit looks for is:
p q
\ /
b
/ \
t u
The test case creates a CFG like that in which p == t.
That caused the compiler to generate a (short-lived) invalid phi value.
Fix this with a relatively big hammer: Disallow single-length ... | [
{
"path": "src/cmd/compile/internal/ssa/shortcircuit.go",
"patch": "@@ -266,6 +266,13 @@ func shortcircuitPhiPlan(b *Block, ctl *Value, cidx int, ti int64) func(*Value,\n \t// u is the \"untaken\" branch: the successor we never go to when coming in from p.\n \tu := b.Succs[1^ti].b\n \n+\t// In the following... | 2021-02-22T19:55:14 |
huggingface/transformers | e27465c8011998c051403b22b7ccceca15de37db | b0a51e5cff3e2e2fddc0b7cd9ff7634134c9819f | Adaptive dynamic number of speculative tokens (#34156)
* initial commit
* update strategy
* add tradeoff FPR TPR with cost
* all probs
* fix
* fix
* fix style
* Update src/transformers/generation/configuration_utils.py
shorter docstring
Co-authored-by: Joao Gante <joaofranciscocardosogante@gmail.com>
* imp... | [
{
"path": "docs/source/en/generation_strategies.md",
"patch": "@@ -456,6 +456,8 @@ just like in multinomial sampling. However, in assisted decoding, reducing the t\n ['Alice and Bob, a couple of friends of mine, who are both in the same office as']\n ```\n \n+We recommend to install `scikit-learn` library t... | 2024-12-05T16:07:33 |
nodejs/node | 4d749e105282604f20e49b311a27c960473cfc2f | a9a1f12b4212c0ea81a04bf2eb56efe6f8a4699b | test: fix flaky test-cluster-send-handle-twice
Use `common.mustCall()` to make sure connection callback runs exactly
once.
Use `connect` event instead of `setTimeout` to avoid test failing if
timer runs before client is connected.
Remove `cluster.worker.disconnect()` after `assert.fail()`. It is
unreachable code tha... | [
{
"path": "test/parallel/test-cluster-send-handle-twice.js",
"patch": "@@ -40,21 +40,20 @@ if (cluster.isMaster) {\n }));\n }\n } else {\n- const server = net.createServer(function(socket) {\n+ const server = net.createServer(common.mustCall((socket) => {\n process.send('send-handle-1', socket);... | 2018-03-30T13:15:32 |
vercel/next.js | be7b10dee5368ce7e9c26524bf12a4ee2894f45b | 6eefc9de561b17eeeb215d0605dc9796ea65af74 | Recover from font loader error in dev (#41251)
Check that the module has assets. This might not always be the case in
app dev if there was an error. Test added to make sure it recovers
correctly.
## Bug
- [ ] Related issues linked using `fixes #number`
- [ ] Integration tests added
- [ ] Errors have a helpfu... | [
{
"path": "packages/next/build/webpack/plugins/font-loader-manifest-plugin.ts",
"patch": "@@ -54,6 +54,7 @@ export class FontLoaderManifestPlugin {\n \n if (this.appDirEnabled) {\n for (const mod of fontLoaderModules) {\n+ if (!mod.buildInfo?.assets) continue\n ... | 2022-10-07T23:53:24 |
rust-lang/rust | e2c8ae96f6814ac80cdf3952a881da51867b73c8 | eb00d966a0bb3124e4ac75993177d999e4c1116d | fix windows_join_multiple | [
{
"path": "src/tools/miri/tests/pass-dep/concurrency/windows_join_multiple.rs",
"patch": "@@ -9,6 +9,10 @@ use std::thread;\n use windows_sys::Win32::Foundation::{HANDLE, WAIT_OBJECT_0};\n use windows_sys::Win32::System::Threading::{INFINITE, WaitForSingleObject};\n \n+#[derive(Copy, Clone)]\n+struct Unsafe... | 2025-04-04T13:28:14 |
golang/go | 87e984ab2988afccdb75a4c235b318ec6be46e6a | b2bdadfe88c205baed2f3dde6aa4709940ce4a7b | test: add test for issue 38698
It was fixed by CL 294289, for #44378.
This is a different style of test that uses
line directives instead of extremely long lines.
Fixes #38698.
Change-Id: I50a1585030978b35fffa9981d6ed96b99216dc3e
Reviewed-on: https://go-review.googlesource.com/c/go/+/295129
Trust: Josh Bleecher Snyd... | [
{
"path": "test/fixedbugs/issue38698.go",
"patch": "@@ -0,0 +1,23 @@\n+// compile\n+\n+// Copyright 2021 The Go Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style\n+// license that can be found in the LICENSE file.\n+\n+// This test case caused a panic in the compiler's DW... | 2021-02-22T19:11:51 |
nodejs/node | a9a1f12b4212c0ea81a04bf2eb56efe6f8a4699b | 6de1a12e496b58b1ab1c150b3cee8a8d45040edb | inspector: report client-visible host and port
Node instance may not know the real host and port user sees when
debug frontend connects through the SSH tunnel. This change fixes
'/json/list' response by using the value client provided in the host
header.
PR-URL: https://github.com/nodejs/node/pull/19664
Reviewed-By: ... | [
{
"path": "src/inspector_socket.cc",
"patch": "@@ -495,12 +495,12 @@ class HttpHandler : public ProtocolHandler {\n CancelHandshake();\n return;\n } else if (!event.upgrade) {\n- delegate()->OnHttpGet(event.path);\n+ delegate()->OnHttpGet(event.host, event.path);\n ... | 2018-03-06T03:18:17 |
vercel/next.js | 6eefc9de561b17eeeb215d0605dc9796ea65af74 | 6b27fbb400b51f6edd7255aaed01b33a25804ba9 | fix(ts): relax `AppProps` to not require generic (#41264)
It seems that #38867 made `AppProps` always require the `pageProps`
object shape to be passed as a generic since the default `{}` will throw
a TS error if you try accessing any property:
Before:
 (#35062)
* fix
* Update src/transformers/testing_utils.py
Co-authored-by: Lucain <lucainp@gmail.com>
* fix
* fix
* fix
* fix
* fix
* fix
* fix
* fix
* check
* check
* check
* check
* check
* check
* Update src/transformers/testing_... | [
{
"path": "src/transformers/testing_utils.py",
"patch": "@@ -40,7 +40,9 @@\n from unittest import mock\n from unittest.mock import patch\n \n+import huggingface_hub.utils\n import urllib3\n+from huggingface_hub import delete_repo\n \n from transformers import logging as transformers_logging\n \n@@ -1570,6 +... | 2024-12-05T16:02:27 |
golang/go | 0f66fb7b856b02497cf801ce72d80f375f53358b | e78e04ce39b9df316edda08f43f253f5e9ac509e | go/internal/gccgoimporter: fix up gccgo installation test
Change the TestInstallationImporter testpoint to query type
information for sort.Search instead of sort.Ints. The latter function
changed recently (1.16 timeframe), parameter "a" is now "x". A better
candidate for this sort of query is sort.Search, which has be... | [
{
"path": "src/go/internal/gccgoimporter/gccgoinstallation_test.go",
"patch": "@@ -184,7 +184,7 @@ func TestInstallationImporter(t *testing.T) {\n \t\t{pkgpath: \"io\", name: \"ReadWriter\", want: \"type ReadWriter interface{Reader; Writer}\"},\n \t\t{pkgpath: \"math\", name: \"Pi\", want: \"const Pi untype... | 2021-02-19T15:34:55 |
nodejs/node | f89f79893d6e15938f9237efe4d2473ab4a65e9f | 3e1dd5597cce45fa7ef6aeb8889ddbd27927c4b4 | doc: fix links in vm.md
* Replace absolute link with relative link.
* Fix sorting in bottom references.
PR-URL: https://github.com/nodejs/node/pull/19721
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Yuta Hiroto <hello@hiroppy.me> | [
{
"path": "doc/api/vm.md",
"patch": "@@ -890,7 +890,7 @@ associating it with the `sandbox` object is what this document refers to as\n [`eval()`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/eval\n [`script.runInContext()`]: #vm_script_runincontext_contextifiedsandbox_op... | 2018-04-01T07:32:26 |
huggingface/transformers | a928d9c12892fce8422448a132a106a2c0def4f9 | e682c17e4a7877b13b7b661880bc3514b7fa2804 | [`trainer`] fix the GA `model_accepts_loss_kwargs` (#34915)
* fix
* style
* values
* fix | [
{
"path": "src/transformers/trainer.py",
"patch": "@@ -623,9 +623,7 @@ def __init__(\n else unwrapped_model.get_base_model().forward\n )\n forward_params = inspect.signature(model_forward).parameters\n- self.model_accepts_loss_kwargs = (\n- \"loss_kwargs\" in fo... | 2024-12-05T15:37:46 |
vercel/next.js | 6b27fbb400b51f6edd7255aaed01b33a25804ba9 | eb629c15ca55c247d216963a16abc1bea60d7f91 | chore(examples): upgrade `date-fns` in `cms-tina` (#41240)
<!--
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 that you're making:
-->
## B... | [
{
"path": "examples/cms-tina/package.json",
"patch": "@@ -11,7 +11,7 @@\n \"dependencies\": {\n \"@tinacms/cli\": \"^0.60.16\",\n \"classnames\": \"2.3.1\",\n- \"date-fns\": \"2.28.0\",\n+ \"date-fns\": \"2.29.3\",\n \"gray-matter\": \"4.0.3\",\n \"next\": \"latest\",\n \"react\"... | 2022-10-07T19:22:46 |
rust-lang/rust | 0f12a2c4ad6ebc7f74e682be819f0d61d8d27c57 | e0883a2a6c8e4afcb6e26a182885f687ba63a7f5 | ToSocketAddrs: fix typo | [
{
"path": "compiler/rustc_borrowck/src/diagnostics/mutability_errors.rs",
"patch": "@@ -969,7 +969,7 @@ impl<'infcx, 'tcx> MirBorrowckCtxt<'_, 'infcx, 'tcx> {\n }\n };\n \n- // If we can detect the expression to be an function or method call where the closure was\n+ // If w... | 2025-04-04T12:47:04 |
ollama/ollama | 1b308e1d2a478e70ef3e31e6b24d687a44b33016 | bd6c1d6b49aca86dbb1a59182b293c0d1f7b8db8 | model: fix global layer rope scale values for gemma 3 (#13452) | [
{
"path": "model/models/gemma3/model_text.go",
"patch": "@@ -28,10 +28,10 @@ type TextConfig struct {\n \tfinalLogitSoftcap float32\n }\n \n-func (o TextConfig) applyRotaryPositionEmbeddings(ctx ml.Context, states, positions ml.Tensor, base float32) ml.Tensor {\n+func (o TextConfig) applyRota... | 2025-12-13T00:29:01 |
golang/go | e78e04ce39b9df316edda08f43f253f5e9ac509e | 03d36d8198428a6970ba01f5de41c264acbff8fc | cmd/compile: fix panic in DWARF-gen handling obfuscated code
DWARF generation uses variable source positions (file/line/col) as a
way to uniquely identify locals and parameters, as part of the process
of matching up post-optimization variables with the corresponding
pre-optimization versions (since the DWARF needs to ... | [
{
"path": "src/cmd/compile/internal/dwarfgen/dwinl.go",
"patch": "@@ -247,7 +247,8 @@ func makePreinlineDclMap(fnsym *obj.LSym) map[varPos]int {\n \t\t\tDeclCol: pos.Col(),\n \t\t}\n \t\tif _, found := m[vp]; found {\n-\t\t\tbase.Fatalf(\"child dcl collision on symbol %s within %v\\n\", n.Sym().Name, fnsym... | 2021-02-19T15:09:15 |
nodejs/node | 3e1dd5597cce45fa7ef6aeb8889ddbd27927c4b4 | 107b06792a8ffca3de13550440ed25bab345a1c2 | doc: fix quotes mistypes in inline code blocks
This fixes trivial invalid quotes mistypes in inline code blocks,
e.g. forgotten quotes or mixed order.
Whether this could be easily automatically checked in lint is a
separate question: e.g. `'` is valid.
PR-URL: https://github.com/nodejs/node/pull/19713
Reviewed-By: V... | [
{
"path": "doc/api/fs.md",
"patch": "@@ -3427,7 +3427,7 @@ Synchronous versions of [`fs.write()`][]. Returns the number of bytes written.\n \n The `fs/promises` API provides an alternative set of asynchronous file system\n methods that return `Promise` objects rather than using callbacks. The\n-API is acces... | 2018-03-31T09:17:49 |
vercel/next.js | bef709bc74760aadedfeb2fd4a4434e213cb024f | a415f34adf10c43455d4f1e5e069916a031fc7d0 | fix(middleware): 'instanceof Function' is dynamic code false-positive (#41249)
## 🐛 What's in there?
`foo instanceof Function` is wrongly considered as Dynamic code evaluation by our static analyzer.
This PR fixes it.
- [ ] Related issues linked using `fixes #number`
- [x] Integration tests added
- [x] Errors hav... | [
{
"path": "errors/edge-dynamic-code-evaluation.md",
"patch": "@@ -29,6 +29,18 @@ export default async function middleware() {\n ```\n \n In rare cases, your code could contain (or import) some dynamic code evaluation statements which _can not be reached at runtime_ and which can not be removed by treeshakin... | 2022-10-07T14:14:11 |
rust-lang/rust | 0522ed059db967db26143387747b46c11528f49b | f174fd716a429fa17eb1e98ba4e382f09312f8ad | Default auto traits: fix perf | [
{
"path": "compiler/rustc_hir_analysis/src/collect/predicates_of.rs",
"patch": "@@ -172,33 +172,9 @@ fn gather_explicit_predicates_of(tcx: TyCtxt<'_>, def_id: LocalDefId) -> ty::Gen\n };\n \n if let Node::TraitItem(item) = node {\n- let parent = tcx.local_parent(item.hir_id().owner.def_id);\n... | 2025-04-04T12:32:00 |
ollama/ollama | 95fdd8d619ad4dc9215cdce8a8665284a96cd96f | 9f7822851c1f080d7d2a1dbe0e4d51233e5a28bc | fix: select and update models folder in settings (#13412) | [
{
"path": "app/dialog/cocoa/dlg.m",
"patch": "@@ -169,37 +169,47 @@ - (DlgResult)load {\n \t}\n \t\n \tNSArray* urls = [panel URLs];\n-\tif(self->params->allowMultiple && [urls count] >= 1) {\n+\tif([urls count] == 0) {\n+\t\treturn DLG_CANCEL;\n+\t}\n+\t\n+\tif(self->params->allowMultiple) {\n \t\t// For m... | 2025-12-12T16:09:37 |
huggingface/transformers | 50189e36a6840c0a3863cb912378fae6ffdb83f4 | 95a855e212412e2a835511dacb3776f9ed064fe1 | Add I-JEPA (#33125)
* first draft
* add IJepaEmbeddings class
* fix copy-from for IJepa model
* add weight conversion script
* update attention class names in IJepa model
* style changes
* Add push_to_hub option to convert_ijepa_checkpoint function
* add initial tests for I-JEPA
* minor style changes to conver... | [
{
"path": "docs/source/en/_toctree.yml",
"patch": "@@ -657,6 +657,8 @@\n title: GLPN\n - local: model_doc/hiera\n title: Hiera\n+ - local: model_doc/ijepa\n+ title: I-JEPA\n - local: model_doc/imagegpt\n title: ImageGPT\n - local: model_doc/levit",
"... | 2024-12-05T15:14:46 |
golang/go | 03d36d8198428a6970ba01f5de41c264acbff8fc | 40656f3a758728276e164ecb48822527a80e5f7b | syscall: add explicit ios build tag
This permits analysis of the syscall package by tools built with
older versions of Go that do not recognize ios as a GOOS.
Fixes #44459
Change-Id: I79cec2ffe0dbcbc2dc45a385e556dc9e62033125
Reviewed-on: https://go-review.googlesource.com/c/go/+/294634
Trust: Ian Lance Taylor <iant@... | [
{
"path": "src/syscall/ptrace_ios.go",
"patch": "@@ -2,6 +2,9 @@\n // Use of this source code is governed by a BSD-style\n // license that can be found in the LICENSE file.\n \n+//go:build ios\n+// +build ios\n+\n package syscall\n \n // Nosplit because it is called from forkAndExecInChild.",
"additions... | 2021-02-20T19:25:15 |
nodejs/node | 07ba9141e475ec63f6ef56b67ec5f98077cd3446 | 28b622cb08602d77512fa3d659451cd317dfcc41 | vm: add support for import.meta to Module
Fixes: https://github.com/nodejs/node/issues/18570
PR-URL: https://github.com/nodejs/node/pull/19277
Reviewed-By: Gus Caplan <me@gus.host>
Reviewed-By: Tiancheng "Timothy" Gu <timothygu99@gmail.com> | [
{
"path": "doc/api/vm.md",
"patch": "@@ -167,9 +167,49 @@ const contextifiedSandbox = vm.createContext({ secret: 42 });\n in stack traces produced by this Module.\n * `columnOffset` {integer} Spcifies the column number offset that is displayed\n in stack traces produced by this Module.\n+ * `init... | 2018-03-07T03:46:39 |
vercel/next.js | a415f34adf10c43455d4f1e5e069916a031fc7d0 | ce820e2a86a3c51550a79ab05df38ba5993e2fdc | refactor dev overlay into hot reloader (#41231)
Move react-dev-overlay into hot reloader client components, and let it imported by app router. So then we don't need to have hot reloader and react tree as adjacent sibilings but the overlay with error boundary is wrapping the react tree
Co-authored-by: Tim Neutkens <6... | [
{
"path": "packages/next/build/webpack/loaders/next-app-loader.ts",
"patch": "@@ -185,12 +185,6 @@ const nextAppLoader: webpack.LoaderDefinitionFunction<{\n export const AppRouter = require('next/dist/client/components/app-router.client.js').default\n export const LayoutRouter = require('next/dist/c... | 2022-10-07T13:25:22 |
rust-lang/rust | e9bad9c61a2e1a2e561ceaa039850afcea09b756 | 8408e2810b5e670b6ae82b72e4e6770363e90f78 | chore: clean up some FIXMEs
Signed-off-by: Prajwal S N <prajwalnadig21@gmail.com> | [
{
"path": "src/tools/rust-analyzer/crates/mbe/src/expander/transcriber.rs",
"patch": "@@ -210,8 +210,11 @@ fn expand_subtree(\n }\n Op::Ignore { name, id } => {\n // Expand the variable, but ignore the result. This registers the repetition count.\n- // ... | 2025-04-03T14:26:14 |
ollama/ollama | 93d45d7a0464e534c0211f2fb9d720b1855ce43a | 709f842457f40550c88da80f84bc8d7ba29371b9 | docs: fix link to modelfile.mdx (#13220) | [
{
"path": "api/client.go",
"patch": "@@ -347,7 +347,7 @@ type CreateProgressFunc func(ProgressResponse) error\n // Create creates a model from a [Modelfile]. fn is a progress function that\n // behaves similarly to other methods (see [Client.Pull]).\n //\n-// [Modelfile]: https://github.com/ollama/ollama/bl... | 2025-12-12T00:14:45 |
huggingface/transformers | 95a855e212412e2a835511dacb3776f9ed064fe1 | 482cb28a1878a36b1e6f43b0873ed4da92c1781e | Deprecate quanto and switch to optimum-quanto (#35001)
* deprecate quanto
* fix style | [
{
"path": "src/transformers/cache_utils.py",
"patch": "@@ -12,7 +12,6 @@\n from .utils import (\n is_hqq_available,\n is_optimum_quanto_available,\n- is_quanto_available,\n is_torchdynamo_compiling,\n logging,\n )\n@@ -790,17 +789,6 @@ def __init__(self, cache_config: CacheConfig) -> None... | 2024-12-05T15:11:09 |
golang/go | 40656f3a758728276e164ecb48822527a80e5f7b | d4b26382342c98a95b85140b2863bc30c48edd68 | doc/1.16: fix link to fs.FileInfo
Updates #40700
Change-Id: Ifff622ccadaa31c0c0684c3c695aadcaa2305623
Reviewed-on: https://go-review.googlesource.com/c/go/+/294669
Trust: Alberto Donizetti <alb.donizetti@gmail.com>
Reviewed-by: Ian Lance Taylor <iant@golang.org> | [
{
"path": "doc/go1.16.html",
"patch": "@@ -548,7 +548,7 @@ <h3 id=\"ioutil\">Deprecation of io/ioutil</h3>\n (note: returns a slice of\n <a href=\"/pkg/os/#DirEntry\"><code>os.DirEntry</code></a>\n rather than a slice of\n- <a href=\"/pkg/fs/#FileInfo\"><code>fs.FileInfo</code></a>)\n... | 2021-02-20T16:53:43 |
nodejs/node | 28b622cb08602d77512fa3d659451cd317dfcc41 | a2ffdc9e9b7b7978c87bdf6577dc6b53cfb81b75 | test: remove 3rd argument from assert.strictEqual
If there is an AssertionError, the string literal is printed and not the
value of `r`. For debugging purposes, it is good to know if `r` is false
or null or something else.
PR-URL: https://github.com/nodejs/node/pull/19707
Reviewed-By: Rich Trott <rtrott@gmail.com>
Re... | [
{
"path": "test/parallel/test-http-res-write-after-end.js",
"patch": "@@ -34,7 +34,8 @@ const server = http.Server(common.mustCall(function(req, res) {\n res.end();\n \n const r = res.write('This should raise an error.');\n- assert.strictEqual(r, true, 'write after end should return true');\n+ // writ... | 2018-03-30T19:13:51 |
huggingface/transformers | 482cb28a1878a36b1e6f43b0873ed4da92c1781e | 35447054f5fb2d6f7f901361e74fdfcb761de06e | Fix `tie_word_embeddings` handling for GGUF models (#35085)
* fix tie_word_embeddings
Signed-off-by: Isotr0py <2037008807@qq.com>
* fix
Signed-off-by: Isotr0py <2037008807@qq.com>
---------
Signed-off-by: Isotr0py <2037008807@qq.com> | [
{
"path": "src/transformers/modeling_gguf_pytorch_utils.py",
"patch": "@@ -291,7 +291,6 @@ def load_gguf_checkpoint(gguf_checkpoint_path, return_tensors=False):\n # FIXME: Currnetly this implementation is only for flan-t5 architecture.\n # It needs to be developed for supporting legacy t5.\n eli... | 2024-12-05T15:00:41 |
ollama/ollama | 2dfb74410d2cca08fa6dd62a0863e2e8d5ad1a8a | 1eb5e759724a10fea90a2f8e9ab7c292e7287191 | model: fix rotary embeddings for ministral 3 (#13432) | [
{
"path": "model/models/mistral3/model_text.go",
"patch": "@@ -29,24 +29,13 @@ type TextOptions struct {\n func (o TextOptions) applyRotaryPositionEmbeddings(ctx ml.Context, states, positions ml.Tensor) ml.Tensor {\n \tvar ropeOpts []func(*rope.Options)\n \tif o.ropeType == \"yarn\" {\n-\t\tgetMscale := fun... | 2025-12-12T00:02:05 |
golang/go | 078f08f0ee1eb6cb172fc1f9d53f34c5783e522d | 26713b5fefc158feb1f0f3d5d30627de226f7668 | spec: every type has a method set (minor clarification)
The spec states that a type "may" have a method set associated with it.
Yet every type has a method set, which may be empty. This is clarified
later in the same paragraph. Be clear in the first sentence as well.
Per the suggestion from https://github.com/DQNEO.
... | [
{
"path": "doc/go_spec.html",
"patch": "@@ -1,6 +1,6 @@\n <!--{\n \t\"Title\": \"The Go Programming Language Specification\",\n-\t\"Subtitle\": \"Version of Feb 10, 2021\",\n+\t\"Subtitle\": \"Version of Feb 19, 2021\",\n \t\"Path\": \"/ref/spec\"\n }-->\n \n@@ -830,7 +830,7 @@ <h2 id=\"Types\">Types</h2>\n... | 2021-02-17T05:05:08 |
rust-lang/rust | b0c23f78c98b71f6a202983b4278386cf1703ce7 | 4807c29d0837c3ee0af94563b8a801f4f2c4c356 | Fix rustc test suite | [
{
"path": "scripts/test_rustc_tests.sh",
"patch": "@@ -130,6 +130,7 @@ rm -r tests/run-make/translation # same\n rm -r tests/run-make/missing-unstable-trait-bound # This disables support for unstable features, but running cg_clif needs some unstable features\n rm -r tests/run-make/const-trait-stable-toolcha... | 2025-04-04T10:41:27 |
huggingface/transformers | 54aae121eb30724f033afe3867ed1e3561379f11 | beb2c66ec369135b4a41e8552948a0e7e073dceb | [Whisper] Fix whisper tokenizer (#34537)
* handle single timestamp ending
* include last timestamp token
* handle single timestamp ending
* avoid floating points arithm limitations
* ensure float64 operations
* new test
* make fixup
* make copies
* handle edge case double tokens ending with dif... | [
{
"path": "src/transformers/models/whisper/generation_whisper.py",
"patch": "@@ -308,6 +308,7 @@ def generate(\n num_segment_frames: Optional[int] = None,\n attention_mask: Optional[torch.Tensor] = None,\n time_precision: float = 0.02,\n+ time_precision_features: float = 0.01,... | 2024-12-05T12:46:29 |
nodejs/node | 0d64f33c9658b82897efb9355c0fc2caec034299 | 085ad541d9154a5d524d7f5b8877c69c18b4d389 | src: fix warnings in aliased_buffer
* Unary minus usages on unsigned type
* Implicit casts to/from input parameters
PR-URL: https://github.com/nodejs/node/pull/19665
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com>
Reviewed-By: Khaidi Chu <i@2333.moe>
Reviewed-... | [
{
"path": "src/aliased_buffer.h",
"patch": "@@ -126,13 +126,11 @@ class AliasedBuffer {\n index_(that.index_) {\n }\n \n- template <typename T>\n- inline Reference& operator=(const T& val) {\n+ inline Reference& operator=(const NativeT& val) {\n aliased_buffer_->SetValue(index_,... | 2018-03-24T00:31:04 |
ollama/ollama | 3475d915cb0882042041d7746e6baf888469c3e0 | 48e78e9be1cb39473a8220dd0d293c9e65ffb07d | embeddings: modified batch size (#13429)
This PR detects embedding models and sets batch_size = context_size so the full input fits in a single batch.
Previously, if batch size was smaller than the input, tokens could be split across batches and cause a SIGTRAP crash.
This change ensures all tokens stay in one batch a... | [
{
"path": "integration/embed_test.go",
"patch": "@@ -487,6 +487,63 @@ func TestEmbedTruncation(t *testing.T) {\n \t}\n }\n \n+// TestEmbedLargeInput tests that embedding models can handle large inputs that would exceed typical batch sizes.\n+func TestEmbedLargeInput(t *testing.T) {\n+\tctx, cancel := contex... | 2025-12-11T23:36:31 |
golang/go | 26713b5fefc158feb1f0f3d5d30627de226f7668 | 9a99515c8f1febe39151a80b2088d0d6fdc55ca2 | go/types: don't write during sanitizeInfo if nothing has changed
In its final phase, the typechecker walks the types it produces to
ensure that no unexpanded type instances leak through the API. However,
this also walks shared types (such as those in the universe scope),
resulting in a potential data race during concu... | [
{
"path": "src/go/types/sanitize.go",
"patch": "@@ -6,34 +6,54 @@ package types\n \n // sanitizeInfo walks the types contained in info to ensure that all instances\n // are expanded.\n+//\n+// This includes some objects that may be shared across concurrent\n+// type-checking passes (such as those in the uni... | 2021-02-19T22:37:17 |
rust-lang/rust | 6c3417dd15cb560a860ddea063193c68b5b47b87 | b9babad9277fbf0b6209a3075e01f7b2dd043bf4 | fixup! Implement `super let`. | [
{
"path": "compiler/rustc_feature/src/unstable.rs",
"patch": "@@ -630,7 +630,7 @@ declare_features! (\n /// Allows string patterns to dereference values to match them.\n (unstable, string_deref_patterns, \"1.67.0\", Some(87121)),\n /// Allows `super let` statements.\n- (incomplete, super_let,... | 2025-04-04T09:16:32 |
huggingface/transformers | beb2c66ec369135b4a41e8552948a0e7e073dceb | 1ed1de2fecdb5fe82f67e4fe742417f737370324 | Informative (#35059)
* fix
* fix
* fix
* fix
---------
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": "src/transformers/models/deprecated/transfo_xl/convert_transfo_xl_original_tf_checkpoint_to_pytorch.py",
"patch": "@@ -109,7 +109,8 @@ def convert_transfo_xl_checkpoint_to_pytorch(\n \"--transfo_xl_dataset_file\",\n default=\"\",\n type=str,\n- help=\"An optional dat... | 2024-12-05T08:50:27 |
nodejs/node | b88477ef4dc82b2a77c90b5de65efab4cf507d3c | ae70e2bc34aca8b581f53eb49a27460ac1fc3f83 | tools: fix comment nits in tools/doc/*.js files
* Unify first letters case.
* Unify periods.
* Delete excess spaces.
* Add some blank lines as logical delimiters.
* Remove obvious comments.
* Combine short lines, rewrap lines more logically.
* Fix typos.
* "XXX" -> "TODO:", OSX -> macOS.
PR-URL: https://github.com/no... | [
{
"path": "tools/doc/addon-verify.js",
"patch": "@@ -47,7 +47,7 @@ function once(fn) {\n }\n \n function verifyFiles(files, blockName, onprogress, ondone) {\n- // must have a .cc and a .js to be a valid test\n+ // Must have a .cc and a .js to be a valid test.\n if (!Object.keys(files).some((name) => /\\... | 2018-03-30T10:38:45 |
ollama/ollama | a838421ea35366ea35a39102981c96a4a16658bb | 1c4e85b4df1a8ebcb0f578ea423cc1a0d0adf873 | model: conversion and hyperparameter fixes for ministral and devstral (#13424) | [
{
"path": "convert/convert.go",
"patch": "@@ -182,6 +182,8 @@ func ConvertModel(fsys fs.FS, f *os.File) error {\n \t\tconv = &llama4Model{}\n \tcase \"Mistral3ForConditionalGeneration\":\n \t\tconv = &mistral3Model{}\n+\tcase \"Ministral3ForCausalLM\":\n+\t\tconv = &mistral3CausalModel{}\n \tcase \"MixtralF... | 2025-12-11T21:04:00 |
huggingface/transformers | 1da1e0d7f2eb1c8c770097ca4ccfcfafec5e13e9 | 46df859975404e475cf5eeae76634f69951abe44 | Support for easier multimodal use of modular (#35056)
* update modular and add examples
* style
* improve example comments
* style
* fix small logic issue for imports
* fix relative order issue when files do not make sense
* Improve comments
* trigger CIs | [
{
"path": "examples/modular-transformers/image_processing_new_imgproc_model.py",
"patch": "@@ -36,7 +36,7 @@\n \n class ImgprocModelImageProcessor(BaseImageProcessor):\n r\"\"\"\n- Constructs a NEW_IMGPROC_MODEL image processor.\n+ Constructs a IMGPROC_MODEL image processor.\n \n Args:\n ... | 2024-12-04T14:13:11 |
nodejs/node | 1dc8eb4bd34383830d48a704d79a2bc9ec55152f | 923fb5cc1861422291d135177770f94f473f4d6f | test: add regression test for large write
Fixes: https://github.com/nodejs/node/issues/19562
PR-URL: https://github.com/nodejs/node/pull/19551
Reviewed-By: James M Snell <jasnell@gmail.com> | [
{
"path": "test/parallel/test-net-bytes-written-large.js",
"patch": "@@ -0,0 +1,67 @@\n+'use strict';\n+const common = require('../common');\n+const assert = require('assert');\n+const net = require('net');\n+\n+// Regression test for https://github.com/nodejs/node/issues/19562:\n+// Writing to a socket fir... | 2018-03-24T16:02:34 |
ollama/ollama | dac4f17fea99dc18628d743e80f91dcd15ab4bce | 56b8fb024cb530c738dc6ddb5cd76714255f1a6e | cmd/bench: fix binary name in README (#13276) | [
{
"path": "cmd/bench/README.md",
"patch": "@@ -15,7 +15,7 @@ A Go-based command-line tool for benchmarking Ollama models with configurable pa\n \n ```\n go build -o ollama-bench bench.go\n-./bench -model gpt-oss:20b -epochs 6 -format csv\n+./ollama-bench -model gpt-oss:20b -epochs 6 -format csv\n ```\n \n U... | 2025-12-10T22:16:58 |
vercel/next.js | 839b55ff063e60951ec53b637fb62862cfbe5628 | 39663ebc78414cefe690385428ae3730a6f79c37 | Add support for pages/_app (vercel/turbo#442)
This adds preliminary support for pages/_app. There's still some work to do here to support things like `App. getInitialProps`, etc., but that will come in later PRs. I've created issues for these for now.
One issue remaining is that renaming `pages/_app.js` does not swit... | [
{
"path": "packages/next-swc/crates/next-core/src/embed_next.rs",
"patch": "@@ -0,0 +1,10 @@\n+#[macro_export]\n+macro_rules! embed_next_file {\n+ ($path:expr) => {\n+ turbo_tasks_fs::embed_file!(concat!(\n+ env!(\"CARGO_WORKSPACE_DIR\"),\n+ \"crates/next-core/src/next_js/\",... | 2022-10-07T11:36:44 |
rust-lang/rust | f02e2786397f9954ad019ba2af7f574c1e17c904 | 3123df8ef0cc32318d96b90620396d8b22d2ffb3 | Fix typo in pretty printing super let.
Co-authored-by: lcnr <rust@lcnr.de> | [
{
"path": "compiler/rustc_ast_pretty/src/pprust/state.rs",
"patch": "@@ -1337,7 +1337,7 @@ impl<'a> State<'a> {\n self.space_if_not_bol();\n self.ibox(INDENT_UNIT);\n if loc.super_.is_some() {\n- self.word_nbsp(\"let\");\n+ ... | 2025-04-02T21:48:13 |
nodejs/node | abc87862ff14c1571f008aa1a9cbf812bea9790c | d37e59fa6aee7f5b38696726b0145741ef3eb95b | async_wrap: fix use-after-free for inspector session
This fixes the following condition:
$ python -u tools/run-valgrind.py ./node_g test/sequential/test-inspector-async-call-stack.js
[...]
==10848== Invalid read of size 4
==10848== at 0x12F509E: node::AsyncWrap::provider_type() const (async_wrap-in... | [
{
"path": "src/async_wrap.cc",
"patch": "@@ -202,13 +202,13 @@ void AsyncWrap::EmitBefore(Environment* env, double async_id) {\n }\n \n \n-void AsyncWrap::EmitTraceEventAfter() {\n- switch (provider_type()) {\n+void AsyncWrap::EmitTraceEventAfter(ProviderType type, double async_id) {\n+ switch (type) {\n ... | 2018-03-15T23:48:34 |
huggingface/transformers | 46df859975404e475cf5eeae76634f69951abe44 | accb7204f91d5298394bbc118c33f908c2f0cfb7 | [`GPTNeoX`] Flex Attention + Refactor (#34896)
* gpt neox flex attention + refactor
* some formatting
* small fix on dropout
* add assertion on flex attn test
* flaky ci :(
* add head mask support
* style
* handle dtype, replace torch where
* fixup flex with output attns
* code review and several other fixes
... | [
{
"path": "src/transformers/modeling_flash_attention_utils.py",
"patch": "@@ -20,7 +20,10 @@\n import torch\n import torch.nn.functional as F\n \n-from .utils import is_flash_attn_2_available, is_flash_attn_greater_or_equal\n+from .utils import is_flash_attn_2_available, is_flash_attn_greater_or_equal, logg... | 2024-12-04T13:48:28 |
ollama/ollama | 56b8fb024cb530c738dc6ddb5cd76714255f1a6e | b95693056c62a3acaa172f555e3bdb2b438684e3 | cmd/bench: fix options table in cmd/bench/README.md (#13216) | [
{
"path": "cmd/bench/README.md",
"patch": "@@ -54,6 +54,7 @@ benchstat -col /name gemma.bench\n ## Command Line Options\n \n | Option \t| Description | Default |\n+|----------|-------------|---------|\n | -model\t| Comma-separated list of models to benchmark\t| (required)\t\t|\n | -epochs\t| Number of iter... | 2025-12-10T22:07:48 |
vercel/next.js | 442b8ae570e6b30f15ad87dd32d28cbfc5f38f7a | c15932a7581ff0095072efc09557f1a4f1418909 | Add support for pages/_app (#442)
This adds preliminary support for pages/_app. There's still some work to do here to support things like `App. getInitialProps`, etc., but that will come in later PRs. I've created issues for these for now.
One issue remaining is that renaming `pages/_app.js` does not switch to the de... | [
{
"path": "crates/next-core/src/embed_next.rs",
"patch": "@@ -0,0 +1,10 @@\n+#[macro_export]\n+macro_rules! embed_next_file {\n+ ($path:expr) => {\n+ turbo_tasks_fs::embed_file!(concat!(\n+ env!(\"CARGO_WORKSPACE_DIR\"),\n+ \"crates/next-core/src/next_js/\",\n+ $pa... | 2022-10-07T11:36:44 |
nodejs/node | d37e59fa6aee7f5b38696726b0145741ef3eb95b | 6c5144f4b1963ba2be7f9fde28d66aa3b9db729f | stream: fix backpressure when multiple sync
PR-URL: https://github.com/nodejs/node/pull/19613
Fixes: https://github.com/nodejs/node/issues/19601
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net> | [
{
"path": "lib/_stream_readable.js",
"patch": "@@ -310,8 +310,7 @@ function chunkInvalid(state, chunk) {\n // 'readable' event will be triggered.\n function needMoreData(state) {\n return !state.ended &&\n- (state.needReadable ||\n- state.length < state.highWaterMark ||\n+ (state.... | 2018-03-26T12:35:08 |
huggingface/transformers | accb7204f91d5298394bbc118c33f908c2f0cfb7 | c7a109ec81fb38fdd77d1d0543a9233bc6bf4d09 | Add Pytorch Tensor Parallel support for Qwen2, Qwen2Moe, Starcoder2 (#35007)
* add base tp plan for qwen2 and qwen2moe
* add parallel tp for starcoder2
* fix modular conversion
* add infer dim for qkv states
* Update src/transformers/models/qwen2_moe/configuration_qwen2_moe.py
---------
Co-authored-by: Arthur <4... | [
{
"path": "src/transformers/models/mistral/modeling_mistral.py",
"patch": "@@ -310,9 +310,9 @@ def forward(\n key_states = self.k_proj(hidden_states)\n value_states = self.v_proj(hidden_states)\n \n- query_states = query_states.view(bsz, q_len, self.num_heads, self.head_dim).transpose... | 2024-12-04T13:43:36 |
vercel/next.js | b5590022b6d6ea1e058380f598c91165b20735ee | f83cc0cbed4f1bf72360741241a7dfb0aac88aad | Font loaders next config shape (#41219)
Changes how font loaders are configured in next config, makes more sense since options can be optional. Also adds error for when font loaders are used from within node_modules.
## Bug
- [ ] Related issues linked using `fixes #number`
- [ ] Integration tests added
- [ ] Errors ... | [
{
"path": "packages/font/google/index.js",
"patch": "@@ -1 +1 @@\n-throw new Error('@next/font/google is not correctly setup')\n+throw new Error('@next/font/google is not correctly configured')",
"additions": 1,
"deletions": 1,
"language": "JavaScript"
},
{
"path": "packages/font/local/i... | 2022-10-07T09:15:57 |
huggingface/transformers | c7a109ec81fb38fdd77d1d0543a9233bc6bf4d09 | 329f5dbf97a5cb2473914c88c05aa3dcb242e19a | Fix `pad_token_tensor` is None in warning (#34005)
Fix pad_token_tensor is None in warning | [
{
"path": "src/transformers/generation/utils.py",
"patch": "@@ -1866,8 +1866,8 @@ def _tensor_or_none(token, device=None):\n \"The attention mask and the pad token id were not set. As a consequence, you may observe \"\n \"unexpected behavior. Please pass your ... | 2024-12-04T10:15:25 |
nodejs/node | 1e0e988430383351a29c3f2e03c7e6497376123c | ea4c69676af8000eb5bbd947fcee5b56fdfa4f9a | 2018-03-29, Version 9.10.1 (Current)
Notable changes:
No additional commits.
Due to incorrect staging of the upgrade to the GCC 4.9.X compiler, the
latest releases for PPC little endian were built using GCC 4.9.X
instead of GCC 4.8.X. This caused an ABI breakage on PPCLE based
environments. This has been fixed in ou... | [
{
"path": "CHANGELOG.md",
"patch": "@@ -31,7 +31,8 @@ release.\n </tr>\n <tr>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V9.md#9.10.0\">9.10.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V9.md#9.10.1\">9.10.1</a></b><br/>\n+<a href=\"doc/changelogs/CHANGELOG_V9.md#9.10.0\">9.... | 2018-03-29T19:57:53 |
vercel/next.js | 360d11e314af38a523511aef2dd1da2ccaf2327e | ba745747697f817a61244e13d7349fce48f50728 | Use serde feature with indexmap crate (#470)
This fixes failing snapshot tests on main.
Test Plan: `cargo test -p turbopack --test snapshot` | [
{
"path": "crates/turbo-tasks-env/Cargo.toml",
"patch": "@@ -11,7 +11,7 @@ bench = false\n [dependencies]\n anyhow = \"1.0.47\"\n dotenvy = \"0.15.5\"\n-indexmap = \"1.8.0\"\n+indexmap = { version = \"1.8.0\", features = [\"serde\"] }\n serde = \"1.0.136\"\n serde_json = \"1.0.85\"\n tokio = \"1.11.0\"",
... | 2022-10-06T19:51:56 |
ollama/ollama | b95693056c62a3acaa172f555e3bdb2b438684e3 | c34fc64688396bb9f2e17a2a89251a63f58ee4f7 | feat: llama.cpp bump (17f7f4) for SSM performance improvements (#13408)
* feat: Bump llama.cpp to the latest master (17f7f4b)
This brings in significant improvements to prefill performance for all
models using the SSM_CONV and SSM_SCAN ops (granite4, jamba, falcon-h,
nemotron-h, Qwen3 Next) on Apple Metal.
See https... | [
{
"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=7f8ef50cce40e3e7e4526a3696cb45658190e69a\n+FETCH_HEAD=17f7f4baad8b3a716ee139da7bb56ae984e8c0fa\n \n .PHONY: help\n help:",
"additions": 1,
"deletions": 1,
... | 2025-12-10T20:59:27 |
huggingface/transformers | b8cdc262d5ed963ac4b9530f5350fd17a0eef0aa | 346597b644e12176e390478066a32c9ed77bacdc | [docs] use device-agnostic instead of `cuda` (#35047)
* fix on xpu
* [run_all]
* add the missing import for Image lib
* add more devices in comment
* bug fix
* replace cuda | [
{
"path": "docs/source/en/perf_torch_compile.md",
"patch": "@@ -27,7 +27,7 @@ To compile any computer vision model of your choice, call `torch.compile()` on t\n ```diff\n from transformers import AutoModelForImageClassification\n \n-model = AutoModelForImageClassification.from_pretrained(MODEL_ID).to(\"cuda... | 2024-12-03T18:53:45 |
nodejs/node | ea4c69676af8000eb5bbd947fcee5b56fdfa4f9a | b5e9fcfa4e99bdb12f87dadcf773436f4cd0956b | 2018-03-29, Version 8.11.1 'Carbon' (LTS)
Notable changes:
No additional commits.
Due to incorrect staging of the upgrade to the GCC 4.9.X compiler, the
latest releases for PPC little endian were built using GCC 4.9.X
instead of GCC 4.8.X. This caused an ABI breakage on PPCLE based
environments. This has been fixed ... | [
{
"path": "CHANGELOG.md",
"patch": "@@ -47,7 +47,8 @@ release.\n <a href=\"doc/changelogs/CHANGELOG_V9.md#9.0.0\">9.0.0</a><br/>\n </td>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V8.md#8.11.0\">8.11.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V8.md#8.11.1\">8.11.1</a><... | 2018-03-29T20:04:07 |
vercel/next.js | 87026c893bf0355caa4210b0bb6a60f794b20f66 | 5e25bd21410da021ed8a897caf9f0c80fb9ba4a7 | Update introduction.md (#41226)
Fixed link to phases lines in the documentation
## Documentation / Examples
- [ ] Make sure the linting passes by running `pnpm lint`
- [ ] The "examples guidelines" are followed from [our contributing doc](https://github.com/vercel/next.js/blob/canary/contributing/examples/adding-e... | [
{
"path": "docs/api-reference/next.config.js/introduction.md",
"patch": "@@ -62,7 +62,7 @@ module.exports = async (phase, { defaultConfig }) => {\n }\n ```\n \n-`phase` is the current context in which the configuration is loaded. You can see the [available phases](https://github.com/vercel/next.js/blob/cana... | 2022-10-06T19:51:05 |
ollama/ollama | bbbb6b2a013b3fb27ddd7d7132a9dd6026f3e7ad | 76f88caf437c3f48b68ff6df649e283f7370b27b | app/ui: fix model capabilities not updating after download completion (#13179) | [
{
"path": "app/ui/app/src/hooks/useChats.ts",
"patch": "@@ -7,6 +7,7 @@ import { createQueryBatcher } from \"./useQueryBatcher\";\n import { useRefetchModels } from \"./useModels\";\n import { useStreamingContext } from \"@/contexts/StreamingContext\";\n import { useSettings } from \"./useSettings\";\n+impo... | 2025-12-10T19:40:02 |
huggingface/transformers | 3deaa8179d78d3f719f9f527fcfb13799a407aa0 | 125de4164364420854d7fe537a9bd2fdaf7369d4 | [docs] fix example code bug (#35054)
fix code bug | [
{
"path": "docs/source/en/tasks/image_text_to_text.md",
"patch": "@@ -229,7 +229,7 @@ Now let's call the `model_inference` function we created and stream the values.\n ```python\n generator = model_inference(\n user_prompt=\"And what is in this image?\",\n- chat_history=messages,\n+ chat_history=m... | 2024-12-03T17:18:39 |
golang/go | 06b86e98031aacdd6f0499799cc4f50200ecfd18 | 9322eec8a267196d38cba657495624c3c91565f1 | cmd/compile: fix check to avoid creating new closure function when typechecking inline body
By default, when typechecking a closure, tcClosure() creates a new
closure function. This should really be done separate from typechecking.
For now, we explicitly avoid creating a new closure function when
typechecking an inli... | [
{
"path": "src/cmd/compile/internal/typecheck/func.go",
"patch": "@@ -100,6 +100,11 @@ func PartialCallType(n *ir.SelectorExpr) *types.Type {\n \treturn t\n }\n \n+// True if we are typechecking an inline body in ImportedBody below. We use this\n+// flag to not create a new closure function in tcClosure whe... | 2021-02-19T02:07:09 |
nodejs/node | b5e9fcfa4e99bdb12f87dadcf773436f4cd0956b | b3cb8ce1113fd2c9b85f1051f53c17517a96a220 | 2018-03-29, Version 6.14.1 'Boron' (LTS)
Notable changes:
No additional commits.
Due to incorrect staging of the upgrade to the GCC 4.9.X compiler, the
latest releases for PPC little endian were built using GCC 4.9.X
instead of GCC 4.8.X. This caused an ABI breakage on PPCLE based
environments. This has been fixed i... | [
{
"path": "CHANGELOG.md",
"patch": "@@ -71,7 +71,8 @@ release.\n <a href=\"doc/changelogs/CHANGELOG_V8.md#8.0.0\">8.0.0</a><br/>\n </td>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V6.md#6.14.0\">6.14.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V6.md#6.14.1\">6.14.1</a></b... | 2018-03-29T20:11:10 |
huggingface/transformers | 125de4164364420854d7fe537a9bd2fdaf7369d4 | 7a7f27697ad17d4ff03dbe203095be8b71759b55 | fix speecht5 failure issue in test_peft_gradient_checkpointing_enable… (#34454)
* fix speecht5 failure issue in test_peft_gradient_checkpointing_enable_disable
Signed-off-by: Wang, Yi <yi.a.wang@intel.com>
* [run-slow] speecht5
---------
Signed-off-by: Wang, Yi <yi.a.wang@intel.com>
Co-authored-by: Matt <... | [
{
"path": "src/transformers/models/speecht5/modeling_speecht5.py",
"patch": "@@ -2114,7 +2114,7 @@ def get_input_embeddings(self):\n return self.encoder.get_input_embeddings()\n if isinstance(self.decoder, SpeechT5DecoderWithTextPrenet):\n return self.decoder.get_input_embedd... | 2024-12-03T13:58:54 |
ollama/ollama | d475d1f081e5455dcfdf9e958619223565b9bf52 | d2f334c1f7822efe3470f41720dc121e5b19e891 | fix: qwen2.5vl metal argsort | [
{
"path": "llama/patches/0013-add-argsort-and-cuda-copy-for-i32.patch",
"patch": "@@ -4,12 +4,12 @@ Date: Thu, 1 May 2025 13:45:12 -0700\n Subject: [PATCH] add argsort and cuda copy for i32\n \n ---\n- ggml/src/ggml-cpu/ops.cpp | 43 ++++++++++\n- ggml/src/ggml-cuda/argsort.cu | 122 ++++++... | 2025-12-08T21:17:03 |
vercel/next.js | 4e0731fbbe4680933318507eb991645478629b24 | dd3e005c93cbf1144ffe99349ac7c988b985b317 | Fix app static generation cases (#41172)
Co-authored-by: Tim Neutkens <tim@timneutkens.nl>
Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com> | [
{
"path": "packages/next/client/components/reducer.ts",
"patch": "@@ -237,7 +237,6 @@ function fillCacheWithPrefetchedSubTreeData(\n \n const existingChildCacheNode = existingChildSegmentMap.get(segmentForCache)\n \n- // In case of last segment start the fetch at this level and don't copy further down.\n... | 2022-10-06T19:43:23 |
rust-lang/rust | fadf9105176d6ee6ec76c79447a0978b4819d26f | 4f0de4c81d80121ac7b576bc68d8016064f4d261 | Fix `Debug` impl for `LateParamRegionKind`.
It uses `Br` prefixes which are inappropriate and appear to have been
incorrectly copy/pasted from the `Debug` impl for `BoundRegionKind`. | [
{
"path": "compiler/rustc_middle/src/ty/structural_impls.rs",
"patch": "@@ -86,15 +86,15 @@ impl fmt::Debug for ty::LateParamRegion {\n impl fmt::Debug for ty::LateParamRegionKind {\n fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {\n match *self {\n- ty::LateParamRegionKind... | 2025-04-04T05:50:56 |
golang/go | 02e5a8fdfcc8e237f5b55618ccbe9ad845014427 | fa18f224c378f5831210077944e5df718efb8df5 | runtime: ignore SPWRITE in syscall functions
netbsd/amd64's Syscall9 changes SP using ADD and SUB,
which are treated as SPWRITEs (they are not accounted for
in the sp-adjust tracking, and there are too many functions that
would report mismatched stack adjustments at RET if they were).
A traceback starting in Syscall9 ... | [
{
"path": "src/runtime/traceback.go",
"patch": "@@ -174,6 +174,12 @@ func gentraceback(pc0, sp0, lr0 uintptr, gp *g, skip int, pcbuf *uintptr, max in\n \t\t\t// So we don't need to exclude it with the other SP-writing functions.\n \t\t\tflag &^= funcFlag_SPWRITE\n \t\t}\n+\t\tif frame.pc == pc0 && frame.sp ... | 2021-02-19T11:01:25 |
ollama/ollama | e082d60a2406d54cc8c13d7e408f08818e7939d1 | 5dae738067414d235ee386abd690faf1a8da9ff4 | truncation: fixed runner truncation logic + removed server truncation (#12839)
This PR consolidates all embedding prompt-length checking, truncation, and prompt token counting into the runner to ensure a single source of truth. | [
{
"path": "integration/embed_test.go",
"patch": "@@ -4,7 +4,9 @@ package integration\n \n import (\n \t\"context\"\n+\t\"errors\"\n \t\"math\"\n+\t\"strings\"\n \t\"testing\"\n \t\"time\"\n \n@@ -204,8 +206,8 @@ func TestAllMiniLMEmbed(t *testing.T) {\n \t\tt.Fatalf(\"expected %v, got %v (similarity: %f)\",... | 2025-12-08T19:20:28 |
nodejs/node | b3cb8ce1113fd2c9b85f1051f53c17517a96a220 | aec019030d9a2dc0d108eb22995bc379a7d0da08 | 2018-03-29, Version 4.9.1 'Argon' (Maintenance)
Notable changes:
No additional commits.
Due to incorrect staging of the upgrade to the GCC 4.9.X compiler, the
latest releases for PPC little endian were built using GCC 4.9.X
instead of GCC 4.8.X. This caused an ABI breakage on PPCLE based
environments. This has been ... | [
{
"path": "CHANGELOG.md",
"patch": "@@ -109,7 +109,8 @@ release.\n <a href=\"doc/changelogs/CHANGELOG_V6.md#6.0.0\">6.0.0</a><br/>\n </td>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V4.md#4.9.0\">4.9.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V4.md#4.9.1\">4.9.1</a></b><br... | 2018-03-29T20:17:27 |
vercel/next.js | 27fe5c8c286a0fb38865e49fce55d97f2bd8d325 | 24b600303f2e8074c32b79d9b799ade85772d75e | Add response stream errorhandling in edge-function-runtime (#41102)
The behaviour of edge-function-runtime in the case of an error was not
identical to the edge-runtime.
If a type other than "Uint8Array" is written to the Response stream a
unhandledreject is raised and logged.
The current implementations(nodejs) a... | [
{
"path": "packages/next/server/body-streams.ts",
"patch": "@@ -17,23 +17,6 @@ export function requestToBodyStream(\n })\n }\n \n-export function bodyStreamToNodeStream(\n- bodyStream: ReadableStream<Uint8Array>\n-): Readable {\n- const reader = bodyStream.getReader()\n- return Readable.from(\n- (as... | 2022-10-06T18:56:13 |
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.