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 |
|---|---|---|---|---|---|
vuejs/vue | a524919d21eb1473b1ac0f61df112ae0f2aa5b29 | 2afaac2b397b4b04713488aeb62e5e222e5dc121 | fix v-on inline function expression with modifiers (fix #5120) | [
{
"path": "src/compiler/codegen/events.js",
"patch": "@@ -48,12 +48,19 @@ function genHandler (\n ): string {\n if (!handler) {\n return 'function(){}'\n- } else if (Array.isArray(handler)) {\n+ }\n+\n+ if (Array.isArray(handler)) {\n return `[${handler.map(handler => genHandler(name, handler))... | 2017-03-08T03:27:43 |
huggingface/transformers | 12a50f294d50e3d0e124511f2b6f43625f73ffce | 39b6d3bf7e30b92b2de50a31ee991557d41ab568 | Enable FURB rules in ruff (#41395)
* Apply ruff FURB rules
Signed-off-by: Yuanyuan Chen <cyyever@outlook.com>
* Enable ruff FURB rules
Signed-off-by: Yuanyuan Chen <cyyever@outlook.com>
* More fixes
Signed-off-by: Yuanyuan Chen <cyyever@outlook.com>
* More fixes
Signed-off-by: Yuanyuan Chen <cyyever@outlook.co... | [
{
"path": "examples/legacy/seq2seq/pack_dataset.py",
"patch": "@@ -60,8 +60,8 @@ def pack_data_dir(tok, data_dir: Path, max_tokens, save_path):\n save_path.mkdir(exist_ok=True)\n for split in [\"train\"]:\n src_path, tgt_path = data_dir / f\"{split}.source\", data_dir / f\"{split}.target\"\n... | 2025-10-17T15:00:40 |
ggml-org/llama.cpp | 13f2cfad4170c096c51a02c24a6a158cb47f1480 | 06332e28672356b964d6dfc2ba4657e20581cd43 | Enable per-conversation loading states to allow having parallel conversations (#16327)
* feat: Per-conversation loading states and tracking streaming stats
* chore: update webui build output
* refactor: Chat state management
Consolidates loading state management by using a global `isLoading` store synchronized with... | [
{
"path": "tools/server/webui/package-lock.json",
"patch": "@@ -50,6 +50,7 @@\n \t\t\t\t\"eslint-plugin-svelte\": \"^3.0.0\",\n \t\t\t\t\"fflate\": \"^0.8.2\",\n \t\t\t\t\"globals\": \"^16.0.0\",\n+\t\t\t\t\"http-server\": \"^14.1.1\",\n \t\t\t\t\"mdast\": \"^3.0.0\",\n \t\t\t\t\"mdsvex\": \"^0.12.3\",\n \t... | 2025-10-20T10:41:13 |
denoland/deno | b2690b072780c79e3584406f8f9891e201734f00 | 929ab331a754c695fb1c2fbb0182a2260f7b0d34 | fix(ext/node): implement `DatabaseSync.setAuthorizer()` (#32009) | [
{
"path": "ext/node/ops/sqlite/database.rs",
"patch": "@@ -516,6 +516,7 @@ pub struct DatabaseSync {\n options: DatabaseSyncOptions,\n location: String,\n ignore_next_sqlite_error: Rc<Cell<bool>>,\n+ authorizer_data: Rc<RefCell<Option<*mut AuthorizerData>>>,\n }\n \n // SAFETY: we're sure this can be... | 2026-02-04T10:42:44 |
vuejs/vue | 0bcad13bb3c61037e82a19c8cd3a8dbaf7b4b0d0 | e12d96a1325ae4ed3e5520c1de68f5cd774e5515 | Reorganize and update PR template (#5106)
* Reorganize and update PR template
* Update PULL_REQUEST_TEMPLATE.md
* Remove required info for bugfixes | [
{
"path": ".github/PULL_REQUEST_TEMPLATE.md",
"patch": "@@ -3,38 +3,33 @@ Please make sure to read the Pull Request Guidelines:\n https://github.com/vuejs/vue/blob/dev/.github/CONTRIBUTING.md#pull-request-guidelines\n -->\n \n-<!-- ISSUE TEMPLATE -->\n-**Please check if the PR fulfills these requirements**\... | 2017-03-08T02:18:02 |
ggml-org/llama.cpp | 06332e28672356b964d6dfc2ba4657e20581cd43 | 72d53e6c4decee8b339e49aed8cc0e234b9639dc | llama-batch: fix build fails with `-Werror=missing-braces` (#16614)
## Why it failed
When compiling with strict compiler flags (-Wmissing-braces -Werror=missing-braces),
the build fails with the following error:
```
cmake \
-S . \
-B ../llama.cpp.build \
--preset=x64-linux-gcc-debug \
-DCMAKE_INSTALL_PREFIX=... | [
{
"path": "src/llama-batch.h",
"patch": "@@ -123,7 +123,7 @@ class llama_batch_allocr {\n uint32_t n_seq_max;\n uint32_t n_outputs;\n \n- std::array<llama_seq_id, 1> seq_id_0 = { 0 }; // default sequence id\n+ std::array<llama_seq_id, 1> seq_id_0 = {{ 0 }}; // default sequence id\n \n std:... | 2025-10-20T08:27:09 |
denoland/deno | 929ab331a754c695fb1c2fbb0182a2260f7b0d34 | d9bd0545a4c01a0b348a70b5dcee3d7cf56e33ce | fix(flags): extra trailing space in zsh directory completions (#32042)
Fixes https://github.com/denoland/deno/issues/31809
Ref
https://github.com/clap-rs/clap/commit/5571b83c8a322ee2cf4342402d930cf2806fa2f1 | [
{
"path": "cli/args/flags.rs",
"patch": "@@ -6844,7 +6844,25 @@ function _clap_dynamic_completer_NAME() {\n )}\")\n \n if [[ -n $completions ]]; then\n- _describe -V 'values' completions -o nosort\n+ local -a dirs=()\n+ local -a other=()\n+ local completion\n+ for completion in ... | 2026-02-04T10:07:53 |
ollama/ollama | 75bee074b60737ef3183dd000663f227b1434e28 | 533d76368ce8c89ee33941484e50df6ac5533a52 | fix: nil pointer dereference | [
{
"path": "server/auth.go",
"patch": "@@ -106,6 +106,7 @@ func getAuthToken(ctx context.Context, redirData AuthRedirect) (string, error) {\n \tresp, err := makeRequest(ctx, \"GET\", redirectURL, headers, nil, nil)\n \tif err != nil {\n \t\tlog.Printf(\"couldn't get token: %q\", err)\n+\t\treturn \"\", err\n... | 2023-10-20T23:52:48 |
vuejs/vue | e12d96a1325ae4ed3e5520c1de68f5cd774e5515 | 7010d0ffc52809498ee3de4087a6b4b70c62727b | chore(parser.spec): fix an IE conditional test with a typo (#5102)
* chore(parser.spec): fix an IE conditional test with a typo
* check children.length is 0, instead of undefined | [
{
"path": "test/unit/modules/compiler/parser.spec.js",
"patch": "@@ -504,6 +504,6 @@ describe('parser', () => {\n </div>\n `, options)\n expect(ast.tag).toBe('div')\n- expect(ast.chilldren).toBeUndefined()\n+ expect(ast.children.length).toBe(0)\n })\n })",
"additions": 1,
"dele... | 2017-03-08T02:17:08 |
huggingface/transformers | 75da795d8f93296ae226706f7150bee2479b5bab | 080d704af11d8e0cff7fc1156166b7912b198d36 | 🚨 Remove torch.fx support (#41683)
* remove all
* fix comments
* better checks
* doc | [
{
"path": "docs/source/ja/perf_train_gpu_many.md",
"patch": "@@ -472,8 +472,6 @@ FlexFlowは、サンプル-オペレータ-属性-パラメータの4D並列化\n \n したがって、このフレームワークの約束は非常に魅力的です。選択したクラスタで30分間のシミュレーションを実行し、この特定の環境を最適に利用するための最良の戦略を提供します。部分を追加/削除/置換すると、それに対して実行して再最適化プランを作成します。その後、トレーニングできます。異なるセットアップには独自の最適化があります。\n \n-🤗 Transformersの現在... | 2025-10-17T14:12:46 |
ggml-org/llama.cpp | 2330de7b847ca84eac766df372c604c26db72747 | 7062dd8460685d6700ed7621e50a22c6f3400ca3 | SYCL: Add support for FLOOR,CEIL,ROUND and TRUNC unary operators (#16613)
* SYCL: Add support for FLOOR,CEIL,ROUND and TRUNC unary operators
Clean up unrelated changes from previous commit
* Chore: remove empty lines and fix indentation
* Clean up: remove leftover blank lines and fix spacing
* chore: fix trailing ... | [
{
"path": "docs/ops.md",
"patch": "@@ -22,7 +22,7 @@ Legend:\n | ARANGE | ❌ | ✅ | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | ❌ |\n | ARGMAX | ❌ | ✅ | ✅ | ✅ | ✅ | ❌ | ✅ | ✅ | ❌ |\n | ARGSORT | ❌ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ |\n-| ... | 2025-10-20T08:08:32 |
denoland/deno | 478bc5a905048f3ccafc51369e61b4bdeffe5b5b | cec91f6c0e1e5e3259161e6d33365f6d790e1b8b | fix(ext/node): add stub for ServerResponse.writeEarlyHints (#32029)
Ref https://github.com/denoland/deno/issues/31176 | [
{
"path": "ext/node/polyfills/http.ts",
"patch": "@@ -1572,6 +1572,10 @@ export type ServerResponse = {\n end(chunk?: any, encoding?: any, cb?: any): void;\n \n flushHeaders(): void;\n+ writeEarlyHints(\n+ hints: Record<string, string | string[]>,\n+ callback?: () => void,\n+ ): void;\n _impli... | 2026-02-03T17:35:08 |
vuejs/vue | 7010d0ffc52809498ee3de4087a6b4b70c62727b | 8acfdb31d2b15f2e49579b380fdc1b14472eb836 | chore(model-select.spec): add a check for value binding and fix some typo (#5092)
* chore: add a check for value binding
* chore: fix some typo | [
{
"path": "test/unit/features/directives/model-select.spec.js",
"patch": "@@ -80,9 +80,14 @@ describe('Directive v-model select', () => {\n waitForUpdate(function () {\n expect(vm.$el.value).toBe('3')\n expect(vm.$el.childNodes[2].selected).toBe(true)\n+\n updateSelect(vm.$el, '1')\n ... | 2017-03-08T02:14:55 |
huggingface/transformers | 080d704af11d8e0cff7fc1156166b7912b198d36 | c01ceffeb48157d3b7fd3f44f5a58a553b9f172d | Fix Pylint warnings (#41644)
* Fix pylint warnings
Signed-off-by: Yuanyuan Chen <cyyever@outlook.com>
* More fixes
Signed-off-by: Yuanyuan Chen <cyyever@outlook.com>
* Raise with an exception
Signed-off-by: Yuanyuan Chen <cyyever@outlook.com>
---------
Signed-off-by: Yuanyuan Chen <cyyever@outlook.com> | [
{
"path": "examples/legacy/seq2seq/run_distributed_eval.py",
"patch": "@@ -252,8 +252,7 @@ def gather_results_from_each_node(num_replicas, save_dir, timeout) -> list[dict[\n return json_data\n except JSONDecodeError:\n continue\n- else:\n- raise TimeoutError(\"Rank ... | 2025-10-17T13:09:42 |
ggml-org/llama.cpp | 7062dd8460685d6700ed7621e50a22c6f3400ca3 | 0398752dd450dfabdd1b9e289f6364c2600f6ab5 | llama-context: only warn on pooling_type when user specified (#16674)
The unexpeced pooling_type warning was incorrectly shown when users did not
specify the --pooling-type parameter. In this case, the parameter
defaults to `LLAMA_POOLING_TYPE_UNSPECIFIED (-1)`, and the code
automatically applies the model's default p... | [
{
"path": "src/llama-context.cpp",
"patch": "@@ -2346,7 +2346,8 @@ llama_context * llama_init_from_model(\n return nullptr;\n }\n \n- if (params.pooling_type != model->hparams.pooling_type) {\n+ if (params.pooling_type != LLAMA_POOLING_TYPE_UNSPECIFIED &&\n+ params.pooling_type != m... | 2025-10-20T07:44:21 |
denoland/deno | cec91f6c0e1e5e3259161e6d33365f6d790e1b8b | b486c63f282fe6c294097aaea9c809305bf7bea8 | fix(cli): pull in tunnel fix for windows (#32033) | [
{
"path": "Cargo.lock",
"patch": "@@ -3047,14 +3047,15 @@ dependencies = [\n \n [[package]]\n name = \"deno_tunnel\"\n-version = \"0.8.0\"\n+version = \"0.8.1\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"cbe45dacb6e0d2a646b22a12fea81ba2f7128202f9ee91602782b9208da123b... | 2026-02-03T16:21:25 |
ollama/ollama | 459f4a7889f4acf30ef2542287becf2308ff51ef | cbfff4f86869374026e0f5fddc86269f95dea8c7 | fix: ollama host for hostname | [
{
"path": "api/client.go",
"patch": "@@ -52,8 +52,10 @@ func ClientFromEnvironment() (*Client, error) {\n \thost, port, err := net.SplitHostPort(hostport)\n \tif err != nil {\n \t\thost, port = \"127.0.0.1\", \"11434\"\n-\t\tif ip := net.ParseIP(strings.Trim(os.Getenv(\"OLLAMA_HOST\"), \"[]\")); ip != nil {... | 2023-10-20T18:32:28 |
vuejs/vue | 8acfdb31d2b15f2e49579b380fdc1b14472eb836 | be9ac624c81bb698ed75628fe0cbeaba4a2fc991 | fix a typo on type definition name (#5103) | [
{
"path": "src/compiler/codegen/index.js",
"patch": "@@ -7,7 +7,7 @@ import { camelize, no } from 'shared/util'\n \n type TransformFunction = (el: ASTElement, code: string) => string;\n type DataGenFunction = (el: ASTElement) => string;\n-type DirctiveFunction = (el: ASTElement, dir: ASTDirective, warn: Fun... | 2017-03-06T08:56:22 |
ggml-org/llama.cpp | 4f73d0a95120687e2c527739f771330a5271259a | cec5edbcaec69bbf6d5851cabce4ac148be41701 | ci : fix binaries release failure for s390x (binaries may not work yet) (#16664)
* devops: initial patch
Signed-off-by: Aaron Teo <aaron.teo1@ibm.com>
* devops: forgot the z15 suffix
Signed-off-by: Aaron Teo <aaron.teo1@ibm.com>
* devops: attempt at impl GGML_CPU_ALL_VARIANTS for s390x
Signed-off-by: Aaron Teo <a... | [
{
"path": "ggml/src/CMakeLists.txt",
"patch": "@@ -307,6 +307,10 @@ function(ggml_add_cpu_backend_variant tag_name)\n foreach (feat ${ARGN})\n set(GGML_INTERNAL_${feat} ON)\n endforeach()\n+ elseif (GGML_SYSTEM_ARCH STREQUAL \"s390x\")\n+ foreach (feat ${ARGN})\n+ ... | 2025-10-19T21:06:39 |
denoland/deno | b486c63f282fe6c294097aaea9c809305bf7bea8 | 0aa1fe12be1e3e71934eaf51037db67dcad00f37 | fix(ext/node): add zstd compression support to node:zlib (#32025)
This commit improves impl of `node:zlib` module by adding zstd
compression support.
Several Node compat tests were enabled, more will be enabled in a follow
up.
---------
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com> | [
{
"path": "Cargo.lock",
"patch": "@@ -2552,6 +2552,7 @@ dependencies = [\n \"x25519-dalek\",\n \"x509-parser\",\n \"yoke 0.7.4\",\n+ \"zstd\",\n ]\n \n [[package]]",
"additions": 1,
"deletions": 0,
"language": "Unknown"
},
{
"path": "ext/node/Cargo.toml",
"patch": "@@ -104,6 +104,... | 2026-02-03T15:35:17 |
ollama/ollama | 7ed5a39bc7d41d809d0bcbc010344286cad7a6bc | cc1d03f4ec655cbbbd3c36084fb9d09a0f4aab5c | simpler check for model loading compatibility errors | [
{
"path": "llm/llama.go",
"patch": "@@ -18,7 +18,6 @@ import (\n \t\"path\"\n \t\"path/filepath\"\n \t\"runtime\"\n-\t\"slices\"\n \t\"strconv\"\n \t\"strings\"\n \t\"sync\"\n@@ -286,7 +285,7 @@ func (w *StatusWriter) Write(b []byte) (int, error) {\n \treturn os.Stderr.Write(b)\n }\n \n-func newLlama(model ... | 2023-10-19T18:50:45 |
vuejs/vue | be9ac624c81bb698ed75628fe0cbeaba4a2fc991 | 61930e0cc6d7ed8873251108ac6ea6c08b0f01ad | chore(src): fix some typos (#5104) | [
{
"path": "src/core/observer/dep.js",
"patch": "@@ -34,7 +34,7 @@ export default class Dep {\n }\n \n notify () {\n- // stablize the subscriber list first\n+ // stabilize the subscriber list first\n const subs = this.subs.slice()\n for (let i = 0, l = subs.length; i < l; i++) {\n sub... | 2017-03-06T08:54:30 |
ggml-org/llama.cpp | ee09828cb057460b369576410601a3a09279e23c | e56abd2098dd2e2b0804691b93c13b48ae421627 | HIP: fix GPU_TARGETS (#16642) | [
{
"path": "ci/run.sh",
"patch": "@@ -75,7 +75,7 @@ if [ ! -z ${GG_BUILD_ROCM} ]; then\n exit 1\n fi\n \n- CMAKE_EXTRA=\"${CMAKE_EXTRA} -DAMDGPU_TARGETS=${GG_BUILD_AMDGPU_TARGETS}\"\n+ CMAKE_EXTRA=\"${CMAKE_EXTRA} -DGPU_TARGETS=${GG_BUILD_AMDGPU_TARGETS}\"\n fi\n \n if [ ! -z ${GG_BUILD_SYC... | 2025-10-18T12:47:32 |
ollama/ollama | 7e547c6833ea7807304bb7d9896935574ae6aca7 | 689842b9ff7ddc8c92ad42b576090dcde36f17cf | s/message/error/ | [
{
"path": "server/routes.go",
"patch": "@@ -350,7 +350,7 @@ func PushModelHandler(c *gin.Context) {\n func CreateModelHandler(c *gin.Context) {\n \tvar req api.CreateRequest\n \tif err := c.ShouldBindJSON(&req); err != nil {\n-\t\tc.JSON(http.StatusBadRequest, gin.H{\"message\": err.Error()})\n+\t\tc.JSON(h... | 2023-10-18T22:56:56 |
denoland/deno | 0aa1fe12be1e3e71934eaf51037db67dcad00f37 | c006bba8061e2d96004823c64287515937b0897d | fix: add raw.esm.sh to default `--allow-import` list (#32030)
Closes https://github.com/denoland/deno/issues/31015 | [
{
"path": "cli/args/flags.rs",
"patch": "@@ -4574,7 +4574,7 @@ fn permission_args(app: Command, requires: Option<&'static str>) -> Command {\n <g>-W, --allow-write[=<<PATH>...]</> Allow file system write access. Optionally specify allowed paths.\n <p... | 2026-02-03T15:21:29 |
huggingface/transformers | 10de06dacef06605be3296f776d4122697637d6c | def9a7ef057b13d04aeeaa150e3ce63afa151d4e | 🚨 [v5] Refactor RoPE for layer types (#39847)
* update
* batch update model code
* typos
* too many diffs, dump
* dump again
* another dump
* fix copies
* make `rope_scaling_dict` self attr
* fix a few more tests
* another update
* fix a few more tests, hopefully last ones
* fox copies
* fix copies again
... | [
{
"path": "docs/source/en/_toctree.yml",
"patch": "@@ -1253,6 +1253,8 @@\n title: Importing Utilities\n - local: internal/time_series_utils\n title: Utilities for Time Series\n+ - local: internal/rope_utils\n+ title: Rotary Embeddings Utilities\n title: Internal helpers\n - sec... | 2025-10-17T12:57:27 |
vuejs/vue | 61930e0cc6d7ed8873251108ac6ea6c08b0f01ad | 2dc177ffb3fa0ede18841806533ba034e71195d5 | chore(test): fix some typos (#5101) | [
{
"path": "test/e2e/specs/todomvc.js",
"patch": "@@ -85,7 +85,7 @@ module.exports = {\n createNewItem('test')\n .assert.count('.todo', 2)\n \n- // complted filter\n+ // completed filter\n browser.click('.filters li:nth-child(3) a')\n .assert.count('.todo', 2)\n .assert.coun... | 2017-03-06T08:50:49 |
ggml-org/llama.cpp | 81387858f1fbcc1acedbd308486e1016618ca8f8 | 66b0dbcb2d462e7b70ba5a69ee8c3899ac2efb1c | opencl: transposed gemm/gemv moe kernel with mxfp4,f32 (#16602)
* opencl: transposed gemm/gemv moe kernel with mxfp4,f32
* add restore kernel for moe transpose
* fix trailing whitespaces
* resolve compilation warnings | [
{
"path": "ggml/src/ggml-opencl/CMakeLists.txt",
"patch": "@@ -91,6 +91,8 @@ set(GGML_OPENCL_KERNELS\n mul_mv_id_q8_0_f32_flat\n mul_mv_id_mxfp4_f32\n mul_mv_id_mxfp4_f32_flat\n+ gemm_moe_mxfp4_f32\n+ gemv_moe_mxfp4_f32\n mul_mm_f32_f32_l4_lm\n mul_mm_f16_f32_l4_lm\n mul_mm_q8_... | 2025-10-18T00:55:32 |
ollama/ollama | a7dad24d92a56a1799456ad6401953575e554c05 | 6b213216d51f2d3652bb114c619fe59b762644bd | add error for `falcon` and `starcoder` vocab compatibility (#844)
add error for falcon and starcoder vocab compatibility
---------
Co-authored-by: Bruce MacDonald <brucewmacdonald@gmail.com> | [
{
"path": "llm/llama.go",
"patch": "@@ -18,6 +18,7 @@ import (\n \t\"path\"\n \t\"path/filepath\"\n \t\"runtime\"\n+\t\"slices\"\n \t\"strconv\"\n \t\"strings\"\n \t\"sync\"\n@@ -285,7 +286,7 @@ func (w *StatusWriter) Write(b []byte) (int, error) {\n \treturn os.Stderr.Write(b)\n }\n \n-func newLlama(model ... | 2023-10-19T16:18:31 |
denoland/deno | 13a5674462ab9e7d8c532f5a85f2e5b9c2445ce2 | 0b38d25ba7c1893757e15fbb2a68537b0191321f | fix: flaky cron socket tests (#32023) | [
{
"path": "tests/specs/run/unstable_cron_socket_basic/server.js",
"patch": "@@ -45,8 +45,8 @@ outer: while (true) {\n setTimeout(async () => {\n const invocation =\n JSON.stringify({ kind: \"invoke\", name: firstCronName }) + \"\\n\";\n+ console.error(\"[CRON SERVER] I... | 2026-02-03T11:34:54 |
huggingface/transformers | 0beda2aa3a24fb24a5d39d0c5f1c9ba52c6587ce | 0b3aef1da94c853b1070f12f4caea5d9d05e2f56 | Fix MarkDown syntax (#41676)
Signed-off-by: Yuanyuan Chen <cyyever@outlook.com> | [
{
"path": "docs/source/en/executorch.md",
"patch": "@@ -29,4 +29,5 @@ optimum-cli export executorch \\\n --qembedding 8w \\\n --output_dir=\"hf_smollm2\"\n ```\n+\n Run `optimum-cli export executorch --help` to see all export options. For detailed export instructions, check the [README](optimum/expo... | 2025-10-17T12:44:27 |
vuejs/vue | eb58694f6fec3e2d32c69a4f13a89650bca2e82b | c683caff3ae627ffc0a0d3a8357101c3b4a5653e | chore(filter.spec): fix variable-- test case (#5094) | [
{
"path": "test/unit/features/filter/filter.spec.js",
"patch": "@@ -125,7 +125,7 @@ describe('Filters', () => {\n it('handle division with variable--', () => {\n const vm = new Vue({\n data: { a: 7 },\n- template: `<div>{{ a++ / 2 | double }}</div>`,\n+ template: `<div>{{ a-- / 2 | dou... | 2017-03-05T00:40:49 |
ggml-org/llama.cpp | 66b0dbcb2d462e7b70ba5a69ee8c3899ac2efb1c | 41386cf365d894134ee0813d15e2f5d76f6a4d8e | llama-model: fix insonsistent ctxs <-> bufs order (#16581) | [
{
"path": "src/llama-model.cpp",
"patch": "@@ -421,11 +421,8 @@ struct llama_model::impl {\n llama_mlocks mlock_bufs;\n llama_mlocks mlock_mmaps;\n \n- // contexts where the model tensors metadata is stored\n- std::vector<ggml_context_ptr> ctxs;\n-\n- // the model memory buffers for the ten... | 2025-10-17T15:41:09 |
huggingface/transformers | 7370a1babde67227464d7d7fb15fb19f29c6ea86 | 151d6adc8697a65721764712df3908170efdf8fd | path validation for security reason (#41256)
fix
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": "src/transformers/convert_slow_tokenizers_checkpoints_to_fast.py",
"patch": "@@ -15,6 +15,7 @@\n \n import argparse\n import os\n+from pathlib import Path\n \n import transformers\n \n@@ -69,6 +70,15 @@ def convert_slow_checkpoint_to_fast(tokenizer_name, checkpoint_name, dump_path,\n i... | 2025-10-17T10:36:04 |
denoland/deno | 0b38d25ba7c1893757e15fbb2a68537b0191321f | cfc0451d9552d374441b73f322e99a0c3518a5e6 | fix(ext/node): make `child_process` stdio streams Socket instances (#31975)
This PR fixes child process stdio streams (`stdin`, `stdout`, `stderr`)
to be instances of `Socket` from `node:net`, matching Node.js behavior. | [
{
"path": "ext/node/polyfills/internal/child_process.ts",
"patch": "@@ -156,6 +156,8 @@ function flushStdio(subprocess: ChildProcess) {\n // StreamBase, so it can be used with node streams\n class StreamResource implements StreamBase {\n #rid: number;\n+ #isUnref = false;\n+ #pendingPromises: Set<Promis... | 2026-02-02T18:25:21 |
vuejs/vue | 62e4f2b3d1281297e1671b924c7fb932b56e1961 | 40bc5923ae69062f6bbd5f3cba34e2a1a3f1cf70 | chore: fix some closetag mismatches (#5088) | [
{
"path": "test/unit/features/component/component-slot.spec.js",
"patch": "@@ -153,7 +153,7 @@ describe('Component slot', () => {\n b: 2,\n show: true\n },\n- template: '<test :show=\"show\"><p slot=\"b\">{{b}}</a><p>{{a}}</p></test>',\n+ template: '<test :show=\"show\"><p sl... | 2017-03-04T15:10:11 |
ollama/ollama | 730996e5306f50b9dd7e9159ca0f24aa22394144 | ce6197a8e00cb8bc44d4fd1eb89d1b2d439ebf75 | use TrimPrefix instead of TrimLeft | [
{
"path": "llm/llama.go",
"patch": "@@ -465,7 +465,7 @@ func (llm *llama) Predict(ctx context.Context, prevContext []int, prompt string,\n \t}\n \n \t// Remove leading spaces from prevConvo if present\n-\tprevConvo = strings.TrimLeft(prevConvo, \" \")\n+\tprevConvo = strings.TrimPrefix(prevConvo, \" \")\n \... | 2023-10-18T20:51:30 |
huggingface/transformers | 151d6adc8697a65721764712df3908170efdf8fd | 252d7cd9524e561171bea3b7474f96cef9fd3465 | Remove require_torch_bf16_gpu (#40979)
* More cleanup
Signed-off-by: Yuanyuan Chen <cyyever@outlook.com>
* Remove more functions
Signed-off-by: Yuanyuan Chen <cyyever@outlook.com>
* More fixes
Signed-off-by: Yuanyuan Chen <cyyever@outlook.com>
---------
Signed-off-by: Yuanyuan Chen <cyyever@outlook.com>
Co-aut... | [
{
"path": "src/transformers/testing_utils.py",
"patch": "@@ -142,7 +142,6 @@\n is_tokenizers_available,\n is_torch_available,\n is_torch_bf16_available_on_device,\n- is_torch_bf16_gpu_available,\n is_torch_fp16_available_on_device,\n is_torch_greater_or_equal,\n is_torch_hpu_avail... | 2025-10-17T10:35:19 |
denoland/deno | cfc0451d9552d374441b73f322e99a0c3518a5e6 | 22a5f7109df9c124c14fe90da6e4f054f974dc8a | fix: support DENO_SERVE_ADDRESS not being applied to the first server (#31982) | [
{
"path": "ext/http/00_serve.ts",
"patch": "@@ -733,7 +733,6 @@ function serve(arg1, arg2) {\n if (serveAddressOverrideConsumed) {\n return serveInner(options, handler);\n }\n- serveAddressOverrideConsumed = true;\n \n const {\n 0: overrideKind,\n@@ -742,6 +741,8 @@ function serve(arg1, arg2)... | 2026-02-02T15:42:38 |
ggml-org/llama.cpp | 41386cf365d894134ee0813d15e2f5d76f6a4d8e | 3d4e86bbeb15f487d6da6174ba6191b7c212cc25 | rpc : report actual free memory (#16616)
* rpc : report actual free memory
Start reporting the free memory on every device instead of using
fixed values. Now llama-cli users can get a nice memory breakdown
when using RPC devices.
* drop --mem in rpc-server | [
{
"path": "ggml/include/ggml-rpc.h",
"patch": "@@ -21,8 +21,7 @@ GGML_BACKEND_API ggml_backend_buffer_type_t ggml_backend_rpc_buffer_type(const c\n GGML_BACKEND_API void ggml_backend_rpc_get_device_memory(const char * endpoint, uint32_t device, size_t * free, size_t * total);\n \n GGML_BACKEND_API void ggml... | 2025-10-17T15:02:52 |
vuejs/vue | d6999c19c4c18d5eedfd3a7741e17b0e34e8a8df | 1b38a261c5ad852da1026d4058b1100e075f8f4e | Fix unnecessary conditional. (#5054) | [
{
"path": "src/core/util/lang.js",
"patch": "@@ -29,14 +29,13 @@ const bailRE = /[^\\w.$]/\n export function parsePath (path: string): any {\n if (bailRE.test(path)) {\n return\n- } else {\n- const segments = path.split('.')\n- return function (obj) {\n- for (let i = 0; i < segments.length... | 2017-03-03T04:04:04 |
ollama/ollama | ce6197a8e00cb8bc44d4fd1eb89d1b2d439ebf75 | 46b9953f32d665010367f55362aff41b4b338a8d | removed redundant strings.CutPrefix from Decode | [
{
"path": "llm/llama.go",
"patch": "@@ -668,9 +668,6 @@ func (llm *llama) Decode(ctx context.Context, tokens []int) (string, error) {\n \t\treturn \"\", fmt.Errorf(\"unmarshal encode response: %w\", err)\n \t}\n \n-\t// decoded content contains a leading whitespace\n-\tdecoded.Content, _ = strings.CutPrefix... | 2023-10-18T20:47:20 |
huggingface/transformers | 252d7cd9524e561171bea3b7474f96cef9fd3465 | 415cb37708d915acd257a5dc0a1a2e5b791c70d1 | Remove deprecated `use_auth_token` parameter (#41666)
* Remove deprecated use_auth_token
* code styl
* fix test
* Update examples/pytorch/speech-recognition/README.md | [
{
"path": "docs/source/en/hpo_train.md",
"patch": "@@ -37,7 +37,6 @@ def model_init(trial):\n config=config,\n cache_dir=model_args.cache_dir,\n revision=model_args.model_revision,\n- token=True if model_args.use_auth_token else None,\n )\n ```\n ",
"additions": 0,
... | 2025-10-17T09:57:46 |
ggml-org/llama.cpp | 342c728d031d50673feded797520a44127d73379 | ababae7e1ec3e9cfdab0322ee55ea3389e82a4d5 | ggml : fix SpaceMit IME array out-of-bounds in task assignment (#16629)
Fix incorrect task-to-batch index calculation in the quantization phase.
The bug caused out-of-bounds access to qnbitgemm_args array when
compute_idx exceeded per_gemm_block_count_m, leading to invalid
pointer dereferences and SIGBUS errors.
Cor... | [
{
"path": "ggml/src/ggml-cpu/spacemit/ime.cpp",
"patch": "@@ -485,8 +485,9 @@ template <typename BLOC_TYPE, int64_t INTER_SIZE, int64_t NB_COLS> class tensor_\n int32_t start = ith * task_per_thread;\n int32_t end = std::min((ith ... | 2025-10-17T10:01:23 |
denoland/deno | 22a5f7109df9c124c14fe90da6e4f054f974dc8a | 7ab62a769be154c0926fe8be640d48674eb79614 | fix: run on pre-Windows 10 version 1709 (#32002) | [
{
"path": "Cargo.lock",
"patch": "@@ -3920,7 +3920,7 @@ source = \"registry+https://github.com/rust-lang/crates.io-index\"\n checksum = \"33d852cb9b869c2a9b3df2f71a3074817f01e1844f839a144f5fcef059a4eb5d\"\n dependencies = [\n \"libc\",\n- \"windows-sys 0.59.0\",\n+ \"windows-sys 0.52.0\",\n ]\n \n [[packag... | 2026-02-02T15:40:35 |
vuejs/vue | 3294eba5a572f03290ce38f15625732dafd8e45d | 0b902e0c28f4f324ffb8efbc9db74127430f8a42 | fix v-on .left .right compat with keyboard events (fix #5046) | [
{
"path": "src/compiler/codegen/events.js",
"patch": "@@ -29,9 +29,9 @@ const modifierCode: { [key: string]: string } = {\n shift: genGuard(`!$event.shiftKey`),\n alt: genGuard(`!$event.altKey`),\n meta: genGuard(`!$event.metaKey`),\n- left: genGuard(`$event.button !== 0`),\n- middle: genGuard(`$eve... | 2017-03-03T03:40:15 |
huggingface/transformers | 415cb37708d915acd257a5dc0a1a2e5b791c70d1 | 1eb45cd61dd9068e9ce53a216bd0bfa6f62d0548 | torch 2.9 still don't ❤️ torchcodec 0.8 💔 (#41686)
fix
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": "docker/examples-torch.dockerfile",
"patch": "@@ -5,7 +5,7 @@ USER root\n RUN apt-get update && apt-get install -y --no-install-recommends libsndfile1-dev espeak-ng time git g++ cmake pkg-config openssh-client git-lfs ffmpeg curl\n ENV UV_PYTHON=/usr/local/bin/python\n RUN pip --no-cache-dir inst... | 2025-10-17T09:57:28 |
ollama/ollama | 565648f3f7c17eb0a6e59a89ab2651ae4ff0fc8d | 3a2477174f19fcbc9a042161ad42bb4065d1119f | relay CUDA errors to the client (#825) | [
{
"path": "llm/llama.go",
"patch": "@@ -183,12 +183,12 @@ type llamaHyperparameters struct {\n }\n \n type Running struct {\n-\tPort int\n-\tCmd *exec.Cmd\n-\tCancel context.CancelFunc\n-\texitOnce sync.Once\n-\texitCh chan error // channel to receive the exit status of the subprocess\n-\texitE... | 2023-10-18T19:36:56 |
ggml-org/llama.cpp | ababae7e1ec3e9cfdab0322ee55ea3389e82a4d5 | b19491599d4d42c606601d75e95c1d1de3291f8e | webui: reorganize settings layout (#16607)
* webui: reorganize settings layout
* chore: update webui build output
* fix: remove unused variable
* chore: update webui build output | [
{
"path": "tools/server/webui/src/lib/components/app/chat/ChatSettings/ChatSettingsDialog.svelte",
"patch": "@@ -4,7 +4,7 @@\n \t\tFunnel,\n \t\tAlertTriangle,\n \t\tBrain,\n-\t\tCog,\n+\t\tCode,\n \t\tMonitor,\n \t\tSun,\n \t\tMoon,\n@@ -88,9 +88,59 @@\n \t\t\t]\n \t\t},\n \t\t{\n-\t\t\ttitle: 'Samplers',\... | 2025-10-17T08:35:03 |
denoland/deno | 9132ad958c83a0d0b199de12b69b877f63edab4c | b51441cc1bf99a0ccc66ff706a1887ee0a933d46 | fix(ext/node): escape more shell args (#31999)
Follow up to https://github.com/denoland/deno/pull/31838 | [
{
"path": "ext/node/polyfills/internal/child_process.ts",
"patch": "@@ -968,7 +968,16 @@ export function normalizeSpawnArguments(\n ]);\n \n if (options.shell) {\n- let command = ArrayPrototypeJoin([file, ...args], \" \");\n+ // When args are provided, escape them to prevent shell injection.\n+ ... | 2026-02-02T13:17:42 |
vuejs/vue | 0b902e0c28f4f324ffb8efbc9db74127430f8a42 | 46c3866b0fbad862d79200d52b83f2113807d913 | handle circular reference in looseEqual (fix #5055) | [
{
"path": "src/shared/util.js",
"patch": "@@ -211,7 +211,12 @@ export function looseEqual (a: mixed, b: mixed): boolean {\n const isObjectA = isObject(a)\n const isObjectB = isObject(b)\n if (isObjectA && isObjectB) {\n- return JSON.stringify(a) === JSON.stringify(b)\n+ try {\n+ return JSON... | 2017-03-03T02:48:53 |
huggingface/transformers | 1eb45cd61dd9068e9ce53a216bd0bfa6f62d0548 | 354567d955fbc5fbd70fc841b7a7bcc654bea3f1 | Fix ckpt in docs (#41659)
* fix ckpt in docs
* fix config ckpt | [
{
"path": "docs/source/en/model_doc/florence2.md",
"patch": "@@ -70,8 +70,8 @@ from transformers import AutoProcessor, Florence2ForConditionalGeneration\n url = \"https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/transformers/tasks/car.jpg?download=true\"\n image = Image.open(req... | 2025-10-17T09:00:34 |
ggml-org/llama.cpp | b19491599d4d42c606601d75e95c1d1de3291f8e | 9ad4f1931ee0f3b41d9355245ef744786aaae0aa | vulkan: fix debug build (add_rms_len/data not found) (#16624) | [
{
"path": "ggml/src/ggml-vulkan/vulkan-shaders/vulkan-shaders-gen.cpp",
"patch": "@@ -959,7 +959,7 @@ void write_output_files() {\n }\n \n std::string suffixes[2] = {\"_f32\", \"_f16\"};\n- for (auto op : {\"add\", \"sub\", \"mul\", \"div\", \"add_rms\"}) {\n+ for (std::string op : {\"add\", \... | 2025-10-17T07:31:04 |
denoland/deno | b51441cc1bf99a0ccc66ff706a1887ee0a933d46 | a7ddc6dea129c68250a84ac470d19f8b74d4f672 | fix: upgrade deno_core to 0.383.0 (#32014)
Closes https://github.com/denoland/deno/issues/32011 | [
{
"path": "Cargo.lock",
"patch": "@@ -1887,9 +1887,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_core\"\n-version = \"0.382.0\"\n+version = \"0.383.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"ff4bdf251dc4597ba3f646e2f007208c475e40b5a412c039b7c75ff277fe7b3... | 2026-02-02T12:33:42 |
vuejs/vue | 367f781f44cb77bb58e4acd2f52a9e27e280f67a | 2f751b5d9908968549e3aa05d546d3b5055110b1 | ssr: fix json bundle path (fix #5037) | [
{
"path": "src/server/create-bundle-renderer.js",
"patch": "@@ -43,9 +43,10 @@ export function createBundleRendererCreator (createRenderer: () => Renderer) {\n path.isAbsolute(bundle)\n ) {\n if (fs.existsSync(bundle)) {\n+ const isJSON = /\\.json$/.test(bundle)\n basedir = ba... | 2017-02-28T15:26:02 |
ollama/ollama | 5dc0cff4592132635a2445ef6ed80103927e08af | 08b0e04f40025c41dea6a40fa434acf9e2672d4a | fix whitespace removal | [
{
"path": "llm/llama.go",
"patch": "@@ -666,7 +666,7 @@ func (llm *llama) Decode(ctx context.Context, tokens []int) (string, error) {\n \t}\n \n \t// decoded content contains a leading whitespace\n-\tdecoded.Content, _ = strings.CutPrefix(decoded.Content, \"\")\n+\tdecoded.Content, _ = strings.CutPrefix(dec... | 2023-10-18T06:15:27 |
huggingface/transformers | 354567d955fbc5fbd70fc841b7a7bcc654bea3f1 | 4dd4133d3226d5b7a01ede9c4284384f1d62e532 | Adding superglue fast image processing (#41394)
* Default implementation - no time improvement
* Improved implementation - apparently 2 times faster with only simple function refactor
* elementary torch first approach, still need further implementation of torch first method
* torch-first approach finished
* refact... | [
{
"path": "docs/source/en/model_doc/superglue.md",
"patch": "@@ -88,16 +88,16 @@ processed_outputs = processor.post_process_keypoint_matching(outputs, image_size\n import torch\n from PIL import Image\n import requests\n- \n+\n processor = AutoImageProcessor.from_pretrained(\"magic-leap-c... | 2025-10-16T19:34:09 |
ggml-org/llama.cpp | 9ad4f1931ee0f3b41d9355245ef744786aaae0aa | 79967ec596c0dacfd2251b085a57e79df292b1cc | metal : add `CONV_TRANSPOSE_2D` (#16542)
* initial: headers and metal-device.cpp updates
* adding conv_transpose_2d
* fix type
* fix type: int32->int64
* Update ggml/src/ggml-metal/ggml-metal.metal
Co-authored-by: Georgi Gerganov <ggerganov@gmail.com>
* Update ggml/src/ggml-metal/ggml-metal.metal
Co-authored-by... | [
{
"path": "ggml/src/ggml-metal/ggml-metal-device.cpp",
"patch": "@@ -1406,6 +1406,31 @@ ggml_metal_pipeline_t ggml_metal_library_get_pipeline_conv_transpose_1d(ggml_met\n return res;\n }\n \n+ggml_metal_pipeline_t ggml_metal_library_get_pipeline_conv_transpose_2d(ggml_metal_library_t lib, const ggml_ten... | 2025-10-17T06:33:58 |
denoland/deno | 7c5447f08306f777a46dbb209faed3d02d67e64d | c78df6f9888b422e44a26ebb5ae2561d5ac5c752 | fix(ext/node): error formatting compatibility (#31970)
Towards #29801
Gives better error formating based on [Node's
implementation](https://github.com/nodejs/node/blob/70f6b58ac655234435a99d72b857dd7b316d34bf/lib/internal/util/inspect.js#L1661),
especially on `AggregateError` instance / nested errors. This in turn
al... | [
{
"path": "ext/web/01_console.js",
"patch": "@@ -35,38 +35,54 @@ import {\n } from \"ext:core/ops\";\n import * as ops from \"ext:core/ops\";\n const {\n+ AggregateError,\n+ AggregateErrorPrototype,\n Array,\n ArrayBufferPrototypeGetByteLength,\n+ ArrayBuffer,\n+ ArrayBufferPrototype,\n+ ArrayFrom,... | 2026-02-02T09:45:07 |
vuejs/vue | 7963b3d32c888326ee19c06ea1c3b70bec28c540 | 00648f00af8d2a94beea0cfb5689094cff6827b0 | Fix comment typo in normalize-children.js (#5014) | [
{
"path": "src/core/vdom/helpers/normalize-children.js",
"patch": "@@ -24,7 +24,7 @@ export function simpleNormalizeChildren (children: any) {\n return children\n }\n \n-// 2. When the children contains constrcuts that always generated nested Arrays,\n+// 2. When the children contains constructs that alwa... | 2017-02-26T20:30:25 |
huggingface/transformers | 4dd4133d3226d5b7a01ede9c4284384f1d62e532 | eefbf4ac8b1f34e30e8eaeb0130f75666a60e57e | :globe_with_meridians: [i18n-KO] Translated `ko-LFM2.md` to Korean (#41502)
* feat: nmt draft
* fix: manual edits
* Update docs/source/ko/model_doc/lfm2.md
Co-authored-by: Yijun Lee <119404328+yijun-lee@users.noreply.github.com>
* Update docs/source/ko/model_doc/lfm2.md
Co-authored-by: Ahnjj_DEV <ahnjj.dev@gmail.... | [
{
"path": "docs/source/ko/_toctree.yml",
"patch": "@@ -603,7 +603,7 @@\n title: Jukebox\n - local: in_translation\n title: LED\n- - local: in_translation\n+ - local: model_doc/lfm2\n title: LFM2\n - local: in_translation\n title: LFM2-VL",
"additions... | 2025-10-16T18:29:04 |
ollama/ollama | b36b0b71f8753acc99ec5ddab748223c21ada3f2 | 094df3756393b49ca287a0a85702938fe76918aa | use cut prefix | [
{
"path": "llm/llama.go",
"patch": "@@ -531,16 +531,14 @@ func (llm *llama) Predict(ctx context.Context, prevContext []int, prompt string,\n \t\t\t// This handles the request cancellation\n \t\t\treturn ctx.Err()\n \t\tdefault:\n-\t\t\tline := scanner.Text()\n-\t\t\tif line == \"\" {\n+\t\t\tline := scanner... | 2023-10-16T23:31:56 |
ggml-org/llama.cpp | ceff6bb253dd306f5404d7ccb3f11fadafe71b52 | 1bb4f43380944e94c9a86e305789ba103f5e62bd | SYCL SET operator optimized for F32 tensors (#16350)
* SYCL/SET: implement operator + wire-up; docs/ops updates; element_wise & ggml-sycl changes
* sycl(SET): re-apply post-rebase; revert manual docs/ops.md; style cleanups
* move SET op to standalone file, GPU-only implementation
* Update SYCL SET operator for F32
... | [
{
"path": "ggml/src/ggml-sycl/ggml-sycl.cpp",
"patch": "@@ -42,6 +42,7 @@\n #include \"ggml-sycl/presets.hpp\"\n #include \"ggml-sycl/gemm.hpp\"\n #include \"ggml-sycl/set_rows.hpp\"\n+#include \"ggml-sycl/set.hpp\"\n #include \"ggml-sycl/sycl_hw.hpp\"\n #include \"ggml-sycl/getrows.hpp\"\n #include \"ggml-... | 2025-10-17T02:36:40 |
denoland/deno | c78df6f9888b422e44a26ebb5ae2561d5ac5c752 | d6fa98554f2e6f693730c1520a7d7d5add4995d0 | fix(ext/node): use primordials in `_fs_fchown.ts` (#32007)
Ref #24236
It doesn't seem like there's any tests for `fchown`? | [
{
"path": "ext/node/polyfills/_fs/_fs_fchown.ts",
"patch": "@@ -1,8 +1,5 @@\n // Copyright 2018-2026 the Deno authors. MIT license.\n \n-// TODO(petamoriken): enable prefer-primordials for node polyfills\n-// deno-lint-ignore-file prefer-primordials\n-\n import {\n type CallbackWithError,\n makeCallback... | 2026-02-01T11:15:23 |
huggingface/transformers | eefbf4ac8b1f34e30e8eaeb0130f75666a60e57e | 50ca781d7857ef72f7e9185fe9efbe7aed2691a4 | 🌐 [i18n-KO] Translated llama4.md to Korean (#40396)
* docs: ko: llama4.md
* feat: nmt draft
* fix: manual edits
* Update docs/source/ko/model_doc/llama4.md
Co-authored-by: YONGSANG <71686691+4N3MONE@users.noreply.github.com>
* Update docs/source/ko/model_doc/llama4.md
Co-authored-by: YONGSANG <71686691+4N3MONE@... | [
{
"path": "docs/source/ko/_toctree.yml",
"patch": "@@ -1101,7 +1101,7 @@\n title: LayoutXLM\n - local: in_translation\n title: LiLT\n- - local: in_translation\n+ - local: model_doc/llama4\n title: Llama4\n - local: in_translation\n title: Llava",
"ad... | 2025-10-16T18:28:27 |
ollama/ollama | bd93a94abdee7ceef24f13c529f2b04a6ea749fd | f55bdb6f106c5eff4a82a47a119fb747acb3acd1 | fix MB VRAM log output (#824) | [
{
"path": "llm/llama.go",
"patch": "@@ -249,7 +249,7 @@ func NumGPU(numLayer, fileSizeBytes int64, opts api.Options) int {\n \n \t\t// max number of layers we can fit in VRAM, subtract 8% to prevent consuming all available VRAM and running out of memory\n \t\tlayers := int(freeBytes/bytesPerLayer) * 92 / 10... | 2023-10-17T19:35:16 |
ggml-org/llama.cpp | 683fa6ba4ed3a23b939d3e11e6dc860bd47a0ccf | b22572e97dc51757d3ebe917a5a283385010ec68 | fix: added a normalization step for MathJax-style \[\] and \(\) delimiters (#16599)
* fix: added a normalization step for MathJax-style \[\] and \(\) delimiters
So inline and block equations are converted before KaTeX rendering,
enabling proper display of model-generated LaTeX in the WebUI
* chore: update webui buil... | [
{
"path": "tools/server/webui/src/lib/components/app/misc/MarkdownContent.svelte",
"patch": "@@ -154,9 +154,20 @@\n \t\treturn mutated ? tempDiv.innerHTML : html;\n \t}\n \n+\tfunction normalizeMathDelimiters(text: string): string {\n+\t\treturn text\n+\t\t\t.replace(/(^|[^\\\\])\\\\\\[((?:\\\\.|[\\s\\S])*?... | 2025-10-16T14:28:41 |
denoland/deno | d6fa98554f2e6f693730c1520a7d7d5add4995d0 | 51bd0803b8fe56ff20d054b54e9029acd3fb9f04 | fix(ext/node): enable defensive option on `DatabaseSync` (#32004)
Allows
https://github.com/nodejs/node/blob/v24.12.0/test/parallel/test-sqlite-config.js
to pass | [
{
"path": "ext/node/ops/sqlite/database.rs",
"patch": "@@ -23,6 +23,7 @@ use deno_core::v8_static_strings;\n use deno_permissions::OpenAccessKind;\n use deno_permissions::PermissionsContainer;\n use rusqlite::ffi as libsqlite3_sys;\n+use rusqlite::ffi::SQLITE_DBCONFIG_DEFENSIVE;\n use rusqlite::ffi::SQLITE_... | 2026-01-31T12:24:18 |
huggingface/transformers | 50ca781d7857ef72f7e9185fe9efbe7aed2691a4 | 8739fc05c463dfdf5729a69891cebfb7e52a6d60 | 🌐 [i18n-KO] Translated `code_llama.md` to Korean (#40558)
* docs: ko: code_llama.md
* feat: nmt draft
* fix: manual edits
* Apply suggestions from code review
Co-authored-by: Harheem Kim <49297157+harheem@users.noreply.github.com>
Co-authored-by: HyunZ118 <156191095+HyunZ118@users.noreply.github.com>
* Apply sug... | [
{
"path": "docs/source/ko/_toctree.yml",
"patch": "@@ -485,7 +485,7 @@\n title: CANINE\n - local: model_doc/codegen\n title: CodeGen\n- - local: in_translation\n+ - local: model_doc/code_llama\n title: CodeLlama\n - local: model_doc/cohere\n title: Coher... | 2025-10-16T18:27:46 |
ggml-org/llama.cpp | adc9b60f190c1016a09f439862fa1cbb302262ac | ee50ee1eadff58777ae746827b04de7ba0befc55 | ggml-cpu: replace putenv with setenv for const-correctness (#16573)
## Why it failed
When compiling with strict compiler flags (-Wwrite-strings -Werror=discarded-qualifiers),
the build fails with the following error:
```
cmake \
-S . \
-B ../llama.cpp.build \
--preset=x64-linux-gcc-debug \
-DCMAKE_INSTALL_PR... | [
{
"path": "ggml/src/ggml-cpu/ggml-cpu.c",
"patch": "@@ -3567,13 +3567,17 @@ void ggml_cpu_init(void) {\n #ifdef GGML_USE_OPENMP\n //if (!getenv(\"OMP_WAIT_POLICY\")) {\n // // set the wait policy to active, so that OpenMP threads don't sleep\n- // putenv(\"OMP_WAIT_P... | 2025-10-16T05:10:32 |
denoland/deno | 51bd0803b8fe56ff20d054b54e9029acd3fb9f04 | 7e2abb4c3165af017b49b0ef102c9e4691510676 | fix: Reload the `CronHandlerImpl` if necessary when the control socket receives new envs (#31996) | [
{
"path": "ext/cron/handler_impl.rs",
"patch": "@@ -24,6 +24,40 @@ impl CronHandlerImpl {\n Err(_) => Self::Local(LocalCronHandler::new()),\n }\n }\n+\n+ /// Check if the handler needs to be reloaded based on current environment.\n+ /// Returns a new handler if reload is needed, None otherwise... | 2026-01-30T21:59:25 |
vuejs/vue | cf7b90fbf7bb427da554cfec61a8310ca666a21f | 10e724fa78b54288709c0281ad558c4c2cae4fb3 | fix flow | [
{
"path": "src/platforms/web/runtime/modules/transition.js",
"patch": "@@ -4,6 +4,7 @@ import { once, isObject, toNumber } from 'shared/util'\n import { inBrowser, isIE9, warn } from 'core/util/index'\n import { mergeVNodeHook } from 'core/vdom/helpers/index'\n import { activeInstance } from 'core/instance/... | 2017-02-26T00:13:57 |
huggingface/transformers | 8739fc05c463dfdf5729a69891cebfb7e52a6d60 | 77b5ad65ee78d8089c61169c8473bece7c34a53f | [i18n-KO] Translated `big_bird.md` to Korean (#40445)
* docs: ko: BigBird.md
* feat: nmt draft
* fix: manual edits | [
{
"path": "docs/source/ko/_toctree.yml",
"patch": "@@ -461,7 +461,7 @@\n title: BertJapanese\n - local: model_doc/bertweet\n title: BERTweet\n- - local: in_translation\n+ - local: model_doc/big_bird\n title: BigBird\n - local: in_translation\n title: Big... | 2025-10-16T18:23:56 |
ggml-org/llama.cpp | ee50ee1eadff58777ae746827b04de7ba0befc55 | 7adc79c03234de9a20661fd6dbf2d02c32ca7acb | SYCL: Add GGML_OP_MEAN operator support (#16009)
* SYCL: Add GGML_OP_MEAN operator support
* SYCL: Fix formatting for GGML_OP_MEAN case
* Update ggml/src/ggml-sycl/ggml-sycl.cpp
Co-authored-by: Sigbjørn Skjæret <sigbjorn.skjaeret@scala.com>
---------
Co-authored-by: Sigbjørn Skjæret <sigbjorn.skjaeret@scala.com> | [
{
"path": "ggml/src/ggml-sycl/ggml-sycl.cpp",
"patch": "@@ -2151,6 +2151,30 @@ inline void ggml_sycl_op_sum_rows(ggml_backend_sycl_context & ctx, ggml_tensor *\n sum_rows_f32_sycl(src0_dd, dst_dd, ncols, nrows, main_stream);\n }\n \n+inline void ggml_sycl_op_mean(ggml_backend_sycl_context & ctx, ggml_te... | 2025-10-16T04:21:28 |
vuejs/vue | 6468e15194b8305fa85e2bb63b064152a366b400 | e7a2510e631bd25f46b4e1125b83a9236a50ff1d | fix release script tag handling | [
{
"path": "build/release.sh",
"patch": "@@ -30,18 +30,18 @@ if [[ $REPLY =~ ^[Yy]$ ]]; then\n cd packages/vue-template-compiler\n npm version $VERSION\n if [[ -z $RELEASE_TAG ]]; then\n- npm publish --tag $RELEASE_TAG\n- else\n npm publish\n+ else\n+ npm publish --tag $RELEASE_TAG\n fi\n... | 2017-02-24T23:26:08 |
denoland/deno | 3246e10ded5bcc989498d80f48785f0f7be3f832 | f4c20db6c9277582963ed441d69f91b532bf6404 | fix(ext/node): implement `sqlite`' `SQLTagStore` (#31945)
Implementation is based on Node.js v24.12.0
It passes test cases on
https://github.com/nodejs/node/blob/v24.12.0/test/parallel/test-sqlite-template-tag.js,
but since we don't yet implement `beforeEach` of `node:test` the test
will fail. I ported the tests to o... | [
{
"path": "ext/node/lib.rs",
"patch": "@@ -410,6 +410,7 @@ deno_core::extension!(deno_node,\n ops::perf_hooks::EldHistogram,\n ops::sqlite::DatabaseSync,\n ops::sqlite::Session,\n+ ops::sqlite::SQLTagStore,\n ops::handle_wrap::AsyncWrap,\n ops::handle_wrap::HandleWrap,\n ops::sqli... | 2026-01-30T10:01:23 |
huggingface/transformers | 77b5ad65ee78d8089c61169c8473bece7c34a53f | a9731a725eb1d7b3b7e11f0ad35a819fa4ee8b20 | 🌐 [i18n-KO] Translated sam_hq.md to Korean (#41340)
* fix: manual edits
* Apply suggestions from code review
Apply suggestions from code review
Co-authored-by: HyunSang Jang <tasker.dev103@gmail.com>
* Apply suggestions from code review
Apply suggestions from code review
Co-authored-by: Woojun Jung <4688005... | [
{
"path": "docs/source/ko/_toctree.yml",
"patch": "@@ -883,6 +883,8 @@\n title: SegFormer\n - local: in_translation\n title: SegGpt\n+ - local: model_doc/sam_hq\n+ title: Segment Anything High Quality (SAM-HQ)\n - local: in_translation\n title: SuperGlue\n ... | 2025-10-16T18:10:16 |
ggml-org/llama.cpp | 0cb7a0683b0529172472d74d21f05470a607f297 | d93f8439b08c4f35e13a41a7366901fdbe770fc8 | opencl: add q8_0 mm support (#16469)
* opencl: add mm_q8_0_f32
* opencl: fix data loading for incomplete tile
* opencl: use q8_0 mm for larger matrix
* opencl: add some tests to cover the path | [
{
"path": "ggml/src/ggml-opencl/CMakeLists.txt",
"patch": "@@ -93,6 +93,7 @@ set(GGML_OPENCL_KERNELS\n mul_mv_id_mxfp4_f32_flat\n mul_mm_f32_f32_l4_lm\n mul_mm_f16_f32_l4_lm\n+ mul_mm_q8_0_f32_l4_lm\n mul\n norm\n relu",
"additions": 1,
"deletions": 0,
"language": "Pla... | 2025-10-15T17:51:04 |
vuejs/vue | abfb4589a826936ae1a4422cc3db50805ddee831 | 5d12d52710f5ec71426cfe707ebfed3808a280a2 | fix weex tests | [
{
"path": "src/entries/weex-compiler.js",
"patch": "@@ -1,30 +1,3 @@\n /* @flow */\n \n-import { extend } from 'shared/util'\n-import { compile as baseCompile, baseOptions } from 'weex/compiler/index'\n-import { detectErrors } from 'compiler/error-detector'\n-\n-export function compile (\n- template: strin... | 2017-02-24T22:49:17 |
denoland/deno | f4c20db6c9277582963ed441d69f91b532bf6404 | fae7b29aacf26a94ef44302f18f0ef652ab6417d | fix(flags): correct zsh completions for script arg (#31994)
Closes https://github.com/denoland/deno/issues/31989
Closes https://github.com/denoland/deno/issues/29625
Closes https://github.com/denoland/deno/issues/25710 | [
{
"path": "Cargo.lock",
"patch": "@@ -894,18 +894,18 @@ dependencies = [\n \n [[package]]\n name = \"clap\"\n-version = \"4.5.47\"\n+version = \"4.5.56\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"7eac00902d9d136acd712710d71823fb8ac8004ca445a89e73a41d45aa712931\"\n+c... | 2026-01-30T00:03:12 |
huggingface/transformers | a9731a725eb1d7b3b7e11f0ad35a819fa4ee8b20 | bdbc2d037b1751c71b30a488f0a168deabef9a90 | 🌐 [i18n-KO] Translated `chat_extras.md` to Korean (#39863)
* docs: ko: chat_extras.md
* feat: nmt draft
* fix: manual edits
* Apply suggestions from code review
* Apply suggestions from code review
* Update docs/source/ko/chat_extras.md | [
{
"path": "docs/source/ko/_toctree.yml",
"patch": "@@ -84,6 +84,8 @@\n title: Transformers로 채팅하기\n - local: chat_templating\n title: 챗봇 템플릿 익히기\n+ - local: chat_extras\n+ title: Tools 와 RAG\n - local: in_translation\n title: (번역중) Multimodal templates\n - local: in_tran... | 2025-10-16T17:41:03 |
ggml-org/llama.cpp | d93f8439b08c4f35e13a41a7366901fdbe770fc8 | f9fb33f2630b4b4ba9081ce9c0c921f8cd8ba4eb | opencl: fix FA for f32 (#16584) | [
{
"path": "ggml/src/ggml-opencl/kernels/flash_attn_f32.cl",
"patch": "@@ -4,6 +4,7 @@\n #define ACC_TYPE4 float4\n #define DATA_TYPE float\n #define DATA_TYPE4 float4\n+#define MASK_DATA_TYPE half\n #define CONVERT_ACC4(x) (x)\n #define CONVERT_DATA4(x) (x)\n \n@@ -148,7 +149,7 @@ __kernel void flash_attn_f... | 2025-10-15T17:48:28 |
ollama/ollama | b7e137323a190845219206473db3c729b95638a5 | ad5ee20c7b5f9113dde3122848442a8cf9c6f08e | Fix a typo (#818) | [
{
"path": "docs/api.md",
"patch": "@@ -355,7 +355,7 @@ curl -X POST http://localhost:11434/api/embeddings -d '{\n \n ```json\n {\n- \"embeddings\": [\n+ \"embedding\": [\n 0.5670403838157654, 0.009260174818336964, 0.23178744316101074, -0.2916173040866852, -0.8924556970596313,\n 0.8785552978515625,... | 2023-10-17T13:00:15 |
vuejs/vue | 7d3309deed60fc86568a6e2e09f0ccdb7dc5ceea | d304eee296990994b0491b0abfde2e1c4bf2ec3a | fix transition appear class fallback (fix #4985) | [
{
"path": "src/platforms/web/runtime/modules/transition.js",
"patch": "@@ -68,9 +68,9 @@ export function enter (vnode: VNodeWithData, toggleDisplay: ?() => void) {\n return\n }\n \n- const startClass = isAppear ? appearClass : enterClass\n- const activeClass = isAppear ? appearActiveClass : enterAct... | 2017-02-24T20:36:16 |
denoland/deno | fae7b29aacf26a94ef44302f18f0ef652ab6417d | e85807a76fc6eae6200c0c2542803b321e6c9c58 | fix(types): correct types for Worker events (#31981)
<!--
Before submitting a PR, please read
https://docs.deno.com/runtime/manual/references/contributing
1. Give the PR a descriptive title.
Examples of good title:
- fix(std/http): Fix race condition in server
- docs(console): Update docstrings
- feat(... | [
{
"path": "cli/tsc/dts/lib.deno.shared_globals.d.ts",
"patch": "@@ -588,13 +588,13 @@ interface WorkerOptions {\n */\n interface Worker extends EventTarget {\n /** Event handler for error events. Fired when an error occurs in the worker's execution context. */\n- onerror: (this: Worker, e: ErrorEvent) =... | 2026-01-29T20:55:58 |
huggingface/transformers | bdbc2d037b1751c71b30a488f0a168deabef9a90 | fe11cbb808b4301399240e40c5cb6cca9bb00d4d | [Trainer] [Breaking change] `use_cache` default to `False` (#41585)
* use_cache default to `False` when training
* style
* Fix comment
* add checks
* style
* set
* switch | [
{
"path": "src/transformers/trainer.py",
"patch": "@@ -738,6 +738,10 @@ def __init__(\n self._train_batch_size = args.train_batch_size\n self._created_lr_scheduler = False\n \n+ # Set use_cache for the model\n+ if getattr(self.model, \"config\", None) is not None:\n+ ... | 2025-10-16T16:51:36 |
ggml-org/llama.cpp | 17304cbcc1dd24de7741cbe57925d58e90a98ac1 | 3e3cb19f6449f9168a128eaeae01f8f41b049acc | server : fix img token logs (#16595) | [
{
"path": "tools/server/server.cpp",
"patch": "@@ -3839,14 +3839,14 @@ struct server_context {\n \n {\n const auto token = slot.prompt.tokens[i];\n- const auto piece = common_token_... | 2025-10-15T13:53:12 |
ollama/ollama | fddb303f23e68ef80a028257554979b22addb438 | 9ef2fce33a4625da88d4201cdb5e3a074e268def | fix: format string wrong type | [
{
"path": "llm/llama.go",
"patch": "@@ -70,7 +70,7 @@ func chooseRunners(workDir, runnerType string) []ModelRunner {\n \t\tfiles, err := fs.Glob(llamaCppEmbed, path.Join(path.Dir(r.Path), \"*\"))\n \t\tif err != nil {\n \t\t\t// this is expected, ollama may be compiled without all runners packed in\n-\t\t\t... | 2023-10-16T23:14:12 |
vuejs/vue | d304eee296990994b0491b0abfde2e1c4bf2ec3a | 661d880075f6e5280884a91fd9ac949064cc10d5 | fix weex tests | [
{
"path": "test/weex/compiler/v-model.spec.js",
"patch": "@@ -14,7 +14,7 @@ describe('compile v-model', () => {\n it('should compile other component with whole $event as the value', () => {\n const { render, staticRenderFns, errors } = compile(`<div><foo v-model=\"x\" /></div>`)\n expect(render).n... | 2017-02-24T17:26:21 |
denoland/deno | 12a65dffdc8bdddcee97f7258a41b702f2772d5b | 1c9048f231a29e3ee92fafe3a8280f3ab38169a4 | fix(install): clean up associated config and lock files during uninstall (#31984)
This PR fixes an issue where `deno uninstall` would successfully remove
the executable but leave behind the associated hidden configuration
files (like `.<name>.deno.json`) in the bin directory. | [
{
"path": "cli/tools/installer/mod.rs",
"patch": "@@ -401,9 +401,28 @@ pub async fn uninstall(\n // There might be some extra files to delete\n // Note: tsconfig.json is legacy. We renamed it to deno.json.\n // Remove cleaning it up after January 2024\n+ // Use the base file path (without extension) ... | 2026-01-29T17:19:37 |
ggml-org/llama.cpp | 3e3cb19f6449f9168a128eaeae01f8f41b049acc | 5acd455460f457942d8dd02e3dd9b1eebfce99fe | llama-quant: add support for mmproj (#16592)
* llama-quant: add support for mmproj
* Update src/llama.cpp
Co-authored-by: Georgi Gerganov <ggerganov@gmail.com>
* check prefix instead
* small fix
---------
Co-authored-by: Georgi Gerganov <ggerganov@gmail.com> | [
{
"path": "src/llama-arch.cpp",
"patch": "@@ -5,6 +5,7 @@\n #include <map>\n \n static const std::map<llm_arch, const char *> LLM_ARCH_NAMES = {\n+ { LLM_ARCH_CLIP, \"clip\" }, // dummy, only used by llama-quantize\n { LLM_ARCH_LLAMA, \"llama\" },\n {... | 2025-10-15T12:48:08 |
huggingface/transformers | fe11cbb808b4301399240e40c5cb6cca9bb00d4d | 6344371a91e7aab4106a80f65ab6156180e35d29 | Erroring when KernelConfig is passed without use_kernels = True (#41657)
* update
* update | [
{
"path": "src/transformers/modeling_utils.py",
"patch": "@@ -4430,6 +4430,12 @@ def from_pretrained(\n \"loaded from GGUF files.\"\n )\n \n+ if kernel_config is not None and not use_kernels:\n+ logger.warning_once(\n+ \"A kernel_config wa... | 2025-10-16T16:08:46 |
ollama/ollama | cb4a80b6934c1b62c98a01aab4ae156ba340acc5 | 9ef2fce33a4625da88d4201cdb5e3a074e268def | fix: regression unsupported metal types
omitting `--n-gpu-layers` means use metal on macos which isn't correct
since ollama uses `num_gpu=0` to explicitly disable gpu for file types
that are not implemented in metal | [
{
"path": "llm/llama.go",
"patch": "@@ -292,13 +292,10 @@ func newLlama(model string, adapters []string, runners []ModelRunner, numLayers\n \t\t\"--rope-freq-base\", fmt.Sprintf(\"%f\", opts.RopeFrequencyBase),\n \t\t\"--rope-freq-scale\", fmt.Sprintf(\"%f\", opts.RopeFrequencyScale),\n \t\t\"--batch-size\"... | 2023-10-16T21:37:17 |
vuejs/vue | 661d880075f6e5280884a91fd9ac949064cc10d5 | 394679fc70343a4f693317e376df39a8216776e5 | fix component v-model with "value" binding expression (fix #5002) | [
{
"path": "src/compiler/directives/model.js",
"patch": "@@ -10,17 +10,22 @@ export function genComponentModel (\n ): ?boolean {\n const { number, trim } = modifiers || {}\n \n- let valueExpression = 'value'\n+ const baseValueExpression = '$$v'\n+ let valueExpression = baseValueExpression\n if (trim) ... | 2017-02-24T17:17:59 |
ggml-org/llama.cpp | 554fd578a5ed78a10f371f5850c6a69aa83df15a | fa882fd2b1bcb663de23af06fdc391489d05b007 | server : fix mtmd checkpoints (#16591) | [
{
"path": "tools/server/server.cpp",
"patch": "@@ -3812,7 +3812,7 @@ struct server_context {\n if (slot.n_past > 0 && slot.n_past < (int) slot.prompt.tokens.size()) {\n const auto pos_min = llama_memory_seq_pos_min(llama_get_memory(ctx), slot.id);\... | 2025-10-15T09:51:27 |
denoland/deno | 1c9048f231a29e3ee92fafe3a8280f3ab38169a4 | d155af667f0e57277dc992d1b9609d5e6712908d | tests: enable some node child-process tests (#31972)
Enable some tests that seems fixed with previous changes:
- parallel/test-child-process-exec-std-encoding.js
- parallel/test-child-process-exec-timeout-not-expired.js | [
{
"path": "tests/node_compat/config.jsonc",
"patch": "@@ -173,7 +173,9 @@\n \"parallel/test-child-process-exec-env.js\": {},\n \"parallel/test-child-process-exec-error.js\": {},\n \"parallel/test-child-process-exec-kill-throws.js\": {},\n+ \"parallel/test-child-process-exec-std-encoding.js\":... | 2026-01-29T13:36:43 |
huggingface/transformers | a408384a888fe341aa1ea343a41f486df5819bdb | f7c33abab3a6233a51d7d4fd116625be14df68ff | Improve package version check (#41661)
fix | [
{
"path": "src/transformers/utils/import_utils.py",
"patch": "@@ -52,7 +52,10 @@ def _is_package_available(pkg_name: str, return_version: bool = False) -> Union[\n try:\n # importlib.metadata works with the distribution package, which may be different from the import\n # name... | 2025-10-16T15:31:58 |
vuejs/vue | 394679fc70343a4f693317e376df39a8216776e5 | bc034d33a43b56f9e6275cef8330644e4d1ed1ab | ensure errors Array is always present in compiler output | [
{
"path": "src/platforms/web/compiler/index.js",
"patch": "@@ -58,6 +58,8 @@ export function compile (\n })\n if (process.env.NODE_ENV !== 'production') {\n compiled.errors = errors.concat(detectErrors(compiled.ast))\n+ } else {\n+ compiled.errors = errors\n }\n return compiled\n }",
"ad... | 2017-02-24T16:14:36 |
ggml-org/llama.cpp | fa882fd2b1bcb663de23af06fdc391489d05b007 | ffa059034c1e41f3e58363ef3c46d2fcf854bc4d | metal : avoid using Metal's gpuAddress property (#16576)
* metal : avoid using Metal's gpuAddress property
* metal : fix rope kernels buffer check | [
{
"path": "ggml/src/ggml-metal/ggml-metal-device.m",
"patch": "@@ -7,6 +7,8 @@\n \n #include <Metal/Metal.h>\n \n+#include <stdatomic.h>\n+\n #ifndef TARGET_OS_VISION\n #define TARGET_OS_VISION 0\n #endif\n@@ -22,6 +24,9 @@\n // overload of MTLGPUFamilyMetal3 (not available in some environments)\n static co... | 2025-10-14T17:33:05 |
denoland/deno | 98cde880a97c5d79b4d4769f5e3df8753a29ff7c | 812d567c31638cd5a64ced5909be2ba25f08d50e | chore(test): re-enable `parallel/test-util-isDeepStrictEqual.js` (#31968)
Closes #31632 as it's fixed by #31821 | [
{
"path": "tests/node_compat/config.jsonc",
"patch": "@@ -1450,12 +1450,7 @@\n \"parallel/test-util-deprecate-invalid-code.js\": {},\n \"parallel/test-util-inherits.js\": {},\n \"parallel/test-util-inspect-getters-accessing-this.js\": {},\n- \"parallel/test-util-isDeepStrictEqual.js\": {\n- ... | 2026-01-29T09:46:15 |
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.