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
nodejs/node
c14c476614e3134867ddb997bdfe5a41ba668175
48cadcb7aa902ee1af01357a2cf340ae5bc60f87
buffer: fix 6-byte writeUIntBE() range check Fixes: https://github.com/nodejs/node/issues/30420 PR-URL: https://github.com/nodejs/node/pull/30459 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: David Carlier <devnexen@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Ruben Bridgewater...
[ { "path": "lib/internal/buffer.js", "patch": "@@ -738,7 +738,7 @@ function writeUInt8(value, offset = 0) {\n \n function writeUIntBE(value, offset, byteLength) {\n if (byteLength === 6)\n- return writeU_Int48BE(this, value, offset, 0, 0xffffffffffffff);\n+ return writeU_Int48BE(this, value, offset, ...
2019-11-13T03:41:12
golang/go
119da6358bf8cc01bb8bc7556d616bd0fe723ad4
f87e28d1b9ab33491b32255f333f1f1d83eeb6fc
debug/buildinfo: avoid nil defererence for invalid XCOFF I've made it return 0 following what the other DataStart implementation do when they do not found the section. Fixes #52718 Change-Id: I44292fed15bb21b9aba712ad15ed74e0ce231b5a GitHub-Last-Rev: 081a35ebec9b94c0fa6a1347806d84111e58210a GitHub-Pull-Request: gola...
[ { "path": "src/debug/buildinfo/buildinfo.go", "patch": "@@ -393,5 +393,8 @@ func (x *xcoffExe) ReadData(addr, size uint64) ([]byte, error) {\n }\n \n func (x *xcoffExe) DataStart() uint64 {\n-\treturn x.f.SectionByType(xcoff.STYP_DATA).VirtualAddress\n+\tif s := x.f.SectionByType(xcoff.STYP_DATA); s != nil ...
2022-05-05T23:31:20
electron/electron
600076b46dce53ce4f8672a47a40e7ca551904f0
d333cc5e38be33e0e08f7567e3a883e941bf3e63
Remove lint from fixtures
[ { "path": "spec/fixtures/module/export-function-with-properties.js", "patch": "@@ -1,4 +1,4 @@\n-function foo() {}\n+function foo () {}\n foo.bar = 'baz'\n \n module.exports = foo", "additions": 1, "deletions": 1, "language": "JavaScript" }, { "path": "spec/fixtures/module/function-with-...
2016-08-16T17:54:16
huggingface/transformers
50cc0b82962456914846bf413bde2225e4be0f94
acdb5e13192608a3a04753169a940e06ee5b69ae
Remove `cache_position` in more models (#44330) * a few more * more models * llava and likes * oupsi * more to fix others via copy/modular * fixes * fixes * review nits
[ { "path": "src/transformers/models/aimv2/modeling_aimv2.py", "patch": "@@ -540,15 +540,14 @@ def forward(\n hidden_states = self.embeddings(input_ids)\n batch_size, seq_len, _ = hidden_states.shape\n \n- cache_position = torch.arange(seq_len, dtype=torch.long, device=hidden_states.dev...
2026-03-11T14:47:47
vercel/next.js
8afd85d47fbb4e2759258683eedcf94a40f316ba
529a1be6c1309261d26d4a5a843439b97d7a234f
Add missing install env for release stats (#54581) This should fix the stalled action as it seems we aren't skipping this postinstall step when we should be which explains why it was passing for PR stats but not release stats x-ref: https://github.com/vercel/next.js/actions/runs/5980582756/job/16227150469
[ { "path": ".github/workflows/build_and_deploy.yml", "patch": "@@ -528,6 +528,7 @@ jobs:\n - uses: ./.github/actions/next-stats-action\n env:\n PR_STATS_COMMENT_TOKEN: ${{ secrets.PR_STATS_COMMENT_TOKEN }}\n+ NEXT_SKIP_NATIVE_POSTINSTALL: 1\n \n upload_turbopack_bytesize:\n...
2023-08-25T22:44:15
nodejs/node
48cadcb7aa902ee1af01357a2cf340ae5bc60f87
f4f8ec2b65ea1e520c93ad0cee3d7241d113934d
dns: use length for building TXT string Rely on the length reported by C-Ares rather than `\0`-termination for creating the JS string for a dns TXT response. Fixes: https://github.com/nodejs/node/issues/30688 PR-URL: https://github.com/nodejs/node/pull/30690 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: ...
[ { "path": "src/cares_wrap.cc", "patch": "@@ -904,7 +904,8 @@ int ParseTxtReply(Environment* env,\n uint32_t i = 0, j;\n uint32_t offset = ret->Length();\n for (j = 0; current != nullptr; current = current->next) {\n- Local<String> txt = OneByteString(env->isolate(), current->txt);\n+ Local<Strin...
2019-11-27T20:51:54
golang/go
7dd988456247c66f2ae62a82e8d8fa0d843710d1
f99511d59ba6c363d5dea1e015753a17c05c5c01
sync/atomic: don't run 64-bit uintptr tests on 32-bit systems The tests don't work on big-endian systems. This change handles more of the tests added in CL 381317 like the other existing tests. Fixes #52723 Change-Id: Ie9e048e75dbe0b5aca61b51cd0c50d7d878ff6d6 Reviewed-on: https://go-review.googlesource.com/c/go/+/40...
[ { "path": "src/sync/atomic/atomic_test.go", "patch": "@@ -1787,8 +1787,11 @@ func init() {\n \tif uintptr(v) == 0 {\n \t\t// 32-bit system; clear uintptr tests\n \t\tdelete(hammer64, \"SwapUintptr\")\n+\t\tdelete(hammer64, \"SwapUintptrMethod\")\n \t\tdelete(hammer64, \"AddUintptr\")\n+\t\tdelete(hammer64, ...
2022-05-06T00:04:52
huggingface/transformers
acdb5e13192608a3a04753169a940e06ee5b69ae
b49f0230de3608070c20964050499b7907a8d8bc
Fix CircleCI summary report not showing due to missing dependency (#44597) fix Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": ".circleci/create_circleci_config.py", "patch": "@@ -64,6 +64,7 @@ def to_dict(self):\n steps.extend(\n [\n \"checkout\",\n+ {\"run\": \"pip install requests || true\"},\n {\"run\": \"\"\"while [[ $(curl --locat...
2026-03-11T14:10:20
vercel/next.js
3b6839393166f3360a6f1c1cbc9b56685346ef5f
117f7c75f5fc32ff24793b7a0c075cd99078a8f5
fix(lint): correct globs (vercel/turbo#5811)
[ { "path": "packages/devlow-bench/package.json", "patch": "@@ -6,7 +6,7 @@\n \"main\": \"dist/index.js\",\n \"bin\": \"dist/cli.js\",\n \"scripts\": {\n- \"lint\": \"eslint src/**/*\",\n+ \"lint\": \"eslint src/\",\n \"prerelease\": \"pnpm run build:ts\",\n \"build:ts\": \"tsc\"\n },", ...
2023-08-25T21:30:32
huggingface/transformers
b49f0230de3608070c20964050499b7907a8d8bc
1723c81db08897056ead72574644978ea7ba8491
Fix typos in add_new_model_like docstrings (#43544) * Fix typos in add_new_model_like docstrings * fix: revert docstring change to satisfy tests Corrected grammatical error in note about Markdown syntax.
[ { "path": "src/transformers/cli/add_new_model_like.py", "patch": "@@ -312,7 +312,7 @@ def insert_model_in_doc_toc(\n old_lowercase_name (`str`):\n The old lowercase model name.\n new_lowercase_name (`str`):\n- The old lowercase model name.\n+ The new lowerca...
2026-03-11T13:49:54
nodejs/node
f4f8ec2b65ea1e520c93ad0cee3d7241d113934d
fa5937b1e75ab04c1a1aaf396b36fbfaf4fff155
test: port worker + buffer test to N-API This ports `test/addons/worker-buffer-callback` to N-API, with the small exception of using external `ArrayBuffer`s rather than external Node.js `Buffer`s. PR-URL: https://github.com/nodejs/node/pull/30551 Reviewed-By: Gabriel Schulhof <gabriel.schulhof@intel.com> Reviewed-By:...
[ { "path": "test/node-api/test_worker_buffer_callback/binding.gyp", "patch": "@@ -0,0 +1,8 @@\n+{\n+ 'targets': [\n+ {\n+ 'target_name': 'binding',\n+ 'sources': [ 'test_worker_buffer_callback.c' ]\n+ }\n+ ]\n+}", "additions": 8, "deletions": 0, "language": "Unknown" }, { ...
2019-11-19T20:39:07
golang/go
86536b934a6a5d074f1539b3103d7bc86a97e869
bb1f4416180511231de6d17a1f2f55c82aafc863
go/types,cmd/compile/internal/types2: fix TestStdlib CL 402556 moved a special-cased package and broke the longtests. Change-Id: I10b48e0912c1cee0eabc342ed1c1704ed79946bd Reviewed-on: https://go-review.googlesource.com/c/go/+/404474 Reviewed-by: Damien Neil <dneil@google.com> Run-TryBot: Filippo Valsorda <filippo@gol...
[ { "path": "src/cmd/compile/internal/types2/stdlib_test.go", "patch": "@@ -211,7 +211,7 @@ var excluded = map[string]bool{\n \t\"builtin\": true,\n \n \t// See #46027: some imports are missing for this submodule.\n-\t\"crypto/ed25519/internal/edwards25519/field/_asm\": true,\n+\t\"crypto/internal/edwards2551...
2022-05-05T22:38:02
vercel/next.js
eee137615e330af5fe2a50de636edbab554fdb74
b048d7eee2153a6f3e648ea05b099cb4dabbc1e8
Update release stats install/build executing (#54576) Aims to make debugging the release stats failure easier as currently we don't see the logs are the command is executing x-ref: https://github.com/vercel/next.js/actions/runs/5976635577/job/16221230094 x-ref: https://github.com/vercel/next.js/pull/54536
[ { "path": ".github/actions/next-stats-action/src/index.js", "patch": "@@ -7,14 +7,8 @@ const addComment = require('./add-comment')\n const actionInfo = require('./prepare/action-info')()\n const { mainRepoDir, diffRepoDir } = require('./constants')\n const loadStatsConfig = require('./prepare/load-stats-con...
2023-08-25T19:45:58
huggingface/transformers
1723c81db08897056ead72574644978ea7ba8491
cda09a00721968a9b2eb036574e6f6c1e8d04b7a
Fix UnboundLocalError for tp_plan_alt when tp_plan is empty (#44540) Co-authored-by: Ferdinand Mom <47445085+3outeille@users.noreply.github.com>
[ { "path": "src/transformers/core_model_loading.py", "patch": "@@ -1179,7 +1179,7 @@ def convert_and_load_state_dict_in_model(\n \n # 4. Handle TP sharding or device_map placement\n future_or_tensor = None\n- if device_mesh:\n+ if device_mesh and tp_plan:\n ...
2026-03-11T13:30:51
golang/go
bb1f4416180511231de6d17a1f2f55c82aafc863
7c74b0db8a27188d0ca3bb2f4bd46d00c0dc8eea
crypto/rand: properly handle large Read on windows Use the batched reader to chunk large Read calls on windows to a max of 1 << 31 - 1 bytes. This prevents an infinite loop when trying to read more than 1 << 32 -1 bytes, due to how RtlGenRandom works. This change moves the batched function from rand_unix.go to rand.g...
[ { "path": "src/crypto/rand/rand.go", "patch": "@@ -24,3 +24,21 @@ var Reader io.Reader\n func Read(b []byte) (n int, err error) {\n \treturn io.ReadFull(Reader, b)\n }\n+\n+// batched returns a function that calls f to populate a []byte by chunking it\n+// into subslices of, at most, readMax bytes.\n+func b...
2022-04-26T02:02:35
nodejs/node
1eb7329a3374191a4fc4db5cd4909c02b8c320fc
c8ca99f7ab2f01bc1eff729a543e39d05d2aa775
doc: fix worker.resourceLimits indentation PR-URL: https://github.com/nodejs/node/pull/30663 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: David Carlier <devnexen@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Luigi Pinca <luigip...
[ { "path": "doc/api/worker_threads.md", "patch": "@@ -157,7 +157,7 @@ console.log(receiveMessageOnPort(port2));\n When this function is used, no `'message'` event will be emitted and the\n `onmessage` listener will not be invoked.\n \n-### worker.resourceLimits\n+## worker.resourceLimits\n <!-- YAML\n added:...
2019-11-26T15:33:38
huggingface/transformers
cda09a00721968a9b2eb036574e6f6c1e8d04b7a
1c70fdbc9ae5e7607e4c54be64a726c412598e37
FIX Multiple PEFT errors after v5 transition (#44592) Multiple PEFT tests are failing due to recent changes in transformers. - hf_device_map attribute may not exist in some cases - respect inference_mode in load_adapter - new model loading requires changes for bnb (SCB attribute etc.) These tests have been failing f...
[ { "path": "src/transformers/integrations/peft.py", "patch": "@@ -566,19 +566,32 @@ def load_adapter(\n else:\n checkpoint_files, sharded_metadata = [], {}\n \n+ device_map = getattr(self, \"hf_device_map\", {\"\": self.device})\n load_config = replace(\n load_c...
2026-03-11T12:10:18
vercel/next.js
e4ff4da7c8ac7f25f08c7764fba0d1daf59c56cc
41be93223824d795521adde4d5cc0b60a667abe4
fix(DX): More precise error messages for export const config deprecation (#54492) Before: ``` Error: `export const config` in /vercel/path0/src/app/api/route.js is deprecated. Please change `runtime` property to segment export config. See https://nextjs.org/docs/app/api-reference/file-conventions/route-segment-config ...
[ { "path": "packages/next/src/build/analysis/get-page-static-info.ts", "patch": "@@ -527,7 +527,22 @@ export async function getPageStaticInfo(params: {\n \n if (pageType === 'app') {\n if (config) {\n- const message = `\\`export const config\\` in ${pageFilePath} is deprecated. Please change...
2023-08-25T16:25:15
nodejs/node
c8ca99f7ab2f01bc1eff729a543e39d05d2aa775
62333566a3f52c1a7d51dae89695b34a6303fc42
doc: fix worker.resourceLimits type PR-URL: https://github.com/nodejs/node/pull/30664 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
[ { "path": "doc/api/worker_threads.md", "patch": "@@ -162,7 +162,7 @@ When this function is used, no `'message'` event will be emitted and the\n added: v13.2.0\n -->\n \n-* {Object|undefined}\n+* {Object}\n * `maxYoungGenerationSizeMb` {number}\n * `maxOldGenerationSizeMb` {number}\n * `codeRangeSizeMb...
2019-11-26T15:40:06
huggingface/transformers
1c70fdbc9ae5e7607e4c54be64a726c412598e37
ff2ba441a8bc9f7636bf22def908b53bfa4e1db2
Fix missing BPE token conversion step in Chameleon (#44582) Convert image tokens to BPE tokens before embedding
[ { "path": "src/transformers/models/chameleon/modeling_chameleon.py", "patch": "@@ -899,8 +899,10 @@ def get_image_features(\n pixel_values (`torch.FloatTensor` of shape `(batch_size, num_channels, image_size, image_size)`):\n The tensors corresponding to the input images.\n \"\"\...
2026-03-11T11:17:18
vercel/next.js
41be93223824d795521adde4d5cc0b60a667abe4
dbfcfd75b7ec346831b6e6459fc6d9246273a109
docs: fix source files hash calculation (#54509) Hello! I recently tried to cache the `.next/cache` directory in a GitHub action following what was said in the documentation and realized that hashing the source files didn't work properly. This problem also occured in [next-cache](https://github.com/jongwooo/next-cac...
[ { "path": "docs/03-pages/01-building-your-application/07-deploying/04-ci-build-caching.mdx", "patch": "@@ -81,7 +81,7 @@ with:\n ~/.npm\n ${{ github.workspace }}/.next/cache\n # Generate a new cache whenever packages or source files change.\n- key: ${{ runner.os }}-nextjs-${{ hashFiles('**/packag...
2023-08-25T16:04:21
golang/go
a218b3520a500254cc82b996b79ad6f5a355021c
52e24b492dc9295f2833f32e4f3601e716e5c1ed
crypto/elliptic: panic when operating on invalid points Fixes #50975 For #52182 Change-Id: I4a98d965436c7034877b8c0146bb0bd5b802d6fa Reviewed-on: https://go-review.googlesource.com/c/go/+/382995 Reviewed-by: David Chase <drchase@google.com> Run-TryBot: Filippo Valsorda <filippo@golang.org> Reviewed-by: Roland Shoemak...
[ { "path": "src/crypto/elliptic/elliptic.go", "patch": "@@ -72,6 +72,8 @@ func GenerateKey(curve Curve, rand io.Reader) (priv []byte, x, y *big.Int, err e\n // SEC 1, Version 2.0, Section 2.3.3. If the point is not on the curve (or is\n // the conventional point at infinity), the behavior is undefined.\n fun...
2022-03-30T20:10:00
electron/electron
8c0a551d2501ff2c3b67f4d4c1649801e7ff1e0e
ee44ab7ecdeb6148cf3c95c2dce1f4564cbef9ad
fix linting errors in docs
[ { "path": "docs/api/browser-window.md", "patch": "@@ -985,7 +985,7 @@ The `flags` is an array that can include following `String`s:\n \n #### `win.setThumbnailClip(region)` _Windows_\n \n-* `region` - Object\n+* `region` Object - Region of the window\n * `x` Integer - x-position of region\n * `y` Intege...
2016-08-22T18:47:55
nodejs/node
be3091136161d8c3793dfe53f6e82f96e2b6a177
f0181d9980a0268eb0183bdee28abcc79b2d740c
util: fix .format() not always calling toString when it should be This makes sure that `util.format('%s', object)` will always call a user defined `toString` function. It was formerly not the case when the object had the function declared on the super class. At the same time this also makes sure that getters won't be...
[ { "path": "lib/internal/util/inspect.js", "patch": "@@ -1572,6 +1572,31 @@ function reduceToSingleString(\n return `${braces[0]}${ln}${join(output, `,\\n${indentation} `)} ${braces[1]}`;\n }\n \n+function hasBuiltInToString(value) {\n+ // Count objects that have no `toString` function as built-in.\n+ i...
2019-11-09T13:14:24
huggingface/transformers
ff2ba441a8bc9f7636bf22def908b53bfa4e1db2
0e7cb4e3ea3daaeef626148522f80b751e9559bd
[Performance] FP8 Grouped and Batched Matmuls (#44231) * simplify * finegrained fp8 moe forwards * optimized fp8 fused, batched and grouped paths * fix * wrap triton * fix calls * fix * remove fused quant kernel (litlle gain and unnecessary) and use torch library wrappers for better torch compileability * use ...
[ { "path": "src/transformers/integrations/finegrained_fp8.py", "patch": "@@ -11,51 +11,85 @@\n # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n # See the License for the specific language governing permissions and\n # limitations under the License.\n+import torch\n+import torch.nn...
2026-03-11T08:51:00
rust-lang/rust
196833ccf2742f0975cd084aac4f354c025638d4
0901d513d89b38175e64c3ebee13d8d44ae6e943
Fix ide-assist: Deref transtive
[ { "path": "src/tools/rust-analyzer/crates/ide-assists/src/handlers/generate_deref.rs", "patch": "@@ -10,7 +10,7 @@ use syntax::{\n use crate::{\n AssistId,\n assist_context::{AssistContext, Assists, SourceChangeBuilder},\n- utils::generate_trait_impl_text,\n+ utils::generate_trait_impl_text_in...
2025-07-19T05:38:01
vercel/next.js
08d3258762963d249e43dbde7e68084bac72b8e4
6a70ebf2aa32721383a0c5b9332e8bd2b7ef59ca
update turbopack (#54558) * https://github.com/vercel/turbo/pull/5723 <!-- Alex Kirszenberg - Misc comments in turbo_tasks --> * https://github.com/vercel/turbo/pull/5714 <!-- OJ Kwon - test(ci): update datadog-ci --> * https://github.com/vercel/turbo/pull/5705 <!-- Justin Ridgewell - Transformation code necessar...
[ { "path": "Cargo.lock", "patch": "@@ -412,7 +412,7 @@ dependencies = [\n [[package]]\n name = \"auto-hash-map\"\n version = \"0.1.0\"\n-source = \"git+https://github.com/vercel/turbo.git?tag=turbopack-230816.1#ca4834e0a03b9b9cc1cb56ea7a797d9c3d1e53c5\"\n+source = \"git+https://github.com/vercel/turbo.git?ta...
2023-08-25T14:22:35
golang/go
6269dc29a04c4f430a851551d85aa956fb10cc94
fa603aaa4e7ac460aee2e2de509842b89152a418
crypto/aes: move ppc64le to cipher_asm.go Move the aesCipherGCM struct definition into cipher_asm.go, it is needed to compile this file, but isn't used on PPC64. Also, generate a KeySizeError if the key length is not supported as was done in the ppc64le implementation, and is done in the generic code. Change-Id: I02...
[ { "path": "src/crypto/aes/aes_gcm.go", "patch": "@@ -39,13 +39,6 @@ const (\n \n var errOpen = errors.New(\"cipher: message authentication failed\")\n \n-// aesCipherGCM implements crypto/cipher.gcmAble so that crypto/cipher.NewGCM\n-// will use the optimised implementation in this file when possible. Insta...
2022-03-24T17:47:23
huggingface/transformers
0e7cb4e3ea3daaeef626148522f80b751e9559bd
8464284d2f65b60b2c80cf41fd9b57891ebe25ef
Make paligemma embed tokens standard (#44432) * make pali standard * init buffers * fix repo
[ { "path": "src/transformers/models/cohere2/modeling_cohere2.py", "patch": "@@ -363,7 +363,6 @@ def __init__(self, config: Cohere2Config):\n super().__init__(config)\n self.padding_idx = config.pad_token_id\n self.vocab_size = config.vocab_size\n-\n self.embed_tokens = nn.Embe...
2026-03-11T08:26:30
nodejs/node
487177954201ee098ecbf5027473b238187cee22
a7d031bf5ac9825e5cd645a0a91c4583b7c6f6cd
http: set socket.server unconditionally This is useful for situations in which the socket was not created for HTTP, e.g. when using arbitrary `Duplex` streams. (The added test fails because previously, `socket.server.emit()` would not work for emitting the `clientError` event, as `socket.server` was `undefined`.) PR...
[ { "path": "lib/_http_server.js", "patch": "@@ -363,8 +363,7 @@ function connectionListenerInternal(server, socket) {\n \n // Ensure that the server property of the socket is correctly set.\n // See https://github.com/nodejs/node/issues/13435\n- if (socket.server === null)\n- socket.server = server;\...
2019-11-20T23:14:14
vercel/next.js
b82e2cde89ab0ff23d601de5123e4ea8773dcc6c
483ebc251609f92e031bf94263798ca532c0308a
Fix missing new line for certain logs (#54442) When logging are sending from worker they're missing new line, that could be directly added after to spinner #### After ![image](https://github.com/vercel/next.js/assets/4800338/c4494ff8-0335-49e3-8cce-2f9dc1fe7975) #### Before ![image](https://github.com/ver...
[ { "path": "packages/next/src/build/output/log.ts", "patch": "@@ -8,40 +8,66 @@ export const prefixes = {\n info: '- ' + chalk.cyan('info'),\n event: '- ' + chalk.magenta('event'),\n trace: '- ' + chalk.magenta('trace'),\n+} as const\n+\n+const LOGGING_METHOD = {\n+ log: 'log',\n+ warn: 'warn',\n+ e...
2023-08-25T13:27:27
golang/go
72d1cb092e0008419676be353703298cadccf3a2
983906fa6db6df56e3912ba5c6be8fada00b232b
cmd/compile/internal/pkginit: fix typecheck.DeclFunc call CL 403935 changed the API for typecheck.DeclFunc, while CL 403851 was submitted in the mean time and added another call to it. Change-Id: I0de59f34197bf241c1dd42cffbab7a91f9eb825d Reviewed-on: https://go-review.googlesource.com/c/go/+/404434 Run-TryBot: Matthe...
[ { "path": "src/cmd/compile/internal/pkginit/init.go", "patch": "@@ -107,7 +107,7 @@ func Task() *ir.Name {\n \t\t\tbase.Pos = base.AutogeneratedPos\n \t\t\ttypecheck.DeclContext = ir.PEXTERN\n \t\t\tname := noder.Renameinit()\n-\t\t\tfnInit := typecheck.DeclFunc(name, ir.NewFuncType(base.Pos, nil, nil, nil)...
2022-05-05T18:54:11
huggingface/transformers
8464284d2f65b60b2c80cf41fd9b57891ebe25ef
42ff4f324f02448dcf03ea7d619f682b4e62c010
chore(typing): Add type checking to `src/transformers/quantizers` (#44412) * chore(typing): add `ty` type checking for src/transformers/generation Add type declarations for mixin host-class attributes on GenerationMixin, class-level annotations for dynamically-set attributes on GenerationConfig, and fix minor typing ...
[ { "path": "Makefile", "patch": "@@ -7,7 +7,7 @@ check_dirs := examples tests src utils scripts benchmark benchmark_v2\n exclude_folders := \"\"\n \n # Directories to type-check with ty\n-ty_check_dirs := src/transformers/utils src/transformers/generation\n+ty_check_dirs := src/transformers/_typing.py src/t...
2026-03-11T08:18:57
electron/electron
1fe3b70a23e33684fda12455f53d2c42c6935b50
c1989fb794fa9f4557b47928766b15ce2e66ec2d
fix windows command prompt error path to electron needs to be wrapped in quotes or else windows command prompt will error out
[ { "path": "docs/tutorial/quick-start.md", "patch": "@@ -170,7 +170,7 @@ electron .\n If you've installed it locally, then run:\n \n ```bash\n-./node_modules/.bin/electron .\n+\"./node_modules/.bin/electron\" .\n ```\n \n ### Manually Downloaded Electron Binary", "additions": 1, "deletions": 1, "...
2016-08-22T07:29:33
nodejs/node
b7b39e0b77d4ad16583ecd56ef5c35b081c9cde4
58850f6bb4f57d6970d04b23bd2c75a37937564d
deps: V8: backport 93f189f19a03 Original commit message: [ic] Fix non-GlobalIC store to interceptor on the global object We possibly need to load the global object from the global proxy as the holder of the named interceptor. Change-Id: I0f9f2e448630608ae853588f6751b55574a9efd9 Reviewed-on: http...
[ { "path": "common.gypi", "patch": "@@ -39,7 +39,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.21',\n+ 'v8_embedder_string': '-node.22',\n \n ##### V8 defaults for Node.js #####\n...
2019-11-27T14:35:23
huggingface/transformers
42ff4f324f02448dcf03ea7d619f682b4e62c010
4b442cd65a3f725ac09030eadcbf166e4ae24c00
Fix: AQLM quantizer to match updated replace_with_aqlm_linear signature (#44577) fix AQML argument
[ { "path": "src/transformers/quantizers/quantizer_aqlm.py", "patch": "@@ -55,7 +55,7 @@ def _process_model_before_weight_loading(\n replace_with_aqlm_linear(\n model,\n quantization_config=self.quantization_config,\n- linear_weights_not_to_quantize=self.quantization...
2026-03-10T17:36:04
golang/go
7b1f8b62be5f4901404071ddc7160217a60c9810
fdb640b7a1324c2a4fc579389c4bc287ea90f1db
runtime: prefer curg for execution trace profile The CPU profiler adds goroutine labels to its samples based on getg().m.curg. That allows the profile to correctly attribute work that the runtime does on behalf of that goroutine on the M's g0 stack via systemstack calls, such as using runtime.Callers to record the cal...
[ { "path": "src/runtime/proc.go", "patch": "@@ -4596,11 +4596,15 @@ func sigprof(pc, sp, lr uintptr, gp *g, mp *m) {\n \t\t}\n \t\tcpuprof.add(tagPtr, stk[:n])\n \n+\t\tgprof := gp\n \t\tvar pp *p\n \t\tif gp != nil && gp.m != nil {\n+\t\t\tif gp.m.curg != nil {\n+\t\t\t\tgprof = gp.m.curg\n+\t\t\t}\n \t\t\t...
2022-05-04T14:44:50
rust-lang/rust
2a037503efef730fd8c62e5145345fcf816b2243
8f08b3a32478b8d0507732800ecb548a76e0fd0c
debug impls for drop elaborators
[ { "path": "compiler/rustc_mir_transform/src/elaborate_drops.rs", "patch": "@@ -253,8 +253,8 @@ struct ElaborateDropsCtxt<'a, 'tcx> {\n }\n \n impl fmt::Debug for ElaborateDropsCtxt<'_, '_> {\n- fn fmt(&self, _f: &mut fmt::Formatter<'_>) -> fmt::Result {\n- Ok(())\n+ fn fmt(&self, f: &mut fmt::F...
2025-07-18T21:00:00
nodejs/node
58850f6bb4f57d6970d04b23bd2c75a37937564d
29b5432c645ef250030dde5a4f042ae69fcbbe89
test: revert 6d022c13 Revert "test: skip test-domain-error-types in debug mode temporariliy" This reverts commit 6d022c13c52fc0134ed6c79be520be8c84c58cf8. PR-URL: https://github.com/nodejs/node/pull/30708 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Colin ...
[ { "path": "test/parallel/parallel.status", "patch": "@@ -33,7 +33,3 @@ test-async-hooks-http-parser-destroy: PASS,FLAKY\n [$system==freebsd]\n \n [$system==aix]\n-\n-[$mode==debug]\n-# https://github.com/nodejs/node/issues/30498\n-test-domain-error-types: PASS,FLAKY", "additions": 0, "deletions": 4,...
2019-11-28T21:13:46
huggingface/transformers
4b442cd65a3f725ac09030eadcbf166e4ae24c00
519c26f9c41bd77bdd20fc0420dd766a2482193e
[device_map] Fix device_map computation by correctly adjusting memory available (#44565) * fix * safe fix * fix * typo * better
[ { "path": "src/transformers/integrations/accelerate.py", "patch": "@@ -43,7 +43,7 @@\n \n if is_accelerate_available():\n from accelerate import dispatch_model\n- from accelerate.utils import get_max_memory\n+ from accelerate.utils import get_max_memory as accelerate_max_memory\n from accelera...
2026-03-10T17:15:58
rust-lang/rust
c79f62d1ea5d210de9bc98ddc7e0588533a2b311
ca4a712b59b9ed216e8bb6e24140b08d7020c68c
clippy fix: bound in one place
[ { "path": "library/core/src/cmp.rs", "patch": "@@ -1481,13 +1481,14 @@ pub trait PartialOrd<Rhs: PointeeSized = Self>: PartialEq<Rhs> + PointeeSized {\n }\n }\n \n-fn default_chaining_impl<T: PointeeSized, U: PointeeSized>(\n+fn default_chaining_impl<T, U>(\n lhs: &T,\n rhs: &U,\n p: impl Fn...
2025-07-02T13:27:29
golang/go
fdb640b7a1324c2a4fc579389c4bc287ea90f1db
485a572243568530721009829393ba2c0deb7bd0
crypto/x509: disable signing with MD5WithRSA MD5 is hopelessly broken, we already don't allow verification of MD5 signatures, we shouldn't support generating them. Fixes #42125 Change-Id: Ib25d750e6fc72a03198a505ac71e6d2c99eff2ed Reviewed-on: https://go-review.googlesource.com/c/go/+/285872 Run-TryBot: Roland Shoema...
[ { "path": "src/crypto/x509/x509.go", "patch": "@@ -1397,6 +1397,10 @@ func signingParamsForPublicKey(pub any, requestedSigAlgo SignatureAlgorithm) (ha\n \t\t\t\terr = errors.New(\"x509: cannot sign with hash function requested\")\n \t\t\t\treturn\n \t\t\t}\n+\t\t\tif hashFunc == crypto.MD5 {\n+\t\t\t\terr =...
2021-01-22T18:16:24
huggingface/transformers
519c26f9c41bd77bdd20fc0420dd766a2482193e
1bd97f246318456c1b87cf8ef8dc043ec1a53fff
Fix PR comment CI for quantization job (#44579) try Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": ".github/workflows/self-scheduled.yml", "patch": "@@ -449,7 +449,7 @@ jobs:\n working-directory: /transformers\n env:\n commit_sha: ${{ inputs.commit_sha || github.sha }}\n- run: git fetch && git checkout \"$commit_sha\"\n+ run: git fetch origin \"$commit_sh...
2026-03-10T16:58:42
nodejs/node
29b5432c645ef250030dde5a4f042ae69fcbbe89
99d1f6fea49e92bc3b3993d1f74ca9a8772c5d02
deps: V8: cherry-pick ca5b0ec Original commit message: [heap] Ensure SyntheticModule is initialized before next allocation Ensure that all fields of `SyntheticModule` are set before creating the exports hash table for it, because the latter may trigger garbage collection, leading to crashes. This has been causing f...
[ { "path": "common.gypi", "patch": "@@ -39,7 +39,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.20',\n+ 'v8_embedder_string': '-node.21',\n \n ##### V8 defaults for Node.js #####\n...
2019-11-28T21:11:40
vercel/next.js
9a2a3496393002cd683b26c7ed1ae0b73a27f9d6
4d6febf426340db44a80552766aa1944fd3c411e
chore(eslint): bump ESLint plugins (#54490) Fixes #54480
[ { "path": "packages/eslint-config-next/package.json", "patch": "@@ -1,7 +1,7 @@\n {\n \"name\": \"eslint-config-next\",\n \"version\": \"13.4.20-canary.6\",\n- \"description\": \"ESLint configuration used by NextJS.\",\n+ \"description\": \"ESLint configuration used by Next.js.\",\n \"main\": \"inde...
2023-08-25T10:58:06
golang/go
1926fa5f84b87a7a6cb9f153337424baf367937a
0e90ba933565ab6e719d6981d8d6195e06625f47
runtime: use profile data before advancing index Fixes #52704 Change-Id: Ia2104c62d7ea9d67469144948b2ceb5d9f1313b3 Reviewed-on: https://go-review.googlesource.com/c/go/+/404054 Run-TryBot: Rhys Hiltner <rhys@justin.tv> TryBot-Result: Gopher Robot <gobot@golang.org> Reviewed-by: Michael Knyszek <mknyszek@google.com> R...
[ { "path": "src/runtime/trace.go", "patch": "@@ -745,14 +745,15 @@ func traceReadCPU() {\n \t\t\t}\n \t\t\tgoid := data[3]\n \t\t\tstk := data[4:data[0]]\n+\t\t\tempty := len(stk) == 1 && data[2] == 0 && data[3] == 0\n \t\t\tdata = data[data[0]:]\n \t\t\t// No support here for reporting goroutine tags at the...
2022-05-04T14:26:21
huggingface/transformers
1bd97f246318456c1b87cf8ef8dc043ec1a53fff
3b6c11d47befa9b66755142dbf301f36a096db11
Fix error message label and docstring default in load_sharded_checkpoint (#44523) fix: correct error message label and docstring default in load_sharded_checkpoint Fix two bugs in load_sharded_checkpoint: 1. Copy-paste error: error message for unexpected_keys incorrectly said "Missing key(s)" instead of "Unexpecte...
[ { "path": "src/transformers/trainer_utils.py", "patch": "@@ -1064,7 +1064,7 @@ def load_sharded_checkpoint(model, folder, strict=True, prefer_safe=True):\n folder (`str` or `os.PathLike`): A path to a folder containing the sharded checkpoint.\n strict (`bool`, *optional*, defaults to `True`)...
2026-03-10T15:33:59
electron/electron
77dc700c5117df5c541ff88c9d2cd6109900a465
488fe53276326ff4f8ed4fb56670d91febd0c365
Update devtools-extension.md Cerebral Debugger is now supported under Electron
[ { "path": "docs/tutorial/devtools-extension.md", "patch": "@@ -50,6 +50,7 @@ Following Devtools Extensions are tested and guaranteed to work in Electron:\n * [jQuery Debugger](https://chrome.google.com/webstore/detail/jquery-debugger/dbhhnnnpaeobfddmlalhnehgclcmjimi)\n * [AngularJS Batarang](https://chrome....
2016-08-21T21:36:26
nodejs/node
3e79c004fdb93d01618fd90f0df934ac12c62353
7686b5a34f9146bb44919d1cd73214c2d86de44c
inspector: properly shut down uv_async_t Closing in the Agent destructor is too late, because that happens when the Environment is destroyed, not when libuv handles are closed. This fixes a situation in which the same libuv loop is re-used for multiple Environment instances sequentially, e.g. in our cctest. PR-URL: ...
[ { "path": "src/inspector_agent.cc", "patch": "@@ -60,6 +60,8 @@ static uv_async_t start_io_thread_async;\n // This is just an additional check to make sure start_io_thread_async\n // is not accidentally re-used or used when uninitialized.\n static std::atomic_bool start_io_thread_async_initialized { false }...
2019-11-19T14:40:41
vercel/next.js
4d6febf426340db44a80552766aa1944fd3c411e
dbac7552ebb3407feec3d8169ec9b0449fed84a2
Turbopack: add edge support for pages apis (#54449) ### What? * add support for middleware manifest and edge adapter for pages API routes * improve the error reporting a tiny bit ### Why? ### How? Closes WEB-1428
[ { "path": "packages/next-swc/crates/next-api/src/pages.rs", "patch": "@@ -9,7 +9,11 @@ use next_core::{\n get_client_runtime_entries, ClientContextType, RuntimeEntries,\n },\n next_dynamic::NextDynamicTransition,\n- next_manifests::{BuildManifest, PagesManifest},\n+ next_edge::route_re...
2023-08-25T07:11:31
rust-lang/rust
20a7f722d824ebc4e733ec848d797088363624e9
4d79328091167135e890b77f0fbf5b8b9479c80b
fix `ui/rustc_public-ir-print` outputs
[ { "path": "tests/ui/rustc_public-ir-print/async-closure.stdout", "patch": "@@ -1,4 +1,4 @@\n-// WARNING: This is highly experimental output it's intended for stable-mir developers only.\n+// WARNING: This is highly experimental output it's intended for rustc_public developers only.\n // If you find a bug or...
2025-07-17T15:49:51
huggingface/transformers
1cbb9c2ece62a73007fa5c36a49c40c09c7bfda6
652f2f7a50096f1fc65356b4e7bb1b50fe1888fc
[`fix`] Prevent crash with Apertus without xielu installed (#44567) Prevent crash with Apertus without xielu installed
[ { "path": "src/transformers/activations.py", "patch": "@@ -267,9 +267,8 @@ def __init__(\n logger.warning_once(msg)\n except Exception as err:\n logger.warning_once(\n- \"CUDA-fused xIELU not available (%s) – falling back to a Python version.\\n\"\n- ...
2026-03-10T13:23:33
golang/go
0e90ba933565ab6e719d6981d8d6195e06625f47
d544591d72ade40d34d7a8ee70e7239ae63b4116
cmd/compile: fix constructing expr side-effects when comparing 0-size types In walkCompare, any ir.OCONVNOP was removed from both operands. So when constructing assignments for them to preserve any side-effects, using temporary variables can cause type mismatched with original type. Instead, using blank assignments w...
[ { "path": "src/cmd/compile/internal/walk/compare.go", "patch": "@@ -268,9 +268,8 @@ func walkCompare(n *ir.BinaryExpr, init *ir.Nodes) ir.Node {\n \t\texpr = ir.NewBool(n.Op() == ir.OEQ)\n \t\t// We still need to use cmpl and cmpr, in case they contain\n \t\t// an expression which might panic. See issue 238...
2022-05-04T18:00:38
electron/electron
c55b1e87edc3b4ce855d8969347ce0e10bab033f
488fe53276326ff4f8ed4fb56670d91febd0c365
Fix spelling mistake from registred to registered
[ { "path": "atom/browser/api/atom_api_protocol.cc", "patch": "@@ -157,8 +157,8 @@ void Protocol::OnIOCompleted(\n std::string Protocol::ErrorCodeToString(ProtocolError error) {\n switch (error) {\n case PROTOCOL_FAIL: return \"Failed to manipulate protocol factory\";\n- case PROTOCOL_REGISTERED: ret...
2016-08-20T13:25:13
nodejs/node
f5ef7cd22231987a73af9f02cc5f6c80b6dbbd9b
4d73fd39489c6c2742cc16107f00dc81c7239706
module: fix specifier resolution algorithm Fixes: https://github.com/nodejs/node/issues/30520 PR-URL: https://github.com/nodejs/node/pull/30574 Reviewed-By: Guy Bedford <guybedford@gmail.com> Reviewed-By: Myles Borins <myles.borins@gmail.com>
[ { "path": "lib/internal/modules/run_main.js", "patch": "@@ -24,6 +24,10 @@ function shouldUseESMLoader(mainPath) {\n const userLoader = getOptionValue('--experimental-loader');\n if (userLoader)\n return true;\n+ const esModuleSpecifierResolution =\n+ getOptionValue('--es-module-specifier-resolu...
2019-11-22T06:29:30
vercel/next.js
dbac7552ebb3407feec3d8169ec9b0449fed84a2
36b45c6f507b5aabbb39df725efc7e88fae8ff61
fix resolve routes behavior when matching a dynamic segment (#54539) When `fallback: false` is set and you visit a dynamic segment (e.g. `/[slug]`), the router server was getting stuck in a `x-no-fallback` loop and eventually would fail because it was matching the output at `check_fs` before attempting to resolve dyna...
[ { "path": "packages/next/src/server/lib/route-resolver.ts", "patch": "@@ -230,12 +230,12 @@ export async function makeResolver(\n req: IncomingMessage,\n res: ServerResponse\n ): Promise<RouteResult | void> {\n- const routeResult = await resolveRoutes(\n+ const routeResult = await resolveRou...
2023-08-25T02:14:09
huggingface/transformers
c7648c8fd5dd6c3d5eed114b3763dadf4a3ea051
b7e4da0443af063d531c8c272b1ba0bdfcdf0702
Fix failing `MusicgenStereo` integration tests (#44527) * Fix failing PerceptionLMForConditionalGenerationIntegrationTest * Fix failing MusicgenStereoIntegrationTests * make style * Revert perception lm changes
[ { "path": "tests/models/musicgen/test_modeling_musicgen.py", "patch": "@@ -1291,7 +1291,9 @@ def test_generate_text_audio_prompt(self):\n class MusicgenStereoIntegrationTests(unittest.TestCase):\n @cached_property\n def model(self):\n- return MusicgenForConditionalGeneration.from_pretrained(\...
2026-03-10T12:20:20
rust-lang/rust
a1deaa7097aa92bfb184824faf30791c03d190f8
9a37aab5589ecfe4101b727b2a91c3846a0068cd
`SmirError` to `Error`
[ { "path": "compiler/rustc_public/src/alloc.rs", "patch": "@@ -7,7 +7,7 @@\n use rustc_abi::Align;\n use rustc_middle::mir::ConstValue;\n use rustc_middle::mir::interpret::AllocRange;\n-use rustc_public_bridge::bridge::SmirError;\n+use rustc_public_bridge::bridge::Error as _;\n use rustc_public_bridge::conte...
2025-07-15T15:58:40
golang/go
d544591d72ade40d34d7a8ee70e7239ae63b4116
0bd7408f901f33c6f0a5a542f8de6bf17c901e79
cmd/dist: add asan tests for global objects in testsanitizers package Add tests to test that -asan in Go can detect the error memory access to the global objects. Updates #44853. Change-Id: I612a048460b497d18389160b66e6f818342d3941 Reviewed-on: https://go-review.googlesource.com/c/go/+/321716 Run-TryBot: Fannie Zhan...
[ { "path": "misc/cgo/testsanitizers/asan_test.go", "patch": "@@ -52,6 +52,11 @@ func TestASAN(t *testing.T) {\n \t\t{src: \"asan_unsafe_fail1.go\", memoryAccessError: \"use-after-poison\", errorLocation: \"asan_unsafe_fail1.go:25\"},\n \t\t{src: \"asan_unsafe_fail2.go\", memoryAccessError: \"use-after-poison...
2021-05-11T03:44:24
electron/electron
488fe53276326ff4f8ed4fb56670d91febd0c365
293ba4230de449bc88ea6935d2e34d1c148cc2c6
fixed grammar for 32bit
[ { "path": "docs/development/build-instructions-osx.md", "patch": "@@ -49,7 +49,7 @@ After building is done, you can find `Electron.app` under `out/D`.\n ## 32bit Support\n \n Electron can only be built for a 64bit target on macOS and there is no plan to\n-support 32bit macOS in future.\n+support 32bit macOS...
2016-08-18T15:19:06
huggingface/transformers
b7e4da0443af063d531c8c272b1ba0bdfcdf0702
5a098a1e01034095f037c8a37f7fe87c31118e26
Fix zamba2 rotary embedding call when use_mem_rope is False (#44551) * only call rotary_emb when config.use_mem_rope is True * add fix in modular
[ { "path": "src/transformers/models/zamba2/modeling_zamba2.py", "patch": "@@ -1339,7 +1339,12 @@ def forward(\n past_key_values=past_key_values,\n position_ids=position_ids,\n )\n- position_embeddings = self.rotary_emb(hidden_states, position_ids=position_ids)\n+\n+ ...
2026-03-10T11:43:36
nodejs/node
4d73fd39489c6c2742cc16107f00dc81c7239706
4c9db6c74150d3f5487798ca654496fdaf343422
src: run native immediates during Environment cleanup This can be necessary, because some parts of the Node.js code base perform cleanup operations in the Immediate callbacks, e.g. HTTP/2. This resolves flakiness in an HTTP/2 test that failed when a `SetImmediate()` callback was not run or destroyed before the `Envir...
[ { "path": "src/env.cc", "patch": "@@ -530,6 +530,8 @@ void Environment::CleanupHandles() {\n Isolate::DisallowJavascriptExecutionScope disallow_js(isolate(),\n Isolate::DisallowJavascriptExecutionScope::THROW_ON_FAILURE);\n \n+ RunAndClearNativeImmediates(true /* skip SetUnrefImmediate()s */);\n+\n...
2019-11-26T16:09:27
rust-lang/rust
6b87978169d260ac4512e66c81e9298055b902c2
7dacaef5d3c252ea47287ce34234a89e3c5ff57e
Change the `memcmp` and `bcmp` return type to `c_int` Fix the return type of `memcmp` and `bcmp` builtin functions on targets with a `c_int` other than `i32`. Linked issue: https://github.com/rust-lang/rust/issues/144076
[ { "path": "library/compiler-builtins/compiler-builtins/src/mem/impls.rs", "patch": "@@ -15,6 +15,7 @@\n // this use. Of course this is not a guarantee that such use will work, it just means that this\n // crate doing wrapping pointer arithmetic with a method that must not wrap won't be the problem if\n // s...
2025-07-18T18:19:13
vercel/next.js
8487278c528555fa7e75914c008b6611e1f5764f
4e052deff2fec4394995629b53f2e60e5573c43b
Fix failing TS test from new release (#54523) Fixes: ![CleanShot 2023-08-24 at 11 20 41@2x](https://github.com/vercel/next.js/assets/22380829/00d7e646-f41f-43ed-a18a-4532d0b7f5dc) x-ref: https://github.com/vercel/next.js/actions/runs/5967378932/job/16188975903?pr=54515#step:28:256
[ { "path": "test/production/supports-module-resolution-nodenext/tsconfig.json", "patch": "@@ -1,7 +1,7 @@\n {\n \"compilerOptions\": {\n \"esModuleInterop\": true,\n- \"module\": \"esnext\",\n+ \"module\": \"NodeNext\",\n \"jsx\": \"preserve\",\n \"target\": \"es5\",\n \"lib\": [\"dom...
2023-08-24T18:36:38
golang/go
0bd7408f901f33c6f0a5a542f8de6bf17c901e79
ed462a66a5e4b57402b509aa27c90342075231f0
cmd/compile: fix static init of literal contains dynamic exprs Fixes #52673 Change-Id: Ib2faa5a669c05778fc6beb38c3e63d558af9b2be Reviewed-on: https://go-review.googlesource.com/c/go/+/403995 TryBot-Result: Gopher Robot <gobot@golang.org> Reviewed-by: Matthew Dempsky <mdempsky@google.com> Reviewed-by: David Chase <drc...
[ { "path": "src/cmd/compile/internal/walk/complit.go", "patch": "@@ -235,7 +235,16 @@ func fixedlit(ctxt initContext, kind initKind, n *ir.CompLitExpr, var_ ir.Node,\n \t\tcase ir.OSLICELIT:\n \t\t\tvalue := value.(*ir.CompLitExpr)\n \t\t\tif (kind == initKindStatic && ctxt == inNonInitFunction) || (kind == ...
2022-05-04T11:39:26
huggingface/transformers
5a098a1e01034095f037c8a37f7fe87c31118e26
0e3be3878de5bd23362d37f303be5039437371cb
[Bugfix] fix video inference of qwen3vl and qwen3.5 series (#44474) * fix video inference of qwen3vl and qwen3.5 series * fix ci * get_rope_index inhert from qwen2vl * add test for qwen3vl,qwen3.5 * fix ci * use assertListEqual instead * update CI result
[ { "path": "src/transformers/models/qwen3_5/modeling_qwen3_5.py", "patch": "@@ -1472,24 +1472,8 @@ def get_rope_index(\n **kwargs,\n ) -> tuple[torch.Tensor, torch.Tensor]:\n \"\"\"\n- Calculate the 3D rope index based on image and video's sizes. The utility expects a `vision + tex...
2026-03-10T09:42:50
electron/electron
ab7899d0fb4fd6118fd58a56904b22ed278c3163
73246112d2d9f3c0c181f449dbc9618e23832a5b
Fix linting issues
[ { "path": "atom/browser/browser_win.cc", "patch": "@@ -150,7 +150,8 @@ bool GetProtocolLaunchPath(mate::Arguments* args, base::string16* exe) {\n if (launchArgs.size() != 0) {\n launchArgString = base::JoinString(launchArgs, L\" \");\n }\n- *exe = base::StringPrintf(L\"\\\"%s\\\" %s \\\"%%1\\\"\", ...
2016-08-18T10:42:06
rust-lang/rust
7dacaef5d3c252ea47287ce34234a89e3c5ff57e
d963c78140a9636810e7ffd0c50022b23be902cb
mem: Use `core::ffi::c_int` This alias was added in 9897bfb8a ("Fix memset arguments for MSP430 target"), which predates `core::ffi`. Now that it exists we can just use `core::ffi::c_int`.
[ { "path": "library/compiler-builtins/compiler-builtins/src/mem/mod.rs", "patch": "@@ -3,13 +3,6 @@\n // FIXME(e2024): this eventually needs to be removed.\n #![allow(unsafe_op_in_unsafe_fn)]\n \n-#[allow(warnings)]\n-#[cfg(target_pointer_width = \"16\")]\n-type c_int = i16;\n-#[allow(warnings)]\n-#[cfg(not(...
2025-07-18T17:35:57
vercel/next.js
4e052deff2fec4394995629b53f2e60e5573c43b
94b7743cbe991a5eeac5873a86f8375a26b06670
docs: fix broken link missing leading slash (#54520)
[ { "path": "docs/02-app/01-building-your-application/02-data-fetching/01-fetching-caching-and-revalidating.mdx", "patch": "@@ -115,7 +115,7 @@ If you have multiple fetch requests in a statically rendered route, and each has\n \n Learn more about [time-based revalidation](/docs/app/building-your-application/c...
2023-08-24T17:19:23
huggingface/transformers
52c93cfb2e58b2d38d864c4f466dc743dce51597
a08aa52d4b4e37f8f33364ce85bd3a66c2c1cac0
chameleon added to MODELS_WITH_INCORRECT_HUB_TOKENIZER_CLASS (#44475) Co-authored-by: Harry Mellor <19981378+hmellor@users.noreply.github.com>
[ { "path": "src/transformers/models/auto/tokenization_auto.py", "patch": "@@ -341,6 +341,7 @@\n # These models will be forced to use TokenizersBackend.\n MODELS_WITH_INCORRECT_HUB_TOKENIZER_CLASS: set[str] = {\n \"arctic\",\n+ \"chameleon\",\n \"deepseek_vl\",\n \"deepseek_vl_v2\",\n \"dee...
2026-03-09T22:21:44
electron/electron
ca971e978e6e82c93a18534c80b596fb715c1522
88bf089504695d0bfb92f33e3a0daa6e5b4a1d11
Return boolean instead of empty string when error occurs. Update docs
[ { "path": "atom/browser/browser_win.cc", "patch": "@@ -125,7 +125,7 @@ bool Browser::SetUserTasks(const std::vector<UserTask>& tasks) {\n return SUCCEEDED(destinations->CommitList());\n }\n \n-std::wstring protocolLaunchPath(std::string protocol, mate::Arguments* args) {\n+bool GetProtocolLaunchPath(std::...
2016-08-18T08:02:13
vercel/next.js
94b7743cbe991a5eeac5873a86f8375a26b06670
9bcd570bc1d580197ae477489eee373a56f29a3f
Docs: Fix formatting issues in the rendering docs (#54517)
[ { "path": "docs/01-getting-started/index.mdx", "patch": "@@ -0,0 +1,4 @@\n+---\n+title: Getting Started\n+description: Learn how to create full-stack web applications with Next.js.\n+---", "additions": 4, "deletions": 0, "language": "Unknown" }, { "path": "docs/02-app/01-building-your-ap...
2023-08-24T16:49:46
huggingface/transformers
138c1c813c6586d5702f9719e00114c1f8e99070
1a50a3b13b6d17c2637fe19e94a8c459bd4208a5
Fix: Remove references to `text2text-generation`, `summarization` and `translation` pipeline tasks (#44510) * fix: clean up docs of summarization and translation pipeline * remove references of text2text-generation task * Update docs/source/en/tasks/prompting.md Co-authored-by: Steven Liu <59462357+stevhliu@users.n...
[ { "path": "docs/source/ar/task_summary.md", "patch": "@@ -221,15 +221,6 @@\n \n في الأيام الأولى، كانت نماذج الترجمة في الغالب أحادية اللغة، ولكن مؤخرًا، كان هناك اهتمام متزايد بالنماذج متعددة اللغات التي يمكنها الترجمة بين العديد من أزواج اللغات.\n \n-```py\n->>> from transformers import pipeline\n-\n->>> ...
2026-03-09T19:00:13
nodejs/node
4c9db6c74150d3f5487798ca654496fdaf343422
5b59c248413af4e81a0616286790b3dc718107ef
src: no SetImmediate from destructor in stream_pipe code Guard against running `SetImmediate()` from the destructor. The object will not be alive or usable in the callback, so it does not make sense to attempt to schedule the `SetImmediate()`. PR-URL: https://github.com/nodejs/node/pull/30666 Fixes: https://github.co...
[ { "path": "src/stream_pipe.cc", "patch": "@@ -42,7 +42,7 @@ StreamPipe::StreamPipe(StreamBase* source,\n }\n \n StreamPipe::~StreamPipe() {\n- Unpipe();\n+ Unpipe(true);\n }\n \n StreamBase* StreamPipe::source() {\n@@ -53,7 +53,7 @@ StreamBase* StreamPipe::sink() {\n return static_cast<StreamBase*>(writ...
2019-11-26T16:08:11
vercel/next.js
e08839a5a94381c043c991562a55927ad56459c1
1dc5c066cb11a0a5e4227c84182d874f92394717
fix infinite navigate events when Promise is proxied (#54394) ### What When the global `window.Promise` is proxied, things that rely on custom Promise properties (e.g. the `status` field) break. In the case of navigation events, the prefetch cache is never identified as being fulfilled, so navigation hangs in an infin...
[ { "path": "packages/next/src/client/components/router-reducer/reducers/navigate-reducer.ts", "patch": "@@ -199,7 +199,7 @@ export function navigateReducer(\n mutable.canonicalUrl = href\n \n state.prefetchCache.set(createHrefFromUrl(url, false), {\n- data: Promise.resolve(data),\n+ ...
2023-08-24T16:22:48
huggingface/transformers
1a50a3b13b6d17c2637fe19e94a8c459bd4208a5
0a0ac7a2875cf481f1edf77552a7c5a6ae1399a5
fix(testing): Fix MoonshineEncoder UnboundLocalError and Florence2VisionBackbone dtype mismatch (#44503) fix: Resolve runtime errors in MoonshineEncoder and Florence2VisionBackbone
[ { "path": "src/transformers/models/florence2/modeling_florence2.py", "patch": "@@ -558,6 +558,8 @@ def __init__(self, config: Florence2VisionConfig):\n def forward(\n self, hidden_states: torch.Tensor, **kwargs: Unpack[TransformersKwargs]\n ) -> tuple | BaseModelOutputWithPooling:\n+ ...
2026-03-09T16:31:42
golang/go
e1e056fa6a2f788a15e17d55b7953712053fd760
fbb47e81c1f24a8b9cb84430e9561ace60580af1
cmd/compile: fold constants found by prove It is hit ~70k times building go. This make the go binary, 0.04% smaller. I didn't included benchmarks because this is just constant foldings and is hard to mesure objectively. For example, this enable rewriting things like: if x == 20 { return x + 30 + z } Into: ...
[ { "path": "src/cmd/compile/internal/ssa/prove.go", "patch": "@@ -1222,13 +1222,13 @@ func simplifyBlock(sdom SparseTree, ft *factsTable, b *Block) {\n \t\t\t// Replace OpSlicemask operations in b with constants where possible.\n \t\t\tx, delta := isConstDelta(v.Args[0])\n \t\t\tif x == nil {\n-\t\t\t\tconti...
2022-05-04T17:03:13
vercel/next.js
dce3ce22e7290d024b5cb65a6737775c35544987
70b21c971989f92f357d8ccecaf7b8e47ea0ccda
fix "any" context condition implementation (vercel/turbo#5794) ### Description * the any logic was messed up * don't resolve typescript in node_modules for evaluation Closes WEB-1431
[ { "path": "crates/turbopack/src/condition.rs", "patch": "@@ -48,7 +48,7 @@ impl ContextCondition {\n // False positive.\n #[allow(clippy::manual_try_fold)]\n stream::iter(conditions)\n- .fold(Ok(true), |acc, c| async move {\n+ ...
2023-08-24T14:10:11
nodejs/node
5b59c248413af4e81a0616286790b3dc718107ef
f73716d35aa14d4808be2775dc8374db7aa2fed9
src: add more `can_call_into_js()` guards This is in preparation for running native `SetImmediate()` callbacks during shutdown. PR-URL: https://github.com/nodejs/node/pull/30666 Fixes: https://github.com/nodejs/node/issues/30643 Refs: https://github.com/nodejs/node/pull/30374 Reviewed-By: Rich Trott <rtrott@gmail.com...
[ { "path": "src/env.cc", "patch": "@@ -527,6 +527,9 @@ void Environment::RegisterHandleCleanups() {\n }\n \n void Environment::CleanupHandles() {\n+ Isolate::DisallowJavascriptExecutionScope disallow_js(isolate(),\n+ Isolate::DisallowJavascriptExecutionScope::THROW_ON_FAILURE);\n+\n for (ReqWrapBase*...
2019-11-26T16:05:25
huggingface/transformers
0a0ac7a2875cf481f1edf77552a7c5a6ae1399a5
a049c0044867607b697aaef55de6f87df2120baa
fix FSDP loading with meta devices (#44473) * fix FSDP loading with meta devices * unit tests for fsdp w cpu+meta fixes (claude): * simplify and limit to fsdp * simplify more and fix tests with mocks to fsdp functions * handle prequantized weights too * add a bit more explanations in comment * style --------- ...
[ { "path": "src/transformers/modeling_utils.py", "patch": "@@ -4548,8 +4548,23 @@ def _initialize_missing_keys(self, is_quantized: bool) -> None:\n `_initialize_weights`. Indeed, since the corresponding weights are missing from the state dict, they will not be replaced and need to\n be initia...
2026-03-09T15:46:22
golang/go
ab0bb52f2fdf454a2cbf20e95f5ecd2bd68b5ada
fd6ef06296b55a234d4fd5ebf5dd3e5bfd8f4e25
go/parser: accept all valid type parameter lists This is a port of CL 402256 from the syntax package to go/parser with adjustments because of the different AST structure, and excluding any necessary go/printer changes (separate CL). Type parameter lists starting with the form [name *T|...] or [name (X)|...] may look ...
[ { "path": "src/go/parser/parser.go", "patch": "@@ -785,9 +785,9 @@ func (p *parser) parseParamDecl(name *ast.Ident, typeSetsOK bool) (f field) {\n \t\treturn // don't allow ...type \"|\" ...\n \n \tdefault:\n-\t\t// TODO(rfindley): this looks incorrect in the case of type parameter\n-\t\t// lists.\n-\t\tp.e...
2022-05-03T17:42:22
electron/electron
e9b5833ed4cff58796c91f03bb03ed07eb2057ff
0b7b6b38c0d272e424dc0cd85487a5c06b5989f2
Fix typos Fix typos,`当前也` change to `当前页` 修正错别字,`当前也`改为`当前页`
[ { "path": "docs-translations/zh-CN/api/web-contents.md", "patch": "@@ -420,7 +420,7 @@ var currentURL = win.webContents.getURL();\n \n * `muted` Boolean\n \n-减缓当前也的 audio 的播放速度.\n+减缓当前页的 audio 的播放速度.\n \n ### `webContents.isAudioMuted()`\n \n@@ -861,4 +861,4 @@ win.webContents.debugger.sendCommand(\"Network...
2016-08-17T14:16:28
huggingface/transformers
a049c0044867607b697aaef55de6f87df2120baa
a50b099a2f4b985dc665c59180b2eb65d786044a
Fix: Remove references to transformers run command (#44513) * fix: remove references of transformer run * fix: add_dates
[ { "path": "docs/source/en/model_doc/albert.md", "patch": "@@ -84,13 +84,6 @@ for token_id in top_k[0]:\n print(f\"Prediction: {tokenizer.decode([token_id])}\")\n ```\n \n-</hfoption>\n-<hfoption id=\"transformers CLI\">\n-\n-```bash\n-echo -e \"Plants create [MASK] through a process known as photosynthe...
2026-03-09T15:37:16
vercel/next.js
70b21c971989f92f357d8ccecaf7b8e47ea0ccda
e9b9610d681f8ae5e829357bc59bbe088df646b0
fix: snapshot test path canonicalization (vercel/turbo#5795)
[ { "path": "crates/turbopack-tests/tests/execution.rs", "patch": "@@ -4,12 +4,10 @@\n \n mod util;\n \n-use std::{\n- collections::HashMap,\n- path::{Path, PathBuf},\n-};\n+use std::{collections::HashMap, path::PathBuf};\n \n use anyhow::{Context, Result};\n+use dunce::canonicalize;\n use turbo_tasks::...
2023-08-24T13:57:23
nodejs/node
f73716d35aa14d4808be2775dc8374db7aa2fed9
8792c3feb8e4852e44924fb059955a150ed863e6
src: keep object alive in stream_pipe code This was overlooked in a489583eda4d7cebc06516834b31dc2a4cedb1b6. Refs: https://github.com/nodejs/node/pull/30374 PR-URL: https://github.com/nodejs/node/pull/30666 Fixes: https://github.com/nodejs/node/issues/30643 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Jame...
[ { "path": "src/stream_pipe.cc", "patch": "@@ -72,7 +72,7 @@ void StreamPipe::Unpipe() {\n // inside the garbage collector, so we can’t run JS here.\n HandleScope handle_scope(env()->isolate());\n BaseObjectPtr<StreamPipe> strong_ref{this};\n- env()->SetImmediate([this](Environment* env) {\n+ env()->...
2019-11-26T16:00:53
golang/go
fd6ef06296b55a234d4fd5ebf5dd3e5bfd8f4e25
037b209ae3e0453004a4d57e152aa522c56f79e4
io: add an Err field to LimitedReader Fixes #51115 Change-Id: I3c5296e4adc71c1c1b1808a45abd4801ae43465a GitHub-Last-Rev: 4c197acd51e1cac051302deba57b97da66e004e1 GitHub-Pull-Request: golang/go#51990 Reviewed-on: https://go-review.googlesource.com/c/go/+/396215 Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> TryBo...
[ { "path": "api/next/51115.txt", "patch": "@@ -0,0 +1 @@\n+pkg io, type LimitedReader struct, Err error #51115", "additions": 1, "deletions": 0, "language": "Plain Text" }, { "path": "src/io/example_test.go", "patch": "@@ -6,6 +6,7 @@ package io_test\n \n import (\n \t\"bytes\"\n+\t\"...
2022-03-28T18:49:05
huggingface/transformers
a50b099a2f4b985dc665c59180b2eb65d786044a
f8786de5e0cde36cc591e963e4332bf70460f752
[LW-DETR] Fix training (#44441) * Fix training * Investigate more * Fix LW-DETR two-stage bbox gradient flow * Add training scripts * Remove unwanted files * pad class scores as well * Update pyproject * Add progress * Remove scripts * Restore pyproject * Restore config docstring * Restore config docstring ...
[ { "path": "src/transformers/models/lw_detr/configuration_lw_detr.py", "patch": "@@ -179,7 +179,7 @@ def __init__(\n batch_norm_eps=1e-5,\n # decoder\n d_model=256,\n- dropout=0.1,\n+ dropout=0.0,\n decoder_ffn_dim=2048,\n decoder_n_points=4,\n de...
2026-03-09T15:36:02
nodejs/node
8792c3feb8e4852e44924fb059955a150ed863e6
a1cbbd1da6d7ea9fbdbdabba6ac78b2b4cef9621
src,doc: fix broken links PR-URL: https://github.com/nodejs/node/pull/30662 Reviewed-By: David Carlier <devnexen@gmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
[ { "path": "src/README.md", "patch": "@@ -593,7 +593,7 @@ such as `std::string` and track their memory usage.\n \n This can be useful for debugging memory leaks.\n \n-The [`memory_retainer.h`][] header file explains how to use this class.\n+The [`memory_tracker.h`][] header file explains how to use this clas...
2019-11-26T15:26:59
vercel/next.js
32f11c34e8d342d8ab7993fcde2a6c5e7033387b
08b117ac5ccb9452ee2d3bf07cbdb6151336578c
Update 10-testing.mdx (#54107) Fixed `next/jest.js` import in documentation. without `.js` it show this error ``` Error [ERR_MODULE_NOT_FOUND]: Cannot find module 'F:\React\my-project\node_modules\next\jest' imported from F:\React\my-project\jest.config.mjs Did you mean to import next/jest.js? at new NodeError (no...
[ { "path": "docs/03-pages/01-building-your-application/05-optimizing/10-testing.mdx", "patch": "@@ -318,7 +318,7 @@ npm install --save-dev jest jest-environment-jsdom @testing-library/react @testi\n Create a `jest.config.mjs` file in your project's root directory and add the following:\n \n ```js filename=\"...
2023-08-24T12:02:00
rust-lang/rust
8a8717e971dbdc6155506a4332e9ce8ef9151caa
bf5e6cc7a7a7eb03e3ed9b875d76530eddd47d5f
fix: don't panic on volatile access to null According to https://discourse.llvm.org/t/rfc-volatile-access-to-non-dereferenceable-memory-may-be-well-defined/86303/4, LLVM allows volatile operations on null and handles it correctly. This should be allowed in Rust as well, because I/O memory may be hard-coded to address ...
[ { "path": "compiler/rustc_lint/src/ptr_nulls.rs", "patch": "@@ -160,12 +160,10 @@ impl<'tcx> LateLintPass<'tcx> for PtrNullChecks {\n let (arg_indices, are_zsts_allowed): (&[_], _) = match diag_name {\n sym::ptr_read\n | sym::ptr_read_unaligned\n- ...
2025-04-20T21:43:54
huggingface/transformers
f8786de5e0cde36cc591e963e4332bf70460f752
09677910aca4c64e86ee121a93ea18fc8299a081
fix(tokenizer): Only strip Fast from class names in AutoTokenizer if used as a suffix (#44443) * fix: Prevent AutoTokenizer from garbling class names * fix: Fix ci/circleci: check_code_quality --------- Co-authored-by: Matt <Rocketknight1@users.noreply.github.com>
[ { "path": "src/transformers/models/auto/tokenization_auto.py", "patch": "@@ -680,8 +680,8 @@ def from_pretrained(\n and config_model_type is not None\n and config_model_type != \"\"\n and TOKENIZER_MAPPING_NAMES.get(config_model_type) is not None\n- and TOKENIZ...
2026-03-09T15:02:46
golang/go
1b0f9fbb67ad3708665675c9f600608dc9b375fa
c570f0eda2c6d250c58028eb9d1e45061f607b67
cmd/compile: enable Asan check for global variables With this patch, -asan option can detect the error memory access to global variables. So this patch makes a few changes: 1. Add the asanregisterglobals runtime support function, which calls asan runtime function _asan_register_globals to register global variables. ...
[ { "path": "misc/cgo/testsanitizers/asan_test.go", "patch": "@@ -22,6 +22,14 @@ func TestASAN(t *testing.T) {\n \tif !aSanSupported(goos, goarch) {\n \t\tt.Skipf(\"skipping on %s/%s; -asan option is not supported.\", goos, goarch)\n \t}\n+\t// The current implementation is only compatible with the ASan libra...
2021-04-29T09:02:53
nodejs/node
a1cbbd1da6d7ea9fbdbdabba6ac78b2b4cef9621
15146e6f3743e3df5cff8fd04677fe38efc91c94
n-api: implement napi_is_detached_arraybuffer This implements ArrayBuffer#IsDetachedBuffer operation as per ECMAScript specification Section 24.1.1.2 https://tc39.es/ecma262/#sec-isdetachedbuffer Closes: https://github.com/nodejs/node/issues/29955 PR-URL: https://github.com/nodejs/node/pull/30613 Fixes: https://gith...
[ { "path": "doc/api/n-api.md", "patch": "@@ -3258,6 +3258,31 @@ that is, created with [`napi_create_external_arraybuffer`][].\n This API represents the invocation of the `ArrayBuffer` detach operation as\n defined in [Section 24.1.1.3][] of the ECMAScript Language Specification.\n \n+### napi_is_detached_arr...
2019-11-23T21:08:11
vercel/next.js
a636f303e6500e104aae182b9f36f4d606eb8628
c7464f142a80cab0d02d3a24cca78b63ed8927d0
Tracing improvements (vercel/turbo#5783) ### Description * print span that are still active (allows to list hanging spans) * fix trait default impl name * avoid collapsing root spans Closes WEB-1423
[ { "path": "crates/turbo-tasks-macros/src/value_trait_macro.rs", "patch": "@@ -108,7 +108,8 @@ pub fn value_trait(args: TokenStream, input: TokenStream) -> TokenStream {\n let mut inline_signature = sig.clone();\n inline_signature.ident = inline_function_ident;\n \n- let na...
2023-08-24T06:34:31
huggingface/transformers
09677910aca4c64e86ee121a93ea18fc8299a081
ce7efd8f19c39413a4692268b6903560178e5e3d
[tie weights] 🚨 If both weights are present with same weights, still tie them (#44497) * add equality check * fix * fix tests * compare shapes as well, just in case * oups caps
[ { "path": "src/transformers/modeling_utils.py", "patch": "@@ -397,7 +397,7 @@ def remove_tied_weights_from_state_dict(\n ) -> dict[str, torch.Tensor]:\n \"\"\"\n Remove all tied weights from the given `state_dict`, making sure to keep only the main weight that `model`\n- will expect when reloadin...
2026-03-09T15:00:22
rust-lang/rust
b0073d92fbb5402ff7bed69f28aab4b34b05a9df
09593059867b066d23776e00a2ce31c370ec9277
unicode-table-gen: more clippy fixes
[ { "path": "src/tools/unicode-table-generator/src/main.rs", "patch": "@@ -160,15 +160,15 @@ fn load_data() -> UnicodeData {\n .push(Codepoints::Single(row.codepoint));\n }\n \n- if let Some(mapped) = row.simple_lowercase_mapping {\n- if mapped != row.codepoint {\n- ...
2025-07-18T13:51:18
golang/go
ffe48e00adf3078944015186819a1ed5c6aa8bec
cf697253abb781e8a3e8825b7a4b5b96a534b907
sync/atomic: add typed atomic values These implementations will inline to the lower-level primitives, but they hide the underlying values so that all accesses are forced to use the atomic APIs. They also allow the use of shorter names (methods instead of functions) at call sites, making code more readable. Pointer[T]...
[ { "path": "api/next/50860.txt", "patch": "@@ -0,0 +1,40 @@\n+pkg sync/atomic, method (*Bool) CompareAndSwap(bool, bool) bool #50860\n+pkg sync/atomic, method (*Bool) Load() bool #50860\n+pkg sync/atomic, method (*Bool) Store(bool) #50860\n+pkg sync/atomic, method (*Bool) Swap(bool) bool #50860\n+pkg sync/at...
2022-01-26T21:56:00
huggingface/transformers
ce7efd8f19c39413a4692268b6903560178e5e3d
86eafab5fb1b305d4f63a442b7c525e83535f946
Fix AMD Docker image build timeout by pinning Flash Attention commit (#44546) pin fa commit
[ { "path": "docker/transformers-pytorch-amd-gpu/Dockerfile", "patch": "@@ -36,10 +36,12 @@ RUN python3 -m pip uninstall -y kernels\n # On ROCm, torchcodec is required to decode audio files and 0.4 or 0.6 fails\n RUN python3 -m pip install --no-cache-dir \"torchcodec==0.7\"\n \n-# Install flash attention from...
2026-03-09T14:37:50
nodejs/node
4325ca6829bde9f9f48be2bd84b102838c38d310
80c170e66fcdbb0ead33cee28129b16a30b33afd
test: check for session.post() errors in test-insepctor-context If session.post() generates an error, it is currently ignored. Add check for error by adding a callback to session.post() invocation. PR-URL: https://github.com/nodejs/node/pull/30649 Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Anto ...
[ { "path": "test/sequential/test-inspector-contexts.js", "patch": "@@ -5,7 +5,7 @@\n const common = require('../common');\n common.skipIfInspectorDisabled();\n \n-const { strictEqual } = require('assert');\n+const { ifError, strictEqual } = require('assert');\n const { createContext, runInNewContext } = requ...
2019-11-26T06:22:54
vercel/next.js
c7464f142a80cab0d02d3a24cca78b63ed8927d0
298bf9af2c7787b2096347ae6f3fed97770a489a
add evaluatables to chunk list ident (vercel/turbo#5785) ### Description This fixes a write conflict as two chunk group lists might have the same filename but different content. This is caused by different chunk groups can be created with the same entry chunk but different evaluatables. Closes WEB-1426
[ { "path": "crates/turbopack-dev/src/chunking_context.rs", "patch": "@@ -167,12 +167,14 @@ impl DevChunkingContext {\n fn generate_chunk_list_register_chunk(\n self: Vc<Self>,\n entry_chunk: Vc<Box<dyn Chunk>>,\n+ evaluatable_assets: Vc<EvaluatableAssets>,\n other_chunks: V...
2023-08-24T06:20:54