repo
stringclasses
15 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
64.3k
files
listlengths
1
300
timestamp
timestamp[s]date
2013-03-13 20:45:00
2026-04-11 07:48:46
nodejs/node
1d8909b9b9da37d466d6dada81e8622a492ad5c1
d101942db9202460802bfa379322367e1e269d90
doc: add added in versions to fs.Stats properties Adds the added in label on the documentation for each one of the properties of Class: fs.Stats PR-URL: https://github.com/nodejs/node/pull/19266 Fixes: https://github.com/nodejs/node/issues/19178 Reviewed-By: Adrian Estrada <edsadr@gmail.com> Reviewed-By: James M Snel...
[ { "path": "doc/api/fs.md", "patch": "@@ -421,43 +421,64 @@ Stats {\n ```\n \n ### stats.isBlockDevice()\n+<!-- YAML\n+added: v0.1.10\n+-->\n \n * Returns: {boolean}\n \n Returns `true` if the `fs.Stats` object describes a block device.\n \n ### stats.isCharacterDevice()\n+<!-- YAML\n+added: v0.1.10\n+-->\n ...
2018-03-09T14:56:58
golang/go
5e4da8670b13370392a9195930e3b4bbe5f1944f
5ecb9a788716be799d73c5d8192368ecb9557d48
[dev.typeparams] cmd/compile/internal/types2: use converter functions rather than methods This change replaces methods with functions to reduce the API surface of types2.Type and to match the approach taken in go/types. The converter methods for Named and TypeParam will be addressed in a follow-up CL. Also: Fixed beh...
[ { "path": "src/cmd/compile/internal/importer/support.go", "patch": "@@ -129,16 +129,5 @@ func (t anyType) Under() types2.Type { return t }\n func (t anyType) String() string { return \"any\" }\n \n // types2.aType is not exported for now so we need to implemented these here.\n-func (anyType) B...
2021-02-18T00:04:59
huggingface/transformers
857d46ca0c824d7d2497a84a1ed616effe79106c
098962dac29d25b6fc3c3adb8554d83d9d650376
[`Deberta/Deberta-v2`] Refactor code base to support compile, export, and fix LLM (#22105) * some modification for roadmap * revert some changes * yups * weird * make it work * sttling * fix-copies * fixup * renaming * more fix-copies * move stuff around * remove torch script warnings ...
[ { "path": "src/transformers/models/deberta/configuration_deberta.py", "patch": "@@ -82,6 +82,9 @@ class DebertaConfig(PretrainedConfig):\n `[\"p2c\", \"c2p\"]`.\n layer_norm_eps (`float`, *optional*, defaults to 1e-12):\n The epsilon used by the layer normalization layers.\n+...
2024-11-25T09:43:16
rust-lang/rust
9f54910f4ba9d1183c5246ec16f0a35183772db2
8a341298ec1c6a029bda1cc9f0ec696e9444caa9
settings.js: add elemContainsTarget utility function this allows us to eliminate the last 3 @ts-expect-error in this file.
[ { "path": "src/librustdoc/html/static/js/settings.js", "patch": "@@ -8,6 +8,18 @@\n (function() {\n const isSettingsPage = window.location.pathname.endsWith(\"/settings.html\");\n \n+ /**\n+ * @param {Element} elem\n+ * @param {EventTarget|null} target\n+ */\n+ function elemContainsTar...
2025-04-02T18:56:31
ollama/ollama
d2ef679d42feac9901c347bc24ff0b6ab67a938b
d4e0da08907f7611e1a2d9bda319bb30cd4ff029
docs: fix 404 link to modelfile documentation (#12996)
[ { "path": "docs/README.md", "patch": "@@ -12,7 +12,7 @@\n ### Reference\n \n * [API Reference](https://docs.ollama.com/api)\n-* [Modelfile Reference](./modelfile.md)\n+* [Modelfile Reference](https://docs.ollama.com/modelfile)\n * [OpenAI Compatibility](https://docs.ollama.com/api/openai-compatibility)\n \n...
2025-11-07T18:06:46
vercel/next.js
cfd58ae80e950aa3e4ac342bb09933d9cfbcc30c
a7f0332bd10ebfac53d9ee15ed7f8f25aa7e8614
Fix experimental undici warning (#41077) Fixes: https://vercel.slack.com/archives/C03KAR5DCKC/p1664581332858249 ## Bug - [x] Related issues linked using `fixes #number` - [ ] Integration tests added - [ ] Errors have a helpful link attached, see `contributing.md`
[ { "path": "packages/next/server/config.ts", "patch": "@@ -49,12 +49,16 @@ const experimentalWarning = execOnce(\n \n export function setHttpClientAndAgentOptions(options: NextConfig) {\n if (semverGte(process.version, '16.8.0')) {\n- if (semverGte(process.version, '18.0.0')) {\n+ if (\n+ option...
2022-10-01T00:20:20
nodejs/node
d101942db9202460802bfa379322367e1e269d90
337e04054eedb3cedb27493adb02ca84d2c75005
test: remove message from assert.strictEqual() Converted the 'message' argument values from the last two free socket assert.strictEqual() calls to code comments as they fail to provide the necessary details and values specific to why the test is failing. The default message returned from the strictEqual() call should ...
[ { "path": "test/parallel/test-http-agent-error-on-idle.js", "patch": "@@ -27,8 +27,8 @@ server.listen(0, () => {\n res.on('end', common.mustCall(() => {\n process.nextTick(common.mustCall(() => {\n const freeSockets = agent.freeSockets[socketKey];\n- assert.strictEqual(freeSockets.l...
2018-03-22T01:22:44
huggingface/transformers
098962dac29d25b6fc3c3adb8554d83d9d650376
c1a8520419b7b7088b4a115072439b3b42bd5696
BLIP: fix generation after hub update (#34876) * fix blip generation * dont remove it yet * Update src/transformers/models/blip_2/modeling_blip_2.py Co-authored-by: Arthur <48595927+ArthurZucker@users.noreply.github.com> * address comments * modular --------- Co-authored-by: Arthur <48595927+Arthu...
[ { "path": "src/transformers/generation/utils.py", "patch": "@@ -421,7 +421,12 @@ def prepare_inputs_for_generation(\n model_input = kwargs.get(model_input_name)\n if model_input is not None:\n if past_key_values is not None:\n- model_input = model_i...
2024-11-25T09:41:55
golang/go
5ecb9a788716be799d73c5d8192368ecb9557d48
7b679617f3bb532fe65d8e83365b9f1f41b01b00
[dev.typeparams] go/types: use a new ast.ListExpr for multi-type instances Modify go/parser to consistently represent type instantiation as an ast.IndexExpr, rather than use an ast.CallExpr (with Brackets:true) for instantiations with multiple type parameters. To enable this, introduce a new ast expr type: ListExpr. ...
[ { "path": "src/go/ast/ast.go", "patch": "@@ -372,9 +372,13 @@ type (\n \t\tArgs []Expr // function arguments; or nil\n \t\tEllipsis token.Pos // position of \"...\" (token.NoPos if there is no \"...\")\n \t\tRparen token.Pos // position of \")\"\n-\t\t// TODO(rFindley) use a new ListExpr type rathe...
2021-02-17T00:56:38
rust-lang/rust
a805f5253e96dd1746cd929fd172a3e8391c6517
d2ff26bbe696e3aa8f6c92de787d8de4c68d7a5e
settings.js: make top-level code typecheck With this, almost the entire file is fully typechecked, the only exception being the Element.contains(EventTarget) pattern that is used several times, those are annotated with @ts-expect-error
[ { "path": "src/librustdoc/html/static/js/main.js", "patch": "@@ -1,6 +1,6 @@\n // Local js definitions:\n /* global addClass, getSettingValue, hasClass, updateLocalStorage */\n-/* global onEachLazy, removeClass, getVar */\n+/* global onEachLazy, removeClass, getVar, nonnull */\n \n \"use strict\";\n ", ...
2025-04-02T18:45:35
ollama/ollama
565b802a6b7f4a5dee8c1fa88407f98d04f2afe3
6c79e6c09a53b03012df45c74a7e90b1f362cb23
openai: fix tool call ID mapping (#12988)
[ { "path": "middleware/openai_test.go", "patch": "@@ -218,6 +218,7 @@ func TestChatMiddleware(t *testing.T) {\n \t\t\t\t\t\tRole: \"assistant\",\n \t\t\t\t\t\tToolCalls: []api.ToolCall{\n \t\t\t\t\t\t\t{\n+\t\t\t\t\t\t\t\tID: \"id\",\n \t\t\t\t\t\t\t\tFunction: api.ToolCallFunction{\n \t\t\t\t\t\t\t\t\tName:...
2025-11-06T23:26:25
vercel/next.js
fd6c90798d3597375b8a724fd61d633ac8c032ec
3b34602426024da3e7e0ccb40a3768fedb83bf28
Fix: [slug].tsx in wordpress example (#41074) Fixing the image URL in the meta property og:image <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose the right checklist for th...
[ { "path": "examples/cms-wordpress/pages/posts/[slug].tsx", "patch": "@@ -37,7 +37,7 @@ export default function Post({ post, posts, preview }) {\n </title>\n <meta\n property=\"og:image\"\n- content={post.featuredImage?.sourceUrl}\n+ ...
2022-09-30T22:18:49
nodejs/node
1029dd36861d7ab592d4e219362706d2c161839a
0fbd4b1d021ed5fcd95210047a9e1d2addefe51a
util: show Weak(Set|Map) entries in inspect This adds support for WeakMap and WeakSet entries in `util.inspect`. The output is limited to a maximum entry length of `maxArrayLength`. PR-URL: https://github.com/nodejs/node/pull/19259 Fixes: https://github.com/nodejs/node/issues/19001: Reviewed-By: Yosuke Furukawa <yosu...
[ { "path": "doc/api/util.md", "patch": "@@ -345,6 +345,9 @@ stream.write('With ES6');\n <!-- YAML\n added: v0.3.0\n changes:\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/19259\n+ description: WeakMap and WeakSet entries can now be inspected as well.\n - version: REPLACEME\n...
2018-03-09T14:03:44
huggingface/transformers
c1a8520419b7b7088b4a115072439b3b42bd5696
1339a14dca0c633f74bc8fb771aa8a651dd472b0
Cache: init empty cache when `use_cache` (#34274) * fix * fix tests * fix copies * add docs * Revert "add docs" This reverts commit 32d35634f12ba02781d2ebdee0c8dcfbe992a7b9. * qwen move deltas * mllama can potentiall fullgraph compile * enable mllama compile and fix tests * remove mllama fix...
[ { "path": "src/transformers/models/chameleon/modeling_chameleon.py", "patch": "@@ -25,7 +25,7 @@\n from torch.nn import CrossEntropyLoss\n \n from ...activations import ACT2FN\n-from ...cache_utils import Cache, StaticCache\n+from ...cache_utils import Cache, DynamicCache, StaticCache\n from ...generation i...
2024-11-25T09:11:33
golang/go
07ef3135253321176704bce6e629a07ac02bf1c6
2f0da6d9e29d9b9d5a4d10427ca9f71d12bbacc8
runtime/cgo: add cast in C code to avoid C compiler warning Fixes #44340 Change-Id: Id80dd1f44a988b653933732afcc8e49a826affc4 Reviewed-on: https://go-review.googlesource.com/c/go/+/293209 Reviewed-by: Andrew G. Morgan <agm@google.com> Reviewed-by: Bryan C. Mills <bcmills@google.com> Trust: Ian Lance Taylor <iant@gola...
[ { "path": "src/runtime/cgo/linux_syscall.c", "patch": "@@ -32,7 +32,7 @@ typedef struct {\n \n #define SET_RETVAL(fn) \\\n uintptr_t ret = (uintptr_t) fn ; \\\n- if (ret == -1) { \\\n+ if (ret == (uintptr_t) -1) {\t \\\n x->retval = (uintptr_t) errno; \\\n } else ...
2021-02-17T20:03:13
ollama/ollama
780762f9d2ad86f5268eaf5d0af14bfa4f44470f
30fcc71983499bb29f6157291f7c85782fd35305
server: fix duplicate 'is' typo in comment (#12985)
[ { "path": "server/download.go", "patch": "@@ -465,7 +465,7 @@ type downloadOpts struct {\n // downloadBlob downloads a blob from the registry and stores it in the blobs directory\n func downloadBlob(ctx context.Context, opts downloadOpts) (cacheHit bool, _ error) {\n \tif opts.digest == \"\" {\n-\t\treturn ...
2025-11-06T22:44:44
vercel/next.js
3b34602426024da3e7e0ccb40a3768fedb83bf28
cae96f27ec53cd42e992a748b9727852df9247c5
build(next/swc): consolidate swc_core dependency version (#41043) <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose the right checklist for the change that you're making: --> ...
[ { "path": ".github/workflows/build_test_deploy.yml", "patch": "@@ -9,7 +9,7 @@ name: Build, test, and deploy\n env:\n NAPI_CLI_VERSION: 2.7.0\n TURBO_VERSION: 1.3.2-canary.1\n- RUST_TOOLCHAIN: nightly-2022-09-14\n+ RUST_TOOLCHAIN: nightly-2022-09-23\n PNPM_VERSION: 7.2.1\n \n jobs:", "additions"...
2022-09-30T19:59:32
huggingface/transformers
1339a14dca0c633f74bc8fb771aa8a651dd472b0
318fe25f22a99ce1226f8d2aadc268b40f7e55af
Add safe_globals to resume training on PyTorch 2.6 (#34632) Starting from version 2.4 PyTorch introduces a stricter check for the objects which can be loaded with torch.load(). Starting from version 2.6 loading with weights_only=True requires allowlisting of such objects. This commit adds allowlist of some numpy ...
[ { "path": "src/transformers/trainer.py", "patch": "@@ -272,6 +272,25 @@ def _get_fsdp_ckpt_kwargs():\n return {}\n \n \n+def safe_globals():\n+ # Starting from version 2.4 PyTorch introduces a check for the objects loaded\n+ # with torch.load(weights_only=True). Starting from 2.6 weights_only=...
2024-11-25T09:03:43
nodejs/node
a1c96f8e07115d3b6ff1498e7e9f530d2e0f1b6b
28e4e43e513ae90e8a4236dbae7f3442ab8dbb4f
assert: improve assert.throws This switches the assert.throws output to the one used in strict mode if a error object is used for comparison. From now on it will show the complete difference between two objects instead of only showing the first failing property. It also fixes detecting properties with a undefined val...
[ { "path": "lib/assert.js", "patch": "@@ -366,13 +366,38 @@ assert.notStrictEqual = function notStrictEqual(actual, expected, message) {\n }\n };\n \n-function compareExceptionKey(actual, expected, key, msg) {\n- if (!isDeepStrictEqual(actual[key], expected[key])) {\n+class Comparison {\n+ constructor(ob...
2018-03-20T00:49:29
ollama/ollama
4111db013f643ac5d31b06c459ae509adb4e1380
80d34260ea16e76c9ef0d014a86cc130421855f1
app: fix macOS file picker to support Uniform Type Identifiers (#12965)
[ { "path": "app/dialog/cocoa/dlg.m", "patch": "@@ -3,6 +3,11 @@\n #include <string.h>\n #include <sys/syslimits.h>\n \n+// Import UniformTypeIdentifiers for macOS 11+\n+#if __MAC_OS_X_VERSION_MAX_ALLOWED >= 110000\n+#import <UniformTypeIdentifiers/UniformTypeIdentifiers.h>\n+#endif\n+\n void* NSStr(void* buf...
2025-11-06T05:37:17
huggingface/transformers
318fe25f22a99ce1226f8d2aadc268b40f7e55af
3a8eb74668e9c2cc563b2f5c62fac174797063e0
Fix: Enable prefill phase key value caching of nemotron/minitron models (#34742) * modeling nemotron kv caching bugfix Signed-off-by: jeongin601 <0200angela@gmail.com> * test file deleted Signed-off-by: jeongin601 <0200angela@gmail.com> * code refinement Signed-off-by: jeongin601 <0200angela@gmail.com> ...
[ { "path": "src/transformers/models/nemotron/modeling_nemotron.py", "patch": "@@ -24,7 +24,7 @@\n from torch import Size, Tensor, nn\n \n from ...activations import ACT2FN\n-from ...cache_utils import Cache, StaticCache\n+from ...cache_utils import Cache, DynamicCache, StaticCache\n from ...generation import...
2024-11-25T08:45:35
nodejs/node
28e4e43e513ae90e8a4236dbae7f3442ab8dbb4f
b38c81cb449a822ab45e6caa210d070b91a59836
errors: make input mandatory Using ERR_INVALID_ARG_TYPE will now require the received value as well. This makes sure the errors are always expressive. It also drops support for using an array as name argument. PR-URL: https://github.com/nodejs/node/pull/19445 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By...
[ { "path": "lib/internal/errors.js", "patch": "@@ -936,7 +936,8 @@ function sysError(code, syscall, path, dest,\n messages.set('ERR_SYSTEM_ERROR', sysError);\n \n function invalidArgType(name, expected, actual) {\n- internalAssert(name, 'name is required');\n+ internalAssert(typeof name === 'string');\n+ ...
2018-03-19T13:21:27
ollama/ollama
a534d4e9e176e32734f59c5ae8c2fb6d93a11058
74586aa9dfa804fdc7a15e14c045bc9df047e0cd
fixing thinking not scrolling issue
[ { "path": "app/ui/app/src/components/Thinking.tsx", "patch": "@@ -73,8 +73,9 @@ export default function Thinking({\n // Calculate max height for smooth animations\n const getMaxHeight = () => {\n if (isCollapsed) {\n- return finishedThinking ? \"0px\" : \"12rem\"; // 8rem = 128px (same as max-h...
2025-11-05T18:12:31
huggingface/transformers
3a8eb74668e9c2cc563b2f5c62fac174797063e0
54be2d7ae87e873482b984cc956e165ca4dc0ba3
Fix support for image processors modifications in modular (#34866) * add fix and examples * fix camel case naming
[ { "path": "examples/modular-transformers/image_processing_new_imgproc_model.py", "patch": "@@ -0,0 +1,287 @@\n+# 🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨\n+# This file was automatically generated from examples/modular-transform...
2024-11-22T23:14:24
nodejs/node
b38c81cb449a822ab45e6caa210d070b91a59836
acc3c770e7717673ee87fa37076fc50fcb91e4ea
lib: improve error handling This improves the error handling for a couple cases where the received value would not have been handled so far or where the name is wrong etc. PR-URL: https://github.com/nodejs/node/pull/19445 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail...
[ { "path": "lib/_http_client.js", "patch": "@@ -87,8 +87,9 @@ function ClientRequest(options, cb) {\n // Explicitly pass through this statement as agent will not be used\n // when createConnection is provided.\n } else if (typeof agent.addRequest !== 'function') {\n- throw new ERR_INVALID_ARG_TY...
2018-03-19T13:18:50
huggingface/transformers
54be2d7ae87e873482b984cc956e165ca4dc0ba3
286ffaaf0ab981f3530d0ac34d1b172efa5c03db
Bitnet test fix to avoid using gated model (#34863) small test fix
[ { "path": "tests/quantization/bitnet_integration/test_bitnet.py", "patch": "@@ -65,7 +65,7 @@ def setUpClass(cls):\n \"\"\"\n Load the model\n \"\"\"\n- cls.tokenizer = AutoTokenizer.from_pretrained(\"meta-llama/Meta-Llama-3-8B-Instruct\")\n+ cls.tokenizer = AutoTokeniz...
2024-11-22T16:18:49
ollama/ollama
6aa72830763cf694da998f5305de89701c75cea0
f89fc1cadd6fe896e162ce8c85534c92f711005a
mac: fix stale VRAM data (#12972) The scheduler updates free VRAM based on current loaded models. This was mutating the persisted list of GPUs, and when coupled with the non-refreshing logic for Metal that lead to stale low VRAM reporting after unload. The fix is to make sure the GPU discovery always returns a copy ...
[ { "path": "discover/runner.go", "patch": "@@ -237,7 +237,7 @@ func GPUDevices(ctx context.Context, runners []ml.FilteredRunnerDiscovery) []ml.\n \t} else {\n \t\tif runtime.GOOS == \"darwin\" && runtime.GOARCH == \"arm64\" {\n \t\t\t// metal never updates free VRAM\n-\t\t\treturn devices\n+\t\t\treturn appe...
2025-11-05T19:55:17
rust-lang/rust
9f8d3d0bc9057ecc9de715a5cf65d97dc67da766
f05683639d64dc26e51f63d97a0ba3cd812dc374
settings.js: refactor settingsBlurHandler changes: * Add type signature * Add null checks * getHelpButton and getSettingsButton are only called once, which should marginally improve performance due to less queries. unfortunatly 2 @ts-expect-error was needed, as typescript is unaware the EventTarget is likely an Ele...
[ { "path": "src/librustdoc/html/static/js/settings.js", "patch": "@@ -310,12 +310,21 @@\n });\n }\n \n+ /**\n+ * @param {MouseEvent} event\n+ */\n function settingsBlurHandler(event) {\n- if (!getHelpButton().contains(document.activeElement) &&\n- !getHelpButton()...
2025-04-02T18:09:49
nodejs/node
acc3c770e7717673ee87fa37076fc50fcb91e4ea
058e7fb8e66cafae700c5cb437d08572150fa69f
fs: fix error handling Right now there are multiple cases where the validated entry would not be returned or a wrong error is thrown. This fixes both cases. PR-URL: https://github.com/nodejs/node/pull/19445 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-...
[ { "path": "lib/internal/fs.js", "patch": "@@ -77,11 +77,16 @@ function isUint32(n) { return n === (n >>> 0); }\n function modeNum(m, def) {\n if (typeof m === 'number')\n return m;\n- if (typeof m === 'string')\n- return parseInt(m, 8);\n- if (def)\n- return modeNum(def);\n- return undefined;...
2018-03-19T13:17:50
vercel/next.js
7bc28538bf267405b77f7d93122dac7a00fd78c1
fa96d870aaf8a6d5bc3c231b7c3d229ae1ec47ff
Font loader call json parsing fix (#41052) Stringify into one json object instead. Previously parsing would break if a string included a semicolon. ## Bug - [ ] Related issues linked using `fixes #number` - [ ] Integration tests added - [ ] Errors have a helpful link attached, see `contributing.md` ## Feature - [ ...
[ { "path": "packages/next-swc/crates/core/src/next_font_loaders/font_imports_generator.rs", "patch": "@@ -36,21 +36,26 @@ impl<'a> FontImportsGenerator<'a> {\n .collect();\n \n if let Ok(json) = json {\n- let mut json_values: Vec<String> =\n-...
2022-09-30T19:24:10
huggingface/transformers
286ffaaf0ab981f3530d0ac34d1b172efa5c03db
861758e2358bae903861d54fbc25b87d3281ea78
[CI] Skip EETQ tests while package is broken with latest transformers (#34854) * CI Skip EETQ tests while package is broken EETQ tries to import the shard_checkpoint function from transformers but the function has been removed. Therefore, trying to use EETQ currently results in an import error. This fix results i...
[ { "path": "src/transformers/quantizers/quantizer_eetq.py", "patch": "@@ -53,6 +53,20 @@ def validate_environment(self, *args, **kwargs):\n \"Please install the latest version of eetq from : https://github.com/NetEase-FuXi/EETQ\"\n )\n \n+ try:\n+ import eetq # ...
2024-11-22T16:13:30
ollama/ollama
f89fc1cadd6fe896e162ce8c85534c92f711005a
97e05d2a6be5eb4121189ac81c0a8eed9bf54e23
bugfix: show connection string for interactive cli usage (#12930)
[ { "path": "cmd/cmd.go", "patch": "@@ -284,6 +284,14 @@ func loadOrUnloadModel(cmd *cobra.Command, opts *runOptions) error {\n \t\treturn err\n \t} else if info.RemoteHost != \"\" {\n \t\t// Cloud model, no need to load/unload\n+\t\tif opts.ShowConnect {\n+\t\t\tp.StopAndClear()\n+\t\t\tif strings.HasPrefix(...
2025-11-05T19:55:04
nodejs/node
058e7fb8e66cafae700c5cb437d08572150fa69f
333adf61eb3d8d973b28e6c86d8b93d39d95cfe6
process: fix error handling This makes sure the proper error is returned. Right now the error is not specific enough. PR-URL: https://github.com/nodejs/node/pull/19445 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> ...
[ { "path": "lib/internal/process.js", "patch": "@@ -7,6 +7,7 @@ const {\n ERR_CPU_USAGE,\n ERR_INVALID_ARG_TYPE,\n ERR_INVALID_ARRAY_LENGTH,\n+ ERR_INVALID_OPT_VALUE,\n ERR_UNCAUGHT_EXCEPTION_CAPTURE_ALREADY_SET,\n ERR_UNKNOWN_SIGNAL\n }\n@@ -41,11 +42,24 @@ function setup_cpuUsage()...
2018-03-19T13:15:10
huggingface/transformers
d9e6f307e71b5108a7882ec00ffcc0d0eb316cb7
1867be666d4e18c69874d4bf35f55f4cde86040c
Remove quantization related config from dequantized model (#34856) * Remove quantization related config from dequantized model * Fix whitespace
[ { "path": "src/transformers/quantizers/base.py", "patch": "@@ -215,6 +215,9 @@ def dequantize(self, model):\n \n # Delete quantizer and quantization config\n del model.hf_quantizer\n+ del model.config.quantization_config\n+ del model.config._pre_quantization_dtype\n+ mod...
2024-11-22T09:06:29
vercel/next.js
fa96d870aaf8a6d5bc3c231b7c3d229ae1ec47ff
67a5076b9b4275e75364afefd439be809cb6a4e1
Accept variable prop in google font loader (#41065) Fixes local weight type which could break if you wrote "regular" instead of 400. Adds `variable` property to google font loader to let you define the name of the CSS variable. ## Bug - [ ] Related issues linked using `fixes #number` - [ ] Integration tests added - ...
[ { "path": "packages/font/src/google/font-data.json", "patch": "@@ -14,6 +14,9 @@\n \"Abril Fatface\": {\n \"variants\": [\"400\"]\n },\n+ \"Abyssinica SIL\": {\n+ \"variants\": [\"400\"]\n+ },\n \"Aclonica\": {\n \"variants\": [\"400\"]\n },\n@@ -193,6 +196,9 @@\n \"Alike Angular\": {...
2022-09-30T18:53:50
ollama/ollama
27f1fde413c2a1386e0bc68b623bbb72e9f6bc0c
220e133fca8fe128dbf8fecef96c8484f991e39c
discovery: only retry AMD GPUs (#12894) * discovery: only retry AMD GPUs CUDA and Vulkan don't crash on unsupported devices, so retry isn't necessary. This also refactors the code to shift the Library specific logic into the ml package. * review comments
[ { "path": "discover/runner.go", "patch": "@@ -27,7 +27,6 @@ var (\n \tdeviceMu sync.Mutex\n \tdevices []ml.DeviceInfo\n \tlibDirs map[string]struct{}\n-\trocmDir string\n \texe string\n \tbootstrapped bool\n )\n@@ -61,14 +60,6 @@ func GPUDevices(ctx context.Context, runners []ml....
2025-11-04T23:33:46
nodejs/node
333adf61eb3d8d973b28e6c86d8b93d39d95cfe6
c1278e53293a49c925451987d906f7b00977f4d4
crypto: fix error handling This fixes multiple cases where the wrong error was returned in case of e.g. a overflow / wrong type. PR-URL: https://github.com/nodejs/node/pull/19445 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@...
[ { "path": "lib/internal/crypto/random.js", "patch": "@@ -13,37 +13,44 @@ const {\n \n const { kMaxLength } = require('buffer');\n const kMaxUint32 = Math.pow(2, 32) - 1;\n+const kMaxPossibleLength = Math.min(kMaxLength, kMaxUint32);\n \n-function assertOffset(offset, length) {\n- if (typeof offset !== 'num...
2018-03-19T13:13:39
huggingface/transformers
1867be666d4e18c69874d4bf35f55f4cde86040c
6a912ff2c5b3eadb9a0583d77083aae27d35d28d
Update checks for torch.distributed.tensor to require torch >= 2.5 (#34816) * Update checks for torch.distributed.tensor * Update PR with feedback * Formatting fix for import order * Remove unused function
[ { "path": "src/transformers/modeling_utils.py", "patch": "@@ -52,7 +52,6 @@\n find_pruneable_heads_and_indices,\n id_tensor_storage,\n is_torch_greater_or_equal_than_1_13,\n- is_torch_greater_or_equal_than_2_4,\n prune_conv1d_layer,\n prune_layer,\n prune_linear_layer,\n@@ -90,6 +...
2024-11-22T09:05:26
vercel/next.js
67a5076b9b4275e75364afefd439be809cb6a4e1
4f793fd7faed0c8843424059ae9a24e06db1005b
Use deterministic module IDs for server (#41066) Currently, we use the `isClient ? 'deterministic' : 'named'` condition for module IDs. We did that because in the context of server compiler, the server graph (RSC) can directly know the module ID of the referenced module in the client graph (SSR). The client module'...
[ { "path": "packages/next/build/webpack-config.ts", "patch": "@@ -1278,12 +1278,7 @@ export default async function getBaseWebpackConfig(\n emitOnErrors: !dev,\n checkWasmTypes: false,\n nodeEnv: false,\n- ...(hasServerComponents\n- ? {\n- // We have to use the names h...
2022-09-30T18:32:32
huggingface/transformers
6a912ff2c5b3eadb9a0583d77083aae27d35d28d
4e90b99ed916300b80bac9db793f2a96b2a87122
Watermarking: fix order (#34849) fix watermarking order
[ { "path": "src/transformers/generation/utils.py", "patch": "@@ -1029,10 +1029,6 @@ def _get_logits_processor(\n \"You have explicitly specified `forced_decoder_ids`. Please remove the `forced_decoder_ids` argument \"\n \"in favour of `input_ids` or `decoder_input_ids` respect...
2024-11-22T07:25:14
vercel/next.js
93ff04b493d852360b6cbc12b3efa535c7b23349
a83cfcdc7871602145a7d3cbd15edada2bae470f
Full page reload when navigating to new root layout (#40751) Finds the root layout segments for flight requests. If those segments doesn't match the FlightRouterState it's a new root layout and a full page reload is required. ## Bug - [ ] Related issues linked using `fixes #number` - [ ] Integration tests added - [ ...
[ { "path": "packages/next/server/app-render.tsx", "patch": "@@ -6,7 +6,7 @@ import type { ServerRuntime } from '../types'\n // @ts-ignore\n import React, { experimental_use as use } from 'react'\n \n-import { ParsedUrlQuery } from 'querystring'\n+import { ParsedUrlQuery, stringify as stringifyQuery } from 'q...
2022-09-30T15:55:22
golang/go
e196cb8258647652f552757d024b261731d95218
a06bd9fecb4ec707a0b07a662283aa4970ecd9b8
[dev.typeparams] cmd/dist: disable -G=3 on the std go tests for now Disable -G=3 tests on the std go tests, in order to see if -G=3 is causing the flakiness for the dev.typeparams builder, as opposed to other changes in typeparams branch. It's possible that -G=3 is using more CPU/RAM that causes flakiness, as opposed...
[ { "path": "src/cmd/dist/test.go", "patch": "@@ -444,8 +444,12 @@ func (t *tester) registerTests() {\n \t\t\tfatalf(\"Error running go list std cmd: %v:\\n%s\", err, cmd.Stderr)\n \t\t}\n \t\tpkgs := strings.Fields(string(all))\n-\t\tfor _, pkg := range pkgs {\n-\t\t\tt.registerStdTest(pkg, true)\n+\t\tif fa...
2021-02-17T02:24:48
rust-lang/rust
d8d27ca82249555906f5deb687e44813beef0062
ae9173d7dd4a31806c950c90dcc331f1508b4d17
Fix two incorrect turbofish suggestions Fixes #121901
[ { "path": "compiler/rustc_parse/src/parser/item.rs", "patch": "@@ -2960,13 +2960,30 @@ impl<'a> Parser<'a> {\n let parser_snapshot_before_ty = this.create_snapshot_for_diagnostic();\n this.eat_incorrect_doc_comment_for_param_type();\n let mut ty = this.parse_t...
2025-04-02T15:39:42
ollama/ollama
220e133fca8fe128dbf8fecef96c8484f991e39c
d3b4b9970a5e2759fcfc6a632968ecc771ac6e77
vulkan: Add memory detection for Intel GPU using DXGI+PDH (#12664) * PDH free memory skeleton * Add PDH printing * Add LUID support for Vulkan * wire luid from ggml-vulkan to mem-dxgi-pdh file * Fix to ggml-impl * Continue skeleton * Implemented ggml_dxgi_pdh_get_device_memory * fix comments * Fix - change val...
[ { "path": "llama/patches/0031-Add-memory-detection-using-DXGI-PDH.patch", "patch": "@@ -0,0 +1,420 @@\n+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001\n+From: Viraj Wadhwa <viraj.wadhwa@intel.com>\n+Date: Tue, 4 Nov 2025 12:04:04 -0800\n+Subject: [PATCH] Add memory detection using DX...
2025-11-04T22:11:55
nodejs/node
c6b6c92185316e13738e6fa931fdd5303e381e46
eeb57022e6bada13955a19b15232a9ee4fe9b465
lib: always show ERR_INVALID_ARG_TYPE received part This makes a effort to make sure all of these errors will actually also show the received input. On top of that it refactors a few tests for better maintainability. It will also change the returned type to always be a simple typeof instead of special handling null. ...
[ { "path": "lib/_http_outgoing.js", "patch": "@@ -540,7 +540,7 @@ OutgoingMessage.prototype.setHeader = function setHeader(name, value) {\n \n OutgoingMessage.prototype.getHeader = function getHeader(name) {\n if (typeof name !== 'string') {\n- throw new ERR_INVALID_ARG_TYPE('name', 'string');\n+ thr...
2018-03-19T12:33:46
huggingface/transformers
18871599c9ae76f7b5a09186b2c09fc5b8826604
d6a5c23f71052e5405771ca6dcd3d4acbba49fc6
Fix heuristic scheduling for UAG (#34805) * fix heuristic schedule * fix style * fix format
[ { "path": "src/transformers/generation/candidate_generator.py", "patch": "@@ -255,7 +255,8 @@ def update_candidate_strategy(self, input_ids: torch.LongTensor, scores: torch.F\n \"heuristic\",\n \"heuristic_transient\",\n }:\n- if num_matches == int(self.num_assista...
2024-11-21T13:46:35
vercel/next.js
a83cfcdc7871602145a7d3cbd15edada2bae470f
9863df3fb297cb5feaa34b3332d24a0f79f51dc7
chore: make sure polyfills are built for `pnpm dev` (#41062) Re-lands #40335 but without modifying the lock file. ## Bug - [ ] Related issues linked using `fixes #number` - [ ] Integration tests added - [ ] Errors have a helpful link attached, see `contributing.md` ## Feature - [ ] Implements an existing feature ...
[ { "path": "package.json", "patch": "@@ -11,7 +11,7 @@\n \"clean\": \"pnpm lerna clean -y && pnpm lerna bootstrap && pnpm lerna exec 'rm -rf ./dist'\",\n \"build\": \"turbo run build\",\n \"lerna\": \"lerna\",\n- \"dev\": \"lerna run dev --stream --parallel\",\n+ \"dev\": \"turbo run dev --...
2022-09-30T14:54:38
golang/go
2f0da6d9e29d9b9d5a4d10427ca9f71d12bbacc8
70c37ee7d0eb68777bd81a1acc06d85ee3da4052
go/types: revert "no 'declared but not used' errors for invalid var decls" This reverts commit CL 289712 (afd67f3). It breaks x/tools tests, and those tests highlight that perhaps I didn't think through the repercussions of this change as much as I should have. Fixes #44316 Change-Id: I5db39b4e2a3714131aa22423abfe0f...
[ { "path": "src/go/types/assignments.go", "patch": "@@ -120,7 +120,6 @@ func (check *Checker) initVar(lhs *Var, x *operand, context string) Type {\n \t\tif lhs.typ == nil {\n \t\t\tlhs.typ = Typ[Invalid]\n \t\t}\n-\t\tlhs.used = true\n \t\treturn nil\n \t}\n ", "additions": 0, "deletions": 1, "la...
2021-02-17T01:01:32
nodejs/node
ca22c96f1607f5f561e4a1a091bbd494a038ec6a
e06ad5faf98a8fb15863ec8a1638ba82bba13427
test: refactor parallel/test-tls-ca-concat.js PR-URL: https://github.com/nodejs/node/pull/19092 Fixes: https://github.com/nodejs/node/issues/14544 Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Tobias Nießen <tnies...
[ { "path": "test/parallel/test-tls-ca-concat.js", "patch": "@@ -1,5 +1,5 @@\n 'use strict';\n-require('../common');\n+const common = require('../common');\n const fixtures = require('../common/fixtures');\n \n // Check ca option can contain concatenated certs by prepending an unrelated\n@@ -18,7 +18,7 @@ con...
2018-03-02T18:31:54
huggingface/transformers
d6a5c23f71052e5405771ca6dcd3d4acbba49fc6
ae5cbf804bf8eeefa8f4a4359f0ea055b99369ad
Fix ds nvme (#34444) * skip nested deepspeed.zero.Init call * make fixup * solve conflict * solve conflict * put back local * use context mangers instead of local thread * Skip recursive calls to deepspeed.zero.Init * Skip recursive calls to deepspeed.zero.Init * back to old notebooks * make...
[ { "path": "src/transformers/modeling_utils.py", "patch": "@@ -139,6 +139,7 @@\n \n _init_weights = True\n _is_quantized = False\n+_is_ds_init_called = False\n \n \n def is_fsdp_enabled():\n@@ -226,6 +227,19 @@ def set_quantized_state():\n _is_quantized = False\n \n \n+# Skip recursive calls to deeps...
2024-11-21T12:52:22
vercel/next.js
9863df3fb297cb5feaa34b3332d24a0f79f51dc7
92db7f165df370cdb541b7a145fc4ee07206df08
chore(examples): use correct name in `with-xata` example (#41063) ## Documentation / Examples - [x] Make sure the linting passes by running `pnpm lint` - [x] The "examples guidelines" are followed from [our contributing doc](https://github.com/vercel/next.js/blob/canary/contributing/examples/adding-examples.md) This...
[ { "path": "examples/with-xata/README.md", "patch": "@@ -25,15 +25,15 @@ Deploy the example using [Vercel](https://vercel.com?utm_source=github&utm_mediu\n Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app) with [npm](https://docs.npmjs.com/cli/init), [Yarn](h...
2022-09-30T14:27:47
nodejs/node
e06ad5faf98a8fb15863ec8a1638ba82bba13427
610dd79956e582aa4c189092d3048f0d11c757a3
fs: use encoding in readFile Use the encoding parameter passed to fsPromises.readFile if it is passed. Currently the encoding parameter is ignored in fsPromises. PR-URL: https://github.com/nodejs/node/pull/19296 Fixes: https://github.com/nodejs/node/issues/19286 Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano...
[ { "path": "lib/fs/promises.js", "patch": "@@ -157,7 +157,12 @@ async function readFileHandle(filehandle, options) {\n chunks.push(buffer.slice(0, totalRead));\n } while (totalRead === chunkSize);\n \n- return Buffer.concat(chunks);\n+ const result = Buffer.concat(chunks);\n+ if (options.encoding)...
2018-03-12T10:02:20
huggingface/transformers
ae5cbf804bf8eeefa8f4a4359f0ea055b99369ad
c57eafdaa119eecae8557be4c626629bc1adc0fd
Improve gguf tensor processing (#34515) * add tensor processing system to separate logic for models * format refactoring * small fix * make some methods private * move custom methods to processors * refactor tensor processing * format fix
[ { "path": "src/transformers/modeling_gguf_pytorch_utils.py", "patch": "@@ -15,7 +15,7 @@\n # limitations under the License.\n \n import re\n-from typing import Dict, Optional\n+from typing import Dict, NamedTuple, Optional\n \n import numpy as np\n from tqdm import tqdm\n@@ -55,6 +55,200 @@\n GGUF_SUPPORTED...
2024-11-21T12:40:49
vercel/next.js
f09c3becbc71c4a5428d5312884cca1943661036
304730e6d569892539b923d9eeee428a6b094123
chore(examples): Add `vanilla-extract` example (#41061) ## Bug - [ ] Related issues linked using `fixes #number` - [ ] Integration tests added - [ ] Errors have a helpful link attached, see `contributing.md` ## Feature - [ ] Implements an existing feature request or RFC. Make sure the feature request has been acc...
[ { "path": "examples/with-vanilla-extract/README.md", "patch": "@@ -0,0 +1,3 @@\n+# Next.js + vanilla-extract Example\n+\n+The official vanilla-extract repository maintains an example in [examples/next](https://github.com/vanilla-extract-css/vanilla-extract/tree/master/examples/next)", "additions": 3, ...
2022-09-30T14:02:01
huggingface/transformers
c57eafdaa119eecae8557be4c626629bc1adc0fd
d4e1acbb7c2f8bedeccc0d254f3a7ba5873bc61f
Add Nemotron GGUF Loading Support (#34725) * Add Nemotron GGUF Loading Support * fix the Nemotron architecture assignation --------- Co-authored-by: Marc Sun <57196510+SunMarc@users.noreply.github.com>
[ { "path": "docs/source/en/gguf.md", "patch": "@@ -87,6 +87,7 @@ For now the supported model architectures are the architectures that have been v\n - Starcoder2\n - T5\n - Mamba\n+- Nemotron\n \n ## Example usage\n ", "additions": 1, "deletions": 0, "language": "Markdown" }, { "path": "sr...
2024-11-21T10:37:34
ollama/ollama
d3b4b9970a5e2759fcfc6a632968ecc771ac6e77
a4770107a6ea6b4f5adc235d37d08417dc3b9184
app: add code for macOS and Windows apps under 'app' (#12933) * app: add code for macOS and Windows apps under 'app' * app: add readme * app: windows and linux only for now * ci: fix ui CI validation --------- Co-authored-by: jmorganca <jmorganca@gmail.com>
[ { "path": ".github/workflows/release.yaml", "patch": "@@ -15,44 +15,56 @@ jobs:\n environment: release\n outputs:\n GOFLAGS: ${{ steps.goflags.outputs.GOFLAGS }}\n+ VERSION: ${{ steps.goflags.outputs.VERSION }}\n steps:\n - uses: actions/checkout@v4\n - name: Set environme...
2025-11-04T19:40:17
huggingface/transformers
28fb02fc05d52811be27e85ea725682e23887dbc
40821a247823b35d7ff10ba490d0d930fe8f5afa
VLMs: enable generation tests - last batch (#34484) * add tests for 3 more vlms * fix fuyu back * skip test
[ { "path": "src/transformers/models/fuyu/modeling_fuyu.py", "patch": "@@ -346,7 +346,7 @@ def prepare_inputs_for_generation(\n ):\n # Overwritten -- in specific circumstances we don't want to forward image inputs to the model\n \n- if past_key_values:\n+ if past_key_values is not No...
2024-11-21T10:00:22
rust-lang/rust
4c0cbaeb9e799362dd081ff8514f75e23ab8c2f5
4d8f7577b5f2f7c72d1e258c07b882d0afcf0956
Remove `TokenStream::flattened` and `InvisibleOrigin::FlattenToken`. They are no longer needed. This does slightly worsen the error message for a single test, but that test contains code that is so badly broken that I'm not worried about it.
[ { "path": "compiler/rustc_ast/src/token.rs", "patch": "@@ -30,10 +30,6 @@ pub enum InvisibleOrigin {\n // Converted from `proc_macro::Delimiter` in\n // `proc_macro::Delimiter::to_internal`, i.e. returned by a proc macro.\n ProcMacro,\n-\n- // Converted from `TokenKind::NtLifetime` in `TokenS...
2024-07-04T00:16:51
vercel/next.js
b806985f6cc1b5993696b2639510a34223d00372
2c672c1d8142a51138eb8e3771d3a2141e5a09ed
Improve experimental feature naming (#41060) Rename `optoutServerComponentsBundle` to `serverComponentsExternalPackages` which describes the feature better. ## Bug - [ ] Related issues linked using `fixes #number` - [ ] Integration tests added - [ ] Errors have a helpful link attached, see `contributing.md` ## Feat...
[ { "path": "packages/next/build/webpack-config.ts", "patch": "@@ -124,6 +124,12 @@ function errorIfEnvConflicted(config: NextConfigComplete, key: string) {\n }\n }\n \n+function isResourceInPackages(resource: string, packageNames?: string[]) {\n+ return packageNames?.some((p: string) =>\n+ new RegExp('...
2022-09-30T13:15:56
ollama/ollama
ef549d513ce37729b0b29984eb738856da7d6b89
d2158ca6f4ef64968e639b4474e156ff7c92883a
ggml: Increase maximum graph size The initial implementation of qwen3-vl:235b exceeded the maximum graph size based on the number of tensors. Although this was later fixed through the use of the mrope operation, we are close to the limit in some cases. This updates to track the current llama.cpp usage of GGML.
[ { "path": "ml/backend/ggml/ggml.go", "patch": "@@ -378,7 +378,7 @@ func New(modelPath string, params ml.BackendParams) (ml.Backend, error) {\n \t\t}\n \t}\n \n-\tmaxGraphNodes := max(8192, len(meta.Tensors().Items())*5)\n+\tmaxGraphNodes := max(1024, len(meta.Tensors().Items())*8)\n \n \tsched := C.ggml_bac...
2025-10-30T21:30:31
huggingface/transformers
40821a247823b35d7ff10ba490d0d930fe8f5afa
3cb8676a915c6fa8ad863afd8a2b1a6f4507f3ec
Fix CI slack reporting issue (#34833) * fix * fix * fix * fix * fix --------- Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": "src/transformers/testing_utils.py", "patch": "@@ -2385,6 +2385,10 @@ def wrapper(*args, **kwargs):\n \n env = copy.deepcopy(os.environ)\n env[\"_INSIDE_SUB_PROCESS\"] = \"1\"\n+ # This prevents the entries in `short test summary info` given by the su...
2024-11-20T20:36:13
golang/go
d3cd4830adf45ce53c586a83f9d78421484737fd
03cea563d156736a916137d0f68a14dc86c552a0
[dev.regabi] test: run abi/regabipragma test with -c=1 Currently, we call Warnl in SSA backend when we see a function (defined or called) with regparams pragma. Calling Warnl in concurrent environment is racy. As the debugging output is temporary, for testing purposes we just pass -c=1. We'll remove the pragma and the...
[ { "path": "test/abi/regabipragma.go", "patch": "@@ -1,4 +1,4 @@\n-// runindir\n+// runindir -gcflags=-c=1\n // +build !windows\n \n // Copyright 2021 The Go Authors. All rights reserved.", "additions": 1, "deletions": 1, "language": "Go" }, { "path": "test/run.go", "patch": "@@ -902,...
2021-02-12T00:55:07
vercel/next.js
1a5f27bd88818953522cc59065c1d72e7977677b
797bbc1a2f60b4fd539e98427726eb32cf802935
fixes some nitpicks (vercel/turbo#448)
[ { "path": "packages/next-swc/crates/next-core/src/nodejs/mod.rs", "patch": "@@ -15,7 +15,7 @@ use turbo_tasks_fs::{DiskFileSystemVc, File, FileContent, FileSystemPathVc};\n use turbopack::ecmascript::EcmascriptModuleAssetVc;\n use turbopack_core::{\n asset::{AssetContentVc, AssetVc, AssetsSetVc},\n- ...
2022-09-30T11:52:36
nodejs/node
0863a0e528ba9ee01f960dce7ffebe8fff3a774c
5e00a013eb219716d952cb8eb29a134c00f5db54
tools: update ESLint to 4.19.1 A few bug fixes result in more stringent linting rules. PR-URL: https://github.com/nodejs/node/pull/19528 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Trivikram Kamat...
[ { "path": "tools/node_modules/eslint/README.md", "patch": "@@ -227,9 +227,9 @@ In all cases, make sure your plugins' peerDependencies have been installed as we\n \n Yes, ESLint natively supports parsing JSX syntax (this must be enabled in [configuration](https://eslint.org/docs/user-guide/configuring)). Ple...
2018-03-22T05:44:47
ollama/ollama
83537993d7ceb504ae552a8045867870d342aa27
7dd4862a8997ce6f01018a76ad41bd4d8dbe217b
logs: catch rocm errors (#12888) This will help bubble up more crash errors
[ { "path": "llm/status.go", "patch": "@@ -23,6 +23,7 @@ func NewStatusWriter(out *os.File) *StatusWriter {\n var errorPrefixes = []string{\n \t\"error:\",\n \t\"CUDA error\",\n+\t\"ROCm error\",\n \t\"cudaMalloc failed\",\n \t\"\\\"ERR\\\"\",\n \t\"error loading model\",", "additions": 1, "deletions"...
2025-10-31T16:54:25
huggingface/transformers
3cb8676a915c6fa8ad863afd8a2b1a6f4507f3ec
bf42c3bd4b088fd9df1086e63d47a8e33048e5e1
Fix CI by tweaking torchao tests (#34832)
[ { "path": "src/transformers/utils/quantization_config.py", "patch": "@@ -1264,8 +1264,13 @@ def post_init(self):\n r\"\"\"\n Safety checker that arguments are correct - also replaces some NoneType arguments with their default values.\n \"\"\"\n- if not version.parse(importlib....
2024-11-20T19:28:51
vercel/next.js
fe26f5b96d0e1b79da168424ac49483859ce30c2
b747e0c7e6aa29ab4585cdca75036b8b3c6d7bf2
fixes some nitpicks (#448)
[ { "path": "crates/next-core/src/nodejs/mod.rs", "patch": "@@ -15,7 +15,7 @@ use turbo_tasks_fs::{DiskFileSystemVc, File, FileContent, FileSystemPathVc};\n use turbopack::ecmascript::EcmascriptModuleAssetVc;\n use turbopack_core::{\n asset::{AssetContentVc, AssetVc, AssetsSetVc},\n- chunk::{dev::DevCh...
2022-09-30T11:52:36
rust-lang/rust
fb01485690da6f4c3dbb7f5a3068784f5a3d87bf
ccb2194f9674c5be8bcc4d39ece15a382c863c2a
Rename span-related names in `AstValidator`. A bunch of span-related names in `AstValidator` don't end in `span`, which goes against the usual naming conventions and makes the code surprisingly hard to read. E.g. a name like `body` doesn't sound like it's a span. This commit adds `_span` suffixes.
[ { "path": "compiler/rustc_ast_passes/src/ast_validation.rs", "patch": "@@ -47,14 +47,14 @@ enum SelfSemantic {\n }\n \n enum TraitOrTraitImpl {\n- Trait { span: Span, constness: Option<Span> },\n- TraitImpl { constness: Const, polarity: ImplPolarity, trait_ref: Span },\n+ Trait { span: Span, constn...
2025-04-02T03:21:33
ollama/ollama
db973c8fc2579e97fa4b8adea5cb88835138b3ee
afaf7ce8c34bab8de45ca00dbd12da8cd3cc033a
win: avoid ID mixups on refresh (#12869) On Windows AMD IDs are numeric, and can reorder based on the filter environment. By passing in the filter env on a full discovery refresh, we'll only look at the actual devices and ignore unsupported iGPUs. Without this, on some systems iGPU VRAM was incorrectly being used to ...
[ { "path": "discover/runner.go", "patch": "@@ -335,11 +335,14 @@ func GPUDevices(ctx context.Context, runners []ml.FilteredRunnerDiscovery) []ml.\n \t\t\tctx, cancel := context.WithTimeout(ctx, 3*time.Second)\n \t\t\tdefer cancel()\n \n+\t\t\t// Apply any dev filters to avoid re-discovering unsupported devic...
2025-10-30T22:12:14
nodejs/node
5e00a013eb219716d952cb8eb29a134c00f5db54
7921e53ac5c4726785e3dcb2b7023dd3c4faacb9
lib,test: lint fixes for linter upgrade ESLint 4.19.1 fixes some bugs in rules. These changes prepare us for the upgrade. PR-URL: https://github.com/nodejs/node/pull/19528 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmai...
[ { "path": "lib/internal/readline.js", "patch": "@@ -4,8 +4,10 @@\n // Adopted from https://github.com/chalk/ansi-regex/blob/master/index.js\n // License: MIT, authors: @sindresorhus, Qix-, and arjunmehta\n // Matches all ansi escape code sequences in a string\n+/* eslint-disable no-control-regex */\n const ...
2018-03-22T05:42:35
huggingface/transformers
bf42c3bd4b088fd9df1086e63d47a8e33048e5e1
67890de3b86c81fb4775f41b4690b2abaf2a19cf
Fix hyperparameter search when optuna+deepseed (#34642) * Fix hyperparameter search when optuna+deepseed * Adding free_memory to the search setup --------- Co-authored-by: Corentin-Royer <corentin.royer@ibm.com>
[ { "path": "src/transformers/integrations/integration_utils.py", "patch": "@@ -208,7 +208,7 @@ def hp_params(trial):\n if is_optuna_available():\n import optuna\n \n- if isinstance(trial, optuna.Trial):\n+ if isinstance(trial, optuna.trial.BaseTrial):\n return trial.para...
2024-11-20T17:02:58
vercel/next.js
cd04606d11f05a946e6e9f9d5aae837d67e411b1
24f573f8be0baf76b36132e9770caabbc4626dd4
Add windicss example (#35256) Adding windicss example. This is my first pull request to next.js, so I am very sorry if I did something wrong. ## Documentation / Examples - [X] Make sure the linting passes by running `yarn lint` Co-authored-by: Balázs Orbán <18369201+balazsorban44@users.noreply.github.com>
[ { "path": "examples/with-windicss/.gitignore", "patch": "@@ -0,0 +1,36 @@\n+# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.\n+\n+# dependencies\n+/node_modules\n+/.pnp\n+.pnp.js\n+\n+# testing\n+/coverage\n+\n+# next.js\n+/.next/\n+/out/\n+\n+# production\n+/build\n+\n+...
2022-09-30T11:26:26
nodejs/node
7921e53ac5c4726785e3dcb2b7023dd3c4faacb9
2289267fc28d4cef0f754fba3f065d5083d7839f
doc: fix n-api example string - using a length of 6 for `"hello"` includes a terminating null yielding `"hello\u0000"` - length of 5 would work, but comparing to the N-API docs gives `NAPI_AUTO_LENGTH` instead PR-URL: https://github.com/nodejs/node/pull/19205 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewe...
[ { "path": "doc/api/addons.md", "patch": "@@ -246,7 +246,7 @@ napi_value Method(napi_env env, napi_callback_info args) {\n napi_value greeting;\n napi_status status;\n \n- status = napi_create_string_utf8(env, \"hello\", 6, &greeting);\n+ status = napi_create_string_utf8(env, \"hello\", NAPI_AUTO_LENGT...
2018-03-07T17:25:38
ollama/ollama
afaf7ce8c34bab8de45ca00dbd12da8cd3cc033a
26465fb85fea8d820506f4a7843193c1f259a979
ggml: Enable op_offload to improve partial offload performance When a model is partially offloaded to system RAM, we can either do the calculations on the CPU or we can temporarily transfer the data to the GPU to do the calculations there. Small batches tend to be better on the CPU, large batches on the GPU. The llam...
[ { "path": "llama/patches/0019-Enable-CUDA-Graphs-for-gemma3n.patch", "patch": "@@ -1,58 +0,0 @@\n-From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001\n-From: Oliver Simons <osimons@nvidia.com>\n-Date: Tue, 22 Jul 2025 11:02:28 +0200\n-Subject: [PATCH] Enable CUDA Graphs for gemma3n.\n-\n-...
2025-10-27T23:32:05
huggingface/transformers
f297af55dfc27485189f352cd36b4683de12e0b3
8cadf76e1c72eabbff24099c5c0a2a98edbb00ef
Fix: take into account meta device (#34134) * Do not load for meta device * Make some minor improvements * Add test * Update tests/utils/test_modeling_utils.py Update test parameters Co-authored-by: Marc Sun <57196510+SunMarc@users.noreply.github.com> * Make the test simpler --------- Co-author...
[ { "path": "src/transformers/modeling_utils.py", "patch": "@@ -361,6 +361,9 @@ def check_support_param_buffer_assignment(model_to_load, state_dict, start_prefi\n \n Note: We fully disable this if we are using `deepspeed`\n \"\"\"\n+ if model_to_load.device.type == \"meta\":\n+ return False\...
2024-11-20T10:32:07
vercel/next.js
b747e0c7e6aa29ab4585cdca75036b8b3c6d7bf2
c497fc868a3d98a1d825783069a928016984dc96
fix code generation for edge cases (#259)
[ { "path": "crates/turbopack-ecmascript/src/references/cjs.rs", "patch": "@@ -235,9 +235,10 @@ impl CodeGenerateable for CjsRequireResolveAssetReference {\n Some(ExprOrSpread { expr, spread: None }) => pm.apply(*expr),\n _ => pm.create(),\n ...
2022-09-30T08:43:52
huggingface/transformers
8cadf76e1c72eabbff24099c5c0a2a98edbb00ef
9d16441e4fe4565a3e70522706a59b7085424f1d
fix(DPT,Depth-Anything) `torch.export` (#34103) * Fix torch.export issue in dpt based models Signed-off-by: Phillip Kuznetsov <philkuz@gimletlabs.ai> * Simplify the if statements Signed-off-by: Phillip Kuznetsov <philkuz@gimletlabs.ai> * Move activation definitions of zoe_depth to init() Signed-off-by: ...
[ { "path": "src/transformers/models/depth_anything/modeling_depth_anything.py", "patch": "@@ -224,16 +224,16 @@ def forward(self, hidden_states, size=None):\n hidden_states = hidden_states[::-1]\n \n fused_hidden_states = []\n- # first layer only uses the last hidden_state\n- si...
2024-11-20T10:31:21
ollama/ollama
ed78e127d0578ece5787bfbc6beb5191aa01edc6
d432ade714156098eac42f633a3911a3cf09dd41
fix(cmd): unload model before removal (#12832) this change fixes two bugs with `ollama rm`: 1. before a model is removed, it will first be stopped. this only happens for the first argument and skipped for all other models 2. models are unloaded indiscriminately. this errors for cloud models and should be omitte...
[ { "path": "cmd/cmd.go", "patch": "@@ -280,6 +280,13 @@ func loadOrUnloadModel(cmd *cobra.Command, opts *runOptions) error {\n \t\treturn err\n \t}\n \n+\tif info, err := client.Show(cmd.Context(), &api.ShowRequest{Model: opts.Model}); err != nil {\n+\t\treturn err\n+\t} else if info.RemoteHost != \"\" {\n+\...
2025-10-30T17:41:49
nodejs/node
f2e02883e7ef6ff58331e980f91bc31d8076a5c8
a0adf56855f59a301d9a1f69b4267ced4fd4cf03
crypto: add ECDH.convertKey to convert public keys ECDH.convertKey is used to convert public keys between different formats. PR-URL: https://github.com/nodejs/node/pull/19080 Fixes: https://github.com/nodejs/node/issues/18977 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: James M Snell <jasnell@gmail.co...
[ { "path": "doc/api/crypto.md", "patch": "@@ -656,6 +656,54 @@ assert.strictEqual(aliceSecret.toString('hex'), bobSecret.toString('hex'));\n // OK\n ```\n \n+### ECDH.convertKey(key, curve[, inputEncoding[, outputEncoding[, format]]])\n+<!-- YAML\n+added: REPLACEME\n+-->\n+\n+- `key` {string | Buffer | Typed...
2018-03-02T01:13:12
golang/go
b8fb049c7ad4940901613d16629a88b38c6a82da
ed55da46ab994abb4ea1b20aaab3cff6b650959f
[dev.regabi] cmd/go: copy internal/abi in TestNewReleaseRebuildsStalePackagesInGOPATH The internal/abi package is used by runtime and needs to be copied. Fix longtest builders. Change-Id: I7a962df3db2c6bf68cc6a7da74b579f381920009 Reviewed-on: https://go-review.googlesource.com/c/go/+/292592 Reviewed-by: Michael Knys...
[ { "path": "src/cmd/go/go_test.go", "patch": "@@ -811,6 +811,7 @@ func TestNewReleaseRebuildsStalePackagesInGOPATH(t *testing.T) {\n \t// so that we can change files.\n \tfor _, copydir := range []string{\n \t\t\"src/runtime\",\n+\t\t\"src/internal/abi\",\n \t\t\"src/internal/bytealg\",\n \t\t\"src/internal/...
2021-02-16T20:55:54
huggingface/transformers
9d16441e4fe4565a3e70522706a59b7085424f1d
9470d6532436e9db2951a196effd6f8841befb76
Fix the memory usage issue of logits in generate() (#34813)
[ { "path": "src/transformers/generation/utils.py", "patch": "@@ -3246,7 +3246,7 @@ def _sample(\n \n # Clone is needed to avoid keeping a hanging ref to outputs.logits which may be very large for first iteration\n # (the clone itself is always small)\n- next_token_logits = ...
2024-11-20T10:25:37
vercel/next.js
24f573f8be0baf76b36132e9770caabbc4626dd4
73b473991c06aa7e41f231a903384f126e65c20b
chore: make sure polyfills are built for `pnpm dev` (#40335) Utilize `turbo` for `dev`, and make sure polyfills are built. Fixes #40334 Another option would be to document that an initial `pnpm build` is necessary in [`CONTRIBUTING.md`](https://github.com/vercel/next.js/blob/canary/contributing.md#developing). ## B...
[ { "path": "package.json", "patch": "@@ -11,7 +11,7 @@\n \"clean\": \"pnpm lerna clean -y && pnpm lerna bootstrap && pnpm lerna exec 'rm -rf ./dist'\",\n \"build\": \"turbo run build\",\n \"lerna\": \"lerna\",\n- \"dev\": \"lerna run dev --stream --parallel\",\n+ \"dev\": \"turbo run dev --...
2022-09-30T02:03:47
nodejs/node
a0adf56855f59a301d9a1f69b4267ced4fd4cf03
b41ed29b80ea1454132e5707a978ad2ebd6b29a2
path: fix regression in posix.normalize Fixes a regression introduced in [1]. The posix version of normalize should not treat backslash as a path separator. [1] https://github.com/nodejs/node/commit/4ae320f2 PR-URL: https://github.com/nodejs/node/pull/19520 Fixes: https://github.com/nodejs/node/issues/19519 Reviewed...
[ { "path": "lib/path.js", "patch": "@@ -44,13 +44,17 @@ function isPathSeparator(code) {\n return code === CHAR_FORWARD_SLASH || code === CHAR_BACKWARD_SLASH;\n }\n \n+function isPosixPathSeparator(code) {\n+ return code === CHAR_FORWARD_SLASH;\n+}\n+\n function isWindowsDeviceRoot(code) {\n return code...
2018-03-21T18:20:53
ollama/ollama
d432ade714156098eac42f633a3911a3cf09dd41
06b3422d5f973ba9026333dc49f312d5d649629d
fix: qwen2.5vl, qwen3vl composite image (#12841) this change fixes images with an alpha channel by overlaying the image onto a white background
[ { "path": "model/models/qwen25vl/process_image.go", "patch": "@@ -79,6 +79,8 @@ type Grid struct {\n }\n \n func (p *ImageProcessor) ProcessImage(img image.Image) ([]float32, *Grid, error) {\n+\timg = imageproc.Composite(img)\n+\n \torigWidth := img.Bounds().Dx()\n \torigHeight := img.Bounds().Dy()\n ", ...
2025-10-30T17:33:19
golang/go
7696c9433406c3f5b9f127cb557120b74e3c3952
c2358a1ae77d7bd09fb8b728d25641b5757a7a58
[dev.regabi] go/types: type alias decl requires go1.9 This is a port of CL 289570 to go/types. It has some notable differences with that CL: + A new _BadDecl error code is added, to indicate declarations with bad syntax. + declInfo is updated hold not an 'alias' bool, but an aliasPos token.Pos to identify the ...
[ { "path": "src/go/types/decl.go", "patch": "@@ -189,7 +189,7 @@ func (check *Checker) objDecl(obj Object, def *Named) {\n \t\tcheck.varDecl(obj, d.lhs, d.typ, d.init)\n \tcase *TypeName:\n \t\t// invalid recursive types are detected via path\n-\t\tcheck.typeDecl(obj, d.typ, def, d.alias)\n+\t\tcheck.typeDec...
2021-02-11T15:45:49
huggingface/transformers
9470d6532436e9db2951a196effd6f8841befb76
145fbd46cb3a68727f5c779b5a63c8b1339933c2
Fix low memory beam search (#34746) * fix * higher max positions in tests
[ { "path": "src/transformers/cache_utils.py", "patch": "@@ -528,7 +528,7 @@ def from_batch_splits(cls, splits: List[\"DynamicCache\"], num_hidden_layers: int\n cache = cls()\n for idx in range(len(splits[0])):\n key_cache = [current.key_cache[idx] for current in splits if current....
2024-11-20T06:46:35
vercel/next.js
73b473991c06aa7e41f231a903384f126e65c20b
05c2fe0b0f63dc878eab034d1d7c179cc0d97be3
chore: add build step to `eslint-plugin-next` (#38647) Follow-up on https://github.com/vercel/next.js/pull/38534#pullrequestreview-1035020450 This lets us use modern JS/TS syntax in ESLint rules and avoid issues like #38530 and #36693 ## Bug - [ ] Related issues linked using `fixes #number` - [ ] Integration tests ...
[ { "path": "packages/eslint-plugin-next/.swcrc", "patch": "@@ -0,0 +1,11 @@\n+{\n+ \"$schema\": \"https://json.schemastore.org/swcrc\",\n+ \"jsc\": {\n+ \"parser\": {\n+ \"syntax\": \"typescript\"\n+ }\n+ },\n+ \"module\": {\n+ \"type\": \"commonjs\"\n+ }\n+}\n\...
2022-09-30T01:37:59
nodejs/node
1c8149417a5dec9b2af056f306822b8a22a09706
84afd6e4927113a60ced01b8640903febb259df1
fs,net: emit 'ready' for fs streams and sockets ... in addition to the event names they currently use. Currently, various internal streams have different events that indicate that the underlying resource has successfully been established. This commit adds ready event for fs and net sockets to standardize on emitting ...
[ { "path": "lib/fs.js", "patch": "@@ -2051,6 +2051,7 @@ ReadStream.prototype.open = function() {\n \n self.fd = fd;\n self.emit('open', fd);\n+ self.emit('ready');\n // start the flow of data.\n self.read();\n });\n@@ -2207,6 +2208,7 @@ WriteStream.prototype.open = function() {\n \n ...
2018-03-17T10:54:46
ollama/ollama
cbe1cf06c44c6ff0901851c04b6bd8650ece7c5f
0a2d92081bb6b6b2d3eab5908fce08cfcf736e1d
Update README.md (#12822) Fixed broken docs links
[ { "path": "README.md", "patch": "@@ -22,7 +22,7 @@ Get up and running with large language models.\n curl -fsSL https://ollama.com/install.sh | sh\n ```\n \n-[Manual install instructions](https://github.com/ollama/ollama/blob/main/docs/linux.md)\n+[Manual install instructions](https://docs.ollama.com/linux#m...
2025-10-30T17:14:39
huggingface/transformers
145fbd46cb3a68727f5c779b5a63c8b1339933c2
30335093276212ce74938bdfd85bfd5df31a668a
LLaVA OV: fix unpadding precision (#34779) * fix * propagate * type check
[ { "path": "src/transformers/models/llava_next/processing_llava_next.py", "patch": "@@ -163,7 +163,9 @@ def __call__(\n for sample in text:\n while self.image_token in sample:\n image_size = next(image_sizes)\n- orig_height, o...
2024-11-20T06:46:13
golang/go
c2358a1ae77d7bd09fb8b728d25641b5757a7a58
8cfbf34dd956125524ea63469342cf8a319b5bd1
[dev.regabi] runtime: stub out spillArgs and unspillArgs Currently these two functions assume that constants in internal/abi are set correctly, but we actually just made them zero if GOEXPERIMENT_REGABI is set. This means reflectcall is broken. Fix it by stubbing out these routines even if GOEXPERIMENT_REGABI is set. ...
[ { "path": "src/runtime/asm_amd64.s", "patch": "@@ -445,7 +445,10 @@ TEXT runtime·morestack_noctxt(SB),NOSPLIT,$0\n \tMOVL\t$0, DX\n \tJMP\truntime·morestack(SB)\n \n-#ifdef GOEXPERIMENT_REGABI\n+// REFLECTCALL_USE_REGABI is not defined. It must be defined in conjunction with the\n+// register constants in t...
2021-02-16T20:15:13
vercel/next.js
8422f233ef94e353f16d05d95e905103d4a6af86
88ac118d1c421ac2c7959bd431cfdc0b5c2481c2
Add NextUI example (#38209) ## Bug - [ ] Related issues linked using `fixes #number` - [ ] Integration tests added - [ ] Errors have helpful link attached, see `contributing.md` ## Feature - [ ] Implements an existing feature request or RFC. Make sure the feature request has been accepted for implementation befor...
[ { "path": "examples/with-next-ui/.gitignore", "patch": "@@ -0,0 +1,36 @@\n+# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.\n+\n+# dependencies\n+/node_modules\n+/.pnp\n+.pnp.js\n+\n+# testing\n+/coverage\n+\n+# next.js\n+/.next/\n+/out/\n+\n+# production\n+/build\n+\n+#...
2022-09-29T23:59:15
nodejs/node
84afd6e4927113a60ced01b8640903febb259df1
38bae5dc23723b4f35a1569113caf2c76fb3195d
http2: destroy() stream, upon errnoException First steps towards #19060 PR-URL: https://github.com/nodejs/node/pull/19389 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
[ { "path": "lib/internal/http2/core.js", "patch": "@@ -1680,7 +1680,7 @@ class Http2Stream extends Duplex {\n req.async = false;\n const err = createWriteReq(req, handle, data, encoding);\n if (err)\n- throw errnoException(err, 'write', req.error);\n+ return this.destroy(errnoException(...
2018-03-16T11:59:47
huggingface/transformers
469eddbe2d7d052d7a7b8ebcdc619f17dbb55a47
05ebe8b9b0011734f1294dc583ac41410783b48c
Fix `check_training_gradient_checkpointing` (#34806) fix Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": "tests/test_modeling_common.py", "patch": "@@ -847,7 +847,9 @@ def check_training_gradient_checkpointing(self, gradient_checkpointing_kwargs=No\n ]\n or not model_class.supports_gradient_checkpointing\n ):\n- self.skipTest(...
2024-11-19T16:48:34
golang/go
6f3da9d2f6b4f7dbbe5d15260d87ed2a84488fde
098504c73ff6ece19566a1ac811ceed73be7c81d
README: pull gopher image from website Fixes breakage accidentally introduced by https://golang.org/cl/291711. Fixes #44295 Change-Id: I76f3e5577d1d24027d4ed2a725b5b749ab2d059c Reviewed-on: https://go-review.googlesource.com/c/go/+/292629 Trust: Ian Lance Taylor <iant@golang.org> Run-TryBot: Ian Lance Taylor <iant@g...
[ { "path": "README.md", "patch": "@@ -3,7 +3,7 @@\n Go is an open source programming language that makes it easy to build simple,\n reliable, and efficient software.\n \n-![Gopher image](doc/gopher/fiveyears.jpg)\n+![Gopher image](https://golang.org/doc/gopher/fiveyears.jpg)\n *Gopher image by [Renee French]...
2021-02-16T18:16:06
ollama/ollama
05aff4a4f18ced0fe9989a7e8b0246e5c3ae08af
0d140bd1af59def462a0d3fe61c89b468162b5e7
tests: fix embeddinggemma integration test (#12830)
[ { "path": "integration/testdata/embed.json", "patch": "@@ -8,6 +8,6 @@\n \t\"paraphrase-multilingual\": [-0.019807, -0.124781, -0.010519, 0.035812, -0.103448, 0.051982, 0.035322, 0.030018, -0.179976, 0.194586, 0.129194, 0.157071, 0.083678, 0.074628, 0.093773, -0.367580, 0.002608, 0.086277, 0.050985, -0.0056...
2025-10-29T18:07:28
nodejs/node
5fdee52c5ea39d2ed2c34dba9318162a4904cf44
a6f3e8f3fe653c48a48c877feec1c24306c3248e
doc: update child_process.md Add an explanation of the risk of exceeding platform pipe capacity with uncaptured output in child_process.spawn with stdio of pipe PR-URL: https://github.com/nodejs/node/pull/19075 Fixes: https://github.com/nodejs/node/issues/4236 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Rev...
[ { "path": "doc/api/child_process.md", "patch": "@@ -27,10 +27,16 @@ ls.on('close', (code) => {\n ```\n \n By default, pipes for `stdin`, `stdout`, and `stderr` are established between\n-the parent Node.js process and the spawned child. It is possible to stream data\n-through these pipes in a non-blocking wa...
2018-03-01T19:56:03
vercel/next.js
c5d2c2d92681a1eaa96b21284acea53008b1b418
335e91800b1cf525ef1a8a3bcca481f77ac69823
Move handling of navigation to pages from new router (#41001) Ensures the static generation case is covered. Checks application/octet-stream client-side, if it's not does a full page navigation. <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as p...
[ { "path": "packages/next/client/components/app-router.client.tsx", "patch": "@@ -65,6 +65,14 @@ export async function fetchServerResponse(\n ? urlToUrlWithoutFlightMarker(res.url)\n : undefined\n \n+ const isFlightResponse =\n+ res.headers.get('content-type') === 'application/octet-stream'\n+\n+...
2022-09-29T23:47:10
huggingface/transformers
05ebe8b9b0011734f1294dc583ac41410783b48c
eedc113914908296fa8e4c87c1b371373ec2c991
Run `test_medium_seamless_m4t_pt` in `subprocess` to avoid many failures (#34812) * fix * fix * fix --------- Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": "tests/pipelines/test_pipelines_text_to_audio.py", "patch": "@@ -27,6 +27,7 @@\n require_torch,\n require_torch_accelerator,\n require_torch_or_tf,\n+ run_test_using_subprocess,\n slow,\n torch_device,\n )\n@@ -66,8 +67,10 @@ def test_small_musicgen_pt(self):\n audio...
2024-11-19T16:32:10
golang/go
d28aae26b00ec047da1c27192d7eb4b64e30db45
e0215315f51c62f6d2c5ea5ed7008b7e7963dd5d
[dev.regabi] cmd/link: recognize internal/abi as runtime package The runtime imports the internal/abi package. Recognize internal/abi as a runtime dependent, to make trampoline generation algorithm work. Fix ARM build. Change-Id: I26b6778aa41dcb959bc226ff04abe08a5a82c4f6 Reviewed-on: https://go-review.googlesource.c...
[ { "path": "src/cmd/link/internal/ld/data.go", "patch": "@@ -55,6 +55,7 @@ func isRuntimeDepPkg(pkg string) bool {\n \tswitch pkg {\n \tcase \"runtime\",\n \t\t\"sync/atomic\", // runtime may call to sync/atomic, due to go:linkname\n+\t\t\"internal/abi\", // used by reflectcall (and maybe more)\n \t...
2021-02-16T17:58:48