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 | 0a23538e49e27b95ee35b051b6507eca74e2bb20 | 6b170f7c157f7e7f8a7933c5bae712d2e382010b | test: fix regression when compiled with FIPS
In commit bff53c5a9d6, a check was added for very specific OpenSSL
format. Unfortunately, when OpenSSL is compiled in FIPS mode, this
check fails. Added additional regex to satisfy OpenSSL version
strings in both regular and FIPS modes.
PR-URL: https://github.com/nodejs/no... | [
{
"path": "test/parallel/test-process-versions.js",
"patch": "@@ -34,7 +34,7 @@ assert(/^\\d+\\.\\d+\\.\\d+(?:\\.\\d+)?-node\\.\\d+(?: \\(candidate\\))?$/\n assert(/^\\d+$/.test(process.versions.modules));\n \n if (common.hasCrypto) {\n- assert(/^\\d+\\.\\d+\\.\\d+[a-z]?$/.test(process.versions.openssl));\... | 2018-10-25T11:19:27 |
huggingface/transformers | 32db48db730e7a41e58ef043e50310275f7c629c | a3618d485a321ab9389a250ca712c67775edf1cc | Fix patch helper (#39216)
remove -1 | [
{
"path": "utils/patch_helper.py",
"patch": "@@ -56,8 +56,6 @@ def get_release_branch_name():\n major -= 1\n # You'll need logic to determine the last minor of the previous major version\n raise ValueError(\"Minor version is 0; need logic to find previous major version's last minor\"... | 2025-07-07T13:11:48 |
golang/go | 0f252511272d340c3fa9d25acfcc9ff9d809cd7d | 30a423eb3934251286bb57954c9d9d4b2385815e | go/types: change Checker.verify to return an error
This is a port of CL 342151 to go/types, adjusted for errors and
positions. Checker.sprintf was refactored to facilitate formatting
error messages with a nil Checker.
Change-Id: Ib2e5c942e55edaff7b5e77cf68a72bad70fea0b9
Reviewed-on: https://go-review.googlesource.com... | [
{
"path": "src/go/types/errors.go",
"patch": "@@ -63,22 +63,28 @@ func (check *Checker) markImports(pkg *Package) {\n }\n \n func (check *Checker) sprintf(format string, args ...interface{}) string {\n+\treturn sprintf(check.fset, check.qualifier, format, args...)\n+}\n+\n+func sprintf(fset *token.FileSet, ... | 2021-08-16T20:15:09 |
vercel/next.js | 4961188ab0ed761c2d20552bfb81835d727a621e | 3e919b6addb8228b14ab134c1824f3cd6c24872d | Fix windows path while searching matched page path (#45958)
pagePaths are windows file paths with backslashes, normalize them before searching the page file. so it could pick up edge runtime option properly
## Bug
- [x] Related issues linked using `fixes #number`
- [ ] Integration tests added
- [ ] Errors have a h... | [
{
"path": "packages/next/src/build/index.ts",
"patch": "@@ -128,6 +128,7 @@ import {\n } from '../client/components/app-router-headers'\n import { webpackBuild } from './webpack-build'\n import { NextBuildContext } from './build-context'\n+import { normalizePathSep } from '../shared/lib/page-path/normalize-... | 2023-02-15T22:19:54 |
electron/electron | 7b7a94140d898253427a83ea72f0ca513a371a31 | ed5660909bc73126c3b711cb5da072b92402b656 | win: Fix defines under component build | [
{
"path": "brightray/brightray.gypi",
"patch": "@@ -103,8 +103,6 @@\n 'defines': [\n 'TOOLKIT_VIEWS',\n 'USE_AURA',\n- 'VIEWS_IMPLEMENTATION',\n- 'WEBVIEW_IMPLEMENTATION',\n ],\n }],\n ['OS not in [\"mac\", \"w... | 2015-04-06T06:19:28 |
nodejs/node | 6b170f7c157f7e7f8a7933c5bae712d2e382010b | 35f9cd22f53639624c77b1af84affe4d7ae9cfb8 | benchmark: fix bench-mkdirp to use recursive option
The original PR didn't update the benchmark after renaming the option.
PR-URL: https://github.com/nodejs/node/pull/23699
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>... | [
{
"path": "benchmark/fs/bench-mkdirp.js",
"patch": "@@ -16,7 +16,7 @@ function main({ n }) {\n if (cntr-- <= 0)\n return bench.end(n);\n const pathname = `${tmpdir.path}/${++dirc}/${++dirc}/${++dirc}/${++dirc}`;\n- fs.mkdir(pathname, { createParents: true }, (err) => {\n+ fs.mkdir(pathna... | 2018-10-16T19:18:10 |
huggingface/transformers | 9b09fe479feb6ebf9d1e8ec0f84f009ebce7f36c | 00e9efceab0958105aa1e64d63530e51daf6cda7 | fix `fastspeech2_conformer` tests (#39229)
* fix
* fix
* fix
---------
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": "tests/models/fastspeech2_conformer/test_modeling_fastspeech2_conformer.py",
"patch": "@@ -429,7 +429,7 @@ def test_training_integration(self):\n batch_size, max_text_len = input_ids.shape\n pitch_labels = torch.rand((batch_size, max_text_len, 1), dtype=torch.float, device=torch_de... | 2025-07-07T13:04:26 |
golang/go | 4d00fcbc4303bca38ecfc1c8a07661089496c1ab | bacbc33439b124ffd7392c91a5f5d96eca8c0c0b | go/types: clean up panics in instantiation
This is a straightforward port of CL 341862 to go/types.
Change-Id: I4214c08d2889e2daf40254385656c6beed79571d
Reviewed-on: https://go-review.googlesource.com/c/go/+/342487
Trust: Robert Findley <rfindley@google.com>
Run-TryBot: Robert Findley <rfindley@google.com>
Reviewed-b... | [
{
"path": "src/go/types/instantiate.go",
"patch": "@@ -53,15 +53,18 @@ func (check *Checker) Instantiate(pos token.Pos, typ Type, targs []Type, posList\n \t\t// only types and functions can be generic\n \t\tpanic(fmt.Sprintf(\"%v: cannot instantiate %v\", pos, typ))\n \t}\n+\tinst := check.instantiate(pos, ... | 2021-08-16T19:59:08 |
electron/electron | f9f891bd039cc845823c1cbf580ef24a8f9ef080 | 0ed4626776bb29a4bcb69908ab57de008995c87c | win: Fix libchromiumcontent_src_dir not defined | [
{
"path": "brightray/brightray.gypi",
"patch": "@@ -3,7 +3,7 @@\n 'vendor/download/libchromiumcontent/filenames.gypi',\n ],\n 'variables': {\n- 'libchromiumcontent_src_dir%': '<(libchromiumcontent_root_dir)/src',\n+ 'libchromiumcontent_src_dir': '<(libchromiumcontent_root_dir)/src',\n 'lib... | 2015-04-05T14:51:38 |
vercel/next.js | 3e919b6addb8228b14ab134c1824f3cd6c24872d | 9101440020345930821c8af07e2ab583b6cc4fe1 | Fix flakey app cli output checks (#45960)
x-ref:
https://github.com/vercel/next.js/actions/runs/4186567737/jobs/7255320047 | [
{
"path": "test/e2e/app-dir/app-routes/app-custom-routes.test.ts",
"patch": "@@ -326,15 +326,19 @@ createNextDescribe(\n 'should print an error when using lowercase %p in dev',\n async (method: string) => {\n await next.fetch('/lowercase/' + method)\n- expect(next.... | 2023-02-15T19:33:17 |
nodejs/node | 35f9cd22f53639624c77b1af84affe4d7ae9cfb8 | 0fd55e71fe376458d1d82503a643114db8675208 | repl: support top-level for-await-of
PR-URL: https://github.com/nodejs/node/pull/23841
Fixes: https://github.com/nodejs/node/issues/23836
Reviewed-By: John-David Dalton <john.david.dalton@gmail.com>
Reviewed-By: Yuta Hiroto <hello@hiroppy.me>
Reviewed-By: Gus Caplan <me@gus.host>
Reviewed-By: Rich Trott <rtrott@gmail.... | [
{
"path": "lib/internal/repl/await.js",
"patch": "@@ -11,6 +11,12 @@ const visitorsWithoutAncestors = {\n }\n walk.base.ClassDeclaration(node, state, c);\n },\n+ ForOfStatement(node, state, c) {\n+ if (node.await === true) {\n+ state.containsAwait = true;\n+ }\n+ walk.base.ForOfStat... | 2018-10-24T05:34:03 |
huggingface/transformers | 00e9efceab0958105aa1e64d63530e51daf6cda7 | 056fa73fae97f0db277939d89859139566dc4f81 | [bugfix] fix flash attention 2 unavailable error on Ascend NPU (#39166)
[bugfix] fix flash attention 2 error on Ascend NPU | [
{
"path": "src/transformers/modeling_flash_attention_utils.py",
"patch": "@@ -103,6 +103,16 @@ def _fa3_pad_input(hidden_states, indices, batch, seqlen):\n from flash_attn.bert_padding import unpad_input as unpad_input_fa2\n from flash_attn.layers.rotary import apply_rotary_emb\n \n+ HAS_FA2 = Tr... | 2025-07-07T13:03:39 |
golang/go | bacbc33439b124ffd7392c91a5f5d96eca8c0c0b | 700743137462471189f58ee85fe64754cd340322 | archive/zip: prevent preallocation check from overflowing
If the indicated directory size in the archive header is so large that
subtracting it from the archive size overflows a uint64, the check that
the indicated number of files in the archive can be effectively
bypassed. Prevent this from happening by checking that... | [
{
"path": "src/archive/zip/reader.go",
"patch": "@@ -102,7 +102,7 @@ func (z *Reader) init(r io.ReaderAt, size int64) error {\n \t// indicate it contains up to 1 << 128 - 1 files. Since each file has a\n \t// header which will be _at least_ 30 bytes we can safely preallocate\n \t// if (data size / 30) >= en... | 2021-08-18T18:49:29 |
electron/electron | 0de623693d3219a8d31f4858d8f43ec71f367535 | 5ff9588b48076cb835bcd30887fd57567a5514f1 | Update build-instructions-windows.md
In the troubleshooting section, include a recommendation to install the latest Visual Studio update if you run into a fatal internal compiler error while building. | [
{
"path": "docs/development/build-instructions-windows.md",
"patch": "@@ -72,6 +72,10 @@ python script\\test.py\n If you encountered an error like `Command xxxx not found`, you may try to use\n the `VS2012 Command Prompt` console to execute the build scripts.\n \n+### Fatal internal compiler error: C1001\n+... | 2015-04-04T03:22:50 |
huggingface/transformers | 4243bb844da660b387b3c409487e549754f7acc3 | 34c16167eb4f5733a357ac62f2e06c2a5d95bb0b | fix bug using FSDP V1 will lead to model device not properly set (#39177)
* fix bug using FSDP V1 will lead to model device not properly set
Signed-off-by: Liu, Kaixuan <kaixuan.liu@intel.com>
* update the code
Signed-off-by: Liu, Kaixuan <kaixuan.liu@intel.com>
---------
Signed-off-by: Liu, Kaixuan <kaixuan.liu@... | [
{
"path": "src/transformers/trainer.py",
"patch": "@@ -2294,9 +2294,7 @@ def _inner_training_loop(\n else:\n debug_overflow = DebugUnderflowOverflow(self.model) # noqa\n \n- delay_optimizer_creation = (\n- is_sagemaker_mp_enabled() or self.is_fsdp_xla_enabled o... | 2025-07-07T12:47:04 |
nodejs/node | 0fd55e71fe376458d1d82503a643114db8675208 | b1e1fe4e07e24fcafa278b498291620dd61411ab | src: minor refactor to node_errors.h
Add overloads of the error generation/throwing methods
that take an `Isolate*` argument, since the created objects
don’t depend on the `Environment*` in question.
Also, remove `THROW_ERR_OUT_OF_RANGE_WITH_TEXT`, which did the
same thing as `THROW_ERR_OUT_OF_RANGE` in a more convol... | [
{
"path": "src/node_buffer.cc",
"patch": "@@ -41,8 +41,7 @@\n #define THROW_AND_RETURN_IF_OOB(r) \\\n do { \\\n if (!(r)) \\\n- ... | 2018-10-25T17:35:17 |
golang/go | 700743137462471189f58ee85fe64754cd340322 | 303446395d8bfdd05da8c69f1f3f862e7e7a35db | crypto/rand, internal/syscall/unix: don't use getentropy on iOS
CL 302489 switched crypto/rand to use getentropy on darwin, however this
function is not available on iOS. Enable getentropy only on macOS and
disable it on iOS.
Fixes #47812
Change-Id: Ib7ba5d77346aee87904bb93d60cacc845f5c0089
Reviewed-on: https://go-r... | [
{
"path": "src/crypto/rand/rand_getentropy.go",
"patch": "@@ -2,8 +2,8 @@\n // Use of this source code is governed by a BSD-style\n // license that can be found in the LICENSE file.\n \n-//go:build darwin || openbsd\n-// +build darwin openbsd\n+//go:build (darwin && !ios) || openbsd\n+// +build darwin,!ios ... | 2021-08-19T14:36:38 |
huggingface/transformers | 34c16167eb4f5733a357ac62f2e06c2a5d95bb0b | b8f397e456251882c9f011596504a9c388065230 | Don't send new comment if the previous one is less than 30 minutes (unless the content is changed) (#39170)
fix
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": ".github/workflows/pr_run_slow_ci.yml",
"patch": "@@ -112,21 +112,26 @@ jobs:\n echo \"jobs_to_run=$(tail -n 1 output.txt)\" >> $GITHUB_OUTPUT\n \n send_comment:\n+ # Will delete the previous comment and send a new one if:\n+ # - either the content is changed\n+ # - or the... | 2025-07-07T12:43:50 |
electron/electron | 8a91000083f313956a5358786db23eaf953d6d84 | dab9e9be671528216a8dddf6b58f9414d3710ae5 | Fix linking node and chromium together | [
{
"path": "atom.gyp",
"patch": "@@ -528,7 +528,6 @@\n {\n 'destination': '<(PRODUCT_DIR)',\n 'files': [\n- '<(libchromiumcontent_dir)/libchromiumcontent.so',\n '<(libchromiumcontent_dir)/libffmpegsumo.so',\n '<(libchromiu... | 2015-04-03T03:38:04 |
nodejs/node | b1e1fe4e07e24fcafa278b498291620dd61411ab | 398418dd2619a2853b4a8b252db90fdf4cb60f7c | stream: do not error async iterators on destroy(null)
Fixes: https://github.com/nodejs/node/issues/23890
PR-URL: https://github.com/nodejs/node/pull/23901
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com> | [
{
"path": "lib/internal/streams/async_iterator.js",
"patch": "@@ -153,7 +153,7 @@ const createReadableStreamAsyncIterator = (stream) => {\n });\n \n finished(stream, (err) => {\n- if (err) {\n+ if (err && err.code !== 'ERR_STREAM_PREMATURE_CLOSE') {\n const reject = iterator[kLastReject];\n ... | 2018-10-26T10:38:08 |
golang/go | 0e598e7da42aea47b6b9d52c4292f202368d2f19 | 91e2e3b9030440713b59dcc7dd9deae71b18d9fc | syscall: add SyscallN
This CL adds a new syscall.SyscallN API.
The proposal discussion also suggests the API should not only for
Windows but other platforms. However, the existing API set already
contain differences between platforms, hence the CL only implements
the Windows platform.
Moreover, although the API offe... | [
{
"path": "doc/go1.18.html",
"patch": "@@ -82,3 +82,20 @@ <h3 id=\"minor_library_changes\">Minor changes to the library</h3>\n <p>\n TODO: complete this section\n </p>\n+\n+<dl id=\"syscall\"><dt><a href=\"/pkg/syscall/\">syscall</a></dt>\n+ <dd>\n+ <p><!-- CL 336550 -->\n+ The new function <a hr... | 2021-07-22T15:50:42 |
huggingface/transformers | b8f397e456251882c9f011596504a9c388065230 | 5348fbc005977c3ecc3ed5957dff3c3f0d05c5b5 | fix typo in Gemma3n notes (#39196) | [
{
"path": "docs/source/en/model_doc/gemma3n.md",
"patch": "@@ -121,7 +121,7 @@ echo -e \"Plants create energy through a process known as\" | transformers run --t\n ## Notes\n \n - Use [`Gemma3nForConditionalGeneration`] for image-audio-and-text, image-and-text, image-and-audio, audio-and-text,\n- image... | 2025-07-07T12:41:33 |
electron/electron | ca161e29cec4004b0ad157abed226de75f87730c | 736afb32a0c1ca6c8e30a3bc1ef1ffe2cd1297bb | Fix calling our new APIs in patch | [
{
"path": "atom/browser/native_window.cc",
"patch": "@@ -54,8 +54,9 @@\n #include \"ui/gfx/geometry/size_conversions.h\"\n #include \"ui/gfx/geometry/point.h\"\n #include \"ui/gfx/geometry/rect.h\"\n-#include \"ui/gfx/screen.h\"\n #include \"ui/gfx/geometry/size.h\"\n+#include \"ui/gfx/screen.h\"\n+#include... | 2015-04-02T15:02:22 |
nodejs/node | 398418dd2619a2853b4a8b252db90fdf4cb60f7c | 124d91667abb203098baa7d6cf6011e8df5eeeff | stream: ended streams should resolve the async iteration
Fixes: https://github.com/nodejs/node/issues/23891
PR-URL: https://github.com/nodejs/node/pull/23901
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com> | [
{
"path": "lib/internal/streams/async_iterator.js",
"patch": "@@ -127,7 +127,10 @@ const createReadableStreamAsyncIterator = (stream) => {\n [kLastResolve]: { value: null, writable: true },\n [kLastReject]: { value: null, writable: true },\n [kError]: { value: null, writable: true },\n- [kEnd... | 2018-10-26T10:24:16 |
vercel/next.js | 9101440020345930821c8af07e2ab583b6cc4fe1 | af6c26ccc90d7015c7e972c87bb3d0ca10f6cd02 | Metadata fields improvements (#45945)
Resolves the comments from beta docs
* fix typing of `metadata.authors` rendering
* add `metadata.manifest` field
## Bug
- [x] Related issues linked using `fixes #number`
- [x] Integration tests added
- [ ] Errors have a helpful link attached, see [`contributing.md`](https://gi... | [
{
"path": "packages/next/src/lib/metadata/default-metadata.ts",
"patch": "@@ -18,6 +18,7 @@ export const createDefaultMetadata = (): ResolvedMetadata => {\n creator: null,\n publisher: null,\n robots: null,\n+ manifest: null,\n alternates: {\n canonical: null,\n languages: nul... | 2023-02-15T17:35:50 |
golang/go | 91e2e3b9030440713b59dcc7dd9deae71b18d9fc | 9871726c72af7009aa73be33edfa06a8d9e5965e | cmd/compile: prevent duplicated works in WriteRuntimeTypes
While processing signatset, the entry is deleted immediately after being
pushed to signatslice. Then calling writeType may add the same type
to signatset again. That would add more works, though not a big impact
to the performace, since when writeType is guard... | [
{
"path": "src/cmd/compile/internal/reflectdata/reflect.go",
"patch": "@@ -39,8 +39,11 @@ func CountPTabs() int {\n \n // runtime interface and reflection data structures\n var (\n-\tsignatmu sync.Mutex // protects signatset and signatslice\n-\tsignatset = make(map[*types.Type]struct{})\n+\t// protects... | 2021-06-08T12:28:45 |
huggingface/transformers | 8570bc29f3d994f0d96538987aedbe8ff383ea4a | b283d52f7f89d9cf3c77cfef233c4cbf700959ff | Fix missing fast tokenizer/image_processor in whisper/qwen2.5-omni processor (#39244)
* fix missing fast tokenizer in whisper processor
Signed-off-by: Isotr0py <2037008807@qq.com>
* fix processor test
Signed-off-by: Isotr0py <2037008807@qq.com>
* fix qwen2.5 omni processor
Signed-off-by: Isotr0py <2037008807@qq.c... | [
{
"path": "src/transformers/models/qwen2_5_omni/processing_qwen2_5_omni.py",
"patch": "@@ -93,8 +93,8 @@ class Qwen2_5OmniProcessor(ProcessorMixin):\n \"\"\"\n \n attributes = [\"image_processor\", \"video_processor\", \"feature_extractor\", \"tokenizer\"]\n- image_processor_class = \"Qwen2VLImag... | 2025-07-07T11:54:18 |
nodejs/node | b0089a580fcf3605d46498db65a770c63875e2f8 | 1ba10db160fc432f618430835335c321f65bd27d | src: make model counter in `GetCPUInfo()` unsigned
This fixes a compiler warning about comparing against
the (unsigned) `NODE_PUSH_VAL_TO_ARRAY_MAX` constant.
PR-URL: https://github.com/nodejs/node/pull/23880
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Sam Ro... | [
{
"path": "src/node_os.cc",
"patch": "@@ -168,7 +168,7 @@ static void GetCPUInfo(const FunctionCallbackInfo<Value>& args) {\n Local<Array> cpus = args[2].As<Array>();\n \n Local<Value> model_argv[NODE_PUSH_VAL_TO_ARRAY_MAX];\n- int model_idx = 0;\n+ unsigned int model_idx = 0;\n \n for (i = 0, field... | 2018-10-25T18:23:54 |
vercel/next.js | af6c26ccc90d7015c7e972c87bb3d0ca10f6cd02 | 087aa6e83ea1d268c1d22cd37901a5d1758b96f1 | Stop overriding the user's TS config with defaults during `next build` (#45670)
## Bug
The `next build` command is silently overriding the user's tsconfig when
it shouldn't be; this results in mismatched behavior between `tsc
--noEmit` and `yarn build` and user confusion.
For example, a configuration option li... | [
{
"path": "packages/next/src/lib/typescript/runTypeCheck.ts",
"patch": "@@ -41,8 +41,8 @@ export async function runTypeCheck(\n const requiredConfig = getRequiredConfiguration(ts)\n \n const options = {\n- ...effectiveConfiguration.options,\n ...requiredConfig,\n+ ...effectiveConfiguration.opt... | 2023-02-15T17:11:00 |
huggingface/transformers | a325409a5051d68879030214e9c33180505f0d81 | b0a8e0b8d7eba2af7346331dd1d48c50892867b2 | Expectations re-order and corrected FA3 skip (#39195)
* Fix Expectations and a FA3 skip
* Fixed docstring
* Added context for Default expectation | [
{
"path": "src/transformers/testing_utils.py",
"patch": "@@ -3338,17 +3338,25 @@ def unpacked(self) -> list[tuple[DeviceProperties, Any]]:\n return [(unpack_device_properties(k), v) for k, v in self.data.items()]\n \n @staticmethod\n- def is_default(properties: DeviceProperties) -> bool:\n- ... | 2025-07-07T09:42:33 |
golang/go | 69d8fbec7ab74b3b0f8b689a9a251bdf621936aa | 3bdc1799d6ce441d7a972faf1452e34b6dce0826 | cmd/compile/internal/types2: return an error from Instantiate
Change Instantiate to be a function (not a method) and return an error.
Introduce an ArgumentError type to report information about which type
argument led to an error during verification.
This resolves a few concerns with the current API:
- The Checker m... | [
{
"path": "src/cmd/compile/internal/importer/iimport.go",
"patch": "@@ -652,7 +652,9 @@ func (r *importReader) doType(base *types2.Named) types2.Type {\n \t\tif r.p.exportVersion < iexportVersionGenerics {\n \t\t\terrorf(\"unexpected instantiation type\")\n \t\t}\n-\t\tpos := r.pos()\n+\t\t// pos does not m... | 2021-08-13T19:52:12 |
nodejs/node | ffa5c7e054a9835649d580d94c898b174447a741 | 5c5bb36b742e45eba8d587412bf33977aa00cc02 | deps: fix shim for `v8::Value::IntegerValue()`
This was introduced in 48d1335bbc100. Previously, values such as
`undefined` would not be coerced properly because `NumberValue()`
returns `NaN` for them.
Refs: https://github.com/nodejs/node/pull/23158
PR-URL: https://github.com/nodejs/node/pull/23898
Reviewed-By: Mich... | [
{
"path": "deps/v8/src/api.cc",
"patch": "@@ -3901,7 +3901,7 @@ double Value::NumberValue() const {\n \n \n int64_t Value::IntegerValue() const {\n- return NumberValue(Isolate::GetCurrent()->GetCurrentContext())\n+ return IntegerValue(Isolate::GetCurrent()->GetCurrentContext())\n .FromMaybe(0);\n }\... | 2018-10-26T09:51:50 |
electron/electron | faac37a85cf26f2d5b5ee3678d6f7b57579382f2 | 7e41b9e44de0c26969fd853575545576a9f9c014 | Only do component build in Debug mode | [
{
"path": "brightray/brightray.gyp",
"patch": "@@ -93,6 +93,11 @@\n 'common/main_delegate_mac.mm',\n ],\n 'conditions': [\n+ ['libchromiumcontent_component_build', {\n+ 'link_settings': {\n+ 'libraries': [ '<@(libchromiumcontent_shared_libraries)' ]\n+ ... | 2015-04-02T07:11:15 |
vercel/next.js | 087aa6e83ea1d268c1d22cd37901a5d1758b96f1 | c0431d0e11269b8bd65fab9f85c8d2a925bfafde | Log dev error in Server Router (#45951)
Fixes NEXT-561
## Bug
- [ ] Related issues linked using `fixes #number`
- [ ] Integration tests added
- [ ] Errors have a helpful link attached, see [`contributing.md`](https://github.com/vercel/next.js/blob/canary/contributing.md)
## Feature
- [ ] Implements an existing fea... | [
{
"path": "packages/next/src/build/webpack/loaders/next-app-loader.ts",
"patch": "@@ -62,6 +62,7 @@ async function createAppRouteCode({\n import 'next/dist/server/node-polyfill-headers'\n \n export * as handlers from ${JSON.stringify(resolvedPagePath)}\n+ export const resolvedPagePath = ${JSO... | 2023-02-15T17:09:48 |
golang/go | 687f2acf6ae00226e8304e15f156f36e19ac971f | eda3de0f79f3008aed21c04df546efa2ace65683 | cmd/compile: only use dictionaries for conversions to type parameters
Conversions to regular concrete types should not be rewritten during
stenciling.
Fixes #47740
Change-Id: I2b45e22f962dcd2e18bd6cc876ebc0f850860822
Reviewed-on: https://go-review.googlesource.com/c/go/+/342989
Trust: Keith Randall <khr@golang.org>
... | [
{
"path": "src/cmd/compile/internal/noder/stencil.go",
"patch": "@@ -1118,6 +1118,9 @@ func (subst *subster) node(n ir.Node) ir.Node {\n \t\t\t\tm = convertUsingDictionary(subst.info, subst.info.dictParam, m.Pos(), m.(*ir.ConvExpr).X, x, m.Type(), x.X.Type())\n \t\t\t}\n \t\tcase ir.ODOTTYPE, ir.ODOTTYPE2:\... | 2021-08-17T17:40:44 |
huggingface/transformers | ca7e1a3756c022bf31429c452b2f313f043f32de | e6a8063ef1af16df964b644b07e1d17e96555d23 | Refactor the way we handle outputs for new llamas and new models (#39120)
* just update 2 files
* update other models as well just making fix-copies
* also add the changes needed to modeling utils
* put this on the pretrained model instead
* nits and fixes
* update generic, fix to use config value
* update other... | [
{
"path": "examples/modular-transformers/modeling_dummy.py",
"patch": "@@ -1,446 +0,0 @@\n-# 🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨\n-# This file was automatically generated from examples/modular-transformers/modular_dummy.py... | 2025-07-05T09:34:28 |
nodejs/node | 6223236151f25975e380eef8470243ff8cf3f61d | 817e2e8a762792b7997425548aaded4d7b08f601 | lib: make the global console [[Prototype]] an empty object
From the WHATWG console spec:
> For historical web-compatibility reasons, the namespace object for
> console must have as its [[Prototype]] an empty object, created as
> if by ObjectCreate(%ObjectPrototype%), instead of %ObjectPrototype%.
Since in Node.js, t... | [
{
"path": "lib/console.js",
"patch": "@@ -60,17 +60,21 @@ let cliTable;\n \n // Track amount of indentation required via `console.group()`.\n const kGroupIndent = Symbol('kGroupIndent');\n-\n const kFormatForStderr = Symbol('kFormatForStderr');\n const kFormatForStdout = Symbol('kFormatForStdout');\n const ... | 2018-10-12T15:38:40 |
vercel/next.js | 430f1b8c9b622f5041285e9cc6ca90101a65bd50 | 2b2c7462cd67862b66d10eaf822a60c75457ec0b | Improve type checking with tests (#45940)
Closes #45088.
Rewrite the type guard implementation, it now works via 2 parts:
- `Diff<A, B>` this makes sure that `B` is either `any` or extends `A`, and then excludes all fields in `A` from `B`, only keeps the extra fields
- `checkFields<X>()` ensures that `X` doesn't hav... | [
{
"path": "packages/next/src/build/webpack/plugins/flight-types-plugin.ts",
"patch": "@@ -28,36 +28,14 @@ function createTypeGuardFile(\n return `// File: ${fullPath}\n import * as entry from '${relativePath}'\n import type { ResolvingMetadata } from 'next/dist/lib/metadata/types/metadata-interface'\n-typ... | 2023-02-15T14:49:45 |
golang/go | eda3de0f79f3008aed21c04df546efa2ace65683 | 805d38a3529918a708875b068ccee46a7edcead0 | cmd/compile/internal/types2: change Checker.verify to return an error
In preparation for upcoming API changes, change the internal API for
verification of type arguments to return an error and argument index,
and use this to lift up error reporting into Instantiate.
Change-Id: I88b1e64dd9055c4c20c0db49c96c79c5da89445... | [
{
"path": "src/cmd/compile/internal/types2/instantiate.go",
"patch": "@@ -9,6 +9,7 @@ package types2\n \n import (\n \t\"cmd/compile/internal/syntax\"\n+\t\"errors\"\n \t\"fmt\"\n )\n \n@@ -74,7 +75,14 @@ func (check *Checker) Instantiate(pos syntax.Pos, typ Type, targs []Type, posLis\n \t\t\t// Avoid dupli... | 2021-08-13T17:15:15 |
electron/electron | 219a461f784fff7fa401eb42feacb75ef36c2c70 | 95528f92074ab854d3f5879d46159a6b9c4413bf | Fix generating node.lib | [
{
"path": "atom.gyp",
"patch": "@@ -973,7 +973,7 @@\n {\n 'action_name': 'Create node.lib',\n 'inputs': [\n- '<(PRODUCT_DIR)/<(project_name).lib',\n+ '<(PRODUCT_DIR)/node.dll.lib',\n '<(libchromiumcontent_library_dir)/chro... | 2015-04-02T03:06:01 |
nodejs/node | 817e2e8a762792b7997425548aaded4d7b08f601 | c82920214bc03857061b47fe6bee3b21933eabe8 | test: fix strictEqual() argument order
PR-URL: https://github.com/nodejs/node/pull/23829
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Trivikram Kamat <trivikr.d... | [
{
"path": "test/parallel/test-https-connect-address-family.js",
"patch": "@@ -37,7 +37,7 @@ const https = require('https');\n };\n // Will fail with ECONNREFUSED if the address family is not honored.\n https.get(options, common.mustCall(function() {\n- assert.strictEqual('::1', this.socket.... | 2018-10-23T13:32:23 |
rust-lang/rust | 81af658cb317a8325b4be9fb89d10cd6d6e4d79e | 04c7e5a7e320dfc4e5ffda56e370479c3974dbaf | Make clif ir debug output a bit nicer | [
{
"path": "src/abi/mod.rs",
"patch": "@@ -185,12 +185,11 @@ impl<'tcx> FunctionCx<'_, '_, 'tcx> {\n let sig = Signature { params, returns, call_conv: self.target_config.default_call_conv };\n let func_id = self.module.declare_function(name, Linkage::Import, &sig).unwrap();\n let func... | 2025-05-20T12:16:04 |
vercel/next.js | 09af739aa09778807ada2762ccd378d8a98e8e94 | 268c9e08fcc5f90b4000e095a39350e5516de7a4 | Add support for CSS module composes: and fix CSS precedence issues (vercel/turbo#3771)
Adds support for the CSS module `composes:` rule.
This also fixes a large issue with our chunk ordering and CSS precedence, where the BFS order of our chunks did not match the expected topological ordering. | [
{
"path": "packages/next-swc/crates/next-core/Cargo.toml",
"patch": "@@ -12,7 +12,7 @@ bench = false\n anyhow = \"1.0.47\"\n auto-hash-map = { path = \"../auto-hash-map\" }\n indexmap = { workspace = true, features = [\"serde\"] }\n-indoc = \"1.0\"\n+indoc = { workspace = true }\n mime = \"0.3.16\"\n once_c... | 2023-02-15T10:36:09 |
huggingface/transformers | e6a8063ef1af16df964b644b07e1d17e96555d23 | cd8a041a4f6ecd8887bbf895493327edc82fc1b8 | Update expected values (after switching to A10) - part 8 - Final (#39220)
* fix
* fix
---------
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": "tests/models/moonshine/test_modeling_moonshine.py",
"patch": "@@ -494,14 +494,16 @@ def test_tiny_logits_batch(self):\n inputs.to(torch_device)\n outputs = model.generate(**inputs, max_new_tokens=1, return_dict_in_generate=True, output_logits=True)\n # fmt: off\n- E... | 2025-07-04T11:35:53 |
golang/go | 805d38a3529918a708875b068ccee46a7edcead0 | c2bd9ee2dbec88d4fd1b21aefa21cd988d01b880 | cmd/compile/internal/types2: no need to validate substituted instances
When substituting a type instance, we rely on the instance being
expanded and do not call validType, so there is need to depend on
subster.pos for error reporting or to use subst.check for creating the
new Named type. Errors will be reported for th... | [
{
"path": "src/cmd/compile/internal/types2/subst.go",
"patch": "@@ -222,10 +222,15 @@ func (subst *subster) typ(typ Type) Type {\n \t\t\treturn named\n \t\t}\n \n-\t\t// create a new named type and populate typMap to avoid endless recursion\n+\t\t// Create a new named type and populate typMap to avoid endle... | 2021-08-13T19:03:14 |
electron/electron | e2000c44182bdd1bad6240884776833411fc39b9 | 0a99140b2ad3857eeea2a0b8830781fe7a01d3a2 | Fix wrong update of node | [
{
"path": "vendor/node",
"patch": "@@ -1 +1 @@\n-Subproject commit 790c4a3af36144fcdd5fe39d0cb6cd622f282434\n+Subproject commit 6479eb98d5b3d9d25a86eff857af17dcc61f3bc4",
"additions": 1,
"deletions": 1,
"language": "Unknown"
}
] | 2015-04-02T02:36:55 |
huggingface/transformers | cd8a041a4f6ecd8887bbf895493327edc82fc1b8 | 0cf27916f09a1a99af55ef4f2f3e8675372f38b6 | Update expected values (after switching to A10) - part 7 (#39218)
* fix
* fix
* fix
---------
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": "tests/models/cohere2/test_modeling_cohere2.py",
"patch": "@@ -165,7 +165,8 @@ def test_model_fp16(self):\n EXPECTED_TEXTS = Expectations(\n {\n (\"xpu\", 3): [\"<BOS_TOKEN>Hello I am doing a project for my school and I need to create a website for a fictional c... | 2025-07-04T10:48:10 |
rust-lang/rust | b21c9e7bfb0180b67b486013a7137fb200cb1076 | f8e9e7636aabcbc29345d9614432d15b3c0c4ec7 | Split `autodiff` into `autodiff_forward` and `autodiff_reverse`
Pending fix.
```
error: cannot find a built-in macro with name `autodiff_forward`
--> library\core\src\macros\mod.rs:1542:5
|
1542 | / pub macro autodiff_forward($item:item) {
1543 | | /* compiler built-in */
1544 | | }
| |__... | [
{
"path": "compiler/rustc_builtin_macros/src/autodiff.rs",
"patch": "@@ -88,25 +88,20 @@ mod llvm_enzyme {\n has_ret: bool,\n ) -> AutoDiffAttrs {\n let dcx = ecx.sess.dcx();\n- let mode = name(&meta_item[1]);\n- let Ok(mode) = DiffMode::from_str(&mode) else {\n- ... | 2025-05-06T07:19:33 |
nodejs/node | 4e2f26f88bb768a73231990c93f770093cbc8889 | a3cad3e2ff95eb7474b4baefafc969211657a896 | build: expose more openssl categories for addons
Those categories are necessary to build addons that depends
on libcurl and libssh, the following were the missing symbols:
libcurl:
OCSP_cert_status_str
OCSP_check_validity
OCSP_basic_verify
OCSP_RESPONSE_free
OCSP_single_get0_status
OCSP_response_get1_basic
OCSP_BASIC... | [
{
"path": "node.gyp",
"patch": "@@ -595,7 +595,8 @@\n # Categories to export.\n '-CAES,BF,BIO,DES,DH,DSA,EC,ECDH,ECDSA,ENGINE,EVP,HMAC,MD4,MD5,'\n 'PSK,RC2,RC4,RSA,SHA,SHA0,SHA1,SHA256,SHA512,SOCK,STDIO,TLSEXT,'\n- 'FP_API,TLS1_METHOD,TLS1_1_METHOD,TLS1... | 2018-10-09T00:39:29 |
vercel/next.js | 3d3a43ec3e33966fe582c48024b3522a22c10166 | 881262abef7dfb780331661f660c94aadaf9cc26 | Add support for CSS module composes: and fix CSS precedence issues (vercel/turbo#3771)
Adds support for the CSS module `composes:` rule.
This also fixes a large issue with our chunk ordering and CSS precedence, where the BFS order of our chunks did not match the expected topological ordering. | [
{
"path": "crates/next-core/Cargo.toml",
"patch": "@@ -12,7 +12,7 @@ bench = false\n anyhow = \"1.0.47\"\n auto-hash-map = { path = \"../auto-hash-map\" }\n indexmap = { workspace = true, features = [\"serde\"] }\n-indoc = \"1.0\"\n+indoc = { workspace = true }\n mime = \"0.3.16\"\n once_cell = \"1.13.0\"\n... | 2023-02-15T10:36:09 |
golang/go | 165ebd85a77db5f3454f38c6c3f1539f00cf2fef | 4a0fd73eaded9f395b3e5025ab9e1c5c5f124143 | cmd/compile/internal/types2: clean up panics in instantiation
Clean up a few issues related to panicking during invalid instantiation.
- Panic early in instantiateLazy when check == nil and verify == true.
Otherwise, we would panic at check.later.
- Always panic when check == nil and verify == true, even if targs... | [
{
"path": "src/cmd/compile/internal/types2/instantiate.go",
"patch": "@@ -54,15 +54,18 @@ func (check *Checker) Instantiate(pos syntax.Pos, typ Type, targs []Type, posLis\n \t\t// only types and functions can be generic\n \t\tpanic(fmt.Sprintf(\"%v: cannot instantiate %v\", pos, typ))\n \t}\n+\tinst := chec... | 2021-08-13T16:03:29 |
electron/electron | 95528f92074ab854d3f5879d46159a6b9c4413bf | 211e386c894d0ff2b90a9c11f671d6092f428ef5 | linux: Fix relocation error when compiling as shared library | [
{
"path": "common.gypi",
"patch": "@@ -95,6 +95,8 @@\n '-Wno-unused-value',\n '-Wno-deprecated-declarations',\n '-Wno-return-type',\n+ # Fix relocation error when compiling as shared library.\n+ '-fPIC',\n ],\n }],\n ... | 2015-04-01T15:44:55 |
huggingface/transformers | 0cf27916f09a1a99af55ef4f2f3e8675372f38b6 | 037755ed54208eefa77673b0af2a0b13e51f2fb1 | Add packed tensor format support for flex/sdpa/eager through the mask! (#39194)
* Add the necesary logic to mask_utils
* add it everywhere
* Update masking_utils.py
* style
* Update masking_utils.py
* Update modeling_mimi.py
* Update masking_utils.py
* add support for more than batch size 1
* Update masking_ut... | [
{
"path": "src/transformers/generation/utils.py",
"patch": "@@ -656,6 +656,7 @@ def prepare_inputs_for_generation(\n # If it's not defined, it means the model uses the new general mask API\n if causal_mask_creation_function is None: # can't be found\n token_type_ids ... | 2025-07-04T07:01:56 |
nodejs/node | 958d5b7f1d1fa47133de48625abb2fb3aa7b8ffd | 16673ae9dc1e748f6ccd2c71df98504f361decdc | timers: fix priority queue removeAt fn
PR-URL: https://github.com/nodejs/node/pull/23870
Fixes: https://github.com/nodejs/node/issues/23860
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Matteo Collina <ma... | [
{
"path": "lib/internal/priority_queue.js",
"patch": "@@ -83,8 +83,13 @@ module.exports = class PriorityQueue {\n heap[pos] = heap[size + 1];\n heap[size + 1] = undefined;\n \n- if (size > 0)\n+ if (size > 0) {\n+ // If not removing the last item, update the shifted item's position.\n+ ... | 2018-10-25T11:02:23 |
golang/go | 4a0fd73eaded9f395b3e5025ab9e1c5c5f124143 | 0c83e01e0c1df712002af8bded845fbca9677ffa | cmd/go/internal/work/exec: throw an error when buildP is negative
Fixed a problem where an error would not occur
when a negative value was specified for the p flag.
`go build -p=0`
now should throw an error.
this is my first pr to this project.
If there's anything I'm missing, please let me know 🙏
Fixes #46686
Cha... | [
{
"path": "src/cmd/go/internal/work/init.go",
"patch": "@@ -40,6 +40,10 @@ func BuildInit() {\n \t\tcfg.BuildPkgdir = p\n \t}\n \n+\tif cfg.BuildP <= 0 {\n+\t\tbase.Fatalf(\"go: -p must be a positive integer: %v\\n\", cfg.BuildP)\n+\t}\n+\n \t// Make sure CC, CXX, and FC are absolute paths.\n \tfor _, key :... | 2021-08-18T05:05:55 |
vercel/next.js | 73065bebe78c8891f0a424aa20257ec3f082176c | 778a2a74427262de00740994a2ec02113374633d | fix(link): do not reload when Link is in svg (#41320)Co-authored-by: Tim Neutkens <tim@timneutkens.nl>
<!--
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... | [
{
"path": "packages/next/src/client/link.tsx",
"patch": "@@ -166,7 +166,8 @@ function prefetch(\n }\n \n function isModifiedEvent(event: React.MouseEvent): boolean {\n- const { target } = event.currentTarget as HTMLAnchorElement\n+ const eventTarget = event.currentTarget as HTMLAnchorElement | SVGAElement... | 2023-02-15T10:05:10 |
huggingface/transformers | 037755ed54208eefa77673b0af2a0b13e51f2fb1 | 1168f57abffd077d7d2687087aa10ba644a76a0d | Update expected values (after switching to A10) - part 6 (#39207)
* fix
* fix
---------
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": "tests/models/aria/test_modeling_aria.py",
"patch": "@@ -13,7 +13,6 @@\n # limitations under the License.\n \"\"\"Testing suite for the PyTorch Aria model.\"\"\"\n \n-import gc\n import unittest\n \n import requests\n@@ -32,7 +31,7 @@\n from transformers.models.idefics3 import Idefics3VisionConfig... | 2025-07-03T20:45:30 |
rust-lang/rust | a611f5016af427c63b9e13106a7ae0d2f50131ac | 33aa48c1f3e58bef1437b2a58a8c48453f8e0e4f | Fix misdirected link for `TypingEnv` | [
{
"path": "src/doc/rustc-dev-guide/src/typing_parameter_envs.md",
"patch": "@@ -199,8 +199,8 @@ In the next-gen trait solver the requirement for all where clauses in the `Param\n \n Depending on what context we are performing type system operations in, different behaviour may be required. For example during... | 2025-05-20T11:26:22 |
nodejs/node | 1523111250788e0e1651d30c1fd506e9ef4ac7f0 | 24cb1f33d85fbb8e5cc9c10f488766ca8a21ddca | net: deprecate _setSimultaneousAccepts() undocumented function
This is an undocumented utility function that is of questionable
utility.
Fixes: https://github.com/nodejs/node/issues/18391
PR-URL: https://github.com/nodejs/node/pull/23760
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Anna Henningsen <a... | [
{
"path": "doc/api/deprecations.md",
"patch": "@@ -2264,6 +2264,20 @@ undocumented `COUNTER_NET_SERVER_CONNECTION()`,\n `COUNTER_HTTP_SERVER_RESPONSE()`, `COUNTER_HTTP_CLIENT_REQUEST()`, and\n `COUNTER_HTTP_CLIENT_RESPONSE()` functions have been deprecated.\n \n+<a id=\"DEP00XX\"></a>\n+### DEP00XX: net._se... | 2018-10-19T18:21:42 |
golang/go | 0c83e01e0c1df712002af8bded845fbca9677ffa | 8b471db71b95e9250f751f494a6a5359cb50d5cd | cmd/go/testdata/script: fix test script added by CL 334873
CL 334873 added the net/http import to the wrong section in
test_vet.txt. Correct this to fix the longtest builders.
Change-Id: If28409ad1c2ed3bd3a2922fc20d5e534c30fa249
Reviewed-on: https://go-review.googlesource.com/c/go/+/343169
Trust: Tobias Klauser <tobi... | [
{
"path": "src/cmd/go/testdata/script/test_vet.txt",
"patch": "@@ -51,17 +51,16 @@ func Test(t *testing.T) {\n -- p1.go --\n package p\n \n-import (\n-\t\"fmt\"\n-\t\"net/http\"\n-)\n+import \"fmt\"\n \n func F() {\n \tfmt.Printf(\"%d\") // oops\n }\n -- vetall/p.go --\n package p\n \n+import \"net/http\"\n... | 2021-08-18T07:03:44 |
vercel/next.js | 778a2a74427262de00740994a2ec02113374633d | 4697b1591d7920d4718a5c9a75f3cea3024bc304 | Fix app routes on deploy (#45931)
Follow-up to https://github.com/vercel/next.js/pull/45716 this ensures
we correctly construct the initial URL value as it must be a fully
qualified URL. Existing tests caught this failure when running in deploy
mode. | [
{
"path": "packages/next/src/server/next-server.ts",
"patch": "@@ -2051,6 +2051,8 @@ export default class NextNodeServer extends BaseServer {\n const initUrl =\n this.hostname && this.port\n ? `${protocol}://${this.hostname}:${this.port}${req.url}`\n+ : (this.nextConfig.experimental... | 2023-02-15T08:54:39 |
electron/electron | 211e386c894d0ff2b90a9c11f671d6092f428ef5 | 2915774644e3b2450aef7bdb43e15dfcd97ea28c | win: Fix linking errors | [
{
"path": "atom/common/node_bindings.cc",
"patch": "@@ -22,11 +22,6 @@\n \n using content::BrowserThread;\n \n-// Forward declaration of internal node functions.\n-namespace node {\n-void Init(int*, const char**, int*, const char***);\n-}\n-\n // Force all builtin modules to be referenced so they can actual... | 2015-04-01T13:33:08 |
rust-lang/rust | 2754f18199697c8b16439a6d32c48e57ec5daa4b | 33aa48c1f3e58bef1437b2a58a8c48453f8e0e4f | Update links between ty-module and binders
The order might have been reversed at some point, leading to the two
chapters talking about each other in the wrong order. | [
{
"path": "src/doc/rustc-dev-guide/src/ty_module/instantiating_binders.md",
"patch": "@@ -105,7 +105,8 @@ the `RePlaceholder` for the `'b` parameter is in a higher universe to track the\n \n ## Instantiating with `ReLateParam`\n \n-As discussed in a previous chapter, `RegionKind` has two variants for repres... | 2025-05-20T10:46:04 |
huggingface/transformers | 1168f57abffd077d7d2687087aa10ba644a76a0d | 7d9e52f376ad4b351ae696b0a62280cb9c63f70b | Update expected values (after switching to A10) - part 5 (#39205)
* fix
* fix
* fix
* fix
* fix
* fix
* fix
* fix
* fix
* fix
---------
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": "tests/models/emu3/test_modeling_emu3.py",
"patch": "@@ -404,10 +404,15 @@ def test_model_generation_batched(self):\n \"USER: 64*64Describe what do you see here? ASSISTANT: The image depicts a black panther in a crouched position. The panther's body is elongated and its head is... | 2025-07-03T17:56:02 |
nodejs/node | 205b6672361d8926ba2e1169254838dad3707e5b | 5ab807db3b68630be8d095848358a9ddbb52c89c | src: clean clang-tidy errors in node_file.h
* explicitly delete move overloads
* default initialize all members
* explicitly discard unused return values
* const some possibles
PR-URL: https://github.com/nodejs/node/pull/23793
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Joyee Cheung <joyeec9h3@gmail... | [
{
"path": "src/node_file.h",
"patch": "@@ -30,7 +30,7 @@ class FSContinuationData : public MemoryRetainer {\n \n uv_fs_t* req;\n int mode;\n- std::vector<std::string> paths;\n+ std::vector<std::string> paths{};\n \n void PushPath(std::string&& path) {\n paths.emplace_back(std::move(path));\n@@ -... | 2018-10-24T15:50:51 |
rust-lang/rust | 1d8db54f7634363d93232a412b265d0d196c0bb8 | f8e9e7636aabcbc29345d9614432d15b3c0c4ec7 | Add tick to RePlaceholder debug output | [
{
"path": "compiler/rustc_type_ir/src/region_kind.rs",
"patch": "@@ -193,7 +193,7 @@ impl<I: Interner> fmt::Debug for RegionKind<I> {\n \n ReVar(vid) => write!(f, \"{vid:?}\"),\n \n- RePlaceholder(placeholder) => write!(f, \"{placeholder:?}\"),\n+ RePlaceholder(placeholder)... | 2025-05-20T10:24:21 |
huggingface/transformers | 7d9e52f376ad4b351ae696b0a62280cb9c63f70b | 85d93cc6e3ad83d9f6417e3fadd8e444c52e40d7 | Fix continuous batching in `transformers serve` (#39149)
* Fix CB
* Nit
* Update src/transformers/commands/serving.py
Co-authored-by: Joao Gante <joaofranciscocardosogante@gmail.com>
* Add todos
---------
Co-authored-by: Joao Gante <joaofranciscocardosogante@gmail.com> | [
{
"path": "src/transformers/commands/serving.py",
"patch": "@@ -29,7 +29,7 @@\n \n from transformers.utils.import_utils import is_fastapi_available, is_pydantic_available, is_uvicorn_available\n \n-from .. import PreTrainedTokenizerFast, TextIteratorStreamer\n+from .. import LogitsProcessorList, PreTrainedT... | 2025-07-03T16:15:31 |
golang/go | 8b471db71b95e9250f751f494a6a5359cb50d5cd | 946e2543f878929752da9d16575dd5e96ac78532 | path/filepath: change IsAbs to treat \\host\share as an absolute path
Fixes #47123
Change-Id: I2226b8a9ea24cd88171acfbaffea2566309416de
Reviewed-on: https://go-review.googlesource.com/c/go/+/334809
Trust: Alex Brainman <alex.brainman@gmail.com>
Trust: Hajime Hoshi <hajimehoshi@gmail.com>
Reviewed-by: Alex Brainman <a... | [
{
"path": "src/path/filepath/path_test.go",
"patch": "@@ -791,6 +791,8 @@ var winisabstests = []IsAbsTest{\n \t{`c:a\\b`, false},\n \t{`c:\\a\\b`, true},\n \t{`c:/a/b`, true},\n+\t{`\\\\host\\share`, true},\n+\t{`\\\\host\\share\\`, true},\n \t{`\\\\host\\share\\foo`, true},\n \t{`//host/share/foo/bar`, tru... | 2021-07-15T14:53:47 |
electron/electron | 2980adfd79d8f6dc48407c1238306742fc0bc498 | da71175968848dc57c9311e463d8172c957c148e | Fix calling js2c | [
{
"path": "tools/coffee2c.py",
"patch": "@@ -1,15 +1,16 @@\n #!/usr/bin/env python\n \n+import contextlib\n import os\n import subprocess\n import sys\n \n \n-SOURCE_ROOT = os.path.dirname(os.path.dirname(__file__))\n+SOURCE_ROOT = os.path.abspath(os.path.dirname(os.path.dirname(__file__)))\n \n \n def main... | 2015-04-01T11:03:50 |
vercel/next.js | 4697b1591d7920d4718a5c9a75f3cea3024bc304 | 3be1287e7da6c8971ba9654ed8e89055dfb9adcf | Update font.md (#45932)
Change it '/docs/api-reference/components/font.md#preload' to 'https://nextjs.org/docs/api-reference/next/font#preload', if not, 404 caused.
## Bug
- [ ] Related issues linked using `fixes #number`
- [ ] Integration tests added
- [ ] Errors have a helpful link attached, see [`contributing.m... | [
{
"path": "docs/api-reference/next/font.md",
"patch": "@@ -83,7 +83,7 @@ Examples:\n \n ### `subsets`\n \n-The font [`subsets`](https://fonts.google.com/knowledge/glossary/subsetting) defined by an array of string values with the names of each subset you would like to be [preloaded](/docs/basic-features/fon... | 2023-02-15T06:16:18 |
nodejs/node | 5ab807db3b68630be8d095848358a9ddbb52c89c | fb897fbae0ed88593269afe320ece9340b0ec713 | src: fix resource leak in node::fs::FileHandle
PR-URL: https://github.com/nodejs/node/pull/23793
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> | [
{
"path": "src/node_file.h",
"patch": "@@ -406,7 +406,7 @@ class FileHandle : public AsyncWrap, public StreamBase {\n ref_.Reset(env->isolate(), ref);\n }\n \n- ~CloseReq() {\n+ ~CloseReq() override {\n uv_fs_req_cleanup(req());\n promise_.Reset();\n ref_.Reset();",
"ad... | 2018-10-24T15:48:47 |
huggingface/transformers | 85d93cc6e3ad83d9f6417e3fadd8e444c52e40d7 | e15b06d8dc6fa132550311d63c9758b580f39bcc | [serve] Cursor support, move docs into separate page, add more examples (#39133)
* jan docs
* rm
* [cursor] tmp commit
* Cursor working :D
* Update docs/source/en/serving.md
Co-authored-by: Pedro Cuenca <pedro@huggingface.co>
* Update docs/source/en/serving.md
Co-authored-by: Pedro Cuenca <pedro@huggingface.co>... | [
{
"path": "docs/source/en/_toctree.yml",
"patch": "@@ -100,8 +100,6 @@\n title: Distributed inference\n - local: perf_infer_cpu\n title: CPU\n- - local: tf_xla\n- title: XLA\n title: Optimization\n - local: agents\n title: Agents\n@@ -141,8 +139,6 @@\n title: GPU\n ... | 2025-07-03T16:04:16 |
golang/go | aef24d8f7db4fb895055e4543af958d7dc2eb8cc | ddfcc02352feb9e15ff9aa423bb49bfb37d689a3 | cmd/internal/obj/arm64: fix the encoding error when operating with ZR
Some arm64 instructions accept ZR as its destination register, such as MOVD,
AND, ADD etc. although it doesn't seem to make much sense, but we should
make sure the encoding is correct. However there exists some encoding mistakes
in the current assem... | [
{
"path": "src/cmd/asm/internal/asm/testdata/arm64.s",
"patch": "@@ -334,6 +334,8 @@ TEXT\tfoo(SB), DUPOK|NOSPLIT, $-8\n \tEONW\t$0x6006000060060, R5 // EONW\t$1689262177517664, R5 // 1b0c8052db00a072a5003b4a\n \tORNW\t$0x6006000060060, R5 // ORNW\t$1689262177517664, ... | 2021-06-21T03:04:42 |
vercel/next.js | 3be1287e7da6c8971ba9654ed8e89055dfb9adcf | 7d8f85bd8dbd767dfac0d92eed651877268e62cb | test(integration): fix skip retry count logic (#45930)
<!--
Thanks for opening a PR! Your contribution is much appreciated.
To make sure your PR is handled as smoothly as possible we request that
you follow the checklist sections below.
Choose the right checklist for the change(s) that you're making:
-->
This ... | [
{
"path": "packages/next/src/build/swc/index.ts",
"patch": "@@ -8,6 +8,7 @@ import { getParserOptions } from './options'\n import { eventSwcLoadFailure } from '../../telemetry/events/swc-load-failure'\n import { patchIncorrectLockfile } from '../../lib/patch-incorrect-lockfile'\n import { downloadWasmSwc } ... | 2023-02-15T05:56:08 |
rust-lang/rust | 47b9e373cba69d66da9f91345219ff4f07eba84a | 7e7c2c3947089834791a9d302f76947c00300b7d | Revert "Fix stack overflow in exhaustiveness due to recursive HIR opaque type values"
This reverts commit b08e9c2a60f4dbab4bdaa733727947b3395de329. | [
{
"path": "compiler/rustc_pattern_analysis/src/rustc.rs",
"patch": "@@ -1,6 +1,5 @@\n use std::fmt;\n use std::iter::once;\n-use std::ops::ControlFlow;\n \n use rustc_abi::{FIRST_VARIANT, FieldIdx, Integer, VariantIdx};\n use rustc_arena::DroplessArena;\n@@ -12,8 +11,7 @@ use rustc_middle::mir::{self, Const... | 2025-04-28T19:41:37 |
huggingface/transformers | e15b06d8dc6fa132550311d63c9758b580f39bcc | a25fc3592eec7a18aa20fe5d85bd335477896cbc | [typing] better return typehints for `from_pretrained` (#39184)
* config
* processor
* feature-extractor
* jukebox
* fixup
* update other methods in config
* remove "PretrainedConfig" annotations | [
{
"path": "src/transformers/configuration_utils.py",
"patch": "@@ -18,7 +18,7 @@\n import json\n import os\n import warnings\n-from typing import Any, Optional, Union\n+from typing import Any, Optional, TypeVar, Union\n \n from packaging import version\n \n@@ -42,6 +42,10 @@\n logger = logging.get_logger(__... | 2025-07-03T14:22:47 |
electron/electron | 430a6c2915b0fa90b6de3ee075278b204323cff0 | acd6797a5f9347c049e59f1bde971dedcc193d10 | fix link | [
{
"path": "docs/api/browser-window.md",
"patch": "@@ -250,7 +250,7 @@ You should only use this method when the renderer process (web page) has crashed\n \n Try to close the window, this has the same effect with user manually clicking\n the close button of the window. The web page may cancel the close though... | 2015-04-01T00:24:39 |
golang/go | ddfcc02352feb9e15ff9aa423bb49bfb37d689a3 | a2a9a7b5132c7a0b1d4c297018d6072101456709 | cmd/link: do not use GO_LDSO when cross compile
GO_LDSO is a setting that is set when the toolchain is build. It
only makes sense to use it on the host platform. Do not use it
when targetting a different platform.
In the past it was not a problem as GO_LDSO was almost always
unset. Now, with CL 301989 it is almost al... | [
{
"path": "src/cmd/link/internal/ld/elf.go",
"patch": "@@ -16,6 +16,7 @@ import (\n \t\"fmt\"\n \t\"internal/buildcfg\"\n \t\"path/filepath\"\n+\t\"runtime\"\n \t\"sort\"\n \t\"strings\"\n )\n@@ -1745,7 +1746,7 @@ func asmbElf(ctxt *Link) {\n \t\tsh.Flags = uint64(elf.SHF_ALLOC)\n \t\tsh.Addralign = 1\n \n-... | 2021-08-17T21:21:03 |
vercel/next.js | 08aafe4b2e162755781c56b25c8f22eccc9cdf4b | 17aca74bd0e0c7f34cc0fe26e88a58b00b1b4ce9 | Fix syntax error in supabase auth example (#45926) | [
{
"path": "examples/with-supabase-auth-realtime-db/pages/index.js",
"patch": "@@ -4,7 +4,7 @@ import { Auth, Card, Typography, Space, Button, Icon } from '@supabase/ui'\n import { supabase } from '../lib/initSupabase'\n import { useEffect, useState } from 'react'\n \n-const fetcher = (url, token) =>\n+const... | 2023-02-15T03:46:08 |
rust-lang/rust | 7e7c2c3947089834791a9d302f76947c00300b7d | f8e9e7636aabcbc29345d9614432d15b3c0c4ec7 | Just error on recursive opaque ty in HIR typeck | [
{
"path": "compiler/rustc_hir_typeck/src/writeback.rs",
"patch": "@@ -9,17 +9,21 @@\n //! which creates a new `TypeckResults` which doesn't contain any inference variables.\n \n use std::mem;\n+use std::ops::ControlFlow;\n \n+use rustc_data_structures::fx::{FxHashSet, FxIndexMap};\n use rustc_data_structure... | 2025-04-05T18:06:47 |
huggingface/transformers | a25fc3592eec7a18aa20fe5d85bd335477896cbc | b31e9d19a6607aafdd921bc592897900712ba61d | Update expected values (after switching to A10) - part 4 (#39189)
* fix
* fix
* fix
* fix
* fix
* fix
* fix
* fix
* fix
* fix
* fix
* fix
---------
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": "tests/models/align/test_modeling_align.py",
"patch": "@@ -462,6 +462,9 @@ def test_model(self):\n def test_config(self):\n self.config_tester.run_common_tests()\n \n+ def test_batching_equivalence(self, atol=3e-4, rtol=3e-4):\n+ super().test_batching_equivalence(atol=atol, r... | 2025-07-03T13:13:06 |
electron/electron | ce3d9f44ff46a4294d9eee472f7c5a38635c271d | c5c686fe8cbd04209b02a6de7866744fc6522287 | win: Fix compilation error
MSDN said, "These are pre-Win32 error codes and are no longer supported or
defined in any public header file." | [
{
"path": "atom/common/platform_util_win.cc",
"patch": "@@ -189,7 +189,8 @@ bool MoveItemToTrash(const base::FilePath& path) {\n // an empty directory and some return 0x402 when they should be returning\n // ERROR_FILE_NOT_FOUND. MSDN says Vista and up won't return 0x402. Windows 7\n // can return DE... | 2015-03-30T01:55:02 |
vercel/next.js | e284e3173c1c8bc30767944acbfbc0d3a5d11791 | 1127df4d6a84e6ffb93640897abacf6f2b20f19e | fix: proper type for typed `Link` (#45915)
<!--
Thanks for opening a PR! Your contribution is much appreciated.
To make sure your PR is handled as smoothly as possible we request that
you follow the checklist sections below.
Choose the right checklist for the change(s) that you're making:
-->
Currently after ena... | [
{
"path": "packages/next/src/build/webpack/plugins/flight-types-plugin.ts",
"patch": "@@ -143,9 +143,7 @@ declare module 'next/link' {\n import { UrlObject } from 'url'\n import { LinkProps as OriginalLinkProps } from 'next/dist/client/link'\n \n- type LinkRestProps = Omit<OriginalLinkProps, 'href'> & ... | 2023-02-15T02:55:51 |
golang/go | a2a9a7b5132c7a0b1d4c297018d6072101456709 | 3848488f0f9ea597e9fc69cfd8e942ea7cf35311 | cmd/go: make mod init disallow invalid major version suffixes
This CL reuses the SplitPathVersion function from the module package to
detect invalid major version suffixes and return a relevant error
message along with a suggested fix.
Fixes #44052
Fixes #46085
Change-Id: I6c06f31a134e864a1d9b6e00c048ca1c59b4365e
Re... | [
{
"path": "src/cmd/go/internal/modload/init.go",
"patch": "@@ -523,6 +523,13 @@ func CreateModFile(ctx context.Context, modPath string) {\n \t\t\t}\n \t\t}\n \t\tbase.Fatalf(\"go: %v\", err)\n+\t} else if _, _, ok := module.SplitPathVersion(modPath); !ok {\n+\t\tif strings.HasPrefix(modPath, \"gopkg.in/\") ... | 2021-02-02T13:25:21 |
nodejs/node | 6786ff4d3688512d8b717ec24188818ac5493d0b | d8f2d2726143ecfbf99b90b7bbbc6f41b3cd95fc | deps: icu 63.1 bump (CLDR 34)
- Full release notes: http://site.icu-project.org/download/63
Fixes: https://github.com/nodejs/node/issues/22344
PR-URL: https://github.com/nodejs/node/pull/23715
Reviewed-By: Refael Ackermann <refack@gmail.com>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: Gus Caplan <me@gu... | [
{
"path": "deps/icu-small/README-SMALL-ICU.txt",
"patch": "@@ -1,8 +1,8 @@\n Small ICU sources - auto generated by shrink-icu-src.py\n \n This directory contains the ICU subset used by --with-intl=small-icu (the default)\n-It is a strict subset of ICU 62 source files with the following exception(s):\n-* dep... | 2018-10-17T16:43:52 |
rust-lang/rust | e5617a79fba6705c36b8690f43d2ce6deb0a59d3 | f00c58b374e691e89ba034bfcb9afeebac9fda37 | fix: `needless_for_each` suggests wrongly when closure has no braces | [
{
"path": "clippy_lints/src/needless_for_each.rs",
"patch": "@@ -74,7 +74,7 @@ impl<'tcx> LateLintPass<'tcx> for NeedlessForEach {\n && let body = cx.tcx.hir_body(body)\n // Skip the lint if the body is not safe, so as not to suggest `for … in … unsafe {}`\n // and sugges... | 2025-05-05T06:20:08 |
huggingface/transformers | b31e9d19a6607aafdd921bc592897900712ba61d | 18e0cae207a38d2c430b5fa08f9597312d1c1ab3 | [`Dia`] Change ckpt path in docs (#39181)
fix ckpt path | [
{
"path": "docs/source/en/model_doc/dia.md",
"patch": "@@ -44,7 +44,7 @@ tokens and decodes them back into audio.\n from transformers import AutoProcessor, DiaForConditionalGeneration\n \n torch_device = \"cuda\"\n-model_checkpoint = \"buttercrab/dia-v1-1.6b\"\n+model_checkpoint = \"nari-labs/Dia-1.6B-0626\... | 2025-07-03T10:02:58 |
electron/electron | c5c686fe8cbd04209b02a6de7866744fc6522287 | 59c95f6a7db3d445318c76f6f88d95fc611ccb8a | linux: Fix compilation error | [
{
"path": "atom/browser/native_window_views.cc",
"patch": "@@ -682,11 +682,11 @@ bool NativeWindowViews::IsVisibleOnAllWorkspaces() {\n #if defined(USE_X11)\n // Use the presence/absence of _NET_WM_STATE_STICKY in _NET_WM_STATE to\n // determine whether the current window is visible on all workspaces.\n... | 2015-03-29T13:35:40 |
golang/go | 3848488f0f9ea597e9fc69cfd8e942ea7cf35311 | ace1730a417bf5cb1662407ef12013ca7e4e5f84 | cmd/go/internal/test: add an all sentinel to -vet
The vet flag either accepts a list of vets to run, or a distinguished
value, off, to disable vet during test. By default only 100% reliable
checks are run, thus there is no way to run all vets. This change adds
another distinguished value, all, that runs every vet, by ... | [
{
"path": "src/cmd/go/alldocs.go",
"patch": "@@ -1405,7 +1405,8 @@\n // used. That subset is: 'atomic', 'bool', 'buildtags', 'errorsas',\n // 'ifaceassert', 'nilfunc', 'printf', and 'stringintconv'. You can see\n // the documentation for these and other vet tests via \"go doc cmd/vet\".\n-// To disable the ... | 2021-07-18T08:12:23 |
nodejs/node | d8f2d2726143ecfbf99b90b7bbbc6f41b3cd95fc | 5d80ae3acdd812651b3b193cd31e0b81c214b50e | tools, icu: actually failover if there are multiple URLs
Building on #23269, if multiple ICU download URLs are present, try the
next one in case of error.
Part of the ICU 63.1 bump, but independent code-wise.
https://github.com/nodejs/node/issues/23244
PR-URL: https://github.com/nodejs/node/pull/23715
Fixes: https:/... | [
{
"path": "configure.py",
"patch": "@@ -1287,8 +1287,8 @@ def icu_download(path):\n if (md5 == gotmd5):\n return targetfile\n else:\n- error('Expected: %s *MISMATCH*' % md5)\n- error('\\n ** Corrupted ZIP? Delete %s to retry download.\\n' % targetfile)\n+ ... | 2018-10-17T16:41:07 |
huggingface/transformers | 18e0cae207a38d2c430b5fa08f9597312d1c1ab3 | bff964c429a5bfc8ca85789f20f37d6bfb60b294 | Fix many HPU failures in the CI (#39066)
* more torch.hpu patches
* increase top_k because it results in flaky behavior when Tempreture, TopP and TopK are used together, which ends up killing beams early.
* remove temporal fix
* fix scatter operation when input and src are the same
* trigger
* fix and reduce
* s... | [
{
"path": ".github/workflows/self-scheduled-intel-gaudi.yml",
"patch": "@@ -84,8 +84,6 @@ jobs:\n machine_type: ${{ matrix.machine_type }}\n folder_slices: ${{ needs.setup.outputs.folder_slices }}\n runner: ${{ inputs.runner_scale_set }}-${{ matrix.machine_type }}\n- report_name_prefi... | 2025-07-03T09:17:27 |
vercel/next.js | 1127df4d6a84e6ffb93640897abacf6f2b20f19e | 24186f51c49f388884401fda0642ec3d33050bc7 | Make app-render error logging less verbose in dev (#45472)
Make the app-render error less verbose in dev. Reuse
`logErrorWithOriginalStack` from the dev server but hide frames from
`node_modules`, `next/dist/compiled` and `node:internal` if we're in the
app directory. Also removes `webpack-internal` from the frame ... | [
{
"path": "packages/next/src/server/app-render.tsx",
"patch": "@@ -191,6 +191,7 @@ export type RenderOptsPartial = {\n incrementalCache?: import('./lib/incremental-cache').IncrementalCache\n isRevalidate?: boolean\n nextExport?: boolean\n+ appDirDevErrorLogger?: (err: any) => Promise<void>\n }\n \n e... | 2023-02-15T02:46:30 |
electron/electron | a53bed567e765ea7c2416208b035b9c55db0eac3 | 9b68777b4b2ac73119129f315a6cd65d9bba3025 | Upgrade brightray to enable content module's webui
Fixes #663. | [
{
"path": "vendor/brightray",
"patch": "@@ -1 +1 @@\n-Subproject commit 3d95eecf294d74d8a610e948551958e129db18c0\n+Subproject commit f1c0913e86ab9ed6a9a78f08bf5ba572ada53b29",
"additions": 1,
"deletions": 1,
"language": "Unknown"
}
] | 2015-03-29T13:08:50 |
golang/go | ace1730a417bf5cb1662407ef12013ca7e4e5f84 | 0f85b0c0e1dc96a165645bf6da3693e8a3603ebc | cmd/go: go test flag -failfast should be cacheable
Add failfast to cacheable list and update docs
Fixes #47355
Change-Id: I75b371c45b80a3b179ff070b7b9d092a504380c0
GitHub-Last-Rev: abe61fd48c01fab4ef5ea5db013dcce4ead09c6f
GitHub-Pull-Request: golang/go#47371
Reviewed-on: https://go-review.googlesource.com/c/go/+/337... | [
{
"path": "src/cmd/go/alldocs.go",
"patch": "@@ -1446,16 +1446,16 @@\n // The rule for a match in the cache is that the run involves the same\n // test binary and the flags on the command line come entirely from a\n // restricted set of 'cacheable' test flags, defined as -benchtime, -cpu,\n-// -list, -paral... | 2021-07-28T02:06:10 |
huggingface/transformers | bff964c429a5bfc8ca85789f20f37d6bfb60b294 | 8178c43112295bf8c4ef04c667efbbbfd34b8bca | Decouple device_map='auto' and tp_plan='auto' (#38942)
* dissociate
* better place
* fix | [
{
"path": "src/transformers/modeling_utils.py",
"patch": "@@ -4431,10 +4431,12 @@ def from_pretrained(\n \"`tp_plan` and `device_map` are mutually exclusive. Choose either one for parallelization.\"\n )\n \n- # If torchrun was used, make sure to TP by default. This way peo... | 2025-07-03T09:07:11 |
nodejs/node | 5d80ae3acdd812651b3b193cd31e0b81c214b50e | 036fbdb63d603a64bd8562ec9331dfb7a5c5075c | trace_events: forbid tracing modifications from worker threads
Forbid modifying tracing state from worker threads, either
through the built-in module or inspector sessions, since
the main thread owns all global state, and at least
the `async_hooks` integration is definitely not thread
safe in its current state.
PR-UR... | [
{
"path": "doc/api/tracing.md",
"patch": "@@ -82,6 +82,8 @@ as the one used by `process.hrtime()`\n however the trace-event timestamps are expressed in microseconds,\n unlike `process.hrtime()` which returns nanoseconds.\n \n+The features from this module are not available in [`Worker`][] threads.\n+\n ## T... | 2018-10-20T09:51:29 |
vercel/next.js | e50d22b992d3faa314116e2630215896c3814b1c | c01f8da55930fd0dafe5c82658268247e2ced7fa | Include `tsconfig.json` in tests (#45879)
As per
https://github.com/vercel/next.js/pull/45670#issuecomment-1428729000,
it's very necessary to include `tsconfig.json` in our tests as we need
to test specific TS configurations sometimes.
## Bug
- [ ] Related issues linked using `fixes #number`
- [ ] Integratio... | [
{
"path": ".gitignore",
"patch": "@@ -25,7 +25,6 @@ coverage\n # test output\n test/**/out*\n test/**/next-env.d.ts\n-test/**/tsconfig.json\n .DS_Store\n /e2e-tests\n test/tmp/**",
"additions": 0,
"deletions": 1,
"language": "Unknown"
},
{
"path": "test/e2e/app-dir/metadata/tsconfig.json... | 2023-02-15T02:37:09 |
electron/electron | 9b68777b4b2ac73119129f315a6cd65d9bba3025 | 3b1be743ef8b9ab1d2bd090d3d781bed5976ab96 | Minor fixes of #1309
* Line length should <= 80 cols.
* Add missing "s". | [
{
"path": "atom/browser/native_window_views.cc",
"patch": "@@ -683,10 +683,10 @@ bool NativeWindowViews::IsVisibleOnAllWorkspaces() {\n // Use the presence/absence of _NET_WM_STATE_STICKY in _NET_WM_STATE to\n // determine whether the current window is visible on all workspaces.\n XAtom sticky_atom = ... | 2015-03-29T12:40:02 |
golang/go | 0f85b0c0e1dc96a165645bf6da3693e8a3603ebc | 9d9e3291faee4b01165247956e8555eb1bb291f1 | go/types: fix method lookup for type-parameter based types
This is a clean port of CL 342990.
Fixes #47747.
Change-Id: I2e86fb8b70d42a220ac1ba25798d9e58227ba5f6
Reviewed-on: https://go-review.googlesource.com/c/go/+/342991
Trust: Robert Griesemer <gri@golang.org>
Run-TryBot: Robert Griesemer <gri@golang.org>
TryBot-... | [
{
"path": "src/go/types/lookup.go",
"patch": "@@ -76,9 +76,12 @@ func lookupFieldOrMethod(T Type, addressable bool, pkg *Package, name string) (o\n \ttyp, isPtr := deref(T)\n \n \t// *typ where typ is an interface or type parameter has no methods.\n-\tswitch under(typ).(type) {\n-\tcase *Interface, *TypePar... | 2021-08-17T18:55:39 |
rust-lang/rust | 0653799745f9f3b09e18b8cf16cb863ad8ea646d | 86662dced5b01e3ae93dabf07935c326e1c4ff7b | Small typo and style fixes in binders.md
Normally I refrain from nit picking, but this seamed worth it. | [
{
"path": "src/doc/rustc-dev-guide/src/ty_module/binders.md",
"patch": "@@ -1,6 +1,6 @@\n # `Binder` and Higher ranked regions\n \n-Sometimes we define generic parameters not on an item but as part of a type or a where clauses. As an example the type `for<'a> fn(&'a u32)` or the where clause `for<'a> T: Tra... | 2025-05-20T08:41:55 |
Subsets and Splits
Assembly Language GitHub Issues
Retrieves a sample of assembly-language related commits with their details, but doesn't provide meaningful analysis or patterns beyond basic filtering.
Swift Compiler Issues Analysis
Retrieves all training data for the Swift programming language repository, providing basic filtering but offering limited analytical insight beyond identifying relevant code examples.