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
nodejs/node
c473d80a9cc005804236346a3e488e7bab84ae6e
e96c11c384dce60de44f71bb88c102dfdb2de3c1
test: make timers-blocking-callback more reliable test-timers-blocking-callback may fail erroneously on resource-constrained machines due to the timing nature of the test. There is likely no way around the timing issue. This change tries to decrease the probability of the test failing erroneously by having it retry a...
[ { "path": "test/sequential/test-timers-blocking-callback.js", "patch": "@@ -1,8 +1,9 @@\n 'use strict';\n \n /*\n- * This is a regression test for https://github.com/joyent/node/issues/15447\n- * and https://github.com/joyent/node/issues/9333.\n+ * This is a regression test for\n+ * https://github.com/nodej...
2017-08-14T22:38:28
vuejs/vue
4de4649d9637262a9b007720b59f80ac72a5620c
d44cc20e968cb5a44202813e22b3b7c1377e69b1
fix(transition): fix appear check for transition wrapper components (#9668)
[ { "path": "examples/modal/index.html", "patch": "@@ -10,7 +10,7 @@\n <body>\n <!-- template for the modal component -->\n <script type=\"text/x-template\" id=\"modal-template\">\n- <transition name=\"modal\">\n+ <transition name=\"modal\" appear>\n <div class=\"modal-mask\">\n ...
2019-03-14T07:45:42
ggml-org/llama.cpp
d72f5f7ba260b546190338b0b76f2f152581424f
b77e6c18e1a6fac5705ed95f03af5436d67484c1
ci : add AMD runners and workflows (#16249) * ci : add AMD runners and workflows * ci : move AMD jobs to separate workflow * cont : fix paths
[ { "path": ".github/workflows/build-amd.yml", "patch": "@@ -0,0 +1,52 @@\n+name: CI (AMD)\n+\n+on:\n+ workflow_dispatch: # allows manual triggering\n+ push:\n+ branches:\n+ - master\n+ paths: [\n+ '.github/workflows/build-amd.yml',\n+ '**/CMakeLists.txt',\n+ '**/.cmake',\n+ '...
2025-09-29T14:51:48
huggingface/transformers
0cdcd7a2b319689d75ae4807cfb7b228aa322f83
edb170238febf7fc3e3278ed5b9ca0b2c40c70e3
Remove `task` arg in `load_dataset` in image-classification example (#28408) * Remove `task` arg in `load_dataset` in image-classification example * Manage case where "train" is not in dataset * Add new args to manage image and label column names * Similar to audio-classification example * Fix README * ...
[ { "path": "examples/pytorch/image-classification/README.md", "patch": "@@ -41,6 +41,7 @@ python run_image_classification.py \\\n --dataset_name beans \\\n --output_dir ./beans_outputs/ \\\n --remove_unused_columns False \\\n+ --label_column_name labels \\\n --do_train \\\n --do_eval \...
2024-01-16T07:04:08
golang/go
da382a3978d3db2380c7e9a69207545562dfd727
4c78d54fdd9ffc81c15ffc3c4a2946f89d4fca22
internal/unsafeheader: consolidate stringHeader and sliceHeader declarations into an internal package The new package "internal/unsafeheader" depends only on "unsafe", and provides declarations equivalent to reflect.StringHeader and reflect.SliceHeader but with Data fields of the proper unsafe.Pointer type (instead of...
[ { "path": "src/cmd/dist/buildtool.go", "patch": "@@ -97,6 +97,7 @@ var bootstrapDirs = []string{\n \t\"debug/pe\",\n \t\"internal/goversion\",\n \t\"internal/race\",\n+\t\"internal/unsafeheader\",\n \t\"internal/xcoff\",\n \t\"math/big\",\n \t\"math/bits\",", "additions": 1, "deletions": 0, "lan...
2020-04-30T21:05:59
nodejs/node
e96c11c384dce60de44f71bb88c102dfdb2de3c1
b9d63ab1b7b82fe959c616ee16a8c6497c824114
doc,fs: rename defaultEncoding option to encoding The documentation for `fs.createWriteStream()` references a `defaultEncoding` as possible options property, but in reality `encoding` property is expected and properly handled. This fix updates the documentation to rename the `defaultEncoding` property to `encoding`. ...
[ { "path": "doc/api/fs.md", "patch": "@@ -835,7 +835,7 @@ changes:\n * `path` {string|Buffer|URL}\n * `options` {string|Object}\n * `flags` {string}\n- * `defaultEncoding` {string}\n+ * `encoding` {string}\n * `fd` {integer}\n * `mode` {integer}\n * `autoClose` {boolean}\n@@ -848,7 +848,7 @@ Return...
2017-08-16T17:32:54
vuejs/vue
7186940143704acc4ec046132f6a56e9c983e510
8082d2f910d963f14c151fb445e0fcc5c975cca9
fix: should not swallow user catch on rejected promise in methods fix #9694
[ { "path": "src/core/util/error.js", "patch": "@@ -43,10 +43,11 @@ export function invokeWithErrorHandling (\n let res\n try {\n res = args ? handler.apply(context, args) : handler.call(context)\n- if (res && !res._isVue && isPromise(res)) {\n+ if (res && !res._isVue && isPromise(res) && !res._...
2019-03-14T07:25:01
ggml-org/llama.cpp
b77e6c18e1a6fac5705ed95f03af5436d67484c1
2ddd3f2356c313385fafc19a9f0ce678c8fe03ee
ggml: riscv: add riscv spacemit backend (#15288) * ggml: add spacemit backend Change-Id: I249bdc043485d815a9c351867137bc1e27cc2e23 * add new line at end of file Change-Id: I889ed1c85fb45e62350ecde0c06f70450cadfbe2 * add riscv zba extension limit Change-Id: I321eb200f859751727afe5cae13074dfce2bb0ce * fixed for re...
[ { "path": ".github/workflows/build-linux-cross.yml", "patch": "@@ -253,3 +253,47 @@ jobs:\n -DCMAKE_FIND_ROOT_PATH_MODE_INCLUDE=BOTH\n \n cmake --build build --config Release -j $(nproc)\n+\n+ ubuntu-24-riscv64-cpu-spacemit-ime-cross:\n+ runs-on: ubuntu-24.04\n+\n+ ...
2025-09-29T14:50:44
huggingface/transformers
ff86bc364d20a4e6e3c0d954485eab959c803394
735968b61c1d5bc0b0025a5cd951b83d637dd33f
improve dev setup comments and hints (#28495) * improve dev setup comments and hints * fix tests for new dev setup hints
[ { "path": "conftest.py", "patch": "@@ -26,7 +26,7 @@\n \n \n # allow having multiple repository checkouts and not needing to remember to rerun\n-# 'pip install -e .[dev]' when switching between checkouts and running tests.\n+# `pip install -e '.[dev]'` when switching between checkouts and running tests.\n g...
2024-01-15T18:36:40
vuejs/vue
8082d2f910d963f14c151fb445e0fcc5c975cca9
7591b9dc6dde314f2d32dcd7a8355f696a330979
fix(ssr): fix nested async functional componet rendering (#9673) fix #9643
[ { "path": "src/core/vdom/helpers/resolve-async-component.js", "patch": "@@ -53,7 +53,7 @@ export function resolveAsyncComponent (\n }\n \n const owner = currentRenderingInstance\n- if (isDef(factory.owners) && factory.owners.indexOf(owner) === -1) {\n+ if (owner && isDef(factory.owners) && factory.own...
2019-03-13T09:20:28
nodejs/node
b9d63ab1b7b82fe959c616ee16a8c6497c824114
4cff2cc20f998656cf227fd31f6cf57561092bef
test: remove erroneous assert message from test Removes the incorrect 'exit successfully' message from test when the exit code is 0. PR-URL: https://github.com/nodejs/node/pull/14918 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> ...
[ { "path": "test/parallel/test-process-external-stdio-close-spawn.js", "patch": "@@ -22,7 +22,7 @@ if (process.argv[2] === 'child') {\n });\n \n child.on('close', common.mustCall((exitCode, signal) => {\n- assert.strictEqual(exitCode, 0, 'exit successfully');\n+ assert.strictEqual(exitCode, 0);\n ...
2017-08-18T12:26:16
golang/go
f875f8fe76160699432cdab8a23cfd292462c2b3
2f83d68926e07109f8a32f7b01209ebebf4512f8
[dev.link] cmd/link: tweaks to data alignment processing Now that the loader's internal storage mechanism for symbol alignment is array-based and not map-based, we can go back to computing symbol alignment in the parallel-by-section section of dodata. With this patch plus the previous one, this produces a small kubel...
[ { "path": "src/cmd/link/internal/ld/data.go", "patch": "@@ -1436,16 +1436,12 @@ func (ctxt *Link) dodata2(symGroupType []sym.SymKind) {\n \t// Move any RO data with relocations to a separate section.\n \tstate.makeRelroForSharedLib2(ctxt)\n \n-\t// Set explicit alignment here, so as to avoid having to updat...
2020-04-30T20:07:31
ggml-org/llama.cpp
4d3d455d3c8719eb8f206de328d1b9ba191efd7c
c9b1c06467aca8d30fafcab51292bcb285df5b0d
sync : whisper.cpp (ggml/1359) * ggml : Fix MKL detection by quoting BLAS_INCLUDE_DIRS (whisper/3426) * sync : whisper.cpp
[ { "path": "ggml/src/ggml-blas/CMakeLists.txt", "patch": "@@ -74,7 +74,7 @@ if (BLAS_FOUND)\n \n target_compile_options(ggml-blas PRIVATE ${BLAS_LINKER_FLAGS})\n \n- if (${BLAS_INCLUDE_DIRS} MATCHES \"mkl\" AND (${GGML_BLAS_VENDOR} MATCHES \"Generic\" OR ${GGML_BLAS_VENDOR} MATCHES \"Intel\"))\n+ i...
2025-09-29T13:49:11
huggingface/transformers
735968b61c1d5bc0b0025a5cd951b83d637dd33f
7e0ddf89f483f53107870cddabb2e1cc93069705
fix: sampling in flax keeps EOS (#28378)
[ { "path": "src/transformers/generation/flax_utils.py", "patch": "@@ -716,8 +716,8 @@ def sample_search_body_fn(state):\n \n next_token = jax.random.categorical(prng_key, logits, axis=-1)\n \n+ next_token = next_token * ~state.is_sent_finished + pad_token_id * state.is_sent_finished\n ...
2024-01-15T18:12:09
vuejs/vue
7591b9dc6dde314f2d32dcd7a8355f696a330979
d28240009c4c49fb2ef42a79206f0d9ad03f736c
fix: event timeStamp check for Qt fix #9681
[ { "path": "src/platforms/web/runtime/modules/events.js", "patch": "@@ -67,8 +67,10 @@ function add (\n e.target === e.currentTarget ||\n // event is fired after handler attachment\n e.timeStamp >= attachedTimestamp ||\n- // #9462 bail for iOS 9 bug: event.timeStamp is 0 after ...
2019-03-13T09:18:47
nodejs/node
fd8cf7905698db82e2c333ba21058144363becdf
35f6e59dfce2f4f525d02d84aabe26bf111de567
src: miscellaneous cleanups for node_config Includes a fix for setting the `icuDataDir` as a UTF8 string rather than one byte. Previously, if the dir contained any non-ascii characters they would be mangled. This won't cover cases that involve paths with other character encodings (thank you Linux).. but it will cover ...
[ { "path": "src/node_config.cc", "patch": "@@ -11,6 +11,7 @@ namespace node {\n using v8::Boolean;\n using v8::Context;\n using v8::Integer;\n+using v8::Isolate;\n using v8::Local;\n using v8::Number;\n using v8::Object;\n@@ -25,24 +26,24 @@ using v8::Value;\n \n #define READONLY_BOOLEAN_PROPERTY(str) ...
2017-08-16T17:46:26
ggml-org/llama.cpp
c9b1c06467aca8d30fafcab51292bcb285df5b0d
b6ae75afb49b23db3dfbc2b01e8aabfb047e6880
ggml : remove -dev suffix from release version (ggml/1355) This commit removes the `-dev` suffix from the version string in CMakeLists.txt and the release script. The version will now be just be formatted as `MAJOR.MINOR.PATCH`.
[ { "path": "ggml/CMakeLists.txt", "patch": "@@ -5,7 +5,6 @@ project(\"ggml\" C CXX ASM)\n set(GGML_VERSION_MAJOR 0)\n set(GGML_VERSION_MINOR 9)\n set(GGML_VERSION_PATCH 3)\n-set(GGML_VERSION_DEV \"\") # \"-dev\" for development, \"\" for releases\n set(GGML_VERSION_BASE \"${GGML_VERSION_MAJOR}.${GGML_VERSIO...
2025-09-26T15:34:42
golang/go
4c78d54fdd9ffc81c15ffc3c4a2946f89d4fca22
00753d52323c466b7c9f998a7ec3dd0b1d63366f
cmd: disable *.go domains lookup in go get command Using 'go get x.go' instead of 'go build x.go' or some other go command is a common mistake. By that mistake, a user gets a misleading error message about unsuccessful `x.go` domain lookup. This improvement handles such cases, by validating, whether the argument hasn'...
[ { "path": "src/cmd/go/internal/get/get.go", "patch": "@@ -193,8 +193,24 @@ func downloadPaths(patterns []string) []string {\n \tfor _, arg := range patterns {\n \t\tif strings.Contains(arg, \"@\") {\n \t\t\tbase.Fatalf(\"go: cannot use path@version syntax in GOPATH mode\")\n+\t\t\tcontinue\n+\t\t}\n+\n+\t\t...
2020-04-24T23:33:30
huggingface/transformers
78d767e3c8ec18df88295d9bf62e8326a931a9ee
7c8dd88d13fe722704e2167269c4717e6035ab05
Fixed minor typos (#28489)
[ { "path": ".circleci/TROUBLESHOOT.md", "patch": "@@ -1,6 +1,6 @@\n # Troubleshooting\n \n-This is a document explaining how to deal with various issues on Circle-CI. The entries may include actually solutions or pointers to Issues that cover those.\n+This is a document explaining how to deal with various is...
2024-01-15T16:45:15
vuejs/vue
d28240009c4c49fb2ef42a79206f0d9ad03f736c
2747a657654d1006bf7061faec1b3029fb9b4432
fix(ssr): not push non-async css files into map (#9677)
[ { "path": "src/server/template-renderer/create-async-file-mapper.js", "patch": "@@ -43,8 +43,8 @@ function mapIdToFile (id, clientManifest) {\n if (fileIndices) {\n fileIndices.forEach(index => {\n const file = clientManifest.all[index]\n- // only include async files or non-js assets\n- ...
2019-03-13T09:16:44
ggml-org/llama.cpp
02463ab27b1379ff5e3d936ce8b3bfd356872ea6
adc76347d73b3d915e946efa5de8d0ad9f3904c2
ggml-backend : add root cause in error message if loading backend library fails (#16172) This PR adds additional information to an error message when loading backend library via ld_load_library() fails. This helps spotting why backend library did not load (missing library, missing dependency or unresolved symbol etc.)...
[ { "path": "ggml/src/ggml-backend-reg.cpp", "patch": "@@ -135,6 +135,10 @@ static void * dl_get_sym(dl_handle * handle, const char * name) {\n return p;\n }\n \n+static const char * dl_error() {\n+ return \"\";\n+}\n+\n #else\n \n using dl_handle = void;\n@@ -155,6 +159,11 @@ static void * dl_get_sym(...
2025-09-29T11:17:09
nodejs/node
35f6e59dfce2f4f525d02d84aabe26bf111de567
b5bad25110ef15a9d9befb2b110608b709e1fc2f
src: minor cleanup for node_revert Make the revert related functions inline to eliminate the need for node_revert.cc, prefix the constants and the def, other misc cleanup PR-URL: https://github.com/nodejs/node/pull/14864 Reviewed-By: Anna Henningsen <anna@addaleax.net>
[ { "path": "node.gyp", "patch": "@@ -191,7 +191,6 @@\n 'src/node_main.cc',\n 'src/node_os.cc',\n 'src/node_platform.cc',\n- 'src/node_revert.cc',\n 'src/node_serdes.cc',\n 'src/node_url.cc',\n 'src/node_util.cc',\n@@ -647,7 +646,6 @@\n '<(OBJ_PAT...
2017-08-16T16:34:37
golang/go
8740bdc5afd07cf62722907644f65411cc52fa1c
0f8fecaba762c352db481d4919edf404f5590d22
strconv: fix for parseFloatPrefix parseFloatPrefix accepts a string if it has a valid floating-point number as prefix. Make sure that "infi", "infin", ... etc. are accepted as valid numbers "inf" with suffix "i", "in", etc. This is important for parsing complex numbers such as "0+infi". This change does not affect th...
[ { "path": "src/strconv/atof.go", "patch": "@@ -55,7 +55,11 @@ func special(s string) (f float64, n int, ok bool) {\n \t\tfallthrough\n \tcase 'i', 'I':\n \t\tn := commonPrefixLenIgnoreCase(s, \"infinity\")\n-\t\t// both \"inf\" and \"infinity\" are ok\n+\t\t// Anything longer than \"inf\" is ok, but if we\n...
2020-04-30T20:24:05
huggingface/transformers
7c8dd88d13fe722704e2167269c4717e6035ab05
366c03271e01c86e9a573bb64481f185de11ef29
[GPTQ] Fix test (#28018) * fix test * reduce length * smaller model
[ { "path": "tests/quantization/gptq/test_gptq.py", "patch": "@@ -217,7 +217,9 @@ def test_serialization(self):\n with tempfile.TemporaryDirectory() as tmpdirname:\n self.quantized_model.save_pretrained(tmpdirname)\n if not self.use_exllama:\n- quantized_model_fr...
2024-01-15T16:22:54
vuejs/vue
ef2a380c6eb6bd1a7ff516c357dafa717e75a745
781c70514e01bc402828946805bfad7437c7175e
fix(scheduler): getNow detection can randomly fail (#9667) The previous detection code compared time stamps based on Date.now() which are not monotonic, so the check could fail due to clock skew or adjustments. This fix changes the check to compare against performance.now() if it is supported, because it is mono...
[ { "path": "src/core/observer/scheduler.js", "patch": "@@ -51,7 +51,7 @@ if (\n inBrowser &&\n window.performance &&\n typeof performance.now === 'function' &&\n- getNow() > document.createEvent('Event').timeStamp\n+ document.createEvent('Event').timeStamp <= performance.now()\n ) {\n // if the eve...
2019-03-11T02:28:06
ggml-org/llama.cpp
3a2bdcda0b31e51db954551e0cd49424133a84f3
66bb7985c3fcefda7a74aae9f8321f70eb1646c4
Improve Mobile UI for dialogs and action dropdowns (#16222) * fix: Always show conversation item actions * feat: Improve Alert Dialog and Dialog mobile UI * feat: Add settings reset to default confirmation * fix: Close Edit dialog on save * chore: update webui build output * webui: implement proper z-index system...
[ { "path": "tools/server/webui/src/app.css", "patch": "@@ -39,6 +39,7 @@\n \t--sidebar-ring: oklch(0.708 0 0);\n \t--code-background: oklch(0.225 0 0);\n \t--code-foreground: oklch(0.875 0 0);\n+\t--layer-popover: 1000000;\n }\n \n .dark {", "additions": 1, "deletions": 0, "language": "CSS" }, ...
2025-09-29T08:37:20
rust-lang/rust
bfdc96114c4b591025dd6ec18b4282f0b21e641c
54cdc751df770517e70db0588573e32e6a7b9821
[cg_llvm] Remove dead error message
[ { "path": "compiler/rustc_codegen_llvm/messages.ftl", "patch": "@@ -38,9 +38,6 @@ codegen_llvm_lto_proc_macro = lto cannot be used for `proc-macro` crate type wit\n codegen_llvm_mismatch_data_layout =\n data-layout for target `{$rustc_target}`, `{$rustc_layout}`, differs from LLVM target's `{$llvm_targe...
2025-02-13T23:04:39
nodejs/node
4d842e3d66f8764e7c89ee2beedc053f6efa05e1
fb732561a8d1470e49fa74155a67a9a156c67e62
doc: fix http api document PR-URL: https://github.com/nodejs/node/pull/14625 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com>
[ { "path": "doc/api/http.md", "patch": "@@ -74,9 +74,9 @@ to keep the Node.js process running when there are no outstanding requests.\n It is good practice, to [`destroy()`][] an `Agent` instance when it is no\n longer in use, because unused sockets consume OS resources.\n \n-Sockets are removed from an agen...
2017-08-04T09:56:03
huggingface/transformers
366c03271e01c86e9a573bb64481f185de11ef29
a573ac74fd59c44055cda3e6e62f95f1eac0bbd9
Tokenizer kwargs in textgeneration pipe (#28362) * added args to the pipeline * added test * more sensical tests * fixup * docs * typo ; * docs * made changes to support named args * fixed test * docs update * styles * docs * docs
[ { "path": "docs/source/en/preprocessing.md", "patch": "@@ -216,6 +216,12 @@ array([[1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0],\n </tf>\n </frameworkcontent>\n \n+<Tip>\n+Different pipelines support tokenizer arguments in their `__call__()` differently. `text-2-text-generation` pipelines support (i.e. pas...
2024-01-15T15:52:18
vuejs/vue
781c70514e01bc402828946805bfad7437c7175e
9313cf91740e1d43c43cf9e73d905dbab913beb5
fix: should use fallback for scoped slots with single falsy v-if fix #9658
[ { "path": "src/core/vdom/helpers/normalize-scoped-slots.js", "patch": "@@ -60,8 +60,10 @@ function normalizeScopedSlot(normalSlots, key, fn) {\n res = res && typeof res === 'object' && !Array.isArray(res)\n ? [res] // single vnode\n : normalizeChildren(res)\n- return res && res.length ===...
2019-03-08T18:44:08
golang/go
ca290169ab219a414dbae8124f442559c907ea4d
1419445926fe9424dad72b82344c6f52b0679cf3
[dev.link] cmd/link: performance changes for relocsym Revise the signature for "relocsym" to reflect the fact that many of its arguments are invariant: push the invariant args into a struct and pass the struct by reference. Add a facility for doing batch allocation of external relocations in relocsym, so that we don'...
[ { "path": "src/cmd/link/internal/ld/data.go", "patch": "@@ -150,12 +150,20 @@ func foldSubSymbolOffset(ldr *loader.Loader, s loader.Sym) (loader.Sym, int64) {\n //\n // This is a performance-critical function for the linker; be careful\n // to avoid introducing unnecessary allocations in the main loop.\n-fu...
2020-04-30T14:19:28
ggml-org/llama.cpp
66bb7985c3fcefda7a74aae9f8321f70eb1646c4
2f61c0f5bf8a620ca4c3872408803ab38cfb9613
fix: preserved zero values in chat settings inputs and textareas by switching to nullish coalescing for field values and default placeholders (#16312)
[ { "path": "tools/server/webui/src/lib/components/app/chat/ChatSettings/ChatSettingsFields.svelte", "patch": "@@ -30,9 +30,9 @@\n \n \t\t\t<Input\n \t\t\t\tid={field.key}\n-\t\t\t\tvalue={String(localConfig[field.key] || '')}\n+\t\t\t\tvalue={String(localConfig[field.key] ?? '')}\n \t\t\t\tonchange={(e) => o...
2025-09-29T07:08:41
rust-lang/rust
059288ed442f34c336c759486bfe4373b61288a0
05bd5ced2d9af5f155ed8a72b5c1399838c1d653
adjust derive_error
[ { "path": "compiler/rustc_next_trait_solver/src/solve/assembly/mod.rs", "patch": "@@ -6,7 +6,6 @@ use derive_where::derive_where;\n use rustc_type_ir::fold::TypeFoldable;\n use rustc_type_ir::inherent::*;\n use rustc_type_ir::lang_items::TraitSolverLangItem;\n-use rustc_type_ir::solve::inspect;\n use rustc_...
2025-02-12T10:41:53
huggingface/transformers
a573ac74fd59c44055cda3e6e62f95f1eac0bbd9
1b9a2e4c8038e5747c0267e624ea34af6e353d61
Add the XPU device check for pipeline mode (#28326) * Add the XPU check for pipeline mode When setting xpu device for pipeline, It needs to use is_torch_xpu_available to load ipex and determine whether the device is available. Signed-off-by: yuanwu <yuan.wu@intel.com> * Don't move model to device when hf_devi...
[ { "path": "src/transformers/pipelines/base.py", "patch": "@@ -34,7 +34,16 @@\n from ..modelcard import ModelCard\n from ..models.auto.configuration_auto import AutoConfig\n from ..tokenization_utils import PreTrainedTokenizer\n-from ..utils import ModelOutput, add_end_docstrings, infer_framework, is_tf_avai...
2024-01-15T15:39:11
vuejs/vue
9313cf91740e1d43c43cf9e73d905dbab913beb5
da77d6a98bdccd8a2c8bfdfe6b9cb46efcb1193c
fix: should consider presence of normal slots when caching normalized scoped slots fix #9644
[ { "path": "src/core/vdom/helpers/normalize-scoped-slots.js", "patch": "@@ -11,6 +11,7 @@ export function normalizeScopedSlots (\n ): any {\n let res\n const isStable = slots ? !!slots.$stable : true\n+ const hasNormalSlots = Object.keys(normalSlots).length > 0\n const key = slots && slots.$key\n if...
2019-03-08T18:03:19
golang/go
c7915376ce3cdd172bf71ca4127c67f196b8e43e
666c9aedd40853e2fc84bbd743b13cb267007ac2
runtime: make the scavenger's pacing logic more defensive This change adds two bits of logic to the scavenger's pacing. Firstly, it checks to make sure we scavenged at least one physical page, if we released a non-zero amount of memory. If we try to release less than one physical page, most systems will release the wh...
[ { "path": "src/runtime/mgcscavenge.go", "patch": "@@ -287,6 +287,28 @@ func bgscavenge(c chan int) {\n \t\t\tcontinue\n \t\t}\n \n+\t\tif released < physPageSize {\n+\t\t\t// If this happens, it means that we may have attempted to release part\n+\t\t\t// of a physical page, but the likely effect of that is ...
2020-04-24T14:46:28
nodejs/node
fb732561a8d1470e49fa74155a67a9a156c67e62
2062a69879986985ff272e20aac8314515444bf2
tools: fix update-eslint.sh The script currently assumes that there is a package.json in `eslint-tmp`. If there isn't the logic of the script fails. This adds a call to `npm init --yes` ensuring there is a package.json and that the script can do it's thing. PR-URL: https://github.com/nodejs/node/pull/14850 Reviewed-B...
[ { "path": "tools/update-eslint.sh", "patch": "@@ -11,6 +11,7 @@ cd \"$( dirname \"${BASH_SOURCE[0]}\" )\"\n rm -rf eslint\n mkdir eslint-tmp\n cd eslint-tmp\n+npm init --yes\n \n npm install --global-style --no-bin-links --production eslint@latest\n cd node_modules/eslint", "additions": 1, "deletion...
2017-08-16T07:03:45
ggml-org/llama.cpp
2f61c0f5bf8a620ca4c3872408803ab38cfb9613
3ffd0fae473c954bb3e67526b31262048fb508d4
llama-cli: prevent spurious assistant token (#16202) * tools/main: llama-cli: prevent spurious assistant token (#13402) During prompt ingestion, prompt tokens are accepted into the sampler history (for repetition penalties). The conversation-mode path then appended `common_sampler_last(smpl)` to `assistant_ss` before...
[ { "path": "tools/main/main.cpp", "patch": "@@ -707,6 +707,10 @@ int main(int argc, char ** argv) {\n \n embd.push_back(id);\n \n+ if (params.conversation_mode && !waiting_for_first_input && !llama_vocab_is_eog(vocab, id)) {\n+ assistant_ss << common_token_to_piece(ctx, ...
2025-09-29T07:03:12
vuejs/vue
da77d6a98bdccd8a2c8bfdfe6b9cb46efcb1193c
0b57380f10986c6b07e3c240acc06bfd2eddfd1b
fix(scheduler): fix getNow check in IE9 (#9647) fix #9632
[ { "path": "src/core/observer/scheduler.js", "patch": "@@ -47,10 +47,15 @@ let getNow: () => number = Date.now\n // timestamp can either be hi-res (relative to page load) or low-res\n // (relative to UNIX epoch), so in order to compare time we have to use the\n // same timestamp type when saving the flush ti...
2019-03-08T17:04:28
rust-lang/rust
1b3940f07fd93fdc779ac958abe7e72bb5b26254
1ba59f868a937a4ce39b28c5d496f06cf8e977d7
std: Apply fixes for tail drop expressions
[ { "path": "library/std/src/sys/pal/unix/linux/pidfd/tests.rs", "patch": "@@ -45,8 +45,8 @@ fn test_command_pidfd() {\n .expect_err(\"pidfd should not have been created\");\n \n // exercise the fork/exec path since the earlier attempts may have used pidfd_spawnp()\n- let mut child =\n- ...
2025-02-12T22:14:12
huggingface/transformers
1b9a2e4c8038e5747c0267e624ea34af6e353d61
64bdbd888c78dcef5aeaeabc842e12981c8aae7a
[`core`/ FEAT] Add the possibility to push custom tags using `PreTrainedModel` itself (#28405) * v1 tags * remove unneeded conversion * v2 * rm unneeded warning * add more utility methods * Update src/transformers/utils/hub.py Co-authored-by: amyeroberts <22614925+amyeroberts@users.noreply.github.com...
[ { "path": "src/transformers/modeling_utils.py", "patch": "@@ -89,7 +89,7 @@\n replace_return_docstrings,\n strtobool,\n )\n-from .utils.hub import convert_file_size_to_int, get_checkpoint_shard_files\n+from .utils.hub import convert_file_size_to_int, create_and_tag_model_card, get_checkpoint_shard_f...
2024-01-15T13:48:07
nodejs/node
d15a5c0fe1380bc33368d08f3cf4564a60146243
0c5ea126dccaa431b8ebe26a690dc1447369c72d
doc: explain what to do if git push is rejected In COLLABORATOR_GUIDE.md, explain what to do if `git push upstream master` is rejected. PR-URL: https://github.com/nodejs/node/pull/14848 Fixes: https://github.com/nodejs/node/issues/12628 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Yuta Hiroto <hello@ab...
[ { "path": "COLLABORATOR_GUIDE.md", "patch": "@@ -512,6 +512,33 @@ your pull request shows the purple merged status then you should still\n add the \"Landed in <commit hash>..<commit hash>\" comment if you added\n multiple commits.\n \n+### Troubleshooting\n+\n+Sometimes, when running `git push upstream mast...
2017-08-16T04:30:38
vuejs/vue
0b57380f10986c6b07e3c240acc06bfd2eddfd1b
731e4d0ebc997a6c2b1fc500b08924ff7ba091b6
fix: v-bind object should be overridable by single bindings (#9653) fix #9641
[ { "path": "src/core/instance/render-helpers/bind-object-props.js", "patch": "@@ -7,7 +7,8 @@ import {\n isObject,\n toObject,\n isReservedAttribute,\n- camelize\n+ camelize,\n+ hyphenate\n } from 'core/util/index'\n \n /**\n@@ -45,12 +46,13 @@ export function bindObjectProps (\n : data....
2019-03-08T17:00:47
ggml-org/llama.cpp
a4a0aa5ea2a88e4858996199fefd5439f17b481c
92cd103f627015a95f2107f1c27dc218c7b8ec64
ggml : fix dependencies for ggml_set_rows (#16318)
[ { "path": "ggml/src/ggml.c", "patch": "@@ -3687,6 +3687,7 @@ struct ggml_tensor * ggml_set_rows(\n result->op = GGML_OP_SET_ROWS;\n result->src[0] = b;\n result->src[1] = c;\n+ result->src[2] = a; // note: order is weird due to legacy reasons (https://github.com/ggml-org/llama.cpp/pull/16...
2025-09-29T05:41:28
huggingface/transformers
64bdbd888c78dcef5aeaeabc842e12981c8aae7a
881e966aced6f0f208f43d7b7e7e55bc680f8fa5
Don't set `finetuned_from` if it is a local path (#28482) * fix * fix --------- Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": "examples/pytorch/contrastive-image-text/run_clip.py", "patch": "@@ -559,7 +559,11 @@ def filter_corrupt_images(examples):\n trainer.save_metrics(\"eval\", metrics)\n \n # 11. Write Training Stats and push to hub.\n- kwargs = {\"finetuned_from\": model_args.model_name_or_path, \"tas...
2024-01-15T10:38:20
nodejs/node
7027191288ab10618fd0228dac0353834d475eab
4766fcb96d9459b7db8fb201d6ac44d6957b4df0
test: Mark test-stop-profile-after-done flaky It is flaky on Windows and AIX. Some more time is needed to fix it. PR-URL: https://github.com/nodejs/node/pull/14874#pullrequestreview-56752371 Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Michael Dawson <mich...
[ { "path": "test/inspector/inspector.status", "patch": "@@ -6,4 +6,9 @@ prefix inspector\n \n [true] # This section applies to all platforms\n \n+[$system==aix]\n+test-stop-profile-after-done: PASS, FLAKY\n+\n [$system==win32]\n+test-stop-profile-after-done: PASS, FLAKY\n+", "additions": 5, "deletion...
2017-08-16T20:15:28
rust-lang/rust
756013f3e94b7389981aec093053e0c1324c2958
c241e146506600f5ab7f4026ff015df8a658400e
fixed wast version was released, remove randomization exemption
[ { "path": "src/bootstrap/src/core/builder/cargo.rs", "patch": "@@ -611,11 +611,10 @@ impl Builder<'_> {\n }\n \n // FIXME: the following components don't build with `-Zrandomize-layout` yet:\n- // - wasm-component-ld, due to the `wast`crate\n // - rust-analyzer, due to the row...
2024-10-28T22:25:27
vuejs/vue
731e4d0ebc997a6c2b1fc500b08924ff7ba091b6
0c4c78bfc026bed79e76d0d0009b6ed15b6bb008
types: use normalized type for `RenderContext.scopedSlots` (#9624) fix #9616
[ { "path": "types/options.d.ts", "patch": "@@ -1,5 +1,5 @@\n import { Vue, CreateElement, CombinedVueInstance } from \"./vue\";\n-import { VNode, VNodeData, VNodeDirective, ScopedSlot } from \"./vnode\";\n+import { VNode, VNodeData, VNodeDirective, NormalizedScopedSlot } from \"./vnode\";\n \n type Construct...
2019-03-05T21:46:56
ggml-org/llama.cpp
92cd103f627015a95f2107f1c27dc218c7b8ec64
b887d2f3413ac231e3cb5925260c39902af4a70c
vulkan: Fix validation failure in quantized flash attention (#16292)
[ { "path": "ggml/src/ggml-vulkan/vulkan-shaders/flash_attn_base.comp", "patch": "@@ -67,30 +67,48 @@ layout (binding = 5) writeonly buffer O {D_TYPE data_o[];};\n #if defined(A_TYPE_PACKED16)\n #define BINDING_IDX_K 0\n #define BINDING_IDX_V 1\n-layout (binding = 1) readonly buffer KV_PACKED16 {A_TYPE_PACKED...
2025-09-29T04:50:37
huggingface/transformers
121641cab1d894ec4f344dda3e80f44c05cbcd92
bc72b4e2cdcbc80d5f56731f35dbc9c18b4c8de6
Fix paths to AI Sweden Models reference and model loading (#28423) Fix URL to Ai Sweden Models reference and model loading
[ { "path": "docs/source/en/model_doc/gpt-sw3.md", "patch": "@@ -30,15 +30,15 @@ in collaboration with RISE and the WASP WARA for Media and Language. GPT-Sw3 has\n 320B tokens in Swedish, Norwegian, Danish, Icelandic, English, and programming code. The model was pretrained using a\n causal language modeling (...
2024-01-15T08:09:22
vuejs/vue
6ad99796c747987142c21b45c9361cca60e54e68
d123c7e4c67cb17c265f3a4f741fae71b69f5dc9
docs: fix spelling and grammatical errors (#9619)
[ { "path": ".github/CODE_OF_CONDUCT.md", "patch": "@@ -2,7 +2,7 @@\n \n As contributors and maintainers of this project, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities.\n \n-W...
2019-03-04T16:53:59
golang/go
ecdbffd4ec68b509998792f120868fec319de59b
1d9801223eb0693af64d2bc8c23c910ce7f18b16
net/http/httputil: don't append to X-Forwarded-For in ReverseProxy when nil Fixes #38079 Change-Id: Iac02d7f9574061bb26d1d9a41bb6ee6cc38934e5 Reviewed-on: https://go-review.googlesource.com/c/go/+/230937 Reviewed-by: Ian Lance Taylor <iant@golang.org>
[ { "path": "doc/go1.15.html", "patch": "@@ -200,7 +200,7 @@ <h3 id=\"minor_library_changes\">Minor changes to the library</h3>\n \n <dl id=\"net\"><dt><a href=\"/pkg/net/\">net</a></dt>\n <dd>\n- <p><!-- CL -->\n+ <p><!-- CL 228645 -->\n If an I/O operation exceeds a deadline set by\n the...
2020-04-29T18:00:23
nodejs/node
9ecc4406421dcc89a010000b1253d3ad0efae64a
f853baf5443d9e3022bde865de759623e9bdd1ca
buffer: fix MAX_LENGTH constant export This was a typo and accidentally returned the wrong value. Fixes: https://github.com/nodejs/node/issues/14819 Ref: https://github.com/nodejs/node/pull/13467 PR-URL: https://github.com/nodejs/node/pull/14821 Reviewed-By: Evan Lucas <evanlucas@me.com> Reviewed-By: Yuta Hiroto <hel...
[ { "path": "lib/buffer.js", "patch": "@@ -76,7 +76,7 @@ Buffer.prototype = FastBuffer.prototype;\n \n const constants = Object.defineProperties({}, {\n MAX_LENGTH: {\n- value: kStringMaxLength,\n+ value: kMaxLength,\n writable: false,\n enumerable: true\n },", "additions": 1, "delet...
2017-08-14T10:54:05
ggml-org/llama.cpp
b887d2f3413ac231e3cb5925260c39902af4a70c
bd0af02fc96c2057726f33c0f0daf7bb8f3e462a
ggml : fix GGML_F32_VEC_FMA argument order in ggml_vec_mad1_f32 (#16307) * fix GGML_F32_VEC_FMA argument order in ggml_vec_mad1_f32 * add test that fails on simd
[ { "path": "ggml/src/ggml-cpu/vec.h", "patch": "@@ -610,7 +610,7 @@ inline static void ggml_vec_mad1_f32(const int n, float * y, const float * x, co\n for (int i = 0; i < np; i += GGML_F32_STEP) {\n for (int j = 0; j < GGML_F32_ARR; j++) {\n ay[j] = GGML_F32_VEC_LOAD(x + i...
2025-09-28T21:15:03
huggingface/transformers
bc72b4e2cdcbc80d5f56731f35dbc9c18b4c8de6
e304f9769ca0bd9ef6fdb63a0568ecbd74af4434
Generate: fix candidate device placement (#28493) * fix candidate device * this line shouldn't have been in
[ { "path": "src/transformers/generation/candidate_generator.py", "patch": "@@ -169,6 +169,8 @@ def get_candidates(self, input_ids: torch.LongTensor) -> Tuple[torch.LongTensor,\n assessed by the model and a `torch.FloatTensor` of shape `(batch_size, candidate_length,\n vocabulary_size)...
2024-01-13T20:31:25
vuejs/vue
cbad54aa52847cfc934bb925d53c53ee57fc153d
1574ade607499bf4e3cf270c69249893e29eb259
fix(compiler): set end location for incomplete elements (#9598)
[ { "path": "src/compiler/parser/html-parser.js", "patch": "@@ -279,7 +279,7 @@ export function parseHTML (html, options) {\n ) {\n options.warn(\n `tag <${stack[i].tag}> has no matching end tag.`,\n- { start: stack[i].start }\n+ { start: stack[i].start, end...
2019-03-01T14:56:13
rust-lang/rust
f7a03d075fa203eceaee81d730a78913c9ece2d4
4a43094662727040d8522163f295b19d1aed0e49
Fix `x test --stage 1 ui-fulldeps` on macOS (until the next beta bump) "stage 1" for fulldeps means "compile with stage 0, link against stage 1". But this code wanted to switch on the compiler that's building, not the compiler that's being tested. Fix the check. Previously, it would fail with a warning about linker-m...
[ { "path": "src/bootstrap/src/core/build_steps/test.rs", "patch": "@@ -1840,19 +1840,21 @@ NOTE: if you're sure you want to do this, please open an issue as to why. In the\n }\n }\n \n+ // FIXME(136096): on macOS, we get linker warnings about duplicate `-lm` flags.\n+ // NOT...
2025-02-13T14:57:05
golang/go
c76befe0f40dfbb38a54c16d1845b97e4580797c
5c9a8c0761ae643828a4526db764ac7a50a1a24d
cmd/go: use -buildmode=pie as default on window This change adjusts go command to pass -buildmode=pie to cmd/link, if -buildmode is not explicitly provided. Fixes #35192 Change-Id: Iec020131e676eb3e9a2df9eea1929b2af2b6df04 Reviewed-on: https://go-review.googlesource.com/c/go/+/230217 Run-TryBot: Alex Brainman <alex....
[ { "path": "doc/go1.15.html", "patch": "@@ -31,6 +31,12 @@ <h2 id=\"language\">Changes to the language</h2>\n \n <h2 id=\"ports\">Ports</h2>\n \n+<p> <!-- CL 214397 and CL 230217 -->\n+ Go 1.15 now generates Windows ASLR executables when -buildmode=pie\n+ cmd/link flag is provided. Go command uses -buildmo...
2020-04-26T00:40:38
ggml-org/llama.cpp
bd0af02fc96c2057726f33c0f0daf7bb8f3e462a
d9e0e7c8194dfd7d23bf3a86608c9ece68d77c93
common : fix reasoning before forced tool call via tool_choice = required (#16264) * common : fix reasoning before forced tool call via tool_choice = required * common : improve reasoning and commentary handling when tool_choice is required (cherry picked from commit c746984956d6882c2de73d53ae2bb3bdf889e475) ------...
[ { "path": "common/chat.cpp", "patch": "@@ -1616,17 +1616,36 @@ static common_chat_params common_chat_params_init_gpt_oss(const common_chat_temp\n );\n });\n \n- auto recipient_in_role = builder.add_rule(\"recipient_in_role\",\n- \"\\\"<|start|>assistant\...
2025-09-28T18:13:50
huggingface/transformers
e304f9769ca0bd9ef6fdb63a0568ecbd74af4434
29a2b1420633d322140062d7c76b807f41fb90aa
Adding Prompt lookup decoding (#27775) * MVP * fix ci * more ci * remove redundant kwarg * added and wired up PromptLookupCandidateGenerator * rebased with main, working * removed print * style fixes * fix test * fixed tests * added test for prompt lookup decoding * fixed circleci *...
[ { "path": "src/transformers/generation/candidate_generator.py", "patch": "@@ -226,6 +226,98 @@ def update_candidate_strategy(self, input_ids: torch.LongTensor, scores: torch.F\n self.num_assistant_tokens = max(1.0, self.num_assistant_tokens - 1.0)\n \n \n+class PromptLookupCandidateGenerator...
2024-01-13T17:15:58
nodejs/node
859a2285940202014a5d13c2d3897e4bc870a02b
491cc76871c4bf9351ef6246b3cc6948c37d84f9
util: use proper circular reference checking Circular references are conceptually nothing that should be checked for objects (or Sets or Maps) only, but applies to recursive structures in general, so move the `seen` checks into a position where it is part of the recursion itself. Fixes: https://github.com/nodejs/node...
[ { "path": "lib/util.js", "patch": "@@ -612,10 +612,13 @@ function formatValue(ctx, value, recurseTimes) {\n }\n }\n \n- ctx.seen.push(value);\n-\n- var output = formatter(ctx, value, recurseTimes, visibleKeys, keys);\n+ // TODO(addaleax): Make `seen` a Set to avoid linear-time lookup.\n+ if (ctx.s...
2017-08-12T12:37:12
vuejs/vue
571a4880fc06b491a280325b79fd4cbb59ceb47e
03c13de38e883636917800a283ebcb338bbfbdc3
fix: further adjust max stack size close #9562
[ { "path": "src/server/write.js", "patch": "@@ -1,6 +1,6 @@\n /* @flow */\n \n-const MAX_STACK_DEPTH = 900\n+const MAX_STACK_DEPTH = 800\n const noop = _ => _\n \n const defer = typeof process !== 'undefined' && process.nextTick", "additions": 1, "deletions": 1, "language": "JavaScript" } ]
2019-02-28T22:46:28
ggml-org/llama.cpp
d9e0e7c8194dfd7d23bf3a86608c9ece68d77c93
0124ac989f7e7bf08803788f66dbe4106bdcdd58
ci : fix musa docker build (#16306) Signed-off-by: Xiaodong Ye <yeahdongcn@gmail.com>
[ { "path": ".devops/musa.Dockerfile", "patch": "@@ -2,9 +2,9 @@ ARG UBUNTU_VERSION=22.04\n # This needs to generally match the container host's environment.\n ARG MUSA_VERSION=rc4.3.0\n # Target the MUSA build image\n-ARG BASE_MUSA_DEV_CONTAINER=sh-harbor.mthreads.com/haive/mthreads/musa:${MUSA_VERSION}-deve...
2025-09-28T14:38:15
golang/go
b7e54d8d0784ceb21f7d4d406cf42c86a7fdb0f8
e87b0644db46c2b313f420c657a4b308fb6bc2cb
cmd/go: make 'mod verify' use multiple CPUs 'go mod verify' checksums one module zip at a time, which is CPU-intensive on most modern machines with fast disks. As a result, one can see a CPU bottleneck when running the command on, for example, a module where 'go list -m all' lists ~440 modules: $ /usr/bin/time go mo...
[ { "path": "src/cmd/go/internal/modcmd/verify.go", "patch": "@@ -10,6 +10,7 @@ import (\n \t\"fmt\"\n \t\"io/ioutil\"\n \t\"os\"\n+\t\"runtime\"\n \n \t\"cmd/go/internal/base\"\n \t\"cmd/go/internal/cfg\"\n@@ -52,17 +53,41 @@ func runVerify(cmd *base.Command, args []string) {\n \t\t\tbase.Fatalf(\"go: cannot...
2020-04-24T09:53:17
huggingface/transformers
2382706a1ca038099214664dfa40f2f06883072c
4fb3d3a0f6f0da95548a5e6bd02850d468c85e32
Fix docstrings and update docstring checker error message (#28460) * Fix TF Regnet docstring * Fix TF Regnet docstring * Make a change to the PyTorch Regnet too to make sure the CI is checking it * Add skips for TFRegnet * Update error message for docstring checker
[ { "path": "src/transformers/models/regnet/modeling_regnet.py", "patch": "@@ -295,7 +295,7 @@ def _init_weights(self, module):\n \n REGNET_START_DOCSTRING = r\"\"\"\n This model is a PyTorch [torch.nn.Module](https://pytorch.org/docs/stable/nn.html#torch.nn.Module) subclass. Use it\n- as a regular PyT...
2024-01-12T17:54:11
nodejs/node
9e08695f85d4273f01e010cf384f42030d66b453
5e5a52fc937d53b5bcf5c2c09c898d8311db2bca
src: Node implementation of v8::Platform Node.js currently uses the V8 implementation of the DefaultPlatform which schedules VM tasks on a V8 managed thread pool. Since the Node.js event loop is not aware of these tasks, the Node.js process may exit while there are outstanding VM tasks. This will become problematic on...
[ { "path": "node.gyp", "patch": "@@ -190,6 +190,7 @@\n 'src/node_http_parser.cc',\n 'src/node_main.cc',\n 'src/node_os.cc',\n+ 'src/node_platform.cc',\n 'src/node_revert.cc',\n 'src/node_serdes.cc',\n 'src/node_url.cc',\n@@ -238,6 +239,7 @@\n 'sr...
2017-03-13T22:17:57
vuejs/vue
ed341137b23315b76ba391db1b0e537950c091e1
241eea19a64550bfdb3f9d7e4197127997572842
fix: handle async component when parent is toggled before resolve (#9572) fix #9571
[ { "path": "src/core/vdom/helpers/resolve-async-component.js", "patch": "@@ -8,7 +8,8 @@ import {\n isTrue,\n isObject,\n hasSymbol,\n- isPromise\n+ isPromise,\n+ remove\n } from 'core/util/index'\n \n import { createEmptyVNode } from 'core/vdom/vnode'\n@@ -51,17 +52,21 @@ export function resolveAsy...
2019-02-28T22:37:44
rust-lang/rust
3ecc012f6f59419fbdfddd9bac3a4b21d2275078
b08a0c6afc33d16f530f379828bcc06bffc3dee8
fix clobbered or lateout registers overlapping with input registers
[ { "path": "libgccjit.version", "patch": "@@ -1 +1 @@\n-e607be166673a8de9fc07f6f02c60426e556c5f2\n+d6f5a708104a98199ac0f01a3b6b279a0f7c66d3", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "src/asm.rs", "patch": "@@ -36,7 +36,8 @@ use crate::type_of::LayoutGccExt;\...
2025-02-12T21:05:29
golang/go
e87b0644db46c2b313f420c657a4b308fb6bc2cb
41f6388e70063fedf3c85f851cf7e685e4480198
cmd/go: add error for cross-compiled -race builds Race builds require C dependencies, but cross-compiled cgo builds are not always possible, so don't suggest enabling CGO in those cases. Fixes #37021 Change-Id: I1fd675efc9cef958a926bd63eac8e6858bc59d0a GitHub-Last-Rev: cbf43c1bbb0f209474cc323b3813cf270a2ba0a8 GitHub...
[ { "path": "src/cmd/go/internal/work/init.go", "patch": "@@ -16,6 +16,7 @@ import (\n \t\"fmt\"\n \t\"os\"\n \t\"path/filepath\"\n+\t\"runtime\"\n \t\"strings\"\n )\n \n@@ -84,7 +85,12 @@ func instrumentInit() {\n \tmodeFlag := \"-\" + mode\n \n \tif !cfg.BuildContext.CgoEnabled {\n-\t\tfmt.Fprintf(os.Stderr...
2020-04-28T20:06:29
ggml-org/llama.cpp
2811c65286ae954bec87049f75b86dc022006dcc
d8359f5fde480da030bf75c7711573c7c4d993ba
Fixed a few typos in the README of the LLaMA.cpp HTTP Server [no ci] (#16297)
[ { "path": "tools/server/README.md", "patch": "@@ -391,7 +391,7 @@ node index.js\n \n ## API Endpoints\n \n-### GET `/health`: Returns heath check result\n+### GET `/health`: Returns health check result\n \n This endpoint is public (no API key check).\n \n@@ -846,7 +846,7 @@ To use this endpoint with POST me...
2025-09-28T11:04:46
huggingface/transformers
edb314ae2ba4ac0e89d6a31d48037b8943978bff
c45ef1c0d196ada1af50c72e0dbd2a8d310b59b2
Fix torch.ones usage in xlnet (#28471) Fix xlnet torch.ones usage Co-authored-by: sungho-ham <sungho.ham@linecorp.com>
[ { "path": "src/transformers/models/xlnet/modeling_xlnet.py", "patch": "@@ -976,7 +976,7 @@ def create_mask(self, qlen, mlen):\n v [0 0 0 0 0 0 0 0 0] [1 1 1 1 0 0 0 0 0]\n \n \"\"\"\n- mask = torch.ones(qlen, qlen + mlen, self.device)\n+ mask = torch.ones((qlen, qlen + m...
2024-01-12T14:31:00
vuejs/vue
241eea19a64550bfdb3f9d7e4197127997572842
f33301619d18b9392597c5230af17921c0b42466
fix(types): allow scoped slots to return a single VNode (#9563)
[ { "path": "types/test/options-test.ts", "patch": "@@ -323,6 +323,10 @@ Vue.component('component-with-scoped-slot', {\n item: (props: ScopedSlotProps) => [h('span', [props.msg])]\n }\n }),\n+ h('child', [\n+ // return single VNode (will be normalized to an array)\n+ ...
2019-02-28T22:03:28
nodejs/node
fabe1b4e19011b94b20572a40300161b1160f8fd
64162a1041f293bfafb7bc8d030a83e5ab5e8b69
deps: backport f9c4b7a from upstream V8 Original commit message: [heap] Move UnmapFreeMemoryTask to CancelableTask This mitigates the problem of blocking on the main thread when the platform is unable to execute background tasks in a timely manner. Bug: v8:6671 Change-Id: I741d4b7594e8d62721dad32cbfb19551f...
[ { "path": "deps/v8/src/heap/heap.cc", "patch": "@@ -161,6 +161,7 @@ Heap::Heap()\n heap_iterator_depth_(0),\n local_embedder_heap_tracer_(nullptr),\n fast_promotion_mode_(false),\n+ use_tasks_(true),\n force_oom_(false),\n delay_sweeper_tasks_for_testing_(false),\n p...
2017-08-03T14:23:13
ggml-org/llama.cpp
d8359f5fde480da030bf75c7711573c7c4d993ba
6a2c6145a0b91b40eb3c3dba7b20ccc4b270490f
vulkan: 64-bit im2col (#16135) * vulkan: 64-bit im2col Add variants of the im2col shaders that use buffer_device_address/buffer_reference, and use 64-bit address calculations. This is needed for large convolutions used in stable-diffusion.cpp. * fix validation error for large im2col
[ { "path": "ggml/src/ggml-vulkan/ggml-vulkan.cpp", "patch": "@@ -408,6 +408,8 @@ struct vk_device_struct {\n bool subgroup_ballot;\n bool subgroup_clustered;\n bool multi_add;\n+ bool shader_int64;\n+ bool buffer_device_address;\n \n bool add_rms_fusion;\n uint32_t partials_binding_...
2025-09-28T06:38:37
golang/go
41f6388e70063fedf3c85f851cf7e685e4480198
1d31f9b1e05d3766ed2132b5856d364d00c5fdf9
cmd/cover: include a package name in the HTML title A recent change added a title to the HTML coverage report but neglected to include the package name. Add the package name here. It's a little trickier than you'd think because there may be multiple packages and we don't want to parse the files, so we just extract a d...
[ { "path": "src/cmd/cover/html.go", "patch": "@@ -172,6 +172,27 @@ type templateData struct {\n \tSet bool\n }\n \n+// PackageName returns a name for the package being shown.\n+// It does this by choosing the penultimate element of the path\n+// name, so foo.bar/baz/foo.go chooses 'baz'. This is cheap\n+//...
2020-04-28T15:45:59
vuejs/vue
f33301619d18b9392597c5230af17921c0b42466
2277b2322cf81b5830a5b85f6600e1896edc7aa9
fix(types): update this for nextTick api (#9541)
[ { "path": "types/test/vue-test.ts", "patch": "@@ -86,6 +86,9 @@ class Test extends Vue {\n }\n });\n this.nextTick(() => {});\n+ this.nextTick(function () {\n+ console.log(this.text === 'test');\n+ }, { text: 'test'});\n this.nextTick().then(() => {});\n this.set({}, \"\", \...
2019-02-28T21:54:07
nodejs/node
64162a1041f293bfafb7bc8d030a83e5ab5e8b69
354a17b0c090f88e29936b3a72dfed673cc68c4d
deps: backport bca8409 from upstream V8 Original commit message: Make CancelableTask ids unique They were only limited to 32 bit when using the internal Hashmap. Since this has changed alreay some time ago, we can switch to 64 bit ids and check that we never overflow. Bug: Change-Id: Ia6c6d02d6b5e555c694...
[ { "path": "deps/v8/src/cancelable-task.cc", "patch": "@@ -29,18 +29,17 @@ Cancelable::~Cancelable() {\n CancelableTaskManager::CancelableTaskManager()\n : task_id_counter_(0), canceled_(false) {}\n \n-uint32_t CancelableTaskManager::Register(Cancelable* task) {\n+CancelableTaskManager::Id CancelableTask...
2017-08-03T14:14:43
ggml-org/llama.cpp
1384abf8b8d5894d32fada453ccf4d196ffba7de
e6d65fb02d553bd79cad94e517cdca18b687788d
vulkan: handle mat_mul with A matrix > 4GB (#16176) * vulkan: handle mat_mul with A matrix > 4GB This change splits mat_mul operations with huge A matrix into chunks in the M dimension. This works well for stable-diffusion use cases where the im2col matrix has very large M. Fix the order of setting the stride in mul...
[ { "path": "ggml/src/ggml-vulkan/ggml-vulkan.cpp", "patch": "@@ -5661,8 +5661,12 @@ static void ggml_vk_buffer_memset(vk_buffer& dst, size_t offset, uint32_t c, siz\n ggml_vk_queue_command_pools_cleanup(dst->device);\n }\n \n-static uint32_t ggml_vk_guess_split_k(ggml_backend_vk_context * ctx, uint32_t m...
2025-09-28T01:36:34
golang/go
1d31f9b1e05d3766ed2132b5856d364d00c5fdf9
b255c123371caf9238dcc732860a907f3ea744da
strconv: implement parseFloatPrefix returning no. of bytes consumed parseFloatPrefix will make it easier to implement ParseComplex. Verified that there's no relevant performance impact: Benchmarks run on a "quiet" MacBook Pro, 3.3GHz Dual-Core Intel Core i7, with 16GB 2133MHz LPDDR3 RAM running macOS 10.15.4. name ...
[ { "path": "src/strconv/atof.go", "patch": "@@ -14,51 +14,57 @@ import \"math\"\n \n var optimize = true // set to false to force slow-path conversions for testing\n \n-func equalIgnoreCase(s1, s2 string) bool {\n-\tif len(s1) != len(s2) {\n-\t\treturn false\n-\t}\n-\tfor i := 0; i < len(s1); i++ {\n-\t\tc1 ...
2020-04-28T23:54:44
vuejs/vue
2277b2322cf81b5830a5b85f6600e1896edc7aa9
7912f75c5eb09e0aef3e4bfd8a3bb78cad7540d7
fix: scoped slots dynamic check should include v-for on element itself fix #9596
[ { "path": "src/compiler/codegen/index.js", "patch": "@@ -366,7 +366,7 @@ function genScopedSlots (\n // components with only scoped slots to skip forced updates from parent.\n // but in some cases we have to bail-out of this optimization\n // for example if the slot contains dynamic names, has v-if or...
2019-02-28T19:36:47
rust-lang/rust
8ff3639dffe3cd7802d407d8f43eb1788d3de661
cfe9ffcd7c2d63fd3e0fc33a8d23ac4f0d50efe9
ci: move `x86_64-gnu-debug` job to the free runner
[ { "path": "src/ci/github-actions/jobs.yml", "patch": "@@ -294,9 +294,7 @@ auto:\n <<: *job-linux-4c\n \n - name: x86_64-gnu-debug\n- # This seems to be needed because a full stage 2 build + run-make tests\n- # overwhelms the storage capacity of the standard 4c runner.\n- <<: *job-linux-4c-lar...
2025-02-13T10:29:55
nodejs/node
354a17b0c090f88e29936b3a72dfed673cc68c4d
4fbedbbfc3e4aef0f573026532a9d622ea5825c2
deps: backport 6e9e2e5 from upstream V8 Original commit message: [heap] Move SweeperTask to CancelableTask This mitigates the problem of blocking on the main thread when the platform is unable to execute background tasks in a timely manner. Bug: v8:6655 Change-Id: Icdaae744ee73146b86b9a28c8035138746721971 ...
[ { "path": "deps/v8/src/heap/mark-compact.cc", "patch": "@@ -7,6 +7,7 @@\n #include \"src/base/atomicops.h\"\n #include \"src/base/bits.h\"\n #include \"src/base/sys-info.h\"\n+#include \"src/cancelable-task.h\"\n #include \"src/code-stubs.h\"\n #include \"src/compilation-cache.h\"\n #include \"src/deoptimiz...
2017-08-03T14:05:36
ggml-org/llama.cpp
0499b29c6f64c705faaf5860dc4600fca23671f4
234e2ff8ed09716fb553437596779399bee31b11
vulkan: throw system error instead of SIGABRT during init on older devices (#16156) * Throw system error on old Vulkan driver rather than SIGABRT * Optionally handle any potential error in vulkan init
[ { "path": "ggml/src/ggml-vulkan/ggml-vulkan.cpp", "patch": "@@ -4521,7 +4521,7 @@ static void ggml_vk_instance_init() {\n \n if (api_version < VK_API_VERSION_1_2) {\n std::cerr << \"ggml_vulkan: Error: Vulkan 1.2 required.\" << std::endl;\n- GGML_ABORT(\"fatal error\");\n+ throw vk...
2025-09-27T16:26:46
vuejs/vue
7912f75c5eb09e0aef3e4bfd8a3bb78cad7540d7
060c3b98efa44a9f21bcc038a2593b1cc3c782e9
fix: avoid compression of unicode sequences by using regexps (#9595) closes #9456
[ { "path": "src/compiler/parser/html-parser.js", "patch": "@@ -11,12 +11,12 @@\n \n import { makeMap, no } from 'shared/util'\n import { isNonPhrasingTag } from 'web/compiler/util'\n-import { unicodeLetters } from 'core/util/lang'\n+import { unicodeRegExp } from 'core/util/lang'\n \n // Regular Expressions f...
2019-02-28T17:10:38
huggingface/transformers
266c67b06a3ce19e584af4a809d1aaa598113b2b
666a6f078c38b0926ef8b5efa3b6f577c5c9df2b
[`Mixtral` / `Awq`] Add mixtral fused modules for Awq (#28240) * add mixtral fused modules * add changes from modeling utils * add test * fix test + rope theta issue * Update src/transformers/modeling_utils.py Co-authored-by: amyeroberts <22614925+amyeroberts@users.noreply.github.com> * add tests ...
[ { "path": "src/transformers/integrations/awq.py", "patch": "@@ -30,6 +30,13 @@\n \"layernorm\": [\"input_layernorm\", \"post_attention_layernorm\", \"norm\"],\n \"use_alibi\": False,\n },\n+ \"mixtral\": {\n+ \"attention\": [\"q_proj\", \"k_proj\", \"v_proj\", \"o_proj\"],\n+ ...
2024-01-12T13:29:35
golang/go
b255c123371caf9238dcc732860a907f3ea744da
769a1cf7b6b79e747e3a4d886992b2a7e54f33d7
syscall: on linux-arm64, prefer prlimit to {g,s}etrlimit Reportedly some Docker images accept the prlimit64 system call, used by syscall.prlimit, but prohibit the getrlimit and setrlimit system calls. Fixes #38604 Change-Id: I91ff9370450b4869098cc8e335bbb7b863060508 Reviewed-on: https://go-review.googlesource.com/c/...
[ { "path": "src/syscall/syscall_linux_arm64.go", "patch": "@@ -28,7 +28,7 @@ func EpollCreate(size int) (fd int, err error) {\n //sysnb\tGetegid() (egid int)\n //sysnb\tGeteuid() (euid int)\n //sysnb\tGetgid() (gid int)\n-//sysnb\tGetrlimit(resource int, rlim *Rlimit) (err error)\n+//sysnb\tgetrlimit(resourc...
2020-04-28T00:43:35
vuejs/vue
060c3b98efa44a9f21bcc038a2593b1cc3c782e9
2ec5b640f55a34df1b70aa9d59b08385c2f7ac20
fix: fix modifier parsing for dynamic argument with deep path (#9585) fix #9577
[ { "path": "src/compiler/parser/index.js", "patch": "@@ -33,7 +33,7 @@ const dynamicArgRE = /^\\[.*\\]$/\n const argRE = /:(.*)$/\n export const bindRE = /^:|^\\.|^v-bind:/\n const propBindRE = /^\\./\n-const modifierRE = /\\.[^.]+/g\n+const modifierRE = /\\.[^.\\]]+(?=[^\\]]*$)/g\n \n const slotRE = /^v-slo...
2019-02-28T14:36:47
ggml-org/llama.cpp
72b24d96c6888c609d562779a23787304ae4609c
624207e676ab5eb3ce7af631902bb45fb73a8359
model : make minicpm embedding_scale, residual_scale and logit_scale optional with legacy defaults (#16273) * minicpm: make GGUF scaling keys optional with legacy defaults Older MiniCPM GGUFs do not include the scaling metadata keys (minicpm.embedding_scale, minicpm.residual_scale, minicpm.logit_scale). The loader cu...
[ { "path": "src/llama-model.cpp", "patch": "@@ -675,10 +675,17 @@ void llama_model::load_hparams(llama_model_loader & ml) {\n } break;\n case LLM_ARCH_MINICPM:\n {\n+ // Backward-compatible defaults for older MiniCPM GGUFs\n+ hparams.f_embedding_s...
2025-09-26T21:28:29
nodejs/node
4fbedbbfc3e4aef0f573026532a9d622ea5825c2
832a87f906f2dad032604af1420db7d245083f56
deps: backport 3d8e87a from upstream V8 Original commit message: Switch tracing to use v8::TracingController BUG=v8:6511 R=fmeawad@chromium.org Cq-Include-Trybots: master.tryserver.chromium.linux:linux_chromium_rel_ng Change-Id: I4961e4b61a9ddc98385ed97c3ffcbcaef2d9cba7 Reviewed-on: https://chromium-r...
[ { "path": "deps/v8/include/libplatform/libplatform.h", "patch": "@@ -70,6 +70,8 @@ V8_PLATFORM_EXPORT void RunIdleTasks(v8::Platform* platform,\n * Attempts to set the tracing controller for the given platform.\n *\n * The |platform| has to be created using |CreateDefaultPlatform|.\n+ *\n+ * DEPRECATED: ...
2017-06-29T08:45:40
huggingface/transformers
666a6f078c38b0926ef8b5efa3b6f577c5c9df2b
4e36a6cd00688b7c6a97034e84dce318f7dfc5a2
Update metadata loading for oneformer (#28398) * Update meatdata loading for oneformer * Enable loading from a model repo * Update docstrings * Fix tests * Update tests * Clarify repo_path behaviour
[ { "path": "src/transformers/models/oneformer/image_processing_oneformer.py", "patch": "@@ -15,11 +15,13 @@\n \"\"\"Image processor class for OneFormer.\"\"\"\n \n import json\n+import os\n import warnings\n from typing import Any, Dict, Iterable, List, Optional, Set, Tuple, Union\n \n import numpy as np\n f...
2024-01-12T12:35:31
golang/go
769a1cf7b6b79e747e3a4d886992b2a7e54f33d7
eda6fe3572b2fb02c2a8c87892744d04fea87691
debug/gosym: correct comments for Table.{Files,Objs} The fields aren't too useful for Go 1.2 and later, but they aren't actually nil. Fixes #38754 Change-Id: Ia13a224f623697a00dea8ba0225633e1b9308c9f Reviewed-on: https://go-review.googlesource.com/c/go/+/230940 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
[ { "path": "src/debug/gosym/symtab.go", "patch": "@@ -121,8 +121,8 @@ type Obj struct {\n type Table struct {\n \tSyms []Sym // nil for Go 1.3 and later binaries\n \tFuncs []Func\n-\tFiles map[string]*Obj // nil for Go 1.2 and later binaries\n-\tObjs []Obj // nil for Go 1.2 and later binaries\n+\...
2020-04-30T02:47:34
rust-lang/rust
8cac5b03f3fdc6906a037ccdd656161e4263e898
8ae47501551f8cf08930d7005779c075a77c6868
rustc_tools_util: Change release channel default to stable Fixes the exposed release channel Bump version to 0.4.1
[ { "path": "Cargo.toml", "patch": "@@ -25,7 +25,7 @@ path = \"src/driver.rs\"\n [dependencies]\n clippy_config = { path = \"clippy_config\" }\n clippy_lints = { path = \"clippy_lints\" }\n-rustc_tools_util = \"0.4.0\"\n+rustc_tools_util = { path = \"rustc_tools_util\", version = \"0.4.1\" }\n tempfile = { ve...
2025-01-31T14:17:45
vuejs/vue
7a8de91cd78f523fabe8452652513250871a01c6
173042bb8e07c5ce3a0857063445bf4dc1d1d846
fix(compiler): handle negative length in codeframe repeat
[ { "path": "src/compiler/codeframe.js", "patch": "@@ -38,11 +38,13 @@ export function generateCodeFrame (\n \n function repeat (str, n) {\n let result = ''\n- while (true) { // eslint-disable-line\n- if (n & 1) result += str\n- n >>>= 1\n- if (n <= 0) break\n- str += str\n+ if (n > 0) {\n+ ...
2019-02-21T19:27:33
ggml-org/llama.cpp
624207e676ab5eb3ce7af631902bb45fb73a8359
807e8c6d310952f2f5656afc63dab9d7083dcb5c
devops: add s390x & ppc64le CI (#15925) * devops: move s390x and ppc64le ci build we have access to ubuntu-24.04-s390x and ppc64le images now Signed-off-by: Aaron Teo <aaron.teo1@ibm.com> * devops: disable ppc64le for now since they have compiler errors Signed-off-by: Aaron Teo <aaron.teo1@ibm.com> * devops: stop...
[ { "path": ".github/workflows/build-linux-cross.yml", "patch": "@@ -141,97 +141,6 @@ jobs:\n \n # cmake --build build --config Release -j $(nproc)\n \n- ubuntu-24-ppc64el-cpu-cross:\n- runs-on: ubuntu-24.04\n-\n- steps:\n- - uses: actions/checkout@v4\n- - name: Setup PowerPC64le\n-...
2025-09-26T18:03:33
huggingface/transformers
995a7ce9a80b80062ccfe0b2d78857fb17351e27
143451355cde90ac2819452d65d219a7c86cad72
Fix broken link on page (#28451) * [docs] Fix broken link Signed-off-by: Hankyeol Kyung <kghnkl0103@gmail.com> * [docs] Use shorter domain Signed-off-by: Hankyeol Kyung <kghnkl0103@gmail.com> --------- Signed-off-by: Hankyeol Kyung <kghnkl0103@gmail.com>
[ { "path": "docs/source/de/add_new_pipeline.md", "patch": "@@ -15,7 +15,7 @@ rendered properly in your Markdown viewer.\n \n # Wie erstellt man eine benutzerdefinierte Pipeline?\n \n-In dieser Anleitung sehen wir uns an, wie Sie eine benutzerdefinierte Pipeline erstellen und sie auf dem [Hub](hf.co/models) f...
2024-01-11T17:26:13
nodejs/node
832a87f906f2dad032604af1420db7d245083f56
4f21834962c22c2d70f57a57e160e2abda84aaed
deps: backport 5152d97 from upstream V8 Original commit message: Add API to create a platform with a tracing controller BUG=v8:6511 Cq-Include-Trybots: master.tryserver.chromium.linux:linux_chromium_rel_ng Change-Id: Ie6b62df693d3b847837c071e1f985b7ce3b420c8 Reviewed-on: https://chromium-review.googlesou...
[ { "path": "deps/v8/include/libplatform/libplatform.h", "patch": "@@ -30,12 +30,15 @@ enum class MessageLoopBehavior : bool {\n * If |idle_task_support| is enabled then the platform will accept idle\n * tasks (IdleTasksEnabled will return true) and will rely on the embedder\n * calling v8::platform::RunId...
2017-06-27T09:05:22
golang/go
eda6fe3572b2fb02c2a8c87892744d04fea87691
4f7053c87f9ebf3acab7669d380f53bdfba0566b
Revert "cmd/compile: omit file:pos for non-existent, permission errors" This reverts commit 4f7053c87f9ebf3acab7669d380f53bdfba0566b. Reason for revert: Newly added test is failing on several builders. Change-Id: I22dcbfebf2f57735b2f479886bbeb623f95b132f Reviewed-on: https://go-review.googlesource.com/c/go/+/231043 ...
[ { "path": "src/cmd/compile/internal/gc/subr.go", "patch": "@@ -60,15 +60,9 @@ func adderrorname(n *Node) {\n }\n \n func adderr(pos src.XPos, format string, args ...interface{}) {\n-\tmsg := fmt.Sprintf(format, args...)\n-\t// Only add the position if we have a file.\n-\t// See issue golang.org/issue/11361....
2020-04-30T01:40:37
vuejs/vue
2f3020e9cc1ad5c878606b56bb73a30b1d9bb7d9
8a80a23ecba23f92f278d664388050ffcd121385
fix(#9511): avoid promise catch multiple times (#9526) * fix(#9511): avoid promise catch multiple times * fix(#9511): add a test case for util/error/invokeWithErrorHandling * fix(#9511): update test case for util/error/invokeWithErrorHandling
[ { "path": "src/core/util/error.js", "patch": "@@ -44,7 +44,9 @@ export function invokeWithErrorHandling (\n try {\n res = args ? handler.apply(context, args) : handler.call(context)\n if (res && !res._isVue && isPromise(res)) {\n- res.catch(e => handleError(e, vm, info + ` (Promise/async)`))\...
2019-02-21T19:01:53
ggml-org/llama.cpp
1a189278944d030211f336e103e96b65f976c361
e0539eb6aed346d4b25a6ea019044e88771e7690
Allow viewing conversations even when llama server is down (#16255) * webui: allow viewing conversations and sending messages even if llama-server is down - Cached llama.cpp server properties in browser localStorage on startup, persisting successful fetches and reloading them when refresh attempts fail so the chat UI...
[ { "path": "tools/server/webui/src/lib/components/app/chat/ChatScreen/ChatScreen.svelte", "patch": "@@ -3,9 +3,11 @@\n \timport {\n \t\tChatForm,\n \t\tChatScreenHeader,\n+\t\tChatScreenWarning,\n \t\tChatMessages,\n \t\tChatProcessingInfo,\n \t\tEmptyFileAlertDialog,\n+\t\tServerErrorSplash,\n \t\tServerInf...
2025-09-26T16:35:42
huggingface/transformers
143451355cde90ac2819452d65d219a7c86cad72
19e83d174c1e2802a459c9b5831628817e1c286f
Fix docstring checker issues with PIL enums (#28450)
[ { "path": "utils/check_docstrings.py", "patch": "@@ -933,6 +933,10 @@ def replace_default_in_arg_description(description: str, default: Any) -> str:\n except Exception:\n # Otherwise there is a math operator so we add a code block.\n str_default = f\"`...
2024-01-11T17:23:41