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 | 758ac371ab930734053ed226ac62681e62ab8eea | 8381408048018aa2b6eec874f3161b4641191522 | misc/wasm: make wasm_exec more robust against uncommon environments
JavaScript environments are quite unpredictable because bundlers add
mocks for compatibility and libraries can polute the global namespace.
Detect more of such situations:
- Add check that require("fs") returns an object.
- Fix check that require("fs... | [
{
"path": "misc/wasm/wasm_exec.js",
"patch": "@@ -11,6 +11,7 @@\n \t// - Node.js\n \t// - Electron\n \t// - Parcel\n+\t// - Webpack\n \n \tif (typeof global !== \"undefined\") {\n \t\t// global already exists\n@@ -28,7 +29,7 @@\n \n \tif (!global.fs && global.require) {\n \t\tconst fs = require(\"fs\");\n-\... | 2020-08-15T19:15:35 |
ollama/ollama | 0c5a454361c57f300254971b109e5e4ec937ebd3 | 7dee25a07f6057a4afd42097357ffbdae0fdaacc | fix model type for 70b | [
{
"path": "llm/gguf.go",
"patch": "@@ -99,6 +99,12 @@ func (llm *ggufModel) ModelType() string {\n \tswitch llm.ModelFamily() {\n \tcase \"llama\":\n \t\tif blocks, ok := llm.kv[\"llama.block_count\"].(uint32); ok {\n+\t\t\theads, headsOK := llm.kv[\"llama.head_count\"].(uint32)\n+\t\t\theadKVs, headsKVsOK ... | 2023-09-12T17:52:57 |
huggingface/transformers | bf9a7ab9321fc606db8a2d5134d1856a5798a611 | 65657d5d8adbd61fc44f3ca7e626096cb6931863 | Fix `RecurrentGemmaIntegrationTest.test_2b_sample` (#30222)
fix
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": "tests/models/recurrent_gemma/test_modeling_recurrent_gemma.py",
"patch": "@@ -462,7 +462,7 @@ def test_2b_generate(self):\n @require_read_token\n def test_2b_sample(self):\n set_seed(0)\n- EXPECTED_TEXT = ['Where is Paris ?\\n\\nChoose the word or phrase that is closest in ... | 2024-04-12T15:53:25 |
ggml-org/llama.cpp | 8e3ead6e4d1a4c455c8dac1b4690c49366769856 | 12ee1763a6f6130ce820a366d220bbadff54b818 | model-conversion : add device option to run-org-model.py (#18318)
* model-conversion : add device option to run-org-model.py
This commit refactors the `run-org-model.py` script to include a
`--device` argument, to allow users to specify the device on which to
run the model (e.g., cpu, cuda, mps, auto).
It also extrac... | [
{
"path": "examples/model-conversion/Makefile",
"patch": "@@ -25,6 +25,8 @@ define quantize_model\n \t@echo \"Export the quantized model path to $(2) variable in your environment\"\n endef\n \n+DEVICE ?= auto\n+\n ###\n ### Casual Model targets/recipes\n ###\n@@ -53,7 +55,7 @@ causal-convert-mm-model:\n \n ... | 2025-12-23T13:07:25 |
nodejs/node | cd64b4166b4001bdcd45ac808e2c9715956d52e1 | c2cf47a23953f4fed7275bf37371d258113035c2 | test: use fixtures in test-process-warnings
PR-URL: https://github.com/nodejs/node/pull/15869
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Luigi Pinca <l... | [
{
"path": "test/sequential/test-process-warnings.js",
"patch": "@@ -1,9 +1,10 @@\n 'use strict';\n \n-const common = require('../common');\n+require('../common');\n+const fixtures = require('../common/fixtures');\n const assert = require('assert');\n const execFile = require('child_process').execFile;\n-con... | 2017-10-06T16:47:22 |
golang/go | 8381408048018aa2b6eec874f3161b4641191522 | 3d774611feee49aa44b4f5ed65d40497a47ad4c8 | net/http: fix detection of Roundtrippers that always error
CL 220905 added code to identify alternate transports that always error
by using http2erringRoundTripper. This does not work when the transport
is from another package, e.g., http2.erringRoundTripper.
Expose a new method that allow detection of such a RoundTri... | [
{
"path": "src/net/http/omithttp2.go",
"patch": "@@ -32,10 +32,6 @@ type http2Transport struct {\n func (*http2Transport) RoundTrip(*Request) (*Response, error) { panic(noHTTP2) }\n func (*http2Transport) CloseIdleConnections() {}\n \n-type http2erringRoundTripper struct{ err error }\n-\n-fu... | 2020-07-17T03:30:12 |
huggingface/transformers | 65657d5d8adbd61fc44f3ca7e626096cb6931863 | ac33aeeeee2a7a89b89c93c2962e6feb90daef0a | fix fuyu doctest (#30215)
* fix doctest
* fix example
* fix
* fix
---------
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": "src/transformers/models/fuyu/modeling_fuyu.py",
"patch": "@@ -242,17 +242,17 @@ def forward(\n >>> processor = FuyuProcessor.from_pretrained(\"adept/fuyu-8b\")\n >>> model = FuyuForCausalLM.from_pretrained(\"adept/fuyu-8b\")\n \n- >>> url = \"http://images.cocodataset.org/v... | 2024-04-12T15:45:15 |
ollama/ollama | f59c4d03f789f745ffce6c4b68fcf218fac85435 | f221637053850d62e488501b726d2acfbf43c6b1 | fix ggml arm64 cuda build (#520) | [
{
"path": "llm/llama.cpp/generate_linux.go",
"patch": "@@ -6,9 +6,10 @@ package llm\n //go:generate -command git-apply git -C ggml apply\n //go:generate git-apply ../ggml_patch/0001-add-detokenize-endpoint.patch\n //go:generate git-apply ../ggml_patch/0002-34B-model-support.patch\n-//go:generate cmake -S gg... | 2023-09-12T21:06:48 |
nodejs/node | c2cf47a23953f4fed7275bf37371d258113035c2 | b41d215f2856e07e12773bf20c3153d0de04a217 | benchmark: remove writing to benchmark directory
A benchmark for module loading creates a temporary directory in the
benchmark directory. Re-use the test common module to put the tmp
directory in test instead. This was causing intermittent test failures
because run.js (invoked by benchmark tests, mulitple of which cou... | [
{
"path": "benchmark/module/module-loader.js",
"patch": "@@ -3,8 +3,8 @@ const fs = require('fs');\n const path = require('path');\n const common = require('../common.js');\n \n-const tmpDirectory = path.join(__dirname, '..', 'tmp');\n-const benchmarkDirectory = path.join(tmpDirectory, 'nodejs-benchmark-mod... | 2017-10-11T13:15:14 |
huggingface/transformers | ac33aeeeee2a7a89b89c93c2962e6feb90daef0a | caa5c65db1f4db617cdac2ad667ba62edf94dd98 | fix typo (#30220) | [
{
"path": "src/transformers/trainer_callback.py",
"patch": "@@ -196,7 +196,7 @@ class TrainerCallback:\n train_dataloader (`torch.utils.data.DataLoader`, *optional*):\n The current dataloader used for training.\n eval_dataloader (`torch.utils.data.DataLoader`, *optional*):\n- ... | 2024-04-12T14:41:35 |
ggml-org/llama.cpp | ed759777178e7a30d064b81e35d1fc320bf3970b | 847c35f7d5cbc686dfd5ae70f5702bafb84a8be9 | ggml-hexagon: create generalized functions for cpu side op (#17500)
* refactor: replace ggml_hexagon_mul_mat with template-based binary operation for improved flexibility
* refactor: replace ggml_hexagon_mul_mat_id with template-based binary operation for improved flexibility
* refactor: initialize buffer types and ... | [
{
"path": "docs/backend/hexagon/README.md",
"patch": "@@ -106,7 +106,7 @@ Here are some examples of running various llama.cpp tools via ADB.\n Simple question for Llama-3.2-1B\n \n ```\n-~/src/llama.cpp$ M=Llama-3.2-1B-Instruct-Q4_0.gguf D=HTP0 ./scripts/snapdragon/adb/run-cli.sh -no-cnv -p \"what is the mo... | 2025-12-23T07:13:24 |
golang/go | 3d774611feee49aa44b4f5ed65d40497a47ad4c8 | e3d608a8664b2cb0054f4d4706cdf911fd699b82 | src/go.mod, net/http: update bundled and latest golang.org/x/net
Updates x/net/http2 to git rev c89045814202410a2d67ec20ecf177ec77ceae7f
http2: perform connection health check
https://golang.org/cl/198040 (fixes #31643)
http2: use ASCII space trimming for parsing Trailer header
https://golang.org/cl/... | [
{
"path": "src/go.mod",
"patch": "@@ -4,7 +4,7 @@ go 1.15\n \n require (\n \tgolang.org/x/crypto v0.0.0-20200622213623-75b288015ac9\n-\tgolang.org/x/net v0.0.0-20200707034311-ab3426394381\n+\tgolang.org/x/net v0.0.0-20200822124328-c89045814202\n \tgolang.org/x/sys v0.0.0-20200501145240-bc7a7d42d5c3 // indir... | 2020-08-22T12:47:06 |
ollama/ollama | 7dee25a07f6057a4afd42097357ffbdae0fdaacc | f221637053850d62e488501b726d2acfbf43c6b1 | fix falcon decode
get model and file type from bin file | [
{
"path": "llm/ggml.go",
"patch": "@@ -8,54 +8,77 @@ import (\n \t\"sync\"\n )\n \n-type ModelFamily string\n-\n-const ModelFamilyUnknown ModelFamily = \"unknown\"\n-\n-type ModelType uint32\n+type GGML struct {\n+\tmagic uint32\n+\tcontainer\n+\tmodel\n+}\n \n const (\n-\tModelType3B ModelType = 26\n-\tMo... | 2023-09-12T17:01:20 |
nodejs/node | 42e8254f197749a636baf0498c16fe200375f728 | c885ea727da7ffd66deb5a775a0d1fb40f14a329 | test: use fixtures in tls-friendly-error-message
PR-URL: https://github.com/nodejs/node/pull/15905
Reviewed-By: Refael Ackermann <refack@gmail.com>
Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com> | [
{
"path": "test/parallel/test-tls-friendly-error-message.js",
"patch": "@@ -24,12 +24,12 @@ const common = require('../common');\n if (!common.hasCrypto)\n common.skip('missing crypto');\n \n+const fixtures = require('../common/fixtures');\n const assert = require('assert');\n const tls = require('tls');\... | 2017-10-06T17:12:24 |
ggml-org/llama.cpp | 847c35f7d5cbc686dfd5ae70f5702bafb84a8be9 | a6a552e4ec43c2b6ed29b05d8da6921c59f05ed7 | model-conversion : add trust_remote_code for embedding scripts (#18288)
This commit adds the trust_remote_code=True parameter when loading
models and configurations in the embedding model conversion scripts.
It also adds a cast to float for models that might use a data type that
is not supported by python, for example... | [
{
"path": "examples/model-conversion/scripts/embedding/run-original-model.py",
"patch": "@@ -45,7 +45,7 @@ def read_prompt_from_file(file_path):\n else:\n tokenizer = AutoTokenizer.from_pretrained(model_path)\n \n- config = AutoConfig.from_pretrained(model_path)\n+ config = AutoConfig.from_pretrai... | 2025-12-23T06:27:37 |
golang/go | e3d608a8664b2cb0054f4d4706cdf911fd699b82 | 00a053bd4b2c19b2d9680f78f4c8657fcc6f1c88 | go/types: factor out some methods that compute a single error
In order to generate more accurate or informative error messages from
the type checker, it can be helpful to interpret error messages in
context. This is currently achieved in a number of ways:
+ Return a boolean value, and then reverse-engineer the error... | [
{
"path": "src/go/types/errors.go",
"patch": "@@ -7,6 +7,7 @@\n package types\n \n import (\n+\t\"errors\"\n \t\"fmt\"\n \t\"go/ast\"\n \t\"go/token\"\n@@ -72,22 +73,33 @@ func (check *Checker) dump(format string, args ...interface{}) {\n \tfmt.Println(check.sprintf(format, args...))\n }\n \n-func (check *C... | 2020-07-12T20:20:02 |
ollama/ollama | 7d749cc787d1c98de836f6c8ce15b27b7505e678 | e7e91cd71c2b5f9440e995087c7d7524c2cfed1c | fix darwin build script | [
{
"path": "scripts/build_darwin.sh",
"patch": "@@ -8,7 +8,7 @@ GO_LDFLAGS=\"$GO_LDFLAGS -X github.com/jmorganca/ollama/server.mode=release\"\n # build universal binary\n GOARCH=arm64 go generate ./...\n GOARCH=arm64 go build -ldflags \"$GO_LDFLAGS\" -o dist/ollama-darwin-arm64\n-rm -rf llm/llama.cpp/ggml/bu... | 2023-09-11T20:31:46 |
ggml-org/llama.cpp | 96e33a814e100025648d12eb6a827154b48277d9 | dfc959b886d2613a4d3f06d8f3523628c654e8a3 | model : fix div-by-zero for Nemotron V2 (#18309)
* llama-model : fix Nemotron V2 crash by moving MoE parameters calculation
* remove whitespace
---------
Co-authored-by: Sigbjørn Skjæret <sigbjorn.skjaeret@scala.com> | [
{
"path": "src/llama-model.cpp",
"patch": "@@ -5243,9 +5243,6 @@ bool llama_model::load_tensors(llama_model_loader & ml) {\n const int64_t n_group = hparams.ssm_n_group;\n const int64_t d_in_proj = 2*d_inner + 2*n_group*d_state + n_ssm_head;\n \n- ... | 2025-12-23T02:04:57 |
nodejs/node | c0bba73ac2263b7997484537bbe9f0d30fdeaf85 | ce33cffbcb9370258a516b349aec4b8f772a342d | test: use common/fixtures in tls-connect-no-host
PR-URL: https://github.com/nodejs/node/pull/15986
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com> | [
{
"path": "test/parallel/test-tls-connect-no-host.js",
"patch": "@@ -1,17 +1,16 @@\n 'use strict';\n const common = require('../common');\n+const fixtures = require('../common/fixtures');\n \n if (!common.hasCrypto)\n common.skip('missing crypto');\n \n const tls = require('tls');\n \n const assert = requ... | 2017-10-06T18:03:41 |
golang/go | 00a053bd4b2c19b2d9680f78f4c8657fcc6f1c88 | 8d31ca255bd6b00d04f1673d26110b702e96662b | testing: fix Cleanup race with Logf and Errorf
Fixes #40908
Change-Id: I25561a3f18e730a50e6fbf85aa7bd85bf1b73b6e
Reviewed-on: https://go-review.googlesource.com/c/go/+/250078
Reviewed-by: Tobias Klauser <tobias.klauser@gmail.com>
Run-TryBot: Bryan C. Mills <bcmills@google.com>
TryBot-Result: Gobot Gobot <gobot@golang... | [
{
"path": "src/cmd/go/testdata/script/testing_issue40908.txt",
"patch": "@@ -0,0 +1,21 @@\n+[short] skip\n+[!race] skip\n+\n+go test -race testrace\n+\n+-- testrace/race_test.go --\n+package testrace\n+\n+import \"testing\"\n+\n+func TestRace(t *testing.T) {\n+\thelperDone := make(chan struct{})\n+\tgo func... | 2020-08-23T22:53:04 |
ggml-org/llama.cpp | dfc959b886d2613a4d3f06d8f3523628c654e8a3 | 8f48807380305a5985df78f67e29862664c9afec | model : Granite Embedding support (#15641)
ModernBERT but without `head.norm` so will currently fail to convert and run any other ModernBERT models, PRs with `head.norm` support welcome!
* constants and tensor mappings for modern bert support, model not supported yet but working on getting conversion to work for enco... | [
{
"path": "convert_hf_to_gguf.py",
"patch": "@@ -1212,6 +1212,9 @@ def get_vocab_base_pre(self, tokenizer) -> str:\n if chkhsh == \"a1e163ecab2e718a4c829d1148b6e86824ec36163bb71941c3dca9cd5ac25756\":\n # ref: https://huggingface.co/JetBrains/Mellum-4b-base\n res = \"mellum\"\... | 2025-12-22T23:28:19 |
nodejs/node | ce33cffbcb9370258a516b349aec4b8f772a342d | 668f4cff22acd69e8505cd8c83415ee5021fe6d6 | test: use common/fixtures in test-https-agent
PR-URL: https://github.com/nodejs/node/pull/15941
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com> | [
{
"path": "test/parallel/test-https-agent.js",
"patch": "@@ -21,16 +21,17 @@\n \n 'use strict';\n const common = require('../common');\n+\n if (!common.hasCrypto)\n common.skip('missing crypto');\n \n+const fixtures = require('../common/fixtures');\n const assert = require('assert');\n const https = requi... | 2017-10-06T17:28:56 |
ollama/ollama | de227b620f8b719072b9823f3d9f42123ee2106b | 63def6ca4917af980c88c75a71a2a1955ee36586 | fix nil pointer dereference | [
{
"path": "server/images.go",
"patch": "@@ -1300,7 +1300,7 @@ func makeRequestWithRetry(ctx context.Context, method string, requestURL *url.UR\n }\n \n func makeRequest(ctx context.Context, method string, requestURL *url.URL, headers http.Header, body io.Reader, regOpts *RegistryOptions) (*http.Response, er... | 2023-09-08T00:24:31 |
golang/go | 8d31ca255bd6b00d04f1673d26110b702e96662b | 5e1e8c4c9f99da52419c99e618425794102c9769 | Revert "net/http: fix data race due to writeLoop goroutine left running"
This reverts CL 232799.
Reason for revert: net/http test is failing on all longtest builders.
Change-Id: I4694e34f35419bab2d0b45fa6d8c3ac2aa1f51a0
Reviewed-on: https://go-review.googlesource.com/c/go/+/250597
Run-TryBot: Bryan C. Mills <bcmills... | [
{
"path": "src/net/http/transport.go",
"patch": "@@ -1963,15 +1963,6 @@ func (pc *persistConn) mapRoundTripError(req *transportRequest, startBytesWritte\n \t\treturn nil\n \t}\n \n-\t// Wait for the writeLoop goroutine to terminate to avoid data\n-\t// races on callers who mutate the request on failure.\n-\... | 2020-08-25T18:01:27 |
ggml-org/llama.cpp | bf6bc3c1551491b5eb019f0fb56c743f25d3eb79 | 179fd82a722cbca2cf5fc7cb072324782e762318 | ggml-hexagon: gelu optimization (#18151)
* feat: working gelu with src0 put on vtcm
* feat: gelu ping-pong for both in and out
* fix: fixu compile error
* break: distinguish dma ddr->vtcm and vtcm->ddr operation
* fix: fix dma queue size
* break: update dma api to either pop src or dst ptr
* fix: fix activation... | [
{
"path": "ggml/src/ggml-hexagon/ggml-hexagon.cpp",
"patch": "@@ -2668,7 +2668,7 @@ static void ggml_hexagon_unary(const struct ggml_tensor * op, uint32_t flags) {\n req.op = HTP_OP_UNARY_SILU;\n supported = true;\n }\n- else if (ggml_get_unary_op(ds... | 2025-12-22T18:56:52 |
huggingface/transformers | caa5c65db1f4db617cdac2ad667ba62edf94dd98 | c82b38a3e2c8af69fef08e371189766a87ed6159 | fix: Replaced deprecated `logger.warn` with `logger.warning` (#30197)
* Fixed deprecated logger.warn by using logger.warning
* Reformatted using ruff. | [
{
"path": "src/transformers/modeling_utils.py",
"patch": "@@ -2225,7 +2225,7 @@ def gradient_checkpointing_enable(self, gradient_checkpointing_kwargs=None):\n self._set_gradient_checkpointing(enable=True, gradient_checkpointing_func=gradient_checkpointing_func)\n else:\n self... | 2024-04-12T09:21:24 |
nodejs/node | 668f4cff22acd69e8505cd8c83415ee5021fe6d6 | d9f8736ffd5952d51970126635242c48c96070c8 | test: use common fixtures module
Replace use of fixturesDir with fixtures.readSync and fixtures.path.
PR-URL: https://github.com/nodejs/node/pull/15856
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "test/parallel/test-https-foafssl.js",
"patch": "@@ -28,14 +28,13 @@ if (!common.opensslCli)\n common.skip('node compiled without OpenSSL CLI.');\n \n const assert = require('assert');\n-const join = require('path').join;\n-const fs = require('fs');\n-const spawn = require('child_process').spawn... | 2017-10-06T16:57:13 |
golang/go | 5e1e8c4c9f99da52419c99e618425794102c9769 | 91a52de5274a13fcaab68c0a78115eff632f68fc | net/http: fix data race due to writeLoop goroutine left running
Fix a data race for clients that mutate requests after receiving a
response error which is caused by the writeLoop goroutine left
running, this can be seen on canceled requests.
Fixes #37669
Change-Id: I0e0e4fd63266326b32587d8596456760bf848b13
Reviewed-... | [
{
"path": "src/net/http/transport.go",
"patch": "@@ -1963,6 +1963,15 @@ func (pc *persistConn) mapRoundTripError(req *transportRequest, startBytesWritte\n \t\treturn nil\n \t}\n \n+\t// Wait for the writeLoop goroutine to terminate to avoid data\n+\t// races on callers who mutate the request on failure.\n+\... | 2020-05-07T21:12:21 |
huggingface/transformers | c82b38a3e2c8af69fef08e371189766a87ed6159 | 2c66600c3fbbdcfc1610c5862c33bd19cf42859e | Fix pipeline logger.warning_once bug (#30195)
Fix warning bug | [
{
"path": "src/transformers/pipelines/base.py",
"patch": "@@ -1181,7 +1181,6 @@ def __call__(self, inputs, *args, num_workers=None, batch_size=None, **kwargs):\n logger.warning_once(\n \"You seem to be using the pipelines sequentially on GPU. In order to maximize efficiency pleas... | 2024-04-12T08:34:45 |
ggml-org/llama.cpp | 6ce863c8039b2dbfef2a22408f347842d438f03d | 3997c78e339be05d8f64934f0765a6eead413e6e | server: prevent data race from HTTP threads (#18263)
* server: prevent data race from HTTP threads
* fix params
* fix default_generation_settings
* nits: make handle_completions_impl looks less strange
* stricter const
* fix GGML_ASSERT(idx < states.size())
* move index to be managed by server_response_reader
*... | [
{
"path": "tools/cli/cli.cpp",
"patch": "@@ -216,7 +216,7 @@ int main(int argc, char ** argv) {\n ctx_cli.ctx_server.start_loop();\n });\n \n- auto inf = ctx_cli.ctx_server.get_info();\n+ auto inf = ctx_cli.ctx_server.get_meta();\n std::string modalities = \"text\";\n if (inf.has_i... | 2025-12-22T13:23:34 |
rust-lang/rust | cb53e9787099f0837a008ca3b41af5e97cf81f2e | ad27045c31a9f37ad7d44ca2a403de52d1a896d3 | Fix enzyme build errors | [
{
"path": "compiler/rustc_builtin_macros/src/autodiff.rs",
"patch": "@@ -133,7 +133,7 @@ mod llvm_enzyme {\n let dcx = ecx.sess.dcx();\n // first get the annotable item:\n let (sig, is_impl): (FnSig, bool) = match &item {\n- Annotatable::Item(ref iitem) => {\n+ ... | 2025-02-25T11:55:50 |
nodejs/node | d9f8736ffd5952d51970126635242c48c96070c8 | ed2c9a3c783652f9d75321c3309230372cada60f | doc: fix changelog anchor to v8.7.0
PR-URL: https://github.com/nodejs/node/pull/16165
Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "doc/changelogs/CHANGELOG_V8.md",
"patch": "@@ -6,7 +6,7 @@\n </tr>\n <tr>\n <td>\n-<a href=\"#8.6.0\">8.7.0</a><br/>\n+<a href=\"#8.7.0\">8.7.0</a><br/>\n <a href=\"#8.6.0\">8.6.0</a><br/>\n <a href=\"#8.5.0\">8.5.0</a><br/>\n <a href=\"#8.4.0\">8.4.0</a><br/>",
"additions": 1,
"deletions... | 2017-10-12T16:35:00 |
golang/go | 91a52de5274a13fcaab68c0a78115eff632f68fc | 41bc0a1713b9436e96c2d64211ad94e42cafd591 | crypto/x509: fix duplicate import
Updates dave/dst#45.
Change-Id: I165e6b3d002407a33908bf90a66ad01f8003b260
Reviewed-on: https://go-review.googlesource.com/c/go/+/250497
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Filippo Valsorda <filippo@golang.org> | [
{
"path": "src/crypto/x509/x509.go",
"patch": "@@ -14,7 +14,6 @@ import (\n \t\"crypto/elliptic\"\n \t\"crypto/rsa\"\n \t\"crypto/sha1\"\n-\t_ \"crypto/sha1\"\n \t_ \"crypto/sha256\"\n \t_ \"crypto/sha512\"\n \t\"crypto/x509/pkix\"",
"additions": 0,
"deletions": 1,
"language": "Go"
}
] | 2020-08-25T15:30:32 |
ollama/ollama | bf146fb072b8dbf49efa2f874959ad978c48bf29 | f0f49435771352c4d1e432351675d10d9e23c099 | fix retry on unauthorized chunk | [
{
"path": "server/upload.go",
"patch": "@@ -66,31 +66,39 @@ func uploadBlobChunked(ctx context.Context, requestURL *url.URL, layer *Layer, r\n \n \t\tsectionReader := io.NewSectionReader(f, int64(offset), chunk)\n \t\tfor try := 0; try < MaxRetries; try++ {\n+\t\t\tch := make(chan error, 1)\n+\n \t\t\tr, w ... | 2023-09-07T19:01:50 |
huggingface/transformers | 2c66600c3fbbdcfc1610c5862c33bd19cf42859e | 0bd58f1ce0573c0e3269de4215a17d318add49b9 | ENH: [`CI`] Add new workflow to run slow tests of important models on push main if they are modified (#29235)
* v1
* v1
* more changes
* more models
* add more markers
* swtich to A10
* use cache
* Update .github/workflows/push-important-models.yml
* Update .github/workflows/push-important-mode... | [
{
"path": ".github/actions/post-slack/action.yml",
"patch": "@@ -0,0 +1,79 @@\n+name: Send message to slack\n+\n+description: 'Send results to slack'\n+author: 'Hugging Face'\n+inputs:\n+ slack_channel:\n+ required: true\n+ type: string\n+ title:\n+ required: true\n+ type: string\n+ status:\n... | 2024-04-12T08:01:28 |
ggml-org/llama.cpp | 3997c78e339be05d8f64934f0765a6eead413e6e | ee746429821d9e1dd8b386c0f490072e47eea24b | server: fix data race in to_json_anthropic (#18283) | [
{
"path": "tools/server/server-task.cpp",
"patch": "@@ -1153,7 +1153,7 @@ json server_task_result_rerank::to_json() {\n json server_task_result_cmpl_partial::to_json_anthropic() {\n json events = json::array();\n bool first = (n_decoded == 1);\n- static bool text_block_started = false;\n+ bool... | 2025-12-22T12:21:43 |
rust-lang/rust | 8467a7658133fdc274e18f36357768000a3a7519 | cede9029fd97bef27565269f7f251ca5d3ac2c4a | remove unused field from VariantDef::new and convert debug to instrument | [
{
"path": "compiler/rustc_hir_analysis/src/collect.rs",
"patch": "@@ -1075,7 +1075,6 @@ fn lower_variant<'tcx>(\n def.ctor().map(|(kind, _, def_id)| (kind, def_id.to_def_id())),\n discr,\n fields,\n- adt_kind,\n parent_did.to_def_id(),\n recovered,\n ad... | 2025-02-24T09:25:17 |
ollama/ollama | f0f49435771352c4d1e432351675d10d9e23c099 | 07b4074e7b2e404fb577e98c103421acd2029de1 | fix get auth token | [
{
"path": "server/auth.go",
"patch": "@@ -103,7 +103,7 @@ func getAuthToken(ctx context.Context, redirData AuthRedirect, regOpts *Registry\n \n \theaders := make(http.Header)\n \theaders.Set(\"Authorization\", sig)\n-\tresp, err := makeRequest(ctx, \"GET\", redirectURL, headers, nil, regOpts)\n+\tresp, err ... | 2023-09-07T18:49:36 |
golang/go | 41bc0a1713b9436e96c2d64211ad94e42cafd591 | d3f6e2f30083749ce8ab0668e324a523b6ba9ead | math/big: fix TestShiftOverlap for test -count arguments > 1
Don't overwrite incoming test data.
The change uses copy instead of assigning statement to avoid this.
Change-Id: Ib907101822d811de5c45145cb9d7961907e212c3
Reviewed-on: https://go-review.googlesource.com/c/go/+/250137
Run-TryBot: Emmanuel Odeke <emm.odeke@... | [
{
"path": "src/math/big/arith_test.go",
"patch": "@@ -241,20 +241,20 @@ var argshrVU = []argVU{\n }\n \n func testShiftFunc(t *testing.T, f func(z, x []Word, s uint) Word, a argVU) {\n-\t// save a.d for error message, or it will be overwritten.\n+\t// work on copy of a.d to preserve the original data.\n \tb... | 2020-08-24T06:43:32 |
ggml-org/llama.cpp | a28310488c3fc68511a0d404d9836b0eae4e498b | 86af848153294b65442f7bddfa3d24baa5cb0c81 | convert: rework ftype heuristics (#18214)
* convert: rework ftype heuristics
Signed-off-by: Aaron Teo <aaron.teo1@ibm.com>
convert: fix type-check
Signed-off-by: Aaron Teo <aaron.teo1@ibm.com>
convert: bring back heuristics comment
Signed-off-by: Aaron Teo <aaron.teo1@ibm.com>
* convert: revert to using first te... | [
{
"path": "convert_hf_to_gguf.py",
"patch": "@@ -141,16 +141,24 @@ def __init__(self, dir_model: Path, ftype: gguf.LlamaFileType, fname_out: Path,\n self.model_name = model_name\n self.dir_model_card = dir_model # overridden in convert_lora_to_gguf.py\n \n- # Apply heuristics to figu... | 2025-12-22T12:03:49 |
nodejs/node | bf8f1d3208bb013815de4e9aa1170b12ed6cb2e9 | 7e4893df60efceb91e869a708ab6ee98e2848c2c | test: fs.readFileSync -> fixtures.readKey
PR-URL: https://github.com/nodejs/node/pull/16030
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Reviewed-By: Anna Henningsen <anna@a... | [
{
"path": "test/parallel/test-https-timeout-server-2.js",
"patch": "@@ -24,15 +24,15 @@\n const common = require('../common');\n if (!common.hasCrypto)\n common.skip('missing crypto');\n+const fixtures = require('../common/fixtures');\n \n const assert = require('assert');\n const https = require('https')... | 2017-10-06T17:44:52 |
huggingface/transformers | edf0935dca9189db599ac6c3f3ef714160acbbd8 | 5569552cf8779c8951326b2fa9b7a1d64b1005c9 | Falcon: make activation, ffn_hidden_size configurable (#30134)
* Falcon chg
* delta
* Docstring
* Fix import block
* doc
* fix and overwrite | [
{
"path": "src/transformers/models/falcon/configuration_falcon.py",
"patch": "@@ -12,7 +12,8 @@\n # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n # See the License for the specific language governing permissions and\n # limitations under the License.\n-\"\"\" Falcon configuratio... | 2024-04-11T13:04:46 |
huggingface/transformers | e516d1b19d035469b4852e34ba0356587e6f8ade | 58b170cdb19cf97e1eabf9dfa34a03ea80fbcef9 | fix: Fixed `ruff` configuration to avoid deprecated configuration warning (#30179)
* Fixed deprecated ruff configuration in pyproject.toml file
* reverted un-necessary changes.
* small fix. | [
{
"path": "pyproject.toml",
"patch": "@@ -1,16 +1,18 @@\n [tool.ruff]\n+line-length = 119\n+\n+[tool.ruff.lint]\n # Never enforce `E501` (line length violations).\n ignore = [\"C901\", \"E501\", \"E741\", \"F402\", \"F823\" ]\n select = [\"C\", \"E\", \"F\", \"I\", \"W\"]\n-line-length = 119\n \n # Ignore i... | 2024-04-11T11:47:10 |
rust-lang/rust | 3835dc2a0449347cb79dc5d467a37d729e389609 | 7d8c6e781d347e087c7d30ea393d7dcd725ed623 | fix doc in library/core/src/sync/atomic.rs
Signed-off-by: xizheyin <xizheyin@smail.nju.edu.cn> | [
{
"path": "library/core/src/sync/atomic.rs",
"patch": "@@ -3997,24 +3997,24 @@ unsafe fn atomic_umin<T: Copy>(dst: *mut T, val: T, order: Ordering) -> T {\n ///\n /// A fence 'A' which has (at least) [`Release`] ordering semantics, synchronizes\n /// with a fence 'B' with (at least) [`Acquire`] semantics, i... | 2025-02-25T05:01:19 |
golang/go | d3f6e2f30083749ce8ab0668e324a523b6ba9ead | 27136419d4784d3f81af3ec1faf0962a60c69b7e | cmd/compile: report error for unexported name only once
Fixes #22921
Change-Id: If29bd962335ac7676ea4f379727db3d55ae1bf8e
Reviewed-on: https://go-review.googlesource.com/c/go/+/250177
Run-TryBot: Cuong Manh Le <cuong.manhle.vn@gmail.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Matthew Dempsky <mdem... | [
{
"path": "src/cmd/compile/internal/gc/dcl.go",
"patch": "@@ -297,6 +297,16 @@ func oldname(s *types.Sym) *Node {\n \treturn n\n }\n \n+// importName is like oldname, but it reports an error if sym is from another package and not exported.\n+func importName(sym *types.Sym) *Node {\n+\tn := oldname(sym)\n+\t... | 2020-08-24T08:23:27 |
ggml-org/llama.cpp | 0e1ccf15c7b6d05c720551b537857ecf6194d420 | 5e25ddebff0d456db91aa7274ff6a33f4a17ffea | llama: fix RPC for -fit on (#18233) | [
{
"path": "ggml/src/ggml-rpc/ggml-rpc.cpp",
"patch": "@@ -583,7 +583,7 @@ static rpc_tensor serialize_tensor(const ggml_tensor * tensor) {\n if (tensor->buffer) {\n ggml_backend_buffer_t buffer = tensor->buffer;\n ggml_backend_rpc_buffer_context * ctx = (ggml_backend_rpc_buffer_context *... | 2025-12-21T18:33:08 |
nodejs/node | 6b5433dcd2f518643d67a16a5f89ad4e845e4902 | 88d05aa43b5654c016e345d0b6f463e84fd857bf | http2: replace fixturesDir with common.fixtures
PR-URL: https://github.com/nodejs/node/pull/15839
Reviewed-By: Ryan Graham <r.m.graham@gmail.com>
Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
Reviewed-By: Lu... | [
{
"path": "test/parallel/test-http2-respond-file-304.js",
"patch": "@@ -3,16 +3,16 @@\n const common = require('../common');\n if (!common.hasCrypto)\n common.skip('missing crypto');\n+const fixtures = require('../common/fixtures');\n const http2 = require('http2');\n const assert = require('assert');\n-c... | 2017-10-06T16:41:16 |
rust-lang/rust | f63981e0913ea2bfa935935595ab04b6cc7a9e42 | 7d8c6e781d347e087c7d30ea393d7dcd725ed623 | fix doc path in std::fmt macro | [
{
"path": "library/std/src/macros.rs",
"patch": "@@ -41,7 +41,7 @@ macro_rules! panic {\n /// Use `print!` only for the primary output of your program. Use\n /// [`eprint!`] instead to print error and progress messages.\n ///\n-/// See [the formatting documentation in `std::fmt`](../std/fmt/index.html)\n+//... | 2025-02-25T03:35:09 |
ggml-org/llama.cpp | fd05c51cec7e233bddf2d2bae85ddf8aa6b0226c | b365c3ff010256c76fa030a621a4a96fc06a8442 | vulkan: fix im2col overflowing maxworkgroupcount (#18180) | [
{
"path": "ggml/src/ggml-vulkan/ggml-vulkan.cpp",
"patch": "@@ -1261,6 +1261,7 @@ struct vk_op_im2col_push_constants {\n int32_t s0; int32_t s1;\n int32_t p0; int32_t p1;\n int32_t d0; int32_t d1;\n+ uint32_t batch_IC;\n };\n \n struct vk_op_im2col_3d_push_constants {\n@@ -5902,6 +5903,9 @@ s... | 2025-12-21T09:32:58 |
huggingface/transformers | fbdb978eb5b42686f8ad858c13c8f6f7209b5c84 | b752ad3019afbea95605b743a5c278dfccbe701e | Fix Llava chat template examples (#30130) | [
{
"path": "docs/source/en/model_doc/llava.md",
"patch": "@@ -43,13 +43,13 @@ The original code can be found [here](https://github.com/haotian-liu/LLaVA/tree/\n - For better results, we recommend users to prompt the model with the correct prompt format: \n \n ```bash\n-\"USER: <image>\\n<prompt>ASSISTANT:\"\... | 2024-04-11T08:38:24 |
golang/go | bb54a855a9b5733569f40ac19a2c338b87c23d14 | b3d9cf7a07518020c6ec5032474aafef9345cdd5 | net/http: handle Request.URL.RawPath in StripPrefix
The StripPrefix wrapper strips a prefix string from the request's
URL.Path field, but doesn't touch the RawPath field. This leads to the
confusing situation when StripPrefix handles a request with URL.RawPath
populated (due to some escaped characters in the request p... | [
{
"path": "doc/go1.16.html",
"patch": "@@ -112,3 +112,17 @@ <h3 id=\"minor_library_changes\">Minor changes to the library</h3>\n <p>\n TODO\n </p>\n+\n+<p>\n+ In the <a href=\"/pkg/net/http/\"><code>net/http</code></a> package, the\n+ behavior of <a href=\"/pkg/net/http/#StripPrefix\"><code>StripPrefix<... | 2020-05-13T00:39:11 |
nodejs/node | 88d05aa43b5654c016e345d0b6f463e84fd857bf | 641ba5ecfadce9bcb47e079c1618245ecf69e7d8 | build: restore mistakenly dropped suites
suites dropped during the last commit by a typo
restore $(CI_JS_SUITES) to test-ci-js
restore $(CI_NATIVE_SUITES) for `test-ci`
and var assignment tweak
PR-URL: https://github.com/nodejs/node/pull/16132
Fixes: https://github.com/nodejs/node/issues/16129
Fixes: https://github.c... | [
{
"path": "Makefile",
"patch": "@@ -347,7 +347,7 @@ test-all: test-build test/gc/build/Release/binding.node\n test-all-valgrind: test-build\n \t$(PYTHON) tools/test.py --mode=debug,release --valgrind\n \n-CI_NATIVE_SUITES := addons addons-napi\n+CI_NATIVE_SUITES ?= addons addons-napi\n CI_ASYNC_HOOKS := asy... | 2017-10-10T21:42:46 |
ggml-org/llama.cpp | b365c3ff010256c76fa030a621a4a96fc06a8442 | cb64222b0cbad6aa8c5d05837efb315eeff847ac | vulkan/cuda: fix topk_moe with exp_probs_b (#18071)
I updated test_topk_moe to more closely match llm_graph_context::build_moe_ffn
and added coverage for exp_probs_b and some other missing combinations. This
exposed a bug in both CUDA and Vulkan backends where they were assuming the
input to argsort and the input to g... | [
{
"path": "ggml/src/ggml-cuda/ggml-cuda.cu",
"patch": "@@ -3076,16 +3076,23 @@ static bool ggml_cuda_can_fuse(const struct ggml_cgraph * cgraph, int node_idx,\n ggml_can_fuse_subgraph(cgraph, node_idx, ops, { node_idx + 3, node_idx + 9 })) {\n ggml_tensor * softmax = cgraph->nodes[node_idx];... | 2025-12-21T09:27:34 |
golang/go | b3d9cf7a07518020c6ec5032474aafef9345cdd5 | c78d215ce38288afe382d38af11b6692ce44c368 | os: return a *PathError from Readdirnames and Readdir on POSIX platforms
Previously, Readdirnames returned a *PathError on Windows and Plan 9,
but a *SyscallError on POSIX systems.
In contrast, similar methods (such as Stat) return a *PathError on all platforms.
Fixes #38923
Change-Id: I26395905b1e723933f07b792c7ae... | [
{
"path": "src/os/dir_darwin.go",
"patch": "@@ -28,7 +28,7 @@ func (f *File) readdirnames(n int) (names []string, err error) {\n \tif f.dirinfo == nil {\n \t\tdir, call, errno := f.pfd.OpenDir()\n \t\tif errno != nil {\n-\t\t\treturn nil, wrapSyscallError(call, errno)\n+\t\t\treturn nil, &PathError{call, f.... | 2020-05-13T18:59:29 |
ollama/ollama | 83c6be1666e8ccf9055e8b7813064644f0a1ad69 | 1adfa67589c7306159965080c10cfef892a6bc99 | fix model manifests (#477) | [
{
"path": "server/modelpath.go",
"patch": "@@ -115,7 +115,7 @@ func GetManifestPath() (string, error) {\n \t}\n \n \tpath := filepath.Join(home, \".ollama\", \"models\", \"manifests\")\n-\tif err := os.MkdirAll(filepath.Dir(path), 0o755); err != nil {\n+\tif err := os.MkdirAll(path, 0o755); err != nil {\n \... | 2023-09-06T21:30:08 |
nodejs/node | 641ba5ecfadce9bcb47e079c1618245ecf69e7d8 | a36aa049c857d87580548d096743f0acf28d231b | doc: document windows shell support
explain that Git Bash and Cygwin require winpty to work correctly.
Added info on Git Bash running winpty automatically
when running node without .exe extension.
PR-URL: https://github.com/nodejs/node/pull/16104
Fixes: https://github.com/nodejs/node/issues/14100
Reviewed-By: Vse Moz... | [
{
"path": "BUILDING.md",
"patch": "@@ -59,6 +59,12 @@ note1 - The gcc4.8-libs package needs to be installed, because node\n by Joyent. SmartOS images >= 16.4 are not supported because\n GCC 4.8 runtime libraries are not available in their pkgsrc repository\n \n+*Note*: On Windows, running Node.js in win... | 2017-10-09T17:10:54 |
huggingface/transformers | b752ad3019afbea95605b743a5c278dfccbe701e | a5e5c92aea1e99cb84d7342bd63826ca6cd884c4 | Adding grounding dino (#26087)
* Fixed typo when converting weigths to GroundingDINO vision backbone
* Final modifications on modeling
* Removed unnecessary class
* Fixed convert structure
* Added image processing
* make fixup partially completed
* Now text_backbone_config has its own class
* Modi... | [
{
"path": "README.md",
"patch": "@@ -389,6 +389,7 @@ Current number of checkpoints: ** (from BigCode) released with the paper [SantaCoder: don't reach for the stars!](https://... | 2024-04-11T07:32:16 |
ggml-org/llama.cpp | 4117ae555773c7cb20f50d22cd065974fd9f7ec3 | 65e96a246490b4095acc11869da1d5300f89a493 | Vulkan: some improvement on mul_mat_iq2_xs (#18031)
* Some improvement on mul_mat_iq2_xs
Refactor calculations for db values and grid data to optimize performance and reduce redundancy.
* Fix trailing whitespace | [
{
"path": "ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_iq2_xs.comp",
"patch": "@@ -11,36 +11,54 @@ void calc_superblock(const uint a_offset, const uint b_offset, const uint itid,\n const uint y_idx = i * QUANT_K + 16 * itid;\n const uint nibble_shift = 4 * (itid & 1);\n const uint ib32 = iti... | 2025-12-21T08:59:52 |
golang/go | c78d215ce38288afe382d38af11b6692ce44c368 | d9a6bdf7ef4d0dd15608427b0f7ba3c45c221a3c | go/build: ignore symlinks to directories when matching source files
Fixes #39841
Change-Id: Icbdc37d40e9c10179d6eb704d04482175b139f57
Reviewed-on: https://go-review.googlesource.com/c/go/+/240120
Run-TryBot: Bryan C. Mills <bcmills@google.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Michael Matloob... | [
{
"path": "src/cmd/go/testdata/script/mod_symlink_dotgo.txt",
"patch": "@@ -0,0 +1,17 @@\n+env GO111MODULE=on\n+[!symlink] skip\n+\n+symlink dir.go -> dir\n+\n+# Issue #39841: symlinks to directories should be ignored, not treated as source files.\n+go list -f '{{range .GoFiles}}{{.}}{{\"\\n\"}}{{end}}' .\n... | 2020-06-26T15:48:37 |
ollama/ollama | 1adfa67589c7306159965080c10cfef892a6bc99 | 790d24eb7bd1b15192a8acd79b60e225aaa6688e | tighten up the error string for `ollama show` flags (#476) | [
{
"path": "cmd/cmd.go",
"patch": "@@ -281,9 +281,9 @@ func ShowHandler(cmd *cobra.Command, args []string) error {\n \t}\n \n \tif flagsSet > 1 {\n-\t\treturn errors.New(\"only one of 'license', 'modelfile', 'parameters', 'system', or 'template' can be set\")\n+\t\treturn errors.New(\"only one of '--license'... | 2023-09-06T20:38:49 |
nodejs/node | a84e10eba0f79608711285f673c4103940e00c2c | 2016ad30358db46b4761fdd8e4d0d95b9818b7e1 | doc: remove undefined reference variable
Remove undefined reference variable 'common' from http2 API
PR-URL: https://github.com/nodejs/node/pull/16106
Fixes: https://github.com/nodejs/node/issues/16068
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com> | [
{
"path": "doc/api/http2.md",
"patch": "@@ -1899,7 +1899,9 @@ const req = client.request({\n ':authority': `localhost:${port}`\n });\n \n-req.on('response', common.mustCall());\n+req.on('response', (headers) => {\n+ console.log(headers[http2.constants.HTTP2_HEADER_STATUS]);\n+});\n let data = '';\n req.s... | 2017-10-09T17:39:26 |
huggingface/transformers | a5e5c92aea1e99cb84d7342bd63826ca6cd884c4 | d71f5b3ea8b4a3a530d0c868e87d57311b177c1c | Fixed typo in comments/documentation for Pipelines documentation (#30170)
Update feature_extraction.py - Fixed typo in comments/documentation | [
{
"path": "src/transformers/pipelines/feature_extraction.py",
"patch": "@@ -24,7 +24,7 @@ class FeatureExtractionPipeline(Pipeline):\n \n >>> extractor = pipeline(model=\"google-bert/bert-base-uncased\", task=\"feature-extraction\")\n >>> result = extractor(\"This is a simple test.\", return_tensors... | 2024-04-10T21:52:51 |
ggml-org/llama.cpp | 65e96a246490b4095acc11869da1d5300f89a493 | 9496bbb8081463b16412defcb4ef1ed17f7fb42f | docs : fix links in parsing.md (#18245)
This commit corrects the links in the parsing.md which currently result
in 404 errors. | [
{
"path": "docs/development/parsing.md",
"patch": "@@ -55,7 +55,7 @@ auto parser = build_chat_peg_native_parser([&](common_chat_peg_native_builder &\n ```\n \n For a more complete example, see `test_example_native()` in\n-[tests/test-chat-peg-parser.cpp](tests/test-chat-peg-parser.cpp).\n+[tests/test-chat-p... | 2025-12-21T08:35:40 |
huggingface/transformers | f569172fc283fb5139751a0fefa81873faf87fa5 | 4f7a9f9c5c6940015a5fbf2f23f85e2e6cae0891 | FIX / bnb: fix torch compatiblity issue with `itemize` (#30162)
* fix torch compatiblity issues
* fix
* Update src/transformers/modeling_utils.py | [
{
"path": "src/transformers/modeling_utils.py",
"patch": "@@ -1159,9 +1159,12 @@ def num_parameters(self, only_trainable: bool = False, exclude_embeddings: bool\n # For 4bit models, we need to multiply the number of parameters by 2 as half of the parameters are\n # used for t... | 2024-04-10T16:12:43 |
ollama/ollama | 213ffdb54899cd82a4ecf911f217542a1b37d2fc | d42d88386affab04250f521c8e92392c72270ce5 | macos `amd64` compatibility fixes | [
{
"path": "llm/ggml_llama.go",
"patch": "@@ -45,6 +45,7 @@ func osPath(llamaPath string) string {\n \tif runtime.GOOS == \"windows\" {\n \t\treturn path.Join(llamaPath, \"Release\")\n \t}\n+\n \treturn llamaPath\n }\n \n@@ -68,7 +69,9 @@ func initGGML() {\n \t\tcase \"windows\":\n \t\t\tfiles = []string{\"s... | 2023-09-06T01:33:27 |
nodejs/node | 2016ad30358db46b4761fdd8e4d0d95b9818b7e1 | 3ea3c089cbdc5338b15b542e3fdd73a774c6d31b | test: use of fixtures in test-pipe-head
Replace usage of common.fixturesDir by using common.fixtures
module in test/parallel/test-pipe-head
PR-URL: https://github.com/nodejs/node/pull/15868
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Reviewed-By: James M Snell <jasnell@g... | [
{
"path": "test/parallel/test-pipe-head.js",
"patch": "@@ -1,12 +1,12 @@\n 'use strict';\n const common = require('../common');\n+const fixtures = require('../common/fixtures');\n const assert = require('assert');\n \n const exec = require('child_process').exec;\n-const join = require('path').join;\n \n con... | 2017-10-06T17:00:17 |
golang/go | d9a6bdf7ef4d0dd15608427b0f7ba3c45c221a3c | 95df156e6ac53f98efd6c57e4586c1dfb43066dd | cmd/compile: don't allow go:notinheap on the heap or stack
Right now we just prevent such types from being on the heap. This CL
makes it so they cannot appear on the stack either. The distinction
between heap and stack is pretty vague at the language level (e.g. it
is affected by -N), and we don't need the flexibility... | [
{
"path": "src/cmd/compile/internal/gc/escape.go",
"patch": "@@ -1029,6 +1029,9 @@ func (e *Escape) newLoc(n *Node, transient bool) *EscLocation {\n \tif e.curfn == nil {\n \t\tFatalf(\"e.curfn isn't set\")\n \t}\n+\tif n != nil && n.Type != nil && n.Type.NotInHeap() {\n+\t\tyyerrorl(n.Pos, \"%v is go:notin... | 2020-08-22T03:20:12 |
ggml-org/llama.cpp | ddcb75dd8ac42dc23eb84f13bb17670fe9f2d49b | 52ab19df633f3de5d4db171a16f2d9edd2342fec | server: add auto-sleep after N seconds of idle (#18228)
* implement sleeping at queue level
* implement server-context suspend
* add test
* add docs
* optimization: add fast path
* make sure to free llama_init
* nits
* fix use-after-free
* allow /models to be accessed during sleeping, fix use-after-free
* don... | [
{
"path": "common/arg.cpp",
"patch": "@@ -2887,6 +2887,16 @@ common_params_context common_params_parser_init(common_params & params, llama_ex\n params.lora_init_without_apply = true;\n }\n ).set_examples({LLAMA_EXAMPLE_SERVER}));\n+ add_opt(common_arg(\n+ {\"--sleep-idle-se... | 2025-12-21T01:24:42 |
huggingface/transformers | 4f7a9f9c5c6940015a5fbf2f23f85e2e6cae0891 | 3280b13260bb0863f7904057e12a292386fe888c | Fix natten install in docker (#30161)
* fix dinat in docker
* update
---------
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": "docker/transformers-all-latest-gpu/Dockerfile",
"patch": "@@ -46,7 +46,8 @@ RUN python3 -m pip install --no-cache-dir git+https://github.com/huggingface/opt\n RUN python3 -m pip install --no-cache-dir decord av==9.2.0\n \n # For `dinat` model\n-RUN python3 -m pip install --no-cache-dir 'natten<0.... | 2024-04-10T15:45:49 |
golang/go | c777863f77bb77be2e6c336b78dee2089647ff0e | 6a718175a6b5532bb49160047731181a4ecec2a1 | cmd/go/internal/mvs: indicate the actual version when printing a mismatched ModuleError
Previously, we suppressed the module version annotation if the last
error in the stack was a *module.ModuleError, regardless of its path.
However, if the error is for a replacement module, that produces a
confusing error message: t... | [
{
"path": "src/cmd/go/internal/mvs/errors.go",
"patch": "@@ -78,16 +78,21 @@ func (e *BuildListError) Error() string {\n \t\tb.WriteString(e.Err.Error())\n \t} else {\n \t\tfor _, elem := range stack[:len(stack)-1] {\n-\t\t\tfmt.Fprintf(b, \"%s@%s %s\\n\\t\", elem.m.Path, elem.m.Version, elem.nextReason)\n+... | 2020-08-05T03:53:01 |
nodejs/node | b9c8fd8338be88c074a91bd01a1101ba828d1fd4 | 70a19ae7820b85e8535c7db27151baa3d0705287 | test: use fixtures in test-https-localaddress.js
PR-URL: https://github.com/nodejs/node/pull/15811
Reviewed-By: Ryan Graham <r.m.graham@gmail.com>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Reviewed-By: James M Snell... | [
{
"path": "test/parallel/test-https-localaddress.js",
"patch": "@@ -27,13 +27,13 @@ if (!common.hasCrypto)\n if (!common.hasMultiLocalhost())\n common.skip('platform-specific test.');\n \n-const fs = require('fs');\n+const fixtures = require('../common/fixtures');\n const assert = require('assert');\n con... | 2017-10-06T16:38:04 |
ggml-org/llama.cpp | 408616adbdae2494b8bf23e048ef059fb681a474 | 9e39a1e6a991331bfa02390784eaa1ea226f1d4b | server : [easy] fix per round speculative decode logging (#18211)
Currently we always log 0, as we clear slot.drafted before.
To reproduce:
Run llama-server with devstral-2 as main model and devstral-2-small as
md, and verbose logging:
```
% ./build/bin/llama-server -v \
-m ~/llms/Devstral-2-123B-Instruct-2512-UD... | [
{
"path": "tools/server/server-context.cpp",
"patch": "@@ -2628,7 +2628,7 @@ struct server_context_impl {\n }\n }\n \n- SLT_DBG(slot, \"accepted %d/%d draft tokens, new n_tokens = %d\\n\", (int) ids.size() - 1, (int) slot.drafted.size(), slot.prompt.n_token... | 2025-12-20T09:57:40 |
huggingface/transformers | 3280b13260bb0863f7904057e12a292386fe888c | 0fe44059aed104b1a001b98fbf57332c866bf499 | Fixing a bug when MlFlow try to log a torch.tensor (#29932)
* Update integration_utils.py
Add the case where a tensor with one element is log with Mlflow
* Update src/transformers/integrations/integration_utils.py
Co-authored-by: amyeroberts <22614925+amyeroberts@users.noreply.github.com>
* Update integrat... | [
{
"path": "src/transformers/integrations/integration_utils.py",
"patch": "@@ -1071,6 +1071,8 @@ def on_log(self, args, state, control, logs, model=None, **kwargs):\n for k, v in logs.items():\n if isinstance(v, (int, float)):\n metrics[k] = v\n+ ... | 2024-04-10T15:07:58 |
golang/go | 6a718175a6b5532bb49160047731181a4ecec2a1 | 9bcc5d20b6f2574e5b98822e0986a1cfa14032f6 | cmd/go/internal/mvs: export a NewBuildListError function
Also factor out BuildListError to a separate file.
For #36460
Change-Id: Ibd1143893b09a2bbef659bea1e8c5dd35184a7ef
Reviewed-on: https://go-review.googlesource.com/c/go/+/247764
Reviewed-by: Jay Conrod <jayconrod@google.com> | [
{
"path": "src/cmd/go/internal/mvs/errors.go",
"patch": "@@ -0,0 +1,96 @@\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 mvs\n+\n+import (\n+\t\"fmt\"\n+\t\"strings\"\n+\n+\t\"g... | 2020-08-05T03:27:18 |
nodejs/node | 70a19ae7820b85e8535c7db27151baa3d0705287 | 21ca1d3956b38bda8f9e6b435365e77138b29ab1 | test: use common/fixtures in fs-symlink test
PR-URL: https://github.com/nodejs/node/pull/15830
Reviewed-By: Lance Ball <lball@redhat.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: James M Snell <jasnell@... | [
{
"path": "test/parallel/test-fs-symlink-dir-junction.js",
"patch": "@@ -21,19 +21,17 @@\n \n 'use strict';\n const common = require('../common');\n+const fixtures = require('../common/fixtures');\n const assert = require('assert');\n const path = require('path');\n const fs = require('fs');\n \n // test cr... | 2017-10-06T16:40:49 |
ggml-org/llama.cpp | 9e39a1e6a991331bfa02390784eaa1ea226f1d4b | 74e05131e98661d56b30a1a9a1165165a0c70230 | server: support load model on startup, support preset-only options (#18206)
* server: support autoload model, support preset-only options
* add docs
* load-on-startup
* fix
* Update common/arg.cpp
Co-authored-by: Pascal <admin@serveurperso.com>
---------
Co-authored-by: Pascal <admin@serveurperso.com> | [
{
"path": "common/arg.cpp",
"patch": "@@ -96,6 +96,11 @@ common_arg & common_arg::set_sparam() {\n return *this;\n }\n \n+common_arg & common_arg::set_preset_only() {\n+ is_preset_only = true;\n+ return *this;\n+}\n+\n bool common_arg::in_example(enum llama_example ex) {\n return examples.find... | 2025-12-20T08:25:27 |
huggingface/transformers | 0fe44059aed104b1a001b98fbf57332c866bf499 | 33bca5419c0e08b7b9e58d26a57ececcda0c9fa9 | Add recurrent gemma (#30143)
* Fork.
* RecurrentGemma initial commit.
* Updating __init__.py.
* Minor modification to how we initialize the cache.
Changing how the config specifies the architecture.
* Reformat code to 4 spaces.
Fixed a few typos.
* Fixed the forward pass.
Still unclear on the cache?
... | [
{
"path": "README.md",
"patch": "@@ -476,6 +476,7 @@ Current number of checkpoints: ** (from the Qwen team, Alibaba Group) released with [blog post](https://qwenlm.github.io/... | 2024-04-10T14:59:13 |
golang/go | 9bcc5d20b6f2574e5b98822e0986a1cfa14032f6 | 5a691927659d1057bb3be80087732b5df5889aca | cmd/go/internal/mvs: reverse the order of BuildListError.stack
When we print the stack from a BuildListError, we print the main
module first and the error last. That was the opposite of the order in
which in was stored in memory, leading to (arguably) more complex code
and (definitely) my own inability to reason about... | [
{
"path": "src/cmd/go/internal/mvs/mvs.go",
"patch": "@@ -83,7 +83,7 @@ func (e *BuildListError) Module() module.Version {\n \tif len(e.stack) == 0 {\n \t\treturn module.Version{}\n \t}\n-\treturn e.stack[0].m\n+\treturn e.stack[len(e.stack)-1].m\n }\n \n func (e *BuildListError) Error() string {\n@@ -93,22... | 2020-07-24T02:24:04 |
nodejs/node | 6cc4cf75b945676beaa1a573b35eb438cd7f0914 | beb5226c296492e214346ada70a736195dcab699 | build: correct minor typo in lttng help message
Currently the help message when using --with-lttng looks like this:
$ ./configure --help | grep 'with-lttng'
--with-lttng build with Lttng (Only available to Linux)
This commit makes the help message consistent with the error message
that is raised if --with... | [
{
"path": "configure",
"patch": "@@ -357,7 +357,7 @@ parser.add_option('--with-dtrace',\n parser.add_option('--with-lttng',\n action='store_true',\n dest='with_lttng',\n- help='build with Lttng (Only available to Linux)')\n+ help='build with Lttng (Only supported on Linux)')\n \n parser.add_op... | 2017-10-09T10:58:27 |
ggml-org/llama.cpp | 14931a826e4f5b4536f03f65c8d568d99bf64f0e | f99ef53d2a9591a9a32d28f402630cf7c58f1298 | arg: fix order to use short form before long form (#18196)
* arg: fix order to use short form before long form
* arg: update doc
* arg: update test-arg-parser
* arg: address review feedback from ngxson
simplified to check first.length() <= last.length() only
fixed: --sampler-seq, --rerank, --draft ordering
note: m... | [
{
"path": "common/arg.cpp",
"patch": "@@ -1144,15 +1144,15 @@ common_params_context common_params_parser_init(common_params & params, llama_ex\n }\n ).set_env(\"LLAMA_ARG_CTX_CHECKPOINTS\").set_examples({LLAMA_EXAMPLE_SERVER, LLAMA_EXAMPLE_CLI}));\n add_opt(common_arg(\n- {\"--cache-r... | 2025-12-19T17:01:56 |
ollama/ollama | 2bc06565c7ca7f784fefc0d2f037269b8af2a33d | d1c2558f7e97b44533f474f19e8d27a3a170adcf | fix empty response | [
{
"path": "llm/ggml_llama.go",
"patch": "@@ -497,8 +497,10 @@ func (llm *llama) Predict(ctx context.Context, prevContext []int, prompt string,\n \t\t\t\t\treturn fmt.Errorf(\"error unmarshaling llm prediction response: %v\", err)\n \t\t\t\t}\n \n-\t\t\t\tfn(api.GenerateResponse{Response: p.Content})\n-\t\t\... | 2023-09-05T22:03:24 |
huggingface/transformers | 33bca5419c0e08b7b9e58d26a57ececcda0c9fa9 | 0f94e3e152dcc172dbd681aa0d0dc527d9338b8d | Fix typing annotation in hf_argparser (#30156) | [
{
"path": "src/transformers/hf_argparser.py",
"patch": "@@ -376,7 +376,7 @@ def parse_dict(self, args: Dict[str, Any], allow_extra_keys: bool = False) -> Tu\n raise ValueError(f\"Some keys are not used by the HfArgumentParser: {sorted(unused_keys)}\")\n return tuple(outputs)\n \n- def... | 2024-04-10T14:58:56 |
ggml-org/llama.cpp | cc0a04343e56f2decdf2a6df977ff9c9edc85ced | 98c1c7a7bf433f1f64dee23f25e7237caab868c9 | server: friendlier error msg when ctx < input (#18174)
* llama-server: friendlier error msg when ctx < input
This PR adds formatted strings to the server's send_error function
* llama-server: use string_format inline
* fix test | [
{
"path": "tools/server/server-context.cpp",
"patch": "@@ -1974,19 +1974,33 @@ struct server_context_impl {\n \n if (!slot.can_split()) {\n if (slot.task->n_tokens() > n_ubatch) {\n- send_error(slot, \"input is too large to p... | 2025-12-19T11:10:00 |
golang/go | 5a691927659d1057bb3be80087732b5df5889aca | 5c76382762cfc34b7a7678668460f127fec4a35b | cmd/go/internal/modload: drop requirements on excluded versions
Previously, when we encountered an excluded version in any module's
requirements, we would resolve it to the next higher version.
Unfortunately, the meaning of “the next higher version” can change
over time.
Moreover, users who use 'exclude' directives n... | [
{
"path": "src/cmd/go/internal/modload/init.go",
"patch": "@@ -383,8 +383,8 @@ func InitMod(ctx context.Context) {\n \t\tlegacyModInit()\n \t}\n \n-\tmodFileToBuildList()\n \tsetDefaultBuildMod()\n+\tmodFileToBuildList()\n \tif cfg.BuildMod == \"vendor\" {\n \t\treadVendorList()\n \t\tcheckVendorConsistency... | 2020-07-24T21:43:55 |
nodejs/node | beb5226c296492e214346ada70a736195dcab699 | c24671630552a34040d32d5a49fb6f37d6f7694f | test: replace common.fixtures with fixtures module
PR-URL: https://github.com/nodejs/node/pull/15877
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Colin Ihrig <... | [
{
"path": "test/parallel/test-https-agent-sockets-leak.js",
"patch": "@@ -4,14 +4,14 @@ const common = require('../common');\n if (!common.hasCrypto)\n common.skip('missing crypto');\n \n-const fs = require('fs');\n const https = require('https');\n const assert = require('assert');\n+const fixtures = req... | 2017-10-06T17:00:18 |
huggingface/transformers | 0f94e3e152dcc172dbd681aa0d0dc527d9338b8d | 505854f78f61c5254c75e3ffbcf3d7c7fadf65fb | Fix accelerate kwargs for versions <0.28.0 (#30086)
* fix learning rate display issue in galore optimizer
* fix kwarg in accelerate when using versions < 0.28.0
* this was supposed to be in the other PR whoops | [
{
"path": "src/transformers/trainer.py",
"patch": "@@ -4374,8 +4374,9 @@ def create_accelerator_and_postprocess(self):\n even_batches=accelerator_config.pop(\"even_batches\"),\n use_seedable_sampler=accelerator_config.pop(\"use_seedable_sampler\"),\n )\n- ... | 2024-04-10T14:36:43 |
ggml-org/llama.cpp | 98c1c7a7bf433f1f64dee23f25e7237caab868c9 | acb73d83409eb1511803f9df94ac3aa3eb36c50a | presets: refactor, allow cascade presets from different sources, add global section (#18169)
* presets: refactor, allow cascade presets from different sources
* update docs
* fix neg arg handling
* fix empty mmproj
* also filter out server-controlled args before to_ini()
* skip loading custom_models if not specif... | [
{
"path": "common/arg.cpp",
"patch": "@@ -772,6 +772,11 @@ bool common_params_to_map(int argc, char ** argv, llama_example ex, std::map<com\n }\n auto opt = *arg_to_options[arg];\n std::string val;\n+ if (opt.value_hint == nullptr && opt.value_hint_2 == nullptr) {\n+ ... | 2025-12-19T11:08:20 |
golang/go | 5c76382762cfc34b7a7678668460f127fec4a35b | 94953d3e5928c8a577bad7911aabbf627269ef77 | cmd/go/internal/modload: add a "v" prefix to the indexed go version
This allows semver-based comparisons of the version without additional allocations.
Also comment on the reason for the loops that iterate over modFile instead.
(I was reading the vendor code in order to add the lazy-loading version check,
and this s... | [
{
"path": "src/cmd/go/internal/modload/init.go",
"patch": "@@ -483,15 +483,15 @@ func setDefaultBuildMod() {\n \n \tif fi, err := os.Stat(filepath.Join(modRoot, \"vendor\")); err == nil && fi.IsDir() {\n \t\tmodGo := \"unspecified\"\n-\t\tif index.goVersion != \"\" {\n-\t\t\tif semver.Compare(\"v\"+index.go... | 2020-03-13T20:46:51 |
nodejs/node | c24671630552a34040d32d5a49fb6f37d6f7694f | d828c01a656c41454adda3876eaeaa2c001f55d8 | assert: fix actual and expected order
PR-URL: https://github.com/nodejs/node/pull/15866
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmai... | [
{
"path": "test/parallel/test-vm-run-in-new-context.js",
"patch": "@@ -33,7 +33,7 @@ common.globalCheck = false;\n \n // Run a string\n const result = vm.runInNewContext('\\'passed\\';');\n-assert.strictEqual('passed', result);\n+assert.strictEqual(result, 'passed');\n \n // Thrown error\n assert.throws(() ... | 2017-10-06T17:01:02 |
huggingface/transformers | 50c1c19fc7cdb5fe94697131d7ee04253596e994 | b7d002bdff3646cfd55f120b2b9e1b065d54fae5 | [UDOP] Fix tests (#29573)
* Fix tests
* Fix tests
* Remove no_split_modules | [
{
"path": "src/transformers/models/udop/modeling_udop.py",
"patch": "@@ -413,7 +413,6 @@ class UdopPreTrainedModel(PreTrainedModel):\n config_class = UdopConfig\n base_model_prefix = \"transformer\"\n supports_gradient_checkpointing = True\n- _no_split_modules = [\"UdopBlock\"]\n _keep_in... | 2024-04-10T13:47:17 |
ggml-org/llama.cpp | 0a271d82b46577d955b6c5c8020aab3b4d21057d | 52fc7fee8a96211de439aa8ea27dd53e7a4a2200 | model-conversion : add verbose flag in run-org-model.py (#18194)
This commit adds a --verbose flag to the run-org-model.py script to
enable or disable detailed debug output, such as input and output
tensors for each layer. Debug utilities (summarize, debug_hook,
setup_rope_debug) have been moved to utils/common.py.
T... | [
{
"path": "examples/model-conversion/scripts/causal/run-org-model.py",
"patch": "@@ -2,135 +2,22 @@\n \n import argparse\n import os\n+import sys\n import importlib\n from pathlib import Path\n \n+# Add parent directory to path for imports\n+sys.path.insert(0, os.path.join(os.path.dirname(__file__), '..'))\... | 2025-12-19T07:43:16 |
ollama/ollama | 06ef90c051d0637bd46d9339d6829fe4c7641cd6 | e9f6df7dca85abfe473d5b74c25cb45286746483 | fix parameter inheritence
parameters are not inherited because they are processed differently from
other layer. fix this by explicitly merging the inherited params into
the new params. parameter values defined in the new modelfile will
override those defined in the inherited modelfile. array lists are
replaced instead... | [
{
"path": "server/images.go",
"patch": "@@ -276,6 +276,7 @@ func CreateModel(ctx context.Context, name string, path string, fn func(resp api\n \n \tvar layers []*LayerReader\n \tparams := make(map[string][]string)\n+\tvar sourceParams map[string]any\n \tembed := EmbeddingParams{fn: fn}\n \tfor _, c := range... | 2023-09-05T18:05:03 |
golang/go | 94953d3e5928c8a577bad7911aabbf627269ef77 | bb998747d6c5213e3a366936c482e149dce62720 | sync: delete dirty keys inside Map.LoadAndDelete
Fixes #40999
Change-Id: Ie32427e5cb5ed512b976b554850f50be156ce9f2
Reviewed-on: https://go-review.googlesource.com/c/go/+/250197
Run-TryBot: Emmanuel Odeke <emm.odeke@gmail.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Bryan C. Mills <bcmills@google.co... | [
{
"path": "src/sync/map.go",
"patch": "@@ -274,6 +274,7 @@ func (m *Map) LoadAndDelete(key interface{}) (value interface{}, loaded bool) {\n \t\te, ok = read.m[key]\n \t\tif !ok && read.amended {\n \t\t\te, ok = m.dirty[key]\n+\t\t\tdelete(m.dirty, key)\n \t\t\t// Regardless of whether the entry was present... | 2020-08-24T11:45:27 |
nodejs/node | d828c01a656c41454adda3876eaeaa2c001f55d8 | 134d7d78a3219f91e8749f03371435d5b2073b5d | test: use fixtures.readKey()
Use `fixtures.readKey()` in test-http2-create-client-secure-session.js.
PR-URL: https://github.com/nodejs/node/pull/15862
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "test/parallel/test-http2-create-client-secure-session.js",
"patch": "@@ -6,14 +6,12 @@ if (!common.hasCrypto)\n common.skip('missing crypto');\n \n const assert = require('assert');\n-const path = require('path');\n-const fs = require('fs');\n-const tls = require('tls');\n+const fixtures = requ... | 2017-10-06T17:00:37 |
huggingface/transformers | bb76f81e4036b49734d1ecbefb98945164ac9c07 | 56d001b26f244018cbbb8aa573fc668b877223fa | [CI] Quantization workflow fix (#30158)
* fix workflow
* call ci
* Update .github/workflows/self-scheduled-caller.yml
Co-authored-by: Younes Belkada <49240599+younesbelkada@users.noreply.github.com>
---------
Co-authored-by: Younes Belkada <49240599+younesbelkada@users.noreply.github.com> | [
{
"path": ".github/workflows/self-scheduled.yml",
"patch": "@@ -313,6 +313,7 @@ jobs:\n run_tests_quantization_torch_gpu:\n if: ${{ inputs.job == 'run_tests_quantization_torch_gpu' }}\n name: \" \"\n+ needs: setup\n strategy:\n fail-fast: false\n matrix:",
"additions": 1,
... | 2024-04-10T09:51:06 |
ggml-org/llama.cpp | 52fc7fee8a96211de439aa8ea27dd53e7a4a2200 | cdbada8d102c32bead62e9c26473cc1ea37939f0 | android: fix missing screenshots for Android.md (#18156)
* Android basic sample app layout polish
* Add missing screenshots and polish android README doc
* Replace file blobs with URLs served by GitHub pages service. | [
{
"path": "docs/android.md",
"patch": "@@ -1,27 +1,27 @@\n \n # Android\n \n-## Build with Android Studio\n+## Build GUI binding using Android Studio\n \n Import the `examples/llama.android` directory into Android Studio, then perform a Gradle sync and build the project.\n-![Project imported into Android St... | 2025-12-19T07:32:04 |
rust-lang/rust | b46acc01916ba3e8b8f8ab9d89608861d1d4cb87 | 5c5ed92c37a70603e9d45c698898841afacfb25f | Deduplicate CoerceUnsized and DispatchFromDyn impl errors | [
{
"path": "compiler/rustc_hir_analysis/src/coherence/builtin.rs",
"patch": "@@ -195,8 +195,7 @@ fn visit_implementation_of_coerce_unsized(checker: &Checker<'_>) -> Result<(), E\n // Just compute this for the side-effects, in particular reporting\n // errors; other parts of the code may demand it for... | 2025-02-19T19:55:12 |
golang/go | bb998747d6c5213e3a366936c482e149dce62720 | fb5c3eabd16bbeea28ee8a11d29a31cf5ed124dd | cmd/go: populate the Module field for test packages
Fixes #39974
Change-Id: I52bb13e887fde52bf789198059c39fd6aacd96f0
Reviewed-on: https://go-review.googlesource.com/c/go/+/240678
Run-TryBot: Bryan C. Mills <bcmills@google.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Michael Matloob <matloob@golang... | [
{
"path": "src/cmd/go/internal/load/test.go",
"patch": "@@ -191,6 +191,7 @@ func TestPackagesAndErrors(ctx context.Context, p *Package, cover *TestCover) (p\n \t\t\t\tGoFiles: p.XTestGoFiles,\n \t\t\t\tImports: p.XTestImports,\n \t\t\t\tForTest: p.ImportPath,\n+\t\t\t\tModule: p.Module,\n \t\t\... | 2020-07-01T14:33:56 |
nodejs/node | 1c28dfa09a443bab9f72fd1d89a4f645de8c5a42 | c4cb06195deaccf05cc8f4896000b2141a4b26e0 | test: replace fixturesDir with fixtures method
PR-URL: https://github.com/nodejs/node/pull/15894
Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com> | [
{
"path": "test/parallel/test-https-byteswritten.js",
"patch": "@@ -21,16 +21,16 @@\n \n 'use strict';\n const common = require('../common');\n+const fixtures = require('../common/fixtures');\n if (!common.hasCrypto)\n common.skip('missing crypto');\n \n const assert = require('assert');\n-const fs = requ... | 2017-10-06T17:12:29 |
huggingface/transformers | 56d001b26f244018cbbb8aa573fc668b877223fa | 41579763ee47a68d0c15fd798db1a309723d94d2 | Fix and simplify semantic-segmentation example (#30145)
* Remove unused augmentation
* Fix pad_if_smaller() and remove unused augmentation
* Add indentation
* Fix requirements
* Update dataset use instructions
* Replace transforms with albumentations
* Replace identity transform with None
* Fixing... | [
{
"path": "examples/pytorch/_tests_requirements.txt",
"patch": "@@ -25,3 +25,4 @@ torchaudio\n jiwer\n librosa\n evaluate >= 0.2.0\n+albumentations",
"additions": 1,
"deletions": 0,
"language": "Plain Text"
},
{
"path": "examples/pytorch/semantic-segmentation/README.md",
"patch": "@@... | 2024-04-10T08:10:52 |
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.