repo stringclasses 15
values | fix_commit stringlengths 40 40 | buggy_commit stringlengths 40 40 | message stringlengths 3 64.3k | files listlengths 1 300 | timestamp timestamp[s]date 2013-03-13 20:45:00 2026-04-11 07:48:46 |
|---|---|---|---|---|---|
huggingface/transformers | 7a7f27697ad17d4ff03dbe203095be8b71759b55 | 901f50458050116f8df860717ac38fe172c6809f | Fix `BertGeneration` (#35043)
fix
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": "src/transformers/models/bert_generation/modeling_bert_generation.py",
"patch": "@@ -785,9 +785,7 @@ def forward(\n \n # We can provide a self-attention mask of dimensions [batch_size, from_seq_length, to_seq_length]\n # ourselves in which case we just need to make it broadcastable... | 2024-12-03T12:56:59 |
golang/go | 01eb70e3dd4d7bf00ee915841e6b3c56fc94fe44 | 49add6ad90c3c6e150266b35ae98067d7b52c021 | os: fix hex exit code print on 32-bit windows
We want to print hex exit codes for the large values,
but on 32-bit Windows the large values are negative.
Change-Id: I0e350b128414a9468c93eddc62d660f552c1ee05
Reviewed-on: https://go-review.googlesource.com/c/go/+/294070
Trust: Russ Cox <rsc@golang.org>
Reviewed-by: Cher... | [
{
"path": "src/os/exec_posix.go",
"patch": "@@ -103,7 +103,7 @@ func (p *ProcessState) String() string {\n \tswitch {\n \tcase status.Exited():\n \t\tcode := status.ExitStatus()\n-\t\tif runtime.GOOS == \"windows\" && code >= 1<<16 { // windows uses large hex numbers\n+\t\tif runtime.GOOS == \"windows\" && ... | 2021-02-19T10:29:51 |
rust-lang/rust | fb6af25b2b05a330b17e17a1845c44d6b45350d4 | a1d345f93cbc53bc56f098deff9255bc7d5041ea | Update book.toml fix the authors field
See https://rust-lang.github.io/mdBook/format/configuration/general.html#general-metadata | [
{
"path": "src/doc/rustc-dev-guide/book.toml",
"patch": "@@ -1,6 +1,6 @@\n [book]\n title = \"Rust Compiler Development Guide\"\n-author = \"The Rust Project Developers\"\n+authors = [\"The Rust Project Developers\"]\n description = \"A guide to developing the Rust compiler (rustc)\"\n \n [build]",
"add... | 2025-04-04T05:34:08 |
nodejs/node | 42c740212d6c0b910463414ee7d9865e3fc0bb0c | 37db277bb4f7fe9a00e728b91f354b62b3c279ce | test: fix incorrect assumptions on uid and gid
Add a invalidArgTypeErrorCount variable to adjust the number of expected
errors if the uid and gid options cannot be properly validated.
Fixes: https://github.com/nodejs/node/issues/19371
PR-URL: https://github.com/nodejs/node/pull/19554
Reviewed-By: James M Snell <jasne... | [
{
"path": "test/parallel/test-child-process-spawnsync-validation-errors.js",
"patch": "@@ -5,13 +5,15 @@ const spawnSync = require('child_process').spawnSync;\n const signals = process.binding('constants').os.signals;\n \n let invalidArgTypeError;\n+let invalidArgTypeErrorCount = 62;\n \n if (common.isWindo... | 2018-03-23T12:24:01 |
ollama/ollama | 0c787231741eaa2e6d5b145e8565a62364a852b3 | 5a41d69b2ab7d133a27e4f6d5666982c73a5b5ad | readme: fix broken Swollama link in community integrations (#13370) | [
{
"path": "README.md",
"patch": "@@ -555,7 +555,7 @@ See the [API documentation](./docs/api.md) for all endpoints.\n - [Parakeet](https://github.com/parakeet-nest/parakeet) is a GoLang library, made to simplify the development of small generative AI applications with Ollama.\n - [Haverscript](https://github... | 2025-12-08T05:49:52 |
huggingface/transformers | 527dc04e46350ba4ef57a0bddbe34763cbda831b | 4955e4e638a4e487b85d480abc6e35020f90efdf | [docs] add the missing import for Image and bug fix (#34776)
* add the missing import for Image lib
* add more devices in comment
* bug fix | [
{
"path": "docs/source/en/tasks/video_text_to_text.md",
"patch": "@@ -47,7 +47,7 @@ model_id = \"llava-hf/llava-interleave-qwen-0.5b-hf\"\n processor = LlavaProcessor.from_pretrained(model_id)\n \n model = LlavaForConditionalGeneration.from_pretrained(model_id, torch_dtype=torch.float16)\n-model.to(\"cuda\"... | 2024-12-02T19:40:20 |
vercel/next.js | 24b600303f2e8074c32b79d9b799ade85772d75e | 5e6b008b561caf2710ab7be63320a3d549474a5b | Do not bundle `react-dom` in the SSR build (#41227)
Currently `react-dom` isn't handled as an external dependency in SSR,
unlike `react`. This means that the ReactDOM imported by client
components isn't the same instance as the ReactDOM that does SSR.
This PR also upgrades React experimental to the latest version... | [
{
"path": "package.json",
"patch": "@@ -183,8 +183,8 @@\n \"react-17\": \"npm:react@17.0.2\",\n \"react-dom\": \"18.2.0\",\n \"react-dom-17\": \"npm:react-dom@17.0.2\",\n- \"react-dom-exp\": \"npm:react-dom@0.0.0-experimental-65b3449c8-20221005\",\n- \"react-exp\": \"npm:react@0.0.0-experi... | 2022-10-06T18:27:24 |
golang/go | 49add6ad90c3c6e150266b35ae98067d7b52c021 | fce2a94d84dd5e39e0d53e60beda22da7b6f55b0 | runtime: fix spurious stack overflow detection
The regabi builders are unhappy about badctxt calling throw
calling systemstack calling gosave_systemstack_switch calling
badctxt, all nosplit, repeating. This wouldn't actually happen
since after one systemstack we'd end up on the system stack
and the next one wouldn't c... | [
{
"path": "src/runtime/asm_386.s",
"patch": "@@ -618,7 +618,7 @@ TEXT gosave_systemstack_switch<>(SB),NOSPLIT,$0\n \tMOVL\t(g_sched+gobuf_ctxt)(BX), AX\n \tTESTL\tAX, AX\n \tJZ\t2(PC)\n-\tCALL\truntime·badctxt(SB)\n+\tCALL\truntime·abort(SB)\n \tPOPL\tBX\n \tPOPL\tAX\n \tRET",
"additions": 1,
"delet... | 2021-02-19T10:22:35 |
rust-lang/rust | a14e8f687c2f274548a20e01231b706d3c88790c | 00095b3da4f23d9b3e7a809ac6a4e2b2530df84c | adt_destructor: sanity-check returned item
Fixes #139278 | [
{
"path": "compiler/rustc_middle/src/ty/util.rs",
"patch": "@@ -414,6 +414,11 @@ impl<'tcx> TyCtxt<'tcx> {\n continue;\n };\n \n+ if self.def_kind(item_id) != DefKind::AssocFn {\n+ self.dcx().span_delayed_bug(self.def_span(item_id), \"drop is not a funct... | 2025-04-04T03:17:45 |
nodejs/node | 37db277bb4f7fe9a00e728b91f354b62b3c279ce | a34f1e32453951d026a3b58a30b83df065060612 | test: refactor test-net-dns-error
- Use `common.mustCall()` and `common.mustNotCall()`.
- Use ternary operator.
PR-URL: https://github.com/nodejs/node/pull/19640
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Reviewed-By: Co... | [
{
"path": "test/parallel/test-net-dns-error.js",
"patch": "@@ -21,27 +21,20 @@\n \n 'use strict';\n const common = require('../common');\n-const assert = require('assert');\n \n+const assert = require('assert');\n const net = require('net');\n \n const host = '*'.repeat(256);\n+const errCode = common.isOpen... | 2018-03-27T17:35:03 |
ollama/ollama | 31b8c6a214dbfd7f1c711869572301ef7bf41b58 | 9191dfaf05eaccda149cff937fb180bdb87ee5d1 | fix(api): correct Content-Type header for /api/chat and /api/generate when using cloud models (#13279)
---------
Co-authored-by: Pogosyan Sos <sos_pogosyan@MacBook-Pro-Sos.local>
Co-authored-by: Patrick Devine <patrick@infrahq.com> | [
{
"path": "server/routes.go",
"patch": "@@ -262,6 +262,12 @@ func (s *Server) GenerateHandler(c *gin.Context) {\n \t\t\tslog.Warn(\"embedded messages in the model not supported with '/api/generate'; try '/api/chat' instead\")\n \t\t}\n \n+\t\tcontentType := \"application/x-ndjson\"\n+\t\tif req.Stream != ni... | 2025-12-05T05:33:07 |
huggingface/transformers | 31299670cda29f25fbc655f6f166e7b8cc21c89f | 31830474bff00c6cb15d395f800594b9a5a74e3f | Multiple typo fixes in Tutorials docs (#35035)
* Fixed typo in multi gpu docs and OLMoE version
* Fixed typos in docs for agents, agents advanced, knowledge distillation, and image feature extraction
* Fixed incorrect usage of model.image_guided_detection in zero shot object detection docs | [
{
"path": "docs/source/en/agents.md",
"patch": "@@ -225,7 +225,7 @@ You have access to the following tools:\n To solve the task, you must plan forward to proceed in a series of steps, in a cycle of 'Thought:', 'Code:', and 'Observation:' sequences.\n \n At each step, in the 'Thought:' sequence, you should f... | 2024-12-02T15:26:34 |
vercel/next.js | 5e6b008b561caf2710ab7be63320a3d549474a5b | c6dc62ef0497aa903d7d6cfe839783ad5e24c548 | Fix docs for next/image unconfigured hosts (#41223)
Fix docs for next/image unconfigured hosts to mention `remotePatterns`. | [
{
"path": "errors/next-image-unconfigured-host.md",
"patch": "@@ -2,11 +2,29 @@\n \n #### Why This Error Occurred\n \n-On one of your pages that leverages the `next/image` component, you passed a `src` value that uses a hostname in the URL that isn't defined in the `images.domains` config in `next.config.js... | 2022-10-06T16:51:41 |
golang/go | fce2a94d84dd5e39e0d53e60beda22da7b6f55b0 | 7764ee5614df2228e03326487af7670c7c5d268a | cmd/compile: fix buglet in inlined info abstract function dwarf-gen
When generating DWARF inlined info records, it's possible to have a
local function whose only callsites are inlined away, meaning that we
emit an abstract function DIE but no regular subprogram DIE. When
emitting DWARF scope info we need to handle thi... | [
{
"path": "src/cmd/compile/internal/dwarfgen/scope.go",
"patch": "@@ -37,7 +37,9 @@ func assembleScopes(fnsym *obj.LSym, fn *ir.Func, dwarfVars []*dwarf.Var, varSco\n \t}\n \n \tscopeVariables(dwarfVars, varScopes, dwarfScopes)\n-\tscopePCs(fnsym, fn.Marks, dwarfScopes)\n+\tif fnsym.Func().Text != nil {\n+\... | 2021-02-17T20:51:05 |
rust-lang/rust | a2618e1af04401513252097235e99f8b81588b75 | 00095b3da4f23d9b3e7a809ac6a4e2b2530df84c | AsyncDestructor: replace fields with impl_did
The future and ctor fields aren't actually used, and the way they are
extracted is obviously wrong – swapping the order of the items in the
source code will give wrong results.
Instead, store just the LocalDefId of the impl, which is enough for the
only use of this data. | [
{
"path": "compiler/rustc_middle/src/ty/mod.rs",
"patch": "@@ -1124,10 +1124,8 @@ pub struct Destructor {\n // FIXME: consider combining this definition with regular `Destructor`\n #[derive(Copy, Clone, Debug, HashStable, Encodable, Decodable)]\n pub struct AsyncDestructor {\n- /// The `DefId` of the asy... | 2025-04-04T02:56:18 |
huggingface/transformers | 31830474bff00c6cb15d395f800594b9a5a74e3f | f41d5d8f747f48849005d18dd1c04d5889f31c1b | Fix `test_eager_matches_sdpa_inference` for `XPU` backend (#34889)
* Use torch.nn.attention.sdpa_kernel instead of deprecated torch.backends.cuda.sdp_kernel
Signed-off-by: Dmitry Rogozhkin <dmitry.v.rogozhkin@intel.com>
* Fix test_eager_matches_sdpa_inference for XPU backend
As of PyTorch 2.5 XPU backend supp... | [
{
"path": "src/transformers/models/nemotron/modeling_nemotron.py",
"patch": "@@ -76,7 +76,7 @@ def __init__(\n \n def forward(self, input: Tensor) -> Tensor:\n args = _cast_if_autocast_enabled(input, self.normalized_shape, self.weight + 1, self.bias, self.eps)\n- with torch.cuda.amp.autoc... | 2024-12-02T15:21:04 |
nodejs/node | a34f1e32453951d026a3b58a30b83df065060612 | 9bfe55e18419ae9e67f6dc80b42943d2f7d3e9e8 | test: fix typo in test-tls-cnnic-whitelist
PR-URL: https://github.com/nodejs/node/pull/19662
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: Luigi Pinca <luigipinca@gma... | [
{
"path": "test/parallel/test-tls-cnnic-whitelist.js",
"patch": "@@ -14,7 +14,7 @@ function loadPEM(n) {\n }\n \n const testCases = [\n- { // Test 0: for the check of a cert not existed in the whitelist.\n+ { // Test 0: for the check of a cert not in the whitelist.\n // agent7-cert.pem is issued by th... | 2018-03-28T19:14:29 |
vercel/next.js | c6dc62ef0497aa903d7d6cfe839783ad5e24c548 | 6352257dd35ddd098276b5dce4d2cbd371e9d89f | Upgrade React experimental (#41222)
<!--
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:
-->
## Bug
- [ ] Related iss... | [
{
"path": "package.json",
"patch": "@@ -183,8 +183,8 @@\n \"react-17\": \"npm:react@17.0.2\",\n \"react-dom\": \"18.2.0\",\n \"react-dom-17\": \"npm:react-dom@17.0.2\",\n- \"react-dom-exp\": \"npm:react-dom@0.0.0-experimental-cb5084d1c-20220924\",\n- \"react-exp\": \"npm:react@0.0.0-experi... | 2022-10-06T16:06:14 |
huggingface/transformers | f41d5d8f747f48849005d18dd1c04d5889f31c1b | 7b5f76e32e821757bce05452d2dabaf9dae698da | Add type hints for forward functions in Gemma2 (#35034)
* feat: add gemma2 type hints
* fix: mask is optional | [
{
"path": "src/transformers/models/gemma2/modeling_gemma2.py",
"patch": "@@ -170,7 +170,14 @@ def repeat_kv(hidden_states: torch.Tensor, n_rep: int) -> torch.Tensor:\n return hidden_states.reshape(batch, num_key_value_heads * n_rep, slen, head_dim)\n \n \n-def eager_attention_forward(config, query, key,... | 2024-12-02T14:03:36 |
nodejs/node | 9bfe55e18419ae9e67f6dc80b42943d2f7d3e9e8 | 852ba3a0f963c04b2871b31af75a546f780524df | child_process: better spawn error message
Throw ERR_INVALID_ARG_VALUE when filename passed to spawn is empty.
Fixes: https://github.com/nodejs/node/issues/19235
PR-URL: https://github.com/nodejs/node/pull/19305
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By:... | [
{
"path": "lib/child_process.js",
"patch": "@@ -386,9 +386,12 @@ function _convertCustomFds(options) {\n }\n \n function normalizeSpawnArguments(file, args, options) {\n- if (typeof file !== 'string' || file.length === 0)\n+ if (typeof file !== 'string')\n throw new ERR_INVALID_ARG_TYPE('file', 'strin... | 2018-03-12T21:41:19 |
ollama/ollama | 0cf7794b16fab8d4561bc5f6379f6d48bd59e101 | 854d40edc5c5894014a9aea28fcca7b7aeba83bb | ggml update to b7108 (#12992)
* Revert "vulkan: temporary cary of vulkan fixes (#12971)"
This reverts commit 3a9e8e9fd42f32711b8aeea355e3ed5e155d49b2.
* ggml update to b7087
* fix argsort on metal
* update to b7108
* fix bakllava regression
This model lacks the metadata for the projector type.
* update to b7209... | [
{
"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=3cfa9c3f125763305b4226bc032f1954f08990dc\n+FETCH_HEAD=7f8ef50cce40e3e7e4526a3696cb45658190e69a\n \n .PHONY: help\n help:",
"additions": 1,
"deletions": 1,
... | 2025-12-04T03:43:29 |
rust-lang/rust | b9e13cb539c23a320e3856eba82711cd6360407e | aa1b7bf070376b9b895d36a64263a5959eefebdd | Apply `Recovery::Forbidden` when reparsing pasted macro fragments.
Fixes #137874.
Removes `tests/crashes/137874.rs`; the new test is simpler (defines its
own macro) but tests the same thing.
The changes to the output of `tests/ui/associated-consts/issue-93835.rs`
partly undo the changes seen when `NtTy` was removed ... | [
{
"path": "compiler/rustc_parse/src/parser/mod.rs",
"patch": "@@ -512,6 +512,14 @@ impl<'a> Parser<'a> {\n self\n }\n \n+ #[inline]\n+ fn with_recovery<T>(&mut self, recovery: Recovery, f: impl FnOnce(&mut Self) -> T) -> T {\n+ let old = mem::replace(&mut self.recovery, recovery);\n... | 2025-04-03T22:34:01 |
vercel/next.js | 21605a5f9fadcfbca28c0906127382c5ecf40b77 | 22ef969b7b069975076ea00603323861843f7044 | Fix error 500 (#41205)
Fix the following problem:
```
page: '/api/todos'
}
10 |
11 | if (method === 'GET') {
> 12 | const { value: items } = await base.fetch([]).next()
| ^
13 | respBody = items
14 | res.statusCode = 200
15 | } else if... | [
{
"path": "examples/with-deta-base/pages/api/todos/index.js",
"patch": "@@ -9,7 +9,7 @@ const handler = async (req, res) => {\n let respBody = {}\n \n if (method === 'GET') {\n- const { value: items } = await base.fetch([]).next()\n+ const { items } = await base.fetch([])\n respBody = items\n ... | 2022-10-06T08:19:28 |
huggingface/transformers | 7b5f76e32e821757bce05452d2dabaf9dae698da | c24c79ebf91f6f04faf287997848ed6e64d78899 | Typo in warning switching to optimum-quanto (#35028)
fix typos | [
{
"path": "src/transformers/quantizers/quantizer_quanto.py",
"patch": "@@ -93,7 +93,7 @@ def update_missing_keys(self, model, missing_keys: List[str], prefix: str) -> Li\n from optimum.quanto import QModuleMixin\n elif is_quanto_available():\n logger.warning_once(\n- ... | 2024-12-02T13:47:05 |
nodejs/node | 42d1d72a2e8a0ca1ffac98a4fe761e6c42b54c3b | ffe3f9a182141503395cc4c8da87aa1da9f20038 | test: fix assert.throws error in test-http-parser
The third argument of `assert.throws()` is a message that is used by the
AssertionError, not the message to check in the thrown error. It appears
that there is an assert.throws() in test-http-parser that expects the
latter behavior. Rewrite the call to check the error ... | [
{
"path": "test/parallel/test-http-parser.js",
"patch": "@@ -97,9 +97,10 @@ function expectBody(expected) {\n \n parser.reinitialize(HTTPParser.REQUEST);\n \n- assert.throws(function() {\n- parser.execute(request, 0, request.length);\n- }, Error, 'hello world');\n+ assert.throws(\n+ () => { parse... | 2018-03-27T04:19:01 |
ollama/ollama | 84a2cedf187c7a30eb4a9ae0392e901001029e36 | 3f3083673496adcc0429ff213dabb0c4fcbe21a2 | app: relay thinking false to server (#13319)
This fixes a bug where disabling thinking on deepseek-v3.1 did not stop the model from thinking.
When thinking is not defined it should not be sent to the server since this will cause error responses in some cases where the model does not support thinking. However if it is... | [
{
"path": "app/ui/app/src/api.ts",
"patch": "@@ -204,12 +204,10 @@ export async function* sendMessage(\n data: uint8ArrayToBase64(att.data),\n }));\n \n- // Only send think parameter when actually requesting thinking\n- // Don't send false as it causes issues with some providers\n+ // Send think pa... | 2025-12-03T23:06:55 |
vercel/next.js | 22ef969b7b069975076ea00603323861843f7044 | e8c760f7d4b637aa4e29b6d677fa3ce371720a1d | Remove hook_optimizer transform (#41203)
Fixes an issue where `const […foo] = useState(0)` is improperly transformed into `const { 0: …foo } = useState(0)`.
The hook optimizer was useful when hooks first came out, primarily because browsers had never optimized array destructuring. But current browsers have, and the o... | [
{
"path": "packages/next-swc/crates/core/src/hook_optimizer.rs",
"patch": "@@ -1,123 +0,0 @@\n-use swc_core::{\n- common::DUMMY_SP,\n- ecma::ast::{\n- ArrayPat, Callee, Decl, Expr, Ident, ImportDecl, ImportSpecifier, KeyValuePatProp, Number,\n- ObjectPat, ObjectPatProp, Pat, PropName, Va... | 2022-10-06T08:12:34 |
huggingface/transformers | 9ab8c5b503f46a5edc5307f6f503f059c87876ad | 3480cbb97e6eb312aa0475ef6795d7d875299e07 | fix variable undefined bug when return_tensors is not specified in llava processing (#34953)
* fix variable undefined bug when return_tensors is not specified in llava processor
* improve readability | [
{
"path": "src/transformers/models/llava_next/processing_llava_next.py",
"patch": "@@ -165,7 +165,8 @@ def __call__(\n image_size = next(image_sizes)\n if not isinstance(image_size, (list, tuple)):\n # cast to list to avoid numerica... | 2024-12-02T10:44:42 |
nodejs/node | 108c176e8f764d33d0cffd086223511feff49e02 | e76525728301abdcab4638c14d20f04049576db3 | lib: fix a typo in lib/timers "read through"
PR-URL: https://github.com/nodejs/node/pull/19666
Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> | [
{
"path": "lib/timers.js",
"patch": "@@ -66,7 +66,7 @@ const kRefed = Symbol('refed');\n // Therefore, it is very important that the timers implementation is performant\n // and efficient.\n //\n-// Note: It is suggested you first read though the lib/internal/linkedlist.js\n+// Note: It is suggested you fir... | 2018-03-29T01:38:17 |
rust-lang/rust | b98760ba2dc4fffee19c75b83a472fe6f039f115 | 897f9e5985fb8a43fef6bbb40701efebc36bb9bc | Fix links | [
{
"path": "src/doc/unstable-book/src/language-features/type-alias-impl-trait.md",
"patch": "@@ -153,7 +153,7 @@ take_impl(x);\n Note that the user cannot use `#[define_opaque(Alias)]` to reify the opaque type because only the crate where the type alias is declared may do so. But if this happened in the same... | 2025-04-03T23:23:01 |
ollama/ollama | 3f3083673496adcc0429ff213dabb0c4fcbe21a2 | cc9555aff0f220748dc761a4302cfaea7c62c9fe | CUDA: filter devices on secondary discovery (#13317)
We now do a deeper probe of CUDA devices to verify the library version has
the correct compute capability coverage for the device. Due to ROCm also
interpreting the CUDA env var to filter AMD devices, we try to avoid setting
it which leads to problems in mixed vend... | [
{
"path": "discover/runner.go",
"patch": "@@ -147,7 +147,7 @@ func GPUDevices(ctx context.Context, runners []ml.FilteredRunnerDiscovery) []ml.\n \t\t\twg.Add(1)\n \t\t\tgo func(i int) {\n \t\t\t\tdefer wg.Done()\n-\t\t\t\textraEnvs := ml.GetVisibleDevicesEnv(devices[i : i+1])\n+\t\t\t\textraEnvs := ml.GetVi... | 2025-12-03T20:58:16 |
vercel/next.js | e5be49eec1e88db63d2a9712e56adad6a80e2891 | 188acd249cd493c7e50b08bfbf69117dcd655eb3 | Font loader with babel error (#41151)
Adds build error when using font loaders with babel. Otherwise you'll
get other unrelated errors.
## Bug
- [ ] Related issues linked using `fixes #number`
- [ ] Integration tests added
- [ ] Errors have a helpful link attached, see `contributing.md`
## Feature
- [ ]... | [
{
"path": "errors/babel-font-loader-conflict.md",
"patch": "@@ -0,0 +1,14 @@\n+# Babel and Font loader conflict\n+\n+#### Why This Error Occurred\n+\n+You have tried to use `experimental.fontLoaders` with a custom babel config. When your application has a custom babel config you opt-out of the Next.js Compi... | 2022-10-06T05:14:31 |
huggingface/transformers | f7427f58edc8dfb74094a82416347f7c190f1ceb | 737f4dc4b6c9d13c51baf8d5e181a0e9ac8ae718 | fix: double verbs (#35008) | [
{
"path": "src/transformers/trainer.py",
"patch": "@@ -2113,7 +2113,7 @@ def train(\n FutureWarning,\n )\n if len(kwargs) > 0:\n- raise TypeError(f\"train() received got unexpected keyword arguments: {', '.join(list(kwargs.keys()))}.\")\n+ raise Type... | 2024-11-29T13:19:57 |
rust-lang/rust | 3aa1b607bd45565c3fc2e26ad6b3a854bc4218b5 | 8408e2810b5e670b6ae82b72e4e6770363e90f78 | fix language-configuration.json | [
{
"path": "src/tools/rust-analyzer/editors/code/language-configuration.json",
"patch": "@@ -14,9 +14,9 @@\n [\"(\", \")\"]\n ],\n \"autoClosingPairs\": [\n- { \"open\": \"{\", \"close\": \"}\" },\n- { \"open\": \"[\", \"close\": \"]\" },\n- { \"open\": \"(\", \"close\": ... | 2025-04-03T22:26:57 |
nodejs/node | 38b48a62b851f5895b50204dff0df7608b9fa848 | 32050065f15de0f2e68adb2387694c094da28ca2 | deps: reject interior blanks in Content-Length
Original commit message follows:
Before this commit `Content-Length: 4 2` was accepted as a valid
header and recorded as `parser->content_length = 42`. Now it is
a parse error that fails with error `HPE_INVALID_CONTENT_LENGTH`.
Downstream users that ins... | [
{
"path": "deps/http_parser/http_parser.c",
"patch": "@@ -370,6 +370,8 @@ enum header_states\n \n , h_connection\n , h_content_length\n+ , h_content_length_num\n+ , h_content_length_ws\n , h_transfer_encoding\n , h_upgrade\n \n@@ -1406,6 +1408,7 @@ size_t http_parser_execute (http_parser *parser,\... | 2018-03-27T14:45:33 |
golang/go | 563a6cb17fdfbd20067cfe56cd38608ae3824df9 | 84953420fbf8d7ecb86c3521fc585c8c383ac100 | [dev.fuzz] go/build: add missing dependencies
The test was broken before, but was fixed in
CL 279073, which will be pulled in during our
merge.
Change-Id: I782c49f223eec5f856e4735a6c883f1464be5a57
Reviewed-on: https://go-review.googlesource.com/c/go/+/293842
Reviewed-by: Jay Conrod <jayconrod@google.com>
Trust: Katie... | [
{
"path": "src/go/build/deps_test.go",
"patch": "@@ -484,7 +484,7 @@ var depsRules = `\n \tFMT, flag, runtime/debug, runtime/trace, internal/sysinfo\n \t< testing;\n \n-\tFMT, crypto/sha256, encoding/json, math/rand\n+\tFMT, crypto/sha256, encoding/json, go/ast, go/parser, go/token, math/rand\n \t< internal... | 2021-02-18T22:53:07 |
ollama/ollama | 5317202c38437867bc6c9ed21ffc5c949ab6794c | d771043e88a847efae1557bee56ca14db9d8a940 | llm: Don't always evict models on CPU-only systems
Model eviction happens when we have at least one other model
loaded and are unable to load all layers into VRAM. However, on
CPU-only systems we can never load layers into VRAM, so this
constantly triggered eviction.
Fixes #13227 | [
{
"path": "llm/server.go",
"patch": "@@ -874,7 +874,7 @@ func (s *llmServer) createLayout(systemInfo ml.SystemInfo, systemGPUs []ml.Devic\n \t\t}}\n \t}\n \tgpuLayers, layers := s.buildLayout(systemGPUs, memory, requireFull, backoff)\n-\terr := s.verifyLayout(systemInfo, memory, requireFull, gpuLayers, laye... | 2025-11-25T22:51:02 |
vercel/next.js | 188acd249cd493c7e50b08bfbf69117dcd655eb3 | cee656238a175b8bb75434c013c79279e546381c | Fix errors entry in codeowners | [
{
"path": ".github/CODEOWNERS",
"patch": "@@ -4,7 +4,7 @@\n * @timneutkens @ijjk @shuding @huozhi\n /.github/ @timneutkens @ijjk @shuding @styfle @huozhi @padmaia @balazsorban44\n /docs/ @timneutkens @ijjk @shuding @styfle @huozhi @padmaia @leerob @balazsorban44\n-/errors/ @balazsorban44\n+/... | 2022-10-06T05:10:23 |
golang/go | dfe0ef961b02916ae8403ced9a9a7c9a9ec19a7e | 2f37939a21d534940382b1c3d3c3863ff1b9f50d | [dev.typeparams] go/types, types2: revert fancy struct printing (fixes x/tools tests)
An embedded struct field is embedded by mentioning its type.
The fact that the field name may be different and derived
from the type doesn't matter for the struct type.
Do print the embedded type rather than the derived field
name, ... | [
{
"path": "src/cmd/compile/internal/types2/typestring.go",
"patch": "@@ -126,19 +126,14 @@ func writeType(buf *bytes.Buffer, typ Type, qf Qualifier, visited []Type) {\n \t\t\tif i > 0 {\n \t\t\t\tbuf.WriteString(\"; \")\n \t\t\t}\n-\t\t\tbuf.WriteString(f.name)\n-\t\t\tif f.embedded {\n-\t\t\t\t// emphasize... | 2021-02-19T02:06:01 |
nodejs/node | 80310e916aff24dc6b3477ad52a697dff84fc78e | b2a6c9745298c11f05bd8583761439ee701721c9 | 2018-03-28, Version 9.10.0 (Current)
This is a security release. All Node.js users should consult the
security release summary at:
https://nodejs.org/en/blog/vulnerability/march-2018-security-releases/
for details on patched vulnerabilities.
Fixes for the following CVEs are included in this release:
* CVE-2018-715... | [
{
"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.9.0\">9.9.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V9.md#9.10.0\">9.10.0</a></b><br/>\n+<a href=\"doc/changelogs/CHANGELOG_V9.md#9.9.0\">9.9.0... | 2018-03-27T14:24:09 |
ollama/ollama | d3e0a0dee462df407c7c950db8f832c700ac8199 | 554172759ca56cbf2690fea50fbaa11fe2bfcd48 | model: ministral w/ llama4 scaling (#13292)
This change:
* fixes rope scaling in the mistral converter
* updates ministral to include llama4 scaling
* includes a new ministral parser for parsing reasoning and tool calling
---------
Co-authored-by: jmorganca <jmorganca@gmail.com> | [
{
"path": ".golangci.yaml",
"patch": "@@ -11,7 +11,6 @@ linters:\n - errorlint\n - exptostd\n - gocheckcompilerdirectives\n- - gocritic\n - govet\n - ineffassign\n - intrange",
"additions": 0,
"deletions": 1,
"language": "YAML"
},
{
"path": "cmd/cmd.go",
"p... | 2025-12-02T07:20:14 |
vercel/next.js | cee656238a175b8bb75434c013c79279e546381c | d47f3929d13ab7fa305e832710523aa8f128a114 | Fix latest experimental react and experimental-edge and unpin test versions (#41200)
This ensures we don't stub `react-dom` with the `experimental-edge` runtime and also unpins our tests to use the latest experimental release.
Co-authored-by: JJ Kasper <22380829+ijjk@users.noreply.github.com> | [
{
"path": "packages/next/build/webpack-config.ts",
"patch": "@@ -1217,7 +1217,6 @@ export default async function getBaseWebpackConfig(\n '{}',\n './cjs/react-dom-server-legacy.browser.development.js':\n '{}',\n- 'react-dom': ... | 2022-10-05T21:27:47 |
golang/go | 7764ee5614df2228e03326487af7670c7c5d268a | 87f425da1433a172c1fa02134a8dab9a3784e24f | runtime: fix invalid nil g check for for mips64x
In CL 292109 we removed unnecessary writes to gp.sched.g
but put wrong register to save g (R4 saves pointer to g) on mips64x
Change-Id: I9777846a7b0a46e1af83dcfc73b74649e0dba3c9
Reviewed-on: https://go-review.googlesource.com/c/go/+/293989
TryBot-Result: Go Bot <gobot@... | [
{
"path": "src/runtime/asm_mips64x.s",
"patch": "@@ -98,11 +98,11 @@ TEXT runtime·mstart(SB),NOSPLIT|TOPFRAME,$0\n TEXT runtime·gogo(SB), NOSPLIT|NOFRAME, $0-8\n \tMOVV\tbuf+0(FP), R3\n \tMOVV\tgobuf_g(R3), R4\n-\tMOVV\t0(R4), R5\t// make sure g != nil\n+\tMOVV\t0(R4), R0\t// make sure g != nil\n \tJMP\tgog... | 2021-02-19T06:31:57 |
nodejs/node | b2a6c9745298c11f05bd8583761439ee701721c9 | ffbcd1d1d154a793cf4f2db7fbca66f80ef374b5 | 2018-03-28, Version 8.11.0 'Carbon' (LTS)
This is a security release. All Node.js users should consult the
security release summary at:
https://nodejs.org/en/blog/vulnerability/march-2018-security-releases/
for details on patched vulnerabilities.
Fixes for the following CVEs are included in this release:
* CVE-201... | [
{
"path": "CHANGELOG.md",
"patch": "@@ -46,7 +46,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.10.0\">8.10.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V8.md#8.11.0\">8.11.0</a><... | 2018-03-28T06:39:03 |
ollama/ollama | 5b6a8e6001f17fdf1929cce462493e4254e747e9 | 467bbc0dd5a048c0b37aa3c811d073e95ab15406 | api/client: handle non-json streaming errors (#13007)
While processing the response stream during a chat or generation if an error is occurred it is parsed and returned to the user. The issue with the existing code is that this assumed the response would be valid JSON, which is not a safe assumption and caused cryptic... | [
{
"path": "api/client.go",
"patch": "@@ -226,7 +226,14 @@ func (c *Client) stream(ctx context.Context, method, path string, data any, fn f\n \n \t\tbts := scanner.Bytes()\n \t\tif err := json.Unmarshal(bts, &errorResponse); err != nil {\n-\t\t\treturn fmt.Errorf(\"unmarshal: %w\", err)\n+\t\t\tif response.S... | 2025-12-01T23:10:16 |
vercel/next.js | cbda3b52dc6cb4c66d4315b12665481a37116aab | 99d88f2a585618b80058b201f765e66c88e5f5b8 | docs(image): improve error message when `sharp` is missing in standalone mode (#41133)
Partially addresses #41111
## Bug
- [ ] Related issues linked using `fixes #number`
- [ ] Integration tests added
- [ ] Errors have a helpful link attached, see `contributing.md`
## Feature
- [ ] Implements an existing feature r... | [
{
"path": "docs/advanced-features/output-file-tracing.md",
"patch": "@@ -16,11 +16,11 @@ During `next build`, Next.js will use [`@vercel/nft`](https://github.com/vercel/\n \n Next.js' production server is also traced for its needed files and output at `.next/next-server.js.nft.json` which can be leveraged i... | 2022-10-05T17:28:29 |
huggingface/transformers | f491096f7d55a72b2ac364ca14668d6f577ad8fc | 01ad80f820db828ebe68acc0555f177fbf1d4baf | Fix docker CI : install autogptq from source (#35000)
* Fixed Docker
* Test ci
* Finally
* add comment | [
{
"path": "docker/transformers-quantization-latest-gpu/Dockerfile",
"patch": "@@ -36,8 +36,10 @@ RUN python3 -m pip install --no-cache-dir einops\n # Add bitsandbytes for mixed int8 testing\n RUN python3 -m pip install --no-cache-dir bitsandbytes\n \n-# Add auto-gptq for gtpq quantization testing\n-RUN pyth... | 2024-11-28T15:31:36 |
golang/go | 2f37939a21d534940382b1c3d3c3863ff1b9f50d | 8654db4555bd0537162a72c4514c601a9a8b5c30 | go/parser: improve error recovery from invalid selector exprs
Before this CL, the parser consumed the next token following an invalid
selector expr no matter what it was. This leads to poor error recovery
when this next token is a closing delimiter or other reasonable element
of a stop set. As a side-effect, x/tools t... | [
{
"path": "src/go/parser/parser.go",
"patch": "@@ -1754,7 +1754,14 @@ func (p *parser) parsePrimaryExpr(lhs bool) (x ast.Expr) {\n \t\t\tdefault:\n \t\t\t\tpos := p.pos\n \t\t\t\tp.errorExpected(pos, \"selector or type assertion\")\n-\t\t\t\tp.next() // make progress\n+\t\t\t\t// TODO(rFindley) The check fo... | 2021-02-19T01:08:42 |
nodejs/node | ffbcd1d1d154a793cf4f2db7fbca66f80ef374b5 | ebe51d6492c3993020e1859b5269aa783fad0a4a | 2018-03-28, Version 6.14.0 'Boron' (LTS)
This is a security release. All Node.js users should consult the
security release summary at:
https://nodejs.org/en/blog/vulnerability/march-2018-security-releases/
for details on patched vulnerabilities.
Fixes for the following CVEs are included in this release:
* CVE-2018... | [
{
"path": "CHANGELOG.md",
"patch": "@@ -69,7 +69,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.13.1\">6.13.1</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V6.md#6.14.0\">6.14.0</a></b... | 2018-03-28T06:50:11 |
ollama/ollama | 467bbc0dd5a048c0b37aa3c811d073e95ab15406 | 6d9f9323c5eb477ba4664a544a790a50817b10f6 | jetpack: require exact match or skip cuda_jetpack* (#13288)
The cuda_jetpack libs will enumerate discrete GPUs on SBSA systems
which leads to runtime failures of missing kernels. This fix
requires an exact match to enable jetpacks instead of relying on
enumeration to filter out supported libraries. | [
{
"path": "discover/runner.go",
"patch": "@@ -98,6 +98,9 @@ func GPUDevices(ctx context.Context, runners []ml.FilteredRunnerDiscovery) []ml.\n \t\t\t\t\tcontinue\n \t\t\t\t} else if jetpack != \"\" && filepath.Base(dir) != \"cuda_\"+jetpack {\n \t\t\t\t\tcontinue\n+\t\t\t\t} else if jetpack == \"\" && strin... | 2025-12-01T20:48:16 |
vercel/next.js | 6e171696f8c067923afaa6afc1245cb4232e3465 | d5837e03cc9a4377c534ea2ccabc54856b6a15f8 | chore(examples): add Radix UI example (#41169)
fixes #40072
## Documentation / Examples
- [ ] Make sure the linting passes by running `pnpm lint`
- [x] The "examples guidelines" are followed from [our contributing doc](https://github.com/vercel/next.js/blob/canary/contributing/examples/adding-examples.md)
Co-aut... | [
{
"path": "examples/radix-ui/.gitignore",
"patch": "@@ -0,0 +1,34 @@\n+# Dependencies\n+/node_modules\n+/.pnp\n+.pnp.js\n+\n+# Testing\n+/coverage\n+\n+# Next.js\n+/.next/\n+/out/\n+\n+# Production\n+/build\n+\n+# Misc\n+.DS_Store\n+*.pem\n+\n+# Debug\n+npm-debug.log*\n+yarn-debug.log*\n+yarn-error.log*\n+.... | 2022-10-05T14:49:59 |
huggingface/transformers | 01ad80f820db828ebe68acc0555f177fbf1d4baf | 9d6f0ddcec215b24006c74acb7875fd2706a3a84 | Improve `.from_pretrained` type annotations (#34973)
* Fix from_pretrained type annotations
* Better typing for image processor's `from_pretrained` | [
{
"path": "src/transformers/image_processing_base.py",
"patch": "@@ -19,7 +19,7 @@\n import os\n import warnings\n from io import BytesIO\n-from typing import Any, Dict, List, Optional, Tuple, Union\n+from typing import Any, Dict, List, Optional, Tuple, Type, TypeVar, Union\n \n import numpy as np\n import ... | 2024-11-28T15:05:19 |
golang/go | 8654db4555bd0537162a72c4514c601a9a8b5c30 | 47e4b0739e32db5e057dd372aae16ff981886c15 | [dev.typeparams] go/types: adjust printing of embedded struct fields (fixes x/tools/cmd/guru tests)
Prior to 1.16, go/types printed an embedded struct field by simply
printing its type, which may have included a package qualification.
Just printing the type is not useful with generic types and we now
must print the ac... | [
{
"path": "src/go/types/typestring.go",
"patch": "@@ -126,6 +126,13 @@ func writeType(buf *bytes.Buffer, typ Type, qf Qualifier, visited []Type) {\n \t\t\tif i > 0 {\n \t\t\t\tbuf.WriteString(\"; \")\n \t\t\t}\n+\t\t\t// For compatibility with versions < go1.16, qualify the field name\n+\t\t\t// of embedded... | 2021-02-19T01:01:54 |
nodejs/node | ebe51d6492c3993020e1859b5269aa783fad0a4a | 4de78219711dcfdc24290520b20dce1fff01e164 | 2018-03-28, Version 4.9.0 'Argon' (Maintenance)
This is a security release. All Node.js users should consult the
security release summary at:
https://nodejs.org/en/blog/vulnerability/march-2018-security-releases/
for details on patched vulnerabilities.
Fixes for the following CVEs are included in this release:
* C... | [
{
"path": "CHANGELOG.md",
"patch": "@@ -106,7 +106,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.8.7\">4.8.7</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V4.md#4.9.0\">4.9.0</a></b><br... | 2018-03-28T05:54:40 |
ollama/ollama | 0c2489605d22e1d5bba91228534336d6fa140aa0 | 8b1b89a984d47a15aac6914b2d48abbc7213f51c | docs: fix output formatting in faq.mdx (#13231)
There were a few Markdown typos in one FAQ answer. It now renders as a proper ascii table. | [
{
"path": "docs/faq.mdx",
"patch": "@@ -57,8 +57,13 @@ ollama ps\n ```\n \n <Info>\n- **Output**: ``` NAME ID SIZE PROCESSOR UNTIL llama3:70b bcfb190ca3a7 42 GB\n- 100% GPU 4 minutes from now ```\n+\n+**Output**:\n+\n+```\n+NAME ID SIZE PROCESSOR UNTIL\n+llama3:70b bcfb190ca3a7 42... | 2025-11-29T00:19:21 |
huggingface/transformers | 9d6f0ddcec215b24006c74acb7875fd2706a3a84 | 63002129462aa522dae3ceb39c3e038e3f165874 | Add optimized `PixtralImageProcessorFast` (#34836)
* Add optimized PixtralImageProcessorFast
* make style
* Add dummy_vision_object
* Review comments
* Format
* Fix dummy
* Format
* np.ceil for math.ceil | [
{
"path": "docs/source/en/_config.py",
"patch": "@@ -11,4 +11,4 @@\n \"{processor_class}\": \"FakeProcessorClass\",\n \"{model_class}\": \"FakeModelClass\",\n \"{object_class}\": \"FakeObjectClass\",\n-}\n\\ No newline at end of file\n+}",
"additions": 1,
"deletions": 1,
"language": ... | 2024-11-28T15:04:05 |
vercel/next.js | 81b818515af066fc2112c2b1116a91c3646062ee | 5f2e44d451755259294533ddfac7291f3a5b6ef6 | Fix prefetch for new router (#41119)
- Add a failing test for navigating between many levels of dynamic routes
- Create router tree during prefetch action so that it can be reused across multiple urls
- Ensure segmentPath is correct when rendering a subtree. Previously it would generate a segmentPath that starts at th... | [
{
"path": "packages/next/client/components/app-router.client.tsx",
"patch": "@@ -15,7 +15,7 @@ import type {\n import type { FlightRouterState, FlightData } from '../../server/app-render'\n import {\n ACTION_NAVIGATE,\n- // ACTION_PREFETCH,\n+ ACTION_PREFETCH,\n ACTION_RELOAD,\n ACTION_RESTORE,\n ... | 2022-10-05T13:45:46 |
rust-lang/rust | 64b58dd13b06a23d8429a73c225347b4cd3b2c3c | d5b4c2e4f19b6d7037371cdaecc3cc2c701c68df | Pass correct param-env to error_implies | [
{
"path": "compiler/rustc_infer/src/infer/mod.rs",
"patch": "@@ -27,6 +27,7 @@ use rustc_middle::bug;\n use rustc_middle::infer::canonical::{CanonicalQueryInput, CanonicalVarValues};\n use rustc_middle::mir::ConstraintCategory;\n use rustc_middle::traits::select;\n+use rustc_middle::traits::solve::Goal;\n u... | 2025-04-03T18:53:48 |
golang/go | ee7038f6a5f12d68a49b8b8193702341e5b8b151 | 40765ffa95e87e603845d83591f75efa54049eca | net: disable Windows netsh tests when netsh won't run
On my Surface Pro X running the insider preview,
running "netsh help" from Powershell started from the task bar works.
But running "powershell" at a cmd.exe prompt and then running
"netsh help" produces missing DLL errors.
These aren't our fault, so just skip the n... | [
{
"path": "src/net/net_windows_test.go",
"patch": "@@ -204,12 +204,17 @@ func runCmd(args ...string) ([]byte, error) {\n \treturn removeUTF8BOM(out), nil\n }\n \n-func netshSpeaksEnglish(t *testing.T) bool {\n+func checkNetsh(t *testing.T) {\n \tout, err := runCmd(\"netsh\", \"help\")\n \tif err != nil {\n ... | 2021-02-18T16:47:47 |
ollama/ollama | dba62ff3a572af4af845711c2091b70606b06af4 | d70e93552696a5a1aaa5fd8b56d3f6e8b165f8c0 | discovery: fix cuda overlap case (#13176)
Recent refactoring introduced a regression for filtering cuda overlap to favor newest supported version. | [
{
"path": "discover/runner.go",
"patch": "@@ -125,10 +125,20 @@ func GPUDevices(ctx context.Context, runners []ml.FilteredRunnerDiscovery) []ml.\n \t\tsupportedMu := sync.Mutex{}\n \t\tsupported := make(map[string]map[string]map[string]int) // [Library][libDir][ID] = pre-deletion devices index\n \t\tfor i :... | 2025-11-20T20:15:37 |
huggingface/transformers | 63002129462aa522dae3ceb39c3e038e3f165874 | 5e8c1d713d0e8177163dbbc2a30d72f099fb48a6 | Fix `utils/check_bad_commit.py` (for auto ping in CI) (#34943)
* fix
* fix
---------
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": "utils/check_bad_commit.py",
"patch": "@@ -46,7 +46,7 @@ def create_script(target_test):\n print(result.stdout)\n \n if len(result.stderr) > 0:\n- if \"ERROR: not found: \" in result.stderr:\n+ if \"ERROR: file or directory not found: \" in result.stderr:\n print(\"test not found in ... | 2024-11-28T14:34:38 |
vercel/next.js | d2efbc88190742de2c87f5833b1b7f836fcb7e8c | 328c3a765a2164ee2c85955e8aadde7485561c9d | Fix warning messages for next export (#41165)
## Bug
Noticed the warning messages don't have spaces. Just adding spaces for better messaging.
<img width="1714" alt="image" src="https://user-images.githubusercontent.com/1635852/193907658-f3c7d90b-1b91-44bf-b93b-915ab4a635f1.png">
- [ ] Related issues linked using `... | [
{
"path": "packages/next/server/render.tsx",
"patch": "@@ -465,8 +465,8 @@ export async function renderToHTML(\n ) {\n warn(\n `Detected getInitialProps on page '${pathname}'` +\n- `while running \"next export\". It's recommended to use getStaticProps` +\n- `which has a more correc... | 2022-10-04T20:34:35 |
golang/go | b445d6ea34661328a7310beda285c64d6823624d | b110a43628526787f73db44e11829520d92e5b2b | runtime/pprof: expect tests to pass on macOS
macOS tests have been disabled since CL 12429045 (Aug 2013).
At the time, macOS required a kernel patch to get a working profiler
(https://research.swtch.com/macpprof), which we didn't want
to require, of course.
macOS has improved - it no longer requires the kernel patch ... | [
{
"path": "src/runtime/pprof/pprof_test.go",
"patch": "@@ -279,7 +279,7 @@ func testCPUProfile(t *testing.T, matches matchFunc, need []string, avoid []stri\n \n \tbroken := false\n \tswitch runtime.GOOS {\n-\tcase \"darwin\", \"ios\", \"dragonfly\", \"netbsd\", \"illumos\", \"solaris\":\n+\tcase \"ios\", \"... | 2021-02-15T22:02:30 |
huggingface/transformers | 5e8c1d713d0e8177163dbbc2a30d72f099fb48a6 | 57ca9e6d2fd5b084627b97de80f3f62f8d09bc05 | Offloaded cache: fix generate (#34921)
* fix cache impl
* require_torch_gpu
* fix mamba
* fix copies | [
{
"path": "src/transformers/cache_utils.py",
"patch": "@@ -1140,13 +1140,13 @@ def __init__(\n layer_device_map: Optional[Dict[int, Union[str, torch.device, int]]] = None,\n ) -> None:\n super().__init__()\n- if max_batch_size is not None:\n+ if batch_size is not None:\n ... | 2024-11-28T14:05:56 |
ollama/ollama | 53985b3c4d94f22517e4090696a5b8ecd06caedb | b6e02cbbd280114ffcdffd5f7d4d26aee281d3d6 | kvcache: Use SetRows to store cache data
We currently copy data into the KV cache in contiguous buffers using
ggml_cpy(). ggml_set_rows() was introduced to allow scatter operation
so that contiguous buffers are no longer required. The direct primary
benefit of this is that we no longer need to perform defragmentation.... | [
{
"path": "kvcache/causal.go",
"patch": "@@ -3,7 +3,6 @@ package kvcache\n import (\n \t\"errors\"\n \t\"fmt\"\n-\t\"log/slog\"\n \t\"math\"\n \t\"slices\"\n \n@@ -40,18 +39,18 @@ type Causal struct {\n \n \t// ** current forward pass **\n \n-\t// the active layer for Get and Put\n-\tcurLayer int\n-\n-\t// ... | 2025-08-18T17:45:58 |
vercel/next.js | 328c3a765a2164ee2c85955e8aadde7485561c9d | 5af1a930a21f13facef381262884ae5ba3428010 | Fix reading edge info for app paths (#41163)
This fixes the build failing due to attempting to read `edgeInfo` that
wasn't present from using the wrong key to look up the manifest entry.
Regression test added by enabling `experimental-edge` on a page that was
failing to be looked up.
Fixes:
```sh
TypeError: C... | [
{
"path": "packages/next/build/index.ts",
"patch": "@@ -1358,7 +1358,7 @@ export default async function build(\n MIDDLEWARE_MANIFEST\n ))\n const manifestKey =\n- pageType === 'pages' ? page : join(page, 'page')\n+ ... | 2022-10-04T18:46:11 |
huggingface/transformers | 57ca9e6d2fd5b084627b97de80f3f62f8d09bc05 | 44af935ec58f417febd72e43baeae024d0ade18c | Allow compressed-tensors quantized model to be trained (#34520)
* populate quantization_config for kv-cache-scheme only configs
* make compressed-tensors quantized models trainable
* populate versions on quant config
* pass oneshot then finetune
* remove breakpoint
* SunMarc comments and fix to_dict logic
* lint... | [
{
"path": "src/transformers/quantizers/base.py",
"patch": "@@ -226,6 +226,11 @@ def _dequantize(self, model):\n f\"{self.quantization_config.quant_method} has no implementation of `dequantize`, please raise an issue on GitHub.\"\n )\n \n+ @property\n+ def is_qat_trainable(self) -> ... | 2024-11-28T14:05:16 |
golang/go | 0ca0551f02257283d00c01303100a16433c526c6 | 0c633125f25966fa749ff8003393216aa454e909 | debug/pe: recognize arm64 executables
We still need to add test data, but as yet we haven't identified
a good Windows arm64 compiler to produce small binaries.
This CL is part of a stack adding windows/arm64
support (#36439), intended to land in the Go 1.17 cycle.
Change-Id: Ifbecb9a6e25f7af38e20b7d7830df7f5efe2798a... | [
{
"path": "src/debug/pe/file.go",
"patch": "@@ -75,7 +75,7 @@ func NewFile(r io.ReaderAt) (*File, error) {\n \t\tvar sign [4]byte\n \t\tr.ReadAt(sign[:], signoff)\n \t\tif !(sign[0] == 'P' && sign[1] == 'E' && sign[2] == 0 && sign[3] == 0) {\n-\t\t\treturn nil, fmt.Errorf(\"Invalid PE COFF file signature of... | 2021-01-22T14:32:38 |
ollama/ollama | 485da9fd358eb17ba0a659a554f44be6c72efd2e | 0796d79d19345bc3724bd08108a96b669b0f1841 | win: exit instead of abort (#13138)
Calling abort on windows triggers the C++ runtime to attempt a debugger
attach, which causes the crashed runners to hang instead of exit, leading
to a timeout instead of a fast failure during discovery. | [
{
"path": "llama/patches/0036-win-exit-instead-of-abort.patch",
"patch": "@@ -0,0 +1,28 @@\n+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001\n+From: Daniel Hiltgen <daniel@ollama.com>\n+Date: Tue, 18 Nov 2025 09:58:23 -0800\n+Subject: [PATCH] win: exit instead of abort\n+\n+---\n+ ggm... | 2025-11-19T00:33:33 |
rust-lang/rust | 05d64b119b8e00b3305598bb12091035c653e24b | 6a43818ec565f61348ae7e559cf254afe27c3781 | Add another Miri-detected bug to README.md
Miri detected this bug in Mockall: https://github.com/asomers/mockall/issues/647
[skip ci] | [
{
"path": "src/tools/miri/README.md",
"patch": "@@ -565,6 +565,7 @@ Definite bugs found:\n * [Occasional memory leak in `std::mpsc` channels](https://github.com/rust-lang/rust/issues/121582) (original code in [crossbeam](https://github.com/crossbeam-rs/crossbeam/pull/1084))\n * [Weak-memory-induced memory l... | 2025-04-03T17:02:45 |
vercel/next.js | 8d4840b15a994265c229592a2f4039841b03d33c | d192047a34870066273c2ca319fdc6e15f16c165 | Apply experimental configs for middleware (#41142)
This applies the experimental configs for testing and also fixes
`set-cookie` headers from middleware/edge functions being merged
unexpectedly.
x-ref: [slack
thread](https://vercel.slack.com/archives/CGU8HUTUH/p1664313529422279)
Fixes: https://github.com/vercel... | [
{
"path": "packages/next/build/webpack-config.ts",
"patch": "@@ -253,6 +253,9 @@ export function getDefineEnv({\n 'process.env.__NEXT_I18N_SUPPORT': JSON.stringify(!!config.i18n),\n 'process.env.__NEXT_I18N_DOMAINS': JSON.stringify(config.i18n?.domains),\n 'process.env.__NEXT_ANALYTICS_ID': JSON... | 2022-10-04T17:08:17 |
huggingface/transformers | 44af935ec58f417febd72e43baeae024d0ade18c | 2b053fdf1a638de17faa8791d96efac5e2507be7 | Refine the code of Universal Assisted Generation (#34823)
* removed the useless attritbutes
* add configs for window size
* fixed the wrong kwargs
* added docstring | [
{
"path": "src/transformers/generation/candidate_generator.py",
"patch": "@@ -310,10 +310,9 @@ def __init__(\n \n self.target_tokenizer = target_tokenizer\n self.assistant_tokenizer = assistant_tokenizer\n- self.prev_tokens = None\n self.prev_assistant_ids = None\n- sel... | 2024-11-28T14:04:24 |
golang/go | bb6efb96092cc8ae398c29e3b052a0051c746f88 | a1222b75350a098e70106bf95d4e6a962c37f373 | build: set GOPATH consistently in run.bash, run.bat, run.rc
We used to clear GOPATH in all the build scripts.
Clearing GOPATH is misleading at best, since you just end up
with the default GOPATH (%USERPROFILE%\go on Windows).
Unless that's your GOROOT, in which case you end up with a
fatal error from the go command (#... | [
{
"path": "src/run.bash",
"patch": "@@ -23,15 +23,7 @@ fi\n \n eval $(../bin/go env)\n export GOROOT # The api test requires GOROOT to be set, so set it to match ../bin/go.\n-\n-# We disallow local import for non-local packages, if $GOROOT happens\n-# to be under $GOPATH, then some tests below will fail. ... | 2021-01-27T02:14:43 |
ollama/ollama | 0796d79d19345bc3724bd08108a96b669b0f1841 | 92981ae3f2ce3c4e02d8a21f46874f167949feda | cuda: skip large batches
cuda panics on batches larger than 1024 so skip those and fallback to
cpu | [
{
"path": "llama/patches/0028-Add-memory-detection-using-DXGI-PDH.patch",
"patch": "@@ -38,7 +38,7 @@ index 44ae76d66..639d551a2 100644\n #ifdef __cplusplus\n }\n diff --git a/ggml/src/ggml-vulkan/ggml-vulkan.cpp b/ggml/src/ggml-vulkan/ggml-vulkan.cpp\n-index d2c278a35..221e29509 100644\n+index ca02ea079.... | 2025-11-18T19:13:37 |
vercel/next.js | 34b78dc7c54c9527f9643785ceb673ac8942260b | 51552c1a029be31766e071b89bb4992d5d76627b | Handle hmr for edge ssr in app dir (#41156)
Include the edge server changes that starting in app dir into server components changes. Most changes are merging condition `isAppPath && this.appDir` into `isAppPath`.
## Bug
- [x] Related issues linked using `fixes #number`
- [x] Integration tests added
- [ ] Errors have... | [
{
"path": "packages/next/server/dev/hot-reloader.ts",
"patch": "@@ -612,22 +612,21 @@ export default class HotReloader {\n onEdgeServer: () => {\n // TODO-APP: verify if child entry should support.\n if (!isEdgeServerCompilation || !isEntry) return\n- ... | 2022-10-04T14:03:20 |
nodejs/node | 4de78219711dcfdc24290520b20dce1fff01e164 | 5d387e9403bc67604b5556538fcddc52857638a6 | deps: turn in std::string for ICU
- node and v8 did not call into std::string previously,
so that access was shut off.
- this fixes compilation for ICU 58.2 (backlevel) but may
be expressed in other versions also.
Fixes: https://github.com/nodejs/node/issues/19151
PR-URL: https://github.com/nodejs/node/pull/19624
Re... | [
{
"path": "tools/icu/icu-generic.gyp",
"patch": "@@ -35,9 +35,7 @@\n 'UCONFIG_NO_REGULAR_EXPRESSIONS=1',\n 'U_ENABLE_DYLOAD=0',\n 'U_STATIC_IMPLEMENTATION=1',\n- # Don't need std::string in API.\n- # Also, problematic: <http://bugs.icu-project.org/trac/ticket/... | 2018-03-05T20:51:56 |
huggingface/transformers | 4f0bf9864c9661e326640c0acbdbde75a40576c6 | f4b674f2690b90f6c2e278fb8f612a413a68934b | Fix `save_pretrained` for partially offloaded models (#34890)
* delete unnecessary reference
Signed-off-by: Kyle Sayers <kylesayrs@gmail.com>
* update comment, explicit delete state_dict
* Update src/transformers/modeling_utils.py
Co-authored-by: Zach Mueller <muellerzr@gmail.com>
* fix style
Signed-off-by: Kyle... | [
{
"path": "src/transformers/modeling_utils.py",
"patch": "@@ -2960,7 +2960,12 @@ def save_pretrained(\n if module_map:\n filename_to_tensors = logging.tqdm(filename_to_tensors, desc=\"Saving checkpoint shards\")\n for shard_file, tensors in filename_to_tensors:\n- shar... | 2024-11-28T13:46:56 |
golang/go | a1222b75350a098e70106bf95d4e6a962c37f373 | 1c659f25257f29003b7012d90072b63f88d12f8b | cmd/link: add debug print in deadcode
This matches the prints that deadcode prints later
as the algorithm progresses under -v=2.
It helps to see the initial conditions with -v=2 as well.
Change-Id: I06ae86fe9bd8314d003148f3d941832c9b10aef1
Reviewed-on: https://go-review.googlesource.com/c/go/+/288817
Trust: Russ Cox ... | [
{
"path": "src/cmd/link/internal/ld/deadcode.go",
"patch": "@@ -91,6 +91,10 @@ func (d *deadcodePass) init() {\n \t\tnames = append(names, exp)\n \t}\n \n+\tif d.ctxt.Debugvlog > 1 {\n+\t\td.ctxt.Logf(\"deadcode start names: %v\\n\", names)\n+\t}\n+\n \tfor _, name := range names {\n \t\t// Mark symbol as a... | 2021-01-22T16:13:32 |
ollama/ollama | 8ed1adf3dbda70c5ccfec766f4db4c4a4f3ef948 | 440a3823a66330650b6bfac8378babdb88b4d036 | docs: fix typo in vscode.mdx (#13116) | [
{
"path": "docs/integrations/vscode.mdx",
"patch": "@@ -1,34 +1,34 @@\n ---\n-title: VS Code \n+title: VS Code\n ---\n \n ## Install\n \n-Install [VS Code](https://code.visualstudio.com/download). \n+Install [VS Code](https://code.visualstudio.com/download).\n \n-## Usage with Ollama \n+## Usage with Ollama... | 2025-11-18T21:18:42 |
vercel/next.js | c7ab8314d759c88c620848f472698207d186d98d | ed4eeb97f1f6883d2fe81e60062e12d542835e22 | add attribution to web vitals (#39368)
This commit implements the main proposal presented in
https://github.com/vercel/next.js/issues/39241
to add attribution to web vitals.
Attribution adds more specific debugging info to web vitals,
for example in the case of Cumulative Layout Shift (CLS),
we might want to know
> W... | [
{
"path": "docs/advanced-features/measuring-performance.md",
"patch": "@@ -181,6 +181,27 @@ export function reportWebVitals(metric) {\n >\n > Read more about [sending results to Google Analytics](https://github.com/GoogleChrome/web-vitals#send-the-results-to-google-analytics).\n \n+## Web Vitals Attribution... | 2022-10-04T00:17:30 |
huggingface/transformers | 5523e38b553ff6c46b04d2376870fcd842feeecc | 4120cb257f03b834fb332e0b0ee6570245e85656 | Fixed typo in `VisitWebpageTool` (#34978)
Fixed typo in VisitWebpageTool | [
{
"path": "src/transformers/agents/search.py",
"patch": "@@ -42,7 +42,7 @@ def forward(self, query: str) -> str:\n \n class VisitWebpageTool(Tool):\n name = \"visit_webpage\"\n- description = \"Visits a wbepage at the given url and returns its content as a markdown string.\"\n+ description = \"Vis... | 2024-11-27T20:49:21 |
golang/go | 1c659f25257f29003b7012d90072b63f88d12f8b | b6379f190b3820c2765c7589c1fd6292e5581407 | cmd/link: clean up windows PE generation
A bunch of places are a bit too picky about the architecture.
Simplify them.
Also use a large PEBASE for 64-bit systems.
This more closely matches what is usually used on Windows x86-64
and is required for Windows arm64.
Unfortunately, we still need a special case for x86-64 b... | [
{
"path": "src/cmd/link/internal/ld/pe.go",
"patch": "@@ -42,11 +42,11 @@ type IMAGE_EXPORT_DIRECTORY struct {\n \tAddressOfNameOrdinals uint32\n }\n \n-const (\n-\tPEBASE = 0x00400000\n-)\n-\n var (\n+\t// PEBASE is the base address for the executable.\n+\t// It is small for 32-bit and large for 64-bit.\n+... | 2021-01-27T16:50:58 |
rust-lang/rust | fde54c2c0301be851543220ce64c74a468a17311 | 13970949d135f3b0e1b9ece433c5fc230804d657 | Fix testing with randomized layouts enabled | [
{
"path": "compiler/rustc_codegen_cranelift/build_system/tests.rs",
"patch": "@@ -109,10 +109,12 @@ const BASE_SYSROOT_SUITE: &[TestCase] = &[\n \n SYSROOT_TESTS.clean(&runner.dirs);\n \n+ let mut target_compiler = runner.target_compiler.clone();\n // coretests and alloctests produce ... | 2025-04-03T15:30:01 |
nodejs/node | 5d387e9403bc67604b5556538fcddc52857638a6 | f2b10799efbbda8a9d6999c0677dbae238093a97 | tools: fix nits in tools/doc/type-parser.js
PR-URL: https://github.com/nodejs/node/pull/19612
Reviewed-By: Shingo Inoue <leko.noor@gmail.com>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Reviewed-By: Khaidi Chu <i@2333.moe> | [
{
"path": "tools/doc/type-parser.js",
"patch": "@@ -1,7 +1,7 @@\n 'use strict';\n-const nodeDocUrl = '';\n+\n const jsDocPrefix = 'https://developer.mozilla.org/en-US/docs/Web/JavaScript/';\n-const jsDocUrl = `${jsDocPrefix}Reference/Global_Objects/`;\n+\n const jsPrimitiveUrl = `${jsDocPrefix}Data_structur... | 2018-03-26T11:58:01 |
ollama/ollama | 440a3823a66330650b6bfac8378babdb88b4d036 | 718961de68fb82f355bca53c1bdc3d126a42fb86 | fix(tokenizer): add special tokens to empty inputs (#13091) | [
{
"path": "model/bytepairencoding.go",
"patch": "@@ -237,7 +237,7 @@ func (bpe BytePairEncoding) Encode(s string, addSpecial bool) ([]int32, error) {\n \t\t}\n \t}\n \n-\tif addSpecial && len(ids) > 0 {\n+\tif addSpecial {\n \t\tids = bpe.vocab.addSpecials(ids)\n \t}\n ",
"additions": 1,
"deletions"... | 2025-11-18T19:16:56 |
huggingface/transformers | 4120cb257f03b834fb332e0b0ee6570245e85656 | 2910015d6deffb4e3a016a0a316a4fa7cbb4ac1e | Fix typo in code block in vipllava.md (#34957)
fix typo in code block in vipllava.md | [
{
"path": "docs/source/en/model_doc/vipllava.md",
"patch": "@@ -58,7 +58,7 @@ conversation = [\n \"content\": [\n {\"type\": \"image\"},\n {\"type\": \"text\", \"text\": \"What’s shown in this image?\"},\n- ,\n+ ],\n },\n {\n \"role\": \"assista... | 2024-11-27T16:19:34 |
vercel/next.js | 76235a7a56c8f29448e71967677d74ba5b794fb0 | 3a6cd49c317c6b64e379161ba7d7fd27c4db2b64 | Ensure entry tracing applies for app correctly (#41140)
This ensures we properly detect and trace `app` dir entries and adds a
regression test to ensure this is working as expected.
## Bug
- [x] Related issues linked using `fixes #number`
- [x] Integration tests added
- [ ] Errors have a helpful link attached... | [
{
"path": "packages/next/build/webpack-config.ts",
"patch": "@@ -1817,8 +1817,8 @@ export default async function getBaseWebpackConfig(\n {\n appDir: dir,\n esmExternals: config.experimental.esmExternals,\n- staticImageImports: !config.images.disableStaticImages,\... | 2022-10-03T22:53:28 |
rust-lang/rust | e3a8d9c6a3ed67948cded5a3cbef65c15fd6b180 | bb2b3d04c31648ebd737b0ebc47b9d90fc3b777a | Fix testing with randomized layouts enabled | [
{
"path": "build_system/tests.rs",
"patch": "@@ -109,10 +109,12 @@ const BASE_SYSROOT_SUITE: &[TestCase] = &[\n \n SYSROOT_TESTS.clean(&runner.dirs);\n \n+ let mut target_compiler = runner.target_compiler.clone();\n // coretests and alloctests produce a bunch of warnings. When running... | 2025-04-03T15:30:01 |
golang/go | 5421c37a1db5098659f86b21d011fc263d93524e | 91cc484ea914fc75e7321d23017d59c9751f5066 | runtime: fix windows/arm externalthreadhandler
Externalthreadhandler was not handling its own stack correctly.
It incorrectly referred to the saved LR slot (uninitialized, it turned out)
as holding the return value from the called function.
Externalthreadhandler is used to call two different functions:
profileloop1 a... | [
{
"path": "src/runtime/sys_windows_arm.s",
"patch": "@@ -250,16 +250,17 @@ TEXT runtime·profileloop(SB),NOSPLIT|NOFRAME,$0\n // +----------------+\n // 12| argument (r0) |\n //---+----------------+\n-// 8 | param1 |\n+// 8 | param1 | (also return value for called Go function)\n // +----... | 2021-01-27T16:27:25 |
nodejs/node | 1a85328264646fae04068e0595c3a6bf02e2c8fc | 5aa53cbf404f2886a95f44c1204baf2885b1ef11 | deps: add -no_rand_screen to openssl s_client
In openssl s_client on Windows, RAND_screen() is invoked to initialize
random state but it takes several seconds in each connection.
This added -no_rand_screen to openssl s_client on Windows to skip
RAND_screen() and gets a better performance in the unit test of
test-tls-s... | [
{
"path": "deps/openssl/openssl/apps/app_rand.c",
"patch": "@@ -124,7 +124,16 @@ int app_RAND_load_file(const char *file, BIO *bio_e, int dont_warn)\n char buffer[200];\n \n #ifdef OPENSSL_SYS_WINDOWS\n- RAND_screen();\n+ /*\n+ * allocate 2 to dont_warn not to use RAND_screen() via\n+ * -n... | 2015-05-27T01:33:38 |
ollama/ollama | 330f62a7faf60096e00393b444b1b81a9b34de7e | 584e2d646fb4d2f1643b4da81a096d01114f5b2b | docs: add Void Editor to community integrations (#13124)
Void is an open source AI code editor and Cursor alternative that supports
Ollama. It's built on VS Code and allows users to connect directly to Ollama
for private LLM usage without going through a middleman backend.
Key features:
- Open source Cursor alternati... | [
{
"path": "README.md",
"patch": "@@ -367,6 +367,7 @@ See the [API documentation](./docs/api.md) for all endpoints.\n - [Ollama4j Web UI](https://github.com/ollama4j/ollama4j-web-ui) - Java-based Web UI for Ollama built with Vaadin, Spring Boot, and Ollama4j\n - [PyOllaMx](https://github.com/kspviswa/pyOllaM... | 2025-11-18T03:20:36 |
huggingface/transformers | 5f8b24ee12a4254c00d9dff7bdc451f94fdc2aba | 0d99a938aa9a13008b78ca1b07f8da4ea37468e6 | Fix flaky test execution caused by `Thread` (#34966)
fix
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": "src/transformers/modeling_utils.py",
"patch": "@@ -29,7 +29,7 @@\n from contextlib import contextmanager\n from dataclasses import dataclass\n from functools import partial, wraps\n-from threading import Thread\n+from multiprocessing import Process\n from typing import Any, Callable, Dict, List, ... | 2024-11-27T15:32:50 |
rust-lang/rust | a91e97c06c778b84663cfe4f2871b868d275a137 | 0b4a81a4ef637117b365c3c51a5326f1c4a90ded | Fix 2024 edition doctest panic output | [
{
"path": "src/librustdoc/doctest/runner.rs",
"patch": "@@ -113,6 +113,7 @@ impl DocTestRunner {\n mod __doctest_mod {{\n use std::sync::OnceLock;\n use std::path::PathBuf;\n+ use std::process::ExitCode;\n \n pub static BINARY_PATH: OnceLock<PathBuf> = OnceLock::new();\n pub const RUN_OPT... | 2025-04-03T15:20:45 |
vercel/next.js | 3a6cd49c317c6b64e379161ba7d7fd27c4db2b64 | 9baf651154187341c771a31f72feca9bc999df44 | Fix edge function req.url handling with rewrite (#41139)
This ensures we correctly normalize the URL in edge functions and handle rewrites properly.
## Bug
- [x] Related issues linked using `fixes #number`
- [x] Integration tests added
- [ ] Errors have a helpful link attached, see `contributing.md`
Fixes: [slack ... | [
{
"path": "packages/next/build/webpack/loaders/next-serverless-loader/utils.ts",
"patch": "@@ -68,6 +68,26 @@ export type ServerlessHandlerCtx = {\n i18n?: NextConfig['i18n']\n }\n \n+export function normalizeVercelUrl(\n+ req: BaseNextRequest | IncomingMessage,\n+ trustQuery: boolean,\n+ paramKeys?: s... | 2022-10-03T21:05:12 |
golang/go | 91cc484ea914fc75e7321d23017d59c9751f5066 | 38672d3dcf2eae297c45dc2a899c39528148f14b | runtime: fix time on windows/arm under WINE
This code has clearly never run successfully,
since one of the “tail calls" calls the wrong function,
and both of them appear in functions with stack frames
that are never going to be properly unwound.
Probably there is no windows/arm under WINE at all.
But might as well fix... | [
{
"path": "src/runtime/sys_windows_arm.s",
"patch": "@@ -419,7 +419,7 @@ TEXT runtime·read_tls_fallback(SB),NOSPLIT|NOFRAME,$0\n #define time_hi1 4\n #define time_hi2 8\n \n-TEXT runtime·nanotime1(SB),NOSPLIT,$0-8\n+TEXT runtime·nanotime1(SB),NOSPLIT|NOFRAME,$0-8\n \tMOVW\t$0, R0\n \tMOVB\truntime·useQPCTim... | 2021-01-27T16:22:02 |
huggingface/transformers | 0d99a938aa9a13008b78ca1b07f8da4ea37468e6 | 8f48ccf5485e7ec876b8141f500a0d5c84684e24 | Avoid calling `get_max_length` (#34971)
fix
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": "src/transformers/models/bloom/modeling_bloom.py",
"patch": "@@ -911,7 +911,7 @@ def prepare_inputs_for_generation(\n # This part differs from other models because BLOOM needs a 2D mask to construct alibi tensor\n # The only difference is the usage of 2D instead of 4D mask, but the... | 2024-11-27T14:15:35 |
nodejs/node | 5aa53cbf404f2886a95f44c1204baf2885b1ef11 | aee5fbfe5ccef30d600bc4c1bd1affd2c58dce45 | openssl: fix keypress requirement in apps on win32
Reapply b910613792dac946b295855963869933a9089044 .
Backport-PR-URL: https://github.com/nodejs/node/pull/19638
Fixes: https://github.com/iojs/io.js/issues/589
PR-URL: https://github.com/iojs/io.js/pull/1389
Reviewed-By: Fedor Indutny <fedor@indutny.com>
Reviewed-By: B... | [
{
"path": "deps/openssl/openssl/apps/s_client.c",
"patch": "@@ -180,6 +180,13 @@ typedef unsigned int u_int;\n # include <fcntl.h>\n #endif\n \n+/* Use Windows API with STD_INPUT_HANDLE when checking for input?\n+ Don't look at OPENSSL_SYS_MSDOS for this, since it is always defined if\n+ OPENSSL_SYS_WIN... | 2015-02-17T02:30:28 |
ollama/ollama | 4aba2e8b727795320f049a28c23bbd9882b272c0 | 2f36d769aa2db6e7bb41a0dbd079f9ce7a9bdc40 | discover: Support cgroups cores and memory limitations (#10292)
* Add supports for cgroups cores and memory limitations
* fix compile error and add logs
* remove cpu info log | [
{
"path": "discover/cpu_linux.go",
"patch": "@@ -2,6 +2,7 @@ package discover\n \n import (\n \t\"bufio\"\n+\t\"errors\"\n \t\"fmt\"\n \t\"io\"\n \t\"log/slog\"\n@@ -10,12 +11,21 @@ import (\n \t\"reflect\"\n \t\"regexp\"\n \t\"sort\"\n+\t\"strconv\"\n \t\"strings\"\n \n \t\"github.com/ollama/ollama/format\... | 2025-11-18T00:13:03 |
rust-lang/rust | 1a89c2b08eb479b904aaa4523392666fe6eb35aa | 1bfaa165ca0348cbdce0ffdefbc504f854159b1e | fix comment nit | [
{
"path": "src/tools/miri/src/shims/unix/macos/foreign_items.rs",
"patch": "@@ -222,7 +222,7 @@ pub trait EvalContextExt<'tcx>: crate::MiriInterpCxExt<'tcx> {\n this.write_scalar(res, dest)?;\n }\n \n- // Futex primitives\n+ // Synchronization primitives\n ... | 2025-04-03T14:27:10 |
vercel/next.js | 9baf651154187341c771a31f72feca9bc999df44 | 40639b28be7140efba7c635f69f9b84825472495 | Improve error messages of server compilation (#41136)
We used to format RSC errors (which are from the SWC loader) before outputting them to the CLI. This PR moves that to a better place in `WellknownErrorPlugin`.
## Bug
- [ ] Related issues linked using `fixes #number`
- [ ] Integration tests added
- [ ] Errors hav... | [
{
"path": "packages/next/build/webpack/plugins/wellknown-errors-plugin/index.ts",
"patch": "@@ -11,7 +11,11 @@ export class WellKnownErrorsPlugin {\n await Promise.all(\n compilation.errors.map(async (err, i) => {\n try {\n- const moduleError = await getMod... | 2022-10-03T20:19:25 |
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.