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 |
|---|---|---|---|---|---|
tensorflow/tensorflow | 0d35f4d32599a8e7ac0c12971f7acb77e4f39126 | 1beb6b8d7cda24055c9295a5ad896d7f9d12e915 | [XLA:MSA] Fixes and logging -
* Ensure copy and use bytes are non-negative during inefficient sites computations. Negative use bytes were causing pinned allocations being reverted.
* Ensure we compare offset field when comparing aliased offsets.
* Add logging, make check failures verbose.
PiperOrigin-RevId: 879178223 | [
{
"path": "third_party/xla/xla/service/memory_space_assignment/algorithm.cc",
"patch": "@@ -3643,9 +3643,12 @@ std::vector<HloPositionOrUse> MsaAlgorithm::GetInefficientAllocationSites(\n }\n }\n }\n+ use_bytes = std::max(use_bytes, int64_t{0});\n+ copy_bytes = std::max(copy_bytes, i... | 2026-03-05T19:55:49 |
mrdoob/three.js | e9f7c8b6478293ce3373bdcc70d6e90ae11fd4db | f4abfe0576167c4cf2cd9683a6b09b68d798f72e | fix type of instanceGroup bindingsReference in nodeBuilderState (#31678) | [
{
"path": "src/renderers/common/nodes/NodeBuilderState.js",
"patch": "@@ -126,7 +126,7 @@ class NodeBuilderState {\n \n \t\t\tif ( shared !== true ) {\n \n-\t\t\t\tconst bindingsGroup = new BindGroup( instanceGroup.name, [], instanceGroup.index, instanceGroup );\n+\t\t\t\tconst bindingsGroup = new BindGroup... | 2025-08-19T08:10:24 |
denoland/deno | 9cab294be758e81037b128a05a13c4fd4fd35b30 | 6adddf9f89f1279bff7a7e9e588adbac6302f876 | fix(cli): load multiple env files in the correct order (#32354)
Closes #32350
Previously we reverse the env file orders because we're using `dotenvy`
that as stated by their
[docs](https://docs.rs/dotenvy/latest/dotenvy/fn.from_filename.html):
> Where multiple declarations for the same environment variable exist in
y... | [
{
"path": "cli/util/watch_env_tracker.rs",
"patch": "@@ -241,7 +241,7 @@ pub fn load_env_variables_from_env_files(\n return;\n };\n \n- for env_file_name in env_file_names.iter().rev() {\n+ for env_file_name in env_file_names.iter() {\n match deno_dotenv::from_path(env_file_name) {\n Ok(_)... | 2026-03-01T15:50:03 |
swiftlang/swift | 11d30252002f914b80d55d1b742557b4cac72ed4 | 31417bba4c46ee6334d69b1d05d9de0c33fdb048 | TempRValueElimination: bail in non-OSSA if the stack liverange has exit edges
If there is no use on a path leaving the liverange, we don't know how the value is destroyed there.
Fixes a miscompile
rdar://171676249 | [
{
"path": "SwiftCompilerSources/Sources/Optimizer/FunctionPasses/TempRValueElimination.swift",
"patch": "@@ -158,6 +158,11 @@ private extension AllocStackInst {\n \n liferange.insert(contentsOf: uses.ignore(usersOfType: DeallocStackInst.self).lazy.map { $0.instruction })\n \n+ guard liferange.exitBlo... | 2026-03-12T15:46:29 |
golang/go | 835d6d42c478a711708968cf0916d734940f88ee | 1179cfc9b490ce5a8c3adaccea84c79e69f711d7 | cmd/compile: add astdump debug flag
This was extraordinarily useful for inlining work.
I have cleaned it up somewhat, and did some additional tweaks
after working on changes to bloop.
-gcflags=-d=astdump=SomeFunc
-gcflags=-d=astdump=SomeSubPkg.SomeFunc
-gcflags=-d=astdump=Some/Pkg.SomeFunc
-gcflags=-d=astdump=~YourRe... | [
{
"path": "src/cmd/compile/internal/base/debug.go",
"patch": "@@ -18,6 +18,7 @@ var Debug DebugFlags\n type DebugFlags struct {\n \tAlignHot int `help:\"enable hot block alignment (currently requires -pgo)\" concurrent:\"ok\"`\n \tAppend int `help:\"print information about ... | 2024-11-19T18:57:23 |
denoland/deno | 2a04a3cdf54a5e8f04e0c8b11de937b6db671d79 | 8e5efb0509958ab5513b59c87cb83a98f1e897e6 | fix(lsp): cross-scope requests (#32366) | [
{
"path": "Cargo.lock",
"patch": "@@ -10066,6 +10066,7 @@ dependencies = [\n \"anyhow\",\n \"console_static_text\",\n \"crossterm\",\n+ \"deno_path_util\",\n \"file_test_runner\",\n \"fluent-uri\",\n \"indexmap 2.9.0\",",
"additions": 1,
"deletions": 0,
"language": "Unknown"
},
{
"... | 2026-02-28T16:46:33 |
kubernetes/kubernetes | 8203f2b53f6070bf16e21941033b64c15c24b23b | 505b937babc9ab0061ed346ec0278a3a605664ac | Update kuberc plugin policy tests
* Add test to ensure error when both `name` and `command` are supplied
* Add test to ensure autoconversion of `name` to `command`
* Change the rest of the `name` fields to `command` since `name` is
deprecated
Signed-off-by: Peter Engelbert <pmengelbert@gmail.com> | [
{
"path": "staging/src/k8s.io/kubectl/pkg/kuberc/kuberc_test.go",
"patch": "@@ -3028,7 +3028,7 @@ kind: Preference\n apiVersion: kubectl.config.k8s.io/v1beta1\n credentialPluginPolicy: \"foo\"\n credentialPluginAllowlist:\n-- name: \"bar\"\n+- command: \"bar\"\n `,\n \t\t},\n \t\t{\n@@ -3057,8 +3057,8 @@ cr... | 2026-02-26T18:40:30 |
golang/go | 8572b1cfea49b6108b9fb8ea650c4999ba70d381 | e0414d74fe2d38a6de1cadbbc135d578b11a27af | internal/runtime: fix assembly for spectre retpoline instrumentation
In the last year we added two CALLs whose targets are loaded from
memory. Change them to call from a register so that the instrumentation
for spectre mitigations works.
This change also adds a smoke test for the spectre build flags.
For #77420.
Ch... | [
{
"path": "src/cmd/dist/test.go",
"patch": "@@ -789,22 +789,38 @@ func (t *tester) registerTests() {\n \tif !t.compileOnly && !t.short {\n \t\tt.registerTest(\"GODEBUG=gcstoptheworld=2 archive/zip\",\n \t\t\t&goTest{\n-\t\t\t\tvariant: \"runtime:gcstoptheworld2\",\n+\t\t\t\tvariant: \"gcstoptheworld2\",\n \... | 2026-02-03T15:45:21 |
tensorflow/tensorflow | 113f771993888d0f4ad0d1b2ce711ff53e4778c4 | 1a98e5ea85452d20109041d99d95b99981f26622 | [XLA:CPU] Introduce fast+golden intrinsic accuracy testing framework.
This CL adds a framework for testing the accuracy of XLA's intrinsic implementations. It includes:
- A Python script to generate high-precision golden baselines using `mpmath` for various mathematical functions.
- A C++ test framework to run tes... | [
{
"path": "third_party/xla/xla/codegen/intrinsic/accuracy/BUILD",
"patch": "@@ -0,0 +1,56 @@\n+load(\"//xla/tests:build_defs.bzl\", \"xla_test\")\n+load(\"//xla/tsl/platform:rules_cc.bzl\", \"cc_library\")\n+\n+package(\n+ # copybara:uncomment default_applicable_licenses = [\"//tensorflow:license\"],\n+ ... | 2026-03-05T18:55:05 |
denoland/deno | 8e5efb0509958ab5513b59c87cb83a98f1e897e6 | b0a58f307e52957ac9fce373d4e9a7b658a28633 | fix(core): store Global<Context> ptr for libuv-compat callbacks (#32361)
## Summary
- Store a `v8::Global<Context>` via `Global::into_raw()` once during
`register_uv_loop` instead of storing a `v8::Local<Context>` pointer at
the start of each event loop tick
- V8 keeps the persistent-handle slot updated across GC cyc... | [
{
"path": "libs/core/runtime/jsrealm.rs",
"patch": "@@ -115,9 +115,9 @@ pub struct ContextState {\n /// `UvLoopInner` and `ContextState` are `!Send` -- all access is on the\n /// event loop thread.\n pub(crate) uv_loop_inner: Cell<Option<*const UvLoopInner>>,\n- /// Raw pointer to the `uv_loop_t` han... | 2026-02-28T09:47:49 |
mrdoob/three.js | c800106fb4cbd8341cd64b35e97206095d2799d9 | c0f77e8afe9f3e56b66b79b0ddccbed4d44fc850 | TSL: Fix assignment to swizzled for var intent (#31647) | [
{
"path": "src/nodes/core/AssignNode.js",
"patch": "@@ -97,7 +97,9 @@ class AssignNode extends TempNode {\n \n \t\tconst { targetNode, sourceNode } = this;\n \n-\t\tconst targetProperties = builder.getNodeProperties( targetNode );\n+\t\tconst scope = targetNode.getScope();\n+\n+\t\tconst targetProperties = ... | 2025-08-16T16:51:05 |
golang/go | b691a2edc7f5863f61a07c4a4f087eef1a15a704 | 31c9bcb1037a332fd547808693cd1899090b5854 | crypto/tls: revalidate whole chain on resumption on Windows and macOS
TestHandshakeChangeRootCAsResumption and TestHandshakeGetConfigForClientDifferentClientCAs
changed because previously rootA and rootB shared Subject and SPKI,
which made the new full-chain revalidation check succeed, as the
same leaf would verify a... | [
{
"path": "src/crypto/tls/common.go",
"patch": "@@ -22,6 +22,7 @@ import (\n \t\"internal/godebug\"\n \t\"io\"\n \t\"net\"\n+\t\"runtime\"\n \t\"slices\"\n \t\"strings\"\n \t\"sync\"\n@@ -1873,15 +1874,27 @@ func anyValidVerifiedChain(verifiedChains [][]*x509.Certificate, opts x509.Verif\n \t\t}) {\n \t\t\t... | 2026-01-30T17:07:23 |
tensorflow/tensorflow | c246ba6173b67c421e01377d5d246ec08b9037d5 | 7248a6d4031ba1bdeb58f5fae4613919720219b4 | Increase memory limit for tpu_embedding_v3_cpu_ops_test.
Adds a higher memory limit (16g) for tests run with ASAN to prevent out-of-memory errors.
PiperOrigin-RevId: 879145163 | [
{
"path": "tensorflow/python/tpu/BUILD",
"patch": "@@ -76,6 +76,9 @@ py_strict_test(\n tf_py_strict_test(\n name = \"tpu_embedding_v3_cpu_ops_test\",\n srcs = [\"tpu_embedding_v3_cpu_ops_test.py\"],\n+ exec_properties = {\n+ \"cpp_link.mem\": \"16g\",\n+ },\n shard_count = 8,\n ... | 2026-03-05T18:47:37 |
denoland/deno | b0a58f307e52957ac9fce373d4e9a7b658a28633 | ad52a9f35f427cb9a930c1a071f74784ad6cf417 | fix: Update libffi and libffi-sys to fix build (#32301)
Bumps libffi and libffi-sys to latest versions.
Fixes: #32281 | [
{
"path": "Cargo.lock",
"patch": "@@ -6254,19 +6254,19 @@ dependencies = [\n \n [[package]]\n name = \"libffi\"\n-version = \"4.1.2\"\n+version = \"5.1.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"b0feebbe0ccd382a2790f78d380540500d7b78ed7a3498b68fcfbc1593749a94\"\n... | 2026-02-28T09:39:54 |
mrdoob/three.js | deb748d0915c19696b7d1405d0b6dac7e49c74ab | d8a9927b16e16deede1628d1e01ec98181d4869a | Docs: Update WebXRManager methods (#31657)
* Docs: missing WebXRManager methods -> old docs
* Docs: WebXRManager JSDoc fixes/clarifications
* Update docs/api/en/renderers/webxr/WebXRManager.html
Co-authored-by: Vincent Fretin <vincent.fretin@gmail.com>
* Update docs/api/en/renderers/webxr/WebXRManager.html
Co-aut... | [
{
"path": "docs/api/en/renderers/webxr/WebXRManager.html",
"patch": "@@ -37,6 +37,24 @@ <h3>[property:Boolean isPresenting]</h3>\n \t\t</p>\n \n \t\t<h2>Methods</h2>\n+\t\t\n+\t\t<h3>[method:XRWebGLLayer getBaseLayer]()</h3>\n+\t\t<p>\n+\t\t\tReturns the current base layer. This is an \n+\t\t\t[link:https:/... | 2025-08-15T14:04:29 |
golang/go | 31c9bcb1037a332fd547808693cd1899090b5854 | 18d31e3e8bf47538c8a570268cd714d47bf01aef | internal/poll: readWriteUnlock should destroy fd when no remaining references
Fixes #77404
Change-Id: I0402becb94855baf942d6ba3815cc2a3c1526d6e
Reviewed-on: https://go-review.googlesource.com/c/go/+/740921
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Dmitri Sh... | [
{
"path": "src/internal/poll/fd_mutex.go",
"patch": "@@ -265,7 +265,9 @@ func (fd *FD) readWriteLock() error {\n // is no remaining reference.\n func (fd *FD) readWriteUnlock() {\n \tfd.fdmu.rwunlock(true)\n-\tfd.fdmu.rwunlock(false)\n+\tif fd.fdmu.rwunlock(false) {\n+\t\tfd.destroy()\n+\t}\n }\n \n // clos... | 2026-02-02T11:06:22 |
tensorflow/tensorflow | 65fcdcb4e7f70336a6c259143cc27bfea8231da2 | c4067395826559d1333f1f7b4e7f6922540def64 | Move CompiledMemoryStats into its own target
Moves the type `CompiledMemoryStats` from `pjrt_executable.{cc,h}` into its
own target, header, and implementation file.
This way we can depend on it without depending on `PjRtExecutable`.
I'm also fixing an include in a slightly unrelated file because moving CompiledMemo... | [
{
"path": "third_party/xla/xla/pjrt/BUILD",
"patch": "@@ -431,6 +431,7 @@ cc_library(\n hdrs = [\"pjrt_executable.h\"],\n visibility = internal_visibility([\":friends\"]),\n deps = [\n+ \":compiled_memory_stats\",\n \":pjrt_abi_version\",\n \":pjrt_common\",\n \":p... | 2026-03-05T16:42:27 |
denoland/deno | 81e50edbd793c3e775ac4d1e66ade137bfd7efdf | 54db4e6fe745617eeb45775b106cc45a2c805098 | fix(lsp): tsgo request cancellation (#32356) | [
{
"path": "cli/lsp/tsgo.rs",
"patch": "@@ -2,8 +2,6 @@\n \n use std::collections::BTreeMap;\n use std::collections::HashMap;\n-use std::io::BufRead;\n-use std::io::Write;\n use std::path::Path;\n use std::path::PathBuf;\n use std::process::Child;\n@@ -23,6 +21,7 @@ use deno_core::serde_json;\n use deno_grap... | 2026-02-27T17:55:08 |
mrdoob/three.js | d8a9927b16e16deede1628d1e01ec98181d4869a | 83e0d44edbd3c3619c410f1b54b34e78ac5913d3 | XRManager: Fix typo in getBinding jsdoc (#31656) | [
{
"path": "src/renderers/common/XRManager.js",
"patch": "@@ -592,12 +592,12 @@ class XRManager extends EventDispatcher {\n \n \n \t/**\n-\t * Return the current XR binding.\n+\t * Returns the current XR binding.\n \t *\n \t * Creates a new binding if needed and the browser is\n \t * capable of doing so.\n \... | 2025-08-15T10:21:25 |
kubernetes/kubernetes | cabfc886386f5a3f90a85f3ec0b597e17621862d | c24c1e8c2e6e35835489c6b250e5dc61684409cd | Update conversion func for AllowlistEntry
Convert `Name` to `Command` where necessary, and error if both are
provided.
Signed-off-by: Peter Engelbert <pmengelbert@gmail.com> | [
{
"path": "pkg/generated/openapi/zz_generated.openapi.go",
"patch": "@@ -69095,6 +69095,14 @@ func schema_kubectl_pkg_config_v1beta1_AllowlistEntry(ref common.ReferenceCallba\n \t\t\t\tType: []string{\"object\"},\n \t\t\t\tProperties: map[string]spec.Schema{\n \t\t\t\t\t\"name\": {\n+\t\t\t\t\t\tSche... | 2026-02-26T18:18:18 |
golang/go | 7fd116f86451d7262f7683629b90c8adc0137f53 | 8ac41b52c4b7a6ab9c41d008abbe254270200b8e | go/types, types2: add missing Named.unpack call in Checker.hasVarSize
CL 734980 swapped use of Type.Underlying() in Checker.hasVarSize for
traversal of Named.fromRHS. It forgot to call Named.unpack() before
inspecting Named.fromRHS, allowing access of unexpanded instantiated
types.
These unexpanded instantiated types... | [
{
"path": "src/cmd/compile/internal/types2/builtins.go",
"patch": "@@ -1009,7 +1009,8 @@ func sliceElem(x *operand) (Type, *typeError) {\n // yet been checked.\n func (check *Checker) hasVarSize(t Type) bool {\n \t// Note: We could use Underlying here, but passing through the RHS may yield\n-\t// better err... | 2026-01-30T19:23:02 |
mrdoob/three.js | 380bc389f3ed63dd532176354e121c4d726d641b | 4203d2b3038651557be00b831735f014995cadea | WebGPURenderer: Fix rendering into mips. (#31645) | [
{
"path": "src/renderers/common/RenderContext.js",
"patch": "@@ -248,9 +248,9 @@ class RenderContext {\n */\n export function getCacheKey( renderContext ) {\n \n-\tconst { textures, activeCubeFace } = renderContext;\n+\tconst { textures, activeCubeFace, activeMipmapLevel } = renderContext;\n \n-\tconst val... | 2025-08-14T12:52:48 |
tensorflow/tensorflow | 0fa15d76e6c883045c97d1949f581e01ecf3b212 | a8326a7c4c308840f2027ba90eecc129df3f2513 | Update rules_python to latest 1.8.4 for tensorflow and xla. Doing so would enable us to use latest feature which includes a venv layout. This latest version also introduce stricter hermeticity which was first introduce in 1.7.0 as seen in logs:
- https://rules-python.readthedocs.io/en/latest/changelog.html#v1-7.0 (see... | [
{
"path": ".bazelrc",
"patch": "@@ -103,6 +103,7 @@ common --action_env=PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION=upb\n # conflict when precompiling. Disable to avoid that problem.\n # See https://github.com/bazel-contrib/rules_python/issues/2445\n common --@rules_python//python/config_settings:precompile=forc... | 2026-03-04T19:22:55 |
denoland/deno | 54db4e6fe745617eeb45775b106cc45a2c805098 | 9747a26f59074363a9c45ffab5ab5f272f6baf30 | fix(ext/node): support process.stdout resize events (#32343)
## Summary
- Add Windows support for `Deno.addSignalListener("SIGWINCH", ...)` by
polling console size changes every 250ms using
`GetConsoleScreenBufferInfo`
- Wire `process.stdout.on("resize")` / `process.stderr.on("resize")` to
emit on SIGWINCH, matching ... | [
{
"path": "ext/node/lib.rs",
"patch": "@@ -518,6 +518,7 @@ deno_core::extension!(deno_node,\n \"internal/streams/utils.js\",\n \"internal/test/binding.ts\",\n \"internal/timers.mjs\",\n+ \"internal/tty.js\",\n \"internal/url.ts\",\n \"internal/util.mjs\",\n \"internal/util/colors.... | 2026-02-27T15:41:14 |
golang/go | 8ac41b52c4b7a6ab9c41d008abbe254270200b8e | 62d08234b797806796af0d51051f2e13caa42e2a | testing/synctest: add Sleep
Add a convenience function which combines time.Sleep and synctest.Wait.
Fixes #77169
Change-Id: I2ff105105e95cfd8e5b4f72ccacf7afa59efb6bd
Reviewed-on: https://go-review.googlesource.com/c/go/+/740066
Reviewed-by: Alan Donovan <adonovan@google.com>
Auto-Submit: Damien Neil <dneil@google.co... | [
{
"path": "api/next/77169.txt",
"patch": "@@ -0,0 +1 @@\n+pkg testing/synctest, func Sleep(time.Duration) #77169",
"additions": 1,
"deletions": 0,
"language": "Plain Text"
},
{
"path": "doc/next/6-stdlib/99-minor/testing/synctest/77169.md",
"patch": "@@ -0,0 +1 @@\n+The new [Sleep] h... | 2026-01-28T23:04:46 |
kubernetes/kubernetes | 3ed316397734e59e9a39c662f70de1b86192db17 | 60c697419d2695108a054d704334778e3d945a6c | client-go: error on invalid fake pod logs reactor object | [
{
"path": "staging/src/k8s.io/client-go/kubernetes/typed/core/v1/fake/fake_pod_expansion.go",
"patch": "@@ -64,10 +64,16 @@ func (c *fakePods) GetLogs(name string, opts *v1.PodLogOptions) *restclient.Requ\n \taction.Subresource = \"log\"\n \taction.Value = opts\n \n-\tobj, err := c.Fake.Invokes(action, &run... | 2026-02-26T17:58:23 |
mrdoob/three.js | 2a99ef3270888e39d50a97cb1b01492a2882c21a | 661a4cbd9ff0dae0c1419c6959fa12a1148c0b16 | Add GLTF progressive example page (#31625)
* start gltf progressive example
* add multiple meshes to the scene
* Update gltf-progressive version + fix mesh zfighting
* move stats into one line, add no-break-space html
* Rename RGBELoader to HDRLoader
* Move description into source
* Update description
* add tag... | [
{
"path": "examples/files.json",
"patch": "@@ -82,6 +82,7 @@\n \t\t\"webgl_loader_fbx_nurbs\",\n \t\t\"webgl_loader_gcode\",\n \t\t\"webgl_loader_gltf\",\n+\t\t\"webgl_loader_gltf_progressive_lod\",\n \t\t\"webgl_loader_gltf_avif\",\n \t\t\"webgl_loader_gltf_compressed\",\n \t\t\"webgl_loader_gltf_dispersio... | 2025-08-13T19:47:10 |
swiftlang/swift | 8c4ae7483ed44960c9beef33a03311a1f46cfcb3 | 8c9a862347bab3e73d110a67dd9becc10a66d87c | Update CHANGELOG.md - typo for 0371 vs 0471
The changelog appears to link to the wrong SE. | [
{
"path": "CHANGELOG.md",
"patch": "@@ -216,7 +216,7 @@\n }\n ```\n \n-* [SE-0471][]:\n+* [SE-0371][]:\n Actor and global actor annotated types may now declare a synchronous `isolated deinit`, which allows such deinitializer\n to access actor isolated state while deinitializing the actor. This enabl... | 2026-03-07T23:03:20 |
denoland/deno | 9747a26f59074363a9c45ffab5ab5f272f6baf30 | 3c9cbfa847f3c4547a2ef763b9f0c43ec8c9fdfc | feat: v8 14.6, fix require(esm), libuv compat (#32347) | [
{
"path": "Cargo.lock",
"patch": "@@ -1929,9 +1929,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_core\"\n-version = \"0.386.0\"\n+version = \"0.387.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"f5cdb60d25f7e87f7f3bb5b1fcbd8d059ab908d614c0ad67dafce7f6c1514f0... | 2026-02-27T11:20:34 |
tensorflow/tensorflow | a8326a7c4c308840f2027ba90eecc129df3f2513 | a0a60301616f97aaaa92fac584dbed291f6697a2 | [XLA] Fix typos in comments and error messages.
PiperOrigin-RevId: 878579963 | [
{
"path": "third_party/xla/xla/hlo/transforms/host_offloader.cc",
"patch": "@@ -664,7 +664,7 @@ HostOffloader::GetStartingInstructions(\n absl::StatusOr<bool> HostOffloader::SliceLeadsToMoveToDeviceCustomCall(\n HloInstruction* slice) {\n // Every host-to-device DynamicSlice/Slice must be followed by ... | 2026-03-04T19:16:04 |
golang/go | 62d08234b797806796af0d51051f2e13caa42e2a | 35abaf75c35adc9b22038885781b8be70a8476e0 | internal/maps,cmd/compile/internal/walk: replace calls to mapaccess1* with mapaccess2*
mapaccess1* and mapaccess2* functions share the same implementation and differ only in whether the boolean "found" is returned.
This change replaces mapaccess1* calls with mapaccess2*.
We can do this transparently, since the call s... | [
{
"path": "src/cmd/compile/internal/walk/assign.go",
"patch": "@@ -154,12 +154,14 @@ func walkAssignMapRead(init *ir.Nodes, n *ir.AssignListStmt) ir.Node {\n \n \tr := n.Rhs[0].(*ir.IndexExpr)\n \twalkExprListSafe(n.Lhs, init)\n+\n \tr.X = walkExpr(r.X, init)\n \tr.Index = walkExpr(r.Index, init)\n+\tmap_ :... | 2026-01-13T10:06:28 |
kubernetes/kubernetes | aa494f8174d745c3d9842f3d48272a3c2d6dcbcc | f60990d3f9e6c68d14c4731f62f1eb1070d243b8 | client-go/leaderelection: Check context canceled
The change introduced in 59cd1d0b3bb378f40a639e21b615f4df1d4a5a14
causes PollUntilContextTimeout to call the condition function even when
the context is canceled already. This is unnecessary in our case and
only leads to one extra loop of processing and extra error mess... | [
{
"path": "staging/src/k8s.io/client-go/tools/leaderelection/leaderelection.go",
"patch": "@@ -283,6 +283,11 @@ func (le *LeaderElector) renew(ctx context.Context) {\n \tlogger := klog.FromContext(ctx)\n \twait.UntilWithContext(ctx, func(ctx context.Context) {\n \t\terr := wait.PollUntilContextTimeout(ctx, ... | 2026-02-26T11:04:01 |
denoland/deno | 3c9cbfa847f3c4547a2ef763b9f0c43ec8c9fdfc | f12a8b6803668ede2c910c5f01ead8bdee3d8149 | refactor(ext/node): `assert` get error source using V8 API (#32339) | [
{
"path": "ext/node/lib.rs",
"patch": "@@ -173,6 +173,7 @@ deno_core::extension!(deno_node,\n deps = [ deno_io, deno_fs ],\n parameters = [TInNpmPackageChecker: InNpmPackageChecker, TNpmPackageFolderResolver: NpmPackageFolderResolver, TSys: ExtNodeSys],\n ops = [\n+ ops::assert::op_node_get_error_s... | 2026-02-27T11:11:22 |
mrdoob/three.js | 63b49831e0be50779f9bbeccd24f4f93f7fa7c24 | fa4c2a9482feb11023d21988a56926f0f477d629 | Examples/TSL: Add SubgroupFunctionNode with Compute Reduction Demonstration (#31378)
* init branch
* add example meta data
* remove logs, simplify comments, use more appropriate syntax (instancedArray instead of storage)
* new screenshot
* remove unused function
* add screenshot to puppeteer exceptions
* work
*... | [
{
"path": "examples/files.json",
"patch": "@@ -312,6 +312,7 @@\n \t\t\"webgpu_compute_particles_rain\",\n \t\t\"webgpu_compute_particles_snow\",\n \t\t\"webgpu_compute_points\",\n+\t\t\"webgpu_compute_reduce\",\n \t\t\"webgpu_compute_sort_bitonic\",\n \t\t\"webgpu_compute_texture\",\n \t\t\"webgpu_compute_t... | 2025-08-13T15:05:37 |
golang/go | 35abaf75c35adc9b22038885781b8be70a8476e0 | 07f7f8ca5202bdcd39216e25b4a5b2c309ea727f | encoding/json: use pooled encoder in Encoder.Encode
Due to the lack of MarshalWrite in the v1 API,
it is unfortunately common to see:
json.NewEncoder(out).Encode(in)
where a single-use Encoder is constructed and thrown away.
This performed acceptably in v1 since every call to Encode
used a globally pooled encode... | [
{
"path": "src/encoding/json/bench_test.go",
"patch": "@@ -14,6 +14,7 @@ package json\n \n import (\n \t\"bytes\"\n+\t\"crypto/sha256\"\n \t\"fmt\"\n \t\"internal/testenv\"\n \t\"internal/zstd\"\n@@ -581,3 +582,19 @@ func BenchmarkUnmarshalNumber(b *testing.B) {\n \t\t}\n \t}\n }\n+\n+func BenchmarkNewEncod... | 2026-01-30T20:15:31 |
tensorflow/tensorflow | 05cdf082488fe4c3938dc78ac25b4100db1b6e13 | 84c6cb4f63be42f4ba2a40022affbfa5a6d21742 | PR #38563: [xla:gpu] Improve error logging when NCCL init fails
Imported from GitHub PR https://github.com/openxla/xla/pull/38563
1. Improve error logging when NCCL init fails
2. Add a test for comm splitting
3. Use modern xla::Future APIs to join futures together
Copybara import of the project:
--
8d70a084738734901... | [
{
"path": "third_party/xla/xla/backends/gpu/collectives/BUILD",
"patch": "@@ -274,6 +274,7 @@ xla_cc_test(\n \"//xla:xla_data_proto_cc\",\n \"//xla/core/collectives\",\n \"//xla/core/collectives:clique_id\",\n+ \"//xla/core/collectives:communicator\",\n \"//xla/core/co... | 2026-03-04T11:26:58 |
kubernetes/kubernetes | 65e0274e063c58eeecf7bf70265342ace0f11bf7 | 7845a9b330a8d5e6b5a09e79a15a7bf7c9463405 | DRA: Kubelet: add namespace to error messages
Include the namespace in "unable to get claim info" error messages
in prepareResources and GetResources for easier debugging. | [
{
"path": "pkg/kubelet/cm/dra/manager.go",
"patch": "@@ -416,7 +416,7 @@ func (m *Manager) prepareResources(ctx context.Context, pod *v1.Pod) error {\n \t\t\terr := m.cache.withLock(logger, func() error {\n \t\t\t\tinfo, exists := m.cache.get(claim.Name, claim.Namespace)\n \t\t\t\tif !exists {\n-\t\t\t\t\tr... | 2026-02-25T10:28:45 |
denoland/deno | f12a8b6803668ede2c910c5f01ead8bdee3d8149 | 2f42a460913eba2210a2d48e833d1e0e55423ed8 | fix(ext/node): provide CJS globals in worker_threads eval mode (#32266)
## Summary
- When using `new Worker(code, { eval: true })` in
`node:worker_threads`, Node.js evaluates the code as CommonJS, making
`require()` available. Deno was wrapping the code in a
`data:text/javascript` URL (ESM), causing `require is not de... | [
{
"path": "ext/node/polyfills/worker_threads.ts",
"patch": "@@ -364,10 +364,22 @@ class NodeWorker extends EventEmitter {\n \n if (options?.eval) {\n const code = typeof specifier === \"string\"\n- ? encodeURIComponent(specifier)\n+ ? specifier\n // deno-lint-ignore prefer-pr... | 2026-02-27T08:20:35 |
mrdoob/three.js | 0188ec227ede40e2cf1f0643f4310b52ac185c1c | 7105716d1eb80c0fe747eba2edb8002160c3a01c | PointsNodeMaterial: Fix scaling bugs (#31627)
* Fix scaling bugs
* Clean up
* Update screenshot | [
{
"path": "src/materials/nodes/PointsNodeMaterial.js",
"patch": "@@ -1,5 +1,5 @@\n import SpriteNodeMaterial from './SpriteNodeMaterial.js';\n-import { viewport } from '../../nodes/display/ScreenNode.js';\n+import { viewportSize, screenSize } from '../../nodes/display/ScreenNode.js';\n import { positionGeom... | 2025-08-12T08:03:01 |
golang/go | cce3fea08f8b2509b7651ee552111a8cc763a459 | 3b2a451cef467e42e41552cf490498d3bf39df29 | internal/poll: move buffer pinning inside execIO
This is a step towards deferring adding the handle to IOCP until the
first IO operation.
The goal of this CL is to avoid the fd.isBlocking check in fd.pin,
which was happening outside execIO, and making buffer pinning less
error-prone.
This also fixes an issue where b... | [
{
"path": "src/internal/poll/fd_windows.go",
"patch": "@@ -232,27 +232,10 @@ func (fd *FD) waitIO(o *operation) error {\n \treturn err\n }\n \n-// pin pins ptr for the duration of the IO operation.\n-// If fd is in blocking mode, pin does nothing.\n-func (fd *FD) pin(mode int, ptr any) {\n-\tif fd.isBlockin... | 2026-01-30T13:29:58 |
tensorflow/tensorflow | 84c6cb4f63be42f4ba2a40022affbfa5a6d21742 | 80c2e2c676a47692c9f09230eb33a902f90ec60c | PR #38624: [xla] Terminate loudly on missed heartbeat
Imported from GitHub PR https://github.com/openxla/xla/pull/38624
`LOG(QFATAL)` ("quiet fatal") does NOT run registered error handlers and terminates quietly. When distributed error happens we want to fail with `SIGABRT` which triggers coredump collection and make... | [
{
"path": "third_party/xla/xla/pjrt/distributed/client.h",
"patch": "@@ -77,14 +77,14 @@ class DistributedRuntimeClient\n // Exposed so tests can override this behavior to something non-fatal.\n std::function<void(absl::Status)> missed_heartbeat_callback =\n [](const absl::Status& status) {\... | 2026-03-04T11:10:34 |
golang/go | f14d8975a21e24aa33e0b496e822fdcb285879b9 | 35c5deb1d43b245c19059d1532929ee087e44a84 | runtime: align end of systemstack_switch prologue on amd64 for consistency with gosave_systemstack_switch
gosave_systemstack_switch saves PC with fixed offset of 8 bytes from systemstack_switch to bypass prologue.
This commit makes this offset consistent with actual address of UNDEF instruction intended to be at that ... | [
{
"path": "src/runtime/asm_amd64.s",
"patch": "@@ -510,6 +510,8 @@ goodm:\n // The frame layout needs to match systemstack\n // so that it can pretend to be systemstack_switch.\n TEXT runtime·systemstack_switch(SB), NOSPLIT, $0-0\n+\t// Align for consistency with offset used in gosave_systemstack_switch\n+\... | 2026-01-29T18:12:49 |
mrdoob/three.js | 75b9d9092f369d18b743de9e9ee8c0b7f28086d4 | eb7609c062744e304fb8a33da8888d172b07e1ae | WebGLRenderer, KTX2Loader: Support R11G11B10 (#31613)
* KTX2Loader: Support R11G11B10
* lint fix | [
{
"path": "examples/jsm/loaders/KTX2Loader.js",
"patch": "@@ -31,7 +31,8 @@ import {\n \tRedFormat,\n \tSRGBColorSpace,\n \tUnsignedByteType,\n-\tUnsignedInt5999Type\n+\tUnsignedInt5999Type,\n+\tUnsignedInt101111Type\n } from 'three';\n import { WorkerPool } from '../utils/WorkerPool.js';\n import {\n@@ -73... | 2025-08-10T08:33:20 |
denoland/deno | 2f42a460913eba2210a2d48e833d1e0e55423ed8 | 7545be7ce2977fb13f75ecd81c24aa57597d0ebe | fix(node/vm): support vm.constants.DONT_CONTEXTIFY in createContext (#32337)
Closes https://github.com/denoland/deno/issues/31192
Adds support for creating vanilla (non-contextified) V8 contexts via
vm.createContext(vm.constants.DONT_CONTEXTIFY). This creates a context
without property interceptors, where globalThis ... | [
{
"path": "ext/node/lib.rs",
"patch": "@@ -234,6 +234,7 @@ deno_core::extension!(deno_node,\n ops::v8::op_v8_write_value,\n ops::vm::op_vm_create_script,\n ops::vm::op_vm_create_context,\n+ ops::vm::op_vm_create_context_without_contextify,\n ops::vm::op_vm_script_run_in_context,\n ops... | 2026-02-27T01:53:18 |
mrdoob/three.js | eb7609c062744e304fb8a33da8888d172b07e1ae | 07987ea5f0614b247acbe2ecb848a456b6a34bd7 | TSL: Fix instance buffer size in `instance()`. (#31608)
Co-authored-by: user <merowinger> | [
{
"path": "src/nodes/accessors/InstanceNode.js",
"patch": "@@ -109,7 +109,9 @@ class InstanceNode extends Node {\n \t */\n \tsetup( builder ) {\n \n-\t\tconst { count, instanceMatrix, instanceColor } = this;\n+\t\tconst { instanceMatrix, instanceColor } = this;\n+\n+\t\tconst { count } = instanceMatrix;\n \... | 2025-08-09T22:31:18 |
kubernetes/kubernetes | 620c1b6305903ccd0b2904a77d812086a6f3d3ee | 8a2d153817d97a7fccc64fa683df6d8259fb1a52 | ktesting: fix potential unit test flake
I've not been able to trigger the flake, but it could happen:
- time.Sleep unblocks some background goroutines inside the synctest bubble.
- Those goroutines do not actually run yet.
- The main test checks for the result of those goroutines.
Adding a `synctest.Wait` ensures tha... | [
{
"path": "test/utils/ktesting/contexthelper_test.go",
"patch": "@@ -119,7 +119,11 @@ func TestCause(t *testing.T) {\n \t\t\t\t\t\tassert.Equal(t, tt.expectDeadline, time.Until(actualDeadline), \"remaining time till Deadline()\")\n \t\t\t\t\t}\n \t\t\t\t}\n+\t\t\t\t// Unblock background goroutines.\n \t\t\t... | 2026-02-26T07:45:35 |
golang/go | 35c5deb1d43b245c19059d1532929ee087e44a84 | afae85307206cb56851c31652bd9ae45ba60c800 | all: switch linux-ppc64 target to ELFv2 ABI
Go is only capable of producing internally linked, static binaries
on linux-ppc64. As such, binaries should run in either ELFv1 or
ELFv2 ppc64 userspaces today.
This opens the door to enabling cgo and external linking which
will require ELFv2 support and userspace, eventual... | [
{
"path": "src/cmd/link/internal/ld/elf.go",
"patch": "@@ -178,14 +178,7 @@ func Elfinit(ctxt *Link) {\n \n \tswitch ctxt.Arch.Family {\n \t// 64-bit architectures\n-\tcase sys.PPC64, sys.S390X:\n-\t\tif ctxt.Arch.ByteOrder == binary.BigEndian && ctxt.HeadType != objabi.Hopenbsd {\n-\t\t\tehdr.Flags = 1 // ... | 2026-01-07T19:48:53 |
denoland/deno | 7545be7ce2977fb13f75ecd81c24aa57597d0ebe | c76ab60e5b8068bd5457da5033145792e13a6154 | fix: deflake run_watch_env_file_with_multiline_values (#32346) | [
{
"path": "tests/integration/watcher_tests.rs",
"patch": "@@ -2563,13 +2563,18 @@ console.log(\"---\");\n .arg(\"--watch\")\n .arg(\"--allow-env\")\n .arg(\"--env-file=.env\")\n+ .arg(\"-L\")\n+ .arg(\"debug\")\n .arg(&main_script)\n .env(\"NO_COLOR\", \"1\")\n .piped_output()\... | 2026-02-26T21:54:24 |
swiftlang/swift | 3a377608e23546bc3f128fd197275bd96203abb7 | 86792e46bcf289766e7b1fef2a0637c8b0957118 | [swift][build-script] Enable split-dwarf for RelWithDebInfo on Linux and FreeBSD (#87743)
split-dwarf is enabled by default on non-release builds instead of
builds with debug info, which incorrectly excludes `RelWithDebInfo`
builds.
Support split-dwarf on FreeBSD | [
{
"path": "utils/swift_build_support/swift_build_support/products/llvm.py",
"patch": "@@ -246,10 +246,12 @@ def build(self, host_target):\n platform, arch,\n crosscompiling=self.is_cross_compile_target(host_target))\n llvm_cmake_options.define('CMAKE_TOOLCHAIN_FIL... | 2026-03-12T10:32:41 |
mrdoob/three.js | 07987ea5f0614b247acbe2ecb848a456b6a34bd7 | e9b314560e58c627feba169fdcd9801b8d8f6d48 | fix DragControls events when buttons are disabled (#31612)
Co-authored-by: user <merowinger> | [
{
"path": "examples/jsm/controls/DragControls.js",
"patch": "@@ -305,6 +305,7 @@ function onPointerMove( event ) {\n \t\t\tif ( raycaster.ray.intersectPlane( _plane, _intersection ) ) {\n \n \t\t\t\t_selected.position.copy( _intersection.sub( _offset ).applyMatrix4( _inverseMatrix ) );\n+\t\t\t\tthis.dispat... | 2025-08-09T21:17:09 |
golang/go | bae9486d07706bcc216961f504e75d1fb5c5aec8 | c08f6a5b2651b2ce4a9510952fb88739719fe5a4 | cmd/compile/internal/bloop: avoid extraneous heap allocs in b.Loop body due to autotmp variable scope
The motivating example I created for #73137 still seems
to heap allocate in go1.26rc2 when used in a b.Loop body.
│ go1.25 │ go1.26rc2 │
│ allocs... | [
{
"path": "src/cmd/compile/internal/bloop/bloop.go",
"patch": "@@ -155,6 +155,10 @@ func preserveCallResults(curFn *ir.Func, call *ir.CallExpr) ir.Node {\n \n \tassign := typecheck.AssignExpr(ir.NewAssignListStmt(call.Pos(), ir.OAS2, lhs, ir.Nodes{call})).(*ir.AssignListStmt)\n \tassign.Def = true\n+\tfor _... | 2026-01-23T20:59:40 |
kubernetes/kubernetes | 8a2d153817d97a7fccc64fa683df6d8259fb1a52 | dbe44e35849f2e466c223fa98e97407330966c11 | ktesting: fix potential log panic
If the goroutine happens to log after the test has already terminated,
testing.T.Log panics. We must ensure that the goroutine has stopped before
allowing the test to terminate. | [
{
"path": "test/utils/ktesting/contexthelper.go",
"patch": "@@ -48,11 +48,17 @@ func withTimeout(ctx context.Context, tb TB, timeout time.Duration, timeoutCause\n \tcancelCtx, cancel := context.WithCancelCause(ctx)\n \tafter := time.NewTimer(timeout)\n \tstopCtx, stop := context.WithCancel(ctx) // Only used... | 2026-02-26T07:44:18 |
denoland/deno | c76ab60e5b8068bd5457da5033145792e13a6154 | 124de8b54f2675732346da76a577fbb061ba8d65 | chore: upgrade rustyline to 17.0 and nix to 0.30 (#32344)
Upgrade rustyline to v17.0.0 (with custom-bindings feature)
and rustyline-derive to v0.11.1. Upgrade nix to v0.30.1 to align
with rustyline 17's dependency.
API changes:
- highlight_char: bool → CmdKind parameter
- set_keyseq_timeout: i32 → Option<i32>
- Readl... | [
{
"path": "Cargo.lock",
"patch": "@@ -1708,7 +1708,7 @@ dependencies = [\n \"malva\",\n \"markup_fmt\",\n \"memchr\",\n- \"nix 0.27.1\",\n+ \"nix 0.30.1\",\n \"node_resolver\",\n \"node_shim\",\n \"notify\",\n@@ -2184,7 +2184,7 @@ dependencies = [\n \"filetime\",\n \"junction\",\n \"libc\",\n- \"ni... | 2026-02-26T21:22:57 |
tensorflow/tensorflow | d07a57f2cd73468a447e17680ed0b895f60a7366 | 425c45a2f261bcb27331b0869a56d344e4cc2840 | Fix wrong return type for function.
PiperOrigin-RevId: 878350765 | [
{
"path": "tensorflow/compiler/mlir/lite/tests/ops.mlir",
"patch": "@@ -2687,7 +2687,7 @@ func.func @testFullyConnectedWith3DFilter(%arg0: tensor<1x37xf32>, %arg1: tensor\n \n // -----\n \n-func.func @testFullyConnectedWithBadInputShape(%arg0: tensor<2x2x11xf32>, %arg1: tensor<40x40xf32>, %arg2: none) -> te... | 2026-03-04T09:12:49 |
mrdoob/three.js | 67b90935577b63e4acff4b528f6e82745b2a07fb | 334022348e666a7cd61c1a44d904f3600fb09d73 | TSL: Fix member type in function layout (#31609) | [
{
"path": "src/nodes/code/FunctionCallNode.js",
"patch": "@@ -69,12 +69,31 @@ class FunctionCallNode extends TempNode {\n \n \t}\n \n+\t/**\n+\t * Returns the type of this function call node.\n+\t *\n+\t * @param {NodeBuilder} builder - The current node builder.\n+\t * @returns {string} The type of this nod... | 2025-08-09T04:31:21 |
golang/go | c08f6a5b2651b2ce4a9510952fb88739719fe5a4 | 14a4cb13e389d8dbc1ba3ba0097e208f1436a22a | cmd/link: put type:* at the start of the type descriptors
That used to happen naturally because the symbol had zero size.
After CL 724261 we need to force it.
Fixes #77372
Change-Id: Ia8eef989bc9cbad5459b60ff6535136e7e0c6cab
Reviewed-on: https://go-review.googlesource.com/c/go/+/740400
Reviewed-by: Keith Randall <kh... | [
{
"path": "src/cmd/link/internal/ld/data.go",
"patch": "@@ -2395,6 +2395,9 @@ func (state *dodataState) dodataSect(ctxt *Link, symn sym.SymKind, syms []loader\n \t\t// sorted by type string. The reflect package will use\n \t\t// this to ensure that type descriptor pointers are unique.\n \n+\t\t// We define ... | 2026-01-29T22:50:05 |
denoland/deno | 124de8b54f2675732346da76a577fbb061ba8d65 | e224b7e166c2edd26b7b4d2c47480fb3e2c5868b | fix(lsp): tsgo typings for bytes/text imports (#32333) | [
{
"path": "cli/lsp/documents.rs",
"patch": "@@ -42,6 +42,7 @@ use node_resolver::NodeResolutionKind;\n use node_resolver::ResolutionMode;\n use node_resolver::cache::NodeResolutionThreadLocalCache;\n use once_cell::sync::Lazy;\n+use percent_encoding::percent_decode_str;\n use serde::Serialize;\n use tower_l... | 2026-02-26T20:42:01 |
swiftlang/swift | 5945030af16a1b4921180c0a980056a6cfefc369 | 095cb2fab7f3d97b359826c4ef58341c23ad7c85 | [Section] Do not diagnose static-initialization failure on an already-erroneous context
If we encounter an error prior to 'initialize-static-globals', this pass will not run, and will not convert globals to be statically-initialized at all, regardless of whether or not it would have been possible. This means that diag... | [
{
"path": "SwiftCompilerSources/Sources/Optimizer/ModulePasses/DiagnoseUnknownConstValues.swift",
"patch": "@@ -37,6 +37,14 @@ let diagnoseUnknownConstValues = ModulePass(name: \"diagnose-unknown-const-values\n }\n \n private func verifyGlobals(_ context: ModulePassContext) {\n+ // In case of a preceding e... | 2026-03-11T14:13:21 |
mrdoob/three.js | 334022348e666a7cd61c1a44d904f3600fb09d73 | f396dcb2edec54e2fd8c5ced1578854560daf330 | TSL: Fix missing `getMemberType()` in `context()` (#31601) | [
{
"path": "src/nodes/core/ContextNode.js",
"patch": "@@ -78,6 +78,19 @@ class ContextNode extends Node {\n \n \t}\n \n+\t/**\n+\t * This method is overwritten to ensure it returns the member type of {@link ContextNode#node}.\n+\t *\n+\t * @param {NodeBuilder} builder - The current node builder.\n+\t * @para... | 2025-08-09T02:57:59 |
golang/go | 14a4cb13e389d8dbc1ba3ba0097e208f1436a22a | ee7a2119ac17ea2a6bbf12b4c8001bf39c388166 | cmd/compile: make prove use non-equality in subtraction for a stronger bound
Given:
s := /* slice */
k := /* proved valid index in s (0 <= k < len(s)) */
v := s[k:]
len(v) >= 1, so v[0] needs no bounds check. However, for
len(v) = len(s) - k, we only checked if len(s) >= k and so could only
prove len(v) >= 0, t... | [
{
"path": "src/cmd/compile/internal/ssa/prove.go",
"patch": "@@ -2187,24 +2187,22 @@ func (ft *factsTable) detectSubRelations(v *Value) {\n \t\treturn // x-y might overflow\n \t}\n \n-\t// Subtracting a positive number only makes\n-\t// things smaller.\n-\tif yLim.min >= 0 {\n+\t// Subtracting a positive no... | 2026-01-29T19:45:27 |
denoland/deno | e224b7e166c2edd26b7b4d2c47480fb3e2c5868b | f6cedf7dcc2e1bec8640c44a122abfa8bfc6b8c5 | fix(install): do not panic if lockfile incorrectly says package has a bin (#32345)
Confirmed added test panics before this PR, passes after | [
{
"path": "libs/npm_installer/bin_entries.rs",
"patch": "@@ -81,10 +81,14 @@ impl<'a, TSys: SetupBinEntrySys> BinEntries<'a, TSys> {\n extra: &'b NpmPackageExtraInfo,\n package_path: PathBuf,\n ) {\n+ let Some(bin) = extra.bin.as_ref() else {\n+ // likely lockfile incorrectly said that the... | 2026-02-26T20:15:10 |
tensorflow/tensorflow | 945df5f26dba265151ad1a9d0568ce7b74d42367 | eff316b62a7922f66de190987d523b00c4caf268 | Avoid setting memory space on non-array shapes.
The HostOffloader pass was crashing when attempting to set the memory space on non-array shapes (such as tokens) because they do not have layouts. This change modifies SetMemorySpace to only apply the memory space update to array shapes. A test case is added to ensure th... | [
{
"path": "third_party/xla/xla/hlo/transforms/host_offloader.cc",
"patch": "@@ -66,8 +66,10 @@ using ::xla::host_offload_utils::InstructionAndShapeIndex;\n void SetMemorySpace(Shape* shape, int64_t memory_space_color) {\n ShapeUtil::ForEachMutableLeafShape(\n shape, [memory_space_color](Shape* subsh... | 2026-03-04T02:01:31 |
mrdoob/three.js | f396dcb2edec54e2fd8c5ced1578854560daf330 | 875d092837c39d091ee28a2f448dbf37ce95740f | WebGPURenderer: Fix broken worker support. (#31607) | [
{
"path": "src/renderers/common/Textures.js",
"patch": "@@ -376,7 +376,7 @@ class Textures extends DataMap {\n \n \t\t\tif ( image.image !== undefined ) image = image.image;\n \n-\t\t\tif ( image instanceof HTMLVideoElement ) {\n+\t\t\tif ( ( typeof HTMLVideoElement !== 'undefined' ) && ( image instanceof H... | 2025-08-08T17:56:33 |
kubernetes/kubernetes | e54eef10d1b79b5ea13101ff2df198a9981bef30 | 761638907a5ebe7fc2e85b2e1a5a43d7356e2cec | Use localhost image reference in PodObservedGenerationTracking test
The test uses an invalid image to induce a pull error. The previous image
name 'some-image-that-doesnt-exist' causes slow DNS/registry resolution
on some environments (especially metal), leading to 30s timeouts.
Using 'localhost/some-image-that-does-... | [
{
"path": "test/e2e/node/pods.go",
"patch": "@@ -695,7 +695,7 @@ var _ = SIGDescribe(\"Pods Extended (pod generation)\", func() {\n \t\t\t// Set the pod image to something that doesn't exist to induce a pull error\n \t\t\t// to start with.\n \t\t\tagnImage := pod.Spec.Containers[0].Image\n-\t\t\tpod.Spec.Co... | 2026-02-26T04:34:00 |
swiftlang/swift | 3f17264dba21da566275ddb39f045d2857abe85f | c5acb6d1795b7988c031a596ddbc70079287df39 | ForEachLoopUnroll: don't assume fixed lifetimes when deleting instructions
ForEachLoopUnroll runs in the mandatory pipeline. Therefore it can shrink non-lexical lifetimes.
rdar://169095733 | [
{
"path": "lib/SILOptimizer/LoopTransforms/ForEachLoopUnroll.cpp",
"patch": "@@ -668,7 +668,7 @@ class ForEachLoopUnroller : public SILFunctionTransform {\n if (!fun.hasOwnership())\n return;\n \n- InstructionDeleter deleter;\n+ InstructionDeleter deleter(/*assumeFixedLifetimes=*/ false);\n ... | 2026-03-11T07:10:01 |
golang/go | ee7a2119ac17ea2a6bbf12b4c8001bf39c388166 | 48788436b8c9a87d056e52cf90d493940b610b4d | cmd/link: remove AIX special case for first type descriptor
It doesn't seem to be necessary, and removing it seems cleaner
than adding an AIX case to the code in runtime.moduleTypelinks.
Fixes #77365
Change-Id: I59fa56abf42e18017bd112481ea09d0cca47d105
Reviewed-on: https://go-review.googlesource.com/c/go/+/740220
Re... | [
{
"path": "src/cmd/link/internal/ld/data.go",
"patch": "@@ -2182,7 +2182,7 @@ func (state *dodataState) allocateDataSections(ctxt *Link) {\n \tcreateRelroSect := func(name string, symn sym.SymKind) *sym.Section {\n \t\tsect := state.allocateNamedDataSection(segRelro, genrelrosecname(name), []sym.SymKind{sym... | 2026-01-29T08:51:32 |
denoland/deno | f6cedf7dcc2e1bec8640c44a122abfa8bfc6b8c5 | dca6b1a9ed2561ff5300aaa47437b4910646e44b | fix(install): global install should not warn about using node_modules dir for npm specifiers (#32341) | [
{
"path": "cli/args/mod.rs",
"patch": "@@ -1184,6 +1184,9 @@ impl CliOptions {\n .first()\n .and_then(|url| file_to_url(url))\n .map(|url| vec![url]),\n+ DenoSubcommand::Install(InstallFlags::Local(\n+ InstallFlagsLocal::Entrypoints(flags),\n+ )) => Some(... | 2026-02-26T17:01:30 |
mrdoob/three.js | 875d092837c39d091ee28a2f448dbf37ce95740f | fda27bb22a5cda8519f47c4f45dd391ce66fc58d | FirstPersonControls: Fix dispose not release listener (#31606) | [
{
"path": "examples/jsm/controls/FirstPersonControls.js",
"patch": "@@ -194,8 +194,8 @@ class FirstPersonControls extends Controls {\n \t\twindow.removeEventListener( 'keydown', this._onKeyDown );\n \t\twindow.removeEventListener( 'keyup', this._onKeyUp );\n \n-\t\tthis.domElement.removeEventListener( 'poin... | 2025-08-08T17:50:15 |
tensorflow/tensorflow | d4104b7785e45c1ff0cfbf7f16ecac808259af3b | a04ff525ef8214eb5f17cc0bb006ede9065dc5a9 | Update nanobind to commit 54d509920c8e775710de479ba7ec6c7198979038.
To include 1b0e37f7c9379dd6de644755dba407fbbdf8ff85, which fixes a data race.
PiperOrigin-RevId: 878103718 | [
{
"path": "third_party/xla/third_party/nanobind/workspace.bzl",
"patch": "@@ -5,8 +5,8 @@ load(\"//third_party:repo.bzl\", \"tf_http_archive\", \"tf_mirror_urls\")\n def repo():\n tf_http_archive(\n name = \"nanobind\",\n- strip_prefix = \"nanobind-2.12.0\",\n- sha256 = \"01f1f0cd0... | 2026-03-03T21:34:23 |
golang/go | 48788436b8c9a87d056e52cf90d493940b610b4d | 5593ea463498dce06a1b52dce2918912a9db6c4e | go/token: simplify fixOffset
Each time I go to definition of this I am deeply confused
at what I am looking, so let's clean this a bit with modern Go.
Change-Id: I8f44e78f0cdde9b970388f9b98a2720e6a6a6964
Reviewed-on: https://go-review.googlesource.com/c/go/+/738341
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-proj... | [
{
"path": "src/go/token/position.go",
"patch": "@@ -276,26 +276,12 @@ func (f *File) AddLineColumnInfo(offset int, filename string, line, column int)\n \n // fixOffset fixes an out-of-bounds offset such that 0 <= offset <= f.size.\n func (f *File) fixOffset(offset int) int {\n-\tswitch {\n-\tcase offset < 0... | 2026-01-23T15:12:27 |
swiftlang/swift | c5acb6d1795b7988c031a596ddbc70079287df39 | 057635d4de9e747bc0ce810f63177d727425a1c9 | ConstantFolding: don't assume fixed lifetimes in diagnostic constant folding
In the mandatory pipeline optimizations are allowed to shrink non-lexical lifetimes.
This is needed to remove dead strings which are a result of OSLogOptimization.
rdar://169095733 | [
{
"path": "include/swift/SILOptimizer/Utils/InstOptUtils.h",
"patch": "@@ -89,7 +89,8 @@ unsigned getNumInOutArguments(FullApplySite applySite);\n ///\n /// \\p callbacks.onDelete() is invoked to delete each instruction.\n void eliminateDeadInstruction(SILInstruction *inst,\n- I... | 2026-03-11T07:02:26 |
denoland/deno | dca6b1a9ed2561ff5300aaa47437b4910646e44b | 126b6fb5da78621cdbbd9465a805f415e9fdb794 | Revert "fix(ext/node): implement `after`, `afterEach`, `before`, and … (#32340)
…`beforeEach` of `node:test` (#32320)"
This reverts commit 9612761ee60df178b418ca756c181ff0757483dd.
The tests from this commit are flaky and failing on `main`. | [
{
"path": "ext/node/polyfills/testing.ts",
"patch": "@@ -21,8 +21,6 @@ const {\n import { notImplemented } from \"ext:deno_node/_utils.ts\";\n import assert from \"node:assert\";\n \n-type HookFn = () => void | Promise<void>;\n-\n const methodsToCopy = [\n \"deepEqual\",\n \"deepStrictEqual\",\n@@ -63,3... | 2026-02-26T16:35:15 |
mrdoob/three.js | 01b8d301003f707e87746d4c792da4ff877e1882 | 730c742e12c7a62963a99687b25e9ae98db81976 | GLTFExporter: Make `getToBlobPromise()` more robust. (#31598)
* - fixed for Firefox 141.0.2+ not resolving promise with Offscreencanvas when exporting GLTF/GLB images
* Update package.json
* - updates based on PR comments
* Update GLTFExporter.js
* Update GLTFExporter.js
Rewrite `getToBlobPromise()`.
---------
... | [
{
"path": "examples/jsm/exporters/GLTFExporter.js",
"patch": "@@ -543,32 +543,36 @@ function getCanvas() {\n \n function getToBlobPromise( canvas, mimeType ) {\n \n-\tif ( canvas.toBlob !== undefined ) {\n+\tif ( typeof OffscreenCanvas !== 'undefined' && canvas instanceof OffscreenCanvas ) {\n \n-\t\treturn... | 2025-08-07T15:28:32 |
golang/go | 10ed9b6ed5ffadf16151d98a188a4242515b62e9 | 11722941452d04aa0364a5c6b60acffaa2776b1c | runtime: use smaller max align for arm32
Maybe fixes a dashboard build failure for linux/arm32 casued
by CL 724261.
This value comes from cmd/link/internal/arm/l.go (and in general,
maxAlign in cmd/link/internal/$ARCH/<something>.go).
Change-Id: I4d02cd41072da1b6ad6c7405044bd7788626b013
Reviewed-on: https://go-revie... | [
{
"path": "src/runtime/type.go",
"patch": "@@ -526,7 +526,11 @@ func moduleTypelinks(md *moduledata) []*_type {\n \tfor td < etypedesc {\n \t\t// TODO: The fact that type descriptors are aligned to\n \t\t// 0x20 does not make sense.\n-\t\ttd = alignUp(td, 0x20)\n+\t\tif GOARCH == \"arm\" {\n+\t\t\ttd = alig... | 2026-01-28T23:39:46 |
tensorflow/tensorflow | a04ff525ef8214eb5f17cc0bb006ede9065dc5a9 | db3c53d2b1ed205a56ed4f49cdd057a5d0bc9886 | [XLA Test Fixture Migration] Migrate CPU codegen tests to use HloPjRtTestBase.
PiperOrigin-RevId: 878093547 | [
{
"path": "third_party/xla/xla/service/cpu/tests/BUILD",
"patch": "@@ -32,13 +32,27 @@ filegroup(\n )\n \n cc_library(\n- name = \"cpu_codegen_test_main\",\n+ name = \"cpu_pjrt_codegen_test\",\n testonly = True,\n- hdrs = [\"cpu_codegen_test.h\"],\n+ srcs = [\"cpu_pjrt_codegen_test.cc\"],\n+... | 2026-03-03T21:14:25 |
kubernetes/kubernetes | a11feac678317dc1d9d6e48cb93328a3e8b9a5b7 | 701db6b6a60fcd7c11be7f0876239de5bcbbf2ee | validation-gen: Fix missing MarkAlpha/MarkBeta for nested validation tags
The validation code generator was failing to propagate the
StabilityLevel from the parent context when evaluating composite tags
like `+k8s:item`, `+k8s:each`, and `+k8s:subfield`. As a result, inner
validations like `+k8s:zeroOrOneOfMember` com... | [
{
"path": "pkg/apis/certificates/v1/zz_generated.validations.go",
"patch": "@@ -109,7 +109,7 @@ func Validate_CertificateSigningRequestStatus(ctx context.Context, op operation.\n \t\t\t\t\t}\n \t\t\t\t}\n \t\t\t\treturn false\n-\t\t\t})...)\n+\t\t\t}).MarkAlpha()...)\n \t\t\treturn\n \t\t}(fldPath.Child(\"c... | 2026-02-25T17:42:21 |
denoland/deno | d7208c94811c07b17e8113fd964a9d7b58baca56 | 8209f3d4198325289192743d4881b2b334e84b7e | chore: fix duplicate words in source comments (#32314) | [
{
"path": "libs/lockfile/graphs.rs",
"patch": "@@ -276,7 +276,7 @@ impl LockfilePackageGraph {\n \n fn remove_root_pkg_by_id(&mut self, id: &LockfilePkgId) {\n // The ideal goal here is to only disassociate the package\n- // from the root so that the the current dependencies can be\n+ // from th... | 2026-02-26T14:40:57 |
swiftlang/swift | 920029185ca1aac2647801b57727a00470ad8b20 | 057635d4de9e747bc0ce810f63177d727425a1c9 | TempLValueElimination: dont' insert an early destroy in non-OSSA
In non-OSSA we cannot insert an early `destroy_addr`, because a loaded value could be retained later, e.g.
```
%1 = load %destination
... // we cannot insert a `destroy_addr %destination` here!
stores to %temp
strong_retain %1... | [
{
"path": "SwiftCompilerSources/Sources/Optimizer/FunctionPasses/TempLValueElimination.swift",
"patch": "@@ -95,6 +95,17 @@ private func tryEliminate(copy: CopyLikeInstruction, _ context: FunctionPassCont\n // ```\n let needDestroyEarly = !copy.isInitializationOfDestination && !isTrivial\n \n+ if needD... | 2026-03-11T16:42:30 |
mrdoob/three.js | 62623db5dde71cf8a9a590af901da6727bbcd790 | 8722ea5455a6a6623f194b9a60ef5887ac16a4b0 | TSL: Fix performance of `viewportTexture()` (#31591)
* fix cache and reference
* fix shared frame buffer
* TexturesNode: Introduce `getBase()`
* Update ViewportTextureNode.js | [
{
"path": "src/nodes/accessors/TextureNode.js",
"patch": "@@ -548,7 +548,7 @@ class TextureNode extends UniformNode {\n \n \t\tconst textureNode = this.clone();\n \t\ttextureNode.uvNode = nodeObject( uvNode );\n-\t\ttextureNode.referenceNode = this.getSelf();\n+\t\ttextureNode.referenceNode = this.getBase()... | 2025-08-07T08:26:24 |
golang/go | 11722941452d04aa0364a5c6b60acffaa2776b1c | 2bd7f15dd7423b6817939b199cd2c8032e3b79cc | runtime, cmd/link: store type descriptor length, not end
Storing the type descriptor length lets us save a relocation.
It also avoids a problem for Darwin dynamic linking.
For #6853
Fixes #77350
Change-Id: If5c94330fe10d75690325f3d0b0658060ef3eb2d
Reviewed-on: https://go-review.googlesource.com/c/go/+/739681
Reviewe... | [
{
"path": "src/cmd/link/internal/ld/data.go",
"patch": "@@ -1535,10 +1535,6 @@ func fixZeroSizedSymbols(ctxt *Link) {\n \ttypes.SetSize(8)\n \tldr.SetAttrSpecial(types.Sym(), false)\n \n-\tetypedesc := ldr.CreateSymForUpdate(\"runtime.etypedesc\", 0)\n-\tetypedesc.SetType(sym.STYPE)\n-\tldr.SetAttrSpecial(e... | 2026-01-28T01:34:46 |
tensorflow/tensorflow | 20606c9fc404ea1e08cd7c02de4d6ebc82735e4a | ae78e457424fabae5f0da10142ab553dba37db00 | Rely on IFRT types implementing AbslStringify rather than calling the deprecated DebugString method
PiperOrigin-RevId: 878012351 | [
{
"path": "tensorflow/core/tfrt/ifrt/ifrt_serving_executable.cc",
"patch": "@@ -989,7 +989,7 @@ absl::StatusOr<std::vector<tensorflow::Tensor>> IfrtServingExecutable::Execute(\n const xla::ifrt::ArrayRef& array_for_copy = execution_result->outputs[i];\n // IFRT's return does not contain sufficient i... | 2026-03-03T18:21:18 |
denoland/deno | defb168115d29be50d40d8f61aa2b854bfaacdd9 | 9612761ee60df178b418ca756c181ff0757483dd | fix(ext/node): rename conflict callback field typo (#32306)
Co-authored-by: Rohan Santhosh <181558744+Rohan5commit@users.noreply.github.com> | [
{
"path": "ext/node_sqlite/database.rs",
"patch": "@@ -1084,7 +1084,7 @@ impl DatabaseSync {\n \n struct HandlerCtx<'a, 'b, 'c> {\n scope: &'a mut v8::PinScope<'b, 'c>,\n- confict: Option<v8::Local<'b, v8::Function>>,\n+ conflict: Option<v8::Local<'b, v8::Function>>,\n filter: Opti... | 2026-02-26T09:30:21 |
kubernetes/kubernetes | 008b92e0f6b749d07ab734a524720e8550f69fa5 | c6d1649721838ebc773c58fdb00592074af15e65 | Fix clearing job consistency store for all deletes | [
{
"path": "pkg/controller/job/job_controller.go",
"patch": "@@ -601,6 +601,10 @@ func (jm *Controller) deleteJob(logger klog.Logger, obj interface{}) {\n \t\t\treturn\n \t\t}\n \t}\n+\tjm.consistencyStore.Clear(types.NamespacedName{\n+\t\tNamespace: jobObj.Namespace,\n+\t\tName: jobObj.Name,\n+\t}, job... | 2026-02-25T17:13:50 |
mrdoob/three.js | 7d8b148cd3b44ac72f0be5fd6d8528d2764e1bb5 | eda8be6f4411ed13d9e7283973dde6305a908e56 | TSL: Improve error message for operators with `void` values (#31593) | [
{
"path": "src/nodes/math/OperatorNode.js",
"patch": "@@ -103,9 +103,10 @@ class OperatorNode extends TempNode {\n \t * and the input node types.\n \t *\n \t * @param {NodeBuilder} builder - The current node builder.\n+\t * @param {?string} [output=null] - The output type.\n \t * @return {string} The node t... | 2025-08-07T01:54:52 |
golang/go | 15882523a18cf7653c17e7c91aeaa1174a23702b | 3c924059e66427eface8d357adcf1566e3be847a | go/parser: use (*Scanner).End in error testing
Updates #74958
Change-Id: I43dcbff6ec828bddf157b2e6ec80df526a6a6964
Reviewed-on: https://go-review.googlesource.com/c/go/+/738700
Reviewed-by: Alan Donovan <adonovan@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Rev... | [
{
"path": "src/go/parser/error_test.go",
"patch": "@@ -81,6 +81,8 @@ func expectedErrors(fset *token.FileSet, filename string, src []byte) map[token.\n \n \tfor {\n \t\tpos, tok, lit := s.Scan()\n+\t\tend := s.End()\n+\n \t\tswitch tok {\n \t\tcase token.EOF:\n \t\t\treturn errors\n@@ -104,13 +106,7 @@ func... | 2026-01-23T09:19:18 |
denoland/deno | 9612761ee60df178b418ca756c181ff0757483dd | 7a2fdf504f94ef695c6498f4591068e1145fdd63 | fix(ext/node): implement `after`, `afterEach`, `before`, and `beforeEach` of `node:test` (#32320) | [
{
"path": "ext/node/polyfills/testing.ts",
"patch": "@@ -21,6 +21,8 @@ const {\n import { notImplemented } from \"ext:deno_node/_utils.ts\";\n import assert from \"node:assert\";\n \n+type HookFn = () => void | Promise<void>;\n+\n const methodsToCopy = [\n \"deepEqual\",\n \"deepStrictEqual\",\n@@ -61,1... | 2026-02-26T09:19:43 |
mrdoob/three.js | eda8be6f4411ed13d9e7283973dde6305a908e56 | 4bc8511b97e16257270ca75aa885e53fb1bba503 | TSL Transpiler: Fix addition of `Before` for non `++` or `--` (#31579) | [
{
"path": "examples/jsm/transpiler/TSLEncoder.js",
"patch": "@@ -340,7 +340,7 @@ class TSLEncoder {\n \n \t\t\tif ( node.hasAssignment ) {\n \n-\t\t\t\tif ( node.after === false ) {\n+\t\t\t\tif ( node.after === false && ( node.type === '++' || node.type === '--' ) ) {\n \n \t\t\t\t\ttype += 'Before';\n ",
... | 2025-08-07T01:11:09 |
tensorflow/tensorflow | ca38fc67159bd7e6a944d7e32580b30fc0039a59 | 1f45a96a6b2091be1f658cc698933b2d6f4832f3 | [XLA:GPU] Fix error when accessing missing custom call state.
The logic previously assumed the custom call state was always initialised which is not true if the custom call does not register a `prepare` or `initialize` handler.
PiperOrigin-RevId: 877933556 | [
{
"path": "third_party/xla/xla/backends/gpu/runtime/command_buffer_cmd.cc",
"patch": "@@ -1350,10 +1350,13 @@ CustomCallCmd::RecordXlaFfiCall(const Thunk::ExecuteParams& execute_params,\n ffi::ExecutionState* prepare_state = nullptr;\n ffi::ExecutionState* initialize_state = nullptr;\n if (execute_par... | 2026-03-03T15:17:19 |
kubernetes/kubernetes | d7cc386716a5c9739b3542388548af8878ffd52e | 97abc89130d279ff4356ba53c33205ca2e3c4760 | fix: refine cleanup logic
Signed-off-by: Penghao <pewang@redhat.com> | [
{
"path": "test/e2e/storage/framework/volume_group_snapshot_resource.go",
"patch": "@@ -141,34 +141,28 @@ func (r *VolumeGroupSnapshotResource) getVolumeSnapshotContentNames(ctx context.\n func (r *VolumeGroupSnapshotResource) cleanupRetainedVolumeSnapshotContents(ctx context.Context, dc dynamic.Interface, ... | 2026-02-25T14:16:00 |
swiftlang/swift | 729d9860fe57ccc2162a96e84dd6cd83bc8bfdd0 | e11a5a9f61b65a57f7f1a65567cf243a9c7520df | Fix new scalar names introduced in Unicode 17 | [
{
"path": "stdlib/public/core/UnicodeScalarProperties.swift",
"patch": "@@ -1203,22 +1203,21 @@ extension Unicode.Scalar.Properties {\n case (0x3400 ... 0x4DBF),\n (0x4E00 ... 0x9FFF),\n (0x20000 ... 0x2A6DF),\n- (0x2A700 ... 0x2B739),\n- (0x2B740 ... 0x2B81D),\n- ... | 2026-03-11T20:40:02 |
mrdoob/three.js | 128c0547353fdea12dbaa0e05f80ce9337f9af9a | bc1c2bbced815b4995524645672122814f8fa122 | WebGLBackend:Hhonor layerUpdates for array textures. (#31582)
* webgl-fallback: honor layerUpdates for array textures
* fix linting
---------
Co-authored-by: user <merowinger> | [
{
"path": "src/renderers/webgl-fallback/utils/WebGLTextureUtils.js",
"patch": "@@ -1,5 +1,6 @@\n import { LinearFilter, LinearMipmapLinearFilter, LinearMipmapNearestFilter, NearestFilter, NearestMipmapLinearFilter, NearestMipmapNearestFilter, FloatType, MirroredRepeatWrapping, ClampToEdgeWrapping, RepeatWra... | 2025-08-06T08:03:40 |
denoland/deno | 7a2fdf504f94ef695c6498f4591068e1145fdd63 | 1df618d969894353731981a17784816167ad82fb | fix(node/buffer): fix base64 decoding for strings with hyphens (#32298)
## Summary
- Fix `Buffer.from(str, "base64")` throwing on strings containing `-`
characters (e.g. `"base64-encoded-bytes-from-browser"`)
- Two bugs in `base64ToBytes` / `base64clean`:
1. Base64url character replacements (`-`→`+`, `_`→`/`) were app... | [
{
"path": "ext/node/polyfills/internal_binding/_utils.ts",
"patch": "@@ -21,8 +21,10 @@ export function base64ToBytes(str: string) {\n try {\n return forgivingBase64Decode(str);\n } catch {\n- str = base64clean(str);\n+ // Convert base64url characters to standard base64 before cleaning,\n+ ... | 2026-02-26T08:14:16 |
golang/go | 3c924059e66427eface8d357adcf1566e3be847a | 7f0f67195194cb07122315d5ab563eb617dbe21a | go/scanner: add End method to Scanner
Fixes #74958
Change-Id: I50ef64ae9ae6a762a7aada3d29914bae6a6a6964
Reviewed-on: https://go-review.googlesource.com/c/go/+/738681
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
Reviewed-by: Alan Donovan <adonovan@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-proj... | [
{
"path": "api/next/74958.txt",
"patch": "@@ -0,0 +1 @@\n+pkg go/scanner, method (*Scanner) End() token.Pos #74958",
"additions": 1,
"deletions": 0,
"language": "Plain Text"
},
{
"path": "doc/next/6-stdlib/99-minor/go/scanner/74958.md",
"patch": "@@ -0,0 +1 @@\n+The scanner now allow... | 2026-01-23T08:09:49 |
swiftlang/swift | b61e14a5fe1ef7631bcb89c6892b39e522613e65 | 4e77e91651fe11695587877890e511ade435e19c | Fix MergeCondFails pass to handle different failure messages correctly
On encountering a cond_fail with differing message, merge the accumulated cond_fail instructions and begin new merge set.
Partially resolves rdar://164947648 | [
{
"path": "SwiftCompilerSources/Sources/Optimizer/FunctionPasses/MergeCondFails.swift",
"patch": "@@ -44,7 +44,10 @@ private func runMergeCondFails(function: Function, context: FunctionPassContext)\n \n // Do not process arithmetic overflow checks. We typically generate more\n // efficient c... | 2026-03-10T23:01:22 |
mrdoob/three.js | bc1c2bbced815b4995524645672122814f8fa122 | 09eafbef66650276cad937ebc869374d0efb1ae2 | Warns for VideoTexture with non-srgb color spaces (#31569)
* warn
* fix
* Update Textures.js
Refine warning.
---------
Co-authored-by: Michael Herzog <michael.herzog@human-interactive.org> | [
{
"path": "src/renderers/common/Textures.js",
"patch": "@@ -2,7 +2,8 @@ import DataMap from './DataMap.js';\n \n import { Vector3 } from '../../math/Vector3.js';\n import { DepthTexture } from '../../textures/DepthTexture.js';\n-import { DepthStencilFormat, DepthFormat, UnsignedIntType, UnsignedInt248Type, ... | 2025-08-06T07:59:47 |
golang/go | 83b232b0af1bd498d3df099eb68e3b1e40df2527 | 6aef900af4eeb4a35d3ff1237a41cf3f63c56c24 | cmd/compile, simd: capture VAES instructions and fix AVX512VAES feature
The code previously filters out VAES-only instructions, this CL added
them back.
This CL added the VAES feature check following the Intel xed data:
XED_ISA_SET_VAES: vaes.7.0.ecx.9 # avx.1.0.ecx.28
This CL also found out that the... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/simdAMD64ops.go",
"patch": "@@ -28,16 +28,16 @@ func simdAMD64Ops(v11, v21, v2k, vkv, v2kv, v2kk, v31, v3kv, vgpv, vgp, vfpv, vf\n \t\t{name: \"VADDSUBPS128\", argLength: 2, reg: v21, asm: \"VADDSUBPS\", commutative: false, typ: \"Vec128\", resultInArg0: false},\... | 2026-01-22T17:44:32 |
denoland/deno | c08e78ddf4e6a3b1e8457039c0e2965ae147b3d4 | 1b4eac4c0a3ca77c64d0071f9716316c497ce864 | ci: fix script for release builds (#32321)
Without this condition, tagged builds were marked as canary, instead of
"stable" | [
{
"path": ".github/workflows/ci.generate.ts",
"patch": "@@ -772,6 +772,7 @@ const buildJobs = buildItems.map((rawBuildItem) => {\n {\n // do this on PRs as well as main so that PRs can use the cargo build cache from main\n name: \"Configure canary build\",\n+ ... | 2026-02-25T14:08:32 |
tensorflow/tensorflow | dc6754de2ae512bf9b761f946d6f4c3281148cee | e833a328b3ca781c3d72021d29c7cb975799d597 | [XLA:GPU]: Reattempt llvm error handling with a thread safe handler.
Reverts f79258002b4266ddfd53934d02caa6b8969925ec
PiperOrigin-RevId: 877921672 | [
{
"path": "third_party/xla/xla/backends/gpu/codegen/triton/BUILD",
"patch": "@@ -212,7 +212,6 @@ cc_library(\n \":collective_emitter\",\n \":compilation_pipeline\",\n \":lowering_util\",\n- \":support\",\n \"//xla:autotuning_proto_cc\",\n \"//xla:util\",\n ... | 2026-03-03T14:45:22 |
mrdoob/three.js | 93b9620c1b2ee4c6127eb79deacfe683122f6212 | 84aa697932c3bf4eda1a0570b7279830c69283ef | TSL: Align API of blur filters and deprecated `premultipliedGaussianBlur()` (#31559)
* remove redundant nodeObject()
* add sample interface for option.mask
* introduce options to gaussianBlur
* add `option.resolution`
* add`uv` to `sample()` node
* fix check
* remove `mask`
* Update webgpu_reflection_blurred.ht... | [
{
"path": "examples/jsm/tsl/display/GaussianBlurNode.js",
"patch": "@@ -25,8 +25,11 @@ class GaussianBlurNode extends TempNode {\n \t * @param {TextureNode} textureNode - The texture node that represents the input of the effect.\n \t * @param {Node<vec2|float>} directionNode - Defines the direction and radi... | 2025-08-06T04:49:17 |
denoland/deno | ede0e2ae4901ffa3d85d618c1a198430f76915b0 | 9c4102a765e10958fd36de3679702c61de3b7bb5 | fix(permissions): allow /proc/pressure/* files with --allow-read (#30780)
The /proc/pressure/* files (memory, cpu, io) are read-only system
monitoring files that only expose PSI (Pressure Stall Information)
metrics. These files are safe to read and commonly used for system
monitoring and performance analysis.
Previou... | [
{
"path": "runtime/permissions/lib.rs",
"patch": "@@ -4268,6 +4268,9 @@ impl PermissionsContainer {\n {\n if path.ends_with(\"/environ\") {\n self.check_env_all()?;\n+ } else if path.starts_with(\"/proc/pressure/\") {\n+ // Allow /proc/pressure/* files with just --all... | 2026-02-24T16:58:47 |
Subsets and Splits
Assembly Language GitHub Issues
Retrieves a sample of assembly-language related commits with their details, but doesn't provide meaningful analysis or patterns beyond basic filtering.
Swift Compiler Issues Analysis
Retrieves all training data for the Swift programming language repository, providing basic filtering but offering limited analytical insight beyond identifying relevant code examples.