repo
stringclasses
15 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
64.3k
files
listlengths
1
300
timestamp
timestamp[s]date
2013-03-13 20:45:00
2026-04-11 07:48:46
vercel/next.js
66f0983cb881f9c2f52127eec67c4d140eda67b5
8e3cd83dc89207dfbdbc25c63efc7e389db06994
Update 06-lazy-loading.mdx: Incorrect filename in Example on "Importing Named Imports" (#52932) The correct filename is seen on PagesOnly. But on AppOnly, the filename is not correct. It should be "hello" instead of "ClientComponent". line to change: from: import('../components/ClientComponent').then((mod) => mod.Hel...
[ { "path": "docs/02-app/01-building-your-application/05-optimizing/06-lazy-loading.mdx", "patch": "@@ -156,7 +156,7 @@ export function Hello() {\n import dynamic from 'next/dynamic'\n \n const ClientComponent = dynamic(() =>\n- import('../components/ClientComponent').then((mod) => mod.Hello)\n+ import('../...
2023-07-20T12:57:18
electron/electron
d014f7fc76abe8adba7cf6f03748049a9f979c63
9267004b535f78470ecb029e4455d650aa4567e1
fix spell error
[ { "path": "docs/api/frameless-window.md", "patch": "@@ -50,7 +50,7 @@ let win = new BrowserWindow({transparent: true, frame: false})\n * The `blur` filter only applies to the web page, so there is no way to apply\n blur effect to the content below the window (i.e. other applications open on\n the user's...
2016-06-16T01:31:10
nodejs/node
695e8195176730078dba4d8c8c1ba4acf236d651
1f4f2b488e0bc189da4759973db480e3c0dd01dd
doc: exitedAfterDisconnect value can be false Fixed the documentation to reflect the changes in the default value of worker.exitedAfterDisconnect PR-URL: https://github.com/nodejs/node/pull/29404 Fixes: https://github.com/nodejs/node/issues/28837 Refs: https://github.com/nodejs/node/pull/3743 Reviewed-By: David Carli...
[ { "path": "doc/api/cluster.md", "patch": "@@ -336,7 +336,9 @@ added: v6.0.0\n \n * {boolean}\n \n-Set by calling `.kill()` or `.disconnect()`. Until then, it is `undefined`.\n+This property is `true` if the worker exited due to `.kill()` or\n+`.disconnect()`. If the worker exited any other way, it is `false...
2019-09-02T07:52:19
golang/go
ae9ce822ff4015fbbe7aa4303e6f3c160f2c53af
9b90838712856cad86504a526e566f963f86c04e
net/netip: return an error from ParsePrefix with IPv6 zone input net.ParseCIDR already rejects input in the form of 2001:db8::%a/32, but netip.ParsePrefix previously accepted the input and silently dropped the zone. Make the two consistent by always returning an error if an IPv6 zone is present in CIDR input for Parse...
[ { "path": "src/net/netip/netip.go", "patch": "@@ -1290,6 +1290,8 @@ func (p Prefix) IsSingleIP() bool { return p.bits != 0 && int(p.bits) == p.ip.Bi\n // ParsePrefix parses s as an IP address prefix.\n // The string can be in the form \"192.168.1.0/24\" or \"2001:db8::/32\",\n // the CIDR notation defined i...
2022-03-29T14:42:58
vercel/next.js
8664ffe26dafd7529d5fc674294c0f53709d51c3
4994a428ae5beeeb5e0ece1d791458a5ab1c41b2
fix: allow smooth scrolling if only hash changes (pages & app) (#52915) We were preventing smooth scrolling to avoid jarring UX when `scroll-behavior: smooth` was set and the user navigates to another route ([PR](https://github.com/vercel/next.js/pull/40642) and [related comment](https://github.com/vercel/next.js/issu...
[ { "path": "packages/next/src/client/components/layout-router.tsx", "patch": "@@ -158,7 +158,7 @@ interface ScrollAndFocusHandlerProps {\n segmentPath: FlightSegmentPath\n }\n class InnerScrollAndFocusHandler extends React.Component<ScrollAndFocusHandlerProps> {\n- handlePotentialScroll = () => {\n+ hand...
2023-07-20T06:13:04
huggingface/transformers
eaab9f2fdedf450de24d46e2e2bb63f12e373349
e23f92b30853a4e776b1512b7d61a9513fcdc3c9
refactor + robusts tests for Tensor Parallel (#42809) * begin Moe test tensor parallel * create tiny moe model + fix test tensor parallel Moe eaeaae * create tiny moe model + fix test tensor parallel Moe eaeaae fix tensor parallel MoE test fix tensor parallel MoE test * fix backward pass test in tensor parallel...
[ { "path": "src/transformers/core_model_loading.py", "patch": "@@ -32,13 +32,10 @@\n \n from .integrations.accelerate import get_device, offload_weight\n from .integrations.tensor_parallel import ALL_PARALLEL_STYLES\n-from .utils import is_env_variable_true, is_torch_greater_or_equal, logging\n+from .utils i...
2026-01-30T15:22:12
golang/go
9b90838712856cad86504a526e566f963f86c04e
1724077b789ad92972ab1ac03788389645306cbb
go/types, types2: preserve parent scope when substituting receivers Fixes #51920 Change-Id: I29e44a52dabee5c09e1761f9ec8fb2e8795f8901 Reviewed-on: https://go-review.googlesource.com/c/go/+/395538 Trust: Robert Findley <rfindley@google.com> Run-TryBot: Robert Findley <rfindley@google.com> Reviewed-by: Robert Griesemer...
[ { "path": "src/cmd/compile/internal/types2/api_test.go", "patch": "@@ -2305,6 +2305,103 @@ func TestInstanceIdentity(t *testing.T) {\n \t}\n }\n \n+// TestInstantiatedObjects verifies properties of instantiated objects.\n+func TestInstantiatedObjects(t *testing.T) {\n+\tconst src = `\n+package p\n+\n+type T...
2022-03-24T17:29:03
nodejs/node
ab05d43083fd5f4dafbe9d10442d265a52833b3f
70bc62eaf8a5b856fa025d59064773c21ecd449b
doc: remove wrong escapes PR-URL: https://github.com/nodejs/node/pull/29452 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
[ { "path": "doc/changelogs/CHANGELOG_V10.md", "patch": "@@ -118,7 +118,7 @@ This release patches a [regression](https://github.com/nodejs/node/issues/28932)\n ### Notable changes\n \n * **deps**: upgrade openssl sources to 1.1.1c (Sam Roberts) [#28212](https://github.com/nodejs/node/pull/28212)\n-* **stream*...
2019-09-05T13:53:53
vercel/next.js
4994a428ae5beeeb5e0ece1d791458a5ab1c41b2
3e821ef1893a42e4f247364000785eb806bf2211
improve error DX on pages with RSC build errors (#52843) ### What? - Visiting a page in the app router without a proper component export doesn't show the dev overlay, but logs errors to the console - When it does show the error overlay (e.g. during an HMR event), the error message was sharing the module code itself ra...
[ { "path": "packages/next/src/build/webpack-config.ts", "patch": "@@ -384,6 +384,7 @@ export function getDefineEnv({\n 'process.env.__NEXT_WEB_VITALS_ATTRIBUTION': JSON.stringify(\n config.experimental.webVitalsAttribution\n ),\n+ 'process.env.__NEXT_ASSET_PREFIX': JSON.stringify(config.asse...
2023-07-20T00:32:57
electron/electron
18a38dbfc1f64cc33a9e54b5c8f7dc392ec2628e
b0f3443d72fcc6546d17736d7e45d3062479f4a5
Fix exception in alert for inavlid parameter
[ { "path": "lib/renderer/override.js", "patch": "@@ -154,20 +154,11 @@ window.open = function (url, frameName, features) {\n }\n \n // Use the dialog API to implement alert().\n-window.alert = function (message, title) {\n- var buttons\n- if (arguments.length === 0) {\n- message = ''\n- }\n- if (title...
2016-06-14T06:22:01
huggingface/transformers
26c671381c640881c95c0bf2b1a1afbd28cabb94
30088d05a7db331b9741facdab26cec7e6b31e41
minimax_m2: fix failed test case for XPU (#43324) fix failed test case for XPU Signed-off-by: Liu, Kaixuan <kaixuan.liu@intel.com>
[ { "path": "tests/models/minimax_m2/test_modeling_minimax_m2.py", "patch": "@@ -114,21 +114,22 @@ def test_small_model_logits_batched(self):\n EXPECTED_LOGITS_LEFT_UNPADDED = Expectations(\n {\n (\"cuda\", 8): [[1.1094, -1.5352, -1.5811], [1.9395, 0.1461, -1.5537], [1.7803...
2026-01-30T15:03:26
golang/go
c3fcd0117784ac05e35120ac0de6c960b400a31e
32fdad19a246143ae4f194d1b39886d778de1380
go/build: recognize "unix" build tag The new "unix" build tag matches any Unix or Unix-like system. This is only recognized on go:build lines, not in file names. For #20322 Fixes #51572 Change-Id: I3a991f9e69353b25e259bc6462709cdcd83640fb Reviewed-on: https://go-review.googlesource.com/c/go/+/389934 Trust: Ian Lance...
[ { "path": "src/cmd/dist/build.go", "patch": "@@ -976,12 +976,41 @@ func packagefile(pkg string) string {\n \treturn pathf(\"%s/pkg/%s_%s/%s.a\", goroot, goos, goarch, pkg)\n }\n \n+// unixOS is the set of GOOS values matched by the \"unix\" build tag.\n+// This is the same list as in go/build/syslist.go.\n+...
2022-03-04T02:21:37
huggingface/transformers
797c822a1731af4cb61f3bf71681d0941cd74eef
fc2653be1c1a2830c56945a2ac4ad54300944db1
Fix extras on all supported Python versions (#43490) Makes sure extras can be installed on all supported Python versions. - cleaned up extras (removed natten, tweaked mistral-common etc,) - adds a supported Python version range (10->14) - dynamically update the metadata - run a smoke test in the CI every night to ver...
[ { "path": ".github/workflows/extras-smoke-test.yml", "patch": "@@ -0,0 +1,198 @@\n+name: Extras Smoke Test\n+\n+on:\n+ schedule:\n+ # Run every night at 3 AM UTC\n+ - cron: \"0 3 * * *\"\n+env:\n+ SLACK_CHANNEL_ID: '#transformers-gh-ci-central'\n+\n+jobs:\n+ get-python-versions:\n+ name: Get sup...
2026-01-30T14:27:16
nodejs/node
e585caa2bebbd238c763af588a40879b61cf240f
eaa9f833098d687ad0c49f96bff0c79650b293b0
http2: do not crash on stream listener removal w/ destroyed session Do not crash when the session is no longer available. Fixes: https://github.com/nodejs/node/issues/29457 PR-URL: https://github.com/nodejs/node/pull/29459 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmai...
[ { "path": "lib/internal/http2/core.js", "patch": "@@ -426,23 +426,27 @@ function sessionListenerRemoved(name) {\n // Also keep track of listeners for the Http2Stream instances, as some events\n // are emitted on those objects.\n function streamListenerAdded(name) {\n+ const session = this[kSession];\n+ if...
2019-09-05T18:01:18
vercel/next.js
3e821ef1893a42e4f247364000785eb806bf2211
20b115e827c43d7191740fc190f20ddaf89e536d
Support basePath with edge runtime for Custom App Routes (#52910) Fixes a bug where the edge runtime didn't support `basePath` with Custom App Routes. - Fixes #49661
[ { "path": "packages/next/src/server/web/edge-route-module-wrapper.ts", "patch": "@@ -4,11 +4,12 @@ import type { RouteModule } from '../future/route-modules/route-module'\n import type { NextRequest } from './spec-extension/request'\n \n import './globals'\n+\n import { adapter, type AdapterOptions } from '...
2023-07-19T23:54:34
huggingface/transformers
10873014241aaddb23b68de98f6d398626febca0
f7069c4e0b73b19f140c4a339b4d47aaddbb43d1
fix(models): Fix suno/bark-small CPU offload device mismatch causing CI failures (#43607) fix(bark): Ensure device consistency during CPU offload
[ { "path": "src/transformers/models/bark/modeling_bark.py", "patch": "@@ -474,8 +474,6 @@ def forward(\n batch_size = input_embeds.shape[0]\n seq_length = input_shape[-1]\n \n- device = input_ids.device if input_ids is not None else input_embeds.device\n-\n if self.gradient_che...
2026-01-30T13:11:05
golang/go
32fdad19a246143ae4f194d1b39886d778de1380
460fd63cccd2f1d16fc4b1b761545b1649e14e28
bytes: restore old Trim/TrimLeft behavior for nil Keep returning nil for the cases where we historically returned nil, even though this is slightly different for TrimLeft and TrimRight. Fixes #51793 Change-Id: Ifbdfc6b09d52b8e063cfe6341019f9b2eb8b70e9 Reviewed-on: https://go-review.googlesource.com/c/go/+/393876 Tru...
[ { "path": "src/bytes/bytes.go", "patch": "@@ -909,7 +909,11 @@ func containsRune(s string, r rune) bool {\n // Trim returns a subslice of s by slicing off all leading and\n // trailing UTF-8-encoded code points contained in cutset.\n func Trim(s []byte, cutset string) []byte {\n-\tif len(s) == 0 || cutset =...
2022-03-18T19:14:20
nodejs/node
02f3dd24f38983b3211bcec7e96cb005c3babef8
9c57e4dedbe5e72a226180f1440cf2884e3cad5c
doc: fix unsafe writable stream code example Update writable stream code example using async iterator to use safer `finished()` method instead of a `finish` event to avoid uncaught exceptions Fixes: https://github.com/nodejs/node/issues/29397 PR-URL: https://github.com/nodejs/node/pull/29425 Reviewed-By: James M Sne...
[ { "path": "doc/api/stream.md", "patch": "@@ -2559,6 +2559,7 @@ it is important to ensure the correct handling of backpressure and errors.\n \n ```js\n const { once } = require('events');\n+const finished = util.promisify(stream.finished);\n \n const writable = fs.createWriteStream('./file');\n \n@@ -2570,26...
2019-09-03T17:34:36
electron/electron
8ebc34aeee47485a9c44a259c234dab40429b0a6
98eeadeb84cdddc83407cc22f78c26904403ca4c
Fix double free when closing window with devtools opened
[ { "path": "brightray/browser/inspectable_web_contents_impl.cc", "patch": "@@ -226,6 +226,7 @@ InspectableWebContentsImpl::InspectableWebContentsImpl(\n }\n \n InspectableWebContentsImpl::~InspectableWebContentsImpl() {\n+ Observe(nullptr);\n }\n \n InspectableWebContentsView* InspectableWebContentsImpl::Ge...
2016-06-14T04:38:28
vercel/next.js
20b115e827c43d7191740fc190f20ddaf89e536d
7771e7820796e11c62c837816841b025b45af182
wrong content for next.config.mjs for MDX Plugins (#52738)
[ { "path": "docs/02-app/01-building-your-application/06-configuring/05-mdx.mdx", "patch": "@@ -243,23 +243,27 @@ You can optionally provide `remark` and `rehype` plugins to transform the MDX co\n \n Since the `remark` and `rehype` ecosystem is ESM only, you'll need to use `next.config.mjs` as the configurati...
2023-07-19T21:55:40
huggingface/transformers
f7069c4e0b73b19f140c4a339b4d47aaddbb43d1
6bc84bb3f9563ae3dfb5528f6a1f084812aa146d
[CB] [Serve] Fix broken serve tests (#43594) * Make sure max_length is always an int * Fixed CB streamer * Better behavior for max_new_tokens * Hidden var * Style --------- Co-authored-by: Arthur <48595927+ArthurZucker@users.noreply.github.com>
[ { "path": "src/transformers/cli/serve.py", "patch": "@@ -839,6 +839,17 @@ def stream_chat_completion(request_id, decode_stream):\n for result in self.running_continuous_batching_manager.request_id_iter(request_id):\n n_tokens_generated += 1\n \n+ # Alwa...
2026-01-30T13:10:49
golang/go
460fd63cccd2f1d16fc4b1b761545b1649e14e28
3c7f9b80222376fa01f8c6e3b411281c23dd74ed
io/fs, path/filepath: honor SkipDir on second WalkDirFunc error call Fixes #51617 Change-Id: I03e9e575d9bad1481e7e4f051b50a077ba5f2fe0 Reviewed-on: https://go-review.googlesource.com/c/go/+/392154 Trust: Ian Lance Taylor <iant@golang.org> Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gopher Robot <gob...
[ { "path": "src/io/fs/walk.go", "patch": "@@ -76,6 +76,9 @@ func walkDir(fsys FS, name string, d DirEntry, walkDirFn WalkDirFunc) error {\n \t\t// Second call, to report ReadDir error.\n \t\terr = walkDirFn(name, d, err)\n \t\tif err != nil {\n+\t\t\tif err == SkipDir && d.IsDir() {\n+\t\t\t\terr = nil\n+\t\...
2022-03-13T00:18:23
huggingface/transformers
6bc84bb3f9563ae3dfb5528f6a1f084812aa146d
704f7d94b1d0d2a7c0b7053ac48711bce9632864
Docs: fix typo in weight converter guide (#43610) Co-authored-by: Fahad Alghanim <fahadalghanim@Fahads-MacBook-Pro.local>
[ { "path": "docs/source/en/weightconverter.md", "patch": "@@ -134,7 +134,7 @@ At a high level, the contract looks like this:\n You can do mostly 3 things:\n - add operations to the list of converters: these will be applied on all weights except for the ones collected in any of the `WeightConverter`. T...
2026-01-30T13:02:26
vercel/next.js
7771e7820796e11c62c837816841b025b45af182
2c1c8fa089afef116ec1a08b321fd0e5419f5f3b
Fixed:#52853 Lacking 'color' attribute in IconDescriptor Metadata (#52902) Fixes #52853 Lacking 'color' attribute in IconDescriptor Metadata ```diff export type IconDescriptor = { url: string | URL type?: string sizes?: string + color?: string // added the color attribute /** defaults to rel="ico...
[ { "path": "packages/next/src/lib/metadata/types/metadata-types.ts", "patch": "@@ -100,6 +100,7 @@ export type IconDescriptor = {\n url: string | URL\n type?: string\n sizes?: string\n+ color?: string\n /** defaults to rel=\"icon\" unless superseded by Icons map */\n rel?: string\n media?: strin...
2023-07-19T21:45:58
rust-lang/rust
3e675f4c5085df8ae19392e6de2caef7cb336f27
558d25371fe1cc3d907ebcfc4e12d3c27acbe2b7
Fix `--skip-std-check-if-no-download-rustc` Since https://github.com/rust-lang/rust/pull/143048, we now explicitly set the build compiler for `check::Std`, which caused it to be built before we checked `--skip-std-check-if-no-download-rustc`. So I moved the check earlier to `make_run`, which resolves it. I also added...
[ { "path": "src/bootstrap/src/core/build_steps/check.rs", "patch": "@@ -47,6 +47,13 @@ impl Step for Std {\n }\n \n fn make_run(run: RunConfig<'_>) {\n+ if !run.builder.download_rustc() && run.builder.config.skip_std_check_if_no_download_rustc {\n+ eprintln!(\n+ \"WAR...
2025-07-09T20:25:03
huggingface/transformers
562106fe4aff6141b6651f3b6c6220de7c6e96a6
ee94767d7976a6ec2e58068b6bd0a0ba9b0ea5f7
Fixes configuration default values (#43592) * fixes it finally I hope for all models! * tie word embeddings! * vision LLMs * Apply repo consistency fixes * Apply repo consistency fixes * revert VLMs * unpleasant bug * fix repo * skip it * llava mismatch --------- Co-authored-by: github-actions[bot] <github-...
[ { "path": "src/transformers/models/cohere2/configuration_cohere2.py", "patch": "@@ -185,10 +185,6 @@ def __init__(\n layer_type_validation(self.layer_types, self.num_hidden_layers)\n \n self.rope_parameters = rope_parameters\n- self.pad_token_id = pad_token_id\n- self.bos_token...
2026-01-30T11:37:25
vercel/next.js
2c1c8fa089afef116ec1a08b321fd0e5419f5f3b
b12e6fef0c001dec369cde010fd6db85ce290d54
docs: fix example component in MDX documentation (#52753)
[ { "path": "docs/02-app/01-building-your-application/06-configuring/05-mdx.mdx", "patch": "@@ -231,7 +231,7 @@ export const metadata = {\n };\n \n export default Page({ children }) => (\n- <MyLayoutComponent meta={meta}><HelloWorld /></MyLayoutComponent>\n+ <MyLayoutComponent meta={metadata}><HelloWorld />...
2023-07-19T21:25:31
electron/electron
82d0d06d61bce4f710a571c1daeaad02bb7f0bbd
2dc453b4be9d60ec144eff1c26317d90d47640f7
Log error when repling on Windows
[ { "path": "default_app/main.js", "patch": "@@ -309,6 +309,12 @@ function loadApplicationByUrl (appUrl) {\n }\n \n function startRepl () {\n+ if (process.platform === 'win32') {\n+ console.error('Electron REPL not currently supported on Windows')\n+ process.exit(1)\n+ return\n+ }\n+\n repl.start...
2016-06-13T16:46:33
golang/go
3c7f9b80222376fa01f8c6e3b411281c23dd74ed
42ca44494c6ca94c6a1f433e61bc5d95d51b2222
net/mail: accept UT as a timezone Fixes #39906 Change-Id: I8fcaf4c1ccc4131d770cff08d9c80f520885a6b5 Reviewed-on: https://go-review.googlesource.com/c/go/+/396214 Trust: Ian Lance Taylor <iant@golang.org> Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gopher Robot <gobot@golang.org> Reviewed-by: Emmanue...
[ { "path": "src/net/mail/message.go", "patch": "@@ -79,7 +79,7 @@ func buildDateLayouts() {\n \tyears := [...]string{\"2006\", \"06\"} // year = 4*DIGIT / 2*DIGIT\n \tseconds := [...]string{\":05\", \"\"} // second\n \t// \"-0700 (MST)\" is not in RFC 5322, but is common.\n-\tzones := [...]string{\"-0700\",...
2022-03-28T17:18:03
rust-lang/rust
e7ef31d651be6aa8809933fabb793b98300b970f
e43d139a82620a268d3828a73e12a8679339e8f8
mbe: Refactor diagnostics for invalid metavar expression syntax Give a more user-friendly diagnostic about the following: * Trailing tokens within braces, e.g. `${foo() extra}` * Missing parentheses, e.g. `${foo}` * Incorrect number of arguments, with a hint about correct usage.
[ { "path": "compiler/rustc_expand/messages.ftl", "patch": "@@ -133,6 +133,27 @@ expand_module_multiple_candidates =\n expand_must_repeat_once =\n this must repeat at least once\n \n+expand_mve_extra_tokens =\n+ unexpected trailing tokens\n+ .label = for this metavariable expression\n+ .range = t...
2025-06-21T05:01:20
vercel/next.js
b12e6fef0c001dec369cde010fd6db85ce290d54
08e87fb4051ef048be1ec8b9edacaf3b6fd8218c
chore(docs): fix typo in generate metadata docs (#52904) - See current bug: https://nextjs.org/docs/app/api-reference/functions/generate-metadata#generatemetadata-function - Closes #52903
[ { "path": "docs/02-app/02-api-reference/04-functions/generate-metadata.mdx", "patch": "@@ -109,8 +109,7 @@ export async function generateMetadata(\n export default function Page({ params, searchParams }: Props) {}\n ```\n \n-```\n-jsx filename=\"app/products/[id]/page.js\" switcher\n+```jsx filename=\"app/p...
2023-07-19T21:21:18
electron/electron
bab8f6f60f603f53b51ed9aa821fbb3f4a935b52
6176f6575903acf7ac09217a71dfb273a727813a
:memo: Update Korean docs as upstream * Small fixes [ci skip]
[ { "path": "docs-translations/ko-KR/README.md", "patch": "@@ -6,7 +6,7 @@ URL에 포함되어 있습니다. 만약 그렇지 않다면, 아마 현재 보\n 수 있습니다. 또한 GitHub 인터페이스의 \"Switch branches/tags\" 드롭다운 메뉴에서도\n 사용 중인 Electron 버전으로 변경할 수 있습니다.\n \n-**역주:** 한국어 번역 문서는 `atom.io`에 반영되어 있지 않습니다. 한국어 번역 문서는\n+**역자주:** 한국어 번역 문서는 `atom.io`에 반영되어 있지 않...
2016-06-12T18:28:11
huggingface/transformers
ee94767d7976a6ec2e58068b6bd0a0ba9b0ea5f7
8d58f6aa9220bdad3151257d916df085911b2a05
Fix `make_batched_video` with 5D arrays (#43486) fix make video batched with 5D arrays
[ { "path": "src/transformers/video_utils.py", "patch": "@@ -200,7 +200,9 @@ def make_batched_videos(videos) -> list[Union[np.ndarray, \"torch.Tensor\", \"URL\",\n except (IndexError, TypeError):\n pass\n \n- if isinstance(videos, str) or is_valid_video(videos):\n+ if is_batched_video(videos...
2026-01-30T10:27:49
nodejs/node
7bff96204bd2c4de4f7ff294d8d6be5a9c53c8d4
2882ce911df821895c70d2ee99a88a4554fa3221
build,win: fix Python detection on localized OS This code previously assumed the default value was always printed to the console by reg.exe as "(default)", but this is not true on localized versions of Windows and can contain spaces. Fixes: https://github.com/nodejs/node/issues/29417 PR-URL: https://github.com/nodej...
[ { "path": ".gitattributes", "patch": "@@ -1,2 +1,3 @@\n test/fixtures/* -text\n vcbuild.bat text eol=crlf\n+tools/msvs/find_python.cmd text eol=crlf", "additions": 1, "deletions": 0, "language": "Unknown" }, { "path": "tools/msvs/find_python.cmd", "patch": "@@ -60,14 +60,16 @@ exit /...
2019-09-03T15:44:50
golang/go
1a9972ec87de1eba7f9f71c8ed4afa88b0c122d4
33987b408c391433ad8214a56677e9af6463fd10
cmd/internal/obj: sort relocations At least on some platforms (e.g. PE dynamic loader) relocations need to be sorted in address order. Currently we don't always emit relocations in address order: e.g. for array literal with out-of- order element initializers, or out-of-order DATA instructions in assembly code. Sort th...
[ { "path": "src/cmd/internal/obj/objfile.go", "patch": "@@ -173,6 +173,7 @@ func WriteObjFile(ctxt *Link, b *bio.Writer) {\n \th.Offsets[goobj.BlkReloc] = w.Offset()\n \tfor _, list := range lists {\n \t\tfor _, s := range list {\n+\t\t\tsort.Sort(relocByOff(s.R)) // some platforms (e.g. PE) requires relocat...
2022-03-28T16:46:46
huggingface/transformers
8d58f6aa9220bdad3151257d916df085911b2a05
071e178be163917777dac272e8e26525bc20db08
Operation Green CI II (#43537) * Widen tolerances for generation a little * Expand tols for MoEs only * make fix-repo * Factor it out into a function with a clearer name * Factor it out into a function with a clearer name * Factor it out into a function with a clearer name * Stop swallowing errors in setUpClass ...
[ { "path": "src/transformers/processing_utils.py", "patch": "@@ -514,17 +514,13 @@ class ChatTemplateLoadKwargs(TypedDict, total=False):\n \n num_frames (`int`, *optional*):\n Number of frames to sample uniformly. If not passed, the whole video is loaded.\n- fps (`int` or `float`, *optional*):...
2026-01-29T18:49:20
vercel/next.js
12d95e058502710fb08eca676b0e4d49b04e7b20
e284ba2db2a7e6223a5e94fe6e1649bad241a50a
Remove unnecessary ValueDebugFormat item, hide Vc field (vercel/turbo#5567) ### Description This removes unnecessary items from the IDE's autosuggestion. I'd also like to get rid of all the `*_inline` suggestions, but RA will ignore `#[doc(hidden)]` when inside the same crate. I don't think there's a way to in...
[ { "path": "crates/turbo-tasks-macros/src/derive/value_debug_format_macro.rs", "patch": "@@ -33,29 +33,18 @@ pub fn derive_value_debug_format(input: TokenStream) -> TokenStream {\n let formatting_logic =\n match_expansion(&derive_input, &format_named, &format_unnamed, &format_unit);\n \n- let ...
2023-07-19T20:17:39
nodejs/node
2882ce911df821895c70d2ee99a88a4554fa3221
4e5bb250d8c256dd32af3b2a7fd99197a56c21d6
tools: delete v8_external_snapshot.gypi Delete the v8_external_snapshot target from gyp and disable the v8_use_external_startup_data option since it is never used anyway. Refs: https://github.com/nodejs/node/pull/29363#issuecomment-526103293 Fixes: https://github.com/nodejs/node/issues/28964 PR-URL: https://github.c...
[ { "path": "tools/v8_gypfiles/broken/standalone.gypi", "patch": "@@ -227,12 +227,6 @@\n # speeds.\n 'v8_optimized_debug%': 0,\n \n- # Use external files for startup data blobs:\n- # the JS builtins sources and the start snapshot.\n- # Embedders that don't use standalone.gypi will need to...
2019-08-29T16:27:09
electron/electron
6176f6575903acf7ac09217a71dfb273a727813a
3ebf0fd3352deb8c94df051d790a058029acd0f0
:memo: Fix grammatical issue [ci skip]
[ { "path": "docs-translations/ko-KR/README.md", "patch": "@@ -22,10 +22,10 @@ Electron에 대해 자주 묻는 질문이 있습니다. 이슈를 생성하기\n * [지원하는 플랫폼](tutorial/supported-platforms.md)\n * [보안](tutorial/security.md)\n * [Electron 버전 관리](tutorial/electron-versioning.md)\n-* [어플리케이션 배포](tutorial/application-distribution.md)\n-* [M...
2016-06-12T17:51:35
rust-lang/rust
b286bc3141936114edcc7d124b2488e63ef4eb6f
3be0b6b72cb41eaf1094f0b19b3e54fb2d722968
fix aux-build failures
[ { "path": "tests/ui/imports/ambiguous-1.rs", "patch": "@@ -1,5 +1,8 @@\n+//@ check-pass\n // https://github.com/rust-lang/rust/pull/112743#issuecomment-1601986883\n \n+#![warn(ambiguous_glob_imports)]\n+\n macro_rules! m {\n () => {\n pub fn id() {}\n@@ -24,6 +27,6 @@ pub use openssl::*;\n \n fn m...
2025-07-09T21:18:32
huggingface/transformers
071e178be163917777dac272e8e26525bc20db08
e7a2c0cc3471df9df0dd3ee739d1e1e034d549e0
enable cpu paged cache (#42869) * enable cpu paged cache Signed-off-by: jiqing-feng <jiqing.feng@intel.com> * enable cpu example Signed-off-by: jiqing-feng <jiqing.feng@intel.com> * fix device map Signed-off-by: jiqing-feng <jiqing.feng@intel.com> * update tests Signed-off-by: jiqing-feng <jiqing.feng@intel.com...
[ { "path": "examples/pytorch/continuous_batching_simple.py", "patch": "@@ -19,6 +19,7 @@\n \n from transformers import AutoModelForCausalLM, AutoTokenizer\n from transformers.generation import GenerationConfig\n+from transformers.utils import is_torch_accelerator_available\n \n \n MODEL_ID = \"Qwen/Qwen3-4B-...
2026-01-29T15:27:39
golang/go
26a8cf56e0cfdb555025f60acf2e2ec773a5f492
0d651041a9f48bbd1456317dfc784cdfa253e877
cmd/compile/internal/syntax: fix scanner.{op,prec} docs These fields are also valid for _Star. Change-Id: I2582000ac1737c41416e69f91404f7cac279d718 Reviewed-on: https://go-review.googlesource.com/c/go/+/395916 Trust: Matthew Dempsky <mdempsky@google.com> Reviewed-by: Robert Griesemer <gri@golang.org>
[ { "path": "src/cmd/compile/internal/syntax/scanner.go", "patch": "@@ -39,8 +39,8 @@ type scanner struct {\n \tlit string // valid if tok is _Name, _Literal, or _Semi (\"semicolon\", \"newline\", or \"EOF\"); may be malformed if bad is true\n \tbad bool // valid if tok is _Literal, true if ...
2022-03-26T02:03:37
vercel/next.js
86d7b85dc9d8a2edf2c7ad90a7ca2008f81cf358
31453fa20ee2accc043a9364c858b69a8938ac09
Turbopack: Next.rs API improvements (#52856) ### What? * adds `Project.update` to update project options * fix manifest paths to be under `server` * pass `env` into project * handle and expose issues in all methods * expose server paths in WrittenEndpoint
[ { "path": "packages/next-swc/crates/napi/src/next_api/endpoint.rs", "patch": "@@ -5,23 +5,19 @@ use next_api::route::{Endpoint, WrittenEndpoint};\n use turbo_tasks::Vc;\n use turbopack_binding::turbopack::core::error::PrettyPrintError;\n \n-use super::utils::{subscribe, NapiDiagnostic, NapiIssue, RootTask, ...
2023-07-19T17:50:15
nodejs/node
af161f0efb1eb6690c64144cff2988d25186a46f
17d87d522c674362a4769d20c05cb0f1daf10e7f
tools: fix GYP ninja generator for Python 3 PR-URL: https://github.com/nodejs/node/pull/29416 Reviewed-By: Christian Clauss <cclauss@me.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Ujjwal Sharma <usharma1998@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
[ { "path": "tools/gyp/pylib/gyp/generator/ninja.py", "patch": "@@ -355,7 +355,7 @@ def WriteCollapsedDependencies(self, name, targets, order_only=None):\n \n Uses a stamp file if necessary.\"\"\"\n \n- assert targets == filter(None, targets), targets\n+ assert targets == [item for item in targets i...
2019-09-03T07:46:55
electron/electron
d73d803a57ebb434f0a3e56d9ef0134a4a62c283
c68ca16148f226448403cc436276785180c4a0bb
:memo: Small fixes [ci skip]
[ { "path": "docs-translations/ko-KR/tutorial/application-distribution.md", "patch": "@@ -157,16 +157,16 @@ Electron의 개발자로써, Electron을 매우 많은 시나리오에서도 작\n \n 3. 다음의 환경 변수들을 설정합니다:\n \n- * `ELECTRON_GITHUB_TOKEN` - GitHub에 릴리즈를 만들 수 있는 토큰.\n- * `ELECTRON_S3_ACCESS_KEY`, `ELECTRON_S3_BUCKET`, `ELECTRON_S3_SECRET_...
2016-06-12T17:28:25
huggingface/transformers
e7a2c0cc3471df9df0dd3ee739d1e1e034d549e0
5807e0d7a45b119ed48a0923a68ba78c1c7f6c7b
Qwen3 omni - fix get video features (#43588) * qwen3 omni - fix get viedo feats * update typing hints
[ { "path": "src/transformers/models/qwen3_omni_moe/modeling_qwen3_omni_moe.py", "patch": "@@ -1989,7 +1989,7 @@ def get_video_features(\n pixel_values_videos: torch.FloatTensor,\n video_grid_thw: torch.LongTensor | None = None,\n **kwargs: Unpack[TransformersKwargs],\n- ) -> tuple ...
2026-01-29T14:55:29
golang/go
d6a1ffd624bd0d6dbf3a15070e378749612b35c9
a208aa7f339db75f4b79a61be12616b846477a18
runtime/race: update runtime (v3) New tsan runtime (v3) built on llvm commit 1784fe0532a6. The new runtime features: - 2x smaller shadow memory (2x of app memory) - faster fully vectorized (on x86) race detection - small fixed-size vector clocks (512b) - fast vectorized vector clock operations - unlimited number...
[ { "path": "src/runtime/race/README", "patch": "@@ -6,7 +6,7 @@ To update the .syso files use golang.org/x/build/cmd/racebuild.\n \n race_darwin_amd64.syso built with LLVM 89f7ccea6f6488c443655880229c54db1f180153 with https://reviews.llvm.org/D114825 applied and Go 7ccbcc90560468937f02609a43cb39a6e13ff797.\n...
2022-02-21T08:52:14
nodejs/node
17d87d522c674362a4769d20c05cb0f1daf10e7f
02c74e72eacc34fa90ae85983900a5d93f13b6c8
src: fix ValidateDSAParameters when fips is enabled Currently, the following compilation errors are generated when configuring --openssl-is-fips: ../src/node_crypto.cc: In function ‘bool node::crypto::ValidateDSAParameters(EVP_PKEY*)’: ../src/node_crypto.cc:4886:55: error: ‘pkey’ was not declared in this scope if ...
[ { "path": "src/node_crypto.cc", "patch": "@@ -4883,8 +4883,8 @@ static AllocatedBuffer Node_SignFinal(Environment* env,\n static inline bool ValidateDSAParameters(EVP_PKEY* key) {\n #ifdef NODE_FIPS_MODE\n /* Validate DSA2 parameters from FIPS 186-4 */\n- if (FIPS_mode() && EVP_PKEY_DSA == EVP_PKEY_base_...
2019-09-02T08:36:39
vercel/next.js
009b6a19d6fddf6ee613e2fd4e9449f654411e09
2cea3f70007565b1a4d3b0b4e51c323b00fb2d5b
Setting up third-parties package (#51194) This PR Introduces `next/third-parties` - `@next/third-parties` is a new package in the Next.js monorepo. - The package contains collection of components that can be used to efficiently load third party libraries into your Next.js application. - This package uses [Third...
[ { "path": "package.json", "patch": "@@ -73,6 +73,7 @@\n \"@next/env\": \"workspace:*\",\n \"@next/eslint-plugin-next\": \"workspace:*\",\n \"@next/font\": \"workspace:*\",\n+ \"@next/third-parties\": \"workspace:*\",\n \"@next/mdx\": \"workspace:*\",\n \"@next/plugin-storybook\": \"wo...
2023-07-18T17:52:39
huggingface/transformers
5807e0d7a45b119ed48a0923a68ba78c1c7f6c7b
6082a555dcf61fbedf70d535aa3804556968b45e
[GLM-Image] Add batch > 1 support and fix configuration defaults (#43342) * support batch > 1 Signed-off-by: JaredforReal <w13431838023@gmail.com> * test glm image batch Signed-off-by: JaredforReal <w13431838023@gmail.com> * update test Signed-off-by: JaredforReal <w13431838023@gmail.com> * fix for i2i batch Si...
[ { "path": "src/transformers/models/glm_image/configuration_glm_image.py", "patch": "@@ -150,8 +150,8 @@ class GlmImageTextConfig(PreTrainedConfig, RotaryEmbeddingConfigMixin):\n \n Args:\n vocab_size (`int`, *optional*, defaults to 168064):\n- Vocabulary size of the GlmImage model. De...
2026-01-29T14:39:12
golang/go
a208aa7f339db75f4b79a61be12616b846477a18
b10164b29278016cfbc5f42c0f8620cd467993d5
io/ioutil: add deprecation markers to ioutil All the code in ioutil just forwards functionality to code in either the io or os packages, per issue 42026. This change adds the "Deprecated" marker to all the functions in this package. For #42026 Fixes #51927 Change-Id: Ia807bc5c0edb06cc80ec7e35917dcfe2ad50f0ea GitHu...
[ { "path": "src/io/ioutil/ioutil.go", "patch": "@@ -4,7 +4,7 @@\n \n // Package ioutil implements some I/O utility functions.\n //\n-// As of Go 1.16, the same functionality is now provided\n+// Deprecated: As of Go 1.16, the same functionality is now provided\n // by package io or package os, and those impl...
2022-03-28T04:13:24
vercel/next.js
33385aaded928c21ee8cb7059c1d901d4e70f10f
299e830b8fcfea89d58cc1817da7f914cdc5a3aa
Revert "perf: improve URL validation performance" (#52818) > https://github.com/nodejs/node/issues/48816 This was an unsafe change that caused errors to the user due to a bug in Node and a fix will get upstreamed soon but in the meantime we should reverse this. Reverts vercel/next.js#52353
[ { "path": "packages/next/src/server/app-render/validate-url.tsx", "patch": "@@ -1,25 +1,10 @@\n const DUMMY_ORIGIN = 'http://n'\n const INVALID_URL_MESSAGE = 'Invalid request URL'\n \n-// URL.canParse is supported on Node 19 and 20.\n-// Node 18 backport is pending.\n-// Reference: https://github.com/nodejs...
2023-07-18T08:52:18
huggingface/transformers
6082a555dcf61fbedf70d535aa3804556968b45e
3656b8b0ed8299456a6da490c5f3f1debeddb4b8
[Model] Refactor modernbert with the attention interface (#43030) * Refactor FA interface * Simplify code * Update * Simplify the code * Remove comments * Fix UT * Fix _attn_implementation UT * Fix TimmWrapperForImageClassification sdpa dispatch UT * Remove unused parameter * Revise based on comments * Merge...
[ { "path": "docs/source/en/model_doc/modernbert.md", "patch": "@@ -89,6 +89,49 @@ echo -e \"Plants create [MASK] through a process known as photosynthesis.\" | tran\n </hfoption>\n </hfoptions>\n \n+## Padding-free inference and training\n+\n+ModernBERT supports padding-free inference and training. For examp...
2026-01-29T14:21:10
nodejs/node
18cb4372d1fccb58580f82a58649454032774832
a3307eac0e6fb276274e4e9bbaab1aa4433e795f
http2: do not start reading after write if new write is on wire Don’t start reading more input data if we’re still busy writing output. This was overlooked in 8a4a1931b8b98. Fixes: https://github.com/nodejs/node/issues/29353 Fixes: https://github.com/nodejs/node/issues/29393 PR-URL: https://github.com/nodejs/node/pu...
[ { "path": "src/node_http2.cc", "patch": "@@ -742,8 +742,10 @@ void Http2Session::Close(uint32_t code, bool socket_closed) {\n flags_ |= SESSION_STATE_CLOSING;\n \n // Stop reading on the i/o stream\n- if (stream_ != nullptr)\n+ if (stream_ != nullptr) {\n+ flags_ |= SESSION_STATE_READING_STOPPED;\n...
2019-09-01T23:32:15
rust-lang/rust
925789456aa0bb112d8ab2fe3f31f4f7317f463b
6b3ae3f6e45a33c2d95fa0362c9b2593e567fd34
miri: fix out-of-bounds error for ptrs with negative offsets
[ { "path": "compiler/rustc_const_eval/messages.ftl", "patch": "@@ -294,19 +294,22 @@ const_eval_pointer_arithmetic_overflow =\n overflowing pointer arithmetic: the total offset in bytes does not fit in an `isize`\n \n const_eval_pointer_out_of_bounds =\n- {const_eval_bad_pointer_op_attempting}, but go...
2025-07-09T16:12:31
electron/electron
f9b7033f43bd4346a24373284d58b4e22c2ab379
2804272c7da987eaf1a8c724c952132d0c2bd002
Fix typo in example
[ { "path": "docs/api/browser-window.md", "patch": "@@ -404,7 +404,7 @@ an Object containing `name` and `version` properties.\n To check if a DevTools extension is installed you can run the following:\n \n ```javascript\n-let installed = BrowserWindow.getDevToolsExtesion().hasOwnProperty('devtron')\n+let inst...
2016-06-10T16:34:34
huggingface/transformers
3656b8b0ed8299456a6da490c5f3f1debeddb4b8
b76caaa88d9de399ec8c2ad1338c69d31e4fef32
Regex post processing in loading (#43585) * fix * fix * style * cannot use super... * do not allow setattr on the patterns * doc * doc
[ { "path": "src/transformers/core_model_loading.py", "patch": "@@ -49,38 +49,6 @@\n logger = logging.get_logger(__name__)\n \n \n-def process_target_pattern(pattern: str) -> tuple[str, str | None]:\n- \"\"\"\n- Process a target pattern for reverse mapping (when targets become sources).\n-\n- This ha...
2026-01-29T14:10:26
vercel/next.js
299e830b8fcfea89d58cc1817da7f914cdc5a3aa
daac0484fabeb608f66ded500dda68ba967af45a
fix Remove unnecessary await (#52800) ### What? While examining Next.js, I noticed unnecessary 'await' statements and removed them. ### How? I have removed the 'await' statements. Is it acceptable to submit such minor modifications? Then, please review it. Thank you. Co-authored-by: 원건우 <wongeon-u@w...
[ { "path": "packages/next/src/server/config.ts", "patch": "@@ -723,7 +723,7 @@ export default async function loadConfig(\n }\n : Log\n \n- await loadEnvConfig(dir, phase === PHASE_DEVELOPMENT_SERVER, curLog)\n+ loadEnvConfig(dir, phase === PHASE_DEVELOPMENT_SERVER, curLog)\n \n loadWebpackHook(...
2023-07-18T08:08:38
nodejs/node
40060f4e42a9f2c79d14c704f4496320b18c0483
6ce87c027dc2a16e1b8d85c753b52270ae0c6054
gyp: make StringIO work in ninja.py Allow both Python 2 and 3 to access StringIO. This fixes `./configure --ninja`, which was broken by https://github.com/nodejs/node/pull/29371. See: https://github.com/nodejs/node/pull/29371#issuecomment-527331969 PR-URL: https://github.com/nodejs/node/pull/29414 Reviewed-By: Mich...
[ { "path": "tools/gyp/pylib/gyp/generator/ninja.py", "patch": "@@ -20,7 +20,10 @@\n import gyp.msvs_emulation\n import gyp.MSVSUtil as MSVSUtil\n import gyp.xcode_emulation\n-from io import StringIO\n+try:\n+ from cStringIO import StringIO\n+except ImportError:\n+ from io import StringIO\n \n from gyp.comm...
2019-09-03T07:34:54
rust-lang/rust
46e95199b9a0d1e9800aa24b75b24d3434f55575
90653b0f5cbe567cee2489c0b71ce4ddd26c8f71
Disable the `diagnostics_dont_block_typing` test on CI It's failing to much. We need to fix it, but my changes are unlikely to be the cause.
[ { "path": "src/tools/rust-analyzer/crates/rust-analyzer/tests/slow-tests/main.rs", "patch": "@@ -880,7 +880,8 @@ fn main() {{}}\n \n #[test]\n fn diagnostics_dont_block_typing() {\n- if skip_slow_tests() {\n+ if skip_slow_tests() || std::env::var(\"CI\").is_ok() {\n+ // FIXME: This test is fail...
2025-07-09T16:29:11
huggingface/transformers
b76caaa88d9de399ec8c2ad1338c69d31e4fef32
19b6398d137d6ec5fe7abc6f0a6e1ede0a4db070
simplify extra tokens logic in base (#43230) * simplify extra tokens logic in base * ignore additional_special_tokens in signature * fix florence2 * fixes * ruff * nit * nit * comments * _merge_kwargs changes expected values in tests - made tests more dynamic * fix processing test * guide v5
[ { "path": "MIGRATION_GUIDE_V5.md", "patch": "@@ -284,7 +284,8 @@ tokenizer.extra_special_tokens # Additional tokens\n ```\n \n - `special_tokens_map_extended` and `all_special_tokens_extended`: Removed. Access `AddedToken` objects directly from `_special_tokens_map` or `_extra_special_tokens` if needed.\n-...
2026-01-29T13:32:41
vercel/next.js
daac0484fabeb608f66ded500dda68ba967af45a
0084166caaba402c1f8218da48e32855bc7ee48b
Fix typo in docs (#52815) The following files have been modified. - `docs/02-app/01-building-your-application/05-optimizing/04-metadata.mdx` programatically -> programmatically - `docs/02-app/02-api-reference/04-functions/image-response.mdx` ImageReponse -> ImageResponse Co-authored-by: JJ Kasper <22380829+i...
[ { "path": "docs/02-app/01-building-your-application/05-optimizing/04-metadata.mdx", "patch": "@@ -118,7 +118,7 @@ These special files are available for metadata:\n - [robots.txt](/docs/app/api-reference/file-conventions/metadata/robots)\n - [sitemap.xml](/docs/app/api-reference/file-conventions/metadata/sit...
2023-07-18T04:36:31
nodejs/node
f2c573cf8bedea85ab4505c839b2332517e4b0b9
eb2deee8a0d0de09593c1315ac684e6a7ce74c21
test: remove flaky status for test-statwatcher test-statwatcher does not appear to be failing anymore in CI. Remove "flaky" status for the test. Closes: https://github.com/nodejs/node/issues/21425 PR-URL: https://github.com/nodejs/node/pull/29392 Fixes: https://github.com/nodejs/node/issues/21425 Reviewed-By: Ben No...
[ { "path": "test/async-hooks/async-hooks.status", "patch": "@@ -7,12 +7,8 @@ prefix async-hooks\n [true] # This section applies to all platforms\n \n [$system==win32]\n-# https://github.com/nodejs/node/issues/21425\n-test-statwatcher: PASS,FLAKY\n \n [$system==linux]\n-# https://github.com/nodejs/node/issues...
2019-09-01T09:42:55
golang/go
0eea25159fe58ab956198f3009e6ded875d2796e
234283d8aba1e892906e889782ae5723686da6c6
encoding/xml: expose decoder line and column The existing implementation of the xml decoder uses the line number only for reporting syntax errors. The line number of the last read token and the column within the line is useful for the users even in non-error conditions. Fixes #45628 Change-Id: I37b5033ff5ff8411793d8...
[ { "path": "api/next/45628.txt", "patch": "@@ -0,0 +1 @@\n+pkg encoding/xml, method (*Decoder) InputPos() (int, int) #45628", "additions": 1, "deletions": 0, "language": "Plain Text" }, { "path": "src/encoding/xml/xml.go", "patch": "@@ -216,6 +216,7 @@ type Decoder struct {\n \tns ...
2021-04-19T10:51:04
huggingface/transformers
cdda2f0f1270cf7edea76f8e0dbe825ab6b2d599
0fd79993edc997b033b0a9b62e8fe58a020e28c5
Fix mistral checkpoint loading in `utils/fetch_hub_objects_for_ci.py`: avoid too many requests and/or timeout (#43584) * crazy mistral * trigger * how long I will remain crazy? * call me The Phantom of the Mistral * I am The Phantom of the Mistral * les miserables * les miserables * may I be in the peace now? ...
[ { "path": "utils/fetch_hub_objects_for_ci.py", "patch": "@@ -265,20 +265,40 @@ def download_test_file(url):\n \n # For `tests/test_tokenization_mistral_common.py:TestMistralCommonBackend`, which eventually calls\n # `mistral_common.tokens.tokenizers.utils.download_tokenizer_from_hf_hub` whic...
2026-01-29T11:29:11
vercel/next.js
1ed4cc0595ab4276e26ea755875f0bc78c890e53
7d76d17dabf7b4e9d4c5063920e85e12204ff4fa
Add missing feature to syn (vercel/turbo#5547) ### Description Cargo check currently fails with: ``` error[E0277]: `syn::Type` doesn't implement `Debug` --> crates/turbo-tasks-macros-shared/src/primitive_input.rs:8:5 | 6 | #[derive(Debug)] | ----- in this derive macro expansion 7 | pub struct...
[ { "path": "crates/turbo-tasks-macros-shared/Cargo.toml", "patch": "@@ -11,4 +11,4 @@ bench = false\n [dependencies]\n proc-macro2 = { workspace = true }\n quote = { workspace = true }\n-syn = { workspace = true, features = [\"full\"] }\n+syn = { workspace = true, features = [\"full\", \"extra-traits\"] }", ...
2023-07-17T17:55:22
nodejs/node
eba72acada20dd09836146f04bf8222a5591b7d9
ab841d5fbab1a9d2f8323d1ae3f71f37c6f636a1
build,win: find Python in paths with spaces When looking for Python in the registry, as specified in PEP514, this was not able to handle installations in a path with spaces, like Program Files. This ensures the whole path is used, fixing the issue. PR-URL: https://github.com/nodejs/node/pull/29236 Reviewed-By: Christ...
[ { "path": "tools/msvs/find_python.cmd", "patch": "@@ -1,6 +1,8 @@\n @IF NOT DEFINED DEBUG_HELPER @ECHO OFF\n+\n echo Looking for Python 2.x\n-SETLOCAL\n+setlocal enabledelayedexpansion\n+\n :: If python.exe is in %Path%, just validate\n FOR /F \"delims=\" %%a IN ('where python.exe 2^> NUL') DO (\n SET nee...
2019-08-20T19:43:50
huggingface/transformers
0fd79993edc997b033b0a9b62e8fe58a020e28c5
d196ee9077126cb0736de127e56c01992c198736
[CI][AMD] Fix Pipeline CI (#43178) * fix zero_shot_image_classification * fix token_classificaiton * text_to_audio * question_answering * fix * fill mask * common * automatic speech recegnition * any_to_any * skip a test * fix more on text_to_audio * loading when don't have safetensors * question_answerin...
[ { "path": "src/transformers/models/gemma3n/modeling_gemma3n.py", "patch": "@@ -837,7 +837,7 @@ def __init__(self, config: Gemma3nAudioConfig):\n self.ffw_layer_1 = nn.Linear(self.config.hidden_size, self.config.hidden_size * 4, bias=False)\n self.ffw_layer_2 = nn.Linear(self.config.hidden_si...
2026-01-29T10:37:32
golang/go
0bbd05b8262624bb8e8aea43fa76934fbff8fc81
737837c9d45946e6a43f4de5fe3309b9e06ba83f
time: add Duration.Abs Fixes #51414 Change-Id: Ia3b1674f2a902c8396fe029397536643a3bc1784 GitHub-Last-Rev: 67159648af09e7a8ac2825a1fe71b2de3fb9d748 GitHub-Pull-Request: golang/go#51739 Reviewed-on: https://go-review.googlesource.com/c/go/+/393515 Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gopher Rob...
[ { "path": "api/next/51414.txt", "patch": "@@ -0,0 +1 @@\n+pkg time, method (Duration) Abs() Duration #51414", "additions": 1, "deletions": 0, "language": "Plain Text" }, { "path": "src/time/time.go", "patch": "@@ -815,6 +815,19 @@ func (d Duration) Round(m Duration) Duration {\n \tre...
2022-03-26T02:10:29
vercel/next.js
98a8b1cca65f38302c43cb763aef7ce78a5a9b67
7e9627a39087732fda61576e14aa1a5f485756d2
Set process.title for router and render workers (#52779) - Adds `next-router-worker` as the process title for the routing worker. - Adds `next-render-worker-app` as the process title for the rendering worker for `app` - Adds `next-render-worker-pages` as the process title for the rendering worker for `pages` Cu...
[ { "path": "packages/next/src/server/lib/render-server.ts", "patch": "@@ -61,6 +61,16 @@ export async function initialize(opts: {\n if (result) {\n return result\n }\n+\n+ const isRouterWorker = opts.workerType === 'router'\n+ const isRenderWorker = opts.workerType === 'render'\n+ if (isRouterWork...
2023-07-17T17:55:02
nodejs/node
cd2a3f83278f84dd77137b0b81e6fd5fcec4d304
897587c0132da5b50f54409422b91a935739edb9
Revert "build: add full Python 3 tests to Travis CI" Reverted for breaking the Travis CI builds with the following error: $ cp ${PYTHON2_CACHE}/node out/Release/node cp: cannot stat '/home/travis/.ccache/py2.7.15/node': No such file or directory The command "cp ${PYTHON2_CACHE}/node out/Release/node...
[ { "path": ".travis.yml", "patch": "@@ -8,157 +8,110 @@ os: linux\n language: cpp\n env:\n global:\n- - PYTHON2_VERSION=\"2.7.15\"\n- - PYTHON3_VERSION=\"3.6.7\" # \"3.7.1\" after #29326 is fixed\n- - PYTHON2_CACHE=$HOME/.ccache/py${PYTHON2_VERSION}\n- - PYTHON3_CACHE=$HOME/.ccache/py${PYTHON3...
2019-09-02T09:06:36
golang/go
018b78cc5b4b08447076f143271c249c0dde1297
3bd8c78575a27ee9ac7b3c8d8c35db1feee31737
test: fix inline test on noopt builder CL 394074 broke the noopt builder. Something about time.After's inlining depends on the build flags to make.bash, not the build flags that run.go passes. Change-Id: Ib284c66ea2008a4d32829c055d57c54a34ec3fb4 Reviewed-on: https://go-review.googlesource.com/c/go/+/396037 Trust: Kei...
[ { "path": "test/inline.go", "patch": "@@ -11,7 +11,6 @@ package foo\n \n import (\n \t\"runtime\"\n-\t\"time\"\n \t\"unsafe\"\n )\n \n@@ -314,21 +313,21 @@ func select1(x, y chan bool) int { // ERROR \"can inline select1\" \"x does not esc\n \t}\n }\n \n-func select2(x chan bool) { // ERROR \"can inline sel...
2022-03-26T19:21:36
huggingface/transformers
d196ee9077126cb0736de127e56c01992c198736
6b2bbf3561c355d0476515f1911553336d115eb0
[Model] Add PP-DocLayoutV3 Model Support (#43098) * init * add tests * update * update * add model_doc * update * update * update * Update to adapt to the latest check_code_quality. * Set to use * mark as xfail * fix wrong doc link * fix nits * remove padding_left * update * update * use is_cv2_availa...
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -1193,6 +1193,8 @@\n title: Pix2Struct\n - local: model_doc/pixtral\n title: Pixtral\n+ - local: model_doc/pp_doclayout_v3\n+ title: PP-DocLayoutV3\n - local: model_doc/qwen2_5_omni\n title: Qwen2.5-Omni\n ...
2026-01-29T09:56:11
electron/electron
538a4f61eedfc19cb84f4c03f912b0b50c9cc753
ccaf837da4a3c89798c11d5570f879f5998b5d35
fixed errors in text
[ { "path": "docs-translations/ru-RU/tutorial/application-packaging.md", "patch": "@@ -1,7 +1,7 @@\n # Упаковка приложения\n \n Чтобы смягчить [проблемы](https://github.com/joyent/node/issues/6960) с длинными\n-именами под Windows, немного ускорить `require` и скрыть ваши исходные коды, вы\n+именами под Win...
2016-06-10T06:39:28
huggingface/transformers
6b2bbf3561c355d0476515f1911553336d115eb0
4610e81c27044a1e3141ef196571c3d2618f1ae5
fix(converter): speed up `MistralConverter.extract_vocab_merges_from_model` (#43557) fix(converter): speedup the tekken converter Co-authored-by: Cyril Vallez <cyril.vallez@huggingface.co>
[ { "path": "src/transformers/convert_slow_tokenizer.py", "patch": "@@ -1943,6 +1943,7 @@ def token_bytes_to_string(b):\n vocab[token.content] = idx\n bpe_ranks = [base64.b64decode(k[\"token_bytes\"]) for k in bpe_ranks]\n rank_set = set(bpe_ranks)\n+ token_to_rank = {token:...
2026-01-29T09:15:10
nodejs/node
94c944d0d57062401dd11eb108e7717b9dac62d2
9e23eeffd009dbec3a6d2fc78c8e7e53576ad4f9
tools: fix mksnapshot blob wrong freeing operator PR-URL: https://github.com/nodejs/node/pull/29384 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Joyee Cheung <joyee...
[ { "path": "tools/snapshot/snapshot_builder.cc", "patch": "@@ -99,7 +99,7 @@ std::string SnapshotBuilder::Generate(\n // creator is still alive.\n main_instance->Dispose();\n result = FormatBlob(&blob, isolate_data_indexes);\n- delete blob.data;\n+ delete[] blob.data;\n }\n \n per_proce...
2019-08-31T05:39:44
golang/go
3bd8c78575a27ee9ac7b3c8d8c35db1feee31737
7d3b64a2e372b0e7c550bf9152fe215605e448e4
cmd/compile: upgrade prove pass to know results of math/bits ops are nonnegative Fixes #51963 Change-Id: Ib9e0521222e6fc41e787f3150b254e058a19addc Reviewed-on: https://go-review.googlesource.com/c/go/+/396036 Trust: Keith Randall <khr@golang.org> Run-TryBot: Keith Randall <khr@golang.org> TryBot-Result: Gopher Robot ...
[ { "path": "src/cmd/compile/internal/ssa/prove.go", "patch": "@@ -824,6 +824,9 @@ func prove(f *Func) {\n \t\t\t\t\t}\n \t\t\t\t\tlensVars[b] = append(lensVars[b], v)\n \t\t\t\t}\n+\t\t\tcase OpCtz64, OpCtz32, OpCtz16, OpCtz8, OpBitLen64, OpBitLen32, OpBitLen16, OpBitLen8:\n+\t\t\t\tft.update(b, v, ft.zero, ...
2022-03-26T17:36:10
electron/electron
9bc536a95f89ac5f5fc82148ce2a02cae5b1b136
ccaf837da4a3c89798c11d5570f879f5998b5d35
fixed errors in text
[ { "path": "docs-translations/ru-RU/tutorial/mac-app-store-submission-guide.md", "patch": "@@ -1,17 +1,15 @@\n \n #Руководство по утверждению вашего приложения в App Store\n \n-Начиная с версии v0.34.0 Electron позволяет вам сформировать данные для App Store к вашему приложению.\n+Начиная с версии v0.34.0 El...
2016-06-10T06:31:46
huggingface/transformers
e46d21afe2aaf942fd9515b2fba1d6f3affd61a6
b8e7943b02b8de63b98934b328411afdcb6571c2
Rework dependencies and extras + Remove outdated `templates` folder (#43536) * start * more * more * fix * up * still improve * still improve
[ { "path": "benchmark/requirements.txt", "patch": "@@ -1,5 +1,4 @@\n gpustat==1.1.1\n psutil==6.0.0\n psycopg2==2.9.9\n-hf_xet\n pandas>=1.5.0", "additions": 0, "deletions": 1, "language": "Plain Text" }, { "path": "docker/custom-tokenizers.dockerfile", "patch": "@@ -19,7 +19,7 @@ WOR...
2026-01-28T17:46:07
nodejs/node
9e23eeffd009dbec3a6d2fc78c8e7e53576ad4f9
2cc757f0c703598c1bc5777e79c9344c946df2cc
console: use getStringWidth() for character width calculation This is more accurate for displayed full-width characters (e.g. CJK ones) and makes the calculations match the ones we use in the readline module. Fixes: https://github.com/nodejs/node/issues/29299 PR-URL: https://github.com/nodejs/node/pull/29300 Reviewe...
[ { "path": "lib/internal/cli_table.js", "patch": "@@ -2,8 +2,7 @@\n \n const { Math, ObjectPrototype } = primordials;\n \n-const { Buffer } = require('buffer');\n-const { removeColors } = require('internal/util');\n+const { getStringWidth } = require('internal/readline/utils');\n \n // The use of Unicode cha...
2019-08-24T23:39:54
huggingface/transformers
b8e7943b02b8de63b98934b328411afdcb6571c2
9413239102cb6eee5c131236ba4aeda403217572
Fix repo. consistency bot (push permission issue) (#43570) fix again Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": ".github/workflows/pr-repo-consistency-bot.yml", "patch": "@@ -266,97 +266,60 @@ jobs:\n with:\n name: modified-files\n \n- - name: Push changes via GitHub API (no checkout)\n+ - name: Push changes to fork using git\n if: needs.run-repo-consistency-checks.output...
2026-01-28T17:30:28
golang/go
7d3b64a2e372b0e7c550bf9152fe215605e448e4
56400fc70675cc2f404f33e3ed13386967cfe4da
cmd/compile: optimize BSRQ with nonzero input Same as BSFQ, if the input is known to be nonzero we don't need a CMOV to correct for the weird all-zero behavior of the BSRQ instruction. Fixes #51964 Change-Id: Ic1d14fdf3e7e698ff2f47efecfd761d8a036012a Reviewed-on: https://go-review.googlesource.com/c/go/+/396034 Trus...
[ { "path": "src/cmd/compile/internal/ssa/gen/AMD64.rules", "patch": "@@ -2073,7 +2073,7 @@\n \t(CMPXCHGLlock [off1+off2] {sym} ptr old new_ mem)\n \n // We don't need the conditional move if we know the arg of BSF is not zero.\n-(CMOVQEQ x _ (Select1 (BSFQ (ORQconst [c] _)))) && c != 0 => x\n+(CMOVQEQ x _ (S...
2022-03-26T17:03:06
electron/electron
cf4b40d3e633021d85d9b715a5cde9197d08075f
ccaf837da4a3c89798c11d5570f879f5998b5d35
fixed errors in text
[ { "path": "docs-translations/ru-RU/tutorial/application-distribution.md", "patch": "@@ -1,11 +1,11 @@\n # Распространение приложения\n \n Чтобы разпространять ваше приложение на Electron, папка с вашим приложением\n-должна называться `app` и находиться в папке ресурсов Electron (на OS X это\n-`Electron.app/...
2016-06-10T06:21:32
nodejs/node
2cc757f0c703598c1bc5777e79c9344c946df2cc
0f3aa81eab383ab85b5b84d6fe4570115d824a64
src: do not crash when accessing empty WeakRefs Making `.incRef()` and `.decRef()` fail silently leads to better error messages when trying to access the underlying value (as opposed to crashing inside these methods). Refs: https://github.com/nodejs/node/pull/25461#issuecomment-524481482 PR-URL: https://github.com/n...
[ { "path": "src/node_util.cc", "patch": "@@ -191,14 +191,16 @@ class WeakReference : public BaseObject {\n \n static void IncRef(const FunctionCallbackInfo<Value>& args) {\n WeakReference* weak_ref = Unwrap<WeakReference>(args.Holder());\n- if (weak_ref->reference_count_ == 0) weak_ref->target_.Clea...
2019-08-24T00:12:42
huggingface/transformers
9413239102cb6eee5c131236ba4aeda403217572
d79e85d702454b87d3847476b3116660ae962c5b
Fix Wav2vec and a few others (#43566) fix
[ { "path": "src/transformers/models/hubert/modeling_hubert.py", "patch": "@@ -33,7 +33,7 @@\n from ...modeling_flash_attention_utils import FlashAttentionKwargs\n from ...modeling_layers import GradientCheckpointingLayer\n from ...modeling_outputs import BaseModelOutput, CausalLMOutput, SequenceClassifierOut...
2026-01-28T17:08:50
rust-lang/rust
3bd0b8909ca743f8089d256d3a4443787f966315
5058f9040293b94d7be6e8c06ddc27f783c7a5fb
various native-lib-trace-related fixups Co-Authored-By: Ralf Jung <post@ralfj.de>
[ { "path": "src/tools/miri/src/alloc/isolated_alloc.rs", "patch": "@@ -302,31 +302,28 @@ impl IsolatedAlloc {\n }\n }\n \n- /// Returns a vector of page addresses managed by the allocator.\n- pub fn pages(&self) -> Vec<usize> {\n- let mut pages: Vec<usize> =\n- self.page_p...
2025-07-02T00:55:41
vercel/next.js
7e9627a39087732fda61576e14aa1a5f485756d2
80572b373ff32031838b0ba0916aa834584599a6
Fix tracking of ContextModule (#52795) When doing dynamic imports like `import(variable)`, Webpack _tries_ to statically analyze it and creates a regex like context module for it (which includes all possible modules). This `ContextModule` doesn't have a resource path so we need to use the identifier to track it. Test...
[ { "path": "packages/next/src/build/webpack/plugins/flight-client-entry-plugin.ts", "patch": "@@ -586,9 +586,14 @@ export class FlightClientEntryPlugin {\n // We have to always use the resolved request here to make sure the\n // server and client are using the same module path (required by RSC), ...
2023-07-17T17:41:04
golang/go
b0750de656602bb1d994dd4a524f522567184db2
3f69cc7d77fbc569824307e6dca37950003ce5a8
os: document DirFS implements fs.StatFS Fixes #51856 Change-Id: I8328d73bbb7bc166d58281180b64785a634e9bab Reviewed-on: https://go-review.googlesource.com/c/go/+/394555 Reviewed-by: Ian Lance Taylor <iant@golang.org> Trust: Daniel Martí <mvdan@mvdan.cc> Run-TryBot: Daniel Martí <mvdan@mvdan.cc> TryBot-Result: Gopher R...
[ { "path": "src/os/file.go", "patch": "@@ -623,6 +623,8 @@ func isWindowsNulName(name string) bool {\n // the /prefix tree, then using DirFS does not stop the access any more than using\n // os.Open does. DirFS is therefore not a general substitute for a chroot-style security\n // mechanism when the director...
2022-03-22T15:33:48
huggingface/transformers
69e9d343efa254b6f22b3107d0ca12bf209c708b
7c4221776fe0165051f33c7f8425332faca171ef
add an option to disable Sam3VideoModel progress bar (#43564) * feat: add a disable progress option for Sam3VideoModel Avoids flooding the tty when using Sam3VideoModel ( when using propagate_in_video_iterator() ) harmonize with other propagate_in_video_iterator the argument. (⚠️ breaking change: disable progress by...
[ { "path": "docs/source/en/model_doc/sam3_video.md", "patch": "@@ -79,6 +79,7 @@ Process a video with all frames already available using text prompts:\n \n >>> # Process all frames in the video\n >>> outputs_per_frame = {}\n+>>> # Pass show_progress_bar=True to display a tqdm progress bar.\n >>> for model_ou...
2026-01-28T16:18:34
nodejs/node
8f33053dbfc4078812f6b4b551cc9a2e6964b985
858db73a746c7b483f5caa416cd7aef82ba9af8a
deps: V8: cherry-pick 597f885 Original commit message: [coverage] Deterministically sort collected shared function infos Prior to this CL, collected shared function infos with identical source ranges were sorted non-deterministically during coverage collection. This lead to non-deterministically inco...
[ { "path": "common.gypi", "patch": "@@ -39,7 +39,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.11',\n+ 'v8_embedder_string': '-node.12',\n \n ##### V8 defaults for Node.js #####\n...
2019-08-29T14:31:26
vercel/next.js
dd56a77e9163a5cb334d2765407e3835cf0c3a48
e5b35894a763e7df2efa7be7573bde9f1fa63c09
Turbopack: Experimental dev app pages support (#52680) This implements app pages and routes for the Nexturbo API. ## Turbopack updates * https://github.com/vercel/turbo/pull/5527 <!-- Alex Kirszenberg - AdjacencyMap::reverse_topological (+ fixes) -->
[ { "path": "Cargo.lock", "patch": "@@ -412,7 +412,7 @@ dependencies = [\n [[package]]\n name = \"auto-hash-map\"\n version = \"0.1.0\"\n-source = \"git+https://github.com/vercel/turbo.git?tag=turbopack-230716.2#8433a321545de30374b5374320625b92c663f5dc\"\n+source = \"git+https://github.com/vercel/turbo.git?ta...
2023-07-17T16:03:14
electron/electron
110f1f8b75a074b546739e6c039b5e169901e41b
55a4e2589b628c33894c505756292fdc8442ad71
Tweak error message
[ { "path": "spec/static/index.html", "patch": "@@ -54,7 +54,7 @@\n if (isCi) {\n mocha.grep = function () {\n try {\n- throw new Error('it.only or describe.only was called')\n+ throw new Error('A spec contains a call to it.only or describe.only and should be reverted.')\n } ca...
2016-06-10T00:00:13
huggingface/transformers
7c4221776fe0165051f33c7f8425332faca171ef
5752665b14e1426b41538abaa8dab69c25fbd4f3
check/fix repo. check bot workflow (#43565) check Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": ".github/workflows/pr-repo-consistency-bot.yml", "patch": "@@ -258,6 +258,7 @@ jobs:\n if: always()\n permissions:\n pull-requests: write\n+ contents: write\n steps:\n - name: Download modified files\n if: needs.run-repo-consistency-checks.outputs.changes_detec...
2026-01-28T15:51:44
golang/go
3dac99ad4cdc7014343bcbddf01aca2d9e7a4e96
3dac914b772f7c99bb749839946ca68878a65f35
cmd/compile: simplify fingerprint logic Historically, we sometimes recorded imports based on either package path ("net/http") or object file path ("net/http.a"). But modern Go build systems always use package path, and the extra ".a" suffix doesn't mean anything anyway. Change-Id: I6060ef8bafa324168710d152a353f4d8db0...
[ { "path": "src/cmd/compile/internal/noder/import.go", "patch": "@@ -369,16 +369,8 @@ func addFingerprint(path string, f *os.File, end int64) error {\n \t}\n \n \tcopy(fingerprint[:], buf[:])\n+\tbase.Ctxt.AddImport(path, fingerprint)\n \n-\t// assume files move (get installed) so don't record the full path\...
2022-03-23T19:22:50
nodejs/node
1d5186e65745fdeb4b3d547ffa73a549125a2136
9e8edb0d7918c6dab4426e408582d98f79a8e270
doc: inconsistent indentation for list items Items at same level should have consistent indentation level. Addresses Markdownlint MD005 errors. PR-URL: https://github.com/nodejs/node/pull/29330 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Luigi Pinca <lu...
[ { "path": "doc/changelogs/CHANGELOG_IOJS.md", "patch": "@@ -2241,7 +2241,7 @@ _Note: version **1.4.0** was tagged and built but not released. A libuv bug was\n [#7226](https://github.com/npm/npm/issues/7226) Ensure that all request\n settings are copied onto the agent.\n ([@othiym23](https://github.co...
2019-08-27T03:56:15
huggingface/transformers
5752665b14e1426b41538abaa8dab69c25fbd4f3
1be63d94f63c98e9a94de40b2a2fa4d12d9767f0
Increase timeout when preparing CI (#43560) * Increase timeout when preparing CI * make fix-repo
[ { "path": "utils/fetch_hub_objects_for_ci.py", "patch": "@@ -8,6 +8,8 @@\n from transformers.utils.import_utils import is_mistral_common_available\n \n \n+httpx._config.DEFAULT_TIMEOUT_CONFIG = httpx.Timeout(timeout=60.0)\n+\n URLS_FOR_TESTING_DATA = [\n \"http://images.cocodataset.org/val2017/000000000...
2026-01-28T14:52:58
vercel/next.js
e5b35894a763e7df2efa7be7573bde9f1fa63c09
82efdfe8774a2e8fd94dab5e804535f1c21ede46
Fix tagsManifest initialization check (#52776) While investigating memory usage I noticed this manifest being re-read many times even though there was logic to prevent it being read multiple times. Found that the variable assigned wasn't being checked in that case. <!-- Thanks for opening a PR! Your contribution...
[ { "path": "packages/next/src/server/lib/incremental-cache/file-system-cache.ts", "patch": "@@ -71,7 +71,7 @@ export default class FileSystemCache implements CacheHandler {\n }\n \n private loadTagsManifest() {\n- if (!this.tagsManifestPath || !this.fs) return\n+ if (!this.tagsManifestPath || !this...
2023-07-17T15:49:16
electron/electron
d6d4d511735c1a8100d67f7cbc28ecd7ebf26ea1
d6b108b27275986bcdfeda4bbb0ac4b3859f91cb
Fix spec case
[ { "path": "spec/fixtures/devtools-extensions/foo/index.html", "patch": "@@ -6,7 +6,7 @@\n <script>\n function testStorage (callback) {\n chrome.storage.sync.set({foo: 'bar'}, function () {\n- chrome.storage.sync.get([{foo: 'baz'}], callback)\n+ chrome.storage.sync.get({fo...
2016-06-09T23:26:25
golang/go
3dac914b772f7c99bb749839946ca68878a65f35
2bbf383774952c8ddc309a45c024af76b47ea1fe
net/netip: fix uses of "IPv4-mapped IPv6" in doc comments The correct (or at least mostly commonly used) name for addresses of the form ::ffff:192.0.2.128 is "IPv4-mapped IPv6". Some of the comments in the netip package used that name, but others used "IPv6-mapped IPv4" or "v6-mapped". This change makes the usage of t...
[ { "path": "src/net/netip/netip.go", "patch": "@@ -90,7 +90,7 @@ func AddrFrom4(addr [4]byte) Addr {\n }\n \n // AddrFrom16 returns the IPv6 address given by the bytes in addr.\n-// An IPv6-mapped IPv4 address is left as an IPv6 address.\n+// An IPv4-mapped IPv6 address is left as an IPv6 address.\n // (Use ...
2022-03-25T19:08:19
nodejs/node
5dc5cfba7d4feadc3358d17f974858726e00593f
bb1af6c82f495e432821c30d21ccde3efb9eb72b
buffer: correct indexOf() error message PR-URL: https://github.com/nodejs/node/pull/29217 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Anna Henningsen <anna@addaleax.net>
[ { "path": "lib/buffer.js", "patch": "@@ -907,7 +907,7 @@ function bidirectionalIndexOf(buffer, val, byteOffset, encoding, dir) {\n }\n \n throw new ERR_INVALID_ARG_TYPE(\n- 'value', ['string', 'Buffer', 'Uint8Array'], val\n+ 'value', ['number', 'string', 'Buffer', 'Uint8Array'], val\n );\n }\n "...
2019-08-20T03:26:11