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 |
|---|---|---|---|---|---|
denoland/deno | 099320204ddaad99adf11b72a6bfe30788135719 | 0558eecc0273358e962d059f1a8105d32b1d211b | fix(inspector): send executionContextDestroyed on process.exit() (#32934)
## Summary
- When `process.exit()` is called during an inspector debugging session,
broadcast `Runtime.executionContextDestroyed` CDP notification to all
connected sessions before exiting
- Wait for debugger sessions to disconnect after sending... | [
{
"path": "cli/worker.rs",
"patch": "@@ -94,6 +94,7 @@ impl CliMainWorker {\n {\n let coverage_for_exit = coverage_cell.clone();\n let profiler_for_exit = profiler_cell.clone();\n+ let inspector = self.worker.js_runtime().inspector();\n let mut cbs = OpExitCallbacks::default();\n ... | 2026-03-24T07:36:24 |
kubernetes/kubernetes | c07f3ebbde87361854c226c58ae96f8a500ff6fa | 6175c54954f01356a70431d58af7b54e1fb91a76 | Fix logspam in leaderelection controller.
If the reconcileElectionStep function returns `noRequeue, nil`, it causes log
spam from apiserver. This is because HandleErrorWithContext regardless of
error value. Skip logging if error is nil.
Also, tag the log message with the involved lease object name.
```
...
{"ts":1... | [
{
"path": "pkg/controlplane/controller/leaderelection/leaderelection_controller.go",
"patch": "@@ -166,7 +166,9 @@ func (c *Controller) processNextElectionItem(ctx context.Context) bool {\n \t}\n \n \tintervalForRequeue, err := c.reconcileElectionStep(ctx, key)\n-\tutilruntime.HandleErrorWithContext(ctx, er... | 2026-03-18T01:05:20 |
mrdoob/three.js | a477148f9569aca66be8413c563412c4160caa8a | fb28a2e295a53628d27dbcb0a0b8435b5fd75b62 | KTX2Loader: Fix alpha for BC3 textures (#32772) | [
{
"path": "examples/jsm/loaders/KTX2Loader.js",
"patch": "@@ -18,7 +18,6 @@ import {\n \tRGBA_ASTC_4x4_Format,\n \tRGBA_ASTC_6x6_Format,\n \tRGBA_BPTC_Format,\n-\tRGBA_S3TC_DXT3_Format,\n \tRGBA_ETC2_EAC_Format,\n \tR11_EAC_Format,\n \tSIGNED_R11_EAC_Format,\n@@ -994,8 +993,8 @@ const FORMAT_MAP = {\n \t[ V... | 2026-01-16T15:15:28 |
golang/go | 04dc12c1a17d3fa4ff49af84de5641099716e234 | fa238516b782bd1f233e85b719b7ab90889a5634 | runtime: use uname version check for 64-bit time on 32-bit arch codepaths
The previous fallback-on-ENOSYS logic causes issues on forks of Linux.
Android: #77621 (CL 750040 added a workaround with a TODO,
this fixes that TODO)
Causes the OS to terminate the program when running on Android
versions <=10 since the secco... | [
{
"path": "src/internal/runtime/syscall/linux/defs_linux_386.go",
"patch": "@@ -17,6 +17,7 @@ const (\n \tSYS_OPENAT = 295\n \tSYS_PREAD64 = 180\n \tSYS_READ = 3\n+\tSYS_UNAME = 122\n \n \tEFD_NONBLOCK = 0x800\n ",
"additions": 1,
"deletions": 0,
"language": "Go"
... | 2026-03-24T23:02:09 |
denoland/deno | f54ea9f126b4f73bc5b6af8622b43340a074bb7c | e7eb863c527b7441521d567a48b3f9af3f56ef34 | chore: consolidate Copilot review instructions and add runtime-aware guidelines (#32938)
## Summary
- Merge `.github/instructions/code-review.instructions.md` into
`.github/copilot-instructions.md`, eliminating the separate instructions
directory
- Add new review guidelines based on recurring patterns of incorrect
Co... | [
{
"path": ".github/copilot-instructions.md",
"patch": "@@ -228,6 +228,123 @@ RUST_BACKTRACE=1 ./target/debug/deno run script.ts\n \n In Rust code: `eprintln!(\"Debug: {:?}\", var);` or `dbg!(var);`\n \n+## Pull Request Reviews\n+\n+### Before commenting, verify your claims\n+\n+- If you claim something is m... | 2026-03-24T07:10:31 |
tensorflow/tensorflow | fb29b4de3d2524850e67c4a4a39a725857ec752a | b803e00cc32a6b245d83becb7daf78230f2c464d | PR #39871: [ROCm] Fix bf16 upcast handling for libdevice calls.
Imported from GitHub PR https://github.com/openxla/xla/pull/39871
📝 Summary of Changes
arguments always up/down casted for bf16 - there are no native libdevice functions for bf16
🎯 Justification
with current implementation up/down cast are omitted for... | [
{
"path": "third_party/xla/xla/backends/gpu/codegen/triton/transforms/tests/BUILD",
"patch": "@@ -17,6 +17,9 @@ lit_test_suite(\n name = \"mlir_lit_tests\",\n srcs = glob([\"*.mlir\"]),\n cfg = \"//xla:lit.cfg.py\",\n+ tags_override = {\n+ \"triton_xla_math_to_libdevice_rocm.mlir\": [\... | 2026-03-31T09:42:13 |
mrdoob/three.js | c3a8142c632e3e79f857d58b6684ff0154886f15 | de1f25b16e7d9025e623466cdf0c28086a6191f7 | WebGLRenderer: Fix shadow bias with reversed depth buffer. (#32770) | [
{
"path": "src/renderers/shaders/ShaderChunk/shadowmap_pars_fragment.glsl.js",
"patch": "@@ -267,14 +267,14 @@ export default /* glsl */`\n \t\t\t#ifdef USE_REVERSED_DEPTH_BUFFER\n \n \t\t\t\tfloat dp = ( shadowCameraNear * ( shadowCameraFar - viewSpaceZ ) ) / ( viewSpaceZ * ( shadowCameraFar - shadowCamera... | 2026-01-16T11:21:05 |
kubernetes/kubernetes | ce9ad9519237d5f5b9a323f0594a408c8a19de21 | 9f60cc3c4e8ddb373b1816a7e28b159db08f6a30 | UPDATE_COMPATIBILITY_FIXTURE_DATA=true make test WHAT=k8s.io/api | [
{
"path": "staging/src/k8s.io/api/testdata/v1.33.0/core.v1.Pod.after_roundtrip.json",
"patch": "@@ -1,2051 +0,0 @@\n-{\n- \"kind\": \"Pod\",\n- \"apiVersion\": \"v1\",\n- \"metadata\": {\n- \"name\": \"nameValue\",\n- \"generateName\": \"generateNameValue\",\n- \"namespace\": \"namespaceValue\",... | 2026-03-17T23:31:30 |
swiftlang/swift | dd512134d0094a3feceeea7e6611ce10215c8969 | 0d81f6fc5cad6373d073831602c40f1c739a17d2 | [CMake] Don't remove sourcekit-inproc from _SWIFT_DEFAULT_COMPONENTS
SourceKit always needs sourcekit-inproc. With this change we always get
a `lib/sourcekitdInProc.framework` directory in the swift build
directory. This can then be used in SourceKit-LSP to run SourceKitD
in-process on macOS for debugging. | [
{
"path": "cmake/modules/SwiftComponents.cmake",
"patch": "@@ -83,10 +83,8 @@ list(REMOVE_ITEM _SWIFT_DEFAULT_COMPONENTS \"clang-resource-dir-symlink\")\n list(REMOVE_ITEM _SWIFT_DEFAULT_COMPONENTS \"clang-builtin-headers-in-clang-resource-dir\")\n # This conflicts with LLVM itself when doing unified builds... | 2026-03-18T11:06:34 |
golang/go | b8dea877130ee6b80df1c468952ec5d13de9c16a | 068f27a8e06e58361bcc2d5e7d17deafab4b52bc | net/url: escape // at start of Path when OmitHost set
When a URL has OmitHost set and a Path starting with //,
escape the first / in the path to avoid emitting a URL
with the host set from the Path.
For example for
u := url.URL{Scheme: "file", OmitHost: true, Path: "//host/path"}
u.String is now "file:%2F/host/pat... | [
{
"path": "src/net/url/url.go",
"patch": "@@ -836,6 +836,13 @@ func (u *URL) String() string {\n \t\t\t}\n \t\t}\n \t\tpath := u.EscapedPath()\n+\t\tif u.OmitHost && u.Host == \"\" && u.User == nil && strings.HasPrefix(path, \"//\") {\n+\t\t\t// Escape the first / in a path starting with \"//\" and no autho... | 2026-03-24T21:19:02 |
denoland/deno | e7eb863c527b7441521d567a48b3f9af3f56ef34 | 7a2a390432fc3eddef21db0ea6db6c392f63d13d | fix(npm): skip `file:` and `link:` dependencies in npm packages (#32876)
## Summary
- npm packages with `file:` or `link:` dependency specifiers (e.g.
`"local-pkg": "file:./local-pkg"`) caused Deno to fail with "Invalid
version requirement. Unexpected character." during resolution
- These specifiers are used for local... | [
{
"path": "libs/npm/registry.rs",
"patch": "@@ -131,6 +131,11 @@ pub enum NpmDependencyEntryErrorSource {\n \n To work around this, you can use a package.json and install the dependencies via `npm install`.\", .specifier)]\n RemoteDependency { specifier: String },\n+ /// A `file:` or `link:` dependency t... | 2026-03-23T20:05:17 |
tensorflow/tensorflow | a31205c9f8476bae72688716d3ec93118bb60230 | 78346d74f986b8c634a39b5cfa74870cd9722ff7 | PR #40141: [xla:gpu] Fix a bug when emitting degenerate collective permute
Imported from GitHub PR https://github.com/openxla/xla/pull/40141
`hlo_async_executions_` updated below for sync/async execution. Adding nullptr to the map is not correct, because degenerate copies become async copies with their own async exec... | [
{
"path": "third_party/xla/xla/service/gpu/thunk_emitter.cc",
"patch": "@@ -1583,8 +1583,6 @@ absl::StatusOr<ThunkSequence> ThunkEmitter::EmitCollectivePermute(\n /*destination_buffer=*/\n ShapedSlice{result_slice, result_buffer_shape},\n /*mem_size=*/ShapeUtil::ByteSizeOf(oper... | 2026-03-31T09:10:37 |
mrdoob/three.js | c6515c3bf90bd1c5c496b226a409b0d26a7af772 | 9a12ba7a49ab26621d86930772e56b7fb2d1aed8 | USDLoader: Various bug fixes and improvements (#32766) | [
{
"path": "examples/jsm/loaders/usd/USDAParser.js",
"patch": "@@ -103,7 +103,7 @@ class USDAParser {\n \n \t\t\t\ttarget = stack[ stack.length - 1 ];\n \n-\t\t\t} else {\n+\t\t\t} else if ( line.trim() ) {\n \n \t\t\t\tstring = line.trim();\n \n@@ -660,12 +660,12 @@ class USDAParser {\n \t\t}\n \n \t\t// Qu... | 2026-01-15T23:17:52 |
golang/go | 068f27a8e06e58361bcc2d5e7d17deafab4b52bc | 98aaa9b0ee54ba197432458a6f344c14aa12c106 | cmd/go: add information about GODEBUGs to go help gopath
And make it clear that standard library tests won't run properly with
GO111MODULE=off.
Fixes #73973
Fixes #69202
Change-Id: I8c71c739e1da80fbf2e13f84ecaf9c346a6a6964
Reviewed-on: https://go-review.googlesource.com/c/go/+/758720
Reviewed-by: Dmitri Shuralyov <d... | [
{
"path": "src/cmd/go/alldocs.go",
"patch": "@@ -2877,6 +2877,13 @@\n // Code in GOPATH mode vendor directories is not subject to\n // GOPATH mode import path checking (see 'go help importpath').\n //\n+// In GOPATH mode, the default GODEBUG values built into a binary\n+// will be those used in Go 1.20, set... | 2026-03-24T16:22:25 |
denoland/deno | 70268d6b9d02a6fb46b75ea444a3b9bd7779469c | dcc04bbd62563016a30a8fa4eb66f4598cae857b | feat(core): implement NodeRuntime CDP domain and fix --inspect-brk blocking (#32714)
## Summary
Implements the `NodeRuntime` CDP (Chrome DevTools Protocol) domain for
the inspector, and fixes several long-standing inspector issues.
### NodeRuntime CDP Domain
- `NodeRuntime.enable` — emits `NodeRuntime.waitingForDebu... | [
{
"path": "libs/core/inspector.rs",
"patch": "@@ -194,7 +194,9 @@ impl v8::inspector::V8InspectorClientImpl for JsRuntimeInspectorClient {\n \n fn run_if_waiting_for_debugger(&self, context_group_id: i32) {\n assert_eq!(context_group_id, JsRuntimeInspector::CONTEXT_GROUP_ID);\n- self.0.flags.borrow... | 2026-03-23T13:08:12 |
mrdoob/three.js | 3fbfa2c60683532c754ea36641bac41e0d051664 | a519dddc3c7738a8fb4be42de1702da08da09940 | WebGLRenderer: Fix remaining shadow issues with reversed depth. (#32751) | [
{
"path": "src/renderers/shaders/ShaderChunk/shadowmap_pars_fragment.glsl.js",
"patch": "@@ -132,14 +132,24 @@ export default /* glsl */`\n \t\t\t\tfloat radius = shadowRadius * texelSize.x;\n \n \t\t\t\t// Use IGN to rotate sampling pattern per pixel\n-\t\t\t\tfloat phi = interleavedGradientNoise( gl_FragC... | 2026-01-14T16:05:04 |
tensorflow/tensorflow | 3b290683d96a81091b91ee0cc422cf33b00f45c8 | 22f615f778845156213656dd220722128a2ca9dd | PR #39695: Fix xla aot compile gpu test
Imported from GitHub PR https://github.com/openxla/xla/pull/39695
📝 Summary of Changes
- Add missing `cuda_platform` dep so the GPU platform is registered
- Disambiguate `LocalExecutable::Run()` calls with explicit `absl::Span<const ShapedBuffer* const>` (fixes build: over... | [
{
"path": "third_party/xla/xla/service/BUILD",
"patch": "@@ -6161,9 +6161,10 @@ xla_cc_test(\n ],\n )\n \n-xla_cc_test(\n+xla_test(\n name = \"xla_aot_compile_gpu_test\",\n srcs = [\"xla_aot_compile_gpu_test.cc\"],\n+ backends = [\"h100\"],\n data = [\n \":xla_aot_compile_test_gpu... | 2026-03-31T08:37:45 |
kubernetes/kubernetes | 298629e1c64ad666a81fb27d862ebab60894ff15 | 9c7e57bb7c5e8c829b6d5f4f3bd78e8dc33c4486 | Fix discovery test cleanup to wait for delete convergence | [
{
"path": "test/integration/apiserver/discovery/framework.go",
"patch": "@@ -141,7 +141,7 @@ func (a applyAPIService) Cleanup(ctx context.Context, client testClient) error {\n \tname := a.Version + \".\" + a.Group\n \terr := client.ApiregistrationV1().APIServices().Delete(ctx, name, metav1.DeleteOptions{})\... | 2026-03-17T23:50:59 |
golang/go | e3bda445164c764aa95c7df271dff2170fa1a7ce | cbc2d06c9ba8285bb60f1055b44d4d1e742ca734 | debug/elf: handle program header count overflow
ELF files only have a 16-bit count for program headers.
To handle the very rare case of larger files,
a large program header count is stored as 0xffff
and the first section header info field holds the actual count.
Fixes #78217
Change-Id: I35c7e15025a9677473cb43d09a41f... | [
{
"path": "src/debug/elf/file.go",
"patch": "@@ -400,6 +400,72 @@ func NewFile(r io.ReaderAt) (*File, error) {\n \t\treturn nil, &FormatError{0, \"invalid ELF phentsize\", phentsize}\n \t}\n \n+\t// If the number of sections is greater than or equal to SHN_LORESERVE\n+\t// (0xff00), shnum has the value zero... | 2026-03-23T11:38:52 |
denoland/deno | dcc04bbd62563016a30a8fa4eb66f4598cae857b | b75e2b8dda4c495d56dfc8126893c1271c012199 | fix(ext/node): defer uv_write callbacks to prevent re-entrancy panic (#32919)
## Summary
- `uv_write` in the uv compat layer was firing write callbacks
synchronously when `try_write` succeeded fully or failed. This caused a
`RefCell` double-borrow panic ("RefCell already borrowed") when the
caller (e.g. `StreamWrap.w... | [
{
"path": "libs/core/uv_compat/stream.rs",
"patch": "@@ -254,10 +254,14 @@ pub unsafe fn uv_write(\n data: write_data,\n offset: 0,\n cb,\n+ status: None,\n });\n return 0;\n }\n \n+ // Never fire callbacks synchronously from uv_write — always queue.\n+ /... | 2026-03-23T11:19:38 |
mrdoob/three.js | e90650f919f58316ee38e63b4fd1b15785d58a02 | da6895d73acf62ee83ae32b1d8d32bdb58c71638 | WebGLRenderer: Fix pointlight shadows with reversed depth buffer. (#32749) | [
{
"path": "src/renderers/shaders/ShaderChunk/shadowmap_pars_fragment.glsl.js",
"patch": "@@ -262,9 +262,18 @@ export default /* glsl */`\n \n \t\tif ( viewSpaceZ - shadowCameraFar <= 0.0 && viewSpaceZ - shadowCameraNear >= 0.0 ) {\n \n-\t\t\t// Calculate perspective depth for cube shadow map\n-\t\t\t// Stan... | 2026-01-14T12:14:41 |
swiftlang/swift | 46ba51d3c8b767affd83529157508e134b4af45c | def9ee7464996aa5b84ef05bd17081cf86a7724f | [CMake] Fix a CMake warning
Fix warning: CMake Warning (dev) at stdlib/public/CMakeLists.txt:166:
Syntax Warning in cmake code at column 114
Argument not separated from preceding token by whitespace. | [
{
"path": "stdlib/public/CMakeLists.txt",
"patch": "@@ -163,7 +163,7 @@ set(SWIFT_EMBEDDED_STDLIB_SDKS_FOR_TARGET_TRIPLES \"\" CACHE STRING\n \"List of SDKs to use for target triples, in the form triple@sdkpath.\n Using this variable precludes setting directly the value for SWIFT_SDK_embedded_ARCH_... | 2026-03-27T15:12:50 |
tensorflow/tensorflow | 22f615f778845156213656dd220722128a2ca9dd | 85b0e68fb14b374dfe7e78467e31fc7ced4b161f | PR #39393: [xla:gpu] Add VA remapping for command buffer thunks
Imported from GitHub PR https://github.com/openxla/xla/pull/39393
Introduces VA (virtual address) remapping in GpuExecutable to allow command buffer thunks to use stable virtual addresses across executions, enabling command buffers to be recorded once ... | [
{
"path": "third_party/xla/xla/backends/gpu/runtime/BUILD",
"patch": "@@ -590,6 +590,7 @@ cc_library(\n \":command_state\",\n \":sequential_thunk\", # build_cleaner: keep\n \":thunk\",\n+ \"//xla:util\",\n \"//xla/service:buffer_assignment\", # build_cleaner: keep\n ... | 2026-03-31T08:17:25 |
golang/go | c52d784d0834d13b53e297dbcf7ebf057ba4eb8f | eae0bfb1b0cb7ca88d777de2c5e4b498d677a890 | test: repair expected-error regexp in simd.go
The test is only run when GOEXPERIMENT=simd, and currently
there are no trybots for that. This error was found after
merging to dev.simd, where such trybots ARE run.
To run this test:
```
GOEXPERIMENT=simd go test -run=Test/simd.go -v cmd/internal/testdir -target=darwin/... | [
{
"path": "test/simd.go",
"patch": "@@ -150,8 +150,8 @@ func ternTricky3(x, y, z archsimd.Int32x8) archsimd.Int32x8 {\n func vpternlogdPanic() {\n \tresultsMask := archsimd.Mask64x8{}\n \n-\tfor { // ERROR \"has features avx+avx2+avx512\"\n-\t\tresultsMask = archsimd.Mask64x8FromBits(0).Or( // ERROR \"has f... | 2026-03-25T02:34:59 |
denoland/deno | b75e2b8dda4c495d56dfc8126893c1271c012199 | d0e3cfb1ae8c87cd3108bd7870eba590de6377f3 | fix(ext/node): fix node:domain across async boundaries (#32897)
## Summary
- Fix `node:domain` not working across async boundaries (timers, I/O).
`process.domain` was lost in timer callbacks and socket error handlers
because
timers didn't emit async hook lifecycle events and `EventEmitter.emit`
didn't
preserve doma... | [
{
"path": "ext/node/polyfills/domain.ts",
"patch": "@@ -121,9 +121,28 @@ export class Domain extends EventEmitter {\n // deno-lint-ignore no-this-alias\n const self = this;\n return function () {\n+ self.enter();\n try {\n- return FunctionPrototypeApply(fn, null, ArrayPrototype... | 2026-03-23T09:40:44 |
mrdoob/three.js | 43166fcb2c5378a3cdd4c782175d0daf136a10d1 | 87cc59b7d6a656c6290d718a17a1b9bb35c350c7 | USDCParser: Fixed scalar handling. | [
{
"path": "examples/jsm/loaders/usd/USDCParser.js",
"patch": "@@ -1261,6 +1261,8 @@ class USDCParser {\n \n \t\tswitch ( type ) {\n \n+\t\t\tcase TypeEnum.Invalid:\n+\t\t\t\treturn null;\n \t\t\tcase TypeEnum.Bool:\n \t\t\t\treturn reader.readUint8() !== 0;\n \t\t\tcase TypeEnum.UChar:\n@@ -1402,7 +1404,7 @... | 2026-01-14T09:43:53 |
swiftlang/swift | 2e2b64b5cef15609f6cf550fd79a4083d7f1ac43 | 0e0731b28c05395c48ef92f8ff99f4bdcf2f49a8 | SIL: enable an assert in non-assert compiler builds
If this assert failure gets unnoticed (in a non-assert compiler build), it can later result in a crash in the inliner.
Let's enable this assert in non-assert builds to catch such errors as early as possible.
Related to rdar://171398563 | [
{
"path": "include/swift/SIL/SILInstruction.h",
"patch": "@@ -2752,7 +2752,7 @@ class ApplyInstBase<Impl, Base, false> : public Base {\n SpecializationInfo(specializationInfo), NumCallArguments(args.size()),\n NumTypeDependentOperands(typeDependentOperands.size()),\n Substitutions(su... | 2026-03-27T13:01:09 |
golang/go | e26d743e2b600e448bee8f9cafd57ba4a70df813 | e5975324c03874b82b62c6c2a4388321edb78e74 | cmd/link: print more information in TestExtLinkCmdlineDeterminism
Print more information in TestExtLinkCmdlineDeterminism to debug
test failure.
For #78180
Change-Id: I7e95eceb957805588c5dbb272370476d2378ea7e
Reviewed-on: https://go-review.googlesource.com/c/go/+/758823
Reviewed-by: Michael Pratt <mpratt@google.com>... | [
{
"path": "src/cmd/link/link_test.go",
"patch": "@@ -1468,10 +1468,11 @@ func main() {}\n \t// Link with -v -linkmode=external to see the flags we pass to the\n \t// external linker.\n \tldflags := \"-ldflags=-v -linkmode=external -tmpdir=\" + linktmp\n-\tvar out0 []byte\n+\tvar out0, fullOut0 []byte\n \tfo... | 2026-03-24T20:53:12 |
tensorflow/tensorflow | 85b0e68fb14b374dfe7e78467e31fc7ced4b161f | e594b2b29889ac4d3a56df2c0cc3a0b90d48dcb0 | PR #39693: Fix tracked_gpu_device_buffer_test in OSS by adding cuda_platform dep
Imported from GitHub PR https://github.com/openxla/xla/pull/39693
📝 Summary of Changes
- Add `//xla/stream_executor/cuda:cuda_platform` dependency to `tracked_gpu_device_buffer_test`
- The test was failing with `RET_CHECK failure: !plat... | [
{
"path": "third_party/xla/xla/pjrt/gpu/tfrt/BUILD",
"patch": "@@ -331,6 +331,7 @@ xla_cc_test(\n name = \"tracked_gpu_device_buffer_test\",\n srcs = [\"tracked_gpu_device_buffer_test.cc\"],\n tags = [\n+ \"cuda-only\",\n \"gpu\",\n \"no_oss\",\n \"noasan\",\n@@ -3... | 2026-03-31T08:11:57 |
mrdoob/three.js | 9a711cc1f452a917fe92eab3b4538fd34f45687a | 27f2f4eb5fbf78f42d0447a7b7f1879445b96111 | USDComposer: Fixed variant composition. | [
{
"path": "examples/jsm/loaders/usd/USDAParser.js",
"patch": "@@ -217,6 +217,34 @@ class USDAParser {\n \n \t\t\t}\n \n+\t\t\tif ( key === 'variants' ) {\n+\n+\t\t\t\tconst variantSelection = {};\n+\t\t\t\tconst variants = data[ key ];\n+\n+\t\t\t\tfor ( const vKey in variants ) {\n+\n+\t\t\t\t\tconst match... | 2026-01-14T07:00:11 |
denoland/deno | d0e3cfb1ae8c87cd3108bd7870eba590de6377f3 | e8ba184376aaf1463ba915fa8ac27ad558ddc868 | fix(ext/web): AbortSignal.any() memory leak with long-lived signals (#32916)
## Summary
`AbortSignal.any()` leaked memory when called repeatedly with a
long-lived parent signal (common pattern: a global shutdown signal
combined per-request). The parent signal's `dependentSignals` collection
grew unboundedly because d... | [
{
"path": "ext/web/03_abort_signal.js",
"patch": "@@ -5,22 +5,19 @@\n \n import { core, primordials } from \"ext:core/mod.js\";\n const {\n- ArrayPrototypeEvery,\n ArrayPrototypePush,\n FunctionPrototypeApply,\n ObjectPrototypeIsPrototypeOf,\n+ SafeFinalizationRegistry,\n SafeSet,\n SafeSetItera... | 2026-03-23T09:37:58 |
swiftlang/swift | 04b011b7208da8fe811ba6c6d74dd7596af5f9b2 | e577ce47299a554e48bae623446ae7407fe898cc | [TEST-ONLY] Fix IRGen/hermetic-seal-exec.swift
Fix IRGen/hermetic-seal-exec.swift after new driver switch. New driver
requires explicit `-lobjc` flag to link objc runtime. Most of the time,
this test doesn't need to link objc runtime because it disables
interop, but not when it runs on very old targets that uses very ... | [
{
"path": "test/IRGen/hermetic-seal-exec.swift",
"patch": "@@ -14,7 +14,7 @@\n // (3) Build client\n // RUN: %use_just_built_liblto %target-build-swift %s -DCLIENT -parse-as-library -module-name Main -experimental-hermetic-seal-at-link -lto=llvm-full %lto_flags \\\n // RUN: -Xfrontend -disable-reflectio... | 2026-03-27T02:08:45 |
mrdoob/three.js | 73636e35bfc1800f0242cbd0a5c488b184546943 | 53dbc52c29d3b5eff35bb747366eb0c55224d765 | USDComposer: Fix color space handling for material colors. | [
{
"path": "examples/jsm/loaders/usd/USDComposer.js",
"patch": "@@ -861,7 +861,7 @@ class USDComposer {\n \n \t\t\t\tif ( mat.color && mat.color.r === 1 && mat.color.g === 1 && mat.color.b === 1 && ! mat.map ) {\n \n-\t\t\t\t\tmat.color.setRGB( displayColor[ 0 ], displayColor[ 1 ], displayColor[ 2 ] );\n+\t\... | 2026-01-14T04:35:48 |
golang/go | e5975324c03874b82b62c6c2a4388321edb78e74 | 4a7132b4b070e65fe28d08a3989897d6a3d65f00 | net/url: permit colons in the host subcomponent of non-http/https URLs
Too many systems seem to rely on net/url accepting invalid URLs with
colons in the host subcomponent. Rather than adding exceptions for
each (PostgreSQL, MongoDB, Redis, etc.), limit the strict validation
to http/https only.
For #78077
Change-Id:... | [
{
"path": "src/net/url/url.go",
"patch": "@@ -606,25 +606,22 @@ func parseHost(scheme, host string) (string, error) {\n \t} else if i := strings.Index(host, \":\"); i != -1 {\n \t\tlastColon := strings.LastIndex(host, \":\")\n \t\tif lastColon != i {\n-\t\t\tif scheme == \"postgresql\" || scheme == \"postgr... | 2026-03-24T21:49:27 |
denoland/deno | e8ba184376aaf1463ba915fa8ac27ad558ddc868 | 80121ae106e863157920e7709b5a08e67505195f | fix(ext/node): fix IPC stdio handling in child_process (#32920)
## Summary
Two fixes for child_process IPC stdio handling:
1. **Validate single IPC pipe** - throw `ERR_IPC_ONE_PIPE` when multiple
`'ipc'` entries are specified in the stdio array (e.g. `stdio: ['pipe',
'pipe', 'pipe', 'ipc', 'ipc']`)
2. **Fix panic w... | [
{
"path": "ext/node/polyfills/internal/child_process.ts",
"patch": "@@ -46,6 +46,7 @@ import {\n ERR_INVALID_HANDLE_TYPE,\n ERR_INVALID_SYNC_FORK_INPUT,\n ERR_IPC_CHANNEL_CLOSED,\n+ ERR_IPC_ONE_PIPE,\n ERR_IPC_SYNC_FORK,\n ERR_MISSING_ARGS,\n ERR_UNKNOWN_SIGNAL,\n@@ -382,6 +383,9 @@ export clas... | 2026-03-23T09:37:00 |
tensorflow/tensorflow | d0a871004c4ea74a0b81746dfc913b86f5c89fb9 | d9d387c5bab911ce2780dc6dd0d4ee25f097524f | Fix copyright year
PiperOrigin-RevId: 892145541 | [
{
"path": "third_party/xla/xla/hlo/transforms/simplifiers/recognize_reduce_window.cc",
"patch": "@@ -1,4 +1,4 @@\n-/* Copyright 2025 The OpenXLA Authors.\n+/* Copyright 2026 The OpenXLA Authors.\n \n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in comp... | 2026-03-31T07:07:07 |
mrdoob/three.js | 3fddc5cec7810814347626097623a1349ac656d9 | 2ec2102b2dddc66be8ebfd0b216aa592684a78e3 | WebGPURenderer: Fix depth/stencil format out-of-sync bug. (#32731) | [
{
"path": "src/renderers/webgpu/utils/WebGPUUtils.js",
"patch": "@@ -34,17 +34,21 @@ class WebGPUUtils {\n \n \t\tlet format;\n \n-\t\tif ( renderContext.depthTexture !== null ) {\n+\t\tif ( renderContext.depth ) {\n \n-\t\t\tformat = this.getTextureFormatGPU( renderContext.depthTexture );\n+\t\t\tif ( rend... | 2026-01-12T10:52:01 |
swiftlang/swift | e577ce47299a554e48bae623446ae7407fe898cc | def9ee7464996aa5b84ef05bd17081cf86a7724f | [TEST-ONLY] Fix test: Serialization/search-paths.swift
Fix Serialization/search-paths.swift after new driver switch.
rdar://173260313 | [
{
"path": "test/Serialization/search-paths.swift",
"patch": "@@ -36,15 +36,15 @@ numeric(42) // expected-error {{cannot find 'numeric' in scope}}\n // CHECK: <INPUT_BLOCK\n // CHECK-NOT: /secret'\n // CHECK-NOT: /Frameworks'\n-// CHECK: <SEARCH_PATH abbrevid={{[0-9]+}} op0=1 op1=0/> blob data = '{{.+}}Frame... | 2026-03-27T01:53:33 |
golang/go | 4a7132b4b070e65fe28d08a3989897d6a3d65f00 | fb592a174727bd693f0e27d130aa60362ed5c6f0 | cmd/go/testdata/vcstest: explicitly set invalid-version's branch to main
Fixes #78323
Change-Id: Id527f3a162969309b7103e5f0e0cc6496a6a6964
Cq-Include-Trybots: luci.golang.try:gotip-linux-amd64-longtest-git2.24.0
Reviewed-on: https://go-review.googlesource.com/c/go/+/758820
Reviewed-by: Michael Matloob <matloob@google... | [
{
"path": "src/cmd/go/testdata/vcstest/git/invalid-version.txt",
"patch": "@@ -9,6 +9,7 @@ at 2017-09-15T03:28:32-00:00\n \n git init\n git commit --allow-empty -m 'initial commit'\n+git branch -m main\n git tag v0.1.0\n git tag v3.1.0\n ",
"additions": 1,
"deletions": 0,
"language": "Plain Text... | 2026-03-24T19:39:06 |
denoland/deno | c99c8aceff594d5914351f5f0272e6291a65dff0 | 1df0225552d39cc2e04286eeb236391d59c6b8b0 | fix(ext/node): fix Buffer.concat truncating buffers larger than 4GB (#32913)
## Summary
- Replace `| 0` (32-bit integer truncation) with `MathTrunc()` in
`checked()`, `_allocUnsafe()`, and `fromString()` in the Node.js Buffer
polyfill
- This fixes `Buffer.concat` and `Buffer.allocUnsafe` silently
truncating buffers w... | [
{
"path": "ext/node/polyfills/internal/buffer.mjs",
"patch": "@@ -423,7 +423,7 @@ Buffer.alloc = function alloc(size, fill, encoding) {\n \n function _allocUnsafe(size) {\n assertSize(size);\n- return createBuffer(size < 0 ? 0 : checked(size) | 0);\n+ return createBuffer(size < 0 ? 0 : checked(size));\n... | 2026-03-23T07:38:49 |
tensorflow/tensorflow | 9f4818c36e4ec06de50dbd11425f2d398b3c728e | e3ac5a26751ad8f01326ddebad52740c93888814 | 1. Fixed Missing Profiles: Enabled modern telemetry to capture HBM metrics (Memory Profiles).
2. Fixed ‘Unable to disable’ Problem: Solved conditions where empty lists activities=[] were falsy-defaults and incorrectly overrode them with defaults.
3. Removed hardcoded options in legacy path
PiperOrigin-RevId: 892129802 | [
{
"path": "third_party/xla/third_party/tsl/tsl/profiler/lib/BUILD",
"patch": "@@ -79,6 +79,7 @@ cc_library(\n \"@xla//xla/python:__pkg__\",\n \"//learning/brain/tfrc/executor/stream_executor:__pkg__\",\n \"//net/grpc/internal/src/core/ext/xprof_profiler:__pkg__\",\n+ \"//third... | 2026-03-31T06:30:06 |
mrdoob/three.js | ac6cc5483b0cf50d4473c52d1218c44f4db1c729 | c1fa28d9436c8d3502766b197a305c7999f96bfd | TSL: Fixing invalid GLSL using nested structures (#32724) | [
{
"path": "src/nodes/core/StructNode.js",
"patch": "@@ -52,6 +52,21 @@ class StructNode extends Node {\n \n \t}\n \n+\t_getChildren() {\n+\n+\t\t// Ensure struct type is the last child for correct code generation order\n+\n+\t\tconst children = super._getChildren();\n+\n+\t\tconst structTypeProperty = child... | 2026-01-11T20:39:23 |
kubernetes/kubernetes | 20dff1b83fe2e1826c2a253e4a7299aa35ae5bad | 03e8d88396db0d733bf42a7b10fcc4209e253d57 | fix featuregate management in tests to exercise both enabled and disabled code paths | [
{
"path": "pkg/kubelet/kubelet_pods.go",
"patch": "@@ -2241,7 +2241,9 @@ func (kl *Kubelet) convertToAPIPodLevelResourcesStatus(logger klog.Logger, alloc\n \t\t\tSkipPodLevelResources: !utilfeature.DefaultFeatureGate.Enabled(features.PodLevelResources),\n \t\t}\n \t\taggregatedResources := resourcehelper.Po... | 2026-03-17T04:11:10 |
golang/go | fb592a174727bd693f0e27d130aa60362ed5c6f0 | 3ebdf12d7c193e6d59a9908745a9664ce7944fd6 | net/url: reattach package doc comment
Fixes #78326
Change-Id: I70a411c33820f6498bec5f4e4a4ec7666a6a6964
Reviewed-on: https://go-review.googlesource.com/c/go/+/758880
Auto-Submit: Nicholas Husin <nsh@golang.org>
Reviewed-by: Nicholas Husin <husin@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-acco... | [
{
"path": "src/net/url/url.go",
"patch": "@@ -2,14 +2,13 @@\n // Use of this source code is governed by a BSD-style\n // license that can be found in the LICENSE file.\n \n+//go:generate go run gen_encoding_table.go\n+\n // Package url parses URLs and implements query escaping.\n //\n // See RFC 3986. This ... | 2026-03-24T20:31:16 |
swiftlang/swift | def9ee7464996aa5b84ef05bd17081cf86a7724f | 357aae4f23af95b2534644cd7ff258b41c94c4e8 | Introduce a "single breadcrumb mode" for Strings decoded from UTF16. (#83987)
This allows us to quickly answer .utf16.count without requiring
additional allocations
Fixes rdar://160656317 | [
{
"path": "benchmark/single-source/UTF16Decode.swift",
"patch": "@@ -64,6 +64,11 @@ public let benchmarks = [\n runFunction: run_UTF16Decode_InitFromData_ascii_as_ascii,\n tags: [.validation, .api, .String, .skip],\n setUpFunction: setUp),\n+ BenchmarkInfo(\n+ name: \"UTF16Decode.l... | 2026-03-27T01:09:18 |
tensorflow/tensorflow | 30ab0b035cdf64d19fc2a2f1f444440d8525df17 | 554f72f5d866219522df8da914170234c62cd06c | [XLA:CPU] Set PjRt compiler thread stack size to 2 MiB
This fixes a stack overflow (SIGSEGV) seen during compilation of complex Torax simulation steps. The default stack size of 512 KiB was insufficient for deep call stacks in XLA. 2 MiB matches the TSAN default in this file and is sufficient for our workloads, while ... | [
{
"path": "third_party/xla/xla/python/pjrt_ifrt/pjrt_compiler.cc",
"patch": "@@ -94,11 +94,7 @@ PjRtCompiler::PjRtCompiler(PjRtClient* client, int num_threads)\n : client_(client) {\n if (num_threads > 0) {\n tsl::ThreadOptions thread_options;\n-#if defined(ABSL_HAVE_THREAD_SANITIZER)\n thread... | 2026-03-31T01:34:10 |
mrdoob/three.js | ff2d5093398cf82acbed73ed2999ec4a4e841d10 | b3bdd221698481129cbc0d9e893c818c5f095985 | SkinningNode: Fix tangent transformation. (#32718) | [
{
"path": "src/nodes/accessors/SkinningNode.js",
"patch": "@@ -146,13 +146,14 @@ class SkinningNode extends Node {\n \t}\n \n \t/**\n-\t * Transforms the given vertex normal via skinning.\n+\t * Transforms the given vertex normal and tangent via skinning.\n \t *\n \t * @param {Node} [boneMatrices=this.boneM... | 2026-01-11T18:04:52 |
denoland/deno | 1df0225552d39cc2e04286eeb236391d59c6b8b0 | 72d86f79649efc4a9777235415af82accfa02a03 | fix(ext/node): set fd property on TTY ReadStream and WriteStream (#32880)
## Summary
- Set `this.fd = fd` in tty `WriteStream` and `ReadStream` constructors
- When stdout/stderr is a TTY, `process.stdout.fd` was `undefined`
because the TTY code path in `process.ts` creates `TTYWriteStream`
directly, bypassing `create... | [
{
"path": "ext/node/polyfills/process.ts",
"patch": "@@ -1317,6 +1317,9 @@ internals.__bootstrapNodeProcess = function (\n if (io.stdout.isTerminal()) {\n /** https://nodejs.org/api/process.html#process_process_stdout */\n stdout = process.stdout = new TTYWriteStream(1);\n+ // For suppo... | 2026-03-23T07:35:32 |
golang/go | 3ebdf12d7c193e6d59a9908745a9664ce7944fd6 | e20a1b603579fc36148530048c76de6938347019 | runtime: zero-extend Windows error code in syscall_syscalln
asmstdcall now returns the 32-bit Windows error code in the return
register. cgocall captures this as a signed int32. On 64-bit systems,
casting this directly to uintptr results in sign extension for error
codes with the high bit set (e.g., 0x80092004 become... | [
{
"path": "src/runtime/syscall_windows.go",
"patch": "@@ -429,5 +429,5 @@ func syscall_syscalln(fn, n uintptr, args ...uintptr) (r1, r2, err uintptr) {\n \t// but it copies the return values into the new M's\n \t// so we can read them from there.\n \tc = &getg().m.winsyscall\n-\treturn c.R1, c.R2, uintptr(e... | 2026-03-24T19:33:15 |
swiftlang/swift | 63da75155e9c8f10a35d11e2482a8934d327398a | 4acd51fab677419ac00201f7b3283f85852b2e8c | [rbi] When emitting incompatible region merge error, if we find an invalid isolation emit an unknown pattern error rather than crashing. | [
{
"path": "lib/SILOptimizer/Mandatory/SendNonSendable.cpp",
"patch": "@@ -3812,6 +3812,11 @@ void IncompatibleRegionMergeDiagnosticEmitter::emitUnknown() {\n return emitUnknownPatternError();\n }\n \n+ if (!srcIsolationInfo)\n+ return emitUnknownPatternError();\n+ if (!dstIsolationInfo)\n+ ret... | 2026-03-26T20:49:00 |
mrdoob/three.js | 55c047585ddb3f21fa2697195880ccddcec2692c | 6e9c5809658ddbafbd0b974046d181e99cebd0d7 | RenderObject: Fix ID assignment bug. (#32700) | [
{
"path": "src/renderers/common/RenderObject.js",
"patch": "@@ -511,8 +511,7 @@ class RenderObject {\n \n \t\t\t\t// geometry attribute\n \t\t\t\tattribute = geometry.getAttribute( nodeAttribute.name );\n-\n-\t\t\t\tattributesId[ nodeAttribute.name ] = attribute.version;\n+\t\t\t\tattributesId[ nodeAttribut... | 2026-01-09T16:31:58 |
tensorflow/tensorflow | 554f72f5d866219522df8da914170234c62cd06c | 25081ff60761c5c3da9b6ca90148ab218515eb80 | [PjRt] Implement `PjRt(Loaded)Executable::GetParameterMemoryKinds()` for various PjRt clients
This change implements `PjRt(Loaded)Executable::GetParameterMemoryKinds()` for the PjRt CPU, GPU, and other clients. This fixes infinite recursion of `GetParameterMemoryKinds()` that happens when `PjRtLoadedExecutable::GetPar... | [
{
"path": "third_party/xla/xla/pjrt/common_pjrt_client.h",
"patch": "@@ -397,6 +397,7 @@ class CommonPjRtLoadedExecutable : public PjRtLoadedExecutable {\n output_layouts;\n std::optional<std::vector<OpSharding>> parameter_shardings;\n std::optional<std::vector<OpSharding>> output_shar... | 2026-03-31T01:27:51 |
kubernetes/kubernetes | 761fc9d4741e9aa80472d5035a0179b5ca4c2d80 | 761638907a5ebe7fc2e85b2e1a5a43d7356e2cec | Introduce index-based naming in resourceslice controller and sort slices and pools lexicographically
fix test | [
{
"path": "staging/src/k8s.io/dynamic-resource-allocation/kubeletplugin/draplugin.go",
"patch": "@@ -732,6 +732,20 @@ func (d *Helper) Stop() {\n // called, then the kubelet plugin does not manage any ResourceSlice\n // objects.\n //\n+// Note that the order of slices in the provided resources\n+// is signi... | 2026-01-30T01:59:37 |
denoland/deno | 72d86f79649efc4a9777235415af82accfa02a03 | af670585e4d144b8c9a5863f1b44d68a58544f8b | fix(ext/node): enable node:fs compat tests + lchmod fix (#32892)
## Summary
Enable 87 previously-disabled `node:fs` compatibility tests that now
pass.
### Code fix
- **promises.lchmod**: Made the function `async` so validation errors
become rejected promises instead of synchronous throws, matching Node.js
behavior w... | [
{
"path": "ext/node/polyfills/_fs/_fs_fstat.ts",
"patch": "@@ -12,6 +12,7 @@ import {\n import { BigIntStats, Stats } from \"ext:deno_node/internal/fs/utils.mjs\";\n import { FsFile } from \"ext:deno_fs/30_fs.js\";\n import { denoErrorToNodeError } from \"ext:deno_node/internal/errors.ts\";\n+import { getVa... | 2026-03-23T07:22:11 |
golang/go | e20a1b603579fc36148530048c76de6938347019 | 3390ec59af33d3c9ab431ff88a245b710b7c9e40 | cmd/compile: handle string literals in FIPS mode consistently
There are different code paths for compiling a composite literal,
e.g. small vs. large, fully static vs. partially static. Following
CL 755600, we need to apply the condition for string literals in
FIPS mode consistently in all places.
Enhance the test to ... | [
{
"path": "src/cmd/compile/internal/walk/complit.go",
"patch": "@@ -85,9 +85,7 @@ const (\n func getdyn(n ir.Node, top bool) initGenType {\n \tswitch n.Op() {\n \tdefault:\n-\t\t// Handle constants in linker, except that linker cannot do\n-\t\t// the relocations necessary for string constants in FIPS packag... | 2026-03-18T01:59:52 |
mrdoob/three.js | 8485acc4154581a3773aab9b4d8956ece8f3c473 | 19c76f8c749d417d66ba6629d76d8bfa52877e82 | SpriteSheetUVNode: Transform to TSL function and fix `countNode` access. (#32693) | [
{
"path": "src/nodes/Nodes.js",
"patch": "@@ -49,7 +49,6 @@ export { default as RemapNode } from './utils/RemapNode.js';\n export { default as RotateNode } from './utils/RotateNode.js';\n export { default as SetNode } from './utils/SetNode.js';\n export { default as SplitNode } from './utils/SplitNode.js';\... | 2026-01-09T10:58:51 |
swiftlang/swift | 4acd51fab677419ac00201f7b3283f85852b2e8c | 47363c70d8ae0be4d68bea1df8e3f6336da304a4 | [rbi] Fix issues around Isolated Conformances and checked_cast_br and checked_cast_addr_br.
Specifically, we previously used translateSILMultiAssign with checked_cast_br
and checked_cast_addr_br and relied upon its behavior around injecting an
overriding isolation to work.
This caused a bunch of problems when dealing... | [
{
"path": "include/swift/AST/DiagnosticsSIL.def",
"patch": "@@ -1246,7 +1246,6 @@ ERROR(regionbasedisolation_merge_region_failure_error_functionisolation, none,\n ERROR(regionbasedisolation_merge_region_failure_error_functionisolation_type, none,\n \"passing %select{%0|%1 %0}4 to %3 %kind2 risks causi... | 2026-03-26T16:18:04 |
tensorflow/tensorflow | 4682b624770f0afdd5af148b60f701774a4a8f2a | 10a8ab4471fdfe891513d0e5147b9586d0a674df | Fix building TF CUDA wheel by adding dependency on stub alias.
PiperOrigin-RevId: 891952453 | [
{
"path": "third_party/xla/xla/stream_executor/cuda/BUILD",
"patch": "@@ -2904,8 +2904,8 @@ cuda_library(\n \"//xla/stream_executor:kernel_spec\",\n \"//xla/stream_executor/gpu:gpu_kernel_registry\",\n \"//xla/stream_executor/gpu:multi_gpu_barrier_kernel\",\n+ \"//xla/tsl/cuda... | 2026-03-30T22:49:24 |
denoland/deno | af670585e4d144b8c9a5863f1b44d68a58544f8b | ceb6936a983904511867d69986203786b68b7e21 | fix(ext/node): preserve TLS upgrade state on reconnect (#32838)
## Summary
- run the TLS post-connect upgrade hook against the active handle
instead of a closure-captured original handle
- rebuild TLS upgrade promise/resolver metadata when `net.Socket`
reinitializes its handle during reconnect fallback
- add a regress... | [
{
"path": "ext/node/ops/http2/session.rs",
"patch": "@@ -20,14 +20,9 @@ use deno_core::v8;\n use libnghttp2 as ffi;\n use serde::Serialize;\n \n-/// Type alias matching the C `ssize_t` type used by nghttp2 callbacks.\n-/// On Unix, `ssize_t` equals `isize`. On 64-bit Windows MSVC, `ssize_t`\n-/// is defined... | 2026-03-23T07:15:02 |
golang/go | 3390ec59af33d3c9ab431ff88a245b710b7c9e40 | 55600733988b0d3bb708be22b5cbecd8edd83380 | internal/abi, cmd/link: centralize type descriptor size calculation
The linker hardcoded the calculation for some types, which caused me
some annoyance in CL 711560 because I didn't know it needed to be
updated (and it took me a long time to find the hardcoded value).
Move this calculation over to the abi package, si... | [
{
"path": "src/cmd/compile/internal/rttype/rttype.go",
"patch": "@@ -88,6 +88,24 @@ func Init() {\n \tif got, want := int64(abi.ITabTypeOff(ptrSize)), ITab.OffsetOf(\"Type\"); got != want {\n \t\tbase.Fatalf(\"abi.ITabTypeOff() == %d, want %d\", got, want)\n \t}\n+\tfor _, test := range []struct {\n+\t\tkin... | 2026-02-27T18:10:14 |
mrdoob/three.js | 19c76f8c749d417d66ba6629d76d8bfa52877e82 | 37278f585248303a99746f2faf828b4fd7020aa5 | TSL: Fix `positionView` sub-build (#32691) | [
{
"path": "src/materials/nodes/NodeMaterial.js",
"patch": "@@ -535,9 +535,9 @@ class NodeMaterial extends Material {\n \n \t\tbuilder.addStack();\n \n-\t\tconst mvp = subBuild( this.setupVertex( builder ), 'VERTEX' );\n+\t\tconst mvp = this.setupVertex( builder );\n \n-\t\tconst vertexNode = this.vertexNode... | 2026-01-09T10:57:12 |
tensorflow/tensorflow | d52de52231c815a829aa42c8b812827ed32193a2 | 446ca4ba4d99bd20ddd1dc47b10ac130d587fe5e | Introduce DeviceInterconnectResource to bridge Global Topology to Backend Thunks
### Description
This PR introduces a mechanism to propagate global GPU interconnect metadata (NVML Fabric UUIDs and Clique IDs) from the PJRT initialization layer (xla::GetStreamExecutorGpuClient) down to the low-level StreamExecutor thun... | [
{
"path": "third_party/xla/xla/pjrt/gpu/BUILD",
"patch": "@@ -133,6 +133,7 @@ cc_library(\n \"//xla/stream_executor:device_address_allocator\",\n \"//xla/stream_executor:device_description\",\n \"//xla/stream_executor:device_description_proto_cc\",\n+ \"//xla/stream_executor:d... | 2026-03-30T21:40:46 |
denoland/deno | ceb6936a983904511867d69986203786b68b7e21 | f5014bb6c3ce4d398b920fc9f0b492dead2019e2 | fix(ext/node): return all own properties from VM context property enumerator (#32911)
## Summary
- VM context's property enumerator callbacks were using
`GetPropertyNamesArgs::default()` which only returns enumerable,
non-symbol properties
- This caused `Reflect.ownKeys()`, `Object.getOwnPropertyNames()`, and
`Object... | [
{
"path": "ext/node/ops/vm.rs",
"patch": "@@ -1027,9 +1027,13 @@ fn property_enumerator<'s>(\n };\n \n let context_scope = &mut v8::ContextScope::new(scope, context);\n- let Some(properties) = sandbox\n- .get_property_names(context_scope, v8::GetPropertyNamesArgs::default())\n- else {\n+ let args ... | 2026-03-23T07:10:48 |
golang/go | 55600733988b0d3bb708be22b5cbecd8edd83380 | 3f057dcdbc86498e07a5744406fe92069221a92d | internal/runtime/maps: add GOEXPERIMENT=mapsplitgroup for KKKKVVVV slot order
Map groups are currently:
type group struct {
ctrl uint64
slots [8]slot
}
type slot struct {
key K
elem E
}
If the element type is struct{}, the slot will be padded so that the
address of the elem is unique rather than p... | [
{
"path": "src/cmd/compile/internal/reflectdata/map.go",
"patch": "@@ -13,6 +13,7 @@ import (\n \t\"cmd/internal/objabi\"\n \t\"cmd/internal/src\"\n \t\"internal/abi\"\n+\t\"internal/buildcfg\"\n )\n \n // MapGroupType makes the map slot group type given the type of the map.\n@@ -26,14 +27,6 @@ func MapGrou... | 2025-09-10T05:22:17 |
mrdoob/three.js | 5a7e8bcfa57faddca4f73962fd92a207d6254bee | f848b7508aec093a80fd9a72ed83727ac4a1d1c7 | PCDLoader: Fix label parsing. (#32683) | [
{
"path": "examples/jsm/loaders/PCDLoader.js",
"patch": "@@ -518,7 +518,7 @@ class PCDLoader extends Loader {\n \t\t\t\tif ( offset.label !== undefined ) {\n \n \t\t\t\t\tconst labelIndex = PCDheader.fields.indexOf( 'label' );\n-\t\t\t\t\tlabel.push( dataview.getInt32( ( PCDheader.points * offset.label ) + ... | 2026-01-07T12:44:53 |
kubernetes/kubernetes | ae79025a326e8aacb97d0fec380bd034af9f28c8 | 814da5384f482347160ded3a558cb74c8108fabf | test/integration/dra: poll ControllerManagerMetrics values
TestDRA/all/ControllerManagerMetrics still waits a fixed 200ms before
checking the success counters. In CI this can fail with:
- Max difference between 1 and 0 allowed is 0.1
- success metric with admin_access=false should increment
The controller work then ... | [
{
"path": "test/integration/dra/core.go",
"patch": "@@ -558,6 +558,15 @@ func testControllerManagerMetrics(tCtx ktesting.TContext) {\n \tinitialSuccessNoAdmin := getMetricValue(\"success\", \"false\")\n \tinitialSuccessWithAdmin := getMetricValue(\"success\", \"true\")\n \n+\texpectMetricValue := func(statu... | 2026-03-17T13:03:04 |
golang/go | 3f057dcdbc86498e07a5744406fe92069221a92d | fe8947a521ba1a404f01882048340a4a18e7e61a | cmd/go: document that workspace use paths are not resolved through symlinks
The use directive in go.work files compares module directory paths
literally without resolving symbolic links. A use directive that
names a symlink to a directory is not interchangeable with one that
names the symlink's target.
Document this ... | [
{
"path": "src/cmd/go/alldocs.go",
"patch": "@@ -1549,7 +1549,9 @@\n //\n // The use directive specifies a module to be included in the workspace's\n // set of main modules. The argument to the use directive is the directory\n-// containing the module's go.mod file.\n+// containing the module's go.mod file.... | 2026-03-23T20:48:42 |
tensorflow/tensorflow | fde6f242de64c92b0824a1dd4567e6a97b065e34 | f60f15acd40d03d66d681976506d95a82a279c3a | [StreamExecutor] RAII-compliant Resource attachment via Pimpl
### Description
Implement extensible mechanism to attach external Resource objects to StreamExecutor instances. This enables PjRt and other initialization layers to propagate metadata (e.g., hardware topology maps) to backend execution components (Thunks).
... | [
{
"path": "third_party/xla/xla/stream_executor/BUILD",
"patch": "@@ -563,7 +563,6 @@ cc_library(\n \"//xla/stream_executor/gpu:tma_metadata\",\n \"//xla/tsl/lib/gtl:int_type\",\n \"@com_google_absl//absl/base:core_headers\",\n- \"@com_google_absl//absl/base:no_destructor\",\n ... | 2026-03-30T19:41:12 |
kubernetes/kubernetes | 77403e5940e6d8ea91b38e76818a1bcb55ab7c13 | 3ea232f22025758221adde4aac8b017a08eeb8c3 | DRA: fix FilterTimeout/enabled test to clear worker-0 devices | [
{
"path": "test/integration/dra/core.go",
"patch": "@@ -103,7 +103,7 @@ func testFilterTimeout(tCtx ktesting.TContext, devicesPerSlice int) {\n \t\tdeviceNames[i] = fmt.Sprintf(\"dev-%d\", i)\n \t}\n \tslice := st.MakeResourceSlice(\"worker-0\", driverName).Devices(deviceNames...)\n-\tcreateSlice(tCtx, slic... | 2026-03-17T11:53:22 |
denoland/deno | f5014bb6c3ce4d398b920fc9f0b492dead2019e2 | fd73dffa16d136cc55948da7804e6ad35ab145ed | fix(ext/node): child_process improvements (internalMessage, argv0, DEP0190) (#32885)
## Summary
Three child_process Node.js compatibility fixes:
### 1. Emit `internalMessage` event for `NODE_` prefixed IPC messages
In Node.js, IPC messages with a `cmd` property starting with `NODE_` are
internal messages emitted as... | [
{
"path": "ext/node/polyfills/internal/child_process.ts",
"patch": "@@ -71,6 +71,7 @@ import { Pipe, socketType } from \"ext:deno_node/internal_binding/pipe_wrap.ts\";\n import { Server as NetServer, Socket } from \"node:net\";\n import { Socket as DgramSocket } from \"node:dgram\";\n import {\n+ kArgv0,\n... | 2026-03-23T07:08:51 |
golang/go | fe8947a521ba1a404f01882048340a4a18e7e61a | b2b1a0a79473916a9a29f589cc7504f4bcf2b73a | cmd/go/internal/doc: remove flag listing from usage
This makes the help for go doc more consistent with other go
subcommands.
Fixes #74139
Change-Id: Ia01bd85544d5ece84e6316141f29f24c6a6a6964
Reviewed-on: https://go-review.googlesource.com/c/go/+/758721
Reviewed-by: Michael Matloob <matloob@google.com>
LUCI-TryBot-R... | [
{
"path": "src/cmd/go/internal/doc/doc.go",
"patch": "@@ -179,8 +179,6 @@ func usage(flagSet *flag.FlagSet) {\n \tfmt.Fprintf(os.Stderr, \"\\tgo doc <pkg> <sym>[.<methodOrField>]\\n\")\n \tfmt.Fprintf(os.Stderr, \"For more information run\\n\")\n \tfmt.Fprintf(os.Stderr, \"\\tgo help doc\\n\\n\")\n-\tfmt.Fp... | 2026-03-24T16:46:28 |
tensorflow/tensorflow | e391dcfed22c65d31f62876260ce0691f20678ef | 32ff7d447158971c4b7d788b0f89f6db7e169664 | Update XNNPACK in tensorflow/xla
Commit history for google/XNNPACK (03749037 -> e01449b8):
- 0845a579 Ken Unger: add rvv kernel for qs8/qu8-vcvt
- 2ff3d030 Ken Unger: Merge branch 'master' into qs8-vcvt
- be751db6 Ken Unger: add rvv kernels for qd8-f16-qc4w-gemm, qd8-f16-qc8w-gemm, qd8-f16-qc8w-igemm
- 838fa65c Ken Un... | [
{
"path": "tensorflow/lite/tools/cmake/modules/xnnpack.cmake",
"patch": "@@ -23,7 +23,7 @@ OverridableFetchContent_Declare(\n xnnpack\n GIT_REPOSITORY https://github.com/google/XNNPACK\n # Sync with tensorflow/workspace2.bzl\n- GIT_TAG 0374903756f122a2859d28d0b8f4d1374aa3ff90\n+ GIT_TAG 132a7b041d8f... | 2026-03-30T19:25:44 |
kubernetes/kubernetes | 180434e6b45913e9da41ac3beb4236c3d3df9882 | 93c8014f34f09189280b5d5bad790b315d04a2af | DRA integration: split into different packages
This does not change how tests are written registered, only which package
executes which tests.
Here's a comparison after cleaning compile and test caches. Wall-clock time is
actually lower with different packages because different packages can be tested
in parallel. The... | [
{
"path": "test/integration/dra/all/all_test.go",
"patch": "@@ -0,0 +1,27 @@\n+/*\n+Copyright The Kubernetes Authors.\n+\n+Licensed under the Apache License, Version 2.0 (the \"License\");\n+you may not use this file except in compliance with the License.\n+You may obtain a copy of the License at\n+\n+ h... | 2026-03-11T13:27:31 |
golang/go | b2b1a0a79473916a9a29f589cc7504f4bcf2b73a | 341b5e2c0261cc059b157f1c7a2a2c4d1f417f0d | net/http/internal/http2: use fake net for TestTransportBlockingRequestWrite
This test has been intermittently flaky. Exact cause isn't clear,
but switch it to use a fake network to eliminate local network
flakiness as a cause.
Fixes #78209
Fixes #78213
Fixes #78263
Change-Id: I481553107e8557fda0707069856bafcc6a6a696... | [
{
"path": "src/net/http/internal/http2/transport_test.go",
"patch": "@@ -4197,140 +4197,93 @@ func TestTransportBlockingRequestWrite(t *testing.T) {\n \tfiller := hex.EncodeToString([]byte(randString(2048)))\n \tfor _, test := range []struct {\n \t\tname string\n-\t\treq func(url string) (*http.Request, er... | 2026-03-13T21:30:17 |
swiftlang/swift | 0ccdea281cd70b2f68740a2054c5790b91c59b19 | e0bb193490352a6399e883a016251dc13986a4b8 | [wasm][test] Fix test/embedded/Inputs/debug-malloc.c to build with wasi-libc 31 | [
{
"path": "test/embedded/Inputs/debug-malloc.c",
"patch": "@@ -1,5 +1,6 @@\n #include <stdlib.h>\n #include <stdio.h>\n+#include <stdint.h>\n \n #define HEAP_SIZE (128 * 1024)\n ",
"additions": 1,
"deletions": 0,
"language": "C"
}
] | 2026-03-25T09:01:26 |
denoland/deno | fd73dffa16d136cc55948da7804e6ad35ab145ed | ac659a17c799c0e03530acd73524596f62f108fd | fix(ext/console): handle throwing Symbol.toStringTag getter gracefully (#32917)
## Summary
When `console.log` formats an object, it accesses `Symbol.toStringTag`
which may be a getter that throws. For example,
[quick-lru](https://www.npmjs.com/package/quick-lru)'s
`Symbol.toStringTag` getter calls `JSON.stringify(thi... | [
{
"path": "ext/web/01_console.js",
"patch": "@@ -714,7 +714,11 @@ function formatRaw(ctx, value, recurseTimes, typedArray, proxyDetails) {\n \n let tag;\n if (!proxyDetails) {\n- tag = value[SymbolToStringTag];\n+ try {\n+ tag = value[SymbolToStringTag];\n+ } catch {\n+ // Symbol.toSt... | 2026-03-23T07:07:10 |
mrdoob/three.js | 8a3694c599f9fdfcd40fa025b2eb6bac3a55504d | 4bbae20d6759dd0bd160fede992dd5d82e0b8294 | TSL: use raw data for `DebugNode` callback (#32638) | [
{
"path": "src/nodes/utils/DebugNode.js",
"patch": "@@ -42,21 +42,21 @@ class DebugNode extends TempNode {\n \t\tconst callback = this.callback;\n \t\tconst snippet = this.node.build( builder );\n \n-\t\tconst title = '--- TSL debug - ' + builder.shaderStage + ' shader ---';\n-\t\tconst border = '-'.repeat(... | 2025-12-31T02:11:14 |
kubernetes/kubernetes | 93c8014f34f09189280b5d5bad790b315d04a2af | 3b63fe83a0c71a709a2d0ff4e27a1816d5f16466 | DRA integration: enforce better test isolation
Tests that are written as if they had the entire apiserver for themselves have
been a recurring problem. Ensuring that would limit us to start a new apiserver
and potentially other components (scheduler, resource claim controller) in
serial tests, which is slower.
Theref... | [
{
"path": "test/integration/dra/dra_test.go",
"patch": "@@ -116,7 +116,8 @@ const (\n \tschedulingTimeout = time.Minute\n )\n \n-func TestDRA(t *testing.T) {\n+func TestDRA(t *testing.T) { testDRA(ktesting.Init(t)) }\n+func testDRA(tCtx ktesting.TContext) {\n \t// Each sub-test brings up the API server in a... | 2026-03-12T09:13:45 |
golang/go | 341b5e2c0261cc059b157f1c7a2a2c4d1f417f0d | abd44cbe615ecea5e4bd8e6d1bb7be63d1f4b2d6 | cmd/link: raise minimum windows version to 10
The minimum Windows version has been 10 for a few releases, but the PE
headers weren't updated. Windows sometimes can use these in determining
what kind of subsystem compatibility hacks to apply, which of course we
don't want now, since Go targets Windows 10. This also cau... | [
{
"path": "src/cmd/link/internal/ld/pe.go",
"patch": "@@ -151,9 +151,139 @@ const (\n \tIMAGE_REL_BASED_DIR64 = 10\n )\n \n+// IMAGE_LOAD_CONFIG_DIRECTORY64.GuardFlags and IMAGE_LOAD_CONFIG_DIRECTORY32.GuardFlags\n+// values. These can be combined together.\n const (\n-\tPeMinimumTargetMajorVersion = 6\n-... | 2026-03-18T23:28:04 |
denoland/deno | ac659a17c799c0e03530acd73524596f62f108fd | eb108d2b4d722138700f33f8a6840a51281ed340 | fix(ext/node): do not throw error for `readline.createInterface` outside TTY (#32874)
Matches Node's behaviour by ignoring `terminal: true` when not inside a
TTY.
Fixes #32873.
---------
Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com> | [
{
"path": "ext/node/polyfills/_process/streams.mjs",
"patch": "@@ -346,7 +346,9 @@ export const initStdin = (warmup = false) => {\n });\n stdin._isRawMode = false;\n stdin.setRawMode = (enable) => {\n- io.stdin?.setRaw?.(enable);\n+ if (io.stdin?.isTerminal()) {\n+ io.stdin.setRaw(enable);\... | 2026-03-22T08:30:19 |
mrdoob/three.js | 4bbae20d6759dd0bd160fede992dd5d82e0b8294 | 47ad87b4162fcace69e616919b54b0c25538fc32 | Update rendering-on-demand.html
Fix typo. | [
{
"path": "manual/ko/rendering-on-demand.html",
"patch": "@@ -117,7 +117,7 @@ <h1>불필요한 렌더링 없애기</h1>\n </div>\n \n <p></p>\n-<p><a href=\"/docs/#examples/controls/OrbitControls\"><code class=\"notranslate\" translate=\"no\">OrbitControls</code></a>에는 관성(inertia) 옵션이 있습니다. <code class=\"notranslate\" translat... | 2025-12-30T14:39:40 |
golang/go | abd44cbe615ecea5e4bd8e6d1bb7be63d1f4b2d6 | c7e151d8c46dbf45b580a73ccb5ba5dd5b5cddef | net/http: add a test for starting a server with no HTTP/2 and no TLS config
Test for the fix in CL 758560.
Change-Id: I34edf9f14dc5d6a569f20aa3d55d9d136a6a6964
Reviewed-on: https://go-review.googlesource.com/c/go/+/758661
Auto-Submit: Damien Neil <dneil@google.com>
Reviewed-by: Nicholas Husin <nsh@golang.org>
LUCI-Tr... | [
{
"path": "src/net/http/serve_test.go",
"patch": "@@ -18,7 +18,6 @@ import (\n \t\"encoding/json\"\n \t\"errors\"\n \t\"fmt\"\n-\t\"internal/synctest\"\n \t\"internal/testenv\"\n \t\"io\"\n \t\"log\"\n@@ -44,6 +43,7 @@ import (\n \t\"sync/atomic\"\n \t\"syscall\"\n \t\"testing\"\n+\t\"testing/synctest\"\n \... | 2026-03-24T15:18:27 |
denoland/deno | eb108d2b4d722138700f33f8a6840a51281ed340 | fe10f95260be6547159522e0d1ac2a70570dd449 | chore: update deno_doc crate (#32896)
Major restructuring of the DocNode format (v2), addressing long-standing
design issues with how documentation nodes are modeled and serialized.
this also bumps the JSON schema version to 2.
The output now is a `Record<string, Document>` instead of `DocNode[]`.
For a complete view... | [
{
"path": "Cargo.lock",
"patch": "@@ -2254,9 +2254,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_doc\"\n-version = \"0.194.1\"\n+version = \"0.197.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"36eede374a5ecf0a6d83ecfc47d8878e35d7e3210de6e9ca18554402a5327114... | 2026-03-21T22:02:26 |
kubernetes/kubernetes | e04d25c222acbcb03c51cb5dd2023fd140bff4ad | 76f0bd54b8e26f085a661b7633c0bae7d855b7be | apiserver testing: fix support for pre-created TContext
When StartTestServer is called with a TContext by the caller, tearing down the
apiserver via its tear-down function would also cancel the context for everyone
else using it, which is unexpected and not intended.
Accidentally, scheduler_perf and scheduler/batch r... | [
{
"path": "cmd/kube-apiserver/app/testing/testserver.go",
"patch": "@@ -156,7 +156,11 @@ func NewDefaultTestServerOptions() *TestServerInstanceOptions {\n func StartTestServer(t ktesting.TB, instanceOptions *TestServerInstanceOptions, customFlags []string, storageConfig *storagebackend.Config) (result TestS... | 2026-03-12T08:52:42 |
mrdoob/three.js | 96dbfa62827c08976b256d5e0c68a71e4cce0352 | 5cde3c7ec5af65456dfc1c29d3e592be6051400f | Fix XR camera layers inheritance (#32626) | [
{
"path": "src/renderers/common/XRManager.js",
"patch": "@@ -1131,8 +1131,8 @@ class XRManager extends EventDispatcher {\n \n \t\t// inherit camera layers and enable eye layers (1 = left, 2 = right)\n \t\tcameraXR.layers.mask = camera.layers.mask | 0b110;\n-\t\tcameraL.layers.mask = cameraXR.layers.mask & 0... | 2025-12-29T15:02:44 |
swiftlang/swift | f9a3af23a5bfb14a95f064017cc7218abe7d2a31 | ce2de43ecbb5c9d51e92a2441a65ecc8366c64f7 | Add bailout for memory lifetime verification of enums with switch_value terminator
SILCombine can transform a switch_enum_addr to a switch_value in certain cases.
It's impossible to know whether the successors of switch_value terminator are
for trivial or non-trivial cases. Return true from `MemoryLifetimeVerifier::is... | [
{
"path": "lib/SIL/Verifier/MemoryLifetimeVerifier.cpp",
"patch": "@@ -232,13 +232,8 @@ bool MemoryLifetimeVerifier::isTrivialEnumSuccessor(SILBasicBlock *block,\n } else if (auto *switchEnumAddr = dyn_cast<SwitchEnumAddrInst>(term)) {\n elem = switchEnumAddr->getUniqueCaseForDestination(succ);\n ... | 2026-03-26T19:47:22 |
golang/go | 39267791a4fd5f881e3a43b199de4c7bddf3f179 | 0613d0309ce820ee651d7a0cf8e158c87fc6c444 | spec: predeclared types are named, not defined types
We want the predeclared types (excluding any) to have unique identity.
Originally (Go 1.0), the only types with unique identity were named
types (and they happened to have names).
When we introduced alias declarations, we changed the terminology and
called named ty... | [
{
"path": "doc/go_spec.html",
"patch": "@@ -1,6 +1,6 @@\n <!--{\n \t\"Title\": \"The Go Programming Language Specification\",\n-\t\"Subtitle\": \"Language version go1.27 (March 16, 2026)\",\n+\t\"Subtitle\": \"Language version go1.27 (March 20, 2026)\",\n \t\"Path\": \"/ref/spec\"\n }-->\n \n@@ -825,8 +825,... | 2026-03-19T22:59:47 |
mrdoob/three.js | d8e70a4cd14b9b6a9b87cea4d0e8ed308ed0e04c | 62749d5c264b604e8b128db4f9b91f3b9c3db5a1 | Fixed typos in /examples/jsm folder. (#32631) | [
{
"path": "examples/jsm/animation/CCDIKSolver.js",
"patch": "@@ -50,7 +50,7 @@ class CCDIKSolver {\n \t\t/**\n \t\t * The IK objects.\n \t\t *\n-\t\t * @type {SkinnedMesh}\n+\t\t * @type {Array<CCDIKSolver~IK>}\n \t\t */\n \t\tthis.iks = iks;\n \n@@ -357,7 +357,7 @@ class CCDIKHelper extends Object3D {\n \t... | 2025-12-29T10:37:00 |
tensorflow/tensorflow | e79951add8003ff00d3dfbbf56e258bb26fec640 | f0beed1a740f562a361d049505ad8828d84c53e2 | Rename `XNNPACK_CACHE_NO_MMAP_FOR_TEST` to `XNNPACK_CACHE_NO_FILE_MAPPING_FOR_DEBUG`.
That name is misleading.
- It may look like it's needed on Windows because there's no `mmap` call.
That's not the case. On Windows that flags is extremely harmful and slows
things down to a halt when building the cache.
- It mak... | [
{
"path": "tensorflow/lite/delegates/xnnpack/mmap_handle.cc",
"patch": "@@ -42,6 +42,18 @@ limitations under the License.\n \n namespace tflite::xnnpack {\n \n+// NOLINTBEGIN(whitespace/line_length)\n+#ifdef XNNPACK_CACHE_NO_MMAP_FOR_TEST\n+#pragma message( \\\n+ \"XNNPACK_CACHE_NO_MMAP_FOR_TEST has been... | 2026-03-30T14:13:17 |
kubernetes/kubernetes | faf5af8e37138c8c9947a8572c8de7825c98ca7b | 7a188a1680f4a9333e78653320c4273320a5c5fe | Address review comments for VolumeGroupSnapshotClass e2e tests
- Fix errcheck: wrap e2epod.DeletePodWithWait with ExpectNoError
- Fix forbidigo: replace gomega.BeTrue with plain Go if/Fail
- Add expectVolumeGroupSnapshotClassName helper
- Verify spec.volumeGroupSnapshotClassName in failure test cases
- Use Pa... | [
{
"path": "test/e2e/storage/framework/volume_group_snapshot_resource.go",
"patch": "@@ -34,19 +34,19 @@ import (\n \t\"k8s.io/kubernetes/test/e2e/storage/utils\"\n )\n \n-// MakeVolumeGroupSnapshot constructs a VolumeGroupSnapshot object with a label selector.\n-// snapshotClassName is optional; if empty, t... | 2026-03-16T07:34:14 |
denoland/deno | 8f17347a5d05ee27be9adef2349c56a88bd0f199 | bac58b43ffaf3917d42805df68119486d2047461 | fix: skip flaky test-process-threadCpuUsage-worker-threads on Windows (#32886)
Skip `parallel/test-process-threadCpuUsage-worker-threads.js` on Windows
CI where it is flaky.
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com> | [
{
"path": "tests/node_compat/config.jsonc",
"patch": "@@ -1700,7 +1700,10 @@\n \"parallel/test-process-title-cli.js\": {},\n \"parallel/test-process-release.js\": {},\n \"parallel/test-process-threadCpuUsage-main-thread.js\": {},\n- \"parallel/test-process-threadCpuUsage-worker-threads.js\": ... | 2026-03-21T09:46:40 |
golang/go | 0613d0309ce820ee651d7a0cf8e158c87fc6c444 | 9b4244e9eaab2b2b4bdf197462d336ac2e3a5284 | net/http: fix panic in ServeTLS on nil TLSConfig
Change-Id: I9bc588128ec36bb3725d15e52400b76a94e5cb3a
Reviewed-on: https://go-review.googlesource.com/c/go/+/758560
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Nicholas Husin <nsh@golang.org>
Reviewed-by: Nichola... | [
{
"path": "src/net/http/server.go",
"patch": "@@ -3539,7 +3539,11 @@ func (s *Server) ServeTLS(l net.Listener, certFile, keyFile string) error {\n \t\treturn err\n \t}\n \n-\tconfig, err := s.setupTLSConfig(certFile, keyFile, adjustNextProtos(s.TLSConfig.NextProtos, s.protocols()))\n+\tvar nextProtos []stri... | 2026-03-24T07:03:10 |
mrdoob/three.js | d71c3b77f6fa86c128e07267711ac270ddcd10fa | 15cbc8c6f2b104835082cf08dadfdd1a72fcf5b0 | Fixed typos. (#32629) | [
{
"path": "src/animation/AnimationAction.js",
"patch": "@@ -548,7 +548,7 @@ class AnimationAction {\n \n \t}\n \n-\t// Interna\n+\t// Internal\n \n \t_update( time, deltaTime, timeDirection, accuIndex ) {\n ",
"additions": 1,
"deletions": 1,
"language": "JavaScript"
},
{
"path": "src/ani... | 2025-12-29T09:23:27 |
denoland/deno | 8b14d5afdce7ab928a8b2ae2ac9147d9d913ec25 | 38186cc4f5024d57a7eb9c4ba93b9062114dd8f0 | fix(audit): respect package.json overrides in vulnerability checks (#32878)
## Summary
Closes #32871
When `package.json` overrides force a transitive dependency to a patched
version, `deno audit` was still reporting it as vulnerable. For example:
```json
{
"dependencies": { "@vitest/ui": "^4.1.0" },
"overrides"... | [
{
"path": "cli/tools/pm/audit.rs",
"patch": "@@ -318,6 +318,49 @@ mod npm {\n \n let mut advisories = response.advisories.values().collect::<Vec<_>>();\n \n+ // Filter out advisories where no installed version falls within\n+ // the vulnerable range. This handles package.json overrides that\n+ ... | 2026-03-21T09:01:26 |
tensorflow/tensorflow | f0beed1a740f562a361d049505ad8828d84c53e2 | 1b2fe1b1e214dcb27b25ce16659ed793ad81aca5 | Add dummy execute handler for CubScanUnassignedScratchSizeTarget FFI.
The XLA FFI registration explicitly requires an `execute` handler to be present in the `XLA_FFI_Handler_Bundle` for all registered FFI targets, even if the target is exclusively used for its `instantiate` stage (like `xla.gpu.ext.cub_scan_unassigned... | [
{
"path": "third_party/xla/xla/hlo/ir/hlo_instruction.cc",
"patch": "@@ -2789,6 +2789,7 @@ std::unique_ptr<HloInstruction> HloInstruction::CloneWithNewOperands(\n case HloOpcode::kPad:\n case HloOpcode::kDynamicSlice:\n case HloOpcode::kSort:\n+ case HloOpcode::kScan:\n case HloOpcode::kG... | 2026-03-30T13:38:58 |
kubernetes/kubernetes | 93c755bc33e63c020873b385f957c846062f76b4 | a274c27dd326ce97bd45ac3800f8a809ecf73fc9 | e2e_node: fix pod StartTime assertion to compare using Equal | [
{
"path": "test/e2e_node/standalone_test.go",
"patch": "@@ -394,7 +394,7 @@ var _ = SIGDescribe(feature.StandaloneMode, func() {\n \t\t\t\tginkgo.By(\"wait for the mirror pod to be updated\")\n \t\t\t\tgomega.Eventually(ctx, func(g gomega.Gomega) {\n \t\t\t\t\tpod, err := getPodFromStandaloneKubelet(ctx, st... | 2026-03-16T07:04:08 |
golang/go | 9b4244e9eaab2b2b4bdf197462d336ac2e3a5284 | c861da326e5d6a0350b200f758f6430de48a4ae5 | runtime: return the error code as a return value in syscallN_trampoline
Getting errno from assembly code is cheap. There is no need to
overcomplicate syscall_rawsyscalln to get errno from the cached errno
address pointer stored in the M struct.
This also better aligns syscallN_trampoline with the cgocall convention
o... | [
{
"path": "src/runtime/os_darwin.go",
"patch": "@@ -15,11 +15,6 @@ type mOS struct {\n \tmutex pthreadmutex\n \tcond pthreadcond\n \tcount int\n-\n-\t// address of errno variable for this thread.\n-\t// This is an optimization to avoid calling libc_error\n-\t// on every syscall_rawsyscall... | 2026-03-10T09:48:31 |
mrdoob/three.js | a254a384c35945040819599599622addae45b316 | e85cce9f4fca0af97409bde1fc9d96bc5e8d0e3c | Update KeyframeTrack.js
Fix typo. | [
{
"path": "src/animation/KeyframeTrack.js",
"patch": "@@ -10,7 +10,7 @@ import * as AnimationUtils from './AnimationUtils.js';\n import { warn, error } from '../utils.js';\n \n /**\n- * Represents s a timed sequence of keyframes, which are composed of lists of\n+ * Represents a timed sequence of keyframes, ... | 2025-12-28T10:36:03 |
tensorflow/tensorflow | a1cf2c9445d6163ed42809e5c19401daeac84082 | 23bb71053414a01b191044ac2fc64fa107b4a6b6 | PR #39950: [ROCm] Fix hipblasLt Int8 GEMM support and autotuner output comparison
Imported from GitHub PR https://github.com/openxla/xla/pull/39950
📝 Summary of Changes
- Fix autotuner workspace buffer comparison: restore extracting only the first tuple element from profiler output, excluding the workspace scratch ... | [
{
"path": "third_party/xla/xla/backends/gpu/autotuner/hipblaslt.h",
"patch": "@@ -46,7 +46,8 @@ class HipblasLtBackend : public GpuCodegenBackend {\n Compiler* compiler,\n const Compiler::GpuTargetConfig* target_config)\n : GpuCodegenBackend(auto... | 2026-03-30T11:23:33 |
denoland/deno | 38186cc4f5024d57a7eb9c4ba93b9062114dd8f0 | 49a9e1355f87028c8d648f9e58decd5fbd78c62c | fix(npm): create shims for all bin entries during global npm install (#32607)
Fixes #26133
When running `deno install -g npm:pyright`, only the first bin entry
(`pyright`) got a shim. The second entry (`pyright-langserver`) was
missing. This affects any npm package with multiple `bin` entries in
`package.json`.
### ... | [
{
"path": "cli/tools/installer/bin_name_resolver.rs",
"patch": "@@ -5,7 +5,6 @@ use std::path::PathBuf;\n use deno_core::error::AnyError;\n use deno_core::url::Url;\n use deno_npm::registry::NpmRegistryApi;\n-use deno_npm::resolution::NpmPackageVersionResolver;\n use deno_npm::resolution::NpmVersionResolver... | 2026-03-21T08:51:15 |
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.