repo stringclasses 15
values | fix_commit stringlengths 40 40 | buggy_commit stringlengths 40 40 | message stringlengths 3 64.3k | files listlengths 1 300 | timestamp timestamp[s]date 2013-03-13 20:45:00 2026-04-11 07:48:46 |
|---|---|---|---|---|---|
golang/go | 460522ed1d987f05db04dec5c099887a07115337 | b16360470c1eb574e8b7fa7a606810bf7cb6df7c | net/http: restore accidentally removed package doc
Remove a blank line which accidentally crept in between
the package doc comment and the package line.
Fixes #77948
Change-Id: I6b513c1e9ea97d2a4b3c6f7b9b10092a6a6a6964
Reviewed-on: https://go-review.googlesource.com/c/go/+/751520
LUCI-TryBot-Result: Go LUCI <golang-... | [
{
"path": "src/net/http/doc.go",
"patch": "@@ -105,5 +105,4 @@ Alternatively, the following GODEBUG settings are currently supported:\n The \"omithttp2\" build tag may be used to disable the HTTP/2 implementation\n contained in the http package.\n */\n-\n package http",
"additions": 0,
"deletions": ... | 2026-03-04T21:22:44 |
mrdoob/three.js | 1dd9ba536feae14e2dba4ef1d6d92ab2e9bf81f4 | 96fe466f8edce6e90f7c48a6fe252a2b22f7b667 | WebGPURenderer: Fix material transparent assignment (#32110)
* fix material transparent assignment
* updates | [
{
"path": "src/materials/nodes/NodeMaterial.js",
"patch": "@@ -1,5 +1,4 @@\n import { Material } from '../Material.js';\n-import { NormalBlending } from '../../constants.js';\n \n import { hashArray, hashString } from '../../nodes/core/NodeUtils.js';\n import { output, diffuseColor, emissive, varyingPropert... | 2025-10-23T21:51:21 |
denoland/deno | 92ca1fe1bf13032703b419314d6ddc2ab442318f | 1ea5ff00c943fbca3c0b850118460fb21d4776e6 | fix(ext/node): remove extra properties from node:fs exports (#32670)
## Summary
- Remove 18 flag constants (`F_OK`, `R_OK`, `W_OK`, `X_OK`, `O_RDONLY`,
`O_WRONLY`, etc.) from `node:fs` default and named exports — Node.js
only
exposes these via `fs.constants`, not as top-level properties
- Remove internal promise hel... | [
{
"path": "ext/node/polyfills/fs.ts",
"patch": "@@ -155,27 +155,6 @@ const {\n Uint8Array,\n } = primordials;\n \n-const {\n- F_OK,\n- R_OK,\n- W_OK,\n- X_OK,\n- O_RDONLY,\n- O_WRONLY,\n- O_RDWR,\n- O_NOCTTY,\n- O_TRUNC,\n- O_APPEND,\n- O_DIRECTORY,\n- O_NOFOLLOW,\n- O_SYNC,\n- O_DSYNC,\n- ... | 2026-03-13T07:28:43 |
golang/go | b16360470c1eb574e8b7fa7a606810bf7cb6df7c | 50126a8e44f76134349edf5ba3cc94efabc61c80 | cmd/compile: fix ICE when indexing zero-sized arrays of non-SSAable types
Fixes #77868
Change-Id: I3348825e24a71595c514113497db365a6a6a6964
Reviewed-on: https://go-review.googlesource.com/c/go/+/749881
Reviewed-by: Keith Randall <khr@golang.org>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gse... | [
{
"path": "src/cmd/compile/internal/ssagen/ssa.go",
"patch": "@@ -3555,9 +3555,9 @@ func (s *state) exprCheckPtr(n ir.Node, checkPtrOK bool) *ssa.Value {\n \t\t\t\t\t// use constants for the bounds check.\n \t\t\t\t\tz := s.constInt(types.Types[types.TINT], 0)\n \t\t\t\t\ts.boundsCheck(z, z, ssa.BoundsIndex... | 2026-02-28T11:05:10 |
tensorflow/tensorflow | 019b29ae0351a9969c032e8e4615903a607543a9 | 5f2a4817ba17efddaa64dcd85623b66b83bb1951 | Add registered codegen backends to KV store key, for multi-host sharding.
- This ensures we don't use the stale results if the codegen-backends registered with the autotuner changes. The backends can change due to
1. User overriden xla_flags
2. When we change default backends in XLA code.
- The current key of the Mult... | [
{
"path": "third_party/xla/xla/backends/autotuner/autotuner.cc",
"patch": "@@ -118,9 +118,19 @@ std::string UnpackedAnyShortDebugString(const google::protobuf::Any& any) {\n // client, but with a different module config each time, we may hit the\n // cache the second time and recover potentially inferior, o... | 2026-03-19T12:15:58 |
denoland/deno | 1ea5ff00c943fbca3c0b850118460fb21d4776e6 | 4650330ddb81f5a7622540e4560d9f944dac9aca | fix(ext/node): emit "connect" event on http.Server for CONNECT requests (#32599)
## Summary
- Deno's `node:http` Server polyfill never emitted the `"connect"` event
for HTTP CONNECT method requests
- This broke HTTP proxy libraries (e.g. `proxy-chain`, used by
Crawlee/Playwright) that rely on this event to handle tun... | [
{
"path": "ext/http/00_serve.ts",
"patch": "@@ -29,6 +29,8 @@ import {\n op_http_set_response_trailers,\n op_http_try_wait,\n op_http_upgrade_raw,\n+ op_http_upgrade_raw_connect,\n+ op_http_upgrade_raw_get_head,\n op_http_upgrade_websocket_next,\n op_http_wait,\n } from \"ext:core/ops\";\n@@ -15... | 2026-03-12T21:33:40 |
golang/go | 50126a8e44f76134349edf5ba3cc94efabc61c80 | 7aeb2f7e285006ad68789581dedf2b35ba444dbf | runtime, cmd/compile: use preemptible memclr for large pointer-free clears
Large memory clearing operations (via clear() or large slice allocation)
currently use non-preemptible assembly loops. This blocks the Garbage
Collector from performing a Stop The World (STW) event, leading to
significant tail latency or even i... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/generic.rules",
"patch": "@@ -1598,11 +1598,13 @@\n => (AndB (MemEq p q (Const64 <typ.Int64> [16]) mem)\n (MemEq (OffPtr <p.Type> p [16]) (OffPtr <q.Type> q [16]) (Const64 <typ.Int64> [c-16]) mem))\n \n-// Turn known-size calls to memclrNoHeapPointer... | 2026-03-01T23:53:03 |
tensorflow/tensorflow | 95b6d8eaa8acc7abbb24ad3bea6293af5a23ba62 | 54892344add75f77922c2ea8096a08313f2aa30d | [XLA:GPU/CPU] Disable MLIR pass verifier in optimized builds.
This change disables the MLIR pass manager verifier in non-debug builds for both CPU and GPU backends to improve compilation speed. The verifier remains enabled in debug builds. For the GPU backend, the verifier can also be enabled via the `xla_gpu_llvm_ver... | [
{
"path": "third_party/xla/xla/backends/cpu/codegen/fusion_compiler.cc",
"patch": "@@ -415,6 +415,13 @@ FusionCompiler::FusionCompiler(mlir::MLIRContext* context, Options options,\n hooks_(std::move(hooks)),\n scalar_pass_manager_(mlir::PassManager::on<mlir::ModuleOp>(context)),\n tiled_pa... | 2026-03-19T10:18:20 |
denoland/deno | 3d05945878003ef2db2763c97298a913d05645b2 | 8cf29d5da0c90654922ca35769eb6b11dbdb5a50 | fix(ext/node): use non-blocking write in fs.writev (#32673)
fs.writev inner async function was calling io.writeSync (blocking)
instead of io.write (async). \
This switches to the non-blocking variant.
Also, enables 4 node compat tests:
- test-fs-writev.js
- test-fs-writev-promises.js
- test-fs-writev-sync.js
- test-p... | [
{
"path": "ext/node/polyfills/fs.ts",
"patch": "@@ -2096,7 +2096,7 @@ function writev(\n let currentOffset = 0;\n // deno-lint-ignore prefer-primordials\n while (currentOffset < buffer.byteLength) {\n- currentOffset += await io.writeSync(fd, buffer.subarray(currentOffset));\n+ currentO... | 2026-03-12T21:01:15 |
mrdoob/three.js | 6618a69400ac6c42338ca5b8e8024351c53675fe | 061ae57acb642f1131c98c50cafd02c4b937d638 | Added new docs generated with JSDocs (#32118)
* New Docs: Add translation disable flags.
* Clean up.
* Improved tables rendering.
* Exclude WebGPURenderer.Nodes.js for now.
* Changed jsdocs destination folder to docs.
* Fixed navigation indentation.
* Generated docs.
* Replaced prettify.js with highlight.js
* ... | [
{
"path": "docs/pages/AMFLoader.html",
"patch": "@@ -0,0 +1,106 @@\n+<!DOCTYPE html>\n+<html lang=\"en\">\n+<head>\n+\t<meta charset=\"utf-8\">\n+\t<title>AMFLoader - Three.js Docs</title>\n+\t<meta name=\"viewport\" content=\"width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0\">\n+\... | 2025-10-23T18:00:19 |
golang/go | 7aeb2f7e285006ad68789581dedf2b35ba444dbf | 44ec057a3e89482cf775f5eaaf03b0b5fcab1fa4 | cmd/go: update go help entries to focus on modules
Some of the go help entries, especially go help packages, primarily
explained GOPATH mode behavior. While building legacy projects in GOPATH
mode will continue to be supported by the go command, it is now a very
niche use case, and the docs should focus on modules. Th... | [
{
"path": "src/cmd/go/alldocs.go",
"patch": "@@ -267,12 +267,14 @@\n // prints the disassembly for fmt and all its dependencies.\n //\n // For more about specifying packages, see 'go help packages'.\n-// For more about where packages and binaries are installed,\n-// run 'go help gopath'.\n+// For more about... | 2025-04-07T20:35:52 |
mrdoob/three.js | 89b6cd1f8673fd345df94736a0a50eda97b99618 | 4bd6e36a194bddb505aaf2bf43f18e22411f433f | TSL: Refactor `positionViewDirection` to handle orthographic camera cases (#32088)
* WebGPU: Refactor positionViewDirection to handle orthographic camera cases
* Update WebGPU screenshots after positionViewDirection fix
* Review comment: https://github.com/mrdoob/three.js/pull/32088#discussion_r2445229182 | [
{
"path": "src/nodes/accessors/Position.js",
"patch": "@@ -1,5 +1,6 @@\n import { attribute } from '../core/AttributeNode.js';\n import { Fn } from '../tsl/TSLCore.js';\n+import { vec3 } from '../tsl/TSLBase.js';\n import { modelWorldMatrix } from './ModelNode.js';\n \n /**\n@@ -71,4 +72,20 @@ export const ... | 2025-10-21T14:37:27 |
denoland/deno | 2353a5abeb584ad0a8a2fc5a68ed80a9ab058628 | e8a3cfafb61ea6cb31b65df63761c73b8dee0f98 | fix(ext/node): wrap non-Error unhandled rejections in ERR_UNHANDLED_REJECTION (#32535)
## Summary
- When a promise is rejected with a non-Error value (e.g.
`Promise.reject(null)`) and there are no `unhandledRejection` listeners,
Node.js wraps the rejection reason in an `ERR_UNHANDLED_REJECTION` error
before routing i... | [
{
"path": "ext/node/polyfills/process.ts",
"patch": "@@ -1086,7 +1086,29 @@ function synchronizeListeners() {\n // listeners.\n \n event.preventDefault();\n- uncaughtExceptionHandler(event.reason, \"unhandledRejection\");\n+\n+ let reason = event.reason;\n+ // If the rej... | 2026-03-12T18:08:51 |
tensorflow/tensorflow | f7046e5f984eb8bb910c78aceca58692bb8d7d6b | c6d61fe1be890e56ed639209fc4c03dde56ff9d4 | Add simplification for (x % a) % b when a % b == 0.
Rewrite (x % a) % b to x % b in SymbolicExpr::Canonicalize when the inner divisor a is a multiple of the outer divisor b.
This fix xla/codegen/tiling:tiled_hlo_schedule_test after migration.
PiperOrigin-RevId: 886045807 | [
{
"path": "third_party/xla/xla/hlo/analysis/symbolic_expr.cc",
"patch": "@@ -485,6 +485,15 @@ SymbolicExpr CanonicalizeMod(SymbolicExpr lhs, SymbolicExpr rhs) {\n return gcd_simplified;\n }\n \n+ // Rewrite `(x % a) % b` to `x % b` if `a % b == 0`.\n+ if (lhs.GetType() == SymbolicExprType::k... | 2026-03-19T09:08:58 |
golang/go | 44ec057a3e89482cf775f5eaaf03b0b5fcab1fa4 | f4afab14d0375d93115134f19fb90006dd664682 | cmd/go: revert update default go directive in mod or work init
This restores the previous behavior of setting go directive to the toolchain's version as per #77653.
Fixes #77653
Change-Id: Ie9d2de025a75f39fd8d6d01776d0cf4e5da954f9
Reviewed-on: https://go-review.googlesource.com/c/go/+/749980
Reviewed-by: Dmitri Shur... | [
{
"path": "src/cmd/go/internal/modload/init.go",
"patch": "@@ -29,7 +29,6 @@ import (\n \t\"cmd/go/internal/lockedfile\"\n \t\"cmd/go/internal/modfetch\"\n \t\"cmd/go/internal/search\"\n-\tigover \"internal/gover\"\n \n \t\"golang.org/x/mod/modfile\"\n \t\"golang.org/x/mod/module\"\n@@ -838,7 +837,7 @@ func... | 2026-02-27T18:03:36 |
kubernetes/kubernetes | 3f02e1152dc2f9ecc60773ef2842799b8a5487c5 | a142b22c38efe76423f3123ea2f46dbca943fdc3 | bugfix(cloud-provider): apply log options first
show flags after apply log options
fixes issue #137599 | [
{
"path": "staging/src/k8s.io/cloud-provider/app/controllermanager.go",
"patch": "@@ -88,12 +88,14 @@ func NewCloudControllerManagerCommand(s *options.CloudControllerManagerOptions,\n the cloud specific control loops shipped with Kubernetes.`,\n \t\tRunE: func(cmd *cobra.Command, args []string) error {\n \t... | 2026-03-10T07:35:47 |
mrdoob/three.js | 4bd6e36a194bddb505aaf2bf43f18e22411f433f | eeda2145a8dd587436b49b365d376517bceb85a0 | E2E: Revised exception list (#32090)
* Testing e2e with fixed RAF.
* Updated screenshots.
* Updated exception list.
* Updated exceptions list.
* Add css3d_youtube to exception list
Added 'css3d_youtube' test case to investigate CI crashes.
* Added webgpu_materials_video to exceptions list
* Simplified puppeteer... | [
{
"path": "test/e2e/puppeteer.js",
"patch": "@@ -5,264 +5,87 @@ import pixelmatch from 'pixelmatch';\n import { Jimp } from 'jimp';\n import * as fs from 'fs/promises';\n \n-class PagePool {\n-\n-\tconstructor( pages ) {\n-\n-\t\tthis.pages = pages;\n-\t\tthis.available = [ ...pages ];\n-\t\tthis.waiting = ... | 2025-10-21T11:07:44 |
denoland/deno | e8a3cfafb61ea6cb31b65df63761c73b8dee0f98 | b31680f5515c3a6bdadce1d64f6bf61a1aaa4bd8 | chore(npm): fix debug panic in DepEntryCache (#32668)
Closes https://github.com/denoland/deno/issues/32622 | [
{
"path": "libs/npm/resolution/graph.rs",
"patch": "@@ -1050,17 +1050,19 @@ struct DepEntryCache(HashMap<Rc<PackageNv>, Rc<Vec<NpmDependencyEntry>>>);\n impl DepEntryCache {\n pub fn store(\n &mut self,\n- nv: Rc<PackageNv>,\n+ nv: &Rc<PackageNv>,\n version_info: &NpmPackageVersionInfo,\n ... | 2026-03-12T17:21:28 |
golang/go | f4afab14d0375d93115134f19fb90006dd664682 | 76ebf6330787131e68390699da11c1dfcf742194 | cmd/link: support Mach-O UNSIGNED relocations for dynamic imports on darwin
When internally linking darwin binaries, the linker rejected Mach-O
UNSIGNED (pointer) relocations targeting dynamic import symbols,
producing errors like:
unexpected reloc for dynamic symbol _swift_FORCE_LOAD_$_swiftIOKit
These relocati... | [
{
"path": "src/cmd/cgo/internal/test/cgo_darwin_test.go",
"patch": "@@ -8,4 +8,5 @@ package cgotest\n \n import \"testing\"\n \n-func TestIssue76023(t *testing.T) { issue76023(t) }\n+func TestIssue76023(t *testing.T) { issue76023(t) }\n+func TestGlobalDataDynimport(t *testing.T) { unsignedRelocDyni... | 2026-02-13T11:26:12 |
tensorflow/tensorflow | c6d61fe1be890e56ed639209fc4c03dde56ff9d4 | 28f2b955d1ba5b314fa83924ced775a0e4fe8162 | [xla:gpu] Various fixes for lowering the scan op to a FFI custom call.
- Computes scratch memory space during the `instantiate` stage rather than `initialize`. This allows passing the `element_type` as an explicit FFI attribute instead of inspecting a dummy input buffer.
- Updates `CubScanLaunchKernelFfiHandler` to ac... | [
{
"path": "third_party/xla/xla/backends/gpu/transforms/BUILD",
"patch": "@@ -2727,8 +2727,8 @@ cc_library(\n \"//xla/hlo/ir:hlo\",\n \"//xla/hlo/pass:hlo_pass\",\n \"//xla/service/gpu:cublas_cudnn\",\n- \"//xla/tsl/platform:errors\",\n- \"//xla/tsl/platform:statusor\",\... | 2026-03-19T09:01:55 |
swiftlang/swift | 5ea6cf2bc0d8849f467f839ac6a1f3145ce211ef | 8b096129ee4fd64b0c8062438825ccecc6067dee | [Backtracing] Fix a type error and a warning.
For some reason `DWORD` is `UInt` rather than `UInt32`, which seems wrong.
Anyway, be explicit and use `UInt32` instead.
Also, ignore the image path result from `findElf`, to get rid of a warning.
rdar://172911008 | [
{
"path": "stdlib/public/RuntimeModule/DefaultSymbolLocator.swift",
"patch": "@@ -132,7 +132,7 @@ open class DefaultSymbolLocator: SymbolLocator {\n return source\n }\n \n- if let uuid = image.uuid, let (imagePath, result) =\n+ if let uuid = image.uuid, let (_, result) =\n findElf(imag... | 2026-03-20T13:44:37 |
mrdoob/three.js | ebc584918a92fda2530009bd306992f2fb3dd23b | a4ee1080dcf5732f9eeefc917041d19009ffa4b7 | Add exception to exceptionList for css3d_mixed | [
{
"path": "test/e2e/puppeteer.js",
"patch": "@@ -84,6 +84,9 @@ const parseTime = 1; // 1 second per megabyte\n \n const exceptionList = [\n \n+\t// Need more time\n+\t'css3d_mixed',\n+\t\n \t// tiles not loaded in time for screenshot\n \t'webgl_loader_3dtiles',\n ",
"additions": 3,
"deletions": 0,
... | 2025-10-21T01:34:58 |
kubernetes/kubernetes | eea86f1f215eec109267bf323fc8080cc11c996d | a142b22c38efe76423f3123ea2f46dbca943fdc3 | flaking fix: ignore watch actions from the informer's reflector | [
{
"path": "staging/src/k8s.io/cloud-provider/controllers/service/controller_test.go",
"patch": "@@ -307,8 +307,17 @@ func TestSyncLoadBalancerIfNeeded(t *testing.T) {\n \t\t\t\tif len(cloud.Calls) > 0 {\n \t\t\t\t\tt.Errorf(\"Unexpected cloud provider calls: %v\", cloud.Calls)\n \t\t\t\t}\n-\t\t\t\tif len(a... | 2026-03-10T05:38:32 |
denoland/deno | b31680f5515c3a6bdadce1d64f6bf61a1aaa4bd8 | 7698bccccc54241d8be1c50cd22b3c4af0360998 | fix(runtime): reduce memory retention after web worker termination (#32617)
## Summary
Addresses #26058 — Web Workers use significantly more RSS than Chrome,
and terminating them doesn't release the memory back to the OS.
Two targeted changes:
- **Call `malloc_trim(0)` on Linux after each worker thread exits.**
Whe... | [
{
"path": "runtime/ops/worker_host.rs",
"patch": "@@ -269,7 +269,20 @@ fn op_create_worker(\n .await\n };\n \n- create_and_run_current_thread(fut)\n+ let _ = create_and_run_current_thread(fut);\n+\n+ // After the worker's tokio runtime and JsRuntime/V8 isolate have been\n+ // dropped, ... | 2026-03-12T17:01:09 |
golang/go | 76ebf6330787131e68390699da11c1dfcf742194 | c918cbd5561c14edc3caf04a007c4fabbbb896a1 | syscall: make plan9 Errno implement the error interface
The Errno type was added to plan9 in CL 750680 but without methods,
so it didn't satisfy the error interface. Add Error, Temporary, and
Timeout methods to match all other platforms and the Go 1 API contract
(api/go1.txt's "pkg syscall, method (Errno) Error() stri... | [
{
"path": "src/syscall/syscall_plan9.go",
"patch": "@@ -14,6 +14,7 @@ package syscall\n import (\n \t\"errors\"\n \t\"internal/oserror\"\n+\t\"internal/strconv\"\n \t\"runtime\"\n \t\"unsafe\"\n )\n@@ -30,6 +31,10 @@ const bitSize16 = 2\n // without build-tagged files, using runtime.GOOS checks instead.\n t... | 2026-03-03T18:05:17 |
tensorflow/tensorflow | 68e8f4498b90e7723afdd02f9da60bd8470f6460 | 2dee25852d3574cc84a9e6e69e656eaa85128620 | Support passing payload from absl::Status in CreateErrorBuffer
PiperOrigin-RevId: 885942334 | [
{
"path": "third_party/xla/xla/pjrt/c/CHANGELOG.md",
"patch": "@@ -1,5 +1,9 @@\n # PJRT C API changelog\n \n+## 0.103\n+\n+* Added `payload` and `num_payload` to `PJRT_Client_CreateErrorBuffer_Args` to support passing status payloads during error buffer creation.\n+\n ## 0.102\n \n * Added `PJRT_Executable_... | 2026-03-19T04:08:19 |
mrdoob/three.js | 7dec10bb10968448260f442729a794075945991d | 8409754fc4e752ca0341cdcdf5158727cc60048b | TSL: Ensure `nodeProxyIntent` always sets intent: true (fix spread order) (#32092)
Co-authored-by: sunag <sunagbrasil@gmail.com> | [
{
"path": "src/nodes/tsl/TSLCore.js",
"patch": "@@ -928,7 +928,7 @@ export const nodeObjects = ( val, altType = null ) => new ShaderNodeObjects( val\n export const nodeArray = ( val, altType = null ) => new ShaderNodeArray( val, altType );\n export const nodeProxy = ( NodeClass, scope = null, factor = null,... | 2025-10-21T00:59:34 |
denoland/deno | 7698bccccc54241d8be1c50cd22b3c4af0360998 | 9eed28a85df7d142be3ab93b5072d9dcdce2acd0 | fix(runtime): display proper error when throwing in event handlers (#32663)
## Summary
- Fixes `"Uncaught null"` being displayed instead of the actual error
when throwing in `unload`, `beforeunload`, `load`, or process
`exit`/`beforeExit` event handlers
- Root cause: `reportException` in JS calls `op_dispatch_excepti... | [
{
"path": "libs/core/error.rs",
"patch": "@@ -1313,7 +1313,7 @@ pub(crate) fn exception_to_err_result<'s, 'i, T>(\n Err(exception_to_err(scope, exception, in_promise, clear_error))\n }\n \n-pub(crate) fn exception_to_err<'s, 'i>(\n+pub fn exception_to_err<'s, 'i>(\n scope: &mut v8::PinScope<'s, 'i>,\n ... | 2026-03-12T16:42:00 |
golang/go | c918cbd5561c14edc3caf04a007c4fabbbb896a1 | 30d873462fd42c7fc940fe96ca68dfe396f350c7 | runtime: fix value of ENOSYS on mips from 38 to 89
Fixes #77730
Change-Id: I8b68b2d4353344e70f970d48a2d50c1a3bd7f273
Reviewed-on: https://go-review.googlesource.com/c/go/+/747664
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Cherry Mui <cherryyz@google.com>
Rev... | [
{
"path": "src/runtime/defs_linux_mips64x.go",
"patch": "@@ -12,7 +12,7 @@ const (\n \t_EINTR = 0x4\n \t_EAGAIN = 0xb\n \t_ENOMEM = 0xc\n-\t_ENOSYS = 0x26\n+\t_ENOSYS = 0x59\n \n \t_PROT_NONE = 0x0\n \t_PROT_READ = 0x1",
"additions": 1,
"deletions": 1,
"language": "Go"
},
{
"path": "s... | 2026-02-22T00:47:45 |
mrdoob/three.js | b3dde01ebb2509893dc41a9d29bd6dfba1794731 | 3a987fad398939a7b6a2c4e9b7d2dd5df99ffa50 | e2e: Fixed RAF bug in deterministic-injection.js | [
{
"path": "test/e2e/deterministic-injection.js",
"patch": "@@ -35,7 +35,7 @@\n \n \t\t\tsetTimeout( function () {\n \n-\t\t\t\trequestAnimationFrame( cb );\n+\t\t\t\tRAF( cb );\n \n \t\t\t}, 50 );\n ",
"additions": 1,
"deletions": 1,
"language": "JavaScript"
}
] | 2025-10-20T08:18:17 |
tensorflow/tensorflow | b834502c1e1cff2c267c7d3983adb7463bb8d287 | 9d20b5b2abef6a8bbc23f22a51c3069e3a37c929 | cc_embed_data: Properly strip directory prefixes.
The original intent of --strip was as a multi-flag, but ABSL flags don't
support multi-flags. Instead, we need to use a vector flag.
PiperOrigin-RevId: 885875692 | [
{
"path": "third_party/xla/xla/tsl/util/BUILD",
"patch": "@@ -446,6 +446,7 @@ cc_binary(\n \"@com_google_absl//absl/log:check\",\n \"@com_google_absl//absl/status\",\n \"@com_google_absl//absl/status:statusor\",\n+ \"@com_google_absl//absl/strings\",\n \"@com_google_ab... | 2026-03-19T00:34:03 |
denoland/deno | aa6ee7d5bbf4ae534e101ccdd86102284d4f9fcd | 5b9986dd605081f6a8e04b4f8d2fcdba26bc19ec | fix(ext/napi): call wrap/ref finalizers at shutdown (#32592)
- Track NAPI finalizer callbacks (from `napi_wrap`,
`napi_create_external`, `napi_add_finalizer`, `napi_set_instance_data`)
in a `PendingNapiFinalizer` list shared between `NapiState` and `Env`
- Call tracked finalizers in LIFO order during `MainWorker` shut... | [
{
"path": "cli/lib/worker.rs",
"patch": "@@ -853,6 +853,11 @@ impl LibMainWorker {\n self.worker.dispatch_process_exit_event()\n }\n \n+ #[inline]\n+ pub fn run_napi_ref_finalizers(&mut self) {\n+ self.worker.run_napi_ref_finalizers()\n+ }\n+\n pub async fn execute_main_module(&mut self) -> Re... | 2026-03-12T16:07:58 |
golang/go | 30d873462fd42c7fc940fe96ca68dfe396f350c7 | 0b9bcbc58c4cf127d5a42989d08cc0236faa71cc | image/jpeg: add support for non-standard chroma subsampling ratios
Add "flex mode" decoding for JPEG images with non-standard YCbCr
subsampling ratios that do not match the predefined YCbCrSubsampleRatio
values. This includes cases where:
1. Cb and Cr components have different sampling factors
2. The Y component does ... | [
{
"path": "src/image/jpeg/reader.go",
"patch": "@@ -28,10 +28,12 @@ var errUnsupportedSubsamplingRatio = UnsupportedError(\"luma/chroma subsampling r\n \n // Component specification, specified in section B.2.2.\n type component struct {\n-\th int // Horizontal sampling factor.\n-\tv int // Vertical sa... | 2026-01-22T07:04:46 |
mrdoob/three.js | 7f5f8c833252f1198ecdd4e71f46c07de6eb5975 | 5bf960214b54235ec6f04ffc5d686696a0fe3029 | fix logic, typo ... (#32083) | [
{
"path": "examples/webgpu_postprocessing_sss.html",
"patch": "@@ -172,7 +172,7 @@\n \t\t\t\t\toutput: 0\n \t\t\t\t};\n \n-\t\t\t\tconst types = { 'Sceen with Shadow Maps + SSS': 0, 'Scene with Shadow Maps': 1, 'SSS': 2, };\n+\t\t\t\tconst types = { 'Scene with Shadow Maps + SSS': 0, 'Scene with Shadow Maps... | 2025-10-19T14:57:46 |
swiftlang/swift | 6a02551361497282ba5896536083b1399a157747 | 7a01fe8f0e4202a3e6caf0c43ec967244be2c59c | ConstantCapturePropagation: fix two problems with function type representation
* convert "method"s to "thin" functions: We are removing arguments from the original function. If the removed argument is the "self" argument, the specialized function cannot be a "method" anymore.
* don't create `thin_to_thick_function` i... | [
{
"path": "SwiftCompilerSources/Sources/Optimizer/FunctionPasses/ConstantCapturePropagation.swift",
"patch": "@@ -159,9 +159,16 @@ private func specializeClosure(specializedName: String,\n callee.convention.results.contains { $0.type.hasTypeParameter } ||\n callee.convent... | 2026-03-19T20:59:17 |
tensorflow/tensorflow | 5fae1de333831ac423f44fd392cf2c6e4a8aa33d | ea7453936aff1ccb67342a8d87feb6c06dc2cd47 | memfile_builtin: Disallow empty FileToc names.
It's a sure sign of a bug.
PiperOrigin-RevId: 885821593 | [
{
"path": "third_party/xla/xla/tsl/util/BUILD",
"patch": "@@ -529,6 +529,7 @@ cc_library(\n \"@com_google_absl//absl/log\",\n \"@com_google_absl//absl/log:check\",\n \"@com_google_absl//absl/status\",\n+ \"@com_google_absl//absl/strings\",\n \"@com_google_absl//absl/st... | 2026-03-18T22:35:45 |
golang/go | fdf3bee34261f383e394a06b1e4cf87fff684c1b | 0856d46fd1f5d882e9033af813b0e2acfc31889f | net: treat EPERM/EACCES in IPv6 probe as supported
When a BPF/seccomp filter denies the bind in the IPv6 capability
probe with EPERM or EACCES, the probe incorrectly reports IPv6 as
unsupported even though socket creation and setsockopt succeeded.
This causes Listen on [::] to silently fall back to IPv4-only.
Treat E... | [
{
"path": "src/net/ipsock_posix.go",
"patch": "@@ -70,7 +70,13 @@ func (p *ipStackCapabilities) probe() {\n \t\t\tcontinue\n \t\t}\n \t\tif err := syscall.Bind(s, sa); err != nil {\n-\t\t\tcontinue\n+\t\t\t// If the bind was denied by a security policy (BPF, seccomp,\n+\t\t\t// SELinux, etc.), the kernel st... | 2026-02-07T19:39:15 |
denoland/deno | 5b9986dd605081f6a8e04b4f8d2fcdba26bc19ec | c0c896b17a62f37a81e30865069307db7d629720 | fix(ext/node): improve crypto.generateKeyPair validation (#32620)
## Summary
- Restructures `generateKeyPair` to call `createJob` synchronously so
validation errors throw synchronously (matching Node.js behavior)
- Adds key encoding validation (format, type, cipher, passphrase) with
proper Node.js error codes (`ERR_IN... | [
{
"path": "ext/node/polyfills/internal/crypto/cipher.ts",
"patch": "@@ -594,10 +594,30 @@ function _lazyInitDecipherDecoder(self: any, encoding: string) {\n }\n }\n \n+const ENCRYPT_UNSUPPORTED_KEY_TYPES = new Set([\n+ \"rsa-pss\",\n+ \"dsa\",\n+ \"ec\",\n+ \"ed25519\",\n+ \"ed448\",\n+ \"x25519\",\... | 2026-03-12T16:05:27 |
mrdoob/three.js | 5bf960214b54235ec6f04ffc5d686696a0fe3029 | 4c5847308543d0593b909c33ee11a6740c3d88a0 | fix (#32080) | [
{
"path": "editor/js/commands/SetMaterialRangeCommand.js",
"patch": "@@ -24,7 +24,7 @@ class SetMaterialRangeCommand extends Command {\n \n \t\tconst material = ( object !== null ) ? editor.getObjectMaterial( object, materialSlot ) : null;\n \n-\t\tthis.oldRange = ( material !== null && material[ attributeN... | 2025-10-19T14:33:23 |
kubernetes/kubernetes | cf33d3ace34004728c046ba7fcbc352db5795ee6 | 0fbb89c81c73ce1fa3f0d34aedd0b7bbb02c1ded | Fix LastTerminationStatus for RestartAllContainers | [
{
"path": "pkg/kubelet/kubelet_pods.go",
"patch": "@@ -2291,6 +2291,14 @@ func (kl *Kubelet) convertToAPIContainerStatuses(ctx context.Context, pod *v1.Po\n \t\t\t\tif oldStatus.RestartCount > status.RestartCount {\n \t\t\t\t\tstatus.RestartCount = oldStatus.RestartCount\n \t\t\t\t}\n+\t\t\t\t// Normal cont... | 2026-01-16T21:08:00 |
swiftlang/swift | 8110746b2ef47ce7499a8e53407c04ee13ee9e7b | 7a01fe8f0e4202a3e6caf0c43ec967244be2c59c | TempRValueElimination: delete `debug_value` instructions which are outside of the stack location's liverange
We already move `debug_value` instructions into the liverange in such cases.
But we didn't do this if the `debug_value`'s operand is a projection of the `alloc_stack`.
The fix is to delete such `debug_value` in... | [
{
"path": "SwiftCompilerSources/Sources/Optimizer/FunctionPasses/TempRValueElimination.swift",
"patch": "@@ -109,13 +109,19 @@ private func tryEliminate(copy: CopyLikeInstruction, keepDebugInfo: Bool, _ cont\n return\n }\n \n- liverange.moveDebugValuesIntoLiverange(of: allocStack, after: copy.loading... | 2026-03-20T08:30:21 |
golang/go | 0856d46fd1f5d882e9033af813b0e2acfc31889f | a7958c664fbb6c292783372a1bc6d2997f17d604 | doc/go_spec: add max and min to forbidden expression statements list
The expression statements section omitted max and min from the list
of built-ins that are not permitted in statement context.
Fixes #77896
Change-Id: I1f3d4b1d2465bde156ff751a9a7b5a212509e9a5
Reviewed-on: https://go-review.googlesource.com/c/go/+/7... | [
{
"path": "doc/go_spec.html",
"patch": "@@ -6046,7 +6046,7 @@ <h3 id=\"Expression_statements\">Expression statements</h3>\n </p>\n \n <pre>\n-append cap complex imag len make new real\n+append cap complex imag len make max min new real\n unsafe.Add unsafe.Alignof unsafe.Offsetof unsafe.Sizeof unsafe.Slice u... | 2026-03-03T06:01:06 |
mrdoob/three.js | 97b4c515bcaea68f345fb3981828694f062be5cc | e0fdb2476fa43f3bd11ac850fc98c2e17ad14ff4 | Nodes: Fix size computations in FX/RTT nodes. (#32077) | [
{
"path": "src/nodes/display/PassNode.js",
"patch": "@@ -786,8 +786,8 @@ class PassNode extends TempNode {\n \t\tthis._width = width;\n \t\tthis._height = height;\n \n-\t\tconst effectiveWidth = this._width * this._pixelRatio * this._resolutionScale;\n-\t\tconst effectiveHeight = this._height * this._pixelR... | 2025-10-18T13:21:23 |
tensorflow/tensorflow | 9f762eb03f12ba13ffce603550d64c37fb401e9b | 8cedce08e98d8f11e3ee5ced7a25fb830ccfb935 | Disable HLO Sharding V3 in V1/V2 SPMD partitioner tests.
This change sets the `xla_enable_hlo_sharding_v3` debug option to false in the default HloModuleConfig used by the V1/V2 SPMD partitioner tests.
PiperOrigin-RevId: 885797279 | [
{
"path": "third_party/xla/xla/service/spmd/spmd_partitioner_test.cc",
"patch": "@@ -110,6 +110,7 @@ class SpmdPartitioningTest\n config.set_use_spmd_partitioning(true);\n config.set_num_partitions(num_devices);\n config.set_use_shardy_partitioner(true);\n+ config.mutable_debug_options().set_... | 2026-03-18T21:43:19 |
denoland/deno | c0c896b17a62f37a81e30865069307db7d629720 | 089589763706db9b1915b605918b2bd81f487e53 | fix(cli): update typescript-go to 2026-03-09 (#32656) | [
{
"path": "cli/build.rs",
"patch": "@@ -26,7 +26,6 @@ fn compress_decls(out_dir: &Path) {\n \"lib.deno_cache.d.ts\",\n \"lib.deno_net.d.ts\",\n \"lib.deno_broadcast_channel.d.ts\",\n- \"lib.temporal.d.ts\",\n \"lib.decorators.d.ts\",\n \"lib.decorators.legacy.d.ts\",\n \"lib.dom.a... | 2026-03-12T13:55:02 |
mrdoob/three.js | d5ffcf9c89402257d8451cbcda725c70e7e20219 | b140fba01d7b71d461c2d9842867aef82684a4e5 | TSL: Fix recursive cache key (#32070) | [
{
"path": "src/materials/nodes/NodeMaterial.js",
"patch": "@@ -1,7 +1,7 @@\n import { Material } from '../Material.js';\n import { NormalBlending } from '../../constants.js';\n \n-import { getNodeChildren, getCacheKey } from '../../nodes/core/NodeUtils.js';\n+import { hashArray, hashString } from '../../nod... | 2025-10-17T17:47:01 |
golang/go | a7958c664fbb6c292783372a1bc6d2997f17d604 | 1a0e1fb616c997ffdb10b30a1c51397d803616da | time: mention Reset in Ticker.Stop doc
Fixes #72968
Change-Id: Ia7bab559738ff66e19a030e031c157d344a35036
Reviewed-on: https://go-review.googlesource.com/c/go/+/659695
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
Reviewed-by: Michael Pratt <mpratt@google.com>
Auto-Submit: Ian Lance Taylor <iant@golang.org>
Revi... | [
{
"path": "src/time/tick.go",
"patch": "@@ -47,8 +47,9 @@ func NewTicker(d Duration) *Ticker {\n }\n \n // Stop turns off a ticker. After Stop, no more ticks will be sent.\n-// Stop does not close the channel, to prevent a concurrent goroutine\n-// reading from the channel from seeing an erroneous \"tick\".... | 2025-03-20T18:35:23 |
tensorflow/tensorflow | 8cedce08e98d8f11e3ee5ced7a25fb830ccfb935 | 113436d73bb8ee8c94669fa8d2607a239d20109c | Avoid casting dimensions to float in STRIDED_SLICE ResizeOutputTensor
Single-precision floats can only precisely represent values up to 2^24. If the size of the output slice were too large the previous logic would calculate the incorrect output dimension.
PiperOrigin-RevId: 885789312 | [
{
"path": "tensorflow/lite/kernels/strided_slice.cc",
"patch": "@@ -217,8 +217,18 @@ TfLiteStatus ResizeOutputTensor(TfLiteContext* context,\n // This is valid for both positive and negative strides\n dim_shape = end - begin;\n }\n- dim_shape = std::ceil((dim_shape) / static_cast<float>(s... | 2026-03-18T21:26:02 |
denoland/deno | 089589763706db9b1915b605918b2bd81f487e53 | bbd5282f849f0b1372d55594fc0083d668f3a4d3 | fix: wake event loop when V8 posts foreground tasks from background threads (#32450)
When V8 background threads post foreground tasks (module compilation
callbacks, Atomics.waitAsync timeouts, worker lifecycle events), the
event loop had no way to know it should wake up and pump those tasks.
This caused stalls where p... | [
{
"path": "Cargo.lock",
"patch": "@@ -11161,9 +11161,9 @@ dependencies = [\n \n [[package]]\n name = \"v8\"\n-version = \"146.3.0\"\n+version = \"146.4.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"8741c1f33d1ebf6c81f53fbb0c66fdd7a2b55feeead0ec40ec9468b387d67176\"\n... | 2026-03-12T13:36:08 |
mrdoob/three.js | bca53e60926c4afb05c6d16672c00554d9c8bbde | 060342f443a31cdc78bbb83831dabbc0d0892602 | MaterialXLoader: Fixed flipped textures. | [
{
"path": "examples/jsm/loaders/MaterialXLoader.js",
"patch": "@@ -429,7 +429,6 @@ class MaterialXNode {\n \n \t\tconst texture = new Texture();\n \t\ttexture.wrapS = texture.wrapT = RepeatWrapping;\n-\t\ttexture.flipY = false;\n \n \t\tthis.materialX.textureCache.set( uri, texture );\n ",
"additions": ... | 2025-10-16T11:26:00 |
golang/go | aa80d7a7e6bf97aa27a74cc5056ef270a2a0c2f4 | ba057f7950f93a7cbd249ad79ed763a526a9cbbf | cmd/compile, simd/archsimd: add VPSRL immeidate peepholes
Before this CL, the simdgen contains a sign check to selectively enable
such rules for deduplication purposes. This left out `VPSRL` as it's
only available in unsigned form. This CL fixes that.
It looks like the previous documentation fix to SHA instruction mi... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/simdAMD64.rules",
"patch": "@@ -1067,14 +1067,23 @@\n (ShiftAllRightInt64x8 ...) => (VPSRAQ512 ...)\n (VPSRAQ512 x (MOVQconst [c])) => (VPSRAQ512const [uint8(c)] x)\n (ShiftAllRightUint16x8 ...) => (VPSRLW128 ...)\n+(VPSRLW128 x (MOVQconst [c])) => (VPSRLW128cons... | 2026-02-24T22:34:44 |
swiftlang/swift | 0b6a4e21ff168888c5cd78979da25de258358492 | 0a72398394db49063bf756f4bec0e2c96514a2a7 | Add properly paired builtins for pushing and popping task-local values
I can't quite enable modeling their stack effects in this patch because
SILGen generates improperly-nested allocations; that'll be fixed in a
follow-up. | [
{
"path": "include/swift/AST/Builtins.def",
"patch": "@@ -1228,16 +1228,32 @@ BUILTIN_MISC_OPERATION_WITH_SILGEN(TaskAddPriorityEscalationHandler,\n BUILTIN_MISC_OPERATION(TaskRemovePriorityEscalationHandler,\n \"taskRemovePriorityEscalationHandler\", \"\", Special)\n \n-/// Equivalen... | 2026-03-19T18:01:04 |
kubernetes/kubernetes | 1d2165b29caffe95a1f06b5d4729c5fbaa32f495 | 77c013637cb40e1b5d2b26664dc7b297f1ff2693 | Fix scheduler flaky test: wait for DeviceClass cache sync in dynamicresources tests
When DRAExtendedResource is enabled, the dynamicresources test setup
registers an event handler for DeviceClasses but was not waiting for it
to sync. This can lead to flaky tests where the cache is not fully
populated when the test sta... | [
{
"path": "pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go",
"patch": "@@ -2997,6 +2997,7 @@ func setup(tCtx ktesting.TContext, args *config.DynamicResourcesArgs, nodes []*v\n \ttc.client.ReactionChain = append(apiReactors, tc.client.ReactionChain...)\n \n \ttc.informerFactory = in... | 2026-03-06T01:41:31 |
tensorflow/tensorflow | f776fb8835a384db49bda9d95dd74a2be88e7134 | 7fb3f9f1778842a885163e75840a57edf2c6df59 | PR #39014: [xla:pjrt] Unify AsyncWorkRunner API with tsl::Executor
Imported from GitHub PR https://github.com/openxla/xla/pull/39014
Refactor `AsyncWorkRunner` to own thread pools by value and unify with `tsl::Executor`
Summary:
- Make `AsyncWorkRunner` extend `tsl::Executor` with a single `Execute(Task)` virtual ... | [
{
"path": "third_party/xla/xla/pjrt/BUILD",
"patch": "@@ -1435,13 +1435,13 @@ cc_library(\n \n cc_library(\n name = \"async_work_runner\",\n- srcs = [\"async_work_runner.cc\"],\n hdrs = [\"async_work_runner.h\"],\n visibility = internal_visibility([\":friends\"]),\n deps = [\n \"/... | 2026-03-18T18:47:06 |
denoland/deno | bbd5282f849f0b1372d55594fc0083d668f3a4d3 | f0dfb89720bf05d401d082bad87babe78ac036aa | fix(npm): support npmrc certfile + keyfile (#32655)
This PR implements the missing support for `certfile` and `keyfile`
options. Now when both are set, it creates an HTTP client with the
client certificate attached. | [
{
"path": "cli/http_util.rs",
"patch": "@@ -1,8 +1,11 @@\n // Copyright 2018-2026 the Deno authors. MIT license.\n \n+use std::io::BufReader;\n+use std::path::Path;\n use std::sync::Arc;\n \n use boxed_error::Boxed;\n+use dashmap::DashMap;\n use deno_cache_dir::file_fetcher::RedirectHeaderParseError;\n use ... | 2026-03-12T12:54:58 |
mrdoob/three.js | 3a0a8d98bc918bd9740191a386defe4e85a6d68e | 2746aaed212ded35792c91226b4cd064ec8322f4 | Examples: fix incorrect field assignment (#32056)
* Fix field assignment
* Additionally rename class field and option
* undo unintentional change | [
{
"path": "examples/jsm/objects/WaterMesh.js",
"patch": "@@ -51,7 +51,7 @@ class WaterMesh extends Mesh {\n \t\t * @type {number}\n \t\t * @default 0.5\n \t\t */\n-\t\tthis.resolution = options.resolution !== undefined ? options.resolution : 0.5;\n+\t\tthis.resolutionScale = options.resolutionScale !== unde... | 2025-10-15T17:56:48 |
golang/go | ba057f7950f93a7cbd249ad79ed763a526a9cbbf | cc1241f353abbac2df2baf7abe09506be27782e8 | cmd/compile: add concurrency-ok property to some compiler debug flags
The property was missing from some flags that we potentially care
about. This change only affects flags supplied in the command line
(not explicitly changed within the compiler) but nonetheless it seems
like a good idea to get them right -- we migh... | [
{
"path": "src/cmd/compile/internal/base/debug.go",
"patch": "@@ -12,6 +12,8 @@ var Debug DebugFlags\n // DebugFlags defines the debugging configuration values (see var Debug).\n // Each struct field is a different value, named for the lower-case of the field name.\n // Each field must be an int or string a... | 2022-11-22T21:59:43 |
denoland/deno | 9d246e77dd1afbdda4f21f7377ad6528048e4f7b | 40b56f77c3798065de8150b4380549985ba83c51 | fix(npm): retain authorization header on http->https redirect (#29878)
Fixes #29869.
## Summary
When an npm registry is configured with `http://` in `.npmrc` and the
server
redirects to `https://`, the authorization header was being stripped.
This
happened because the previous origin-based check (`url.origin() !=
ne... | [
{
"path": "cli/http_util.rs",
"patch": "@@ -351,8 +351,7 @@ impl HttpClient {\n let mut req = self.get(new_url.clone())?.build();\n \n let mut headers = headers.clone();\n- // SECURITY: Do NOT forward auth headers to a new origin\n- if new_url.origin() != url.origin() {\n+ ... | 2026-03-12T11:16:14 |
tensorflow/tensorflow | 7f278d4d24fe1ab7d7f79e3a6c36c5ae8179947c | 694fbd589ce18f15b21082a15937eaae44a6582f | PR #39279: [ROCm] CI: Fix containers settings
Imported from GitHub PR https://github.com/openxla/xla/pull/39279
Fix for a race condition between concurrent workflow runs on the same self-hosted runner
Another thing: tmpfs of 80GB sometimes makes container's process exit with an OOM, changed tmpfs setting
Copybara im... | [
{
"path": "third_party/xla/.github/workflows/rocm_xla_ci.yml",
"patch": "@@ -32,7 +32,7 @@ jobs:\n runs-on: linux-x64-mi210-64-2gpu-amd\n env:\n DOCKER_IMAGE: rocm/tensorflow-build@sha256:7fcfbd36b7ac8f6b0805b37c4248e929e31cf5ee3af766c8409dd70d5ab65faa\n- CONTAINER_NAME: xla-runner\n+ ... | 2026-03-18T18:22:20 |
golang/go | cc1241f353abbac2df2baf7abe09506be27782e8 | a5f474fc062a3b9140febc802b6cc38cbebdd973 | runtime: fix printfloat, printcomplex buffer sizes
The buffers added in CL 716002 for printfloat64 and printcomplex128 are
too small to fit the longest formatted values. For values that are too
long, AppendFloat allocates, which may cause a crash for prints in
places in the runtime where allocation is not allowed.
Fi... | [
{
"path": "src/runtime/export_test.go",
"patch": "@@ -2084,6 +2084,24 @@ func DumpPrintQuoted(s string) string {\n \treturn string(buf)\n }\n \n+// DumpPrint returns the output of print(v).\n+func DumpPrint[T any](v T) string {\n+\tgp := getg()\n+\tgp.writebuf = make([]byte, 0, 2048)\n+\tprint(v)\n+\tbuf :=... | 2026-02-27T19:57:48 |
swiftlang/swift | 8d1e4c4988dbb50c2ed1a83a3d5378892fc97410 | 06b137466958b7ea57f7728b5575f1fd1f40f0ef | [BridgingHeader] Improve bridging header scanning to fix corner cases
Improve bridging header chaining when prefix mapping is used so it
matches the behavior of non-prefix-map and non-caching builds.
This also fixes a corner case where the same bridging header is used
by different modules in the dependency chain, prev... | [
{
"path": "lib/DependencyScan/ModuleDependencyScanner.cpp",
"patch": "@@ -1884,37 +1884,37 @@ llvm::Error ModuleDependencyScanner::performBridgingHeaderChaining(\n // a path-relative component into dependency scanning and defeat the purpose\n // of prefix mapping. Additionally, if everything is prefix m... | 2026-03-18T22:55:18 |
denoland/deno | 40b56f77c3798065de8150b4380549985ba83c51 | b8d9580c8eb528c581ef592ba6a014c9bfd29c19 | perf(ext/web): reduce promise allocations in streams (#32652)
## Summary
- Collapses `uponPromise`'s double `.then()` chain into a single
`.then()` — the second chain only caught internal assertion errors, now
handled via try/catch in wrapped handlers
- Converts `setPromiseIsHandledToTrue(PromisePrototypeThen(...))`
... | [
{
"path": "ext/web/06_streams.js",
"patch": "@@ -220,10 +220,31 @@ function uponRejection(promise, onRejected) {\n * @returns {void}\n */\n function uponPromise(promise, onFulfilled, onRejected) {\n+ // Optimized: single .then() instead of double promise chain.\n+ // The original code was:\n+ // Prom... | 2026-03-12T07:49:15 |
tensorflow/tensorflow | 8f9a9d23b4a7b40b5d643753fce373585193552b | e93514726bee0c764f856cab9aa4c6b4c040bb06 | Move V3 unreduced parameter tests to the SpmdPartitioningV3Test fixture.
The tests `UnreducedParamV3` and `SubgroupUnreducedParamV3`, which use V3 sharding syntax for unreduced parameters, are moved from the parameterized `SpmdPartitioningTest` to specific test fixtures. `UnreducedParamV3` is now in `SpmdPartitioningV... | [
{
"path": "third_party/xla/xla/service/spmd/spmd_partitioner_test.cc",
"patch": "@@ -16849,24 +16849,6 @@ ENTRY entry {\n ::testing::Each(op::Sharding(\"{unreduced}\")));\n }\n \n-TEST_P(SpmdPartitioningTest, UnreducedParamV3) {\n- absl::string_view hlo_string = R\"(\n-HloModule module\n-\n-E... | 2026-03-18T17:13:31 |
golang/go | a5f474fc062a3b9140febc802b6cc38cbebdd973 | 094aacdb047e716ea5598514222bc8c70843d49e | runtime: skip futex_time64 and timer_settime64 on 32-bit Android
In Android versions 8.0-10 (API levels 26-29), futex_time64 and
timer_settime64 are not in the allowlist of the seccomp filter and will
lead to a runtime crash.
Fixes #77621
Change-Id: I99607d7128c395edf93738440c2928b6819d8a21
Reviewed-on: https://go-r... | [
{
"path": "src/runtime/os_linux32.go",
"patch": "@@ -21,7 +21,12 @@ var isFutexTime32bitOnly atomic.Bool\n \n //go:nosplit\n func futex(addr unsafe.Pointer, op int32, val uint32, ts *timespec, addr2 unsafe.Pointer, val3 uint32) int32 {\n-\tif !isFutexTime32bitOnly.Load() {\n+\t// In Android versions 8.0-10 ... | 2026-02-27T18:01:24 |
denoland/deno | 7c84b09f35bc13aec624921dd9507637d505527d | 9e682be240965f2edab07363f2a72750bf250ac8 | fix(ext/signals): prevent panic on FreeBSD (#32518)
This PR fixes a panic in Deno on FreeBSD.
The issue occurs because the signal dictionary for FreeBSD
incorrectly includes SIGLIBRT (signal 33), which is not defined on
FreeBSD, leading to an EINVAL error when attempting to bind or handle
signals.
Fixes #31087 | [
{
"path": "ext/signals/dict.rs",
"patch": "@@ -104,8 +104,7 @@ signal_dict!(\n (29, \"SIGINFO\"),\n (30, \"SIGUSR1\"),\n (31, \"SIGUSR2\"),\n- (32, \"SIGTHR\"),\n- (33, \"SIGLIBRT\")\n+ (32, \"SIGTHR\")\n );\n \n #[cfg(target_os = \"openbsd\")]",
"additions": 1,
"deletions": 2,
"languag... | 2026-03-11T22:33:12 |
swiftlang/swift | 26a61e20e6d8dd2f30b836c7446a681adc757195 | 94fd1acd5e86a23f265ef28a39bf19f9de3a8daa | Fix grammatical error in String.swift documentation (#87934)
rdar://171958960 | [
{
"path": "stdlib/public/core/String.swift",
"patch": "@@ -18,7 +18,7 @@ import SwiftShims\n /// collection. Strings in Swift are Unicode correct and locale insensitive,\n /// and are designed to be efficient. The `String` type bridges with the\n /// Objective-C class `NSString` and offers interoperability ... | 2026-03-19T23:12:23 |
tensorflow/tensorflow | 69854e4e5ca500d36a1138fce6079267c53dbe23 | 63b46138a186dab7776e6093b90bcef6088cd341 | Remove xla_gpu_enable_reduction_epilogue_fusion flag.
This flag is no longer used and is being removed from the XLA debug options and related configurations.
PiperOrigin-RevId: 885614751 | [
{
"path": "third_party/xla/xla/debug_options_flags.cc",
"patch": "@@ -355,7 +355,6 @@ DebugOptions DefaultDebugOptionsIgnoringFlags() {\n opts.set_xla_gpu_collect_cost_model_stats(false);\n opts.set_xla_gpu_enable_split_k_autotuning(true);\n \n- opts.set_xla_gpu_enable_reduction_epilogue_fusion(true);\... | 2026-03-18T15:39:23 |
mrdoob/three.js | 1225f52302fc071d6411080e75e051677870c418 | f972284e08c85ce2fc2294b64da2be02dacb2043 | FontLoader: Add text direction. (#31683)
* Rebase from latest dev branch
* Change random color to fix
* Revert webgl_loader_ttf example
* Move location of MPLUS font and rename
* Fix font path
* zip MPLUSRounded1c to reduce size
* Fix un-used class
* Update TextGeometry.js
* Update FontLoader.js
---------
Co... | [
{
"path": "examples/fonts/MPLUSRounded1c/OFL.txt",
"patch": "@@ -0,0 +1,91 @@\n+This Font Software is licensed under the SIL Open Font License, Version 1.1.\n+This license is copied below, and is also available with a FAQ at:\n+https://openfontlicense.org\n+\n+\n+--------------------------------------------... | 2025-10-15T08:03:15 |
denoland/deno | e0464f494ee846121c0dbbaf37e3bf270a9cb8e9 | 3249c98a5527fbaadc3549fe393fef4fcd803e16 | fix(ext/fetch): retry on stale pooled HTTP/1.1 connections (#32566)
## Summary
Fixes #31955
When a server shuts down and restarts on the same port, the fetch
client's
connection pool may still hold a stale keep-alive connection. Reusing it
causes
`connection closed before message completed` errors on every other
req... | [
{
"path": "ext/fetch/lib.rs",
"patch": "@@ -1514,6 +1514,30 @@ fn is_error_retryable(err: &(dyn std::error::Error + 'static)) -> bool {\n }\n }\n \n+ // HTTP/1.1: The connection was closed before the message completed.\n+ // This happens when a pooled keep-alive connection is stale (e.g. the\n+ // ... | 2026-03-11T20:08:18 |
golang/go | a6a4a41e225096a2599762d95af9c32d944a15e2 | 5c595a811eec69761f288b0affeeacdcaf1e5e86 | all: test: remove unneeded loop variables
This CL follows from the abandoned CL 722961.
Alan Donovan asked if modernize would catch these changes; it does in part.
Here is how modernize was used:
1. Build the Go compiler from latest master
2. Clone x/tools and build modernize with the newest compiler
3. Then, do:
... | [
{
"path": "src/cmd/api/api_test.go",
"patch": "@@ -232,7 +232,6 @@ var warmupCache = sync.OnceFunc(func() {\n \t// Warm up the import cache in parallel.\n \tvar wg sync.WaitGroup\n \tfor _, context := range contexts {\n-\t\tcontext := context\n \t\twg.Add(1)\n \t\tgo func() {\n \t\t\tdefer wg.Done()",
"... | 2026-02-24T01:22:37 |
swiftlang/swift | 937056f309c589b8788fc13df9254390f8b1ca79 | ccd2b94e90f585a742e5ffd9b15a2a354a0d53b8 | tests: increase the timeout of SILOptimizer/large_string_array.swift.gyb for assert-enabled stdlib
In https://github.com/swiftlang/swift/pull/87315/changes/d1bf8430c0e1955b65d0b550482168c6a02d2232 I enabled this test for an assert-enabled stdlib.
However, with an assert-enabled stdlib this test takes a bit longer.
So ... | [
{
"path": "validation-test/SILOptimizer/large_string_array.swift.gyb",
"patch": "@@ -11,7 +11,9 @@\n \n // RUN: %{python} %S/../../test/Inputs/timeout.py 300 %target-swift-frontend -O -parse-as-library -emit-sil %t/main.swift | %FileCheck %s\n \n-// REQUIRES: optimized_stdlib\n+// There is a separate test f... | 2026-03-19T19:05:40 |
mrdoob/three.js | f972284e08c85ce2fc2294b64da2be02dacb2043 | 2b5ea3047752969bd69cd594002cbb4d71b515d6 | DRACOLoader: Implement data alignment for WebGPU (#31991)
* DRACOLoader: Implement data alignment for WebGPU
* clean up
* fix typo | [
{
"path": "examples/jsm/loaders/DRACOLoader.js",
"patch": "@@ -6,7 +6,9 @@ import {\n \tFileLoader,\n \tLoader,\n \tLinearSRGBColorSpace,\n-\tSRGBColorSpace\n+\tSRGBColorSpace,\n+\tInterleavedBuffer,\n+\tInterleavedBufferAttribute\n } from 'three';\n \n const _taskCache = new WeakMap();\n@@ -273,16 +275,25 ... | 2025-10-15T07:58:51 |
tensorflow/tensorflow | 8e67049212cdb0fd0e39c9cdcfe1350ebccb6342 | 6c3370316faed5a058e65aaeac11377d8163b2ec | fix | [
{
"path": "tensorflow/tools/pip_package/BUILD",
"patch": "@@ -365,6 +365,7 @@ tf_wheel(\n \"//tensorflow/compiler/tf2xla:xla_compiled_cpu_runtime_srcs\",\n \":xla_cmake\",\n ],\n+ # Explicitly list all external repositories that are needed in build_pip_package.py\n external_repos ... | 2026-03-18T13:53:42 |
denoland/deno | 3249c98a5527fbaadc3549fe393fef4fcd803e16 | b2ecb43e6229bad75498023c03c8b7f6abf73048 | chore: fix windows build with latest msvc (#32644) | [
{
"path": "Cargo.lock",
"patch": "@@ -1870,7 +1870,7 @@ dependencies = [\n \"http-body 1.0.0\",\n \"http-body-util\",\n \"import_map\",\n- \"indexmap 2.9.0\",\n+ \"indexmap 2.12.0\",\n \"jsonc-parser 0.28.0\",\n \"jupyter-protocol\",\n \"keyring\",\n@@ -2064,7 +2064,7 @@ dependencies = [\n \"deno_med... | 2026-03-11T19:08:23 |
golang/go | d51d4d75a67a5c0228ed55107a809f8f377c5949 | 425a88193ca39e82dc3dbcae22b98dbdfd98a04c | cmd/compile: (wasm) optimize float32(round64(float64(x)))
Not a fix because there are other architectures
still to be done.
Updates #75463.
Change-Id: Ia5233c2b6c5f4439e269950efdd851e72e8e7ff6
Reviewed-on: https://go-review.googlesource.com/c/go/+/730160
Reviewed-by: Keith Randall <khr@google.com>
Reviewed-by: Keith... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/Wasm.rules",
"patch": "@@ -349,6 +349,9 @@\n (Abs ...) => (F64Abs ...)\n (Copysign ...) => (F64Copysign ...)\n \n+(F32DemoteF64 (F64(Sqrt|Trunc|Ceil|Floor|Nearest|Abs) (F64PromoteF32 x))) => (F32(Sqrt|Trunc|Ceil|Floor|Nearest|Abs) x)\n+(F32DemoteF64 (F64Copysign ... | 2025-12-11T19:27:10 |
mrdoob/three.js | 2b5ea3047752969bd69cd594002cbb4d71b515d6 | 2cfd5739550a1221b783e17bf00ad675a728aea7 | Renderer: Fix transmission flicker. (#32043) | [
{
"path": "src/renderers/webgpu/WebGPUBackend.js",
"patch": "@@ -777,8 +777,7 @@ class WebGPUBackend extends Backend {\n \n \t\t\tif ( renderContext.scissor ) {\n \n-\t\t\t\tconst { x, y, width, height } = renderContext.scissorValue;\n-\t\t\t\tcurrentPass.setScissorRect( x, y, width, height );\n+\t\t\t\tthi... | 2025-10-15T07:51:56 |
kubernetes/kubernetes | 81380fd39905fcb997313727d9de5298ef88111e | d74a0d47d6c72c6d1045613be8e8e0d243ae1a4b | Fix SnapshotMetadata feature label to match test-infra filter
Change the feature label from "SnapshotMetadata" to "snapshotmetadata"
so it matches the [Feature:snapshotmetadata] filter used in test-infra,
which was causing the e2e tests to be skipped. | [
{
"path": "test/e2e/feature/feature.go",
"patch": "@@ -411,7 +411,7 @@ var (\n \t// - The external-snapshot-metadata sidecar deployed alongside the CSI driver\n \t// - The SnapshotMetadataService CRD (cbt.storage.k8s.io/v1beta1) installed\n \t// - A storage driver that implements the CapSnapshotMetadata cap... | 2026-03-09T09:42:07 |
tensorflow/tensorflow | a26e1fc78386a9d02502284bbb382b0513462ced | 28ad0a810afb007ed9e94c80e6670fdd1ed7918a | PR #38398: Make D2D transfer streams have high priority
Imported from GitHub PR https://github.com/openxla/xla/pull/38398
:pencil: Summary of Changes
This PR changes the initialization of D2D data transfer streams to have the highest possible priority.
:dart: Justification
Without this change, reliably achieving c... | [
{
"path": "third_party/xla/xla/pjrt/local_device_state.cc",
"patch": "@@ -86,18 +86,25 @@ LocalDeviceState::LocalDeviceState(\n int num_device_to_device_streams =\n stream_options.has_value() ? stream_options->num_device_to_device_streams\n : kNumDeviceToDeviceStream... | 2026-03-18T13:26:19 |
denoland/deno | a395e3630d753bac2f8668a8e8e86198ac4b3c3d | cbdfed1dfe9a6664184fbb7e07608d841b8fafe7 | refactor(ext/node): consolidate `node:fs` (part 7) (#32631)
## Summary
Follow-up to #32588. Continues the node:fs consolidation series by
inlining 4 more separate files into the main `fs.ts` polyfill:
- `_fs/_fs_truncate.ts` → `truncate()`, `truncateSync()`
- `_fs/_fs_utimes.ts` → `utimes()`, `utimesSync()`, `getVal... | [
{
"path": "ext/node/lib.rs",
"patch": "@@ -394,10 +394,6 @@ deno_core::extension!(deno_node,\n \"_fs/_fs_realpath.ts\",\n \"_fs/_fs_stat.ts\",\n \"_fs/_fs_statfs.ts\",\n- \"_fs/_fs_symlink.ts\",\n- \"_fs/_fs_truncate.ts\",\n- \"_fs/_fs_utimes.ts\",\n- \"_fs/_fs_watch.ts\",\n \"_n... | 2026-03-11T13:32:48 |
golang/go | 425a88193ca39e82dc3dbcae22b98dbdfd98a04c | 7336381cd16f81b7e34a8e8592a200b916989988 | cmd/compile: (arm64) optimize float32(round64(float64(x)))
Not a fix because there are other architectures
still to be done.
Updates #75463.
Change-Id: Ifca03975023e4e5d0ffa98d1f877314a1a291be0
Reviewed-on: https://go-review.googlesource.com/c/go/+/729161
Reviewed-by: Keith Randall <khr@golang.org>
Reviewed-by: Keit... | [
{
"path": "src/cmd/compile/internal/arm64/ssa.go",
"patch": "@@ -963,6 +963,7 @@ func ssaGenValue(s *ssagen.State, v *ssa.Value) {\n \tcase ssa.OpARM64MVN,\n \t\tssa.OpARM64NEG,\n \t\tssa.OpARM64FABSD,\n+\t\tssa.OpARM64FABSS,\n \t\tssa.OpARM64FMOVDfpgp,\n \t\tssa.OpARM64FMOVDgpfp,\n \t\tssa.OpARM64FMOVSfpgp... | 2025-12-10T21:50:21 |
mrdoob/three.js | bd3fe1f75001e9ec1322a97e39a10ecd2cec4927 | c2a5593b6b5b144b8f9873673ef50d7c1e387422 | WebGLRenderer: Try DFG LUT instead of Analytical approximation. (#32054)
* WebGLRenderer: Try DFG LUT instead of Analytical approximation.
* Potential fix for code scanning alert no. 3676: Unused variable, import, function or class
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]... | [
{
"path": "build/three.module.js",
"patch": "@@ -3,8 +3,8 @@\n * Copyright 2010-2025 Three.js Authors\n * SPDX-License-Identifier: MIT\n */\n-import { Matrix3, Vector2, Color, mergeUniforms, Vector3, CubeUVReflectionMapping, Mesh, BoxGeometry, ShaderMaterial, BackSide, cloneUniforms, Euler, Matrix4, Colo... | 2025-10-15T03:57:33 |
denoland/deno | cbdfed1dfe9a6664184fbb7e07608d841b8fafe7 | 7bcaaa2a124f505b87fa6f9c84e13abeb0a8c9de | fix(npm): handle read-only bin files when setting up node_modules/.bin (#32632)
## Summary
- Some npm tarballs ship bin files with read+execute but **no write**
permission (e.g. `@formatjs/cli@2.15.0` uses mode `555`).
`make_executable_if_exists()` was opening these files with `O_RDWR`
unconditionally, causing `EACCE... | [
{
"path": "libs/npm_installer/bin_entries.rs",
"patch": "@@ -382,11 +382,12 @@ fn make_executable_if_exists(\n path: &Path,\n ) -> Result<bool, std::io::Error> {\n let sys = sys.with_paths_in_errors();\n- let mut open_options = sys_traits::OpenOptions::new();\n- open_options.read = true;\n- open_opti... | 2026-03-11T13:28:01 |
kubernetes/kubernetes | aa731ab5c0cc822821f1b543449d634fa99f34d5 | bc9a038c98753bf0afe9fdef4360befcb2610e55 | test/e2e_dra: retry pod check during upgrade/downgrade
During cluster upgrade and downgrade, nodes are temporarily restarted.
A pod can be reported as Running by the API server while the kubelet's
container runtime is still initializing, causing transient exec failures:
Internal error occurred: unable to upgrade co... | [
{
"path": "test/e2e_dra/extendedresources_test.go",
"patch": "@@ -28,6 +28,7 @@ import (\n \t\"k8s.io/apimachinery/pkg/api/resource\"\n \tmetav1 \"k8s.io/apimachinery/pkg/apis/meta/v1\"\n \tdrautils \"k8s.io/kubernetes/test/e2e/dra/utils\"\n+\t\"k8s.io/kubernetes/test/e2e/framework\"\n \te2epod \"k8s.io/kub... | 2026-03-09T07:17:37 |
tensorflow/tensorflow | 28ad0a810afb007ed9e94c80e6670fdd1ed7918a | 2d6788b4daac45acbfbc9f3039618423efe54384 | PR #39253: Add Triton GEMM default configs for consumer Blackwell (SM 12.0)
Imported from GitHub PR https://github.com/openxla/xla/pull/39253
## 📝 Summary of Changes
`GetDefaultTritonConfigs()` uses `IsAtLeastBlackwell()` to select B200 (SM 10.0) configs for all Blackwell GPUs. But consumer Blackwell GPUs (RTX 5090... | [
{
"path": "third_party/xla/xla/backends/gpu/autotuner/triton.cc",
"patch": "@@ -72,8 +72,13 @@ std::vector<TritonGemmConfig> GetDefaultTritonConfigs(\n auto* cuda_compute_capability = compute_capability.cuda_compute_capability();\n std::vector<TritonGemmConfig> configs;\n \n- if (cuda_compute_capabilit... | 2026-03-18T13:26:00 |
mrdoob/three.js | c2a5593b6b5b144b8f9873673ef50d7c1e387422 | df5aa82a1433b1748bd4776d0d3baf21138f2c07 | TSL: Fix auto type conversion for layout parameters (#32059) | [
{
"path": "src/nodes/core/Node.js",
"patch": "@@ -749,7 +749,12 @@ class Node extends EventDispatcher {\n \n \t\t} else if ( buildStage === 'generate' ) {\n \n-\t\t\tconst isGenerateOnce = this.generate.length === 1;\n+\t\t\t// If generate has just one argument, it means the output type is not required.\n+\... | 2025-10-15T03:27:06 |
golang/go | 7336381cd16f81b7e34a8e8592a200b916989988 | 831c489f9cb9afa560ac3c5b79acc8ea5a62e414 | cmd/compile: (amd64) optimize float32(round64(float64(x)))
Not a fix because there are other architectures
still to be done.
Updates #75463.
Change-Id: I3d7754ce4a26af0f5c4ef0be1254d164e68f8442
Reviewed-on: https://go-review.googlesource.com/c/go/+/729160
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accou... | [
{
"path": "src/cmd/compile/internal/amd64/ssa.go",
"patch": "@@ -1491,7 +1491,7 @@ func ssaGenValue(s *ssagen.State, v *ssa.Value) {\n \t\t}\n \tcase ssa.OpAMD64LoweredRound32F, ssa.OpAMD64LoweredRound64F:\n \t\t// input is already rounded\n-\tcase ssa.OpAMD64ROUNDSD:\n+\tcase ssa.OpAMD64ROUNDSD, ssa.OpAMD6... | 2025-12-10T21:05:55 |
denoland/deno | 7bcaaa2a124f505b87fa6f9c84e13abeb0a8c9de | 693607582b02998bcf81a47d61176fd4c6046f1f | fix(ext/node): handle signal 0 in child_process.kill() (#32294)
## Summary
- `child_process.kill(0)` threw `Unknown signal: 0` because
`toDenoSignal()` didn't recognize signal 0
- In POSIX, signal 0 checks if a process exists without sending a signal
(`kill(pid, 0)`)
- Now handles signal `0` (both numeric and string ... | [
{
"path": "ext/node/polyfills/internal/child_process.ts",
"patch": "@@ -576,6 +576,17 @@ export class ChildProcess extends EventEmitter {\n return this.killed;\n }\n \n+ // Signal 0 is a special case: it checks if the process exists\n+ // without sending a signal (POSIX kill(pid, 0)).\n+ ... | 2026-03-11T13:15:29 |
mrdoob/three.js | cadb42b1c3ac539d43a697a8471c9fde1b5600fa | 21009ebc442a3566e76ba0f4d9b8b19a5c910c7d | Update SSGINode.js
Fix description. | [
{
"path": "examples/jsm/tsl/display/SSGINode.js",
"patch": "@@ -51,7 +51,7 @@ class SSGINode extends TempNode {\n \t/**\n \t * Constructs a new SSGI node.\n \t *\n-\t * @param {TextureNode} beautyNode - The texture node that represents the input of the effect.\n+\t * @param {TextureNode} beautyNode - A text... | 2025-10-13T12:05:36 |
kubernetes/kubernetes | f692e4e8f0eaadb606bd814cfae111eb77eab508 | 3f997b58ed2d7da5991a1a0be5d8aad46d7a3ca2 | DRA upgrade/downgrade: add some debug output for stopping commands
In some (all?) CI jobs the initial kubelet instance keeps running, despite
command context cancellation. Not reproducible locally, so additional output
was necessary to track down the root cause in CI runs: signal propagation via
sudo didn't work for k... | [
{
"path": "test/e2e_dra/upgradedowngrade_test.go",
"patch": "@@ -218,7 +218,7 @@ func testUpgradeDowngrade(tCtx ktesting.TContext) {\n \t\t\t\"FEATURE_GATES\": \"DynamicResourceAllocation=true,DRADeviceTaintRules=true,DRADeviceTaints=true,DRAExtendedResource=true\",\n \t\t\t// *not* needed because driver w... | 2026-03-06T08:36:04 |
tensorflow/tensorflow | 9d4eda30916fb28f8a8338c1e04107c2b9a36f8c | c3f0feee263ad7165470f742825e6dbc7c84a073 | [XLA:GPU]: Change signature for error handler
Errors can be swallowed from the compilation pipeline so we want them to be only
logged when its not being ignored.
PiperOrigin-RevId: 885510609 | [
{
"path": "third_party/xla/xla/backends/gpu/codegen/triton/xtile_compiler.cc",
"patch": "@@ -395,12 +395,12 @@ absl::StatusOr<TritonWrapperResult> TritonWrapper(\n VLOG(3) << fusion->fused_instructions_computation()->ToString(\n HloPrintOptions::ShortParsable());\n \n- const auto error_handler = [f... | 2026-03-18T11:17:16 |
golang/go | 011e98af3b254cb78f7765aff5410fd085cf3e81 | ad168c5131c83981daefdb0db8a45d1d3315c388 | test: skip TestScanAllocIssue77573 with asan mode
In ASAN mode, extra memory allocations alter the object size and impact the scansize computation. Skip this test when ASAN is enabled.
Fixes #77857.
Fixes #77858.
Fixes #77859.
Change-Id: I21027ff20c411a0fda7a50446b2202871baa2262
Reviewed-on: https://go-review.google... | [
{
"path": "src/runtime/malloc_test.go",
"patch": "@@ -854,6 +854,9 @@ func TestMkmalloc(t *testing.T) {\n }\n \n func TestScanAllocIssue77573(t *testing.T) {\n+\tif asan.Enabled {\n+\t\tt.Skip(\"extra allocations with -asan causes this to fail\")\n+\t}\n \tverifyScanAlloc := func(t *testing.T, f func(), exp... | 2026-02-28T02:28:16 |
denoland/deno | 26972e65e0c74699f313f3b1181adb6243e6aeaf | 9bb8552cf9d6bed5233007d135c4b0523522e672 | fix(ext/node): fix TLS JSStreamSocket resource leak causing process hang (#32325)
Closes https://github.com/denoland/deno/issues/30556
When `tls.connect({ socket })` receives a non-`net.Socket` stream (e.g.
mssql/tedious wrapping TDS framing in a Duplex via native-duplexpair),
Deno creates a `JSStreamSocket` to br... | [
{
"path": "ext/node/ops/tls.rs",
"patch": "@@ -336,6 +336,8 @@ struct JSDuplexResource {\n readable: Arc<Mutex<tokio::sync::mpsc::Receiver<Bytes>>>,\n writable: tokio::sync::mpsc::Sender<Bytes>,\n read_buffer: Arc<Mutex<VecDeque<Bytes>>>,\n+ closed: AtomicBool,\n+ close_notify: tokio::sync::Notify,\... | 2026-03-11T13:10:26 |
mrdoob/three.js | a02ba14525946ce991a6a119449b7ea9c04f358e | c861af13ea6b691dfe3cc3f48b90644efa60a7b2 | New Docs: Fixed examples layout breakage. | [
{
"path": "files/main.css",
"patch": "@@ -448,7 +448,7 @@ iframe#viewer {\n }\n \n #viewer {\n-\tpadding-left: 0;\n+\tpadding-left: var(--panel-width);\n }\n \n #button {",
"additions": 1,
"deletions": 1,
"language": "CSS"
},
{
"path": "utils/docs/template/static/index.html",
"patch"... | 2025-10-13T10:46:01 |
swiftlang/swift | 06b137466958b7ea57f7728b5575f1fd1f40f0ef | 768fb73f8b1492741f7954fc682a49112e0f2895 | [SIL] Relax pack_pack_index assertion to allow empty trailing slice (#87844)
When we have a nop pack, like below:
```swift
@inline(never)
func variadicFunc<A, B, each C>(_ a: A, _ b: B, _ c: repeat each C) -> (A, B, repeat each C) {
var tuple = (a, b, repeat each c)
return tuple
}
variadicFunc(42, "hello")
```
T... | [
{
"path": "lib/SIL/IR/SILInstructions.cpp",
"patch": "@@ -2446,7 +2446,7 @@ PackPackIndexInst *PackPackIndexInst::create(SILFunction &F,\n unsigned componentStartIndex,\n SILValue indexWithinComponent,\n ... | 2026-03-19T16:43:31 |
kubernetes/kubernetes | 9fccfc6d74127e8e01b17022e963141c45e5a258 | bc9a038c98753bf0afe9fdef4360befcb2610e55 | validation-gen: suppress staticcheck SA5008
A recent staticcheck linter in golangci-lint v2.11.2 complains:
ERROR: staging/src/k8s.io/code-generator/cmd/validation-gen/output_tests/public_private/doc.go:37:17: SA5008: unexported struct field cannot have non-ignored `json:"private"` tag (staticcheck)
ERROR: p... | [
{
"path": "staging/src/k8s.io/code-generator/cmd/validation-gen/output_tests/public_private/doc.go",
"patch": "@@ -22,7 +22,7 @@ limitations under the License.\n //\n // +k8s:validation-gen-nolint\n //\n-//nolint:unused,govet // govet disables structtag check, which checks for use of tags on private fields\... | 2026-03-09T09:22:41 |
tensorflow/tensorflow | b57e0b2e0d392ea921c99c3bbf85885baafba6c5 | ff8877d782ad00ec62f48d2de679243265ccee42 | PR #38759: [ROCm] Fixed dot_algorithms_test. Updated support_legacy and test itself.
Imported from GitHub PR https://github.com/openxla/xla/pull/38759
📝 Summary of Changes
Modified IsDotAlgorithmSupportedByTriton to reflect implementation on ROCm.
🎯 Justification
triton/dot_algorithms_test was failing
🚀 Kind of ... | [
{
"path": "third_party/xla/xla/backends/gpu/codegen/triton/dot_algorithms_test.cc",
"patch": "@@ -1543,14 +1543,26 @@ TEST_P(TritonAndBlasSupportForDifferentTensorSizes,\n case PC::ALG_DOT_TF32_TF32_F32_X3:\n case PC::ALG_DOT_BF16_BF16_F32:\n case PC::ALG_DOT_BF16_BF16_F32_X3:\n- case PC::ALG... | 2026-03-18T10:21:52 |
golang/go | 244b156e67635f83a13b113c61f7729a79e06056 | a48829de1e7d51e31bb9e28c1b386ba5b796b76f | cmd/compile: fix internal compiler error: bad write barrier type
This change fixes an issue where the compiler panics with 'bad
write barrier type' for zero-sized arrays. The loops in
storeTypeScalars and storeTypePtrs erroneously processed
zero-sized arrays causing invalid operations. This ignores them.
Fixes #77815... | [
{
"path": "src/cmd/compile/internal/ssagen/ssa.go",
"patch": "@@ -5671,7 +5671,7 @@ func (s *state) storeTypeScalars(t *types.Type, left, right *ssa.Value, skip ski\n \t\t\tval := s.newValue1I(ssa.OpStructSelect, ft, int64(i), right)\n \t\t\ts.storeTypeScalars(ft, addr, val, 0)\n \t\t}\n-\tcase t.IsArray() ... | 2026-02-26T11:01:01 |
mrdoob/three.js | 1c2d462f93d6082dbef19ec97ae90bba033fb180 | ecad1ec504436c3b2e1dd1461b4a3a9a6fa92c0e | GlitchPass: fix heightMap member name (#32047) | [
{
"path": "examples/jsm/postprocessing/GlitchPass.js",
"patch": "@@ -61,7 +61,7 @@ class GlitchPass extends Pass {\n \t\t// internals\n \n \t\tthis._heightMap = this._generateHeightmap( dt_size );\n-\t\tthis.uniforms[ 'tDisp' ].value = this.heightMap;\n+\t\tthis.uniforms[ 'tDisp' ].value = this._heightMap;\... | 2025-10-13T08:28:00 |
denoland/deno | 9bb8552cf9d6bed5233007d135c4b0523522e672 | 0238181e8a95be0885da93bbc99997988d07bff0 | fix(ext/node): handle cargo features during publish (#32636)
hot fix for v2.7.5 release that broke during `cargo publish` step. | [
{
"path": "ext/node/ops/fs.rs",
"patch": "@@ -9,6 +9,7 @@ use std::rc::Rc;\n use deno_core::OpState;\n use deno_core::ResourceId;\n use deno_core::op2;\n+#[cfg(feature = \"sync_fs\")]\n use deno_core::unsync::spawn_blocking;\n use deno_fs::FileSystemRc;\n use deno_fs::FsFileType;\n@@ -20,8 +21,24 @@ use den... | 2026-03-11T12:38:55 |
golang/go | 93b78326c30afe7a49b50c3c1614799ee5b41b97 | c4de16a714d67c31c80285a4cb82069a6fa8718c | cmd/compile: use OpMove instead of memmove more on loong64
OpMove is faster for small moves of fixed size.
goos: linux
goarch: loong64
pkg: runtime
cpu: Loongson-3A6000 @ 2500.00MHz
| old.txt | new.txt |
| sec/op | ... | [
{
"path": "src/cmd/compile/internal/ssa/rewrite.go",
"patch": "@@ -1484,11 +1484,13 @@ func isInlinableMemmove(dst, src *Value, sz int64, c *Config) bool {\n \t\treturn sz <= 16 || (sz < 1024 && disjoint(dst, sz, src, sz))\n \tcase \"arm64\":\n \t\treturn sz <= 64 || (sz <= 1024 && disjoint(dst, sz, src, sz... | 2026-02-12T06:09:27 |
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.