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 |
|---|---|---|---|---|---|
golang/go | d49fecc474d04a04d1d22851c06099338abd4391 | 5fac45a320561b45b52cdcae933882a70699a21d | std,cmd: update x/net and github.com/google/pprof
Re-vendor x/net/dns/dnsmessage, x/net/route, and github.com/google/pprof
(commit 1ebb73c). The updated dependencies fix the string(int)
conversions, in preparation for the vet warning.
Updates #32479.
Change-Id: I023a4e30415d060f8b403b9943fe911f6d19f2e9
Reviewed-on: ... | [
{
"path": "src/cmd/go.mod",
"patch": "@@ -3,7 +3,7 @@ module cmd\n go 1.14\n \n require (\n-\tgithub.com/google/pprof v0.0.0-20200212024743-f11f1df84d12\n+\tgithub.com/google/pprof v0.0.0-20200229191704-1ebb73c60ed3\n \tgolang.org/x/arch v0.0.0-20191126211547-368ea8f32fff\n \tgolang.org/x/crypto v0.0.0-2020... | 2020-02-27T07:42:28 |
vuejs/vue | 0ccefff794c5fe73b80b9faf5ae5bfd8ec1a500f | dc00590bc56fc9b0afd50a11425486fb771402fc | support v-for on scoped slots (fix #5615) | [
{
"path": "flow/component.js",
"patch": "@@ -106,7 +106,7 @@ declare interface Component {\n // check custom keyCode\n _k: (eventKeyCode: number, key: string, builtInAlias: number | Array<number> | void) => boolean;\n // resolve scoped slots\n- _u: (scopedSlots: Array<[string, Function]>) => { [key: ... | 2017-05-09T15:00:15 |
ggml-org/llama.cpp | 27208bf657cfe7262791df473927225e48efe482 | 63a7bb3c7e1c6b0a92d03b0a594d3cd501d6ed3e | CUDA: add bf16 and f32 support to cublas_mul_mat_batched (#14361)
* CUDA: add bf16 and f32 support to cublas_mul_mat_batched
* Review: add type traits and make function more generic
* Review: make check more explicit, add back comments, and fix formatting
* Review: fix formatting, remove useless type conversion, fi... | [
{
"path": "ggml/src/ggml-cuda/convert.cu",
"patch": "@@ -728,3 +728,25 @@ to_fp16_nc_cuda_t ggml_get_to_fp16_nc_cuda(ggml_type type) {\n return nullptr;\n }\n }\n+\n+to_bf16_nc_cuda_t ggml_get_to_bf16_nc_cuda(ggml_type type) {\n+ switch (type) {\n+ case GGML_TYPE_F32:\n+ ... | 2025-06-28T17:30:53 |
rust-lang/rust | f6c1c5718a6ad0c5a929dc36f597477350fa79ef | a5db378dc14a40dd1580c27fb8362156446382c3 | platform-support docs: fix x87 errata footnotes | [
{
"path": "src/doc/rustc/src/platform-support.md",
"patch": "@@ -309,13 +309,13 @@ target | std | host | notes\n [`hexagon-unknown-none-elf`](platform-support/hexagon-unknown-none-elf.md)| * | | Bare Hexagon (v60+, HVX)\n [`i386-apple-ios`](platform-support/apple-ios.md) | ✓ | | 32-bit x86 iOS [^x86_32-flo... | 2025-01-27T17:13:58 |
golang/go | b559a173f9f187e1185f8de00a9cc1f5b05aceef | 43c6ada84c6ef47e3b61646d2f2e7f6b7264929d | internal/xcoff: fix wrong bit masking comparisons
I do not know much about xcoff, but this was probably the intended
behavior. (The comparison is tautologically false, as is.)
Also note: does any other code even depend on the changed code existing?
Maybe it should just be removed, as I did not find any uses of fields... | [
{
"path": "src/internal/xcoff/file.go",
"patch": "@@ -412,10 +412,10 @@ func NewFile(r io.ReaderAt) (*File, error) {\n \t\t\t\tsect.Relocs[i].Type = rel.Rtype\n \t\t\t\tsect.Relocs[i].Length = rel.Rsize&0x3F + 1\n \n-\t\t\t\tif rel.Rsize&0x80 == 1 {\n+\t\t\t\tif rel.Rsize&0x80 != 0 {\n \t\t\t\t\tsect.Relocs... | 2020-03-07T17:23:20 |
huggingface/transformers | 7bde5d634f535206e0bf4e279b32d65d1f7568f7 | e2d6d5ce57373a453e8c6fb4293cf08c17b061e1 | [`TFxxxxForSequenceClassifciation`] Fix the eager mode after #25085 (#25751)
* TODOS
* Switch .shape -> shape_list
---------
Co-authored-by: Matt <rocketknight1@gmail.com> | [
{
"path": "src/transformers/models/gptj/modeling_tf_gptj.py",
"patch": "@@ -870,7 +870,11 @@ def call(\n tf.argmax(tf.cast(tf.math.equal(input_ids, self.config.pad_token_id), input_ids.dtype), axis=-1)\n - 1\n )\n- sequence_lengths = tf.... | 2023-10-24T12:33:05 |
vuejs/vue | f2bd882073919add805bf359ecdf632faf9abfcd | 5d965d5b3bbe0e76cdb97e41e01a704322253e09 | Fix: nested child elements can not be updated correctly, fix #5618 (#5627)
* fix:nested elements can not be updated correctly
* add tests
* ensure nestedIndex is always passed down | [
{
"path": "src/core/instance/render-helpers/render-list.js",
"patch": "@@ -1,6 +1,6 @@\n /* @flow */\n \n-import { isObject } from 'core/util/index'\n+import { isObject, isDef } from 'core/util/index'\n \n /**\n * Runtime helper for rendering v-for lists.\n@@ -28,5 +28,8 @@ export function renderList (\n ... | 2017-05-09T15:21:49 |
ggml-org/llama.cpp | b25e92774e2fa4ee3820e458d5cf43f40190f8d2 | 6609507a910aa7437aaa53fd999447de3947d998 | fix async_mode bug (#14432) | [
{
"path": "ggml/src/ggml-cann/common.h",
"patch": "@@ -359,7 +359,7 @@ struct ggml_backend_cann_context {\n ggml_cann_set_device(device);\n description = aclrtGetSocName();\n \n- bool async_mode = parse_bool(get_env(\"GGML_CANN_ASYNC_MODE\").value_or(\"\"));\n+ async_mode = par... | 2025-06-28T09:35:41 |
golang/go | 43c6ada84c6ef47e3b61646d2f2e7f6b7264929d | 7dbf12573f793df84802f0a65b03e8e6d4186a5c | errors: fix typo in As documentation
Change-Id: Ia26b4457aa0780171a636df93f8d210de0278ec5
GitHub-Last-Rev: 577a6fec336010cb56a547bf2d6304fd3e0cb257
GitHub-Pull-Request: golang/go#37760
Reviewed-on: https://go-review.googlesource.com/c/go/+/222621
Reviewed-by: Ian Lance Taylor <iant@golang.org> | [
{
"path": "src/errors/wrap.go",
"patch": "@@ -70,7 +70,7 @@ func Is(err, target error) bool {\n // setting target.\n //\n // An error type might provide an As method so it can be treated as if it were a\n-// a different error type.\n+// different error type.\n //\n // As panics if target is not a non-nil po... | 2020-03-09T16:57:08 |
vuejs/vue | 1c40e327062452fc9c934e728b70014810653b6a | ca02043194c7f464e65559347bc6ee2539554762 | Fix use mixin API feat continuous operation (#5610)
* Update use.js
fix:use feat continuous operation
* Update mixin.js
fix:mixin feat continuous operation | [
{
"path": "src/core/global-api/mixin.js",
"patch": "@@ -5,5 +5,6 @@ import { mergeOptions } from '../util/index'\n export function initMixin (Vue: GlobalAPI) {\n Vue.mixin = function (mixin: Object) {\n this.options = mergeOptions(this.options, mixin)\n+ return this\n }\n }",
"additions": 1,
... | 2017-05-09T12:23:38 |
ggml-org/llama.cpp | 6609507a910aa7437aaa53fd999447de3947d998 | ceb1bf5a34d5e66e28b23dcc7a3cd83fe1e27481 | ci : fix windows build and release (#14431) | [
{
"path": ".github/workflows/build.yml",
"patch": "@@ -664,7 +664,7 @@ jobs:\n ./build-xcframework.sh\n \n windows-msys2:\n- runs-on: windows-latest\n+ runs-on: windows-2025\n \n strategy:\n fail-fast: false\n@@ -714,7 +714,7 @@ jobs:\n cmake --build build --config ${... | 2025-06-28T07:57:07 |
huggingface/transformers | 576e2823a397942421e1724e79f51a12122ef49e | fc142bd775ae4639f80a8b0085a5df33bd2853ce | Add descriptive docstring to WhisperTimeStampLogitsProcessor (#25642)
* adding in logit examples for Whisper processor
* adding in updated logits processor for Whisper
* adding in cleaned version of logits processor for Whisper
* adding docstrings for whisper processor
* making sure the formatting is corr... | [
{
"path": "src/transformers/generation/logits_process.py",
"patch": "@@ -1457,8 +1457,15 @@ def __call__(self, input_ids: torch.LongTensor, scores: torch.FloatTensor) -> to\n \n class WhisperTimeStampLogitsProcessor(LogitsProcessor):\n r\"\"\"\n- Whisper specific Processor. This processor can be used... | 2023-10-24T10:02:06 |
nodejs/node | 386f53f31d61732834bcab59e60c3bb8fdd1c35f | d13a65ad68c429884434cdcd94c52b79a6d69717 | doc: fixes a typo in the async_hooks documentation
> Generally it will correspond the name of the resource's constructor.
should read "Generally, it will correspond to the name..."
PR-URL: https://github.com/nodejs/node/pull/13666
Fixes: https://github.com/nodejs/node/issues/13663
Reviewed-By: Refael Ackermann <refac... | [
{
"path": "doc/api/async_hooks.md",
"patch": "@@ -192,8 +192,8 @@ Every new resource is assigned a unique ID.\n ###### `type`\n \n The `type` is a string that represents the type of resource that caused\n-`init` to be called. Generally it will correspond the name of the resource's\n-constructor.\n+`init` to... | 2017-06-13T22:54:41 |
golang/go | b5c66de0892d0e9f3f59126eeebc31070e79143b | a7f918c1a596d691da5839b3b1f29dd9c674bfb8 | cmd/compile: make ssa.Edge a stringer
To aid in debugging.
Change-Id: I2330499b5f2ecbeb02f7e3bc0b17ded755d5c685
Reviewed-on: https://go-review.googlesource.com/c/go/+/222617
Run-TryBot: Josh Bleecher Snyder <josharian@gmail.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Keith Randall <khr@golang.org> | [
{
"path": "src/cmd/compile/internal/ssa/block.go",
"patch": "@@ -101,6 +101,9 @@ func (e Edge) Block() *Block {\n func (e Edge) Index() int {\n \treturn e.i\n }\n+func (e Edge) String() string {\n+\treturn fmt.Sprintf(\"{%v,%d}\", e.b, e.i)\n+}\n \n // kind controls successors\n // ---... | 2020-03-04T15:24:56 |
huggingface/transformers | fc142bd775ae4639f80a8b0085a5df33bd2853ce | cc7803c0a6194ce795ab903979dde9216c82f5bc | Add `default_to_square_for_size` to `CLIPImageProcessor` (#26965)
* fix
* fix
* fix
* fix
* fix
---------
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": "src/transformers/models/bit/image_processing_bit.py",
"patch": "@@ -84,6 +84,10 @@ class BitImageProcessor(BaseImageProcessor):\n Can be overridden by the `image_std` parameter in the `preprocess` method.\n do_convert_rgb (`bool`, *optional*, defaults to `True`):\n ... | 2023-10-24T09:08:17 |
ggml-org/llama.cpp | ceb1bf5a34d5e66e28b23dcc7a3cd83fe1e27481 | 72babea5dea56c8a8e8420ccf731b12a5cf37854 | vulkan: Fix GGML_VULKAN_SHADER_DEBUG_INFO (#14427)
This setting needs to be passed through to vulkan-shaders-gen | [
{
"path": "ggml/src/ggml-vulkan/CMakeLists.txt",
"patch": "@@ -99,6 +99,7 @@ if (Vulkan_FOUND)\n \n if (GGML_VULKAN_SHADER_DEBUG_INFO)\n add_compile_definitions(GGML_VULKAN_SHADER_DEBUG_INFO)\n+ list(APPEND VULKAN_SHADER_GEN_CMAKE_ARGS -DGGML_VULKAN_SHADER_DEBUG_INFO=ON)\n endif()\n \... | 2025-06-28T03:35:30 |
vuejs/vue | d52a4991bd6cd28d57c42c97446d27cbb36416e5 | 9ac4c4188d03fec51337b257a95954f0d3fa30a0 | Prevent unecessary input trigger with v-model (#5589)
* Prevent unecessary input trigger with v-model
Fix #5586
* Add test for compositionend on v-model + @input
* [skip ci] Rename tests for compositionend | [
{
"path": "src/platforms/web/runtime/directives/model.js",
"patch": "@@ -119,6 +119,8 @@ function onCompositionStart (e) {\n }\n \n function onCompositionEnd (e) {\n+ // prevent triggering an input event for no reason\n+ if (!e.target.composing) return\n e.target.composing = false\n trigger(e.target, ... | 2017-05-07T13:46:33 |
huggingface/transformers | ede051f1b85a33d2e0576b48042a58dc5332ed70 | 32f799db0d625ec5cf82624ff2604c5a891ebf61 | Fix key dtype in GPTJ and CodeGen (#26836)
* fix key dtype in gptj and codegen
* delay the key cast to a later point
* fix | [
{
"path": "src/transformers/models/codegen/modeling_codegen.py",
"patch": "@@ -224,7 +224,9 @@ def forward(\n value = torch.cat((past_value, value), dim=-2)\n \n if use_cache is True:\n- present = (key, value)\n+ # Note that this cast is quite ugly, but is not imple... | 2023-10-24T07:55:14 |
vuejs/vue | 9ac4c4188d03fec51337b257a95954f0d3fa30a0 | 5c0c8c886520133e99d837a7a7161ced233f5120 | fix #5591: keep ssr template interpolation whitespace-insensitive (#5597) | [
{
"path": "src/server/template-renderer/parse-template.js",
"patch": "@@ -2,7 +2,7 @@\n \n const compile = require('lodash.template')\n const compileOptions = {\n- escape: /{{[^{]([\\s\\S]+?)[^}]}}/g,\n+ escape: /{{([^{][\\s\\S]+?[^}])}}/g,\n interpolate: /{{{([\\s\\S]+?)}}}/g\n }\n ",
"additions": ... | 2017-05-07T13:43:02 |
golang/go | a7f918c1a596d691da5839b3b1f29dd9c674bfb8 | ae3f98c51b2790f6f3a600ff465255417e3d865d | cmd/cgo: avoid extra newline in doc comment of exported function
Fixes #37722
Change-Id: Ie9154f9d91824558a8ac34ad2fb5bc4e02c64a4b
GitHub-Last-Rev: 9fbe1c1d802287ff3c3ccee62e4e74d802196ffb
GitHub-Pull-Request: golang/go#37723
Reviewed-on: https://go-review.googlesource.com/c/go/+/222419
Run-TryBot: Emmanuel Odeke <em... | [
{
"path": "src/cmd/cgo/out.go",
"patch": "@@ -921,8 +921,11 @@ func (p *Package) writeExports(fgo2, fm, fgcc, fgcch io.Writer) {\n \n \t\tif len(exp.Doc) > 0 {\n \t\t\tfmt.Fprintf(fgcch, \"\\n%s\", exp.Doc)\n+\t\t\tif !strings.HasSuffix(exp.Doc, \"\\n\") {\n+\t\t\t\tfmt.Fprint(fgcch, \"\\n\")\n+\t\t\t}\n \t... | 2020-03-07T05:44:31 |
nodejs/node | d13a65ad68c429884434cdcd94c52b79a6d69717 | de4a749788aa88b6f23f50eccb7a6752f6bb59b7 | doc: update minimum g++ version to 4.9.4
The 4.8.x releases don't fully support C++11. Update the prerequisites
for node.js 8 so that we won't have to work around compiler bugs in the
future.
To be decided if we should also update the minimum clang version.
I believe clang 3.4.2 properly supports C++11 but am not 10... | [
{
"path": "BUILDING.md",
"patch": "@@ -65,7 +65,7 @@ Depending on host platform, the selection of toolchains may vary.\n \n #### Unix\n \n-* GCC 4.8.5 or newer\n+* GCC 4.9.4 or newer\n * Clang 3.4.2 or newer\n \n #### Windows\n@@ -80,8 +80,8 @@ Depending on host platform, the selection of toolchains may var... | 2017-06-05T08:53:54 |
ggml-org/llama.cpp | 8d94219a4a7f2da72ee542019ca01f36af93d1d6 | f667f1e6244e1f420512fa66692b7096ff17f366 | ggml : add ggml_set_rows (#14274)
* ggml : add ggml_set_rows
Add ggml_set_rows(a, b, c) which copies rows from 'b' into 'a' using
indices from 'c'.
ref: #8366
* use I64 for indices
* ggml : add repeat impl for i64
* ggml : add ggml_is_contiguous_rows
* ggml : ggml_set_rows support broadcast
* ggml : ggml_set_ro... | [
{
"path": "examples/eval-callback/eval-callback.cpp",
"patch": "@@ -55,6 +55,8 @@ static void ggml_print_tensor(uint8_t * data, ggml_type type, const int64_t * ne\n v = ggml_fp16_to_fp32(*(ggml_fp16_t *) &data[i]);\n } else if (type == GGML_TYPE_F32) {\n ... | 2025-06-27T13:41:40 |
huggingface/transformers | 25c022d7c5c89860b86def2beb141012e597d86c | f370bebdc352cd7c1bea2f88ae0c140ab694c5fd | Fix little typo (#27028) | [
{
"path": "README.md",
"patch": "@@ -498,7 +498,7 @@ Current number of checkpoints: ** (from Google AI) released with the paper [An Image is Worth 16x16 Words: Transformers for... | 2023-10-23T22:36:42 |
vuejs/vue | a8da4fb051bfc085e7e3781adbe6346b9db7d674 | b977c77d344cb1fc63a3daa50a4b96ef70e77ec5 | fix #5592: comment vnode should not be merged into text vnode. (#5593)
* comment vnode should not be merged into text vnode.
* add isFalse helper
* delete trailing spaces | [
{
"path": "src/core/vdom/helpers/normalize-children.js",
"patch": "@@ -1,7 +1,7 @@\n /* @flow */\n \n import VNode, { createTextVNode } from 'core/vdom/vnode'\n-import { isDef, isUndef, isPrimitive } from 'shared/util'\n+import { isFalse, isDef, isUndef, isPrimitive } from 'shared/util'\n \n // The template... | 2017-05-07T13:39:04 |
ggml-org/llama.cpp | f667f1e6244e1f420512fa66692b7096ff17f366 | 8846aace4934ad29651ea61b8c7e3f6b0556e3d2 | convert : fix broken sentencepiece vocab (#14416) | [
{
"path": "convert_hf_to_gguf.py",
"patch": "@@ -936,7 +936,11 @@ def _create_vocab_sentencepiece(self):\n scores: list[float] = [-10000.0] * vocab_size\n toktypes: list[int] = [SentencePieceTokenTypes.UNUSED] * vocab_size\n \n- for token_id in range(vocab_size):\n+ for token_i... | 2025-06-27T08:42:19 |
golang/go | 1d90e1a0ac46274e6c0bfe36c410768263b79eaf | 5ea58c63468bbc7e8705ee13d0bddbf3693785fe | cmd/dist: forward stderr if 'go env CGO_ENABLED' fails
The default error string for a command failure is just its status code,
and "exit status 1" is not at all helpful for debugging.
Change-Id: I822c89bcc9e73283b33e01792bf9c40b1add3c35
Reviewed-on: https://go-review.googlesource.com/c/go/+/222308
Run-TryBot: Bryan C... | [
{
"path": "src/cmd/dist/test.go",
"patch": "@@ -98,9 +98,11 @@ func (t *tester) run() {\n \t\tos.Setenv(\"PATH\", fmt.Sprintf(\"%s%c%s\", gobin, os.PathListSeparator, os.Getenv(\"PATH\")))\n \t}\n \n-\tslurp, err := exec.Command(\"go\", \"env\", \"CGO_ENABLED\").Output()\n+\tcmd := exec.Command(\"go\", \"en... | 2020-03-06T19:32:26 |
nodejs/node | de4a749788aa88b6f23f50eccb7a6752f6bb59b7 | c7323af131736b3df8db3f7d9d3bc270ef10b834 | internal/util: use internal/errors.js
PR-URL: https://github.com/nodejs/node/pull/11301
Refs: https://github.com/nodejs/node/issues/11273
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Franziska Hinkelmann <fhinkel@vt.edu>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Tobias Nießen <tniessen@tni... | [
{
"path": "doc/api/errors.md",
"patch": "@@ -748,6 +748,12 @@ Used when data cannot be sent on a socket.\n \n Used when a call is made and the UDP subsystem is not running.\n \n+<a id=\"ERR_NO_CRYPTO\"></a>\n+### ERR_NO_CRYPTO\n+\n+Used when an attempt is made to use crypto features while Node.js is not\n+c... | 2017-02-10T20:23:52 |
rust-lang/rust | a118b18894304d0fd13888a414a6dc415d553277 | 5acbff815bf1c0e8049d87ab6a08723a925c02ac | Fix some mir eval/lowerings | [
{
"path": "src/tools/rust-analyzer/.git-blame-ignore-revs",
"patch": "@@ -14,3 +14,4 @@ f247090558c9ba3c551566eae5882b7ca865225f\n b2f6fd4f961fc7e4fbfdb80cae2e6065f8436f15\n c48062fe2ab9a2d913d1985a6b0aec4bf936bfc1\n f532576ac53ddcc666bc8d59e0b6437065e2f599\n+4704881b641884de50645637108b6b6f5b68aaf9",
"... | 2025-02-03T12:28:14 |
vuejs/vue | cab1b151e25ffbfdd5bd3745e4932746e5cca691 | 2a1f79dfbe9a3a6241f1060ce53616ffeb12fdc6 | avoid swallowing webpack error when entry is not found (fix #5553) | [
{
"path": "src/server/webpack-plugin/server.js",
"patch": "@@ -13,7 +13,14 @@ export default class VueSSRServerPlugin {\n compiler.plugin('emit', (compilation, cb) => {\n const stats = compilation.getStats().toJson()\n const entryName = Object.keys(stats.entrypoints)[0]\n- const entryAs... | 2017-04-30T04:44:23 |
huggingface/transformers | f370bebdc352cd7c1bea2f88ae0c140ab694c5fd | b0d1d7f71a985a4a57fb8e71e9d4c04e25529505 | Bugfix device map detr model (#26849)
* Fixed replace_batch_norm when on meta device
* lint fix
* Adding coauthor
Co-authored-by: Pi Esposito <piero.skywalker@gmail.com>
* Removed tests
* Remove unused deps
* Try to fix copy issue
* try fix copy one more time
* Reverted import changes
------... | [
{
"path": "src/transformers/models/conditional_detr/modeling_conditional_detr.py",
"patch": "@@ -322,10 +322,11 @@ def replace_batch_norm(model):\n if isinstance(module, nn.BatchNorm2d):\n new_module = ConditionalDetrFrozenBatchNorm2d(module.num_features)\n \n- new_module.weig... | 2023-10-23T18:34:27 |
golang/go | 5ea58c63468bbc7e8705ee13d0bddbf3693785fe | 2b0f481278cc093e9f61945592257e6d651a169c | cmd/go: make go test -json report failures for panicking/exiting tests
'go test -json' should report that a test failed if the test binary
did not exit normally with status 0. This covers panics, non-zero
exits, and abnormal terminations.
These tests don't print a final result when run with -test.v (which is
used by ... | [
{
"path": "src/cmd/go/internal/test/test.go",
"patch": "@@ -1239,6 +1239,14 @@ func (c *runCache) builderRunTest(b *work.Builder, a *work.Action) error {\n \t\tif len(out) == 0 {\n \t\t\tfmt.Fprintf(cmd.Stdout, \"%s\\n\", err)\n \t\t}\n+\t\t// NOTE(golang.org/issue/37555): test2json reports that a test pass... | 2020-03-05T16:11:47 |
nodejs/node | c7323af131736b3df8db3f7d9d3bc270ef10b834 | d50a802feb0b061383400e3f290ddc7410cb3a48 | 2017-06-15, Version 8.1.2 (Current)
Release to fix broken `process.release` properties
Ref: https://github.com/nodejs/node/issues/13667 | [
{
"path": "CHANGELOG.md",
"patch": "@@ -27,7 +27,8 @@ release.\n </tr>\n <tr>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V8.md#8.1.1\">8.1.1</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V8.md#8.1.2\">8.1.2</a></b><br/>\n+<a href=\"doc/changelogs/CHANGELOG_V8.md#8.1.1\">8.1.1</... | 2017-06-15T11:18:34 |
ggml-org/llama.cpp | 60ef23d6c14d325d83eae5752e5de39ad268e9b0 | b193d5306912a2adae0fde7481819f6ee0941bc6 | ggml-cpu: enable IBM NNPA Vector Intrinsics (#14317)
* ggml-cpu: add nnpa compile flag
Signed-off-by: Aaron Teo <aaron.teo1@ibm.com>
(cherry picked from commit 4a9f60c201573128f73a65999b3e5cc497fae5c1)
* ggml-cpu: add fp16->fp32 nnpa first
Signed-off-by: Aaron Teo <aaron.teo1@ibm.com>
(cherry picked from commit 8d4... | [
{
"path": "docs/build-s390x.md",
"patch": "@@ -28,8 +28,9 @@ cmake --build build --config Release -j $(nproc)\n ```\n \n **Notes**:\n-- For faster repeated compilation, install [ccache](https://ccache.dev/)\n-- By default, VXE/VXE2 is enabled. To disable it (not recommended):\n+\n+- For faster repeated co... | 2025-06-25T21:49:04 |
vuejs/vue | 2a1f79dfbe9a3a6241f1060ce53616ffeb12fdc6 | 9478fde8c92d225661dcb4c949d0035284600fff | run bundle in the same global context when runInNewContext is false (fix #5559) | [
{
"path": "src/server/bundle-renderer/create-bundle-runner.js",
"patch": "@@ -22,7 +22,7 @@ function createContext (context) {\n return sandbox\n }\n \n-function compileModule (files, basedir) {\n+function compileModule (files, basedir, runInNewContext) {\n const compiledScripts = {}\n const resolvedM... | 2017-04-30T04:39:00 |
huggingface/transformers | b0d1d7f71a985a4a57fb8e71e9d4c04e25529505 | 19ae0505aefcfcfbfeedaf05517d6a632ee7707d | translate `preprocessing.md` to Chinese (#26955)
* translate preprocessing.md to Chinese
* update files fixing problems mentioned in review
* update files fixing problems mentioned in review
---------
Co-authored-by: jiaqiw <wangjiaqi50@huawei.com> | [
{
"path": "docs/source/zh/_toctree.yml",
"patch": "@@ -9,6 +9,8 @@\n - sections:\n - local: accelerate\n title: 加速分布式训练\n+ - local: preprocessing\n+ title: 预处理\n - local: pipeline_tutorial\n title: pipeline教程\n title: 教程",
"additions": 2,
"deletions": 0,
"language": "YAML"
},... | 2023-10-23T17:36:24 |
golang/go | d86e94a4c8273ebe4b7512a75ff7cdf5bde554c8 | 0c41a37c6c6f8244752dd2ac72bbdea0adedbaa6 | [dev.link] cmd/link: remove debugging code
Remove a few lines of debugging trace output code left in
by accident when the final version of CL 220987 was submitted.
Change-Id: Ib84a4658194266597140a0e88a2f90f57f78cf53
Reviewed-on: https://go-review.googlesource.com/c/go/+/222299
Run-TryBot: Than McIntosh <thanm@google... | [
{
"path": "src/cmd/link/internal/loader/loader.go",
"patch": "@@ -1946,15 +1946,6 @@ func (l *Loader) PropagateLoaderChangesToSymbols(toconvert []Sym, syms *sym.Symb\n \t\t\t\ts.Attr.Set(sym.AttrNotInSymbolTable, true)\n \t\t\t}\n \t\t}\n-\n-\t\tif os.Getenv(\"THANM_DEBUG\") != \"\" {\n-\t\t\tfmt.Fprintf(os... | 2020-03-06T14:39:56 |
rust-lang/rust | 5acbff815bf1c0e8049d87ab6a08723a925c02ac | bec452fac1f5332baf145115eaa92e82bedf4d49 | Do not use make use of `InferenceResult::has_errors` flag for mir building
It generaly does not work as expected right now as we fallback type parameters to errors | [
{
"path": "src/tools/rust-analyzer/crates/hir-ty/src/infer.rs",
"patch": "@@ -466,6 +466,9 @@ pub struct InferenceResult {\n pub type_of_for_iterator: FxHashMap<ExprId, Ty>,\n type_mismatches: FxHashMap<ExprOrPatId, TypeMismatch>,\n /// Whether there are any type-mismatching errors in the result... | 2025-02-03T10:42:04 |
nodejs/node | d50a802feb0b061383400e3f290ddc7410cb3a48 | 3c506af78b0f4e89a1c3869297ec051365d343fd | errors,stream-transform: migrate to use internal/errors.js
PR-URL: https://github.com/nodejs/node/pull/13310
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com> | [
{
"path": "lib/_stream_transform.js",
"patch": "@@ -64,7 +64,7 @@\n 'use strict';\n \n module.exports = Transform;\n-\n+const errors = require('internal/errors');\n const Duplex = require('_stream_duplex');\n const util = require('util');\n util.inherits(Transform, Duplex);\n@@ -78,7 +78,7 @@ function after... | 2017-05-30T19:09:01 |
vuejs/vue | 3b426efe60c30b0fd52144c65b28603b5e4511db | bb7c543fc20c63809da0a7f530b3da1bf8f2f14e | Fix when functional component render method retrun null (fix #5536) (#5539)
* fix:create empty vnode when functional component return null
* add test
* use isDef | [
{
"path": "src/core/vdom/create-element.js",
"patch": "@@ -99,7 +99,7 @@ export function _createElement (\n // direct component options / constructor\n vnode = createComponent(tag, data, context, children)\n }\n- if (vnode !== undefined) {\n+ if (isDef(vnode)) {\n if (ns) applyNS(vnode, ns)\... | 2017-04-29T06:42:35 |
huggingface/transformers | 33f98cfded1724e12be11a3b3333e4821de9bbbe | f09a081d2765c6535256b0e2d65bf54fc03f7fee | Remove ambiguous `padding_mask` and instead use a 2D->4D Attn Mask Mapper (#26792)
* [Attn Mask Converter] refactor attn mask
* up
* Apply suggestions from code review
Co-authored-by: fxmarty <9808326+fxmarty@users.noreply.github.com>
* improve
* rename
* better cache
* renaming
* improve more
... | [
{
"path": "src/transformers/models/deprecated/open_llama/modeling_open_llama.py",
"patch": "@@ -560,7 +560,7 @@ def get_input_embeddings(self):\n def set_input_embeddings(self, value):\n self.embed_tokens = value\n \n- # Copied from transformers.models.llama.modeling_llama.LlamaModel._prepare... | 2023-10-23T16:54:00 |
ggml-org/llama.cpp | 62af464227dafa1c55e0535bcb24346326748f46 | c148cf1946275952a79ad50b6199725f12a70411 | batch : fix check for empty sequences in memory (#14364)
* batch : fix check for empty sequences in memory
ggml-ci
* cont : reuse the var
ggml-ci | [
{
"path": "src/llama-batch.cpp",
"patch": "@@ -244,19 +244,21 @@ bool llama_batch_allocr::init(\n continue;\n }\n \n- if (memory) {\n+ const llama_pos p0 = memory ? memory->seq_pos_max(s) : -1;\n+\n+ if (p0 >= 0) {\n bool ok = true;\n \n if (b... | 2025-06-24T15:26:30 |
vuejs/vue | bb7c543fc20c63809da0a7f530b3da1bf8f2f14e | 1635ca7143381265c0fb1cb197e0dbfa5d8b6365 | fix #5539: improve `isDef` type definition (#5549)
* fix #5539: improve flow type coverage
* skip unnecessary object creation
* use flow internal syntax to enable predicate type | [
{
"path": "flow/component.js",
"patch": "@@ -42,7 +42,7 @@ declare interface Component {\n $once: (event: string, fn: Function) => Component;\n $off: (event?: string | Array<string>, fn?: Function) => Component;\n $emit: (event: string, ...args: Array<mixed>) => Component;\n- $nextTick: (fn: Function... | 2017-04-29T06:24:06 |
nodejs/node | 3c506af78b0f4e89a1c3869297ec051365d343fd | aff8d358fabfc6bd30c48c1756453e49ad984b5f | test: refactor test-fs-read-stream-inherit
* block scope `paused`
* change name of block-scoped `file3` etc. to `file`
* alphabetize modules
* confirm contents provided in `data` callback
* confirm `data` callbacks will not fire on tests for errors
PR-URL: https://github.com/nodejs/node/pull/13618
Reviewed-By: Luigi ... | [
{
"path": "test/parallel/test-fs-read-stream-inherit.js",
"patch": "@@ -1,15 +1,16 @@\n 'use strict';\n const common = require('../common');\n-const assert = require('assert');\n \n-const path = require('path');\n+const assert = require('assert');\n const fs = require('fs');\n+const path = require('path');\... | 2017-06-11T19:05:13 |
golang/go | 2b0f481278cc093e9f61945592257e6d651a169c | fadbf7404d2b1aca63993e289448fcc3b6a23107 | doc/go1.14: document that unparsable URL in net/url.Error is now quoted
Fixes #37614
Updates #36878
Updates #29384
Updates #37630
Change-Id: I63dad8b554353197ae0f29fa2a84f17bffa58557
GitHub-Last-Rev: 5297df32200ea5b52b2e7b52c8ee022d37e44111
GitHub-Pull-Request: golang/go#37661
Reviewed-on: https://go-review.googlesou... | [
{
"path": "doc/go1.14.html",
"patch": "@@ -759,6 +759,19 @@ <h3 id=\"minor_library_changes\">Minor changes to the library</h3>\n </dd>\n </dl><!-- net/textproto -->\n \n+<dl id=\"net/url\"><dt><a href=\"/pkg/net/url/\">net/url</a></dt>\n+ <dd>\n+ <p><!-- CL 185117 -->\n+ When parsing of a URL fai... | 2020-03-06T08:21:26 |
huggingface/transformers | f09a081d2765c6535256b0e2d65bf54fc03f7fee | f7354a3bd6ee5c5224fbc869c593eb5c4aa197ab | Translate `pipeline_tutorial.md` to chinese (#26954)
* update translation of pipeline_tutorial and preprocessing(Version1.0)
* update translation of pipeline_tutorial and preprocessing(Version2.0)
* update translation docs
* update to fix problems mentioned in review
---------
Co-authored-by: jiaqiw <wa... | [
{
"path": "docs/source/zh/_toctree.yml",
"patch": "@@ -9,8 +9,10 @@\n - sections:\n - local: accelerate\n title: 加速分布式训练\n+ - local: pipeline_tutorial\n+ title: pipeline教程\n title: 教程\n - sections:\n - local: fast_tokenizers\n title: 使用 🤗 Tokenizers 中的分词器\n- title: 开发者指南\n\\ No newline a... | 2023-10-23T15:58:00 |
vuejs/vue | d8315c42ef5b6b739100fad5f20e8b0c41f78eef | 3a6fd13bc5c1c900774f759f200e064d60861b96 | do not decode text inside script/style tags (fix #5526) | [
{
"path": "src/compiler/parser/html-parser.js",
"patch": "@@ -46,7 +46,7 @@ let IS_REGEX_CAPTURING_BROKEN = false\n })\n \n // Special Elements (can contain anything)\n-const isPlainTextElement = makeMap('script,style,textarea', true)\n+export const isPlainTextElement = makeMap('script,style,textarea', true... | 2017-04-27T04:23:48 |
huggingface/transformers | f9f27b0fc229a096418d24af04b8966408b6c2d2 | 244a53e0f6a8d95d429559cfc49a07a4e85cc680 | [`SeamlessM4T`] fix copies with NLLB MoE int8 (#27018)
fix copies on newly merged model | [
{
"path": "src/transformers/models/seamless_m4t/modeling_seamless_m4t.py",
"patch": "@@ -1300,7 +1300,7 @@ def forward(self, hidden_states):\n if (\n isinstance(self.fc2.weight, torch.Tensor)\n and hidden_states.dtype != self.fc2.weight.dtype\n- and self.fc2.weight... | 2023-10-23T13:25:06 |
nodejs/node | aff8d358fabfc6bd30c48c1756453e49ad984b5f | 37fdfce93e333fbceb12576031602df641c058c8 | errors, repl: migrate to use internal/errors.js
* Use existing errors where suitable
* Assign code to a REPL specific error
* Include documentation for the new error code
PR-URL: https://github.com/nodejs/node/pull/11347
Ref: https://github.com/nodejs/node/issues/11273
Reviewed-By: James M Snell <jasnell@gmail.com>
R... | [
{
"path": "doc/api/errors.md",
"patch": "@@ -632,6 +632,12 @@ communication channel to a child process. See [`child.send()`] and\n Used generically to identify when an invalid or unexpected value has been\n passed in an options object.\n \n+<a id=\"ERR_INVALID_REPL_EVAL_CONFIG\"></a>\n+### ERR_INVALID_REPL_... | 2017-05-24T17:49:12 |
golang/go | fadbf7404d2b1aca63993e289448fcc3b6a23107 | 4a70ff425b3c16c19785b04bb89ca856749ed65b | runtime/pprof: expand final stack frame to avoid truncation
When generating stacks, the runtime automatically expands inline
functions to inline all inline frames in the stack. However, due to the
stack size limit, the final frame may be truncated in the middle of
several inline frames at the same location.
As-is, we... | [
{
"path": "src/runtime/pprof/map.go",
"patch": "@@ -68,7 +68,8 @@ Search:\n \tif len(m.freeStk) < len(stk) {\n \t\tm.freeStk = make([]uintptr, 1024)\n \t}\n-\te.stk = m.freeStk[:len(stk)]\n+\t// Limit cap to prevent append from clobbering freeStk.\n+\te.stk = m.freeStk[:len(stk):len(stk)]\n \tm.freeStk = m.... | 2020-02-28T19:16:41 |
vuejs/vue | c24f49254395f15e9f023202e98e9abe595b636e | 109689082741b3032196ad98779dd0943e8447a8 | fix edge test case | [
{
"path": "test/unit/modules/compiler/parser.spec.js",
"patch": "@@ -1,7 +1,7 @@\n import { parse } from 'compiler/parser/index'\n import { extend } from 'shared/util'\n import { baseOptions } from 'web/compiler/index'\n-import { isIE } from 'core/util/env'\n+import { isIE, isEdge } from 'core/util/env'\n \... | 2017-04-26T10:24:38 |
huggingface/transformers | 244a53e0f6a8d95d429559cfc49a07a4e85cc680 | cb45f71c4dfb28613f8348716de821df7db68799 | [`NLLB-MoE`] Fix NLLB MoE 4bit inference (#27012)
fix NLLB MoE 4bit | [
{
"path": "src/transformers/models/nllb_moe/modeling_nllb_moe.py",
"patch": "@@ -417,7 +417,7 @@ def forward(self, hidden_states):\n if (\n isinstance(self.fc2.weight, torch.Tensor)\n and hidden_states.dtype != self.fc2.weight.dtype\n- and self.fc2.weight.dtype != ... | 2023-10-23T12:54:22 |
nodejs/node | 3ee37329da7323a86c248a63fe20d40885c7a84a | c1c226719f269f013f000e8ad9194254e6d83f51 | tls: add host and port info to ECONNRESET errors
Add more information to the "ECONNRESET" errors generated when the
socket hang ups before establishing the secure connection.
These kind of errors are really hard to troubleshoot without this info.
PR-URL: https://github.com/nodejs/node/pull/7476
Reviewed-By: Trevor N... | [
{
"path": "lib/_tls_wrap.js",
"patch": "@@ -1129,6 +1129,10 @@ exports.connect = function(...args /* [port,] [host,] [options,] [cb] */) {\n socket._hadError = true;\n var error = new Error('socket hang up');\n error.code = 'ECONNRESET';\n+ error.path = options.path;\n+ error.hos... | 2016-06-29T13:29:19 |
golang/go | 4a70ff425b3c16c19785b04bb89ca856749ed65b | 55d4cbfbe10c11e56e1642cbb6b108eaf2620e09 | cmd/go/internal/renameio: skip test affected by kernel bug on macOS 10.14 builders
The test will remain flaky on the -nocgo builder until #37695 is addressed.
Updates #37695
Fixes #33041
Change-Id: I5d661ef39e82ab1dce3a76e0e4059cf556135e89
Reviewed-on: https://go-review.googlesource.com/c/go/+/222158
Run-TryBot: Bry... | [
{
"path": "src/cmd/go/internal/renameio/renameio_test.go",
"patch": "@@ -9,11 +9,13 @@ package renameio\n import (\n \t\"encoding/binary\"\n \t\"errors\"\n+\t\"internal/testenv\"\n \t\"io/ioutil\"\n \t\"math/rand\"\n \t\"os\"\n \t\"path/filepath\"\n \t\"runtime\"\n+\t\"strings\"\n \t\"sync\"\n \t\"sync/atom... | 2020-03-05T16:14:25 |
vuejs/vue | 12b7122c161548bfc9865357d9b71302d66d4a9f | 2a247fcadc12c151e0bca7ee03254474cdba30b1 | fix mixin issue (#5514) | [
{
"path": "src/core/instance/init.js",
"patch": "@@ -115,24 +115,27 @@ export function resolveConstructorOptions (Ctor: Class<Component>) {\n function resolveModifiedOptions (Ctor: Class<Component>): ?Object {\n let modified\n const latest = Ctor.options\n+ const extended = Ctor.extendOptions\n const... | 2017-04-26T06:51:25 |
ggml-org/llama.cpp | 7b50d589a863c7631135c1226f6eab65cb406212 | 3a9457df962b5883f2773f1c295e8c19df60d89f | kv-cells : fix tracking of seq_pos (#14339)
* kv-cells : fix tracking of seq_pos during cache reuse
ggml-ci
* cont : improve error message
ggml-ci
* cont : add more comments | [
{
"path": "include/llama.h",
"patch": "@@ -944,12 +944,14 @@ extern \"C\" {\n // Requires the context to have a memory.\n // For encode-decoder contexts, processes the batch using the decoder.\n // Positive return values does not mean a fatal error, but rather a warning.\n- // Upon non-zero r... | 2025-06-23T09:27:35 |
huggingface/transformers | cb45f71c4dfb28613f8348716de821df7db68799 | 50d0cf4f6b86afa7b2439b0a7d7384740fae38d1 | Add Seamless M4T model (#25693)
* first raw commit
* still POC
* tentative convert script
* almost working speech encoder conversion scripts
* intermediate code for encoder/decoders
* add modeling code
* first version of speech encoder
* make style
* add new adapter layer architecture
* add ... | [
{
"path": "README.md",
"patch": "@@ -459,6 +459,7 @@ Current number of checkpoints: ** (from WeChatAI) released with the paper [RoCBert: Robust Chinese Bert with Multimodal Contrast... | 2023-10-23T12:49:48 |
vuejs/vue | 2a247fcadc12c151e0bca7ee03254474cdba30b1 | 016920ebea8bbd3dc7c5326d6bc6590a6f4cc418 | fix ssr initial context style recording | [
{
"path": "src/server/bundle-renderer/create-bundle-runner.js",
"patch": "@@ -1,4 +1,4 @@\n-import { isObject } from 'shared/util'\n+import { isPlainObject } from 'shared/util'\n \n const vm = require('vm')\n const path = require('path')\n@@ -73,7 +73,7 @@ function compileModule (files, basedir) {\n }\n \n ... | 2017-04-25T08:53:28 |
nodejs/node | c1c226719f269f013f000e8ad9194254e6d83f51 | 2f34bf0f772c590f49b4b4b11ad81549d0f8b04a | https: make opts optional & immutable when create
`opts` in `createServer` will be immutable that won't change origional
opts value. What's more, it's optional which can make `requestListener`
be the first argument.
PR-URL: https://github.com/nodejs/node/pull/13599
Fixes: https://github.com/nodejs/node/issues/13584
R... | [
{
"path": "doc/api/https.md",
"patch": "@@ -46,7 +46,7 @@ added: v8.0.0\n \n See [`http.Server#keepAliveTimeout`][].\n \n-## https.createServer(options[, requestListener])\n+## https.createServer([options][, requestListener])\n <!-- YAML\n added: v0.3.4\n -->",
"additions": 1,
"deletions": 1,
"l... | 2017-06-10T18:09:35 |
golang/go | 55d4cbfbe10c11e56e1642cbb6b108eaf2620e09 | bda42a7a782dbcf4b123d617c5b60f3c848cbb82 | cmd/compile/internal/scanner: report correct directive string (fix build)
Change-Id: I01b244e97e4140545a46b3d494489a30126c2139
Reviewed-on: https://go-review.googlesource.com/c/go/+/222257
Run-TryBot: Robert Griesemer <gri@golang.org>
Reviewed-by: Matthew Dempsky <mdempsky@google.com> | [
{
"path": "src/cmd/compile/internal/syntax/scanner.go",
"patch": "@@ -704,7 +704,7 @@ func (s *scanner) rawString() {\n }\n \n func (s *scanner) comment(text string) {\n-\ts.errorAtf(0, text)\n+\ts.errorAtf(0, \"%s\", text)\n }\n \n func (s *scanner) skipLine() {",
"additions": 1,
"deletions": 1,
... | 2020-03-05T20:55:44 |
ggml-org/llama.cpp | 238005c2dc67426cf678baa2d54c881701693288 | 66aba7aca9a245d71f1ddf02c7a97223529752a8 | gguf-py : fix SpecialVocab parsing when post_processor is null (#14330) | [
{
"path": "gguf-py/gguf/vocab.py",
"patch": "@@ -167,81 +167,81 @@ def _try_load_from_tokenizer_json(self, path: Path) -> bool:\n tokenizer_config['bos_token'] = special_bos = special_cls\n if not special_eos and special_sep and tokenizer_config:\n tokenizer_confi... | 2025-06-22T17:46:17 |
huggingface/transformers | 50d0cf4f6b86afa7b2439b0a7d7384740fae38d1 | d33d3131920a1681f2194f3ae2a39ced9f073d64 | Change default `max_shard_size` to smaller value (#26942)
* Update modeling_utils.py
* fixup
* let's change it to 5GB
* fix | [
{
"path": "src/transformers/modeling_utils.py",
"patch": "@@ -1867,7 +1867,7 @@ def save_pretrained(\n state_dict: Optional[dict] = None,\n save_function: Callable = torch.save,\n push_to_hub: bool = False,\n- max_shard_size: Union[int, str] = \"10GB\",\n+ max_shard_siz... | 2023-10-23T12:25:48 |
vuejs/vue | 38516b494293a9ee9bae697d559107341dca89dd | 380e98882353d24afe34568b3e06c8a29de82a4a | fix flow | [
{
"path": "src/core/instance/render-helpers/resolve-slots.js",
"patch": "@@ -12,13 +12,13 @@ export function resolveSlots (\n return slots\n }\n const defaultSlot = []\n- let name, child\n for (let i = 0, l = children.length; i < l; i++) {\n- child = children[i]\n+ const child = children[i]... | 2017-04-25T04:28:20 |
nodejs/node | 2f34bf0f772c590f49b4b4b11ad81549d0f8b04a | 3d215696a4c163f749f88720591392be093955cc | doc: removed redundant mentions to error codes
PR-URL: https://github.com/nodejs/node/pull/13627
Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Timothy Gu <timothygu99@gmail.com>
Reviewed-By: Colin Ihrig <... | [
{
"path": "doc/api/errors.md",
"patch": "@@ -565,16 +565,14 @@ found [here][online].\n <a id=\"ERR_ARG_NOT_ITERABLE\"></a>\n ### ERR_ARG_NOT_ITERABLE\n \n-The `'ERR_ARG_NOT_ITERABLE'` error code is used generically to identify that an\n-iterable argument (i.e. a value that works with `for...of` loops) is re... | 2017-06-12T05:14:09 |
golang/go | 0c41a37c6c6f8244752dd2ac72bbdea0adedbaa6 | 4a6c1caae2a4e5aa238bdb34a77882cc13b2fa3d | [dev.link] cmd/link: convert second phase of DWARF-gen to use loader
This converts the second portion of DWARF-gen (dwarfGenerateDebugSyms
function and friends) to use the loader, as opposed to sym.Symbols.
Second phase is invoked as part of dodata(), which is fairly far along
in the linker, meaning that the "convert... | [
{
"path": "src/cmd/link/internal/ld/dwarf.go",
"patch": "@@ -15,12 +15,15 @@ package ld\n \n import (\n \t\"cmd/internal/dwarf\"\n+\t\"cmd/internal/obj\"\n \t\"cmd/internal/objabi\"\n+\t\"cmd/internal/src\"\n \t\"cmd/internal/sys\"\n \t\"cmd/link/internal/loader\"\n \t\"cmd/link/internal/sym\"\n \t\"fmt\"\n... | 2020-02-14T21:12:51 |
ggml-org/llama.cpp | 66aba7aca9a245d71f1ddf02c7a97223529752a8 | f1f5e82df6222dcbaca6396c0de44df259a1694f | run : avoid double tokenization (#14327)
* run : avoid double tokenization by adopting common_tokenize heuristic
* build : fix windows gcc and clang warnings
* lint : fixed trailing whitepace
* run : fix is_first flag | [
{
"path": "tools/run/run.cpp",
"patch": "@@ -9,6 +9,9 @@\n #include <nlohmann/json.hpp>\n \n #if defined(_WIN32)\n+# ifndef NOMINMAX\n+# define NOMINMAX\n+# endif\n # include <windows.h>\n # include <io.h>\n #else\n@@ -940,16 +943,29 @@ static int apply_chat_template(const struct common_c... | 2025-06-22T17:28:06 |
huggingface/transformers | ef978d0a7bb6455eff5c126cd6e4f10de0158004 | 45425660d0911c35d0dd65555f798567de1d920e | skip two tests (#27013)
* skip two tests
* skip torch as well
* fixup | [
{
"path": "tests/models/blenderbot_small/test_modeling_blenderbot_small.py",
"patch": "@@ -244,7 +244,9 @@ def is_pipeline_test_to_skip(\n ):\n if pipeline_test_casse_name == \"TextGenerationPipelineTests\":\n return True\n-\n+ # TODO @Rocketnight1 to fix\n+ if pipeline... | 2023-10-23T10:52:05 |
nodejs/node | 3d215696a4c163f749f88720591392be093955cc | 6cc63797bc63dc0de7888048402127cc10f34f7c | doc: sort and update /cc list for inspector issues
Updated onboarding-extras.md to /cc @nodejs/v8-inspector for inspector
issues and reorganized /cc list in alphabetical order.
PR-URL: https://github.com/nodejs/node/pull/13632
Fixes: https://github.com/nodejs/node/issues/13621
Reviewed-By: Refael Ackermann <refack@gm... | [
{
"path": "doc/onboarding-extras.md",
"patch": "@@ -14,11 +14,12 @@\n | `lib/dgram` | @cjihrig, @mcollina |\n | `lib/domains` | @misterdjules |\n | `lib/fs`, `src/{fs,file}` | @nodejs/fs |\n-| `lib/internal/url`, `src/node_url` | @nodejs/url |\n | `lib/{_}http{*}` | @nodejs/http |\n+| `lib/inspector.js`, `s... | 2017-06-12T08:46:19 |
ggml-org/llama.cpp | f1f5e82df6222dcbaca6396c0de44df259a1694f | af3373f1adfca56119f3e4de0e6a0a8df8edf3d9 | examples : fix is_first logic for tokenization (#14329)
ggml-ci | [
{
"path": "examples/simple-chat/simple-chat.cpp",
"patch": "@@ -98,7 +98,7 @@ int main(int argc, char ** argv) {\n auto generate = [&](const std::string & prompt) {\n std::string response;\n \n- const bool is_first = llama_memory_seq_pos_max(llama_get_memory(ctx), 0) == 0;\n+ const... | 2025-06-22T17:10:07 |
golang/go | 85d62a91ee51e5cd46561ae132c151258cfe3e0d | 7d8aef689ddc89fd212cffe59ee0edc8b5d3e57c | [dev.link] cmd/link: fix up ctxt.Textp2 handling in AssignTextSymbolOrder
Change the loader method AssignTextSymbolOrder to return a slice of
all reachable textp symbols, since it will be needed in second-phase
DWARF gen.
Change-Id: Iaf16ee9cf0d5266aeb0d3df596e8117263b35d8e
Reviewed-on: https://go-review.googlesource... | [
{
"path": "src/cmd/link/internal/ld/deadcode.go",
"patch": "@@ -45,80 +45,56 @@ func deadcode(ctxt *Link) {\n \tdeadcode2(ctxt)\n }\n \n+// addToTextp populates the context Textp slice (needed in various places\n+// in the linker) and also the unit Textp slices (needed by the \"old\"\n+// phase 2 DWARF gene... | 2020-02-25T14:07:39 |
huggingface/transformers | f71c9ccf592730fd9c733da56915569e2e8753aa | 093848d3ccf3884caf048718b6bae833da0edb94 | fix logit-to-multi-hot conversion in example (#26936)
* fix logit to multi-hot converstion
* add comments
* typo | [
{
"path": "examples/pytorch/text-classification/run_classification.py",
"patch": "@@ -655,7 +655,7 @@ def compute_metrics(p: EvalPrediction):\n preds = np.squeeze(preds)\n result = metric.compute(predictions=preds, references=p.label_ids)\n elif is_multi_label:\n- ... | 2023-10-23T10:33:05 |
nodejs/node | 6cc63797bc63dc0de7888048402127cc10f34f7c | de762b71f2e10d8eb6392ad6d4325b7ffc08b7fd | doc: note that EoL platforms are not supported
Add a note to clarify that any platform that is EoL will not be
supported by Node.js.
PR-URL: https://github.com/nodejs/node/pull/12672
Fixes: https://github.com/nodejs/build/issues/688
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Vse Mozhet Byt <vsemozhetby... | [
{
"path": "BUILDING.md",
"patch": "@@ -33,6 +33,10 @@ Support is divided into three tiers:\n \n ### Supported platforms\n \n+The community does not build or test against end of life distributions (EoL).\n+Thus we do not recommend that you use Node on end of life or unsupported platforms\n+in production.\n+\... | 2017-04-26T16:59:53 |
ggml-org/llama.cpp | 5d5c066de8a3d2cb32f04c4d5ad1560945f30bf3 | 40bfa04c95c19fb42bafd4e21b5c2a7771846801 | mtmd : fix Pixtral OOM with large images by capping image_size to 1024 (#14326)
Mistral Small 2506 models using Pixtral vision encoder were running out
of GPU memory when processing images larger than 1024x1024 pixels due to
exponential memory growth from unlimited image size.
This fix applies the same 1024x1024 limi... | [
{
"path": "tools/mtmd/clip.cpp",
"patch": "@@ -2211,6 +2211,9 @@ struct clip_model_loader {\n {\n hparams.rope_theta = 10000.0f;\n hparams.warmup_image_size = hparams.patch_size * 8;\n+ // Mistral Small 2506 needs 102... | 2025-06-22T12:44:57 |
vuejs/vue | c0da43d22f8f4b9aeb4f49d4e86cd9704daaff3f | af43862969fbe2ef01644eaac2a73a02039d69ad | fix incorrect compiler warning for $delete usage in templates (fix #5464) | [
{
"path": "src/compiler/error-detector.js",
"patch": "@@ -57,8 +57,9 @@ function checkNode (node: ASTNode, errors: Array<string>) {\n }\n \n function checkEvent (exp: string, text: string, errors: Array<string>) {\n- const keywordMatch = exp.replace(stripStringRE, '').match(unaryOperatorsRE)\n- if (keywor... | 2017-04-18T03:40:32 |
huggingface/transformers | 224794b0116d286cff3e82a4eeb014252796c00f | c030fc891395d11249046e36b9e0219685b33399 | Update README_hd.md (#26872)
* Update README_hd.md
- Fixed broken links
I hope this small contribution adds value to this project.
* Update README_hd.md
Co-authored-by: Steven Liu <59462357+stevhliu@users.noreply.github.com>
---------
Co-authored-by: Steven Liu <59462357+stevhliu@users.noreply.github.c... | [
{
"path": "README_hd.md",
"patch": "@@ -85,13 +85,13 @@ checkpoint: जाँच बिंदु\n \n 🤗 Transformers 100 से अधिक भाषाओं में पाठ वर्गीकरण, सूचना निष्कर्षण, प्रश्न उत्तर, सारांशीकरण, अनुवाद, पाठ निर्माण का समर्थन करने के लिए हजारों पूर्व-प्रशिक्षित मॉडल प्रदान करता है। इसका उद्देश्य सबसे उन्नत एनएलपी तकनीक को ... | 2023-10-20T21:23:41 |
golang/go | 585e31df63f6879c03b285711de6f9dcba1f2cb0 | bfb903f2521ff24639aa7a5219330df38b06f412 | cmd/doc: fix merging comments in -src mode
These changes fix go doc -src mode that vomits comments from random files if
filesystem does not sort files by name. The issue was with parse.ParseDir
using the Readdir order of files, which varies between platforms and filesystem
implementations. Another option is to merge c... | [
{
"path": "src/cmd/doc/doc_test.go",
"patch": "@@ -724,6 +724,40 @@ var tests = []test{\n \t\t},\n \t},\n \n+\t// Merging comments with -src.\n+\t{\n+\t\t\"merge comments with -src A\",\n+\t\t[]string{\"-src\", p + \"/merge\", `A`},\n+\t\t[]string{\n+\t\t\t`A doc`,\n+\t\t\t`func A`,\n+\t\t\t`A comment`,\n+\... | 2019-12-12T13:33:42 |
vuejs/vue | 38810d8fd03b1859854623b2a7dd30506dc3c7bf | 5a617cc404ea902bc1bbd2be9c91596e2df6fffa | Support auto-prefixed style value as array (client/ssr) (#5460)
* support auto-prefixed style value as array (client/ssr)
* adjust test case | [
{
"path": "src/platforms/web/runtime/modules/style.js",
"patch": "@@ -12,7 +12,17 @@ const setProp = (el, name, val) => {\n } else if (importantRE.test(val)) {\n el.style.setProperty(name, val.replace(importantRE, ''), 'important')\n } else {\n- el.style[normalize(name)] = val\n+ const normali... | 2017-04-17T12:49:10 |
ggml-org/llama.cpp | aa0ef5c578eef4c2adc7be1282f21bab5f3e8d26 | bb16041caef45cd4348cd6f84906b5dfec7a1f6a | gguf-py : fix Qwen3-Embedding eos token (#14314) | [
{
"path": "gguf-py/gguf/vocab.py",
"patch": "@@ -197,6 +197,16 @@ def _try_load_from_tokenizer_json(self, path: Path) -> bool:\n if special_last := tmpl_single[-1].get('SpecialToken', {}).get('id'):\n if not tokenizer_config:\n ... | 2025-06-21T16:12:05 |
nodejs/node | 9dc3f936c78621c0e1781f65b336bff920187a82 | e318c8a97a4adc2503d9c16a9af9f34df0e42d1b | 2017-06-13, Version 8.1.1 (Current)
* **Child processes**
* `stdout` and `stderr` are now available on the error output of a
failed call to the `util.promisify()`ed version of
`child_process.exec`.
[[`d66d4fc94c`](https://github.com/nodejs/node/commit/d66d4fc94c)]
[#13388](https://github.com/nodejs/n... | [
{
"path": "CHANGELOG.md",
"patch": "@@ -27,7 +27,8 @@ release.\n </tr>\n <tr>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V8.md#8.1.0\">8.1.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V8.md#8.1.1\">8.1.1</a></b><br/>\n+<a href=\"doc/changelogs/CHANGELOG_V8.md#8.1.0\">8.1.0</... | 2017-06-10T16:19:20 |
huggingface/transformers | c030fc891395d11249046e36b9e0219685b33399 | 9b1976697d87e1e350fd712993ae313c006b8467 | Fix Fuyu image scaling bug (#26918)
* Fix Fuyu image scaling bug
It could produce negative padding and hence inference errors for certain
image sizes.
* Fix aspect ratio scaling test | [
{
"path": "src/transformers/models/fuyu/image_processing_fuyu.py",
"patch": "@@ -226,7 +226,7 @@ def _scale_to_target_aspect_ratio(self, image: np.ndarray) -> np.ndarray:\n new_height = int(image_height * optimal_scale_factor)\n new_width = int(image_width * optimal_scale_factor)\n \n- ... | 2023-10-20T11:46:06 |
golang/go | bfb903f2521ff24639aa7a5219330df38b06f412 | 17e6252c051e09a3a433620182fc54952a402d73 | cmd/compile/internal/syntax: better scanner error messages
This is one of several changes that were part of a larger rewrite
which I made in early 2019 after switching to the new number literal
syntax implementation. The purpose of the rewrite was to simplify
reading of source code (Unicode character by character) and... | [
{
"path": "src/cmd/compile/internal/syntax/scanner.go",
"patch": "@@ -385,7 +385,7 @@ func (s *scanner) isIdentRune(c rune, first bool) bool {\n \t\t\ts.errorf(\"identifier cannot begin with digit %#U\", c)\n \t\t}\n \tcase c >= utf8.RuneSelf:\n-\t\ts.errorf(\"invalid identifier character %#U\", c)\n+\t\ts.... | 2020-02-11T06:02:47 |
vuejs/vue | 9a5dd1bac803ae78e731d445de752ec8797ef2b6 | 3b04547c0c4fc56d786f5d03446c81b2d7501297 | fix test | [
{
"path": "test/ssr/ssr-bundle-render.spec.js",
"patch": "@@ -195,8 +195,7 @@ describe('SSR: bundle renderer', () => {\n expect(cache.set.calls.count()).toBe(3) // no new cache sets\n expect(cache.get.calls.count()).toBe(2) // 1 get for root\n \n- console.log(context1)\n- ... | 2017-04-12T07:36:09 |
ggml-org/llama.cpp | bb16041caef45cd4348cd6f84906b5dfec7a1f6a | 58cba76a9aab728717509d62b67c13afd8dc227a | Add support for VK_EXT_debug_utils to add labels to Vulkan objects. (#13792)
* Add support for VK_EXT_debug_utils to add labels to Vulkan objects. In step 1 compute pipelines are getting labeled.
* remove #ifdef for debug utils and add queue marker. | [
{
"path": "ggml/src/ggml-vulkan/ggml-vulkan.cpp",
"patch": "@@ -1041,6 +1041,14 @@ void vk_memory_logger::log_deallocation(vk_buffer_ref buf_ref) {\n struct vk_instance_t {\n vk::Instance instance;\n \n+ bool debug_utils_support = false; // VK_EXT_debug_utils enabled\n+ PFN_vkSetDebugUtilsObjectN... | 2025-06-21T06:17:12 |
huggingface/transformers | 9b1976697d87e1e350fd712993ae313c006b8467 | 929134bf65ac986c12c423c30b0db8a239f3b195 | fix set_transform link docs (#26856)
* fix set_transform link
* Update docs/source/en/preprocessing.md
Co-authored-by: Arthur <48595927+ArthurZucker@users.noreply.github.com>
* use doc-builder sintax
---------
Co-authored-by: Arthur <48595927+ArthurZucker@users.noreply.github.com> | [
{
"path": "docs/source/en/preprocessing.md",
"patch": "@@ -412,8 +412,7 @@ If you wish to normalize images as a part of the augmentation transformation, us\n and `image_processor.image_std` values.\n </Tip>\n \n-3. Then use 🤗 Datasets [`set_transform`](https://huggingface.co/docs/datasets/process.html#form... | 2023-10-20T09:16:37 |
nodejs/node | e318c8a97a4adc2503d9c16a9af9f34df0e42d1b | 80c9ef0b6be57d42632526818a3b0c3f20f225a1 | doc: fix minor issues reported in #9538
oath.md: make order of properties consistent
tls.md: remove spaces in getPeerCertificate signature
tls.md: add deprecation notice to server.connections
http.md: fix signature of request.end
crypto.md: change crypto parameters to camelCase
vm.md: add missing apostrophe
vm.md: fix... | [
{
"path": "doc/api/crypto.md",
"patch": "@@ -168,15 +168,15 @@ console.log(encrypted);\n // Prints: ca981be48e90867604588e75d04feabb63cc007a8f8ad89b10616ed84d815504\n ```\n \n-### cipher.final([output_encoding])\n+### cipher.final([outputEncoding])\n <!-- YAML\n added: v0.1.94\n -->\n-- `output_encoding` {s... | 2017-06-06T09:00:32 |
golang/go | c55a50edb9454dbdaca165be4b030a1e0cfbaa19 | 68fea523fda227ca5fe7a1eadb7542be4b0a840c | cmd/go: invalidate cached test results when the -timeout flag changes
Fixes #36134
Change-Id: Icc5e1269696db778ba5c1e6bebed9969b8841c81
Reviewed-on: https://go-review.googlesource.com/c/go/+/220365
Run-TryBot: Bryan C. Mills <bcmills@google.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Jay Conrod <j... | [
{
"path": "doc/go1.15.html",
"patch": "@@ -47,6 +47,14 @@ <h3 id=\"go-command\">Go command</h3>\n TODO\n </p>\n \n+<h4 id=\"go-test\"><code>go</code> <code>test</code></h4>\n+\n+<p><!-- https://golang.org/issue/36134 -->\n+ Changing the <code>-timeout</code> flag now invalidates cached test results. A\n+ ... | 2019-12-13T20:42:24 |
vuejs/vue | dc21884d38e04fa70a7d933c6e208a924c5bb8f6 | 0494d16a29635f22fc13c217e803d6860bf2323a | Fix 0 download issue with monthly download shield (#5426) | [
{
"path": "README.md",
"patch": "@@ -3,7 +3,7 @@\n <p align=\"center\">\n <a href=\"https://circleci.com/gh/vuejs/vue/tree/dev\"><img src=\"https://img.shields.io/circleci/project/vuejs/vue/dev.svg\" alt=\"Build Status\"></a>\n <a href=\"https://codecov.io/github/vuejs/vue?branch=dev\"><img src=\"https:... | 2017-04-13T05:07:22 |
ggml-org/llama.cpp | 58cba76a9aab728717509d62b67c13afd8dc227a | 67ae5312e255ae97852a4a216e2245580bfafd72 | gguf-py : fix TemplateProcessing pair when bos/eos is missing (#14312) | [
{
"path": "gguf-py/gguf/vocab.py",
"patch": "@@ -201,9 +201,9 @@ def _try_load_from_tokenizer_json(self, path: Path) -> bool:\n if special_last != special_eos:\n logger.warning(f'Unknown trailing special token {special_last!r} in TemplateProcessing... | 2025-06-21T05:33:21 |
huggingface/transformers | 929134bf65ac986c12c423c30b0db8a239f3b195 | 08a2edfc6629a323effd7a85feafed9e6701e2dd | [docstring] Fix docstring for speech-to-text config (#26883)
* Fix docstring for speech-to-text config
* Refactor doc line len <= 119 char
* Remove Speech2TextConfig from OBJECTS_TO_IGNORE
* Fix Speech2TextConfig doc str
* Fix Speech2TextConfig doc using doc-builder
* Refactor Speech2TextConfig doc | [
{
"path": "src/transformers/models/speech_to_text/configuration_speech_to_text.py",
"patch": "@@ -30,7 +30,7 @@\n \n class Speech2TextConfig(PretrainedConfig):\n r\"\"\"\n- This is the configuration class to store the configuration of a [`Speech2TextModel`]. It is used to instantiate an\n+ This is... | 2023-10-20T07:49:55 |
nodejs/node | 873e2f270fa67c701d59bc99f0f815f1f69b2316 | f308b4d9ed234291890adec44750cb2f53b23e0e | errors: add missing ERR_ prefix on util.callbackify error
The `FALSY_VALUE_REJECTION` error code added by
https://github.com/nodejs/node/pull/12712 did not have the `ERR_` prefix,
nor was it added to the errors.md documentation. Add the prefix in for
consistency.
PR-URL: https://github.com/nodejs/node/pull/13604
Revi... | [
{
"path": "doc/api/errors.md",
"patch": "@@ -576,6 +576,12 @@ The `ERR_CONSOLE_WRITABLE_STREAM` error code is thrown when `Console` is\n instantiated without `stdout` stream or when `stdout` or `stderr` streams\n are not writable.\n \n+<a id=\"ERR_FALSY_VALUE_REJECTION\"></a>\n+### ERR_FALSY_VALUE_REJECTION... | 2017-06-11T03:31:51 |
rust-lang/rust | bdc6c4d07b5ccb91df396e152deafc3a66b539ab | 724b885b4e486a355d176dc78098e131f9c1b2ef | reword pattern migration diagnostic to make sense in all editions
This aligns the main error message a bit more with the phrasing in the
Edition Guide and provides a bit more information on the labels to
(hopefully!) aid in understanding. | [
{
"path": "compiler/rustc_hir_typeck/src/pat.rs",
"patch": "@@ -804,7 +804,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {\n \n // Determine the binding mode...\n let bm = match user_bind_annot {\n- BindingMode(ByRef::No, Mutability::Mut) if matches!(def_br, ByRef::Yes(_)) => {\n+ ... | 2025-02-03T09:50:14 |
vuejs/vue | 0494d16a29635f22fc13c217e803d6860bf2323a | 9c3e96f7573a671f085dab8cbd3bdb21dc4a9612 | fixed readme for styling inconsistencies (#5412) | [
{
"path": "README.md",
"patch": "@@ -78,7 +78,7 @@ Vue.js is an MIT-licensed open source project. Its ongoing development is made p\n \n Vue.js is a library for building interactive web interfaces. It provides data-reactive components with a simple and flexible API. Core features include:\n \n-- [Declarativ... | 2017-04-11T02:47:05 |
golang/go | 588ee7987d7f6be605166872ff8c478aa125bc58 | 18a6fd44bb9de9399dba86a4c1ae1e56f967bcda | runtime: don't save/restore FP registers in softfloat mode on MIPS(64)
Fixes #37653.
Change-Id: I6188e44b4bc4aba7b56f29d9ce9de4618c70fd7b
Reviewed-on: https://go-review.googlesource.com/c/go/+/222057
Run-TryBot: Cherry Zhang <cherryyz@google.com>
Reviewed-by: Keith Randall <khr@golang.org>
TryBot-Result: Gobot Gobot ... | [
{
"path": "src/runtime/mkpreempt.go",
"patch": "@@ -382,13 +382,15 @@ func genMIPS(_64bit bool) {\n \tsub := \"SUB\"\n \tr28 := \"R28\"\n \tregsize := 4\n+\tsoftfloat := \"GOMIPS_softfloat\"\n \tif _64bit {\n \t\tmov = \"MOVV\"\n \t\tmovf = \"MOVD\"\n \t\tadd = \"ADDV\"\n \t\tsub = \"SUBV\"\n \t\tr28 = \"RS... | 2020-03-04T16:14:53 |
ggml-org/llama.cpp | 67ae5312e255ae97852a4a216e2245580bfafd72 | 692e3cdd0a069ab56411b64506a67537d767683e | metal : fix thread-safety (#14300)
ggml-ci | [
{
"path": "ggml/src/ggml-metal/ggml-metal.m",
"patch": "@@ -48,29 +48,39 @@\n int mtl_device_ref_count;\n id<MTLLibrary> mtl_library;\n \n+ NSLock * mtl_lock;\n+\n bool has_simdgroup_reduction;\n bool has_simdgroup_mm;\n bool has_residency_sets;\n bool has_bfloat;\n ... | 2025-06-21T05:04:18 |
huggingface/transformers | cbd278f0f663275e180120f0d3478e3d1bb2039a | 73dc23f7866d2f5e48ea60c9ab0753811ed261b6 | Pin Keras for now (#26904)
* Pin Keras for now out of paranoia
* Add the keras pin to _tests_requirements.txt too
* Make sure the Keras version matches the TF one
* make fixup | [
{
"path": "examples/tensorflow/_tests_requirements.txt",
"patch": "@@ -1,4 +1,5 @@\n tensorflow<2.15\n+keras<2.15\n tensorboard\n scikit-learn\n seqeval",
"additions": 1,
"deletions": 0,
"language": "Plain Text"
},
{
"path": "setup.py",
"patch": "@@ -125,6 +125,8 @@\n \"jaxlib>=0... | 2023-10-19T13:39:31 |
vuejs/vue | 9c3e96f7573a671f085dab8cbd3bdb21dc4a9612 | 7497723c6add3945f9a2141da20e4a26945a628d | fix typo in comment (#5411) | [
{
"path": "src/platforms/web/runtime/directives/model.js",
"patch": "@@ -32,7 +32,7 @@ export default {\n el._vModifiers = binding.modifiers\n if (!binding.modifiers.lazy) {\n // Safari < 10.2 & UIWebView doesn't fire compositionend when\n- // siwtching focus before confirming com... | 2017-04-10T20:52:02 |
nodejs/node | c88ba036b46e56f11d56c4679adbd9ff66bce645 | add4b0ab8cc0ec663cd4623e9032c14830873760 | url: ensure search property is consistently null vs empty
PR-URL: https://github.com/nodejs/node/pull/13606
Fixes: https://github.com/nodejs/node/issues/13404
Reviewed-By: Timothy Gu <timothygu99@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com>
Reviewed-By: ... | [
{
"path": "lib/url.js",
"patch": "@@ -196,7 +196,7 @@ Url.prototype.parse = function parse(url, parseQueryString, slashesDenoteHost) {\n this.query = this.search.slice(1);\n }\n } else if (parseQueryString) {\n- this.search = '';\n+ this.search = null;\n this.qu... | 2017-06-11T04:25:45 |
huggingface/transformers | 73dc23f7866d2f5e48ea60c9ab0753811ed261b6 | ad08137e473e00702fc3088a119da7026e1cb025 | Fix license (#26931) | [
{
"path": "docs/source/en/model_doc/fuyu.md",
"patch": "@@ -22,7 +22,7 @@ The Fuyu model was created by [ADEPT](https://www.adept.ai/blog/fuyu-8b), and au\n \n The authors introduced Fuyu-8B, a decoder-only multimodal model based on the classic transformers architecture, with query and key normalization. A ... | 2023-10-19T13:36:41 |
ggml-org/llama.cpp | 692e3cdd0a069ab56411b64506a67537d767683e | b23fa0b3f40165ca3aae8ad4ee756e72f9a130dd | memory : rename interface to llama_memory_context_i (#14296)
* memory : rename interface to llama_memory_context_i
ggml-ci
* cont : fix comments
* cont : use "mctx" for referencing a memory context
ggml-ci | [
{
"path": "src/llama-context.cpp",
"patch": "@@ -280,16 +280,16 @@ llama_context::llama_context(\n \n // simulate full KV cache\n \n- const auto mstate = memory->init_full();\n- if (!mstate) {\n+ const auto mctx = memory->init_full();\n+ if (!mctx) {\n throw s... | 2025-06-21T05:03:46 |
nodejs/node | 7f3f72c19b6a0b23394e32a52c1c34b9d59028a7 | 224dbb12332db99702be64f4e43b3b0d1e8dea58 | errors, readline: migrate to use internal/errors.js
PR-URL: https://github.com/nodejs/node/pull/11390
Ref: https://github.com/nodejs/node/issues/11273
Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> | [
{
"path": "doc/api/errors.md",
"patch": "@@ -594,6 +594,12 @@ an argument of the wrong type has been passed to a Node.js API.\n The `'ERR_INVALID_CALLBACK'` error code is used generically to identify that\n a callback function is required and has not been provided to a Node.js API.\n \n+<a id=\"ERR_INVALID_... | 2017-02-15T03:58:49 |
vuejs/vue | 7497723c6add3945f9a2141da20e4a26945a628d | 682141fccc9b3224c3432afcd5befd23fba9b1a1 | disable duplicate attr warning in Edge (fix #5394) | [
{
"path": "src/compiler/parser/index.js",
"patch": "@@ -5,8 +5,8 @@ import { parseHTML } from './html-parser'\n import { parseText } from './text-parser'\n import { parseFilters } from './filter-parser'\n import { cached, no, camelize } from 'shared/util'\n-import { isIE, isServerRendering } from 'core/util... | 2017-04-10T12:51:50 |
Subsets and Splits
Assembly Language GitHub Issues
Retrieves a sample of assembly-language related commits with their details, but doesn't provide meaningful analysis or patterns beyond basic filtering.
Swift Compiler Issues Analysis
Retrieves all training data for the Swift programming language repository, providing basic filtering but offering limited analytical insight beyond identifying relevant code examples.