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 |
|---|---|---|---|---|---|
ggml-org/llama.cpp | cd78e57c3aeae7b56c5843f94e0e0b83a3d8ca81 | c32fa21db8a631e9127e55f69a3d2bdaa9f71824 | lora: count lora nodes in graph_max_nodes (#18469)
* lora: count lora nodes in graph_max_nodes
* 3 nodes per weight
* 4 nodes
* keep track n_lora_nodes from llama_model
* fix assert
* rm redundant header
* common: load adapters before context creation
* use 6 nodes | [
{
"path": "common/common.cpp",
"patch": "@@ -1109,6 +1109,25 @@ common_init_result::common_init_result(common_params & params) :\n \n const llama_vocab * vocab = llama_model_get_vocab(model);\n \n+ // load and optionally apply lora adapters (must be loaded before context creation)\n+ for (auto & l... | 2025-12-30T14:53:12 |
ollama/ollama | 074dc3b9d87f03de21a1c599caa5980d2a28f586 | 86f9b582d5d8ccd44ba6bb8daddea5774209ef7c | Integration fixes | [
{
"path": "integration/concurrency_test.go",
"patch": "@@ -217,7 +217,7 @@ func TestMultiModelStress(t *testing.T) {\n \t\t\tdefer wg.Done()\n \t\t\tfor j := 0; j < 3; j++ {\n \t\t\t\tslog.Info(\"Starting\", \"req\", i, \"iter\", j, \"model\", req[i].Model)\n-\t\t\t\tDoGenerate(ctx, t, client, req[i], resp[... | 2024-05-10T21:13:26 |
vuejs/vue | db7287c23b11bdc032fb0786e6617f3c6c40c835 | 7597bb06e0d9ba142f894de5b90b2bf2d7765e08 | fix(shared): check dates in looseEqual (#7940)
Fix #7928
thanks to @w3cj for the initial version. This one is using getTime instead of toUTCString because it
is much faster to compare | [
{
"path": "src/shared/util.js",
"patch": "@@ -286,6 +286,8 @@ export function looseEqual (a: any, b: any): boolean {\n return a.length === b.length && a.every((e, i) => {\n return looseEqual(e, b[i])\n })\n+ } else if (a instanceof Date && b instanceof Date) {\n+ return... | 2018-10-24T16:45:06 |
denoland/deno | 3998494368e93e46d8151e51d1b42152831b8b73 | c6656936dd49e26df913d4af6c936429116beb38 | fix(ext/node): signal listeners added via `process.once` can now be removed (#32606)
## Summary
- Fix `process.once("SIGINT", handler)` followed by
`process.removeListener("SIGINT", handler)` not actually removing the
Deno-level signal listener
- When `EventEmitter.once()` wraps a handler, `Process.prototype.off`
now... | [
{
"path": "ext/node/polyfills/process.ts",
"patch": "@@ -484,6 +484,31 @@ function Process(this: any) {\n }\n Process.prototype = Object.create(EventEmitter.prototype);\n \n+// Look up the actual registered listener for a signal event. When `once()` is\n+// used, EventEmitter wraps the listener in a functio... | 2026-03-17T13:17:57 |
ggml-org/llama.cpp | c32fa21db8a631e9127e55f69a3d2bdaa9f71824 | f14f4e421b2177fadcf9d15ebccb0492e5464d86 | sampling: reuse token data buffer in llama_sampler_sample (#18365)
* sampling: reuse token data buffer in llama_sampler_sample
* move cur buffer before timing section, after samplers
* minor : fix build
---------
Co-authored-by: Georgi Gerganov <ggerganov@gmail.com> | [
{
"path": "src/llama-sampling.cpp",
"patch": "@@ -421,39 +421,6 @@ void llama_sampler_free(struct llama_sampler * smpl) {\n delete smpl;\n }\n \n-llama_token llama_sampler_sample(struct llama_sampler * smpl, struct llama_context * ctx, int32_t idx) {\n- const auto * logits = llama_get_logits_ith(ctx,... | 2025-12-30T14:27:49 |
vuejs/vue | 7597bb06e0d9ba142f894de5b90b2bf2d7765e08 | 9d2f9a034f9c40d5ba6d8b1e131b1bfb675dc1cf | test: fix ssr tests | [
{
"path": "test/ssr/compile-with-webpack.js",
"patch": "@@ -4,6 +4,7 @@ import MemoryFS from 'memory-fs'\n \n export function compileWithWebpack (file, extraConfig, cb) {\n const config = Object.assign({\n+ mode: 'development',\n entry: path.resolve(__dirname, 'fixtures', file),\n module: {\n ... | 2018-10-24T16:42:53 |
ggml-org/llama.cpp | f14f4e421b2177fadcf9d15ebccb0492e5464d86 | 2d6c00a9b8bb4d72f4f43c6521ff1061088e2c2c | server: fix files built redundantly (#18474) | [
{
"path": "tools/server/CMakeLists.txt",
"patch": "@@ -38,14 +38,6 @@ set(TARGET_SRCS\n server-http.h\n server-models.cpp\n server-models.h\n- server-task.cpp\n- server-task.h\n- server-queue.cpp\n- server-queue.h\n- server-common.cpp\n- server-common.h\n- server-context.cpp... | 2025-12-30T12:11:13 |
denoland/deno | c6656936dd49e26df913d4af6c936429116beb38 | 66db846d664561ad12b1535154c6f177a532e3c8 | fix(ext/telemetry): add exception.* attributes to OTEL log records (#32726)
## Summary
- When a single Error object is logged via
`console.log`/`console.error`/etc., the OTEL log record now includes
`exception.type`, `exception.message`, and `exception.stacktrace`
attributes per the [OpenTelemetry semantic convention... | [
{
"path": "ext/telemetry/lib.rs",
"patch": "@@ -1324,12 +1324,27 @@ macro_rules! attr {\n };\n }\n \n+/// Convert the integer log level that ext/console uses to the corresponding\n+/// OpenTelemetry log severity.\n+fn severity_from_level(level: i32) -> Severity {\n+ match level {\n+ ..=0 => Severity::... | 2026-03-17T12:44:34 |
huggingface/transformers | 8f978e5b4ed99efa8603249765bead48baa4d8de | 6d0adb5bab99a1175bc77036a490d3779bb210ee | [Quantization] Fixing some tests (#42763)
* fix
* skip | [
{
"path": "src/transformers/quantizers/quantizer_bitnet.py",
"patch": "@@ -81,7 +81,6 @@ def _process_model_before_weight_loading(\n model,\n modules_to_not_convert=self.modules_to_not_convert,\n quantization_config=self.quantization_config,\n- pre_quantized=se... | 2025-12-10T10:24:10 |
ollama/ollama | e03637176d90cc5e298e13dfd5e583b2989b3aee | c02db93243353855b983db2a1562a02b57e66db1 | fix(routes): skip bad manifests | [
{
"path": "server/routes.go",
"patch": "@@ -735,24 +735,27 @@ func (s *Server) ListModelsHandler(c *gin.Context) {\n \n \t\t\tn := model.ParseNameFromFilepath(rel)\n \t\t\tif !n.IsValid() {\n-\t\t\t\tslog.Info(\"invalid model filepath\", \"path\", rel)\n+\t\t\t\tslog.Warn(\"bad manifest filepath\", \"path\"... | 2024-05-10T00:44:34 |
vuejs/vue | 9d2f9a034f9c40d5ba6d8b1e131b1bfb675dc1cf | 76fd45c9fd611fecfa79997706a5d218de206b68 | fix(sfc): avoid deindent when pad option is specified (#7647) | [
{
"path": "src/sfc/parser.js",
"patch": "@@ -83,11 +83,15 @@ export function parseComponent (\n function end (tag: string, start: number) {\n if (depth === 1 && currentBlock) {\n currentBlock.end = start\n- let text = deindent(content.slice(currentBlock.start, currentBlock.end))\n+ let... | 2018-10-24T16:10:58 |
ggml-org/llama.cpp | a864fb1c14cf187831a1806c3b57e47c730afc1d | 51a48720b8e46f4173a9535dc895e45e800f18b3 | model-conversion : use CONVERTED_MODEL for compare-embeddings (#18461)
This commit updates the causal model verification script to use the
CONVERTED_MODEL environment variable instead of using the MODEL_PATH
(the original model path) as the basis for the converted model file
name.
The motivation for this that current... | [
{
"path": "examples/model-conversion/scripts/causal/compare-embeddings-logits.sh",
"patch": "@@ -5,8 +5,11 @@ set -e\n MODEL_PATH=\"${1:-\"$MODEL_PATH\"}\"\n MODEL_NAME=\"${2:-$(basename \"$MODEL_PATH\")}\"\n \n+CONVERTED_MODEL_PATH=\"${1:-\"$CONVERTED_MODEL\"}\"\n+CONVERTED_MODEL_NAME=\"${2:-$(basename \"$... | 2025-12-30T09:13:12 |
denoland/deno | 66db846d664561ad12b1535154c6f177a532e3c8 | 14bb3e72d971ce6b83d45d169aeac2a6f0db57eb | fix(ext/web): upgrade QuotaExceededError to DOMException derived interface (#32244)
Implements the WebIDL spec change
(https://github.com/whatwg/webidl/pull/1465) that upgrades
`QuotaExceededError` from a `DOMException` error name to a proper
derived class extending `DOMException`.
---------
Co-authored-by: Bartek I... | [
{
"path": "cli/tsc/dts/lib.deno_web.d.ts",
"patch": "@@ -69,6 +69,31 @@ declare var DOMException: {\n readonly DATA_CLONE_ERR: 25;\n };\n \n+/** @category Platform */\n+interface QuotaExceededErrorOptions {\n+ quota?: number;\n+ requested?: number;\n+}\n+\n+/**\n+ * Represents an error when a quota has ... | 2026-03-17T12:39:20 |
huggingface/transformers | 6d0adb5bab99a1175bc77036a490d3779bb210ee | 3230fb50809566f6ea8c0beaad080ac2bb7c0a62 | Only call `torch.autocast` if it will have an effect (#42747)
* Only call `torch.autocast` if it will have an effect
Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com>
* whitespace
Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com>
* fixup
Signed-off-by: Harry Mellor <199... | [
{
"path": "src/transformers/models/afmoe/modeling_afmoe.py",
"patch": "@@ -37,7 +37,7 @@\n from ...modeling_utils import ALL_ATTENTION_FUNCTIONS, PreTrainedModel\n from ...processing_utils import Unpack\n from ...utils import TransformersKwargs, auto_docstring, can_return_tuple\n-from ...utils.generic impor... | 2025-12-10T09:20:27 |
vuejs/vue | af819a07dd8c2afc94e670e81b5e248f82794334 | 5e912976c45ca19d8524657bffe6883723027ed2 | refactor(shared-utils): Improve readability and consistency in code comments (#8529)
Improvements that apply to all comments:
- Consistent use of periods
- Consistent use of commas
- Consistent capitalization
- Correct use of articles (a, an, the)
Improvements to specific comments:
- Correct pluralization in t... | [
{
"path": "src/shared/util.js",
"patch": "@@ -2,8 +2,8 @@\n \n export const emptyObject = Object.freeze({})\n \n-// these helpers produces better vm code in JS engines due to their\n-// explicitness and function inlining\n+// These helpers produce better VM code in JS engines due to their\n+// explicitness ... | 2018-10-23T19:53:47 |
ggml-org/llama.cpp | 51a48720b8e46f4173a9535dc895e45e800f18b3 | c9a3b40d6578f2381a1373d10249403d58c3c5bd | webui: fix prompt progress ETA calculation (#18468)
* webui: fix prompt progress ETA calculation
* handle case done === 0 | [
{
"path": "tools/server/webui/src/lib/hooks/use-processing-state.svelte.ts",
"patch": "@@ -6,6 +6,7 @@ export interface LiveProcessingStats {\n \ttotalTokens: number;\n \ttimeMs: number;\n \ttokensPerSecond: number;\n+\tetaSecs?: number;\n }\n \n export interface LiveGenerationStats {\n@@ -82,6 +83,15 @@ ex... | 2025-12-29T20:42:11 |
denoland/deno | 14bb3e72d971ce6b83d45d169aeac2a6f0db57eb | 5e966f128d68cdd9b030821be59ae6b4907a1557 | fix(test): allow test functions to override reported location (#32732)
Fixes #20047.
---------
Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com> | [
{
"path": "cli/js/40_test.js",
"patch": "@@ -20,9 +20,13 @@ const {\n DateNow,\n Error,\n Map,\n+ NumberIsNaN,\n MapPrototypeGet,\n MapPrototypeSet,\n SafeArrayIterator,\n+ StringPrototypeLastIndexOf,\n+ StringPrototypeSlice,\n+ SymbolFor,\n SymbolToStringTag,\n TypeError,\n } = primordi... | 2026-03-17T12:27:02 |
ggml-org/llama.cpp | c9a3b40d6578f2381a1373d10249403d58c3c5bd | 0bd1212a43561a55d89d468b7ca5265647dab1fd | Webui/prompt processing progress (#18300)
* webui: display prompt preprocessing progress
* webui: add percentage/ETA and exclude cached tokens from progress
Address review feedback from ngxson
* webui: add minutes and first chunk (0%) case
* Update tools/server/webui/src/lib/components/app/chat/ChatMessages/ChatMe... | [
{
"path": "tools/server/webui/src/lib/components/app/chat/ChatMessages/ChatMessageAssistant.svelte",
"patch": "@@ -89,6 +89,7 @@\n \tconst fallbackToolCalls = $derived(typeof toolCallContent === 'string' ? toolCallContent : null);\n \n \tconst processingState = useProcessingState();\n+\n \tlet currentConfig... | 2025-12-29T18:32:21 |
denoland/deno | 230941513aa42a2b89d9a74adaa031cf9ce6a3a0 | 4b0474c13e88da5aa57c58a1d07255c06074c030 | fix(ext/node): fix send() validation in child_process IPC (#32779)
Two validation issues in the IPC send() function:
1. Used `new TypeError("ERR_MISSING_ARGS")` instead of the proper
`ERR_MISSING_ARGS` error class, so the error had the code as its message
instead of the correct message and code properties.
2. Missin... | [
{
"path": "ext/node/polyfills/internal/child_process.ts",
"patch": "@@ -47,6 +47,7 @@ import {\n ERR_INVALID_SYNC_FORK_INPUT,\n ERR_IPC_CHANNEL_CLOSED,\n ERR_IPC_SYNC_FORK,\n+ ERR_MISSING_ARGS,\n ERR_UNKNOWN_SIGNAL,\n } from \"ext:deno_node/internal/errors.ts\";\n import { Buffer } from \"node:buff... | 2026-03-17T11:59:23 |
huggingface/transformers | 471d7ce9abbb3bc1b3bab673367378f9dbc3caac | 5b4d72c5061a2be587598bb3b44c140abdad2914 | fix links in `CONTRIBUTING.md` (#42745)
fix links | [
{
"path": "CONTRIBUTING.md",
"patch": "@@ -125,9 +125,9 @@ If you're contributing a **vision-language model** (or any multimodal model that\n All new models should use the modular architecture pattern. Create a `modular_<model_name>.py` file using the modular model converter:\n \n - Use the CLI, [`transform... | 2025-12-09T20:28:58 |
vuejs/vue | 99a51b452fa13fc4392e87215a8c3024adf5f710 | 4dec3b52c9b71f816e6b86d42ea53e9f2e559646 | fix(types): make VNodeDirective properties optional, fix #8013 (#8003) | [
{
"path": "types/options.d.ts",
"patch": "@@ -160,9 +160,13 @@ export interface WatchOptionsWithHandler<T> extends WatchOptions {\n handler: WatchHandler<T>;\n }\n \n+export interface DirectiveBinding extends Readonly<VNodeDirective> {\n+ readonly modifiers: { [key: string]: boolean };\n+}\n+\n export ty... | 2018-10-22T20:09:23 |
ggml-org/llama.cpp | 0bd1212a43561a55d89d468b7ca5265647dab1fd | 5b1248c9afa46be1a80bc71e2be8241f18529643 | CUDA: fix replacment of bad archs in CMake (#18457) | [
{
"path": "docs/build.md",
"patch": "@@ -150,19 +150,38 @@ We also have a [guide](./backend/CUDA-FEDORA.md) for setting up CUDA toolkit in\n \n \n ### Compilation\n+\n+Make sure to read the notes about the CPU build for general instructions for e.g. speeding up the compilation.\n+\n ```bash\n cmake -B build... | 2025-12-29T16:58:20 |
huggingface/transformers | 5b4d72c5061a2be587598bb3b44c140abdad2914 | 3f3cae74245cba80b5cc34c6c3e914940ac3f109 | Add an alternative scenario to EoMT `post_process_semantic_segmentation` in case `path_offsets` is None (#42716)
* Add an alternative scenario in case patch_offsets is None
* Fixup
* Fix an error
* Simplified the function
---------
Co-authored-by: Yoni Gozlan <74535834+yonigozlan@users.noreply.github.com> | [
{
"path": "src/transformers/models/eomt/image_processing_eomt.py",
"patch": "@@ -815,7 +815,19 @@ def post_process_semantic_segmentation(\n \n segmentation_logits = torch.einsum(\"bqc, bqhw -> bchw\", masks_classes, masks_probs)\n \n- output_logits = self.merge_image_patches(segmentation_logi... | 2025-12-09T18:00:09 |
vuejs/vue | 9d19f84d4e7a281484a6eb3f92e6a266a1adc243 | 79cabadeace0e01fb63aa9f220f41193c0ca93af | docs(readme): grammar fix, extra 'the' (#8887) | [
{
"path": "README.md",
"patch": "@@ -290,7 +290,7 @@ To check out [live examples](https://vuejs.org/v2/examples/) and docs, visit [vu\n \n ## Questions\n \n-For questions and support please use the [the official forum](http://forum.vuejs.org) or [community chat](https://chat.vuejs.org/). The issue list of t... | 2018-10-02T05:56:24 |
ollama/ollama | cf442cd57e9e8cee1e56e4635520ced4926c0c33 | 0e1ba65855c7e63eb75c823526f4b023f835467a | fix typo | [
{
"path": "llm/server.go",
"patch": "@@ -218,7 +218,7 @@ func NewLlamaServer(gpus gpu.GpuInfoList, model string, ggml *GGML, adapters, pr\n \t\tif dir == \"\" {\n \t\t\t// Shouldn't happen\n \t\t\tfinalErr = fmt.Errorf(\"[%d] server %s not listed in available servers %v\", i, servers[i], availableServers)\n... | 2024-05-09T23:23:37 |
ggml-org/llama.cpp | 5b1248c9afa46be1a80bc71e2be8241f18529643 | 3595ae5963f1583f53beecf9725c919d309e15da | server : Cmdline arg -to changes http read timeout from current 600sec default (#18279)
* Prevent crash if TTFT >300sec, boosted to 90 days
* server : allow configurable HTTP timeouts for child models
* server : pass needed timeouts from params only
---------
Co-authored-by: Greg Slocum <fromgit@wbtek.slocum.net> | [
{
"path": "tools/server/server-models.cpp",
"patch": "@@ -662,7 +662,10 @@ server_http_res_ptr server_models::proxy_request(const server_http_req & req, co\n req.path,\n req.headers,\n req.body,\n- req.should_stop);\n+ req.should_stop,\n+ ... | 2025-12-29T16:12:48 |
denoland/deno | 4b0474c13e88da5aa57c58a1d07255c06074c030 | b8c4441beab7b04f7db630ba67d7db39db2df551 | fix(ext/node): improve Node.js crypto compatibility (#32690)
## Summary
- Implement `crypto.publicDecrypt` and fix `crypto.privateEncrypt` to
use correct RSA private key operation (PKCS1 type 1 padding)
- Support `KeyObject` in `publicEncrypt`/`privateDecrypt` options object
- Support options object in `crypto.hash()... | [
{
"path": "ext/node/polyfills/crypto.ts",
"patch": "@@ -191,7 +191,10 @@ function getRandomValues(typedArray) {\n function hash(\n algorithm: string,\n data: BinaryLike,\n- outputEncoding: BinaryToTextEncoding = \"hex\",\n+ outputEncodingOrOptions: BinaryToTextEncoding | {\n+ outputEncoding?: Binar... | 2026-03-17T11:48:15 |
vuejs/vue | 79cabadeace0e01fb63aa9f220f41193c0ca93af | 6b1d431a89f3f7438d01d8cc98546397f0983287 | chore: fix OpenCollective silver tier | [
{
"path": "BACKERS.md",
"patch": "@@ -21,7 +21,7 @@ Funds donated via Patreon go directly to support Evan You's full-time work on Vu\n <img width=\"260px\" src=\"https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/codexyz.png\">\n </a>\n </p>\n- \n+\n <!--special end-->\... | 2018-09-19T18:18:17 |
huggingface/transformers | 3f3cae74245cba80b5cc34c6c3e914940ac3f109 | 73a13f86f6d208882d59d1200609986c5a5f49a7 | 🚨🚨 [saving] Default to 50GB shards, and remove non-safe serialization (#42734)
* switch
* remove now useless save_function
* a bit more involved than i thought
* all converters
* fix
* pretty print
* fix
* trainer
* update musicgen.md docs
* marc comments
* doc and last missed instances
* CI
---------
C... | [
{
"path": "docs/source/en/model_doc/musicgen.md",
"patch": "@@ -60,7 +60,7 @@ This model was contributed by [sanchit-gandhi](https://huggingface.co/sanchit-ga\n \n ```bash\n python src/transformers/models/musicgen/convert_musicgen_transformers.py \\\n- --checkpoint small --pytorch_dump_folder /output/pat... | 2025-12-09T16:15:20 |
ggml-org/llama.cpp | c1366056f6cb6607b035e438fb1d10bc8b207364 | 2a85f720b8aa87488468024c0112542b7b742a0b | android: routine maintenance - Dec 2025 (#18338)
* Fix `msg` typo
* Fix thread safety in destroy() to support generation abortion in lifecycle callbacks.
* UI polish: stack new message change from below; fix GGUF margin not in view port
* Bug fixes: rare racing condition when main thread updating view and and defau... | [
{
"path": "examples/llama.android/app/build.gradle.kts",
"patch": "@@ -41,11 +41,8 @@ android {\n }\n }\n compileOptions {\n- sourceCompatibility = JavaVersion.VERSION_1_8\n- targetCompatibility = JavaVersion.VERSION_1_8\n- }\n- kotlinOptions {\n- jvmTarget = \"1.8... | 2025-12-29T13:51:13 |
denoland/deno | b8c4441beab7b04f7db630ba67d7db39db2df551 | 764ce2fb77bbdf8a55fb4f6c0215f7b85865cebb | fix(core): prevent panic when multiple lazy-loaded ESM modules are loaded during TLA (#32769)
Fixes: https://github.com/denoland/deno/issues/32758 | [
{
"path": "libs/core/modules/map.rs",
"patch": "@@ -237,6 +237,10 @@ pub(crate) struct ModuleMap {\n pending_tla_waiters:\n RefCell<HashMap<ModuleId, Vec<v8::Global<v8::PromiseResolver>>>>,\n pending_mod_evaluation: Cell<bool>,\n+ /// Set to `true` while inside `module.evaluate()` in `mod_evaluate`... | 2026-03-17T11:03:50 |
vuejs/vue | a9eb198413e7b1baaf364e93ec3c093734529fe8 | 1e1ce0cac7d6c22c980021cbd3cb207a47e85dfb | fix(types): relax the return type of props default option (#8537) | [
{
"path": "types/options.d.ts",
"patch": "@@ -133,7 +133,7 @@ export type PropValidator<T> = PropOptions<T> | Prop<T> | Prop<T>[];\n export interface PropOptions<T=any> {\n type?: Prop<T> | Prop<T>[];\n required?: boolean;\n- default?: T | null | undefined | (() => object);\n+ default?: T | null | und... | 2018-09-18T02:33:58 |
ollama/ollama | 3ae2f441e05af8e42f3030920b087b7c2e2afc7b | 83d6d46e29a8f83fd3e2830f66e7421071657dc2 | Fix race in shutdown logic
Ensure the runners are terminated | [
{
"path": "server/routes.go",
"patch": "@@ -1036,7 +1036,8 @@ func Serve(ln net.Listener) error {\n \t}\n \n \tctx, done := context.WithCancel(context.Background())\n-\tsched := InitScheduler(ctx)\n+\tschedCtx, schedDone := context.WithCancel(ctx)\n+\tsched := InitScheduler(schedCtx)\n \ts := &Server{addr: ... | 2024-05-09T22:47:02 |
ggml-org/llama.cpp | daa242dfc88e80df2d60bc5e8fd4d2fffa3e220c | e70e640db3868fbffea1e9499148c168c98aa5a4 | common: fix return value check for setpriority (#18412)
* common: fix return value check for setpriority
* tools: add logging for process priority setting | [
{
"path": "common/common.cpp",
"patch": "@@ -251,7 +251,7 @@ bool set_process_priority(enum ggml_sched_priority prio) {\n case GGML_SCHED_PRIO_REALTIME: p = -20; break;\n }\n \n- if (!setpriority(PRIO_PROCESS, 0, p)) {\n+ if (setpriority(PRIO_PROCESS, 0, p) != 0) {\n LOG_WRN(\"fail... | 2025-12-29T09:07:49 |
denoland/deno | 764ce2fb77bbdf8a55fb4f6c0215f7b85865cebb | f0e7923a50d7f54413a6ac92fd9d3a52656f84b7 | fix(ext/ffi): retain backing store references in nonblocking calls (#32775)
Nonblocking FFI calls extract raw pointers from ArrayBuffer backing
stores and send them to a background thread via spawn_blocking, but
without retaining a reference to the backing store. If V8's garbage
collector runs before the background th... | [
{
"path": "ext/ffi/call.rs",
"patch": "@@ -320,19 +320,29 @@ where\n };\n \n let symbol = PtrSymbol::new(pointer, &def)?;\n- let call_args = ffi_parse_args(scope, parameters, &def.parameters)?;\n- let out_buffer_ptr = out_buffer_as_ptr(scope, out_buffer);\n+ let mut backing_store_holder = BackingStor... | 2026-03-16T18:43:51 |
vuejs/vue | 1e1ce0cac7d6c22c980021cbd3cb207a47e85dfb | 3b43c81216c2e29bd519c447e930d6512b5782e8 | fix: replace hardcoded .parentNode with abstract ops, fix #8713 (#8714) | [
{
"path": "src/core/vdom/patch.js",
"patch": "@@ -272,7 +272,7 @@ export function createPatchFunction (backend) {\n function insert (parent, elm, ref) {\n if (isDef(parent)) {\n if (isDef(ref)) {\n- if (ref.parentNode === parent) {\n+ if (nodeOps.parentNode(ref) === parent) {\n ... | 2018-09-09T21:28:20 |
ggml-org/llama.cpp | 5fa66c6e67268a62913200142a19c4e0eae02a26 | 382808c14b60159f4df2e292e1a3ca5275894271 | cuda: fix race condition in cumsum (#18448)
* ggml-cuda: fix race condition in cumsum
* remove unneccesary sync_threads | [
{
"path": "ggml/src/ggml-cuda/cumsum.cu",
"patch": "@@ -61,19 +61,20 @@ static __global__ void cumsum_cub_kernel(\n \n // Add offset to each item and store\n T thread_offset = thread_prefix - thread_sum + block_carry;\n- #pragma unroll\n+#pragma unroll\n for (int i = 0; i < UN... | 2025-12-29T06:07:17 |
huggingface/transformers | 73a13f86f6d208882d59d1200609986c5a5f49a7 | 9a6df2ce9c01118036772d5d251400de3e4297d7 | Refactor-tokenization-more (#42563)
* On commit to bind them all
* nits
* smnall update
* elif
* super small nit
* BPE!
* fix
* up up up
* fix?
* one typo
* per model updates
* more model specific updates
* more per model updates
* more model specific updates
* simplify default merges
* fiuxp
* update
... | [
{
"path": "MIGRATION_GUIDE_V5.md",
"patch": "@@ -105,7 +105,7 @@ class Llama5Tokenizer(TokenizersBackend):\n self._vocab = vocab\n \n if merges is not None:\n- self._merges = merges\n+ self._merges = merges or []\n else:\n self._merges = generate... | 2025-12-09T15:37:43 |
denoland/deno | 954edda350c7691f6c34dbc9f7eed15e66f10392 | f7a43a20069fa23b82a2fd7ed631a39e4dc95680 | fix(ext/node): require --allow-net for udp.send (#32774) | [
{
"path": "ext/node/ops/udp.rs",
"patch": "@@ -460,6 +460,13 @@ pub async fn op_node_udp_send(\n #[string] hostname: String,\n #[smi] port: u16,\n ) -> Result<usize, NodeUdpError> {\n+ {\n+ state\n+ .borrow_mut()\n+ .borrow_mut::<PermissionsContainer>()\n+ .check_net(&(&hostname, Some... | 2026-03-16T18:07:21 |
vuejs/vue | c21b89ebeda4c45024c2a71bc7a292d47ebc7ee1 | 59860b0a756526f37468655598c68d119f0e74bd | fix(ssr): fix double escaping of staticClass values (#7859) (#8037) | [
{
"path": "src/server/optimizing-compiler/modules.js",
"patch": "@@ -92,7 +92,7 @@ export function genClassSegments (\n classBinding: ?string\n ): Array<StringSegment> {\n if (staticClass && !classBinding) {\n- return [{ type: RAW, value: ` class=${staticClass}` }]\n+ return [{ type: RAW, value: `... | 2018-08-20T21:49:18 |
ggml-org/llama.cpp | 382808c14b60159f4df2e292e1a3ca5275894271 | 4ffc47cb2001e7d523f9ff525335bbe34b1a2858 | ci : re-enable rocm build on amd64 (#18439)
This was disabled in #9340 due to compiler crash, but seems to build now as confirmed by the latest comments in #11913.
I've also managed to build the image with `docker build -f .devops/rocm.Dockerfile .` (for all three stages, `full`, `server` and `light`).
A quick a... | [
{
"path": ".github/workflows/docker.yml",
"patch": "@@ -45,8 +45,7 @@ jobs:\n - { tag: \"intel\", dockerfile: \".devops/intel.Dockerfile\", platforms: \"linux/amd64\", full: true, light: true, server: true, free_disk_space: true, runs_on: \"ubuntu-22.04\" }\n - { tag: \"vulkan\", dock... | 2025-12-28T23:29:23 |
denoland/deno | f7a43a20069fa23b82a2fd7ed631a39e4dc95680 | 262cb595cbfaf35439e946729ca2dee1166e2f1d | fix(ext/node): validate handle type in child_process send() (#32711)
When `send(msg, handle)` is called with an invalid handle type (e.g. a
string), Node.js throws ERR_INVALID_HANDLE_TYPE. Deno was hitting a
generic `notImplemented()` error instead, since the handle validation
was missing before the not-implemented gu... | [
{
"path": "ext/node/polyfills/internal/child_process.ts",
"patch": "@@ -43,6 +43,7 @@ import {\n AbortError,\n ERR_INVALID_ARG_TYPE,\n ERR_INVALID_ARG_VALUE,\n+ ERR_INVALID_HANDLE_TYPE,\n ERR_INVALID_SYNC_FORK_INPUT,\n ERR_IPC_CHANNEL_CLOSED,\n ERR_IPC_SYNC_FORK,\n@@ -66,7 +67,8 @@ import proce... | 2026-03-16T15:03:41 |
vuejs/vue | 3d36a443c755bf16f2656a8595dda9076f021a4a | 5a255d946c6c70218f6ebc0ddbf31029db696813 | fix: fix potential xss vulnerability in ssr when using v-bind | [
{
"path": "src/platforms/web/server/modules/attrs.js",
"patch": "@@ -14,6 +14,8 @@ import {\n isFalsyAttrValue\n } from 'web/util/attrs'\n \n+import { isSSRUnsafeAttr } from 'web/server/util'\n+\n export default function renderAttrs (node: VNodeWithData): string {\n let attrs = node.data.attrs\n let r... | 2018-08-01T19:33:47 |
ggml-org/llama.cpp | 9c675c714020748b5c3954ff334a946e29075f88 | 07a0c4ba923a8caea3eeba060d399a28c461deac | model : Plamo3 support (#17304)
* plamo3
* fix plamo3
* clean code
* clean up the code
* fix diff
* clean up the code
* clean up the code
* clean up the code
* clean up the code
* clean up the code
* clean up the code
* add chat_template if exist
* clean up the code
* fix cpu-backend
* chore: whitespace ... | [
{
"path": "convert_hf_to_gguf.py",
"patch": "@@ -1696,6 +1696,84 @@ def _set_vocab_mistral(self):\n if template is not None:\n self.gguf_writer.add_chat_template(template)\n \n+ def _set_vocab_plamo(self):\n+ # PLaMo models use a custom tokenizer with a .jsonl file\n+ to... | 2025-12-28T16:28:31 |
huggingface/transformers | 9a6df2ce9c01118036772d5d251400de3e4297d7 | 85ced0f92b6fa296d379f95ae527d7b5063eb5c1 | Fix failing `CodeGenModelTests` (#42730)
* Fixed failing codegen model tests.
* Fix failing test_codegen_sample test
* Remove breakpoint. | [
{
"path": "tests/models/codegen/test_modeling_codegen.py",
"patch": "@@ -365,7 +365,7 @@ def test_batch_generation(self):\n model.config.pad_token_id = model.config.eos_token_id\n \n # use different length sentences to test batching\n- sentences = [\"def hello_world():\", \"def greet(... | 2025-12-09T15:19:49 |
ollama/ollama | 8cc0ee2efe39b5096ab5a86418d3c067b3474db6 | d5eec16d2311b244e93f89027c3b716adfabee70 | Doc container usage and workaround for nvidia errors | [
{
"path": "docs/README.md",
"patch": "@@ -6,7 +6,7 @@\n * [Importing models](./import.md)\n * [Linux Documentation](./linux.md)\n * [Windows Documentation](./windows.md)\n-* [Docker Documentation](https://hub.docker.com/r/ollama/ollama)\n+* [Docker Documentation](./docker.md)\n \n ### Reference\n ",
"ad... | 2024-05-09T15:49:40 |
ggml-org/llama.cpp | 60f17f56da78d8fabc658279fd25e109700122da | f8d561eb87cf689afb32ae5ee72118ddffaef12b | rpc: fix segfault on invalid endpoint format (#18387)
* rpc: fix segfault on invalid endpoint format
* rpc: add error log for failed endpoint connection | [
{
"path": "common/arg.cpp",
"patch": "@@ -2017,7 +2017,7 @@ common_params_context common_params_parser_init(common_params & params, llama_ex\n if (llama_supports_rpc()) {\n add_opt(common_arg(\n {\"--rpc\"}, \"SERVERS\",\n- \"comma separated list of RPC servers\",\n+ ... | 2025-12-28T10:34:41 |
denoland/deno | 262cb595cbfaf35439e946729ca2dee1166e2f1d | 39a07b283ea8cb6756ad68d389031135ad2c26cd | fix(ext/node): fix IPC message prototype for child_process JSON (#32731)
Deno's serde_v8 layer deserializes JSON objects with null prototype
(Object.create(null)), but Node.js IPC messages should have
Object.prototype (as if from JSON.parse). This caused
assert.deepStrictEqual to fail when comparing IPC messages.
For... | [
{
"path": "ext/node/polyfills/internal/child_process.ts",
"patch": "@@ -1517,6 +1517,21 @@ function buildCommand(\n return [file, args, includeNpmProcessState];\n }\n \n+// deno-lint-ignore no-explicit-any\n+function restorePrototype(obj: any) {\n+ if (obj === null || typeof obj !== \"object\") return;\n... | 2026-03-16T15:03:32 |
huggingface/transformers | 85ced0f92b6fa296d379f95ae527d7b5063eb5c1 | ec37fc88097423e2950d7ad74fe9e652ab001ca9 | Update replace_with_ for quants methods to not use recursion (#42711)
* Fix replace
* fix bnb
* fix
* style
* fix
* fix
* styke
* fix
* style
* Apply suggestions from code review
Co-authored-by: Mohamed Mekkouri <93391238+MekkCyber@users.noreply.github.com>
---------
Co-authored-by: Mohamed Mekkouri <93391... | [
{
"path": "src/transformers/integrations/aqlm.py",
"patch": "@@ -13,88 +13,60 @@\n # limitations under the License.\n \"AQLM (Additive Quantization of Language Model) integration file\"\n \n-from ..utils import ACCELERATE_MIN_VERSION, is_accelerate_available, is_aqlm_available, is_torch_available\n+from ..q... | 2025-12-09T13:57:37 |
ggml-org/llama.cpp | f8d561eb87cf689afb32ae5ee72118ddffaef12b | e59efe6a78748e8447bc69db2d0fe51332f92c02 | llama-fit-params: fix step size for last device (#18415) | [
{
"path": "src/llama.cpp",
"patch": "@@ -512,6 +512,9 @@ static void llama_params_fit_impl(\n if (mem_high[id] > targets[id]) {\n assert(ngl_per_device_high[id].n_layer > ngl_per_device[id].n_layer);\n uint32_t delta = ngl_per_device_high[id].n_layer - ngl_per_dev... | 2025-12-28T09:52:09 |
vuejs/vue | 575b6e77ab82b0bbc581aec3ea9b07135d2d1fcd | ae6dcd63a017059644502f8741d8a514f3e9cf84 | fix(ssr): render initial and used async css chunks (#7902)
compatibility with webpack 4 + mini CSS extraction
close #7897 | [
{
"path": "src/server/template-renderer/index.js",
"patch": "@@ -108,13 +108,13 @@ export default class TemplateRenderer {\n }\n \n renderStyles (context: Object): string {\n- const cssFiles = this.clientManifest\n- ? this.clientManifest.all.filter(isCSS)\n- : []\n+ const initial = this.... | 2018-04-07T04:22:22 |
denoland/deno | 4a19007d8164dafbb1ee9b8db9767260619728d3 | 60edd7860aa82fbb4037a642d9e8ec48cd6387b5 | perf(core): optimize V8-to-Rust string conversion with ValueView (#32688)
## Summary
Leverages new APIs from rusty_v8 v146.5.0 (denoland/rusty_v8#1927) to
optimize how deno_core converts V8 strings to Rust strings. Implements
follow-up optimizations D, and G from that PR's roadmap.
### Changes
**D. Thread-local reu... | [
{
"path": "Cargo.lock",
"patch": "@@ -11173,9 +11173,9 @@ dependencies = [\n \n [[package]]\n name = \"v8\"\n-version = \"146.4.0\"\n+version = \"146.5.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"d97bcac5cdc5a195a4813f1855a6bc658f240452aac36caa12fd6c6f16026ab1\"\n... | 2026-03-16T11:50:03 |
huggingface/transformers | ec37fc88097423e2950d7ad74fe9e652ab001ca9 | c1ac18258d1060199a7e593b3a0fc531b809e601 | Fix failing `owlv2` image processor integration test (#42714)
Fixed failing owlv2 image processor integration test. | [
{
"path": "tests/models/owlv2/test_image_processing_owlv2.py",
"patch": "@@ -151,7 +151,9 @@ def test_image_processor_integration_test_resize(self):\n with torch.no_grad():\n outputs = model(**inputs)\n \n- results = processor.post_process_object_detection(outputs, thr... | 2025-12-09T13:33:00 |
ggml-org/llama.cpp | 08566977a74a09ee5fbe8d35846e50bb507b8a97 | a4bf35889eda36d3597cd0f8f333f5b8a2fcaefc | opencl: allow resizing transpose buffers (#18384)
* opencl: allow resizing transpose buffers instead of using fixed sizes
* opencl: remove commented code | [
{
"path": "ggml/src/ggml-opencl/ggml-opencl.cpp",
"patch": "@@ -263,6 +263,32 @@ static ggml_cl_compiler_version get_adreno_cl_compiler_version(const char *drive\n return { type, major, minor, patch };\n }\n \n+// cl buffer wrapper\n+struct ggml_cl_buffer {\n+ cl_mem buffer;\n+ size_t size;\n+\n+ ... | 2025-12-27T23:51:14 |
ollama/ollama | b25976aeb8542d56f48bcb97003b256cba0f6237 | 001f167aadd7bfdea2b13268a5850e336d3766dd | routes: fix show llava models | [
{
"path": "server/images.go",
"patch": "@@ -68,31 +68,31 @@ func (m *Model) String() string {\n \t\tArgs: m.ModelPath,\n \t})\n \n-\tif m.Template != \"\" {\n+\tfor _, adapter := range m.AdapterPaths {\n \t\tmodelfile.Commands = append(modelfile.Commands, model.Command{\n-\t\t\tName: \"template\",\n-\t\t\tA... | 2024-05-08T19:42:48 |
vuejs/vue | ae6dcd63a017059644502f8741d8a514f3e9cf84 | 805a4fd67602f1ac2a063284c4e2ce35be07815e | fix(ssr): remove trailing hash in webpack module identifier when
generating client manifest | [
{
"path": "src/server/webpack-plugin/client.js",
"patch": "@@ -43,7 +43,8 @@ export default class VueSSRClientPlugin {\n if (!chunk || !chunk.files) {\n return\n }\n- const files = manifest.modules[hash(m.identifier)] = chunk.files.map(fileToIndex)\n+ const ... | 2018-04-05T00:08:12 |
denoland/deno | 60edd7860aa82fbb4037a642d9e8ec48cd6387b5 | 895fa89a809c60a069535f91ddb93ef7325b4288 | fix(ext/node): fix multiple deepEqual comparison issues (#32763)
## Summary
Fixes `test-assert-deep.js` compat test from #32706.
- **Invalid dates**: Fix `NaN !== NaN` comparison by using `NumberIsNaN`
for `Date.getTime()` results, so two invalid dates with the same
properties are considered deeply equal
- **Date ty... | [
{
"path": "ext/node/polyfills/internal/util/comparisons.ts",
"patch": "@@ -16,6 +16,7 @@ import {\n isKeyObject,\n isMap,\n isNumberObject,\n+ isPromise,\n isRegExp,\n isSet,\n isStringObject,\n@@ -59,6 +60,7 @@ const {\n Int8Array,\n Map,\n Number,\n+ NumberIsNaN,\n NumberPrototypeVal... | 2026-03-16T05:24:28 |
huggingface/transformers | c1ac18258d1060199a7e593b3a0fc531b809e601 | 5ac6284b0743efd92112852348af4e52349114d0 | [kernels] make the module declaration implicit with decorator (#42700)
* initial
* fix
* fix copies
* fix
* address review
* import order
* fix copies
* fix copies
* fix
* update
* fix | [
{
"path": "src/transformers/integrations/__init__.py",
"patch": "@@ -73,6 +73,7 @@\n \"replace_kernel_forward_from_hub\",\n \"use_kernel_forward_from_hub\",\n \"use_kernel_func_from_hub\",\n+ \"use_kernelized_func\",\n ],\n \"integration_utils\": [\n \"INTEGRAT... | 2025-12-09T12:32:30 |
ggml-org/llama.cpp | a4bf35889eda36d3597cd0f8f333f5b8a2fcaefc | 026d2ad47247c006bd9ef6e583d76b6ab69875b6 | llama-fit-params: fix overflow check (#18354) | [
{
"path": "src/llama.cpp",
"patch": "@@ -389,8 +389,8 @@ static void llama_params_fit_impl(\n tensor_buft_overrides[itbo].buft = nullptr;\n itbo++;\n mparams.tensor_buft_overrides = tensor_buft_overrides;\n- throw llama_params... | 2025-12-27T19:20:45 |
vuejs/vue | 8227fb35240ab1f301c30a6ad5d4d25071fa7996 | 1bd6196fb234c28754d9a27095afe0b5b84990ad | fix: add missing `asyncMeta` during VNode cloning (#7861) | [
{
"path": "src/core/vdom/vnode.js",
"patch": "@@ -103,6 +103,7 @@ export function cloneVNode (vnode: VNode): VNode {\n cloned.fnContext = vnode.fnContext\n cloned.fnOptions = vnode.fnOptions\n cloned.fnScopeId = vnode.fnScopeId\n+ cloned.asyncMeta = vnode.asyncMeta\n cloned.isCloned = true\n retu... | 2018-03-23T23:13:10 |
denoland/deno | 895fa89a809c60a069535f91ddb93ef7325b4288 | 24bc84eb9cc812d9f3bf2f4ff9184e099eafb51e | fix(ext/console): make timer and counter state per-instance to fix OTEL console wrapping (#32719)
## Summary
- Fixes `console.time` / `console.timeEnd` / `console.count` /
`console.countReset` producing spurious warnings when OTEL is enabled
(`OTEL_DENO=true`)
- Root cause: `timerMap` and `countMap` were module-level... | [
{
"path": "ext/web/01_console.js",
"patch": "@@ -3639,8 +3639,6 @@ function createStylizeWithColor(styles, colors) {\n };\n }\n \n-const countMap = new SafeMap();\n-const timerMap = new SafeMap();\n const isConsoleInstance = Symbol(\"isConsoleInstance\");\n \n /** @param noColor {boolean} */\n@@ -3654,6 +... | 2026-03-15T16:16:07 |
huggingface/transformers | 5ac6284b0743efd92112852348af4e52349114d0 | 799103bf9a0046b3a080bf565de5cb6003a24c78 | Fix tests quantization (#42703)
* fix
* fix
* fix
* skip hqq
* fix
* fix
* fix
* Apply style fixes
---------
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> | [
{
"path": "src/transformers/integrations/quanto.py",
"patch": "@@ -49,6 +49,7 @@ def convert(\n \n # need to discard some missing keys we already updated the module in freeze.\n module_name = full_layer_name.rsplit(\".\", 1)[0]\n+ missing_keys.discard(f\"{module_name}.weight\")\n ... | 2025-12-09T11:11:51 |
ggml-org/llama.cpp | 026d2ad47247c006bd9ef6e583d76b6ab69875b6 | 06705fdcb3ef199d2c2c95a5e3cbb7cf9cc5256e | llama: fix magic number of 999 for GPU layers (#18266)
* llama: fix magic number of 999 for GPU layers
* use strings for -ngl, -ngld
* enacapsulate n_gpu_layers, split_mode | [
{
"path": "common/arg.cpp",
"patch": "@@ -2137,11 +2137,18 @@ common_params_context common_params_parser_init(common_params & params, llama_ex\n }\n }\n ).set_examples({LLAMA_EXAMPLE_SPECULATIVE, LLAMA_EXAMPLE_SERVER, LLAMA_EXAMPLE_CLI}).set_env(\"LLAMA_ARG_N_CPU_MOE_DRAFT\"));\n+ ... | 2025-12-27T19:18:35 |
ollama/ollama | 486a2c1d947880d22275756f70b96953ee1a2e40 | 2a5302a1cf0e10ac76d7761178231b59a1d083ef | types/model: fix tag case | [
{
"path": "types/model/name.go",
"patch": "@@ -290,12 +290,14 @@ func (n Name) Filepath() string {\n \tif !n.IsFullyQualified() {\n \t\tpanic(\"illegal attempt to get filepath of invalid name\")\n \t}\n-\treturn strings.ToLower(filepath.Join(\n-\t\tn.Host,\n-\t\tn.Namespace,\n-\t\tn.Model,\n+\treturn filepa... | 2024-05-08T15:47:09 |
vuejs/vue | 1bd6196fb234c28754d9a27095afe0b5b84990ad | 7a145d86430bad65271f4d6ab1344b215fefe52a | fix(codegen): support IE11 and Edge use of "Esc" key (#7887)
Closes #7880 | [
{
"path": "src/compiler/codegen/events.js",
"patch": "@@ -18,7 +18,8 @@ const keyCodes: { [key: string]: number | Array<number> } = {\n \n // KeyboardEvent.key aliases\n const keyNames: { [key: string]: string | Array<string> } = {\n- esc: 'Escape',\n+ // #7880: IE11 and Edge use `Esc` for Escape key name... | 2018-03-23T23:08:55 |
huggingface/transformers | 799103bf9a0046b3a080bf565de5cb6003a24c78 | 745ad8c7c4cd924739c4a524ae8689693ae616be | Delete previous comments of `View the CircleCI Test Summary` (#42725)
fix
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": ".github/workflows/circleci-failure-summary-comment.yml",
"patch": "@@ -173,6 +173,40 @@ jobs:\n print(f\"Uploaded {folder_path} to {dataset_id}\")\n EOF\n \n+ - name: Delete existing CircleCI summary comments\n+ if: steps.circleci.outputs.artifact_found == 'true'\n... | 2025-12-09T04:44:53 |
denoland/deno | 24bc84eb9cc812d9f3bf2f4ff9184e099eafb51e | 62a57bcb8e38b707966838888c9e1552cad8bc1e | fix(runtime): apply source maps to CPU profiler output (#32634)
## Summary
- Apply source maps to CPU profile call frames before writing, so
`--cpu-prof` reports original TypeScript line/column numbers instead of
transpiled JavaScript positions
- Reuses the existing `SourceMapper` infrastructure from `deno_core`
(same... | [
{
"path": "libs/core/lib.rs",
"patch": "@@ -182,7 +182,9 @@ pub use crate::runtime::SharedArrayBufferStore;\n pub use crate::runtime::V8_WRAPPER_OBJECT_INDEX;\n pub use crate::runtime::V8_WRAPPER_TYPE_INDEX;\n pub use crate::runtime::stats;\n+pub use crate::source_map::SourceMapApplication;\n pub use crate:... | 2026-03-15T15:27:08 |
ollama/ollama | dc9b1111e0a1be0f10c35a5be8aa5d14c047e5ff | 06ac829e7096ca912aebaa8ef7b76cdefe4d1346 | fix invalid destination error message | [
{
"path": "server/routes.go",
"patch": "@@ -799,7 +799,7 @@ func (s *Server) CopyModelHandler(c *gin.Context) {\n \n \tdst := model.ParseName(r.Destination)\n \tif !dst.IsValid() {\n-\t\tc.AbortWithStatusJSON(http.StatusBadRequest, gin.H{\"error\": fmt.Sprintf(\"destination %q is invalid\", r.Source)})\n+\t... | 2024-05-08T00:35:52 |
ggml-org/llama.cpp | a52dc60ba3ae0ef1e941ce9a4585672cc335a175 | 9045c9afe57513eef8d16e329042ea2d7afd9a95 | llama_fit_params: return enum for fail vs. error (#18374) | [
{
"path": "include/llama.h",
"patch": "@@ -467,10 +467,16 @@ extern \"C\" {\n // Frees all allocated memory\n LLAMA_API void llama_free(struct llama_context * ctx);\n \n+ enum llama_params_fit_status {\n+ LLAMA_PARAMS_FIT_STATUS_SUCCESS = 0, // found allocations that are projected to fit\n... | 2025-12-27T08:59:19 |
vuejs/vue | 7a145d86430bad65271f4d6ab1344b215fefe52a | 653aac2c57d15f0e93a2c1cc7e6fad156658df19 | fix(observer): invoke getters on initial observation if setter defined (#7828) | [
{
"path": "src/core/observer/index.js",
"patch": "@@ -147,10 +147,10 @@ export function defineReactive (\n \n // cater for pre-defined getter/setters\n const getter = property && property.get\n- if (!getter && arguments.length === 2) {\n+ const setter = property && property.set\n+ if ((!getter || set... | 2018-03-23T23:08:02 |
denoland/deno | ad32e930739ad61dfbe6ca4e2c7e56991dd94823 | 2989e306433c84551cf9f33886d9b4eb15d37d9a | fix(coverage): don't mark lines uncovered when zero-count range only partially overlaps (#32601)
## Summary
Fixes #13781 — `finally` blocks (and `if` condition lines) were
incorrectly marked as uncovered when all branches in `try`/`catch` had
`return` statements.
## Root cause
The coverage line count algorithm has ... | [
{
"path": "cli/tools/coverage/mod.rs",
"patch": "@@ -336,7 +336,11 @@ fn generate_coverage_report(\n }\n }\n \n- // We reset the count if any block with a zero count overlaps with the line range.\n+ // Reset the count if a zero-count range overlaps the line and reaches\n+ // at ... | 2026-03-15T13:26:57 |
ggml-org/llama.cpp | 9045c9afe57513eef8d16e329042ea2d7afd9a95 | c9ced4910ba0c8d95565950ac11bcc54fee309cd | llama-fit-params: fix Gemma 3 calculation (#18372) | [
{
"path": "src/llama.cpp",
"patch": "@@ -181,12 +181,11 @@ static void llama_params_fit_impl(\n }\n }\n \n- int64_t sum_total = 0;\n+ int64_t sum_free = 0;\n int64_t sum_projected_free = 0;\n int64_t min_projected_free = INT64_MAX;\n int64_t sum_projected... | 2025-12-27T08:56:04 |
ollama/ollama | 06ac829e7096ca912aebaa8ef7b76cdefe4d1346 | 5d3f7fff26dc033cfa5659104b069338a4ad8695 | Fix help string for stop parameter (#2307) | [
{
"path": "cmd/interactive.go",
"patch": "@@ -162,7 +162,7 @@ func generateInteractive(cmd *cobra.Command, opts runOptions) error {\n \t\tfmt.Fprintln(os.Stderr, \" /set parameter repeat_penalty <float> How strongly to penalize repetitions\")\n \t\tfmt.Fprintln(os.Stderr, \" /set parameter repeat_last_n <... | 2024-05-07T23:48:35 |
huggingface/transformers | 745ad8c7c4cd924739c4a524ae8689693ae616be | 8fe97d9040ff456d99adefd7e30eed5381aa0b9c | Fix indentation in EoMT fast image processor (#42707)
Fix indentation
Co-authored-by: Yoni Gozlan <74535834+yonigozlan@users.noreply.github.com> | [
{
"path": "src/transformers/models/eomt/image_processing_eomt_fast.py",
"patch": "@@ -239,7 +239,7 @@ def _preprocess(\n for shape, stacked_images in grouped_images.items():\n if do_resize:\n stacked_images = self.resize(image=stacked_images, size=size, interpolation=inte... | 2025-12-08T21:14:56 |
vuejs/vue | f43ce3a5d8f73e273f2d03c9d86ea5662cda481a | b7445a2b945dcded287601ace8e711ab5cf35ab5 | fix: invoke component node create hooks before insertion (#7823)
fix #7531 | [
{
"path": "flow/options.js",
"patch": "@@ -2,8 +2,6 @@ declare type InternalComponentOptions = {\n _isComponent: true;\n parent: Component;\n _parentVnode: VNode;\n- _parentElm: ?Node;\n- _refElm: ?Node;\n render?: Function;\n staticRenderFns?: Array<Function>\n };\n@@ -81,8 +79,6 @@ declare typ... | 2018-03-23T23:03:17 |
denoland/deno | 2989e306433c84551cf9f33886d9b4eb15d37d9a | 622a15e46b86db9b3dc9214377b1c6d986e43ebf | fix(ext/telemetry): add `log.iostream` attribute to console logs (#32723)
## Summary
- Add `log.iostream` semantic convention attribute to OTel log records
from console methods
- `console.warn` / `console.error` → `log.iostream: "stderr"`
- `console.log` / `console.info` / `console.debug` / `console.trace` →
`log.ios... | [
{
"path": "ext/telemetry/lib.rs",
"patch": "@@ -1291,6 +1291,16 @@ fn op_otel_log<'s>(\n log_record.set_body(owned_string(scope, message).into());\n log_record.set_severity_number(severity);\n log_record.set_severity_text(severity.name());\n+\n+ // console.warn (level 2) and console.error (level 3) w... | 2026-03-15T12:07:47 |
ggml-org/llama.cpp | 4893cc07bba09525d6a1720d0686ed09b5a9b1c8 | af3be131c065a38e476c34295bceda6cb956e7d7 | server : fix crash when seq_rm fails for hybrid/recurrent models (#18391)
* server : fix crash when seq_rm fails for hybrid/recurrent models
* server : add allow_processing param to clear_slot | [
{
"path": "tools/server/server-context.cpp",
"patch": "@@ -1007,8 +1007,10 @@ struct server_context_impl {\n return ret;\n }\n \n- void clear_slot(server_slot & slot) const {\n- GGML_ASSERT(!slot.is_processing());\n+ void clear_slot(server_slot & slot, bool allow_processing = false)... | 2025-12-26T15:35:29 |
ollama/ollama | 72700279e260694e6df0a24a672f0a6f3e3dc3bf | 2a5302a1cf0e10ac76d7761178231b59a1d083ef | Detect noexec and report a better error
This will bubble up a much more informative error message if noexec
is preventing us from running the subprocess | [
{
"path": "llm/server.go",
"patch": "@@ -307,6 +307,11 @@ func NewLlamaServer(gpus gpu.GpuInfoList, model string, ggml *GGML, adapters, pr\n \t\tslog.Debug(\"subprocess\", \"environment\", s.cmd.Env)\n \n \t\tif err = s.cmd.Start(); err != nil {\n+\t\t\t// Detect permission denied and augment them essage ab... | 2024-05-07T23:46:15 |
vuejs/vue | b7445a2b945dcded287601ace8e711ab5cf35ab5 | de42278d34f6a800cec5c7eb781c1b8b83a829dd | fix: beforeUpdate should be called before render and allow state mutation (#7822)
fix #7481 | [
{
"path": "src/core/instance/lifecycle.js",
"patch": "@@ -50,9 +50,6 @@ export function initLifecycle (vm: Component) {\n export function lifecycleMixin (Vue: Class<Component>) {\n Vue.prototype._update = function (vnode: VNode, hydrating?: boolean) {\n const vm: Component = this\n- if (vm._isMount... | 2018-03-23T23:03:00 |
huggingface/transformers | 8fe97d9040ff456d99adefd7e30eed5381aa0b9c | 6564633bc87b1f808de5773a74db2ec01f681520 | Raise error when missing or incorrect dates (#42610)
* Raise error when missing or incorrect dates
* refactor, improve readability, add to fix-copies
* fix lasr model card | [
{
"path": "Makefile",
"patch": "@@ -53,7 +53,7 @@ repo-consistency:\n \tpython utils/check_doctest_list.py\n \tpython utils/update_metadata.py --check-only\n \tpython utils/check_docstrings.py\n-\tpython utils/add_dates.py\n+\tpython utils/add_dates.py --check-only\n \n # this target runs checks on all file... | 2025-12-08T21:11:19 |
denoland/deno | 622a15e46b86db9b3dc9214377b1c6d986e43ebf | 408ddbe208d518eb7efa8478f9a4128efb3dc09b | fix(ext/otel): don't mark server spans as error for 4xx responses (#32722)
## Summary
- Per [OTel HTTP semantic
conventions](https://opentelemetry.io/docs/specs/semconv/http/http-spans/),
server spans should only have ERROR status for 5xx responses. 4xx
responses are client errors — the server handled the request cor... | [
{
"path": "ext/fetch/26_fetch.js",
"patch": "@@ -67,9 +67,9 @@ import {\n TRACING_ENABLED,\n } from \"ext:deno_telemetry/telemetry.ts\";\n import {\n+ updateSpanFromClientResponse,\n updateSpanFromError,\n updateSpanFromRequest,\n- updateSpanFromResponse,\n } from \"ext:deno_telemetry/util.ts\";\n \... | 2026-03-15T12:07:05 |
ggml-org/llama.cpp | b07cda687c6e5667b574c5e33eabad58a8dc7b12 | 85c40c9b02941ebf1add1469af75f1796d513ef4 | CANN: implement the SSM_CONV operator (#17737)
* CANN: implement SSM_CONV operator
Co-authored-by: Aleksei Lobanov, <zeromarblectm@gmail.com>
Co-authored-by: Sujin Kang, <waterjin326@gmail.com>
* CANN: remove custom error limit for SSM_CONV
* CANN: merge SSM_CONV tensor shape/strides into one line
---------
Co-au... | [
{
"path": "ggml/src/ggml-cann/aclnn_ops.cpp",
"patch": "@@ -3702,3 +3702,106 @@ void ggml_cann_out_prod(ggml_backend_cann_context & ctx, ggml_tensor * dst) {\n break;\n }\n }\n+\n+void ggml_cann_ssm_conv(ggml_backend_cann_context & ctx, ggml_tensor * dst) {\n+ ggml_tensor * src0 = dst->sr... | 2025-12-26T01:12:04 |
ollama/ollama | 5d3f7fff26dc033cfa5659104b069338a4ad8695 | d77c1c5f9d619de9544d726da265a18edd6b0692 | Update langchainpy.md (#4236)
fixing pip code. | [
{
"path": "docs/tutorials/langchainpy.md",
"patch": "@@ -12,7 +12,7 @@ So let's figure out how we can use **LangChain** with Ollama to ask our question\n \n Let's start by asking a simple question that we can get an answer to from the **Llama2** model using **Ollama**. First, we need to install the **LangCh... | 2024-05-07T23:36:34 |
vuejs/vue | de42278d34f6a800cec5c7eb781c1b8b83a829dd | a7d190d2491a573e8bdfcc05d70d341d191ea213 | fix: ensure init/prepatch hooks are still repsected
this address a regression introduced in 984927a which
causes vue-router#1338 to resurface. | [
{
"path": "src/core/vdom/create-component.js",
"patch": "@@ -238,8 +238,21 @@ function installComponentHooks (data: VNodeData) {\n const hooks = data.hook || (data.hook = {})\n for (let i = 0; i < hooksToMerge.length; i++) {\n const key = hooksToMerge[i]\n- hooks[key] = componentVNodeHooks[key]\n... | 2018-03-23T23:01:24 |
huggingface/transformers | 6564633bc87b1f808de5773a74db2ec01f681520 | 2db992d858e0f99294a9420bebd9e456a7443457 | fix tp (#42704)
* fix tp
* Apply style fixes
---------
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> | [
{
"path": "src/transformers/trainer.py",
"patch": "@@ -5087,14 +5087,14 @@ def create_accelerator_and_postprocess(self):\n self.is_tp_enabled = False\n if getattr(self.model, \"tp_size\", None) is not None and self.model.tp_size > 1:\n self.is_tp_enabled = True\n- if s... | 2025-12-08T17:48:35 |
denoland/deno | 408ddbe208d518eb7efa8478f9a4128efb3dc09b | 368c99d93c85642a64c1a315f20bce6ce9e95df2 | fix(ext/node): allow IPv6 multicast addresses in UDP addMembership/dropMembership (#32739)
The validation in `addMembership` and `dropMembership` was only checking
for IPv4 addresses using `isValidIPv4Address()`, making the IPv6 code
path unreachable:
```ts
addMembership(multicastAddress: string, interfaceAddress?: s... | [
{
"path": "ext/node/polyfills/internal_binding/udp_wrap.ts",
"patch": "@@ -63,27 +63,30 @@ const AF_INET6 = 10;\n \n const UDP_DGRAM_MAXSIZE = 64 * 1024;\n \n-/** Validate that the multicast and optional interface addresses are parseable IPv4 addresses. */\n-function isValidIPv4Address(\n+/** Validate that ... | 2026-03-15T08:56:30 |
ggml-org/llama.cpp | 85c40c9b02941ebf1add1469af75f1796d513ef4 | 83b3b1c271c78bd77664120431aa8c354d68daac | ggml-cuda: fix regex for arch list (#18371)
* ggml-cuda: fix regex for arch list
* make regex exact | [
{
"path": "ggml/src/ggml-cuda/CMakeLists.txt",
"patch": "@@ -44,8 +44,13 @@ if (CUDAToolkit_FOUND)\n # Replace any 12x-real architectures with 12x{a}-real. FP4 ptx instructions are not available in just 12x\n if (GGML_NATIVE)\n set(PROCESSED_ARCHITECTURES \"\")\n- foreach(ARCH ${CMAKE... | 2025-12-25T17:35:14 |
ollama/ollama | d77c1c5f9d619de9544d726da265a18edd6b0692 | 2a5302a1cf0e10ac76d7761178231b59a1d083ef | api: fill up API documentation (#3596)
* api: fill up API documentation
Followup for #2878
Now that the documentation is more complete, mention it in the README.
Updates #2840
* fix typo/lint
* Update README.md
Co-authored-by: Jeffrey Morgan <jmorganca@gmail.com>
---------
Co-authored-by: Jeffr... | [
{
"path": "api/client.go",
"patch": "@@ -1,9 +1,16 @@\n // Package api implements the client-side API for code wishing to interact\n // with the ollama service. The methods of the [Client] type correspond to\n-// the ollama REST API as described in https://github.com/ollama/ollama/blob/main/docs/api.md\n-//... | 2024-05-07T23:27:46 |
vuejs/vue | 7b387390aa917edffc0eabce0b4186ea1ef40e2c | 17d7a5f6bd28dda247ddeb02ed66ebc92182ded9 | fix: correct the `has` implementation in the `_renderProxy` (#7878)
It's feasible that someone might ask if something other than a string is
in the proxy such as a `Symbol` that lacks a `charAt` method. This aligns
the implementation with the `getHandler`. | [
{
"path": "src/core/instance/proxy.js",
"patch": "@@ -45,7 +45,7 @@ if (process.env.NODE_ENV !== 'production') {\n const hasHandler = {\n has (target, key) {\n const has = key in target\n- const isAllowed = allowedGlobals(key) || key.charAt(0) === '_'\n+ const isAllowed = allowedGlobal... | 2018-03-22T13:53:28 |
huggingface/transformers | 2db992d858e0f99294a9420bebd9e456a7443457 | 0e51e7a23ceaf05b2b532474d2cc17ee9614899f | hotfix for circleci summary workflow (#42708)
hotfix
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": ".github/workflows/circleci-failure-summary-comment.yml",
"patch": "@@ -111,8 +111,9 @@ jobs:\n failure_summary_url=$(echo \"$artifacts\" | jq -r '.items[] | select(.path == \"outputs/failure_summary.json\") | .url')\n \n if [ -z \"$failure_summary_url\" ]; then\n- ... | 2025-12-08T16:40:23 |
denoland/deno | 368c99d93c85642a64c1a315f20bce6ce9e95df2 | 7cc24643bf450dca030af3ddbc65f2fbd9130060 | fix(ext/node): fix AbortController signal handling in child_process s… (#32713)
Two bugs in the abort listener for child_process.spawn():
1. Hardcoded "SIGKILL" instead of using the killSignal option (default
"SIGTERM"), causing wrong signal to be sent to child.
2. AbortError was created without passing signal.reaso... | [
{
"path": "ext/node/polyfills/internal/child_process.ts",
"patch": "@@ -512,10 +512,17 @@ export class ChildProcess extends EventEmitter {\n });\n \n if (signal) {\n+ const killSignal = options.killSignal ?? \"SIGTERM\";\n const onAbortListener = () => {\n try {\n- ... | 2026-03-14T17:51:24 |
vuejs/vue | 62a922e865f5e578f67b386cb614abfc173d7851 | 9084747e307dc9b415ff8e2a788c6a585a2a8f6c | fix: fix wrongly matched named slots in functional components
This is a subtle edge case caused when a stateful component triggers
a self re-render, which reuses cached slot nodes. The cached slot
nodes, if returned from a functional render fn, gets the fnContext
property which causes subsequent slot resolving to not ... | [
{
"path": "src/core/vdom/create-functional-component.js",
"patch": "@@ -1,6 +1,6 @@\n /* @flow */\n \n-import VNode from './vnode'\n+import VNode, { cloneVNode } from './vnode'\n import { createElement } from './create-element'\n import { resolveInject } from '../instance/inject'\n import { normalizeChildre... | 2018-03-13T21:48:52 |
ggml-org/llama.cpp | b0fb0f0aee2c931cbc08e95aef68f615c6de90a2 | e68c19b0fdbb18d7a19217194c2795897e9c683c | ggml-cuda: fix blackwell native builds (#18361)
* ggml-cuda: fix blackwell native builds
Replace 12x in native architectures by 12xa
* replace for GGML_NATIVE=OFF too
* only replace for native
* remove 120f-virtual for default compilation
---------
Co-authored-by: Aman Gupta <aman> | [
{
"path": "ggml/src/ggml-cuda/CMakeLists.txt",
"patch": "@@ -35,16 +35,33 @@ if (CUDAToolkit_FOUND)\n if (CUDAToolkit_VERSION VERSION_GREATER_EQUAL \"11.8\")\n list(APPEND CMAKE_CUDA_ARCHITECTURES 89-real)\n endif()\n-\n- if (CUDAToolkit_VERSION VERSION_GRE... | 2025-12-25T14:12:11 |
ollama/ollama | 2a5302a1cf0e10ac76d7761178231b59a1d083ef | ffbd3d173f2d903634513be8ec46bad4b0cec83e | Fix paste of text with line feed characters (#3043)
Some terminals may send line feed characters when pasting text with
newlines. | [
{
"path": "readline/readline.go",
"patch": "@@ -218,7 +218,7 @@ func (i *Instance) Readline() (string, error) {\n \t\tcase CharCtrlZ:\n \t\t\tfd := int(syscall.Stdin)\n \t\t\treturn handleCharCtrlZ(fd, i.Terminal.termios)\n-\t\tcase CharEnter:\n+\t\tcase CharEnter, CharCtrlJ:\n \t\t\toutput := buf.String()\... | 2024-05-07T22:26:07 |
huggingface/transformers | 0e51e7a23ceaf05b2b532474d2cc17ee9614899f | b3565823aa8485a2c832ba76bdc1799a690bcce6 | Fixed failing batch_generation test for `opt` model (#42693)
* Fixed batch_generation test for opt model.
* Removed unused variable. | [
{
"path": "tests/models/opt/test_modeling_opt.py",
"patch": "@@ -474,22 +474,22 @@ def test_batch_generation(self):\n outputs = model.generate(\n input_ids=input_ids,\n attention_mask=inputs[\"attention_mask\"].to(torch_device),\n+ max_new_tokens=10,\n )\n ... | 2025-12-08T16:38:59 |
denoland/deno | 7cc24643bf450dca030af3ddbc65f2fbd9130060 | ea7f0790f91d389995d2db97bf953da58c2c2205 | fix(ext/node): accept all TypedArrays in spawnSync input option (#32712)
`normalizeInput` only accepted `Uint8Array` and `DataView`, rejecting
other TypedArrays like `Int8Array`. Node.js accepts any TypedArray.
Replaced the separate `instanceof Uint8Array` and `instanceof DataView`
checks with a single `ArrayBuffer.i... | [
{
"path": "ext/node/polyfills/internal/child_process.ts",
"patch": "@@ -1584,10 +1584,7 @@ function normalizeInput(input: unknown) {\n if (typeof input === \"string\") {\n return Buffer.from(input);\n }\n- if (input instanceof Uint8Array) {\n- return input;\n- }\n- if (input instanceof DataVie... | 2026-03-14T17:51:13 |
vuejs/vue | 9084747e307dc9b415ff8e2a788c6a585a2a8f6c | 1a979c44d6543d89f8a7e26ad7f995b1bf2aee3c | fix(core): Make set/delete warning condition for undefined, null and (#7818)
primitive values more precise. Corrects #7452 | [
{
"path": "src/core/observer/index.js",
"patch": "@@ -10,6 +10,8 @@ import {\n hasProto,\n isObject,\n isPlainObject,\n+ isPrimitive,\n+ isUndef,\n isValidArrayIndex,\n isServerRendering\n } from '../util/index'\n@@ -195,10 +197,9 @@ export function defineReactive (\n */\n export function set (... | 2018-03-13T15:09:49 |
ggml-org/llama.cpp | e68c19b0fdbb18d7a19217194c2795897e9c683c | c54bba869da97feeaf788cac499679c9a9ff9fea | CANN: Add support for CONV_TRANSPOSE_1D when kernel size > 255 (#17934)
* CONV_TRANSPOSE_1D kernel_size>255
* remove condition check
* fix the bug of type conversion
* removing trailing whitespaces
* fix: return true in the switch case | [
{
"path": "ggml/src/ggml-cann/aclnn_ops.cpp",
"patch": "@@ -2990,32 +2990,156 @@ void ggml_cann_argmax(ggml_backend_cann_context & ctx, ggml_tensor * dst) {\n GGML_CANN_CALL_ACLNN_OP(ctx, ArgMax, acl_src.get(), 3, false, acl_dst.get());\n }\n \n-void ggml_cann_conv_transpose_1d(ggml_backend_cann_context... | 2025-12-25T08:46:09 |
huggingface/transformers | b3565823aa8485a2c832ba76bdc1799a690bcce6 | 0e0af808686ff6bb77dd00d2f9d35ca2bac3abfb | Fixed failing Bart-Model Integration Tests (#42676)
Fixed failing BartModelIntegrationTests | [
{
"path": "tests/models/bart/test_modeling_bart.py",
"patch": "@@ -962,7 +962,7 @@ def test_xsum_summarization_same_as_fairseq(self):\n \" state.\"\n \"</s>\"\n )\n- dct = tok.batch_encode_plus(\n+ dct = tok(\n [PGE_ARTICLE],\n max_length... | 2025-12-08T16:38:46 |
ollama/ollama | 527e9be0587a4cf4942e828a2c9a935453681b27 | 34bea2e272f23229d68bdff2364c1c61ed831937 | fix: store accurate model parameter size (#4058)
- add test for number formatting
- fix bug where 1B and 1M were not stored correctly
- display 2 decimal points for million param sizes
- display 1 decimal point for billion param sizes | [
{
"path": "format/format.go",
"patch": "@@ -13,12 +13,20 @@ const (\n \n func HumanNumber(b uint64) string {\n \tswitch {\n-\tcase b > Billion:\n-\t\treturn fmt.Sprintf(\"%.0fB\", math.Round(float64(b)/Billion))\n-\tcase b > Million:\n-\t\treturn fmt.Sprintf(\"%.0fM\", math.Round(float64(b)/Million))\n-\tca... | 2024-05-07T21:41:53 |
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.