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 |
|---|---|---|---|---|---|
golang/go | a7043ec95ba77be6110f89e5112d5cad61c577b0 | 0d397d85ea75cd84e5f834a62ff219ecc12891f4 | syscall: do not run TestSyscallAllocations in parallel with other tests
Fixes #70327.
Change-Id: I27ee0d1fbae73fb5c22aa699f4e3110c67bc9ea2
Reviewed-on: https://go-review.googlesource.com/c/go/+/630136
Auto-Submit: Russ Cox <rsc@golang.org>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gservicea... | [
{
"path": "src/syscall/syscall_windows_test.go",
"patch": "@@ -230,8 +230,6 @@ func TestGetStartupInfo(t *testing.T) {\n func TestSyscallAllocations(t *testing.T) {\n \ttestenv.SkipIfOptimizationOff(t)\n \n-\tt.Parallel()\n-\n \t// Test that syscall.SyscallN arguments do not escape.\n \t// The function used... | 2024-11-20T15:53:16 |
ollama/ollama | 4614fafae0ee58af5b9d04ec4b8c2eb3846274da | 4100ed7bdd417ae6d25bf64467fb9df33f3f6525 | ollamarunner: Don't panic for unimplemented features at runtime.
It's ok to fail on startup but we shouldn't panic during runtime
based on user input. Downgrade the panic to a warning. | [
{
"path": "runner/ollamarunner/runner.go",
"patch": "@@ -436,10 +436,9 @@ func (s *Server) processBatch() error {\n \t\t// if done processing the prompt, generate an embedding and return\n \t\tif seq.embeddingOnly {\n \t\t\t// TODO(jessegross): Embedding support\n-\t\t\t// s.removeSequence(i, \"\")\n-\t\t\t... | 2025-03-09T02:48:32 |
vuejs/vue | 24fcf69624a633d43dfc0aa5fa6b93d11de7fad5 | 6d857f5bee275dc98106e3b2cbc7722f5ec0cfc0 | fix(types): type VNodeChildren should allow type number (#13067)
close #12973 | [
{
"path": "types/vnode.d.ts",
"patch": "@@ -22,6 +22,7 @@ type ScopedSlotReturnValue =\n | VNode\n | string\n | boolean\n+ | number\n | null\n | undefined\n | ScopedSlotReturnArray\n@@ -37,6 +38,7 @@ export type VNodeChildren =\n | [ScopedSlot]\n | string\n | boolean\n+ | number\n | nu... | 2023-12-07T05:59:43 |
electron/electron | c6d061c2d46199508bd361545fc2a436e9344a3c | d657cd8ed66aebe303caa26d620081249300556c | Update config.py (#32666)
* Fix missing comma | [
{
"path": "script/lib/config.py",
"patch": "@@ -20,7 +20,7 @@\n 'libEGL.so',\n 'libGLESv2.so',\n 'libffmpeg.so',\n- 'libvk_swiftshader.so'\n+ 'libvk_swiftshader.so',\n 'swiftshader/libEGL.so',\n 'swiftshader/libGLESv2.so',\n ]",
"additions": 1,
"deletions": 1,
"language": "Python"
... | 2022-01-31T09:57:52 |
golang/go | a311754d5411c742211a4b56ae3eed00d20898c9 | 5d2cc5662027f6464db2781c88b4f3bb64f58136 | cmd/internal/testdir: print stderr if go list fails while gathering stdlib import config
If cmd/compile is in an unhappy state, the testdir test can
fail with an unhelpful 'exit code 1' log message if
'go list' fails while gathering stdlib import config
When running individual files, such as:
go test cmd/internal/te... | [
{
"path": "src/cmd/internal/testdir/testdir_test.go",
"patch": "@@ -215,8 +215,11 @@ var stdlibImportcfg = sync.OnceValue(func() string {\n \tcmd := exec.Command(goTool, \"list\", \"-export\", \"-f\", \"{{if .Export}}packagefile {{.ImportPath}}={{.Export}}{{end}}\", \"std\")\n \tcmd.Env = append(os.Environ(... | 2023-06-21T18:42:03 |
ggml-org/llama.cpp | c1258830b28dddc65ac3aa3452214553fdece30c | 922b90e5672c869614baf6c617ed1069bab9a8e8 | ggml webgpu: ops support for qwen3.5 (SET, TRI_SOLVE, SSM_CONV, GATED_DELTA_NET) + GET_ROWS optimization (#20687)
* Implement l2_norm, set, tri
* Add DIAG/SOLVE_TRI
* Add SSM_CONV
* Better get_rows and gated_delta_net to support qwen3.5
* Clean up, update ops.md
* Fix binding_index type for wasm
* Fix read write... | [
{
"path": "docs/ops.md",
"patch": "@@ -47,7 +47,7 @@ Legend:\n | FILL | ❌ | ❌ | ✅ | ✅ | ✅ | ❌ | ❌ | ✅ | ✅ | ❌ | ❌ |\n | FLASH_ATTN_EXT | ❌ | 🟡 | ✅ | 🟡 | 🟡 | 🟡 | 🟡 | 🟡 | 🟡 | ❌ | ❌ |\n | FLOOR | ❌ | ❌ | ✅ | 🟡 | ❌ | ❌ | 🟡 | 🟡 | ... | 2026-03-19T15:45:28 |
huggingface/transformers | 257a602f8d9f5b2df2ba5b63c1b276e99388b5a3 | 0c4fe5c6cdf9c923e0e5fccd8dcf35fb587588cf | fix: AttributeError for Qwen3_omni_moe (#43593)
* correct-fix-through-modular
* fix-duplicate | [
{
"path": "src/transformers/models/qwen3_omni_moe/configuration_qwen3_omni_moe.py",
"patch": "@@ -572,6 +572,7 @@ def __init__(\n rope_parameters: int | None = None,\n attention_bias: bool | None = False,\n sliding_window: int | None = None,\n+ max_window_layers: int | None = ... | 2026-02-04T10:44:29 |
ollama/ollama | 0daaaef8c99d94853eb12e897b2c15e0743a2575 | 98272fbd58699366de72b5111d4f8fa79d9f71a4 | ollamarunner: Quiet debug logging and panic on unimplemented features
Debug logging of every token has previously caused test timeouts
on slower machines. | [
{
"path": "model/process_text.go",
"patch": "@@ -177,7 +177,6 @@ func (bpe BytePairEncoding) Encode(s string, addSpecial bool) ([]int32, error) {\n \tfor _, frag := range fragments {\n \t\tif len(frag.ids) > 0 {\n \t\t\tids = append(ids, frag.ids...)\n-\t\t\tslog.Debug(\"encoded\", \"text\", frag.value, \"i... | 2025-03-07T23:14:22 |
vuejs/vue | 6d857f5bee275dc98106e3b2cbc7722f5ec0cfc0 | a174c29dab2cf655b06f7870e0ac5a78ef35ec8a | fix(watch): new property addition should trigger deep watcher with getter
close #12967
close #12972 | [
{
"path": "src/v3/apiWatch.ts",
"patch": "@@ -185,8 +185,11 @@ function doWatch(\n }\n \n const instance = currentInstance\n- const call = (fn: Function, type: string, args: any[] | null = null) =>\n- invokeWithErrorHandling(fn, null, args, instance, type)\n+ const call = (fn: Function, type: strin... | 2023-12-06T16:13:31 |
electron/electron | 3768a7b25f3db505a25582706de58e7f81121565 | 86f8faea6bcb7f8c98f8b81f1a048bbe06daa3fe | fix: css transparent background being lost (#32593) | [
{
"path": "shell/browser/api/electron_api_browser_window.cc",
"patch": "@@ -373,8 +373,11 @@ void BrowserWindow::SetBackgroundColor(const std::string& color_name) {\n SkColor color = ParseHexColor(color_name);\n web_contents()->SetPageBaseBackgroundColor(color);\n auto* rwhv = web_contents()->GetRende... | 2022-01-27T14:56:35 |
ggml-org/llama.cpp | f071ce67c983649e8750b03e5ea66deced34d757 | 4065c1a3a62ae0962d682e775e7f2963d8c9bf5c | ci : add action for finding duplicate issues (#20756)
* ci : add action for finding duplicates issues
* cont : gen info
* cont : formatting
* cont : fix
* cont : instructions
* cont : bump checkout action
Co-authored-by: Sigbjørn Skjæret <sigbjorn.skjaeret@scala.com>
---------
Co-authored-by: Sigbjørn Skjæret ... | [
{
"path": ".github/workflows/ai-issues.yml",
"patch": "@@ -0,0 +1,71 @@\n+name: AI review (issues)\n+\n+on:\n+ issues:\n+ types: [opened]\n+\n+jobs:\n+ find-duplicates:\n+ if: github.event.action == 'opened'\n+ runs-on: [self-hosted, opencode]\n+\n+ permissions:\n+ contents: read\n+ ... | 2026-03-19T14:17:37 |
golang/go | 5d2cc5662027f6464db2781c88b4f3bb64f58136 | 5e1726b71a6485f5744db1c5533c847fa63163fd | cmd/internal/testdir: update errors when filepaths include 'C:\'
Currently on Windows, commands like:
go test cmd/internal/testdir -run=foo -update_errors
will fail to update the errors because the parsing is
currently confused by the ':' in filepaths that
start with 'C:\', and wrongly thinks that ':' marks
the end... | [
{
"path": "src/cmd/internal/testdir/testdir_test.go",
"patch": "@@ -1276,9 +1276,16 @@ func (test) updateErrors(out, file string) {\n \t// Parse new errors.\n \terrors := make(map[int]map[string]bool)\n \ttmpRe := regexp.MustCompile(`autotmp_\\d+`)\n+\tfileRe := regexp.MustCompile(`(\\.go):\\d+:`)\n \tfor _... | 2023-08-18T19:24:39 |
vuejs/vue | a174c29dab2cf655b06f7870e0ac5a78ef35ec8a | f5ef882a781b8a62c9ca00e95006d07636567c8e | fix(types): fix shallowRef's return type (#12979)
close #12978 | [
{
"path": "src/v3/reactivity/ref.ts",
"patch": "@@ -40,9 +40,7 @@ export function isRef(r: any): r is Ref {\n return !!(r && (r as Ref).__v_isRef === true)\n }\n \n-export function ref<T extends object>(\n- value: T\n-): [T] extends [Ref] ? T : Ref<UnwrapRef<T>>\n+export function ref<T extends Ref>(value... | 2023-12-06T15:51:56 |
electron/electron | 20ed5701e9786eb423197646f2a83462f5077c88 | 16fcad348849816951c33f2cbb8c9cfb2f4c080b | docs: update context bridge docs about Promises and Errors (#32533)
* Update context bridge docs about Promises
From my testing it doesn't remove Promises in nested objects,
also according to the test suite it does not:
https://github.com/electron/electron/blob/80577a4f08824c031ad020b8f4e3c5975ff8081a/spec-main/a... | [
{
"path": "docs/api/context-bridge.md",
"patch": "@@ -102,8 +102,8 @@ has been included below for completeness:\n | `boolean` | Simple | ✅ | ✅ | N/A |\n | `Object` | Complex | ✅ | ✅ | Keys must be supported using only \"Simple\" types in this table. Values must be supported in this table. Prototype modifi... | 2022-01-27T11:23:40 |
ggml-org/llama.cpp | 4065c1a3a62ae0962d682e775e7f2963d8c9bf5c | 1e645345702154ba4813d3d9bbdbd97718de82c0 | Server becomes the source of truth for sampling parameter defaults (#20558)
* webui: make server the source of truth for sampling defaults
* webui: fix Custom badge for sampling parameters
* webui: log user overrides after server sync
* chore: update webui build output
* fix: Default values for sampling settings c... | [
{
"path": "tools/server/webui/src/lib/components/app/chat/ChatSettings/ChatSettingsFields.svelte",
"patch": "@@ -5,9 +5,12 @@\n \timport Label from '$lib/components/ui/label/label.svelte';\n \timport * as Select from '$lib/components/ui/select';\n \timport { Textarea } from '$lib/components/ui/textarea';\n-... | 2026-03-19T12:20:39 |
huggingface/transformers | 0c4fe5c6cdf9c923e0e5fccd8dcf35fb587588cf | 480ed54e80ea09530ed8820028afc8d0b0b17b18 | 🚨 Delete duplicate code in backbone utils (#43323)
* draft
* first make it work, then make pretty
* :eyes:
* unused attributes?
* everythgin we need is in the config!
* push
* update
* update
* fixes
* forgot
* push more changes
* move it out from mxin
* last test fixes i hope
* delete backbone utils fro... | [
{
"path": "docs/source/en/backbones.md",
"patch": "@@ -36,8 +36,8 @@ This guide describes the backbone class, backbones from the [timm](https://hf.co\n \n There are two backbone classes.\n \n-- [`~transformers.utils.BackboneMixin`] allows you to load a backbone and includes functions for extracting the feat... | 2026-02-04T10:37:56 |
golang/go | 7e1af3bf741862deb91f048a92e91d3b31301f90 | 931700a95e2463c75b62e3c232ef47207921ed5d | crypto/internal/fips: handle the one possible PCT failure
Since ECDSA private keys are irredeemably malleable, an application
could construct one where the public key doesn't match the private key.
They'd be very much on their own, but crashing the program feels a bit
harsh.
Add this one to the list of issues caused ... | [
{
"path": "src/crypto/internal/fips/cast.go",
"patch": "@@ -16,26 +16,24 @@ import (\n //go:linkname fatal crypto/internal/fips.fatal\n func fatal(string)\n \n-// failfipscast is a GODEBUG key allowing simulation of a Cryptographic Algorithm\n-// Self-Test (CAST) failure, as required during FIPS 140-3 funct... | 2024-11-17T17:38:29 |
electron/electron | 16fcad348849816951c33f2cbb8c9cfb2f4c080b | 7caa88c46f70d9600bd4f78fb902374e72a2a4bf | fix: maxWidth not being respected (#32628) | [
{
"path": "shell/browser/native_window.cc",
"patch": "@@ -161,16 +161,16 @@ void NativeWindow::InitFromOptions(const gin_helper::Dictionary& options) {\n // On Linux and Window we may already have maximum size defined.\n extensions::SizeConstraints size_constraints(\n use_content_size ? GetContent... | 2022-01-26T22:00:17 |
vuejs/vue | f5ef882a781b8a62c9ca00e95006d07636567c8e | d6468c4c383184acd66f3c9091005e83836a43f3 | fix(style): always set new styles
close #12901
close #12946 | [
{
"path": "src/platforms/web/runtime/modules/style.ts",
"patch": "@@ -91,10 +91,8 @@ function updateStyle(oldVnode: VNodeWithData, vnode: VNodeWithData) {\n }\n for (name in newStyle) {\n cur = newStyle[name]\n- if (cur !== oldStyle[name]) {\n- // ie9 setting to null has no effect, must use ... | 2023-12-06T15:17:02 |
ggml-org/llama.cpp | b486c17b3e8bee4340b4095075cefc8415d92068 | 1b9bbaa35716978dc38eb838bfe1af094ac7c1d4 | convert : support is_causal hyperparameter (#20746)
* convert : support is_causal hyperparameter
Check for the `is_causal` attribute in the Hugging Face model configuration and include it in the GGUF metadata.
* Update convert_hf_to_gguf.py
Co-authored-by: Sigbjørn Skjæret <sigbjorn.skjaeret@scala.com>
* style: fi... | [
{
"path": "convert_hf_to_gguf.py",
"patch": "@@ -1062,6 +1062,10 @@ def set_gguf_parameters(self):\n self.gguf_writer.add_head_count_kv(n_head_kv)\n logger.info(f\"gguf: key-value head count = {n_head_kv}\")\n \n+ if self.hparams.get(\"is_causal\") is False:\n+ self... | 2026-03-19T10:41:11 |
huggingface/transformers | 379ec6b9529becf0a464fa58ee783b6bdef4034a | 71ade562dfa215b9db3c5f36bcba0414e3e193d9 | Add EXAONE-MoE implementations (#43080)
* Add EXAONE-MoE implementations
Co-authored-by: Junwon Hwang <nuclear1221@gmail.com>
Co-authored-by: Kibong Choi <rlqhd26@naver.com>
* Add documentations of EXAONE-MoE
* Fix EXAONE configs
* Change model prefix into ExaoneMoe
* Remove unnecessary classes and update EXAONE ... | [
{
"path": "docs/source/en/_toctree.yml",
"patch": "@@ -509,6 +509,8 @@\n title: ESM\n - local: model_doc/exaone4\n title: EXAONE-4.0\n+ - local: model_doc/exaone_moe\n+ title: EXAONE-MoE\n - local: model_doc/falcon\n title: Falcon\n - local: model_doc/fa... | 2026-02-03T17:27:35 |
golang/go | 9776d028f4b99b9a935dae9f63f32871b77c49af | 5321fc265cc66ee62be5374a7f6095a842c38281 | crypto/ecdsa: implement deterministic and hedged signatures
For the future, some test vectors we should generate and then share
through Wycheproof or CCTV:
- A private key with a leading zero byte.
- A hash longer than the modulus.
- A hash longer than the P-521 modulus by a few bits.
- Reductions happening in has... | [
{
"path": "src/crypto/ecdsa/ecdsa.go",
"patch": "@@ -16,8 +16,6 @@ package ecdsa\n \n import (\n \t\"crypto\"\n-\t\"crypto/aes\"\n-\t\"crypto/cipher\"\n \t\"crypto/ecdh\"\n \t\"crypto/elliptic\"\n \t\"crypto/internal/boring\"\n@@ -131,14 +129,24 @@ func bigIntEqual(a, b *big.Int) bool {\n \treturn subtle.Co... | 2024-11-16T22:45:05 |
ollama/ollama | 4289c74359ad7cac0d4350c22e6af3f92c5f091c | a7e63b82be6dfcd8011e0b45f19658be71c0e2b9 | llama: fix kv loading on snowflake-arctic-embed models (#9536) | [
{
"path": "llama/llama.cpp/src/llama-vocab.cpp",
"patch": "@@ -1443,7 +1443,7 @@ void llama_vocab::impl::load(llama_model_loader & ml, const LLM_KV & kv) {\n \n const int precompiled_charsmap_keyidx = gguf_find_key(ctx, kv(LLM_KV_TOKENIZER_PRECOMPILED_CHARSMAP).c_str());\n if (precom... | 2025-03-07T17:25:34 |
vuejs/vue | 25f97a5033187372e7b8c591c79336197ee5c833 | 10c2a87c7038f2f80df23044c48a130bea253bf8 | fix(compiler-sfc): fix rewriteDefault edge cases
close #13060
close #12892
close #12906 | [
{
"path": "packages/compiler-sfc/src/compileScript.ts",
"patch": "@@ -1575,7 +1575,7 @@ function extractRuntimeEmits(\n }\n \n function extractEventNames(\n- eventName: Identifier | RestElement,\n+ eventName: ArrayPattern | Identifier | ObjectPattern | RestElement,\n emits: Set<string>\n ) {\n if (",
... | 2023-12-06T09:25:12 |
ggml-org/llama.cpp | 1b9bbaa35716978dc38eb838bfe1af094ac7c1d4 | 07feeaa92e61d55605ca0b2be0247daeb26790b5 | common : fix gpt-oss content removal (#20745) | [
{
"path": "common/chat.cpp",
"patch": "@@ -936,7 +936,9 @@ static common_chat_params common_chat_params_init_gpt_oss(const common_chat_temp\n for (auto msg : inputs.messages) {\n if (msg.contains(\"reasoning_content\") && msg.at(\"reasoning_content\").is_string()) {\n msg[\"thinking\... | 2026-03-19T10:40:39 |
huggingface/transformers | 01e860ebc6b827c88e2d75e70864d1b618364653 | 71956a81e3aff08e6c726e03ff457c489aa2eb65 | fix norm_eps dtype (#43669)
* fix norm_eps dtype
* fix norm_eps dtype | [
{
"path": "src/transformers/models/modernbert/configuration_modernbert.py",
"patch": "@@ -155,7 +155,7 @@ def __init__(\n max_position_embeddings: int | None = 8192,\n initializer_range: float | None = 0.02,\n initializer_cutoff_factor: float | None = 2.0,\n- norm_eps: int | N... | 2026-02-03T14:33:10 |
electron/electron | 7caa88c46f70d9600bd4f78fb902374e72a2a4bf | cabad3538372acd77b4f1f03d4dc218d5e9398ba | fix: Add support for Wayland window decorations (#29618)
Signed-off-by: Ryan Gonzalez <ryan.gonzalez@collabora.com>
Co-authored-by: Jeremy Rose <nornagon@nornagon.net> | [
{
"path": "filenames.gni",
"patch": "@@ -32,10 +32,13 @@ filenames = {\n \"shell/browser/notifications/linux/notification_presenter_linux.cc\",\n \"shell/browser/notifications/linux/notification_presenter_linux.h\",\n \"shell/browser/relauncher_linux.cc\",\n+ \"shell/browser/ui/electron_deskt... | 2022-01-26T21:59:09 |
golang/go | 566cf1c1083b26d4a15b94213c21142ecd9a8ca9 | 2f35e1375e6706938d5a307f11388cad92afe288 | crypto/ecdh: move implementation to crypto/internal/fips/ecdh
This intentionally gives up on the property of not computing the public
key until requested. It was nice, but it was making the code too
complex. The average use case is to call PublicKey immediately after
GenerateKey anyway.
Added support in the module fo... | [
{
"path": "src/crypto/ecdh/ecdh.go",
"patch": "@@ -12,7 +12,6 @@ import (\n \t\"crypto/subtle\"\n \t\"errors\"\n \t\"io\"\n-\t\"sync\"\n )\n \n type Curve interface {\n@@ -50,14 +49,6 @@ type Curve interface {\n \t// The private method also allow us to expand the ECDH interface with more\n \t// methods in t... | 2024-11-14T21:02:02 |
ollama/ollama | a7e63b82be6dfcd8011e0b45f19658be71c0e2b9 | b70fc4d51e76fc023afcd005c467d415c0c62750 | ollamarunner: Improve multimodal input handling
Various vision models have different requirements for how they
receive their inputs. For example:
- Mllama wants images together with text and the image embeddings
don't themselves have positions or get stored in the main KV cache
- Llava-style models feed in embedd... | [
{
"path": "model/model.go",
"patch": "@@ -3,7 +3,6 @@ package model\n import (\n \t\"errors\"\n \t\"fmt\"\n-\t\"image\"\n \t_ \"image/jpeg\"\n \t_ \"image/png\"\n \t\"log/slog\"\n@@ -22,14 +21,40 @@ import (\n \t_ \"github.com/ollama/ollama/ml/backend\"\n )\n \n+// Input represents one token in the input st... | 2025-03-05T20:08:06 |
vuejs/vue | ae3e4b1c706b8d61a4a312ca5d23441df021b4b4 | de0b97b3eadae120eda505b45df2de2115dcb6f0 | fix(utils): unwrap refs when stringifying values in template
close #12884
close #12888 | [
{
"path": "src/shared/util.ts",
"patch": "@@ -90,10 +90,18 @@ export function toString(val: any): string {\n return val == null\n ? ''\n : Array.isArray(val) || (isPlainObject(val) && val.toString === _toString)\n- ? JSON.stringify(val, null, 2)\n+ ? JSON.stringify(val, replacer, 2)\n : ... | 2023-12-06T08:38:16 |
huggingface/transformers | 71956a81e3aff08e6c726e03ff457c489aa2eb65 | affcf45994a8b356f96c2a58e88ed8d679e46539 | Llava onevision: output align for tests and add `image_sizes` input param (#43678)
* unify expected output for llava_onevision model
Signed-off-by: Liu, Kaixuan <kaixuan.liu@intel.com>
* add `image_sizes` in test common
Signed-off-by: Liu, Kaixuan <kaixuan.liu@intel.com>
* change back to original code for lighton_... | [
{
"path": "tests/models/lighton_ocr/test_modeling_lighton_ocr.py",
"patch": "@@ -244,15 +244,11 @@ def _prepare_for_class(self, inputs_dict, model_class, return_labels=False):\n \"\"\"\n inputs_dict = super()._prepare_for_class(inputs_dict, model_class, return_labels=return_labels)\n \n- ... | 2026-02-03T14:30:05 |
electron/electron | 8ec81c143762d2a5712eb95653051d7f11b5bc00 | 7f517ba878cb8d0455f39f1baffc924979651d6d | fix webRequest.onBeforeSendHeaders' attributes (#32474)
Co-authored-by: Wayne Huang <zjason4202@gmail.com> | [
{
"path": "docs/api/web-request.md",
"patch": "@@ -98,6 +98,7 @@ Some examples of valid `urls`:\n * `resourceType` string - Can be `mainFrame`, `subFrame`, `stylesheet`, `script`, `image`, `font`, `object`, `xhr`, `ping`, `cspReport`, `media`, `webSocket` or `other`.\n * `referrer` string\n * `t... | 2022-01-26T16:41:54 |
golang/go | 349d7d92bb02e1132f0920acefd70db670ba9a24 | 382b20a09e90d3d96003bd3d22418d79d2e9d2d3 | crypto/internal/fips: move most tests to crypto/internal/fipstest
As explained in fips_test.go, we generally want to minimize tests inside
the FIPS module. When there is a relevant calling package, the tests
should go there, otherwise in fipstest.
This required redoing a bit the CAST failure tests, but the new versio... | [
{
"path": "src/crypto/internal/fips/cast.go",
"patch": "@@ -21,31 +21,25 @@ func fatal(string)\n // The value is a substring of the target CAST name.\n var failfipscast = godebug.New(\"#failfipscast\")\n \n-// testingOnlyCASTHook is called during tests with each CAST name.\n-var testingOnlyCASTHook func(str... | 2024-11-14T11:41:47 |
vuejs/vue | de0b97b3eadae120eda505b45df2de2115dcb6f0 | 45d6ad6645e960a3ee52ad9667520a1625f10dfd | fix(types): fix type augmentation and compiler-sfc types w/moduleResolution: bundler (#13107)
close #13106 | [
{
"path": "package.json",
"patch": "@@ -18,19 +18,20 @@\n ],\n \"exports\": {\n \".\": {\n+ \"types\": \"./types/index.d.ts\",\n \"import\": {\n \"node\": \"./dist/vue.runtime.mjs\",\n \"default\": \"./dist/vue.runtime.esm.js\"\n },\n- \"require\": \"./dist/vue.... | 2023-12-06T07:52:18 |
ollama/ollama | ba7d31240eb0b44064a8220a8a6143307b1459ef | d25efe395415353152feafb9b766a8a7a1496517 | fix: own lib/ollama directory
expand backend loading error handling to catch more problems and log
them instead of panicing | [
{
"path": "llama/patches/0015-try-catch-backend-load.patch",
"patch": "@@ -1,69 +0,0 @@\n-From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001\n-From: Michael Yang <mxyng@pm.me>\n-Date: Tue, 11 Feb 2025 14:06:36 -0800\n-Subject: [PATCH] try/catch backend load\n-\n----\n- ggml/src/ggml-back... | 2025-03-03T19:05:21 |
huggingface/transformers | affcf45994a8b356f96c2a58e88ed8d679e46539 | ab56d8a31ce6b4b0b69b50fd54315fb473903a6a | Fix CLIPOutput attentions not being returned (#43657)
* Fix CLIPOutput attentions not being returned
Fixes #43618
CLIPVisionTransformer and CLIPTextTransformer were not passing through
the 'hidden_states' and 'attentions' from the encoder outputs to the
BaseModelOutputWithPooling return value.
This regression in v5... | [
{
"path": "src/transformers/models/clip/modeling_clip.py",
"patch": "@@ -587,6 +587,8 @@ def forward(\n return BaseModelOutputWithPooling(\n last_hidden_state=last_hidden_state,\n pooler_output=pooled_output,\n+ hidden_states=encoder_outputs.hidden_states,\n+ ... | 2026-02-03T13:51:21 |
golang/go | 9935dd99da40eea305685a32dbaebc4b9273593b | d13e6d0b089b72d666d0dd46f4965660ab10b712 | cmd/go: add basic GOFIPS140 support
GOFIPS140 does two things: (1) control whether to build binaries that
run in FIPS-140 mode by default, and (2) control which version of the
crypto/internal/fips source tree to use during a build.
This CL implements part (1). It recognizes the GOFIPS140 settings
"off" and "latest" a... | [
{
"path": "src/cmd/go/internal/cfg/cfg.go",
"patch": "@@ -439,6 +439,7 @@ var (\n \tGORISCV64, goRISCV64Changed = EnvOrAndChanged(\"GORISCV64\", buildcfg.DefaultGORISCV64)\n \tGOWASM, goWASMChanged = EnvOrAndChanged(\"GOWASM\", fmt.Sprint(buildcfg.GOWASM))\n \n+\tGOFIPS140, GOFIPS140Changed = EnvOrAnd... | 2024-11-14T19:09:54 |
vuejs/vue | 0ad8e8d94f3a3bf4429f25850c85a6bbb2b81364 | d30f6fd25f90973a84fadb43eef75a54c4b42ea2 | fix(shallowReactive): should track value if already reactive when set in shallowReactive | [
{
"path": "src/core/instance/state.ts",
"patch": "@@ -110,10 +110,10 @@ function initProps(vm: Component, propsOptions: Object) {\n )\n }\n },\n- true\n+ true /* shallow */\n )\n } else {\n- defineReactive(props, key, value, undefined, true)\n+ ... | 2023-12-06T07:45:15 |
electron/electron | 335f24b0d00917380a6e58436b7f941db0f1fc50 | 1cf36822e34a8344367849e40bf056ceb3331db5 | fix: webContents.setZoomFactor crash (#32604) | [
{
"path": "shell/browser/web_view_guest_delegate.cc",
"patch": "@@ -81,7 +81,7 @@ void WebViewGuestDelegate::OnZoomLevelChanged(\n api_web_contents_->GetZoomController()->SetZoomLevel(level);\n }\n // Change the default zoom factor to match the embedders' new zoom level.\n- double zoom_fact... | 2022-01-25T20:54:48 |
ollama/ollama | 657685e85d1a187c031ad7722b7395c48d8947b0 | a14912858e71392e9240c87e7e162d5d203dcb4e | fix: replace deprecated functions | [
{
"path": "llama/llama.go",
"patch": "@@ -262,7 +262,7 @@ func LoadModelFromFile(modelPath string, params ModelParams) (*Model, error) {\n \t\tcparams.progress_callback_user_data = unsafe.Pointer(&handle)\n \t}\n \n-\tm := Model{c: C.llama_load_model_from_file(C.CString(modelPath), cparams)}\n+\tm := Model{... | 2025-02-28T19:50:01 |
ggml-org/llama.cpp | 3fee84e15659a2b4677200ddd1cca482839bf904 | 811397745e161563f118944ae6fab61ebcd1707e | cmake : fix build warning when kleidiai is enabled (#20457)
* cmake : fix build warning when kleidiai is enabled
* remove LLAMA_ARG_THREADS from KleidiAI backend | [
{
"path": "ggml/src/ggml-cpu/CMakeLists.txt",
"patch": "@@ -570,24 +570,34 @@ function(ggml_add_cpu_backend_variant_impl tag_name)\n set(KLEIDIAI_DOWNLOAD_URL \"https://github.com/ARM-software/kleidiai/archive/refs/tags/${KLEIDIAI_COMMIT_TAG}.tar.gz\")\n set(KLEIDIAI_ARCHIVE_MD5 \"540490375... | 2026-03-19T08:14:48 |
huggingface/transformers | ab56d8a31ce6b4b0b69b50fd54315fb473903a6a | c20ba1948898c397127088118d84453550541e12 | [`Attn`] Fixup interface usage after refactor (#43706)
* fix
* repo fix
* make it one copy | [
{
"path": "src/transformers/models/conditional_detr/modeling_conditional_detr.py",
"patch": "@@ -490,9 +490,9 @@ def forward(\n key_states = self.k_proj(query_key_input).view(hidden_shape).transpose(1, 2)\n value_states = self.v_proj(hidden_states).view(hidden_shape).transpose(1, 2)\n \n- ... | 2026-02-03T13:45:15 |
vuejs/vue | d30f6fd25f90973a84fadb43eef75a54c4b42ea2 | 08382f008016c3b3b93f84594266f2e191fee91d | test: fix tests | [
{
"path": "packages/compiler-sfc/test/__snapshots__/compileScript.spec.ts.snap",
"patch": "@@ -93,7 +93,7 @@ exports[`SFC compile <script setup> > <script> and <script setup> co-usage > scr\n \"import { defineComponent as _defineComponent } from 'vue'\n \n const __default__ = {\n- name: \\\\\"t... | 2023-12-06T07:21:00 |
electron/electron | 1cf36822e34a8344367849e40bf056ceb3331db5 | a0b7e30fe7404e939f4cf270ea76693f275ee03e | fix: make window without rounded corners closable (#32597) | [
{
"path": "shell/browser/native_window_mac.mm",
"patch": "@@ -295,12 +295,12 @@ void ViewDidMoveToSuperview(NSView* self, SEL _cmd) {\n \n NSUInteger styleMask = NSWindowStyleMaskTitled;\n \n- // The NSWindowStyleMaskFullSizeContentView style removes rounded corners\n- // for framless window.\n+ // Rem... | 2022-01-25T14:51:53 |
golang/go | 253a9933d181ce5e57de81f56d7e50565c423f0f | 2e607475903b9cceacfac6bc900ed8d7e42d4231 | internal/runtime/maps: use simpler calculation for slot element
This reduces the adds required at the return point from 3 to 1.
(The multiply inside g.elem() does get CSE'd with the one inside
g.key(), but the rest of the adds don't.)
Instead, compute the element as just a fixed offset from the key.
Change-Id: Ia4d7... | [
{
"path": "src/internal/runtime/maps/runtime_fast32_swiss.go",
"patch": "@@ -66,7 +66,7 @@ func runtime_mapaccess1_fast32(typ *abi.SwissMapType, m *Map, key uint32) unsafe\n \n \t\t\tslotKey := g.key(typ, i)\n \t\t\tif key == *(*uint32)(slotKey) {\n-\t\t\t\tslotElem := g.elem(typ, i)\n+\t\t\t\tslotElem := u... | 2024-11-19T00:12:48 |
ollama/ollama | eed11ded30f1fa386632ed8922a4349fe5140096 | b42aba40ed21862532b9d195a28915a1fca88560 | server/.../safetensors: fix offsets and include all model parts (#9427)
Also, require the -as flag to be set when importing a model. This
prevents the confusing error message "invalid name".
Also, allow short names to be used when importing a model and
auto-complete the name with the default mask. | [
{
"path": "server/internal/client/ollama/registry.go",
"patch": "@@ -147,14 +147,23 @@ func (e *Error) UnmarshalJSON(b []byte) error {\n \treturn nil\n }\n \n-var defaultName = func() names.Name {\n-\tn := names.Parse(\"registry.ollama.ai/library/_:latest\")\n+const DefaultMask = \"registry.ollama.ai/librar... | 2025-02-28T21:08:10 |
ggml-org/llama.cpp | 7f2cbd9a4df77a2ce10f31d69f07d4fb75eabc07 | 509a31d00f87804a466dee983a30ce29aa0441b1 | CANN: handle in-place ROPE on non-contiguous f32 tensors (#20274)
RotaryPositionEmbedding on CANN fails when src and dst share the same
non-contiguous buffer (inplace + view), because the operator overwrites
source data before it is fully read.
Add a branch that detects this case and uses contiguous temporary
buffers... | [
{
"path": "ggml/src/ggml-cann/aclnn_ops.cpp",
"patch": "@@ -2943,6 +2943,27 @@ void ggml_cann_rope(ggml_backend_cann_context & ctx, ggml_tensor * dst) {\n // Rotate full tensor (no tail), using trans tensors\n GGML_CANN_CALL_ACLNN_OP(ctx, RotaryPositionEmbedding, acl_src_trans_tensor.get(), ... | 2026-03-19T06:05:01 |
huggingface/transformers | c20ba1948898c397127088118d84453550541e12 | 432ddfadcdeb5c0b0d597fed6c1edc30efb511b6 | Fix model/processor mismatch in SigLIP2 quantization example (#43652)
The quantization example used mismatched model and processor:
- Model: google/siglip2-large-patch16-512
- Processor: google/siglip2-base-patch16-224
This caused issues because the processor configuration didn't match
the model being used. Fixed by ... | [
{
"path": "docs/source/en/model_doc/siglip2.md",
"patch": "@@ -125,7 +125,7 @@ from PIL import Image\n from transformers import AutoProcessor, AutoModel, BitsAndBytesConfig\n \n bnb_config = BitsAndBytesConfig(load_in_4bit=True)\n-model = AutoModel.from_pretrained(\"google/siglip2-large-patch16-512\", quant... | 2026-02-03T13:37:19 |
vuejs/vue | 08382f008016c3b3b93f84594266f2e191fee91d | 947993f7e8e445b9032dd59d7f484593c3174452 | fix(props): should not unwrap props that are raw refs
close #12930 | [
{
"path": "src/core/instance/state.ts",
"patch": "@@ -95,19 +95,25 @@ function initProps(vm: Component, propsOptions: Object) {\n vm\n )\n }\n- defineReactive(props, key, value, () => {\n- if (!isRoot && !isUpdatingChildComponent) {\n- warn(\n- `Avoid ... | 2023-12-06T07:10:49 |
electron/electron | 2f0d5651a9d190e019c7d4003a97624054e09618 | 2fe5d0e1e83a94d647b87a4ae803f738e54402e1 | feat: add WCO height option (#31222)
* feat: add WCO height option
* add docs and mac functionality
* add macOS functionality and height lowerbound
* Update docs/api/browser-window.md
Co-authored-by: John Kleinschmidt <jkleinsc@electronjs.org>
* update macOS functionality
* add chromium related notes... | [
{
"path": "docs/api/browser-window.md",
"patch": "@@ -388,9 +388,10 @@ It creates a new `BrowserWindow` with native properties as set by the `options`.\n contain the layout of the document—without requiring scrolling. Enabling\n this will cause the `preferred-size-changed` event to be emitted on... | 2022-01-24T22:09:21 |
ollama/ollama | 41dc280491a7054876e826dac0eff66836d53ae8 | 53d2990d9b60fae08437e98141eca5d9e393deaa | server/internal/registry: implement CloseNotify and Flush (for now) (#9402)
This fixes panics introduced in 2412adf42b8380748ac79476e273f5b337c3b977
when Gin ungracefully assumes that the http.ResponseWriter implements
http.CloseNotifier and http.Flusher, which our new statusCodeRecorder
does not. This is a temporary ... | [
{
"path": "server/internal/registry/server.go",
"patch": "@@ -72,6 +72,26 @@ func (r *statusCodeRecorder) WriteHeader(status int) {\n \tr.ResponseWriter.WriteHeader(status)\n }\n \n+var (\n+\t_ http.ResponseWriter = (*statusCodeRecorder)(nil)\n+\t_ http.CloseNotifier = (*statusCodeRecorder)(nil)\n+\t_ http... | 2025-02-27T22:00:37 |
golang/go | 2e607475903b9cceacfac6bc900ed8d7e42d4231 | 8f9a420a7219674413927b35c2c80c25c200919d | crypto/internal/fips/aes/gcm: skip TestAllocations on PPC64
TestAllocations is failing on PPC64 causing all PPC64 CI to fail.
Skip the test until it can be debugged.
For #70448
Change-Id: Ic18e402f4af5939a90eba2e1f2b182699013ed55
Reviewed-on: https://go-review.googlesource.com/c/go/+/629697
Reviewed-by: Filippo Val... | [
{
"path": "src/crypto/internal/fips/aes/gcm/ctrkdf_test.go",
"patch": "@@ -12,10 +12,14 @@ import (\n \t\"crypto/internal/fips/drbg\"\n \t\"crypto/internal/fips/sha3\"\n \t\"encoding/hex\"\n+\t\"runtime\"\n \t\"testing\"\n )\n \n func TestAllocations(t *testing.T) {\n+\tif runtime.GOARCH == \"ppc64\" || run... | 2024-11-19T18:31:08 |
ggml-org/llama.cpp | 509a31d00f87804a466dee983a30ce29aa0441b1 | ea01d196d7d4fcf1aa67496d493bcad9a9087360 | ggml-webgpu: Update the `RMS_NORM` preprocessor and add `L2_NORM` (#20665)
* Update the preprocessor of RMS_NORM and add L2_NORM.
* Fix the name of rms_norm to row_norm. | [
{
"path": "docs/ops.md",
"patch": "@@ -62,7 +62,7 @@ Legend:\n | HARDSWISH | ❌ | ✅ | ✅ | 🟡 | 🟡 | ❌ | ✅ | 🟡 | ✅ | ❌ | ❌ |\n | IM2COL | ❌ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ |\n | IM2COL_3D | ❌ | ❌ | ✅ | ✅ | ❌ | ❌ | ❌ | ✅ | ❌ | ❌ |... | 2026-03-19T04:08:59 |
huggingface/transformers | 432ddfadcdeb5c0b0d597fed6c1edc30efb511b6 | 670f5ab6e798501554900867c722f7df186dda30 | Fix crash of custom models in Notebook or Repl (#43690)
* fix
* oupsi | [
{
"path": "src/transformers/modeling_utils.py",
"patch": "@@ -1936,7 +1936,11 @@ def _can_set_attn_implementation(cls) -> bool:\n \"\"\"Detect whether the class supports setting its attention implementation dynamically. It is an ugly check based on\n opening the file, but avoids maintaining ... | 2026-02-03T13:20:17 |
vuejs/vue | c22363425ae246ccbb8418342e94edfa270d93e5 | 51fef2ca69459c1175e105991f60511f1996e0c8 | fix(patch): clone insert hooks to avoid being mutated during iteration (#12905) | [
{
"path": "src/core/vdom/patch.ts",
"patch": "@@ -878,8 +878,11 @@ export function createPatchFunction(backend) {\n const insert = ancestor.data.hook.insert\n if (insert.merged) {\n // start at index 1 to avoid re-invoking component mounted hook\n- ... | 2023-10-23T07:11:13 |
electron/electron | d26d337bb8c60f35e965c6c6a9c1e7f275696a94 | d1b48c0636712a91a4f2c3f1a5cc30931b5385e5 | feat: add rawHeaders to IncomingMessage (#31853)
* Add response.rawHeaders to docs for IncomingMessage
* Remove trailing spaces
* Implement raw headers, add tests
* Fix lint issues
* Add example from NodeJS docs
* Fix lint issue in doc example
* Add missing # | [
{
"path": "docs/api/incoming-message.md",
"patch": "@@ -80,3 +80,25 @@ An `Integer` indicating the HTTP protocol major version number.\n An `Integer` indicating the HTTP protocol minor version number.\n \n [event-emitter]: https://nodejs.org/api/events.html#events_class_eventemitter\n+\n+#### `response.rawH... | 2022-01-24T16:46:15 |
ollama/ollama | be2ac1ed93db2fea3bf989da4628202414db7a96 | dc13813a03105bd76603a4909e31ba0c034d670d | docs: fix api examples link (#9360)
Fix the examples link in the go package documentation for the API. | [
{
"path": "api/client.go",
"patch": "@@ -10,7 +10,7 @@\n // repository].\n //\n // [the API documentation]: https://github.com/ollama/ollama/blob/main/docs/api.md\n-// [in the GitHub repository]: https://github.com/ollama/ollama/tree/main/examples\n+// [in the GitHub repository]: https://github.com/ollama/o... | 2025-02-27T18:51:12 |
ggml-org/llama.cpp | 07ba6d275b0f5c138c72f75d7f3df2661f17c27a | 6729d4920c7509f0d110f114a9652793b5fe668a | CANN: support flash attention for head dim not multiple of 16, fix ALiBi slope offset (#20031)
- Allow FLASH_ATTN_EXT when head dimension D is not a multiple of 16 by
padding Q/K/V to D_padded = GGML_PAD(D, 16), running FusedInferAttentionScoreV2,
then slicing the output back to D (ggml-cann.cpp + aclnn_ops.cpp).
... | [
{
"path": "ggml/src/ggml-cann/aclnn_ops.cpp",
"patch": "@@ -1544,8 +1544,8 @@ static void aclnn_get_slope(ggml_backend_cann_context & ctx,\n end = 2 * ((n_head - 1) - n_head_log2) + 1;\n step = 2;\n count = n_head - n_head_log2;\n- aclnn_get_slope_inner(ctx, (char *) slope_... | 2026-03-19T03:02:42 |
huggingface/transformers | 670f5ab6e798501554900867c722f7df186dda30 | 36ec3bfa33ebf6c3b38a1d6808292aeea4aae84d | Simplify TrainingArguments docstring (#43568)
* update docstring
* fix
* rm whitespace
* fix
* update docstring
* Apply suggestion from @qgallouedec
Co-authored-by: Quentin Gallouédec <45557362+qgallouedec@users.noreply.github.com>
* quentin suggestions
* Apply suggestions from code review
Co-authored-by: Ste... | [
{
"path": "src/transformers/training_args.py",
"patch": "@@ -194,276 +194,469 @@ def _convert_str_dict(passed_value: dict):\n return passed_value\n \n \n-# TODO: `TrainingArguments` users rely on it being fully mutable. In the future see if we can narrow this to a few keys: https://github.com/huggingfac... | 2026-02-03T12:52:07 |
vuejs/vue | 51fef2ca69459c1175e105991f60511f1996e0c8 | b8c8b3fc7a211744fdabd237a1a986a1f80b7c43 | fix(compiler-sfc): add semicolon after `defineProps` statement (#12879) | [
{
"path": "packages/compiler-sfc/src/compileScript.ts",
"patch": "@@ -1125,15 +1125,15 @@ export function compileScript(\n startOffset,\n `\\nconst ${propsIdentifier} = __props${\n propsTypeDecl ? ` as ${genSetupPropsType(propsTypeDecl)}` : ``\n- }\\n`\n+ };\\n`\n )\n }\n... | 2023-10-23T07:09:23 |
electron/electron | 7032be660d9ead9f4ec8d089b8013be108cc5825 | f5e138a5e3d75db7e88f9937972ddde3da481e04 | fix: bundle a11y strings in resources (#32564) | [
{
"path": "electron_paks.gni",
"patch": "@@ -179,6 +179,7 @@ template(\"electron_paks\") {\n \"${root_gen_dir}/device/bluetooth/strings/bluetooth_strings_\",\n \"${root_gen_dir}/services/strings/services_strings_\",\n \"${root_gen_dir}/ui/strings/app_locale_settings_\",\n+ \"${root_ge... | 2022-01-21T18:04:06 |
ollama/ollama | a59f66523561dc195a37b78b454d8cd1b8b1fdd7 | 688925aca9a4747098ee331c3ecb702907fbca23 | ml/backend/ggml: fix debug logging | [
{
"path": "llama/llama.go",
"patch": "@@ -37,23 +37,36 @@ COMPILER inline get_compiler() {\n import \"C\"\n \n import (\n+\t\"context\"\n \t_ \"embed\"\n \t\"errors\"\n \t\"fmt\"\n+\t\"log/slog\"\n \t\"os\"\n \t\"runtime\"\n \t\"runtime/cgo\"\n \t\"slices\"\n \t\"strings\"\n-\t\"sync/atomic\"\n \t\"unsafe\"... | 2025-02-27T01:00:25 |
ggml-org/llama.cpp | 78d550b541a12eb473f1bca4cf9ac6920ebdb42b | 4efd326e7107f3c6a84d23455ac620e7220079ec | ggml-cpu/x86: fix unused changemask warning in repack (#20692) | [
{
"path": "ggml/src/ggml-cpu/arch/x86/repack.cpp",
"patch": "@@ -531,7 +531,6 @@ static void gemv_q4_b32_8x8_q8_0_lut_avx(int n, float * GGML_RESTRICT s, size_t\n \n UNUSED(bs);\n \n- __m128i changemask = _mm_set_epi8(15, 14, 7, 6, 13, 12, 5, 4, 11, 10, 3, 2, 9, 8, 1, 0);\n __m256i finalpermutema... | 2026-03-18T16:45:06 |
huggingface/transformers | 36ec3bfa33ebf6c3b38a1d6808292aeea4aae84d | b6a202f868d261c7404d331cf9d8ce03aec12fe2 | Composite model inherit automatically all important properties from their children (#43691)
* add
* add them all
* small fix
* update example
* fix test
* fix
* add test
* update docstring | [
{
"path": "examples/modular-transformers/modeling_new_task_model.py",
"patch": "@@ -16,10 +16,10 @@\n from ...generation import GenerationMixin\n from ...masking_utils import create_masks_for_generate\n from ...modeling_flash_attention_utils import FlashAttentionKwargs\n-from ...modeling_outputs import Base... | 2026-02-03T11:33:22 |
vuejs/vue | b8c8b3fc7a211744fdabd237a1a986a1f80b7c43 | d27c128b7cb1640f3aa185a5ecdea4ff35763794 | fix(compiler-sfc): Resolve object expression parsing errors in `v-on` (#12862) | [
{
"path": "packages/compiler-sfc/src/compileScript.ts",
"patch": "@@ -1841,7 +1841,7 @@ function processExp(exp: string, isTS: boolean, dir?: string): string {\n if (dir === 'slot') {\n exp = `(${exp})=>{}`\n } else if (dir === 'on') {\n- exp = `()=>{${exp}}`\n+ exp = `()=>{return ${... | 2023-10-23T07:08:58 |
ollama/ollama | a5272130c4da24615a7428f5e7982a17ba64a6d8 | d7d7e996621ab3d5793d6c1b26b60f0c8c36cd62 | ml/backend/ggml: follow on fixes after updating vendored code (#9388)
Fixes sync filters and lowers CUDA version to 11.3 in test.yaml | [
{
"path": ".github/workflows/test.yaml",
"patch": "@@ -78,8 +78,8 @@ jobs:\n include:\n - preset: CPU\n - preset: CUDA\n- install: https://developer.download.nvidia.com/compute/cuda/11.8.0/local_installers/cuda_11.8.0_522.06_windows.exe\n- flags: '-DCMAKE_CU... | 2025-02-27T06:33:53 |
electron/electron | 87b3f6db9d76fdfd1cb5cb899273b5b720c93cc4 | 6b413568681fd236a10a54bf9ddb7281cd6bcb51 | fix: undisable AXTextMarker and related APIs on MAS (#32543) | [
{
"path": "patches/chromium/mas_no_private_api.patch",
"patch": "@@ -6,423 +6,6 @@ Subject: mas: avoid some private APIs\n Guard usages in blink of private Mac APIs by MAS_BUILD, so they can be\n excluded for people who want to submit their apps to the Mac App store.\n \n-diff --git a/content/browser/access... | 2022-01-20T23:42:43 |
ggml-org/llama.cpp | f4049ad735a8e7b3b14762a8e3bb79784b67da44 | 5e8910a0db1a577e102f63313eb23f285a98d205 | tests : fix test-jinja-py Windows failures by bypassing command-line args [no ci] (#20483)
* Fix errors occurring on Windows
* Reverted fix
#20365 will take care of CRLF isue
* Changed to write to directly to stdin
* Prevent fclose to happen twice | [
{
"path": "tests/test-jinja.cpp",
"patch": "@@ -1897,8 +1897,9 @@ import sys\n from datetime import datetime\n from jinja2.sandbox import SandboxedEnvironment\n \n-tmpl = json.loads(sys.argv[1])\n-vars_json = json.loads(sys.argv[2])\n+merged_input = json.loads(sys.stdin.buffer.read().decode(\"utf-8\"))\n+tm... | 2026-03-18T09:43:31 |
golang/go | d9de8ba83ce6408a21a836a460d63a391f50e9e6 | d90ce588eac7b9105c0ca556a7c6e975fd5c1eca | cmd/go: make vet work with -overlay
It never worked before, an apparent oversight.
This will also make tests work, since tests run vet.
The new FIPS mode will use overlays, so this was
keeping go test from working in that mode.
Fixes #44957.
Change-Id: I3a77846b3b3f9a3a53118aaece93ee93214a36a6
Reviewed-on: https://... | [
{
"path": "src/cmd/go/internal/work/exec.go",
"patch": "@@ -858,7 +858,7 @@ OverlayLoop:\n \t\tembed.Patterns = p.Internal.Embed\n \t\tembed.Files = make(map[string]string)\n \t\tfor _, file := range p.EmbedFiles {\n-\t\t\tembed.Files[file] = filepath.Join(p.Dir, file)\n+\t\t\tembed.Files[file] = fsys.Actua... | 2024-11-17T21:52:25 |
huggingface/transformers | b6a202f868d261c7404d331cf9d8ce03aec12fe2 | dab8734f275512cbcd2132e64b79a614008c4075 | Update configuration_qwen3.py (#43703)
wrong `rms_norm_type` | [
{
"path": "src/transformers/models/qwen3/configuration_qwen3.py",
"patch": "@@ -134,7 +134,7 @@ def __init__(\n hidden_act: str | None = \"silu\",\n max_position_embeddings: int | None = 32768,\n initializer_range: float | None = 0.02,\n- rms_norm_eps: int | None = 1e-6,\n+ ... | 2026-02-03T10:21:30 |
vuejs/vue | d27c128b7cb1640f3aa185a5ecdea4ff35763794 | bb59751dd4e45afcaafd607f22505a724b1ef841 | fix(compiler-sfc): fix macro usage in multi-variable declaration (#12873) | [
{
"path": "packages/compiler-sfc/src/compileScript.ts",
"patch": "@@ -910,11 +910,11 @@ export function compileScript(\n } else {\n let start = decl.start! + startOffset\n let end = decl.end! + startOffset\n- if (i < total - 1) {\n- // not ... | 2023-10-23T07:08:34 |
ollama/ollama | 0d694793f25a274a58680ba244e5febc31b96743 | e91ae3d47d8153c4b7c10dba031b77d7ae408ef0 | .github: always run tests, and other helpful fixes (#9348)
During work on our new registry client, I ran into frustrations with CI
where a misspelling in a comment caused the linter to fail, which caused
the tests to not run, which caused the build to not be cached, which
caused the next run to be slow, which caused m... | [
{
"path": ".github/workflows/test.yaml",
"patch": "@@ -140,6 +140,13 @@ jobs:\n env:\n CMAKE_GENERATOR: Ninja\n \n+ go_mod_tidy:\n+ runs-on: ubuntu-latest\n+ steps:\n+ - uses: actions/checkout@v4\n+ - name: check that 'go mod tidy' is clean\n+ run: go mod tidy --dif... | 2025-02-25T22:28:07 |
electron/electron | 84e24600123570dab941161fb9edea053cc9a5d1 | df50a0efb10e26ff7f7a79e295342a9abec4c129 | fix: strip crashpad_handler binary (#32540) | [
{
"path": "script/lib/config.py",
"patch": "@@ -14,14 +14,15 @@\n }[sys.platform]\n \n LINUX_BINARIES = [\n- 'electron',\n 'chrome-sandbox',\n- 'libffmpeg.so',\n- 'libGLESv2.so',\n+ 'crashpad_handler',\n+ 'electron',\n 'libEGL.so',\n- 'swiftshader/libGLESv2.so',\n- 'swiftshader/libEGL.so',\n+ 'l... | 2022-01-20T03:48:48 |
ggml-org/llama.cpp | 5e8910a0db1a577e102f63313eb23f285a98d205 | fe00a84b4b972b3172b2c6b880954d81da532ca4 | common : rework gpt-oss parser (#20393)
* common : rework gpt-oss parser
* cont : fix gpt-oss tests
* cont : add structured output test
* cont : rename final to final_msg | [
{
"path": "common/chat.cpp",
"patch": "@@ -933,17 +933,12 @@ static common_chat_params common_chat_params_init_gpt_oss(const common_chat_temp\n \n // Copy reasoning to the \"thinking\" field as expected by the gpt-oss template\n auto adjusted_messages = json::array();\n- for (const auto & msg : i... | 2026-03-18T09:41:25 |
huggingface/transformers | dab8734f275512cbcd2132e64b79a614008c4075 | cf3fda19cc3d0c7360e08f45d8f6819c1548b185 | fix gptoss tp crash (#43695)
Signed-off-by: Wang, Yi <yi.a.wang@intel.com> | [
{
"path": "src/transformers/models/gpt_oss/configuration_gpt_oss.py",
"patch": "@@ -36,7 +36,7 @@ class GptOssConfig(PreTrainedConfig):\n \"layers.*.self_attn.k_proj\": \"colwise\",\n \"layers.*.self_attn.v_proj\": \"colwise\",\n \"layers.*.self_attn.o_proj\": \"rowwise\",\n- ... | 2026-02-03T10:20:29 |
golang/go | 9854fc3e86e1ba6d3a186bcadec814e73c562c78 | 1e733b638fd50e167756c891d9d407af8e414fcb | crypto/internal/mlkem768: add -768 suffix to all exported identifiers
In preparation for introducing ML-KEM-1024.
Aside from the constants at the top, all other changes were automated.
Change-Id: I0fafce9a776c7b0b9179be1c858709cabf60e80f
Reviewed-on: https://go-review.googlesource.com/c/go/+/621981
Auto-Submit: Fili... | [
{
"path": "src/crypto/internal/mlkem768/mlkem768.go",
"patch": "@@ -33,35 +33,33 @@ const (\n \tn = 256\n \tq = 3329\n \n-\tlog2q = 12\n-\n-\t// ML-KEM-768 parameters. The code makes assumptions based on these values,\n-\t// they can't be changed blindly.\n-\tk = 3\n-\tη = 2\n-\tdu = 10\n-\tdv = 4\n-\n \t... | 2024-10-21T14:29:23 |
ggml-org/llama.cpp | fe00a84b4b972b3172b2c6b880954d81da532ca4 | 7ab321d40db7f26f910bff51eed92fb614994229 | tests: enable kv_unified to prevent cuda oom error on rtx 2060 (#20645)
Signed-off-by: Aaron Teo <aaron.teo1@ibm.com> | [
{
"path": "tests/test-backend-sampler.cpp",
"patch": "@@ -89,6 +89,7 @@ struct test_context {\n cparams.n_batch = 512;\n cparams.samplers = configs.data();\n cparams.n_samplers = configs.size();\n+ cparams.kv_unified = true;\n \n // If n_seq_max is not specified, calcu... | 2026-03-18T09:40:22 |
ollama/ollama | e91ae3d47d8153c4b7c10dba031b77d7ae408ef0 | 6ecd7f64ba36b1d24ea4bb1b73a6dc4234e7d567 | Update ROCm (6.3 linux, 6.2 windows) and CUDA v12.8 (#9304)
* Bump cuda and rocm versions
Update ROCm to linux:6.3 win:6.2 and CUDA v12 to 12.8.
Yum has some silent failure modes, so largely switch to dnf.
* Fix windows build script | [
{
"path": ".github/workflows/release.yaml",
"patch": "@@ -111,13 +111,13 @@ jobs:\n - os: windows\n arch: amd64\n preset: 'CUDA 12'\n- install: https://developer.download.nvidia.com/compute/cuda/12.4.0/local_installers/cuda_12.4.0_551.61_windows.exe\n- ... | 2025-02-25T21:47:36 |
electron/electron | df50a0efb10e26ff7f7a79e295342a9abec4c129 | b89361a991e496b00303fdf4eb841c4021c836a7 | fix: undefined backgroundColor (#32517) | [
{
"path": "shell/browser/api/electron_api_browser_window.cc",
"patch": "@@ -37,7 +37,6 @@ BrowserWindow::BrowserWindow(gin::Arguments* args,\n gin::Dictionary::CreateEmpty(isolate);\n options.Get(options::kWebPreferences, &web_preferences);\n \n- v8::Local<v8::Value> value;\n bool transparent = f... | 2022-01-19T20:51:12 |
golang/go | 81fc3d223946d8d09463e40df597086275c01701 | 0568cda10aa9a3b26e519da15bcff18ab6ef974d | crypto/internal/mlkem768: remove crypto/rand.Read error checking
After #66821 crypto/rand.Read can't return an error.
Change-Id: I185063a25ef70986448f2a300e5578de17f6e61e
Reviewed-on: https://go-review.googlesource.com/c/go/+/621979
Auto-Submit: Filippo Valsorda <filippo@golang.org>
LUCI-TryBot-Result: Go LUCI <golan... | [
{
"path": "src/crypto/internal/mlkem768/mlkem768.go",
"patch": "@@ -112,19 +112,15 @@ type decryptionKey struct {\n func GenerateKey() (*DecapsulationKey, error) {\n \t// The actual logic is in a separate function to outline this allocation.\n \tdk := &DecapsulationKey{}\n-\treturn generateKey(dk)\n+\tretur... | 2024-10-21T10:08:53 |
huggingface/transformers | cf3fda19cc3d0c7360e08f45d8f6819c1548b185 | c640b63a0f780e2a0ff4d221bf5fbe732c23b06b | [CB] Keep order of incoming requests (#43626)
* CB now keeps the order of incoming requests despite sorting
* Fix test order
* Add reordering for generate batch
* Lower nb of generated tokens and add details | [
{
"path": "src/transformers/generation/continuous_batching/continuous_api.py",
"patch": "@@ -691,14 +691,17 @@ def add_requests(\n streaming: bool = False,\n record_timestamps: bool = False,\n ) -> None:\n- # If there is prefix sharing, we sort the inputs to maximize cache hits\n+... | 2026-02-03T09:59:44 |
vuejs/vue | bb59751dd4e45afcaafd607f22505a724b1ef841 | 099401e227fd5ed496ff615528d1a9b3b64d4fbf | fix(compiler-sfc): Optimize the value of emitIdentifier (#12851) | [
{
"path": "packages/compiler-sfc/src/compileScript.ts",
"patch": "@@ -414,7 +414,10 @@ export function compileScript(\n }\n \n if (declId) {\n- emitIdentifier = scriptSetup!.content.slice(declId.start!, declId.end!)\n+ emitIdentifier =\n+ declId.type === 'Identifier'\n+ ? d... | 2023-10-23T07:08:17 |
ollama/ollama | b16367b4b2ee22b8bd8ad1ef8c2abf5f8171be8c | a499390648e9184211a1e9d196cdb20b48355591 | fix: add back bf16 support
this was accidentally removed when moving fs/ggml from its previous
location | [
{
"path": "fs/ggml/ggml.go",
"patch": "@@ -207,11 +207,26 @@ func (t Tensor) block() (n int) {\n \n func (t Tensor) blockSize() uint64 {\n \tswitch t.Kind {\n-\tcase 0, 1, 24, 25, 26, 27, 28, 30: // F32, F16, I8, I16, I32, I64, F64, BF16\n+\tcase\n+\t\t0, // F32\n+\t\t1, // F16\n+\t\t24, // I8\n+\t\t25, /... | 2025-02-25T17:18:44 |
ggml-org/llama.cpp | 7ab321d40db7f26f910bff51eed92fb614994229 | 7533a7d5096894df1d9dd842856cd4b7e16ef4ba | webui: Fix duplicated messages on q param (#20715)
* fix: Remove duplicate message sending on `?q` param
* chore: update webui build output | [
{
"path": "tools/server/webui/src/routes/+page.svelte",
"patch": "@@ -57,7 +57,6 @@\n \t\t// Handle ?q= parameter - create new conversation and send message\n \t\tif (qParam !== null) {\n \t\t\tawait conversationsStore.createConversation();\n-\t\t\tawait chatStore.sendMessage(qParam);\n \t\t\tclearUrlParams... | 2026-03-18T09:32:43 |
electron/electron | b89361a991e496b00303fdf4eb841c4021c836a7 | edfadda899df4c4bc8e1125653d27e25128b98da | fix: crash when saving edited PDF files (#32512) | [
{
"path": "patches/chromium/.patches",
"patch": "@@ -112,3 +112,4 @@ fix_aspect_ratio_with_max_size.patch\n revert_stop_using_nsrunloop_in_renderer_process.patch\n fix_dont_delete_SerialPortManager_on_main_thread.patch\n feat_add_data_transfer_to_requestsingleinstancelock.patch\n+fix_crash_when_saving_edite... | 2022-01-19T17:58:32 |
huggingface/transformers | c640b63a0f780e2a0ff4d221bf5fbe732c23b06b | bdc583d4dbf2b0a344f225aa144122601f34acde | Fix Apertus model loading (NotImplementedError: Cannot copy out of meta tensor; no data!) (#43473)
Fix meta tensor loading
NotImplementedError: Cannot copy out of meta tensor; no data!
Co-authored-by: Cyril Vallez <cyril.vallez@huggingface.co> | [
{
"path": "src/transformers/activations.py",
"patch": "@@ -247,8 +247,8 @@ def __init__(\n self.register_buffer(\"eps\", torch.tensor(eps, dtype=dtype))\n self.with_vector_loads = with_vector_loads\n # Temporary until xIELU CUDA fully implemented\n- self._beta_scalar = float(s... | 2026-02-03T09:50:37 |
golang/go | 99dad5281660c4e644602e0c8790dd24b3eb45f3 | 4d6170427f4d02e79454b25391b56e7d1c5ceb39 | encoding/json: check exact structure of local error types in tests
During the development of error wrapping (#29934),
the tests were modified to stop using reflect.DeepEqual
since the prototype for error wrapping at the time included
frame information of where the error was created.
However, that change diminished th... | [
{
"path": "src/encoding/json/decode_test.go",
"patch": "@@ -443,7 +443,7 @@ var unmarshalTests = []struct {\n \t{CaseName: Name(\"\"), in: `{\"x\": 1}`, ptr: new(tx), out: tx{}},\n \t{CaseName: Name(\"\"), in: `{\"x\": 1}`, ptr: new(tx), err: fmt.Errorf(\"json: unknown field \\\"x\\\"\"), disallowUnknownFie... | 2024-11-19T01:34:06 |
vuejs/vue | 099401e227fd5ed496ff615528d1a9b3b64d4fbf | 67c1d26cb0af3eb2db0a11fc7768a8299e7f7d58 | fix(types/sfc): improve the type inference using `withDefaults` (#12872) | [
{
"path": "types/test/setup-helpers-test.ts",
"patch": "@@ -19,25 +19,35 @@ describe('defineProps w/ type declaration + withDefaults', () => {\n arr?: string[]\n obj?: { x: number }\n fn?: (e: string) => void\n- x?: string\n genStr?: string\n+ x?: string\n+ y?: string\... | 2023-10-23T07:06:28 |
ollama/ollama | 4df98f3eb58dafaa2a069fbc6173faa124a952c1 | 348b3e0983c76263008a8dfbbc23e2449107f6d1 | Move cgroups fix out of AMD section. (#9072)
Co-authored-by: Richard Lyons <frob@cloudstaff.com> | [
{
"path": "docs/troubleshooting.md",
"patch": "@@ -73,6 +73,10 @@ curl -fsSL https://ollama.com/install.sh | OLLAMA_VERSION=0.5.7 sh\n \n If your system is configured with the \"noexec\" flag where Ollama stores its temporary executable files, you can specify an alternate location by setting OLLAMA_TMPDIR t... | 2025-02-25T16:52:50 |
ggml-org/llama.cpp | a69d54f990d0cd88786d5943632d6426dc9660b7 | cf23ee244717b7b41f092410991d0344b25620ea | context : fix graph not resetting when control vector changes (#20381) | [
{
"path": "src/llama-context.cpp",
"patch": "@@ -1165,9 +1165,11 @@ bool llama_context::set_adapter_cvec(\n int32_t il_end) {\n LLAMA_LOG_DEBUG(\"%s: il_start = %d, il_end = %d\\n\", __func__, il_start, il_end);\n \n- // TODO: should we reserve?\n+ bool res = cvec->apply(model, d... | 2026-03-18T06:10:13 |
huggingface/transformers | bdc583d4dbf2b0a344f225aa144122601f34acde | 683c3e9f3e0c0654497e35a2b034b011b532132e | Remove `num_frames` in ASR pipeline (#43546)
* fix pop
Signed-off-by: jiqing-feng <jiqing.feng@intel.com>
* rm num_frames in asr pipeline
Signed-off-by: jiqing-feng <jiqing.feng@intel.com>
* rm return_token_timestamps
Signed-off-by: jiqing-feng <jiqing.feng@intel.com>
---------
Signed-off-by: jiqing-feng <jiqin... | [
{
"path": "src/transformers/pipelines/automatic_speech_recognition.py",
"patch": "@@ -480,10 +480,8 @@ def preprocess(self, inputs, chunk_length_s=0, stride_length_s=None):\n inputs,\n sampling_rate=self.feature_extractor.sampling_rate,\n ... | 2026-02-03T09:48:21 |
electron/electron | 4903d47ef33122d47b1efe8d62677a9b9fd9d1a0 | ac0d6bdb1eb20a7801e80b8ae5ab7314d00c3a2b | docs: fix broken images for symbol server setup (#32485) | [
{
"path": "docs/development/debugging-with-symbol-server.md",
"patch": "@@ -43,8 +43,9 @@ SRV*c:\\code\\symbols\\*https://msdl.microsoft.com/download/symbols;SRV*c:\\code\\sym\n \n ## Using the symbol server in Visual Studio\n \n- ti... | 2024-11-19T17:28:49 |
vuejs/vue | 67c1d26cb0af3eb2db0a11fc7768a8299e7f7d58 | 74ca5a13ba12a31580f1567e7c6d789e96730e46 | fix(types): correct serverPrefetch this type (#13068)
close #12488 | [
{
"path": "types/options.d.ts",
"patch": "@@ -210,7 +210,7 @@ export interface ComponentOptions<\n activated?(): void\n deactivated?(): void\n errorCaptured?(err: Error, vm: Vue, info: string): boolean | void\n- serverPrefetch?(this: V): Promise<void>\n+ serverPrefetch?(): Promise<void>\n renderTr... | 2023-10-23T06:58:47 |
ollama/ollama | 8c13cfa4dd35a79c983eb19b5ec2be7ffa220b69 | 7cfd4aee4d9956b89dbbb103ee4877194abfe670 | ml/backend/ggml: fix crash on windows paths with wide characters (#9305) | [
{
"path": "llama/patches/0018-use-std-filesystem-path-instead-of-wstring.patch",
"patch": "@@ -4,17 +4,23 @@ Date: Sun, 16 Feb 2025 20:00:22 -0500\n Subject: [PATCH] use std::filesystem::path instead of wstring\n \n ---\n- ggml/src/ggml-backend-reg.cpp | 116 ++++++++++++----------------------\n- 1 file chan... | 2025-02-24T03:13:53 |
ggml-org/llama.cpp | 054d8b0f24001eceb1d719f09fb78bd54494223e | ab0bb93748cd4c9e105beadb46ffc9c665fc4178 | ggml-cpu: fix RVV checks in quants and repacking (#20682)
* ggml-cpu: refactor quants.c; add rvv check
* ggml-cpu: refactor; disable generic fallback | [
{
"path": "ggml/src/ggml-cpu/arch/riscv/quants.c",
"patch": "@@ -115,10 +115,10 @@ void quantize_row_q8_1(const float * GGML_RESTRICT x, void * GGML_RESTRICT vy, i\n \n void quantize_row_q8_K(const float * GGML_RESTRICT x, void * GGML_RESTRICT y, int64_t k) {\n assert(k % QK_K == 0);\n- block_q8_K * ... | 2026-03-17T14:03:40 |
huggingface/transformers | 683c3e9f3e0c0654497e35a2b034b011b532132e | aefa23ad1c52de9c115f3d762fe1a1eda643275a | remove ipex and ccl for xpu and cpu (#42852)
* remove ipex and ccl for xpu and cpu, since all ipex optimizations are
upstreamed to PyTorch or kernels-community; ccl for xpu is upstreamed to
PyTorch built-in xccl backend; ccl for cpu will use gloo
Signed-off-by: Yao, Matrix <matrix.yao@intel.com>
* fix style
Signed-... | [
{
"path": "docs/source/en/perf_train_gpu_one.md",
"patch": "@@ -277,7 +277,6 @@ Refer to the table below to help you choose the right backend for your training\n | ofi | uses TorchScripts [optimize_for_inference](https://pytorch.org/docs/stable/generated/torch.jit.optimize_for_inference.html#torch-jit-optim... | 2026-02-03T09:40:29 |
electron/electron | 0c75b3b2eaa294c08629f83391a4c2f3d73c51b0 | 2a8d49a0591a74b3732717ce52724e38f0e73055 | fix: check for maximized window before unmaximizings (#32438) | [
{
"path": "shell/browser/native_window_views.cc",
"patch": "@@ -581,14 +581,16 @@ void NativeWindowViews::Maximize() {\n #endif\n \n void NativeWindowViews::Unmaximize() {\n+ if (IsMaximized()) {\n #if defined(OS_WIN)\n- if (transparent()) {\n- SetBounds(restore_bounds_, false);\n- return;\n- }\n+ ... | 2022-01-17T07:47:14 |
ollama/ollama | 68bac1e0a646e00a215b6bffb6f294f895c32238 | f53f4198c36d0a943de598ad91a20baa9481c5c5 | server: group routes by category and purpose (#9270)
The route assembly in Handler lacked clear organization making it
difficult scan for routes and their relationships to each other. This
commit aims to fix that by reordering the assembly of routes to group
them by category and purpose.
Also, be more specific about ... | [
{
"path": "envconfig/config.go",
"patch": "@@ -53,8 +53,8 @@ func Host() *url.URL {\n \t}\n }\n \n-// Origins returns a list of allowed origins. Origins can be configured via the OLLAMA_ORIGINS environment variable.\n-func Origins() (origins []string) {\n+// AllowedOrigins returns a list of allowed origins.... | 2025-02-22T05:02:26 |
vuejs/vue | 74ca5a13ba12a31580f1567e7c6d789e96730e46 | 1399ee6aa0aa3e44a70780cfd0aca3d384c97fa4 | fix(lifecycle): scope might changed when call hook (#13070) | [
{
"path": "src/core/instance/lifecycle.ts",
"patch": "@@ -18,6 +18,7 @@ import {\n invokeWithErrorHandling\n } from '../util/index'\n import { currentInstance, setCurrentInstance } from 'v3/currentInstance'\n+import { getCurrentScope } from 'v3/reactivity/effectScope'\n import { syncSetupProxy } from 'v3/... | 2023-10-22T02:52:10 |
Subsets and Splits
Assembly Language GitHub Issues
Retrieves a sample of assembly-language related commits with their details, but doesn't provide meaningful analysis or patterns beyond basic filtering.
Swift Compiler Issues Analysis
Retrieves all training data for the Swift programming language repository, providing basic filtering but offering limited analytical insight beyond identifying relevant code examples.