repo stringclasses 15
values | fix_commit stringlengths 40 40 | buggy_commit stringlengths 40 40 | message stringlengths 3 64.3k | files listlengths 1 300 | timestamp timestamp[s]date 2013-03-13 20:45:00 2026-04-11 07:48:46 |
|---|---|---|---|---|---|
nodejs/node | 86e7c61a070d056daec9a756b86aece9ec30c2a8 | b24e269a482812193fb3cd8b6ced4477f8e5e1c5 | test: split test-cli-node-options
* partitioning the subprocess groups
* use `-e` instead of module
* reduce maxBuffer
PR-URL: https://github.com/nodejs/node/pull/14195
Fixes: https://github.com/nodejs/node/issues/14191
Reviewed-By: Rich Trott <rtrott@gmail.com> | [
{
"path": "test/parallel/test-cli-node-options-disallowed.js",
"patch": "@@ -0,0 +1,40 @@\n+'use strict';\n+const common = require('../common');\n+if (process.config.variables.node_without_node_options)\n+ common.skip('missing NODE_OPTIONS support');\n+\n+// Test options specified by env variable.\n+\n+con... | 2017-07-12T16:27:28 |
huggingface/transformers | 4830f2696575988faee4af78b6049b62a750ecd4 | a1afec9e1759b0fdb256d41d429161cc15ecf500 | [Docs] Fix backticks in inline code and documentation links (#28875)
Fix backticks in code blocks and documentation links | [
{
"path": "docs/source/de/add_new_model.md",
"patch": "@@ -89,8 +89,8 @@ model.config # model has access to its config\n Ähnlich wie das Modell erbt die Konfiguration grundlegende Serialisierungs- und Deserialisierungsfunktionalitäten von\n [`PretrainedConfig`]. Beachten Sie, dass die Konfiguration und das... | 2024-02-06T19:15:44 |
golang/go | 0f92cd75cf1edf712ab94f5cd7fb6e8267a0d53d | 586d0755e2cd6a51f0837c6b7748e93d58b966f1 | [dev.link] cmd/asm: expand package path if known
If the package path is known, pass it to the object file writer
so the symbol names are pre-expanded. (We already expand the
package path in debug info.)
Change-Id: I2b2b71edbb98924cbf3c4f9142b7e109e5b7501a
Reviewed-on: https://go-review.googlesource.com/c/go/+/234491
... | [
{
"path": "src/cmd/asm/main.go",
"patch": "@@ -97,7 +97,7 @@ func main() {\n \t}\n \tif ok && !*flags.SymABIs {\n \t\tctxt.NumberSyms(true)\n-\t\tobj.WriteObjFile(ctxt, buf, \"\")\n+\t\tobj.WriteObjFile(ctxt, buf, *flags.Importpath)\n \t}\n \tif !ok || diag {\n \t\tif failedFile != \"\" {",
"additions":... | 2020-05-18T22:27:10 |
vuejs/vue | 4f2a04e6a8e1fc71080eed49fd4059d6a53afc1c | 642e7aa03b1f6ca5e8ba6f7c7d702b6401b3ca9e | fix: fix scopedSlots regression | [
{
"path": "src/core/instance/render.ts",
"patch": "@@ -102,7 +102,8 @@ export function renderMixin(Vue: typeof Component) {\n vm.$scopedSlots = normalizeScopedSlots(\n vm.$parent!,\n _parentVnode.data!.scopedSlots,\n- vm.$slots\n+ vm.$slots,\n+ vm.$scopedSlots\n ... | 2022-06-06T07:25:29 |
huggingface/transformers | a1afec9e1759b0fdb256d41d429161cc15ecf500 | 89439fea6458d1a430c6dbcadb983937416090fd | Explicit server error on gated model (#28894) | [
{
"path": "src/transformers/utils/hub.py",
"patch": "@@ -414,9 +414,8 @@ def cached_file(\n if resolved_file is not None or not _raise_exceptions_for_gated_repo:\n return resolved_file\n raise EnvironmentError(\n- \"You are trying to access a gated repo.\\nMake sure to... | 2024-02-06T17:45:20 |
ggml-org/llama.cpp | 63d2fc46e17a06be5b4b5823a5ada088317f1f0a | a2e0088d9242bd9e57f8b852b05a6e47843b5a45 | Add experimental ggml-hexagon backend for the Hexagon NPU (#16547)
* model: add support for extra bufs for all devices
* hexagon: add experimental ggml-hexagon backend for the Hexagon NPU
This commit introduces a new experimental backend `ggml-hexagon` with support for the Hexagon NPU.
Highlights:
- Supports Hexago... | [
{
"path": ".github/workflows/build.yml",
"patch": "@@ -1305,6 +1305,81 @@ jobs:\n cd examples/llama.android\n ./gradlew build --no-daemon\n \n+ android-ndk-build:\n+ runs-on: ubuntu-latest\n+\n+ env:\n+ OPENCL_VERSION: 2025.07.22\n+\n+ strategy:\n+ matrix:\n+ i... | 2025-10-22T20:47:09 |
nodejs/node | b24e269a482812193fb3cd8b6ced4477f8e5e1c5 | 484bfa2e378d33fd53a6a751dfaa59b0c90b80cb | net: multiple listen() events fail silently
Problem:
It's possible to run listen()
on a net.Server that's already listening to a port.
The result is silent failure,
with the side effect of changing the connectionKey and or pipeName.
Solution:
throw an error if listen method called more than once.
close() meth... | [
{
"path": "doc/api/http.md",
"patch": "@@ -809,8 +809,9 @@ This function is asynchronous. `callback` will be added as a listener for the\n \n Returns `server`.\n \n-*Note*: The `server.listen()` method may be called multiple times. Each\n-subsequent call will *re-open* the server using the provided options.... | 2017-05-22T10:35:22 |
vuejs/vue | c319cc7a74a790414c33db74ad9f1070851de76b | a00c63beb4a9acb0495729e9aa148c5d08d30a37 | fix: guard against non-object provide value | [
{
"path": "src/core/instance/inject.ts",
"patch": "@@ -1,4 +1,4 @@\n-import { warn, hasSymbol, isFunction } from '../util/index'\n+import { warn, hasSymbol, isFunction, isObject } from '../util/index'\n import { defineReactive, toggleObserving } from '../observer/index'\n import type { Component } from 'typ... | 2022-06-01T14:18:05 |
huggingface/transformers | 76b4f666f5f9a0d11c4865891e81e2003ddac30d | 6529a5b5c13210b41bcd87c555c72696cd7083a5 | Revert "[WIP] Hard error when ignoring tensors." (#28898)
Revert "[WIP] Hard error when ignoring tensors. (#27484)"
This reverts commit 2da28c4b41bba23969a8afe97c3dfdcbc47a57dc. | [
{
"path": "src/transformers/modeling_utils.py",
"patch": "@@ -29,7 +29,7 @@\n from contextlib import contextmanager\n from dataclasses import dataclass\n from functools import partial, wraps\n-from typing import Any, Callable, Dict, List, Optional, Set, Tuple, Union\n+from typing import Any, Callable, Dict,... | 2024-02-06T16:18:30 |
rust-lang/rust | 622e8f4812b8bcd9a3501ca7d299987fff733b68 | be1e087e1485e0a6f7008fa0bebacbb1a23a6458 | apply random float error to most floating-point operations | [
{
"path": "src/tools/miri/src/intrinsics/mod.rs",
"patch": "@@ -7,12 +7,13 @@ use rand::Rng;\n use rustc_abi::Size;\n use rustc_apfloat::{Float, Round};\n use rustc_middle::mir;\n-use rustc_middle::ty::{self, FloatTy};\n+use rustc_middle::ty::{self, FloatTy, ScalarInt};\n use rustc_span::{Symbol, sym};\n \n... | 2025-01-12T22:27:35 |
nodejs/node | 484bfa2e378d33fd53a6a751dfaa59b0c90b80cb | 8d5b0130da1e50262459cf87d47c10198a107662 | crypto: accept decimal Number in randomBytes
This change adds the ability to pass a double into randomBytes.
PR-URL: https://github.com/nodejs/node/pull/15130
Fixes: https://github.com/nodejs/node/issues/15118
Reviewed-By: Sam Roberts <vieuxtech@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: E... | [
{
"path": "src/node_crypto.cc",
"patch": "@@ -5616,13 +5616,13 @@ void RandomBytesProcessSync(Environment* env,\n void RandomBytes(const FunctionCallbackInfo<Value>& args) {\n Environment* env = Environment::GetCurrent(args);\n \n- if (!args[0]->IsUint32()) {\n+ if (!args[0]->IsNumber() || args[0].As<v8... | 2017-09-01T13:08:40 |
ggml-org/llama.cpp | 9b9201f65a22c02cee8e300f58f480a588591227 | 19a5a3edfd306516cc419679d69d6435943b6816 | webui: introduce OpenAI-compatible model selector in JSON payload (#16562)
* webui: introduce OpenAI-compatible model selector in JSON payload
* webui: restore OpenAI-Compatible model source of truth and unify metadata capture
This change re-establishes a single, reliable source of truth for the active model:
fully ... | [
{
"path": "tools/server/webui/src/lib/components/app/chat/ChatForm/ChatFormActions.svelte",
"patch": "@@ -3,6 +3,8 @@\n \timport { Button } from '$lib/components/ui/button';\n \timport ChatFormActionFileAttachments from './ChatFormActionFileAttachments.svelte';\n \timport ChatFormActionRecord from './ChatFo... | 2025-10-22T14:58:23 |
vuejs/vue | a00c63beb4a9acb0495729e9aa148c5d08d30a37 | ffaf81ba5f5d0cecb9eaa0b661685a13a20d0627 | chore: fix test alias | [
{
"path": "vitest.config.ts",
"patch": "@@ -9,7 +9,7 @@ export default defineConfig({\n compiler: resolve('src/compiler'),\n core: resolve('src/core'),\n server: resolve('packages/server-renderer/src'),\n- sfc: resolve('src/sfc'),\n+ sfc: resolve('packages/compiler-sfc/src'),\n ... | 2022-06-01T14:15:27 |
huggingface/transformers | 6529a5b5c13210b41bcd87c555c72696cd7083a5 | 5346db168481640d1ce18f464470b102993049e7 | Fix `FastSpeech2ConformerModelTest` and skip it on CPU (#28888)
* fix
* fix
---------
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": "src/transformers/models/fastspeech2_conformer/modeling_fastspeech2_conformer.py",
"patch": "@@ -1256,7 +1256,7 @@ def forward(\n )\n \n if attention_mask is None:\n- attention_mask = torch.ones(input_ids.shape)\n+ attention_mask = torch.ones(input_ids.shape, ... | 2024-02-06T10:05:23 |
rust-lang/rust | 8a02724b9d0bf3a9e449a04c2d7efaa8a0521e1b | 23032f31c91f2bb74ba4be20e075fcc929f66527 | Fix const items not being allowed to be called `r#move` or `r#static`
Because of an ambiguity with const closures, the parser needs to ensure
that for a const item, the `const` keyword isn't followed by a `move` or
`static` keyword, as that would indicate a const closure:
```rust
fn main() {
const move // ...
}
```... | [
{
"path": "compiler/rustc_parse/src/parser/mod.rs",
"patch": "@@ -754,9 +754,9 @@ impl<'a> Parser<'a> {\n self.is_keyword_ahead(0, &[kw::Const])\n && self.look_ahead(1, |t| match &t.kind {\n // async closures do not work with const closures, so we do not parse that here.\... | 2025-02-16T15:20:53 |
ggml-org/llama.cpp | d8eaa26e4d9228df3aa46a930db60c8eaab67c1b | 9285325ce0174631c3cd6121d56084adc4ef2d8f | tests : fix test-thread-safety when compiling with multiple backends (#16699)
* run one test per backend/device (even if it's the same device) | [
{
"path": "tests/test-thread-safety.cpp",
"patch": "@@ -3,6 +3,7 @@\n // - Creates n_parallel (--parallel) contexts per model\n // - Runs inference in parallel on each context\n \n+#include <array>\n #include <thread>\n #include <vector>\n #include <atomic>\n@@ -38,13 +39,14 @@ int main(int argc, char ** ar... | 2025-10-22T10:01:22 |
vuejs/vue | ffaf81ba5f5d0cecb9eaa0b661685a13a20d0627 | 206f8a7f0949a50ae062d9d71061716ae3c3a749 | chore: fix type tests | [
{
"path": "packages/server-renderer/package.json",
"patch": "@@ -34,10 +34,11 @@\n \"source-map\": \"0.5.6\"\n },\n \"devDependencies\": {\n+ \"@types/webpack\": \"^4.41.32\",\n+ \"file-loader\": \"^3.0.1\",\n \"memory-fs\": \"^0.5.0\",\n \"vue\": \"file:../..\",\n- \"webpack\": \"^... | 2022-06-01T14:12:02 |
nodejs/node | 8d5b0130da1e50262459cf87d47c10198a107662 | e289540e12f7d9693ed180b5b2934aba1b5c62dd | http2: correct emit error in onConnect, full tests
Correct requestOnConnect to emit session error on
NGHTTP2_ERR_STREAM_ID_NOT_AVAILABLE rather than stream error. Add full
test suite for the error handling within requestOnConnect.
PR-URL: https://github.com/nodejs/node/pull/15080
Refs: https://github.com/nodejs/node/... | [
{
"path": "lib/internal/http2/core.js",
"patch": "@@ -462,7 +462,7 @@ function requestOnConnect(headers, options) {\n break;\n case NGHTTP2_ERR_STREAM_ID_NOT_AVAILABLE:\n err = new errors.Error('ERR_HTTP2_OUT_OF_STREAMS');\n- process.nextTick(() => this.emit('error', err));\n+ proc... | 2017-08-29T23:25:34 |
huggingface/transformers | 5346db168481640d1ce18f464470b102993049e7 | ee2a3400f2a7038a23b83a39c5d0e24f7f699561 | Raise error when using `save_only_model` with `load_best_model_at_end` for DeepSpeed/FSDP (#28866)
* Raise error when using `save_only_model` with `load_best_model_at_end` for DeepSpeed/FSDP
* Update trainer.py | [
{
"path": "src/transformers/trainer.py",
"patch": "@@ -4054,6 +4054,15 @@ def create_accelerator_and_postprocess(self):\n if self.is_deepspeed_enabled and getattr(self.args, \"hf_deepspeed_config\", None) is None:\n self.propagate_args_to_deepspeed()\n \n+ # `save_only_model` can'... | 2024-02-06T05:55:44 |
golang/go | 185c3d46109fe067abf1d4ad4d4812006a55dbe2 | 0d39dba6dea120f677a55be83d760acb89a7195d | crypto/tls: remove version check when unmarshaling sessionState
This was causing issues when fuzzing with
TestMarshalUnmarshal since the test would
occassionally set the version to VersionTLS13,
which would fail when unmarshaling. The check
doesn't add much in practice, and there is no
harm in removing it to de-flake ... | [
{
"path": "src/crypto/tls/ticket.go",
"patch": "@@ -54,7 +54,6 @@ func (m *sessionState) unmarshal(data []byte) bool {\n \t*m = sessionState{usedOldKey: m.usedOldKey}\n \ts := cryptobyte.String(data)\n \tif ok := s.ReadUint16(&m.vers) &&\n-\t\tm.vers != VersionTLS13 &&\n \t\ts.ReadUint16(&m.cipherSuite) &&\... | 2020-05-18T20:49:04 |
vuejs/vue | a9a2fae970b43150895677fbf3ea6017977164c8 | bafb5d419d49ac60c431184160c8e74fe010fc25 | build: fix mjs build publish | [
{
"path": "package.json",
"patch": "@@ -11,6 +11,7 @@\n \"files\": [\n \"src\",\n \"dist/*.js\",\n+ \"dist/*.mjs\",\n \"types/*.d.ts\",\n \"compiler-sfc\",\n \"packages/compiler-sfc\"",
"additions": 1,
"deletions": 0,
"language": "JSON"
}
] | 2022-06-01T03:12:30 |
ggml-org/llama.cpp | 9285325ce0174631c3cd6121d56084adc4ef2d8f | 03792ad93609fc67e41041c6347d9aa14e5e0d74 | CUDA: fix bug in topk-moe softmax (#16711) | [
{
"path": "ggml/src/ggml-cuda/topk-moe.cu",
"patch": "@@ -141,7 +141,7 @@ __launch_bounds__(4 * WARP_SIZE, 1) __global__ void topk_moe_cuda(const float *\n wt_sum = warp_reduce_sum(wt_sum);\n const float inv_sum = 1.0f / wt_sum;\n \n- for (int i = threadIdx.x; i < n_exper... | 2025-10-22T04:33:08 |
nodejs/node | e289540e12f7d9693ed180b5b2934aba1b5c62dd | 198fcb9c620a0f08969d042f763cb491cb1c57d6 | http2: adjust error types, test coverage
Change error types emitted from request and validatePriorityOptions
to be TypeError rather than the incorrect RangeError. Add tests
to confirm that all errors are thrown as expected (weight, parent,
exclusive, silent, endStream and getTrailers). Add test for method
CONNECT thro... | [
{
"path": "lib/internal/http2/core.js",
"patch": "@@ -485,39 +485,39 @@ function validatePriorityOptions(options) {\n if (options.weight === undefined) {\n options.weight = NGHTTP2_DEFAULT_WEIGHT;\n } else if (typeof options.weight !== 'number') {\n- const err = new errors.RangeError('ERR_INVALID... | 2017-08-31T01:49:41 |
huggingface/transformers | ee2a3400f2a7038a23b83a39c5d0e24f7f699561 | 1ea0bbd73c0bce9792e0429d0134f0a5483545df | Fix LongT5ForConditionalGeneration initialization of lm_head (#28873) | [
{
"path": "src/transformers/models/longt5/modeling_longt5.py",
"patch": "@@ -1301,6 +1301,8 @@ def _init_weights(self, module):\n # Mesh TensorFlow embeddings initialization\n # See https://github.com/tensorflow/mesh/blob/fa19d69eafc9a482aff0b59ddd96b025c0cb207d/mesh_tensorflow/layer... | 2024-02-06T03:24:20 |
golang/go | 2b70ffe9307c0992e28513ba25081d767b5937b2 | 881d5405402d6e8c54f83eed6216a9ed29778006 | cmd/link: detect trampoline of deferreturn call
The runtime needs to find the PC of the deferreturn call in a few
places. So for functions that have defer, we record the PC of
deferreturn call in its funcdata.
For very large binaries, the deferreturn call could be made
through a trampoline. The current code of findin... | [
{
"path": "src/cmd/link/internal/arm/asm.go",
"patch": "@@ -383,12 +383,16 @@ func trampoline(ctxt *ld.Link, ldr *loader.Loader, ri int, rs, s loader.Sym) {\n \t\t\toffset := (signext24(r.Add()&0xffffff) + 2) * 4\n \t\t\tvar tramp loader.Sym\n \t\t\tfor i := 0; ; i++ {\n-\t\t\t\tname := ldr.SymName(rs) + fm... | 2020-05-14T23:22:59 |
vuejs/vue | 1b7584664da1e1e504ca30fd2630bb8f8ab2347a | 1b49c75e2aa909b8f1dabd1c52cd84f532268ee5 | workflow: fix release check + remove dist file from git index | [
{
"path": ".github/workflows/release-tag.yml",
"patch": "@@ -0,0 +1,23 @@\n+on:\n+ push:\n+ tags:\n+ - 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10\n+\n+name: Create Release\n+\n+jobs:\n+ build:\n+ name: Create Release\n+ runs-on: ubuntu-latest\n+ steps:\n+ - name: Checkou... | 2022-05-31T09:56:20 |
ggml-org/llama.cpp | 51d1a8c997bd2629ef211a30208058ea87a30982 | 4926419c4d74a1cf724e7163d937eb72f36e7b26 | CUDA: better error for FA kernel with 0 occupancy (#16643) | [
{
"path": "ggml/src/ggml-cuda/fattn-common.cuh",
"patch": "@@ -895,6 +895,7 @@ void launch_fattn(\n const dim3 block_dim(warp_size, nwarps, 1);\n int max_blocks_per_sm = 1; // Max. number of active blocks limited by occupancy.\n CUDA_CHECK(cudaOccupancyMaxActiveBlocksPerMultiprocessor(&max_block... | 2025-10-21T13:27:53 |
nodejs/node | 233d1e276a481bcee5c506d09041f4a667ea227d | 98d8db32997b411a510f3ade8c264bc86fd5783b | test,process: run 'abort' suite on Windows
PR-URL: https://github.com/nodejs/node/pull/15056
Fixes: https://github.com/nodejs/node/issues/14012
Refs: https://github.com/nodejs/node/pull/14013
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Rich Trott <rtrott... | [
{
"path": "test/abort/test-http-parser-consume.js",
"patch": "@@ -1,28 +1,33 @@\n 'use strict';\n const common = require('../common');\n const assert = require('assert');\n-const http = require('http');\n-const spawn = require('child_process').spawn;\n+const { createServer, get } = require('http');\n+const ... | 2017-08-28T02:31:29 |
huggingface/transformers | 2e7c942c81f4803b75f476d587fa7b12cae2ea2a | ac51e59e4755a4c7f69458be67737dd92b86b316 | Adds LlamaForQuestionAnswering class in modeling_llama.py along with AutoModel Support (#28777)
* This is a test commit
* testing commit
* final commit with some changes
* Removed copy statement
* Fixed formatting issues
* Fixed error added past_key_values in the forward method
* Fixed a trailing wh... | [
{
"path": "docs/source/en/model_doc/llama.md",
"patch": "@@ -116,6 +116,11 @@ A list of official Hugging Face and community (indicated by 🌎) resources to h\n [[autodoc]] LlamaForSequenceClassification\n - forward\n \n+## LlamaForQuestionAnswering\n+\n+[[autodoc]] LlamaForQuestionAnswering\n+ - forwa... | 2024-02-06T02:41:42 |
vuejs/vue | 1b49c75e2aa909b8f1dabd1c52cd84f532268ee5 | ff4f1fdf37fd255ef441b6b615f4e90cba4d1c4b | chore: fix unit test | [
{
"path": "test/unit/modules/server-compiler/compiler-options.spec.ts",
"patch": "@@ -1,4 +1,4 @@\n-import { ssrCompile } from 'web/server/compiler'\n+import { ssrCompile } from 'server/compiler'\n \n describe('ssrCompile options', () => {\n it('comments', () => {",
"additions": 1,
"deletions": 1,... | 2022-05-31T09:45:10 |
golang/go | 881d5405402d6e8c54f83eed6216a9ed29778006 | f474e9e549b248653875c340b3c6d7ab495decfe | cmd/link: fix SLIBFUZZER_EXTRA_COUNTER symbol handling
Found this while deleting the old code. This should be data2.
Change-Id: I1232fac22ef63bb3a3f25a0558537cc371af3bd9
Reviewed-on: https://go-review.googlesource.com/c/go/+/234098
Run-TryBot: Cherry Zhang <cherryyz@google.com>
TryBot-Result: Gobot Gobot <gobot@golan... | [
{
"path": "src/cmd/link/internal/ld/data.go",
"patch": "@@ -1730,7 +1730,7 @@ func (state *dodataState) allocateDataSections2(ctxt *Link) {\n \tldr.SetSymSect(ldr.LookupOrCreateSym(\"runtime.end\", 0), sect)\n \n \t// Coverage instrumentation counters for libfuzzer.\n-\tif len(state.data[sym.SLIBFUZZER_EXTR... | 2020-05-14T20:11:53 |
ggml-org/llama.cpp | 6ea37f57391d27736c35cd3c20c1f990b7952b74 | fb349848f387f355450c3187556e71e6d32c145f | opencl: fix warnings and clean up profiling (#16688)
* opencl: remove unused headers, fix warnings
* opencl: clean up profiling, only keep kernel time | [
{
"path": "ggml/src/ggml-opencl/ggml-opencl.cpp",
"patch": "@@ -15,13 +15,12 @@\n \n #include <CL/cl.h>\n \n+#include <inttypes.h>\n #include <string.h>\n \n #include <cstddef>\n #include <cstdint>\n-#include <atomic>\n #include <fstream>\n-#include <limits>\n #include <vector>\n #include <string>\n #includ... | 2025-10-21T05:26:17 |
nodejs/node | 180f86507d496b11aa35b2df4594629a92cce329 | ed084a035c1f657284f3eee7f7a583a42e8b35f1 | test: remove envPlus, use Object.assign everywhere
PR-URL: https://github.com/nodejs/node/pull/14845
Fixes: https://github.com/nodejs/node/issues/14823
Refs: https://github.com/nodejs/node/pull/14822
Reviewed-By: Refael Ackermann <refack@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Yuta Hirot... | [
{
"path": "test/parallel/test-benchmark-crypto.js",
"patch": "@@ -26,9 +26,10 @@ const argv = ['--set', 'algo=sha256',\n '--set', 'v=crypto',\n '--set', 'writes=1',\n 'crypto'];\n-const env = Object.assign({}, process.env,\n- { NODEJS_BENCHM... | 2017-08-15T18:14:54 |
vuejs/vue | dd39e7ef4cbda470f347aa249b3be058b4fc8f16 | ef297d94f9c8611db730efc592471b8a150b386b | chore: fix TS 4.7 error | [
{
"path": "src/core/util/perf.ts",
"patch": "@@ -8,9 +8,13 @@ if (__DEV__) {\n /* istanbul ignore if */\n if (\n perf &&\n+ // @ts-ignore\n perf.mark &&\n+ // @ts-ignore\n perf.measure &&\n+ // @ts-ignore\n perf.clearMarks &&\n+ // @ts-ignore\n perf.clearMeasures\n ) {\... | 2022-05-31T08:11:55 |
ggml-org/llama.cpp | 6de8ed75196c7cd98c1f34bbf3a7452451ba8ac2 | 84bf3c677857279037adf67cdcfd89eaa4ca9281 | sycl : add PAD_REFLECT_D1 operator support (#16145)
* sycl: add PAD_REFLECT_D1 operator support
* docs(ops): regenerate docs/ops.md
* remove trailing whitespaces
* style: fix editorconfig issues — trim trailing spaces and normalize EOLs
* fix: move PAD_REFLECT_1D case outside of fall-through block | [
{
"path": "docs/ops.md",
"patch": "@@ -72,7 +72,7 @@ Legend:\n | OPT_STEP_SGD | ❌ | ❌ | ❌ | ❌ | ❌ | ❌ | ❌ | ❌ | ❌ |\n | OUT_PROD | 🟡 | ❌ | 🟡 | 🟡 | ❌ | ❌ | 🟡 | ❌ | ❌ |\n | PAD | ❌ | ✅ | ✅ | ✅ | ✅ | ✅ | 🟡 | ✅ | ❌ |\n-| ... | 2025-10-20T22:21:12 |
golang/go | f474e9e549b248653875c340b3c6d7ab495decfe | 5c802c13e88b700b9acaf390d495a92101214e2b | runtime: add a lock partial order edge (assistQueue -> mspanSpecial)
From interesting stack trace from GC assist through memory profiling to
addspecial().
Fixes #39022
Change-Id: Ia0506b820fe29ae91490b61c4e9c2fffcad9f7d6
Reviewed-on: https://go-review.googlesource.com/c/go/+/233599
Run-TryBot: Dan Scales <danscales@... | [
{
"path": "src/runtime/lockrank.go",
"patch": "@@ -214,7 +214,7 @@ var lockPartialOrder [][]lockRank = [][]lockRank{\n \tlockRankNotifyList: {},\n \tlockRankTraceBuf: {lockRankScavenge},\n \tlockRankTraceStrings: {lockRankTraceBuf},\n-\tlockRankMspanSpecial: {lockRankScavenge, lockRankCpuprof, loc... | 2020-05-12T22:44:47 |
huggingface/transformers | ba3264b4e8125a798d61eb6f663b5c423be1b957 | 7addc9346c89563c0d36b30fa3534c58d3a1de05 | Image Feature Extraction pipeline (#28216)
* Draft pipeline
* Fixup
* Fix docstrings
* Update doctest
* Update pipeline_model_mapping
* Update docstring
* Update tests
* Update src/transformers/pipelines/image_feature_extraction.py
Co-authored-by: Omar Sanseviero <osanseviero@gmail.com>
* Fi... | [
{
"path": "docs/source/en/main_classes/pipelines.md",
"patch": "@@ -469,6 +469,12 @@ Pipelines available for multimodal tasks include the following.\n - __call__\n - all\n \n+### ImageFeatureExtractionPipeline\n+\n+[[autodoc]] ImageFeatureExtractionPipeline\n+ - __call__\n+ - all\n+\n ### Imag... | 2024-02-05T14:50:07 |
vuejs/vue | ef297d94f9c8611db730efc592471b8a150b386b | 9f74f2048d0d6e67fd112f0f28c0dbad43e15217 | chore: fix dep | [
{
"path": "package.json",
"patch": "@@ -65,7 +65,7 @@\n },\n \"homepage\": \"https://github.com/vuejs/vue#readme\",\n \"dependencies\": {\n- \"@vue/compiler-sfc\": \"2.6.14\"\n+ \"@vue/compiler-sfc\": \"workspace:*\"\n },\n \"devDependencies\": {\n \"@microsoft/api-extractor\": \"^7.24.2... | 2022-05-31T08:02:41 |
nodejs/node | c419adff1d2cb8a71add8dc0027607715ae731ea | d7200d6823ab074fb429c74d252b663ad0b988f8 | net: check EADDRINUSE after binding localPort
PR-URL: https://github.com/nodejs/node/pull/15097
Fixes: https://github.com/nodejs/node/issues/15084
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Ref... | [
{
"path": "lib/net.js",
"patch": "@@ -877,6 +877,27 @@ function afterWrite(status, handle, req, err) {\n }\n \n \n+function checkBindError(err, port, handle) {\n+ // EADDRINUSE may not be reported until we call listen() or connect().\n+ // To complicate matters, a failed bind() followed by listen() or con... | 2017-08-30T17:13:04 |
ggml-org/llama.cpp | 84bf3c677857279037adf67cdcfd89eaa4ca9281 | c9c1972e2c2cc6a771fcc145bfa138700179f961 | model : add BailingMoeV2 support (#16063)
* add BailingMoeV2 support
* update llm types
* undo
* undo
* update llm types
* add model collection link
* update
* almost working
* correct group selection and rename n_group_exp
* avoid large top_k and use argmax instead for now
if we had something like argmax2 t... | [
{
"path": "README.md",
"patch": "@@ -138,6 +138,7 @@ Instructions for adding support for new models: [HOWTO-add-model.md](docs/develo\n - [x] [Ling models](https://huggingface.co/collections/inclusionAI/ling-67c51c85b34a7ea0aba94c32)\n - [x] [LFM2 models](https://huggingface.co/collections/LiquidAI/lfm2-686... | 2025-10-20T19:38:20 |
golang/go | 5c802c13e88b700b9acaf390d495a92101214e2b | 1f325af4dd6c07f899da0a7c0512a7d470cebf9f | runtime: remove flaky "goroutine 2 bt" from gdb test
This part of the test has been flaky despite repeated attempts to fix it,
and it is unclear what exactly it is testing. Remove it.
Fixes #24616.
Change-Id: If7234f99dd3d3e92f15ccb94ee13e75c6da12537
Reviewed-on: https://go-review.googlesource.com/c/go/+/233942
Run-... | [
{
"path": "src/runtime/runtime-gdb_test.go",
"patch": "@@ -108,7 +108,6 @@ import \"fmt\"\n import \"runtime\"\n var gslice []string\n func main() {\n-\tgo func() { select{} }() // ensure a second goroutine is running\n \tmapvar := make(map[string]string, 13)\n \tmapvar[\"abc\"] = \"def\"\n \tmapvar[\"ghi\"... | 2020-05-14T14:56:17 |
huggingface/transformers | 2da28c4b41bba23969a8afe97c3dfdcbc47a57dc | 0466fd5ca25fc6cc3d44ef4b690f2e701cf6f28a | [WIP] Hard error when ignoring tensors. (#27484)
* [WIP] Hard error when ignoring tensors.
* Better selection/error when saving a checkpoint.
- Find all names we should normally drop (those are in the transformers
config)
- Find all disjoint tensors (for those we can safely trigger a copy to
get rid of th... | [
{
"path": "src/transformers/modeling_utils.py",
"patch": "@@ -29,7 +29,7 @@\n from contextlib import contextmanager\n from dataclasses import dataclass\n from functools import partial, wraps\n-from typing import Any, Callable, Dict, List, Optional, Tuple, Union\n+from typing import Any, Callable, Dict, List... | 2024-02-05T08:17:24 |
vuejs/vue | b3a8ccf3d29631b9d5a76ba63908b3d1a1dec18b | 2acb5474bceb533aadc547921c22fa5cd471a3e1 | chore: fix test script [ci skip] | [
{
"path": "package.json",
"patch": "@@ -23,7 +23,7 @@\n \"build\": \"node scripts/build.js\",\n \"build:ssr\": \"npm run build -- web-runtime-cjs,web-server-renderer\",\n \"build:types\": \"rimraf temp && tsc --declaration --emitDeclarationOnly --outDir temp && api-extractor run\",\n- \"test\... | 2022-05-30T13:41:00 |
rust-lang/rust | a6ee2f4af223ff7636c5d55c735fd5bb51c8578f | c3fe9e7e4d259759589f3431aaadf7ab35b9269f | fix musl's CVE-2025-26519 | [
{
"path": "src/ci/docker/scripts/musl.sh",
"patch": "@@ -30,6 +30,47 @@ MUSL=musl-1.2.3\n # may have been downloaded in a previous run\n if [ ! -d $MUSL ]; then\n curl https://www.musl-libc.org/releases/$MUSL.tar.gz | tar xzf -\n+\n+ # Apply patches for CVE-2025-26519. At the time of adding these patches... | 2025-02-16T11:21:42 |
ggml-org/llama.cpp | b617cfd2896edd592a36ebbc041817eb030a1005 | 79068501fac9a74cca7129a8e5a8281b410a853e | ggml-alloc : fix leak when reusing a tensor with a larger size (#16679) | [
{
"path": "ggml/src/ggml-alloc.c",
"patch": "@@ -598,6 +598,26 @@ static bool ggml_gallocr_is_allocated(ggml_gallocr_t galloc, struct ggml_tensor\n return t->data != NULL || ggml_gallocr_hash_get(galloc, t)->allocated;\n }\n \n+// free the extra space at the end if the new tensor is smaller\n+static voi... | 2025-10-20T12:53:50 |
nodejs/node | d7200d6823ab074fb429c74d252b663ad0b988f8 | c7c9e20ed06e62377910d728b60519cdc55b9041 | test: fix flaky test-readline-interface
Move test reliant on timer triggering in a timely fahion from parallel
to sequential. The test can fail under high load when the timer is
triggered too late and the `\r` and `\n` are treated as separate lines.
PR-URL: https://github.com/nodejs/node/pull/15066
Reviewed-By: Refae... | [
{
"path": "test/parallel/test-readline-interface.js",
"patch": "@@ -291,30 +291,6 @@ function isWarned(emitter) {\n }), delay * 2);\n }\n \n- // Emit one line events when the delay between \\r and \\n is\n- // over the default crlfDelay but within the setting value\n- {\n- const fi = new FakeInp... | 2017-08-28T20:15:24 |
golang/go | 1f325af4dd6c07f899da0a7c0512a7d470cebf9f | 796786cd0cc1ed71da65fe9f1760b390b189c5cd | cmd/link: fix SCONST symbol handling on darwin
Don't include SCONST symbols in the symbol table when
NotInSymbolTable is set. This is what the old code (genasmsym)
does.
In fact, SCONST symbol is only emitted by the field tracking
code, and is always NotInSymbolTable. So we should just not
include them at all, or not... | [
{
"path": "src/cmd/link/internal/ld/macho.go",
"patch": "@@ -798,7 +798,7 @@ func collectmachosyms(ctxt *Link) {\n \t\t\tcontinue\n \t\t}\n \t\tt := ldr.SymType(s)\n-\t\tif t >= sym.SELFRXSECT && t < sym.SXREF { // data sections handled in dodata\n+\t\tif t >= sym.SELFRXSECT && t < sym.SXREF || t == sym.SCO... | 2020-05-14T16:16:10 |
huggingface/transformers | c430d6eaee1897c3dfb18ecfcab806f8e3b9de93 | 7b702836af33bb6399d7a9aabf6d803829222055 | [Docs] Fix bad doc: replace save with logging (#28855)
Fix bad doc: replace save with logging | [
{
"path": "src/transformers/training_args.py",
"patch": "@@ -2421,9 +2421,9 @@ def set_logging(\n strategy (`str` or [`~trainer_utils.IntervalStrategy`], *optional*, defaults to `\"steps\"`):\n The logging strategy to adopt during training. Possible values are:\n \n- ... | 2024-02-05T02:38:08 |
vuejs/vue | 075f215edfff12b50b80d9e5cd230548bb98538a | 15c5c43ca65443a463013010f9d55ce54b0f4e59 | wip: onTrack/onTrigger debugger options | [
{
"path": "src/core/observer/array.ts",
"patch": "@@ -3,6 +3,7 @@\n * dynamically accessing methods on Array prototype\n */\n \n+import { TriggerOpTypes } from '../../v3'\n import { def } from '../util/index'\n \n const arrayProto = Array.prototype\n@@ -39,7 +40,15 @@ methodsToPatch.forEach(function (meth... | 2022-05-29T07:39:49 |
ggml-org/llama.cpp | 79068501fac9a74cca7129a8e5a8281b410a853e | 0e4a0cf2fae667d3efcf52f2f52398779d986b1d | Prevent premature submission on IME input (#16673)
* fix: Prevent premature submission on IME input
* chore: update webui static build
* refactor: Put IME completion checker in a helper function and add checking for `KeyboardEvent.eventKey === 229`
* chore: update webui static build
* chore: update webui static bu... | [
{
"path": "tools/server/webui/src/lib/components/app/chat/ChatForm/ChatForm.svelte",
"patch": "@@ -26,6 +26,7 @@\n \t\tMimeTypeImage,\n \t\tMimeTypeText\n \t} from '$lib/enums/files';\n+\timport { isIMEComposing } from '$lib/utils/is-ime-composing';\n \n \tinterface Props {\n \t\tclass?: string;\n@@ -97,7 +... | 2025-10-20T12:21:12 |
nodejs/node | c7c9e20ed06e62377910d728b60519cdc55b9041 | 08984b26d351614fe4af0f582acb53c9b43dfda1 | src: fix compiler warnings in node_perf.cc
Currently, there are a few compiler warnings generated from node_perf.cc
regarding unused return values:
../src/node_perf.cc:58:3: warning: ignoring return value of function
declared with warn_unused_result attribute [-Wunused-result]
env->performance_entry_callback()->Cal... | [
{
"path": "src/node_perf.cc",
"patch": "@@ -57,7 +57,7 @@ void PerformanceEntry::NotifyObservers(Environment* env,\n Local<Value> argv = entry->object();\n env->performance_entry_callback()->Call(context,\n v8::Undefined(isolate),\n- ... | 2017-08-31T08:00:24 |
golang/go | 796786cd0cc1ed71da65fe9f1760b390b189c5cd | 364a05e2feab48611bb5e4f26f47a02b9b49a988 | runtime: make maxOffAddr reflect the actual address space upper bound
Currently maxOffAddr is defined in terms of the whole 64-bit address
space, assuming that it's all supported, by using ^uintptr(0) as the
maximal address in the offset space. In reality, the maximal address in
the offset space is (1<<heapAddrBits)-1... | [
{
"path": "src/runtime/export_test.go",
"patch": "@@ -876,13 +876,9 @@ func FreePageAlloc(pp *PageAlloc) {\n // 64 bit and 32 bit platforms, allowing the tests to share code\n // between the two.\n //\n-// On AIX, the arenaBaseOffset is 0x0a00000000000000. However, this\n-// constant can't be used here beca... | 2020-05-12T16:08:50 |
vuejs/vue | 15c5c43ca65443a463013010f9d55ce54b0f4e59 | 9fb4f7d0702d34ccfabe59fa4f9713ee9755ab58 | wip: onTrack debugger option | [
{
"path": "src/core/instance/state.ts",
"patch": "@@ -30,6 +30,7 @@ import {\n isFunction\n } from '../util/index'\n import type { Component } from 'typescript/component'\n+import { TrackOpTypes } from '../../v3'\n \n const sharedPropertyDefinition = {\n enumerable: true,\n@@ -254,6 +255,14 @@ function ... | 2022-05-29T07:05:35 |
huggingface/transformers | a7cb92aa030bc4dde3ea82aad849e783d15f470a | 0e75aeefaf4beeb7a5bb6a1f05b83ab99e045a24 | fix / skip (for now) some tests before switch to torch 2.2 (#28838)
* fix / skip some tests before we can switch to torch 2.2
* style
---------
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": "tests/models/mega/test_modeling_mega.py",
"patch": "@@ -19,6 +19,7 @@\n from transformers import MegaConfig, is_torch_available\n from transformers.testing_utils import (\n TestCasePlus,\n+ is_flaky,\n require_torch,\n require_torch_fp16,\n slow,\n@@ -534,6 +535,18 @@ def setUp... | 2024-02-02T13:11:50 |
ggml-org/llama.cpp | 0e4a0cf2fae667d3efcf52f2f52398779d986b1d | 13f2cfad4170c096c51a02c24a6a158cb47f1480 | Import/Export UX improvements (#16619)
* webui : added download action (#13552)
* webui : import and export (for all conversations)
* webui : fixed download-format, import of one conversation
* webui : add ExportedConversations type for chat import/export
* feat: Update naming & order
* chore: Linting
* feat: Im... | [
{
"path": "tools/server/webui/src/lib/components/app/chat/ChatSettings/ChatSettingsDialog.svelte",
"patch": "@@ -9,9 +9,11 @@\n \t\tSun,\n \t\tMoon,\n \t\tChevronLeft,\n-\t\tChevronRight\n+\t\tChevronRight,\n+\t\tDatabase\n \t} from '@lucide/svelte';\n \timport { ChatSettingsFooter, ChatSettingsFields } fro... | 2025-10-20T11:29:14 |
vuejs/vue | b4c511da8f82d4bf130284a5242ea745cf8c7ae1 | 54f5f9bad6350993b176dedd60ce118a47887c56 | chore: fix unit tests | [
{
"path": "src/core/observer/index.ts",
"patch": "@@ -19,6 +19,8 @@ import { isReadonly, isRef } from '../../v3'\n \n const arrayKeys = Object.getOwnPropertyNames(arrayMethods)\n \n+const NO_INIITIAL_VALUE = {}\n+\n /**\n * In some cases we may want to disable observation inside a component's\n * update c... | 2022-05-28T18:33:46 |
huggingface/transformers | 0e75aeefaf4beeb7a5bb6a1f05b83ab99e045a24 | ec29d25d9f7109f3fdaadfa51515eb6745a136ba | Fix issues caused by natten (#28834)
try
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": ".circleci/create_circleci_config.py",
"patch": "@@ -470,7 +470,7 @@ def job_name(self):\n \"pip install -U --upgrade-strategy eager 'git+https://github.com/facebookresearch/detectron2.git'\",\n \"sudo apt install tesseract-ocr\",\n \"pip install -U --upgrade-strategy eager... | 2024-02-02T12:11:48 |
golang/go | 364a05e2feab48611bb5e4f26f47a02b9b49a988 | f073395b73e2e5926a7bb996094a3e49ebc1d4dc | cmd/compile: add test for issue 37246
CL 233857 fixed the underlying issue for #37246,
which had arisen again as #38916.
Add the test case from #37246 to ensure it stays fixed.
Fixes #37246
Change-Id: If7fd75a096d2ce4364dc15509253c3882838161d
Reviewed-on: https://go-review.googlesource.com/c/go/+/233941
Run-TryBot:... | [
{
"path": "test/fixedbugs/issue37246.go",
"patch": "@@ -0,0 +1,23 @@\n+// compile\n+\n+// Copyright 2020 The Go Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style\n+// license that can be found in the LICENSE file.\n+\n+package main\n+\n+func main() {\n+\tvar n, a, b int64... | 2020-05-14T14:51:10 |
nodejs/node | b12d77977e5efe6542e2acc5143a2e697590e638 | 324aa6488f26d221f5e8b2b1778539bb6d86f104 | errors,tools: alphabetize-errors lint rule
To make sure errors in lib/internal/errors.js (are defined via `E`)
will stay in alphabetical order going forward.
PR-URL: https://github.com/nodejs/node/pull/15083
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Danie... | [
{
"path": "lib/internal/errors.js",
"patch": "@@ -1,3 +1,5 @@\n+/* eslint-enable alphabetize-errors */\n+\n 'use strict';\n \n // The whole point behind this internal module is to allow Node.js to no",
"additions": 2,
"deletions": 0,
"language": "JavaScript"
},
{
"path": "tools/eslint-ru... | 2017-08-26T01:15:43 |
vuejs/vue | 54f5f9bad6350993b176dedd60ce118a47887c56 | c9136b12759cfa873d82130f5c07056c018807b2 | chore: fix ssr tests | [
{
"path": "src/core/instance/state.ts",
"patch": "@@ -60,7 +60,8 @@ export function initState(vm: Component) {\n if (opts.data) {\n initData(vm)\n } else {\n- observe((vm._data = {}))!.vmCount++\n+ const ob = observe((vm._data = {}))\n+ ob && ob.vmCount++\n }\n if (opts.computed) initCo... | 2022-05-28T18:26:36 |
ggml-org/llama.cpp | 13f2cfad4170c096c51a02c24a6a158cb47f1480 | 06332e28672356b964d6dfc2ba4657e20581cd43 | Enable per-conversation loading states to allow having parallel conversations (#16327)
* feat: Per-conversation loading states and tracking streaming stats
* chore: update webui build output
* refactor: Chat state management
Consolidates loading state management by using a global `isLoading` store synchronized with... | [
{
"path": "tools/server/webui/package-lock.json",
"patch": "@@ -50,6 +50,7 @@\n \t\t\t\t\"eslint-plugin-svelte\": \"^3.0.0\",\n \t\t\t\t\"fflate\": \"^0.8.2\",\n \t\t\t\t\"globals\": \"^16.0.0\",\n+\t\t\t\t\"http-server\": \"^14.1.1\",\n \t\t\t\t\"mdast\": \"^3.0.0\",\n \t\t\t\t\"mdsvex\": \"^0.12.3\",\n \t... | 2025-10-20T10:41:13 |
huggingface/transformers | ec29d25d9f7109f3fdaadfa51515eb6745a136ba | 1efb21c76466daa0afe39f8846f83eb1c653e588 | Add missing None check for hf_quantizer (#28804)
* Add missing None check for hf_quantizer
* Add test, fix logic.
* make style
* Switch test model to Mistral
* Comment
* Update tests/test_modeling_utils.py
---------
Co-authored-by: Younes Belkada <49240599+younesbelkada@users.noreply.github.com> | [
{
"path": "src/transformers/modeling_utils.py",
"patch": "@@ -3727,10 +3727,12 @@ def _fix_key(key):\n \n if param.device == torch.device(\"meta\"):\n value = torch.empty(*param.size(), dtype=target_dtype)\n- if getattr(\n- hf_qua... | 2024-02-02T08:34:12 |
golang/go | f073395b73e2e5926a7bb996094a3e49ebc1d4dc | e3ccf406231ece59975d999f18f37d1615112aaf | cmd/compile: fix tuple selector bug in CSE pass
When tuple generators and selectors are eliminated as part of the
CSE pass we may end up with tuple selectors that are in different
blocks to the tuple generators that they correspond to. This breaks
the invariant that tuple generators and their corresponding
selectors m... | [
{
"path": "src/cmd/compile/internal/ssa/cse.go",
"patch": "@@ -190,43 +190,6 @@ func cse(f *Func) {\n \t\t}\n \t}\n \n-\t// if we rewrite a tuple generator to a new one in a different block,\n-\t// copy its selectors to the new generator's block, so tuple generator\n-\t// and selectors stay together.\n-\t//... | 2020-05-13T15:46:16 |
rust-lang/rust | c5f49cf07194185a02a5dd353d3125775fe5ed82 | 9e507b21171bd9fd39c00e99312b5430ff4b0ad4 | fix: Stabilize sort order of `related_tests` | [
{
"path": "src/tools/rust-analyzer/crates/ide/src/runnables.rs",
"patch": "@@ -4,16 +4,16 @@ use arrayvec::ArrayVec;\n use ast::HasName;\n use cfg::{CfgAtom, CfgExpr};\n use hir::{\n- db::HirDatabase, sym, AsAssocItem, AttrsWithOwner, HasAttrs, HasCrate, HasSource, HirFileIdExt,\n- ModPath, Name, Path... | 2025-02-16T12:11:50 |
nodejs/node | 324aa6488f26d221f5e8b2b1778539bb6d86f104 | ec599b87ae98e90b615cb6133b21a9f93ad9e4aa | errors: alphabetize error codes
PR-URL: https://github.com/nodejs/node/pull/15083
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com>
Reviewed-By: Refael Ackermann <refack@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@b... | [
{
"path": "lib/internal/errors.js",
"patch": "@@ -110,18 +110,18 @@ E('ERR_CONSOLE_WRITABLE_STREAM',\n E('ERR_CPU_USAGE', 'Unable to obtain cpu usage %s');\n E('ERR_DNS_SET_SERVERS_FAILED', (err, servers) =>\n `c-ares failed to set servers: \"${err}\" [${servers}]`);\n-E('ERR_FALSY_VALUE_REJECTION', 'Prom... | 2017-08-26T02:43:35 |
vuejs/vue | eb20b8228f1a9010f0cf3ebfbe227a4eeb984223 | a16271280a164d4e9ef4af9bb7bd5e58e5cff2dc | ci: fix ci | [
{
"path": ".github/workflows/ci.yml",
"patch": "@@ -67,7 +67,7 @@ jobs:\n - name: Run transition tests\n run: pnpm run test:transition\n \n- lint-and-test-dts:\n+ type-test:\n runs-on: ubuntu-latest\n steps:\n - uses: actions/checkout@v2\n@@ -86,8 +86,5 @@ jobs:\n - name:... | 2022-05-25T18:36:51 |
ggml-org/llama.cpp | 06332e28672356b964d6dfc2ba4657e20581cd43 | 72d53e6c4decee8b339e49aed8cc0e234b9639dc | llama-batch: fix build fails with `-Werror=missing-braces` (#16614)
## Why it failed
When compiling with strict compiler flags (-Wmissing-braces -Werror=missing-braces),
the build fails with the following error:
```
cmake \
-S . \
-B ../llama.cpp.build \
--preset=x64-linux-gcc-debug \
-DCMAKE_INSTALL_PREFIX=... | [
{
"path": "src/llama-batch.h",
"patch": "@@ -123,7 +123,7 @@ class llama_batch_allocr {\n uint32_t n_seq_max;\n uint32_t n_outputs;\n \n- std::array<llama_seq_id, 1> seq_id_0 = { 0 }; // default sequence id\n+ std::array<llama_seq_id, 1> seq_id_0 = {{ 0 }}; // default sequence id\n \n std:... | 2025-10-20T08:27:09 |
huggingface/transformers | 721ee783ca1b62bcbe85c96bfa5af5ef4a414de5 | 2418c64a1cfe317bb8d238d3670693799276d16d | [Docs] Fix spelling and grammar mistakes (#28825)
* Fix typos and grammar mistakes in docs and examples
* Fix typos in docstrings and comments
* Fix spelling of `tokenizer` in model tests
* Remove erroneous spaces in decorators
* Remove extra spaces in Markdown link texts | [
{
"path": "CONTRIBUTING.md",
"patch": "@@ -295,7 +295,7 @@ repository such as [`hf-internal-testing`](https://huggingface.co/hf-internal-te\n to host these files and reference them by URL. We recommend placing documentation\n related images in the following repository:\n [huggingface/documentation-images](h... | 2024-02-02T07:45:00 |
golang/go | 14bec27743365511495eadb2accf76efaccbc525 | b819adfe6d3bb53b1c863d5c5a8b64b89698d9f7 | cmd/go: do not ignore permission errors when matching patterns
While reviewing CL 228784, I noticed that various filepath.WalkFunc
implementations within cmd/go were dropping non-nil errors.
Those errors turn out to be significant, at least in some cases: for
example, they can cause packages to appear to be missing w... | [
{
"path": "src/cmd/go/go_test.go",
"patch": "@@ -829,10 +829,9 @@ func removeAll(dir string) error {\n \t// module cache has 0444 directories;\n \t// make them writable in order to remove content.\n \tfilepath.Walk(dir, func(path string, info os.FileInfo, err error) error {\n-\t\tif err != nil {\n-\t\t\tret... | 2020-05-06T20:22:15 |
rust-lang/rust | 6dd477ad5ad0e83f60892425170f828c718f6332 | 8cef0b68096c6bb9f4cd0579af236531b1493ee1 | Add `--allow-no-vcs` to `cargo dev dogfood --fix`
Some developers might prefer to use alternate VCS, such as Jujutsu, which
are not detected by `cargo fix`. This forwards the `--allow-no-vcs`
command line argument to `cargo fix`. | [
{
"path": "clippy_dev/src/dogfood.rs",
"patch": "@@ -4,7 +4,8 @@ use std::process::Command;\n /// # Panics\n ///\n /// Panics if unable to run the dogfood test\n-pub fn dogfood(fix: bool, allow_dirty: bool, allow_staged: bool) {\n+#[allow(clippy::fn_params_excessive_bools)]\n+pub fn dogfood(fix: bool, allow... | 2025-02-16T11:43:08 |
nodejs/node | 4bd44c11a52ddfbe9200273b5c160dc60b5687eb | 2ef0f007a4ac969d0225d7159e495e43b1ffad71 | repl: force editorMode in .load
The `.load` command would fail with any file that contains
multiline `.` operator expressions. This was particularly
noticeable when chaining promises or multi-line arrow
expressions.
This change Forces the REPL to be in `editorMode` while loading
a file from disk using the `.load` com... | [
{
"path": "lib/repl.js",
"patch": "@@ -1254,13 +1254,16 @@ function defineDefaultCommands(repl) {\n try {\n var stats = fs.statSync(file);\n if (stats && stats.isFile()) {\n+ this.editorMode = true;\n+ REPLServer.super_.prototype.setPrompt.call(this, '');\n ... | 2017-08-16T15:31:57 |
vuejs/vue | e1e5a75540c31d847000c08f81a4a662eca1ebb5 | f50a1b84d9a0bd6be199847122f8af7cc177dee1 | wip: fix entry with compiler | [
{
"path": "src/platforms/web/entry-runtime-with-compiler-esm.ts",
"patch": "@@ -1,4 +1,4 @@\n-import Vue from './entry-runtime-with-compiler'\n+import Vue from './runtime-with-compiler'\n \n export default Vue\n ",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
"path": "src/p... | 2022-05-25T07:07:46 |
huggingface/transformers | 2418c64a1cfe317bb8d238d3670693799276d16d | abbffc4525566a48a9733639797c812301218b83 | [docs] HfQuantizer (#28820)
* tidy
* fix path | [
{
"path": "docs/source/en/hf_quantizer.md",
"patch": "@@ -20,7 +20,6 @@ Transformers supports and integrates many quantization methods such as QLoRA, GP\n \n This guide will show you how to integrate a new quantization method with the [`HfQuantizer`] class.\n \n-\n ## Requirements\n \n Before integrating a ... | 2024-02-02T07:22:18 |
ggml-org/llama.cpp | 2330de7b847ca84eac766df372c604c26db72747 | 7062dd8460685d6700ed7621e50a22c6f3400ca3 | SYCL: Add support for FLOOR,CEIL,ROUND and TRUNC unary operators (#16613)
* SYCL: Add support for FLOOR,CEIL,ROUND and TRUNC unary operators
Clean up unrelated changes from previous commit
* Chore: remove empty lines and fix indentation
* Clean up: remove leftover blank lines and fix spacing
* chore: fix trailing ... | [
{
"path": "docs/ops.md",
"patch": "@@ -22,7 +22,7 @@ Legend:\n | ARANGE | ❌ | ✅ | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | ❌ |\n | ARGMAX | ❌ | ✅ | ✅ | ✅ | ✅ | ❌ | ✅ | ✅ | ❌ |\n | ARGSORT | ❌ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ |\n-| ... | 2025-10-20T08:08:32 |
golang/go | 9c3c8c1b12747dc84ac2c0efdf265f8a49ae9d88 | ef3a41c0ffbc794aa56ac08ea09341200ae9a39a | [dev.link] cmd/link: minor fix for -v log
Now we no longer create loader.Syms array on most platforms. Use
NSym(), instead of len(Syms), for the number of symbols in -v
log.
Change-Id: I8538c00d9c196b701d154eb7d04d911ee2cad73c
Reviewed-on: https://go-review.googlesource.com/c/go/+/233777
Run-TryBot: Cherry Zhang <che... | [
{
"path": "src/cmd/link/internal/ld/main.go",
"patch": "@@ -339,7 +339,7 @@ func Main(arch *sys.Arch, theArch Arch) {\n \tbench.Start(\"hostlink\")\n \tctxt.hostlink()\n \tif ctxt.Debugvlog != 0 {\n-\t\tctxt.Logf(\"%d symbols, %d reachable\\n\", len(ctxt.loader.Syms), ctxt.loader.NReachableSym())\n+\t\tctxt... | 2020-05-13T00:16:07 |
vuejs/vue | 58608a2f26edb64ec4bc48139b6bea14789721b5 | 04b584ffc17db74b4b6330feef9847e936fbb325 | chore: fix ci script | [
{
"path": ".github/workflows/ci.yml",
"patch": "@@ -63,6 +63,8 @@ jobs:\n \n - name: Run e2e tests\n run: pnpm run test:e2e\n+\n+ - name: Run transition tests\n run: pnpm run test:transition\n \n lint-and-test-dts:",
"additions": 2,
"deletions": 0,
"language": "YAML"... | 2022-05-23T07:16:32 |
nodejs/node | 2ef0f007a4ac969d0225d7159e495e43b1ffad71 | 204d94fc756218bfeee921905c8be488027f9627 | test: split path tests into multiple files
Create one file for testing each function of the path module.
Keep general error tests and tests for constant properties in
test-path.js.
PR-URL: https://github.com/nodejs/node/pull/15093
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Benjamin Gruenbaum <benjaming... | [
{
"path": "test/parallel/test-path-basename.js",
"patch": "@@ -0,0 +1,70 @@\n+'use strict';\n+require('../common');\n+const assert = require('assert');\n+const path = require('path');\n+\n+assert.strictEqual(path.basename(__filename), 'test-path-basename.js');\n+assert.strictEqual(path.basename(__filename, ... | 2017-08-30T13:34:45 |
huggingface/transformers | abbffc4525566a48a9733639797c812301218b83 | 23ea6743f2a9b4c2f9bf14cc752d12d15b6b8506 | [docs] Backbone (#28739)
* backbones
* fix path
* fix paths
* fix code snippet
* fix links | [
{
"path": "docs/source/en/autoclass_tutorial.md",
"patch": "@@ -65,6 +65,48 @@ For vision tasks, an image processor processes the image into the correct input\n >>> image_processor = AutoImageProcessor.from_pretrained(\"google/vit-base-patch16-224\")\n ```\n \n+## AutoBackbone\n+\n+<div style=\"text-align: ... | 2024-02-01T17:16:16 |
ggml-org/llama.cpp | 7062dd8460685d6700ed7621e50a22c6f3400ca3 | 0398752dd450dfabdd1b9e289f6364c2600f6ab5 | llama-context: only warn on pooling_type when user specified (#16674)
The unexpeced pooling_type warning was incorrectly shown when users did not
specify the --pooling-type parameter. In this case, the parameter
defaults to `LLAMA_POOLING_TYPE_UNSPECIFIED (-1)`, and the code
automatically applies the model's default p... | [
{
"path": "src/llama-context.cpp",
"patch": "@@ -2346,7 +2346,8 @@ llama_context * llama_init_from_model(\n return nullptr;\n }\n \n- if (params.pooling_type != model->hparams.pooling_type) {\n+ if (params.pooling_type != LLAMA_POOLING_TYPE_UNSPECIFIED &&\n+ params.pooling_type != m... | 2025-10-20T07:44:21 |
vuejs/vue | cca88b9919cb0773895bbcef649c61a206fd0a32 | 76188513233b9640188b3af40a395a49c1ac75be | ci: fix e2e build script | [
{
"path": "package.json",
"patch": "@@ -25,7 +25,7 @@\n \"test\": \"npm run lint && npm run ts-check && npm run test:types && npm run test:unit && npm run test:e2e\",\n \"test:unit\": \"vitest run test/unit\",\n \"test:ssr\": \"npm run build:ssr && vitest run test/ssr\",\n- \"test:e2e\": \"np... | 2022-05-20T10:24:45 |
golang/go | 810c27e9be647ce4da8930ff3625a856041ae5b2 | cb11c981df7b4dc40550ab71cc097c25d24d7a71 | cmd/vendor: update vendored x/arch/ppc64
This updates vendored x/arch/ppc64 to pick up new instructions
and fixes for objdump on ppc64/ppc64le.
Change-Id: I8262e8a2af09057bbd21b39c9fcf37230029cfe8
Reviewed-on: https://go-review.googlesource.com/c/go/+/233364
Reviewed-by: Cherry Zhang <cherryyz@google.com>
Reviewed-by... | [
{
"path": "src/cmd/go.mod",
"patch": "@@ -5,7 +5,7 @@ go 1.15\n require (\n \tgithub.com/google/pprof v0.0.0-20200229191704-1ebb73c60ed3\n \tgithub.com/ianlancetaylor/demangle v0.0.0-20200414190113-039b1ae3a340 // indirect\n-\tgolang.org/x/arch v0.0.0-20200312215426-ff8b605520f4\n+\tgolang.org/x/arch v0.0.0... | 2020-05-12T14:07:38 |
nodejs/node | 204d94fc756218bfeee921905c8be488027f9627 | 219932a9f77f8a013d50067e931e6c877f9024d3 | assert: handle errors properly with deep*Equal
PR-URL: https://github.com/nodejs/node/pull/15001
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Refael Ackermann <refack@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com> | [
{
"path": "doc/api/assert.md",
"patch": "@@ -47,12 +47,12 @@ Only [enumerable \"own\" properties][] are considered. The\n non-enumerable properties — for such checks, consider using\n [`assert.deepStrictEqual()`][] instead. This can lead to some\n potentially surprising results. For example, the following e... | 2017-08-19T05:39:03 |
ggml-org/llama.cpp | 4f73d0a95120687e2c527739f771330a5271259a | cec5edbcaec69bbf6d5851cabce4ac148be41701 | ci : fix binaries release failure for s390x (binaries may not work yet) (#16664)
* devops: initial patch
Signed-off-by: Aaron Teo <aaron.teo1@ibm.com>
* devops: forgot the z15 suffix
Signed-off-by: Aaron Teo <aaron.teo1@ibm.com>
* devops: attempt at impl GGML_CPU_ALL_VARIANTS for s390x
Signed-off-by: Aaron Teo <a... | [
{
"path": "ggml/src/CMakeLists.txt",
"patch": "@@ -307,6 +307,10 @@ function(ggml_add_cpu_backend_variant tag_name)\n foreach (feat ${ARGN})\n set(GGML_INTERNAL_${feat} ON)\n endforeach()\n+ elseif (GGML_SYSTEM_ARCH STREQUAL \"s390x\")\n+ foreach (feat ${ARGN})\n+ ... | 2025-10-19T21:06:39 |
rust-lang/rust | b54269c2b1c858a489ea588b3679bd21f0d06bbb | 0a01cab09828310cc036d520e5b0d23ae236ab39 | fix: Stabilize sort order of runnables | [
{
"path": "src/tools/rust-analyzer/crates/ide/src/annotations.rs",
"patch": "@@ -1,6 +1,6 @@\n use hir::{HasSource, InFile, InRealFile, Semantics};\n use ide_db::{\n- defs::Definition, helpers::visit_file_defs, FileId, FilePosition, FileRange, FxHashSet,\n+ defs::Definition, helpers::visit_file_defs, ... | 2025-02-16T11:20:41 |
huggingface/transformers | 23ea6743f2a9b4c2f9bf14cc752d12d15b6b8506 | d98591a12bfa9a7faf97434545b302f646bc16a8 | Add models from deit (#28302)
* Add modelss
* Add 2 more models
* add models to tocrree
* Add modles
* Update docs/source/ja/model_doc/detr.md
Co-authored-by: Steven Liu <59462357+stevhliu@users.noreply.github.com>
* Update docs/source/ja/model_doc/deit.md
Co-authored-by: Steven Liu <59462357+stev... | [
{
"path": "docs/source/ja/_toctree.yml",
"patch": "@@ -300,6 +300,8 @@\n title: DeBERTa\n - local: model_doc/deberta-v2\n title: DeBERTa-v2\n+ - local: model_doc/dialogpt\n+ title: DialoGPT\n title: 文章モデル\n - isExpanded: false\n sections:\n@@ -317,6 +319,14 ... | 2024-02-01T17:15:55 |
golang/go | a0698a6b60952f80e2136df0699325b657ea0def | 8c1db77a92b1d17d3fe07999c5f20602a2080be9 | syscall/js: prepare IDs for the preset objects
Fixes #38899
Change-Id: Ib8131c3078c60dc3fe2cf0eaac45b25a4f6e4649
Reviewed-on: https://go-review.googlesource.com/c/go/+/232518
Run-TryBot: Hajime Hoshi <hajimehoshi@gmail.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Richard Musiol <neelance@gmail.com> | [
{
"path": "misc/wasm/wasm_exec.js",
"patch": "@@ -175,37 +175,19 @@\n \t\t\tconst storeValue = (addr, v) => {\n \t\t\t\tconst nanHead = 0x7FF80000;\n \n-\t\t\t\tif (typeof v === \"number\") {\n+\t\t\t\tif (typeof v === \"number\" && v !== 0) {\n \t\t\t\t\tif (isNaN(v)) {\n \t\t\t\t\t\tthis.mem.setUint32(add... | 2020-05-06T14:00:58 |
nodejs/node | 219932a9f77f8a013d50067e931e6c877f9024d3 | a517466aa7dcb7afe4864ab12d0f97e10a8d4ee0 | errors: convert 'fs'
covert lib/fs.js over to using lib/internal/errors.js
i have not addressed the cases that use errnoException(),
for reasons described in GH-12926
- throw the ERR_INVALID_CALLBACK error
when the the callback is invalid
- replace the ['object', 'string'] with
['string', 'object'] in the error c... | [
{
"path": "doc/api/errors.md",
"patch": "@@ -1136,6 +1136,11 @@ Used when an attempt is made to launch a Node.js process with an unknown\n by errors in user code, although it is not impossible. Occurrences of this error\n are most likely an indication of a bug within Node.js itself.\n \n+<a id=\"ERR_VALUE_O... | 2017-08-26T11:46:47 |
ggml-org/llama.cpp | ee09828cb057460b369576410601a3a09279e23c | e56abd2098dd2e2b0804691b93c13b48ae421627 | HIP: fix GPU_TARGETS (#16642) | [
{
"path": "ci/run.sh",
"patch": "@@ -75,7 +75,7 @@ if [ ! -z ${GG_BUILD_ROCM} ]; then\n exit 1\n fi\n \n- CMAKE_EXTRA=\"${CMAKE_EXTRA} -DAMDGPU_TARGETS=${GG_BUILD_AMDGPU_TARGETS}\"\n+ CMAKE_EXTRA=\"${CMAKE_EXTRA} -DGPU_TARGETS=${GG_BUILD_AMDGPU_TARGETS}\"\n fi\n \n if [ ! -z ${GG_BUILD_SYC... | 2025-10-18T12:47:32 |
rust-lang/rust | 345c313def0a559e7a29bc059c2e242ed398a760 | c3fe9e7e4d259759589f3431aaadf7ab35b9269f | fix docs for inherent str constructors | [
{
"path": "library/core/src/str/mod.rs",
"patch": "@@ -198,7 +198,7 @@ impl str {\n /// Basic usage:\n ///\n /// ```\n- /// use std::str;\n+ /// #![feature(inherent_str_constructors)]\n ///\n /// // some bytes, in a vector\n /// let sparkle_heart = vec![240, 159, 146, 150];\n@@... | 2025-02-16T11:02:06 |
huggingface/transformers | d98591a12bfa9a7faf97434545b302f646bc16a8 | e19c12e094678dd0b355c1bdd529d35abcb7b34c | [docs] fix some bugs about parameter description (#28806)
Co-authored-by: p_spozzhang <p_spozzhang@tencent.com> | [
{
"path": "examples/flax/image-captioning/run_image_captioning_flax.py",
"patch": "@@ -202,7 +202,7 @@ class ModelArguments:\n default=False,\n metadata={\n \"help\": (\n- \"Whether or not to allow for custom models defined on the Hub in their own modeling files. T... | 2024-02-01T16:59:29 |
golang/go | 8c1db77a92b1d17d3fe07999c5f20602a2080be9 | 910fee4ed55f1e9fa1386377c40f0b1eac63ee3f | internal/poll, os: loop on EINTR
Historically we've assumed that we can install all signal handlers
with the SA_RESTART flag set, and let the system restart slow functions
if a signal is received. Therefore, we don't have to worry about EINTR.
This is only partially true, and we've added EINTR checks already for
conn... | [
{
"path": "src/internal/poll/copy_file_range_linux.go",
"patch": "@@ -88,6 +88,12 @@ func copyFileRange(dst, src *FD, max int) (written int64, err error) {\n \t\treturn 0, err\n \t}\n \tdefer src.readUnlock()\n-\tn, err := unix.CopyFileRange(src.Sysfd, nil, dst.Sysfd, nil, max, 0)\n+\tvar n int\n+\tfor {\n+... | 2020-05-08T04:34:54 |
nodejs/node | 50ebac112429c4a8cf9438dac9d832530465d2bb | ed1ba4580b4abdc38047f4f74ab79ba0b71f3da4 | tools: add eslint rule for hasCrypto checking
The motivation for this commit is to pick up early on missing checks for
crypto support (when Node is built --without-ssl).
There are currently usages of common.hasCrypto which are not just for
detecting if crypto support is available and then skip the test in
question. F... | [
{
"path": "test/.eslintrc.yaml",
"patch": "@@ -10,5 +10,6 @@ rules:\n prefer-assert-iferror: error\n prefer-assert-methods: error\n prefer-common-mustnotcall: error\n+ crypto-check: error\n ## common module is mandatory in tests\n required-modules: [error, common]",
"additions": 1,
"delet... | 2017-06-20T06:30:47 |
ggml-org/llama.cpp | 81387858f1fbcc1acedbd308486e1016618ca8f8 | 66b0dbcb2d462e7b70ba5a69ee8c3899ac2efb1c | opencl: transposed gemm/gemv moe kernel with mxfp4,f32 (#16602)
* opencl: transposed gemm/gemv moe kernel with mxfp4,f32
* add restore kernel for moe transpose
* fix trailing whitespaces
* resolve compilation warnings | [
{
"path": "ggml/src/ggml-opencl/CMakeLists.txt",
"patch": "@@ -91,6 +91,8 @@ set(GGML_OPENCL_KERNELS\n mul_mv_id_q8_0_f32_flat\n mul_mv_id_mxfp4_f32\n mul_mv_id_mxfp4_f32_flat\n+ gemm_moe_mxfp4_f32\n+ gemv_moe_mxfp4_f32\n mul_mm_f32_f32_l4_lm\n mul_mm_f16_f32_l4_lm\n mul_mm_q8_... | 2025-10-18T00:55:32 |
vuejs/vue | 5fb1c9d62a08334393321c0b94aaa7cd07c2b40d | 7136e19bc82d385ed0dd817fb284ed5f26c76f30 | test: fix ssr test imports | [
{
"path": "test/ssr/ssr-bundle-render.spec.ts",
"patch": "@@ -1,7 +1,7 @@\n import LRU from 'lru-cache'\n import { compileWithWebpack } from './compile-with-webpack'\n-import { createBundleRenderer } from '../../packages/vue-server-renderer'\n-import VueSSRServerPlugin from '../../packages/vue-server-render... | 2022-05-20T07:16:14 |
rust-lang/rust | 930918d827f2598098ec8c6bf9aaa5a1e061fb3b | 0a01cab09828310cc036d520e5b0d23ae236ab39 | Improve error recovery when method-calling an assoc function | [
{
"path": "src/tools/rust-analyzer/crates/hir-ty/src/infer.rs",
"patch": "@@ -236,7 +236,7 @@ pub enum InferenceDiagnostic {\n name: Name,\n /// Contains the type the field resolves to\n field_with_same_name: Option<Ty>,\n- assoc_func_with_same_name: Option<AssocItemId>,\n+ ... | 2025-02-16T09:51:58 |
huggingface/transformers | e19c12e094678dd0b355c1bdd529d35abcb7b34c | 7bc6d76396f4a603161539aefaa6207d61260f60 | enable graident checkpointing in DetaObjectDetection and add tests in Swin/Donut_Swin (#28615)
* enable graident checkpointing in DetaObjectDetection
* fix missing part in original DETA
* make style
* make fix-copies
* Revert "make fix-copies"
This reverts commit 4041c86c29248f1673e8173b677c20b5a4511358... | [
{
"path": "src/transformers/models/deformable_detr/modeling_deformable_detr.py",
"patch": "@@ -1050,6 +1050,7 @@ class DeformableDetrPreTrainedModel(PreTrainedModel):\n main_input_name = \"pixel_values\"\n supports_gradient_checkpointing = True\n _no_split_modules = [r\"DeformableDetrConvEncoder... | 2024-02-01T15:07:44 |
golang/go | 910fee4ed55f1e9fa1386377c40f0b1eac63ee3f | 2cb10d42b762f5f47dd239a2c114d1840dc5cfbf | syscall: append to environment in tests, don't clobber it
Fixes https://gcc.gnu.org/PR95061
Change-Id: I3cddfe5920b6da572ddeafa201617003c25175e6
Reviewed-on: https://go-review.googlesource.com/c/go/+/233318
Run-TryBot: Ian Lance Taylor <iant@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Brad ... | [
{
"path": "src/syscall/exec_linux_test.go",
"patch": "@@ -355,7 +355,7 @@ func TestUnshareMountNameSpace(t *testing.T) {\n \t}\n \n \tcmd := exec.Command(os.Args[0], \"-test.run=TestUnshareMountNameSpaceHelper\", d)\n-\tcmd.Env = []string{\"GO_WANT_HELPER_PROCESS=1\"}\n+\tcmd.Env = append(os.Environ(), \"GO... | 2020-05-11T18:01:16 |
nodejs/node | ed1ba4580b4abdc38047f4f74ab79ba0b71f3da4 | 676522fc025b9ecdfb02bc72cddd8cf7a81f9ac1 | repl: remove REPLServer.createContext side effects
The internal method `REPLServer.createContext()` had
unexpected side effects. When called, the value for the
`underscoreAssigned` and `lines` properties were reset.
This change ensures that those properties are not modified
when a context is created.
Fixes: https://... | [
{
"path": "lib/repl.js",
"patch": "@@ -644,14 +644,18 @@ REPLServer.prototype.createContext = function() {\n context.module = module;\n context.require = require;\n \n+ internalModule.addBuiltinLibsToObject(context);\n+\n+ return context;\n+};\n \n+REPLServer.prototype.resetContext = function() {\n+ ... | 2017-07-15T03:23:02 |
vuejs/vue | 23bd3b2ca31a193f79a5d1a03f89131b4977e41b | 23b1fb550373e4784f0ac4c25219f4df25f1f527 | types: fix types | [
{
"path": "src/core/global-api/extend.ts",
"patch": "@@ -17,7 +17,7 @@ export function initExtend(Vue: GlobalAPI) {\n /**\n * Class inheritance\n */\n- Vue.extend = function (extendOptions: any): Component {\n+ Vue.extend = function (extendOptions: any): typeof Component {\n extendOptions = ex... | 2022-05-20T03:11:47 |
ggml-org/llama.cpp | 66b0dbcb2d462e7b70ba5a69ee8c3899ac2efb1c | 41386cf365d894134ee0813d15e2f5d76f6a4d8e | llama-model: fix insonsistent ctxs <-> bufs order (#16581) | [
{
"path": "src/llama-model.cpp",
"patch": "@@ -421,11 +421,8 @@ struct llama_model::impl {\n llama_mlocks mlock_bufs;\n llama_mlocks mlock_mmaps;\n \n- // contexts where the model tensors metadata is stored\n- std::vector<ggml_context_ptr> ctxs;\n-\n- // the model memory buffers for the ten... | 2025-10-17T15:41:09 |
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.