repo
stringclasses
15 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
64.3k
files
listlengths
1
300
timestamp
timestamp[s]date
2013-03-13 20:45:00
2026-04-11 07:48:46
vuejs/vue
1c105fb16c1b2395790740efce10b137f2f36c19
3fca52792ef83fa58a5c28882706d9e8a039790d
test: fix test case for #8297
[ { "path": "test/unit/features/directives/bind.spec.js", "patch": "@@ -168,20 +168,25 @@ describe('Directive v-bind', () => {\n \n it('.sync modifier with kebab case event', done => {\n const vm = new Vue({\n- template: `<test :foo-bar.sync=\"bar\"/>`,\n+ template: `<test ref=\"test\" :foo-ba...
2018-12-21T19:29:57
huggingface/transformers
9924df9eb234b979ee3fb3f5463e039b9e9623dd
7938c8c836b2f42d25dfe32f17e5022209b76f9d
Avoid unnecessary warnings when loading `CLIPConfig` (#28108) * fix --------- Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": "src/transformers/models/altclip/configuration_altclip.py", "patch": "@@ -339,7 +339,7 @@ def __init__(\n f\"`text_config_dict` is provided which will be used to initialize `AltCLIPTextConfig`. The \"\n f'value `text_config[\"{key}\"]` will b...
2023-12-20T16:24:53
rust-lang/rust
d6f5d34744a2e2b6823d103353b3e9e3d525c714
0819c1638c6fdb41884d7aadd1528611b2f09d7b
fix string and tuple struct formatting
[ { "path": "src/etc/lldb_commands", "patch": "@@ -1,4 +1,5 @@\n # Forces test-compliant formatting to all other types\n+type synthetic add -l lldb_lookup.synthetic_lookup -x \".*\" --category Rust\n type summary add -F _ -e -x -h \"^.*$\" --category Rust\n # Std String\n type synthetic add -l lldb_lookup.Std...
2025-02-12T07:30:09
nodejs/node
2923ed10bb6dd1d6a203e1a89d1aa179df5cf243
7ec28a0a506efe9d1c03240fd028bea4a3d350da
test: improve check in test-os The check for `os.networkInterfaces()` in `test-os.js` may be too strict. It's apparently possible for a machine to be configured with multiple IPv4 loopback interfaces. Increase specificity of filter to check on only the object we expect. PR-URL: https://github.com/nodejs/node/pull/146...
[ { "path": "test/parallel/test-os.js", "patch": "@@ -116,7 +116,8 @@ const interfaces = os.networkInterfaces();\n switch (platform) {\n case 'linux':\n {\n- const filter = (e) => e.address === '127.0.0.1';\n+ const filter =\n+ (e) => e.address === '127.0.0.1' && e.netmask === '255.0.0.0';\n ...
2017-08-07T02:47:32
golang/go
6677a2a1fc5814417c3ab319e1717104e07a4c3f
080a3ee8b26c8e324d40bcd832e9668ecda9af0b
strings: remove an obsolete doc note for FieldsFunc Fixes #38630 Change-Id: I0b2b693dd88821dcfc035cf552b687565bb55ef6 GitHub-Last-Rev: 291b1b4dcf074860492bb67008f4e8228c655652 GitHub-Pull-Request: golang/go#38631 Reviewed-on: https://go-review.googlesource.com/c/go/+/229763 Reviewed-by: Robert Griesemer <gri@golang.o...
[ { "path": "src/strings/strings.go", "patch": "@@ -369,8 +369,6 @@ func Fields(s string) []string {\n // FieldsFunc splits the string s at each run of Unicode code points c satisfying f(c)\n // and returns an array of slices of s. If all code points in s satisfy f(c) or the\n // string is empty, an empty sli...
2020-04-23T21:49:53
ggml-org/llama.cpp
a68f31edd71cc39141113f05f7133a3e9ece8c61
b8e09f08b9a91c0401bc67d17a17c90756420346
fix KLD percentile output (#15999) In `llama-perplexity`, when using `--kl-divergence`, the KL divergence statistics output mistakenly displays the 99th percentile twice. This change fixes that and correctly displays the 90th percentile as originally intended (presumably).
[ { "path": "tools/perplexity/perplexity.cpp", "patch": "@@ -1931,7 +1931,7 @@ static void kl_divergence(llama_context * ctx, const common_params & params) {\n LOG(\"Maximum KLD: %10.6f\\n\", kld_values.back());\n LOG(\"99.9%% KLD: %10.6f\\n\", percentile(kld_values, 0.999f));\n LOG(\"99.0%% K...
2025-09-15T07:54:57
vuejs/vue
3fca52792ef83fa58a5c28882706d9e8a039790d
0e4e45ec741416e0042c29a53bbc0e58c8663f6e
feat: v-bind.sync also listens for kebab-case update event (#8297) fix #6428
[ { "path": "src/compiler/parser/index.js", "patch": "@@ -5,7 +5,7 @@ import { parseHTML } from './html-parser'\n import { parseText } from './text-parser'\n import { parseFilters } from './filter-parser'\n import { genAssignmentCode } from '../directives/model'\n-import { extend, cached, no, camelize } from ...
2018-12-21T18:34:17
huggingface/transformers
7938c8c836b2f42d25dfe32f17e5022209b76f9d
769a9542de4e8b23f0a551738e18760621f463e8
Fix weights not properly initialized due to shape mismatch (#28122) * fix --------- Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": "src/transformers/modeling_utils.py", "patch": "@@ -3957,13 +3957,14 @@ def _fix_key(key):\n \n # retrieve unintialized modules and initialize before maybe overriding that with the pretrained weights.\n if _fast_init:\n- if remove_prefix_from_model:\n- _lo...
2023-12-20T13:20:02
nodejs/node
7ec28a0a506efe9d1c03240fd028bea4a3d350da
1e569f42b6950bfc24b9edaa135abc5b7a79d7f6
querystring: avoid indexOf when parsing Fixes a performance regression in body-parser with V8 6.0. Removes the use of an auxiliary array, and just query the object directly. PR-URL: https://github.com/nodejs/node/pull/14703 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> ...
[ { "path": "lib/querystring.js", "patch": "@@ -285,7 +285,6 @@ function parse(qs, sep, eq, options) {\n }\n const customDecode = (decode !== qsUnescape);\n \n- const keys = [];\n var lastPos = 0;\n var sepIdx = 0;\n var eqIdx = 0;\n@@ -326,11 +325,8 @@ function parse(qs, sep, eq, options) {\n ...
2017-08-08T22:41:52
vuejs/vue
1933ee80ff808b81a691fa6a135c1588d218bc0a
5ab028a9128b289b0c840bdb6901021fc482e6f5
fix(provide/inject): Merges symbol provides (#7926)
[ { "path": "src/core/util/options.js", "patch": "@@ -4,6 +4,7 @@ import config from '../config'\n import { warn } from './debug'\n import { nativeWatch } from './env'\n import { set } from '../observer/index'\n+import { hasSymbol } from '../util/index'\n \n import {\n ASSET_TYPES,\n@@ -48,9 +49,15 @@ if (p...
2018-12-21T17:49:21
golang/go
a44d06d3b4d665cee14342df1c81a385f9d2055f
83d25c61e45f2d38e1015d6eef50cccc0dc0d9b3
cmd/compile: use fixVariadicCall in escape analysis This CL uses fixVariadicCall before escape analyzing function calls. This has a number of benefits, though also some minor obstacles: Most notably, it allows us to remove ODDDARG along with the logic involved in setting it up, manipulating EscHoles, and later copyin...
[ { "path": "src/cmd/compile/internal/gc/escape.go", "patch": "@@ -428,7 +428,12 @@ func (e *Escape) exprSkipInit(k EscHole, n *Node) {\n \t\tlineno = lno\n \t}()\n \n-\tif k.derefs >= 0 && !types.Haspointers(n.Type) {\n+\tuintptrEscapesHack := k.uintptrEscapesHack\n+\tk.uintptrEscapesHack = false\n+\n+\tif u...
2020-04-22T02:48:02
huggingface/transformers
cd9f9d63f11890ca34263ec29a5f60ee68e6270a
def581ef51f78326a3f56de9cf9c637c47b920ad
[gpt-neox] Add attention_bias config to support model trained without attention biases (#28126) * add attention_bias hparam for a model trained without attention biases * fix argument documentation error
[ { "path": "src/transformers/models/gpt_neox/configuration_gpt_neox.py", "patch": "@@ -86,6 +86,8 @@ class GPTNeoXConfig(PretrainedConfig):\n these scaling strategies behave:\n https://www.reddit.com/r/LocalLLaMA/comments/14mrgpr/dynamically_scaled_rope_further_increases/. This is an\...
2023-12-20T09:05:32
rust-lang/rust
7564f3c8e638a5e78b176000c38c7a2504f2e392
34a5ea911c56e79bd451c63f04ea2f5023d7d1a3
compiler: Make middle errors `pub(crate)` and bury some dead code
[ { "path": "compiler/rustc_middle/messages.ftl", "patch": "@@ -1,6 +1,3 @@\n-middle_adjust_for_foreign_abi_error =\n- target architecture {$arch} does not support `extern {$abi}` ABI\n-\n middle_assert_async_resume_after_panic = `async fn` resumed after panicking\n \n middle_assert_async_resume_after_retu...
2025-02-12T05:54:35
ggml-org/llama.cpp
b8e09f08b9a91c0401bc67d17a17c90756420346
6c019cb04e86e2dacfe62ce7666c64e9717dde1f
model : add grok-2 support (#15539) * add grok-2 support * type fix * type fix * type fix * "fix" vocab for invalid sequences * fix expert tensor mapping and spaces in vocab * add chat template * fix norm tensor mapping * rename layer_out_norm to ffn_post_norm * ensure ffn_post_norm is mapped * fix experts m...
[ { "path": "common/common.h", "patch": "@@ -288,9 +288,9 @@ struct common_params {\n float rope_freq_base = 0.0f; // RoPE base frequency\n float rope_freq_scale = 0.0f; // RoPE frequency scaling factor\n float yarn_ext_factor = -1.0f; // YaRN extrapolation mix factor\n-...
2025-09-14T21:00:59
vuejs/vue
22ad26615104c15fd09bc69692e3042bb1bb58e9
44940121eef4e2df5f3cb3c21f3f468af8b336bc
fix(runtime): DevTools recommendation shows for all browsers (#8638) Close #8634
[ { "path": "src/platforms/web/runtime/index.js", "patch": "@@ -4,7 +4,7 @@ import Vue from 'core/index'\n import config from 'core/config'\n import { extend, noop } from 'shared/util'\n import { mountComponent } from 'core/instance/lifecycle'\n-import { devtools, inBrowser, isChrome } from 'core/util/index'\...
2018-12-20T22:05:05
nodejs/node
1e569f42b6950bfc24b9edaa135abc5b7a79d7f6
1e33f92d6a2894a68a77e20ed97d80662c694d7d
zlib: fix crash when initializing failed Unset `mode_` when initializing the zlib stream failed, so that we don’t try to call the zlib end functions (`deflateEnd()` etc.) when cleaning up in `ZCtx::Close()`. Fixes: https://github.com/nodejs/node/issues/14178 Ref: https://github.com/nodejs/node/pull/13098 PR-URL: http...
[ { "path": "src/node_zlib.cc", "patch": "@@ -557,6 +557,7 @@ class ZCtx : public AsyncWrap {\n delete[] dictionary;\n ctx->dictionary_ = nullptr;\n }\n+ ctx->mode_ = NONE;\n ctx->env()->ThrowError(\"Init error\");\n }\n ", "additions": 1, "deletions": 0, "lang...
2017-08-07T15:12:11
golang/go
6303c34d7f16eab5824a586f1ac30ec8921e7602
e0915dea09744c1704086048ed51bb8e9ddbcb6f
cmd/compile: remove dead values after flagalloc Fix a longstanding TODO. Provides widespread, minor improvements. Negligible compiler cost. Because the freeze nears, put in a safety flag to easily disable. Change-Id: I338812181ab6d806fecf22afd3c3502e2c94f7a0 Reviewed-on: https://go-review.googlesource.com/c/go/+/22...
[ { "path": "src/cmd/compile/internal/ssa/flagalloc.go", "patch": "@@ -106,7 +106,7 @@ func flagalloc(f *Func) {\n \t}\n \n \t// Add flag spill and recomputation where they are needed.\n-\t// TODO: Remove original instructions if they are never used.\n+\tvar remove []*Value // values that should be checked fo...
2019-12-30T21:16:28
huggingface/transformers
def581ef51f78326a3f56de9cf9c637c47b920ad
b134f6857ea40f92b6b8b74dfbc9ca96a2fcd0a5
Fix FA2 integration (#28142) * fix fa2 * fix FA2 for popular models * improve warning and add Younes as co-author Co-Authored-By: Younes Belkada <49240599+younesbelkada@users.noreply.github.com> * Update src/transformers/modeling_utils.py Co-authored-by: Arthur <48595927+ArthurZucker@users.noreply.githu...
[ { "path": "docs/source/en/model_doc/llama2.md", "patch": "@@ -67,6 +67,8 @@ come in several checkpoints they each contain a part of each weight of the model\n \n - The LLaMA tokenizer is a BPE model based on [sentencepiece](https://github.com/google/sentencepiece). One quirk of sentencepiece is that when de...
2023-12-20T08:55:07
ggml-org/llama.cpp
0fa154e3502e940df914f03b41475a2b80b985b0
261e6a20ffdb79c4875e674b4f6b514bc73cff8f
rocm.Dockerfile: added gfx1200,gfx1201 architectures to support AMD Radeon RX 9000 series (#15994) * rocm.Dockerfile: added gfx1200,gfx1201 architectures to support AMD Radeon RX 9000 series https://rocm.docs.amd.com/projects/install-on-linux/en/docs-6.4.1/reference/system-requirements.html#rdna-os states the Radeo...
[ { "path": ".devops/rocm.Dockerfile", "patch": "@@ -4,7 +4,7 @@ ARG UBUNTU_VERSION=24.04\n ARG ROCM_VERSION=6.4\n ARG AMDGPU_VERSION=6.4\n \n-# Target the CUDA build image\n+# Target the ROCm build image\n ARG BASE_ROCM_DEV_CONTAINER=rocm/dev-ubuntu-${UBUNTU_VERSION}:${ROCM_VERSION}-complete\n \n ### Build i...
2025-09-14T18:43:54
vuejs/vue
9432737cf871335c42ce0dc0a0baa21a4d8c3832
0ebb0f39dfee0a5c03adb2f312f617cca37b44d6
fix: cover more cases in v-on inline return value
[ { "path": "src/compiler/codegen/events.js", "patch": "@@ -1,7 +1,7 @@\n /* @flow */\n \n const fnExpRE = /^([\\w$_]+|\\([^)]*?\\))\\s*=>|^function\\s*\\(/\n-const fnInvokeRE = /\\([^)]*?\\)$/\n+const fnInvokeRE = /\\([^)]*?\\);*$/\n const simplePathRE = /^[A-Za-z_$][\\w$]*(?:\\.[A-Za-z_$][\\w$]*|\\['[^']*?'...
2018-12-20T17:20:09
nodejs/node
1e33f92d6a2894a68a77e20ed97d80662c694d7d
611851dabad3ab4f2f419f490b9b1f6818de7754
http2: rename some nghttp2 stream flags This change makes NGHTTP2_STREAM_* enum values consistent. It also resolves a collision between enum values defined in nghttp2_error_code and nghttp2_stream_flags. PR-URL: https://github.com/nodejs/node/pull/14637 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Coli...
[ { "path": "src/node_http2_core-inl.h", "patch": "@@ -314,7 +314,7 @@ inline void Nghttp2Stream::Destroy() {\n // Do nothing if this stream instance is already destroyed\n if (IsDestroyed())\n return;\n- flags_ |= NGHTTP2_STREAM_DESTROYED;\n+ flags_ |= NGHTTP2_STREAM_FLAG_DESTROYED;\n Nghttp2Sess...
2017-08-05T00:29:59
huggingface/transformers
38611086d293ea4a5809bcd7fadd8081d55cb74e
23f8e4db7779a81a24f35debd34c56f39e5807a4
[docs] Fix mistral link in mixtral.md (#28143) Fix mistral link in mixtral.md
[ { "path": "docs/source/en/model_doc/mixtral.md", "patch": "@@ -42,7 +42,7 @@ Mixtral-45B is a decoder-based LM with the following architectural choices:\n \n * Mixtral is a Mixture of Expert (MOE) model with 8 experts per MLP, with a total of 45B paramateres but the compute required is the same as a 14B mod...
2023-12-19T18:34:14
golang/go
d9d88dd27f31936e11dfa621937f09db9a23af36
91b9c2f350ffc96b644d68fd8ae389250f3668a6
cmd/compile: allow named values on RHS of rewrite rules Fixes #38621 Change-Id: Idbffdcc70903290dc58e5abb4867718bd5449fe1 Reviewed-on: https://go-review.googlesource.com/c/go/+/229701 Run-TryBot: Josh Bleecher Snyder <josharian@gmail.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Keith Randall <khr@g...
[ { "path": "src/cmd/compile/internal/ssa/gen/rulegen.go", "patch": "@@ -1194,6 +1194,8 @@ func genResult(rr *RuleRewrite, arch arch, result, pos string) {\n }\n \n func genResult0(rr *RuleRewrite, arch arch, result string, top, move bool, pos string) string {\n+\tresname, expr := splitNameExpr(result)\n+\tre...
2020-04-23T07:30:14
ggml-org/llama.cpp
261e6a20ffdb79c4875e674b4f6b514bc73cff8f
a0e13dcbe5bae7025660349ef3e4ead060e507f2
Vulkan: Clean up mul_mm shader (#15987) * vulkan: move mul_mm dequantization steps into a separate file and functions * improve mul_mm vector load code * fix debug mode issues and warnings
[ { "path": "ggml/src/ggml-vulkan/ggml-vulkan.cpp", "patch": "@@ -1231,8 +1231,6 @@ static std::string format_size(size_t size) {\n return oss.str();\n }\n \n-static std::mutex log_mutex;\n-\n class vk_memory_logger {\n public:\n vk_memory_logger(): total_device(0), total_host(0) {}\n@@ -1422,6 +1420,...
2025-09-14T14:56:28
vuejs/vue
0ebb0f39dfee0a5c03adb2f312f617cca37b44d6
b00868c5cb1ca8aa8b42947ff5d2a55e9e298582
fix: return inline invocation return value in v-on handlers close #7628
[ { "path": "src/compiler/codegen/events.js", "patch": "@@ -1,6 +1,7 @@\n /* @flow */\n \n const fnExpRE = /^([\\w$_]+|\\([^)]*?\\))\\s*=>|^function\\s*\\(/\n+const fnInvokeRE = /\\([^)]*?\\)$/\n const simplePathRE = /^[A-Za-z_$][\\w$]*(?:\\.[A-Za-z_$][\\w$]*|\\['[^']*?']|\\[\"[^\"]*?\"]|\\[\\d+]|\\[[A-Za-z_$...
2018-12-20T16:32:06
nodejs/node
611851dabad3ab4f2f419f490b9b1f6818de7754
9564c20810d7dccaae8bb917251681051a2a1144
child_process: fix handle passing w large payloads Fix situations in which the handle passed along with a message that has a large payload and can’t be read entirely by a single `recvmsg()` call isn’t associated with the message to which it belongs. PR-URL: https://github.com/nodejs/node/pull/14588 Fixes: https://git...
[ { "path": "lib/internal/child_process.js", "patch": "@@ -455,10 +455,14 @@ function setupChannel(target, channel) {\n \n var decoder = new StringDecoder('utf8');\n var jsonBuffer = '';\n+ var pendingHandle = null;\n channel.buffering = false;\n channel.onread = function(nread, pool, recvHandle) {\n...
2017-08-02T00:50:31
golang/go
939379ffb6175c8f86dbf99a28741b4318a964eb
681ba4307781a1f1581bda3c52255186e4b79546
runtime: fix TestDeferWithRepeatedRepanics and TestIssue37688 to be less chatty Converted some Println() statements (used to make sure that certain variables were kept alive and not optimized out) to assignments into global variables, so the tests don't produce extraneous output when there is a failure. Fixes #38594 ...
[ { "path": "src/runtime/defer_test.go", "patch": "@@ -6,7 +6,6 @@ package runtime_test\n \n import (\n \t\"fmt\"\n-\t\"os\"\n \t\"reflect\"\n \t\"runtime\"\n \t\"testing\"\n@@ -325,11 +324,13 @@ func recurseFnPanicRec(level int, maxlevel int) {\n \trecurseFn(level, maxlevel)\n }\n \n+var saveInt uint32\n+\n ...
2020-04-22T21:28:51
ggml-org/llama.cpp
a0e13dcbe5bae7025660349ef3e4ead060e507f2
a14bd350141fb42b8bf2dd2342cebc27bfdce399
build: fix the build failures of Windows HIP release job (#15984) * build: fix the cache keys for Windows HIP release job Update the cache keys to include the HIP SDK version, preventing the use of outdated ROCm installation caches. * build: sync changes from release.yml to build.yml - Update HIP SDK version to 25....
[ { "path": ".github/workflows/build.yml", "patch": "@@ -127,7 +127,8 @@ jobs:\n -DCMAKE_BUILD_RPATH=\"@loader_path\" \\\n -DLLAMA_FATAL_WARNINGS=ON \\\n -DGGML_METAL=OFF \\\n- -DGGML_RPC=ON\n+ -DGGML_RPC=ON \\\n+ -DCMAKE_OSX_DEPLOYMENT_TARG...
2025-09-14T14:20:35
vuejs/vue
b00868c5cb1ca8aa8b42947ff5d2a55e9e298582
35edc1c1e2515033a07e903580df01bcd43090aa
refactor: extract async error handling logic
[ { "path": "src/core/instance/events.js", "patch": "@@ -4,9 +4,8 @@ import {\n tip,\n toArray,\n hyphenate,\n- handleError,\n formatComponentName,\n- handlePromiseError\n+ invokeWithErrorHandling\n } from '../util/index'\n import { updateListeners } from '../vdom/helpers/index'\n \n@@ -134,13 +133...
2018-12-20T15:26:56
nodejs/node
1b719fe3d78e35a494151229b014ebed6a8383bf
f11379d25baa86abb05a888434c1279d80b44220
test: add crypto check to http2 tests When building --without-ssl and running the tests some of the http2 test fail with the following error message: internal/util.js:82 throw new errors.Error('ERR_NO_CRYPTO'); ^ Error [ERR_NO_CRYPTO]: Node.js is not compiled with OpenSSL crypto support at Object.assertC...
[ { "path": "test/parallel/test-http2-binding.js", "patch": "@@ -1,7 +1,9 @@\n // Flags: --expose-http2\n 'use strict';\n \n-require('../common');\n+const common = require('../common');\n+if (!common.hasCrypto)\n+ common.skip('missing crypto');\n const assert = require('assert');\n \n assert.doesNotThrow(() ...
2017-08-07T05:54:44
ggml-org/llama.cpp
a14bd350141fb42b8bf2dd2342cebc27bfdce399
918b26f197f55d5d562446dfc876d0e637929d07
metal : fix kernel requirements (#15983) * metal : fix kernel requirements ggml-ci * cont : fix supports_op * cont : fix supports_op for ARGMAX
[ { "path": "ggml/src/ggml-metal/ggml-metal.m", "patch": "@@ -1219,10 +1219,10 @@ @implementation GGMLMetalClass\n GGML_METAL_ADD_KERNEL(GGML_METAL_KERNEL_TYPE_SET_ROWS_IQ4_NL, set_rows_iq4_nl, true);\n GGML_METAL_ADD_KERNEL(GGML_METAL_KERNEL_TYPE_L2_NORM, ...
2025-09-14T12:33:22
golang/go
681ba4307781a1f1581bda3c52255186e4b79546
0d19b91b40a971cad50b894d543c201763d4085e
cmd/compile: move fixVariadicCall from walk to order This CL moves fixVariadicCall from mid-Walk of function calls to early-Order, in preparation for moving it even earlier in the future. Notably, rewriting variadic calls this early introduces two compilation output changes: 1. Previously, Order visited the ODDDARG ...
[ { "path": "src/cmd/compile/internal/gc/order.go", "patch": "@@ -407,11 +407,20 @@ func (o *Order) call(n *Node) {\n \t\t// Caller should have already called o.init(n).\n \t\tFatalf(\"%v with unexpected ninit\", n.Op)\n \t}\n+\n+\t// Builtin functions.\n+\tif n.Op != OCALLFUNC && n.Op != OCALLMETH && n.Op !=...
2020-04-21T22:59:11
vuejs/vue
6e9fcfc81d922a1b188268bf50d7e67c07d6d662
b7f7f2756928f409950186c5d641034f362b392a
feat(errors): sync/async error handling for lifecycle hooks and v-on handlers (#8395) close #6953, close #7653
[ { "path": "src/core/instance/events.js", "patch": "@@ -5,7 +5,8 @@ import {\n toArray,\n hyphenate,\n handleError,\n- formatComponentName\n+ formatComponentName,\n+ handlePromiseError\n } from '../util/index'\n import { updateListeners } from '../vdom/helpers/index'\n \n@@ -135,7 +136,8 @@ export f...
2018-12-20T15:02:28
huggingface/transformers
4a04b4ccca68fce889b9dd247a8bcc86e53a167b
ac974199c850cc392ba94ceeb4cb8801efc3311a
[`Mixtral`] Fix loss + nits (#28115) * default config should not use sliding window * update the doc * nits * add a proper test * update * update * update expected value * Update src/transformers/tokenization_utils_fast.py Co-authored-by: Younes Belkada <49240599+younesbelkada@users.noreply.git...
[ { "path": "src/transformers/models/mixtral/configuration_mixtral.py", "patch": "@@ -79,7 +79,7 @@ class MixtralConfig(PretrainedConfig):\n Whether the model's input and output word embeddings should be tied.\n rope_theta (`float`, *optional*, defaults to 1000000.0):\n The bas...
2023-12-19T16:31:54
nodejs/node
f11379d25baa86abb05a888434c1279d80b44220
24c45054e425dbc47c19262cfc4fb9f917a0e08d
test: fix test-readline-interface Previous unit test delay is too short for parallel test on raspberry pi, it will fail sometimes. This PR use common.platformTimeout and widen the time gap. PR-URL: https://github.com/nodejs/node/pull/14677 Ref: https://github.com/nodejs/node/issues/14674 Reviewed-By: Refael Ackerman...
[ { "path": "test/parallel/test-readline-interface.js", "patch": "@@ -331,8 +331,8 @@ function isWarned(emitter) {\n // over the default crlfDelay but within the setting value\n {\n const fi = new FakeInput();\n- const delay = 200;\n- const crlfDelay = 500;\n+ const delay = 125;\n+ const c...
2017-08-07T19:15:19
vuejs/vue
b7f7f2756928f409950186c5d641034f362b392a
080dd971f77f7c631650c4e3027d1802f4e804d8
feat: use event delegation when possible This also fixes async edge case #6566 where events propagate too slow and incorrectly trigger handlers post-patch.
[ { "path": "src/core/util/env.js", "patch": "@@ -14,6 +14,7 @@ export const isEdge = UA && UA.indexOf('edge/') > 0\n export const isAndroid = (UA && UA.indexOf('android') > 0) || (weexPlatform === 'android')\n export const isIOS = (UA && /iphone|ipad|ipod|ios/.test(UA)) || (weexPlatform === 'ios')\n export c...
2018-12-20T00:26:58
ggml-org/llama.cpp
918b26f197f55d5d562446dfc876d0e637929d07
9ecb88434644c865232bb665d2f6f05049fc6456
rpc : fix regression when --device is used (#15981) Fix regression introduced with commit 50f4281a6
[ { "path": "tools/rpc/rpc-server.cpp", "patch": "@@ -227,7 +227,9 @@ static ggml_backend_t create_backend(const rpc_server_params & params) {\n }\n }\n \n- backend = ggml_backend_init_best();\n+ if (!backend) {\n+ backend = ggml_backend_init_best();\n+ }\n \n if (backend) {\n ...
2025-09-14T09:28:18
golang/go
0d19b91b40a971cad50b894d543c201763d4085e
bf5b83a835eb7be62abd6921590fedad24328343
cmd/go: use response files when command line would be too long Fixes #37768 Change-Id: I799a8da632890ad7595697d461c90e3c4c065d95 Reviewed-on: https://go-review.googlesource.com/c/go/+/229317 Run-TryBot: Keith Randall <khr@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Jay Conrod <jayconrod@goo...
[ { "path": "src/cmd/go/internal/work/exec.go", "patch": "@@ -2972,13 +2972,13 @@ func mkAbsFiles(dir string, files []string) []string {\n \treturn abs\n }\n \n-// passLongArgsInResponseFiles modifies cmd on Windows such that, for\n+// passLongArgsInResponseFiles modifies cmd such that, for\n // certain progr...
2020-04-21T23:29:18
rust-lang/rust
e106d63516b7e1a75c3e2e8873ac805b8833b192
aa26cab257d34a8d8786f6c607b67fd70b467ce6
Add a way to print inputs on failure When there is a panic in an extensive test, tracing down where it came from can be difficult since no information is provides (messeges are e.g. "attempted to subtract with overflow"). Resolve this by calling the functions within `panic::catch_unwind`, printing the input, and conti...
[ { "path": "library/compiler-builtins/libm/crates/libm-test/src/op.rs", "patch": "@@ -14,6 +14,7 @@\n //! level. `Op` is also used as the name for generic parameters since it is terse.\n \n use std::fmt;\n+use std::panic::{RefUnwindSafe, UnwindSafe};\n \n pub use shared::{ALL_OPERATIONS, FloatTy, MathOpInf...
2025-02-12T03:48:20
huggingface/transformers
ac974199c850cc392ba94ceeb4cb8801efc3311a
bd7a35613510aa7543549ab26a8f3ede0ae8b3a3
Generate: speculative decoding (#27979) * speculative decoding * fix test * space * better comments * remove redundant test * test nit * Apply suggestions from code review Co-authored-by: amyeroberts <22614925+amyeroberts@users.noreply.github.com> * PR comments --------- Co-authored-by: a...
[ { "path": "src/transformers/generation/utils.py", "patch": "@@ -4624,40 +4624,57 @@ def assisted_decoding(\n for i in range(candidate_length + 1):\n new_logits[:, i, :] = logits_warper(candidate_input_ids[:, : cur_len + i], new_logits[:, i, :])\n \n- # 3. Obtai...
2023-12-19T13:58:30
vuejs/vue
080dd971f77f7c631650c4e3027d1802f4e804d8
850555d1faa9be7d8306adffd95c7dee5e58717f
fix(next-tick): revert 60da366 the condition is no longer necessary after reverting back to microtask only nextTick implementation, and fix #8436
[ { "path": "src/platforms/web/runtime/modules/dom-props.js", "patch": "@@ -86,10 +86,6 @@ function isDirtyWithModifiers (elm: any, newVal: string): boolean {\n const value = elm.value\n const modifiers = elm._vModifiers // injected by v-model runtime\n if (isDef(modifiers)) {\n- if (modifiers.lazy) ...
2018-12-19T19:00:15
ggml-org/llama.cpp
6380d6a3e709cb02a8695afdd96b40e674477332
aa0c461efe3603639af1a1defed2438d9c16ca0f
ggml-zdnn: rm user mapped buffers (#15965) * ggml-zdnn: rm user mapped buffers Signed-off-by: Aaron Teo <aaron.teo1@ibm.com> * ggml-zdnn: rm dead code Signed-off-by: Aaron Teo <aaron.teo1@ibm.com> * ggml-zdnn: attempt to fix missing extra data buffer free Signed-off-by: Aaron Teo <aaron.teo1@ibm.com> --------- ...
[ { "path": "ggml/src/ggml-zdnn/ggml-zdnn.cpp", "patch": "@@ -127,11 +127,6 @@ static void ggml_zdnn_mul_mat_op(ggml_backend_zdnn_context * ctx, const ggml_ten\n const int64_t output_rows = ne1;\n const int64_t output_cols = ne0;\n \n- // TODO: Weights are somehow not going through `ggml_backend_zd...
2025-09-14T05:37:03
nodejs/node
c3c045aea06a4d58b4af5c1bdc4f8aebbe5425e4
4da8b99a74c9d00a3733d50c6348750360bf1c40
stream: support readable/writableHWM for Duplex This commits adds support for readableHighWaterMark and writableHighWaterMark in Duplex stream, so that they can be set without accessing the internal state. Fixes: https://github.com/nodejs/node/issues/14555 PR-URL: https://github.com/nodejs/node/pull/14636 Reviewed-By...
[ { "path": "doc/api/stream.md", "patch": "@@ -1752,6 +1752,10 @@ constructor and implement *both* the `readable._read()` and\n * `writableObjectMode` {boolean} Defaults to `false`. Sets `objectMode`\n for writable side of the stream. Has no effect if `objectMode`\n is `true`.\n+ * `readableHighWat...
2017-08-04T23:12:24
vuejs/vue
850555d1faa9be7d8306adffd95c7dee5e58717f
ced774be6ddbc53884d7a5d395514a9f62e32336
fix: always use microtasks for nextTick (#8450) fix #7109, #7546, #7707, #7834, #8109 reopen #6566
[ { "path": "src/core/util/next-tick.js", "patch": "@@ -1,9 +1,9 @@\n /* @flow */\n-/* globals MessageChannel */\n+/* globals MutationObserver */\n \n import { noop } from 'shared/util'\n import { handleError } from './error'\n-import { isIOS, isNative } from './env'\n+import { isIE, isIOS, isNative } from '....
2018-12-19T18:29:00
ggml-org/llama.cpp
aa0c461efe3603639af1a1defed2438d9c16ca0f
b9c9c9f789cd57fb0b28b25223305613cd90fa10
vulkan: fix failing dequant shaders (#15862) * vulkan: fix failing dequant shaders * add missing const
[ { "path": "ggml/src/ggml-vulkan/vulkan-shaders/dequant_iq2_s.comp", "patch": "@@ -29,7 +29,7 @@ void main() {\n uint qs = data_a[ib].qs[4 * ib32 + l];\n const uint8_t sign = data_a[ib].qs[QUANT_K / 8 + 4 * ib32 + l];\n qs |= (qh << (8 - 2 * l)) & 0x300;\n- const uvec2 grid = i...
2025-09-13T15:29:43
nodejs/node
80ebb4282d29733fefbcee8deb9cc70348eace16
7535a94c8a54bb6346c8e60dbae1c32d6f508212
src: adjust windows abort behavior Raising SIGABRT is handled in the CRT in windows, calling _exit() with ambiguous code "3" by default. This adjustment to the abort behavior gives a more sane exit code on abort, by calling _exit directly with code 134. PR-URL: https://github.com/nodejs/node/pull/13947 Fixes: https:...
[ { "path": "doc/api/process.md", "patch": "@@ -1819,6 +1819,8 @@ cases:\n value of the signal code. This is a standard Unix practice, since\n exit codes are defined to be 7-bit integers, and signal exits set\n the high-order bit, and then contain the value of the signal code.\n+ For example, signal `...
2017-06-24T19:37:59
huggingface/transformers
4edffda636fb2bf673282b31163e598b5872994e
c52b515e948fc12ff58ad773a0385860d0162f61
[Doc] Fix token link in What 🤗 Transformers can do (#28123) Fix token link
[ { "path": "docs/source/en/task_summary.md", "patch": "@@ -182,7 +182,7 @@ Like classification tasks in any modality, text classification labels a sequence\n \n ### Token classification\n \n-In any NLP task, text is preprocessed by separating the sequence of text into individual words or subwords. These are ...
2023-12-18T23:06:54
rust-lang/rust
d2ed8cf6619764e2a0af8a691c4ccb8c034b1e57
0cffe5cb95e36d45a3e61f7b1f5a9b21eddd77b4
Optionally add type names to `TypeId`s. This feature is intended to provide expensive but thorough help for developers who have an unexpected `TypeId` value and need to determine what type it actually is. It causes `impl Debug for TypeId` to print the type name in addition to the opaque ID hash, and in order to do so,...
[ { "path": "library/core/Cargo.toml", "patch": "@@ -23,6 +23,8 @@ optimize_for_size = []\n # Make `RefCell` store additional debugging information, which is printed out when\n # a borrow error occurs\n debug_refcell = []\n+# Make `TypeId` store a reference to the name of the type, so that it can print that n...
2025-01-27T17:34:56
vuejs/vue
b06c784b81a244e1bc2d028216fcd2ab873730b9
70754084ec2d84e44effeb8f82efda3397a08b0d
fix(ssr): support rendering comment (#9128)
[ { "path": "src/server/optimizing-compiler/codegen.js", "patch": "@@ -225,7 +225,11 @@ function nodesToSegments (\n } else if (c.type === 2) {\n segments.push({ type: INTERPOLATION, value: c.expression })\n } else if (c.type === 3) {\n- segments.push({ type: RAW, value: escape(c.text) })\n...
2018-12-12T16:41:08
ggml-org/llama.cpp
b9c9c9f789cd57fb0b28b25223305613cd90fa10
50f4281a6f5c3a5d68bdeb12f904fa01e0e2ba91
vulkan: initialize vulkan-hpp to allow using extension function pointers (#15705) Use this to query register count for shader compiles on NVIDIA. Currently this is only for performance debug, but it could eventually be used in some heuristics like split_k.
[ { "path": "ggml/src/ggml-vulkan/ggml-vulkan.cpp", "patch": "@@ -5,8 +5,14 @@\n #include \"ggml-cpu.h\"\n #endif\n \n+// See https://github.com/KhronosGroup/Vulkan-Hpp?tab=readme-ov-file#extensions--per-device-function-pointers-\n+#define VULKAN_HPP_DISPATCH_LOADER_DYNAMIC 1\n+\n #include <vulkan/vulkan.hpp>...
2025-09-13T15:23:30
golang/go
c8dea8198e256b75bf3b21980873caaace9d353e
e354309e1ea2d0965e1a4df441b813635d63ed5b
cmd/go: allow generate to process invalid packages Allow go generate to process packages that contain invalid code. Ignore errors when loading the package, but process only files which have a valid package clause. Set $GOPACKAGE individually for each file, based on the package clause. Add test script for go generate ...
[ { "path": "src/cmd/go/alldocs.go", "patch": "@@ -547,6 +547,9 @@\n // tag \"generate\" so that files may be examined by go generate but ignored\n // during build.\n //\n+// For packages with invalid code, generate processes only source files with a\n+// valid package clause.\n+//\n // If any generator retur...
2020-04-20T18:35:57
rust-lang/rust
a917fd5f98913a04b839cccca43558f4e4fc831b
ffa9afef183a3496a277c8da2e61403582a99508
Fix diagnostic when using = instead of : in let bindings
[ { "path": "compiler/rustc_resolve/src/late/diagnostics.rs", "patch": "@@ -2347,9 +2347,14 @@ impl<'ast, 'ra: 'ast, 'tcx> LateResolutionVisitor<'_, 'ast, 'ra, 'tcx> {\n // try to give a suggestion for this pattern: `name = blah`, which is common in other languages\n // suggest `let name = blah` to in...
2025-02-11T14:16:07
huggingface/transformers
c52b515e948fc12ff58ad773a0385860d0162f61
a52e180a0f1603a842e302c9d8a59cf8a6a67244
Fix a typo in tokenizer documentation (#28118)
[ { "path": "src/transformers/models/jukebox/tokenization_jukebox.py", "patch": "@@ -185,7 +185,7 @@ def _convert_token_to_id(self, list_artists, list_genres, list_lyrics):\n \n def _tokenize(self, lyrics):\n \"\"\"\n- Converts a string in a sequence of tokens (string), using the tokenizer....
2023-12-18T18:44:35
vuejs/vue
847e493768371cec4718969e02bdb7f8463f4e03
4e975485a4d90fef62bf73a32a2b72e249919130
fix: fix single v-for child optimization
[ { "path": "src/core/instance/render-helpers/render-list.js", "patch": "@@ -32,8 +32,9 @@ export function renderList (\n ret[i] = render(val[key], key, i)\n }\n }\n- if (isDef(ret)) {\n- (ret: any)._isVList = true\n+ if (!isDef(ret)) {\n+ ret = []\n }\n+ (ret: any)._isVList = true\n ...
2018-12-11T22:47:59
nodejs/node
7535a94c8a54bb6346c8e60dbae1c32d6f508212
7192e913f703c96eddff697c4ba0daef87930776
test: begin normalizing fixtures use Adds a new `../common/fixtures' module to begin normalizing `test/fixtures` use. Our test code is a bit inconsistent with regards to use of the fixtures directory. Some code uses `path.join()`, some code uses string concats, some other code uses template strings, etc. In mnay cases...
[ { "path": "test/common/README.md", "patch": "@@ -374,6 +374,37 @@ Decrements the `Countdown` counter.\n Specifies the remaining number of times `Countdown.prototype.dec()` must be\n called before the callback is invoked.\n \n+## Fixtures Module\n+\n+The `common/fixtures` module provides convenience methods ...
2017-07-17T22:33:46
ggml-org/llama.cpp
f161463a54d9f93d41246286aa4a9569a91d804d
84d7b2fca11d1be118ce776f6d72a486c4883b74
metal : allow ops to run concurrently (#15929) * metal : run graphs ops concurrently ggml-ci * cont : add flags for debugging and disabling concurrency ggml-ci * cont : refactor and handle fusing ggml-ci * cont : simplify - no need to use GPU address ggml-ci * cont : prepare mem ranges for reuse + add ggml-met...
[ { "path": "ggml/src/ggml-metal/CMakeLists.txt", "patch": "@@ -6,6 +6,7 @@ message(STATUS \"Metal framework found\")\n \n ggml_add_backend_library(ggml-metal\n ggml-metal.m\n+ ggml-metal-common.cpp\n )\n \n target_link_libraries(ggml-me...
2025-09-13T10:54:28
huggingface/transformers
a52e180a0f1603a842e302c9d8a59cf8a6a67244
08a6e7a702d06826659eb7f0f6b9f37d33f31829
[docs] General doc fixes (#28087) * doc fix friday * deprecated objects * update not_doctested * update toctree
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -146,8 +146,6 @@\n title: Efficient training on CPU\n - local: perf_train_cpu_many\n title: Distributed CPU training\n- - local: perf_train_tpu\n- title: Training on TPUs\n - local: perf_train_tpu_tf\n title: Training on...
2023-12-18T18:44:09
golang/go
9f4dd09bf555632a39a01a4c171e713acb55fda9
952f7de3b403d2ffb45708ea5f69168bbdbfe1f0
cmd/compile: refactor variadac call desugaring In mid-Walk, we rewrite calls to variadic functions to use explicit slice literals; e.g., rewriting f(a,b,c) into f([]T{a,b,c}...). However, it would be useful to do that rewrite much earlier in the compiler, so that other compiler passes can be simplified. This CL refac...
[ { "path": "src/cmd/compile/internal/gc/walk.go", "patch": "@@ -1717,57 +1717,65 @@ func ascompatet(nl Nodes, nr *types.Type) []*Node {\n }\n \n // package all the arguments that match a ... T parameter into a []T.\n-func mkdotargslice(typ *types.Type, args []*Node, init *Nodes, ddd *Node) *Node {\n-\tesc :=...
2020-04-21T22:37:29
vuejs/vue
47487607fbb99339038cf84990ba341c25b5e20d
984393fed981c58ad79ed50424f023dcfa6829d0
fix: fix v-for component with undefined value fix #9181
[ { "path": "src/core/vdom/helpers/normalize-children.js", "patch": "@@ -16,6 +16,9 @@ import { isFalse, isTrue, isDef, isUndef, isPrimitive } from 'shared/util'\n // thing with Array.prototype.concat. It is guaranteed to be only 1-level deep\n // because functional components already normalize their own chil...
2018-12-11T21:51:03
ggml-org/llama.cpp
84d7b2fca11d1be118ce776f6d72a486c4883b74
40be51152d4dc2d47444a4ed378285139859895b
metal : fix memory leaks (#15962) ggml-ci
[ { "path": "ggml/src/ggml-metal/ggml-metal.m", "patch": "@@ -1361,7 +1361,6 @@ @implementation GGMLMetalClass\n GGML_METAL_ADD_KERNEL(GGML_METAL_KERNEL_TYPE_MUL_MM_Q5_1_F32, mul_mm_q5_1_f32, has_simdgroup_mm);\n GGML_METAL_ADD_KERNEL(GGML_METAL_KERNEL_TYPE_MUL_...
2025-09-13T09:45:04
huggingface/transformers
08a6e7a702d06826659eb7f0f6b9f37d33f31829
71d47f0ad498b7649f11d3a9cca3cd3585e4341f
Fix indentation error - semantic_segmentation.md (#28117) Update semantic_segmentation.md
[ { "path": "docs/source/en/tasks/semantic_segmentation.md", "patch": "@@ -276,8 +276,7 @@ You could also create and use your own dataset if you prefer to train with the [\n \"label\": sorted(label_paths)})\n dataset = dataset.cast_column(\"image\", Image())\n ...
2023-12-18T17:47:54
rust-lang/rust
23daa8c724cccc4ef75de60d271a50ef193abf0f
1b98d0ed13e4a8ff8d94e6aee0f11fab07d6139a
Remove some the spans pointing at the enum in the path and its generic args ``` error[E0109]: type arguments are not allowed on tuple variant `TSVariant` --> $DIR/enum-variant-generic-args.rs:54:29 | LL | Enum::<()>::TSVariant::<()>(()); | --------- ^^ type argument not allowed | ...
[ { "path": "compiler/rustc_hir_analysis/src/hir_ty_lowering/errors.rs", "patch": "@@ -1047,10 +1047,7 @@ impl<'tcx> dyn HirTyLowerer<'tcx> + '_ {\n };\n });\n \n- let segments: Vec<_> = match err_extend {\n- GenericsArgsErrExtend::DefVariant(segments) => segments.iter()....
2025-02-11T23:47:56
nodejs/node
ad664eae7d7a222ae49f97cd5344f3b6be2b4d7b
0f325aaaeb3f97024738114e7c11def8a179f6f8
test: mitigate RegEx exceeding 80 chars Format commit wrapping lines containing RegEx and exceeding 80 chars. PR-URL: https://github.com/nodejs/node/pull/14607 Fixes: https://github.com/nodejs/node/issues/14586 Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Vs...
[ { "path": "test/addons-napi/test_properties/test.js", "patch": "@@ -1,7 +1,8 @@\n 'use strict';\n const common = require('../../common');\n const assert = require('assert');\n-const readonlyErrorRE = /^TypeError: Cannot assign to read only property '.*' of object '#<Object>'$/;\n+const readonlyErrorRE =\n+ ...
2017-08-03T14:24:36
golang/go
952f7de3b403d2ffb45708ea5f69168bbdbfe1f0
f049d911e93b84577577e73108605627ed522409
testing: make TempDir work for subtests ioutil.TempDir doesn't like path separators in its pattern. Modify (*common).TempDir to replace path separators with underscores before using the test name as a pattern for ioutil.TempDir. Fixes #38465. Change-Id: I9e8ae48b99648b2bf9f561762e845165aff01972 Reviewed-on: https://...
[ { "path": "src/testing/testing.go", "patch": "@@ -806,7 +806,12 @@ func (c *common) Cleanup(f func()) {\n func (c *common) TempDir() string {\n \tc.tempDirOnce.Do(func() {\n \t\tc.Helper()\n-\t\tc.tempDir, c.tempDirErr = ioutil.TempDir(\"\", c.Name())\n+\n+\t\t// ioutil.TempDir doesn't like path separators ...
2020-04-23T01:04:33
vuejs/vue
87bad80f0cb9a30b95d9410120ff6e3e2022a723
d8285c57a613c42eddf2d4f2b75c1cea6aa4703a
fix(lifecycle): beforeUpdated should not be called if component is destroyed (#9171) fix #8076
[ { "path": "src/core/instance/lifecycle.js", "patch": "@@ -196,7 +196,7 @@ export function mountComponent (\n // component's mounted hook), which relies on vm._watcher being already defined\n new Watcher(vm, updateComponent, noop, {\n before () {\n- if (vm._isMounted) {\n+ if (vm._isMounted...
2018-12-11T16:31:27
ggml-org/llama.cpp
40be51152d4dc2d47444a4ed378285139859895b
4bf5549269d99bac936a65892da2312cc71b2421
ggml-zdnn: fix #15414, activate FP16 and BF16 acceleration and incorrect zTensor free (#15839)
[ { "path": "docs/build-s390x.md", "patch": "@@ -241,8 +241,8 @@ IBM VXE/VXE2 SIMD acceleration depends on the BLAS implementation. It is strongl\n | | VX/VXE/VXE2 | zDNN | Spyre |\n |------------|-------------|------|-------|\n | FP32 | ✅ | ✅ | ❓ |\n-| FP16 | ✅ ...
2025-09-12T18:39:52
huggingface/transformers
71d47f0ad498b7649f11d3a9cca3cd3585e4341f
0695b2421a3d1f728fa60591e3d2562a35c35fa2
More TF fixes (#28081) * More build_in_name_scope() * Make sure we set the save spec now we don't do it with dummies anymore * make fixup
[ { "path": "src/transformers/modeling_tf_utils.py", "patch": "@@ -1147,6 +1147,7 @@ def __init__(self, config, *inputs, **kwargs):\n self.config = config\n self.name_or_path = config.name_or_path\n self.generation_config = GenerationConfig.from_model_config(config) if self.can_generat...
2023-12-18T15:26:03
rust-lang/rust
1b98d0ed13e4a8ff8d94e6aee0f11fab07d6139a
06a24e98c612d72add1c3355282510513b153dcc
Explain that in paths generics can't be set on both the enum and the variant ``` error[E0109]: type arguments are not allowed on enum `Enum` and tuple variant `TSVariant` --> $DIR/enum-variant-generic-args.rs:54:12 | LL | Enum::<()>::TSVariant::<()>(()); | ---- ^^ --------- ^^ type argument not a...
[ { "path": "compiler/rustc_hir_analysis/src/collect.rs", "patch": "@@ -614,9 +614,10 @@ impl<'tcx> HirTyLowerer<'tcx> for ItemCtxt<'tcx> {\n if !infer_replacements.is_empty() {\n diag.multipart_suggestion(\n format!(\n- \"try replacing `_` wi...
2024-12-31T18:51:36
nodejs/node
680285c3b427a698fa254e51d5bf2fba59af2f2a
3f98b0f33ccce6b6c8ab97c810eceb3bf3b5bef5
doc: clarify the position argument for fs.read What happen to the file position after a read using a position null or integer was not clear and you can assume that the cursor of the file descriptor is updated even if position is an integer. PR-URL: https://github.com/nodejs/node/pull/14631 Fixes: https://github.com/h...
[ { "path": "doc/api/fs.md", "patch": "@@ -1640,7 +1640,9 @@ Read data from the file specified by `fd`.\n `length` is an integer specifying the number of bytes to read.\n \n `position` is an integer specifying where to begin reading from in the file.\n-If `position` is `null`, data will be read from the curre...
2017-08-03T17:37:09
golang/go
ed7888aea6021e25b0ea58bcad3f26da2b139432
9a93baf4d7d13d7d5c67388c93960d78abc8e11e
database/sql: de-flake TestTxCannotCommitAfterRollback Do not cancel rows during test. Only cancel the Tx. Correct the referenced issue number on the test. Fixes #38597 Change-Id: I0e8ba1bf2a8ba638d121c9c6938501fec1d5e961 Reviewed-on: https://go-review.googlesource.com/c/go/+/229478 Run-TryBot: Daniel Theophanes <ka...
[ { "path": "src/database/sql/sql.go", "patch": "@@ -2793,10 +2793,17 @@ func (rs *Rows) lasterrOrErrLocked(err error) error {\n \treturn err\n }\n \n+// bypassRowsAwaitDone is only used for testing.\n+// If true, it will not close the Rows automatically from the context.\n+var bypassRowsAwaitDone = false\n+\...
2020-04-22T19:45:44
vuejs/vue
d8285c57a613c42eddf2d4f2b75c1cea6aa4703a
8fccd8256902b6199ac124017f70d75abb45ed27
fix(weex): support data class type that is string (#9139) close #9124
[ { "path": "src/platforms/weex/runtime/modules/class.js", "patch": "@@ -44,6 +44,8 @@ function makeClassList (data: VNodeData): Array<string> {\n classList.push.apply(classList, dataClass)\n } else if (isObject(dataClass)) {\n classList.push.apply(classList, Object.keys(dataClass).filter(className ...
2018-12-11T16:29:49
huggingface/transformers
a0522de497fdd5565655b3eefbfaa91cbc2639f3
e6cb8e052a74313c2b2440c43df26303d379df71
fix ConversationalPipeline docstring (#28091)
[ { "path": "src/transformers/pipelines/conversational.py", "patch": "@@ -215,12 +215,12 @@ class ConversationalPipeline(Pipeline):\n >>> conversation = Conversation(\"I'm looking for a movie - what's your favourite one?\")\n >>> conversation = chatbot(conversation)\n >>> conversation.messages[-1]...
2023-12-18T15:08:37
ggml-org/llama.cpp
304ac5693d1e2124f83e0584bc5eea6311d3d3b4
6c88ad8fa741a2182a2dcf8c5353ae4b5c66e656
Vulkan iGPU device selection overhaul and PCI ID API support (#15947) * vulkan: implement ggml igpu device type, implement pci id support * fix compiler warning * prevent printf overflow warning
[ { "path": "ggml/src/ggml-vulkan/ggml-vulkan.cpp", "patch": "@@ -4497,7 +4497,7 @@ static void ggml_vk_instance_init() {\n new_driver.pNext = &new_id;\n devices[i].getProperties2(&new_props);\n \n- if (new_props.properties.deviceType == vk::PhysicalDeviceType::eDiscreteGpu)...
2025-09-12T11:24:21
rust-lang/rust
6ffe6dd826d737daf363c1251621b7da362a437d
8c61cd4df8434573190336b8f16169f3c2b22a7a
Check sig for errors before checking for unconstrained anonymous lifetime
[ { "path": "compiler/rustc_hir_analysis/src/hir_ty_lowering/mod.rs", "patch": "@@ -2557,27 +2557,29 @@ impl<'tcx> dyn HirTyLowerer<'tcx> + '_ {\n // reject function types that violate cmse ABI requirements\n cmse::validate_cmse_abi(self.tcx(), self.dcx(), hir_id, abi, bare_fn_ty);\n \n- ...
2025-02-11T22:59:50
vuejs/vue
8fccd8256902b6199ac124017f70d75abb45ed27
3d449376d557c4533a9664f95df3a168ecee9bfa
chore: fix tag name in compiler/parser/index.js (#9165)
[ { "path": "src/compiler/parser/index.js", "patch": "@@ -340,7 +340,7 @@ function processKey (el) {\n const parent = el.parent\n if (iterator && iterator === exp && parent && parent.tag === 'transition-group') {\n warn(\n- `Do not use v-for index as key on <transtion-grou...
2018-12-11T16:28:40
nodejs/node
e658d32974340e7b913b9090bcff15030e062da6
f3afe29e19e4426fc3fc1f6efb862cb65c9b0ee6
src: remove unused Connection::ClearError() PR-URL: https://github.com/nodejs/node/pull/14514 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Jason Ginchereau <jasongin@microsoft.com> Reviewed-By: Refael Ackermann...
[ { "path": "src/node_crypto.cc", "patch": "@@ -2699,18 +2699,6 @@ int Connection::HandleSSLError(const char* func,\n }\n \n \n-void Connection::ClearError() {\n-#ifndef NDEBUG\n- HandleScope scope(ssl_env()->isolate());\n-\n- // We should clear the error in JS-land\n- Local<String> error_key = ssl_env()->...
2017-07-27T15:33:35
golang/go
0ee4b13830572ad66cdcc045d1e4ae1e15a87ebb
3e342e8719b8d84a976c05df0c03d9084c5f39e6
net/http/pprof: allow "seconds" parameters to most profiles golang.org/cl/147598 added the support for delta computation for mutex and block profiles. In fact, this delta computation makes sense for other types of profiles. For example, /debug/pprof/allocs?seconds=x will provide how much allocation was made during th...
[ { "path": "src/net/http/pprof/pprof.go", "patch": "@@ -334,8 +334,12 @@ func collectProfile(p *pprof.Profile) (*profile.Profile, error) {\n }\n \n var profileSupportsDelta = map[handler]bool{\n-\t\"block\": true,\n-\t\"mutex\": true,\n+\t\"allocs\": true,\n+\t\"block\": true,\n+\t\"goroutine\":...
2020-04-22T20:24:30
huggingface/transformers
e6dcf8abd6f65bb4b6dfc1831b20d9ba49ce00e2
f85a1e82c16232d9a2891148d1d4a1c9247ca890
Fix the deprecation warning of _torch_pytree._register_pytree_node (#27803)
[ { "path": "src/transformers/utils/generic.py", "patch": "@@ -306,7 +306,7 @@ def __init_subclass__(cls) -> None:\n `static_graph=True` with modules that output `ModelOutput` subclasses.\n \"\"\"\n if is_torch_available():\n- _torch_pytree._register_pytree_node(\n+ ...
2023-12-17T10:13:42
ggml-org/llama.cpp
704d90c987cdf00751567b2088c4e54742aa2d3f
360d6533db39e11577afe9b0aece20c6b5ddaf1f
Revert "sycl: add usage of enqueue_functions extension (#14244)" (#15910) * Revert "sycl: add usage of enqueue_functions extension (#14244)" This reverts commit 8308f98c7fb778e54bf75538f5234d8bd20915e9. * fix missed revert code, format the code
[ { "path": "ggml/src/ggml-sycl/binbcast.cpp", "patch": "@@ -225,9 +225,9 @@ struct bin_bcast_sycl {\n dpct::has_capability_or_fail(stream->get_device(),\n {sycl::aspect::fp16});\n \n- sycl_parallel_for(\n- ...
2025-09-12T01:15:12
vuejs/vue
3d449376d557c4533a9664f95df3a168ecee9bfa
d780dd2e2adcf71f40c086055a659a9a2b4a8282
fix(v-model): properly handle multiline v-model expressions (#9184) fix #9183
[ { "path": "src/compiler/directives/model.js", "patch": "@@ -25,7 +25,7 @@ export function genComponentModel (\n \n el.model = {\n value: `(${value})`,\n- expression: `\"${value}\"`,\n+ expression: JSON.stringify(value),\n callback: `function (${baseValueExpression}) {${assignment}}`\n }\n ...
2018-12-11T15:27:43
nodejs/node
41a0dfcd97ade7b14625986df6c96876c5ec9071
daf5596c279bca8a461b8f573e9bdfb93acb539d
src: properly manage timer in cares ChannelWrap This fixes a bug introduced in 727b2911eca9f00cb7fa6a5f4ee8a73c7e9c94f0 where code managing the `uv_timer_t` for a `ChannelWrap` instance was left unchanged, when it should have changed the lifetime of the handle to being tied to the `ChannelWrap` instance’s lifetime. F...
[ { "path": "src/cares_wrap.cc", "patch": "@@ -136,8 +136,9 @@ class ChannelWrap : public AsyncWrap {\n \n void Setup();\n void EnsureServers();\n+ void CleanupTimer();\n \n- inline uv_timer_t* timer_handle() { return &timer_handle_; }\n+ inline uv_timer_t* timer_handle() { return timer_handle_; }\n ...
2017-08-04T18:55:15
golang/go
ab7a65f2837b693f015f47572b6bf2c8f1062288
81df5e69fc189af44459a4c6520b1c99d0210a92
cmd/compile: clean up codegen for branch-on-carry on s390x This CL optimizes code that uses a carry from a function such as bits.Add64 as the condition in an if statement. For example: x, c := bits.Add64(a, b, 0) if c != 0 { panic("overflow") } Rather than converting the carry into a 0 or a 1 val...
[ { "path": "src/cmd/compile/internal/ssa/gen/S390X.rules", "patch": "@@ -1218,6 +1218,20 @@\n (SUBE x y (Select1 (SUBC (MOVDconst [0]) (NEG (Select0 (SUBE (MOVDconst [0]) (MOVDconst [0]) c))))))\n -> (SUBE x y c)\n \n+// branch on carry\n+(C(G|LG)IJ {s390x.Equal} (Select0 (ADDE (MOVDconst [0]) (MOV...
2020-02-17T11:43:33
huggingface/transformers
f85a1e82c16232d9a2891148d1d4a1c9247ca890
238d2e3c44366aba9dc5c770c95475765a6725cb
4D `attention_mask` support (#27539) * edits to _prepare_4d_causal_attention_mask() * initial tests for 4d mask * attention_mask_for_sdpa support * added test for inner model hidden * added autotest decorators * test mask dtype to torch.int64 * torch.testing.assert_close Co-authored-by: Arthur <48...
[ { "path": "src/transformers/modeling_attn_mask_utils.py", "patch": "@@ -302,10 +302,22 @@ def _prepare_4d_causal_attention_mask(\n key_value_length = input_shape[-1] + past_key_values_length\n \n # 4d mask is passed through the layers\n- if attention_mask is not None:\n+ if attention_mask is n...
2023-12-17T10:08:04
rust-lang/rust
8c24c0a023456c3d9e58f06a3abf0a83d335c6f6
8c61cd4df8434573190336b8f16169f3c2b22a7a
Remove the common prelude module This fixes the issues described in https://github.com/rust-lang/rust/issues/136102. Primarily, this resolves some issues with how the documentation for the prelude is generated: - It avoids showing "unstable" for macros in the prelude that are actually stable. - Avoids duplication o...
[ { "path": "library/core/src/prelude/mod.rs", "patch": "@@ -9,16 +9,7 @@\n \n #![stable(feature = \"core_prelude\", since = \"1.4.0\")]\n \n-mod common;\n-\n-/// The first version of the prelude of The Rust Standard Library.\n-///\n-/// See the [module-level documentation](self) for more.\n-#[stable(feature ...
2025-02-11T20:03:22
vuejs/vue
d780dd2e2adcf71f40c086055a659a9a2b4a8282
77d406b2a49b286fe6587305fabcf0796db19ab1
fix(types): accept primatives and falsy values in createElement children (#9154) fixes #8498
[ { "path": "types/test/options-test.ts", "patch": "@@ -281,6 +281,12 @@ Vue.component('provide-function', {\n })\n })\n \n+Vue.component('component-with-slot', {\n+ render (h): VNode {\n+ return h('div', this.$slots.default)\n+ }\n+})\n+\n Vue.component('component-with-scoped-slot', {\n render (h) {...
2018-12-10T23:36:41
huggingface/transformers
238d2e3c44366aba9dc5c770c95475765a6725cb
ebfdb9ca62205279d5019ef1403877461b3b2da4
fix resuming from ckpt when using FSDP with FULL_STATE_DICT (#27891) * fix resuming from ckpt when suing FSDP with FULL_STATE_DICT * update tests * fix tests
[ { "path": "src/transformers/trainer.py", "patch": "@@ -2033,10 +2033,15 @@ def _load_from_checkpoint(self, resume_from_checkpoint, model=None):\n weights_index_file = os.path.join(resume_from_checkpoint, WEIGHTS_INDEX_NAME)\n safe_weights_file = os.path.join(resume_from_checkpoint, SAFE_WEIG...
2023-12-16T14:11:43
nodejs/node
e88908d8684d4108a3079a6b6af0e5f4ce1b09b9
5fd2f03b16bfd6730fe82dc3217f1d05131b9615
build: enable C++ linting for src/*/* Fixes: https://github.com/nodejs/node/issues/14490 PR-URL: https://github.com/nodejs/node/pull/14497 Reviewed-By: Timothy Gu <timothygu99@gmail.com> Reviewed-By: Khaidi Chu <i@2333.moe> Reviewed-By: Refael Ackermann <refack@gmail.com>
[ { "path": "Makefile", "patch": "@@ -891,11 +891,16 @@ CPPLINT_EXCLUDE += src/queue.h\n CPPLINT_EXCLUDE += src/tree.h\n CPPLINT_EXCLUDE += $(wildcard test/addons/??_*/*.cc test/addons/??_*/*.h)\n CPPLINT_EXCLUDE += $(wildcard test/addons-napi/??_*/*.cc test/addons-napi/??_*/*.h)\n+# These files were copied m...
2017-07-26T08:27:18
golang/go
00723603eb1e183e010371fc5aa76a3d8efda8d1
25992d025f01d27bd7e38d45daa95e420d56ece5
[dev.link] cmd/link/internal/loader: fix AttrSubSymbol The code that runs as a part of loadlibfull converts the linker's outer/sub state and sets the sym.Symbol AttrSubSymbol if a symbol has both A) an outer sym, and B) is listed as a sub-symbol by some other symbol. Make sure that we have the same logic in the origi...
[ { "path": "src/cmd/link/internal/loader/loader.go", "patch": "@@ -950,10 +950,30 @@ func (l *Loader) SetAttrReadOnly(i Sym, v bool) {\n // become regular linker symbols and symbols go on the Sub list of\n // their section) and for constructing the global offset table when\n // internally linking a dynamic e...
2020-04-22T17:40:22
vuejs/vue
e06d2af276fc8d626a3b048f4d138a243aa690a4
628c1b7f5b298e13975d880c73e8fc2893628c2e
fix(types): avoid `this` in VueConstructor signature (#9173) https://github.com/vuejs/vue-class-component/issues/294#issuecomment-445526936
[ { "path": "types/test/tsconfig.json", "patch": "@@ -1,6 +1,7 @@\n {\n \"compilerOptions\": {\n \"target\": \"es5\",\n+ \"experimentalDecorators\": true,\n \"lib\": [\n \"dom\",\n \"es2015\"", "additions": 1, "deletions": 0, "language": "JSON" }, { "path": "types/...
2018-12-10T16:53:57
huggingface/transformers
1faeff85ce1b7278f83dd3f131ec24461c3ad752
ffa04def0e6765cdf1d9518546506325a72e2bbe
Fix Vip-llava docs (#28085) * Update vipllava.md * Update modeling_vipllava.py
[ { "path": "docs/source/en/model_doc/vipllava.md", "patch": "@@ -37,13 +37,13 @@ Tips:\n - For better results, we recommend users to prompt the model with the correct prompt format: \n \n ```bash\n-\"USER: <image>\\n<prompt>ASSISTANT:\"\n+A chat between a curious human and an artificial intelligence assistan...
2023-12-15T19:16:47
golang/go
141b11d5a12f8bdf4825227db70e2a4309906ae9
12579009b3f7eb6d137863d5ca87e295c9d88641
crypto/x509: disallow setting MaxPathLen without IsCA Fixes #38216 Change-Id: I3222abe2153abb4cbfa65a4825c153ce128f56a0 Reviewed-on: https://go-review.googlesource.com/c/go/+/228777 TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Filippo Valsorda <filippo@golang.org>
[ { "path": "src/crypto/x509/x509.go", "patch": "@@ -2100,6 +2100,10 @@ func CreateCertificate(rand io.Reader, template, parent *Certificate, pub, priv\n \t\treturn nil, errors.New(\"x509: no SerialNumber given\")\n \t}\n \n+\tif template.BasicConstraintsValid && !template.IsCA && (template.MaxPathLen != 0 ||...
2020-04-17T14:23:07
ggml-org/llama.cpp
0e6ff0046f4a2983b2c77950aa75960fe4b4f0e2
df082f56309073ecf885eceaa21b86e8a487e61b
CUDA: larger SRAM reads for tile FA, AMD FP16 dot (#15927) * CUDA: larger SRAM reads for tile FA, AMD FP16 dot * fix logic for availability of v_dot2_f32_f16
[ { "path": "ggml/src/ggml-cuda/common.cuh", "patch": "@@ -555,7 +555,7 @@ static __device__ __forceinline__ void ggml_cuda_mad(float & acc, const float2 v\n }\n \n static __device__ __forceinline__ void ggml_cuda_mad(float & acc, const half2 v, const half2 u) {\n-#if defined(GGML_USE_HIP) && defined(GCN)\n+#...
2025-09-11T19:19:58
nodejs/node
17547c4762eac97d4aea1b25534505551623c0d6
365b2e342406492597c762edb9a822341f01d851
inspector: fix console with inspector disabled PR-URL: https://github.com/nodejs/node/pull/14489 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Refael Ackermann <refack@gmail.com>
[ { "path": "lib/internal/bootstrap_node.js", "patch": "@@ -287,6 +287,9 @@\n function installInspectorConsole(globalConsole) {\n const wrappedConsole = NativeModule.require('console');\n const inspector = process.binding('inspector');\n+ if (!inspector.consoleCall) {\n+ return wrappedConsol...
2017-08-02T04:19:42
vuejs/vue
0d4b35f55975946cb0eb4f7f5f35efe3d078473e
5d721a42b140865e50a78445fe21c5f270bde703
fix(vdom): remove unnecessary sameVnode condition fix #9168
[ { "path": "src/core/vdom/patch.js", "patch": "@@ -32,20 +32,13 @@ export const emptyNode = new VNode('', {}, [])\n \n const hooks = ['create', 'activate', 'update', 'remove', 'destroy']\n \n-function childrenIgnored (vnode) {\n- return vnode && vnode.data && vnode.data.domProps && (\n- vnode.data.domPro...
2018-12-09T21:21:22
rust-lang/rust
d695e33c8304241a7feb6a81707e4ee7bc371e09
da4c09937559e8d93cc6499ec8510a3571449061
manual: Fix URLs to rustdoc pages Now that the manual lives at /manual/, we need to use absolute URLs to link to rustdoc content.
[ { "path": "src/tools/rust-analyzer/xtask/src/codegen.rs", "patch": "@@ -117,7 +117,7 @@ impl fmt::Display for Location {\n let path = self.file.strip_prefix(project_root()).unwrap().display().to_string();\n let path = path.replace('\\\\', \"/\");\n let name = self.file.file_name().un...
2025-02-11T20:10:32
huggingface/transformers
ffa04def0e6765cdf1d9518546506325a72e2bbe
29a1c1b472674030d61a6753cf1e3772f5d7131f
Fix wrong examples in llava usage. (#28020) * Fix wrong examples in llava usage. * Update modeling_llava.py
[ { "path": "src/transformers/models/llava/modeling_llava.py", "patch": "@@ -370,12 +370,12 @@ def forward(\n >>> url = \"https://www.ilankelman.org/stopsigns/australia.jpg\"\n >>> image = Image.open(requests.get(url, stream=True).raw)\n \n- >>> inputs = processor(text=text, images=imag...
2023-12-15T17:09:50
ggml-org/llama.cpp
df082f56309073ecf885eceaa21b86e8a487e61b
24a6734daf6932ff29ba8c1ff0245c51d76f783e
nitpick : correct MB to MiB (#15934) MB was incorrectly used for 1024 x 1024 bytes instead of MiB
[ { "path": "src/llama-quant.cpp", "patch": "@@ -920,7 +920,7 @@ static void llama_model_quantize_impl(const std::string & fname_inp, const std::\n new_type = tensor->type;\n new_data = tensor->data;\n new_size = ggml_nbytes(tensor);\n- LLAMA_LOG_INFO(\"size = %8...
2025-09-11T17:12:34
vuejs/vue
5d721a42b140865e50a78445fe21c5f270bde703
780dac561b9cd6c3cec28f154f76e7d28352ebf3
revert: fix(sfc): avoid deindent when pad option is specified (#7647) This reverts commit 9d2f9a034f9c40d5ba6d8b1e131b1bfb675dc1cf.
[ { "path": "src/sfc/parser.js", "patch": "@@ -83,15 +83,11 @@ export function parseComponent (\n function end (tag: string, start: number) {\n if (depth === 1 && currentBlock) {\n currentBlock.end = start\n- let text = content.slice(currentBlock.start, currentBlock.end)\n+ let text = de...
2018-12-09T20:52:17
nodejs/node
3b0ef0bf5361f2c3d91a8de03d86b5ae57a458d6
34d1b1144e1af8382dad71c28c8d956ebf709801
test: fix test-readline-position w/o ICU PR-URL: https://github.com/nodejs/node/pull/14489 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Refael Ackermann <refack@gmail.com>
[ { "path": "test/parallel/test-readline-position.js", "patch": "@@ -14,16 +14,26 @@ const ctrlU = { ctrl: true, name: 'u' };\n prompt: ''\n });\n \n- for (const [cursor, string] of [\n+ const tests = [\n [1, 'a'],\n [2, 'ab'],\n- [2, '丁'],\n- [0, '\\u0301'], // COMBINING ACUTE ACCENT\...
2017-07-26T01:04:45
golang/go
12579009b3f7eb6d137863d5ca87e295c9d88641
0a00926481faaf40189d1d78e738584cb1735f40
database/sql: count connections expired in foreground with MaxLifetimeClosed Previously the connection pool would only count connections expired in the background connectionCleaner goroutine towards the MaxLifetimeClosed stat. This change increments the stat correctly when checking for expiry in when acquiring and re...
[ { "path": "src/database/sql/sql.go", "patch": "@@ -432,7 +432,7 @@ type DB struct {\n \twaitCount int64 // Total number of connections waited for.\n \tmaxIdleClosed int64 // Total number of connections closed due to idle count.\n \tmaxIdleTimeClosed int64 // Total number of connections closed du...
2020-04-22T15:53:52