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
denoland/deno
10128048bf30b6325d419d992af616cd2e8b9303
d63ae1979f816d61905fec637b39849217c178ed
fix(ext/node): validate process.exitCode and fix process constructor name (#32806) ## Summary - Validate `process.exitCode` setter to reject non-integer values with `ERR_INVALID_ARG_TYPE` (matching Node.js behavior) - Simplify `process.exit()` to delegate validation to the exitCode setter - Fix `invalidArgTypeHelper` ...
[ { "path": "ext/node/polyfills/process.ts", "patch": "@@ -117,10 +117,8 @@ export const execArgv: string[] = [];\n \n /** https://nodejs.org/api/process.html#process_process_exit_code */\n export const exit = (code?: number | string) => {\n- if (code || code === 0) {\n+ if (code !== undefined) {\n proc...
2026-03-18T19:34:16
huggingface/transformers
464dfa04460cf2c2b3fad6ebca6f11b81f663d4f
6a93635e1d6e5f94f15bdde84ac2477e86423e5e
Raise conversion errors after loading (#42807) * raise * comment * fix * add test * fix * add back return * small * raise after report * typos * fix * patch * switch name * doc * oupsi that was commented out
[ { "path": "src/transformers/core_model_loading.py", "patch": "@@ -409,7 +409,7 @@ def convert(\n config=None,\n hf_quantizer=None,\n missing_keys: Optional[MutableSet[str]] = None,\n- misc: Optional[MutableMapping[str, str]] = None,\n+ conversion_errors: Optional[Mutabl...
2025-12-11T15:49:59
vuejs/vue
05001e695ebd0b0504d664197a4771463a0f5328
2bb3199da718be4e3150b5555bbf12364c3987be
fix(compiler): should keep newline after unary tags in <pre> (#8965) fix #8950
[ { "path": "src/compiler/parser/html-parser.js", "patch": "@@ -106,7 +106,7 @@ export function parseHTML (html, options) {\n const startTagMatch = parseStartTag()\n if (startTagMatch) {\n handleStartTag(startTagMatch)\n- if (shouldIgnoreFirstNewline(lastTag, html)) {\n+ ...
2018-11-30T23:02:54
ollama/ollama
4434d7f4475083d0a87c7f6558d2d42bdf3c8b4b
2f81b3dce24c77030d5e45a34b4f0c747d79067b
Correct typo in error message (#4535) The spelling of the term "request" has been corrected, which was previously mistakenly written as "requeset" in the error log message.
[ { "path": "server/sched.go", "patch": "@@ -220,7 +220,7 @@ func (s *Scheduler) processCompleted(ctx context.Context) {\n \t\t\trunner := s.loaded[finished.model.ModelPath]\n \t\t\ts.loadedMu.Unlock()\n \t\t\tif runner == nil {\n-\t\t\t\tslog.Error(\"finished requeset signal received after model unloaded\", ...
2024-05-21T20:39:01
denoland/deno
d63ae1979f816d61905fec637b39849217c178ed
cdeec3c4f4031ddadf759b4b90a6c2c900a2f480
fix(ext/node): skip normalization in path.win32.join for reserved device names (#32808) ## Summary - When a joined path contains a Windows reserved device name with a colon (e.g. `CON:`, `PRN:`, `NUL:`), skip `normalize()` and only convert `/` to `\`, matching Node.js behavior - This prevents `..` segments from being...
[ { "path": "ext/node/polyfills/path/_win32.ts", "patch": "@@ -525,6 +525,36 @@ export function join(...paths: string[]): string {\n }\n }\n \n+ // If any path component is a Windows reserved device name (e.g. CON:,\n+ // PRN:, NUL:), skip normalization to avoid resolving `..` through it.\n+ // This ...
2026-03-18T19:31:58
huggingface/transformers
dfe6e4c0efe47a4e0770b346a332f4a3423e7ca7
de055d6db06d906cdd82030ef1e6776a2be3d6b5
Fix integration test in Owlv2 image processing tests (#42783) Fix integration test
[ { "path": "tests/models/owlv2/test_image_processing_owlv2.py", "patch": "@@ -127,7 +127,7 @@ def test_image_processor_integration_test(self):\n pixel_values = processor(image, return_tensors=\"pt\").pixel_values\n \n mean_value = round(pixel_values.mean().item(), 4)\n- sel...
2025-12-11T14:50:31
ggml-org/llama.cpp
d3dce4e0a5f2fd497a312a3152f2eab939f0d519
4974bf53cf14073c7b66e1151348156aabd42cb8
sampling : add support for backend sampling (#17004) * sampling : add support for backend sampling This commit adds support for performing sampling operations on the backend (e.g. GPU) as part of the model computation graph. The motivation for this feature is to enable sampling to be performed directly on the backen...
[ { "path": ".github/workflows/build.yml", "patch": "@@ -1098,6 +1098,7 @@ jobs:\n save: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}\n \n - name: Build with CMake\n+ # TODO: Remove GGML_CUDA_CUB_3DOT2 flag once CCCL 3.2 is bundled within CTK and that CT...
2026-01-04T20:22:16
ollama/ollama
34d5ef29b3d01e2a0785af96df1135dfec567a3e
bbbd9f20f313af308bf4d573994e01fd5d5f7170
fix conversion for f16 or f32 inputs
[ { "path": "convert/gemma.go", "patch": "@@ -1,14 +1,11 @@\n package convert\n \n import (\n-\t\"encoding/binary\"\n \t\"fmt\"\n \t\"io\"\n \t\"log/slog\"\n-\t\"os\"\n \t\"strings\"\n \n-\t\"github.com/d4l3k/go-bfloat16\"\n \t\"github.com/pdevine/tensor\"\n \t\"github.com/pdevine/tensor/native\"\n \n@@ -19,4...
2024-05-17T19:11:49
vuejs/vue
758524134e71ae025238e16a4c1f2b30a1310fe8
80f17fa498f5df0388412877799dbd7573c44b2d
fix: v-bind object should be overridable with kebab-cased props (#8845) In addition .sync should generate camelCased event name
[ { "path": "src/core/instance/render-helpers/bind-object-props.js", "patch": "@@ -6,7 +6,8 @@ import {\n warn,\n isObject,\n toObject,\n- isReservedAttribute\n+ isReservedAttribute,\n+ camelize\n } from 'core/util/index'\n \n /**\n@@ -43,12 +44,13 @@ export function bindObjectProps (\n ?...
2018-11-30T22:56:41
denoland/deno
cdeec3c4f4031ddadf759b4b90a6c2c900a2f480
f5d0971d2392e6dda51284f957122f19f4ee0e9e
fix(ext/node): add disabled process function stubs in worker threads (#32809) ## Summary - In worker threads, replace `process.abort`, `process.chdir`, `process.send`, `process.disconnect`, and uid/gid setters (`setuid`, `seteuid`, `setgid`, `setegid`, `setgroups`, `initgroups`) with stubs that have `.disabled = true...
[ { "path": "ext/node/polyfills/02_init.js", "patch": "@@ -42,6 +42,8 @@ function initialize(args) {\n Deno.args,\n Deno.version,\n nodeDebug ?? \"\",\n+ false,\n+ runningOnMainThread,\n );\n internals.__initWorkerThreads(\n runningOnMainThread,", "additions": 2, ...
2026-03-18T19:31:29
ggml-org/llama.cpp
c69c7ebc901acfce2e0a4cacaf3f10085741c5d4
e57f52334b2e8436a94f7e332462dfc63a08f995
graph : fix graph reuse logic when `n_pos_per_embd > 1` (#18566)
[ { "path": "src/llama-graph.cpp", "patch": "@@ -32,7 +32,7 @@ bool llm_graph_input_embd::can_reuse(const llm_graph_params & params) {\n bool res = true;\n \n res &= (!tokens && !params.ubatch.token) || (tokens && tokens->ne[0] == params.ubatch.n_tokens);\n- res &= (!embd && !params.ubatch.embd) ...
2026-01-03T21:59:06
huggingface/transformers
de055d6db06d906cdd82030ef1e6776a2be3d6b5
eaa3d4dd35d0ef856ee976cb1d2018e816e439c4
[kernels] Final kernel removal 🥳 (#41664) * fix bitnet * finallyyy * rm the kernel folder ! * fix revision * fix * fix * revert
[ { "path": "src/transformers/integrations/hub_kernels.py", "patch": "@@ -253,6 +253,8 @@ def register_kernel_mapping_transformers(*args, **kwargs):\n \n _HUB_KERNEL_MAPPING: dict[str, dict[str, str]] = {\n \"causal-conv1d\": {\"repo_id\": \"kernels-community/causal-conv1d\"},\n+ \"mamba-ssm\": {\"repo...
2025-12-11T14:31:35
ollama/ollama
d355d2020fcfc54c375eb697b7873742c3851881
c8cf0d94edeae0c71e3a0877895d9519b5d4d5e3
add fixes for llama
[ { "path": "cmd/cmd.go", "patch": "@@ -208,7 +208,7 @@ func tempZipFiles(path string) (string, error) {\n \t\t// pytorch files might also be unresolved git lfs references; skip if they are\n \t\t// covers pytorch_model-x-of-y.bin, pytorch_model.fp32-x-of-y.bin, pytorch_model.bin\n \t\tfiles = append(files, p...
2024-05-08T23:07:46
vuejs/vue
80f17fa498f5df0388412877799dbd7573c44b2d
374861f72b8b8fda5aa5d54f96bc2f297c775719
fix(core): skip mixins and extends if child is already merged (#8870) fix #8865
[ { "path": "src/core/util/options.js", "patch": "@@ -378,15 +378,22 @@ export function mergeOptions (\n normalizeProps(child, vm)\n normalizeInject(child, vm)\n normalizeDirectives(child)\n- const extendsFrom = child.extends\n- if (extendsFrom) {\n- parent = mergeOptions(parent, extendsFrom, vm)\n...
2018-11-30T22:54:16
denoland/deno
f5d0971d2392e6dda51284f957122f19f4ee0e9e
0896ac3e9add21dac364a4b199cd45c10c945337
fix(ext/node): improve process.title and support --title flag (#32201) - Default `process.title` to `process.execPath` instead of hardcoded `"deno"`, matching Node.js behavior - Make `process.title` setter functional instead of a no-op - Parse `--title=<value>` from `NODE_OPTIONS` and set `process.title` during bootst...
[ { "path": "ext/node/lib.rs", "patch": "@@ -315,6 +315,7 @@ deno_core::extension!(deno_node,\n ops::ipc::op_node_ipc_buffer_constructor,\n ops::ipc::op_node_ipc_ref,\n ops::ipc::op_node_ipc_unref,\n+ ops::process::op_node_process_set_title,\n ops::process::op_node_process_kill,\n ops::...
2026-03-18T16:31:12
ggml-org/llama.cpp
e57f52334b2e8436a94f7e332462dfc63a08f995
a554a1ecc75f6125c30f65fa18327ea68ef52ae6
ggml-cuda: fixes for concurrent streams (#18496)
[ { "path": "ggml/src/ggml-cuda/common.cuh", "patch": "@@ -1063,6 +1063,7 @@ struct ggml_cuda_graph {\n bool disable_due_to_too_many_updates = false;\n bool disable_due_to_failed_graph_capture = false;\n int number_consecutive_updates = 0;\n+ bool cuda_graphs_enabled = false;\n std::vector<...
2026-01-03T15:15:01
huggingface/transformers
eaa3d4dd35d0ef856ee976cb1d2018e816e439c4
8c84144bfc7dd0c9c5e336a6d89c9dcee2efc2a8
Vision docs 📝 (#42096) * add mask generation fine-tuning docs * initial commit * update video text to text * fix autoprocessor * bump model, update API * add torch.compile * Add results * Update docs/source/en/tasks/image_text_to_text.md Co-authored-by: Steven Liu <59462357+stevhliu@users.noreply.github.com> ...
[ { "path": "docs/source/en/tasks/image_text_to_text.md", "patch": "@@ -33,7 +33,8 @@ This guide focuses on inference with an instruction-tuned model.\n Let's begin installing the dependencies.\n \n ```bash\n-pip install -q transformers accelerate flash_attn\n+pip install -q transformers accelerate \n+pip ins...
2025-12-11T14:27:41
vuejs/vue
e29fbad0aceeb51a3e528fa8f2898522df4e0a0f
2e472c5e5e559a7a4083b4164ffe0c3911ce0651
chore: fix lint
[ { "path": "src/core/vdom/create-functional-component.js", "patch": "@@ -124,7 +124,7 @@ function cloneAndMarkFunctionalResult (vnode, data, contextVm, options, renderCo\n clone.fnContext = contextVm\n clone.fnOptions = options\n if (process.env.NODE_ENV !== 'production') {\n- ;(clone.devtoolsMeta =...
2018-11-30T22:37:30
denoland/deno
0896ac3e9add21dac364a4b199cd45c10c945337
76c3d7e13164085c27b800aa916eb89da642330a
fix(ext/node): support interface option for IPv6 multicast membership (#32754) Fixes the IPv6 multicast interface option which was hardcoded to `0`. ## Problem The `interface` option for `addMembership`/`dropMembership` was ignored for IPv6 sockets: ```ts op_node_udp_join_multi_v6(this.#rid, multicastAddress, 0); ...
[ { "path": "ext/node/ops/udp.rs", "patch": "@@ -156,31 +156,122 @@ pub fn op_node_udp_leave_multi_v4(\n Ok(())\n }\n \n-#[op2(fast)]\n+/// Resolve an IPv6 interface address to an interface index.\n+/// If the address contains a zone ID (e.g. \"fe80::1%eth0\"), use that.\n+/// Otherwise, try to find the int...
2026-03-18T16:29:00
ggml-org/llama.cpp
a554a1ecc75f6125c30f65fa18327ea68ef52ae6
0f2e42ca1d1d025e6c4cb4bffb78da8972dec17f
context : fix reserve token padding to n_seqs (#18536)
[ { "path": "src/llama-context.cpp", "patch": "@@ -1458,7 +1458,7 @@ ggml_cgraph * llama_context::graph_reserve(\n \n if (n_tokens % n_seqs != 0) {\n n_tokens = ((n_tokens + (n_seqs - 1)) / n_seqs) * n_seqs; // round to next multiple of n_seqs\n- n_outputs = std::min(n_outputs, n_tokens);\n...
2026-01-03T13:45:34
ollama/ollama
807d092761a1100704d260fccb6f0bc679f9b98e
f36f1d6be988848d24d269a6bc5e3697fa0fb18a
fix quantize file types
[ { "path": "server/images.go", "patch": "@@ -415,10 +415,17 @@ func CreateModel(ctx context.Context, name, modelFileDir, quantization string, m\n \t\t\t\t\t\t\treturn err\n \t\t\t\t\t\t}\n \n-\t\t\t\t\t\tbaseLayer.Layer, err = NewLayer(temp, baseLayer.Layer.MediaType)\n+\t\t\t\t\t\tlayers, err := parseFromFi...
2024-05-17T18:29:04
vuejs/vue
2e472c5e5e559a7a4083b4164ffe0c3911ce0651
5f6ef15fb2879411797aee0287b811977f6ebb42
fix(component): clean up memory leak after loading async component completes (fix #8740) (#8755) * fix(component): clean up memory leak after loading async component completes * fix(async component): accounting for async components with loading property * refactor(component): simplifying memory cleanup logic
[ { "path": "src/core/vdom/helpers/resolve-async-component.js", "patch": "@@ -61,10 +61,14 @@ export function resolveAsyncComponent (\n const contexts = factory.contexts = [context]\n let sync = true\n \n- const forceRender = () => {\n+ const forceRender = (renderCompleted: boolean) => {\n ...
2018-11-30T22:36:08
ggml-org/llama.cpp
9dba9f5352308894bfb8786fcfe7c284168ff8f5
bcfc8c3cec68f8c3154e7e5d5a2efd807b241767
(Bugfix, ggml-cuda) Pool alloc count fix + small size computation type adjustment (#18559) * CUDA: Fixed obj byte size instead of obj count being passed to pool alloc (fattn-common, dst_tmp_meta) * CUDA: Explicitly casted some of the int alloc counts before multiplication in argsort --------- Co-authored-by: pl752 ...
[ { "path": "ggml/src/ggml-cuda/argsort.cu", "patch": "@@ -29,8 +29,8 @@ static void argsort_f32_i32_cuda_cub(ggml_cuda_pool & pool,\n const int nrows,\n ggml_sort_order order,\n cudaStream_t...
2026-01-03T10:13:40
huggingface/transformers
8c84144bfc7dd0c9c5e336a6d89c9dcee2efc2a8
78b2992920ea0bee4a6663ac8c7ebfadb93ceca7
[Model] Add PaddleOCR-VL Model Support (#42178) * init * refactor * update * update * fix unresolved problems * fix how position_ids work with flash_attn_2 * add tests and fix code * add model_doc * update model_doc * fix ci * update docstring * add tests * update * add **kwargs * update * update * upd...
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -1119,6 +1119,8 @@\n title: OWL-ViT\n - local: model_doc/owlv2\n title: OWLv2\n+ - local: model_doc/paddleocr_vl\n+ title: PaddleOCRVL\n - local: model_doc/paligemma\n title: PaliGemma\n - local: mode...
2025-12-11T14:27:04
denoland/deno
0fede96dc61a81f0355421f99ffc506d74d72ead
328c8d35476e0d1376f2b818d57b7e89d9bd66b5
fix(ext/node): fix 8 Node.js compat test failures (#32755) ## Summary Fixes 8 Node.js compat tests that were failing after the node_test submodule update to Node.js 25.8.1 (#32705). Closes part of #32706. - **`events`**: `listenerCount()` now handles `EventTarget` instances by delegating to `getEventListeners()` - *...
[ { "path": "ext/node/polyfills/_events.mjs", "patch": "@@ -813,6 +813,9 @@ export function listenerCount(emitter, type) {\n if (typeof emitter.listenerCount === \"function\") {\n return emitter.listenerCount(type);\n }\n+ if (emitter instanceof EventTarget) {\n+ return getEventListeners(emitter, ...
2026-03-18T08:39:51
ollama/ollama
8800c8a59b3175b096a6e22c1ee58b3e5344ee0c
b4dce13309d3dd185939a6a7705f31beb36499e3
chore: fix typo in docs (#4536)
[ { "path": "docs/troubleshooting.md", "patch": "@@ -86,7 +86,7 @@ OLLAMA_TMPDIR=/usr/share/ollama/\n \r\n ## Container fails to run on NVIDIA GPU\r\n \r\n-Make sure you've set up the conatiner runtime first as described in [docker.md](./docker.md)\r\n+Make sure you've set up the container runtime first as de...
2024-05-20T21:19:03
vuejs/vue
5624278fbe5d85cfe578d749da12b1e73c3e61a9
4ecc21c29ec12bb33d3b426cb4d42c579e9b0f2d
fix(ssr): check js assets more accurate in ssr webpack plugin (#8639)
[ { "path": "src/server/webpack-plugin/server.js", "patch": "@@ -43,7 +43,7 @@ export default class VueSSRServerPlugin {\n }\n \n stats.assets.forEach(asset => {\n- if (asset.name.match(/\\.js$/)) {\n+ if (isJS(asset.name)) {\n bundle.files[asset.name] = compilation.assets[...
2018-11-30T22:32:28
ggml-org/llama.cpp
bcfc8c3cec68f8c3154e7e5d5a2efd807b241767
18ddaea2aecf7fbfe7acab77465808f3cf6200d3
ggml-hexagon: optimize activation function (#18393) * refactor: refactor silu * refactor: optimize swiglu * refactor: remove unncessary if in swiglu * refactor: refactor swiglu_oai * chore: fix formatting issue
[ { "path": "ggml/src/ggml-hexagon/htp/act-ops.c", "patch": "@@ -85,13 +85,16 @@ static void glu_swiglu_fp32_per_thread(const struct htp_tensor * src0,\n struct htp_spad * dst_spad,\n uint32_t nth,\n ...
2026-01-03T05:24:24
huggingface/transformers
78b2992920ea0bee4a6663ac8c7ebfadb93ceca7
f8e8ddb0871a46d4baf80f9a3830221e4d1125b9
[CI] fix wav2vec test (#42810) fix ci
[ { "path": "src/transformers/conversion_mapping.py", "patch": "@@ -142,11 +142,11 @@ def _build_checkpoint_conversion_mapping():\n if hasattr(torch.nn.utils.parametrizations, \"weight_norm\"):\n mapping[\"legacy\"] += [\n WeightRenaming(\n- source_patterns=r\"weight_g$\...
2025-12-11T14:20:04
denoland/deno
328c8d35476e0d1376f2b818d57b7e89d9bd66b5
7d810eeeedd26873cb3ec0b297326b39c8f9d06c
perf(ext/web): optimize URLPattern ops to reduce serde overhead and GC pressure (#32766) ## Summary - **`op_urlpattern_process_match_input`**: Replace `#[serde] Option<(MatchInput, Inputs)>` return with `#[string] Option<String>` + `#[buffer] &mut [u32]`. The 8 URL component values are concatenated into a single stri...
[ { "path": "ext/web/01_urlpattern.js", "patch": "@@ -22,9 +22,11 @@ const {\n RegExpPrototypeTest,\n SafeMap,\n SafeRegExp,\n+ StringPrototypeSlice,\n Symbol,\n SymbolFor,\n TypeError,\n+ Uint32Array,\n } = primordials;\n \n import * as webidl from \"ext:deno_webidl/00_webidl.js\";\n@@ -138,10 ...
2026-03-18T08:39:31
vuejs/vue
2686818beb5728e3b7aa22f47a3b3f0d39d90c8e
7b7164c11cbb74ed44ee086f0a82acfcc1ff47a2
fix(error handling): handle errors on immediate watcher execution (#8581) The handle callback call should be wrapped in a try/catch that explicitly calls handleError fix #8567
[ { "path": "src/core/instance/state.js", "patch": "@@ -351,7 +351,11 @@ export function stateMixin (Vue: Class<Component>) {\n options.user = true\n const watcher = new Watcher(vm, expOrFn, cb, options)\n if (options.immediate) {\n- cb.call(vm, watcher.value)\n+ try {\n+ cb.call(...
2018-11-29T23:14:28
ggml-org/llama.cpp
5755e52d15d234579b84ace4ccd1b1cdd4596a9b
f38de163419d9381464b9185bca55c54207b3e43
model : Maincoder-1B support (#18534) * Add Maincoder model support * Removed SPM model vocabulary setting and MOE related GGUF parameters Removed trailing spaces from maincoder.cpp * removed set_vocab * added new line * Fix formatting * Add a new line for PEP8
[ { "path": "convert_hf_to_gguf.py", "patch": "@@ -6415,6 +6415,17 @@ def set_gguf_parameters(self):\n self.gguf_writer.add_head_count(0)\n \n \n+@ModelBase.register(\"MaincoderForCausalLM\")\n+class MaincoderModel(TextModel):\n+ model_arch = gguf.MODEL_ARCH.MAINCODER\n+\n+ def set_gguf_paramete...
2026-01-02T19:11:59
huggingface/transformers
f8e8ddb0871a46d4baf80f9a3830221e4d1125b9
f8e5ae6a5072cfea78c5d052ebe61b63c9cb10cc
fix awq (#42776) * fix * fix * style * style * fix * style * let's try * maybe * fix --------- Co-authored-by: Mohamed Mekkouri <93391238+MekkCyber@users.noreply.github.com>
[ { "path": "src/transformers/integrations/awq.py", "patch": "@@ -15,12 +15,13 @@\n \n from typing import Optional, Union\n \n-from ..utils import is_gptqmodel_available, is_llm_awq_available, is_torch_available, logging\n-from ..utils.quantization_config import (\n- AwqBackend,\n-)\n+from ..quantizers.qua...
2025-12-11T14:18:21
denoland/deno
2b62955bfdee96be1bcc09291bbe16dade6c14a4
97a701cb933762d79067f1918e7491463660edad
feat(ext/node): add MIMEType, convertProcessSignalToExitCode, Symbol.dispose for ChildProcess (#32793) - Implements util.MIMEType and util.MIMEParams classes (Node.js v18.13+) with full MIME type parsing and serialization - Adds util.convertProcessSignalToExitCode() to convert signal names to exit codes (128 + signal ...
[ { "path": "ext/node/lib.rs", "patch": "@@ -477,6 +477,7 @@ deno_core::extension!(deno_node,\n \"internal/http2/util.ts\",\n \"internal/http2/compat.js\",\n \"internal/idna.ts\",\n+ \"internal/mime.ts\",\n \"internal/net.ts\",\n \"internal/normalize_encoding.ts\",\n \"internal/opti...
2026-03-18T08:19:22
ollama/ollama
02b31c9dc803e6c14a0d781d276f179b6c34d6f2
5bece945090b94a3f1eab03be48fb6f6b25e1e79
Don't return error on signal exit
[ { "path": "server/routes.go", "patch": "@@ -1086,7 +1086,7 @@ func Serve(ln net.Listener) error {\n \t\treturn err\n \t}\n \t<-ctx.Done()\n-\treturn err\n+\treturn nil\n }\n \n func waitForStream(c *gin.Context, ch chan interface{}) {", "additions": 1, "deletions": 1, "language": "Go" } ]
2024-05-16T23:25:38
vuejs/vue
7b7164c11cbb74ed44ee086f0a82acfcc1ff47a2
69730fac8f2c1f43e56a82c8b2ce24827a2a5e1e
fix(v-model): avoid duplicate model transforms This happens when a component directly passes down its own data object to a child component. Fix #8436.
[ { "path": "src/core/vdom/create-component.js", "patch": "@@ -252,9 +252,17 @@ function transformModel (options, data: any) {\n const event = (options.model && options.model.event) || 'input'\n ;(data.props || (data.props = {}))[prop] = data.model.value\n const on = data.on || (data.on = {})\n- if (is...
2018-11-29T23:09:37
ggml-org/llama.cpp
d84a6a98be9e952060cb58b1a824f82339b3391f
c6f0e832da05bd5342e39b0fb1026fcb3b6b8bf2
vocab : reduce debug logs about non-EOG control tokens (#18541) * vocab : reduce debug logs about non-EOG control tokens * cont : add comment
[ { "path": "src/llama-vocab.cpp", "patch": "@@ -2203,6 +2203,8 @@ void llama_vocab::impl::load(llama_model_loader & ml, const LLM_KV & kv) {\n // for now, we apply this workaround to find the tokens based on their text\n \n for (const auto & t : token_to_id) {\n+ auto & attr ...
2026-01-02T14:17:33
huggingface/transformers
f8e5ae6a5072cfea78c5d052ebe61b63c9cb10cc
86644be4790613d9bb21372fd9d10f48fd8d892c
Better continuous batching tests (#42699) * No more size 0 cuda graph * Better tests for CB * compile fix for CB test * style * More cleanup and cuda exclusive * Returned to slow tests * Change decorator order * Restore XPU change * Rebase fixes
[ { "path": "src/transformers/generation/continuous_batching/continuous_api.py", "patch": "@@ -66,7 +66,7 @@ def pad_by_intervals(size: int, max_value: int, nb_intervals: int) -> int:\n interval_size = max_value // nb_intervals\n if interval_size == 0:\n return max_value\n- padded = ceil(si...
2025-12-11T13:51:34
denoland/deno
97a701cb933762d79067f1918e7491463660edad
cca89e6dd0dcc83c82b91fb41d20d20578e7015f
test: prevent Claude from running entire spec suite (#32797) I can't make Claude stop doing this, so I'm gonna punish it with a panic.
[ { "path": "tests/specs/mod.rs", "patch": "@@ -264,6 +264,18 @@ struct StepMetaData {\n }\n \n pub fn main() {\n+ // When running from Claude Code, require a test filter (additional arg)\n+ // to prevent accidentally running the entire spec test suite.\n+ if std::env::var_os(\"CLAUDE_CODE_ENTRYPOINT\").is...
2026-03-18T08:16:30
ollama/ollama
5e46c5c43502ef6174dde00dbdd9008d8f713cd1
583c1f472cbc22bd4869bc5f774c7ac777deedc7
Updating software for read me (#4467) * Update README.md Added chat/moderation bot to list of software. * Update README.md Fixed link error.
[ { "path": "README.md", "patch": "@@ -391,6 +391,7 @@ See the [API documentation](./docs/api.md) for all endpoints.\n - [AI Telegram Bot](https://github.com/tusharhero/aitelegrambot) (Telegram bot using Ollama in backend)\n - [AI ST Completion](https://github.com/yaroslavyaroslav/OpenAI-sublime-text) (Sublim...
2024-05-16T20:55:14
vuejs/vue
d483a49c86874b2e75863b661f81feecd46ae721
59d4351ad8fc042bc263a16ed45a56e9ff5b013e
fix(compiler): normalize potential functional component children in v-for (#8558) fix #8468
[ { "path": "src/compiler/codegen/index.js", "patch": "@@ -406,7 +406,10 @@ export function genChildren (\n el.tag !== 'template' &&\n el.tag !== 'slot'\n ) {\n- return (altGenElement || genElement)(el, state)\n+ // because el may be a functional component and return an Array instead...
2018-10-24T18:02:45
ggml-org/llama.cpp
e86f3c22211d9b5c3842e2961a022aac9cdbacad
169ee68ffb7281e7af632419513f55b6f14a8892
cuda : fix copy of large tensors (ggml_nbytes <= INT_MAX assertion) (#18433) * ggml-cuda: fixed assertion in ggml_cuda_cpy (#18140) * ggml-cuda: changes in data types to int64_t * ggml-cuda: added asserts for CUDA block numbers * ggml-cuda: changed the condition for y and z dimension
[ { "path": "ggml/src/ggml-cuda/cpy.cu", "patch": "@@ -12,11 +12,11 @@ const int CUDA_CPY_BLOCK_NM = 8; // block size of 3rd dimension if available\n const int CUDA_CPY_BLOCK_ROWS = 8; // block dimension for marching through rows\n \n template <cpy_kernel_t cpy_1>\n-static __global__ void cpy_scalar(con...
2026-01-01T23:24:20
huggingface/transformers
86644be4790613d9bb21372fd9d10f48fd8d892c
a8f32a0e9c2fec0f196fab5d8316a03f35d0c528
[Quantization] FBgemm FP8 for XPU (#42773) * enable xpu in fp8_gemm Signed-off-by: Wang, Yi <yi.a.wang@intel.com> * refine the code Signed-off-by: Wang, Yi <yi.a.wang@intel.com> * updated Signed-off-by: Wang, Yi <yi.a.wang@intel.com> * fix * style * small fix --------- Signed-off-by: Wang, Yi <yi.a.wang@inte...
[ { "path": "src/transformers/integrations/fbgemm_fp8.py", "patch": "@@ -12,12 +12,19 @@\n # See the License for the specific language governing permissions and\n # limitations under the License.\n \n+from functools import lru_cache\n from typing import Optional\n \n from ..activations import ACT2FN\n from .....
2025-12-11T13:51:08
ollama/ollama
17b1e81ca13bc386be182fdc93d59d50e978fb85
f2cf97d6f111031a712881eccb5fbe90fac787c7
fixed width and word count for double spacing
[ { "path": "cmd/cmd.go", "patch": "@@ -25,7 +25,7 @@ import (\n \t\"time\"\n \n \t\"github.com/containerd/console\"\n-\n+\t\"github.com/mattn/go-runewidth\"\n \t\"github.com/olekukonko/tablewriter\"\n \t\"github.com/spf13/cobra\"\n \t\"golang.org/x/crypto/ssh\"\n@@ -739,25 +739,32 @@ type displayResponseStat...
2024-05-15T23:29:33
vuejs/vue
59d4351ad8fc042bc263a16ed45a56e9ff5b013e
8c2674ea6a742173d278f3d6c3c75f4999b84293
fix(transition): handle local-formatted floats in toMs function. (#8495) fix #4894
[ { "path": "src/platforms/web/runtime/transition-util.js", "patch": "@@ -181,6 +181,10 @@ function getTimeout (delays: Array<string>, durations: Array<string>): number {\n }))\n }\n \n+// Old versions of Chromium (below 61.0.3163.100) formats floating pointer numbers\n+// in a locale-dependent way, using a...
2018-10-24T17:58:25
denoland/deno
cca89e6dd0dcc83c82b91fb41d20d20578e7015f
6f4d5e91b234e41247fd24d527aac424fb35595e
fix(ext/node): improve worker_threads path validation and error handling (#32791) ## Summary - Implement `ERR_WORKER_PATH` error class for proper Node.js-compatible path validation in `worker_threads.Worker` - Reject string URL specifiers (`file://`, `data:`, `http://`, `https://`) with `ERR_WORKER_PATH` (must use `n...
[ { "path": "ext/node/polyfills/internal/errors.ts", "patch": "@@ -5,7 +5,6 @@\n * ERR_MANIFEST_ASSERT_INTEGRITY\n * ERR_QUICSESSION_VERSION_NEGOTIATION\n * ERR_REQUIRE_ESM\n- * ERR_WORKER_PATH\n * ERR_QUIC_ERROR\n * ERR_SYSTEM_ERROR //System error, shouldn't ever happen inside Deno\n * ERR_TTY_INIT_FAI...
2026-03-18T06:19:34
ggml-org/llama.cpp
ced765be44ce173c374f295b3c6f4175f8fd109b
3ccccc83f79c187e7fd3e19bdc5bf4efe8928697
model: support youtu-vl model (#18479) * Support Youtu-VL Model * merge code * fix bug * revert qwen2 code & support rsplit in minja.hpp * update warm info * fix annotation * u * revert minja.hpp * fix * Do not write routed_scaling_factor to gguf when routed_scaling_factor is None * fix expert_weights_scale ...
[ { "path": "convert_hf_to_gguf.py", "patch": "@@ -1233,6 +1233,9 @@ def get_vocab_base_pre(self, tokenizer) -> str:\n if chkhsh == \"4a2e2abae11ca2b86d570fc5b44be4d5eb5e72cc8f22dd136a94b37da83ab665\":\n # ref: https://huggingface.co/KORMo-Team/KORMo-tokenizer\n res = \"kormo\"...
2026-01-01T18:25:54
huggingface/transformers
d1eda63fa38ff29e7d5d930eb3eeff9fa75e1a9d
f5aa90d0fbb7b6f9dd07ac534319d973cd29a123
[`Padding-Free Attention`] Fix packed FA attention with pos ids only (#42801) * fix position ids * style * fix
[ { "path": "src/transformers/models/deepseek_v2/modeling_deepseek_v2.py", "patch": "@@ -342,7 +342,6 @@ def forward(\n past_key_values: Optional[Cache] = None,\n cache_position: Optional[torch.LongTensor] = None,\n position_embeddings: Optional[tuple[torch.Tensor, torch.Tensor]] = Non...
2025-12-11T10:32:02
vuejs/vue
eb604529c62e9954305889122f34499ad75b3b45
002acbe678a76efb57be2b80e4e6e54d8d82b08c
fix: support modifier combination of click.right + .once (#8492)
[ { "path": "src/compiler/helpers.js", "patch": "@@ -65,6 +65,18 @@ export function addHandler (\n )\n }\n \n+ // normalize click.right and click.middle since they don't actually fire\n+ // this is technically browser-specific, but at least for now browsers are\n+ // the only target envs that have ri...
2018-10-24T17:55:33
ggml-org/llama.cpp
d0a6a314702c8f84dd30a54a98f6b8d9810b02e6
2b2afade9fb38b8d699ed561d20a259561c00fc3
model : add support for JinaBertModel with non-gated ffn (#18475) * WIP: Initial commit for fixing JinaBert original FF type support * convert: add jina-v2-de tokenizer variant for German_Semantic_V3 * convert: fix token collision in BERT phantom vocab conversion * convert: add feed_forward_type metadata * model: ...
[ { "path": "convert_hf_to_gguf.py", "patch": "@@ -1062,6 +1062,9 @@ def get_vocab_base_pre(self, tokenizer) -> str:\n if chkhsh == \"66b8d4e19ab16c3bfd89bce5d785fb7e0155e8648708a1f42077cb9fe002c273\":\n # ref: https://huggingface.co/alvarobartt/grok-2-tokenizer\n res = \"grok-...
2026-01-01T17:38:51
denoland/deno
6f4d5e91b234e41247fd24d527aac424fb35595e
9f327bb9ab0dd08ae5999678f21b6befd4a3b6f9
fix(ext/node): fix TLA stall with native TTY handles and make stdio indestructible (#32792) ## Summary - Fix TLA (top-level await) stall detection to account for active native libuv-compat TTY handles. Without this, any `await` on readline/stdin with a non-stdout output stream (like `@inquirer/prompts`' MuteStrea...
[ { "path": "ext/node/polyfills/process.ts", "patch": "@@ -1244,6 +1244,22 @@ internals.__bootstrapNodeProcess = function (\n if (io.stdout.isTerminal()) {\n /** https://nodejs.org/api/process.html#process_process_stdout */\n stdout = process.stdout = new TTYWriteStream(1);\n+ // Match No...
2026-03-18T06:06:08
ollama/ollama
d1692fd3e0b4a80ff55ba052b430207134df4714
5fa36a083351727e3264b8f3636d323671398a59
fix the cpu estimatedTotal memory + get the expiry time for loading models (#4461)
[ { "path": "llm/server.go", "patch": "@@ -89,6 +89,7 @@ func NewLlamaServer(gpus gpu.GpuInfoList, model string, ggml *GGML, adapters, pr\n \n \t\tcpuRunner = serverForCpu()\n \t\tgpuCount = 0\n+\t\t_, _, estimatedTotal = EstimateGPULayers(gpus, ggml, projectors, opts)\n \t} else {\n \t\tif gpus[0].Library ==...
2024-05-15T22:43:16
huggingface/transformers
0af2381f7bfae0569b876dd40eefda1503da927f
45d8168e45553816cc13dcd3925b1328a5f2fdcf
feat(granitemoe*): Remove logits upcast when computing loss (#42753) * feat: Remove logits upcast when computing loss When the CausalLM loss is used, the upcast is done in the loss function utils, so this is redundant. https://github.com/huggingface/transformers/issues/42709 Branch: GraniteOptionalUpcast-42709 Sign...
[ { "path": "src/transformers/models/granitemoe/modeling_granitemoe.py", "patch": "@@ -714,8 +714,6 @@ def forward(\n \n loss = None\n if labels is not None:\n- # Upcast to float if we need to compute the loss to avoid potential precision issues\n- logits = logits.float()...
2025-12-11T07:24:01
vuejs/vue
0b16927c9d382b9cf134b131b898350340c2ee41
8f04135dbaa5f5f0500d42c0968beba8043f5363
fix(transition): check existence of `el.parentNode` (#8422) fix #8199 * fix(transition): check existence of `el.parentNode` If the new parentNode gets a `textContent` or `innerHTML` property during patching, the `transition` node would have been detached early, which means `el.parentNode` no longer exists. ...
[ { "path": "src/core/vdom/patch.js", "patch": "@@ -32,13 +32,20 @@ export const emptyNode = new VNode('', {}, [])\n \n const hooks = ['create', 'activate', 'update', 'remove', 'destroy']\n \n+function childrenIgnored (vnode) {\n+ return vnode && vnode.data && vnode.data.domProps && (\n+ vnode.data.domPro...
2018-10-24T17:26:20
ggml-org/llama.cpp
2b2afade9fb38b8d699ed561d20a259561c00fc3
f4f501925418ae38bb1e2d8c5e054c436686a782
convert : fix encoding of WPM vocab for BERT models (#18500) * convert: avoid token collision when stripping ## prefix * convert: use token types for BERT special tokens check * Update convert_hf_to_gguf.py Co-authored-by: Sigbjørn Skjæret <sigbjorn.skjaeret@scala.com> --------- Co-authored-by: Sigbjørn Skjæret <...
[ { "path": "convert_hf_to_gguf.py", "patch": "@@ -5287,13 +5287,14 @@ def set_vocab(self):\n self.gguf_writer.add_token_type_count(self.hparams.get(\"type_vocab_size\", 1))\n \n # convert to phantom space vocab\n- def phantom(tok):\n- if tok.startswith(\"[\") and tok.endswit...
2026-01-01T17:27:07
huggingface/transformers
45d8168e45553816cc13dcd3925b1328a5f2fdcf
8ebfd84fa7f4d6c59f5059a439fad10ada26b3ff
allow registration of custom checkpoint conversion mappings (#42634) * allow registration of custom checkpoint conversion mappings * add tests * chore: lint * move tests to test_core_model_loading.py * fixup --------- Co-authored-by: Arthur <arthur.zucker@gmail.com>
[ { "path": "src/transformers/conversion_mapping.py", "patch": "@@ -186,10 +186,22 @@ def _build_checkpoint_conversion_mapping():\n \n def get_checkpoint_conversion_mapping(model_type):\n global _checkpoint_conversion_mapping_cache\n- _checkpoint_conversion_mapping_cache = _build_checkpoint_conversion_...
2025-12-11T07:22:20
denoland/deno
6aa3354a7faa644abe89bdcb66c04fde72830cd3
e4ae3116eb983ef4a0f2776218abfd8f31d2f893
fix(ext/node): fix Buffer.concat, expose internal/buffer, implement markAsUntransferable (#32760) ## Summary Fixes 3 Buffer compat tests from #32706 and fixes #31824. - **Buffer.concat**: Use `TypedArrayPrototypeGetByteLength` instead of `.length` to prevent spoofed length getters from causing uninitialized memory e...
[ { "path": "ext/node/lib.rs", "patch": "@@ -184,6 +184,7 @@ deno_core::extension!(deno_node,\n ops::blocklist::op_blocklist_add_subnet,\n ops::blocklist::op_blocklist_check,\n \n+ ops::buffer::op_mark_as_untransferable,\n ops::buffer::op_is_ascii,\n ops::buffer::op_is_utf8,\n ops::buff...
2026-03-17T21:09:27
vuejs/vue
8f04135dbaa5f5f0500d42c0968beba8043f5363
a64ff1957c35270b818aa9cfdfb2acb6e42ce2a9
fix(parser): allow CRLFs in string interpolations (#8408) fix #8103
[ { "path": "src/compiler/parser/text-parser.js", "patch": "@@ -3,7 +3,7 @@\n import { cached } from 'shared/util'\n import { parseFilters } from './filter-parser'\n \n-const defaultTagRE = /\\{\\{((?:.|\\n)+?)\\}\\}/g\n+const defaultTagRE = /\\{\\{((?:.|\\r?\\n)+?)\\}\\}/g\n const regexEscapeRE = /[-.*+?^${}...
2018-10-24T17:24:55
ggml-org/llama.cpp
f4f501925418ae38bb1e2d8c5e054c436686a782
d5574c919ca4dea2eca8039da05b96e70a979532
model: add Solar Open model (#18511) * model: add Solar-Open model * vocab: add solar-open to end eog blacklist * model: add proper llm type * chat: basic template for solar open * typo: fix comment about vocab * convert: sugested changes * convert: suggested changes * chat: change reasoning end tag for solar-o...
[ { "path": "common/chat-parser.cpp", "patch": "@@ -1395,6 +1395,14 @@ static void common_chat_parse_seed_oss(common_chat_msg_parser & builder) {\n builder.consume_reasoning_with_xml_tool_calls(form, \"<seed:think>\", \"</seed:think>\");\n }\n \n+static void common_chat_parse_solar_open(common_chat_msg_pa...
2026-01-01T17:01:43
vuejs/vue
a64ff1957c35270b818aa9cfdfb2acb6e42ce2a9
a71853bfc5b6ee117af05408f4d75c80893d44e2
fix(lifecycle): updated should not be called after component being destroyed (#8381) fix #8076
[ { "path": "src/core/observer/scheduler.js", "patch": "@@ -98,7 +98,7 @@ function callUpdatedHooks (queue) {\n while (i--) {\n const watcher = queue[i]\n const vm = watcher.vm\n- if (vm._watcher === watcher && vm._isMounted) {\n+ if (vm._watcher === watcher && vm._isMounted && !vm._isDestroye...
2018-10-24T17:24:31
huggingface/transformers
8ebfd84fa7f4d6c59f5059a439fad10ada26b3ff
c3acdd5799b57e3b3ecf9e49575365d10649c332
Fully deprecate AutoGPTQ and AutoAWQ for GPT-QModel (#41567) * fully deprecate autogptq * remove use_cuda and use_exllama toggles are fully deprecated in gptqmodel * format * add `act_group_aware` property * fix QUANT_TYPE assert Signed-off-by: ZX-ModelCloud <zx@modelcloud.ai> * format * mod awq import * remov...
[ { "path": "docker/transformers-intel-cpu/Dockerfile", "patch": "@@ -48,7 +48,6 @@ RUN pip install --upgrade pip wheel\n RUN pip install torch torchvision torchaudio torchcodec --index-url https://download.pytorch.org/whl/cpu --no-cache-dir\n RUN pip install av pyctcdecode pytesseract decord galore-torch fir...
2025-12-10T16:51:38
denoland/deno
e4ae3116eb983ef4a0f2776218abfd8f31d2f893
922a9cafafc54d6f1aee1d4ba4dfd87a11abef85
fix(ext/node): rewrite node:tty on top of uv compat (#32777) Fixed https://github.com/denoland/deno/issues/30075 A decent chunk of this is written by claude, mostly uv_tty.
[ { "path": "ext/node/lib.rs", "patch": "@@ -352,11 +352,15 @@ deno_core::extension!(deno_node,\n ops::udp::op_node_udp_leave_source_specific,\n ops::udp::op_node_udp_send,\n ops::udp::op_node_udp_recv,\n+ ops::stream_wrap::op_stream_base_register_state,\n+ ops::tty_wrap::op_tty_check_fd_per...
2026-03-17T19:55:36
ggml-org/llama.cpp
d5574c919ca4dea2eca8039da05b96e70a979532
26831bded991d3fb31ca6b143af46eebb85f7e60
webui: fix code copy stripping XML/HTML tags (#18518) * webui: fix code copy stripping XML/HTML tags * webui: update static build
[ { "path": "tools/server/webui/src/lib/utils/clipboard.ts", "patch": "@@ -65,10 +65,7 @@ export async function copyCodeToClipboard(\n \tsuccessMessage = 'Code copied to clipboard',\n \terrorMessage = 'Failed to copy code'\n ): Promise<boolean> {\n-\tconst doc = new DOMParser().parseFromString(rawCode, 'text/...
2026-01-01T12:44:11
ollama/ollama
853ae490e162e8703fde5425fead1ea8da09fdcf
f2cf97d6f111031a712881eccb5fbe90fac787c7
Sanitize the env var debug log Only dump env vars we care about in the logs
[ { "path": "llm/server.go", "patch": "@@ -317,8 +317,22 @@ func NewLlamaServer(gpus gpu.GpuInfoList, model string, ggml *GGML, adapters, pr\n \t\t}\n \n \t\tslog.Info(\"starting llama server\", \"cmd\", s.cmd.String())\n-\t\t// Log at debug as the environment is inherited and might contain sensitive informat...
2024-05-15T21:42:57
denoland/deno
9be5e367e0e902e343de48f1b72528110fa887d1
21a81528207918a0df439698ab1c946748ae453b
fix(ext/node): allow passing `FileHandle` as `fd` argument for `WriteStream` and `ReadStream` (#32770) Towards #29972 Allows the following tests to pass: - https://github.com/nodejs/node/blob/v25.8.1/test/parallel/test-fs-read-stream-file-handle.js - https://github.com/nodejs/node/blob/v25.8.1/test/parallel/test-fs-w...
[ { "path": "ext/node/polyfills/internal/fs/handle.ts", "patch": "@@ -98,8 +98,8 @@ const kRefs = Symbol(\"kRefs\");\n const kClosePromise = Symbol(\"kClosePromise\");\n const kCloseResolve = Symbol(\"kCloseResolve\");\n const kCloseReject = Symbol(\"kCloseReject\");\n-const kRef = Symbol(\"kRef\");\n-const k...
2026-03-17T16:08:02
ggml-org/llama.cpp
4cd162a1235682d78e0ad04ca5f27bcaeef2460e
13814eb370d2f0b70e1830cc577b6155b17aee47
chat: make tool description and parameters optional per OpenAI spec (#18478) * chat: make tool description and parameters optional per OpenAI spec Per the OpenAI API specification, both 'description' and 'parameters' fields in tool function definitions are optional. Previously, the parser would throw an exception if ...
[ { "path": "common/chat.cpp", "patch": "@@ -380,8 +380,8 @@ std::vector<common_chat_tool> common_chat_tools_parse_oaicompat(const json & too\n const auto & function = tool.at(\"function\");\n result.push_back({\n /* .name = */ function.at(\"name\"),\n- ...
2025-12-31T23:21:37
ollama/ollama
f2cf97d6f111031a712881eccb5fbe90fac787c7
c344da4c5a09521fce0c825dcef4df1c155b150d
fix typo in modelfile generation (#4439)
[ { "path": "server/routes.go", "patch": "@@ -709,7 +709,7 @@ func GetModelInfo(req api.ShowRequest) (*api.ShowResponse, error) {\n \t}\n \n \tvar sb strings.Builder\n-\tfmt.Fprintln(&sb, \"# Modelfile generate by \\\"ollama show\\\"\")\n+\tfmt.Fprintln(&sb, \"# Modelfile generated by \\\"ollama show\\\"\")\n...
2024-05-14T22:34:29
vuejs/vue
a71853bfc5b6ee117af05408f4d75c80893d44e2
504d5da7eff1c77117c2f57b0c4238e56de80fc5
fix(v-pre): skip compiling custom component tags in v-pre blocks (fix #8286) (#8376)
[ { "path": "src/compiler/codegen/index.js", "patch": "@@ -52,6 +52,10 @@ export function generate (\n }\n \n export function genElement (el: ASTElement, state: CodegenState): string {\n+ if (el.parent) {\n+ el.pre = el.pre || el.parent.pre\n+ }\n+\n if (el.staticRoot && !el.staticProcessed) {\n re...
2018-10-24T17:24:07
ggml-org/llama.cpp
33ded988ba9a5514036d64334f803334047a15d8
0db81098494023775a704a44042c317d36c91f24
quantize: prevent input/output file collision (#18451) Check if input and output files are the same before quantizing to prevent file corruption when mmap reads from a file being written to. Fixes #12753
[ { "path": "tools/quantize/quantize.cpp", "patch": "@@ -12,6 +12,7 @@\n #include <cmath>\n #include <cctype>\n #include <algorithm>\n+#include <filesystem>\n \n struct quant_option {\n std::string name;\n@@ -643,6 +644,11 @@ int main(int argc, char ** argv) {\n return 1;\n }\n \n+ if (std:...
2025-12-31T15:29:03
denoland/deno
21a81528207918a0df439698ab1c946748ae453b
832fbcf1099396fc0d98917d40ae1373ae9257d8
fix(process): allow unref'd child processes to outlive parent (#32563) ## Summary - Fixes `child_process.unref()` killing the child process when the parent exits, instead of letting it continue running independently (Node.js behavior) - Replaces tokio's `kill_on_drop(true)` with a custom `Drop` on `ChildResource` tha...
[ { "path": "ext/process/40_process.js", "patch": "@@ -6,6 +6,8 @@ import {\n op_run,\n op_run_status,\n op_spawn_child,\n+ op_spawn_child_ref,\n+ op_spawn_child_unref,\n op_spawn_kill,\n op_spawn_sync,\n op_spawn_wait,\n@@ -401,12 +403,18 @@ class ChildProcess {\n core.refOpPromise(this.#wa...
2026-03-17T16:03:03
ollama/ollama
c344da4c5a09521fce0c825dcef4df1c155b150d
0e331c7168ebc045d6ff61efecb138a57c9d3e96
fix keepalive for non-interactive mode (#4438)
[ { "path": "cmd/cmd.go", "patch": "@@ -905,14 +905,15 @@ func generate(cmd *cobra.Command, opts runOptions) error {\n \t}\n \n \trequest := api.GenerateRequest{\n-\t\tModel: opts.Model,\n-\t\tPrompt: opts.Prompt,\n-\t\tContext: generateContext,\n-\t\tImages: opts.Images,\n-\t\tFormat: opts.Format,\...
2024-05-14T22:17:04
vuejs/vue
504d5da7eff1c77117c2f57b0c4238e56de80fc5
96b833bc5da5e5179bd56f1352cda84560451b89
fix(transition): transition-group should only listen for first-level children's end events (#8374)
[ { "path": "src/platforms/web/runtime/components/transition-group.js", "patch": "@@ -116,6 +116,9 @@ export default {\n addTransitionClass(el, moveClass)\n s.transform = s.WebkitTransform = s.transitionDuration = ''\n el.addEventListener(transitionEndEvent, el._moveCb = function cb (e...
2018-10-24T17:23:12
ggml-org/llama.cpp
0db81098494023775a704a44042c317d36c91f24
9b8329de7a7200385aaac16ab4a2ab79ae14d829
convert : lint fix (#18507)
[ { "path": "convert_hf_to_gguf.py", "patch": "@@ -9304,6 +9304,7 @@ def tensor_force_quant(self, name, new_name, bid, n_dims):\n return gguf.GGMLQuantizationType.F32\n return super().tensor_force_quant(name, new_name, bid, n_dims)\n \n+\n @ModelBase.register(\"FalconH1ForCausalLM\")\n cla...
2025-12-31T13:28:21
denoland/deno
974c6da2e9f587ca8a5ba44ca46911a345947815
40c1da687a9457ac48c9d711b99596e784e17be7
fix(core): don't panic in to_v8_error when JS error builder callback fails (#32749) ## Summary - When the JS error builder callback in `to_v8_error` throws (e.g. due to stack overflow or `Object.prototype` / `Array.prototype` pollution), fall back to returning the plain message string instead of panicking - Adds a uni...
[ { "path": "libs/core/error.rs", "patch": "@@ -333,19 +333,14 @@ pub fn to_v8_error<'s, 'i>(\n match maybe_exception {\n Some(exception) => exception,\n None => {\n- let mut msg =\n- \"Custom error class must have a builder registered\".to_string();\n+ // The JS error builder callb...
2026-03-17T15:06:27
ollama/ollama
798b107f19ed832d33a6816f11363b42888aaed3
6a1b4713658bc34d071af60e8e6420b6886b3d44
Fixed the API endpoint /api/tags when the model list is empty. (#4424) * Fixed the API endpoint /api/tags to return {models: []} instead of {models: null} when the model list is empty. * Update server/routes.go --------- Co-authored-by: Jeffrey Morgan <jmorganca@gmail.com>
[ { "path": "server/routes.go", "patch": "@@ -725,7 +725,7 @@ func (s *Server) ListModelsHandler(c *gin.Context) {\n \t\treturn\n \t}\n \n-\tvar models []api.ModelResponse\n+\tmodels := []api.ModelResponse{}\n \tif err := filepath.Walk(manifests, func(path string, info os.FileInfo, _ error) error {\n \t\tif !...
2024-05-14T18:18:10
vuejs/vue
5cfdf1a2484fa73b572eae4afd196dcf9e1912ba
038ed86967b70a8b7305104e63afaa586857af48
fix: handle undefined style properties in jsdom (fix #7444) (#8281)
[ { "path": "src/platforms/web/runtime/transition-util.js", "patch": "@@ -122,11 +122,12 @@ export function getTransitionInfo (el: Element, expectedType?: ?string): {\n hasTransform: boolean;\n } {\n const styles: any = window.getComputedStyle(el)\n- const transitionDelays: Array<string> = styles[transit...
2018-10-24T17:06:17
huggingface/transformers
c3acdd5799b57e3b3ecf9e49575365d10649c332
15735a435c026717a89a0805975ce5c2d80128f8
[core] fix fp-quant (#42613) * initial * quantization fixed * up * working * fix * style * clean * reset * style * rm duplicate * ci: empty commit --------- Co-authored-by: Marc Sun <57196510+SunMarc@users.noreply.github.com>
[ { "path": "src/transformers/conversion_mapping.py", "patch": "@@ -142,11 +142,11 @@ def _build_checkpoint_conversion_mapping():\n if hasattr(torch.nn.utils.parametrizations, \"weight_norm\"):\n mapping[\"legacy\"] += [\n WeightRenaming(\n- source_patterns=\"weight_g\",...
2025-12-10T16:51:13
ggml-org/llama.cpp
9b8329de7a7200385aaac16ab4a2ab79ae14d829
9a6369bb603457f277b597f0ccee1c19cd25c4b2
mtmd : Adding support for Nvidia Music Flamingo Model (#18470) * Inital commit, debugging q5_k_s quant * Made hf_to_gguf extend whisper to reduce code duplication * addressed convert_hf_to_gguf pull request issue --------- Co-authored-by: Henry D <henrydorsey147@gmail.com>
[ { "path": "convert_hf_to_gguf.py", "patch": "@@ -3503,7 +3503,7 @@ def set_vocab(self):\n self._set_vocab_qwen()\n \n \n-@ModelBase.register(\"Qwen2Model\", \"Qwen2ForCausalLM\", \"Qwen2AudioForConditionalGeneration\", \"KORMoForCausalLM\")\n+@ModelBase.register(\"Qwen2Model\", \"Qwen2ForCausalLM\",...
2025-12-31T11:13:23
denoland/deno
40c1da687a9457ac48c9d711b99596e784e17be7
457de64d2d322e448b171f614afa743c9fcd0123
feat(ext/signals): support additional signals on Windows (#32689) ## Summary - Add SIGTERM, SIGQUIT, SIGKILL, and SIGABRT to the Windows signal dictionary, matching libuv's signal definitions - `Deno.addSignalListener("SIGTERM", ...)` and `Deno.addSignalListener("SIGQUIT", ...)` now work on Windows - `Deno.kill()` on...
[ { "path": "cli/tsc/dts/lib.deno.ns.d.ts", "patch": "@@ -3694,8 +3694,8 @@ declare namespace Deno {\n * );\n * ```\n *\n- * _Note_: On Windows only `\"SIGINT\"` (CTRL+C) and `\"SIGBREAK\"` (CTRL+Break)\n- * are supported.\n+ * _Note_: On Windows only `\"SIGINT\"` (CTRL+C), `\"SIGBREAK\"` (CTRL...
2026-03-17T14:47:03
ollama/ollama
41ba3017fd74dfce9a3dc00160f29befec85a41b
8080fbce35dab9087c1bd9eb6e75f44facd006df
Fix OpenAI `finish_reason` values when empty (#4368)
[ { "path": "openai/openai.go", "patch": "@@ -107,9 +107,14 @@ func toChatCompletion(id string, r api.ChatResponse) ChatCompletion {\n \t\tModel: r.Model,\n \t\tSystemFingerprint: \"fp_ollama\",\n \t\tChoices: []Choice{{\n-\t\t\tIndex: 0,\n-\t\t\tMessage: Message{Role: r.Message.Role, ...
2024-05-11T22:31:41
vuejs/vue
46b8d2c59dc259995a71662229ed52b8b8beeb38
ecac831691d27cf7a10ec73a004d3fbad7623d1a
fix(server): use path.posix.join to generate public path (#8177) fix #8167
[ { "path": "src/server/template-renderer/index.js", "patch": "@@ -60,7 +60,7 @@ export default class TemplateRenderer {\n // extra functionality with client manifest\n if (options.clientManifest) {\n const clientManifest = this.clientManifest = options.clientManifest\n- this.publicPath = c...
2018-10-24T17:02:11
huggingface/transformers
15735a435c026717a89a0805975ce5c2d80128f8
51a667397bf029ef459b3f26f098669a86273b90
[Quantization] Fix Static FP8 Quantization (#42775) * fix * fix style * Update src/transformers/integrations/finegrained_fp8.py Co-authored-by: Marc Sun <57196510+SunMarc@users.noreply.github.com> * fix * style * Update src/transformers/integrations/finegrained_fp8.py Co-authored-by: Marc Sun <57196510+SunMarc@...
[ { "path": "src/transformers/integrations/finegrained_fp8.py", "patch": "@@ -466,9 +466,11 @@ def forward(self, input: torch.Tensor) -> torch.Tensor:\n qinput, scale = act_quant(input, self.block_size[1])\n elif self.activation_scheme == \"static\":\n s...
2025-12-10T16:40:57
denoland/deno
457de64d2d322e448b171f614afa743c9fcd0123
44301a6b8e8559f59454e07ebd6d132371a1cc40
fix(repl): fix panic when pressing Tab at beginning of line (#32750) ## Summary - Fixes a panic (usize underflow) in the REPL when pressing Tab at the beginning of a line that contains text - The `get_expr_from_line_at_pos` function was looking at text *after* the cursor to determine the completion expression, then su...
[ { "path": "cli/tools/repl/editor.rs", "patch": "@@ -169,15 +169,8 @@ fn is_word_boundary(c: char) -> bool {\n \n fn get_expr_from_line_at_pos(line: &str, cursor_pos: usize) -> &str {\n let start = line[..cursor_pos].rfind(is_word_boundary).unwrap_or(0);\n- let end = line[cursor_pos..]\n- .rfind(is_wor...
2026-03-17T14:46:07
ggml-org/llama.cpp
ecc343de63ac1aaba9c74cd26807fd60aec31ab9
01ade96e71b62b482019e42dd74551758fde8851
CUDA: fix KQ max calculation (#18487)
[ { "path": "ggml/src/ggml-cuda/fattn-mma-f16.cuh", "patch": "@@ -531,7 +531,7 @@ static __device__ __forceinline__ void flash_attn_ext_f16_iter(\n for (int k0 = 0; k0 < nbatch_fa; k0 += np*T_C_KQ::I) {\n #pragma unroll\n for (int l = 0; l < T_C_KQ::ne; ++l) {\n- if (!oob_ch...
2025-12-31T08:37:00
ollama/ollama
8080fbce35dab9087c1bd9eb6e75f44facd006df
ec14f6ceda63183987deb328686f85ad3194e7b0
fix `ollama create`'s usage string (#4362)
[ { "path": "cmd/cmd.go", "patch": "@@ -1050,7 +1050,7 @@ func NewCLI() *cobra.Command {\n \t\tRunE: CreateHandler,\n \t}\n \n-\tcreateCmd.Flags().StringP(\"file\", \"f\", \"Modelfile\", \"Name of the Modelfile (default \\\"Modelfile\\\")\")\n+\tcreateCmd.Flags().StringP(\"file\", \"f\", \"Modelfile\", \"N...
2024-05-11T21:47:49
vuejs/vue
ecac831691d27cf7a10ec73a004d3fbad7623d1a
61c32cc6732aaf225d868cee79872d9d9fdd5dcc
fix(compiler): templates inside v-pre should be rendered to HTML (#8146) close #8041
[ { "path": "src/compiler/codegen/index.js", "patch": "@@ -18,6 +18,7 @@ export class CodegenState {\n maybeComponent: (el: ASTElement) => boolean;\n onceId: number;\n staticRenderFns: Array<string>;\n+ pre: boolean;\n \n constructor (options: CompilerOptions) {\n this.options = options\n@@ -29,6...
2018-10-24T17:01:29
huggingface/transformers
51a667397bf029ef459b3f26f098669a86273b90
f54647c80ea7091d425087546725b56371bf6068
Override Transformers defaults by GGUF defaults (#42770) * Override Transformers defaults by GGUF defaults In some models, GGUF uses default or fixed values different from this library. To integrate GGUF-based models without additional configuration, we need some kind of compatibility layer. This commit provides ad...
[ { "path": "src/transformers/integrations/__init__.py", "patch": "@@ -54,6 +54,7 @@\n \"finegrained_fp8\": [\"FP8Linear\", \"replace_with_fp8_linear\"],\n \"fsdp\": [\"is_fsdp_enabled\", \"is_fsdp_managed_module\"],\n \"ggml\": [\n+ \"GGUF_CONFIG_DEFAULTS_MAPPING\",\n \"GGUF_CONFIG...
2025-12-10T14:35:55
ggml-org/llama.cpp
c8a37980419e8b7f0193d058fb6f8f01b458cfca
4849661d9898ac3caf59ddd62044185805084370
Work around broken IntelSYCLConfig.cmake in Intel oneAPI 2025.x (#18345) * cmake: work around broken IntelSYCLConfig.cmake in oneAPI 2025.x * [AI] sycl: auto-detect and skip incompatible IntelSYCL package Automatically detect compiler versions with incompatible IntelSYCL CMake configuration files and fall back to ma...
[ { "path": "ggml/src/ggml-sycl/CMakeLists.txt", "patch": "@@ -36,7 +36,47 @@ if (WIN32)\n endif()\n endif()\n \n-find_package(IntelSYCL)\n+macro(detect_and_find_package package_name)\n+ set(test_source \"\n+ cmake_minimum_required(VERSION ${CMAKE_VERSION})\n+ project(check_package LANGUAGES CXX)...
2025-12-31T01:08:44
vuejs/vue
61c32cc6732aaf225d868cee79872d9d9fdd5dcc
e9fc04ba50782c15703392272322e277fb92dd9a
Fix: block unnecessary input event on input tag placeholder in IE (#8140)
[ { "path": "src/platforms/web/runtime/modules/attrs.js", "patch": "@@ -97,7 +97,7 @@ function baseSetAttr (el, key, value) {\n /* istanbul ignore if */\n if (\n isIE && !isIE9 &&\n- el.tagName === 'TEXTAREA' &&\n+ (el.tagName === 'TEXTAREA' || el.tagName === 'INPUT') &&\n key ==...
2018-10-24T17:01:02
huggingface/transformers
f54647c80ea7091d425087546725b56371bf6068
1b8ccf1ca027d25da70457d962ab9360bc9dbe8d
fix: support tensor labels in DataCollatorWithFlattening (#42620) * fix: support tensor labels in DataCollatorWithFlattening - Add tensor to list conversion in DataCollatorWithFlattening - Convert input_ids and labels to list if they are tensors - Add tests for both tensor and list labels - Fixes #42599 * style: fix...
[ { "path": "src/transformers/data/data_collator.py", "patch": "@@ -1413,9 +1413,17 @@ def __call__(self, features, return_tensors=None, separator_id=None):\n max_length = 0\n for seq_idx, sample in enumerate(features):\n input_ids = sample[\"input_ids\"]\n+ # Conver...
2025-12-10T14:09:12
vuejs/vue
e9fc04ba50782c15703392272322e277fb92dd9a
aef2a5f3dbd5e52ec9d5ce026d7b858539057186
test: fix assertion
[ { "path": "test/unit/modules/compiler/parser.spec.js", "patch": "@@ -512,7 +512,7 @@ describe('parser', () => {\n \n it('empty v-bind expression', () => {\n parse('<div :empty-msg=\"\"></div>', baseOptions)\n- expect('The value for a v-bind expression cannot be empty. Found in \"empty-msg\"').toHav...
2018-10-24T16:58:21
ollama/ollama
824ee5446f498092653e647fdef2167d28e33b4b
879e2caf8ccd93e4ff758089f50f985d3b470f4e
Fix envconfig unit test
[ { "path": "server/envconfig/config_test.go", "patch": "@@ -1,20 +1,20 @@\n package envconfig\n \n import (\n-\t\"os\"\n \t\"testing\"\n \n \t\"github.com/stretchr/testify/require\"\n )\n \n func TestConfig(t *testing.T) {\n-\tos.Setenv(\"OLLAMA_DEBUG\", \"\")\n+\tDebug = false // Reset whatever was loaded i...
2024-05-10T23:49:48
ggml-org/llama.cpp
0f89d2ecf14270f45f43c442e90ae433fd82dab1
ac1d0eb7bf8c59b81a2cceb4a8dac1f44d201a3f
common : default content to an empty string (#18485) * common : default content to an empty string * common : fix tests that break when content != null
[ { "path": "common/chat.cpp", "patch": "@@ -319,7 +319,7 @@ json common_chat_msgs_to_json_oaicompat(const std::vector<common_chat_msg> & msg\n }\n }\n } else {\n- jmsg[\"content\"] = json(); // null\n+ jmsg[\"content\"] = \"\";\n }\n i...
2025-12-30T18:00:57
huggingface/transformers
1b8ccf1ca027d25da70457d962ab9360bc9dbe8d
b9951b4e8f862a0b7505269537b5e2a423a065e2
Command-a-vision fix (#42642) * Add test case and update image processing * Apply suggestions from code review * improve naming
[ { "path": "src/transformers/models/cohere2_vision/image_processing_cohere2_vision_fast.py", "patch": "@@ -93,8 +93,9 @@ def get_optimal_tiled_canvas(\n patch_size_height, patch_size_width = target_tile_size # (height == width)\n \n candidate_resolutions = np.array(possible_resolutions) * patch_size...
2025-12-10T13:31:27
vuejs/vue
aef2a5f3dbd5e52ec9d5ce026d7b858539057186
f5b5b3c96f00a321e0ba41f0d33a42b2338ef750
fix(compiler): maybeComponent should return true when "is" attribute exists (#8114) close #8101
[ { "path": "src/compiler/codegen/index.js", "patch": "@@ -26,7 +26,7 @@ export class CodegenState {\n this.dataGenFns = pluckModuleFunction(options.modules, 'genData')\n this.directives = extend(extend({}, baseDirectives), options.directives)\n const isReservedTag = options.isReservedTag || no\n-...
2018-10-24T16:50:42
ggml-org/llama.cpp
ac1d0eb7bf8c59b81a2cceb4a8dac1f44d201a3f
cd78e57c3aeae7b56c5843f94e0e0b83a3d8ca81
llama : fix typo in comment in llama-kv-cache.h [no ci] (#18489)
[ { "path": "src/llama-kv-cache.h", "patch": "@@ -305,7 +305,7 @@ class llama_kv_cache_context : public llama_memory_context_i {\n bool do_shift,\n stream_copy_info sc_info);\n \n- // used to create a batch procesing context from a batch\n+ // used to create a batch processing co...
2025-12-30T16:20:14
huggingface/transformers
508a9764e5bed8ab3171115538983d4d3d3d1c39
2e29a9a664fc3869794fbb2b9ace4ccae6cdea57
[kernels] Fix kernel CI (#42764) fix kernel ci
[ { "path": "tests/kernels/test_kernels.py", "patch": "@@ -321,7 +321,7 @@ def test_load_and_register_flash_attn_like_kernel(self):\n \n with (\n patch(\"transformers.integrations.hub_kernels.get_kernel\", return_value=kernel_obj),\n- patch(\"transformers.integrations.hub_kernel...
2025-12-10T10:49:12
vuejs/vue
ecc239e47516d7f9a93b2cd49da4a2000960b8f7
1b69cbde74fd1d183a0c8afd72e774b8bf1daa89
fix(for): use IE compatible regex in v-for regex (#8048) Closes #7946
[ { "path": "src/compiler/parser/index.js", "patch": "@@ -21,7 +21,7 @@ import {\n \n export const onRE = /^@|^v-on:/\n export const dirRE = /^v-|^@|^:/\n-export const forAliasRE = /([^]*?)\\s+(?:in|of)\\s+([^]*)/\n+export const forAliasRE = /([\\s\\S]*?)\\s+(?:in|of)\\s+([\\s\\S]*)/\n export const forIterato...
2018-10-24T16:48:07
denoland/deno
4ba47aaff3e9d9abecfb655b36cf736dfef3546a
3998494368e93e46d8151e51d1b42152831b8b73
perf(ext/web): add write buffering for FsFile.writable streams (#32676) ## Summary - Add opt-in write buffering to `writableStreamForRid()` via a new `bufferSize` option - Enable 64KB buffering for `FsFile.writable` streams only — network sockets, stdin, QUIC, and WebTransport remain unbuffered - Small chunks are acc...
[ { "path": "ext/fs/30_fs.js", "patch": "@@ -663,7 +663,12 @@ class FsFile {\n \n get writable() {\n if (this.#writable === undefined) {\n- this.#writable = writableStreamForRid(this.#rid);\n+ this.#writable = writableStreamForRid(\n+ this.#rid,\n+ true,\n+ undefined,\n+ ...
2026-03-17T14:42:20
huggingface/transformers
2e29a9a664fc3869794fbb2b9ace4ccae6cdea57
8f978e5b4ed99efa8603249765bead48baa4d8de
Ensure e_score_correction_bias dtype of DeepSeek-V3/R1 is FP32 (#42580) * Ensure e_score_correction_bias dtype of DeepSeek-V3/R1 is FP32 * fix CI Signed-off-by: He, Xin3 <xin3.he@intel.com> --------- Signed-off-by: He, Xin3 <xin3.he@intel.com>
[ { "path": "src/transformers/models/deepseek_v3/modeling_deepseek_v3.py", "patch": "@@ -548,6 +548,7 @@ class DeepseekV3PreTrainedModel(PreTrainedModel):\n \"hidden_states\": DeepseekV3DecoderLayer,\n \"attentions\": DeepseekV3Attention,\n }\n+ _keep_in_fp32_modules_strict = [\"e_score...
2025-12-10T10:46:28