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 |
|---|---|---|---|---|---|
huggingface/transformers | d90acc16437e8c9e45e068fa1cc1a263b9a7208f | 78ba9f4617370a41c436126bbbb6f8d75924837c | [i18n-de] Translate CONTRIBUTING.md to German (#28954)
* Translate contributing.md to German
* Fix formatting issues in contributing.md
* Address review comments
* Fix capitalization | [
{
"path": "CONTRIBUTING.md",
"patch": "@@ -102,7 +102,7 @@ We have added [templates](https://github.com/huggingface/transformers/tree/main/\n \n ## Do you want to implement a new model?\n \n-New models are constantly released and if you want to implement a new model, please provide the following information... | 2024-02-12T21:39:20 |
vuejs/vue | 008d78bd7280716d2d70e150e3ed2ac5ee8497f2 | bf64c4da5ca516924d940bb29f3e59b0fa5863c9 | fix(compiler-sfc): should transform non relative paths when base option is present
fix https://github.com/vitejs/vite-plugin-vue2/issues/14 | [
{
"path": "packages/compiler-sfc/src/templateCompilerModules/utils.ts",
"patch": "@@ -31,7 +31,6 @@ export function urlToRequire(\n uriParts.path + (uriParts.hash || '')\n )}\"`\n }\n- return returnValue\n }\n \n if (",
"additions": 0,
"deletions": 1,
"language": "Unknow... | 2022-06-28T01:57:19 |
ggml-org/llama.cpp | 338074c383c81366320d176d83b94b0a567ee0c2 | 851553ea6b24cb39fd5fd188b437d777cb411de8 | sycl: add RMS_NORM_BACK operation support (#16808)
* sycl: add RMS_NORM_BACK operation support
* sycl: rms_norm_back: add dual reduction paths (FP64 and FP32) and savepoint before further changes
* sycl: add RMS_NORM_BACK support
Implement RMS_NORM_BACK for the SYCL backend using FP32 compensated parallel reduction... | [
{
"path": "docs/ops.md",
"patch": "@@ -79,7 +79,7 @@ Legend:\n | REPEAT | ❌ | ✅ | ✅ | 🟡 | ✅ | 🟡 | ✅ | 🟡 | ❌ |\n | REPEAT_BACK | ❌ | ❌ | ✅ | ✅ | ❌ | ❌ | ❌ | ✅ | ❌ |\n | RMS_NORM | ❌ | ✅ | ✅ | ✅ | 🟡 | ✅ | ✅ | ✅ | ❌ |\n-| ... | 2025-10-29T06:14:39 |
golang/go | bcda68447b31b86bc3829fca80454ca1a2a572e0 | f65ad0dda7ffef9397d1aaa47259ad4d4f12474f | cmd/link/internal/ld: consider alternative linkers in linkerFlagSupported
CL 235017 is about to change the default Android linker to lld. lld doesn't
support the --compress-debug-sections=zlib-gnu flag, but linkerFlagSupported
doesn't take any alternative linkers specified with -fuse-ld into account.
Updates #38838
... | [
{
"path": "src/cmd/link/internal/ld/lib.go",
"patch": "@@ -1466,6 +1466,7 @@ func (ctxt *Link) hostlink() {\n \t\t}\n \t}\n \n+\tvar altLinker string\n \tif ctxt.IsELF && ctxt.DynlinkingGo() {\n \t\t// We force all symbol resolution to be done at program startup\n \t\t// because lazy PLT resolution can use ... | 2020-05-25T13:27:05 |
huggingface/transformers | f278ef20edb29382c636b3cb7b5b218bdf0b8c71 | 58e3d23e97078f361a533b9ec4a6a2de674ea52a | [Nougat] Fix pipeline (#28242)
* Fix pipeline
* Remove print statements
* Address comments
* Address issue
* Remove unused imports | [
{
"path": "src/transformers/pipelines/__init__.py",
"patch": "@@ -12,15 +12,13 @@\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-import io\n import json\n import os\n im... | 2024-02-12T09:21:15 |
nodejs/node | 11b7428832466dd6933e9c26deaf3a4ce1d33cef | 62813615049aba50ef99af052b23532f2fb35eef | fs: add fs.copyFile{Sync}
Fixes: https://github.com/nodejs/node/issues/14906
PR-URL: https://github.com/nodejs/node/pull/15034
Reviewed-By: Timothy Gu <timothygu99@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Tobias Nießen <tniessen@tnie.... | [
{
"path": "doc/api/fs.md",
"patch": "@@ -750,6 +750,88 @@ Returns an object containing commonly used constants for file system\n operations. The specific constants currently defined are described in\n [FS Constants][].\n \n+## fs.copyFile(src, dest[, flags], callback)\n+<!-- YAML\n+added: REPLACEME\n+-->\n+... | 2017-09-06T16:54:29 |
ggml-org/llama.cpp | 1c1409e13169d0ced4b1b4d39fb5b268b7525091 | 7a0e900e3615fa46c074a7fdf900b47d3c0a1c7e | embedding: add raw option for --embd-output-format (#16541)
* Add --embd-output-format raw for plain numeric embedding output
This new option outputs embeddings as raw space-separated floats, without JSON or 'embedding N:' prefixes. Useful for downstream vector pipelines and scripting.
* Move raw output handling int... | [
{
"path": "common/arg.cpp",
"patch": "@@ -3248,7 +3248,7 @@ common_params_context common_params_parser_init(common_params & params, llama_ex\n ).set_examples({LLAMA_EXAMPLE_EMBEDDING}));\n add_opt(common_arg(\n {\"--embd-output-format\"}, \"FORMAT\",\n- \"empty = default, \\\"array\\\... | 2025-10-28T10:51:41 |
vuejs/vue | 089b27c30b470acd98286ffe072525beb2320dea | 44ab1cda746252a1a81f88e1a9658d33f484ed41 | fix(watch): template ref watcher should fire after owner instance mounted hook
fix #12578 | [
{
"path": "src/v3/apiWatch.ts",
"patch": "@@ -320,11 +320,12 @@ function doWatch(\n } else {\n // pre\n watcher.update = () => {\n- if (!instance || instance._isMounted) {\n- queueWatcher(watcher)\n- } else {\n+ if (instance && instance === currentInstance) {\n+ // pre... | 2022-06-26T08:36:47 |
huggingface/transformers | 58e3d23e97078f361a533b9ec4a6a2de674ea52a | d123e661e44225bc30cfaf6691daba9691d04153 | [i18n-de] Translate README.md to German (#28933)
* Translate README.md to German
* Add links to README_de.md
* Remove invisible characters in README
* Change to a formal tone and fix punctuation marks | [
{
"path": "README.md",
"patch": "@@ -56,6 +56,7 @@ limitations under the License.\n <a href=\"https://github.com/huggingface/transformers/blob/main/README_pt-br.md\">Рortuguês</a> |\n <a href=\"https://github.com/huggingface/transformers/blob/main/README_te.md\">తెలుగు</a> |\n <a hre... | 2024-02-09T20:56:22 |
golang/go | f65ad0dda7ffef9397d1aaa47259ad4d4f12474f | 828bb0c123af11d21c82eb87b64dfa9af24858c7 | cmd/go: fix parallel chatty tests on solaris-amd64 builder
The parallel chatty tests added in CL 229085 fail on the
solaris-amd64-oraclerel builder, because a +NN:NN offset time zone is
used. Allow for the `+` character in the corresponding regex to fix
these tests. Also move the '-' to the end of the character class,... | [
{
"path": "src/cmd/go/testdata/script/test_chatty_parallel_fail.txt",
"patch": "@@ -9,9 +9,9 @@ stdout -count=1 '^=== CONT TestChattyParallel/sub-2\\n chatty_parallel_test.g\n # Run parallel chatty tests with -json. Assert on CONT lines as above - make\n # sure there are CONT lines before each output li... | 2020-05-23T22:09:20 |
ggml-org/llama.cpp | ad8d36beffd791db10c94eb9e964afb891e3ca55 | c053e18a66dd95dc340aa61317877c2a41d4e3cf | sycl: add SSM_CONV operation support (#16800)
* feat: Add SYCL backend support for SSM_CONV operator
* Implement State Space Model Convolution 1D for SYCL backend
* Add optimized GPU kernel with parallel work distribution
* Support various tensor dimensions and batch sizes
* Full integration with existing SYCL infras... | [
{
"path": "ggml/src/ggml-sycl/backend.hpp",
"patch": "@@ -35,6 +35,7 @@\n #include \"roll.hpp\"\n #include \"rope.hpp\"\n #include \"set_rows.hpp\"\n+#include \"ssm_conv.hpp\"\n #include \"softmax.hpp\"\n #include \"tsembd.hpp\"\n #include \"wkv.hpp\"",
"additions": 1,
"deletions": 0,
"language"... | 2025-10-28T01:50:33 |
nodejs/node | 1cdb41f287c8e51a5963f5f8eb8d7c8b5809b99d | 372dc86af5f17d7a8756df6458c41d2538e03e4e | doc: document missing error codes
There are discrepancies between the errors defined in
`lib/internal/errors.js` and those documented in `doc/api/errors.md`.
Some of the errors recently defined are not documented, while others
were removed, but still have entries in the docs. This commit fills in
those gaps in the doc... | [
{
"path": "doc/api/errors.md",
"patch": "@@ -588,6 +588,18 @@ Used as special type of error that can be triggered whenever Node.js detects an\n exceptional logic violation that should never occur. These are raised typically\n by the `assert` module.\n \n+<a id=\"ERR_ASYNC_CALLBACK\"></a>\n+### ERR_ASYNC_CAL... | 2017-09-03T08:27:44 |
vuejs/vue | 44ab1cda746252a1a81f88e1a9658d33f484ed41 | 530b56a36e4689249dce6eba6e5c50e3305346f4 | fix(reactivity): readonly() compat with classes
fix #12574 | [
{
"path": "src/v3/reactivity/readonly.ts",
"patch": "@@ -69,7 +69,7 @@ function createReadonly(target: any, shallow: boolean) {\n return existingProxy\n }\n \n- const proxy = {}\n+ const proxy = Object.create(Object.getPrototypeOf(target))\n def(target, existingFlag, proxy)\n \n def(proxy, React... | 2022-06-23T00:34:26 |
huggingface/transformers | d123e661e44225bc30cfaf6691daba9691d04153 | ebf3ea27885b787706a8dfaba4dd2e4c9ec59ec9 | Fix type annotations on neftune_noise_alpha and fsdp_config TrainingArguments parameters (#28942) | [
{
"path": "src/transformers/training_args.py",
"patch": "@@ -1066,7 +1066,7 @@ class TrainingArguments:\n },\n )\n # Do not touch this type annotation or it will stop working in CLI\n- fsdp_config: Optional[str] = field(\n+ fsdp_config: Optional[Union[dict, str]] = field(\n def... | 2024-02-09T15:42:01 |
ggml-org/llama.cpp | e1ab0848037c9f9bfe68b3e1cee9ee375e1018a3 | 5a4ff43e7dd049e35942bc3d12361dab2f155544 | mtmd : fix idefics3 preprocessing (#16806)
* mtmd : fix idefics3 preprocessing
* disable granite test
* fix test for granite | [
{
"path": "tools/mtmd/clip.cpp",
"patch": "@@ -171,7 +171,7 @@ struct clip_hparams {\n int32_t n_head;\n int32_t n_layer;\n // idefics3\n- int32_t preproc_image_size = 0;\n+ int32_t preproc_image_size = 0; // aka max_dimension\n int32_t proj_scale_factor = 0;\n \n float image_mean[... | 2025-10-27T22:12:16 |
golang/go | 828bb0c123af11d21c82eb87b64dfa9af24858c7 | 8194187a2de9b693af6656ca956762437c2f9c64 | syscall/js: improve documentation of Func.Release
Fixes #38152
Change-Id: I807f49e23cc33e1c9b64029c7504b5a1f81a6bab
Reviewed-on: https://go-review.googlesource.com/c/go/+/235138
Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org> | [
{
"path": "src/syscall/js/func.go",
"patch": "@@ -39,7 +39,7 @@ type Func struct {\n // immediate deadlock. Therefore a blocking function should explicitly start a\n // new goroutine.\n //\n-// Func.Release must be called to free up resources when the function will not be used any more.\n+// Func.Release mu... | 2020-05-24T17:16:03 |
nodejs/node | 372dc86af5f17d7a8756df6458c41d2538e03e4e | 2ffc8ac3017eb2246deb99019aacd618e5c088c3 | tls: multiple PFX in createSecureContext
Add support for multiple PFX files in tls.createSecureContext.
Also added support for object-style PFX pass.
PR-URL: https://github.com/nodejs/node/pull/14793
Fixes: https://github.com/nodejs/node/issues/14756
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: ... | [
{
"path": "doc/api/tls.md",
"patch": "@@ -934,10 +934,14 @@ changes:\n -->\n \n * `options` {Object}\n- * `pfx` {string|Buffer} Optional PFX or PKCS12 encoded private key and\n- certificate chain. `pfx` is an alternative to providing `key` and `cert`\n- individually. PFX is usually encrypted, if it i... | 2017-08-12T16:06:35 |
vuejs/vue | 7a3aa3faac6b8eb066f32813788b4c1d16f34c6b | fb7f5f0b6741a33960946175c4d8d35e31eee9f6 | fix(watch): fix pre watchers not flushed on mount for nested component
fix #12569 | [
{
"path": "src/core/instance/lifecycle.ts",
"patch": "@@ -218,15 +218,17 @@ export function mountComponent(\n )\n hydrating = false\n \n+ // flush buffer for flush: \"pre\" watchers queued in setup()\n+ const preWatchers = vm._preWatchers\n+ if (preWatchers) {\n+ for (let i = 0; i < preWatchers.le... | 2022-06-22T02:20:02 |
huggingface/transformers | ebf3ea27885b787706a8dfaba4dd2e4c9ec59ec9 | de11e654c962d5b23eb53a4387cd637b01987491 | Fix a wrong link to CONTRIBUTING.md section in PR template (#28941) | [
{
"path": ".github/PULL_REQUEST_TEMPLATE.md",
"patch": "@@ -17,7 +17,7 @@ Fixes # (issue)\n \n ## Before submitting\n - [ ] This PR fixes a typo or improves the docs (you can dismiss the other checks if that's the case).\n-- [ ] Did you read the [contributor guideline](https://github.com/huggingface/transfo... | 2024-02-09T15:10:47 |
golang/go | b68fa57c599720d33a2d735782969ce95eabf794 | 9acdc705e7d53a59b8418dd0beb570db35f7a744 | encoding/asn1: document what Unmarshal returns in rest
Specifically, this change documents the behavior of Unmarshal when a
SEQUENCE contains trailing elements.
For context Unmarshal treats trailing elements of a SEQUENCE that do not
have matching struct fields as valid, as this is how ASN.1 structures
are typically ... | [
{
"path": "src/encoding/asn1/asn1.go",
"patch": "@@ -1037,6 +1037,12 @@ func setDefaultValue(v reflect.Value, params fieldParameters) (ok bool) {\n // Because Unmarshal uses the reflect package, the structs\n // being written to must use upper case field names.\n //\n+// After parsing b, any bytes that were... | 2020-05-12T18:06:42 |
ggml-org/llama.cpp | 10640e31aab0819f31c1e1f2d008b019ee737232 | 80d28f104c0c3e61c11d6af073642b246a9fc19c | ggml : fix interpolate with align-corners and ne=1 (#16700)
* ggml : fix interpolate with align-corners and ne=1
* avoid division by zero if one of the spatial dimensions is 1
* cpu, cuda, opencl returned correct result anyway due to clamp
* vulkan didn't clamp for align-corners so results were broken
* fix clang wa... | [
{
"path": "ggml/src/ggml-cpu/ops.cpp",
"patch": "@@ -7519,8 +7519,8 @@ static void ggml_compute_forward_upscale_f32(\n float pixel_offset = 0.5f;\n if (mode_flags & GGML_SCALE_FLAG_ALIGN_CORNERS) {\n pixel_offset = 0.0f;\n- sf0 = (float)(ne0 - 1) / (src0->ne[0] - 1);\n... | 2025-10-27T20:50:22 |
nodejs/node | 81b2a89ad3284a71e5a622a435adc160d343d455 | 9bae3eacc671cac29f4aadf12acb15dc9b6bf1b2 | deps: cherry-pick 5005faed5 from V8 upstream
Original commit message:
[turbofan] Improve representation selection for type guard.
This takes into account the type of the type guard when choosing
representation for a node. To make the representation changes
unambiguous, we pass the restricted type to ... | [
{
"path": "deps/v8/src/compiler/simplified-lowering.cc",
"patch": "@@ -734,7 +734,11 @@ class RepresentationSelector {\n !GetUpperBound(node->InputAt(1))->Maybe(type);\n }\n \n- void ConvertInput(Node* node, int index, UseInfo use) {\n+ // Converts input {index} of {node} according to given U... | 2017-09-04T11:26:42 |
vuejs/vue | 65531f580314d832f44ecd5c782f79da3e977da7 | a122bd25c3c453c91a7f35b54b2c75df8b0b1f24 | fix(types): fix instance type inference for setup() with no return value
fix #12568 | [
{
"path": "types/test/v3/setup-test.ts",
"patch": "@@ -93,3 +93,11 @@ defineComponent({\n res?.charAt(1)\n }\n })\n+\n+// #12568\n+const vm = new Vue({\n+ setup() {},\n+ render: h => h({})\n+})\n+\n+vm.$mount('#app')",
"additions": 8,
"deletions": 0,
"language": "Unknown"
},
{
"p... | 2022-06-22T01:44:41 |
huggingface/transformers | de11e654c962d5b23eb53a4387cd637b01987491 | 2749e479f30ab13235b0b9b4a6bbcf4c3b29a081 | Fix max_position_embeddings default value for llama2 to 4096 #28241 (#28754)
* Changed max_position_embeddings default value from 2048 to 4096
* force push
* Fixed formatting issues. Fixed missing argument in write_model.
* Reverted to the default value 2048 in the Llama config. Added comments for the llama_v... | [
{
"path": "src/transformers/models/llama/convert_llama_weights_to_hf.py",
"patch": "@@ -80,7 +80,9 @@ def write_json(text, path):\n json.dump(text, f)\n \n \n-def write_model(model_path, input_base_path, model_size, tokenizer_path=None, safe_serialization=True):\n+def write_model(\n+ model_path, ... | 2024-02-09T10:24:01 |
ggml-org/llama.cpp | 80d28f104c0c3e61c11d6af073642b246a9fc19c | c55d53acec864f64afa1ba92972203dce1bf88f5 | HIP: fix AMDGPU_TARGETS, update documentation (#16803) | [
{
"path": "docs/build.md",
"patch": "@@ -261,10 +261,12 @@ You can download it from your Linux distro's package manager or from here: [ROCm\n - Using `CMake` for Linux (assuming a gfx1030-compatible AMD GPU):\n ```bash\n HIPCXX=\"$(hipconfig -l)/clang\" HIP_PATH=\"$(hipconfig -R)\" \\\n- cmake -S .... | 2025-10-27T20:39:49 |
golang/go | ea2de3346ff8714c9fae95c2a3d686ec07d47ca8 | 9f4aeb36e22f5c7eda76111b4c49c0434b4d2897 | runtime: detect and report zombie slots during sweeping
A zombie slot is a slot that is marked, but isn't allocated. This can
indicate a bug in the GC, or a bad use of unsafe.Pointer. Currently,
the sweeper has best-effort detection for zombie slots: if there are
more marked slots than allocated slots, then there must... | [
{
"path": "src/runtime/gc_test.go",
"patch": "@@ -12,6 +12,7 @@ import (\n \t\"runtime\"\n \t\"runtime/debug\"\n \t\"sort\"\n+\t\"strings\"\n \t\"sync\"\n \t\"sync/atomic\"\n \t\"testing\"\n@@ -192,6 +193,15 @@ func TestPeriodicGC(t *testing.T) {\n \t}\n }\n \n+func TestGcZombieReporting(t *testing.T) {\n+\... | 2020-05-14T20:55:39 |
vuejs/vue | 9b9f2bf1c8429136e7122d146e0e39bdeada5d1d | de03f69cd6780272e351efed743585ccf110be19 | fix(compiler-sfc): properly handle shorthand property in template expressions
fix #12566 | [
{
"path": "packages/compiler-sfc/src/prefixIdentifiers.ts",
"patch": "@@ -1,7 +1,7 @@\n import MagicString from 'magic-string'\n import { parseExpression, ParserOptions, ParserPlugin } from '@babel/parser'\n import { makeMap } from 'shared/util'\n-import { walkIdentifiers } from './babelUtils'\n+import { is... | 2022-06-21T01:41:30 |
nodejs/node | 9bae3eacc671cac29f4aadf12acb15dc9b6bf1b2 | 7540821fb5e44e7f67ed03923ff2700859eb81ad | inspector: log exceptions in message handlers
Fixes: https://github.com/nodejs/node/issues/14965
PR-URL: https://github.com/nodejs/node/pull/14980
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Timothy Gu <timothygu99@gmail.com> | [
{
"path": "lib/inspector.js",
"patch": "@@ -29,14 +29,18 @@ class Session extends EventEmitter {\n \n [onMessageSymbol](message) {\n const parsed = JSON.parse(message);\n- if (parsed.id) {\n- const callback = this[messageCallbacksSymbol].get(parsed.id);\n- this[messageCallbacksSymbol].del... | 2017-08-22T16:46:33 |
ggml-org/llama.cpp | 945501f5ea4b8ca56b181ecb035e9ee3fb31f432 | 75cbdd3fce38ea12d50cd19e73a069aa5dbbd5fa | llama: fix leaked buffers for mmap + split files (#16765) | [
{
"path": "src/llama-model.cpp",
"patch": "@@ -15,7 +15,6 @@\n \n #include <algorithm>\n #include <cassert>\n-#include <cmath>\n #include <cfloat>\n #include <cstring>\n #include <cmath>\n@@ -438,7 +437,7 @@ struct llama_model::impl {\n llama_mlocks mlock_mmaps;\n \n // contexts where the model tens... | 2025-10-27T08:17:31 |
huggingface/transformers | 2749e479f30ab13235b0b9b4a6bbcf4c3b29a081 | d628664688b05cabdd69f4e7e295bc4aee0a8d31 | [Docs] Fix broken links and syntax issues (#28918)
* Fix model documentation links in attention.md
* Fix external link syntax
* Fix target anchor names of section links
* Fix copyright statement comments
* Fix documentation headings | [
{
"path": "docs/source/de/add_new_model.md",
"patch": "@@ -682,7 +682,7 @@ model.save_pretrained(\"/path/to/converted/checkpoint/folder\")\n **7. Implementieren Sie den Vorwärtspass**\n \n Nachdem es Ihnen gelungen ist, die trainierten Gewichte korrekt in die 🤗 Transformers-Implementierung zu laden, sollte... | 2024-02-08T22:13:35 |
vuejs/vue | c9d0e3aee1a4cf2f7bda7d69b66972084b74b737 | 0f2cede3748eab94d1f14333c079c9886cc194e5 | ci: e2e test fix | [
{
"path": "examples/composition/todomvc.html",
"patch": "@@ -1,4 +1,4 @@\n-<script src=\"../../dist/vue.js\"></script>\n+<script src=\"../../dist/vue.min.js\"></script>\n <link\n rel=\"stylesheet\"\n href=\"../../node_modules/todomvc-app-css/index.css\"\n@@ -90,7 +90,7 @@ <h1>todos</h1>\n <script>\n c... | 2022-06-20T08:22:54 |
nodejs/node | 46133b5beba2c780fb3b9a9d6be610d09f752182 | 641646463ddac7f306730a216675428e2bbe4dbf | http2: use session not socket timeout, tests
Change default timeout to be tracked on the session instead
of the socket, as nghttp2 manages the socket and we would
need to maintain two sets of timeouts for similar purpose.
Also fixes session setTimeout to work as it wasn't getting
_unrefActive correctly (was called on ... | [
{
"path": "lib/internal/http2/core.js",
"patch": "@@ -150,8 +150,8 @@ function emit() {\n // event. If the stream is not new, emit the 'headers' event to pass\n // the block of headers on.\n function onSessionHeaders(id, cat, flags, headers) {\n- _unrefActive(this);\n const owner = this[kOwner];\n+ _unr... | 2017-09-07T18:02:19 |
ggml-org/llama.cpp | 2b9bd9bf4e759c05db629ec1c391dc8aeaa71887 | 59fc1ec8e83b14354c1a3a8acf8c5c2cbf9af42f | sycl: add ROLL operation support (#16665)
* sycl: add ROLL operation support
- Implement ggml_sycl_roll function for F32 tensors
- Add multi-axis roll operation with SYCL kernel
- Support all 4 tensor dimensions with proper shift normalization
- Add roll.cpp and roll.hpp to SYCL backend
- Update backend dispatch and ... | [
{
"path": "ggml/src/ggml-sycl/backend.hpp",
"patch": "@@ -32,6 +32,7 @@\n #include \"pad.hpp\"\n #include \"quantize.hpp\"\n #include \"quants.hpp\"\n+#include \"roll.hpp\"\n #include \"rope.hpp\"\n #include \"set_rows.hpp\"\n #include \"softmax.hpp\"",
"additions": 1,
"deletions": 0,
"language"... | 2025-10-27T01:20:24 |
golang/go | 9f4aeb36e22f5c7eda76111b4c49c0434b4d2897 | 11b3730a02c93fd5745bfd977156541a9033759b | all: use a hermetic "go" tool in standard-library tests
The go/build package uses the "go" tool from the user's environment,
but its tests should not assume that that tool is in any particular
state, let alone appropriate for running the test.
Instead, explicitly use testenv.GoTool, adding it to $PATH in a
TestMain w... | [
{
"path": "src/go/build/build_test.go",
"patch": "@@ -5,6 +5,7 @@\n package build\n \n import (\n+\t\"flag\"\n \t\"internal/testenv\"\n \t\"io\"\n \t\"io/ioutil\"\n@@ -16,6 +17,14 @@ import (\n \t\"testing\"\n )\n \n+func TestMain(m *testing.M) {\n+\tflag.Parse()\n+\tif goTool, err := testenv.GoTool(); err ... | 2020-05-21T18:16:50 |
huggingface/transformers | d628664688b05cabdd69f4e7e295bc4aee0a8d31 | cc309fd4061384b90ad9161565bc23d0c6936029 | Support batched input for decoder start ids (#28887)
* support batched input for decoder start ids
* Fix typos
Co-authored-by: Joao Gante <joaofranciscocardosogante@gmail.com>
* minor changes
* fix: decoder_start_id as list
* empty commit
* empty commit
* empty commit
* empty commit
* empty ... | [
{
"path": "src/transformers/generation/configuration_utils.py",
"patch": "@@ -233,8 +233,11 @@ class GenerationConfig(PushToHubMixin):\n encoder_no_repeat_ngram_size (`int`, *optional*, defaults to 0):\n If set to int > 0, all ngrams of that size that occur in the `encoder_input_ids` can... | 2024-02-08T16:00:53 |
vuejs/vue | 2d676416566c06d7c789899c92bf0f6924ec284a | 9d54f8bdfe9db75853befdc916bc85a18b337583 | fix: remove wrong observe toggle, properly disable tracking in setup() | [
{
"path": "src/v3/apiSetup.ts",
"patch": "@@ -1,6 +1,6 @@\n import { Component } from 'types/component'\n import { PropOptions } from 'types/options'\n-import { toggleObserving } from '../core/observer'\n+import { popTarget, pushTarget } from '../core/observer/dep'\n import { def, invokeWithErrorHandling, i... | 2022-06-20T06:32:50 |
nodejs/node | 641646463ddac7f306730a216675428e2bbe4dbf | 447715543b5f80cbee6496657179f1393a631fbf | http2: add compat trailers, adjust multi-headers
Adds Http2ServerRequest trailers & rawTrailers functionality. Also fixes
behaviour of multi-headers to conform with the spec (all values but
set-cookie and cookie should be comma delimited, cookie should be
semi-colon delimited and only set-cookie should be an array). A... | [
{
"path": "lib/internal/http2/compat.js",
"patch": "@@ -13,7 +13,9 @@ const kStream = Symbol('stream');\n const kRequest = Symbol('request');\n const kResponse = Symbol('response');\n const kHeaders = Symbol('headers');\n+const kRawHeaders = Symbol('rawHeaders');\n const kTrailers = Symbol('trailers');\n+co... | 2017-09-05T02:29:59 |
vuejs/vue | 52cf912d855a7fae8d8c89452f0d275846e26a87 | 2533a360a838c41238dc9b9b840932f2957c65d4 | fix(setup): setup props should pass isReactive check
close #12561 | [
{
"path": "src/core/instance/state.ts",
"patch": "@@ -30,7 +30,7 @@ import {\n isFunction\n } from '../util/index'\n import type { Component } from 'types/component'\n-import { TrackOpTypes } from '../../v3'\n+import { shallowReactive, TrackOpTypes } from 'v3'\n \n const sharedPropertyDefinition = {\n e... | 2022-06-20T05:09:56 |
golang/go | 11b3730a02c93fd5745bfd977156541a9033759b | 0a90ecad071b3d1d5c6c789f6a6f1417b72862b2 | runtime: disable preemption in startTemplateThread
When a locked M wants to start a new M, it hands off to the template
thread to actually call clone and start the thread. The template thread
is lazily created the first time a thread is locked (or if cgo is in
use).
stoplockedm will release the P (_Pidle), then call ... | [
{
"path": "src/runtime/crash_test.go",
"patch": "@@ -55,6 +55,16 @@ func runTestProg(t *testing.T, binary, name string, env ...string) string {\n \t\tt.Fatal(err)\n \t}\n \n+\treturn runBuiltTestProg(t, exe, name, env...)\n+}\n+\n+func runBuiltTestProg(t *testing.T, exe, name string, env ...string) string {... | 2020-05-07T22:13:21 |
huggingface/transformers | 0b693e90e0748e16427a2764d516e9f5ba801bcc | 693667b8ac8138b83f8adb6522ddaf42fa07c125 | fix: torch.int32 instead of torch.torch.int32 (#28883) | [
{
"path": "src/transformers/models/bark/modeling_bark.py",
"patch": "@@ -75,7 +75,7 @@ def _get_unpad_data(attention_mask):\n seqlens_in_batch = attention_mask.sum(dim=-1, dtype=torch.int32)\n indices = torch.nonzero(attention_mask.flatten(), as_tuple=False).flatten()\n max_seqlen_in_batch = seq... | 2024-02-08T15:28:17 |
vuejs/vue | 2533a360a838c41238dc9b9b840932f2957c65d4 | 0fabda7a3b016c1c0cb5d92f5d8efc35f0dbde40 | fix(template-ref): preserve ref removal behavior in non-composition-api usage
close #12554 | [
{
"path": "src/core/vdom/modules/template-ref.ts",
"patch": "@@ -33,6 +33,7 @@ export function registerRef(vnode: VNodeWithData, isRemoval?: boolean) {\n const vm = vnode.context\n const refValue = vnode.componentInstance || vnode.elm\n const value = isRemoval ? null : refValue\n+ const $refsValue = ... | 2022-06-20T04:42:32 |
nodejs/node | 447715543b5f80cbee6496657179f1393a631fbf | 964beed2f2669d6192cd916c93dc0d7c5194beac | doc: add options argument to crypto docs
PR-URL: https://github.com/nodejs/node/pull/14846
Fixes: https://github.com/nodejs/node/issues/14804
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Refael Ackermann <refack@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Sakthipriyan ... | [
{
"path": "doc/api/crypto.md",
"patch": "@@ -1172,15 +1172,16 @@ added: v6.0.0\n Property for checking and controlling whether a FIPS compliant crypto provider is\n currently in use. Setting to true requires a FIPS build of Node.js.\n \n-### crypto.createCipher(algorithm, password)\n+### crypto.createCipher... | 2017-08-15T20:16:14 |
golang/go | 0a90ecad071b3d1d5c6c789f6a6f1417b72862b2 | c847589ad06a1acfcceaac7b230c0d5a826caab8 | testing: reformat test chatty output
In #24929, we decided to stream chatty test output. It looks like,
foo_test.go:138: TestFoo/sub-1: hello from subtest 1
foo_test.go:138: TestFoo/sub-2: hello from subtest 2
In this CL, we refactor the output to be grouped by === CONT lines, preserving
the old test-file-before-log... | [
{
"path": "src/cmd/go/testdata/script/test_benchmark_chatty_fail.txt",
"patch": "@@ -0,0 +1,32 @@\n+# Run chatty tests. Assert on CONT lines.\n+! go test chatty_test.go -v -bench . chatty_bench\n+\n+# Sanity check that output occurs.\n+stdout -count=2 'this is sub-0'\n+stdout -count=2 'this is sub-1'\n+stdo... | 2020-05-04T20:06:34 |
vuejs/vue | 328ebff04198143385371c857ad23f739be9509d | b2332faf04dc3cabd8dee2fdc53ced99441b87ed | fix(compiler-sfc): do not transform external and data urls in templates | [
{
"path": "packages/compiler-sfc/src/templateCompilerModules/utils.ts",
"patch": "@@ -14,8 +14,11 @@ export function urlToRequire(\n url = url.slice(secondChar === '/' ? 2 : 1)\n }\n \n- const uriParts = parseUriParts(url)\n+ if (isExternalUrl(url) || isDataUrl(url) || firstChar === '#') {\n+ ret... | 2022-06-17T02:45:52 |
rust-lang/rust | d1fb18e2b7e584fe92607f413015c418b9c206ac | 4273bece6f6ddf1a3b1e19dc319c5cb87a42384a | Calculate drop glue and show it on hover
Also fix the `needs_drop()` intrinsic.
Unions also need this information (to err if they have a drop-needing field), but this will come in a follow-up PR. | [
{
"path": "src/tools/rust-analyzer/crates/hir-ty/src/consteval/tests/intrinsics.rs",
"patch": "@@ -354,12 +354,43 @@ fn overflowing_add() {\n fn needs_drop() {\n check_number(\n r#\"\n- //- minicore: copy, sized\n+ //- minicore: drop, manually_drop, copy, sized\n+ use core::... | 2025-01-20T17:48:55 |
nodejs/node | 964beed2f2669d6192cd916c93dc0d7c5194beac | ca78180a6870d87ff0a2da5eff5c70e6e63d2602 | src: turn key length exception into CHECK
This exception can logically never happen because of the key stretching
that takes place first. Failure must therefore be a bug in Node.js and
not in the executing script.
PR-URL: https://github.com/nodejs/node/pull/15183
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed... | [
{
"path": "src/node_crypto.cc",
"patch": "@@ -3352,10 +3352,7 @@ void CipherBase::Init(const char* cipher_type,\n if (mode == EVP_CIPH_WRAP_MODE)\n EVP_CIPHER_CTX_set_flags(&ctx_, EVP_CIPHER_CTX_FLAG_WRAP_ALLOW);\n \n- if (!EVP_CIPHER_CTX_set_key_length(&ctx_, key_len)) {\n- EVP_CIPHER_CTX_cleanup... | 2017-08-27T04:31:59 |
vuejs/vue | cdfc4c134ddadc33f3b50d53ec6316b0c96f4567 | 8f5817a7c9a0664438e4299f82ac41a67f156f89 | fix(compiler-sfc): expose src on custom blocks as well | [
{
"path": "packages/compiler-sfc/src/parseComponent.ts",
"patch": "@@ -125,6 +125,11 @@ export function parseComponent(\n return cumulated\n }, {})\n }\n+\n+ if (typeof currentBlock.attrs.src === 'string') {\n+ currentBlock.src = currentBlock.attrs.src\n+ }\n+\n ... | 2022-06-17T01:36:34 |
golang/go | c847589ad06a1acfcceaac7b230c0d5a826caab8 | 39ea0ea05dcfa281dc5977410b60458f2d2adb99 | runtime: synchronize StartTrace and StopTrace with sysmon
Currently sysmon is not stopped when the world is stopped, which is
in general a difficult thing to do. The result of this is that when
tracing starts and the value of trace.enabled changes, it's possible
for sysmon to fail to emit an event when it really shoul... | [
{
"path": "src/runtime/lockrank.go",
"patch": "@@ -33,6 +33,7 @@ const (\n \tlockRankDummy lockRank = iota\n \n \t// Locks held above sched\n+\tlockRankSysmon\n \tlockRankScavenge\n \tlockRankForcegc\n \tlockRankSweepWaiters\n@@ -113,6 +114,7 @@ const lockRankLeafRank lockRank = 1000\n var lockNames = []str... | 2020-05-19T16:33:17 |
ggml-org/llama.cpp | 59fc1ec8e83b14354c1a3a8acf8c5c2cbf9af42f | 75d33b9302f84a5b89f82205d2bcd8def5a64e0a | sycl: add REPEAT_BACK operation support (#16734)
* SYCL repeat_back v1 — add core op + switch case
* Implement repeat_back SYCL operation and minor fixes
* Update ggml/src/ggml-sycl/repeat_back.cpp
Co-authored-by: Sigbjørn Skjæret <sigbjorn.skjaeret@scala.com>
* Update ggml/src/ggml-sycl/repeat_back.hpp
Co-author... | [
{
"path": "ggml/src/ggml-sycl/ggml-sycl.cpp",
"patch": "@@ -48,6 +48,7 @@\n #include \"ggml-sycl/set.hpp\"\n #include \"ggml-sycl/sycl_hw.hpp\"\n #include \"ggml-sycl/getrows.hpp\"\n+#include \"ggml-sycl/repeat_back.hpp\"\n #include \"ggml-sycl/quantize.hpp\"\n #include \"ggml.h\"\n \n@@ -2615,6 +2616,10 @@... | 2025-10-27T01:19:50 |
rust-lang/rust | b141440f8621e238941f1b79a4e9ea7bcd9c38bc | 0b90953a2d35b1886829fb8ec986d59d337f9c3a | Move some `Map` methods onto `TyCtxt`.
The end goal is to eliminate `Map` altogether.
I added a `hir_` prefix to all of them, that seemed simplest. The
exceptions are `module_items` which became `hir_module_free_items` because
there was already a `hir_module_items`, and `items` which became
`hir_free_items` for consi... | [
{
"path": "src/driver/jit.rs",
"patch": "@@ -124,7 +124,7 @@ pub(crate) fn run_jit(tcx: TyCtxt<'_>, codegen_mode: CodegenMode, jit_args: Vec<\n crate::constant::codegen_static(tcx, &mut jit_module, def_id);\n }\n MonoItem::GlobalAsm(item_id) => {\n- ... | 2025-02-02T23:45:49 |
nodejs/node | 800c32d315c5e1962f368ab406ba5322eeeac2d4 | 7487d619818af153296cf67ba571387b7639ec14 | http2: fix closedCode NaN, increase test coverage
[kFinish](code) can be triggered from a 'finish' event (for example
when calling response.end) which does not pass code. That tries to
set closedCode to undefined resulting in NaN closedCode instead of
NGHTTP2_NO_ERROR. Check for code !== undefined before setting.
Adds... | [
{
"path": "lib/internal/http2/compat.js",
"patch": "@@ -249,7 +249,8 @@ class Http2ServerRequest extends Readable {\n const state = this[kState];\n if (state.closed)\n return;\n- state.closedCode = code;\n+ if (code !== undefined)\n+ state.closedCode = code;\n state.closed = tru... | 2017-09-03T01:18:38 |
golang/go | 39ea0ea05dcfa281dc5977410b60458f2d2adb99 | fed33d76bcf5d378f0322b308768d156239b0bfc | cmd/link: fix size calculation for file space preallocation on darwin
On darwin, we preallocate file storage space with fcntl
F_ALLOCATEALL in F_PEOFPOSMODE mode. This is specified as
allocating from the physical end of the file. So the size we give
it should be the increment, instead of the total size.
Fixes #39044.... | [
{
"path": "src/cmd/link/internal/ld/fallocate_test.go",
"patch": "@@ -0,0 +1,50 @@\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+// +build darwin linux\n+\n+package ld\n+\n+import (\n+... | 2020-05-18T19:23:46 |
ggml-org/llama.cpp | bbac6a26b2bd7f7c1f0831cb1e7b52734c66673b | 73a48c9790d320476b3e5ef75bda09f2f8269e6e | ggml: fix cuda kernel launch configuration for k_compute_batched_ptrs to support large batch (#16744)
* fix k_compute_batched_ptrs
* add backend ops test
* Update ggml/src/ggml-cuda/ggml-cuda.cu
Co-authored-by: Johannes Gäßler <johannesg@5d6.de>
* reduce the batch size
---------
Co-authored-by: Johannes Gäßler <... | [
{
"path": "ggml/src/ggml-cuda/ggml-cuda.cu",
"patch": "@@ -1957,8 +1957,15 @@ static void ggml_cuda_mul_mat_batched_cublas_impl(ggml_backend_cuda_context & ct\n \n size_t src1_stride_size = sizeof(cuda_t);\n \n- dim3 block_dims(ne13, ne12);\n- k_compute_batched_ptrs<<<1, block_dims, 0,... | 2025-10-26T18:13:31 |
huggingface/transformers | 4b236aed7618d90546cd2e8797dab5b4a24c5dce | 33df036917bce520803e6d2cd26e81fead802130 | Fix utf-8 yaml load for marian conversion to pytorch in Windows (#28618)
Fix utf-8 yaml in marian conversion | [
{
"path": "src/transformers/models/marian/convert_marian_to_pytorch.py",
"patch": "@@ -677,7 +677,7 @@ def convert(source_dir: Path, dest_dir):\n def load_yaml(path):\n import yaml\n \n- with open(path) as f:\n+ with open(path, encoding=\"utf-8\") as f:\n return yaml.load(f, Loader=yaml.Ba... | 2024-02-08T07:23:15 |
rust-lang/rust | 8cf9eea5b3640fc119db11a70107ef09b44a5082 | fc532c5b322106e8ddc6485451cd5f14c4e995bd | Move some `Map` methods onto `TyCtxt`.
The end goal is to eliminate `Map` altogether.
I added a `hir_` prefix to all of them, that seemed simplest. The
exceptions are `module_items` which became `hir_module_free_items` because
there was already a `hir_module_items`, and `items` which became
`hir_free_items` for consi... | [
{
"path": "clippy_lints/src/arbitrary_source_item_ordering.rs",
"patch": "@@ -338,7 +338,7 @@ impl<'tcx> LateLintPass<'tcx> for ArbitrarySourceItemOrdering {\n return;\n }\n \n- let items = module.item_ids.iter().map(|&id| cx.tcx.hir().item(id));\n+ let items = module.item_... | 2025-02-02T23:45:49 |
nodejs/node | 7487d619818af153296cf67ba571387b7639ec14 | 6e27fd7bdeb60477d19c4d80dac57b002e6552e4 | test: refactor test-fs-readfile-unlink
* Use tmp directory instead of mutating the fixtures directory.
* Add comment explaining that the unlinkSync() at the end of the test is
part of the test. Otherwise it may be tempting to remove it as
unnecessary tmp directory cleanup.
PR-URL: https://github.com/nodejs/node/p... | [
{
"path": "test/parallel/test-fs-readfile-unlink.js",
"patch": "@@ -20,22 +20,15 @@\n // USE OR OTHER DEALINGS IN THE SOFTWARE.\n \n 'use strict';\n-require('../common');\n+const common = require('../common');\n const assert = require('assert');\n const fs = require('fs');\n const path = require('path');\n-... | 2017-09-03T18:09:13 |
golang/go | fed33d76bcf5d378f0322b308768d156239b0bfc | 0cfe1fb87815c4bee910f6f066f7872800dbce24 | cmd/compile: delay inlinable method compilation for -c=1
When the concurrent back end is not enabled, it is possible to have a
scenario where: we compile a specific inlinable non-pointer-receiver
method T.M, then at some point later on in the compilation we visit a
type that triggers generation of a pointer-receiver w... | [
{
"path": "src/cmd/compile/internal/gc/pgen.go",
"patch": "@@ -271,7 +271,7 @@ func compile(fn *Node) {\n \t\t}\n \t}\n \n-\tif compilenow() {\n+\tif compilenow(fn) {\n \t\tcompileSSA(fn, 0)\n \t} else {\n \t\tcompilequeue = append(compilequeue, fn)\n@@ -282,10 +282,31 @@ func compile(fn *Node) {\n // If fu... | 2020-05-15T16:19:07 |
huggingface/transformers | 328ade855b653ba803f2a02349f82fd84a4e059c | 5f9685576149fb45a61d0dcec9a260930df0a49a | [Docs] Fix placement of tilde character (#28913)
Fix placement of tilde character | [
{
"path": "docs/README.md",
"patch": "@@ -202,7 +202,7 @@ provide its path. For instance: \\[\\`utils.ModelOutput\\`\\]. This will be converte\n `utils.ModelOutput` in the description. To get rid of the path and only keep the name of the object you are\n linking to in the description, add a ~: \\[\\`~utils.... | 2024-02-08T01:19:39 |
vuejs/vue | 2726b6d9ff3030af63012a304c33781163461a23 | fa2115c0310037aa09d968de7f3bc604c53d343f | fix: further align types with v3 | [
{
"path": "packages/compiler-sfc/src/compileTemplate.ts",
"patch": "@@ -1,8 +1,4 @@\n-import {\n- BindingMetadata,\n- VueTemplateCompiler,\n- VueTemplateCompilerOptions\n-} from './types'\n+import { BindingMetadata, TemplateCompiler } from './types'\n import assetUrlsModule, {\n AssetURLOptions,\n Tr... | 2022-06-16T09:45:33 |
nodejs/node | 1df16c601a90059a1be1b819de14c5695120d88e | 343d9dca95ebc413393a5d541612c34949ba9c6f | src: fix DEBUG_HTTP2 type arguments
Currently when building using --debug-http2 there are a number of
compilation errors like the following:
In file included from ../src/node_http2.cc:3:
In file included from ../src/node_http2.h:6:
../src/node_http2_core-inl.h:43:32: error: too few arguments to function
call, single ... | [
{
"path": "src/node_http2_core-inl.h",
"patch": "@@ -40,7 +40,7 @@ inline int Nghttp2Session::OnNghttpError(nghttp2_session* session,\n void* user_data) {\n Nghttp2Session* handle = static_cast<Nghttp2Session*>(user_data);\n DEBUG_HTTP2(\"Nghttp2Session %s: Error... | 2017-09-05T08:38:46 |
ggml-org/llama.cpp | 3cfa9c3f125763305b4226bc032f1954f08990dc | 5d195f17bc60eacc15cfb929f9403cf29ccdf419 | vulkan: deduplicate Microsoft Direct3D12 devices (#16689)
* fix: deduplicate and deprioritize Microsoft Direct3D12 vulkan devices from the `vulkan-dozen` driver
* style: indent
* fix: decrease priority
* fix: switch to `||` | [
{
"path": "ggml/src/ggml-vulkan/ggml-vulkan.cpp",
"patch": "@@ -4733,7 +4733,14 @@ static void ggml_vk_instance_init() {\n vk::PhysicalDeviceIDProperties old_id;\n old_props.pNext = &old_id;\n devices[k].getProperties2(&old_props);\n- ... | 2025-10-26T04:37:38 |
rust-lang/rust | f86f7ad5f2d3eb6631e5fab57630a4fee9a50d01 | cd1d84cdf76e86f2647eb7fd157047b73e76bdf5 | Move some `Map` methods onto `TyCtxt`.
The end goal is to eliminate `Map` altogether.
I added a `hir_` prefix to all of them, that seemed simplest. The
exceptions are `module_items` which became `hir_module_free_items` because
there was already a `hir_module_items`, and `items` which became
`hir_free_items` for consi... | [
{
"path": "compiler/rustc_ast_lowering/src/lib.rs",
"patch": "@@ -407,7 +407,7 @@ fn compute_hir_hash(\n .iter_enumerated()\n .filter_map(|(def_id, info)| {\n let info = info.as_owner()?;\n- let def_path_hash = tcx.hir().def_path_hash(def_id);\n+ let def_pat... | 2025-02-02T23:45:49 |
vuejs/vue | b3432ffa8f18134f9564da79ddd909c23d6a6ce8 | cdfd9f321e35981774785806bb1629a73ec58064 | chore: fix snapshot | [
{
"path": "packages/compiler-sfc/test/prefixIdentifiers.spec.ts",
"patch": "@@ -68,15 +68,15 @@ it('setup bindings', () => {\n }\n )\n \n- expect(result).toMatch(`_setup = _vm._setupProxy`)\n+ expect(result).toMatch(`_setup = _vm._self._setupProxy`)\n expect(result).toMatch(`_setup.count++`)\n e... | 2022-06-16T06:17:30 |
golang/go | 0cfe1fb87815c4bee910f6f066f7872800dbce24 | c53b2bdb35c5339df35b53c8fbf34e5cbede081f | cmd/go: rank errUseProxy lower when handling proxy errors
modfetch.TryProxies ranks errors returned by GOPROXY entries by
usefulness. It returns the error of the highest rank from the last
proxy. Errors from "direct" and "noproxy" are most useful, followed by
errors other than ErrNotExist, followed by ErrNotExist.
Th... | [
{
"path": "src/cmd/go/internal/modfetch/proxy.go",
"patch": "@@ -196,8 +196,12 @@ func TryProxies(f func(proxy string) error) error {\n \n \t// We try to report the most helpful error to the user. \"direct\" and \"noproxy\"\n \t// errors are best, followed by proxy errors other than ErrNotExist, followed\n-... | 2020-05-20T21:54:55 |
huggingface/transformers | 308d2b90049b4979a949a069aa4f43b2788254d6 | abf8f54a019ce14b5eaffa68c6dd883be13fe66e | Update the cache number (#28905)
* fix
* fix
* fix
---------
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": ".circleci/create_circleci_config.py",
"patch": "@@ -52,7 +52,7 @@ class CircleCIJob:\n name: str\n additional_env: Dict[str, Any] = None\n cache_name: str = None\n- cache_version: str = \"0.7\"\n+ cache_version: str = \"0.8\"\n docker_image: List[Dict[str, str]] = None\n ... | 2024-02-07T15:37:09 |
vuejs/vue | cdfd9f321e35981774785806bb1629a73ec58064 | 749b96d84e6551c5187694a93c5493702035a239 | fix: avoid warning when accessing _setupProxy | [
{
"path": "packages/compiler-sfc/src/prefixIdentifiers.ts",
"patch": "@@ -64,7 +64,7 @@ export function prefixIdentifiers(\n s.prependRight(\n node.start!,\n `var _vm=this,_c=_vm._self._c${\n- isScriptSetup ? `,_setup=_vm._setupProxy;` : `;`\n+ isS... | 2022-06-16T06:16:36 |
rust-lang/rust | 04ab8373c89d143feca797dfd5d501a98f59a43f | 4273bece6f6ddf1a3b1e19dc319c5cb87a42384a | Fix sorting of runnables
There were two mistakes: first, tests were sorted before test modules, and second, we re-sorted based on the name only, which cancelled the sort based on the kind. | [
{
"path": "src/tools/rust-analyzer/crates/ide/src/annotations.rs",
"patch": "@@ -173,14 +173,7 @@ pub(crate) fn annotations(\n annotations\n .into_iter()\n .sorted_by_key(|a| {\n- (\n- a.range.start(),\n- a.range.end(),\n- match &a.... | 2025-02-17T00:26:02 |
ggml-org/llama.cpp | 5d195f17bc60eacc15cfb929f9403cf29ccdf419 | 226f295f4dd92ad714533adc5497afed5fa88bb8 | convert : handle mmproj filename/path properly (#16760)
* convert: handle mmproj model output filename properly
* remove redundant commits
* Add model_type to gguf utility
* Use mmproj- prefix instead of suffix
* Apply CISC suggestion
Co-authored-by: Sigbjørn Skjæret <sigbjorn.skjaeret@scala.com>
---------
Co-a... | [
{
"path": "convert_hf_to_gguf.py",
"patch": "@@ -1497,6 +1497,17 @@ def get_audio_config(self) -> dict[str, Any] | None:\n def set_type(self):\n self.gguf_writer.add_type(gguf.GGUFType.MMPROJ)\n \n+ def prepare_metadata(self, vocab_only: bool):\n+ super().prepare_metadata(vocab_only=vo... | 2025-10-25T18:41:36 |
nodejs/node | 343d9dca95ebc413393a5d541612c34949ba9c6f | 8485a7c0b71fd1dd36947a6dd02b75387805d9b7 | build: display HTTP2 configure --help options
Currently the options available for HTTP2 are not displayed when running
configure --help.
This commit enables the following HTTP2 section to be included in the
help output:
HTTP2:
Flags that allows you to control HTTP2 features in Node.js
--debug-http2 build ... | [
{
"path": "configure",
"patch": "@@ -420,6 +420,8 @@ http2_optgroup.add_option('--debug-nghttp2',\n dest='debug_nghttp2',\n help='build nghttp2 with DEBUGBUILD (default is false)')\n \n+parser.add_option_group(http2_optgroup)\n+\n parser.add_option('--with-perfctr',\n action='store_true',\n ... | 2017-09-05T11:08:17 |
huggingface/transformers | abf8f54a019ce14b5eaffa68c6dd883be13fe66e | 349a6e85428e0bcd3a86d27cbd45d94b24988d35 | ⚠️ Raise `Exception` when trying to generate 0 tokens ⚠️ (#28621)
* change warning to exception
* Update src/transformers/generation/utils.py
Co-authored-by: Joao Gante <joaofranciscocardosogante@gmail.com>
* validate `max_new_tokens` > 0 in `GenerationConfig`
* fix truncation test parameterization in `Tex... | [
{
"path": "src/transformers/generation/configuration_utils.py",
"patch": "@@ -373,6 +373,8 @@ def validate(self, is_init=False):\n # Validation of individual attributes\n if self.early_stopping not in {True, False, \"never\"}:\n raise ValueError(f\"`early_stopping` must be a bool... | 2024-02-07T12:42:01 |
golang/go | c53b2bdb35c5339df35b53c8fbf34e5cbede081f | 567556d78657326c99b8fa84ec2a5ee511a0941b | runtime: add a barrier after a new span is allocated
When copying a stack, we
1. allocate a new stack,
2. adjust pointers pointing to the old stack to pointing to the
new stack.
If the GC is running on another thread concurrently, on a machine
with weak memory model, the GC could observe the adjusted pointer
(e.g.... | [
{
"path": "src/runtime/mheap.go",
"patch": "@@ -1283,9 +1283,10 @@ HaveSpan:\n \t// Publish the span in various locations.\n \n \t// This is safe to call without the lock held because the slots\n-\t// related to this span will only every be read or modified by\n-\t// this thread until pointers into the span... | 2020-05-18T18:14:11 |
vuejs/vue | bd8409bc9873943a4a8d3838ac945fdfff1f3a51 | aa2b1f4d93bdd257ae26a73994168709369aa6a0 | wip: fix component resolution check | [
{
"path": "packages/compiler-sfc/src/prefixIdentifiers.ts",
"patch": "@@ -39,6 +39,8 @@ export function prefixIdentifiers(\n plugins\n })\n \n+ const isScriptSetup = bindings && bindings.__isScriptSetup !== false\n+\n walkIdentifiers(\n ast,\n ident => {\n@@ -47,7 +49,7 @@ export function p... | 2022-06-15T13:38:05 |
ggml-org/llama.cpp | 55945d2ef51b93821d4b6f4a9b994393344a90db | 0bcb40b48c6fc6f17ba9672625e526ab2574344b | ggml: fix CUDA grid launch condition for large block_nums.y in binbcast (#16742)
* Fix CUDA grid launch condition for large block_nums.y
* add backend ops test
* reduce test repetitions | [
{
"path": "ggml/src/ggml-cuda/binbcast.cu",
"patch": "@@ -272,7 +272,7 @@ static void launch_bin_bcast_pack(const ggml_tensor * src0, const ggml_tensor *\n const uint3 ne12 = init_fastdiv_values((uint32_t) cne1[2]);\n const uint3 ne13 = init_fastdiv_values((uint32_t) cne1[3]);\n \n- i... | 2025-10-24T19:39:37 |
huggingface/transformers | 349a6e85428e0bcd3a86d27cbd45d94b24988d35 | d9deddb4c18410a14952537a91099319ecedb869 | Fix Keras scheduler import so it works for older versions of Keras (#28895)
Fix our schedule import so it works for older versions of Keras | [
{
"path": "src/transformers/optimization_tf.py",
"patch": "@@ -29,7 +29,14 @@\n from .modeling_tf_utils import keras\n \n \n-class WarmUp(keras.optimizers.schedules.LearningRateSchedule):\n+# This block because Keras loves randomly moving things to different places - this changed somewhere between 2.10 - 2.... | 2024-02-07T12:28:24 |
golang/go | 567556d78657326c99b8fa84ec2a5ee511a0941b | aeab40317415468323ef45095f2090ff90c3ecd2 | syscall: preserve Windows file permissions for O_CREAT|O_TRUNC
On Windows, calling syscall.Open(file, O_CREAT|O_TRUNC, 0) for a file
that already exists would change the file to be read-only.
That is not how the Unix syscall.Open behaves, so avoid it on
Windows by calling CreateFile twice if necessary.
Fixes #38225
... | [
{
"path": "src/os/os_test.go",
"patch": "@@ -2539,3 +2539,34 @@ func isDeadlineExceeded(err error) bool {\n \t}\n \treturn true\n }\n+\n+// Test that opening a file does not change its permissions. Issue 38225.\n+func TestOpenFileKeepsPermissions(t *testing.T) {\n+\tt.Parallel()\n+\tdir := t.TempDir()\n+\t... | 2020-05-20T03:23:58 |
vuejs/vue | d4787e53ef0958f4d2c9531c6c7f0c31fa0499f4 | 452aa9d29c848530d5d441652ef5a838312ac379 | test: test case for prefixIdentifiers w/ bindings | [
{
"path": "packages/compiler-sfc/test/prefixIdentifiers.spec.ts",
"patch": "@@ -1,6 +1,7 @@\n import { prefixIdentifiers } from '../src/prefixIdentifiers'\n import { compile } from 'web/entry-compiler'\n import { format } from 'prettier'\n+import { BindingTypes } from '../src/types'\n \n it('should work', (... | 2022-06-15T02:18:55 |
nodejs/node | 8485a7c0b71fd1dd36947a6dd02b75387805d9b7 | 1403d28e7ded280e7582daa6e999164588d2234e | deps: upgrade libuv to 1.14.1
Fixes: https://github.com/nodejs/node/issues/12737
Fixes: https://github.com/nodejs/node/issues/13581
Fixes: https://github.com/nodejs/node/issues/15117
PR-URL: https://github.com/nodejs/node/pull/14866
Reviewed-By: Refael Ackermann <refack@gmail.com>
Reviewed-By: James M Snell <jasnell@g... | [
{
"path": "deps/uv/.gitignore",
"patch": "@@ -39,6 +39,7 @@ Makefile.in\n \n # Generated by gyp for android\n *.target.mk\n+/android-toolchain\n \n /out/\n /build/gyp",
"additions": 1,
"deletions": 0,
"language": "Unknown"
},
{
"path": "deps/uv/AUTHORS",
"patch": "@@ -299,3 +299,12 @... | 2017-09-06T13:59:10 |
ggml-org/llama.cpp | 69e9ff010309a1155d704cf9320bdb3aaf4160ca | 5a91109a5d7dab5d7adc40bedb397ede99a705b1 | webui: support q URL parameter (#16728)
* webui: support q URL parameter
Fixes #16722
I’ve checked that it works with Firefox’s AI tools
* webui: apply suggestions from code review
Co-authored-by: Aleksander Grygier <aleksander.grygier@gmail.com>
* chore: update webui static build
---------
Co-authored-by: Aleks... | [
{
"path": "tools/server/webui/src/routes/+page.svelte",
"patch": "@@ -2,13 +2,21 @@\n \timport { ChatScreen } from '$lib/components/app';\n \timport { chatStore, isInitialized } from '$lib/stores/chat.svelte';\n \timport { onMount } from 'svelte';\n+\timport { page } from '$app/state';\n+\n+\tlet qParam = $... | 2025-10-24T12:10:29 |
huggingface/transformers | d9deddb4c18410a14952537a91099319ecedb869 | 64d1518cbffeeb4e70c3fdce80e03bc369c65034 | fix Starcoder FA2 implementation (#28891) | [
{
"path": "src/transformers/models/gpt_bigcode/modeling_gpt_bigcode.py",
"patch": "@@ -363,13 +363,6 @@ def forward(\n \n attn_dropout = self.attn_pdrop if self.training else 0.0\n \n- softmax_dtype = torch.float32 if self.attention_softmax_in_fp32 else query.dtype\n- upcast = query.dt... | 2024-02-07T08:40:10 |
golang/go | aeab40317415468323ef45095f2090ff90c3ecd2 | daf70d6c1688a1ba1699c933b3c3f04d6f2f73d9 | cmd/go: use temporary file for output of gcc command on Windows
On Windows, some of gcc command (like msys2 native) output NUL as a file.
Fixes #36000
Change-Id: I02c632fa2d710a011d79f24d5beee4bc57ad994e
Reviewed-on: https://go-review.googlesource.com/c/go/+/233977
Run-TryBot: Ian Lance Taylor <iant@golang.org>
TryB... | [
{
"path": "src/cmd/go/internal/work/exec.go",
"patch": "@@ -2434,13 +2434,25 @@ func (b *Builder) gccSupportsFlag(compiler []string, flag string) bool {\n \tif b.flagCache == nil {\n \t\tb.flagCache = make(map[[2]string]bool)\n \t}\n+\n+\ttmp := os.DevNull\n+\tif runtime.GOOS == \"windows\" {\n+\t\tf, err :... | 2020-05-14T09:17:49 |
vuejs/vue | 452aa9d29c848530d5d441652ef5a838312ac379 | 903d9b2eb67b3353f31eb7d36947d7a3462d25f3 | wip: handle script analyzed bindings when prefixing identifiers | [
{
"path": "packages/compiler-sfc/src/compileScript.ts",
"patch": "@@ -1209,7 +1209,11 @@ export function compileScript(\n allBindings[key] = true\n }\n }\n- const returned = `{ ${Object.keys(allBindings).join(', ')} }`\n+ // __sfc marker indicates these bindings are compiled from <script setup... | 2022-06-15T02:07:42 |
ggml-org/llama.cpp | f8f071faddf32ea09f4234edb6e809b380a9ee26 | 0bf47a1dbba4d36f2aff4e8c34b06210ba34e688 | convert : handle pre-quantized models (#14810)
* convert : begin handling pre-quantized models
* convert : fix conversion from FP8 for Deepseek-V3.1-Base | [
{
"path": "convert_hf_to_gguf.py",
"patch": "@@ -90,10 +90,8 @@ class ModelBase:\n use_temp_file: bool\n lazy: bool\n dry_run: bool\n- part_names: list[str]\n- is_safetensors: bool\n hparams: dict[str, Any]\n- tensor_names: set[str] | None\n+ model_tensors: dict[str, Callable[[],... | 2025-10-23T20:31:41 |
huggingface/transformers | 64d1518cbffeeb4e70c3fdce80e03bc369c65034 | 1c31b7aa3bb4e7ef24c77596d2a76f45a770159f | fix: Fixed the documentation for `logging_first_step` by removing "evaluate" (#28884)
Fixed the documentation for logging_first_step by removing evaluate. | [
{
"path": "src/transformers/training_args.py",
"patch": "@@ -265,7 +265,7 @@ class TrainingArguments:\n - `\"steps\"`: Logging is done every `logging_steps`.\n \n logging_first_step (`bool`, *optional*, defaults to `False`):\n- Whether to log and evaluate the first `global... | 2024-02-07T07:46:36 |
nodejs/node | dc7f03c897b408c3ac521c491c245a93449f968a | a25c754e42cb1ec9c1cecaa3f3c7370fa3d97ffe | 2017-09-05, Version 6.11.3 'Boron' (LTS)
This LTS release comes with 152 commits. This includes 75 which are
test related, 25 which are doc related, 21 which are build / tool
related and 3 commits which are updates to dependencies.
Notable Changes:
* build:
- Codesigning is fixed on macOS (Evan Lucas)
https://gi... | [
{
"path": "CHANGELOG.md",
"patch": "@@ -58,7 +58,8 @@ release.\n <a href=\"doc/changelogs/CHANGELOG_V7.md#7.0.0\">7.0.0</a><br/>\n </td>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V6.md#6.11.2\">6.11.2</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V6.md#6.11.3\">6.11.3</a></b... | 2017-08-15T06:07:23 |
vuejs/vue | cda5176e95de3e550803cba57292de69df2dfe2e | 2ddd25926eb3abb2f70fad3e4d81348f63e15e74 | build: fix compiler build | [
{
"path": "packages/compiler-sfc/src/compileScript.ts",
"patch": "@@ -42,7 +42,7 @@ import { warnOnce } from './warn'\n import { isReservedTag } from 'web/util'\n import { dirRE } from 'compiler/parser'\n import { parseText } from 'compiler/parser/text-parser'\n-import { DEFAULT_FILENAME } from './parse'\n+... | 2022-06-14T15:43:57 |
golang/go | dfd613e0e4fd93ef945e9fbd6d42b79bcaf73905 | 4ec4a792f6e60c9c4f40a928650c66419ee0e446 | runtime: don't use (addrRange).subtract in removeGreaterEqual
Currently in (*addrRanges).removeGreaterEqual we use
(addrRange).subtract with a range from specified address to "infinity"
which is supposed to be maxOffAddr. However, maxOffAddr is necessarily
an inclusive bound on the address space, because on many platf... | [
{
"path": "src/runtime/mranges.go",
"patch": "@@ -69,6 +69,18 @@ func (a addrRange) subtract(b addrRange) addrRange {\n \treturn a\n }\n \n+// removeGreaterEqual removes all addresses in a greater than or equal\n+// to addr and returns the new range.\n+func (a addrRange) removeGreaterEqual(addr uintptr) add... | 2020-05-18T16:06:11 |
ggml-org/llama.cpp | dd62dcfab97e420949519fd0eac9fca7bf97e635 | d0660f237a5c31771a3d6d1030ebe3e0c409ba92 | convert : Make mistral-common dependency optional (#16738)
* Make mistral-common dependency optional
* Fix typing | [
{
"path": "convert_hf_to_gguf.py",
"patch": "@@ -29,12 +29,29 @@\n sys.path.insert(1, str(Path(__file__).parent / 'gguf-py'))\n import gguf\n from gguf.vocab import MistralTokenizerType, MistralVocab\n-from mistral_common.tokens.tokenizers.base import TokenizerVersion\n-from mistral_common.tokens.tokeni... | 2025-10-23T13:54:46 |
nodejs/node | fd9d288b0b17d2d8353f68a17e4ed2d420d52922 | 2f9d9e5fe3b09d3fe54bbf04a61b1fe8289414c0 | test: http2 test coverage for NghttpError
small test verifying that the NghttpError is as expected
PR-URL: https://github.com/nodejs/node/pull/15105
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Daniel B... | [
{
"path": "test/parallel/test-http2-util-nghttp2error.js",
"patch": "@@ -0,0 +1,16 @@\n+// Flags: --expose-internals\n+'use strict';\n+\n+const common = require('../common');\n+const { strictEqual } = require('assert');\n+const { NghttpError } = require('internal/http2/util');\n+\n+common.expectsError(() =>... | 2017-08-30T22:58:05 |
vuejs/vue | 53a5ac96387b57f50bd6587e77b371827a30ee4d | d6c0c2a9923ec0cfcfd3f202aca0050c8c6ce72b | chore: fix tests | [
{
"path": "package.json",
"patch": "@@ -87,6 +87,7 @@\n \"csstype\": \"^3.1.0\"\n },\n \"devDependencies\": {\n+ \"@babel/parser\": \"^7.18.4\",\n \"@microsoft/api-extractor\": \"^7.25.0\",\n \"@rollup/plugin-alias\": \"^3.1.9\",\n \"@rollup/plugin-commonjs\": \"^22.0.0\",\n@@ -109,10... | 2022-06-14T07:35:30 |
huggingface/transformers | 1c31b7aa3bb4e7ef24c77596d2a76f45a770159f | 40658be4615d7d30ad6519618ee984cdba263098 | [Docs] Add missing language options and fix broken links (#28852)
* Add missing entries to the language selector
* Add links to the Colab and AWS Studio notebooks for ONNX
* Use anchor links in CONTRIBUTING.md
* Fix broken hyperlinks due to spaces
* Fix links to OpenAI research articles
* Remove confusi... | [
{
"path": "CONTRIBUTING.md",
"patch": "@@ -48,7 +48,7 @@ For something slightly more challenging, you can also take a look at the [Good S\n \n ## Fixing outstanding issues\n \n-If you notice an issue with the existing code and have a fix in mind, feel free to [start contributing](https://github.com/huggingf... | 2024-02-06T20:01:01 |
rust-lang/rust | 1c66d5bed9e6444923c04937f5a28bfcec427ec0 | 23032f31c91f2bb74ba4be20e075fcc929f66527 | Remove SSE ABI from i586-pc-windows-msvc
As an i586 target, it should not have SSE. This caused the following
warning to be emitted:
```
warning: target feature `sse2` must be enabled to ensure that the ABI of the current target can be implemented correctly
|
= note: this was previously accepted by the compiler b... | [
{
"path": "compiler/rustc_target/src/spec/targets/i586_pc_windows_msvc.rs",
"patch": "@@ -2,6 +2,7 @@ use crate::spec::Target;\n \n pub(crate) fn target() -> Target {\n let mut base = super::i686_pc_windows_msvc::target();\n+ base.rustc_abi = None; // overwrite the SSE2 ABI set by the base target\n ... | 2025-02-16T20:13:01 |
ggml-org/llama.cpp | d0660f237a5c31771a3d6d1030ebe3e0c409ba92 | fe6a9882acf5c02f96624ed8f80144100d7006cb | mtmd-cli : allow using --jinja (#16718)
* mtmd-cli : allow using --jinja
* support -sys
* implement chat_history
* fix clear memory
* rm -sys support, added TODO | [
{
"path": "common/arg.cpp",
"patch": "@@ -3435,7 +3435,7 @@ common_params_context common_params_parser_init(common_params & params, llama_ex\n [](common_params & params) {\n params.use_jinja = true;\n }\n- ).set_examples({LLAMA_EXAMPLE_SERVER, LLAMA_EXAMPLE_MAIN}).set_env(\"LL... | 2025-10-23T13:00:49 |
golang/go | 4ec4a792f6e60c9c4f40a928650c66419ee0e446 | 13617380cab47a0cfba74650f1539fb2e72bb0fa | cmd/go: accept smart quotes when checking for missing gold in TestNoteReading
Fixes #39157
Change-Id: Ia983f5e66698519cd19c1565cfb80e86d08fdfc6
Reviewed-on: https://go-review.googlesource.com/c/go/+/234380
Reviewed-by: Ian Lance Taylor <iant@golang.org> | [
{
"path": "src/cmd/go/note_test.go",
"patch": "@@ -53,7 +53,7 @@ func TestNoteReading(t *testing.T) {\n \t\t// we've had trouble reading the notes generated by gold.\n \t\terr := tg.doRun([]string{\"build\", \"-ldflags\", \"-buildid=\" + buildID + \" -linkmode=external -extldflags=-fuse-ld=gold\", \"-o\", t... | 2020-05-20T02:39:13 |
vuejs/vue | 4306cc67b9bfc464918acb446f5a6d1ce0156da1 | 5bee34c6e1a215ae693351aad8f77b58e07b1d4f | build: fix compiler-sfc build | [
{
"path": "package.json",
"patch": "@@ -30,7 +30,8 @@\n \"require\": \"./compiler-sfc/index.js\"\n },\n \"./dist/*\": \"./dist/*\",\n- \"./types/*\": \"./types/*\"\n+ \"./types/*\": \"./types/*\",\n+ \"./package.json\": \"./package.json\"\n },\n \"sideEffects\": false,\n \"scrip... | 2022-06-10T14:51:41 |
nodejs/node | 09480a8bf08a26509c94e11d56b7eb9e024bbff7 | ea2e6363f221c1c6ca5b04b295bd6d17ecca355b | http2: guard against destroyed session, timeouts
Guard against destroyed session in timeouts and goaway event.
Improve timeout handling a bit.
PR-URL: https://github.com/nodejs/node/pull/15106
Fixes: https://github.com/nodejs/node/issues/14964
Reviewed-By: Matteo Collina <matteo.collina@gmail.com> | [
{
"path": "lib/internal/http2/core.js",
"patch": "@@ -377,6 +377,8 @@ function onFrameError(id, type, code) {\n function emitGoaway(state, code, lastStreamID, buf) {\n this.emit('goaway', code, lastStreamID, buf);\n // Tear down the session or destroy\n+ if (state.destroying || state.destroyed)\n+ r... | 2017-08-30T23:20:11 |
huggingface/transformers | 40658be4615d7d30ad6519618ee984cdba263098 | 4830f2696575988faee4af78b6049b62a750ecd4 | Hotfix - make `torchaudio` get the correct version in `torch_and_flax_job` (#28899)
* check
* check
* check
---------
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": ".circleci/create_circleci_config.py",
"patch": "@@ -299,6 +299,8 @@ def job_name(self):\n \"pip install -U --upgrade-strategy eager --upgrade pip\",\n \"pip install -U --upgrade-strategy eager .[sklearn,flax,torch,testing,sentencepiece,torch-speech,vision]\",\n \"pip insta... | 2024-02-06T20:00:42 |
rust-lang/rust | 2c1f48970cc7954de147d5f71cd718b9035c6788 | a3d4bd382ae42e348d7ca3756d291a7f7e47b9ce | fix rustdoc test directives that were accidentally ignored
replace "// @" with "//@ ", and fix the tests so they actually pass, after directives are checked | [
{
"path": "tests/rustdoc/anchor-id-duplicate-method-name-25001.rs",
"patch": "@@ -24,14 +24,14 @@ impl Foo<u32> {\n }\n \n impl<T> Bar for Foo<T> {\n- // @has - '//*[@id=\"associatedtype.Item\"]//h4[@class=\"code-header\"]' 'type Item = T'\n+ //@ has - '//*[@id=\"associatedtype.Item\"]//h4[@class=\"co... | 2025-02-15T21:12:58 |
ggml-org/llama.cpp | 9de9672adb0f4ca4e39483ac3ffed52b3f70a55d | 63d2fc46e17a06be5b4b5823a5ada088317f1f0a | sycl: use async memory allocation to fix crashes during graph recording (#16644)
* sycl: use async memory allocation to fix graph recording failures
GGML_SYCL_DISABLE_GRAPHS=0 causes crashes because:
- Host waits are currently unsupported in graph recording mode.
- SYCL malloc / free calls are unsupported in grap... | [
{
"path": "ggml/src/ggml-sycl/ggml-sycl.cpp",
"patch": "@@ -30,6 +30,9 @@\n #include <regex>\n \n #include <sycl/sycl.hpp>\n+#if defined(GGML_SYCL_GRAPH) && SYCL_EXT_ONEAPI_ASYNC_MEMORY_ALLOC\n+# include <sycl/ext/oneapi/experimental/async_alloc/async_alloc.hpp>\n+#endif\n #include <sycl/half_type.hpp>\n... | 2025-10-23T01:05:15 |
golang/go | 6d6e4827c0b8ce302f7815ab565617f4593c5b46 | 8fa468d511b8b1197137ce0ad0ea4260167d2348 | testing: return unique directory inside same base root for TempDir
We use a single parent directory for all temporary directories
created by a test so they're all kept together.
Fixes #38850
Change-Id: If8edae10c5136efcbcf6fd632487d198b9e3a868
Reviewed-on: https://go-review.googlesource.com/c/go/+/231958
Reviewed-by... | [
{
"path": "src/testing/testing.go",
"patch": "@@ -372,6 +372,7 @@ type common struct {\n \ttempDirOnce sync.Once\n \ttempDir string\n \ttempDirErr error\n+\ttempDirSeq int32\n }\n \n // Short reports whether the -test.short flag is set.\n@@ -827,6 +828,8 @@ var tempDirReplacer struct {\n // The direct... | 2020-05-04T16:37:10 |
vuejs/vue | c43e64277f72d5e1b23ac483528cf78b02110e18 | 9ce105aa10be6288e6ce9d26c1a5a6d16fee733b | build: fix build script alias | [
{
"path": "scripts/alias.js",
"patch": "@@ -9,5 +9,5 @@ module.exports = {\n shared: resolve('src/shared'),\n web: resolve('src/platforms/web'),\n server: resolve('packages/server-renderer/src'),\n- sfc: resolve('src/sfc')\n+ sfc: resolve('packages/compiler-sfc/src')\n }",
"additions": 1,
"d... | 2022-06-06T07:34:55 |
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.