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
golang/go
f9b761aa76d0cf439a0c996e1b7c06a0fe49314e
bec8a108b324b2fc68eafeee7293a479813ec4e2
runtime: regression test for issue 50936 Add a regression test for issue 50936 which coerces the runtime into frequent execution of the cgocall dropg/execute curg assignment race by making many concurrent cgo calls eligible for P retake by sysmon. This results in no P during exitsyscall, at which point they will updat...
[ { "path": "src/runtime/crash_cgo_test.go", "patch": "@@ -216,6 +216,19 @@ func TestCgoCCodeSIGPROF(t *testing.T) {\n \t}\n }\n \n+func TestCgoPprofCallback(t *testing.T) {\n+\tt.Parallel()\n+\tswitch runtime.GOOS {\n+\tcase \"windows\", \"plan9\":\n+\t\tt.Skipf(\"skipping cgo pprof callback test on %s\", ru...
2022-01-31T21:37:40
nodejs/node
04633eeeb93c5a86a6635940eb4f34a7839ada11
b17a70f639c476e5b293992b63d155f63a6a6a7f
readline: error on falsy values for callback It was intended, according to in-test comments and common behaviour, that callbacks be either `undefined` or a function, but falsy values were being accepted as meaning "no callback". PR-URL: https://github.com/nodejs/node/pull/28109 Reviewed-By: Luigi Pinca <luigipinca@gm...
[ { "path": "lib/readline.js", "patch": "@@ -121,7 +121,7 @@ function Interface(input, output, completer, terminal) {\n input = input.input;\n }\n \n- if (completer && typeof completer !== 'function') {\n+ if (completer !== undefined && typeof completer !== 'function') {\n throw new ERR_INVALID_OP...
2019-06-02T22:48:53
huggingface/transformers
3a8d291ac439fca3decb9b800ea22500cffeaf50
4c9fde2a2a3aece0bcf1be93f696e88297da9397
Fix interactions between require_read_token and staticmethod (#42522) * Fix interactions between require_read_token and staticmethod * Trigger tests
[ { "path": "src/transformers/testing_utils.py", "patch": "@@ -638,6 +638,9 @@ def require_read_token(test_case):\n if getattr(attr, \"__require_read_token__\", False):\n continue\n wrapped = require_read_token(attr)\n+ if isinstance(inspect.g...
2025-12-04T20:03:14
vercel/next.js
a6a9d65c8c002db3c5ad62f1af8dcf545769013b
de83bf559801a3e250220bf8265bb850c373ee41
fix: helpful error when `output: export` and `next export -o` (#51191) We already have a warning when using `next export` with `output: export` because the `next export` is effectively a no-op (the exported output was already generated during `next build`). However, this PR ensures that `next export -o <dir>` throws ...
[ { "path": "packages/next/src/cli/next-export.ts", "patch": "@@ -63,6 +63,7 @@ const nextExport: CliCommand = (argv) => {\n silent: args['--silent'] || false,\n threads: args['--threads'],\n outdir: args['--outdir'] ? resolve(args['--outdir']) : join(dir, 'out'),\n+ hasOutdirFromCli: Boolean(a...
2023-06-12T20:15:58
nodejs/node
d7f60b7e878b0788a36ad0a166c18f13cf3d685f
bf1281444986c4dd827aee90d382078d9e0a7f36
test: remove test-tty-wrap from status file The test is believed to no longer be unreliable on AIX. Remove the flaky designation from the appropriate status file. Closes: https://github.com/nodejs/node/issues/9728 PR-URL: https://github.com/nodejs/node/pull/28129 Fixes: https://github.com/nodejs/node/issues/9728 Rev...
[ { "path": "test/pseudo-tty/pseudo-tty.status", "patch": "@@ -1,8 +1,6 @@\n prefix pseudo-tty\n \n [$system==aix]\n-# being investigated under https://github.com/nodejs/node/issues/9728\n-test-tty-wrap : FAIL, PASS\n \n [$system==solaris]\n # https://github.com/nodejs/node/pull/16225 - `ioctl(fd...
2019-06-08T02:12:00
huggingface/transformers
280c5d6d4e67ff05f6140f788379abe484a84e34
e920f94b4e588a75a9154fba7de2f59fb2aa0db3
[loading] Allow loading to happen without threading (#42619) * add env var * oupsi * fix * style * add test * style
[ { "path": "src/transformers/core_model_loading.py", "patch": "@@ -31,7 +31,7 @@\n \n from .integrations.accelerate import offload_weight\n from .integrations.tensor_parallel import ALL_PARALLEL_STYLES\n-from .utils import is_torch_greater_or_equal, logging\n+from .utils import is_env_variable_true, is_torch...
2025-12-04T16:45:29
golang/go
fa4d9b8e2bc2612960c80474fca83a4c85a974eb
b00447038a50e0923b12cb0bc3c28f6b842a7f54
cmd/go/internal/modfetch: do not short-circuit canonical versions Since at least CL 121857, the conversion logic in (*modfetch).codeRepo.Stat has had a short-circuit to use the version requested by the caller if it successfully resolves and is already canonical. However, we should not use that version if it refers to...
[ { "path": "src/cmd/go/internal/modfetch/coderepo.go", "patch": "@@ -298,16 +298,13 @@ func (r *codeRepo) Latest() (*RevInfo, error) {\n // If statVers is a valid module version, it is used for the Version field.\n // Otherwise, the Version is derived from the passed-in info and recent tags.\n func (r *codeR...
2022-01-13T20:38:14
electron/electron
cb47dfa90e3bc6c02ee41715de560f620cbcc9e8
71b67534a81444c10a155d5d5d703e1571a9d2f1
Fix problem with old Node
[ { "path": "tools/get-endianness.js", "patch": "@@ -1 +1,6 @@\n-console.log(require('os').endianness() === 'BE' ? 'big' : 'little')\n+var os = require('os')\n+if (os.endianness) {\n+ console.log(require('os').endianness() === 'BE' ? 'big' : 'little')\n+} else { // Your Node is rather old, but I don't care....
2016-04-07T06:56:25
vercel/next.js
d106155c9ca2aa2da86ff90b6a05ab54e9787d53
a973ad64d423a4ddd5ced70e91b60d80ea90ee9b
Update `next/head` warning to link to the correct docs page (#51013) Fixes https://github.com/vercel/next.js/issues/50844
[ { "path": "packages/next/src/build/webpack/loaders/next-flight-loader/index.ts", "patch": "@@ -95,7 +95,7 @@ export { e${cnt++} as ${ref} };`\n if (buildInfo.rsc?.type !== RSC_MODULE_TYPES.client) {\n if (noopHeadPath === this.resourcePath) {\n warnOnce(\n- `Warning: You're using \\`next/...
2023-06-12T19:16:04
huggingface/transformers
fda2d7350d717a6feb820065dad91e4302066070
b0831697be1dab7b88cccd95231ba3fbc50d90ee
feat(trainer): Just-in-time (JIT) asynchronous checkpointing using SIGTERM signals (#41723) * Just-in-time (JIT) asynchronous checkpointing using SIGTERM signals and cuda streams. * Fix failing ci tests * Update JIT checkpoint code to remove CUDA streams and async checkpointing. Introduce sentinal file to identify i...
[ { "path": "src/transformers/trainer.py", "patch": "@@ -642,6 +642,16 @@ def __init__(\n \"You should subclass `Trainer` and override the `create_optimizer_and_scheduler` method.\"\n )\n default_callbacks = DEFAULT_CALLBACKS + get_reporting_integration_callbacks(self.args....
2025-12-04T15:36:29
nodejs/node
bf1281444986c4dd827aee90d382078d9e0a7f36
90c9dca65aa12384959a14325fc08e871d75d314
test: add comments to the foaf+ssl fixtures PR-URL: https://github.com/nodejs/node/pull/27962 Reviewed-By: Sam Roberts <vieuxtech@gmail.com> Reviewed-By: Ujjwal Sharma <usharma1998@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
[ { "path": "test/fixtures/keys/Makefile", "patch": "@@ -651,6 +651,9 @@ I_AM_THE_WALRUS_sha256_signature_signedby_rsa_private_b.sha256: rsa_private_b.pe\n rsa_public_b.pem: rsa_private_b.pem\n \topenssl rsa -in rsa_private_b.pem -pubout -out rsa_public_b.pem\n \n+# The following 'foafssl' cert is used in tes...
2019-06-01T00:08:10
golang/go
475ce826b75f113aff2810f3d27cb861adee0caa
d0a0606841937cd6dd1db7a95ebd9d6e7ad02d96
net: remove an arbitrary timeout in TestUDPReadSizeError Looking at the condition actually exercised by the test it seems unnecessary: assuming that the Write succeeds (checked earlier in the test), the Read must have a nonzero number of bytes available to read immediately. (That is not the case in TestUDPZeroByteBuff...
[ { "path": "src/net/udpsock_test.go", "patch": "@@ -415,19 +415,14 @@ func TestUDPReadSizeError(t *testing.T) {\n \t\tif n != len(b1) {\n \t\t\tt.Errorf(\"got %d; want %d\", n, len(b1))\n \t\t}\n-\t\tc1.SetReadDeadline(time.Now().Add(100 * time.Millisecond))\n \t\tb2 := make([]byte, len(b1)-1)\n \t\tif gener...
2022-02-02T22:09:28
huggingface/transformers
ce53cc00aac9fac2669edf1ff221fb146d577a61
a3e2d54755658bc80ccb70f8578b58ca9c447a97
[V5] Return a BatchEncoding dict from apply_chat_template by default again (#42567) * Flip the default return type for `apply_chat_template` to match the underlying tokenizer * Remove test_tokenization_for_chat tests, which no longer do anything useful * Remove test_tokenization_for_chat tests, which no longer do an...
[ { "path": "src/transformers/tokenization_utils_base.py", "patch": "@@ -3195,7 +3195,7 @@ def apply_chat_template(\n truncation: bool = False,\n max_length: Optional[int] = None,\n return_tensors: Optional[Union[str, TensorType]] = None,\n- return_dict: bool = False,\n+ ...
2025-12-04T14:44:19
vercel/next.js
272ffffd59428873afc5ae9b9b3c707bd432519c
0f5b1917df317dcaa7edb42f4a539387309cf653
docs: fix prettier error (#51182)
[ { "path": "docs/02-app/01-building-your-application/03-data-fetching/04-server-actions.mdx", "patch": "@@ -110,16 +110,16 @@ export async function myAction() {\n ```\n \n ```jsx filename=\"app/client-component.jsx\" highlight={1}\n-\"use client\"\n+'use client'\n \n-import { myAction } from './actions';\n+i...
2023-06-12T16:31:53
electron/electron
71b67534a81444c10a155d5d5d703e1571a9d2f1
3ee366257c93fc5c931cb207ebbd72580785a175
Fix coding styles
[ { "path": "script/bootstrap.py", "patch": "@@ -164,12 +164,12 @@ def update_clang():\n \n \n def download_sysroot(target_arch):\n- python = sys.executable;\n if target_arch == 'ia32':\n target_arch = 'i386'\n if target_arch == 'x64':\n target_arch = 'amd64'\n- execute_stdout([python, os.path.j...
2016-04-07T06:45:20
golang/go
d0a0606841937cd6dd1db7a95ebd9d6e7ad02d96
54b2a75406a4e347cff2825b698f910549d6bd04
cmd/go: fail 'go work' subcommands with a more helpful error if no go.work file exists Otherwise, the failure mode for these subcommands refers to an empty file path: go: open : no such file or directory Fixes #50964 Change-Id: I8776431a294d2b2246d7d147b6059054f31bc255 Reviewed-on: https://go-review.googlesource.co...
[ { "path": "src/cmd/go/internal/workcmd/edit.go", "patch": "@@ -115,17 +115,6 @@ func init() {\n }\n \n func runEditwork(ctx context.Context, cmd *base.Command, args []string) {\n-\tanyFlags :=\n-\t\t*editGo != \"\" ||\n-\t\t\t*editJSON ||\n-\t\t\t*editPrint ||\n-\t\t\t*editFmt ||\n-\t\t\tlen(workedits) > 0\...
2022-02-01T21:59:41
nodejs/node
90c9dca65aa12384959a14325fc08e871d75d314
84bb35b4f041684f57140efe40316861e29be41c
test: change formatting of fixtures/keys/Makefile Converts the whitespace to spaces in the all: ... target for consistency. The other whitespace has to remain tabs due to how Makefiles work. PR-URL: https://github.com/nodejs/node/pull/27962 Reviewed-By: Sam Roberts <vieuxtech@gmail.com> Reviewed-By: Ujjwal Sharma <us...
[ { "path": "test/fixtures/keys/Makefile", "patch": "@@ -24,37 +24,37 @@ all: \\\n dh512.pem \\\n dh1024.pem \\\n dh2048.pem \\\n-\tdherror.pem \\\n-\tdsa_params.pem \\\n-\tdsa_private.pem \\\n-\tdsa_private_encrypted.pem \\\n-\tdsa_private_pkcs8.pem \\\n-\tdsa_public.pem \\\n+ dherror.pem \\\n+ dsa_p...
2019-05-30T22:11:32
rust-lang/rust
c8fac7779e75c16cfb49d7bb95809dbb6e19d5f7
f26e58023071e71636a3c72ac3a2bf89b1f76706
fix: Emit suggestion filename if primary diagnostic span is dummy
[ { "path": "compiler/rustc_errors/src/emitter.rs", "patch": "@@ -2078,7 +2078,9 @@ impl HumanEmitter {\n // file name, saving in verbosity, but if it *isn't* we do need it, otherwise we're\n // telling users to make a change but not clarifying *where*.\n let lo...
2025-06-27T00:21:47
huggingface/transformers
a3e2d54755658bc80ccb70f8578b58ca9c447a97
bf8b9e7b53ec723257f07ef5602b77db2fe49bff
Fix typo in docstring in modeling_sam3_tracker.py (#42438) * Update modeling_sam3_tracker.py * Apply docstring to modular_sam3_tracker.py for consistency Added custom introduction to auto_docstring for Sam3TrackerPreTrainedModel. to match typo fix in modeling_sam3_tracker.py * Fix SAM3 tracker docstrings in modula...
[ { "path": "src/transformers/models/sam3_tracker/modeling_sam3_tracker.py", "patch": "@@ -107,7 +107,12 @@ def forward(self, hidden_states):\n return hidden_states\n \n \n-@auto_docstring\n+@auto_docstring(\n+ custom_intro=\"\"\"\n+ Segment Anything Model 3 (SAM 3) for generating segmentation m...
2025-12-04T14:36:27
vercel/next.js
b664cdb1c05922cb5461a294e2c4c858113fbb02
e5a45c8a49ae577cd8c5a2121b470f9be0ed06d0
Add option for debugging CPU usage (#51174) Add a `NEXT_CPU_PROF` environment variable to programmatically profile CPU for the router worker and two render workers. This is helpful because the `--cpu-prof` isn't reliably writing the result (#27406) especially with our multi-process architecture. ![CleanShot-2023-06-1...
[ { "path": "packages/next/src/server/lib/cpu-profile.ts", "patch": "@@ -0,0 +1,28 @@\n+if (process.env.__NEXT_PRIVATE_CPU_PROFILE) {\n+ const { Session } = require('inspector') as typeof import('inspector')\n+ const fs = require('fs')\n+\n+ const session = new Session()\n+ session.connect()\n+\n+ sessio...
2023-06-12T15:31:36
golang/go
54b2a75406a4e347cff2825b698f910549d6bd04
1c6426505e640799f2a16d6097eed3f83b372b37
cmd/go/internal/modload: skip deleted entries in UpdateWorkFile Fixes #50958 Change-Id: I25b4f34bea7705525217296471ce97e6a2ab99f6 Reviewed-on: https://go-review.googlesource.com/c/go/+/382245 Trust: Bryan Mills <bcmills@google.com> Run-TryBot: Bryan Mills <bcmills@google.com> TryBot-Result: Gopher Robot <gobot@golang...
[ { "path": "src/cmd/go/internal/modload/init.go", "patch": "@@ -610,6 +610,9 @@ func UpdateWorkFile(wf *modfile.WorkFile) {\n \tmissingModulePaths := map[string]string{} // module directory listed in file -> abspath modroot\n \n \tfor _, d := range wf.Use {\n+\t\tif d.Path == \"\" {\n+\t\t\tcontinue // d is ...
2022-02-01T21:35:02
nodejs/node
84bb35b4f041684f57140efe40316861e29be41c
4019db2923c350b348fc81b943c2ee39cfe84b26
test: change fixtures.readSync to fixtures.readKey PR-URL: https://github.com/nodejs/node/pull/27962 Reviewed-By: Sam Roberts <vieuxtech@gmail.com> Reviewed-By: Ujjwal Sharma <usharma1998@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
[ { "path": "test/parallel/test-tls-getprotocol.js", "patch": "@@ -18,8 +18,8 @@ const clientConfigs = [\n \n const serverConfig = {\n secureProtocol: 'TLS_method',\n- key: fixtures.readSync('/keys/agent2-key.pem'),\n- cert: fixtures.readSync('/keys/agent2-cert.pem')\n+ key: fixtures.readKey('agent2-key....
2019-05-30T00:03:05
huggingface/transformers
bf8b9e7b53ec723257f07ef5602b77db2fe49bff
552409e598e91857923b44143934b02e78e82f57
Fix _is_package_available to handle underscore/hyphen equivalence (#42615) Fix minibug
[ { "path": "src/transformers/utils/import_utils.py", "patch": "@@ -55,9 +55,15 @@ def _is_package_available(pkg_name: str, return_version: bool = False) -> tuple[\n # importlib.metadata works with the distribution package, which may be different from the import\n # name (e.g. `PIL` is...
2025-12-04T13:52:33
huggingface/transformers
552409e598e91857923b44143934b02e78e82f57
bebfab0682839718443c7bf5020567ab3b434057
Fix small weight loading example (#42622) fix
[ { "path": "src/transformers/core_model_loading.py", "patch": "@@ -694,7 +694,7 @@ def convert_and_load_state_dict_in_model(\n target_patterns=[\"q\", \"k\",\"v\"],\n operations=[Chunk(dim=0, chunks=3)]),\n collected_tensors={\n- \"qkv\": [Fu...
2025-12-04T13:27:01
vercel/next.js
6b0a6f0c25d5be0461fb33d102367d27bc18cfd3
b870bf22e500acd8b308ceb60f9a3f5888eb7787
add turbopack integration tests to CI (#50904) ### What? * enable turbopack tests in new CI * split pre-build step into native and JS builds to allow to start native tests faster * update swc_core to sync with turbo * update turbopack ### Why? Running our test suite is still important as long we don't hav...
[ { "path": ".config/nextest.toml", "patch": "@@ -5,5 +5,5 @@ filter = \"package(next-dev-tests)\"\n leak-timeout = \"500ms\"\n retries = 2\n slow-timeout = \"60s\"\n-threads-required = 2\n+threads-required = 4\n failure-output = \"immediate-final\"\n\\ No newline at end of file", "additions": 1, "del...
2023-06-12T14:47:43
golang/go
1c6426505e640799f2a16d6097eed3f83b372b37
070951c5dcc47c9cff2ad4c1ac6170a4060a4d0c
net/netip: correct ipv6 address in ParsePrefix comment Fixes #50950 Change-Id: Iea94dba6e57d7e7985d4ae06a9b59ad126568599 Reviewed-on: https://go-review.googlesource.com/c/go/+/382294 Trust: Ian Lance Taylor <iant@golang.org> Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gopher Robot <gobot@golang.org>...
[ { "path": "src/net/netip/netip.go", "patch": "@@ -1288,7 +1288,7 @@ func (p Prefix) isZero() bool { return p == Prefix{} }\n func (p Prefix) IsSingleIP() bool { return p.bits != 0 && int(p.bits) == p.ip.BitLen() }\n \n // ParsePrefix parses s as an IP address prefix.\n-// The string can be in the form \"192...
2022-02-01T21:27:36
nodejs/node
4019db2923c350b348fc81b943c2ee39cfe84b26
0ee02c7a1c52739bd5e7fec5ae55eecacbeaf39d
test: remove uneeded agent keypair in fixtures/ PR-URL: https://github.com/nodejs/node/pull/27962 Reviewed-By: Sam Roberts <vieuxtech@gmail.com> Reviewed-By: Ujjwal Sharma <usharma1998@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
[ { "path": "test/fixtures/agent.crt", "patch": "@@ -1,21 +0,0 @@\n------BEGIN CERTIFICATE-----\n-MIIDXTCCAkWgAwIBAgIJAMUSOvlaeyQHMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNV\n-BAYTAkFVMRMwEQYDVQQIDApTb21lLVN0YXRlMSEwHwYDVQQKDBhJbnRlcm5ldCBX\n-aWRnaXRzIFB0eSBMdGQwHhcNMTAxMTE2MDkzMjQ5WhcNMTMxMTE1MDkzMjQ5WjBF\n-MQswCQYDVQQ...
2019-05-29T23:03:21
huggingface/transformers
bebfab0682839718443c7bf5020567ab3b434057
0c3d043e659e022146a84c8931a5f2b06543f29b
[core] Fix quark (#42457) * intial * update * add convert * fix * style * rm comment * explain * loop * fix * fix * update * Apply style fixes * fix * style * update --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
[ { "path": "src/transformers/core_model_loading.py", "patch": "@@ -462,9 +462,15 @@ def convert(\n full_name = layer_name\n if \".*.\" in layer_name:\n full_name = layer_name.replace(\".*.\", \".0.\")\n- prefix, _, suffix = next(full_name.partition(k) for k in collected_ten...
2025-12-04T12:30:41
vercel/next.js
b870bf22e500acd8b308ceb60f9a3f5888eb7787
d2e014a011156fcb1167d3153cb5459fcee9dab6
docs: Fix `useSearchParams` link in adoption guide. (#51151)
[ { "path": "docs/02-app/01-building-your-application/08-upgrading/02-app-router-migration.mdx", "patch": "@@ -430,7 +430,7 @@ export default function HomePage({ recentPosts }) {\n \n A new router has been added to support the new behavior in the `app` directory.\n \n-In `app`, you should use the three new ho...
2023-06-12T14:36:52
nodejs/node
0ee02c7a1c52739bd5e7fec5ae55eecacbeaf39d
23d2d17607938897baf312c4861ea5134dfe8890
test: move foafssl certs to fixtures/keys/ PR-URL: https://github.com/nodejs/node/pull/27962 Reviewed-By: Sam Roberts <vieuxtech@gmail.com> Reviewed-By: Ujjwal Sharma <usharma1998@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
[ { "path": "test/fixtures/foafssl.crt", "patch": "@@ -1,25 +0,0 @@\n-Bag Attributes\n- friendlyName: Me's Not a Certification Authority ID\n- localKeyID: 98 CC 02 91 83 8D 14 4A 60 40 B7 11 E8 EF A9 01 4B D7 16 8A\n-subject=/O=FOAF+SSL/OU=The Community Of Self Signers/UID=http://example.com/#me/CN=Me\n...
2019-05-29T22:47:10
huggingface/transformers
0c3d043e659e022146a84c8931a5f2b06543f29b
9b74e4c43402049608fc3e74c9b675d9b37ef0f7
fix(Qwen3VLCausalLMOutputWithPast): missing `hidden_states` and `atte… (#42609) * fix(Qwen3VLCausalLMOutputWithPast): missing `hidden_states` and `attentions` kwargs * revert kwargs for the base class * make regenerated model files * symmetrical change for `modular_qwen3_vl_moe.py` * regenerated `modeling_qwen3_vl...
[ { "path": "src/transformers/models/qwen3_vl/modeling_qwen3_vl.py", "patch": "@@ -38,7 +38,7 @@\n from ...modeling_rope_utils import ROPE_INIT_FUNCTIONS, dynamic_rope_update\n from ...modeling_utils import ALL_ATTENTION_FUNCTIONS, PreTrainedModel\n from ...processing_utils import Unpack\n-from ...utils impor...
2025-12-04T11:53:39
rust-lang/rust
3bf650f980a2ff5dcc521a7138c21f1ed67f0b8b
bc4376fa73b636eb6f2c7d48b1f731d70f022c4b
add failing test, bless incorrect output
[ { "path": "tests/ui/typeck/auxiliary/private-dep.rs", "patch": "@@ -0,0 +1,3 @@\n+pub trait A {\n+ fn foo() {}\n+}", "additions": 3, "deletions": 0, "language": "Rust" }, { "path": "tests/ui/typeck/auxiliary/public-dep.rs", "patch": "@@ -0,0 +1,11 @@\n+//@ aux-crate:priv:private_d...
2025-06-30T22:03:39
electron/electron
548febfa4cc20835e1d4d537a97ea5ff8983a305
e0ee60f290573fa889dbe448b6dd2c4b00a97a8c
Fix style issues
[ { "path": "atom/browser/ui/tray_icon_cocoa.mm", "patch": "@@ -78,18 +78,18 @@ - (void)drawRect:(NSRect)dirtyRect {\n BOOL highlightContent = highlight | [self isDarkMode];\n CGFloat thickness = [[statusItem_ statusBar] thickness];\n \n- // Draw the system bar background\n+ // Draw the system bar backg...
2016-04-07T04:58:51
golang/go
070951c5dcc47c9cff2ad4c1ac6170a4060a4d0c
8384fe86a5b7f579a50c7ad423d4dd4eb2d1f117
constraints: remove package It has moved to golang.org/x/exp/constraints. Perhaps it will move back to the standard library in a future release. For golang/go#45458 Fixes golang/go#50792 Change-Id: I93aa251a7afe7b329a3d3faadc0c5d6388b1f0e9 Reviewed-on: https://go-review.googlesource.com/c/go/+/382460 Trust: Ian Lanc...
[ { "path": "api/go1.18.txt", "patch": "@@ -1,12 +1,6 @@\n pkg bufio, method (*Writer) AvailableBuffer() []uint8\n pkg bufio, method (ReadWriter) AvailableBuffer() []uint8\n pkg bytes, func Cut([]uint8, []uint8) ([]uint8, []uint8, bool)\n-pkg constraints, type Complex interface {}\n-pkg constraints, type Floa...
2022-02-02T21:22:18
nodejs/node
23d2d17607938897baf312c4861ea5134dfe8890
dee736c4d04ebc81b401747deed2a0b0a88182b5
test: remove uneeded alice certs in fixtures/ PR-URL: https://github.com/nodejs/node/pull/27962 Reviewed-By: Sam Roberts <vieuxtech@gmail.com> Reviewed-By: Ujjwal Sharma <usharma1998@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
[ { "path": "test/fixtures/alice.crt", "patch": "@@ -1,24 +0,0 @@\n------BEGIN CERTIFICATE-----\n-MIID8DCCAtigAwIBAgIJALmw0zKhqlY1MA0GCSqGSIb3DQEBBQUAMFgxDjAMBgNV\n-BAMTBWFsaWNlMUYwRAYDVR0RFD11bmlmb3JtUmVzb3VyY2VJZGVudGlmaWVyOmh0\n-dHA6Ly9sb2NhbGhvc3Q6ODAwMC9hbGljZS5mb2FmI21lMB4XDTExMDgyNDA1NTUx\n-NFoXDTExMDk...
2019-05-29T20:39:33
vercel/next.js
d2e014a011156fcb1167d3153cb5459fcee9dab6
1c1ef0ef3f0b101c65b31646b1ff59ff1d33c023
docs: fix link to next/font API reference. (#51169)
[ { "path": "docs/02-app/01-building-your-application/05-optimizing/02-fonts.mdx", "patch": "@@ -502,7 +502,7 @@ const roboto = localFont({\n })\n ```\n \n-View the [Font API Reference](#local-fonts) for more information.\n+View the [Font API Reference](/docs/app/api-reference/components/font) for more inform...
2023-06-12T14:34:02
rust-lang/rust
e2d2926e6840294fe2e0b1a72d162e8d9facf8ea
7804d949dfcc32003dfd5412b44066d3546e4299
fix: install correct cc for wasm32-unknown-emscripten Also fixed a typo in the sanity check for bootstrap, as we are checking for clang-likeness in every wasm target.
[ { "path": "src/bootstrap/src/core/sanity.rs", "patch": "@@ -329,7 +329,7 @@ than building it.\n .or_insert_with(|| Target::from_triple(&target.triple));\n \n // compiler-rt c fallbacks for wasm cannot be built with gcc\n- if target.contains(\"wasm\") // bare metal targets without ...
2025-03-15T01:40:11
golang/go
77eff30ec0bc63df61ea742bb8278f92e2c133dc
edbe4742a296239c06cd99721bb0dbc5008d35a1
go/types, types2: add a const to control recursion panics in unification Add a panicAtUnificationDepthLimit const to replace the use of the debug const to control whether to panic when the unification recursion depth is reached. Our tests should pass when debug==true. Change-Id: I58847f49d66010bd4ca01c0408ec10acac95c...
[ { "path": "src/cmd/compile/internal/types2/unify.go", "patch": "@@ -33,9 +33,15 @@ import (\n // by setting up one of them (using init) and then assigning its value\n // to the other.\n \n-// Upper limit for recursion depth. Used to catch infinite recursions\n-// due to implementation issues (e.g., see issu...
2022-02-02T18:47:31
electron/electron
e0ee60f290573fa889dbe448b6dd2c4b00a97a8c
91457fe7393c6b206e64f795beea221686e64259
Fix memory leak
[ { "path": "atom/browser/ui/tray_icon_cocoa.mm", "patch": "@@ -89,7 +89,7 @@ - (void)drawRect:(NSRect)dirtyRect {\n // Apply the higlight color if the image is a template image. When this moves\n // to using the new [NSStatusItem button] API, this should work automagically.\n if ([image isTemplate] == ...
2016-04-05T18:38:58
nodejs/node
dee736c4d04ebc81b401747deed2a0b0a88182b5
9830afe7f717901fdefb09b43eb61b444aea04a4
test: remove uneeded certs in fixtures/ PR-URL: https://github.com/nodejs/node/pull/27962 Reviewed-By: Sam Roberts <vieuxtech@gmail.com> Reviewed-By: Ujjwal Sharma <usharma1998@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
[ { "path": "test/fixtures/cert.pem", "patch": "@@ -1,35 +0,0 @@\n------BEGIN CERTIFICATE-----\n-MIIDNDCCAp2gAwIBAgIJAJvXLQpGPpm7MA0GCSqGSIb3DQEBBQUAMHAxCzAJBgNV\n-BAYTAkdCMRAwDgYDVQQIEwdHd3luZWRkMREwDwYDVQQHEwhXYXVuZmF3cjEUMBIG\n-A1UEChMLQWNrbmFjayBMdGQxEjAQBgNVBAsTCVRlc3QgQ2VydDESMBAGA1UEAxMJ\n-bG9jYWxob3N0...
2019-05-29T19:11:34
huggingface/transformers
9b74e4c43402049608fc3e74c9b675d9b37ef0f7
3cdccba080c130805dcfabda4e9baa49802853b7
Every model forward() should have **kwargs (#42603) * Add **kwargs into every Model.forward() * Add the test back in * And the others I missed * Fix udop test * Fix fast2speech2conformer test * make fixup
[ { "path": "src/transformers/models/align/modeling_align.py", "patch": "@@ -1004,6 +1004,7 @@ def forward(\n pixel_values: Optional[torch.FloatTensor] = None,\n output_hidden_states: Optional[bool] = None,\n return_dict: Optional[bool] = None,\n+ **kwargs,\n ) -> Union[tupl...
2025-12-04T10:51:45
rust-lang/rust
7804d949dfcc32003dfd5412b44066d3546e4299
c65dccabacdfd6c8a7f7439eba13422fdd89b91e
fix: wasm-bare targets compiling x86 builtins Added sanity check to bootstrap to hard error on wasm builds without clang, and changed distribution image `dist-various-2` to use clang to build for official targets.
[ { "path": "src/bootstrap/src/core/sanity.rs", "patch": "@@ -328,6 +328,17 @@ than building it.\n .entry(*target)\n .or_insert_with(|| Target::from_triple(&target.triple));\n \n+ // compiler-rt c fallbacks for wasm cannot be built with gcc\n+ if target.contains(\"wasm\")...
2025-02-22T21:03:50
vercel/next.js
109e6cb34b00713089541fdfba770c48c7f2e6f5
38d789f82656f7a9848e3d7a5b4ffde2f08f552d
docs: fix grammar issue in next/image intro. (#51133)
[ { "path": "docs/02-app/01-building-your-application/05-optimizing/01-images.mdx", "patch": "@@ -18,7 +18,7 @@ related:\n \n </details>\n \n-According to [Web Almanac](https://almanac.httparchive.org), images account for a huge portion of the typical website’s [page weight](https://almanac.httparchive.org/en...
2023-06-11T19:59:21
golang/go
36b81acfa19d9fedf6a0cd60c394fd7a7703834e
a6a7c7a1fd6a2450cfec11e54217e04dce843a54
cmd/go: document that GOENV=off disables the default config file Fixes #46840 Change-Id: Icc5475e312003e316dc039413a35089485163ba6 Reviewed-on: https://go-review.googlesource.com/c/go/+/381894 Trust: Ian Lance Taylor <iant@golang.org> Run-TryBot: Ian Lance Taylor <iant@golang.org> Trust: Daniel Martí <mvdan@mvdan.cc>...
[ { "path": "src/cmd/go/alldocs.go", "patch": "@@ -2036,6 +2036,8 @@\n // \tGOENV\n // \t\tThe location of the Go environment configuration file.\n // \t\tCannot be set using 'go env -w'.\n+// \t\tSetting GOENV=off in the environment disables the use of the\n+// \t\tdefault configuration file.\n // \tGOFLAGS\...
2022-01-28T23:48:32
huggingface/transformers
2e93004ae0321af3188e2772676429a01436f9fc
a48d68c6b06172938948eef457ebb7bcd5dcb77c
extend FA2 and other cases to XPU, (#42536) * extend FA2 and other cases to XPU, we expect all model cases except CUDAGraph specific, CUDA compute capability specific and FA3 specific can run XPU. For FA3, we are develioping Signed-off-by: Yao, Matrix <matrix.yao@intel.com> * fix style Signed-off-by: Yao, Matrix <...
[ { "path": "tests/generation/test_continuous_batching.py", "patch": "@@ -25,7 +25,6 @@\n require_kernels,\n require_read_token,\n require_torch_accelerator,\n- require_torch_gpu,\n slow,\n torch_device,\n )\n@@ -315,36 +314,47 @@ def test_continuous_batching_parity_gemma_sdpa(self) -> ...
2025-12-04T07:39:20
nodejs/node
9830afe7f717901fdefb09b43eb61b444aea04a4
7b221fb3cd690b7a0f27b9eb53371aca9ec9af95
test: move dherror.pem to fixtures/keys/ PR-URL: https://github.com/nodejs/node/pull/27962 Reviewed-By: Sam Roberts <vieuxtech@gmail.com> Reviewed-By: Ujjwal Sharma <usharma1998@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
[ { "path": "test/fixtures/keys/Makefile", "patch": "@@ -24,6 +24,7 @@ all: \\\n dh512.pem \\\n dh1024.pem \\\n dh2048.pem \\\n+\tdherror.pem \\\n \tdsa_params.pem \\\n \tdsa_private.pem \\\n \tdsa_private_encrypted.pem \\\n@@ -578,6 +579,9 @@ dh1024.pem:\n dh2048.pem:\n \topenssl dhparam -out dh2048.pe...
2019-05-29T19:07:53
electron/electron
f9644463a9eedf2fe7427d574a4acdddf305fb2c
80f66031cb9b4789763b3a343a18410f90b1238a
Fix broken template image support in Tray icon Between Electron `0.30.x` and `0.37.x`, the tray icon stopped automatically inverting template images when highlighted. NSImageView normally uses the correct color for template images magicaly, but I think the addition of event handlers in the container view prevents the ...
[ { "path": "atom/browser/ui/tray_icon_cocoa.mm", "patch": "@@ -27,7 +27,6 @@ @interface StatusItemView : NSView {\n BOOL inMouseEventSequence_;\n base::scoped_nsobject<NSImage> image_;\n base::scoped_nsobject<NSImage> alternateImage_;\n- base::scoped_nsobject<NSImageView> image_view_;\n base::scoped...
2016-03-27T02:29:24
vercel/next.js
38d789f82656f7a9848e3d7a5b4ffde2f08f552d
6ba6762d754188775043a2bcb5442de868ea564f
Do not merge chunkGroups' CSS files (#51103) This is a temporary fix before we can ship #51018 (more details there). If there're multiple chunk groups holding the same CSS module, we use files from the first one. This has some flaws but still better than our current status.
[ { "path": "packages/next/src/build/webpack/plugins/flight-manifest-plugin.ts", "patch": "@@ -219,13 +219,6 @@ export class ClientReferenceManifestPlugin {\n name: 'default',\n chunks: chunkCSS,\n }\n- } else {\n- // It is possible that there are mu...
2023-06-11T16:05:26
huggingface/transformers
a48d68c6b06172938948eef457ebb7bcd5dcb77c
9e82c7791e0c94de7a536886456017b0eadcc08b
Fix some models cache initialization (#42586) * Create cache when training in case generate needs being called * Align modular * fixes * cohere * fix modular * fix * review --------- Co-authored-by: Cyril Vallez <cyril.vallez@gmail.com>
[ { "path": "src/transformers/models/cohere2/modeling_cohere2.py", "patch": "@@ -29,7 +29,6 @@\n from ...cache_utils import Cache, DynamicCache\n from ...generation import GenerationMixin\n from ...masking_utils import create_causal_mask, create_sliding_window_causal_mask\n-from ...modeling_flash_attention_ut...
2025-12-03T17:18:20
golang/go
5522f8c8e6132fe36e4da74f6628a9d63f643d60
e22a14b7eb1e4a172d0c20d14a0d2433fdf20e5c
cmd/go: fix relative-path normalization in go.work files We had been statting 'dir' instead of 'absDir', which statted the wrong directory if 'dir' was made relative to the location of the go.work file and that location was different from the current working directory. While we're here, I also noticed some other dir-...
[ { "path": "src/cmd/go/internal/workcmd/use.go", "patch": "@@ -43,8 +43,6 @@ func init() {\n }\n \n func runUse(ctx context.Context, cmd *base.Command, args []string) {\n-\tmodload.InitWorkfile()\n-\n \tmodload.ForceUseModules = true\n \n \tvar gowork string\n@@ -56,29 +54,42 @@ func runUse(ctx context.Conte...
2022-02-01T16:25:13
rust-lang/rust
876835de11c3405f5de83a6b14755583bb3ff185
cf5eb279101511fa9ee38988adab7cac9a57f0da
mbe: Split metavariable usage tests off from syntax tests `syntax-errors` currently contains both syntax error tests (which don't need expansion) and tests for incorrect instantiations of the `count` metavariable expression (which do need expansion). Split the expansion-dependent tests to a separate file and remove un...
[ { "path": "tests/ui/macros/metavar-expressions/concat-usage-errors.rs", "patch": "@@ -1,6 +1,6 @@\n #![feature(macro_metavar_expr_concat)]\n \n-macro_rules! wrong_concat_declarations {\n+macro_rules! syntax_errors {\n ($ex:expr) => {\n ${concat()}\n //~^ ERROR expected identifier\n@@ -13...
2025-06-23T05:14:23
vercel/next.js
cfd64aab55b6297d554b0d5970c4e10f8a3bf54b
d8763ca3475e0cc3662e920e516bbd2fb4893954
Fix windows metadata slashes (#51088) Fixes #51086 The path is used as href, should be normalized as posix style fix NEXT-1282
[ { "path": "packages/next/src/lib/metadata/get-metadata-route.ts", "patch": "@@ -4,6 +4,7 @@ import { interpolateDynamicPath } from '../../server/server-utils'\n import { getNamedRouteRegex } from '../../shared/lib/router/utils/route-regex'\n import { djb2Hash } from '../../shared/lib/hash'\n import { normal...
2023-06-10T23:30:32
huggingface/transformers
9e82c7791e0c94de7a536886456017b0eadcc08b
d5d87934c2294da88802fdef7dbd22b89f38f2be
Fix Ernie Moe Test (#42595) * fix * fix * rm unnecessary config * remove references
[ { "path": "tests/models/ernie4_5_moe/test_modeling_ernie4_5_moe.py", "patch": "@@ -97,24 +97,27 @@ def test_load_balancing_loss(self):\n config, input_dict = self.model_tester.prepare_config_and_inputs_for_common()\n config.num_labels = 3\n config.num_experts = 3\n- config.exp...
2025-12-03T17:09:43
nodejs/node
6326ced2de39e7d58237cb27ca884c675621a10d
17c65d334432b0f663903b14f60f874577c5f440
test: move test_[key|ca|cert] to fixtures/keys/ Lots of changes, but mostly just search/replace of fixtures.readSync(...) to fixtures.readKey([new key]...) Benchmarks modified to use fixtures.readKey(...): benchmark/tls/throughput.js benchmark/tls/tls-connect.js benchmark/tls/secure-pair.js Also be sure to review th...
[ { "path": "benchmark/tls/secure-pair.js", "patch": "@@ -6,21 +6,19 @@ const bench = common.createBenchmark(main, {\n size: [2, 1024, 1024 * 1024]\n });\n \n-const fs = require('fs');\n+const fixtures = require('../../test/common/fixtures');\n const tls = require('tls');\n const net = require('net');\n-con...
2019-05-29T18:43:44
golang/go
a42bbf47d6b0d6f67ad843252cb2e8f56a9d32b7
125c5a3d69c99378b17f50dc3f05e3cf3a8b9d2b
doc/go1.18: explain changes to compiler error messages For #47694. For #50954. Change-Id: I3789e145d64025fe2bf787fa5d01a21832903586 Reviewed-on: https://go-review.googlesource.com/c/go/+/381968 Trust: Robert Griesemer <gri@golang.org> Reviewed-by: Ian Lance Taylor <iant@golang.org>
[ { "path": "doc/go1.18.html", "patch": "@@ -443,6 +443,14 @@ <h2 id=\"compiler\">Compiler</h2>\n new <code>go</code> command <code>-asan</code> option.\n </p>\n \n+<p><!-- https://golang.org/issue/50954 -->\n+ Because the compiler's type checker was replaced in its entirety to\n+ support generics, some e...
2022-02-01T17:07:49
huggingface/transformers
d5d87934c2294da88802fdef7dbd22b89f38f2be
81aabe72d3ab08b42e04d06a4e1f6b6fe92a5832
repo. consistency bot (#42575) * draft * draft * draft * draft * draft * draft * draft * draft * draft * draft * draft * fail to see the check * fail to see the check * fail to see the check * fail to see the check * fail to see the check * Apply style fixes * fail to see the check * fail to see the ...
[ { "path": ".github/workflows/pr-repo-consistency-bot.yml", "patch": "@@ -0,0 +1,218 @@\n+name: PR Repo. Consistency Bot\n+\n+on:\n+ issue_comment:\n+ types:\n+ - created\n+ branches-ignore:\n+ - main\n+concurrency:\n+ group: ${{ github.workflow }}-${{ github.event.issue.number }}-${{ start...
2025-12-03T16:57:21
vercel/next.js
d8763ca3475e0cc3662e920e516bbd2fb4893954
db10dd674088fb04cadee2b6830bec55b70fe1ad
Fix getting last stable release stats (#51106) Small fix ensuring we use the correct repo for getting the last stable tag
[ { "path": ".github/actions/next-stats-action/src/index.js", "patch": "@@ -73,7 +73,7 @@ if (!allowedActions.has(actionInfo.actionName) && !actionInfo.isRelease) {\n \n if (actionInfo.isRelease) {\n logger('Release detected, using last stable tag')\n- const lastStableTag = await getLastS...
2023-06-10T23:00:10
nodejs/node
17c65d334432b0f663903b14f60f874577c5f440
1a6a80e38c9089a483e20611872a3d82652c041c
test: move spkac certs to fixtures/keys/ PR-URL: https://github.com/nodejs/node/pull/27962 Reviewed-By: Sam Roberts <vieuxtech@gmail.com> Reviewed-By: Ujjwal Sharma <usharma1998@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
[ { "path": "test/fixtures/keys/Makefile", "patch": "@@ -46,6 +46,8 @@ all: \\\n \trsa_private_b.pem \\\n \tI_AM_THE_WALRUS_sha256_signature_signedby_rsa_private_b.sha256 \\\n \trsa_public_b.pem \\\n+\trsa_spkac.spkac \\\n+\trsa_spkac_invalid.spkac \\\n rsa_private_1024.pem \\\n rsa_private_2048.pem \\\n ...
2019-05-29T17:16:07
huggingface/transformers
81aabe72d3ab08b42e04d06a4e1f6b6fe92a5832
dd6cfdd3455f34986fe851375dbab0648f181a81
Align tie weights in Idefics (#42551) fix
[ { "path": "src/transformers/models/idefics/modeling_idefics.py", "patch": "@@ -1107,31 +1107,15 @@ def __init__(self, config, vision_model=None):\n bias=False,\n partially_freeze=config.freeze_lm_head,\n )\n+ if config.additional_vocab_size > 0:\n+ self._tie...
2025-12-03T16:56:05
vercel/next.js
efaddcda60988453b33247414714fe1b48138d99
2ede83560f79a7fd233f903476c79f409a7b7c96
Fix race condition with publish (#51105) We publish multiple packages in parallel which can cause issues with the prepublish only script running as turbo clearing/restoring dist caches can causing files to be missing if a publish is in progress. We also don't need to run these as all packages are already built prio...
[ { "path": ".github/actions/next-stats-action/src/index.js", "patch": "@@ -64,22 +64,20 @@ if (!allowedActions.has(actionInfo.actionName) && !actionInfo.isRelease) {\n statsConfig.mainRepo = actionInfo.prRepo\n }\n \n- // clone main repository/ref\n- if (!actionInfo.skipClone) {\n- await...
2023-06-10T21:05:27
electron/electron
f12f87d6f0c330a2516bba61c29b63d5aac59687
fa271204293865ee6ff3a7013659dca659bdd121
Add `isMainFrame` as last argument to WebContents `did-fail-load` event. Fixes #5013.
[ { "path": "atom/browser/api/atom_api_web_contents.cc", "patch": "@@ -541,15 +541,25 @@ void WebContents::DidFailProvisionalLoad(\n int error_code,\n const base::string16& error_description,\n bool was_ignored_by_handler) {\n- Emit(\"did-fail-provisional-load\", error_code, error_description, ur...
2016-04-05T02:24:58
huggingface/transformers
dd6cfdd3455f34986fe851375dbab0648f181a81
b8d5018e3fcd8f48a084526c983187d344e214f6
Add SDPA support for PatchTST model (#42465) * Add SDPA and Flash Attention support for PatchTST model - Add _supports_sdpa = True and _supports_flash_attn = True to PatchTSTPreTrainedModel - The existing PatchTSTAttention class already uses ALL_ATTENTION_FUNCTIONS to select the attention implementation based on co...
[ { "path": "src/transformers/models/patchtst/modeling_patchtst.py", "patch": "@@ -24,6 +24,7 @@\n \n from ... import initialization as init\n from ...activations import ACT2CLS\n+from ...integrations.deepspeed import is_deepspeed_zero3_enabled\n from ...modeling_flash_attention_utils import FlashAttentionKwa...
2025-12-03T16:17:14
nodejs/node
1a6a80e38c9089a483e20611872a3d82652c041c
d8b6de6c7866ee5669ba1e32f9af87e0fe132515
test: move x448 keypairs to fixtures/keys/ PR-URL: https://github.com/nodejs/node/pull/27962 Reviewed-By: Sam Roberts <vieuxtech@gmail.com> Reviewed-By: Ujjwal Sharma <usharma1998@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
[ { "path": "test/fixtures/keys/Makefile", "patch": "@@ -64,6 +64,8 @@ all: \\\n x25519_public.pem \\\n ed448_private.pem \\\n ed448_public.pem \\\n+ x448_private.pem \\\n+ x448_public.pem \\\n \n #\n # Create Certificate Authority: ca1\n@@ -682,6 +684,12 @@ ed448_private.pem:\n ed448_public.pem: ed44...
2019-05-28T23:39:49
vercel/next.js
bd97c01fca49f3d66cd2dc82e5da0742a3237d13
6a9fb9e77faae76004e6fc00afa09f36de2a5928
docs: remove added verb and fix good to know section. (#51054)
[ { "path": "docs/02-app/02-api-reference/01-components/link.mdx", "patch": "@@ -370,7 +370,7 @@ The default behavior of `Link` is to scroll to the top of the page. When there i\n \n It's common to use [Middleware](/docs/app/building-your-application/routing/middleware) for authentication or other purposes th...
2023-06-10T18:55:27
huggingface/transformers
ef780bf131fb506ca0095237f4d87e037c4b6234
7266f50bc8c3f071fd2fddb5eeb87280a029eabc
Add torch compile to CB (#42516) * transfer commit * Allow fullgraph and little fixes * fix when no measurements * CB is better at handling compile. Also can be benched. * Style * Add sumarrized by default * Doc and better CG logic * CG logic rollback * Update to Fa3 thx to Anton * style
[ { "path": "benchmark_v2/framework/benchmark_config.py", "patch": "@@ -5,6 +5,7 @@\n from functools import lru_cache\n from typing import Any\n \n+from transformers.generation.configuration_utils import CompileConfig\n from transformers.utils.import_utils import is_flash_attn_2_available, is_kernels_availabl...
2025-12-03T15:14:57
nodejs/node
d8b6de6c7866ee5669ba1e32f9af87e0fe132515
668938bc94db6b258fd236aee25aedc0730072b0
test: move ed448 keypairs to fixtures/keys/ PR-URL: https://github.com/nodejs/node/pull/27962 Reviewed-By: Sam Roberts <vieuxtech@gmail.com> Reviewed-By: Ujjwal Sharma <usharma1998@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
[ { "path": "test/fixtures/keys/Makefile", "patch": "@@ -62,6 +62,8 @@ all: \\\n ed25519_public.pem \\\n x25519_private.pem \\\n x25519_public.pem \\\n+ ed448_private.pem \\\n+ ed448_public.pem \\\n \n #\n # Create Certificate Authority: ca1\n@@ -674,6 +676,12 @@ x25519_private.pem:\n x25519_public.pe...
2019-05-28T21:40:58
golang/go
902dc38212dfdc21911fc32035704ec50a7b9994
93fe469de5388b71af2aa2c959dc485fa3d4bee3
go/types, types2: tweak missingMethodReason logic to improve message This makes the error case pointed out in the issue like the current message in Go 1.17 or -G=0 mode. The priority is to point out the similar but wrong method name, rather than a difference in type. Made changes to both cmd/compile/internal/types2 a...
[ { "path": "src/cmd/compile/internal/types2/lookup.go", "patch": "@@ -403,20 +403,18 @@ func (check *Checker) missingMethodReason(V, T Type, m, wrongType *Func) string\n \t\tmname = \"method \" + m.Name()\n \t}\n \tif wrongType != nil {\n-\t\tif Identical(m.typ, wrongType.typ) {\n-\t\t\tif m.Name() == wrongT...
2022-01-26T18:09:39
huggingface/transformers
7266f50bc8c3f071fd2fddb5eeb87280a029eabc
c0328af6d54d6ac367729427544f6e2772604248
[Quantization] Remove dequant fp8 config (#42596) * fix * style * up
[ { "path": "src/transformers/quantizers/quantizer_finegrained_fp8.py", "patch": "@@ -178,6 +178,10 @@ def _process_model_before_weight_loading(\n \n model.config.quantization_config = self.quantization_config\n \n+ def _process_model_after_weight_loading(self, model: \"PreTrainedModel\", **kwargs)...
2025-12-03T14:27:52
vercel/next.js
6a9fb9e77faae76004e6fc00afa09f36de2a5928
8366f1af31d71a3e9f69ad9d53d0264f61486e7e
Update 03-linking-and-navigating.mdx (#51084) Fixed a typo in 'Scrolling to an id' section. <!-- 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 chan...
[ { "path": "docs/02-app/01-building-your-application/01-routing/03-linking-and-navigating.mdx", "patch": "@@ -95,7 +95,7 @@ export function Navigation({ navLinks }) {\n \n The default behavior of `<Link>` is to [scroll to the top of the route segment that has changed](#focus-and-scroll-management). When ther...
2023-06-10T18:53:42
electron/electron
8c3ff97ba4439723d7958222d8639ddcaedace1f
8bc95fe279e7af30c9d14527ca835ff991e57de3
Make the logic of ParseHexColor more easy to understand This also fixes the #FFFF style of color hex.
[ { "path": "atom/common/color_util.cc", "patch": "@@ -4,31 +4,45 @@\n \n #include \"atom/common/color_util.h\"\n \n+#include <vector>\n+\n+#include \"base/strings/string_number_conversions.h\"\n #include \"base/strings/string_util.h\"\n \n namespace atom {\n \n-SkColor ParseHexColor(const std::string& name) ...
2016-04-02T12:11:02
nodejs/node
668938bc94db6b258fd236aee25aedc0730072b0
a596f8371e4470ff5ef4734bbe47f957698e504a
test: move dsa keypairs to fixtures/keys/ PR-URL: https://github.com/nodejs/node/pull/27962 Reviewed-By: Sam Roberts <vieuxtech@gmail.com> Reviewed-By: Ujjwal Sharma <usharma1998@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
[ { "path": "test/fixtures/keys/Makefile", "patch": "@@ -24,6 +24,11 @@ all: \\\n dh512.pem \\\n dh1024.pem \\\n dh2048.pem \\\n+\tdsa_params.pem \\\n+\tdsa_private.pem \\\n+\tdsa_private_encrypted.pem \\\n+\tdsa_private_pkcs8.pem \\\n+\tdsa_public.pem \\\n dsa1025.pem \\\n dsa_private_1025.pem \\\n...
2019-05-28T21:28:59
huggingface/transformers
c0328af6d54d6ac367729427544f6e2772604248
17c7c496000a5208370489d2cc4dec593b6dd66f
Fix the FA2 logic in the longcat_flash model (#42549) * Matching FA2 naming under kernels * make style * convert model * Follow the comments
[ { "path": "src/transformers/models/longcat_flash/modeling_longcat_flash.py", "patch": "@@ -431,7 +431,7 @@ def forward(\n cache_kwargs = {\"sin\": sin, \"cos\": cos, \"cache_position\": cache_position}\n key_states, value_states = past_key_values.update(key_states, value_states, self...
2025-12-03T14:21:48
golang/go
93fe469de5388b71af2aa2c959dc485fa3d4bee3
f1e7dcb49cba50203d656f931c3fb90b29727629
internal/fuzz: properly handle duplicates during cache loading When loading the corpus, if the cache contained an entry which was a duplicate of an entry added using f.Add, coordinator.addCorpusEntries would return early, ignoring everything after this entry in the cache. Instead, skip duplicates as intended, and con...
[ { "path": "src/cmd/go/testdata/script/test_fuzz_dup_cache.txt", "patch": "@@ -0,0 +1,52 @@\n+[!fuzz] skip\n+[short] skip\n+\n+# This test checks that cached corpus loading properly handles duplicate entries (this can\n+# happen when a f.Add value has a duplicate entry in the cached corpus.) Duplicate entrie...
2022-01-30T19:21:28
electron/electron
1980d85f3eb02ed662c35cf58426fb56283b5429
cb470cb94ba6034e4fbac6a70d0cf4345af31c90
Fix converting SkColor to NSColor Close #4992.
[ { "path": "atom/browser/native_window_mac.mm", "patch": "@@ -19,6 +19,7 @@\n #include \"content/public/browser/render_view_host.h\"\n #include \"content/public/browser/render_widget_host_view.h\"\n #include \"native_mate/dictionary.h\"\n+#include \"skia/ext/skia_utils_mac.h\"\n #include \"ui/gfx/skia_util.h...
2016-04-02T12:17:38
huggingface/transformers
17c7c496000a5208370489d2cc4dec593b6dd66f
130dc4710f6a7f459171c48a3f41c0da5bbb2166
Fix mixed torch.Tensor and DTensor in generate when use FSDP2 + LoRA (#42436) * Fix mixed torch.Tensor and DTensor error by registering fsdp forward for trainer.mode.generate * Apply fsdp forward register when fsdp is enabled --------- Co-authored-by: yiminzme <yiminzme@gmail.com> Co-authored-by: Ferdinand Mom <474...
[ { "path": "src/transformers/trainer.py", "patch": "@@ -2338,6 +2338,8 @@ def _inner_training_loop(\n \n if self.is_fsdp_enabled:\n self.model = self.model_wrapped = model\n+ # Fix `got mixed torch.Tensor and DTensor` error in model.generate() for FSDP2 with LoRA\n+ ...
2025-12-03T14:05:36
nodejs/node
a596f8371e4470ff5ef4734bbe47f957698e504a
e15a09d9dcc6442e73e049806e045181a93910ea
test: move rsa keypairs to fixtures/keys/ Also adds make'd signatures for use in tests of signing/verification. All of the moved keys can be regenerated at will without breaking tests now. PR-URL: https://github.com/nodejs/node/pull/27962 Reviewed-By: Sam Roberts <vieuxtech@gmail.com> Reviewed-By: Ujjwal Sharma <usha...
[ { "path": "test/fixtures/keys/Makefile", "patch": "@@ -31,6 +31,16 @@ all: \\\n ec-cert.pem \\\n ec.pfx \\\n fake-cnnic-root-cert.pem \\\n+\trsa_private.pem \\\n+\trsa_private_encrypted.pem \\\n+\trsa_private_pkcs8.pem \\\n+\trsa_private_pkcs8_bad.pem \\\n+\trsa_public.pem \\\n+\trsa_public_sha1_signa...
2019-05-28T21:11:45
golang/go
f1e7dcb49cba50203d656f931c3fb90b29727629
9152e211328f735e7dadaf69780920d64af09a2a
cmd/go/internal/workcmd: fix typo in help string Fixes #50945 Change-Id: Ib6251a5be09f4c6ba428ef4c97fe23ebffca3506 Reviewed-on: https://go-review.googlesource.com/c/go/+/382118 Trust: Bryan Mills <bcmills@google.com> Run-TryBot: Bryan Mills <bcmills@google.com> TryBot-Result: Gopher Robot <gobot@golang.org> Reviewed-...
[ { "path": "src/cmd/go/alldocs.go", "patch": "@@ -1379,7 +1379,7 @@\n // builds from local modules.\n //\n // go.work files are line-oriented. Each line holds a single directive,\n-// made up of a keyword followed by aruments. For example:\n+// made up of a keyword followed by arguments. For example:\n //\n ...
2022-02-01T14:56:41
huggingface/transformers
130dc4710f6a7f459171c48a3f41c0da5bbb2166
8ba286ba4e7025c07451bc9a6d22a422ff5934a3
fix : cast into floats AFTER all assignments (#42587) Co-authored-by: marconaguib <marco.naguib@aphp.fr>
[ { "path": "src/transformers/data/data_collator.py", "patch": "@@ -711,9 +711,6 @@ def __post_init__(self):\n if self.random_replace_prob < 0 or self.random_replace_prob > 1:\n raise ValueError(\"random_replace_prob should be between 0 and 1.\")\n \n- self.mask_replace_prob = float...
2025-12-03T13:40:39
nodejs/node
e15a09d9dcc6442e73e049806e045181a93910ea
6a0513817bb9e8fad1e0e1a3fd068275a22c7cf2
test: move x25519 keypair to fixtures/keys/ PR-URL: https://github.com/nodejs/node/pull/27962 Reviewed-By: Sam Roberts <vieuxtech@gmail.com> Reviewed-By: Ujjwal Sharma <usharma1998@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
[ { "path": "test/fixtures/keys/Makefile", "patch": "@@ -45,6 +45,8 @@ all: \\\n rsa_pss_public_2048_sha512_sha256_20.pem \\\n ed25519_private.pem \\\n ed25519_public.pem \\\n+ x25519_private.pem \\\n+ x25519_public.pem \\\n \n #\n # Create Certificate Authority: ca1\n@@ -606,6 +608,12 @@ ed25519_priv...
2019-05-28T18:47:01
golang/go
9152e211328f735e7dadaf69780920d64af09a2a
4fea5935f5f03b5037c792f8d5f5aa4cba90f1d6
spec: add section on comparable constraint For #50646. Fixes #50791. Change-Id: I8fec25ae3f0280c5b5a778011d23842b886ba79e Reviewed-on: https://go-review.googlesource.com/c/go/+/381896 Trust: Robert Griesemer <gri@golang.org> Reviewed-by: Ian Lance Taylor <iant@golang.org>
[ { "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 Jan 28, 2022\",\n+\t\"Subtitle\": \"Version of Jan 31, 2022\",\n \t\"Path\": \"/ref/spec\"\n }-->\n \n@@ -2656,6 +2656,53 ...
2022-01-28T23:34:40
huggingface/transformers
8ba286ba4e7025c07451bc9a6d22a422ff5934a3
cba7ae865b16f85b6008aebb220461a8863075f4
fix: correct typos in code comments (#42577) Fix three typos found in code comments: - 'avaoid' → 'avoid' in modeling_utils.py - 'weigth' → 'weight' in trainer_utils.py - 'Templace' → 'Template' in convert_slow_tokenizer.py These typos appeared in TODO comments and inline documentation.
[ { "path": "src/transformers/convert_slow_tokenizer.py", "patch": "@@ -1171,7 +1171,7 @@ def converted(self) -> Tokenizer:\n )\n tokenizer.decoder = decoders.ByteLevel()\n \n- # Hack to have a ByteLevel and TemplaceProcessor\n+ # Hack to have a ByteLevel and TemplateProcessor\n ...
2025-12-03T13:33:49
rust-lang/rust
76df2656dfdb385830e83b14abf908544177be22
ad3b7257615c28aaf8212a189ec032b8af75de51
Replace `ItemCtxt::report_placeholder_type_error` `match` with a call to `TyCtxt::def_descr`
[ { "path": "compiler/rustc_hir_analysis/src/collect.rs", "patch": "@@ -277,17 +277,7 @@ impl<'tcx> ItemCtxt<'tcx> {\n }\n _ => self.item_def_id,\n };\n- // FIXME: just invoke `tcx.def_descr` instead of going through the HIR\n- // Can also remove most `descr` meth...
2025-06-30T13:11:34
vercel/next.js
e797546ee316cf413208da7b8232a92ae1a4294d
83860091a61d8efd9bbb83ec89dfd6618c9559da
Adds missing `and` in `How to Use These Docs` section (#51058) Fixes #50227
[ { "path": "docs/index.mdx", "patch": "@@ -33,7 +33,7 @@ Some of the main Next.js features include:\n \n The sections and pages of the docs are organized sequentially, from basic to advanced, so you can follow them step-by-step when building your Next.js application. However, you can read them in any order o...
2023-06-10T13:15:02
electron/electron
b35f4c1805db66f5add4fb6a35bf90285cf80a2f
247b3f36057ed3465bac646b607a5205ce94914f
spec: Fix failing test due to path delimiter
[ { "path": "spec/chromium-spec.js", "patch": "@@ -199,7 +199,10 @@ describe('chromium feature', function () {\n \n it('defines a window.location getter', function (done) {\n var b, targetURL\n- targetURL = 'file://' + fixtures + '/pages/base-page.html'\n+ if (process.platform == 'win32')\...
2016-04-01T07:42:44
nodejs/node
6a0513817bb9e8fad1e0e1a3fd068275a22c7cf2
ba7551cad8abd2e460763b06efa4207be96a7a19
test: move ed25519 keypair to fixtures/keys/ PR-URL: https://github.com/nodejs/node/pull/27962 Reviewed-By: Sam Roberts <vieuxtech@gmail.com> Reviewed-By: Ujjwal Sharma <usharma1998@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
[ { "path": "test/fixtures/keys/.gitattributes", "patch": "@@ -0,0 +1,4 @@\n+* -text\n+\n+Makefile text\n+*.cnf text", "additions": 4, "deletions": 0, "language": "Unknown" }, { "path": "test/fixtures/keys/Makefile", "patch": "@@ -43,6 +43,8 @@ all: \\\n rsa_pss_public_2048.pem \\\n ...
2019-05-28T18:39:24
huggingface/transformers
cba7ae865b16f85b6008aebb220461a8863075f4
629c0da46d10d6cc9101d5042c0cdf670d1299e2
fix the FSDP1 default for reshard_after_forward (#42578) Co-authored-by: Marc Sun <57196510+SunMarc@users.noreply.github.com>
[ { "path": "src/transformers/training_args.py", "patch": "@@ -2755,7 +2755,7 @@ def _process_fsdp_args(self):\n )\n fsdp_plugin_args[\"backward_prefetch\"] = prefetch_policy.upper()\n fsdp_plugin_args[\"reshard_after_forward\"] = str(\n- self...
2025-12-03T13:18:20
golang/go
4fea5935f5f03b5037c792f8d5f5aa4cba90f1d6
eab9a77a60f5b6aaba978b61fbb260f2fbb307fb
go/types, types2: disallow real, imag, complex on type parameters We can type-check these fine but the API implications are unclear. Fixes #50912. For #50937. Change-Id: If29bbb4a257ff6a85e3bfcd4755fd8f90c80fb87 Reviewed-on: https://go-review.googlesource.com/c/go/+/382116 Trust: Robert Griesemer <gri@golang.org> Ru...
[ { "path": "src/cmd/compile/internal/types2/builtins.go", "patch": "@@ -309,7 +309,7 @@ func (check *Checker) builtin(x *operand, call *syntax.CallExpr, id builtinId) (\n \t\t\t}\n \t\t\treturn nil\n \t\t}\n-\t\tresTyp := check.applyTypeFunc(f, x.typ)\n+\t\tresTyp := check.applyTypeFunc(f, x, id)\n \t\tif re...
2022-01-31T23:12:53
rust-lang/rust
a1e6ae9c3ead5ecc72667e02458734905ed930b5
b57bf6b64d60b4ac925c07b9a46694a8259ba01e
FIX: NegMultiply should preserve parenthesis when method is called changelog: [`neg_multiply`] does not remove parenthesis anymore if a method is being called on the affected expression
[ { "path": "clippy_lints/src/neg_multiply.rs", "patch": "@@ -1,13 +1,13 @@\n use clippy_utils::consts::{self, Constant};\n use clippy_utils::diagnostics::span_lint_and_sugg;\n-use clippy_utils::source::snippet_with_context;\n+use clippy_utils::get_parent_expr;\n+use clippy_utils::source::{snippet, snippet_wi...
2025-06-30T16:54:49
vercel/next.js
32a9c3553f735d68a4cf6fa099054392c086f51d
ccc64d96b6879c7cf4b146501869a1ca5844af13
Fix another case with app router revalidation (#51076) This ensures we don't attempt streaming a response during revalidation in deployed environments. x-ref: https://github.com/vercel/next.js/pull/51062 x-ref: [slack thread](https://vercel.slack.com/archives/C03S8ED1DKM/p1686216024812579)
[ { "path": "packages/next/src/server/base-server.ts", "patch": "@@ -1326,7 +1326,13 @@ export default abstract class Server<ServerOptions extends Options = Options> {\n hasStaticPaths = true\n }\n \n- if (hasFallback || staticPaths?.includes(resolvedUrlPathname)) {\n+ if (\n+ h...
2023-06-09T23:40:41
rust-lang/rust
4fd37c719824a49c639803c6d4be4ca401a43abd
bdaba05a953eb5abeba0011cdda2560d157aed2e
Disable f16 on Aarch64 without neon for llvm < 20.1.1 This check was added unconditionally in c51b229140 ("Disable f16 on Aarch64 without `neon`") and reverted in 4a8d35709e ("Revert "Disable `f16` on Aarch64 without `neon`"") since it did not fail in Rust's build. However, it is still possible to hit this crash if us...
[ { "path": "compiler/rustc_codegen_llvm/src/llvm_util.rs", "patch": "@@ -370,10 +370,18 @@ fn update_target_reliable_float_cfg(sess: &Session, cfg: &mut TargetConfig) {\n let target_env = sess.target.options.env.as_ref();\n let target_abi = sess.target.options.abi.as_ref();\n let target_pointer_w...
2025-06-28T01:24:01
nodejs/node
d1dd4e10db5cb163f265a1abd1f5952f60a81e09
bcf11356b3d8a39a0d731164bee9b2acd4c10bae
dgram: fix abort on bad args This commit fixes a C++ abort for connected dgram sockets by improving input validation in the JS layer. Fixes: https://github.com/nodejs/node/issues/28126 PR-URL: https://github.com/nodejs/node/pull/28135 Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Yongsheng Zhang <zyszys98...
[ { "path": "lib/dgram.js", "patch": "@@ -561,16 +561,19 @@ Socket.prototype.send = function(buffer,\n port = offset;\n address = length;\n }\n- } else if (typeof length === 'number') {\n- buffer = sliceBuffer(buffer, offset, length);\n- if (typeof port === 'function') {\n- callbac...
2019-06-08T12:48:05
electron/electron
247b3f36057ed3465bac646b607a5205ce94914f
576b54320a1baa202f8d0f448dd7e18ecd216144
Fix the background color in test app
[ { "path": "spec/static/index.html", "patch": "@@ -3,6 +3,11 @@\n <meta name=\"referrer\" content=\"always\">\n <link href=\"../node_modules/mocha/mocha.css\" rel=\"stylesheet\">\n <script src=\"jquery-2.0.3.min.js\"></script>\n+ <style type=\"text/css\">\n+ body {\n+ background-color: white;\...
2016-04-01T07:35:19
huggingface/transformers
629c0da46d10d6cc9101d5042c0cdf670d1299e2
75c135d76f6db226d83213c6bb658a474dddb07d
Fix loaded data order bug when resuming from epoch >= 1 (#40691) * fix resume from epoch >= 1 * add test checking order of sampled data points * add require_torch_non_multi_accelerator decorator to test method * move the epoch setting of epoch_dataloader before iterating over it * make fixup
[ { "path": "src/transformers/trainer.py", "patch": "@@ -2428,8 +2428,6 @@ def _inner_training_loop(\n \n for epoch in range(epochs_trained, num_train_epochs):\n epoch_dataloader = train_dataloader\n- if hasattr(epoch_dataloader, \"set_epoch\"):\n- epoch_dataloade...
2025-12-03T13:14:02
vercel/next.js
ccc64d96b6879c7cf4b146501869a1ca5844af13
9fad474018e9f7710548fa0c054fb7b31da0511f
[Docs] Remove html <b> from summaries (#51008) This PR removes manual HTML `<b>` tags in `<details><summary>...` titles. They are unnecessary because we add bold styling in CSS. Also did a tiny fix to some other unnecessary inline HTML.
[ { "path": "docs/02-app/01-building-your-application/04-styling/01-css-modules.mdx", "patch": "@@ -7,7 +7,7 @@ description: Style your Next.js Application with CSS Modules.\n \n <details open>\n <summary>\n- <b>Examples</b>\n+ Examples\n </summary>\n \n - [Basic CSS Example](https://github.com/verc...
2023-06-09T22:12:58
golang/go
eab9a77a60f5b6aaba978b61fbb260f2fbb307fb
d3f5cf9d285d39258b2e6f9002c44aaab3e77c42
go/types, types2: fix unification code for defined types Fixes #50929. Change-Id: I65b8eaf5e4b423839bc53c7b1db3679961498c8a Reviewed-on: https://go-review.googlesource.com/c/go/+/382076 Trust: Robert Griesemer <gri@golang.org> Reviewed-by: Robert Findley <rfindley@google.com>
[ { "path": "src/cmd/compile/internal/types2/testdata/fixedbugs/issue50929.go2", "patch": "@@ -0,0 +1,68 @@\n+// Copyright 2022 The Go Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style\n+// license that can be found in the LICENSE file.\n+\n+// This file is tested when runn...
2022-01-31T20:51:45
nodejs/node
7bd2a3fcb407970babc88650ff030526ccf79f9f
55de20999b8b60a7ef889ea0d9573e9f271e1d17
worker: use DataCloneError for unknown native objects This aligns the behaviour better with the web. PR-URL: https://github.com/nodejs/node/pull/28025 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Colin Ihrig ...
[ { "path": "doc/api/errors.md", "patch": "@@ -671,12 +671,6 @@ An operation outside the bounds of a `Buffer` was attempted.\n An attempt has been made to create a `Buffer` larger than the maximum allowed\n size.\n \n-<a id=\"ERR_CANNOT_TRANSFER_OBJECT\"></a>\n-### ERR_CANNOT_TRANSFER_OBJECT\n-\n-The value pa...
2019-06-02T14:46:13
huggingface/transformers
75c135d76f6db226d83213c6bb658a474dddb07d
232ecf2cd82c7d3a0bcb13e181d3a10f87eb9fa7
[XPU] Fix fp8 UT patch func (#42584) * [XPU] Fix fp8 UT patch * make style --------- Co-authored-by: Mohamed Mekkouri <93391238+MekkCyber@users.noreply.github.com>
[ { "path": "tests/quantization/finegrained_fp8/test_fp8.py", "patch": "@@ -46,6 +46,9 @@ def _patch_no_accelerator():\n stack.enter_context(patch(\"torch.cuda.is_available\", return_value=False))\n if hasattr(torch, \"xpu\"):\n stack.enter_context(patch(\"torch.xpu.is_available\",...
2025-12-03T12:22:54
electron/electron
576b54320a1baa202f8d0f448dd7e18ecd216144
6f7a98d7c90034872a28c4462e5df6bbad26483c
Fix compilation errors on Windows
[ { "path": "atom/browser/api/atom_api_app.cc", "patch": "@@ -242,7 +242,7 @@ void App::OnCreateWindow(const GURL& target_url,\n content::WebContents::FromRenderFrameHost(rfh);\n if (web_contents) {\n auto api_web_contents = WebContents::CreateFrom(isolate(), web_contents);\n- api_web_contents-...
2016-04-01T07:34:20
vercel/next.js
9fad474018e9f7710548fa0c054fb7b31da0511f
1a0b5d25c60f98d87b7703c7d03eba260a9dcbf0
Adds the "why" for `next/image` optimization (#51066) Give a touch more context as to why one would want to use image optimization. Fixes #30220
[ { "path": "docs/02-app/01-building-your-application/05-optimizing/01-images.mdx", "patch": "@@ -18,7 +18,9 @@ related:\n \n </details>\n \n-The Next.js Image component extends the HTML `<img>` element with:\n+According to [Web Almanac](https://almanac.httparchive.org), images account for a huge portion of t...
2023-06-09T22:02:35
golang/go
822dbcb7d4b7ab2410bdc19355a0bff99c3c467e
38cf79526a5859fb6363e607b2277ab442b28dcb
Revert "runtime: normalize sigprof traceback flags" This reverts commit CL 358900. Adding _TraceJumpStack to cgo traceback exposed a crashing condition. This CL was primarily a cleanup, so we revert it entirely for now and follow-up with the VDSO and libcall parts later. Fixes #50936. Change-Id: Ie45c9caaa8e2ef5bc9...
[ { "path": "src/runtime/proc.go", "patch": "@@ -4671,7 +4671,6 @@ func sigprof(pc, sp, lr uintptr, gp *g, mp *m) {\n \tgetg().m.mallocing++\n \n \tvar stk [maxCPUProfStack]uintptr\n-\tflags := uint(_TraceJumpStack)\n \tn := 0\n \tif mp.ncgo > 0 && mp.curg != nil && mp.curg.syscallpc != 0 && mp.curg.syscallsp...
2022-01-31T22:10:58