repo
stringclasses
15 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
64.3k
files
listlengths
1
300
timestamp
timestamp[s]date
2013-03-13 20:45:00
2026-04-11 07:48:46
huggingface/transformers
8dfc8e8cfc80492e3af0e3d50dcc1803d3654634
2166e26cb1999d1fc6555bd4c1974c4464d1ea57
:facepalm: CB nit! (#41413) * :facepalm: * updates * update cb simple * merge * up * update * fix * up * nit * rumble this is annoying * update * update * up * fix * .... * cleanup a bit * nit * typo * typing and typo * nit * updates * up * final fix! * update * fix more import issues * nuke ...
[ { "path": "examples/pytorch/continuous_batching_simple.py", "patch": "@@ -33,15 +33,18 @@\n parser.add_argument(\"--max-batch-tokens\", \"-b\", type=int, default=None)\n parser.add_argument(\"--attn\", type=str, default=\"kernels-community/flash-attn\", help=\"Attention implementation\")\n parse...
2025-10-08T11:36:27
vercel/next.js
dfcdf84c8268f82ff2e23e41ccecd2752e6f6d65
c7fa87e28eb216bc393018f5cf7ce6b94bad53ca
feat(turbopack): Consider cycles while spliting modules (vercel/turbo#4595) ### Description This is optimization for modules with cyclic dependencies between AST nodes. - Fixes WEB-706. ### Testing Instructions Look at `output.mdx` using GitHub diff view, and you can see it rendered by selecting `Open file` from ...
[ { "path": "crates/turbopack-ecmascript/src/tree_shake/graph.rs", "patch": "@@ -370,9 +370,6 @@ impl DepGraph {\n global_done: &mut FxHashSet<u32>,\n group_done: &mut FxHashSet<u32>,\n ) -> bool {\n- // TODO(WEB-706): Consider cycles\n- //\n-\n ...
2023-04-25T10:13:22
rust-lang/rust
5ab5f8a24a99cdbb178c886487d4c1971b86a32b
672452d573e3f499a8edc4308400a6d116974938
make error codes reflect reality better
[ { "path": "compiler/rustc_attr_parsing/messages.ftl", "patch": "@@ -121,10 +121,6 @@ attr_parsing_unsupported_literal_cfg_boolean =\n literal in `cfg` predicate value must be a boolean\n attr_parsing_unsupported_literal_cfg_string =\n literal in `cfg` predicate value must be a string\n-attr_parsing_...
2025-03-08T17:58:05
golang/go
42fa03a88ca7767c1869e55b3144a9828d29b7b5
0a54a6826ebd19e5947af57993399652c62801de
cmd/compile/internal/types2: better position for "3-index slice of string" error As a result, slightly narrow position tolerance for tests. Change-Id: I543dc2b7b9a7940b0684067d1961165b2b4812bb Reviewed-on: https://go-review.googlesource.com/c/go/+/363670 Trust: Robert Griesemer <gri@golang.org> Run-TryBot: Robert Gri...
[ { "path": "src/cmd/compile/internal/types2/check_test.go", "patch": "@@ -277,7 +277,7 @@ func TestManual(t *testing.T) {\n \n // TODO(gri) go/types has extra TestLongConstants and TestIndexRepresentability tests\n \n-func TestCheck(t *testing.T) { DefPredeclaredTestFuncs(); testDirFiles(t, \"testdata/ch...
2021-11-13T21:37:15
huggingface/transformers
2166e26cb1999d1fc6555bd4c1974c4464d1ea57
b13ee63b5a2a59fd76ec87608b685dfbf5605ff4
[torchao] Add regex support for ModuleFqnToConfig (#41242) * Add regex support for ModuleFqnToConfig Summary: Similar to https://github.com/pytorch/ao/pull/3084 we added regex support in transformers so people can use regex to quantize the models. See https://github.com/pytorch/ao/pull/3084 for docs and precedence o...
[ { "path": "docs/source/en/quantization/torchao.md", "patch": "@@ -445,7 +445,7 @@ output_text = tokenizer.batch_decode(\n print(output_text)\n ```\n \n-#### 2. Quantizing different layers with different quantization configs\n+#### 2. Quantizing different layers with different quantization configs (no regex)...
2025-10-08T11:05:15
nodejs/node
46bf0d0f4fde508d48ef91e4044c2ce0d3f942ca
61d1334e5bc422f72ddc7eb5ad259d7b38f3bcdf
util: rename callbackified function This makes sure the function returned by `util.callbackify()` has a new name that is not identical to the inputs function name. PR-URL: https://github.com/nodejs/node/pull/26893 Fixes: https://github.com/nodejs/node/issues/26890 Reviewed-By: James M Snell <jasnell@gmail.com> Review...
[ { "path": "lib/util.js", "patch": "@@ -196,11 +196,14 @@ function callbackify(original) {\n \n Object.setPrototypeOf(callbackified, Object.getPrototypeOf(original));\n const descriptors = Object.getOwnPropertyDescriptors(original);\n- // It is possible to manipulate a functions `length` property. This ...
2019-03-24T21:11:47
vercel/next.js
ee86ace5cec2dfa217022bc7e564a719b3578ff5
a18f50a3216c8dca0ebb164af2a4a5ce1ff47b45
Fix hash apply after server-patch action (#48813) ### What? Mux reported that their website does not scroll to hash when clicking a search result. Found it's related to `server-patch` triggering and overriding the hashFragment. That should be preserved similarly to `apply`. ### How? handleMutable had a default of `...
[ { "path": "packages/next/src/client/components/router-reducer/handle-mutable.ts", "patch": "@@ -39,7 +39,7 @@ export function handleMutable(\n mutable.hashFragment && mutable.hashFragment !== ''\n ? // Remove leading # and decode hash to make non-latin hashes work.\n decodeURIC...
2023-04-25T09:05:44
golang/go
cfcd71790f0ca8c2ec1ae5989cd60ad1e83ee40c
0a39e4a89d26d8375bb5877f736dcc0047894060
cmd/compile/internal/types2: allow slicing for operands with []byte|string type sets Fixes #49566. Change-Id: I80ff4ca661f82b0981d51e0997d5988a9b82f508 Reviewed-on: https://go-review.googlesource.com/c/go/+/363662 Trust: Robert Griesemer <gri@golang.org> Run-TryBot: Robert Griesemer <gri@golang.org> Reviewed-by: Robe...
[ { "path": "src/cmd/compile/internal/types2/builtins.go", "patch": "@@ -337,26 +337,11 @@ func (check *Checker) builtin(x *operand, call *syntax.CallExpr, id builtinId) (\n \t\tif y.mode == invalid {\n \t\t\treturn\n \t\t}\n-\t\t// src, _ := structuralType(y.typ).(*Slice); but also accepts strings\n-\t\tvar ...
2021-11-12T23:08:00
nodejs/node
61d1334e5bc422f72ddc7eb5ad259d7b38f3bcdf
b1094dbe19f31f7a69ad16d193748f610b159073
util: increase function length when using `callbackify()` The returned function from `util.callbackify()` should increase the `length` property by one due to the added callback. PR-URL: https://github.com/nodejs/node/pull/26893 Fixes: https://github.com/nodejs/node/issues/26890 Reviewed-By: James M Snell <jasnell@gma...
[ { "path": "lib/util.js", "patch": "@@ -195,8 +195,13 @@ function callbackify(original) {\n }\n \n Object.setPrototypeOf(callbackified, Object.getPrototypeOf(original));\n- Object.defineProperties(callbackified,\n- Object.getOwnPropertyDescriptors(original));\n+ const descripto...
2019-03-24T20:59:20
electron/electron
0f5a3baff4f6d1bcfb1ff9efbb05eff9d5e14ebc
bf5e9e4f4d19b05cf2fed73b7efa24aa26a6c4c8
Fix https://github.com/atom/electron/issues/3565 by adding a typeof
[ { "path": "atom/browser/lib/rpc-server.coffee", "patch": "@@ -107,7 +107,7 @@ unwrapArgs = (sender, args) ->\n # style function and the caller didn't pass a callback.\n callFunction = (event, func, caller, args) ->\n funcMarkedAsync = v8Util.getHiddenValue(func, 'asynchronous')\n- funcPassedCallback = ar...
2015-11-24T22:49:52
huggingface/transformers
b13ee63b5a2a59fd76ec87608b685dfbf5605ff4
1c5ac899e83c55ff64a020ae98ff2ae149791585
enable new model uts to xpu and fix some failures on xpu (#41386) * enable new model uts to xpu and fix some failures on xpu Signed-off-by: Yao, Matrix <matrix.yao@intel.com> * add more Signed-off-by: Yao, Matrix <matrix.yao@intel.com> * fix style Signed-off-by: Yao, Matrix <matrix.yao@intel.com> * Update test_m...
[ { "path": "tests/models/cohere2_vision/test_modeling_cohere2_vision.py", "patch": "@@ -223,7 +223,7 @@ def test_model_integration_forward(self):\n \n EXPECTED_LOGITS = Expectations(\n {\n- (\"xpu\", 3): [0.4109, 0.1532, 0.8018, 2.1328, 0.5483],\n+ (\"xpu\", ...
2025-10-08T10:14:50
vercel/next.js
c7fa87e28eb216bc393018f5cf7ce6b94bad53ca
1414ae6ae8c296bd59034098649fe95bcd61986e
fix error reporting for get_from_source errors (vercel/turbo#4690) ### Description We never reported issues from get_from_source. This leads to cryptic fatal errors from get_from_source without further details. Now we report the actual issues with show the details.
[ { "path": "crates/turbopack-dev-server/src/http.rs", "patch": "@@ -15,10 +15,13 @@ use turbo_tasks_bytes::Bytes;\n use turbo_tasks_fs::{FileContent, FileContentReadRef};\n use turbopack_core::{asset::AssetContent, issue::IssueReporterVc, version::VersionedContent};\n \n-use crate::source::{\n- request::S...
2023-04-25T08:57:38
golang/go
560dc9712d4bc900b5ab32b518ba4de2a9bc588c
92655582d0d3b739a1fc88c73cc49a24eb57f845
cmd/compile: error when using internal type declarations in generic functions We hope to support this feature one day, but it doesn't work currently. Issue a nice error message instead of having the compiler crash. Update #47631 Change-Id: I0359411410acbaf9a5b9dbb988cd933de1bb8438 Reviewed-on: https://go-review.goog...
[ { "path": "src/cmd/compile/internal/noder/stmt.go", "patch": "@@ -46,6 +46,10 @@ func (g *irgen) stmt(stmt syntax.Stmt) ir.Node {\n \t\tn.SetTypecheck(1)\n \t\treturn n\n \tcase *syntax.DeclStmt:\n+\t\tif _, ok := stmt.DeclList[0].(*syntax.TypeDecl); ok && g.topFuncIsGeneric {\n+\t\t\t// TODO: remove this r...
2021-11-15T18:01:43
nodejs/node
115f0f5a57f50f6b039f28a56910207f92df116d
7bddfcc61a5a7d04583a8c4fec462ca5ce45b677
module: throw an error for invalid package.json main entries We currently ignore invalid `main` entries in package.json files. This does not seem to be very user friendly as it's certainly an error if the `main` entry is not a valid file name. So instead of trying to resolve the file otherwise, throw an error immediat...
[ { "path": "doc/api/deprecations.md", "patch": "@@ -2400,6 +2400,22 @@ Please use the publicly documented [`timeout.refresh()`][] instead.\n If unreferencing the timeout is necessary, [`timeout.unref()`][] can be used\n with no performance impact since Node.js 10.\n \n+<a id=\"DEP0128\"></a>\n+### DEP0128: m...
2019-03-20T16:00:57
huggingface/transformers
957b1f3696e6e8757058cebb3d8987c0a975f2df
13791d8f482aad9ac31c29866eafc760ccbfa0f3
Fixing comments in __init__ file (#41414) nit
[ { "path": "src/transformers/__init__.py", "patch": "@@ -705,8 +705,6 @@\n \n # Trainer\n from .trainer import Trainer as Trainer\n-\n- # Trainer\n from .trainer_callback import DefaultFlowCallback as DefaultFlowCallback\n from .trainer_callback import EarlyStoppingCallback as EarlyStoppin...
2025-10-08T10:07:26
vercel/next.js
1414ae6ae8c296bd59034098649fe95bcd61986e
16ab2d489724975dc24fc656f9b6a8b412e0c74a
Daemon server rust port (vercel/turbo#4306) ### Description This ports the daemon server to rust, leaving only run an prune in go-land. This needs some polish but I would like to get some feedback now. I have also added a flag for running the grpc server over http instead, which is useful for debugging. It has s...
[ { "path": "crates/glob-match/benches/bench.rs", "patch": "@@ -17,7 +17,9 @@ fn globset(pat: &str, s: &str) -> bool {\n }\n \n fn glob_match_crate(b: &mut Criterion) {\n- b.bench_function(\"mine\", |b| b.iter(|| assert!(glob_match(GLOB, PATH))));\n+ b.bench_function(\"mine\", |b| {\n+ b.iter(|| assert!(...
2023-04-25T08:35:33
golang/go
92655582d0d3b739a1fc88c73cc49a24eb57f845
b6342a02ad901e015e1c4eb9f862824029efb7b7
cmd/compile/internal/types2: add a check for nil reason in assignableTo A recent change to error message formatting was missing a nil check. Fixes #49592 Change-Id: Ic1843e0277ba75eec0e8e41fe34b59c323d7ea31 Reviewed-on: https://go-review.googlesource.com/c/go/+/364034 Trust: Robert Findley <rfindley@google.com> Trus...
[ { "path": "src/cmd/compile/internal/types2/operand.go", "patch": "@@ -316,7 +316,9 @@ func (x *operand) assignableTo(check *Checker, T Type, reason *string) (bool, er\n \t// not an interface.\n \tif check != nil && check.conf.CompilerErrorMessages {\n \t\tif isInterfacePtr(Tu) {\n-\t\t\t*reason = check.spri...
2021-11-15T16:47:55
nodejs/node
2d5387e143255d97210b25280df1addb7f5ccb34
f87b3a72cde17788bfd87eda16dd24117f5f4b02
tls: add debugging to native TLS code PR-URL: https://github.com/nodejs/node/pull/26843 Reviewed-By: Sam Roberts <vieuxtech@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Minwoo Jung <minwoo@nodesource.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: James M Snell <jasnell@gmail....
[ { "path": "src/tls_wrap.cc", "patch": "@@ -21,6 +21,7 @@\n \n #include \"tls_wrap.h\"\n #include \"async_wrap-inl.h\"\n+#include \"debug_utils.h\"\n #include \"node_buffer.h\" // Buffer\n #include \"node_crypto.h\" // SecureContext\n #include \"node_crypto_bio.h\" // NodeBIO\n@@ -72,15 +73,18 @@ TLSWrap:...
2019-03-21T16:01:12
electron/electron
c060539562523507833b3d55641d7a7e9439cac8
2468c7c34ede958007fbea35c77359f037a69463
Only create NotificationPresenter when succeeded to initailize toast manager This fix crash when we failed to initailize toast manager.
[ { "path": "brightray/browser/win/notification_presenter_win.cc", "patch": "@@ -27,7 +27,10 @@ void RemoveNotification(base::WeakPtr<WindowsToastNotification> notification) {\n \n // static\n NotificationPresenter* NotificationPresenter::Create() {\n- return new NotificationPresenterWin;\n+ if (WindowsToas...
2015-11-24T06:40:58
huggingface/transformers
13791d8f482aad9ac31c29866eafc760ccbfa0f3
7e475552be13be0d6c98adf02c199709a0d7b927
[v5] Bump min version of bitsandbytes to 0.46.1 (#41283) * bump bitsandbytes to 0.46.1 * huge cleanup * style * fix * req * fix * importerror * fix
[ { "path": "src/transformers/integrations/__init__.py", "patch": "@@ -34,10 +34,7 @@\n \"bitsandbytes\": [\n \"dequantize_and_replace\",\n \"get_keys_to_not_convert\",\n- \"replace_8bit_linear\",\n \"replace_with_bnb_linear\",\n- \"set_module_8bit_tensor_to_device\",...
2025-10-08T10:04:26
vercel/next.js
a18f50a3216c8dca0ebb164af2a4a5ce1ff47b45
79c73887cdad5c80035c76b6ac0d8bb79e558296
fix: Update `@swc/helpers` to `v0.5.1` (#48808) ### What? Update `@swc/helpers` to `v0.5.1`. ### Why? Webpack merges `@swc/helpers@v0.4.x` and `@swc/helpers@v0.5.x`, due to `resolve.alias` config in https://github.com/vercel/next.js/blob/2f6ff0dab330b854c43a1773be2fe739c3582419/packages/next/src/build/webpack-confi...
[ { "path": "package.json", "patch": "@@ -77,7 +77,7 @@\n \"@svgr/webpack\": \"5.5.0\",\n \"@swc/cli\": \"0.1.55\",\n \"@swc/core\": \"1.3.51\",\n- \"@swc/helpers\": \"0.5.0\",\n+ \"@swc/helpers\": \"0.5.1\",\n \"@testing-library/react\": \"13.0.0\",\n \"@types/cheerio\": \"0.22.16\"...
2023-04-25T04:32:27
golang/go
b6342a02ad901e015e1c4eb9f862824029efb7b7
0e654100382f345ea555cfc1e1dd50853316b368
go/types: return an error message from Checker.genericType The bare error message "%s is not a generic type" is probably never sufficient, so change the signature of genericType to instead return an message that may be formatted as additional context in errors. Along the way, refactor instantiatedType to have access ...
[ { "path": "src/go/types/errorcodes.go", "patch": "@@ -1307,6 +1307,15 @@ const (\n \t// supported at this Go version.\n \t_UnsupportedFeature\n \n+\t// _NotAGenericType occurs when a non-generic type is used where a generic\n+\t// type is expected: in type or function instantiation.\n+\t//\n+\t// Example:\n...
2021-11-15T15:49:54
rust-lang/rust
672452d573e3f499a8edc4308400a6d116974938
ee976bbbcaf85390a00f03dedacd035e7e274e8e
use consistent attr errors in all attribute parsers
[ { "path": "compiler/rustc_attr_parsing/messages.ftl", "patch": "@@ -27,8 +27,6 @@ attr_parsing_ill_formed_attribute_input = {$num_suggestions ->\n [1] attribute must be of the form {$suggestions}\n *[other] valid forms for the attribute are {$suggestions}\n }\n-attr_parsing_incorrect_met...
2025-03-05T13:35:54
nodejs/node
553c876a24e237b745ae7f8d47e2c9c9eae1263f
136c805b6e4dbcb8996ecad7a7d882fbf83e3e7c
errors: remove usage of require('util') Remove internal usage of `require('util').inspect`. PR-URL: https://github.com/nodejs/node/pull/26781 Refs: https://github.com/nodejs/node/issues/26546 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com>
[ { "path": "lib/internal/error-serdes.js", "patch": "@@ -76,11 +76,12 @@ function GetName(object) {\n return desc && desc.value;\n }\n \n-let util;\n-function lazyUtil() {\n- if (!util)\n- util = require('util');\n- return util;\n+let internalUtilInspect;\n+function inspect(...args) {\n+ if (!interna...
2019-03-22T17:02:07
electron/electron
6e6cee3ac671156307371dac43f2722f79a38746
6636effb1defbb811e565eac6fe8b55c5ec898b2
Small fixes
[ { "path": "docs-translations/ko-KR/api/browser-window.md", "patch": "@@ -33,8 +33,8 @@ win.show();\n \n * `width` Integer - 윈도우 창의 가로 너비. 기본값은 `800`입니다.\n * `height` Integer - 윈도우 창의 세로 높이. 기본값은 `600`입니다.\n-* `x` Integer - 화면을 기준으로 창 좌측을 오프셋 한 위치. 기본값은 화면 중앙입니다.\n-* `y` Integer - 화면을 기준으로 창 상단을 오프셋 한 위치. 기본...
2015-11-24T01:23:52
vercel/next.js
ce2e2265e6addda5dbea4e8022edf70df1327f9d
2f6ff0dab330b854c43a1773be2fe739c3582419
Add missing `repository` prop to package.json in swc-wasm (#48805) - Follow up to https://github.com/vercel/next.js/pull/48803 Fixes https://github.com/vercel/next.js/actions/runs/4791615248/jobs/8523283909#step:10:258
[ { "path": "scripts/publish-native.js", "patch": "@@ -84,7 +84,8 @@ const cwd = process.cwd()\n )\n \n // Update name/version of wasm packages and publish\n- let wasmDir = path.join(cwd, 'packages/next-swc/crates/wasm')\n+ const pkgDirectory = 'packages/next-swc/crates/wasm'\n+ let wasmDir =...
2023-04-25T01:24:55
golang/go
0e654100382f345ea555cfc1e1dd50853316b368
1dc9af5cdc6dabe4841afb4edf9dbf5124946ea0
go/types: assign error codes to new errors for Go 1.18 During development, we used placeholder _Todo error codes for new errors related to generics. Add real error codes in these places. As a result, 9 new error codes are added for ~50 call sites. Change-Id: Ib57b4cd9f0a2e160971a3aeea18f9fe26fc0f835 Reviewed-on: htt...
[ { "path": "src/go/types/assignments.go", "patch": "@@ -72,7 +72,7 @@ func (check *Checker) assignment(x *operand, T Type, context string) {\n \n \t// A generic (non-instantiated) function value cannot be assigned to a variable.\n \tif sig, _ := under(x.typ).(*Signature); sig != nil && sig.TypeParams().Len()...
2021-11-15T01:34:58
nodejs/node
b51a546488698660f00aa5221bbe908d6e01f4e0
51256e5d78d8cbb4c532c9d7226ae5ad08d09020
lib: reduce usage of require('util') Replace `require('util').inspect` and `require('util').format` with `require('util/internal/inspect').inspect` and `require('util/internal/inspect').format` in `lib/internal/errors.js`. PR-URL: https://github.com/nodejs/node/pull/26782 Refs: https://github.com/nodejs/node/issues/2...
[ { "path": "lib/internal/errors.js", "patch": "@@ -32,6 +32,14 @@ function lazyInternalUtil() {\n return internalUtil;\n }\n \n+let internalUtilInspect = null;\n+function lazyInternalUtilInspect() {\n+ if (!internalUtilInspect) {\n+ internalUtilInspect = require('internal/util/inspect');\n+ }\n+ retu...
2019-03-19T16:13:20
huggingface/transformers
46db0edf3b0a39b979e4a0e9b65e7f1adec6824a
ee5488440bcb8a45681b7cc04d0c73fb49ccf57a
🚨🚨 Remove all traces of legacy cache format (#41378) * remove * more * add back * tests * revert classes * tests * add exceptions * reapply modular * rename * oupsi * start with whisper * fix tests * fix * fix * fix * typing
[ { "path": "docs/source/en/cache_explanation.md", "patch": "@@ -156,31 +156,3 @@ inputs = tokenizer.apply_chat_template(messages, add_generation_prompt=True, ret\n generated_ids = model.generate(**inputs, use_cache=True, max_new_tokens=10)\n \n ```\n-\n-## Legacy cache format\n-\n-Before the [`Cache`] class,...
2025-10-08T09:14:44
vercel/next.js
7e97dc5ebfad491b860ebbe424729281d90f3493
49734207656b642fc7d4f9f44d136f09f1e6f3f7
Add missing `repository` prop to package.json (#48803) This should fix the following error: ``` npm ERR! 422 Unprocessable Entity - PUT https://registry.npmjs.org/@next%2fswc-darwin-x64 - Failed to validate repository information: package.json: "repository.url" is "undefined", expected to match "git+https://github...
[ { "path": "packages/next-swc/crates/napi/npm/darwin-arm64/package.json", "patch": "@@ -1,6 +1,11 @@\n {\n \"name\": \"@next/swc-darwin-arm64\",\n \"version\": \"0.0.0\",\n+ \"repository\": {\n+ \"type\": \"git\",\n+ \"url\": \"https://github.com/vercel/next.js\",\n+ \"directory\": \"packages/n...
2023-04-24T22:17:06
rust-lang/rust
ee976bbbcaf85390a00f03dedacd035e7e274e8e
566f691374bff0461f2992e381e58539b0e5ae8a
fix bugs in inline/force_inline and diagnostics of all attr parsers
[ { "path": "compiler/rustc_attr_data_structures/src/attributes.rs", "patch": "@@ -235,8 +235,6 @@ pub enum AttributeKind {\n \n /// Represents [`#[repr]`](https://doc.rust-lang.org/stable/reference/type-layout.html#representations).\n Repr(ThinVec<(ReprAttr, Span)>),\n- /// Represents `#[rustc_for...
2025-03-04T13:17:06
golang/go
1dc9af5cdc6dabe4841afb4edf9dbf5124946ea0
f986191325e9c8be606b5f4db69a33692728274b
cmd/compile: fix position info for implicit nodes due to generics The main fix is that we should call ir.SetPos() at the beginning of (*subster).node.edit function, since that is analogous to the ir.SetPos() at the beginning of typecheck.typecheck(). It ensures that transform functions can use base.Pos() with appropri...
[ { "path": "src/cmd/compile/internal/noder/stencil.go", "patch": "@@ -500,7 +500,7 @@ func (g *genInst) buildClosure(outer *ir.Func, x ir.Node) ir.Node {\n \t\t\t// explicitly traverse any embedded fields in the receiver\n \t\t\t// argument in order to call the method instantiation.\n \t\t\targ0 := formalPar...
2021-11-14T00:17:52
huggingface/transformers
3553f0bc23011a5aa459c7b0cd282f570ecd7ac5
242eb9cbdc2513d347fe528f4ff7111e90bb4372
Fix overriding common_kwargs defaults in processor calls (#41381) * set common_kwargs defaults before updating with kwargs * change order to override defaults common_kwargs
[ { "path": "src/transformers/processing_utils.py", "patch": "@@ -1305,6 +1305,13 @@ class MyProcessingKwargs(ProcessingKwargs, CommonKwargs, TextKwargs, ImagesKwarg\n # pass defaults to output dictionary\n output_kwargs.update(default_kwargs)\n \n+ # For `common_kwargs` just update all...
2025-10-08T03:13:56
nodejs/node
97737fd5fb4a6b36c2e65905b8cf3518499a8a5e
96204c3c71f6cc571be56269ba9d584d615f0a06
repl: fix terminal default setting This makes sure that the described default behavior for the `terminal` option is actually always used and not only when running the REPL as standalone program. The options code is now logically combined instead of being spread out in the big REPL constructor. PR-URL: https://github...
[ { "path": "doc/api/cli.md", "patch": "@@ -671,7 +671,7 @@ added: v0.1.32\n added: v0.3.0\n -->\n \n-When set to `1` colors will not be used in the REPL.\n+When set, colors will not be used in the REPL.\n \n ### `NODE_EXTRA_CA_CERTS=file`\n <!-- YAML", "additions": 1, "deletions": 1, "language": ...
2019-03-08T11:21:35
rust-lang/rust
48dafaa1c7eb255dfce63fc561181afb79f8beab
09475721a8dbef1c1e6a57c2ee111990db040491
Changed implementation of bsrli in avx512.rs to match that of bslli, fixing a bug in the process.
[ { "path": "library/stdarch/crates/core_arch/src/x86/avx512bw.rs", "patch": "@@ -11208,203 +11208,86 @@ pub fn _mm512_bslli_epi128<const IMM8: i32>(a: __m512i) -> __m512i {\n pub fn _mm512_bsrli_epi128<const IMM8: i32>(a: __m512i) -> __m512i {\n unsafe {\n static_assert_uimm_bits!(IMM8, 8);\n+ ...
2025-06-04T12:15:39
vercel/next.js
49734207656b642fc7d4f9f44d136f09f1e6f3f7
7fb4d27053e0426cf64d5acd682b97ef7984e5c5
Fix typo in `errors/version-staleness.md` (#48797)
[ { "path": "errors/version-staleness.md", "patch": "@@ -48,5 +48,5 @@ If you want to report a bug on GitHub, you should upgrade to the newest canary r\n - [Video: How to Contribute to Open Source (Next.js)](https://www.youtube.com/watch?v=cuoNzXFLitc)\n - [Contributing to Next.js](https://github.com/vercel/n...
2023-04-24T20:03:44
golang/go
f986191325e9c8be606b5f4db69a33692728274b
ce4a2755956a42aa3211c121139a52c9a97a9aa0
runtime: fix released bytes accumulation in bg scavenger Currently "released" is not accumulated bytes released. If the last attempt to scavenge ends up as 0, then the scavenger will go to sleep too soon. This is an artifact from the old code where scavenge would only be called into once. Change-Id: I85aa2261f1504a6f...
[ { "path": "src/runtime/mgcscavenge.go", "patch": "@@ -326,8 +326,8 @@ func bgscavenge(c chan int) {\n \n \t\t\t// Accumulate the amount of time spent scavenging.\n \t\t\tstart := nanotime()\n-\t\t\treleased = mheap_.pages.scavenge(scavengeQuantum)\n-\t\t\tatomic.Xadduintptr(&mheap_.pages.scav.released, rele...
2021-11-11T18:12:20
nodejs/node
96204c3c71f6cc571be56269ba9d584d615f0a06
bdea725bdcb299579547f66ebcc98af16f53cd16
net: do not manipulate potential user code The error provided in this function could come from user code. Thus the error should not be manipulated in any way. The added properties do not seem to provide any actual value either as can not be part of the error. The `hostname` is already set on the error and adding the `...
[ { "path": "lib/net.js", "patch": "@@ -971,12 +971,6 @@ function lookupAndConnect(self, options) {\n // net.createConnection() creates a net.Socket object and immediately\n // calls net.Socket.connect() on it (that's us). There are no event\n // listeners registered yet so defer the e...
2019-03-18T18:35:59
rust-lang/rust
1c5b2a659d2eb193d05805015b0cea8f071b5a1b
58db094d9e4b34b44602f7e87c4ab7e248333eab
Fixing mistake in previous commit
[ { "path": "library/stdarch/crates/core_arch/src/x86/avx2.rs", "patch": "@@ -191,7 +191,7 @@ pub fn _mm256_alignr_epi8<const IMM8: i32>(a: __m256i, b: __m256i) -> __m256i {\n return transmute(a);\n }\n \n- let r: i8x32 = match IMM8 {\n+ let r: i8x32 = match IMM8 % 16 {\n ...
2025-06-03T15:39:23
huggingface/transformers
242eb9cbdc2513d347fe528f4ff7111e90bb4372
50090c3fc82e1e0a06b4da366ea2fb6055d529e9
Remove deprecation warning (#41425) * remove * fix space
[ { "path": "examples/modular-transformers/modeling_add_function.py", "patch": "@@ -10,8 +10,6 @@\n import torch\n from torch import nn\n \n-from ...utils.deprecation import deprecate_kwarg\n-\n \n def rotate_half(x):\n \"\"\"Rotates half the hidden dims of the input.\"\"\"\n@@ -64,6 +62,5 @@ class TestAt...
2025-10-07T17:21:14
golang/go
5337e53dfa3f5fde73b8f505ec3a91c628e8f648
dfa62c79de4f6f6ee2eb8cde340c21afc739c38d
cmd/compile: ensure we replace package placeholder in type names We want package names exposed by reflect to be things like main.F[main.foo], not main.F["".foo]. Fixes #49547 Change-Id: I182411a75d56ce1f64fde847e5b9ee74ce44e00b Reviewed-on: https://go-review.googlesource.com/c/go/+/363656 Trust: Keith Randall <khr@g...
[ { "path": "src/cmd/compile/internal/types/fmt.go", "patch": "@@ -140,11 +140,17 @@ func sconv2(b *bytes.Buffer, s *Sym, verb rune, mode fmtMode) {\n }\n \n func symfmt(b *bytes.Buffer, s *Sym, verb rune, mode fmtMode) {\n+\tname := s.Name\n \tif q := pkgqual(s.Pkg, verb, mode); q != \"\" {\n \t\tb.WriteStri...
2021-11-12T20:38:29
vercel/next.js
7fb4d27053e0426cf64d5acd682b97ef7984e5c5
5b609e264f56e6e7c6e230d88ad444650b5b6ba9
Fix Windows path in route join (#48603) (#48779) A change here: (#48202) 958150d Caused a URL to be joined with `path.join`, which on Windows inserts a backslash character. Changing to `path.posix.join` fixes this. Breaks next build on Windows when paths like `favicon.ico` are in the source dir. Fixes #48603
[ { "path": "packages/next/src/lib/metadata/get-metadata-route.ts", "patch": "@@ -56,7 +56,7 @@ export function normalizeMetadataRoute(page: string) {\n page.startsWith('/manifest') ||\n isStaticMetadataFile\n \n- route = path.join(\n+ route = path.posix.join(\n dir,\n ...
2023-04-24T19:12:25
rust-lang/rust
8fb78f3f6991caa6305f7442c38d4eaf391be011
35f270c0d12c1bf158c6c5645470c41989e544be
Fix in erroneous implementation of _mm256_bsrli_epi128 Fixing the issue mentioned in issue #1822 of rust-lang/stdarch.
[ { "path": "library/stdarch/crates/core_arch/src/x86/avx2.rs", "patch": "@@ -2964,7 +2964,7 @@ pub fn _mm256_bsrli_epi128<const IMM8: i32>(a: __m256i) -> __m256i {\n unsafe {\n let a = a.as_i8x32();\n let zero = i8x32::ZERO;\n- let r: i8x32 = match IMM8 % 16 {\n+ let r: i8x3...
2025-06-03T15:10:32
nodejs/node
bdea725bdcb299579547f66ebcc98af16f53cd16
cdb87d954804cdba89ed7cd10f28efa5ca5e1f1c
process: make stdout and stderr emit 'close' on destroy Fix: https://github.com/nodejs/node/issues/26550 PR-URL: https://github.com/nodejs/node/pull/26691 Fixes: https://github.com/false Fixes: https://github.com/nodejs/node/issues/26550 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Anna Henningsen <ann...
[ { "path": "lib/internal/process/stdio.js", "patch": "@@ -2,7 +2,26 @@\n \n exports.getMainThreadStdio = getMainThreadStdio;\n \n-function dummyDestroy(err, cb) { cb(err); }\n+function dummyDestroy(err, cb) {\n+ // SyncWriteStream does not use the stream\n+ // destroy mechanism for some legacy reason.\n+ ...
2019-03-15T19:23:15
huggingface/transformers
ccbaa1670ad13fe0277bf42d94e69b220185f822
c562c5d801f94d2a3ef94a2cc09d16e274095397
Fix incorrect assignment in `update_device_map` for GPTQ quantizer (#41328) Fix incorrect assignment in update_device_map for GPTQ quantizer Co-authored-by: Mohamed Mekkouri <93391238+MekkCyber@users.noreply.github.com>
[ { "path": "src/transformers/quantizers/quantizer_gptq.py", "patch": "@@ -92,7 +92,7 @@ def update_device_map(self, device_map):\n device_map = {\"\": torch.device(\"cpu\")}\n # Only with auto-gptq do not support CPU, we should move the model to cuda if available.\n if not is_gptq...
2025-10-07T15:28:55
vercel/next.js
5b609e264f56e6e7c6e230d88ad444650b5b6ba9
03f34625e5e7ddeba449f92e07a5f297a550a9d1
Error on legacy runtime config under app dir (#48774) When you're using `config` object with `runtime` we'll show a warning and recomment you to move to `export const runtime = ...` for runtime property as it's documented as recommended. This PR adds a error for `next build` to avoid logs are truncated during multi-wo...
[ { "path": "packages/next/src/build/analysis/get-page-static-info.ts", "patch": "@@ -342,9 +342,12 @@ export async function getPageStaticInfo(params: {\n }\n if (pageType === 'app') {\n if (config) {\n- Log.warnOnce(\n- `\\`export const config\\` in ${pageFilePath} is deprecated...
2023-04-24T18:33:29
golang/go
c2397905e027cdbab3a28d02813adcb82368422c
c54605266b746dd4d81e3753b55910e5c8dde5f0
cmd/compile/internal/types2: simplify under() and fix a crash The simplified version of under exposed a bug (by crashing): When a pointer base is used before the pointer is fully set up, the base is nil. Set the pointer base to Typ[Invalid] when creating the pointer, and add an extra safety check into deref. Reviewed ...
[ { "path": "src/cmd/compile/internal/types2/lookup.go", "patch": "@@ -491,6 +491,13 @@ func (check *Checker) assertableTo(V *Interface, T Type) (method, wrongType *Fun\n // Otherwise it returns (typ, false).\n func deref(typ Type) (Type, bool) {\n \tif p, _ := typ.(*Pointer); p != nil {\n+\t\t// p.base shoul...
2021-11-13T02:24:54
rust-lang/rust
81f7eebb23cf4583d3c6d14009935aafe5326316
86d0aef80403f095d8bbabf44d9fdecfcd45f076
Add a missing colon at the end of the expected panic message in location-detail-unwrap-multiline.rs
[ { "path": "tests/ui/panics/location-detail-unwrap-multiline.rs", "patch": "@@ -1,7 +1,7 @@\n //@ run-fail\n //@ compile-flags: -Cstrip=none -Cdebuginfo=line-tables-only -Copt-level=0\n //@ exec-env:RUST_BACKTRACE=1\n-//@ regex-error-pattern: location-detail-unwrap-multiline\\.rs:11(:10)?\\n\n+//@ regex-erro...
2025-06-17T19:24:44
nodejs/node
e112fb4c221f9749fd9271c95a5f544476511292
0f2bf72604fe4da193ea94960cfa4e119de4baf8
net: remove usage of require('util') Use `require('internal/util/inspect').inspect` and `require('internal/util/debuglog').debuglog` instead of `require('util').debuglog` and `require('util').inspect`. PR-URL: https://github.com/nodejs/node/pull/26807 Refs: https://github.com/nodejs/node/issues/26546 Reviewed-By: Jam...
[ { "path": "lib/net.js", "patch": "@@ -23,7 +23,8 @@\n \n const EventEmitter = require('events');\n const stream = require('stream');\n-const util = require('util');\n+const { inspect } = require('internal/util/inspect');\n+const { debuglog } = require('internal/util/debuglog');\n const internalUtil = requir...
2019-03-21T15:30:52
huggingface/transformers
c562c5d801f94d2a3ef94a2cc09d16e274095397
88e946e06233b6e470f44443b71ef45829ef5d30
[v5] Bump accelerate to 1.1.0 (#41234) * bump to 1.1.0 ! * bump accelerate * fix * None * fixed ! * style
[ { "path": "setup.py", "patch": "@@ -94,7 +94,7 @@\n # 2. once modified, run: `make deps_table_update` to update src/transformers/dependency_versions_table.py\n _deps = [\n \"Pillow>=10.0.1,<=15.0\",\n- \"accelerate>=0.26.0\",\n+ \"accelerate>=1.1.0\",\n \"av\",\n \"beautifulsoup4\",\n ...
2025-10-07T15:18:32
vercel/next.js
b3afc46e1c53d92a3bce60a5584886f89a780ece
8460373c26a5d5e8682f26fcb1399664e2d88cbc
fix: npm publish provenance permissions (#48757) Co-authored-by: Jiachi Liu <inbox@huozhi.im> Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
[ { "path": ".github/workflows/build_test_deploy.yml", "patch": "@@ -966,6 +966,9 @@ jobs:\n - build\n - build-wasm\n - build-native\n+ permissions:\n+ contents: write\n+ id-token: write\n env:\n NPM_TOKEN: ${{ secrets.NPM_TOKEN_ELEVATED }}\n steps:\n@@ -997,6 +100...
2023-04-24T14:08:55
golang/go
c54605266b746dd4d81e3753b55910e5c8dde5f0
c78a267bd4ccdd8699a9dbe9bad3597bf3de47e9
cmd/go: remove remaining uses of TODOWorkspaces Most of them are fixed, but some of them have been rewritten to refer to specific issues. For #45713 Change-Id: Id24d9bd47afeac089835f7a26e7025332fb6119c Reviewed-on: https://go-review.googlesource.com/c/go/+/359794 Trust: Michael Matloob <matloob@golang.org> Run-TryBo...
[ { "path": "src/cmd/go/internal/modcmd/download.go", "patch": "@@ -93,24 +93,27 @@ func runDownload(ctx context.Context, cmd *base.Command, args []string) {\n \tmodload.ExplicitWriteGoMod = true\n \thaveExplicitArgs := len(args) > 0\n \n-\tif modload.HasModRoot() {\n+\tif modload.HasModRoot() || modload.Work...
2021-10-29T20:47:22
nodejs/node
0f2bf72604fe4da193ea94960cfa4e119de4baf8
ad661ca209f68e7aa0e7396fe0d04499daeb71a9
module: remove usage of require('util') in `esm/translators.js` Use `require('internal/util/debuglog').debuglog` and `require('internal/util').promisify` instead of `require('util').debuglog` and `require('util').promisify` in `lib/internal/modules/translators.js`. PR-URL: https://github.com/nodejs/node/pull/26806 Re...
[ { "path": "lib/internal/modules/esm/translators.js", "patch": "@@ -19,7 +19,8 @@ const {\n StringPrototype\n } = primordials;\n const { URL } = require('url');\n-const { debuglog, promisify } = require('util');\n+const { debuglog } = require('internal/util/debuglog');\n+const { promisify } = require('inte...
2019-03-21T15:38:52
huggingface/transformers
88e946e06233b6e470f44443b71ef45829ef5d30
93464a0279f6a163dae1e3f3a8cf1567691240b5
Fix early CUDA initialisation (#41409) Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com>
[ { "path": "src/transformers/generation/continuous_batching/continuous_api.py", "patch": "@@ -27,7 +27,6 @@\n \n from ...configuration_utils import PreTrainedConfig\n from ...generation.configuration_utils import GenerationConfig\n-from ...integrations.hub_kernels import load_and_register_kernel\n from ...ut...
2025-10-07T13:37:17
rust-lang/rust
35f270c0d12c1bf158c6c5645470c41989e544be
63e6d3274f39cbd66b739b433dd373f4973a3ac1
Add triagebot config for subtree syncs Adds checking of PR descriptions to avoid relative issue links (without repository prefix) and mentions in commits.
[ { "path": "library/stdarch/triagebot.toml", "patch": "@@ -50,3 +50,13 @@ Hey Apple Group! This issue or PR could use some Darwin-specific guidance. Could\n one of you weigh in please?\n Thanks!\n \"\"\"\n+\n+# Canonicalize issue numbers to avoid closing the wrong issue\n+# when commits are included in subtr...
2025-06-16T08:49:32
vercel/next.js
8460373c26a5d5e8682f26fcb1399664e2d88cbc
39498d604c3b25d92a483153fe648a7ee456fbda
Fix issue with instrumentation in a standalone build (#48615)
[ { "path": "packages/next/src/build/index.ts", "patch": "@@ -2113,7 +2113,8 @@ export default async function build(\n denormalizedAppPages,\n outputFileTracingRoot,\n requiredServerFiles.config,\n- middlewareManifest\n+ middlewareManifest,\n...
2023-04-24T13:49:46
golang/go
c78a267bd4ccdd8699a9dbe9bad3597bf3de47e9
e658c42ba460b91d5b6934829ddffa802d4ca524
go/types: return an error from Instantiate on incorrect len(targs) Instantiate already returns an error when validation fails. Panicking on an incorrect number of type arguments means that callers must both pre-validate the number of type arguments and handle resulting errors. Returning an error rather than panicking ...
[ { "path": "src/go/types/instantiate.go", "patch": "@@ -13,40 +13,50 @@ import (\n \t\"go/token\"\n )\n \n-// Instantiate instantiates the type typ with the given type arguments targs.\n-// typ must be a *Named or a *Signature type, and its number of type parameters\n-// must match the number of provided typ...
2021-11-12T16:46:23
nodejs/node
ad661ca209f68e7aa0e7396fe0d04499daeb71a9
005528ac826f2107b87310fdd895f58189d4a4c7
module: remove usage of require('util') in `esm/loader.js` Use `require('internal/util/debuglog').debuglog` instead of `require('util').debuglog` in `lib/internal/modules/esm/loader.js`. PR-URL: https://github.com/nodejs/node/pull/26804 Refs: https://github.com/nodejs/node/issues/26546 Reviewed-By: Ruben Bridgewater ...
[ { "path": "lib/internal/modules/esm/loader.js", "patch": "@@ -18,7 +18,7 @@ const translators = require('internal/modules/esm/translators');\n \n const FunctionBind = Function.call.bind(Function.prototype.bind);\n \n-const debug = require('util').debuglog('esm');\n+const debug = require('internal/util/debug...
2019-03-20T13:18:48
huggingface/transformers
93464a0279f6a163dae1e3f3a8cf1567691240b5
0c9a72e4576fe4c84077f066e585129c97bfd4e6
Prefer raising `TypeError` exception for invalid type (#41346) * Fixed raising of TypeError exception for invalid type * Fixed failing tests.
[ { "path": "src/transformers/cache_utils.py", "patch": "@@ -1313,7 +1313,7 @@ def check_dynamic_cache(self, method: str):\n isinstance(self.self_attention_cache, DynamicCache)\n and isinstance(self.cross_attention_cache, DynamicCache)\n ):\n- raise ValueError(\n+ ...
2025-10-07T13:11:42
vercel/next.js
16ab2d489724975dc24fc656f9b6a8b412e0c74a
039dce495d9a45e1409d701925bbb2e8bc5a9ecc
test: Improve testing system for tree shaker (vercel/turbo#4663) ### Description We need a testing system that supports enabling only _some_ of exports. This PR implements it by using `config.json`. Fix WEB-917. ### Testing Instructions Look at output.mdx
[ { "path": "crates/turbopack-ecmascript/src/tree_shake/tests.rs", "patch": "@@ -8,8 +8,9 @@ use std::{\n use anyhow::Error;\n use indexmap::IndexSet;\n use rustc_hash::FxHasher;\n+use serde::Deserialize;\n use swc_core::{\n- common::SourceMap,\n+ common::{util::take::Take, SourceMap},\n ecma::{\n ...
2023-04-24T12:16:27
golang/go
2fd720b78086eaa57559e38f6ad4fe51c09c3a17
c893a85f21d0e5448c687254e50cc6936b36548e
test: fix longtest failures on fixedbugs/issue48471.go This test is failing with -G=0, so specify -G=3. Change-Id: I4c74707d0a43f8191cb0b156204604458ba85136 Reviewed-on: https://go-review.googlesource.com/c/go/+/363699 Trust: Robert Findley <rfindley@google.com> Trust: Dan Scales <danscales@google.com> Run-TryBot: Ro...
[ { "path": "test/fixedbugs/issue48471.go", "patch": "@@ -1,4 +1,4 @@\n-// errorcheck\n+// errorcheck -G=3\n \n // Copyright 2021 The Go Authors. All rights reserved.\n // Use of this source code is governed by a BSD-style", "additions": 1, "deletions": 1, "language": "Go" } ]
2021-11-13T01:15:49
electron/electron
6d46c3a75e984be04ee502f0c03018f9f8d6845c
099da729c7ad19755b69f50b04a33ea6167e889d
docs: Fix deprecated usage tips
[ { "path": "docs/api/menu.md", "patch": "@@ -225,7 +225,7 @@ will be set as each window's top menu.\n \n Sends the `action` to the first responder of application. This is used for\n emulating default Cocoa menu behaviors, usually you would just use the\n-`selector` property of `MenuItem`.\n+`role` property o...
2015-11-23T05:40:23
huggingface/transformers
0c9a72e4576fe4c84077f066e585129c97bfd4e6
b4428d545fbe3bd4de874d35bd7204e9c6ae2403
[Model] Lfm2Moe (#41401) * [new-models] LFM2-MoE Signed-off-by: Paul Pak <paulpak58@gmail.com> * [docs] add in template lfm2_moe doc files Signed-off-by: Paul Pak <paulpak58@gmail.com> * [configuration] update configuration class Signed-off-by: Paul Pak <paulpak58@gmail.com> * [modular][lfm] minor: fix rotary_em...
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -562,6 +562,8 @@\n title: LED\n - local: model_doc/lfm2\n title: LFM2\n+ - local: model_doc/lfm2_moe\n+ title: LFM2Moe\n - local: model_doc/llama\n title: LLaMA\n - local: model_doc/llama2", "addi...
2025-10-07T13:09:58
nodejs/node
4ba33c90c6c50f625e071301f1ad4ba256d28246
26f8af9feba624c418be1ec270c8de30bf6ee512
test: delete pummel/test-dtrace-jsstack The test pummel/test-dtrace-jsstack is broken and probably has been for a very long time. Remove it. It gets skipped on anything that is non-SunOS. In our CI, that means skipped everywhere but SmartOS. When run on SmartOS in our CI (which never happens because it's in pummel, ...
[ { "path": "test/pummel/test-dtrace-jsstack.js", "patch": "@@ -1,102 +0,0 @@\n-// Copyright Joyent, Inc. and other Node contributors.\n-//\n-// Permission is hereby granted, free of charge, to any person obtaining a\n-// copy of this software and associated documentation files (the\n-// \"Software\"), to dea...
2019-03-22T21:51:19
vercel/next.js
7fdcb172f9fc4cfac1d49a36a24e4485a97cf7c5
1e9d53ebae5847ae15fcb664fad4f83b74aa55d9
Lazy DevHtmlAsset chunk generation (#48768) This fixes a perf regression introduced in the chunking refactor, where we would be eagerly generating all assets from the web entry and fallback sources. See https://github.com/vercel/turbo/pull/4679 This also brings the following updates from vercel/turbo: * htt...
[ { "path": "Cargo.lock", "patch": "@@ -400,7 +400,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-230420.2#56c3da313775fb12793cd13bba75698f37f8ab36\"\n+source = \"git+https://github.com/vercel/turbo.git?ta...
2023-04-24T10:11:24
electron/electron
df570269e36899d52617f3f0cd57796ca61247bd
29052b04986daf55ecda4163bb94adaf522d1a10
Fix typos in Korean api/ipc-main.md
[ { "path": "docs-translations/ko-KR/api/ipc-main.md", "patch": "@@ -19,12 +19,12 @@\n ```javascript\n // 메인 프로세스\n const ipcMain = require('electron').ipcMain;\n-ipc.on('asynchronous-message', function(event, arg) {\n+ipcMain.on('asynchronous-message', function(event, arg) {\n console.log(arg); // \"ping\...
2015-11-22T14:16:56
huggingface/transformers
b4428d545fbe3bd4de874d35bd7204e9c6ae2403
0464d9eb37b7e384f8d96b7c9bb9cfb61fcdfd1e
Fix test for model with dotted name and relative imports (#41343)
[ { "path": "tests/models/auto/test_modeling_auto.py", "patch": "@@ -579,9 +579,10 @@ def test_model_with_dotted_name_and_relative_imports(self):\n Test for issue #40496: AutoModel.from_pretrained() doesn't work for models with '.' in their name\n when there's a relative import.\n \n- W...
2025-10-07T12:55:54
rust-lang/rust
57fdde331b225b8a8c1010dcc69868ccf7a1747d
7c1553c85bf0c6566bffa5a22e91a9c517458ab9
Update libc to 0.2.174 This includes a fix for building on gnux32. [1]: https://github.com/rust-lang/libc/releases/tag/0.2.174
[ { "path": "Cargo.lock", "patch": "@@ -2045,9 +2045,9 @@ checksum = \"9fa0e2a1fcbe2f6be6c42e342259976206b383122fc152e872795338b5a3f3a7\"\n \n [[package]]\n name = \"libc\"\n-version = \"0.2.173\"\n+version = \"0.2.174\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"d8cfe...
2025-06-17T18:03:45
nodejs/node
4a40ea6894ec758fe7ede70439aaddee20cf398b
f5969f08a0be666b3e95a185fa34f9554a5f6ffc
test: refactor test-https-connect-localport Use arrow functions for callbacks. Replace uses of `this` with explicit variables. Add a trailing comma in a multiline object literal declaration. PR-URL: https://github.com/nodejs/node/pull/26881 Fixes: https://github.com/https://github.com/nodejs/node/issues/26862 Reviewe...
[ { "path": "test/sequential/test-https-connect-localport.js", "patch": "@@ -9,21 +9,23 @@ const https = require('https');\n const assert = require('assert');\n \n {\n- https.createServer({\n+ const server = https.createServer({\n cert: fixtures.readKey('agent1-cert.pem'),\n key: fixtures.readKey('a...
2019-03-23T16:42:30
vercel/next.js
039dce495d9a45e1409d701925bbb2e8bc5a9ecc
42255cbde62aaae746e965685b5676ca745cf0ef
Lazy DevHtmlAsset chunk generation (vercel/turbo#4679) ### Description This fixes a perf regression introduced in the chunking refactor, where we would be eagerly generating all assets from the web entry and fallback sources. ### Testing Instructions Benchmarks [Next.js PR](https://github.com/vercel/next.js/compar...
[ { "path": "crates/turbopack-cli/src/dev/web_entry_source.rs", "patch": "@@ -254,20 +254,20 @@ pub async fn create_web_entry_source(\n .try_join()\n .await?;\n \n- let chunk_groups: Vec<_> = entries\n+ let entries: Vec<_> = entries\n .into_iter()\n .flatten()\n ....
2023-04-24T08:54:31
huggingface/transformers
da7b8ce11f5e2605301b0d576613bc2f00d32405
4763b8c5b87a3e62cab599cafc7f553f8375290a
[kernels] Kernel Config (#41232) * first config * add kernel_config * add import logic * fixing style * compare class name * add comments * rm import * adding kernel md files * add to toctree * adding to main_classes * simplify required config * add to doc * style * store the mapping * remove nested fun...
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -216,6 +216,11 @@\n - local: quantization/contribute\n title: Contribute\n title: Quantization\n+- isExpanded: false\n+ sections:\n+ - local: kernel_doc/overview\n+ title: Kernels in transformers\n+ title: Kernels\n - isExpanded: false\n ...
2025-10-07T11:58:20
electron/electron
b406774055577b5c18bb069fc05aa3dc72757eea
29052b04986daf55ecda4163bb94adaf522d1a10
Fix a typo in Korean quick-start tutotial
[ { "path": "docs-translations/ko-KR/tutorial/quick-start.md", "patch": "@@ -70,7 +70,7 @@ your-app/\n __알림__: 만약 `main` 필드가 `package.json`에 설정되어 있지 않으면 Electron은\n 자동으로 같은 디렉터리의 `index.js`를 로드합니다.\n \n-반드시 `main.js`에서 창을 만들고 시스템 이밴트를 처리해야합니다. 대표적인 예제로\n+반드시 `main.js`에서 창을 만들고 시스템 이벤트를 처리해야합니다. 대표적인 예제로\n 다음과...
2015-11-22T10:50:52
rust-lang/rust
7eaf7386b93dbeb5029cc99538b3b25fc81928aa
3bc767e1a215c4bf8f099b32e84edb85780591b1
bootstrap.example.toml: use less contextual format prefixing each key with its section means you don't need to scroll up 4 pages to see which section a particular key is from. target specific options were kept in old format since the exact section name depends on the target, so those options must now be moved to the ...
[ { "path": "bootstrap.example.toml", "patch": "@@ -44,7 +44,6 @@\n # =============================================================================\n # Tweaking how LLVM is compiled\n # =============================================================================\n-[llvm]\n \n # Whether to use Rust CI built L...
2025-06-17T17:22:13
nodejs/node
f5969f08a0be666b3e95a185fa34f9554a5f6ffc
229759f961e0c9f37539c24fb06b37b60d4dc352
test: replace localhost IP with 'localhost' for TLS conformity test-https-connect-localport currently causes a runtime deprecation warning: "[DEP0123] DeprecationWarning: Setting the TLS ServerName to an IP address is not permitted by RFC 6066. This will be ignored in a future version." Change IP usage to the string ...
[ { "path": "test/sequential/test-https-connect-localport.js", "patch": "@@ -15,10 +15,10 @@ const assert = require('assert');\n }, common.mustCall(function(req, res) {\n this.close();\n res.end();\n- })).listen(0, common.localhostIPv4, common.mustCall(function() {\n+ })).listen(0, 'localhost', co...
2019-03-23T16:37:32
golang/go
39bc666430b3340c3de0e815cfc1fbfc7b2f7e99
b69b2f63d65609b400b4a40ae01e4a48638f050f
cmd/compile/internal/types2: underlying type of a type parameter is its constraint interface Until now, the type checker operated with the definition that the underlying type of a type parameter is itself. This leads to some inconcistencies and caused us to disallow type declarations where the RHS is a stand-alone typ...
[ { "path": "src/cmd/compile/internal/types2/assignments.go", "patch": "@@ -43,7 +43,7 @@ func (check *Checker) assignment(x *operand, T Type, context string) {\n \t\t\t\tx.mode = invalid\n \t\t\t\treturn\n \t\t\t}\n-\t\t} else if T == nil || IsInterface(T) {\n+\t\t} else if T == nil || IsInterface(T) && !isT...
2021-10-26T17:06:55
huggingface/transformers
caa14e7dabb086f167c14b7eecadc2ba9db25eb6
73f8c4b8ad5df9fad09e010eb989002ccd02053b
fix resample in asr pipeline (#41298)
[ { "path": "src/transformers/pipelines/automatic_speech_recognition.py", "patch": "@@ -415,7 +415,6 @@ def preprocess(self, inputs, chunk_length_s=0, stride_length_s=None):\n inputs = F.resample(\n torch.from_numpy(inputs) if isinstance(inputs, np.ndarray) else inputs,\n ...
2025-10-06T17:31:10
vercel/next.js
7e380e3967d0920961bba2e5256053c85384eb35
2bfde63b78eae6e6294657016a6a383c13a1303f
Compile Next.js core client-side files using default target (#48750) ### What? Compiles Next.js core files using the same default target as client-side files, ensuring that `async`/`await` and such are not turned into generators. The client-side files are all opted into compilation during dev/build already so...
[ { "path": "packages/next/src/shared/lib/constants.ts", "patch": "@@ -1,3 +1,7 @@\n+import MODERN_BROWSERSLIST_TARGET from './modern-browserslist-target'\n+\n+export { MODERN_BROWSERSLIST_TARGET }\n+\n export type ValueOf<T> = Required<T>[keyof T]\n \n export const COMPILER_NAMES = {\n@@ -47,19 +51,6 @@ expo...
2023-04-24T07:53:29
electron/electron
6db6842c14c3cd179c31581a42c51c7f71ae7f69
f374508a61f17bd23f994bfd7cfe8fddd33b7666
Fix menu-item using deprecated API Some of the roles in menu-item use methods on BrowserWindow instead of WebContents which outputs a deprecation warning. I changed it to use the correct methods.
[ { "path": "atom/browser/api/lib/menu-item.coffee", "patch": "@@ -13,6 +13,11 @@ rolesMap =\n minimize: 'minimize'\n close: 'close'\n \n+# Maps methods that should be called directly on the BrowserWindow instance\n+methodInBrowserWindow =\n+ minimize: true\n+ close: true\n+\n class MenuItem\n @types ...
2015-11-21T23:13:57
nodejs/node
229759f961e0c9f37539c24fb06b37b60d4dc352
0f7e24a0c3337abe4dc5a31240347f2a42e3aa16
test: use common.PORT instead of hardcoded number In sequential/test-https-connect-localport, replace 34567 with common.PORT. PR-URL: https://github.com/nodejs/node/pull/26881 Fixes: https://github.com/https://github.com/nodejs/node/issues/26862 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Yongsheng Z...
[ { "path": "test/sequential/test-https-connect-localport.js", "patch": "@@ -22,10 +22,10 @@ const assert = require('assert');\n pathname: '/',\n port,\n family: 4,\n- localPort: 34567,\n+ localPort: common.PORT,\n rejectUnauthorized: false\n }, common.mustCall(() => {\n-...
2019-03-23T16:35:09
golang/go
b69b2f63d65609b400b4a40ae01e4a48638f050f
fdee1b297438a64c553ecc7468a7647f5a070404
net/http: do not send Transfer-Encoding: identity in responses Server handlers may set a "Transfer-Encoding: identity" header on responses to disable chunking, but this header should not be sent on the wire. Fixes #49194. Change-Id: I46a9e3b8ff9d93edd7d1c34d264fc309fa322ad5 Reviewed-on: https://go-review.googlesourc...
[ { "path": "src/net/http/clientserver_test.go", "patch": "@@ -1582,3 +1582,37 @@ func TestH12_WebSocketUpgrade(t *testing.T) {\n \t\t},\n \t}.run(t)\n }\n+\n+func TestIdentityTransferEncoding_h1(t *testing.T) { testIdentityTransferEncoding(t, h1Mode) }\n+func TestIdentityTransferEncoding_h2(t *testing.T) { t...
2021-10-27T21:03:24
huggingface/transformers
73f8c4b8ad5df9fad09e010eb989002ccd02053b
57e82745f9b29397faf43b207815d86a8332099e
fix asr ut failures (#41332) Signed-off-by: Yao, Matrix <matrix.yao@intel.com>
[ { "path": "src/transformers/generation/logits_process.py", "patch": "@@ -1915,7 +1915,7 @@ def __init__(self, suppress_tokens, device: str = \"cpu\"):\n @add_start_docstrings(LOGITS_PROCESSOR_INPUTS_DOCSTRING)\n def __call__(self, input_ids: torch.LongTensor, scores: torch.FloatTensor) -> torch.Floa...
2025-10-06T17:12:19
vercel/next.js
743a59dfabd76bc98c161accda8cd7fa85a34097
2e99645b6c8606febe399215ae09335931fa1fa1
Add support for draft mode (#48669) Draft Mode is very similar to Preview Mode but doesn't include any additional data. This PR implements support for Draft Mode in `pages` and a future PR will implement support in `app`. fix NEXT-992
[ { "path": "packages/next/src/server/api-utils/node.ts", "patch": "@@ -60,6 +60,23 @@ export function tryGetPreviewData(\n const previewModeId = cookies.get(COOKIE_NAME_PRERENDER_BYPASS)?.value\n const tokenPreviewData = cookies.get(COOKIE_NAME_PRERENDER_DATA)?.value\n \n+ // Case: preview mode cookie s...
2023-04-23T21:33:34
electron/electron
8e2faba8f728267df4934cb89e43525999832fac
c1d6d687836f8b3df0d2495de0835ae5fb58e13b
Small style fix
[ { "path": "atom/browser/native_window_mac.mm", "patch": "@@ -259,14 +259,12 @@ - (id)accessibilityAttributeValue:(NSString*)attribute {\n return [children filteredArrayUsingPredicate:predicate];\n }\n \n-- (BOOL)canBecomeMainWindow\n-{\n- return !self.disableKeyOrMainWindow;\n+- (BOOL)canBecomeMainWind...
2015-11-20T05:06:42
golang/go
429d1e01557f95bba29837f2190441696484fd41
c8d6ee12d5eb1c64f2aff8a4d511f677a64e3aed
cmd/compile: add missing method info for method with correct name except for case When being used by the compiler, augment the types2 missing method message with extra info, if a method is missing, but a method with the correct name except for case (i.e. equal via string.EqualFold()) is present. In that case, print ou...
[ { "path": "src/cmd/compile/internal/types2/lookup.go", "patch": "@@ -52,15 +52,15 @@ func LookupFieldOrMethod(T Type, addressable bool, pkg *Package, name string) (o\n \t// not have found it for T (see also issue 8590).\n \tif t := asNamed(T); t != nil {\n \t\tif p, _ := safeUnderlying(t).(*Pointer); p != n...
2021-11-11T18:28:17
huggingface/transformers
57e82745f9b29397faf43b207815d86a8332099e
505387c05b9e7dfcd73d8567959f7848525d8a2f
[`v5`] Sync Bert and Bart eager attention (#41248) * remove from modeling files * remaining changes * style / copies * revert deprecated models and fixup some models * oops * sync attn impl * fix style/copies * fix distilbert * remove dim check
[ { "path": "src/transformers/models/albert/modeling_albert.py", "patch": "@@ -132,7 +132,7 @@ def eager_attention_forward(\n # Take the dot product between \"query\" and \"key\" to get the raw attention scores.\n attn_weights = torch.matmul(query, key.transpose(2, 3)) * scaling\n \n- if attention_...
2025-10-06T16:49:01
vercel/next.js
06700235dd4752aecc8c98d2c6c19d831ad4756b
1c007cee2f100a7a15a3fdb02ca7e86e60208cc8
fix: TS plugin showing warning for `global-error` file's `reset` prop (#48756) The TS plugin incorrectly gives a warning for the `reset` prop in the `global-error.tsx` file. This was previously reported and fixed for the `error.tsx` file. - https://github.com/vercel/next.js/issues/46573 - https://github.com/vercel/nex...
[ { "path": "packages/next/src/server/typescript/rules/client-boundary.ts", "patch": "@@ -40,6 +40,7 @@ const clientBoundary = {\n const diagnostics: ts.Diagnostic[] = []\n \n const isErrorFile = /[\\\\/]error\\.tsx?$/.test(source.fileName)\n+ const isGlobalErrorFile = /[\\\\/]global-error\\.tsx?$/...
2023-04-23T18:04:20
nodejs/node
25b78c0940c1033131840e7a812225d7ef31635b
a89451409ed00d9bbc037e13b4f939b4a4ee93b3
module: remove usage of require('util') Use `require('internal/util/debuglog').debuglog` instead of `require('util').debuglog` in `lib/internal/modules/esm/module_map.js`. Refs: https://github.com/nodejs/node/issues/26546 PR-URL: https://github.com/nodejs/node/pull/26805 Reviewed-By: Ruben Bridgewater <ruben@bridgew...
[ { "path": "lib/internal/modules/esm/module_map.js", "patch": "@@ -4,7 +4,7 @@ const ModuleJob = require('internal/modules/esm/module_job');\n const {\n SafeMap\n } = primordials;\n-const debug = require('util').debuglog('esm');\n+const debug = require('internal/util/debuglog').debuglog('esm');\n const { E...
2019-03-20T10:54:33
golang/go
c8d6ee12d5eb1c64f2aff8a4d511f677a64e3aed
1cd600301ea2a0b13d5e158282200114dc9de3fd
cmd/compile: match Go 1.17 compiler error messages more closely When being used by the compiler, fix up types2 error messages to be more like Go 1.17 compiler errors. In particular: - add information about which method is missing when a type is not assignable/convertible/etc. to an interface. - add informati...
[ { "path": "src/cmd/compile/internal/types2/assignments.go", "patch": "@@ -85,7 +85,11 @@ func (check *Checker) assignment(x *operand, T Type, context string) {\n \treason := \"\"\n \tif ok, _ := x.assignableTo(check, T, &reason); !ok {\n \t\tif check.conf.CompilerErrorMessages {\n-\t\t\tcheck.errorf(x, \"in...
2021-11-10T16:41:21
huggingface/transformers
505387c05b9e7dfcd73d8567959f7848525d8a2f
e00f46f16e456c191287373ab04cbc3cbfc9f5fe
Update from pretrained error when loading (#33380) * init commit * style * take comments into account * mrege with main and simplify * nits * final * small fixes * fix * super small update! * add another test * up up * update * fixes * sort them by default
[ { "path": "src/transformers/modeling_utils.py", "patch": "@@ -875,6 +875,40 @@ def _add_variant(weights_name: str, variant: Optional[str] = None) -> str:\n return weights_name\n \n \n+def update_key_name(keys):\n+ \"\"\"\n+ Updates a dictionary of keys to pack layers together as layer.{0, 1, 4} in...
2025-10-06T16:10:19
vercel/next.js
7de1a4070da47b812985080a81a56e5687abfec2
485955bb367ca0b86d6721efc0785f9b374a36b2
Reland "app-router: new client-side cache semantics" (#48695) Reverts vercel/next.js#48688 fix NEXT-1011
[ { "path": "packages/next/src/client/components/app-router.tsx", "patch": "@@ -25,6 +25,7 @@ import {\n ACTION_REFRESH,\n ACTION_RESTORE,\n ACTION_SERVER_PATCH,\n+ PrefetchKind,\n } from './router-reducer/router-reducer-types'\n import { createHrefFromUrl } from './router-reducer/create-href-from-url'...
2023-04-22T10:41:08
electron/electron
962134c6126330d1d3b2c5a5362e9fc8e7c2c32f
eca98b85fcbabcca9ccb265287cf665da830753f
Cleanup docs * Adjust line wrap to 80 * Fix typos * Improve grammar
[ { "path": "docs-translations/ko-KR/api/accelerator.md", "patch": "@@ -10,8 +10,9 @@ Accelerator는 키보드 단축키를 표현하는 문자열입니다, 여러 \n \n ## 플랫폼에 관련하여 주의할 점\n \n-Linux와 Windows에서는 `Command`키가 없으므로 작동하지 않습니다. 대신에 `CommandOrControl`을\n-사용하면 OS X의 `Command`와 Linux, Windows의 `Control` 모두 지원할 수 있습니다.\n+Linux와 Windows에서는 `...
2015-11-19T19:46:05
golang/go
f9dcda3fd83e83fb29cc6b0f710faa49ba98a54b
9150c16bced33ca591a55fe4fb64817dd659b285
cmd/compile/internal/types2: better error for type assertion/switch on type parameter value Change-Id: I98751d0b2d8aefcf537b6d5200d0b52ffacf1105 Reviewed-on: https://go-review.googlesource.com/c/go/+/363439 Trust: Robert Griesemer <gri@golang.org> Run-TryBot: Robert Griesemer <gri@golang.org> Reviewed-by: Robert Findl...
[ { "path": "src/cmd/compile/internal/types2/expr.go", "patch": "@@ -1459,9 +1459,14 @@ func (check *Checker) exprInternal(x *operand, e syntax.Expr, hint Type) exprKin\n \t\tif x.mode == invalid {\n \t\t\tgoto Error\n \t\t}\n+\t\t// TODO(gri) we may want to permit type assertions on type parameter values at ...
2021-11-12T00:32:16
nodejs/node
ed849f812d7b779e80955876716c64bcd4498c21
c0f031c5bd6dafa2e7a3163d796b566472efc50a
test: strengthen test-worker-prof Force main and worker to stay for some deterministic time Add some more validation check around profile file generation Fixes: https://github.com/nodejs/node/issues/26401 PR-URL: https://github.com/nodejs/node/pull/26608 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: An...
[ { "path": "test/parallel/test-worker-prof.js", "patch": "@@ -1,40 +1,78 @@\n 'use strict';\n-require('../common');\n+const common = require('../common');\n const tmpdir = require('../common/tmpdir');\n const fs = require('fs');\n const assert = require('assert');\n+const util = require('util');\n const { jo...
2019-03-12T12:26:57
rust-lang/rust
f29aa6934b289204b9ec14b7b919f84a89cd3417
f46cf875f44aa2416801ec743f6bad760a9672fa
fix: `needless_bool_assign` missing curlies when on else if
[ { "path": "clippy_lints/src/needless_bool.rs", "patch": "@@ -199,11 +199,16 @@ impl<'tcx> LateLintPass<'tcx> for NeedlessBool {\n let mut applicability = Applicability::MachineApplicable;\n let cond = Sugg::hir_with_applicability(cx, cond, \"..\", &mut applicability);\n ...
2025-06-17T14:07:18
huggingface/transformers
0395ed52ae1926e06a5ad26d671dff3b3af531ad
39b0c9491b80100dafd192fa0a21397c03c5cd24
[`CB`] Refactors the way we access paged (#41370) * up * refactor the way we handle paged attention * affect serve as well * update * fix * cup
[ { "path": "examples/pytorch/continuous_batching.py", "patch": "@@ -184,9 +184,7 @@ def batch_generate(\n parser.add_argument(\"--num-blocks\", \"-n\", type=int, default=None)\n parser.add_argument(\"--max-batch-tokens\", \"-b\", type=int, default=None)\n \n- parser.add_argument(\n- \"--att...
2025-10-06T15:55:31
rust-lang/rust
f46cf875f44aa2416801ec743f6bad760a9672fa
19c1c709054ea1964d942259c5c33ad6489cd1e0
fix: `op_ref` wrongly showed macro definition in suggestions
[ { "path": "clippy_lints/src/operators/op_ref.rs", "patch": "@@ -1,6 +1,6 @@\n use clippy_utils::diagnostics::span_lint_and_then;\n use clippy_utils::get_enclosing_block;\n-use clippy_utils::source::snippet;\n+use clippy_utils::source::snippet_with_context;\n use clippy_utils::ty::{implements_trait, is_copy}...
2025-06-17T13:50:37
golang/go
363459479014bde19e83d9fb6781310f63fb0b45
76fbd6167364fb98e3ebe946cfc16b5b84d4240e
runtime: start ARM atomic kernel helper traceback in caller Like the VDSO, we cannot directly traceback from the Linux kernel ARM atomic/barrier helpers. However, unlike the VDSO, this functions are extremely simple. Neither of the functions we use, kuser_cmpxchg and kuser_memory_barrier, touch SP or LR. We can use t...
[ { "path": "src/runtime/traceback.go", "patch": "@@ -96,6 +96,20 @@ func gentraceback(pc0, sp0, lr0 uintptr, gp *g, skip int, pcbuf *uintptr, max in\n \t\t}\n \t}\n \n+\t// runtime/internal/atomic functions call into kernel helpers on\n+\t// arm < 7. See runtime/internal/atomic/sys_linux_arm.s.\n+\t//\n+\t//...
2021-11-10T17:56:40
nodejs/node
a7a871476e0116e85b7ae8e5b2eb00761206ab75
0d21299384a81bdcc9051dad088f2fc103eb59bd
doc: change error message to 'not defined' PR-URL: https://github.com/nodejs/node/pull/26857 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com>
[ { "path": "doc/api/errors.md", "patch": "@@ -35,7 +35,7 @@ are handled using the [`try…catch` construct][try-catch] provided by the\n JavaScript language.\n \n ```js\n-// Throws with a ReferenceError because z is undefined\n+// Throws with a ReferenceError because z is not defined.\n try {\n const m = 1;\...
2019-03-22T14:50:11
electron/electron
eca98b85fcbabcca9ccb265287cf665da830753f
0232b77ce3243a0f00b601f73b1a7073fcde0236
Cleanup docs, fix typos
[ { "path": "README-ko.md", "patch": "@@ -8,26 +8,26 @@\n \n :zap: *프레임워크 이름이 Atom Shell에서 Electron으로 변경되었습니다* :zap:\n \n-Electron 프레임워크는 JavaScript, HTML 그리고 CSS를 사용하여 Cross-Platform 데스크톱\n-어플리케이션을 개발할 수 있도록 해주는 프레임워크입니다. 이 프레임워크는\n+Electron 프레임워크는 JavaScript, HTML 그리고 CSS를 사용하여\n+Cross-Platform 데스크톱 어플리케이션을...
2015-11-19T17:25:44
huggingface/transformers
11e4b5e5ee71525273fe66e7a0a845786a6e3a97
fa36c973fc5f2f473f58013097e21ed74025ea42
make some ut cases pass on xpu w/ latest torch (#41337) * make some ut cases pass on xpu w/ latest torch Signed-off-by: Yao, Matrix <matrix.yao@intel.com> * Update test_modeling_llava_onevision.py * Apply style fixes --------- Signed-off-by: Yao, Matrix <matrix.yao@intel.com> Co-authored-by: github-actions[bot] <...
[ { "path": "tests/models/aya_vision/test_modeling_aya_vision.py", "patch": "@@ -393,7 +393,7 @@ def test_small_model_integration_batched_generate(self):\n decoded_output = processor.decode(output[0, inputs[\"input_ids\"].shape[1] :], skip_special_tokens=True)\n expected_outputs = Expectations...
2025-10-06T15:38:00