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
rust-lang/rust
e1f1878da550408e800742217881730c2b06d1ec
414482f6a0d4e7290f614300581a0b55442552a3
Fix set_name for vxworks. Length of name should be truncated to VX_TASK_RENAME_LENGTH-1
[ { "path": "library/std/src/sys/pal/unix/thread.rs", "patch": "@@ -222,16 +222,8 @@ impl Thread {\n \n #[cfg(target_os = \"vxworks\")]\n pub fn set_name(name: &CStr) {\n- // FIXME(libc): adding real STATUS, ERROR type eventually.\n- unsafe extern \"C\" {\n- fn taskNameSet(tas...
2025-05-14T08:22:04
huggingface/transformers
c61ca64aaa0618cc8bf53ef8f22a424230d163da
37367c7d9fd23401c26e79a2b26253ab2d1b7236
Fix `qwen2_5_vl` tests (#38845) * fix * breakpoint() * breakpoint() * update * update * update * update * update * update --------- Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": "tests/models/qwen2_5_vl/test_modeling_qwen2_5_vl.py", "patch": "@@ -14,7 +14,6 @@\n \"\"\"Testing suite for the PyTorch Qwen2.5-VL model.\"\"\"\n \n import copy\n-import gc\n import tempfile\n import unittest\n \n@@ -29,7 +28,7 @@\n is_vision_available,\n )\n from transformers.testing_utils i...
2025-06-17T08:55:24
golang/go
1d91551b7326383343c7c143a8ac299d0a685289
404127c30f3f66eb234da2dc1a78e6eea0ef4ee0
time: correct typo in documentation for UnixMicro Fixes #47283. Change-Id: Ibdc35433d22be3caa70197b6a95c66999812a16a GitHub-Last-Rev: 75962b029467a5e26e1ee78a38bf01c954445ea1 GitHub-Pull-Request: golang/go#47284 Reviewed-on: https://go-review.googlesource.com/c/go/+/335549 Reviewed-by: Ian Lance Taylor <iant@golang.o...
[ { "path": "src/time/time.go", "patch": "@@ -1334,7 +1334,7 @@ func UnixMilli(msec int64) Time {\n }\n \n // UnixMicro returns the local Time corresponding to the given Unix time,\n-// usec milliseconds since January 1, 1970 UTC.\n+// usec microseconds since January 1, 1970 UTC.\n func UnixMicro(usec int64) ...
2021-07-19T20:08:50
electron/electron
cb911b19dd3f3d028648c961db4529ade5ef69f2
d50eeb04d559fecda873d7ebe014a08a85933fe8
win: Fixes stopping FlashFrame, closes #906
[ { "path": "atom/browser/native_window_views.cc", "patch": "@@ -489,6 +489,18 @@ std::string NativeWindowViews::GetTitle() {\n }\n \n void NativeWindowViews::FlashFrame(bool flash) {\n+#if defined(OS_WIN)\n+ // The Chromium's implementation has a bug stopping flash.\n+ if (!flash) {\n+ FLASHWINFO fwi;\n...
2014-12-16T01:27:58
vercel/next.js
1248f6fff6f60b15d4369024eb31e775540713d3
5127e8376d97b5e43858f33268141ef734f96fae
Update SWC transform to attach the export name (#45494) NEXT-413 ## Bug - [ ] Related issues linked using `fixes #number` - [x] Integration tests added - [ ] Errors have a helpful link attached, see [`contributing.md`](https://github.com/vercel/next.js/blob/canary/contributing.md) ## Feature - [ ] Imple...
[ { "path": "packages/next-swc/crates/core/src/server_actions.rs", "patch": "@@ -113,16 +113,15 @@ impl<C: Comments> VisitMut for ServerActions<C> {\n });\n }\n \n- let action_name: JsWord = format!(\"$ACTION_{}\", f.ident.sym).into();\n+ let action_name: JsWord = if self.in_...
2023-02-02T12:28:00
nodejs/node
f897843359a1f1b8dc9839105b84dcc50a15e1f6
bcbb9370ddaa223110fcd8584e41336b791e7e7f
test: refactor common.ddCommand() * Remove different paths for Windows and POSIX. * Remove fixtures file. Simply run the command immediately/directly. * Since it is never called with more than one value for kilobytes, eliminate that argument. * Update/simplify tests that use this function. (They no longer need to ...
[ { "path": "test/common/README.md", "patch": "@@ -52,10 +52,9 @@ symlinks\n ([SeCreateSymbolicLinkPrivilege](https://msdn.microsoft.com/en-us/library/windows/desktop/bb530716(v=vs.85).aspx)).\n On non-Windows platforms, this always returns `true`.\n \n-### ddCommand(filename, kilobytes)\n-* return [&lt;Objec...
2018-10-10T18:24:51
huggingface/transformers
9c878d2f64d38de8d59eba09553552595b28da96
bf370e446b3d7aba686e3e979d84673313abb0d3
Fix incorrect width ratio calculation in Llama4 image processor (#38842)
[ { "path": "src/transformers/models/llama4/image_processing_llama4_fast.py", "patch": "@@ -431,7 +431,7 @@ def _preprocess(\n \n ratio_h, ratio_w = (\n target_size[0] // size.height,\n- target_size[1] // size.height,\n+ target_size[1] // size.width,\n...
2025-06-17T07:33:36
golang/go
3e06338c5ddb6cfd639015ba24655f9c9df87ef7
d14b7011a57fd7638dd4b67f1c2d031edf49f36e
[dev.fuzz] internal/fuzz: add more benchmarks for workers * Benchmark{Marshal,Unmarshal}CorpusFile - measures time it takes to serialize and deserialize byte slices of various lengths. * BenchmarkWorkerPing - spins up a worker and measures time it takes to ping it N times as a rough measure of RPC latency. * Bench...
[ { "path": "src/internal/fuzz/encoding_test.go", "patch": "@@ -5,6 +5,7 @@\n package fuzz\n \n import (\n+\t\"strconv\"\n \t\"strings\"\n \t\"testing\"\n )\n@@ -120,3 +121,44 @@ float32(2.5)`,\n \t\t})\n \t}\n }\n+\n+// BenchmarkMarshalCorpusFile measures the time it takes to serialize byte\n+// slices of va...
2021-07-09T22:24:15
electron/electron
1641caf3538c87ff1112f4fc708a08db88d6500d
23951e6ef37e544a42fa346b9fffeae585f3869f
Fix cpplint warnings
[ { "path": "atom/browser/native_window_views.cc", "patch": "@@ -300,7 +300,8 @@ void NativeWindowViews::Maximize() {\n if (IsVisible())\n window_->Maximize();\n else\n- window_->native_widget_private()->ShowWithWindowState(ui::SHOW_STATE_MAXIMIZED);\n+ window_->native_widget_private()->ShowWith...
2014-12-16T00:57:04
rust-lang/rust
e011c43bcf3bc01e04738b47b7d8dc9affda8659
c86e33b77108ae2842b93f4d158280bcd7346147
Merge mir query analysis invocations The reasons I'm doing it is that * merging those blocks allows for more parallelism as you don't run parallel blocks in sequence * merging blocks allows merging analysis queries shrinking the dep graph * should allow us to do more early aborting in case of errors and/or moving que...
[ { "path": "compiler/rustc_interface/src/passes.rs", "patch": "@@ -1002,10 +1002,6 @@ fn run_required_analyses(tcx: TyCtxt<'_>) {\n if !tcx.is_typeck_child(def_id.to_def_id()) {\n tcx.ensure_ok().mir_borrowck(def_id)\n }\n- });\n- });\n- sess.time(\"MIR_ef...
2025-05-09T15:36:22
vercel/next.js
fe2d26fcf41de7a749b8e8d2d89e3a5924f327bf
308d1834e94385ca7a56e3053f2aed5c037896d7
Add unit test for navigateReducer and refreshReducer (#45486) Adds additional unit tests. ## Bug - [ ] Related issues linked using `fixes #number` - [ ] Integration tests added - [ ] Errors have a helpful link attached, see [`contributing.md`](https://github.com/vercel/next.js/blob/canary/contributing.md) ## Feat...
[ { "path": "packages/next/src/client/components/app-router.tsx", "patch": "@@ -58,7 +58,7 @@ const HotReloader:\n const prefetched = new Set<string>()\n \n type AppRouterProps = Omit<\n- InitialRouterStateParameters,\n+ Omit<InitialRouterStateParameters, 'isServer' | 'location'>,\n 'initialParallelRoutes...
2023-02-02T10:34:08
huggingface/transformers
bf370e446b3d7aba686e3e979d84673313abb0d3
e61160c5dbd470c4644e6c248d2acb64f763b6d5
[video processor] fix BC when no video config if found (#38840) fix auto video processor
[ { "path": "src/transformers/models/auto/video_processing_auto.py", "patch": "@@ -306,15 +306,15 @@ def from_pretrained(cls, pretrained_model_name_or_path, *inputs, **kwargs):\n if \"AutoVideoProcessor\" in config_dict.get(\"auto_map\", {}):\n video_processor_auto_map = config_dict[\"auto...
2025-06-17T07:20:16
nodejs/node
714c1b88d2d05d1c868ffdde1a827cd74d092e07
d3d6cd3ecad19602a894bbe046253ae924d278d4
src: fix bug in MallocedBuffer constructor This should be a generic type even though we are currently only using `char` as `T`. PR-URL: https://github.com/nodejs/node/pull/23434 Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Refael Acke...
[ { "path": "src/util.h", "patch": "@@ -443,7 +443,7 @@ struct MallocedBuffer {\n \n MallocedBuffer() : data(nullptr) {}\n explicit MallocedBuffer(size_t size) : data(Malloc<T>(size)), size(size) {}\n- MallocedBuffer(char* data, size_t size) : data(data), size(size) {}\n+ MallocedBuffer(T* data, size_t ...
2018-10-12T00:01:17
golang/go
d14b7011a57fd7638dd4b67f1c2d031edf49f36e
988d0248b404a82d8f5c5973610e8a56bffb38f4
[dev.fuzz] internal/fuzz: fix two bugs in BenchmarkWorkerFuzzOverhead * The exec count must be set to 0 before calling workerServer.fuzz. This was causing fuzz to run indefinitely after the first benchmark iteration, since it wouldn't hit the termination condition of being equal to fuzzArgs.Limit. * Added an ass...
[ { "path": "src/internal/fuzz/worker.go", "patch": "@@ -632,6 +632,9 @@ func (ws *workerServer) fuzz(ctx context.Context, args fuzzArgs) (resp fuzzRespo\n \t\tresp.Count = mem.header().count\n \t\tws.memMu <- mem\n \t}()\n+\tif args.Limit > 0 && mem.header().count >= args.Limit {\n+\t\tpanic(fmt.Sprintf(\"me...
2021-07-12T21:31:58
electron/electron
23951e6ef37e544a42fa346b9fffeae585f3869f
c9a5c6515ca4945386ba7837192d98c396025238
views: Implement CanMinimize, fixes #918
[ { "path": "atom/browser/native_window_views.cc", "patch": "@@ -672,6 +672,10 @@ bool NativeWindowViews::CanMaximize() const {\n return resizable_;\n }\n \n+bool NativeWindowViews::CanMinimize() const {\n+ return true;\n+}\n+\n base::string16 NativeWindowViews::GetWindowTitle() const {\n return base::UT...
2014-12-16T00:46:37
rust-lang/rust
c610177558bc62c40bacc105c7eb4130ea66db72
7188f453111502962326022740e2657fce0a6939
MaybeUninit::write: fix doc
[ { "path": "library/core/src/mem/maybe_uninit.rs", "patch": "@@ -391,7 +391,7 @@ impl<T> MaybeUninit<T> {\n /// For your convenience, this also returns a mutable reference to the\n /// (now safely initialized) contents of `self`.\n ///\n- /// As the content is stored inside a `MaybeUninit`, th...
2025-05-14T07:02:22
vercel/next.js
4a2d7cac53db155009bb5f86c7625198c850d66a
0e28913e17cc24b5f9dd97233b3f1cd5d3330917
improve error reporting for fatal errors (vercel/turbo#3550) This adds the turbo-tasks function name as `context` of all fatal errors propagated from executing or reading turbo-tasks functions. That should help in debugging fatal errors.
[ { "path": "packages/next-swc/crates/next-core/src/next_client_chunks/with_chunks.rs", "patch": "@@ -105,6 +105,11 @@ impl EcmascriptChunkItem for WithChunksChunkItem {\n self.context\n }\n \n+ #[turbo_tasks::function]\n+ fn related_path(&self) -> FileSystemPathVc {\n+ self.inner.pat...
2023-02-02T05:53:36
huggingface/transformers
a7593a1d1f45150ca4b4fbf09deff4d9766ada84
18c7f32daa1512b8b459775736699ff173a29360
[BugFix] QA pipeline edge case: `align_to_words=True` in `QuestionAnsweringPipeline` can lead to duplicate answers (#38761) * fixing the problem align_to_words=True leading to duplicate solutions * adding tests * some fixes * some fixes * changing the handle_duplicate_answers=False by default * some fixese * som...
[ { "path": "src/transformers/pipelines/question_answering.py", "patch": "@@ -595,20 +595,27 @@ def postprocess(\n # - we start by finding the right word containing the token with `token_to_word`\n # - then we convert this word in a character span with `word_to_chars`\n ...
2025-06-16T15:01:22
nodejs/node
82ea7058b6c25ee2c1467665c1b53b2b2b9ca139
3f08c004c5c95abc8a2faf7e2ea156c72806b54b
lib: http server, friendly error messages Improved error message description for the http server binding errors. Currently changed only in `setupListenHandle`, but needs to be change all over. Added new `uvExceptionWithHostPort` function (+export) in `lib/internal/error.js` that extracts the error message defined by...
[ { "path": "lib/internal/errors.js", "patch": "@@ -285,6 +285,46 @@ function uvException(ctx) {\n return err;\n }\n \n+/**\n+ * This creates an error compatible with errors produced in the C++\n+ * This function should replace the deprecated\n+ * `exceptionWithHostPort()` function.\n+ *\n+ * @param {number...
2018-09-20T21:59:22
golang/go
404127c30f3f66eb234da2dc1a78e6eea0ef4ee0
6298cfe6724e3ca24dedd3f62b2b358aafe17276
cmd/compile: fix off-by-one error in traceback argument counting For traceback argument printing, we want to print at most 10 words, then print "..." if there are still more args and/or fields. The current code has off-by-one error that for 11 non-aggregate typed args, it prints the first 10 but without the "...". Als...
[ { "path": "src/cmd/compile/internal/ssagen/ssa.go", "patch": "@@ -6598,6 +6598,7 @@ func EmitArgInfo(f *ir.Func, abiInfo *abi.ABIParamResultInfo) *obj.LSym {\n \tx := base.Ctxt.Lookup(fmt.Sprintf(\"%s.arginfo%d\", f.LSym.Name, f.ABI))\n \n \tPtrSize := int64(types.PtrSize)\n+\tuintptrTyp := types.Types[type...
2021-07-14T22:52:44
electron/electron
c9a5c6515ca4945386ba7837192d98c396025238
0ab32bfe17c81a03c91f79088e71f6c58b2306fb
views: Make it possible to show a window in maximized state Fixes #834.
[ { "path": "atom/browser/native_window_views.cc", "patch": "@@ -50,6 +50,7 @@\n #include \"base/win/windows_version.h\"\n #include \"ui/base/win/shell.h\"\n #include \"ui/gfx/win/dpi.h\"\n+#include \"ui/views/widget/native_widget_private.h\"\n #include \"ui/views/win/hwnd_util.h\"\n #endif\n \n@@ -296,7 +297...
2014-12-16T00:37:46
huggingface/transformers
18c7f32daa1512b8b459775736699ff173a29360
b44b04ee9af23589bd7855def584356e1627d88a
Fix broken tag in Longformer model card (#38828)
[ { "path": "docs/source/en/model_doc/longformer.md", "patch": "@@ -83,7 +83,7 @@ echo -e \"San Francisco 49ers cornerback Shawntae Spencer will miss the rest of t\n ```\n \n </hfoption>\n-</hfoptions\n+</hfoptions>\n \n \n ## Notes", "additions": 1, "deletions": 1, "language": "Markdown" } ]
2025-06-16T14:44:40
vercel/next.js
ed0c1cb4968e47776d44df8bc8b7edde9a5f935f
f843624a458e42edeeca90b9a9f670e0bcd9ddc1
improve error reporting for fatal errors (vercel/turbo#3550) This adds the turbo-tasks function name as `context` of all fatal errors propagated from executing or reading turbo-tasks functions. That should help in debugging fatal errors.
[ { "path": "crates/next-core/src/next_client_chunks/with_chunks.rs", "patch": "@@ -105,6 +105,11 @@ impl EcmascriptChunkItem for WithChunksChunkItem {\n self.context\n }\n \n+ #[turbo_tasks::function]\n+ fn related_path(&self) -> FileSystemPathVc {\n+ self.inner.path()\n+ }\n+\n ...
2023-02-02T05:53:36
nodejs/node
8da674df493e2ded8dc812252ac4f1f90c362807
700fe5bbc489903578ff4d3d9da88651ae23213c
vm: pass parsing_context to ScriptCompiler::CompileFunctionInContext ContextifyContext::CompileFunction in src/node_contextify.cc was incorrectly passing the context variable to ScriptCompiler::CompileFunctionInContext This meant that the parsingContext option in vm.compileFunction was not being applied properly to t...
[ { "path": "doc/api/vm.md", "patch": "@@ -673,8 +673,8 @@ added: v10.10.0\n data for the supplied source.\n * `produceCachedData` {boolean} Specifies whether to produce new cache data.\n **Default:** `false`.\n- * `parsingContext` {Object} The sandbox/context in which the said function\n- shoul...
2018-10-01T18:56:07
rust-lang/rust
b9f4350fbc8198f4805557d9b0c5367ebc2390d2
1f76d219c906f0112bb1872f33aa977164c53fa6
fix doc for UnixStream
[ { "path": "library/std/src/os/unix/net/stream.rs", "patch": "@@ -307,11 +307,11 @@ impl UnixStream {\n ///\n /// ```no_run\n /// use std::io;\n- /// use std::net::UdpSocket;\n+ /// use std::os::unix::net::UnixStream;\n /// use std::time::Duration;\n ///\n /// fn main() -> std::...
2025-05-14T02:00:56
golang/go
c6d3d0b0ad10926fc1952deda913d139ed608cb3
6bf2667d4ef7dee76d308c0ac7acd0d409213b8a
[dev.typeparams] go/types: fix the type parameter index in applyTypeFunc We should preserve type parameter indices when transforming them using applyTypeFunc. Change-Id: Ib75f5cf1a146bd7e6850368fa954c1affcba3ad1 Reviewed-on: https://go-review.googlesource.com/c/go/+/327269 Trust: Robert Findley <rfindley@google.com> ...
[ { "path": "src/cmd/compile/internal/types2/builtins.go", "patch": "@@ -802,7 +802,7 @@ func (check *Checker) applyTypeFunc(f func(Type) Type, x Type) Type {\n \t\t// type param is placed in the current package so export/import\n \t\t// works as expected.\n \t\ttpar := NewTypeName(nopos, check.pkg, \"<type p...
2021-06-11T16:40:42
electron/electron
0ab32bfe17c81a03c91f79088e71f6c58b2306fb
3d30e6ddc4439327ca02158471258a6274d2436e
win: Reserve border space for maximized frameless window Fixes #732.
[ { "path": "atom/browser/native_window_views.cc", "patch": "@@ -221,7 +221,7 @@ NativeWindowViews::NativeWindowViews(content::WebContents* web_contents,\n #endif\n \n // Add web view.\n- SetLayoutManager(new MenuLayout(kMenuBarHeight));\n+ SetLayoutManager(new MenuLayout(this, kMenuBarHeight));\n set_b...
2014-12-16T00:00:16
huggingface/transformers
b44b04ee9af23589bd7855def584356e1627d88a
9300728665aaeb0ebf4db99f9d9fbce916b4a183
Fix broken notebooks link in Italian training docs (#38834)
[ { "path": "docs/source/it/training.md", "patch": "@@ -373,4 +373,4 @@ Per altri esempi sul fine-tuning, fai riferimento a:\n \n - [🤗 Transformers Examples](https://github.com/huggingface/transformers/tree/main/examples) include scripts per addestrare compiti comuni di NLP in PyTorch e TensorFlow.\n \n-- [�...
2025-06-16T14:38:51
vercel/next.js
2b2dc54617036781eb821e64800df5a82388613d
a85c636bfe6a4796b5cd27f69f3ec777531a82dd
chore: fix docs link to minimumCacheTTL (#45502 ## Documentation / Examples - [x] Make sure the linting passes by running `pnpm build && pnpm lint` - [x] The "examples guidelines" are followed from [our contributing doc](https://github.com/vercel/next.js/blob/canary/contributing/examples/adding-examples.md)
[ { "path": "docs/going-to-production.md", "patch": "@@ -39,7 +39,7 @@ Caching improves response times and reduces the number of requests to external s\n Cache-Control: public, max-age=31536000, immutable\n ```\n \n-`Cache-Control` headers set in `next.config.js` will be overwritten in production to ensure th...
2023-02-02T01:31:35
rust-lang/rust
7b45c59d40bf9136916eb487183999bfda18c99c
5c2677d01761b159df99e2e381761ae770411746
Add match guard chains test for absence of compilation error based on tests/ui/rfcs/rfc-2497-if-let-chains/temporary-early-drop.rs
[ { "path": "tests/ui/rfcs/rfc-2294-if-let-guard/temporary-early-drop.rs", "patch": "@@ -0,0 +1,29 @@\n+// issue-103476\n+//@ revisions: edition2021 edition2024\n+//@ [edition2021] edition: 2021\n+//@ [edition2024] edition: 2024\n+//@ check-pass\n+\n+#![feature(if_let_guard)]\n+#![allow(irrefutable_let_patter...
2025-05-13T22:45:28
nodejs/node
700fe5bbc489903578ff4d3d9da88651ae23213c
b409eaaf25dabe38f26e400ff01ffef598f0760d
src: fix usage of deprecated v8::Date::New PR-URL: https://github.com/nodejs/node/pull/23288 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Gus Caplan <me@gus.host> Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com> Reviewed-By: Refael Ackerma...
[ { "path": "src/node.h", "patch": "@@ -287,8 +287,11 @@ NODE_EXTERN struct uv_loop_s* GetCurrentEventLoop(v8::Isolate* isolate);\n /* Converts a unixtime to V8 Date */\n NODE_DEPRECATED(\"Use v8::Date::New() directly\",\n inline v8::Local<v8::Value> NODE_UNIXTIME_V8(double time) {\n- return ...
2018-10-06T12:16:35
golang/go
6298cfe6724e3ca24dedd3f62b2b358aafe17276
49402bee36fd3d5cee9f4b2d2e1e8560ead0203b
cmd/compile: fix typo in fatal message of builtinCall Change-Id: I523d5fd810b82154a204670d46fc250a0fc66791 Reviewed-on: https://go-review.googlesource.com/c/go/+/333849 Reviewed-by: Ian Lance Taylor <iant@golang.org> Reviewed-by: Matthew Dempsky <mdempsky@google.com> Run-TryBot: Ian Lance Taylor <iant@golang.org> TryB...
[ { "path": "src/cmd/compile/internal/typecheck/iimport.go", "patch": "@@ -1540,7 +1540,7 @@ func (r *importReader) exprsOrNil() (a, b ir.Node) {\n func builtinCall(pos src.XPos, op ir.Op) *ir.CallExpr {\n \tif go117ExportTypes {\n \t\t// These should all be encoded as direct ops, not OCALL.\n-\t\tbase.Fatalf...
2021-07-11T03:46:26
electron/electron
3d30e6ddc4439327ca02158471258a6274d2436e
85b0885af71e4fdceb6a88730951125bee24c252
win: Don't allow maximzing a unresiazble frameless window Fixes #857.
[ { "path": "atom/browser/native_window_views.cc", "patch": "@@ -411,17 +411,15 @@ gfx::Size NativeWindowViews::GetMaximumSize() {\n \n void NativeWindowViews::SetResizable(bool resizable) {\n #if defined(OS_WIN)\n- if (has_frame_) {\n- // WS_MAXIMIZEBOX => Maximize button\n- // WS_MINIMIZEBOX => Minim...
2014-12-15T20:51:45
huggingface/transformers
9300728665aaeb0ebf4db99f9d9fbce916b4a183
608884960ea74e3ac69b732ce6b6285e697fcf97
Fix peft integration (#38841) Update peft.py
[ { "path": "src/transformers/integrations/peft.py", "patch": "@@ -28,7 +28,6 @@\n is_torch_available,\n logging,\n )\n-from ..modeling_utils import VLMS\n \n \n if is_torch_available():\n@@ -45,6 +44,26 @@\n logger = logging.get_logger(__name__)\n \n \n+# DO NOT MODIFY, KEPT FOR BC ONLY\n+VLMS = [\n+...
2025-06-16T08:39:25
vercel/next.js
a85c636bfe6a4796b5cd27f69f3ec777531a82dd
bb9428769bc7fee01cb2eff7110817a5ce6dfa97
Fix middleware matcher for i18n with negative look ahead (#45504)closes https://github.com/vercel/next.js/issues/40305 <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose the rig...
[ { "path": "packages/next/src/build/analysis/get-page-static-info.ts", "patch": "@@ -159,7 +159,9 @@ function getMiddlewareMatchers(\n const isRoot = source === '/'\n \n if (i18n?.locales && r.locale !== false) {\n- source = `/:nextInternalLocale([^/.]{1,})${isRoot ? '' : source}`\n+ source...
2023-02-02T01:30:48
huggingface/transformers
ce6ac53ac104feeb6202303512c611f773f0d1e7
925da8ac568c804de4085f31fc08762ff9519b4e
bugfix: propage weight key_mapping to peft to fix 3.52 VLM renaming (#38627) * propage key mapping to peft * propage key mapping to peft * make requested changes * revert
[ { "path": "src/transformers/integrations/peft.py", "patch": "@@ -14,6 +14,7 @@\n \n import importlib\n import inspect\n+import re\n import warnings\n from typing import Any, Dict, List, Optional, Union\n \n@@ -149,6 +150,7 @@ def load_adapter(\n \n # peft only supports low_cpu_mem_usage starting fro...
2025-06-16T08:10:23
nodejs/node
59c7df4a1099ea904de635c6357c08878dfc7093
09a8ff3fd629c707264fb432bcf6cc13faa81258
test: fix compiler warning in doc/api/addons.md Currently there are compiler warnings is emitted: ../addon.cc:17:58: warning: 'ToString' is deprecated: Use maybe version [-Wdeprecated-declarations] obj->Set(String::NewFromUtf8(isolate, "msg"), args[0]->ToString(isolate)); ...
[ { "path": "doc/api/addons.md", "patch": "@@ -587,6 +587,7 @@ property `msg` that echoes the string passed to `createObject()`:\n \n namespace demo {\n \n+using v8::Context;\n using v8::FunctionCallbackInfo;\n using v8::Isolate;\n using v8::Local;\n@@ -596,9 +597,11 @@ using v8::Value;\n \n void CreateObject...
2018-10-08T05:28:11
golang/go
7e714f448eaf2c489c32bfff5c00f5f5ad6ea289
82f875d735fd07957a2224d2c73c677ddfdeef0d
[dev.typeparams] go/types: embedding stand-alone type parameters is not permitted This is a port of CL 334151 to go/types. Fixes #47127 Change-Id: I57d69c498d2649a9e1657559e4c0271333096c88 Reviewed-on: https://go-review.googlesource.com/c/go/+/335082 Trust: Robert Findley <rfindley@google.com> Run-TryBot: Robert Fin...
[ { "path": "src/go/types/testdata/check/issues.go2", "patch": "@@ -239,7 +239,7 @@ func _[T interface{ ~func() }](f T) {\n \n type sliceOf[E any] interface{ ~[]E }\n \n-func append[T interface{}, S sliceOf[T], T2 interface{ T }](s S, t ...T2) S\n+func append[T interface{}, S sliceOf[T], T2 interface{}](s S, ...
2021-07-17T00:57:10
electron/electron
310509213007c4ae6b2341cb114a133367e41747
85b0885af71e4fdceb6a88730951125bee24c252
Fix nullref crash in RemoveGuest
[ { "path": "atom/browser/web_view/web_view_manager.cc", "patch": "@@ -81,12 +81,16 @@ void WebViewManager::AddGuest(int guest_instance_id,\n \n void WebViewManager::RemoveGuest(int guest_instance_id) {\n auto web_contents = web_contents_map_[guest_instance_id].web_contents;\n- content::BrowserThread::Post...
2014-12-15T14:10:39
vercel/next.js
bb9428769bc7fee01cb2eff7110817a5ce6dfa97
77aa75c6c486118c2cf76013a664914eee2766b0
Make client boundary unserializable props a warning instead of an error (#45501) It's not always an error when this occurred, like you can still import a client boundary from a client component. Although we want to make it a conventional thing so it's more like a warning in the moment. Thanks to @MaxLeiter's feedback...
[ { "path": "packages/next/src/server/typescript/rules/client-boundary.ts", "patch": "@@ -48,15 +48,15 @@ const clientBoundary = {\n \n if (typeDeclarationNode) {\n if (\n- // Show errors for not serializable props.\n+ // Show warning for not serializable props.\n ...
2023-02-02T00:15:58
huggingface/transformers
925da8ac568c804de4085f31fc08762ff9519b4e
d2fd3868bb03dd48199ba6ddd485c0845873da49
Fix redundant code in Janus (#38826) * minor mistake * modify return statements
[ { "path": "src/transformers/models/janus/modeling_janus.py", "patch": "@@ -1007,9 +1007,8 @@ def forward(\n batch_size = pixel_values.shape[0]\n quant, embedding_loss, indices = self.encode(pixel_values)\n decoded_pixel_values = self.decode(indices.view(batch_size, -1))\n- out...
2025-06-16T06:53:59
nodejs/node
09a8ff3fd629c707264fb432bcf6cc13faa81258
623206c2d6e7bb1cb35afeafd457cecedf0b7c3d
doc: edit for minor fixes to prcoess.md Remove use of personal pronoun _you_ from formal documentation for `process`. Fix up grammar in nearby text. PR-URL: https://github.com/nodejs/node/pull/23347 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com> Reviewed-By: Anna Hen...
[ { "path": "doc/api/process.md", "patch": "@@ -114,7 +114,7 @@ The `'multipleResolves'` event is emitted whenever a `Promise` has been either:\n * Rejected after resolve.\n * Resolved after reject.\n \n-This is useful for tracking errors in your application while using the promise\n+This is useful for tracki...
2018-10-09T02:48:50
electron/electron
11cd301127a0e9bac765ad3f320141f2aa94a44c
654d21100ff2908af6c44e2d2d71ba92b1e96722
Only listen to its own events in <webview>, fixes #885
[ { "path": "atom/browser/lib/guest-view-manager.coffee", "patch": "@@ -68,7 +68,7 @@ createGuest = (embedder, params) ->\n \n # Autosize.\n guest.on 'size-changed', (_, args...) ->\n- embedder.send \"ATOM_SHELL_GUEST_VIEW_INTERNAL_SIZE_CHANGED\", args...\n+ embedder.send \"ATOM_SHELL_GUEST_VIEW_INT...
2014-12-13T01:16:12
golang/go
82f875d735fd07957a2224d2c73c677ddfdeef0d
62f6f130fe1c6cbe9d2c1ea5160e83fb1cfa208a
[dev.typeparams] go/types: fix generic type indirection This is a port of CL 333890 to go/types. Change-Id: I8ee20f405dad98083bb5e91636044d132a95d909 Reviewed-on: https://go-review.googlesource.com/c/go/+/335081 Trust: Robert Findley <rfindley@google.com> Run-TryBot: Robert Findley <rfindley@google.com> TryBot-Result...
[ { "path": "src/go/types/expr.go", "patch": "@@ -1400,13 +1400,24 @@ func (check *Checker) exprInternal(x *operand, e ast.Expr, hint Type) exprKind {\n \t\tcase typexpr:\n \t\t\tx.typ = &Pointer{base: x.typ}\n \t\tdefault:\n-\t\t\tif typ := asPointer(x.typ); typ != nil {\n-\t\t\t\tx.mode = variable\n-\t\t\t\...
2021-07-17T00:50:18
vercel/next.js
77aa75c6c486118c2cf76013a664914eee2766b0
97796586b1ba8593ba2020dd79ea12465dadeac6
Improve TS experience for metadata (#45493) This PR adds the corresponding TS plugin logic for the `metadata` export field. In short, it provides the same IntelliSense experience to that export value even if it isn't typed manually with `Metadata`. It is implemented via an in-memory TypeScript LanguageServiceHost, ...
[ { "path": "packages/next/src/build/webpack/plugins/flight-types-plugin.ts", "patch": "@@ -181,6 +181,7 @@ export class FlightTypesPlugin {\n }\n }\n await Promise.all(promises)\n+\n callback()\n }\n )", "additions": 1, "deletions": 0, "lang...
2023-02-01T19:57:56
huggingface/transformers
d2fd3868bb03dd48199ba6ddd485c0845873da49
d5d007a1a0f0c11a726a54c8f00bd71825f84d02
[internvl] fix video inference (#38811) fix
[ { "path": "src/transformers/models/internvl/processing_internvl.py", "patch": "@@ -223,12 +223,15 @@ def __call__(\n image_num_patches_indices = np.cumsum(image_num_patches)\n if videos is not None:\n videos = make_batched_videos(videos)\n- num_frames_per_video = [...
2025-06-16T06:37:30
golang/go
baeabf3b366fad1eae113f8334451906dac61c0d
b3d91e3a24f95a6a5906dab28c3392a542ccc81c
[dev.typeparams] go/types: cleanups around receiver type checks This is a port of CL 333770 to go/types, adjusted for the error reporting API and to not support compiler error messages. An error message changed (to 'invalid receiver type' from just 'invalid receiver'), so a test had to be adjusted. Change-Id: I166e88...
[ { "path": "src/go/types/signature.go", "patch": "@@ -199,30 +199,40 @@ func (check *Checker) funcType(sig *Signature, recvPar *ast.FieldList, ftyp *ast\n \n \t\t// spec: \"The receiver type must be of the form T or *T where T is a type name.\"\n \t\t// (ignore invalid types - error was reported before)\n-\t...
2021-07-17T00:40:58
nodejs/node
cd8ee2d033fcc5a2dfe81aed9c508076d62a4cd8
487020ee6007bc638dcd21a65ccf8c2feab1e66b
2018-10-10, Version 10.12.0 (Current) Notable changes: * assert * The diff output is now a tiny bit improved by sorting object properties when inspecting the values that are compared with each other. https://github.com/nodejs/node/pull/22788 * cli * The options parser now normalizes `_` to `-` in all mult...
[ { "path": "CHANGELOG.md", "patch": "@@ -31,7 +31,8 @@ release.\n </tr>\n <tr>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V10.md#10.11.0\">10.11.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V10.md#10.12.0\">10.12.0</a></b><br/>\n+<a href=\"doc/changelogs/CHANGELOG_V10.md#10.1...
2018-10-07T12:09:45
vercel/next.js
0a8a143ff028732b099cde56f32ce3601d75f963
074b7e4dcc537b3090925d8420a911f4798077bd
misc: refactor build context/webpack build step (4/6) (#45458) Refactoring the ugliness of the previous diff into a more manageable build context. This will let us avoid passing down 10 params at a time. <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoot...
[ { "path": "packages/next/src/build/build-context.ts", "patch": "@@ -0,0 +1,50 @@\n+import { LoadedEnvFiles } from '@next/env'\n+import { Ora } from 'next/dist/compiled/ora'\n+import { Rewrite } from '../lib/load-custom-routes'\n+import { __ApiPreviewProps } from '../server/api-utils'\n+import { NextConfigCo...
2023-02-01T18:35:16
huggingface/transformers
443aafd3d6e73efb8f6e8fc0933ea966e621fd9c
fdb5da59ddf0e4f79623adc2941dd34bea59225b
[docs] updated roberta model card (#38777) * updated roberta model card * fixes suggested after reviewing --------- Co-authored-by: Steven Liu <59462357+stevhliu@users.noreply.github.com>
[ { "path": "docs/source/en/model_doc/roberta.md", "patch": "@@ -14,97 +14,86 @@ rendered properly in your Markdown viewer.\n \n -->\n \n-# RoBERTa\n-\n-<div class=\"flex flex-wrap space-x-1\">\n-<img alt=\"PyTorch\" src=\"https://img.shields.io/badge/PyTorch-DE3412?style=flat&logo=pytorch&logoColor=white\">\...
2025-06-13T19:02:44
electron/electron
c09c7a2248a9e4d66c3ca2d0c7bcbddfe432ca59
c083acae9775c79779925586cefb1e37805041ae
Fixed 64-bit windows install 64-bit version is not available under Windows, so install fails with 404 download error. Fixed by patching windows install.
[ { "path": "npm/install.js", "patch": "@@ -8,6 +8,10 @@ var fs = require('fs')\n \n var platform = os.platform()\n var arch = os.arch()\n+if ('win32' === platform) {\n+ // 64-bit is not available under windows.\n+ arch = 'ia32';\n+}\n var version = '0.19.5'\n var name = 'atom-shell-v'+version+'-'+platform+...
2014-12-12T19:20:20
rust-lang/rust
d16c82dba15f4aaf61874f6668417856002d32a6
65663b538fd8c3a593b0470b1d966100ac968a77
Fix `i256::MAX`
[ { "path": "library/compiler-builtins/compiler-builtins/src/int/big.rs", "patch": "@@ -65,7 +65,7 @@ impl MinInt for i256 {\n const ZERO: Self = Self([0u64; 4]);\n const ONE: Self = Self([1, 0, 0, 0]);\n const MIN: Self = Self([0, 0, 0, 1 << 63]);\n- const MAX: Self = Self([u64::MAX, u64::MAX,...
2025-05-08T13:00:59
golang/go
19b4142f240172d525f81d1b4efb5679f147b474
d6d7f8458e9e4360d7b0a4e42c5c850ae27bac8d
[dev.typeparams] go/types: implement ch <- x where ch is of type parameter type This is a port of CL 333712 to go/types, adjusted for the different error reporting API and to position errors on the arrows. Fixes #43671 Change-Id: I7d2de249e86d272c89a046f60e632e75848ff865 Reviewed-on: https://go-review.googlesource.c...
[ { "path": "src/go/types/stmt.go", "patch": "@@ -361,25 +361,33 @@ func (check *Checker) stmt(ctxt stmtContext, s ast.Stmt) {\n \t\tcheck.errorf(&x, code, \"%s %s\", &x, msg)\n \n \tcase *ast.SendStmt:\n-\t\tvar ch, x operand\n+\t\tvar ch, val operand\n \t\tcheck.expr(&ch, s.Chan)\n-\t\tcheck.expr(&x, s.Valu...
2021-07-17T00:22:59
nodejs/node
484e4db46dfea8d90d83847972d121daef7b0ffe
20de5f3fa2c96897ae92ac27a1883b5d266d6ca1
build: restore js2c direct dependency on config.gypi PR-URL: https://github.com/nodejs/node/pull/23355 Fixes: https://github.com/nodejs/node/issues/23352 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Daniel Bev...
[ { "path": "node.gyp", "patch": "@@ -629,6 +629,7 @@\n 'process_outputs_as_sources': 1,\n 'inputs': [\n '<@(library_files)',\n+ 'config.gypi',\n 'tools/check_macros.py'\n ],\n 'outputs': [\n@@ -648,7 +649,7 @@\n 'action': [\...
2018-10-09T14:36:52
huggingface/transformers
8b73799500a69242d0afa73c1256bcaf7a3fff37
9bec2654ed5b4ac43e880dc7e3cb2c18aeae70a9
fixed docstring in modular_qwen2_5_vl.py (#38798) * fixed docstring in modular_qwen2_5_vl.py * Regenerate file to match docstring update
[ { "path": "src/transformers/models/qwen2_5_vl/modeling_qwen2_5_vl.py", "patch": "@@ -1307,8 +1307,8 @@ def forward(\n r\"\"\"\n pixel_values_videos (`torch.FloatTensor` of shape `(seq_length, num_channels * temporal_size * image_size * image_size)):\n The tensors corresponding to...
2025-06-13T18:09:51
vercel/next.js
074b7e4dcc537b3090925d8420a911f4798077bd
b1f154d88b5ee597f07c7eff603295b0d0ccf5a5
Split router utils into smaller modules (#45451)Co-authored-by: Jan Kaifer <jan@kaifer.cz> This makes sure that the entire module `shared/lib/router/router` isn't included in the final bundle, by splitting it into smaller utils. ## Bug - [ ] Related issues linked using `fixes #number` - [ ] Integration tests a...
[ { "path": "packages/next/src/client/components/layout-router.tsx", "patch": "@@ -24,7 +24,7 @@ import { createInfinitePromise } from './infinite-promise'\n import { ErrorBoundary } from './error-boundary'\n import { matchSegment } from './match-segments'\n import { useRouter } from './navigation'\n-import {...
2023-02-01T18:03:05
electron/electron
099eb53d3c7a4be19fd79f11c9ccf52faff300d4
e3ccb18696c3ddfc9dadd5dc4593bd9f5f88023b
Upgrade libchromiumcontent to fix generating node.lib
[ { "path": "script/lib/config.py", "patch": "@@ -4,7 +4,7 @@\n import sys\n \n BASE_URL = 'https://gh-contractor-zcbenz.s3.amazonaws.com/libchromiumcontent'\n-LIBCHROMIUMCONTENT_COMMIT = 'e4b283c22236560fd289fe59c03e50adf39e7c4b'\n+LIBCHROMIUMCONTENT_COMMIT = 'aa87035cc012ce0d533bb56b947bca81a6e71b82'\n \n A...
2014-12-12T18:40:42
golang/go
d6d7f8458e9e4360d7b0a4e42c5c850ae27bac8d
796ac6d5f24f725794a3620d767d30c52f232a60
[dev.typeparams] go/types: implement <-ch where ch is of type parameter type This is a port of CL 333709 to go/types, adjusted for the different error API. Fixes #43671 Change-Id: Ifd340149bfbcabe401cec74398cb83f2ae812e51 Reviewed-on: https://go-review.googlesource.com/c/go/+/335075 Trust: Robert Findley <rfindley@g...
[ { "path": "src/go/types/expr.go", "patch": "@@ -144,6 +144,14 @@ var op2str2 = [...]string{\n \ttoken.SHL: \"shift\",\n }\n \n+func underIs(typ Type, f func(Type) bool) bool {\n+\tu := under(typ)\n+\tif tpar, _ := u.(*TypeParam); tpar != nil {\n+\t\treturn tpar.underIs(f)\n+\t}\n+\treturn f(u)\n+}\n+\n // T...
2021-07-17T00:16:27
nodejs/node
20de5f3fa2c96897ae92ac27a1883b5d266d6ca1
59d2bd9fb5da1606ce673246aa5ca9fe17c7dd53
src: fix ToObject() usage in node_http_parser.cc PR-URL: https://github.com/nodejs/node/pull/23314 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com>
[ { "path": "src/node_http_parser.cc", "patch": "@@ -623,7 +623,8 @@ class Parser : public AsyncWrap, public StreamListener {\n enum http_errno err = HTTP_PARSER_ERRNO(&parser_);\n \n Local<Value> e = Exception::Error(env()->parse_error_string());\n- Local<Object> obj = e->ToObject(env()->iso...
2018-10-07T14:07:25
huggingface/transformers
9bec2654ed5b4ac43e880dc7e3cb2c18aeae70a9
2ff964bcb4995f1b9faf310d34852d72471ef4b5
Add V-JEPA for video classification model (#38788) * adding model and conversion scripts * add imports to test vjepa conversion * fix imports and make conversion work * fix computation for short side * replace attention with library attention function * cleanup more attention classes * remove config overrides *...
[ { "path": "docs/source/en/model_doc/vjepa2.md", "patch": "@@ -38,7 +38,7 @@ This model was contributed by [koustuvs](https://huggingface.co/koustuvs), [yoni\n \n ## Usage example\n \n-The snippet below shows how to load the V-JEPA 2 model using the `AutoModel` class.\n+The snippet below shows how to load th...
2025-06-13T16:56:15
vercel/next.js
0e28913e17cc24b5f9dd97233b3f1cd5d3330917
9056eaf71b577c320dc069e4e51221b8bd554bb8
show turbopack warnings in error overlay (vercel/turbo#3465)
[ { "path": "packages/next-swc/crates/next-core/js/src/dev/hmr-client.ts", "patch": "@@ -1,11 +1,13 @@\n import type {\n ClientMessage,\n- EcmascriptChunkUpdate,\n+ HmrUpdateEntry,\n+ Issue,\n ResourceIdentifier,\n ServerMessage,\n } from \"@vercel/turbopack-runtime/types/protocol\";\n import type {\...
2023-02-01T17:45:39
electron/electron
e3ccb18696c3ddfc9dadd5dc4593bd9f5f88023b
e38614ce315f627d41a2d2d2acb6ea5c3be65765
win: Fix calculating window bounds on high DPI display
[ { "path": "atom/browser/native_window_views.cc", "patch": "@@ -49,6 +49,7 @@\n #include \"base/win/scoped_comptr.h\"\n #include \"base/win/windows_version.h\"\n #include \"ui/base/win/shell.h\"\n+#include \"ui/gfx/win/dpi.h\"\n #include \"ui/views/win/hwnd_util.h\"\n #endif\n \n@@ -837,8 +838,15 @@ void Nat...
2014-12-12T17:04:43
golang/go
43ad1ffa990358e60130ca9395210315e59e059a
c7c13ae4323f9f1d658625a9a774525789ee4d71
[dev.typeparams] go/types: recursive substitution must terminate (bug fix) This is a port of CL 333383 to go/types. Change-Id: I7ff68116cbe63337dbcc834c473a2a5588274e36 Reviewed-on: https://go-review.googlesource.com/c/go/+/335115 Trust: Robert Findley <rfindley@google.com> Run-TryBot: Robert Findley <rfindley@google...
[ { "path": "src/go/types/api_test.go", "patch": "@@ -1817,3 +1817,26 @@ func f(x T) T { return foo.F(x) }\n \t\t}\n \t}\n }\n+\n+func TestInstantiate(t *testing.T) {\n+\t// eventually we like more tests but this is a start\n+\tconst src = genericPkg + \"p; type T[P any] *T[P]\"\n+\tpkg, err := pkgFor(\".\", ...
2021-07-16T18:30:15
nodejs/node
59d2bd9fb5da1606ce673246aa5ca9fe17c7dd53
a8530bc4e06642b0cf6b602c1c04d39ed9aeca26
src: fix ToObject() usage in exceptions.cc PR-URL: https://github.com/nodejs/node/pull/23314 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com>
[ { "path": "src/exceptions.cc", "patch": "@@ -128,7 +128,9 @@ Local<Value> UVException(Isolate* isolate,\n String::Concat(isolate, js_msg, FIXED_ONE_BYTE_STRING(isolate, \"'\"));\n }\n \n- Local<Object> e = Exception::Error(js_msg)->ToObject(isolate);\n+ Local<Object> e =\n+ Exception::Error(j...
2018-10-07T14:05:30
huggingface/transformers
2ff964bcb4995f1b9faf310d34852d72471ef4b5
4c3c177ecfe315bb3bedc3af69aeb8fc33654c8c
Fix trainer.py not showing signature columns (#38465) Fix trainer.py not showing signature columns
[ { "path": "src/transformers/trainer.py", "patch": "@@ -932,7 +932,7 @@ def _remove_unused_columns(self, dataset: \"datasets.Dataset\", description: Optio\n columns = [k for k in signature_columns if k in dataset.column_names]\n if len(columns) == 0:\n raise ValueError(\n- ...
2025-06-13T15:39:29
vercel/next.js
129d27b9e49dd8199ca89c0ca5e21ecf6c70ccdd
78f898712cb9879d90f5de72fd0de9ca5976594b
show turbopack warnings in error overlay (vercel/turbo#3465)
[ { "path": "crates/next-core/js/src/dev/hmr-client.ts", "patch": "@@ -1,11 +1,13 @@\n import type {\n ClientMessage,\n- EcmascriptChunkUpdate,\n+ HmrUpdateEntry,\n+ Issue,\n ResourceIdentifier,\n ServerMessage,\n } from \"@vercel/turbopack-runtime/types/protocol\";\n import type {\n ChunkPath,\n+ ...
2023-02-01T17:45:39
electron/electron
1bebf1cc2c68b67798f298a5c79d2ae771f44e1e
d8d9dea792a8be183159014fe7ec66505dad9cbf
win: Fix generating location.pak.
[ { "path": "atom.gyp", "patch": "@@ -883,13 +883,14 @@\n {\n 'action_name': 'Make Empty Paks',\n 'inputs': [\n- 'tools/posix/make_locale_paks.sh',\n+ 'tools/make_locale_paks.py',\n ],\n 'outputs': [\n ...
2014-12-12T03:29:36
golang/go
49402bee36fd3d5cee9f4b2d2e1e8560ead0203b
a66190eceeea63aab0b5410ae3222454e5e0cd96
cmd/{compile,link}: fix bug in map.zero handling In CL 326211 a change was made to switch "go.map.zero" symbols from non-pkg DUPOK symbols to hashed symbols. The intent of this change was ensure that in cases where there are multiple competing go.map.zero symbols feeding into a link, the largest map.zero symbol is sel...
[ { "path": "src/cmd/compile/internal/gc/obj.go", "patch": "@@ -148,7 +148,7 @@ func dumpdata() {\n \tif reflectdata.ZeroSize > 0 {\n \t\tzero := base.PkgLinksym(\"go.map\", \"zero\", obj.ABI0)\n \t\tobjw.Global(zero, int32(reflectdata.ZeroSize), obj.DUPOK|obj.RODATA)\n-\t\tzero.Set(obj.AttrContentAddressable...
2021-07-15T20:29:36
huggingface/transformers
4c3c177ecfe315bb3bedc3af69aeb8fc33654c8c
93445aed0622ef139321db279a3c4ca0bd0b6541
Fix a minor security issue (#38815) fix Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": "utils/check_self_hosted_runner.py", "patch": "@@ -6,10 +6,15 @@\n def get_runner_status(target_runners, token):\n offline_runners = []\n \n- cmd = (\n- f'curl -H \"Accept: application/vnd.github+json\" -H \"Authorization: Bearer {token}\"'\n- \" https://api.github.com/repos/h...
2025-06-13T15:37:46
nodejs/node
a8530bc4e06642b0cf6b602c1c04d39ed9aeca26
b6dcf8c0125cc589c34bfc3180ab49e6e606a74f
test: error when empty buffer is passed to filehandle.read() Added tests to occur error when empty buffer is passed to filehandle.read() to increase coverage. PR-URL: https://github.com/nodejs/node/pull/23250 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-B...
[ { "path": "test/parallel/test-fs-read-empty-buffer.js", "patch": "@@ -6,6 +6,7 @@ const assert = require('assert');\n const fs = require('fs');\n const filepath = fixtures.path('x.txt');\n const fd = fs.openSync(filepath, 'r');\n+const fsPromises = fs.promises;\n \n const buffer = new Uint8Array();\n \n@@ -...
2018-09-30T17:03:47
vercel/next.js
b1f154d88b5ee597f07c7eff603295b0d0ccf5a5
85ec9c5d94b57b19c4dd058313a246d1ae998774
misc: move entrypoints creation into webpack build step (3/6) (#45456) During build, entrypoint creation is only useful for the webpack build process. Since I extracted it to another file, it makes sense to also move it there. Note: the way the params are added sucks, this is corrected in the next diff. <!-- Thanks...
[ { "path": "packages/next/src/build/entries.ts", "patch": "@@ -133,7 +133,7 @@ export function createPagesMapping({\n }\n }\n \n-interface CreateEntrypointsParams {\n+export interface CreateEntrypointsParams {\n buildId: string\n config: NextConfigComplete\n envFiles: LoadedEnvFiles", "additions"...
2023-02-01T17:07:58
electron/electron
d8d9dea792a8be183159014fe7ec66505dad9cbf
7457f8128345d5ff16c582bf4d141574809f90fc
Upgrade node to fix failed call to LoadLibrary
[ { "path": "script/bootstrap.py", "patch": "@@ -21,18 +21,18 @@ def main():\n args = parse_args()\n if args.verbose:\n enable_verbose_mode()\n+ if sys.platform == 'cygwin':\n+ update_win32_python()\n update_submodules()\n update_node_modules('.')\n- update_atom_modules('spec')\n bootstrap_...
2014-12-12T02:33:39
rust-lang/rust
df1da673f75937a1a8ebd4ad09b5ffb244df6927
1a7f290a9aedc138edf9c88a82019292019754d9
Flush errors before deep normalize in dropck_outlives
[ { "path": "compiler/rustc_trait_selection/src/traits/query/dropck_outlives.rs", "patch": "@@ -196,6 +196,14 @@ where\n debug!(\"dropck_outlives: ty from dtorck_types = {:?}\", ty);\n ty\n } else {\n+ // Flush errors b/c `deeply_normalize` doesn't ex...
2025-05-12T14:22:48
golang/go
9b85985d36a7cc7117e9c14bc1d2632844a5a818
df778e6fd9a8ad4f50f734f08b8d07d4ce597c02
[dev.typeparams] Separate out gcshape types that are instantiated types Distinguish the gcshape of all top-level instantiated type from normal concrete types, even if they have the exact same underlying "shape", because in a function instantiation, any method call on this type arg will be a generic method call (requir...
[ { "path": "src/cmd/compile/internal/noder/stencil.go", "patch": "@@ -729,11 +729,37 @@ func gcshapeType(t *types.Type) (*types.Type, string) {\n \n \t// Call CallSize so type sizes and field offsets are available.\n \ttypes.CalcSize(t)\n+\n+\tinstType := t.Sym() != nil && t.IsFullyInstantiated()\n+\tif inst...
2021-07-09T23:27:22
huggingface/transformers
b82a45b3b4c79a245d4ee5c5d472009a6ae1ad5a
64041694a878c6e272429c76bc436caa671af027
Refactor DBRX tests to use CausalLMModelTest base classes (#38475) * Refactor DBRX tests to use CausalLMModelTest base classes - Changed DbrxModelTester to inherit from CausalLMModelTester - Changed DbrxModelTest to inherit from CausalLMModelTest - Removed duplicate methods that are already in base classes - Added re...
[ { "path": "tests/causal_lm_tester.py", "patch": "@@ -181,11 +181,18 @@ def prepare_config_and_inputs(self):\n \n return config, input_ids, token_type_ids, input_mask, sequence_labels, token_labels, choice_labels\n \n+ @property\n+ def config_args(self):\n+ return list(signature(self.con...
2025-06-13T15:22:12
nodejs/node
b6dcf8c0125cc589c34bfc3180ab49e6e606a74f
eb9748d222061381236f19cbe162cf9eb2e034ad
Revert "module: fix inconsistency between load and _findPath" This reverts commit 1b92214 from PR #22382. See the discussion at https://github.com/nodejs/citgm/issues/604 PR-URL: https://github.com/nodejs/node/pull/23228 Refs: https://github.com/nodejs/node/pull/22382 Fixes: https://github.com/nodejs/node/issues/477...
[ { "path": "lib/internal/modules/cjs/loader.js", "patch": "@@ -218,16 +218,6 @@ function tryExtensions(p, exts, isMain) {\n return false;\n }\n \n-function readExtensions() {\n- const exts = Object.keys(Module._extensions);\n- for (var i = 0, j = 0; i < exts.length; ++i) {\n- if (path.extname(exts[i])...
2018-09-26T04:24:30
vercel/next.js
316c73ea00a00257ff8ab21592d8fab2be0aaee4
442aac1e1ac5e5fe7be52fa47c37af1cb54cbfbe
Avoids emitting the same output from multiple processes of the same process pool (vercel/turbo#3531) It uses a `shared` set of `(line: [u8], occurences: u32)` to avoid emitting lines that has been emitted by other processes already. It still supports emitting the same line multiple times from one process. The ...
[ { "path": "crates/turbopack-node/src/pool.rs", "patch": "@@ -1,15 +1,20 @@\n use std::{\n collections::HashMap,\n+ mem::take,\n path::{Path, PathBuf},\n process::{ExitStatus, Stdio},\n sync::{Arc, Mutex},\n time::Duration,\n };\n \n use anyhow::{bail, Context, Result};\n+use indexmap:...
2023-02-01T16:42:05
electron/electron
7457f8128345d5ff16c582bf4d141574809f90fc
0b668b8e175e5e48db6fe5eb7d6e763495bed5f9
mac: Fix installing view on frameless window Closes #601.
[ { "path": "atom/browser/native_window_mac.h", "patch": "@@ -11,6 +11,7 @@\n #include \"base/memory/scoped_ptr.h\"\n #include \"atom/browser/native_window.h\"\n \n+@class FullSizeContentView;\n class SkRegion;\n \n namespace atom {\n@@ -98,6 +99,9 @@ class NativeWindowMac : public NativeWindow {\n \n base:...
2014-12-11T22:25:51
golang/go
a66190eceeea63aab0b5410ae3222454e5e0cd96
650fc2117aaffbc4d596dc35cc88400ba11b2f25
test/bench/go1: fix size for RegexpMatchMedium_32 Change-Id: Idc67abb95248bc010820a89dd6096a2da334e723 GitHub-Last-Rev: ae9014b011efb2692f853888c1860920d1acc3cb GitHub-Pull-Request: golang/go#47254 Reviewed-on: https://go-review.googlesource.com/c/go/+/335189 Reviewed-by: Rob Pike <r@golang.org> Run-TryBot: Rob Pike <...
[ { "path": "test/bench/go1/regexp_test.go", "patch": "@@ -53,7 +53,7 @@ func BenchmarkRegexpMatchEasy0_32(b *testing.B) { benchmark(b, easy0, 32<<0) }\n func BenchmarkRegexpMatchEasy0_1K(b *testing.B) { benchmark(b, easy0, 1<<10) }\n func BenchmarkRegexpMatchEasy1_32(b *testing.B) { benchmark(b, easy1, 32...
2021-07-16T20:41:21
huggingface/transformers
9ff246db00a5f71827deb9a08fa3b182c52e6a34
e39172ecab1d6b57885853d24e0fc53d3d6956b3
Expectation fixes and added AMD expectations (#38729)
[ { "path": "src/transformers/testing_utils.py", "patch": "@@ -3237,7 +3237,9 @@ def cleanup(device: str, gc_collect=False):\n \n \n # Type definition of key used in `Expectations` class.\n-DeviceProperties = tuple[Union[str, None], Union[int, None]]\n+DeviceProperties = tuple[Optional[str], Optional[int], Op...
2025-06-13T14:14:58
nodejs/node
eb9748d222061381236f19cbe162cf9eb2e034ad
45c70b0ce79c5c606247356bf4697dae6f60c810
async_hooks: add missing async_hooks destroys in AsyncReset This adds missing async_hooks destroy calls for sockets (in _http_agent.js) and HTTP parsers. We need to emit a destroy in AsyncWrap#AsyncReset before assigning a new async_id when the instance has already been in use and is being recycled, because in that ca...
[ { "path": "benchmark/http/bench-parser.js", "patch": "@@ -25,7 +25,7 @@ function main({ len, n }) {\n bench.start();\n for (var i = 0; i < n; i++) {\n parser.execute(header, 0, header.length);\n- parser.reinitialize(REQUEST);\n+ parser.reinitialize(REQUEST, i > 0);\n }\n benc...
2018-10-01T15:11:25
rust-lang/rust
1caaa887003ed84b5c7022ded53ff50e699af666
ac9ac0e0f36dcd7f8a8f0405cd003585fe4e4426
Fix typos
[ { "path": "compiler/rustc_ast_lowering/src/lib.rs", "patch": "@@ -896,7 +896,7 @@ impl<'a, 'hir> LoweringContext<'a, 'hir> {\n let ret = self.arena.alloc_from_iter(lowered_attrs);\n \n // this is possible if an item contained syntactical attribute,\n- // but none of them p...
2025-05-12T09:15:46
vercel/next.js
9056eaf71b577c320dc069e4e51221b8bd554bb8
862a0a15359b24872b0df0c1d5a8e49379025d96
external node_modules for SSR (vercel/turbo#3361) Adds resolve plugins (currently only running `after_resolve`, could add `resolve` later) Had to fix `ResolveResult::merge_alternatives` because it merged two external results into `Unresolvable`
[ { "path": "packages/next-swc/crates/next-core/src/next_server/context.rs", "patch": "@@ -12,7 +12,9 @@ use turbopack_core::environment::{\n use turbopack_ecmascript::EcmascriptInputTransform;\n use turbopack_node::execution_context::ExecutionContextVc;\n \n-use super::transforms::get_next_server_transforms_...
2023-02-01T16:26:10
electron/electron
0b668b8e175e5e48db6fe5eb7d6e763495bed5f9
409f2b4d0fa5a053c50855875e7d72d51ee623ec
Minor fixes on <webview>
[ { "path": "atom/renderer/lib/web-view/guest-view-internal.coffee", "patch": "@@ -40,7 +40,8 @@ module.exports =\n ipc.once \"ATOM_SHELL_RESPONSE_#{requestId}\", callback\n \n attachGuest: (elementInstanceId, guestInstanceId, params, callback) ->\n- ipc.send 'ATOM_SHELL_GUEST_VIEW_MANAGER_ATTACH_GUE...
2014-12-11T17:07:50
huggingface/transformers
e39172ecab1d6b57885853d24e0fc53d3d6956b3
b3b7789cbcce1fa160551d344c03b92c03242c31
Fix `llava_next` tests (#38813) * fix * fix --------- Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": "tests/models/llava_next/test_modeling_llava_next.py", "patch": "@@ -392,7 +392,7 @@ def test_small_model_integration_test(self):\n load_in_4bit=True,\n )\n \n- inputs = self.processor(images=self.image, text=self.prompt, return_tensors=\"pt\")\n+ inputs = self.pr...
2025-06-13T13:19:41
golang/go
ed9e109dc9a3523100d19e6f259edccbd7dd3cba
3d8453e00e3d0a6f23cec06bcad08cf740ec5940
[dev.typeparams] cmd/compile: fix small -G=3 issues for tests disabled in run.go - set correct position for closure capture variable in (*irgen).use() (issue20250.go) Also, evaluate rhs, lhs in that order in assignment statements to match noder1 (affects ordering of closure variables). - make sure to set Assi...
[ { "path": "src/cmd/compile/internal/noder/object.go", "patch": "@@ -29,7 +29,7 @@ func (g *irgen) use(name *syntax.Name) *ir.Name {\n \tif !ok {\n \t\tbase.FatalfAt(g.pos(name), \"unknown name %v\", name)\n \t}\n-\tobj := ir.CaptureName(g.pos(obj2), ir.CurFunc, g.obj(obj2))\n+\tobj := ir.CaptureName(g.pos(n...
2021-07-11T20:06:54
rust-lang/rust
82fbbc0882e64847e60934dba64188c07207b345
bc7512ee6309ee7e8cacf87b94aa6d1f550c9d99
compiletest: fix "blessing" message It was showing compare mode instead of test name.
[ { "path": "src/tools/compiletest/src/runtest.rs", "patch": "@@ -2609,18 +2609,19 @@ impl<'test> TestCx<'test> {\n (expected, actual)\n };\n \n- // Write the actual output to a file in build/\n- let test_name = self.config.compare_mode.as_ref().map_or(\"\", |m| m.to_str());\...
2025-05-12T16:18:27
nodejs/node
c65a523597ccdf2b3544244679dae581040cf52f
13340d47fcdbc9fa0eaaeee52d2c09338590a797
deps: upgrade to libuv 1.23.2 PR-URL: https://github.com/nodejs/node/pull/23336 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Gus Caplan <me@gus.host> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Refael Ackermann <refack@gmail.com> Revi...
[ { "path": "deps/uv/AUTHORS", "patch": "@@ -351,3 +351,4 @@ Jeremiah Senkpiel <fishrock123@rocketmail.com>\n Andy Zhang <zhangyong232@gmail.com>\n dmabupt <dmabupt@gmail.com>\n Ryan Liptak <squeek502@hotmail.com>\n+Ali Ijaz Sheikh <ofrobots@google.com>", "additions": 1, "deletions": 0, "language"...
2018-10-08T17:14:58
electron/electron
409f2b4d0fa5a053c50855875e7d72d51ee623ec
64edede20dfa3a14624aaff3978ed37cdfc20406
win: Fix compilation errors
[ { "path": "atom.gyp", "patch": "@@ -319,7 +319,7 @@\n 'chromium_src/chrome/renderer/printing/print_web_view_helper.cc',\n 'chromium_src/chrome/renderer/printing/print_web_view_helper_linux.cc',\n 'chromium_src/chrome/renderer/printing/print_web_view_helper_mac.mm',\n- 'chromium_src/ch...
2014-12-10T22:17:07
vercel/next.js
442aac1e1ac5e5fe7be52fa47c37af1cb54cbfbe
eab16db856a9eb631454fbacb44adc8fe3a1ff59
external node_modules for SSR (vercel/turbo#3361) Adds resolve plugins (currently only running `after_resolve`, could add `resolve` later) Had to fix `ResolveResult::merge_alternatives` because it merged two external results into `Unresolvable`
[ { "path": "crates/next-core/src/next_server/context.rs", "patch": "@@ -12,7 +12,9 @@ use turbopack_core::environment::{\n use turbopack_ecmascript::EcmascriptInputTransform;\n use turbopack_node::execution_context::ExecutionContextVc;\n \n-use super::transforms::get_next_server_transforms_rules;\n+use super...
2023-02-01T16:26:10
huggingface/transformers
b3b7789cbcce1fa160551d344c03b92c03242c31
c989ddd29450ea691098f0ce97d2465e52004f7c
Better pipeline type hints ✨ (#38049) * image-classification * depth-estimation * zero-shot-image-classification * image-feature-extraction * image-segmentation * mask-generation * object-detection * zero-shot-object-detection * image-to-image * image-text-to-text * image-to-text * text-classification * te...
[ { "path": ".circleci/config.yml", "patch": "@@ -184,6 +184,7 @@ jobs:\n - run: python utils/check_dummies.py\n - run: python utils/check_repo.py\n - run: python utils/check_inits.py\n+ - run: python utils/check_pipeline_typing.py\n - run: python uti...
2025-06-13T12:44:07
golang/go
3d8453e00e3d0a6f23cec06bcad08cf740ec5940
334f2fc045b7d9d846cccba01b3a0dbf70ddb0db
[dev.typeparams] cmd/compile/internal/types2: more consistent handling of predeclared "any" Rather than removing "any" from the universe scope, keep it predeclared but provide a better error message. While at it, remove some unnecessary type assertions. Change-Id: I10603274282ea6afc107f703ab194f32bd334dd1 Reviewed-o...
[ { "path": "src/cmd/compile/internal/types2/decl.go", "patch": "@@ -617,8 +617,9 @@ func (check *Checker) declareTypeParam(index int, name *syntax.Name) *TypeName {\n // The type must be an interface, including the predeclared type \"any\".\n func (check *Checker) boundType(e syntax.Expr) Type {\n \t// The p...
2021-07-15T23:42:25
electron/electron
01fde4029918b6e41ea3e4e7c7436115687219a7
c25dfcb71df553cbdcb6eaa3e5321c076492c3b1
Fix compilation warning on Windows
[ { "path": "brightray/brightray.gypi", "patch": "@@ -275,7 +275,9 @@\n 4355, # 'this' : used in base member initializer list\n 4480, # nonstandard extension used: specifying underlying type for enum\n 4481, # nonstandard extension used: override specifier 'override'\n+ ...
2014-12-10T20:40:39
vercel/next.js
85ec9c5d94b57b19c4dd058313a246d1ae998774
221692b32ea865d8e85a0d31a2805b367e8d6c4b
misc: deprecate custom config from being passed to next/build (2/6) (#45455) This is a private unused option, I'm removing it to simplify my life later in this stack. <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you ...
[ { "path": "packages/next/src/build/index.ts", "patch": "@@ -249,7 +249,6 @@ function pageToRoute(page: string) {\n \n export default async function build(\n dir: string,\n- conf = null,\n reactProductionProfiling = false,\n debugOutput = false,\n runLint = true,\n@@ -271,7 +270,7 @@ export default ...
2023-02-01T16:20:14
nodejs/node
13340d47fcdbc9fa0eaaeee52d2c09338590a797
4d58c08865d7c996bb8cfbe15793443fd425410f
benchmark,doc,lib,src,test,tools: fix typos PR-URL: https://github.com/nodejs/node/pull/23302 Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com> Reviewed-By: Trivikram Kamat <tr...
[ { "path": "benchmark/crypto/get-ciphers.js", "patch": "@@ -10,7 +10,7 @@ const bench = common.createBenchmark(main, {\n function main({ n, v }) {\n const method = require(v).getCiphers;\n var i = 0;\n- // First call to getChipers will dominate the results\n+ // First call to getCiphers will dominate t...
2018-10-07T01:09:29
huggingface/transformers
1031ed51668a5c17a595109852249c3e462f9e44
7f00b325f8140c4964e3e81e6af0e53f5b9a2592
Disable custom MRA kernels for ROCm (#38738) * Disable custom MRA kernels for ROCm * Move platform check code to utils * Ruff * Ruff again * Fix querying HIP version * Revert some changes * Add missing return statement --------- Co-authored-by: ivarflakstad <69173633+ivarflakstad@users.noreply.github.com>
[ { "path": "src/transformers/models/mra/modeling_mra.py", "patch": "@@ -35,7 +35,7 @@\n )\n from ...modeling_utils import PreTrainedModel\n from ...pytorch_utils import apply_chunking_to_forward, find_pruneable_heads_and_indices, prune_linear_layer\n-from ...utils import auto_docstring, is_ninja_available, i...
2025-06-13T10:25:28
golang/go
0941dbca6ae805dd7b5f7871d5811b7b7f14f77f
69728ead871f15cc1fd7e70b67e6768dd1100bae
testing: clarify in docs that TestMain is advanced Beginner and intermediate Go users periodically use TestMain when requirements do not necessitate TestMain (exceeding least-mechanism design). This commit expands package testing's documentation to convey that the TestMain feature itself is somewhat low-level and pote...
[ { "path": "src/testing/testing.go", "patch": "@@ -233,6 +233,8 @@\n //\t\tos.Exit(m.Run())\n //\t}\n //\n+// TestMain is a low-level primitive and should not be necessary for casual\n+// testing needs, where ordinary test functions suffice.\n package testing\n \n import (", "additions": 2, "deletion...
2021-07-14T20:42:31
electron/electron
6624fd9a1b346994b2dc7bd093383b53b613cbde
1cdbb6f18650a6c3c84df0ae8fd62694e6d08f5d
Fix relative links in "src" of <webview>
[ { "path": "atom/renderer/lib/web-view/web-view-attributes.coffee", "patch": "@@ -3,6 +3,12 @@ guestViewInternal = require './guest-view-internal'\n webViewConstants = require './web-view-constants'\n remote = require 'remote'\n \n+# Helper function to resolve url set in attribute.\n+a = document.createEleme...
2014-12-10T18:51:34
vercel/next.js
221692b32ea865d8e85a0d31a2805b367e8d6c4b
f2d95da75ba8b5c7857fe0e3f0cbd23d814f2458
build(cargo): update turbopack to turbopack-230201.1 (#45454) ### Features - https://github.com/vercel/turbo/pull/3514 - https://github.com/vercel/turbo/pull/3530 - https://github.com/vercel/turbo/pull/3510 - https://github.com/vercel/turbo/pull/3497 ### Bug fixes - https://github.com/vercel/turbo/pull/3545 -...
[ { "path": "docs/advanced-features/output-file-tracing.md", "patch": "@@ -100,10 +100,12 @@ module.exports = {\n contextDirectory?: string\n // if there is `process.cwd()` expression in your code, you can set this option to tell `turbotrace` the value of `process.cwd()` while tracing.\n // ...
2023-02-01T15:36:43
huggingface/transformers
5f59a9b43991d7be4859f8285ade3e1674878654
8222a9325d33ea1c31c8654d6292264dae5012b0
Fix configs and doc for the Qwens (#38808) fix doc and configs
[ { "path": "src/transformers/models/qwen2/configuration_qwen2.py", "patch": "@@ -109,7 +109,8 @@ class Qwen2Config(PretrainedConfig):\n sliding_window (`int`, *optional*, defaults to 4096):\n Sliding window attention (SWA) window size. If not specified, will default to `4096`.\n m...
2025-06-13T09:10:55