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 |
|---|---|---|---|---|---|
vercel/next.js | 9dc0c1e2ffb0b2398906de8589b8d701b30cf1f9 | fe383696183e7cf5deffe8d44fa0fe2c4395003f | improve test case stability (#49036)
### What?
fix bug and stability of test case
Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com> | [
{
"path": "packages/next-swc/crates/next-dev-tests/tests/integration/next/css/deduplication/input/pages/a.tsx",
"patch": "@@ -13,7 +13,9 @@ export default function A() {\n \n return (\n <>\n- <Link href=\"/b\">B</Link>\n+ <Link className=\"b\" href=\"/b\">\n+ B\n+ </Link>\n ... | 2023-05-02T20:10:30 |
golang/go | bf88adadac9bbb1b190ba7af1010373823dabb06 | 77038044ca7b11fce7eb11f3e6115ed753c2c2bd | cmd/doc: fix "builtin" package parsing
As stated in the code, "The builtin package needs special treatment: its
symbols are lower case but we want to see them, always". Thus, cmd/doc
forces the -u flag if the package being queried is called "builtin".
However, this happens after having already parsed the package. This... | [
{
"path": "src/cmd/doc/main.go",
"patch": "@@ -110,6 +110,13 @@ func do(writer io.Writer, flagSet *flag.FlagSet, args []string) (err error) {\n \t\tif buildPackage == nil {\n \t\t\treturn fmt.Errorf(\"no such package: %s\", userPath)\n \t\t}\n+\n+\t\t// The builtin package needs special treatment: its symbo... | 2021-11-25T12:47:39 |
huggingface/transformers | 1c36d407d5ce0712c702e4314c62705c012bb700 | 0215846d98e25a39952530cbdf7cc42bd4515324 | Add in-out modalities as class attribute per model (#41366)
* update all models
* fix copies
* explanation comment
* better notation in omni model
* style
* fix copies
* output_modalities under generation mixin
* fix copies
* oh, glm4v also needs conversion | [
{
"path": "src/transformers/generation/utils.py",
"patch": "@@ -366,6 +366,9 @@ class GenerationMixin(ContinuousMixin):\n To learn more about decoding strategies refer to the [text generation strategies guide](../generation_strategies).\n \"\"\"\n \n+ # Should be overwritten by models that can ge... | 2025-10-16T15:11:06 |
nodejs/node | eb2dccb17a7148e628a50a9c947a5f98513d8e63 | e575ba608a1714320442027551e83aada31a94bb | src: move AsyncResource impl out of public header
Implementing the methods out-of-line (i.e., not inline) means we can fix
bugs and have already compiled add-ons pick up the fixes automatically,
something that doesn't work when the methods are inline because then
they get compiled into the add-on instead of the node b... | [
{
"path": "node.gyp",
"patch": "@@ -405,6 +405,7 @@\n 'dependencies': [ 'deps/histogram/histogram.gyp:histogram' ],\n \n 'sources': [\n+ 'src/api/async_resource.cc',\n 'src/api/callback.cc',\n 'src/api/encoding.cc',\n 'src/api/environment.cc',",
"additions": 1,... | 2019-03-22T09:23:51 |
vercel/next.js | fe383696183e7cf5deffe8d44fa0fe2c4395003f | 20f90c387c8c5191681d69914e9c6535b4ecfe94 | add test cases for error handling (#49093)
### What?
test cases for https://github.com/vercel/turbo/pull/4779 | [
{
"path": ".prettierignore",
"patch": "@@ -21,6 +21,7 @@ packages/next/src/bundles/webpack/packages/lazy-compilation-*.js\n \n packages/next-swc/crates/**/tests/**/output*\n packages/next-swc/crates/core/tests/loader/issue-32553/input.js\n+packages/next-swc/crates/next-dev-tests/tests/integration/turbopack/... | 2023-05-02T20:09:55 |
huggingface/transformers | bf815e9b5ea076f758cc58f73f2be2d36237f9ec | 4a43e3d57cde839b7226750879b30d34a5de4598 | [`Masks`] Fix mask handling in eager for vision models (#41625)
add mask handling in case of models that do use it | [
{
"path": "src/transformers/models/audio_spectrogram_transformer/modeling_audio_spectrogram_transformer.py",
"patch": "@@ -96,25 +96,28 @@ def forward(self, input_values: torch.Tensor) -> torch.Tensor:\n return embeddings\n \n \n-# Copied from transformers.models.vit.modeling_vit.eager_attention_for... | 2025-10-16T14:27:26 |
golang/go | a0506bdf7c9741974c54d9dac55517025ba2572d | 45bae64015975a4d7ede597a55397545571d8bc5 | test/fixedbugs: fix go directive of issue16008.go
This change modifies issue16008.go
I fixed // go:noinline to //go:noinline
Change-Id: Ic133eec51f0a7c4acf8cb22d25473ca08f1e916c
GitHub-Last-Rev: dd1868f2ca1f9ca7e2d6d1bfc15c601649896fdd
GitHub-Pull-Request: golang/go#49801
Reviewed-on: https://go-review.googlesource.c... | [
{
"path": "test/fixedbugs/issue16008.go",
"patch": "@@ -37,7 +37,7 @@ type Node struct {\n type MemoryStore struct {\n }\n \n-// go:noinline\n+//go:noinline\n func setupNodes(n int) (s *MemoryStore, nodeIDs []string) {\n \treturn\n }",
"additions": 1,
"deletions": 1,
"language": "Go"
}
] | 2021-11-26T07:45:44 |
nodejs/node | e575ba608a1714320442027551e83aada31a94bb | a19e8ebe9f68d295719dbc7938d9560dab1ab6e5 | deps: add ARM64 Windows configurations in openssl
This change adds the generated files required for building OpenSSL for
Node.js for ARM64 Windows. I did this on a VM running Ubuntu 18.04. The
basic workflow is to cd to deps/openssl/config and run `make`,
installing any needed packages until all architectures build co... | [
{
"path": "deps/openssl/config/archs/VC-WIN64-ARM/no-asm/crypto/buildinf.h",
"patch": "@@ -0,0 +1,29 @@\n+/*\n+ * WARNING: do not edit!\n+ * Generated by util/mkbuildinf.pl\n+ *\n+ * Copyright 2014-2017 The OpenSSL Project Authors. All Rights Reserved.\n+ *\n+ * Licensed under the OpenSSL license (the \"Lic... | 2019-03-08T03:27:19 |
vercel/next.js | 20f90c387c8c5191681d69914e9c6535b4ecfe94 | d1f77939b2347cde0c853618bac8123ac8578fd8 | chore: rename draft mode enabled to isEnabled (#49096)
After trying out draft mode on canary, I realized that it was easy to
select the wrong option from the VS Code intellisense suggestion
dropdown.
So this PR changes `enabled` to `isEnabled` and also wraps in a class to
make the icons for methods look differen... | [
{
"path": "packages/next/src/client/components/draft-mode.ts",
"patch": "@@ -0,0 +1,28 @@\n+import { DraftModeProvider } from '../../server/async-storage/draft-mode-provider'\n+import { staticGenerationBailout } from './static-generation-bailout'\n+\n+export class DraftMode {\n+ /**\n+ * @internal - this... | 2023-05-02T19:45:28 |
golang/go | f7e34e705c533cca0970f1c6d1eafc2666a6a947 | c58243aa8a510a0f467715da71a3053a04365038 | runtime: support non-cooperative preemption on windows/arm64
This adds support for injecting asynchronous preemption calls on
windows/arm64. This code exactly follows sigctxt.pushCall for POSIX OSes
on arm64.
Fixes #49759.
Change-Id: Id35ff6bc105c1db9d7ed2918d3ecab0e4e9a9431
Reviewed-on: https://go-review.googlesour... | [
{
"path": "src/runtime/os_windows.go",
"patch": "@@ -1306,18 +1306,13 @@ func setThreadCPUProfiler(hz int32) {\n \tatomic.Store((*uint32)(unsafe.Pointer(&getg().m.profilehz)), uint32(hz))\n }\n \n-const preemptMSupported = GOARCH != \"arm64\"\n+const preemptMSupported = true\n \n // suspendLock protects sim... | 2021-11-23T19:57:24 |
electron/electron | aa2f7aaf3a19a61f141d9788dfcde9e0b3164897 | c68e38f480f47142265b162fd961a4b9184738ef | Fixes #2810: correct look of hidden-inset windows in full screen.
`hidden` and `hidden-inset` windows differ only by the hidden-inset window having a toolbar. Yet, the toolbar yields an incorrect look in fullscreen mode. So, we hide and recreate the toolbar for such windows when going to/from fullscreen.
There are so... | [
{
"path": "atom/browser/native_window_mac.h",
"patch": "@@ -78,6 +78,10 @@ class NativeWindowMac : public NativeWindow {\n UpdateDraggableRegionViews(draggable_regions_);\n }\n \n+ bool ShouldHideNativeToolbarInFullscreen() const {\n+ return should_hide_native_toolbar_in_fullscreen_;\n+ }\n+\n p... | 2015-12-21T18:55:23 |
vercel/next.js | 9dc648a41292eb4891a1d525ac95049901ae5068 | 9b9f971c0a8153bb1e1982a329aae12e3cf9cc80 | improve error handling (vercel/turbo#4779)
### Description
[return fallback metadata when image processing
fails](https://github.com/vercel/turbo/commit/31c15579dbb6638934ba10824b8523dea2d19280)
[improve error reporting for ecmascript parsing
errors](https://github.com/vercel/turbo/commit/813852afb8682de59aa86df... | [
{
"path": "crates/turbopack-ecmascript/src/parse.rs",
"patch": "@@ -27,6 +27,8 @@ use turbo_tasks_fs::{FileContent, FileSystemPath, FileSystemPathVc};\n use turbo_tasks_hash::hash_xxh3_hash64;\n use turbopack_core::{\n asset::{Asset, AssetContent, AssetVc},\n+ error::PrettyPrintError,\n+ issue::{I... | 2023-05-02T14:39:26 |
nodejs/node | a19e8ebe9f68d295719dbc7938d9560dab1ab6e5 | 4f094c0ae60beb8a3eb569a6a2d8c608bff1dbeb | deps: add ARM64 Windows support in openssl
This adds ARM64 Windows support in the OpenSSL build system.
Since OpenSSL's ARM64 Windows support does not have support for ASM--
that is, VC-WIN64-ARM inherits from VC-noCE-common which has no ASM
files--`openssl_no_asm.gypi` is always used for building. This
essentially f... | [
{
"path": "deps/openssl/config/Makefile",
"patch": "@@ -9,12 +9,14 @@ endif\n PERL = perl\n \n # Supported architecture list\n-ARCHS = aix-gcc aix64-gcc BSD-x86_64 \\\n+ASM_ARCHS = aix-gcc aix64-gcc BSD-x86_64 \\\n darwin64-x86_64-cc darwin-i386-cc linux-aarch64 \\\n linux-armv4 linux-elf linux-x32 linux... | 2019-02-23T17:47:25 |
golang/go | b77f5f9667c6e5c2081d94163dd7d11c03fa2b8e | 8cdfe408bbd608c5129036e40f346d526049ffc4 | cmd/compile/internal/types2: better error message for missing ~ in constraint
If a constraint could be satisfied if one of its type elements
had a ~, provide this information in the error message.
Fixes #49179.
Change-Id: I59f1a855a0646ad7254a978420b0334f1f52ec22
Reviewed-on: https://go-review.googlesource.com/c/go/... | [
{
"path": "src/cmd/compile/internal/types2/instantiate.go",
"patch": "@@ -238,9 +238,28 @@ func (check *Checker) implements(V, T Type, qf Qualifier) error {\n \t}\n \n \t// Otherwise, V's type must be included in the iface type set.\n-\tif !Ti.typeSet().includes(V) {\n-\t\t// TODO(gri) report which type is ... | 2021-11-23T23:55:11 |
nodejs/node | 4f094c0ae60beb8a3eb569a6a2d8c608bff1dbeb | 0f190a5bed14bf9f7392af889f3f83306bedae97 | buffer: fix concat error message
The list argument may only be of type array, not of any other type
as it actually suggests.
PR-URL: https://github.com/nodejs/node/pull/27050
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Yongsheng Zhang <zyszys98@gmail.c... | [
{
"path": "lib/buffer.js",
"patch": "@@ -432,8 +432,7 @@ Buffer[kIsEncodingSymbol] = Buffer.isEncoding;\n Buffer.concat = function concat(list, length) {\n let i;\n if (!Array.isArray(list)) {\n- throw new ERR_INVALID_ARG_TYPE(\n- 'list', ['Array', 'Buffer', 'Uint8Array'], list);\n+ throw new... | 2019-04-02T03:00:10 |
vercel/next.js | 45d6bb63ef4a3614f9a5cd98f34d161921c0a3e1 | b7d657f525abaf0ce287b43501617f9fa08599b2 | fix quoted env vars from next config (#49090)
### What?
Avoid quotes around env vars from next.config.js
### Why?
values in `env` in next.config.js got stringified incorrectly | [
{
"path": "packages/next-swc/crates/next-core/src/next_config.rs",
"patch": "@@ -516,7 +516,17 @@ impl NextConfigVc {\n .await?\n .env\n .iter()\n- .map(|(k, v)| (k.clone(), v.to_string()))\n+ .map(|(k, v)| {\n+ (\n+ ... | 2023-05-02T14:12:46 |
electron/electron | 61004f0e46cbeb4be7cf71dae36a13a1c463f39a | d162180196a87f0029aa0420d1e15f4157c62d3c | fix cpplint warning | [
{
"path": "atom/browser/api/atom_api_web_contents.cc",
"patch": "@@ -49,7 +49,6 @@\n #include \"content/public/browser/site_instance.h\"\n #include \"content/public/browser/web_contents.h\"\n #include \"content/public/common/context_menu_params.h\"\n-#include \"native_mate/converter.h\"\n #include \"native_... | 2015-12-21T12:54:55 |
golang/go | 8cdfe408bbd608c5129036e40f346d526049ffc4 | 7e5331ac445045a70256eeeef5b7aad43886c9ec | cmd/compile/internal/types2: better error position for instantiation failure
- Thread type argument expressions (rather than posLists) through various
type-checker functions so we can provide a better error position.
- Adjust signatures that expect a syntax.Pos to accept a poser instead
to avoid gratuituous conversio... | [
{
"path": "src/cmd/compile/internal/types2/builtins.go",
"patch": "@@ -129,7 +129,7 @@ func (check *Checker) builtin(x *operand, call *syntax.CallExpr, id builtinId) (\n \t\t\targ(&x, i)\n \t\t\txlist = append(xlist, &x)\n \t\t}\n-\t\tcheck.arguments(call, sig, nil, xlist) // discard result (we know the res... | 2021-11-23T21:54:02 |
huggingface/transformers | 8725ce10edb29771fb9a1aa108e6a04859efe973 | 1fb3fc4db0e87fd7c2f57a36b6b32ee6fa69c50c | [Fix] Deepseek V3 expert bias routing (#41647)
* [Fix] Deepseek V3 expert bias routing
* [Fix] fix-copies
* [Fix] Run make style | [
{
"path": "src/transformers/models/deepseek_v3/modeling_deepseek_v3.py",
"patch": "@@ -176,9 +176,11 @@ def __init__(self, config):\n \n def route_tokens_to_experts(self, router_logits):\n router_logits = router_logits.sigmoid()\n- router_logits = router_logits + self.gate.e_score_correct... | 2025-10-16T14:04:48 |
golang/go | 67dd9ee92c454ded14f117e2d958db9ee56e8b02 | c25bf0d959c299e5fa5392ae6f835570ed6d111f | cmd/compile/internal/types2: produce empty type set for invalid ~T
If ~T is not permitted because the underlying type of T is not the
same as T, there is no type that satisfies ~T. Besides reporting an
error, also ensure that the corresponding type set is empty.
For #49739.
Change-Id: I127f75f170902e7989f7fe7b352dab... | [
{
"path": "src/cmd/compile/internal/types2/testdata/fixedbugs/issue49739.go2",
"patch": "@@ -0,0 +1,23 @@\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+// Verify that we get an empty t... | 2021-11-23T03:02:56 |
vercel/next.js | ee48c667313524f5effeb0e32af1acc78299e849 | e76c881d4d4def2e511354b3b69f20762229f63b | Add test case for file uploads (#49048)
This PR adds a test case of handling file inputs in a form.
Fixes NEXT-1062 | [
{
"path": "test/e2e/app-dir/actions/app-action.test.ts",
"patch": "@@ -85,6 +85,34 @@ createNextDescribe(\n }, 'my-not-found')\n })\n \n+ it('should support uploading files', async () => {\n+ const logs: string[] = []\n+ next.on('stdout', (log) => {\n+ logs.push(log)\n+ })... | 2023-05-02T12:49:15 |
electron/electron | ff51e4033a720316a5762258cba7ea2a4e4c5d0a | c68e38f480f47142265b162fd961a4b9184738ef | browser: fix value of document.hidden | [
{
"path": "atom/renderer/lib/override.coffee",
"patch": "@@ -118,6 +118,12 @@ Object.defineProperty window.history, 'length',\n get: ->\n getHistoryOperation 'length'\n \n-# Make document.hidden return the correct value.\n+# Make document.hidden and document.visibilityState return the correct value.\n... | 2015-12-18T22:53:30 |
nodejs/node | 3b044962c48fe313905877a96b5d0894a5404f6f | a9bf6652b5353f2098d4c0cd0eb77d17e02e164d | errors: add more information in case of invalid callbacks
This adds the actual callback that is passed through to the error
message in case an ERR_INVALID_CALLBACK error is thrown.
PR-URL: https://github.com/nodejs/node/pull/27048
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Yongsheng Zhang <zyszys98@... | [
{
"path": "lib/_tls_wrap.js",
"patch": "@@ -633,7 +633,7 @@ TLSSocket.prototype.renegotiate = function(options, callback) {\n if (options === null || typeof options !== 'object')\n throw new ERR_INVALID_ARG_TYPE('options', 'Object', options);\n if (callback !== undefined && typeof callback !== 'func... | 2019-04-02T01:46:17 |
huggingface/transformers | 503c933f360fd3e577d9db21fed02253ecfdf7d5 | 2aff20aff6119362e56aede7bf6846d1b037a41f | Fix confusing cls assignment (#41642)
Signed-off-by: Yuanyuan Chen <cyyever@outlook.com> | [
{
"path": "src/transformers/utils/fx.py",
"patch": "@@ -777,9 +777,9 @@ def __new__(\n attrs: dict[str, Any],\n proxy_factory_fn: Optional[Callable[[Node], Proxy]] = None,\n ):\n- cls = super().__new__(cls, name, bases, attrs)\n- for attr_name in dir(cls):\n- att... | 2025-10-16T13:01:07 |
rust-lang/rust | b2b117ee281c817e1edbe34429a5a77faa2f3ece | ed441b64ede18d483c65a6376e7bde8dea94294f | Fixed some clippy warnings. | [
{
"path": "build_system/src/abi_test.rs",
"patch": "@@ -13,13 +13,16 @@ fn show_usage() {\n \n pub fn run() -> Result<(), String> {\n let mut args = std::env::args().skip(2);\n+ // FractalFir: In the future, I'd like to add some more subcommands / options.\n+ // So, this loop ought to stay for tha... | 2025-06-19T11:45:14 |
huggingface/transformers | 2aff20aff6119362e56aede7bf6846d1b037a41f | 981370c038e98f4a4c720aa6b56e5cbde8266c74 | Fix typos in documentation (#41641)
Fix typos
Signed-off-by: Yuanyuan Chen <cyyever@outlook.com> | [
{
"path": "docs/source/en/model_doc/evolla.md",
"patch": "@@ -61,7 +61,7 @@ message_list = [\n ]\n ]\n input_dict = processor(\n- protein_informations, messages_list, return_tensors=\"pt\", text_max_length=512, protein_max_length=1024\n+ protein_inputs, messages_list, return_tensors=\"pt\", text_m... | 2025-10-16T12:58:46 |
vercel/next.js | e76c881d4d4def2e511354b3b69f20762229f63b | d539c764d10f0a30d8433beda617c6743bbfa76d | Use route metadata to trace in node-file-trace (#49080)
## What?
Changes the logic for running node-file-trace to no longer rely on
parsing the webpack request. Instead using the module metadata set in
each loader to generate the path.
## How?
The `route` metadata is already provided on all entry loaders si... | [
{
"path": "packages/next/src/build/entries.ts",
"patch": "@@ -145,7 +145,7 @@ export function getPageFromPath(pagePath: string, pageExtensions: string[]) {\n return page === '' ? '/' : page\n }\n \n-function getPageFilePath({\n+export function getPageFilePath({\n absolutePagePath,\n pagesDir,\n appD... | 2023-05-02T11:15:33 |
golang/go | c25bf0d959c299e5fa5392ae6f835570ed6d111f | 9e7600d3fccf1920028bc808c755198db73482c0 | cmd/compile/internal/types2: report types for mismatched call and return statements
Thanks to emmanuel@orijtech.com who wrote the initial version of
this change (CL 354490).
This change is following CL 354490 in idea but also contains various
simplifications, slightly improved printing of signature/type patterns,
adj... | [
{
"path": "src/cmd/compile/internal/types2/assignments.go",
"patch": "@@ -9,6 +9,7 @@ package types2\n import (\n \t\"cmd/compile/internal/syntax\"\n \t\"fmt\"\n+\t\"strings\"\n )\n \n // assignment reports whether x can be assigned to a variable of type T,\n@@ -241,6 +242,58 @@ func (check *Checker) assign... | 2021-11-17T23:23:12 |
nodejs/node | ceb80f415798818a059051537132bba691c68db7 | b180a1572768a16d14c08d1f847e2b8aa7afe87c | doc: fix default maxBuffer size
Correctly document the default maxBuffer size for execSync,
execFileSync, and spawnSync. It is 200 * 1024, not Infinity.
Add tests to verify behaviour is as documented.
PR-URL: https://github.com/nodejs/node/pull/22894
Reviewed-By: Sam Roberts <vieuxtech@gmail.com> | [
{
"path": "doc/api/child_process.md",
"patch": "@@ -721,7 +721,7 @@ changes:\n process will be killed. **Default:** `'SIGTERM'`.\n * `maxBuffer` {number} Largest amount of data in bytes allowed on stdout or\n stderr. If exceeded, the child process is terminated. See caveat at\n- [`maxBuffer` an... | 2018-09-17T09:19:26 |
rust-lang/rust | 890ade5ae85300cc96b1f948d4ac2d756cc67ccd | 07338a40de90d64155ca25bb58fc24cf9d6b0caa | Bless UI tests: do not print alternate implementors of `Step`
Alternative candidates for a trait implementation are not printed when
the trait has a diagnostic name, to avoid printing alternatives for
common stdlib traits such as `Copy` or `Debug`. However, this affects
all traits for which a diagnostic item is added.... | [
{
"path": "tests/ui/range/range-1.stderr",
"patch": "@@ -10,16 +10,6 @@ error[E0277]: the trait bound `bool: Step` is not satisfied\n LL | for i in false..true {}\n | ^^^^^^^^^^^ the trait `Step` is not implemented for `bool`\n |\n- = help: the following other types implement trait ... | 2025-06-20T17:31:30 |
golang/go | 9e7600d3fccf1920028bc808c755198db73482c0 | 696515ee396566ba02da145cf71fe5913d65b9a6 | go/types: print "nil" rather than "untyped nil"
This is a port of CL 366276 from types2 to go/types
with minor adjustments due to the slightly different
handling of nil in go/types.
It uses some more detailed error strings in stmt0.src;
the same changes are made to the corresponding types2
file.
For #48852.
Change-... | [
{
"path": "src/cmd/compile/internal/types2/testdata/check/stmt0.src",
"patch": "@@ -69,10 +69,10 @@ func assignments1() {\n \n \t// test cases for issue 5800\n \tvar (\n-\t\t_ int = nil /* ERROR \"nil\" */\n-\t\t_ [10]int = nil /* ERROR \"nil\" */\n+\t\t_ int = nil /* ERROR \"cannot use nil as int value in ... | 2021-11-23T00:04:17 |
rust-lang/rust | a32d0856804e75953144ac5173f06894e55ed846 | 8a65ee08296b36342bf7c3cdc15312ccbc357227 | error on calls to ABIs that cannot be called | [
{
"path": "compiler/rustc_hir_typeck/messages.ftl",
"patch": "@@ -1,6 +1,6 @@\n-hir_typeck_abi_custom_call =\n- functions with the `\"custom\"` ABI cannot be called\n- .note = an `extern \"custom\"` function can only be called from within inline assembly\n+hir_typeck_abi_cannot_be_called =\n+ funct... | 2025-06-16T19:26:29 |
huggingface/transformers | 981370c038e98f4a4c720aa6b56e5cbde8266c74 | eef9fb2af3db888cf93f81b425f9db453336726c | Format MarkDown documentation and tiny fixes (#41638)
* Fix MarkDown syntax
Signed-off-by: Yuanyuan Chen <cyyever@outlook.com>
* More fixes
Signed-off-by: Yuanyuan Chen <cyyever@outlook.com>
---------
Signed-off-by: Yuanyuan Chen <cyyever@outlook.com> | [
{
"path": "docs/source/en/accelerator_selection.md",
"patch": "@@ -55,6 +55,7 @@ deepspeed --num_gpus 2 trainer-program.py ...\n </hfoptions>\n \n ## Order of accelerators\n+\n To select specific accelerators to use and their order, use the environment variable appropriate for your hardware. This is often s... | 2025-10-16T12:58:06 |
nodejs/node | b180a1572768a16d14c08d1f847e2b8aa7afe87c | 15c0947fee2078bae4af1404e64448bf959a53bb | build: only emit download ICU warnings once
The check that the user specified `icu` in `--download` only needs to be
done once and not for each entry in `tools/icu/current_ver.dep`.
Fixes: https://github.com/nodejs/node/issues/26860
PR-URL: https://github.com/nodejs/node/pull/27031
Reviewed-By: Refael Ackermann <ref... | [
{
"path": "configure.py",
"patch": "@@ -1253,13 +1253,14 @@ def icu_download(path):\n if not os.access(options.download_path, os.W_OK):\n error('''Cannot write to desired download path.\n Either create it or verify permissions.''')\n+ attemptdownload = nodedownload.candownload(auto_down... | 2019-03-31T18:22:58 |
vercel/next.js | 9b9f971c0a8153bb1e1982a329aae12e3cf9cc80 | a039a4be7899d3469de87c755886154c7aa9b8ed | Fix TSConfig extends pointing to node module (vercel/turbo#4772)
In #4754, I screwed up the resolution logic for configs that reference
another config inside a node module. In it, I incorrectly joined
`/tsconfig.json` before performing any lookup, because I thought the
joining was happening in the `combinePaths` in... | [
{
"path": "crates/turbopack-ecmascript/src/typescript/resolve.rs",
"patch": "@@ -38,12 +38,20 @@ pub struct TsConfigIssue {\n pub message: StringVc,\n }\n \n+#[turbo_tasks::function]\n+async fn json_only(resolve_options: ResolveOptionsVc) -> Result<ResolveOptionsVc> {\n+ let mut opts = resolve_option... | 2023-05-02T04:56:49 |
electron/electron | 7e0775f9d795b86925b6d912b3bc1a33ae4209f0 | bff28613115ce2a951412fffc2dfb1c073f1cabf | docs: Fix markdown code language | [
{
"path": "docs-translations/zh-CN/tutorial/desktop-environment-integration.md",
"patch": "@@ -14,14 +14,14 @@ Windows 和 OS X 提供获取最近文档列表的便捷方式,那就是打开\n \n 为了增加一个文件到最近文件列表,你可以使用 [app.addRecentDocument][3] API:\n \n-````\n+```javascript\n var app = require('app');\n app.addRecentDocument('/Users/USERNAME/Deskto... | 2015-12-19T06:27:47 |
huggingface/transformers | eef9fb2af3db888cf93f81b425f9db453336726c | 35dc8f0a2e07239633e5d44147af5014a67e43c4 | Fix EncoderDecoder cache (#41612)
* Fix EncoderDecoder cache
* Add the option for the ddp data tuples to have 2 elems
* Modifiy the order of the KV and sliding
* Adapted RAG and Whisper to new EncoderDecoderCache
* A single comma
* Remove kwargs in map
* Fixed order in manual injection cache test
* Slight chang... | [
{
"path": "src/transformers/cache_utils.py",
"patch": "@@ -937,7 +937,7 @@ class DynamicCache(Cache):\n \n def __init__(\n self,\n- ddp_cache_data: Optional[Iterable[tuple[Optional[torch.Tensor], torch.Tensor, torch.Tensor]]] = None,\n+ ddp_cache_data: Optional[Iterable[tuple[Optio... | 2025-10-16T12:55:41 |
golang/go | 4da06e7b00ae9965ec7d2f6f131266e44f966754 | e883005d2ae5c9de0f3a072af53968da299bb8a8 | cmd/go: fix bug in using the workfile flag with tests
Tests do custom flag processing so we must process the workfile flag
after that happens.
Also fix an issue where errors weren't handled properly when the
workfile wasn't absolute (the go command should just exit), and where a
parse error was just dropped.
Fixes #... | [
{
"path": "src/cmd/go/internal/modload/init.go",
"patch": "@@ -294,7 +294,7 @@ func InitWorkfile() {\n \t\tworkFilePath = findWorkspaceFile(base.Cwd())\n \tdefault:\n \t\tif !filepath.IsAbs(cfg.WorkFile) {\n-\t\t\tbase.Errorf(\"the path provided to -workfile must be an absolute path\")\n+\t\t\tbase.Fatalf(\... | 2021-11-19T21:09:52 |
nodejs/node | 9dba96dc1a754616c81a550c057ce7cf9552e9cf | d005f382cdcec7dff1d61cf5ab3604e55f004471 | process: patch more process properties during pre-execution
Delay the creation of process properties that depend on
runtime states and properties that should not be accessed
during bootstrap and patch them during pre-execution:
- process.argv
- process.execPath
- process.title
- process.pid
- process.ppid
- process.R... | [
{
"path": "lib/internal/bootstrap/pre_execution.js",
"patch": "@@ -3,9 +3,9 @@\n const { getOptionValue } = require('internal/options');\n const { Buffer } = require('buffer');\n \n-function prepareMainThreadExecution() {\n+function prepareMainThreadExecution(expandArgv1 = false) {\n // Patch the process ... | 2019-03-20T01:02:57 |
vercel/next.js | e58c63b9ede8dc9ec73833e30c67dbc3cf120591 | e6acd40cba2c565919ee3e94bb9e8a100dc69495 | fix(next_core): do not apply user config to internal assets (#48210)
### What?
This is necessary changes for the WEB-862, however dependent to https://github.com/vercel/turbo/pull/4521. | [
{
"path": "packages/next-swc/crates/next-core/src/next_client/context.rs",
"patch": "@@ -23,9 +23,11 @@ use turbo_binding::{\n env::ProcessEnvAssetVc,\n node::execution_context::ExecutionContextVc,\n turbopack::{\n+ condition::ContextCondition,\n module_options... | 2023-05-02T04:49:02 |
golang/go | b38ab0ac5f78ac03a38052018ff629c03e36b864 | 14f2b2a4c55b707828be2890b8c750cb849203f6 | cmd/internal/objfile, debug/gosym: use the address of runtime.text as textStart
Tools like objdump uses the pcln table to find the line number of
a given PC. For a PIE binary, at least in some cases such as on
macOS 12 with ld64-711, the table contains unrelocated address,
which does not match the address in the symbo... | [
{
"path": "src/cmd/internal/objfile/objfile.go",
"patch": "@@ -152,6 +152,15 @@ func (e *Entry) PCLineTable() (Liner, error) {\n \tif err != nil {\n \t\treturn nil, err\n \t}\n+\tsyms, err := e.raw.symbols()\n+\tif err == nil {\n+\t\tfor _, s := range syms {\n+\t\t\tif s.Name == \"runtime.text\" {\n+\t\t\t\... | 2021-11-23T23:03:47 |
nodejs/node | 10eaf6a09feee78275d5c1f84ce46815d8a8772f | 883a0d521ff44971806dd6baba8cf74102268a4d | doc: fix section sorting, add link reference
PR-URL: https://github.com/nodejs/node/pull/27075
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "doc/api/errors.md",
"patch": "@@ -407,34 +407,6 @@ try {\n `SyntaxError` instances are unrecoverable in the context that created them –\n they may only be caught by other contexts.\n \n-## Class: TypeError\n-\n-A subclass of `Error` that indicates that a provided argument is not an\n-allowable ty... | 2019-04-03T18:40:22 |
vercel/next.js | 96d68fe351feca79e049a703adf45ab9c49b59c0 | 45030d62adb75f3b5961073621aca55754c5029c | fix(next-core): interop non string record values in env (#49057)
### What?
Trying to close WEB-718. Since next.config can pass `Record<String, any>` for the env value, explicitly interop it. | [
{
"path": "packages/next-swc/crates/next-core/src/next_config.rs",
"patch": "@@ -51,7 +51,7 @@ pub struct NextConfig {\n pub config_file: Option<String>,\n pub config_file_name: String,\n \n- pub env: IndexMap<String, String>,\n+ pub env: IndexMap<String, JsonValue>,\n pub experimental: Ex... | 2023-05-01T22:38:41 |
huggingface/transformers | 35dc8f0a2e07239633e5d44147af5014a67e43c4 | 2935a1be19f12176c455cb65d67dc5a3bb84cd77 | Adjust device logging level and add minor fixes (#41636)
This commit addresses a noisy warning and improves the robustness of the base pipeline implementation.
- The device placement message in the pipeline base class has been changed from a `warning` to a `debug` log. This reduces log noise for users who are aware o... | [
{
"path": "src/transformers/pipelines/base.py",
"patch": "@@ -94,6 +94,7 @@ def _pad(items, key, padding_value, padding_side):\n min_length = min(item[key].shape[1] for item in items)\n dtype = items[0][key].dtype\n \n+ tensor = None\n if dim == 2:\n if max_length ... | 2025-10-16T12:47:39 |
rust-lang/rust | 0fc950735ac35784b2ba49679f164f3ae2dfc8f7 | 636769490445a477746a1242e40fa11b633388a5 | Improve error message for rustdoc_json_types tidy check
Only emit git errors if we are in CI environment | [
{
"path": "src/build_helper/src/ci.rs",
"patch": "@@ -17,7 +17,11 @@ impl CiEnv {\n }\n \n pub fn is_ci() -> bool {\n- Self::current() != CiEnv::None\n+ Self::current().is_running_in_ci()\n+ }\n+\n+ pub fn is_running_in_ci(self) -> bool {\n+ self != CiEnv::None\n }\n \... | 2025-06-20T14:12:41 |
electron/electron | 177cfd9958b6feb85e6ec4e60b059c59c89bbe69 | fe016d393fd8bb684b90b885a69ada4d2b930619 | Revert "Upgrade node to fix crash in Buffer"
This reverts commit fe9c09ef64ea3a874307855924f5cfbde4770318. | [
{
"path": "vendor/node",
"patch": "@@ -1 +1 @@\n-Subproject commit aff2d71b16a0691a30f0be159a253bab80d01b2c\n+Subproject commit 2e11f0fcb14dd035f9e073cf8b7778d60cf4f668",
"additions": 1,
"deletions": 1,
"language": "Unknown"
}
] | 2015-12-18T01:19:13 |
golang/go | 14f2b2a4c55b707828be2890b8c750cb849203f6 | 465b4028082339bb7aa64ed6e30aef4c0b0413b4 | cmd/internal/obj/x86: modify the threshold of assert loop for span6
Fixes: #49716
Change-Id: I7ed73f874c2ee1ee3f31c9c4428ed484167ca803
Reviewed-on: https://go-review.googlesource.com/c/go/+/366094
Reviewed-by: Cherry Mui <cherryyz@google.com>
Trust: Heschi Kreinick <heschi@google.com> | [
{
"path": "src/cmd/internal/obj/x86/asm6.go",
"patch": "@@ -2174,7 +2174,7 @@ func span6(ctxt *obj.Link, s *obj.LSym, newprog obj.ProgAlloc) {\n \t\t}\n \n \t\tn++\n-\t\tif n > 20 {\n+\t\tif n > 1000 {\n \t\t\tctxt.Diag(\"span must be looping\")\n \t\t\tlog.Fatalf(\"loop\")\n \t\t}",
"additions": 1,
... | 2021-11-22T15:39:52 |
huggingface/transformers | 2935a1be19f12176c455cb65d67dc5a3bb84cd77 | b9bd8c45a15b4e90bd800dcf6857cd6d690b7ca4 | Fix fp32_ln for various models (#41605)
* Add is_causal to KosmosTextAttention
* Move get target_dtype to be imported elsewhere
* Fix fp32 flash attention bug in bark
* Fix is_causal in mllama
* Fix fp32 issue on StableLM
* Fix repo-consistency | [
{
"path": "src/transformers/integrations/flash_attention.py",
"patch": "@@ -11,6 +11,19 @@\n _use_top_left_mask = flash_attn_supports_top_left_mask()\n \n \n+def get_target_dtype(query: torch.Tensor, module: torch.nn.Module) -> torch.dtype:\n+ \"\"\"If the query is in float32, return a target dtype compa... | 2025-10-16T12:18:49 |
nodejs/node | 883a0d521ff44971806dd6baba8cf74102268a4d | 5e98f875b93b7556458a6a274b09a36875207d9d | 2019-04-03, Version 6.17.1 'Boron' (LTS)
Notable changes:
- http:
- fix error check in `Execute()` (Brian White)
[#25939](https://github.com/nodejs/node/pull/25939)
PR-URL: https://github.com/nodejs/node/pull/26684 | [
{
"path": "CHANGELOG.md",
"patch": "@@ -104,7 +104,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.17.0\">6.17.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V6.md#6.17.1\">6.17.1</a><... | 2019-03-15T14:38:14 |
vercel/next.js | 45030d62adb75f3b5961073621aca55754c5029c | 58e5c780f33d22bc8300b1d5d8ed4065c62645e2 | Fix `next dev` failing for app when `__NEXT_DISABLE_MEMORY_WATCHER` is set (#49056)
This env should only affect the teardown & restart process, instead of
the `useWorkers` option. This also solves the problem of running `next
dev` on StackBlitz (which has the env var set:
https://github.com/vercel/next.js/issues/48... | [
{
"path": "packages/next/src/cli/next-dev.ts",
"patch": "@@ -211,7 +211,8 @@ const nextDev: CliCommand = async (argv) => {\n allowRetry,\n isDev: true,\n hostname: host,\n- useWorkers: !process.env.__NEXT_DISABLE_MEMORY_WATCHER,\n+ // This is required especially for app dir.\n+ useWorke... | 2023-05-01T21:40:24 |
rust-lang/rust | 367c8feb482d87ba184a6a2ffaf5a2ab6a5fd1cf | 255aa220821c05c3eac7605fce4ea1c9ab2cbdb4 | fix(linkcheck): Build using the lockfile
This is to unblock cargo from servo/html5ever#623 | [
{
"path": "src/tools/linkchecker/linkcheck.sh",
"patch": "@@ -98,6 +98,7 @@ then\n nightly_hash=$(rustc +nightly -Vv | grep commit-hash | cut -f2 -d\" \")\n url=\"https://raw.githubusercontent.com/rust-lang/rust\"\n mkdir linkchecker\n+ curl -o linkchecker/Cargo.lock ${url}/${nightly_hash}/Ca... | 2025-06-20T14:09:53 |
huggingface/transformers | b9bd8c45a15b4e90bd800dcf6857cd6d690b7ca4 | baecdb8a97a456ca475c832a11dac1b05ef72e1f | [CI] Build translated docs (#41632)
fix | [
{
"path": ".github/workflows/pr_build_doc_with_comment.yml",
"patch": "@@ -98,7 +98,7 @@ jobs:\n commit_sha: ${{ needs.get-pr-info.outputs.PR_HEAD_SHA }}\n pr_number: ${{ needs.get-pr-number.outputs.PR_NUMBER }}\n package: transformers\n- languages: ar de en es fr hi it ko pt tr zh ja... | 2025-10-16T12:01:33 |
golang/go | 465b4028082339bb7aa64ed6e30aef4c0b0413b4 | 47db3bb443774c0b0df2cab188aa3d76b361dca2 | cmd/compile/internal/inline: revise closure inl position fix
This patch revises the fix for issue 46234, fixing a bug that was
accidentally introduced by CL 320913. When inlining a chunk of code
with a closure expression, we want to avoid updating the source
positions in the function being closed over, but we do want ... | [
{
"path": "src/cmd/compile/internal/inline/inl.go",
"patch": "@@ -1108,11 +1108,15 @@ func (subst *inlsubst) clovar(n *ir.Name) *ir.Name {\n // closure does the necessary substitions for a ClosureExpr n and returns the new\n // closure node.\n func (subst *inlsubst) closure(n *ir.ClosureExpr) ir.Node {\n-\t... | 2021-11-23T13:19:45 |
electron/electron | a39834740c1b2e0af66dda2243fcf25470af7424 | fe016d393fd8bb684b90b885a69ada4d2b930619 | DockShow workaround
Implemented workaround in DockShow for TransformProcessType bugginess
based on discussion at http://stackoverflow.com/questions/7596643/ | [
{
"path": "atom/browser/browser_mac.mm",
"patch": "@@ -70,8 +70,21 @@\n }\n \n void Browser::DockShow() {\n+ BOOL active = [[NSRunningApplication currentApplication] isActive];\n ProcessSerialNumber psn = { 0, kCurrentProcess };\n- TransformProcessType(&psn, kProcessTransformToForegroundApplication);\n+... | 2015-12-17T20:00:04 |
nodejs/node | 5e98f875b93b7556458a6a274b09a36875207d9d | d711b97aa54eba45e9f6d3d827f063aaba98b5b0 | esm: fix typos
PR-URL: https://github.com/nodejs/node/pull/27067
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Yongsheng Zhang <zyszys98@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Gus Caplan <me@gus.host>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: Vse... | [
{
"path": "doc/api/cli.md",
"patch": "@@ -131,6 +131,9 @@ conjunction with native stack and other runtime environment data.\n added: v6.0.0\n -->\n \n+Enable FIPS-compliant crypto at startup. (Requires Node.js to be built with\n+`./configure --openssl-fips`.)\n+\n ### `--entry-type=type`\n <!-- YAML\n added... | 2019-04-03T07:02:47 |
vercel/next.js | 58e5c780f33d22bc8300b1d5d8ed4065c62645e2 | d23b1601851a2571b2154fd14289531eff71020e | feat: add draft mode to `next/headers` (#48789)
fix NEXT-1003
Co-authored-by: Wyatt Johnson <633002+wyattjoh@users.noreply.github.com> | [
{
"path": "packages/next-swc/crates/next-core/js/src/entry/app/route.ts",
"patch": "@@ -36,6 +36,15 @@ startHandler(async ({ request, response, query, params, path }) => {\n \n const context: RouteHandlerManagerContext = {\n params,\n+ prerenderManifest: {\n+ version: -1 as any, // letting us ... | 2023-05-01T21:37:17 |
huggingface/transformers | baecdb8a97a456ca475c832a11dac1b05ef72e1f | 44539827d55254546dff5249d976419c798d2f63 | [`Ernie 4.5 Moe`] Fix Moe and offloading (#41385)
fix | [
{
"path": "src/transformers/models/ernie4_5_moe/modeling_ernie4_5_moe.py",
"patch": "@@ -286,37 +286,12 @@ def forward(self, hidden_states):\n return hidden_states + self.e_score_correction_bias.squeeze()\n \n \n-class Ernie4_5_MoeRouter(nn.Module):\n- def __init__(self, config):\n- super(... | 2025-10-16T11:59:01 |
golang/go | 47db3bb443774c0b0df2cab188aa3d76b361dca2 | 1ac45e026b2cbae91e3495e2cc6e93b6d505b4f4 | runtime: skip TestTimePprof if nanotime calls libc
Fixes #43118
Change-Id: I499bf335904e2b72a2a8876d0368fff5e69aa7fa
Reviewed-on: https://go-review.googlesource.com/c/go/+/366759
Trust: Ian Lance Taylor <iant@golang.org>
Run-TryBot: Ian Lance Taylor <iant@golang.org>
Reviewed-by: Bryan C. Mills <bcmills@google.com>
T... | [
{
"path": "src/runtime/crash_test.go",
"patch": "@@ -714,6 +714,13 @@ func TestBadTraceback(t *testing.T) {\n }\n \n func TestTimePprof(t *testing.T) {\n+\t// This test is unreliable on any system in which nanotime\n+\t// calls into libc.\n+\tswitch runtime.GOOS {\n+\tcase \"aix\", \"darwin\", \"openbsd\", ... | 2021-11-24T00:30:17 |
rust-lang/rust | a0badba6eeb4b24dd9748f5e99cec285b473c43b | 2fcf1776b9ccef89993dfe40e9f5c4908e2d2d48 | Pass -Cpanic=abort for the panic_abort crate
The panic_abort crate must be compiled with panic=abort, but cargo
doesn't allow setting the panic strategy for a single crate the usual
way using panic="abort", but luckily per-package rustflags do allow
this. Bootstrap previously handled this in its rustc wrapper, but for... | [
{
"path": "library/Cargo.toml",
"patch": "@@ -1,3 +1,5 @@\n+cargo-features = [\"profile-rustflags\"]\n+\n [workspace]\n resolver = \"1\"\n members = [\n@@ -44,6 +46,14 @@ object.debug = 0\n rustc-demangle.debug = 0\n rustc-demangle.opt-level = \"s\"\n \n+# panic_abort must always be compiled with panic=abor... | 2025-04-24T14:47:27 |
nodejs/node | d711b97aa54eba45e9f6d3d827f063aaba98b5b0 | 5c2ee4ee8dd8045b3598db219d220988b4c4199e | src: apply clang-tidy rule bugprone-incorrect-roundings
PR-URL: https://github.com/nodejs/node/pull/26885
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Minwoo Jung <minwoo@nodesource.com>
Reviewed-By: Refael Ackermann <refack@gmail.com> | [
{
"path": "src/node_platform.cc",
"patch": "@@ -5,6 +5,7 @@\n #include \"debug_utils.h\"\n #include \"util.h\"\n #include <algorithm>\n+#include <cmath>\n #include <memory>\n \n namespace node {\n@@ -126,8 +127,7 @@ class WorkerThreadsTaskRunner::DelayedTaskScheduler {\n delay_in_seconds_(delay_in_s... | 2019-03-24T08:15:09 |
huggingface/transformers | 143acfe2ceb06b2bc39c2c59412949cfc4c8ed08 | 67fae90519f0992dc27c396d3b112bdf0d004ce5 | fix check inputs for text2text pipeline (#41556)
fix check inputs
Signed-off-by: jiqing-feng <jiqing.feng@intel.com>
Co-authored-by: Marc Sun <57196510+SunMarc@users.noreply.github.com> | [
{
"path": "src/transformers/pipelines/text2text_generation.py",
"patch": "@@ -194,17 +194,13 @@ def preprocess(self, inputs, truncation=TruncationStrategy.DO_NOT_TRUNCATE, **kw\n \n def _forward(self, model_inputs, **generate_kwargs):\n in_b, input_length = model_inputs[\"input_ids\"].shape\n-\n... | 2025-10-16T11:42:41 |
vercel/next.js | 905cb5a56b06bf59f7d8a5957e249e03bb0d779b | 1628260b88ce3052ac307a1607b6e8470188ab83 | Rename `experimentalReact` (#49046)
This PR renames `experimental.experimentalReact` as
`experimental.serverActions` and makes it a hard compilation error if
it's not set but detected server actions. | [
{
"path": "packages/next/src/build/index.ts",
"patch": "@@ -1143,7 +1143,7 @@ export default async function build(\n ...process.env,\n __NEXT_PRIVATE_PREBUNDLED_REACT:\n type === 'app'\n- ? config.experimental.experimentalReact\n+ ... | 2023-05-01T18:35:52 |
golang/go | e3eaedb5cf623d0836533573db4140749da42768 | 0f64c21d90c7017df4f199a5852d60d4b474c03c | os/signal: reset SIGURG in TestSignal
Accepting SIGURG signals could cause SIGURG to take up the entire
channel buffer.
Enhance the stability of test cases by:
1. Stop accepting the SIGURG signal by adding ‘Reset(sys call.SIGURG)’
2. Close the c1 chan by adding ‘defer Stop(c1)’ (Another bug, NOT this bug)
Fixes #... | [
{
"path": "src/os/signal/signal_test.go",
"patch": "@@ -136,6 +136,9 @@ func TestSignal(t *testing.T) {\n \t// Using 10 is arbitrary.\n \tc1 := make(chan os.Signal, 10)\n \tNotify(c1)\n+\t// Stop relaying the SIGURG signals. See #49724\n+\tReset(syscall.SIGURG)\n+\tdefer Stop(c1)\n \n \t// Send this process... | 2021-11-23T14:05:40 |
electron/electron | fe9c09ef64ea3a874307855924f5cfbde4770318 | b7cbc49c011b8480a34a08d9169faafabeb14db0 | Upgrade node to fix crash in Buffer | [
{
"path": "vendor/node",
"patch": "@@ -1 +1 @@\n-Subproject commit 2e11f0fcb14dd035f9e073cf8b7778d60cf4f668\n+Subproject commit aff2d71b16a0691a30f0be159a253bab80d01b2c",
"additions": 1,
"deletions": 1,
"language": "Unknown"
}
] | 2015-12-17T05:07:41 |
rust-lang/rust | 31b9de6965d955bc95d107ed2e58a75a3d902488 | 62fd159a5d565aa571b70b31d5dfefc2b6fdbcfd | fix: `let_unit_value` suggests wrongly for format macros | [
{
"path": "clippy_lints/src/lib.rs",
"patch": "@@ -523,7 +523,8 @@ pub fn register_lint_passes(store: &mut rustc_lint::LintStore, conf: &'static Co\n store.register_late_pass(|_| Box::new(same_name_method::SameNameMethod));\n store.register_late_pass(move |_| Box::new(index_refutable_slice::IndexRef... | 2025-06-20T07:49:14 |
huggingface/transformers | 67fae90519f0992dc27c396d3b112bdf0d004ce5 | af2a66ced94b97e6e435d42be2ac67bc8c980446 | Fix FP-Quant quantization fallback CPU dispatch. (#41619)
* fp_quant fix
* Update quantizer_fp_quant.py | [
{
"path": "src/transformers/quantizers/quantizer_fp_quant.py",
"patch": "@@ -97,6 +97,10 @@ def create_quantized_param(\n ):\n module, _ = get_module_from_name(model, param_name)\n \n+ if target_device == \"cpu\" and param_name.endswith(\"weight\"):\n+ # Works agains hard-coded... | 2025-10-16T11:41:01 |
nodejs/node | 8a6dcd040f35b023f0cc0208c4bc553fcc7e6a4d | 1087805eebcebfb17537455816eb155ea9c46672 | module: fix repl require calling the same file again
This makes sure multiple require calls will not fail in case a file
was created after the first attempt.
PR-URL: https://github.com/nodejs/node/pull/26928
Fixes: https://github.com/nodejs/node/issues/26926
Reviewed-By: Guy Bedford <guybedford@gmail.com>
Reviewed-By... | [
{
"path": "lib/internal/modules/cjs/loader.js",
"patch": "@@ -78,14 +78,15 @@ const {\n const isWindows = process.platform === 'win32';\n \n let requireDepth = 0;\n-let statCache = new Map();\n+let statCache = null;\n function stat(filename) {\n filename = path.toNamespacedPath(filename);\n- if (statCach... | 2019-03-26T15:28:53 |
vercel/next.js | fb975743df1003e354759abc0ece9073129dd581 | 057504b6254fccdb84d3a75a3a777e7334ba6e38 | fix viewbox with decimals (vercel/turbo#4765)
### Description
see https://github.com/vercel/next.js/pull/48947#issuecomment-1528900774
thanks @joacub | [
{
"path": "crates/turbopack-image/src/process/svg.rs",
"patch": "@@ -24,7 +24,7 @@ static UNITS: Lazy<HashMap<&str, f64>> = Lazy::new(|| {\n });\n \n static UNIT_REGEX: Lazy<Regex> =\n- Lazy::new(|| Regex::new(r\"^([0-9.]+(?:e\\d+)?)((?:in|cm|em|ex|m|mm|pc|pt|px)?)$\").unwrap());\n+ Lazy::new(|| Regex... | 2023-05-01T16:55:17 |
golang/go | 0f64c21d90c7017df4f199a5852d60d4b474c03c | 00045b76e50d98db354aa185bcbd60a6f62499ac | cmd/compile: special packages must not have any path separators
We want to distinguish special compiler-generated package paths,
like go.shape, from user paths, like go.opentelemetry.io/otel/semconv.
The former have no slash in them.
Writing a test for this seems hard, as the dependency we'd need to
add would be non-... | [
{
"path": "src/cmd/compile/internal/types/pkg.go",
"patch": "@@ -49,7 +49,7 @@ func NewPkg(path, name string) *Pkg {\n \tp := new(Pkg)\n \tp.Path = path\n \tp.Name = name\n-\tif strings.HasPrefix(path, \"go.\") {\n+\tif strings.HasPrefix(path, \"go.\") && !strings.Contains(path, \"/\") {\n \t\t// Special co... | 2021-11-19T21:28:49 |
electron/electron | 71303d4804b623b5c57d4feeffb9b808fc05aaa6 | c6634b1ea5554f72d577a0bb89e24ddeabf38622 | Fix context menu not working in devtools | [
{
"path": "atom/renderer/lib/inspector.coffee",
"patch": "@@ -27,7 +27,9 @@ convertToMenuTemplate = (items) ->\n label: item.label\n enabled: item.enabled\n if item.id?\n- transformed.click = -> DevToolsAPI.contextMenuItemSelected item.id\n+ transformed.click = ->\n+ ... | 2015-12-16T14:57:03 |
nodejs/node | 5b8434eebceb7a60062bbebc03cdf83d520c6bee | 8cc181c8eeb724d4ce0613fcc515857681bddbe9 | deps: V8: cherry-pick 0188634
Original commit message:
[ptr-compr][ubsan] Use [Read/Write]UnalignedValue for unaligned fields
When pointer compression is enabled the [u]intptr_t and double fields are
only kTaggedSize aligned so in order to avoid undefined behavior in C++ code
we have to access these ... | [
{
"path": "common.gypi",
"patch": "@@ -37,7 +37,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.15',\n+ 'v8_embedder_string': '-node.16',\n \n ##### V8 defaults for Node.js #####\n... | 2019-03-30T14:21:31 |
huggingface/transformers | af2a66ced94b97e6e435d42be2ac67bc8c980446 | a59124e27ea9b5a3110495b2c6737c087c8e3bb0 | Migrate transformers cli to Typer (#41487)
* Add typer-slim as explicit dependency
* Migrate CLI to Typer
* code quality
* bump release candidate
* adapt test_cli.py
* Remove ./commands + adapt tests
* fix quality
* consistency
* doctested
* do not serve model in chat
* style
* will it fix them?
* fix test... | [
{
"path": ".gitignore",
"patch": "@@ -98,6 +98,7 @@ celerybeat-schedule\n # Environments\n .env\n .venv\n+.venv*\n env/\n venv/\n ENV/",
"additions": 1,
"deletions": 0,
"language": "Unknown"
},
{
"path": "setup.py",
"patch": "@@ -114,7 +114,7 @@\n \"GitPython<3.1.19\",\n \"hf... | 2025-10-16T11:29:42 |
vercel/next.js | 1628260b88ce3052ac307a1607b6e8470188ab83 | 2d800df0992210500eb5abc545cf866e971ea098 | Fixed middleware's edge-chunks not being copied in copyTracedFiles (#48723)
### What?
This PR fixes middleware's edge-chunks not being copied in copyTracedFiles.
### How?
Merging its files' handling with other pages' ones.
### Note
I also want to exclude `process.turbopack` from the unsupported APIs list by che... | [
{
"path": "packages/next/src/build/utils.ts",
"patch": "@@ -10,7 +10,10 @@ import type {\n CustomRoutes,\n } from '../lib/load-custom-routes'\n import type { UnwrapPromise } from '../lib/coalesced-function'\n-import type { MiddlewareManifest } from './webpack/plugins/middleware-plugin'\n+import type {\n+ ... | 2023-05-01T16:43:59 |
golang/go | 00045b76e50d98db354aa185bcbd60a6f62499ac | b90c6b99b3fbe60f4782c3e3b85f0ba9bbcf5f50 | runtime: skip TestCgoCallbackGC on darwin-amd64-10_14 builder
This test occasionally fails due to a real bug on this platform.
Due to the age of the platform and the rarity of the failure, we do
not believe that the bug is worth working around.
Fixes #43926
Change-Id: Ia227c5afe81fc21b6630813228f976cc3a54013c
Review... | [
{
"path": "src/runtime/crash_cgo_test.go",
"patch": "@@ -64,6 +64,10 @@ func TestCgoCallbackGC(t *testing.T) {\n \t\t\tt.Skip(\"too slow for mips64x builders\")\n \t\t}\n \t}\n+\tif testenv.Builder() == \"darwin-amd64-10_14\" {\n+\t\t// TODO(#23011): When the 10.14 builders are gone, remove this skip.\n+\t\... | 2021-11-23T15:39:07 |
rust-lang/rust | 95778b554d23b5f8dcf6eef861ad3de3a500ef14 | 506411d9d1c45fc65a87a7bd2d5edebf249234a0 | Fix suggestion-cases-error of `empty_line_after_outer_attr` | [
{
"path": "clippy_lints/src/empty_line_after.rs",
"patch": "@@ -10,7 +10,7 @@ use rustc_errors::{Applicability, Diag, SuggestionStyle};\n use rustc_lexer::TokenKind;\n use rustc_lint::{EarlyContext, EarlyLintPass, LintContext};\n use rustc_session::impl_lint_pass;\n-use rustc_span::{BytePos, ExpnKind, Ident... | 2025-06-16T17:13:44 |
electron/electron | a29abf1e34ff4b0c2a71158031c28d857b75c7ee | 2b4e6080a8eff7dfe26090bea80bd87b38f11d6a | Update libchromiumcontent
Remove usages of private xpc_ APIs, fix #3823. | [
{
"path": "script/lib/config.py",
"patch": "@@ -8,7 +8,7 @@\n \n BASE_URL = os.getenv('LIBCHROMIUMCONTENT_MIRROR') or \\\n 'https://s3.amazonaws.com/github-janky-artifacts/libchromiumcontent'\n-LIBCHROMIUMCONTENT_COMMIT = '66bd8d1c705b7258f76c82436e4b16e82afbbd33'\n+LIBCHROMIUMCONTENT_COMMIT = 'e334f07f... | 2015-12-16T10:03:18 |
huggingface/transformers | c0a5cf19ad2e428722e631cc17d642330faec7ef | 3ef6f2c415ccd4f01460fb3733b6ad709e58d098 | Fix tokenization test (#41649)
fix | [
{
"path": "tests/test_tokenization_common.py",
"patch": "@@ -4356,6 +4356,7 @@ def test_tokenizer_mismatch_warning(self):\n for tokenizer, pretrained_name, kwargs in self.tokenizers_list:\n with self.subTest(f\"{tokenizer.__class__.__name__} ({pretrained_name})\"):\n with... | 2025-10-16T09:14:20 |
nodejs/node | 8cc181c8eeb724d4ce0613fcc515857681bddbe9 | 2ea9de2e85d937c9bc5d778c623b22614c2b8a72 | deps: V8: cherry-pick c8785d1
Original commit message:
[heap, api] Advance deprecations around global handles
Bug: chromium:923361, v8:8834
Change-Id: I46b6ad9eaa86476963a4e2cb3a5712447f180c20
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1528235
Auto-Submit: Michael Lippautz <m... | [
{
"path": "common.gypi",
"patch": "@@ -37,7 +37,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.14',\n+ 'v8_embedder_string': '-node.15',\n \n ##### V8 defaults for Node.js #####\n... | 2019-03-30T14:21:30 |
vercel/next.js | 2d800df0992210500eb5abc545cf866e971ea098 | 2343610fdf7b196c43138f4d1acaa099f8c7ed63 | Fixed `next-types-plugin` causing Typescript errors when `"type": "module"` is set (#49027)
### What?
This fixes `next-types-plugin` causing Typescript to complain about CommonJS files importing ESM ones when `"type": "module"` is set but `experimental.typedRoutes` is not enabled.
### How?
Always create a `.next/ty... | [
{
"path": "packages/next/src/build/webpack/plugins/next-types-plugin.ts",
"patch": "@@ -588,11 +588,13 @@ export class NextTypesPlugin {\n appTypesBasePath,\n relativePathToApp.replace(/\\.(js|jsx|ts|tsx|mjs)$/, '.ts')\n )\n- const relativeImportPath = path\n- .join(this.ge... | 2023-05-01T16:19:05 |
huggingface/transformers | 3ef6f2c415ccd4f01460fb3733b6ad709e58d098 | 59efd86da2fd2ce9d2af21b68956abf397009ec2 | Allow passing `tp_plan` in `from_pretrained` directly (#41435)
* start
* allow passing it
* fix plans
* fix
* fix
* style
* style
* fix
* add_test
* oupsi indent
* fix
* fix
* fix for CI without accelerator
* fix import | [
{
"path": "src/transformers/integrations/tensor_parallel.py",
"patch": "@@ -38,16 +38,15 @@\n from torch.distributed.tensor import DTensor, Placement, Replicate, Shard\n \n \n-def initialize_tensor_parallelism(tp_plan, tp_size=None, device_mesh=None, device_map=None):\n+def initialize_tensor_parallelism... | 2025-10-16T09:12:07 |
golang/go | b90c6b99b3fbe60f4782c3e3b85f0ba9bbcf5f50 | 066620f0d8597116a62d9423669ca569646de5ff | misc/reboot: skip TestRepeatBootstrap on short builders
This test is slow and resource-intensive, and will rarely catch
failures. It is important to run sometimes, but probably a waste of
time on smaller (and especially reverse) builders.
Rather than hard-coding a list of small builders, only run it on the
longtest bu... | [
{
"path": "misc/reboot/reboot_test.go",
"patch": "@@ -15,6 +15,10 @@ import (\n )\n \n func TestRepeatBootstrap(t *testing.T) {\n+\tif testing.Short() {\n+\t\tt.Skipf(\"skipping test that rebuilds the entire toolchain\")\n+\t}\n+\n \tgoroot, err := os.MkdirTemp(\"\", \"reboot-goroot\")\n \tif err != nil {\n... | 2021-11-23T15:54:49 |
nodejs/node | 2ea9de2e85d937c9bc5d778c623b22614c2b8a72 | 98b5ba840e00cea1614266745fa0ccf1e6211315 | deps: V8: cherry-pick f4b860d
Original commit message:
[heap,api] Remove deprecated APIs
Bug: chromium:923361, v8:8834
Change-Id: I6ec42aeb74bea5c0629fcdc3f95c125f5de534a0
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1526195
Commit-Queue: Michael Lippautz <mlippautz@chromium.or... | [
{
"path": "common.gypi",
"patch": "@@ -37,7 +37,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.13',\n+ 'v8_embedder_string': '-node.14',\n \n ##### V8 defaults for Node.js #####\n... | 2019-03-30T14:21:26 |
vercel/next.js | 2343610fdf7b196c43138f4d1acaa099f8c7ed63 | 37821b54c4e62a920723ea7523c93fb426a35444 | fix: wrong link in docs (#49001)
A link to a third-party package in the docs directs you to the wrong page. | [
{
"path": "docs/advanced-features/i18n-routing.md",
"patch": "@@ -13,7 +13,7 @@ description: Next.js has built-in support for internationalized routing and lang\n \n Next.js has built-in support for internationalized ([i18n](https://en.wikipedia.org/wiki/Internationalization_and_localization#Naming)) routin... | 2023-05-01T15:28:50 |
huggingface/transformers | 59efd86da2fd2ce9d2af21b68956abf397009ec2 | 7b7d17f9bfbfaa703fbb03aa854a345c20c8aefe | Add aux loss for GLM-4.5V (#41564)
* add aux
* update
* update config to text_config
* use qwen data class to avoid repeat again
* format
* update
* use 1e-4
* update
* update for remove init
* Apply style fixes
---------
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-... | [
{
"path": "src/transformers/models/glm4v_moe/configuration_glm4v_moe.py",
"patch": "@@ -206,7 +206,8 @@ class Glm4vMoeTextConfig(PreTrainedConfig):\n \\--k dense layers--/\n norm_topk_prob (`bool`, *optional*, defaults to `True`):\n... | 2025-10-16T09:04:21 |
golang/go | 83bfed916b97d51646b4bdc95e0e0fd7798b754f | 9678f794149d07857cbf2a518bfc7aec532fb732 | cmd/compile/internal/types2: print "nil" rather than "untyped nil"
When we have a typed nil, we already say so; thus it is sufficient
to use "nil" in all the other cases.
This is closer to (1.17) compiler behavior. In cases where the
1.17 compiler prints "untyped nil" (e.g., wrong uses of "copy"),
we already print a ... | [
{
"path": "src/cmd/compile/internal/types2/assignments.go",
"patch": "@@ -220,9 +220,6 @@ func (check *Checker) assignVar(lhs syntax.Expr, x *operand) Type {\n \t\treturn nil\n \tcase variable, mapindex:\n \t\t// ok\n-\tcase nilvalue:\n-\t\tcheck.error(&z, \"cannot assign to nil\") // default would print \"... | 2021-11-22T21:53:21 |
nodejs/node | e02f511dccaf41f103403936359d43ce2ad86d1e | dd0d6df9ae8585d639f777a487cebafc8c4f377b | doc: remove old system_errors
Remove old errors_system_errors, any useful information
in it moved into the SystemError class docs.
Fixes: https://github.com/nodejs/node/issues/26861
PR-URL: https://github.com/nodejs/node/pull/27037
Reviewed-By: Sam Roberts <vieuxtech@gmail.com> | [
{
"path": "doc/api/errors.md",
"patch": "@@ -351,9 +351,6 @@ The number of frames captured by the stack trace is bounded by the smaller of\n `Error.stackTraceLimit` or the number of available frames on the current event\n loop tick.\n \n-System-level errors are generated as augmented `Error` instances, whic... | 2019-03-29T03:12:48 |
vercel/next.js | 37821b54c4e62a920723ea7523c93fb426a35444 | 95d41fbcb190504f68fc080f3b213940fe3240eb | docs: Fix path of '.env.template' (#49012) | [
{
"path": "examples/auth-with-stytch/README.md",
"patch": "@@ -21,7 +21,7 @@ The first step is to configure the appropriate redirect URLs for your project. Y\n \n ## Running the example app\n \n-Now just click the deploy button below! Once you're signed in to your Vercel account, you'll be guided through ho... | 2023-05-01T15:23:24 |
huggingface/transformers | 7b7d17f9bfbfaa703fbb03aa854a345c20c8aefe | e20df45bf676d80bdddb9757eeeafe6c0c81ecfa | 🚨 [v5] Toggle the serialization format in processors (#41474)
* toggle the serialization
* prob this fixes it
* fix tests
* typo
* delete legacy save entirely
* remove extra nesting in if
* revert test and serialzie a public attr instead of private | [
{
"path": "src/transformers/feature_extraction_utils.py",
"patch": "@@ -512,7 +512,10 @@ def get_feature_extractor_dict(\n with open(resolved_feature_extractor_file, encoding=\"utf-8\") as reader:\n text = reader.read()\n feature_extractor_dict = json.loads(text)\n- ... | 2025-10-16T08:19:22 |
rust-lang/rust | 42b02019dc9beaffc424719c6afa9c64f1f4e10e | f9c15f40fbd7b4ba1baea6fb89551274047e17b3 | Fix `tests/ui/asm/naked-invalid-attr.stderr`.
`{{root}}` is supposed to be an internal-only name but it shows up in
the output.
(I'm working towards a more general fix -- a universal "joiner" function
that can be used all over the place -- but I'm not there yet, so let's
fix this one in-place for now.) | [
{
"path": "compiler/rustc_passes/src/check_attr.rs",
"patch": "@@ -35,7 +35,7 @@ use rustc_session::lint::builtin::{\n UNKNOWN_OR_MALFORMED_DIAGNOSTIC_ATTRIBUTES, UNUSED_ATTRIBUTES,\n };\n use rustc_session::parse::feature_err;\n-use rustc_span::{BytePos, DUMMY_SP, Span, Symbol, edition, sym};\n+use rus... | 2025-05-27T04:51:42 |
golang/go | 9678f794149d07857cbf2a518bfc7aec532fb732 | 0244343088e074c5f92b42a9812521f711a69410 | cmd/go: work out VCS information once per repository
We need VCS status information for each main package we load.
If two main packages are under the same VCS repository,
we can reuse that information to avoid duplicating work.
For instance, the kubernetes holds 51 main packages in its root module,
meaning that "go l... | [
{
"path": "src/cmd/go/internal/load/pkg.go",
"patch": "@@ -2203,6 +2203,10 @@ func (p *Package) collectDeps() {\n \t}\n }\n \n+// vcsStatusCache maps repository directories (string)\n+// to their VCS information (vcsStatusError).\n+var vcsStatusCache par.Cache\n+\n // setBuildInfo gathers build information,... | 2021-11-18T22:58:17 |
huggingface/transformers | 9f71e3a604e329b317e8bb2f659ed2bb66175a56 | bc9900562d20ddb6fefbc0d3d52633ac23787932 | [docs] Duplicate entry (#41591)
fix | [
{
"path": "docs/source/en/_toctree.yml",
"patch": "@@ -544,8 +544,6 @@\n title: Helium\n - local: model_doc/herbert\n title: HerBERT\n- - local: model_doc/hgnet_v2\n- title: HGNet-V2\n - local: model_doc/hunyuan_v1_dense\n title: HunYuanDenseV1\n - local... | 2025-10-15T15:02:36 |
nodejs/node | f7c96856f90f4fcd53bc3c166736a53e9c25d729 | 14b2db0145c6c8715a701458dfb6ac4ec664df6d | util: improve error property inspection
This makes sure that errors that contain extra properties show those
properties on a separate line.
PR-URL: https://github.com/nodejs/node/pull/26984
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com> | [
{
"path": "lib/internal/util/inspect.js",
"patch": "@@ -1342,7 +1342,7 @@ function formatProperty(ctx, value, recurseTimes, key, type) {\n return `${name}:${extra}${str}`;\n }\n \n-function isBelowBreakLength(ctx, output, start) {\n+function isBelowBreakLength(ctx, output, start, base) {\n // Each entry... | 2019-03-29T13:19:14 |
vercel/next.js | 1a71bea612e2b447f04447d289df7853e1bddbff | 5bc1e65efd5e9fa6ab16b63adbb080756f853766 | Fix extra block element in body (#49034)
This PR adds `position: absolute` to the router announcer container so
it won't affect the layout of siblings / parents.
Closes #48087.
Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com> | [
{
"path": "packages/next/src/client/components/app-router-announcer.tsx",
"patch": "@@ -11,6 +11,7 @@ function getAnnouncerNode() {\n return existingAnnouncer.shadowRoot.childNodes[0] as HTMLElement\n } else {\n const container = document.createElement(ANNOUNCER_TYPE)\n+ container.style.cssText... | 2023-05-01T14:02:48 |
huggingface/transformers | bc9900562d20ddb6fefbc0d3d52633ac23787932 | 72fd67929b9a877cb2934985629d80b158f37689 | Fix quantization base class (#41613)
* fix
* fix
---------
Co-authored-by: Mohamed Mekkouri <93391238+MekkCyber@users.noreply.github.com> | [
{
"path": "src/transformers/quantizers/base.py",
"patch": "@@ -211,6 +211,9 @@ def update_ep_plan(self, config):\n \"updates the tp plan for the scales\"\n return config\n \n+ def _process_model_before_weight_loading(self, model, **kwargs):\n+ return model\n+\n def preprocess_m... | 2025-10-15T14:58:17 |
golang/go | 0244343088e074c5f92b42a9812521f711a69410 | 7456b948532e752c0ea0ac98e56e6898271f4dcd | spec: fix Swap example (correctly swap type arguments and parameters)
Thanks to @danscales for noticing the mistake.
Change-Id: I547ee80a78419765b82d39d7b34dc8d3bf962c35
Reviewed-on: https://go-review.googlesource.com/c/go/+/366215
Trust: Robert Griesemer <gri@golang.org>
Reviewed-by: Ian Lance Taylor <iant@golang.or... | [
{
"path": "doc/go_spec.html",
"patch": "@@ -1,6 +1,6 @@\n <!--{\n \t\"Title\": \"The Go Programming Language Specification - Go 1.18 Draft (incomplete)\",\n-\t\"Subtitle\": \"Version of Nov 19, 2021\",\n+\t\"Subtitle\": \"Version of Nov 22, 2021\",\n \t\"Path\": \"/ref/spec\"\n }-->\n \n@@ -2808,7 +2808,7 @... | 2021-11-22T19:43:46 |
nodejs/node | 14b2db0145c6c8715a701458dfb6ac4ec664df6d | 75007d64c036bba8412df71b0aa34efee161799c | util: improve `inspect()` compact number mode
This fixes a proportion calculation for lots of short array entries
with at least one bigger one that alone makes up for more than one
fifth of all other entries together.
PR-URL: https://github.com/nodejs/node/pull/26984
Reviewed-By: Michaël Zasso <targos@protonmail.com>... | [
{
"path": "lib/internal/util/inspect.js",
"patch": "@@ -878,26 +878,27 @@ function groupArrayElements(ctx, output) {\n let totalLength = 0;\n let maxLength = 0;\n let i = 0;\n+ const separatorSpace = 2; // Add 1 for the space and 1 for the separator.\n const dataLen = new Array(output.length);\n ... | 2019-03-29T13:15:01 |
electron/electron | 4718c726f6c7c7b26d18255c6bada816083ed3d9 | 524649797fb4f2b078526a40973251a1cdace82f | Remove starting crash reporter from quick start | [
{
"path": "docs-translations/es/tutorial/quick-start.md",
"patch": "@@ -70,9 +70,6 @@ El `main.js` debería crear las ventanas y gestionar los eventos del sistema, un\n var app = require('app'); // Módulo para controlar el ciclo de vida de la aplicación.\n var BrowserWindow = require('browser-window'); // ... | 2015-12-16T00:22:50 |
huggingface/transformers | 313afcc468d5e2500bb1eeb210ece0151166a1ee | 7bba4d12025b2e76aa0962a0dbacd4bf944d19a9 | [chat template] update when "push_to_hub" (#39815)
* update templates push to hub
* rvert jinja suffix and move it to processor file | [
{
"path": "src/transformers/processing_utils.py",
"patch": "@@ -776,6 +776,7 @@ def save_pretrained(self, save_directory, push_to_hub: bool = False, legacy_seri\n Additional key word arguments passed along to the [`~utils.PushToHubMixin.push_to_hub`] method.\n \"\"\"\n use_au... | 2025-10-15T13:49:59 |
golang/go | 7456b948532e752c0ea0ac98e56e6898271f4dcd | 7fbe2f4cc877a02465f36e10e7547e03bcb6e1af | doc/go1.18: document new overflow error for some untyped arguments to print/ln
Fixes #49216.
For #47694.
Change-Id: Ib129d790c382ddcc9677d87db4ca827b7159856a
Reviewed-on: https://go-review.googlesource.com/c/go/+/366275
Trust: Robert Griesemer <gri@golang.org>
Reviewed-by: Ian Lance Taylor <iant@golang.org> | [
{
"path": "doc/go1.18.html",
"patch": "@@ -43,6 +43,19 @@ <h3 id=\"bug_fixes\">Bug fixes</h3>\n programs is likely very small.\n </p>\n \n+<p>\n+ The Go 1.18 compiler now reports an overflow when passing a rune constant expression\n+ such as <code>'1' << 32</code> as an argument to the predeclared funct... | 2021-11-22T20:33:11 |
electron/electron | e729104d0087fcb27dda7a6a5a8632b8a9a8d9b0 | 063231cf0c79cca261bddcfab6b8ed6f2eb87eea | :bug: Support strict mode on Tutorial
[ci skip] | [
{
"path": "docs/tutorial/quick-start.md",
"patch": "@@ -78,6 +78,8 @@ The `main.js` should create windows and handle system events, a typical\n example being:\n \n ```javascript\n+'use strict';\n+\n const electron = require('electron');\n const app = electron.app; // Module to control application life.\n c... | 2015-12-15T15:52:14 |
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.