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
vercel/next.js
d5ec0113a44baa472194f54016639bfdf2242eb0
cb301690665b9100b32a3a98e312b8f52cd40050
Set process.browser when running in the browser (#28) See https://github.com/debug-js/debug/blob/master/src/index.js#L6-L10 for an example of this behavior. A proper fix would be to detect this kinds of conditions at compile-time and avoid processing the server-side file at all, but this should work as a stopgap...
[ { "path": "crates/turbopack-ecmascript/src/chunk/runtime.js", "patch": "@@ -38,7 +38,12 @@\n */\n const moduleChunksMap = new Map();\n var hOP = Object.prototype.hasOwnProperty;\n- var _process = typeof process !== \"undefined\" ? process : { env: {} };\n+ const _process = typeof process !== \"unde...
2022-10-14T17:51:48
golang/go
f6a74c656837fcb0ea04e7b605ccdce7d10c45db
87beecd6dfd3b12ed30785ec502f7380dc79ec29
cmd/compile/internal/ir: fix up stale comment Fix a small stale comment in FinishCaptureNames (refers to old code structure before the big refactoring). Change-Id: I2dfb84ce238f919f6e17061439a8bd9b09459dae Reviewed-on: https://go-review.googlesource.com/c/go/+/296829 Trust: Than McIntosh <thanm@google.com> Run-TryBot...
[ { "path": "src/cmd/compile/internal/ir/name.go", "patch": "@@ -398,7 +398,7 @@ func FinishCaptureNames(pos src.XPos, outerfn, fn *Func) {\n \t// unhook them.\n \t// make the list of pointers for the closure call.\n \tfor _, cv := range fn.ClosureVars {\n-\t\t// Unlink from n; see comment in syntax.go type P...
2021-02-26T14:25:22
nodejs/node
425c5ca27d25b35091783262ea21baef1f742579
08af7dba2aa7ea49858d0f05c68fd21cdadf4c15
test: remove openssl -no_rand_screen opts This option was made from the floating patch of d269e07. It is no longer needed because the issue was resolved in OpenSSL-1.1.0. Fixes: https://github.com/nodejs/node/issues/4270 PR-URL: https://github.com/nodejs/node/pull/19794 Reviewed-By: James M Snell <jasnell@gmail.com> ...
[ { "path": "test/parallel/test-https-foafssl.js", "patch": "@@ -72,10 +72,6 @@ server.listen(0, function() {\n '-cert', fixtures.path('foafssl.crt'),\n '-key', fixtures.path('foafssl.key')];\n \n- // for the performance and stability issue in s_client on Windows\n- if (commo...
2018-02-25T16:20:17
ollama/ollama
3a88f7eb2087170a0835dd2a1bdb2ddad4e5cdd5
0d5da826d47f6ca219f04302234b77a849476fba
bugfix: add missing linear layer factory (#14289)
[ { "path": "x/mlxrunner/model/linear.go", "patch": "@@ -0,0 +1,92 @@\n+//go:build mlx\n+\n+package model\n+\n+import (\n+\t\"github.com/ollama/ollama/x/mlxrunner/mlx\"\n+\t\"github.com/ollama/ollama/x/models/nn\"\n+)\n+\n+// LinearFactory builds linear layers using shared tensor maps and quant defaults.\n+ty...
2026-02-17T01:22:20
huggingface/transformers
4567ee80572f51859f1454db687cacdf2ec12b13
c3a43594b7ae870694f38f6d12074bd498c5477a
fix zoedepth initialization error under deepspeed zero3 (#35011) fix zoe bug in deepspeed zero3
[ { "path": "src/transformers/models/zoedepth/modeling_zoedepth.py", "patch": "@@ -417,7 +417,7 @@ def __init__(self, n_classes=256, act=torch.softmax):\n self.k = n_classes\n self.act = act\n self.register_buffer(\"k_idx\", torch.arange(0, n_classes).view(1, -1, 1, 1), persistent=Fals...
2024-12-20T11:42:40
vercel/next.js
889af9fd2c68a8b03b5fec34c8651e43e15bfa1e
241195ddd65a0d38e1cd5c46e69c5201c2242063
Fix edge workers being re-used unexpectedly (#41402) This ensures we don't re-use edge workers locally as they are meant to be isolated. ## Bug - [x] Related issues linked using `fixes #number` - [x] Integration tests added - [ ] Errors have a helpful link attached, see `contributing.md` Fixes: [slack thr...
[ { "path": "packages/next/server/next-server.ts", "patch": "@@ -1800,7 +1800,7 @@ export default class NextNodeServer extends BaseServer {\n page: page,\n body: getRequestMeta(params.request, '__NEXT_CLONABLE_BODY'),\n },\n- useCache: !this.nextConfig.experimental.runtime,\n+ ...
2022-10-14T05:56:42
nodejs/node
08af7dba2aa7ea49858d0f05c68fd21cdadf4c15
7812ec735ba50493c417a4860aa491fcee67d149
build: add OpenSSL-1.1.0 support - For Windows, nasm is new build requirements and openssl_no_asm is set to 1 with warning if it is not installed. - For use of openssl assemble codes, either gas_version >= 2.23, xcode_version >= 5.0 ,llvm_version >= 3.3 or nasm_version >= 2.10 is needed. Otherwise, openssl_no_as...
[ { "path": "BUILDING.md", "patch": "@@ -88,6 +88,23 @@ Depending on host platform, the selection of toolchains may vary.\n \n * Visual Studio 2017 or the Build Tools thereof\n \n+#### OpenSSL asm support\n+\n+OpenSSL-1.1.0 requires the following asssembler version for use of asm\n+support.\n+\n+* gas (GNU as...
2018-03-07T13:31:05
golang/go
87beecd6dfd3b12ed30785ec502f7380dc79ec29
a400eb3261ee3798e0715d2ba6a4083abe59150a
cmd/go: add missing newline to retraction warning message Fixes #44674 Change-Id: Icbdb79084bf7bd2f52cc0a53abcc1ec6f0c4a1bf Reviewed-on: https://go-review.googlesource.com/c/go/+/297350 Reviewed-by: Bryan C. Mills <bcmills@google.com> Reviewed-by: Jay Conrod <jayconrod@google.com> Run-TryBot: Bryan C. Mills <bcmills@...
[ { "path": "src/cmd/go/internal/modget/get.go", "patch": "@@ -1530,7 +1530,7 @@ func (r *resolver) checkPackagesAndRetractions(ctx context.Context, pkgPatterns\n \t\t}\n \t}\n \tif retractPath != \"\" {\n-\t\tfmt.Fprintf(os.Stderr, \"go: to switch to the latest unretracted version, run:\\n\\tgo get %s@latest...
2021-02-28T04:06:23
huggingface/transformers
eafbb0eca7171436138ad0cbbd1c7f860819510e
b5a557e5fe2d015bd36214a95878370eaed51571
Implement AsyncTextIteratorStreamer for asynchronous streaming (#34931) * Add AsyncTextIteratorStreamer class * export AsyncTextIteratorStreamer * export AsyncTextIteratorStreamer * improve docs * missing import * missing import * doc example fix * doc example output fix * add pytest-asyncio * first attempt a...
[ { "path": "docs/source/en/internal/generation_utils.md", "patch": "@@ -352,6 +352,8 @@ A [`Constraint`] can be used to force the generation to include specific tokens\n \n [[autodoc]] TextIteratorStreamer\n \n+[[autodoc]] AsyncTextIteratorStreamer\n+\n ## Caches\n \n [[autodoc]] Cache", "additions": 2, ...
2024-12-20T11:08:12
ollama/ollama
0d5da826d47f6ca219f04302234b77a849476fba
9b795698b8fe99369ca7dc208f8368b3ba47b918
bugfix: display the parameter count correctly in mlx for ollama show (#14285)
[ { "path": "x/server/show.go", "patch": "@@ -5,6 +5,7 @@ import (\n \t\"encoding/json\"\n \t\"fmt\"\n \t\"io\"\n+\t\"math\"\n \t\"os\"\n \t\"sort\"\n \t\"strings\"\n@@ -58,7 +59,15 @@ func GetSafetensorsLLMInfo(name model.Name) (map[string]any, error) {\n \t\t}\n \t}\n \n-\treturn buildModelInfo(config, tota...
2026-02-16T21:03:34
vercel/next.js
70d7d68337491aa0cc8ae0e08491a66b4b9ee8ae
a1d830eec8934f00b10985459794d7da7edde948
perf: lazy evaluate more modules (#41354) In this PR, I'm inlining the require for some of the modules that I noticed take a bit of time to evaluate on a cold boot and are not needed most of the time. With this, it's an extra ~15ms win on cold boots (tested locally) and we are now at around 68ms (started from 11...
[ { "path": "packages/next/server/api-utils/node.ts", "patch": "@@ -11,8 +11,6 @@ import type { CookieSerializeOptions } from 'next/dist/compiled/cookie'\n import type { PreviewData } from 'next/types'\n \n import bytes from 'next/dist/compiled/bytes'\n-import jsonwebtoken from 'next/dist/compiled/jsonwebtoke...
2022-10-13T21:59:46
golang/go
a400eb3261ee3798e0715d2ba6a4083abe59150a
5fafc0bbd4819578e58e5b9163981b0074ab0b01
Revert "cmd/compile: check frame offsets against abi" This reverts CL 293392. Reason for revert: broke most non-x86 builders Fixes #44675 Change-Id: I1e815c3ab27a02e83a2f0d221a617909dd021403 Reviewed-on: https://go-review.googlesource.com/c/go/+/297549 Trust: Bryan C. Mills <bcmills@google.com> Run-TryBot: Bryan C....
[ { "path": "src/cmd/compile/internal/abi/abiutils.go", "patch": "@@ -52,12 +52,12 @@ func (a *ABIParamResultInfo) OutRegistersUsed() int {\n \treturn a.outRegistersUsed\n }\n \n-func (a *ABIParamResultInfo) InParam(i int) *ABIParamAssignment {\n-\treturn &a.inparams[i]\n+func (a *ABIParamResultInfo) InParam(...
2021-03-01T14:43:24
huggingface/transformers
4e27a4009d3f9d4e44e9be742e8cd742daf074f4
5a2aedca1e9b1d7cc7c6ce3e65034c6df7863a95
FEAT : Adding VPTQ quantization method to HFQuantizer (#34770) * init vptq * add integration * add vptq support fix readme * add tests && format * format * address comments * format * format * address comments * format * address comments * remove debug code * Revert "remove debug code" This reverts commi...
[ { "path": "docker/transformers-quantization-latest-gpu/Dockerfile", "patch": "@@ -50,6 +50,9 @@ RUN python3 -m pip install --no-cache-dir git+https://github.com/huggingface/pef\n # Add aqlm for quantization testing\n RUN python3 -m pip install --no-cache-dir aqlm[gpu]==1.0.2\n \n+# Add vptq for quantization...
2024-12-20T08:45:53
ollama/ollama
d18dcd77755b55c9d761e483abee17d1e2b6c58c
5f5ef2013199968a59a330e686b0eab6196fdb6d
mlxrunner fixes (#14247) * load glm4_moe_lite from the mlxrunner * fix loading diffusion models * remove log lines * fix --imagegen flag
[ { "path": "cmd/cmd.go", "patch": "@@ -581,6 +581,17 @@ func RunHandler(cmd *cobra.Command, args []string) error {\n \t}\n \topts.WordWrap = !nowrap\n \n+\tuseImagegen := false\n+\tif cmd.Flags().Lookup(\"imagegen\") != nil {\n+\t\tuseImagegen, err = cmd.Flags().GetBool(\"imagegen\")\n+\t\tif err != nil {\n+...
2026-02-14T06:30:42
vercel/next.js
a1d830eec8934f00b10985459794d7da7edde948
5cd31e41ca652a3ecdf5966733242267da6083fc
Fix prefetching for static app paths (#41398) Ensures we delete the prefetch header when the path is static as it can't be honored and the full tree must be sent instead. ## Bug - [x] Related issues linked using `fixes #number` - [x] Integration tests added - [ ] Errors have a helpful link attached, see `cont...
[ { "path": "packages/next/server/base-server.ts", "patch": "@@ -1064,6 +1064,7 @@ export default abstract class Server<ServerOptions extends Options = Options> {\n ) {\n delete req.headers['__rsc__']\n delete req.headers['__next_router_state_tree__']\n+ delete req.headers...
2022-10-13T21:44:54
golang/go
5fafc0bbd4819578e58e5b9163981b0074ab0b01
2a8df4488ee893353b1200794bde758e9726e7c7
cmd/go/internal/modload: don't query when fixing canonical versions If a canonical version is passed to fixVersion when loading the main go.mod and that version don't match the module path's major version suffix, don't call Query. Query doesn't return a useful error in this case when the path is malformed, for exampl...
[ { "path": "src/cmd/go/internal/modload/init.go", "patch": "@@ -539,9 +539,10 @@ func fixVersion(ctx context.Context, fixed *bool) modfile.VersionFixer {\n \t\t\t}\n \t\t}\n \t\tif vers != \"\" && module.CanonicalVersion(vers) == vers {\n-\t\t\tif err := module.CheckPathMajor(vers, pathMajor); err == nil {\n...
2021-02-25T23:38:43
huggingface/transformers
5a2aedca1e9b1d7cc7c6ce3e65034c6df7863a95
ff9141bb85f22e7b200f0fbed76fd3641990ed7b
[`Mamba2`] Fix caching, slow path, and multi-gpu (#35154) * fixup mamba2 - caching and several other small fixes * fixup cached forward * correct fix this time * fixup cache - we do not need to extend the attn mask it's handled by generate (gives total ids + mask at each step) * remove unnecessary (un)squeeze * f...
[ { "path": "src/transformers/models/mamba2/modeling_mamba2.py", "patch": "@@ -44,14 +44,22 @@\n from mamba_ssm.ops.triton.selective_state_update import selective_state_update\n from mamba_ssm.ops.triton.ssd_combined import mamba_chunk_scan_combined, mamba_split_conv1d_scan_combined\n else:\n- sele...
2024-12-20T08:27:47
vercel/next.js
5cd31e41ca652a3ecdf5966733242267da6083fc
e505e7545b6acf01b82c22bd658c517dbd827f7d
Add npm to `create-next-app` environment package manager parser (#41279) Gracefully parse the environment package manager when calling `create-next-app` instead of passing extra arguments. Reference: #41090 ## Feature - [ ] Implements an existing feature request or RFC. Make sure the feature request has bee...
[ { "path": "packages/create-next-app/helpers/get-pkg-manager.ts", "patch": "@@ -1,25 +1,17 @@\n-import { execSync } from 'child_process'\n-\n export type PackageManager = 'npm' | 'pnpm' | 'yarn'\n \n export function getPkgManager(): PackageManager {\n- try {\n- const userAgent = process.env.npm_config_us...
2022-10-13T21:34:55
golang/go
2a8df4488ee893353b1200794bde758e9726e7c7
5ff7ec98b7727b3641df25200345b1aa50b6ff35
os: mark pipes returned by os.Pipe() as inheritable by default Now that we don't automatically pass all inheritable handles to new processes, we can make pipes returned by os.Pipe() inheritable, just like they are on Unix. This then allows them to be passed through the SysProcAttr.AdditionalInheritedHandles parameter ...
[ { "path": "src/os/exec/exec_test.go", "patch": "@@ -915,6 +915,16 @@ func TestHelperProcess(*testing.T) {\n \tcase \"sleep\":\n \t\ttime.Sleep(3 * time.Second)\n \t\tos.Exit(0)\n+\tcase \"pipehandle\":\n+\t\thandle, _ := strconv.ParseUint(args[0], 16, 64)\n+\t\tpipe := os.NewFile(uintptr(handle), \"\")\n+\t...
2021-01-31T18:51:45
nodejs/node
7812ec735ba50493c417a4860aa491fcee67d149
99eb744842462bad1c1c112d7994ffc6f65b06d9
deps: update archs files for OpenSSL-1.1.0 `cd deps/openssl/config; make` updates all archs dependant files. Fixes: https://github.com/nodejs/node/issues/4270 PR-URL: https://github.com/nodejs/node/pull/19794 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Rod Vagg <rod@vagg.org> Reviewed-By: Michael Daws...
[ { "path": "deps/openssl/config/archs/BSD-x86_64/asm/crypto/aes/aes-x86_64.s", "patch": "@@ -0,0 +1,2534 @@\n+.text\n+.type\t_x86_64_AES_encrypt,@function\n+.align\t16\n+_x86_64_AES_encrypt:\n+\txorl\t0(%r15),%eax\n+\txorl\t4(%r15),%ebx\n+\txorl\t8(%r15),%ecx\n+\txorl\t12(%r15),%edx\n+\n+\tmovl\t240(%r15),%r...
2018-03-29T07:46:11
huggingface/transformers
ff9141bb85f22e7b200f0fbed76fd3641990ed7b
f42084e6411c39b74309af4a7d6ed640c01a4c9e
fix onnx export of speech foundation models (#34224) * added expanded attention/padding masks prior to indexing the hidden_states * consistency fix in WavLMForSequenceClassification --------- Co-authored-by: Nikos Antoniou <nikosantoniou@Nikos-MacBook-Pro.local>
[ { "path": "src/transformers/models/data2vec/modeling_data2vec_audio.py", "patch": "@@ -1421,7 +1421,8 @@ def forward(\n pooled_output = hidden_states.mean(dim=1)\n else:\n padding_mask = self._get_feature_vector_attention_mask(hidden_states.shape[1], attention_mask)\n- ...
2024-12-20T08:22:05
vercel/next.js
7395098ea183eeef9d918562aaa65801d5fac404
7082c45301fd1584ef2f494885687d9077288092
css bugfixes (#20) * update swc for nested css bugfixes * add test cases Not working yet: `@import` of CSS Modules.
[ { "path": "crates/turbopack-css/Cargo.toml", "patch": "@@ -33,7 +33,7 @@ swc_core = { workspace = true, features = [\n \"common\",\n \"common_concurrent\",\n ] }\n-swc_css_modules = \"=0.4.1\"\n+swc_css_modules = \"=0.8.1\"\n \n [build-dependencies]\n turbo-tasks-build = { path = \"../turbo-tasks-build\...
2022-10-13T21:24:20
huggingface/transformers
0ade1caa356dce6b70ef8293addeb0898f177206
1fa807fa63d1aa9409fb1ae0cbb7583960e5ea98
Modernbert Release Fixes (#35344) * fix ForSequenceClassification * unmodularize rope layer * fix linting warning * Avoid complex PoolingHead, only one prediction head needed --------- Co-authored-by: Tom Aarsen <Cubiegamedev@gmail.com>
[ { "path": "src/transformers/models/modernbert/modeling_modernbert.py", "patch": "@@ -610,8 +610,6 @@ def init_weight(module: nn.Module, std: float):\n init_weight(module.Wqkv, stds[\"in\"])\n init_weight(module.Wo, stds[\"out\"])\n elif isinstance(module, ModernBertPrediction...
2024-12-19T16:22:37
nodejs/node
99eb744842462bad1c1c112d7994ffc6f65b06d9
1bcb6c0d26de749a806523de97b9309da839514d
deps: add gyp, header and Makefile for openssl110 This commit has a new binding scheme in builing OpenSSL-1.1.0 library with Node. OpenSSL-1.1.0 uses a new build system with perl for various supported platforms. See `Configurations/README` and `Configurations/README.design` in the OpenSSL source for details. In order...
[ { "path": "deps/openssl/README.md", "patch": "@@ -0,0 +1,79 @@\n+This has a new binding scheme in building OpenSSL-1.1.0 library with\n+Node.js. OpenSSL-1.1.0 uses a new build system with `Perl` for various\n+supported platforms. See `openssl/Configurations/README` and\n+`openssl/Configurations/README.desig...
2018-03-07T12:38:23
ollama/ollama
f0a07a353b0892decebd5364443ffd2dde5f5679
948de6bbd2d07e1050d91c2422c3ee7af2d591da
cmd/tui: fix powershell search (#14242)
[ { "path": "cmd/cmd.go", "patch": "@@ -1887,10 +1887,7 @@ func runInteractiveTUI(cmd *cobra.Command) {\n \n \t// Selector adapters for tui\n \tsingleSelector := func(title string, items []config.ModelItem) (string, error) {\n-\t\ttuiItems := make([]tui.SelectItem, len(items))\n-\t\tfor i, item := range items...
2026-02-13T23:53:11
vercel/next.js
d8395e4eeba8e7114c0c5463ea2c016e5fced1ac
365881e1bbee9f7cc499dc8b0f1991344d129988
docs: more detailed error message when failing to parse a middleware matcher (#41390) ## 📖 What's in there? This is a follow-up for https://github.com/vercel/next.js/pull/40180 Someone made the good point that users may get directed to this error page while setting up middleware matchers. And that page has no inform...
[ { "path": "errors/invalid-route-source.md", "patch": "@@ -2,12 +2,18 @@\n \n #### Why This Error Occurred\n \n-When defining custom routes a route was added that causes an error during parsing. This can be due to trying to use normal `RegExp` syntax like negative lookaheads (`?!exclude`) without following `...
2022-10-13T18:03:10
huggingface/transformers
1fa807fa63d1aa9409fb1ae0cbb7583960e5ea98
667ed5635e6fd7e2df4fc23012746b1c0cbb7575
Fix some fa2 tests (#35340) * remove fa2 test * remove other failing tests * style
[ { "path": "tests/models/granite/test_modeling_granite.py", "patch": "@@ -14,14 +14,12 @@\n # limitations under the License.\n \"\"\"Testing suite for the PyTorch Granite model.\"\"\"\n \n-import tempfile\n import unittest\n \n from parameterized import parameterized\n \n from transformers import GraniteConf...
2024-12-19T16:05:25
nodejs/node
1bcb6c0d26de749a806523de97b9309da839514d
6bab3c23b135f1fc534177a172ba87fea5b1f856
deps: add s390 asm rules for OpenSSL-1.1.0 This is a floating patch against OpenSSL-1.1.0 to generate asm files with Makefile rules and it is to be submitted to the upstream. Fixes: https://github.com/nodejs/node/issues/4270 PR-URL: https://github.com/nodejs/node/pull/19794 Reviewed-By: James M Snell <jasnell@gmail.c...
[ { "path": "deps/openssl/openssl/crypto/aes/build.info", "patch": "@@ -45,6 +45,9 @@ INCLUDE[aes-armv4.o]=..\n GENERATE[bsaes-armv7.S]=asm/bsaes-armv7.pl $(PERLASM_SCHEME)\n INCLUDE[bsaes-armv7.o]=..\n \n+GENERATE[aes-s390x.S]=asm/aes-s390x.pl $(PERLASM_SCHEME)\n+INCLUDE[aes-s390x.o]=..\n+\n BEGINRAW[Makefil...
2018-03-07T14:52:52
golang/go
a429926159232f2e127d46698633ffce5896ae30
998fe70b683ed64d0bc67d9e0a35f8a7bcbe161d
cmd/compile: fix escape analysis of heap-allocated results One of escape analysis's responsibilities is to summarize whether/how each function parameter flows to the heap so we can correctly incorporate those flows into callers' escape analysis data flow graphs. As an optimization, we separately record when parameter...
[ { "path": "src/cmd/compile/internal/escape/escape.go", "patch": "@@ -1625,9 +1625,10 @@ func containsClosure(f, c *ir.Func) bool {\n \n // leak records that parameter l leaks to sink.\n func (l *location) leakTo(sink *location, derefs int) {\n-\t// If sink is a result parameter and we can fit return bits\n-...
2021-02-27T17:41:19
vercel/next.js
e1cb7f74c54168edefbd9ea9bd6beb5a6a1c7e22
86050df66684512cba4711993f83156521777cec
fix: disable css cache busting in production (#41392) Continuation of #39664 The PR removes `?ts=` in the production mode. The corresponding e2e test case is also added. cc @shuding
[ { "path": "packages/next/server/app-render.tsx", "patch": "@@ -1184,7 +1184,9 @@ export async function renderToHTMLOrFlight(\n ? stylesheets.map((href) => (\n <link\n rel=\"stylesheet\"\n- href={`/_next/${href}?ts=${Date.now()}`}...
2022-10-13T16:28:29
ollama/ollama
948de6bbd2d07e1050d91c2422c3ee7af2d591da
598b74d42c8cced0aad5fea90592fc23fe108c2c
add ability to disable cloud (#14221) * add ability to disable cloud Users can now easily opt-out of cloud inference and web search by setting ``` "disable_ollama_cloud": true ``` in their `~/.ollama/server.json` settings file. After a setting update, the server must be restarted. Alternatively, setting the enviro...
[ { "path": "api/client.go", "patch": "@@ -449,6 +449,16 @@ func (c *Client) Version(ctx context.Context) (string, error) {\n \treturn version.Version, nil\n }\n \n+// CloudStatusExperimental returns whether cloud features are disabled on the server.\n+func (c *Client) CloudStatusExperimental(ctx context.Cont...
2026-02-12T23:47:00
huggingface/transformers
667ed5635e6fd7e2df4fc23012746b1c0cbb7575
56ff1e92fd3cb808c82f3fa8e79e236dbbea34d5
Add ModernBERT to Transformers (#35158) * initial cut of modernbert for transformers * small bug fixes * fixes * Update import * Use compiled mlp->mlp_norm to match research implementation * Propagate changes in modular to modeling * Replace duplicate attn_out_dropout in favor of attention_dropout ...
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -498,6 +498,8 @@\n title: mLUKE\n - local: model_doc/mobilebert\n title: MobileBERT\n+ - local: model_doc/modernbert\n+ title: ModernBert\n - local: model_doc/mpnet\n title: MPNet\n - local: model_doc...
2024-12-19T13:03:35
golang/go
998fe70b683ed64d0bc67d9e0a35f8a7bcbe161d
d9fd38e68ba00a51c2c7363150688d0e7687ef84
cmd/compile: fixed which-result confusion in presence of 0-width types A function returning multiple results, some of them zero-width, will have more than one result present at an offset. Be sure that offset AND type match. Includes test. Change-Id: I3eb1f56116d989b4e73f533fefabb1bf554c901b Reviewed-on: https://go-...
[ { "path": "src/cmd/compile/internal/ssa/op.go", "patch": "@@ -86,12 +86,15 @@ type AuxCall struct {\n \tabiInfo *abi.ABIParamResultInfo // TODO remove fields above redundant with this information.\n }\n \n-// ResultForOffset returns the index of the result at a particular offset among the results\n+// Resul...
2021-02-26T22:37:26
huggingface/transformers
56ff1e92fd3cb808c82f3fa8e79e236dbbea34d5
4592cc9e9851828cc9632438a0271bb082238360
PaliGemma: Make sure to add <eos> to suffix if <image> is present in `text` (#35201) Move suffix processing code to out of if statement
[ { "path": "src/transformers/models/paligemma/processing_paligemma.py", "patch": "@@ -287,11 +287,6 @@ def __call__(\n elif not (isinstance(images, list) and isinstance(images[0], list) and is_valid_image(images[0][0])):\n raise ValueError(\"images must be an image, list o...
2024-12-19T08:53:48
ollama/ollama
f8dc7c9f54a753d2c6d3410936e73486f9bf463d
4a3741129d67baa910fa5b96c62f55b5512734b1
docs: fix openapi schema for /api/ps and /api/tags endpoints (#14210)
[ { "path": "docs/openapi.yaml", "patch": "@@ -596,6 +596,15 @@ components:\n name:\n type: string\n description: Model name\n+ model:\n+ type: string\n+ description: Model name\n+ remote_model:\n+ type: string\n+ description: Name ...
2026-02-12T01:37:40
rust-lang/rust
6ac0120a60d543d9557d2affd334ba02704c9fb8
4c5babdab59e07630ac064301dd24c334363d00b
reduce the error tolerance to match algebraic and fast-math operations
[ { "path": "src/tools/miri/tests/pass/float.rs", "patch": "@@ -38,8 +38,9 @@ macro_rules! assert_approx_eq {\n }};\n \n ($a:expr, $b: expr) => {\n- // accept up to 64ULP (16ULP for host floats and 16ULP for miri artificial error and 32 for any rounding errors)\n- assert_approx_eq!($a, $...
2025-04-07T06:35:17
huggingface/transformers
d19b11f59b0cf337b445827228df796c6c335994
9613933b022ddbf085e2c593ed4ceea4c734179a
Fix documentation for ColPali (#35321) * docs: fix typo quickstart snippet in ColPali's model card * docs: clean the ColPali's model card * docs: make the `ColPaliForRetrieval`'s docstring more concise * docs: add missing bash command used to convert weights for `vidore/colpali-v1.3-hf`
[ { "path": "docs/source/en/model_doc/colpali.md", "patch": "@@ -18,29 +18,24 @@ rendered properly in your Markdown viewer.\n \n ## Overview\n \n-The ColPali model was proposed in [ColPali: Efficient Document Retrieval with Vision Language Models](https://doi.org/10.48550/arXiv.2407.01449) by **Manuel Faysse*...
2024-12-19T08:08:28
golang/go
d9fd38e68ba00a51c2c7363150688d0e7687ef84
cda8ee095e487951eab5a53a097e2b8f400f237d
time: correct unusual extension string cases This fixes two uncommon cases. First, the tzdata code permits timezone offsets up to 24 * 7, although the POSIX TZ parsing does not. The tzdata code uses this to specify a day of week in some cases. Second, we incorrectly rejected a negative time offset for when a time zo...
[ { "path": "src/time/zoneinfo.go", "patch": "@@ -377,8 +377,10 @@ func tzsetOffset(s string) (offset int, rest string, ok bool) {\n \t\tneg = true\n \t}\n \n+\t// The tzdata code permits values up to 24 * 7 here,\n+\t// although POSIX does not.\n \tvar hours int\n-\thours, s, ok = tzsetNum(s, 0, 24)\n+\thour...
2021-02-25T18:01:56
nodejs/node
6bab3c23b135f1fc534177a172ba87fea5b1f856
66cb29e64621fdd1aa5e377a395ff107d21a613b
deps: delete files of OpenSSL-1.0.2 They are no longer necessary. Fixes: https://github.com/nodejs/node/issues/4270 PR-URL: https://github.com/nodejs/node/pull/19794 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Rod Vagg <rod@vagg.org> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
[ { "path": "deps/openssl/asm/Makefile", "patch": "@@ -1,386 +0,0 @@\n-PERL\t?= perl\n-PERL\t+= -I../openssl/crypto/perlasm -I../openssl/crypto/bn/asm\n-\n-# OPENSSL_IA32_SSE2 flag is needed for checking the sse2 feature on ia32\n-# see https://github.com/openssl/openssl/blob/OpenSSL_1_0_2-stable/crypto/sha/a...
2018-03-07T12:18:52
ollama/ollama
4a3741129d67baa910fa5b96c62f55b5512734b1
77ba9404ac6fbedf4ca52bb6c1f6858647f4fc4e
bug: fix loading non-mlx models when ollama is built with mlx support (#14211) This change fixes an issue where GGML based models (for either the Ollama runner or the legacy llama.cpp runner) would try to load the mlx library. That would panic and the model fails to start.
[ { "path": "x/mlxrunner/mlx/dynamic.go", "patch": "@@ -8,6 +8,7 @@ package mlx\n import \"C\"\n \n import (\n+\t\"fmt\"\n \t\"io/fs\"\n \t\"log/slog\"\n \t\"os\"\n@@ -16,6 +17,13 @@ import (\n \t\"unsafe\"\n )\n \n+var initError error\n+\n+// CheckInit returns any error that occurred during MLX dynamic libra...
2026-02-11T22:48:33
vercel/next.js
7571984a750aaa5b598a1674585f72781d43bdfa
090ccd42fa7da669ebba409dda0cff56a70c6bb5
fix non-determinism
[ { "path": "crates/turbopack-ecmascript/src/chunk/loader.rs", "patch": "@@ -1,6 +1,7 @@\n-use std::{collections::HashSet, fmt::Write as FmtWrite};\n+use std::fmt::Write as FmtWrite;\n \n use anyhow::{anyhow, Result};\n+use indexmap::IndexSet;\n use turbo_tasks::{primitives::StringVc, ValueToString, ValueToSt...
2022-10-13T15:00:53
golang/go
cda8ee095e487951eab5a53a097e2b8f400f237d
d8e33d558e2c5fcd7f9092790780e68adbac0f1b
reflect: fix register ABI spill space calculation Currently this does things the old way by computing the number of registers, but we're going to be using their ABI0 layout for the spill space for now. Change-Id: Ibcef1ee48fd834af7cbdaabe704bcabe066ed358 Reviewed-on: https://go-review.googlesource.com/c/go/+/293011 R...
[ { "path": "src/reflect/abi.go", "patch": "@@ -334,8 +334,7 @@ func newAbiDesc(t *funcType, rcvr *rtype) abiDesc {\n \t//\n \t// TODO(mknyszek): Remove this when we no longer have\n \t// caller reserved spill space.\n-\tspillInt := uintptr(0)\n-\tspillFloat := uintptr(0)\n+\tspill := uintptr(0)\n \n \t// Com...
2021-02-17T19:14:03
ollama/ollama
c980e1999571a0887b28d837ea81a5938a93c94d
6162374ca96733d45882c3a0440785dc782220a7
Fix formatting of context length notes in documentation
[ { "path": "docs/context-length.mdx", "patch": "@@ -6,9 +6,9 @@ Context length is the maximum number of tokens that the model has access to in m\n \n <Note>\n Ollama defaults to the following context lengths based on VRAM:\n-< 24 GiB VRAM: 4,096 context\n-24-48 GiB VRAM: 32,768 context\n->= 48 GiB VRAM: 26...
2026-02-08T18:59:25
huggingface/transformers
9613933b022ddbf085e2c593ed4ceea4c734179a
9a94dfe1239ddfb8010a654aa1e677d56c01eee0
Add the Bamba Model (#34982) * initial commit for PR Co-authored-by: Gabe Goodhart <gabe.l.hart@gmail.com> * rename dynamic cache Signed-off-by: Yu Chin Fabian Lim <flim@sg.ibm.com> * add more unit tests Signed-off-by: Yu Chin Fabian Lim <flim@sg.ibm.com> * add integration test Signed-off-by: Yu C...
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -322,6 +322,8 @@\n sections:\n - local: model_doc/albert\n title: ALBERT\n+ - local: model_doc/bamba\n+ title: Bamba\n - local: model_doc/bart\n title: BART\n - local: model_doc/barthez", "additions...
2024-12-18T19:18:17
vercel/next.js
4760f0dbfd68e9ce787293a5d3b0a2f91592ef28
0527d3966520c5a45f5fcef3cde8bbc614a8efce
improve startup error messages (vercel/turbo#524)
[ { "path": "packages/next-swc/crates/next-dev/src/main.rs", "patch": "@@ -74,16 +74,17 @@ async fn main() -> Result<()> {\n let dir = args\n .dir\n .map(|dir| dir.canonicalize())\n- .unwrap_or_else(current_dir)?\n+ .unwrap_or_else(current_dir)\n+ .context(\"project di...
2022-10-13T14:38:49
golang/go
d8e33d558e2c5fcd7f9092790780e68adbac0f1b
19f96e73bf655764b57424cc9e00657f364ffb89
cmd/compile: deal with closures in generic functions and instantiated function values - Deal with closures in generic functions by fixing the stenciling code - Deal with instantiated function values (instantiated generic functions that are not immediately called) during stenciling. This requires changing the ...
[ { "path": "src/cmd/compile/internal/inline/inl.go", "patch": "@@ -354,7 +354,7 @@ func (v *hairyVisitor) doNode(n ir.Node) bool {\n \t\treturn true\n \n \tcase ir.OCLOSURE:\n-\t\tif base.Debug.InlFuncsWithClosures == 0 || base.Flag.G > 0 {\n+\t\tif base.Debug.InlFuncsWithClosures == 0 {\n \t\t\tv.reason = \...
2021-02-21T18:54:38
huggingface/transformers
9a94dfe1239ddfb8010a654aa1e677d56c01eee0
2c47618c1a282f925446506d53108dc6e82d9ef0
feat: add `benchmarks_entrypoint.py` (#34495) * feat: add `benchmarks_entrypoint.py` Adding `benchmarks_entrypoint.py` file, which will be run from the benchmarks CI. This python script will list all python files from the `benchmark/` folder and run the included `run_benchmark` function, allowing people to add new b...
[ { "path": ".github/workflows/benchmark.yml", "patch": "@@ -63,7 +63,7 @@ jobs:\n commit_id=$GITHUB_SHA\r\n fi\r\n commit_msg=$(git show -s --format=%s | cut -c1-70)\r\n- python3 benchmark/llama.py \"${{ github.head_ref || github.ref_name }}\" \"$commit_id\" \"$commit...
2024-12-18T17:59:07
vercel/next.js
7fff9329d61ccdfbebcecc0b9980695dc82516b7
e095003722ec31c33fcf3f9c3fee0cde2dea8b68
improve startup error messages (#524)
[ { "path": "crates/next-dev/src/main.rs", "patch": "@@ -74,16 +74,17 @@ async fn main() -> Result<()> {\n let dir = args\n .dir\n .map(|dir| dir.canonicalize())\n- .unwrap_or_else(current_dir)?\n+ .unwrap_or_else(current_dir)\n+ .context(\"project directory can't be f...
2022-10-13T14:38:49
rust-lang/rust
27d00a53fc17de29511e501f07d5e491417fce05
dd8d9232c206fc3d7d35c1cfb6df4d95b243dfec
Fix typos in review
[ { "path": ".github/PULL_REQUEST_TEMPLATE.md", "patch": "@@ -32,7 +32,7 @@ order to get feedback.\n \n Delete this line and everything above before opening your PR.\n \n-Note taht we are currently not taking in new PRs that add new lints. We are in a\n+Note that we are currently not taking in new PRs that ad...
2025-04-06T23:58:56
golang/go
19f96e73bf655764b57424cc9e00657f364ffb89
3146166baa8c420dfe20619e4aa9978b87927268
syscall: introduce SysProcAttr.ParentProcess on Windows This allows users to specify which process should be used as the parent process when creating a new process. Note that this doesn't just trivially pass the handle onward to PROC_THREAD_ATTRIBUTE_PARENT_PROCESS, because inherited handles must be valid in the pare...
[ { "path": "src/syscall/exec_windows.go", "patch": "@@ -243,6 +243,7 @@ type SysProcAttr struct {\n \tThreadAttributes *SecurityAttributes // if set, applies these security attributes as the descriptor for the main thread of the new process\n \tNoInheritHandles bool // if s...
2021-01-31T17:14:56
ollama/ollama
a0407d07fa900a129afcec42fc222a19f1102d82
9ec733e5279385006e2b8c302e24573bdd861049
safetensors quantization for mlx (#14184) This change includes: - changes to the safetensors metadata format - changes to the create command to properly create the blobs with the new format - changes to load the new format - fixes ollama show to properly show each tensor
[ { "path": "x/create/client/create.go", "patch": "@@ -19,6 +19,7 @@ import (\n \t\"github.com/ollama/ollama/progress\"\n \t\"github.com/ollama/ollama/types/model\"\n \t\"github.com/ollama/ollama/x/create\"\n+\t\"github.com/ollama/ollama/x/imagegen/safetensors\"\n )\n \n // MinOllamaVersion is the minimum Oll...
2026-02-10T19:29:17
nodejs/node
66cb29e64621fdd1aa5e377a395ff107d21a613b
38c97f5dc7ff3fbf83982d0268fc9e93cfc00c7d
deps: upgrade openssl sources to 1.1.0h This updates all sources in deps/openssl/openssl with openssl-1.1.0h. Fixes: https://github.com/nodejs/node/issues/4270 PR-URL: https://github.com/nodejs/node/pull/19794 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Rod Vagg <rod@vagg.org> Reviewed-By: Michael Daw...
[ { "path": "deps/openssl/openssl/.gitattributes", "patch": "@@ -0,0 +1,3 @@\n+*.der binary\n+/fuzz/corpora/** binary\n+*.pfx binary", "additions": 3, "deletions": 0, "language": "Unknown" }, { "path": "deps/openssl/openssl/.gitignore", "patch": "@@ -0,0 +1,174 @@\n+# Ignore editor art...
2018-03-29T07:39:12
vercel/next.js
86050df66684512cba4711993f83156521777cec
4ff348cbd44ba06bb8e0058a21877fa83194125a
perf: lazy eval headers from the requestStore (#41353) The `ReadOnlyHeaders` class extends the `Headers` class that is provided via a polyfill. This incurs some costs the first time it's created because we need to load that polyfill. This saves approximately 10ms on my machine on a cold request. This is only use...
[ { "path": "packages/next/server/app-render.tsx", "patch": "@@ -83,6 +83,7 @@ const INTERNAL_COOKIES_INSTANCE = Symbol('internal for cookies readonly')\n function readonlyCookiesError() {\n return new Error('ReadonlyCookies cannot be modified')\n }\n+\n class ReadonlyNextCookies {\n [INTERNAL_COOKIES_INS...
2022-10-13T15:19:10
rust-lang/rust
dd8d9232c206fc3d7d35c1cfb6df4d95b243dfec
ca3177c45884535618543c915247180c1c00b6ff
Fix remark CI issues
[ { "path": "book/src/development/feature_freeze.md", "patch": "@@ -2,17 +2,17 @@\n \n This is a temporary notice.\n \n-From May 9th, 2025 until the 1st of August, 2025 we will perform a feature freeze. Only bugfix PRs will be reviewed with the\n-exception of already open ones. Every feature-adding PR open in...
2025-04-06T23:56:45
golang/go
a655208c9ecd2fee4de6deff35a863b1c28a091c
23943a67378040340d835734a55dee7cb639e586
cmd/link: handle types as converted to interface when dynlink When using plugins, a type (whose value) may be pass to a plugin and get converted to interface there, or vice versa. We need to treat the type as potentially converted to interface, and retain its methods. Should fix #44586. Change-Id: I80dd35e68baedaa85...
[ { "path": "misc/cgo/testplugin/plugin_test.go", "patch": "@@ -201,12 +201,11 @@ func TestMethod(t *testing.T) {\n \t// Exported symbol's method must be live.\n \tgoCmd(t, \"build\", \"-buildmode=plugin\", \"-o\", \"plugin.so\", \"./method/plugin.go\")\n \tgoCmd(t, \"build\", \"-o\", \"method.exe\", \"./meth...
2021-02-26T01:01:53
ollama/ollama
099a0f18ef29a95d8d6c4fe1343e48e0d9f4cdd7
fff696ee311ac1669e2235df6eb92043efde4f95
build: fix Dockerfile mlx directory (#14131)
[ { "path": "Dockerfile", "patch": "@@ -147,7 +147,7 @@ ARG PARALLEL\n WORKDIR /go/src/github.com/ollama/ollama\n COPY CMakeLists.txt CMakePresets.json .\n COPY ml/backend/ggml/ggml ml/backend/ggml/ggml\n-COPY x/ml/backend/mlx x/ml/backend/mlx\n+COPY x/imagegen/mlx x/imagegen/mlx\n COPY go.mod go.sum .\n COPY...
2026-02-07T01:08:53
nodejs/node
38c97f5dc7ff3fbf83982d0268fc9e93cfc00c7d
51c2c51029a05abb03c34929180a9c09c694ae2e
doc: fix punctuation in doc/releases.md PR-URL: https://github.com/nodejs/node/pull/19774 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Ruben Bridgewater <r...
[ { "path": "doc/releases.md", "patch": "@@ -92,7 +92,7 @@ commit metadata, as well as the `semver-minor` and `semver-major` GitHub labels.\n One drawback is that when the `PR-URL` metadata is accidentally omitted from a\n commit, the commit will show up because it's unsure if it's a duplicate or not.\n \n-Fo...
2018-04-03T17:30:28
rust-lang/rust
13bf79cd879023ae4434ed4c6b287159bef32b48
175dcc7773d65c1b1542c351392080f48c05799f
fix usage of `autodiff` macro with inner functions - fix errors caused by the move of `ast::Item::ident` (see #138740) - move the logic of getting `sig`, `vis`, and `ident` from two seperate `match` statements into one (less repetition especially with the nested `match`)
[ { "path": "compiler/rustc_builtin_macros/src/autodiff.rs", "patch": "@@ -199,27 +199,46 @@ mod llvm_enzyme {\n return vec![item];\n }\n let dcx = ecx.sess.dcx();\n- // first get the annotable item:\n- let (primal, sig, is_impl): (Ident, FnSig, bool) = match &item {\...
2025-03-09T21:55:07
huggingface/transformers
2c47618c1a282f925446506d53108dc6e82d9ef0
75be5a0a5b1898ee86e5e0c1f7b58b77bb105101
🚨All attention refactor🚨 (#35235) * refactor LlamaAttention * minimal changes * fix llama * update * modular gemmas * modular nits * modular updates * nits * simplify * gpt2 * more modualr and fixes * granite * modular modular modular * nits * update * qwen2 + starcoder2 ...
[ { "path": "examples/modular-transformers/modeling_dummy.py", "patch": "@@ -4,26 +4,20 @@\n # the file from the modular. If any change should be done, please apply the change to the\n # modular_dummy.py file directly. One of our CI enforces this.\n # 🚨🚨🚨...
2024-12-18T15:53:39
golang/go
23943a67378040340d835734a55dee7cb639e586
e25040d16288563c89cead5e8da8d3b9c74ab655
cmd/compile: fix mishandling of unsafe-uintptr arguments with call method in go/defer In CL 253457, we did the same fix for direct function calls. But for method calls, the receiver argument also need to be passed through the wrapper function, which we are not doing so the compiler crashes with the code in #44415. It...
[ { "path": "src/cmd/compile/internal/walk/stmt.go", "patch": "@@ -253,15 +253,22 @@ func wrapCall(n *ir.CallExpr, init *ir.Nodes) ir.Node {\n \t\t}\n \t}\n \n+\twrapArgs := n.Args\n+\t// If there's a receiver argument, it needs to be passed through the wrapper too.\n+\tif n.Op() == ir.OCALLMETH || n.Op() == ...
2021-02-26T03:17:09
nodejs/node
51c2c51029a05abb03c34929180a9c09c694ae2e
3650972bfb17473b08c5bb32a65adb222355861a
doc: explain edge case when assigning port to url numbers which are coerced to scientific notation via .toString(), will behave unexpectedly when assigned to a url's port. Fixes: https://github.com/nodejs/node/issues/19595 PR-URL: https://github.com/nodejs/node/pull/19645 Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gm...
[ { "path": "doc/api/url.md", "patch": "@@ -313,8 +313,9 @@ myURL.port = 1234.5678;\n console.log(myURL.port);\n // Prints 1234\n \n-// Out-of-range numbers are ignored\n-myURL.port = 1e10;\n+// Out-of-range numbers which are not represented in scientific notation\n+// will be ignored.\n+myURL.port = 1e10; //...
2018-03-27T22:41:15
ollama/ollama
9e2003f88a943906113d99c2cf9a15b5bfd4dde9
42e1d49fbe5683740680be657306dcf66fa2d76d
cmd/config: offer to pull missing models instead of erroring (#14113)
[ { "path": "cmd/config/integrations.go", "patch": "@@ -194,6 +194,20 @@ func pullIfNeeded(ctx context.Context, client *api.Client, existingModels map[st\n \treturn nil\n }\n \n+// showOrPull checks if a model exists via client.Show and offers to pull it if not found.\n+func showOrPull(ctx context.Context, cl...
2026-02-06T18:19:47
huggingface/transformers
75be5a0a5b1898ee86e5e0c1f7b58b77bb105101
69e31eb1bf123d5bd0183b753da83ab7dd9c2eec
[Whisper] fix docstrings typo (#35319) typos docstring
[ { "path": "src/transformers/models/whisper/generation_whisper.py", "patch": "@@ -382,7 +382,7 @@ def generate(\n the soundfile library (`pip install soundfile`). To prepare the array into `input_features`, the\n [`AutoFeatureExtractor`] should be used for extracting the mel f...
2024-12-18T15:38:19
golang/go
9a555fc24c318bf1b07bdc07d5c02e372681e401
a61524d1033632f733f69bf6635e767d70d95cdd
cmd/compile: fix missing descend in Addrtaken for closures. ComputeAddrtaken needs to descend into closures, now that imported bodies can include closures. The bug was that we weren't properly setting Addrtaken for a variable inside a closure inside a function that we were importing. For now, still disable inlining ...
[ { "path": "src/cmd/compile/internal/base/flag.go", "patch": "@@ -159,6 +159,7 @@ func ParseFlags() {\n \tFlag.LinkShared = &Ctxt.Flag_linkshared\n \tFlag.Shared = &Ctxt.Flag_shared\n \tFlag.WB = true\n+\tDebug.InlFuncsWithClosures = 1\n \n \tFlag.Cfg.ImportMap = make(map[string]string)\n ", "additions":...
2021-02-25T20:13:23
nodejs/node
ef07d6570f1c6345b7f991ca2d986dec6a481350
add1c02bda14be1e00f92ef1e7b2c155abaeeeae
errors: change ERR_HTTP2_HEADER_SINGLE_VALUE to TypeError changes the base instance for ERR_HTTP2_HEADER_SINGLE_VALUE from Error to TypeError as a more accurate representation of the error. Additionally corrects the grammar of the error message. PR-URL: https://github.com/nodejs/node/pull/19805 Reviewed-By: Ruben Bri...
[ { "path": "lib/internal/errors.js", "patch": "@@ -718,9 +718,8 @@ E('ERR_HTTP2_HEADERS_AFTER_RESPOND',\n 'Cannot specify additional headers after response initiated', Error);\n E('ERR_HTTP2_HEADERS_SENT', 'Response has already been initiated.', Error);\n \n-// This should probably be a `TypeError`.\n E('E...
2018-04-04T17:36:04
ollama/ollama
42e1d49fbe5683740680be657306dcf66fa2d76d
814630ca6046115e0c738de594a57fda4bea1f96
cmd: fix context limits for droid and add qwen3-coder-next ctx (#14112)
[ { "path": "cmd/config/droid.go", "patch": "@@ -1,13 +1,15 @@\n package config\n \n import (\n+\t\"context\"\n \t\"encoding/json\"\n \t\"fmt\"\n \t\"os\"\n \t\"os/exec\"\n \t\"path/filepath\"\n \t\"slices\"\n \n+\t\"github.com/ollama/ollama/api\"\n \t\"github.com/ollama/ollama/envconfig\"\n )\n \n@@ -112,17 ...
2026-02-06T06:29:53
huggingface/transformers
69e31eb1bf123d5bd0183b753da83ab7dd9c2eec
da334bcfa8ff7feb85138ce90ca7340e4fc6e704
change bnb tests (#34713) * fix training tests * fix xpu check Signed-off-by: jiqing-feng <jiqing.feng@intel.com> * rm pdb Signed-off-by: jiqing-feng <jiqing.feng@intel.com> * fix 4bit logits check Signed-off-by: jiqing-feng <jiqing.feng@intel.com> * fix 4bit logits check Signed-off-by: jiqing-feng <jiqing.fen...
[ { "path": "tests/quantization/bnb/test_4bit.py", "patch": "@@ -53,6 +53,8 @@ def get_some_linear_layer(model):\n except AttributeError:\n # for AutoModelforCausalLM\n return model.model.decoder.layers[0].fc1\n+ elif model.config.model_type == \"llama\":\n+ return mo...
2024-12-18T14:49:59
golang/go
9a7fe196e468c687ad7239b9447c584826331771
b83d073e9eb4cbd0cd5ca530f576668c49f6d0f1
Revert "cmd/compile: fix mishandling of unsafe-uintptr arguments with call method in go/defer" This reverts commit CL 294849. Reason for revert: this doesn't actually fix the issue, as revealed by the noopt builder's failures. Change-Id: Ib4ea9ceb4d75e46b3b91ec348b365fd8c83316ad Reviewed-on: https://go-review.google...
[ { "path": "src/cmd/compile/internal/walk/expr.go", "patch": "@@ -503,8 +503,21 @@ func walkCall1(n *ir.CallExpr, init *ir.Nodes) {\n \t}\n \tn.SetWalked(true)\n \n+\t// If this is a method call t.M(...),\n+\t// rewrite into a function call T.M(t, ...).\n \t// TODO(mdempsky): Do this right after type checkin...
2021-02-25T21:32:29
nodejs/node
add1c02bda14be1e00f92ef1e7b2c155abaeeeae
a7c25b7d42b79878548b9d660af0195e7318fc33
errors: alter ERR_HTTP2_INVALID_PSEUDOHEADER changes the base instance for ERR_HTTP2_INVALID_PSEUDOHEADER from Error to TypeError as a more accurate representation of the error. PR-URL: https://github.com/nodejs/node/pull/19808 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridg...
[ { "path": "lib/internal/errors.js", "patch": "@@ -733,10 +733,8 @@ E('ERR_HTTP2_INVALID_INFO_STATUS',\n 'Invalid informational status code: %s', RangeError);\n E('ERR_HTTP2_INVALID_PACKED_SETTINGS_LENGTH',\n 'Packed settings length must be a multiple of six', RangeError);\n-\n-// This should probably be...
2018-04-04T18:29:52
ollama/ollama
c61023f5548f61651b7fd04393e2a93430f89a71
d25535c3f3d59331755553ece7482b9572d4edb5
ollamarunner: Fix off by one error with numPredict When numPredict is set, the user will receive one less token than the requested limit. In addition, the stats will incorrectly show the number of tokens returned as the limit. In cases where numPredict is not set, the number of tokens is reported correctly. This occu...
[ { "path": "integration/basic_test.go", "patch": "@@ -144,3 +144,47 @@ func TestUnicodeModelDir(t *testing.T) {\n \t}\n \tChatTestHelper(ctx, t, req, blueSkyExpected)\n }\n+\n+// TestNumPredict verifies that when num_predict is set, the model generates\n+// exactly that many tokens. It uses logprobs to count...
2026-02-04T23:36:11
vercel/next.js
928ad979840f8bb928fb979fa0cbccf49e77d3fc
562b5a380ead4a41abdb1574e262a8a24bcbe0a3
App font loader tree shaking (#41384) Fixes tree shaking for font loaders in server components. ## 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. Mak...
[ { "path": "packages/next/build/webpack-config.ts", "patch": "@@ -1967,12 +1967,10 @@ export default async function getBaseWebpackConfig(\n (isClient\n ? new FlightManifestPlugin({\n dev,\n- fontLoaderTargets,\n })\n : new FlightClientEntryPl...
2022-10-13T11:26:12
huggingface/transformers
da334bcfa8ff7feb85138ce90ca7340e4fc6e704
f1b7634fc840a96198268eb9b3d61b92b05c7cfb
[Whisper] 🚨 Fix whisper decoding 🚨 (#34135) * do not remove decoder_input_ids for the first segment * do not remove eos token in generate_with_fallback * when removing padding tokens, do not remove eos token * remove eos token in generate (and not in generate_with_fallback!) * reconciliate short-from/ lo...
[ { "path": "src/transformers/models/whisper/generation_whisper.py", "patch": "@@ -133,9 +133,12 @@ def _pad_to_max_length(\n padding=\"longest\",\n bos_token_tensor=None,\n cut_off_length=None,\n+ return_token_timestamps=False,\n+ force_unique_generate_call=False,\n ):\n max_total_lengt...
2024-12-18T13:13:21
golang/go
b83d073e9eb4cbd0cd5ca530f576668c49f6d0f1
7fcf9893f71c75f6b2fd53bea326d5061f705208
reflect: add Method.IsExported and StructField.IsExported methods The IsExported method is a more intuitive helper for checking whether the method or field is exported than checking whether PkgPath is empty. In the same CL, modify the standard library to make use of this helper. Fixes #41563 Change-Id: Iaacfb3b7444...
[ { "path": "src/encoding/asn1/asn1.go", "patch": "@@ -914,7 +914,7 @@ func parseField(v reflect.Value, bytes []byte, initOffset int, params fieldParam\n \t\tstructType := fieldType\n \n \t\tfor i := 0; i < structType.NumField(); i++ {\n-\t\t\tif structType.Field(i).PkgPath != \"\" {\n+\t\t\tif !structType.Fi...
2020-10-15T01:41:16
ollama/ollama
c323161f24710d4c8ddaed440c6028b650ffb167
255579aaa7d21cf7eb93863c7d754ae02cd81985
cmd: helpful error message for remote models (#14057) When trying to use cloud model with OLLAMA_HOST="ollama.com" while not signed in a helpful error message is displayed when the user is not signed in telling them they must sign in to use cloud models. This should be the same experience for models which specify a re...
[ { "path": "cmd/cmd.go", "patch": "@@ -367,14 +367,25 @@ 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+\n+\t\tisCloud := strings.HasPrefix(info.RemoteHost, \"https://ollama.com\")\n+...
2026-02-04T22:55:11
vercel/next.js
562b5a380ead4a41abdb1574e262a8a24bcbe0a3
a315c748c700e27090024be6240304404174f09c
Add exports for new router (#41368) Adds `next/navigation` and `next/headers` APIs. Docs will follow later.. ## Bug - [ ] Related issues linked using `fixes #number` - [ ] Integration tests added - [ ] Errors have a helpful link attached, see `contributing.md` ## Feature - [ ] Implements an existing feature requ...
[ { "path": "packages/next/build/webpack-config.ts", "patch": "@@ -863,6 +863,16 @@ export default async function getBaseWebpackConfig(\n // let this alias hit before `next` alias.\n ...(isEdgeServer\n ? {\n+ // app-router-context can not be ESM and CJS so force CJS\n+ ...
2022-10-13T09:13:39
huggingface/transformers
f1b7634fc840a96198268eb9b3d61b92b05c7cfb
c7e48053aab09ad11efa2ad12513e9ab56f29563
Trigger GitHub CI with a comment on PR (#35211) * fix * fix * comment * final * final * final --------- Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": ".github/workflows/self-comment-ci.yml", "patch": "@@ -0,0 +1,253 @@\n+name: PR comment GitHub CI\n+\n+on:\n+ issue_comment:\n+ types:\n+ - created\n+ branches-ignore:\n+ - main\n+concurrency:\n+ group: ${{ github.workflow }}-${{ github.event.issue.number }}-${{ startsWith(github...
2024-12-18T12:56:49
nodejs/node
a7c25b7d42b79878548b9d660af0195e7318fc33
0cd8359652b39cdb577ac3c67bdea03e6aba9f97
stream: always emit error before close PR-URL: https://github.com/nodejs/node/pull/19836 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "lib/internal/streams/destroy.js", "patch": "@@ -30,20 +30,27 @@ function destroy(err, cb) {\n }\n \n this._destroy(err || null, (err) => {\n- process.nextTick(emitCloseNT, this);\n if (!cb && err) {\n- process.nextTick(emitErrorNT, this, err);\n+ process.nextTick(emitErrorAnd...
2018-04-05T18:52:19
golang/go
7fcf9893f71c75f6b2fd53bea326d5061f705208
6c3bcda866582b51842d71576a11c0fe1b647a22
cmd/internal/obj: fix typo in docs Change-Id: I5a3d26a4cc59b327d46ca24bcb01ef594758c230 Reviewed-on: https://go-review.googlesource.com/c/go/+/296531 Trust: Josh Bleecher Snyder <josharian@gmail.com> Run-TryBot: Josh Bleecher Snyder <josharian@gmail.com> Reviewed-by: Ian Lance Taylor <iant@golang.org>
[ { "path": "src/cmd/internal/obj/link.go", "patch": "@@ -360,7 +360,7 @@ func (p *Prog) SetFrom3(a Addr) {\n \tp.RestArgs = []AddrPos{{a, Source}}\n }\n \n-// SetTo2 assings []Args{{a, 1}} to p.RestArgs when the second destination\n+// SetTo2 assigns []Args{{a, 1}} to p.RestArgs when the second destination\n...
2021-02-25T17:58:05
vercel/next.js
7fc301d0b57d38a146824e622868236c1dafd634
46bdef81373d286408047241f8f8ef744b0a5a2f
Fix `onLoad` prop in `next/future/image` (#41374) Fixes a bug in `next/future/image` where `onLoad` might not be called. This is the same workaround we added for `onError`.
[ { "path": "packages/next/client/future/image.tsx", "patch": "@@ -48,7 +48,7 @@ type ImageLoaderPropsWithConfig = ImageLoaderProps & {\n }\n \n type PlaceholderValue = 'blur' | 'empty'\n-\n+type OnLoad = React.ReactEventHandler<HTMLImageElement> | undefined\n type OnLoadingComplete = (img: HTMLImageElement) ...
2022-10-13T03:36:33
ollama/ollama
255579aaa7d21cf7eb93863c7d754ae02cd81985
f7102ba8262a69d5346350ea1f0b8d2802f13dc2
qwen3next: fix issue in delta net (#14075) gDiffExp was being broadcast across the wrong axis when multiplying with k. This fix reshapes gDiffExp to [1, chunkSize, nChunks, ...]
[ { "path": "model/models/qwen3next/deltanet.go", "patch": "@@ -406,8 +406,10 @@ func (gdn *GatedDeltaNet) deltaNetChunked(\n \tgDiff := gCumsum.Neg(ctx).Add(ctx, gLast)\n \tgDiffExp := gDiff.Exp(ctx)\n \n-\t// key_gdiff = k * exp(g_diff)\n-\tkeyGDiff := k.Mul(ctx, gDiffExp)\n+\t// Reshapes g_diff_exp to [1, ...
2026-02-04T21:40:38
huggingface/transformers
c7e48053aab09ad11efa2ad12513e9ab56f29563
1eee1cedfdc854258564c3f301e42bc6fe982e80
[tests] make cuda-only tests device-agnostic (#35222) fix cuda-only tests
[ { "path": "tests/models/rag/test_modeling_rag.py", "patch": "@@ -33,7 +33,7 @@\n require_sentencepiece,\n require_tokenizers,\n require_torch,\n- require_torch_non_multi_gpu,\n+ require_torch_non_multi_accelerator,\n slow,\n torch_device,\n )\n@@ -678,7 +678,7 @@ def config_and_inp...
2024-12-18T09:14:22
nodejs/node
0cd8359652b39cdb577ac3c67bdea03e6aba9f97
244af7a9d528b105b3e84db2c7d1a05fa295b334
doc: remove wrong default value in buffer.md PR-URL: https://github.com/nodejs/node/pull/19883 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
[ { "path": "doc/api/buffer.md", "patch": "@@ -2368,9 +2368,10 @@ changes:\n -->\n \n * `value` {integer} Number to be written to `buf`.\n-* `offset` {integer} Number of bytes to skip before starting to write. Must satisfy: `0 <= offset <= buf.length - byteLength`.\n-* `byteLength` {integer} Number of bytes t...
2018-04-09T00:40:49
golang/go
6c3bcda866582b51842d71576a11c0fe1b647a22
526ee96f4992ff3a1e1c219fe8dc9870098bacba
cmd/compile: declare inlined result params early for empty returns The code for delayed declaration of inlined result parameters only handles non-empty return statements. This is generally okay, because we already early declare if there are any (non-blank) named result parameters. But if a user writes a function with...
[ { "path": "src/cmd/compile/internal/inline/inl.go", "patch": "@@ -852,17 +852,25 @@ func mkinlcall(n *ir.CallExpr, fn *ir.Func, maxCost int32, inlMap map[*ir.Func]b\n \t\t}\n \t}\n \n+\t// We can delay declaring+initializing result parameters if:\n+\t// (1) there's exactly one \"return\" statement in the in...
2021-02-18T01:49:40
huggingface/transformers
1eee1cedfdc854258564c3f301e42bc6fe982e80
0531d7513b617f7c5f8b5f333985c63f0edd5fe2
Fix loading with only state dict and low_cpu_mem_usage = True (#35217) * fix loading with only state dict and config * style * add tests --------- Co-authored-by: Sayak Paul <spsayakpaul@gmail.com>
[ { "path": "src/transformers/modeling_utils.py", "patch": "@@ -4022,8 +4022,11 @@ def from_pretrained(\n loaded_state_dict_keys = sharded_metadata[\"all_checkpoint_keys\"]\n else:\n loaded_state_dict_keys = list(state_dict.keys())\n-\n- if gguf_path is N...
2024-12-18T08:54:32
ollama/ollama
6582f6da5c59b40bab3dcac646c17e3422a66460
0334ffa6250752c0e5e3d7f4467b0f50cc906fde
llm: Make "do load request" error message more informative
[ { "path": "llm/server.go", "patch": "@@ -1201,7 +1201,8 @@ func (s *llmServer) initModel(ctx context.Context, req LoadRequest, operation Lo\n \n \tresp, err := http.DefaultClient.Do(r)\n \tif err != nil {\n-\t\treturn nil, fmt.Errorf(\"do load request: %w\", err)\n+\t\tslog.Error(\"do load request\", \"erro...
2026-01-30T15:34:21
vercel/next.js
1d46acd4d4a766992336bcfe13a6fc142dc55d55
a28aead85b68f348a5ed3eff259990ef4e0eb9b8
Introduce PathRegex for patch matching with named parameters (vercel/turbo#511) This is another attempt at fixing https://github.com/vercel/turbo-tooling/pull/507. It also handles the root index page properly ("pages/index.js").
[ { "path": "packages/next-swc/crates/next-core/src/lib.rs", "patch": "@@ -6,6 +6,7 @@ pub mod env;\n pub mod next_client;\n mod next_import_map;\n mod nodejs;\n+mod path_regex;\n pub mod react_refresh;\n mod server_rendered_source;\n mod web_entry_source;", "additions": 1, "deletions": 0, "langua...
2022-10-12T09:46:18
nodejs/node
9a6dd07e8d93c7208c6698dfec1296f5caec9948
0a679327be992d2a60fc3522ab2335064e9750dc
tools: overhaul tools/doc/json.js Modernize: * Replace `var` with `const` / `let`. * Wrap `switch` cases with `const`/`let` in blocks. * Replace common functions with arrow functions. * Replace string concatenation with template literals. * Shorthand object literals. * Use destructuring and spread. Optimize: * Move R...
[ { "path": "tools/doc/json.js", "patch": "@@ -31,49 +31,47 @@ const marked = require('marked');\n \n // Customized heading without id attribute.\n const renderer = new marked.Renderer();\n-renderer.heading = function(text, level) {\n- return `<h${level}>${text}</h${level}>\\n`;\n-};\n-marked.setOptions({\n-...
2018-03-29T12:56:32
golang/go
526ee96f4992ff3a1e1c219fe8dc9870098bacba
194b636f8f1ff7d6b709b5b9010d1d14b3919e66
os: avoid allocation in File.WriteString Instead of alloc+copy to convert the string to a byte slice, do an unsafe conversion. Rely on the kernel not to scribble on the buffer during the write. Fixes #42406 Change-Id: I66f4838b43a11bcc3d67bbfa1706726318d55343 Reviewed-on: https://go-review.googlesource.com/c/go/+/2...
[ { "path": "src/os/file.go", "patch": "@@ -44,11 +44,13 @@ import (\n \t\"errors\"\n \t\"internal/poll\"\n \t\"internal/testlog\"\n+\t\"internal/unsafeheader\"\n \t\"io\"\n \t\"io/fs\"\n \t\"runtime\"\n \t\"syscall\"\n \t\"time\"\n+\t\"unsafe\"\n )\n \n // Name returns the name of the file as presented to Op...
2020-11-07T01:37:03
huggingface/transformers
77080f023fdf73449dc9d0d3540f7173d2bdf4a1
8bfd7eeeeface0c68122ee9f48b6428422949a07
Fixed typo in audio_classification.md (#35305)
[ { "path": "docs/source/en/tasks/audio_classification.md", "patch": "@@ -24,8 +24,8 @@ Audio classification - just like with text - assigns a class label output from t\n \n This guide will show you how to:\n \n-1. Finetune [Wav2Vec2](https://huggingface.co/facebook/wav2vec2-base) on the [MInDS-14](https://hu...
2024-12-17T17:45:51
vercel/next.js
40619e21225c02d8b235a4d500c4b1c429fe889b
45876067c20453cd5a7290ac86b09de30f998490
Introduce PathRegex for patch matching with named parameters (#511) This is another attempt at fixing https://github.com/vercel/turbo-tooling/pull/507. It also handles the root index page properly ("pages/index.js").
[ { "path": "crates/next-core/src/lib.rs", "patch": "@@ -6,6 +6,7 @@ pub mod env;\n pub mod next_client;\n mod next_import_map;\n mod nodejs;\n+mod path_regex;\n pub mod react_refresh;\n mod server_rendered_source;\n mod web_entry_source;", "additions": 1, "deletions": 0, "language": "Rust" }, ...
2022-10-12T09:46:18
ollama/ollama
d11fbd2c603aad64535c5cecd6ee68a02d01aa0c
6a7c3f188e679b1849e4618754b25dc9c19541d7
server: fix ollama ps showing configured instead of actual context length When context length is clamped to the model's trained context length, ollama ps now shows the actual clamped value instead of the originally configured value.
[ { "path": "llm/server.go", "patch": "@@ -80,6 +80,7 @@ type LlamaServer interface {\n \tGetPort() int\n \tGetDeviceInfos(ctx context.Context) []ml.DeviceInfo\n \tHasExited() bool\n+\tContextLength() int\n }\n \n // llmServer is an instance of a runner hosting a single model\n@@ -1901,6 +1902,10 @@ func (s *...
2026-01-28T00:27:55
rust-lang/rust
49ea23232c04e9fa0ec91582c967ddb346b1d56b
377f2d37d362198ae04be4f3a04057f9d819aea0
Fix deadlink in libs-and-metadata.md
[ { "path": "src/doc/rustc-dev-guide/src/backend/libs-and-metadata.md", "patch": "@@ -110,7 +110,7 @@ See [`compute_hir_hash`] for where the hash is actually computed.\n \n [SVH]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_data_structures/svh/struct.Svh.html\n [incremental compilation]: ../queries/...
2025-04-06T12:05:03
nodejs/node
0a679327be992d2a60fc3522ab2335064e9750dc
77b52fd58f7398a81999c81afd21fe2e156c0766
doc: update language regarding key stretching Update the docs to provide clearer instructions regarding the exact scope of the use (and re-use) of an IV, stating the instructions explicitly with greater clarity. PR-URL: https://github.com/nodejs/node/pull/19810 Fixes: https://github.com/nodejs/node/issues/19748 Revie...
[ { "path": "doc/api/crypto.md", "patch": "@@ -1377,6 +1377,13 @@ The `key` is the raw key used by the `algorithm` and `iv` is an\n [Buffers][`Buffer`], `TypedArray`, or `DataView`s. If the cipher does not need\n an initialization vector, `iv` may be `null`.\n \n+Initialization vectors should be unpredictable...
2018-04-04T20:47:56
golang/go
194b636f8f1ff7d6b709b5b9010d1d14b3919e66
4ebb6f5110af3e60455d8751b996b958afb25a36
database/sql: close driver.Connector if it implements io.Closer This change allows driver implementations to manage resources in driver.Connector, e.g. to share the same underlying database handle between multiple connections. That is, it allows embedded databases with in-memory backends like SQLite and Genji to safel...
[ { "path": "src/database/sql/driver/driver.go", "patch": "@@ -115,6 +115,9 @@ type DriverContext interface {\n // DriverContext's OpenConnector method, to allow drivers\n // access to context and to avoid repeated parsing of driver\n // configuration.\n+//\n+// If a Connector implements io.Closer, the sql pa...
2021-02-25T19:15:04
huggingface/transformers
a7feae190f67b598e65c0ad695d570df973c4a3a
927c3e39ec1fb78e571c0ec2521ae59ed05720f2
Fix remove unused parameter in docs (#35306) remove unused parameter in example Co-authored-by: zzzzzsa <zzzzzsaqwq@gmail.com>
[ { "path": "docs/source/en/model_doc/llava.md", "patch": "@@ -131,7 +131,7 @@ prompt_2 = processor.apply_chat_template(conversation_2, add_generation_prompt=T\n prompts = [prompt_1, prompt_2]\n \n # We can simply feed images in the order they have to be used in the text prompt\n-inputs = processor(images=[im...
2024-12-17T17:34:41
vercel/next.js
2243a598308428da854acbaa367d73b4542d391a
408c2cec79422870c0fa407f0327109b46b83eb3
some fixes and improvements to collectibles performance (#499)
[ { "path": "crates/turbo-tasks-memory/Cargo.toml", "patch": "@@ -15,6 +15,7 @@ concurrent-queue = \"1.2.2\"\n event-listener = \"2.5.2\"\n flurry = \"0.4.0\"\n lazy_static = \"1.4.0\"\n+nohash-hasher = \"0.2.0\"\n num_cpus = \"1.13.1\"\n parking_lot = \"0.12.1\"\n tokio = \"1.11.0\"", "additions": 1, ...
2022-10-11T22:34:44
ollama/ollama
3590fbfa761ad1d97bbd092baec58b0b8022fef4
cd0094f772426efdd7ccc57d1e88f35c25234130
runner: fix typo 'baackend' -> 'backend' in error messages (#13645) Fix typo in three error messages where 'baackend' was written instead of 'backend' in the /health endpoint handler when initializing the dummy model load.
[ { "path": "runner/ollamarunner/runner.go", "patch": "@@ -1358,7 +1358,7 @@ func (s *Server) info(w http.ResponseWriter, r *http.Request) {\n \t\t// Dummy load to get the backend wired up\n \t\tf, err := os.CreateTemp(\"\", \"*.bin\")\n \t\tif err != nil {\n-\t\t\thttp.Error(w, fmt.Sprintf(\"failed to initia...
2026-01-31T21:26:20
nodejs/node
0ac6ced2e9e09fdfe4b5c9aec8fb9a3f570f63e7
63eb267c34198c4bece62cb6432bb2bceb399de6
doc: fix some links PR-URL: https://github.com/nodejs/node/pull/19860 Reviewed-By: Weijia Wang <starkwang@126.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
[ { "path": "doc/api/fs.md", "patch": "@@ -4716,6 +4716,7 @@ The following constants are meant for use with the [`fs.Stats`][] object's\n [`fs.access()`]: #fs_fs_access_path_mode_callback\n [`fs.chmod()`]: #fs_fs_chmod_path_mode_callback\n [`fs.chown()`]: #fs_fs_chown_path_uid_gid_callback\n+[`fs.copyFile()`]...
2018-04-07T00:21:31
huggingface/transformers
927c3e39ec1fb78e571c0ec2521ae59ed05720f2
4302b2771917046272817a0dc8e9e84fa33dd51c
Fix image preview in multi-GPU inference docs (#35303) fix: link for img
[ { "path": "docs/source/en/perf_infer_gpu_multi.md", "patch": "@@ -64,5 +64,5 @@ You can benefit from considerable speedups for inference, especially for inputs\n For a single forward pass on [Llama](https://huggingface.co/docs/transformers/model_doc/llama#transformers.LlamaModel) with a sequence length of 5...
2024-12-17T17:33:50
golang/go
1a3e968b1fcb2082b1d99be563a7c9f8c61c66ba
ee2a45e5fbee473b81c8ab81da8d83699d64e01f
cmd/compile: fix mishandling of unsafe-uintptr arguments with call method in go/defer In CL 253457, we did the same fix for direct function calls. But for method calls, the receiver argument also need to be passed through the wrapper function, which we are not doing so the compiler crashes with the code in #44415. As...
[ { "path": "src/cmd/compile/internal/walk/expr.go", "patch": "@@ -503,21 +503,8 @@ func walkCall1(n *ir.CallExpr, init *ir.Nodes) {\n \t}\n \tn.SetWalked(true)\n \n-\t// If this is a method call t.M(...),\n-\t// rewrite into a function call T.M(t, ...).\n \t// TODO(mdempsky): Do this right after type checkin...
2021-02-21T15:09:03