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 | 522e0710bb8c3b9be39578a0771ea68eea12507f | 5950fb4f9033bb5fa623d83fbb57d5f06b927e2c | fix(compile): strip duplicate exe path from argv when standalone binary relaunches (#33016)
## Summary
Fixes an issue where compiled npm CLI tools that relaunch themselves
(e.g. `@google/gemini-cli`) would have the binary path leak into
`process.argv` as a user argument.
When Node.js apps relaunch themselves they ty... | [
{
"path": "cli/rt/binary.rs",
"patch": "@@ -91,8 +91,26 @@ pub fn extract_standalone(\n } = deserialize_binary_data_section(&root_url, remaining)?;\n \n let cli_args = cli_args.into_owned();\n- metadata.argv.reserve(cli_args.len() - 1);\n- for arg in cli_args.into_iter().skip(1) {\n+ let current_exe ... | 2026-03-26T21:29:33 |
swiftlang/swift | 0f9f043f7a72342837a950b01d6c27688f147a42 | 1b999288aa3de00da5d5c2b0ff6f786a159f6000 | Wasm: fix build issues and test failures on macOS (#88232)
Multiple issues fixed here that prevent building Wasm Swift SDK on macOS:
1. After bumping WASI-libc to `wasi-sdk-31` tag, while building `compiler-rt`, `CMAKE_C_COMPILER_TARGET` is not set correctly, and `CMAKE_C_COMPILER_WORKS` should skip failing checks.
2.... | [
{
"path": "stdlib/public/CMakeLists.txt",
"patch": "@@ -197,10 +197,12 @@ set(EMBEDDED_STDLIB_TARGET_TRIPLES)\n \n if(SWIFT_SHOULD_BUILD_EMBEDDED_STDLIB_CROSS_COMPILING)\n if(SWIFT_WASI_SYSROOT_PATH)\n- # Don't attempt to build any other Embedded Swift stdlib triples\n- # when building for WASI.\n+ ... | 2026-04-02T11:17:46 |
golang/go | 238d7bddeba8436ff6eea8f9216978afb7d6e7cc | 9301a3eab246d3ddb49415cfd892c00382189264 | go/types, types2: in range-over-func, the yield function cannot be variadic
Fixes #78483.
For #78314.
Change-Id: If83983c0bf79840aa02dc0d2fa8945f5e8b4e969
Reviewed-on: https://go-review.googlesource.com/c/go/+/761682
Auto-Submit: Robert Griesemer <gri@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-projec... | [
{
"path": "src/cmd/compile/internal/types2/range.go",
"patch": "@@ -240,6 +240,7 @@ func rangeKeyVal(check *Checker, orig Type, allowVersion func(goVersion) bool) (\n \t\t\treturn bad(\"requires go1.23 or later\")\n \t\t}\n \t\t// check iterator arity\n+\t\t// TODO(gri) error messages could be less verbose ... | 2026-03-31T22:38:36 |
mrdoob/three.js | 430111e2dc1fc77b782bfe558a12534c8ea5ba0c | 29c9a7ac1fc796ec065f8baebe21313d42a1c243 | Fixes typos in RenderPipeline related docs (#33034) | [
{
"path": "src/nodes/display/RenderOutputNode.js",
"patch": "@@ -5,9 +5,9 @@ import { NoColorSpace, NoToneMapping } from '../../constants.js';\n import { ColorManagement } from '../../math/ColorManagement.js';\n \n /**\n- * Normally, tone mapping and color conversion happens automatically\n- * before output... | 2026-02-20T15:19:08 |
tensorflow/tensorflow | f5df0e8e14b8c603d1019e7595d9b917addb3124 | fe9e7a0ee2c462b9ef1f62c53a9264d4d9c9df89 | [XLA] Wrap loops containing only DCHECKs with ifndef NDEBUG.
PiperOrigin-RevId: 893714548 | [
{
"path": "third_party/xla/xla/service/hlo_value.cc",
"patch": "@@ -141,6 +141,7 @@ void HloValue::SetPositions(absl::Span<const HloPosition> positions) {\n \n // The positions must be unique and should not contain the defining position\n // as this is added at construction time.\n+#ifndef NDEBUG\n fo... | 2026-04-02T21:50:11 |
denoland/deno | 5950fb4f9033bb5fa623d83fbb57d5f06b927e2c | eb436571a488f498237e307e8eed9d4b5512b101 | fix(publish): vite import.meta.hot not type checking (#32127)
Ambient types from `compilerOptions.types` need to be available during
`deno publish` type checking.
## Problem
`create_publish_graph()` passes `imports: Vec::new()`, excluding all
tsconfig imports. The `to_graph_imports()` method on
`CompilerOptionsResol... | [
{
"path": "cli/graph_util.rs",
"patch": "@@ -522,7 +522,30 @@ impl ModuleGraphCreator {\n if self.options.type_check_mode().is_true()\n && !graph_has_external_remote(&graph)\n {\n- self.type_check_graph(graph.clone())?;\n+ // Include compilerOptions.types imports for type checking so... | 2026-03-26T19:44:35 |
mrdoob/three.js | 29c9a7ac1fc796ec065f8baebe21313d42a1c243 | ac88a8c2d880562ecf2a4ebacd71d2ebb751d705 | GLTFLoader: Fix morph target parsing. (#33020) | [
{
"path": "examples/jsm/loaders/GLTFLoader.js",
"patch": "@@ -4512,17 +4512,28 @@ class GLTFParser {\n \t\tconst targetName = node.name ? node.name : node.uuid;\n \t\tconst targetNames = [];\n \n+\t\tfunction collectMorphTargets( object ) {\n+\n+\t\t\tif ( object.morphTargetInfluences ) {\n+\n+\t\t\t\ttarge... | 2026-02-20T14:27:42 |
swiftlang/swift | 1b999288aa3de00da5d5c2b0ff6f786a159f6000 | a0ba1f70800f2c21e80c26d550b7d9380c9e00d9 | [Concurrency] regression test for async deinit in generic actor (#88231)
This actually was fixed already in
https://github.com/swiftlang/swift/commit/e09363644d7 just adding more
modes coverage for it in normal test/ rather than just a validation
test, and with a global actor as well.
Refs rdar://173740679
Refs rdar:... | [
{
"path": "test/SILGen/deinit_isolation_generic.swift",
"patch": "@@ -0,0 +1,19 @@\n+// RUN: %target-swift-frontend -target %target-future-triple -parse-as-library -emit-silgen %s\n+\n+// Also check if there's any weird accidental interactions with modes which affect default isolation:\n+// RUN: %target-swi... | 2026-04-02T08:34:25 |
golang/go | 9301a3eab246d3ddb49415cfd892c00382189264 | 0dcd7ab1b9658183d52ccadf9135834fdd57e2ba | runtime: rename _mkmalloc's module to avoid GOROOT conflict
Often we want to run _mkmalloc using a different toolchain. The
previous module path runtime/_mkmalloc would produce an ambiguous import
path error because the directory runtime/_mkmalloc exists in a Go 1.26+
toolchain. Rename the module to avoid the conflict... | [
{
"path": "src/runtime/_mkmalloc/go.mod",
"patch": "@@ -1,4 +1,4 @@\n-module runtime/_mkmalloc\n+module _mkmalloc\n \n go 1.24\n ",
"additions": 1,
"deletions": 1,
"language": "Unknown"
}
] | 2026-04-01T16:47:25 |
tensorflow/tensorflow | d85c2336f0a5f50986feed2cb621d39912de3ea0 | ca6995d9cde7463258099f5a4592df7de896291c | Implement non-descending layout support in `CpuRawBuffer::CopyToLiteralAsync`
This fixes a bug where PjRt CPU buffers ignore major-to-minor in the layout inside `ToLiteral`. The CL also makes `CopyToLiteralAsync` perform the work asynchronously as intended by the API.
PiperOrigin-RevId: 893674302 | [
{
"path": "third_party/xla/xla/pjrt/cpu/cpu_client_test.cc",
"patch": "@@ -551,6 +551,28 @@ TEST(PjRtCpuClientTest, AsyncTransferLiteralInt4) {\n ElementsAreArray(literal.data<s4>()));\n }\n \n+TEST(PjRtCpuClientTest, ToLiteralWithLayout) {\n+ TF_ASSERT_OK_AND_ASSIGN(auto client, GetPjRtCpuCl... | 2026-04-02T20:36:54 |
mrdoob/three.js | 608f75712d745b76d02a13441b4b428fbdd6eafa | d76b5d0031473956a64cd24d248db99985d2f21d | USDLoader: Fix skin binding fallback when geomBindTransform is missing | [
{
"path": "examples/jsm/loaders/usd/USDComposer.js",
"patch": "@@ -3559,7 +3559,9 @@ class USDComposer {\n \n \t\t\t}\n \n-\t\t\t// Use geomBindTransform if available, otherwise compute from mesh/skeleton alignment\n+\t\t\t// Use geomBindTransform if available, otherwise fall back to identity.\n+\t\t\t// Es... | 2026-02-20T06:12:00 |
denoland/deno | eb436571a488f498237e307e8eed9d4b5512b101 | 725027149f83d22916d47ecac3923cebec703599 | fix(ext/node): rewrite Windows TTY reading to match libuv (console mode, encoding, raw + line mode) (#32999)
## Summary
Rewrites the Windows TTY read/write paths to match libuv's behavior,
fixing regressions introduced in the `node:tty` rewrite (#32777, landed
in v2.7.6).
### Console mode restoration
`uv_tty_set_mod... | [
{
"path": "libs/core/uv_compat.rs",
"patch": "@@ -199,6 +199,16 @@ impl UvLoopInner {\n }\n }\n \n+ /// Wake the event loop so it re-polls on the next tick. Used on\n+ /// Windows to ensure pending TTY write callbacks are processed\n+ /// promptly when there is no async I/O notification mechanism.\... | 2026-03-26T15:20:59 |
golang/go | 50f94b1dcd45b88c61d73fce2ec56cedc4c13b14 | b5b9e3cdfee825829c95205dcae3e1d528990cd9 | cmd/go/internal/doc: follow up to CL 733200
I submitted a rebased variant of the CL that dropped changes in
response to Sean Liao and Ian Alexander's comments.
Add the bug updates below and re-implement Ian's suggestion.
Fixes #34750
For #53446
For #60645
Change-Id: Ie132ac65efd27e811edabfbbb083b6946a6a6964
Reviewe... | [
{
"path": "src/cmd/go/internal/doc/doc.go",
"patch": "@@ -373,7 +373,7 @@ func parseArgs(ctx context.Context, flagSet *flag.FlagSet, args []string) (pkg *\n \t}\n \tloader := modload.NewState()\n \tif testGOPATH {\n-\t\tloader = modload.DisabledState()\n+\t\tloader = modload.NewDisabledState()\n \t}\n \tif ... | 2026-03-31T18:43:38 |
swiftlang/swift | 09c5e7912d0cefccfc9ddd29b6ce1a60ded2d280 | 49890c7e592b4bb0110de8a45185214ef9cd6fa5 | Fix Builtin.Borrow<T> OSSA representation
Builtin.Borrow<T> does not introduce a new borrow scope at the level of
SILValue. A SILValue that introduces a borrow scope is expected to be tracked by
OSSA--it cannot produce a trivial value. That borrow scope is expected to have a
scope-ending operation on all paths.
It's ... | [
{
"path": "SwiftCompilerSources/Sources/Optimizer/Utilities/OwnershipLiveness.swift",
"patch": "@@ -477,8 +477,6 @@ extension OwnershipUseVisitor {\n return dependentUse(of: operand, dependentValue: mdi)\n case let bfi as BorrowedFromInst where !bfi.borrowedPhi.isReborrow:\n return dependent... | 2026-03-31T18:50:20 |
mrdoob/three.js | 022c006347d355c4a93e449e90b07a8ce30a537e | f4f07b2b4a5b5bb0fb0be723b19dc0641ba7f8b7 | WebGPURenderer: Fix binding update after dispose a `StorageTexture` (#33028) | [
{
"path": "src/renderers/common/Sampler.js",
"patch": "@@ -35,7 +35,7 @@ class Sampler extends Binding {\n \t\tthis._onTextureDispose = () => {\n \n \t\t\tthis.generation = null;\n-\t\t\tthis.version = 0;\n+\t\t\tthis.version = - 1;\n \n \t\t};\n \n@@ -47,7 +47,7 @@ class Sampler extends Binding {\n \t\t *\... | 2026-02-20T06:09:31 |
denoland/deno | 725027149f83d22916d47ecac3923cebec703599 | 3f67ba97718a77ba11e20cfc69003fb36549d13e | fix(ext/node): add Symbol.dispose and Symbol.asyncDispose to fs.Dir (#33000)
Closes #32966
---------
Signed-off-by: majiayu000 <1835304752@qq.com> | [
{
"path": "ext/node/polyfills/_fs/_fs_dir.ts",
"patch": "@@ -15,6 +15,8 @@ const {\n Uint8ArrayPrototype,\n PromisePrototypeThen,\n SymbolAsyncIterator,\n+ SymbolAsyncDispose,\n+ SymbolDispose,\n ArrayIteratorPrototypeNext,\n AsyncGeneratorPrototypeNext,\n SymbolIterator,\n@@ -110,6 +112,14 @@... | 2026-03-26T14:18:32 |
golang/go | e3a10fe3749eea3d7d5f284c3a1e57479131176f | 836b0984ee0b930c02ca62f9e8801f1016c9b253 | net/http/internal/http2: prevent hanging Transport due to bad SETTINGS frame
When processing SETTINGS frame, Transport currently only checks if the
frame is valid for SETTINGS_ENABLE_CONNECT_PROTOCOL. As a result, a
SETTINGS_MAX_FRAME_SIZE with the invalid value of 0 is erroneously
accepted. This will then result in T... | [
{
"path": "src/net/http/internal/http2/transport.go",
"patch": "@@ -2836,6 +2836,9 @@ func (rl *clientConnReadLoop) processSettingsNoWrite(f *SettingsFrame) error {\n \n \tvar seenMaxConcurrentStreams bool\n \terr := f.ForeachSetting(func(s Setting) error {\n+\t\tif err := s.Valid(); err != nil {\n+\t\t\tre... | 2026-03-31T19:02:11 |
swiftlang/swift | cc3c701462078ca24387a116743d633726a12d3d | a0ba1f70800f2c21e80c26d550b7d9380c9e00d9 | Optimizer: move the `cond_fail true` optimization out of SILCombine into its own optimization pass
This optimization handles unconditional `cond_fail` instructions, i.e. `cond_fail`s with a non-zero `integer_literal` operand.
It cuts off the control flow after such a `cond_fail` by inserting an `unreachable` instructi... | [
{
"path": "SwiftCompilerSources/Sources/Optimizer/FunctionPasses/CMakeLists.txt",
"patch": "@@ -17,6 +17,7 @@ swift_compiler_sources(Optimizer\n ClosureSpecialization.swift\n ComputeEscapeEffects.swift\n ComputeSideEffects.swift\n+ CondFailOptimization.swift\n CopyToBorrowOptimization.swift\n Dea... | 2026-04-01T18:51:49 |
mrdoob/three.js | b9d566a0f12252cc3b8242ef53bc9757e295d948 | 8e5dc00dd78f0e1e07f324db01324f1602753efd | NodeMaterialObserver: Fix typo. (#33024) | [
{
"path": "src/materials/nodes/manager/NodeMaterialObserver.js",
"patch": "@@ -438,14 +438,14 @@ class NodeMaterialObserver {\n \t\t// check index\n \n \t\tconst index = geometry.index;\n-\t\tconst storedIndexId = storedGeometryData.id;\n+\t\tconst storedIndexId = storedGeometryData.indexId;\n \t\tconst sto... | 2026-02-19T13:36:20 |
denoland/deno | 3f67ba97718a77ba11e20cfc69003fb36549d13e | d043fd6fc3aeb31f79462b46ffd5c412629e452c | fix(ext/http): use clone_external in op_http_metric_handle_otel_error (#33005)
## Summary
- Fix use-after-take panic in HTTP OTel integration when both metrics
and tracing are enabled and the `onError` handler throws
- `op_http_metric_handle_otel_error` was using `take_external!`
(consuming the pointer), then `op_htt... | [
{
"path": "ext/http/http_next.rs",
"patch": "@@ -1713,8 +1713,8 @@ pub async fn op_raw_write_vectored(\n #[op2(fast)]\n pub fn op_http_metric_handle_otel_error(external: *const c_void) {\n let http =\n- // SAFETY: external is deleted before calling this op.\n- unsafe { take_external!(external, \"op_... | 2026-03-26T13:49:53 |
golang/go | 974764364aa09a34cad2d74a6b7c52c12a136ea3 | 2000e27ea6a644ea3623db201d8ba2818e8f5838 | runtime: unix: sane exit in dieFromSignal for pid 1
A curious bug was reported to kubernetes[1] and runc[2] recently:
sometimes runc init reports exit status of 2.
Turns out, Go runtime assumes that on any UNIX system signals such as
SIGTERM (or any other that has _sigKill flag set in sigtable) with no
signal handler... | [
{
"path": "src/runtime/signal_linux_test.go",
"patch": "@@ -0,0 +1,95 @@\n+// Copyright 2026 The Go Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style\n+// license that can be found in the LICENSE file.\n+\n+package runtime_test\n+\n+import (\n+\t\"bufio\"\n+\t\"bytes\"\n+... | 2026-03-25T05:18:47 |
kubernetes/kubernetes | b6fbc88793ae394d83608540ae3ff4c140842896 | 2e494fc71cdaca093b0a01941334fbbe87c47f7d | ci fixes | [
{
"path": "pkg/kubelet/apis/pods/server_unit_test.go",
"patch": "@@ -127,7 +127,7 @@ func TestWatchPods(t *testing.T) {\n \t}\n \n \tgo func() {\n-\t\tserver.WatchPods(&podsv1alpha1.WatchPodsRequest{}, mockStream)\n+\t\t_ = server.WatchPods(&podsv1alpha1.WatchPodsRequest{}, mockStream)\n \t}()\n \n \t// Ver... | 2026-03-09T16:35:08 |
mrdoob/three.js | 8e5dc00dd78f0e1e07f324db01324f1602753efd | 023e96727d3b1d7c30dea62d8be38c412a44e3a2 | Examples: Fix sidebar scrolling to selected example (#33023) | [
{
"path": "examples/index.html",
"patch": "@@ -103,7 +103,7 @@ <h1><a href=\"https://threejs.org\">three.js</a></h1>\n \t\t\t\tif ( validRedirects.has( file ) === true ) {\n \n \t\t\t\t\tselectFile( file );\n-\t\t\t\t\tlinks[ file ].scrollIntoView( { block: 'center' } );\n+\t\t\t\t\tupdateLinkScroll();\n \t... | 2026-02-19T06:45:38 |
swiftlang/swift | c8068c768b9b9243e62b277d5cf8c2e5ec7d3197 | 49890c7e592b4bb0110de8a45185214ef9cd6fa5 | Fix IRGen/typed_allocation.swift - REQUIRES: embedded_stdlib
Tests that require swift_feature_Embedded and use the stdlib also require
embedded_stdlib. This must be listed as an explicit requirement for tests
outside of the test/embedded subdirectory. | [
{
"path": "test/IRGen/typed_allocation.swift",
"patch": "@@ -2,6 +2,7 @@\n \n // REQUIRES: OS=macosx\n // REQUIRES: swift_in_compiler\n+// REQUIRES: embedded_stdlib\n // REQUIRES: swift_feature_Embedded\n // REQUIRES: swift_feature_TypedAllocation\n ",
"additions": 1,
"deletions": 0,
"language":... | 2026-04-02T04:20:15 |
denoland/deno | d043fd6fc3aeb31f79462b46ffd5c412629e452c | 6a66ea528cea4ec8e52b0f1d5a1765db116419d1 | fix(ext/node): use constant-time comparison for secret key equality (#32994)
## Summary
- `KeyObjectHandle::Secret` `PartialEq` impl used standard `==` for byte
slice comparison, which short-circuits on first mismatch
- Switched to `subtle::ConstantTimeEq` (`ct_eq`) to prevent potential
timing side-channels when compa... | [
{
"path": "ext/node_crypto/keys.rs",
"patch": "@@ -411,7 +411,10 @@ impl PartialEq for KeyObjectHandle {\n match (self, other) {\n (Self::AsymmetricPrivate(a), Self::AsymmetricPrivate(b)) => a == b,\n (Self::AsymmetricPublic(a), Self::AsymmetricPublic(b)) => a == b,\n- (Self::Secret(a),... | 2026-03-26T12:59:01 |
golang/go | 2000e27ea6a644ea3623db201d8ba2818e8f5838 | f9d2c2fd692e3aa81b80fbe1d0479866abff54df | cmd/go/internal/doc: use internal go command logic to load packages
We've been using go/build to load packages, and that doesn't
always do the right thing, because it doesn't have the same
context and settings that the go command uses to load packages.
Use the go command's loader to load packages.
This CL doesn't rem... | [
{
"path": "src/cmd/go/internal/doc/dirs.go",
"patch": "@@ -15,6 +15,9 @@ import (\n \t\"strings\"\n \t\"sync\"\n \n+\t\"cmd/go/internal/cfg\"\n+\t\"cmd/go/internal/modload\"\n+\n \t\"golang.org/x/mod/semver\"\n )\n \n@@ -41,29 +44,18 @@ var dirs Dirs\n // dirsInit starts the scanning of package directories ... | 2025-12-29T18:16:53 |
kubernetes/kubernetes | 0809c4f37fdca592d9a8efd5e189102ca1082697 | 960c317df453b59730f2cb241df43b8aed956e60 | linter fixes | [
{
"path": "test/e2e_node/pods_api_test.go",
"patch": "@@ -71,15 +71,15 @@ var _ = SIGDescribe(\"Kubelet Pods API\", framework.WithSerial(), func() {\n \t\t\tframework.ExpectNoError(err, \"failed to get local endpoint for Pods API\")\n \n \t\t\tgomega.Eventually(ctx, func(ctx context.Context) error {\n-\t\t\... | 2026-01-06T21:23:37 |
swiftlang/swift | 401d2ee0725227221874013ea71de073a2be55cf | 49890c7e592b4bb0110de8a45185214ef9cd6fa5 | Fix DeinitDevirtualizer to handle non-generic deinitializer function
Avoid passing an invalid substitution map into createApply.
Required conditions (from the bug report):
1. `~Copyable` struct with user-defined `deinit`
2. Nested inside a constrained extension where all generic parameters are concrete
3. A `destroy_... | [
{
"path": "SwiftCompilerSources/Sources/Optimizer/Utilities/Devirtualization.swift",
"patch": "@@ -10,6 +10,7 @@\n //\n //===----------------------------------------------------------------------===//\n \n+import AST\n import SIL\n \n /// Devirtualizes all value-type deinitializers of a `destroy_value`.\n@@... | 2026-04-02T03:17:02 |
denoland/deno | 6a66ea528cea4ec8e52b0f1d5a1765db116419d1 | 8f1c7719f6ff0b308144f51c2a37ea788a7c6c61 | fix(compile): use execPath for process.argv[1] in standalone binaries (#32990)
## Summary
In compiled (standalone) binaries, `process.argv[1]` was set to the
internal temp extraction path (e.g. `/tmp/deno-compile-foo/path/to/main.ts`)
instead of the binary path. This caused npm CLI tools like `@google/gemini-cli` to
... | [
{
"path": "ext/node/polyfills/process.ts",
"patch": "@@ -1332,7 +1332,9 @@ internals.__bootstrapNodeProcess = function (\n if (!warmup) {\n argv0 = argv0Val || \"\";\n argv[0] = argv0;\n- argv[1] = Deno.mainModule?.startsWith(\"file:\")\n+ argv[1] = Deno.build.standalone\n+ ? Deno.execP... | 2026-03-26T12:41:05 |
golang/go | f9d2c2fd692e3aa81b80fbe1d0479866abff54df | 1582ad41058df1092eaed9dec4d97b7856953ade | test/codegen: forbid commas as separators
We need to leave the comma in the regexp so we get the entire comment
for processing, but report an error if commas are actually used.
Change-Id: Ia19a329deda2524cea292d866a84d1bf3b4518c6
Reviewed-on: https://go-review.googlesource.com/c/go/+/760780
Reviewed-by: Junyang Shao ... | [
{
"path": "src/cmd/internal/testdir/testdir_test.go",
"patch": "@@ -1489,7 +1489,6 @@ var (\n \t//\t\"[\\s,]+\" matches \" \"\n \t//\tsecond reMatchCheck matches \"`SUB`\"\n \t//\t\")*)\" closes started groups; \"*\" means that there might be other elements in the space-separated list\n-\t// (TODO: remove a... | 2026-03-28T15:12:15 |
mrdoob/three.js | 023e96727d3b1d7c30dea62d8be38c412a44e3a2 | e8fe8196378d7c6b3f4bff62b68133bdf4383bc4 | Inspector: Fix compatibility with `WebGLBackend` if used as a fallback (#33019) | [
{
"path": "examples/jsm/inspector/Inspector.js",
"patch": "@@ -198,10 +198,10 @@ class Inspector extends RendererInspector {\n \n \t\t\tif ( this.isAvailable ) {\n \n-\t\t\t\trenderer.backend.trackTimestamp = true;\n-\n \t\t\t\trenderer.init().then( () => {\n \n+\t\t\t\t\trenderer.backend.trackTimestamp = t... | 2026-02-18T14:12:48 |
tensorflow/tensorflow | 7d64214c8a06cb175aa248daad86a4817f916120 | 33264a6c6c6238fd0f07d417a5e5b7a999e1f75e | Make XLA:GPU propagate all CPU HW features to FFI and XLA:CPU
When the user is not requesting a specific CPU architecture
XLA automatically detects the host architecture and passes this
information to FFI based custom calls and XLA:CPU. So far
this detection has been ignoring architecture features
(like SSE, Neon, AVX... | [
{
"path": "third_party/xla/xla/backends/gpu/target_config/BUILD",
"patch": "@@ -150,3 +150,36 @@ xla_test(\n \"@tsl//tsl/platform:protobuf\",\n ],\n )\n+\n+xla_test(\n+ name = \"embedded_gpu_topology_test\",\n+ srcs = [\"embedded_gpu_topology_test.cc\"],\n+ backend_tags = {\n+ \"... | 2026-04-02T16:16:56 |
kubernetes/kubernetes | 960c317df453b59730f2cb241df43b8aed956e60 | 433ae3363f25f0cca298a8eef8201630e459da92 | fmt and ci fixes | [
{
"path": "pkg/kubelet/apis/pods/server.go",
"patch": "@@ -270,4 +270,4 @@ func convertWatchEventType(watchType watch.EventType) (podsv1alpha1.EventType, e\n \tdefault:\n \t\treturn podsv1alpha1.EventType_ADDED, status.Errorf(codes.Internal, \"unknown watch event type: %v\", watchType)\n \t}\n-}\n\\ No newl... | 2026-01-06T01:02:19 |
golang/go | 1582ad41058df1092eaed9dec4d97b7856953ade | d5b6d583c16f60e4a2f80f8b0fe78abab503f84c | test/codegen: fix some unbalanced quotes
Change-Id: I081da8c79f0264118e079af21ff58c511ae37e6c
Reviewed-on: https://go-review.googlesource.com/c/go/+/760682
Reviewed-by: Junyang Shao <shaojunyang@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Joel Sing... | [
{
"path": "src/cmd/internal/testdir/testdir_test.go",
"patch": "@@ -1683,6 +1683,8 @@ func (t test) wantedAsmOpcodes(fn string) asmChecks {\n \t\t\ttail := comment[lastUsed:]\n \t\t\tif possibleOpcodeRx.MatchString(tail) {\n \t\t\t\tt.Errorf(\"%s:%d: possible unused assembly pattern: %v\", t.goFileName(), i... | 2026-03-28T00:14:43 |
mrdoob/three.js | 6054daa329e3afb003afa9b536ea3850fd673a50 | 8669014a2b043ba6c846b3b9ae2dcbfd093a93ee | GLSLNodeBuilder: Fix array texture layer support for filtered sampling (#33008) | [
{
"path": "src/renderers/webgl-fallback/nodes/GLSLNodeBuilder.js",
"patch": "@@ -545,10 +545,13 @@ ${ flowData.code }\n \t * @param {string} textureProperty - The name of the texture uniform in the shader.\n \t * @param {string} uvSnippet - A GLSL snippet that represents texture coordinates used for samplin... | 2026-02-16T09:24:57 |
tensorflow/tensorflow | 657dd2fefaad803bd667f6b9e6ef56411d868046 | 0e5326d77d2dec5c7b00f6dc29dffa88a194309b | Bump rules_python 1.8.4 -> 1.8.5 to restore correct URL-based req processing.
This was relied on for using local wheels as overrides for matching
requirements defined in lock files, and will allow to stop using the purely
suggestive `--find-links` that was needed for the 1.8.4 upgrade because of
the regression that's ... | [
{
"path": "third_party/py/python_init_rules.bzl",
"patch": "@@ -37,9 +37,9 @@ def python_init_rules(extra_patches = []):\n \n tf_http_archive(\n name = \"rules_python\",\n- sha256 = \"c85d5db38d3eac06167a13b10c9dba54b003a986cd4f1ebc00806b74e7c12f06\",\n- strip_prefix = \"rules_pyth... | 2026-04-02T16:00:38 |
kubernetes/kubernetes | 433ae3363f25f0cca298a8eef8201630e459da92 | fd330c303da4816e44a264cecfbb83f1ee598ada | Fix typo | [
{
"path": "pkg/kubelet/apis/pods/server_unit_test.go",
"patch": "@@ -35,7 +35,7 @@ import (\n \tpodsv1alpha1 \"k8s.io/kubelet/pkg/apis/pods/v1alpha1\"\n \t\"k8s.io/kubernetes/pkg/api/legacyscheme\"\n \tcorefuzzer \"k8s.io/kubernetes/pkg/apis/core/fuzzer\"\n-\tpodsapi \"k8s.io/kubernetes/pkg/kubele t/apis/po... | 2026-01-06T00:15:51 |
denoland/deno | 8f1c7719f6ff0b308144f51c2a37ea788a7c6c61 | 5db85e46e445e5c34adef8a2bd9c085f66815285 | fix(ext/node): `util.stripVTControlCharacters` compatibility (#32942)
Fixes #32931
`util.stripVTControlCharacters` was not removing OSC 8 hyperlinks
because the `ansiPattern` regex only recognized BEL (`\u0007`) as the string
terminator for OSC sequences. OSC 8 hyperlinks use `ESC \` (i.e. `\u001B\u005C`) as
their te... | [
{
"path": "ext/node/polyfills/internal/util/inspect.mjs",
"patch": "@@ -282,8 +282,9 @@ const builtInObjects = new SafeSet(\n // Matches all ansi escape code sequences in a string\n const ansiPattern = \"[\\\\u001B\\\\u009B][[\\\\]()#;?]*\" +\n \"(?:(?:(?:(?:;[-a-zA-Z\\\\d\\\\/#&.:=?%@~_]+)*\" +\n- \"|[a... | 2026-03-25T18:04:13 |
golang/go | 1673075d4bd324e69cb4e6e58760316e2c84e604 | 9387929d09490ae30a8da75c64d9c64e2c16936d | test/codegen: fix broken syntax
A bunch of tests had broken yet undetected syntax errors
in their assembly output regexps. Things like mismatched quotes,
using ^ instead of - for negation, etc.
In addition, since CL 716060 using commas as separators between
regexps doesn't work, and ends up just silently dropping eve... | [
{
"path": "src/cmd/internal/testdir/testdir_test.go",
"patch": "@@ -1394,10 +1394,11 @@ type wantedError struct {\n }\n \n var (\n-\terrRx = regexp.MustCompile(`// (?:GC_)?ERROR (.*)`)\n-\terrAutoRx = regexp.MustCompile(`// (?:GC_)?ERRORAUTO (.*)`)\n-\terrQuotesRx = regexp.MustCompile(`\"([^\"]*)\"`... | 2026-03-27T22:12:23 |
mrdoob/three.js | e07553528990fc623b0759fb761b1f20707a3fe9 | 8efd540f3964477a82197bb5a6ea703fbaa19167 | WebGPURenderer: Fix stencilBack not matching stencilFront in pipeline (#33002) | [
{
"path": "src/renderers/webgpu/utils/WebGPUPipelineUtils.js",
"patch": "@@ -250,7 +250,7 @@ class WebGPUPipelineUtils {\n \t\t\tif ( renderStencil === true ) {\n \n \t\t\t\tdepthStencil.stencilFront = stencilFront;\n-\t\t\t\tdepthStencil.stencilBack = {}; // three.js does not provide an API to configure th... | 2026-02-14T10:00:28 |
tensorflow/tensorflow | 45f557d3ed328ca04a86bca453df5de6ff42b3e5 | 6185942b0396aac6c509850c9c8c752d6c7fdf13 | PR #39373: [ROCm] Fix issue with unsupported types combinations for hipblaslt
Imported from GitHub PR https://github.com/openxla/xla/pull/39373
📝 Summary of Changes
Prevent usage of hipblaslt for gemms with bf16 or f16 with f32
🎯 Justification
hipblaslt custom call was generated altough not supported on mi200
🚀 ... | [
{
"path": "third_party/xla/xla/backends/gpu/transforms/gemm_rewriter.cc",
"patch": "@@ -2521,7 +2521,7 @@ class GemmRewriterVisitor : public DfsHloRewriteVisitor {\n b_dtype, output_dtype})) {\n return true;\n }\n- const TypeCombinations supported_type_c... | 2026-04-02T13:10:55 |
kubernetes/kubernetes | fd330c303da4816e44a264cecfbb83f1ee598ada | 044f65ca5c2f21af4e431f9d34aaf6826bcf9dcf | Refactor PodsServer to use PodManager as source of truth
- Fixed version in kube_features.go after rebase (1.35->1.36)
- Removed internal pod cache in PodsServer to reduce memory footprint and avoid duplication.
- Injected pod.Manager into PodsServer to serve as the single source of truth for pod data.
- Refactored Wa... | [
{
"path": "pkg/features/kube_features.go",
"patch": "@@ -1734,7 +1734,7 @@ var defaultVersionedKubernetesFeatureGates = map[featuregate.Feature]featuregate\n \t},\n \n \tPodsAPI: {\n-\t\t{Version: version.MustParse(\"1.35\"), Default: false, PreRelease: featuregate.Alpha},\n+\t\t{Version: version.MustParse(... | 2025-12-16T20:29:55 |
golang/go | 9387929d09490ae30a8da75c64d9c64e2c16936d | f665ff8bc1ab2576d173cb69c3b2e87916dc74fd | cmd/link, runtime: record size of itabs
We were depending on runtime.etypes immediately following the itabs.
However, on AIX, runtime.etypes, as a zero-sized symbol, can float
when using external linking. It won't necessarily stay right at the
end of the itabs. Rather than worry about this, just record the size
of the... | [
{
"path": "src/cmd/link/internal/ld/data.go",
"patch": "@@ -2549,6 +2549,19 @@ func (state *dodataState) dodataSect(ctxt *Link, symn sym.SymKind, syms []loader\n \t\t\tsu.SetUint(ctxt.Arch, ctxt.moduledataItabOffset, uint64(typeSize))\n \t\t}\n \n+\t\titabSize := int64(0)\n+\t\tfor ; i < len(sl); i++ {\n+\t... | 2026-03-30T04:05:35 |
mrdoob/three.js | 022375318b7120177faf415d2601b31e96747305 | d55227ba5c8bfe9853cad38abfc9f7a57cd4de27 | WebGPURenderer: Reversed depth buffer fixes. (#33000) | [
{
"path": "src/cameras/CubeCamera.js",
"patch": "@@ -204,7 +204,18 @@ class CubeCamera extends Object3D {\n \t\trenderTarget.texture.generateMipmaps = false;\n \n \t\t// https://github.com/mrdoob/three.js/issues/31413#issuecomment-3095966812\n-\t\tconst reversedDepthBuffer = !! ( renderer.isWebGLRenderer &&... | 2026-02-13T13:12:32 |
swiftlang/swift | 69925b6a25dcb4ecb01fd93f4a1b65e991553380 | eb420df8886a722ec2b24a69afa1a81a9a8c7569 | [DebugInfo] Emit DW_TAG_inheritance for protocol composition members
Protocol compositions like `P1 & P2` are now emitted with
DW_TAG_inheritance entries referencing each constituent protocol. | [
{
"path": "lib/IRGen/IRGenDebugInfo.cpp",
"patch": "@@ -2150,13 +2150,54 @@ class IRGenDebugInfoImpl : public IRGenDebugInfo {\n }\n // If the existential is just a protocol type it shares its mangled name\n // with it, so we can just represent it directly as a protocol.\n- BaseTy = T... | 2026-03-25T22:54:50 |
tensorflow/tensorflow | e73179ced2a58bc19aa56723b68645959a9095b2 | ab0c7158cee38a1b2c99785f0bcdc7e9dc338cbd | PR #40232: Add missing kAllGatherStart/kAllGatherDone verification to HLO verifier
Imported from GitHub PR https://github.com/openxla/xla/pull/40232
## Summary
Fixes #40191
`VerifyAsynchronousInstructionPairs` checks that async Start/Done instructions
are properly connected for all async op types except `kAllGatherS... | [
{
"path": "third_party/xla/xla/backends/gpu/codegen/triton/support_test.cc",
"patch": "@@ -1177,23 +1177,26 @@ TEST_P(CollectiveTest, UnsupportedAllGatherStartFailsGracefullyWithTriton) {\n const std::string kHloTestTemplate = R\"(\n ENTRY triton_computation {\n input = $0[128,32] parameter(0)\n- ROOT ... | 2026-04-02T12:34:25 |
mrdoob/three.js | 13624b0d86b9e1d8c1cd63db454c0477d4d93f0f | 7936309f484ed76e5471fb77b340b5b4713418ad | NodeBuilder: Fix update nodes sequence (#32991) | [
{
"path": "examples/jsm/tsl/display/GaussianBlurNode.js",
"patch": "@@ -1,5 +1,5 @@\n import { RenderTarget, Vector2, NodeMaterial, RendererUtils, QuadMesh, TempNode, NodeUpdateType } from 'three/webgpu';\n-import { nodeObject, Fn, float, uv, uniform, convertToTexture, vec2, vec4, passTexture, premultiplyAl... | 2026-02-11T02:51:29 |
golang/go | f665ff8bc1ab2576d173cb69c3b2e87916dc74fd | 9002bd9fa1a3b500ca570844ea563967268a3878 | cmd/compile: fix wrong label loop during rangefunc rewrite
During the rangefunc rewrite, the compiler must correctly identify
the target of branch statements. When a label is defined within a
nested scope - such as inside a function literal or a closure - it
can shadow a label with the same name in the outer scope.
I... | [
{
"path": "src/cmd/compile/internal/rangefunc/rewrite.go",
"patch": "@@ -994,7 +994,14 @@ func (r *rewriter) computeBranchNext() {\n \t\t\t\tl := n.Label.Value\n \t\t\t\tlabels = append(labels, l)\n \t\t\t\tf := forStack[len(forStack)-1]\n-\t\t\t\tr.labelLoop[l] = f\n+\t\t\t\tif _, existed := r.labelLoop[l]... | 2026-03-31T11:53:51 |
kubernetes/kubernetes | 71f02bb2f32b671b1f3df78650c8227e3066742e | 7a3a6cf4be719a2eaed14e48a701cbdd2f0e8400 | DRA: fix Pods in a scheduling gang sharing ResourceClaims | [
{
"path": "pkg/scheduler/framework/autoscaler_contract/lister_contract_test.go",
"patch": "@@ -152,14 +152,22 @@ func (r *resourceClaimTrackerContract) SignalClaimPendingAllocation(_ types.UID,\n \treturn nil\n }\n \n-func (r *resourceClaimTrackerContract) ClaimHasPendingAllocation(_ types.UID) bool {\n-\tr... | 2026-03-11T04:59:45 |
swiftlang/swift | a8e7b1a887ebb43da03496e0ac9f112d28c583ca | dd03302d7b71dc2c60f87daa1f00eb632ed9ada2 | Sema: Correct source locs for UseAnyAppleOSAvailability fix-its.
The previously emitted fix-its would only replace the last availability spec
instead of all of the specs. I didn't notice this until I tried it in an
editor.
Resolves rdar://173814157. | [
{
"path": "lib/Sema/TypeCheckAttr.cpp",
"patch": "@@ -5422,10 +5422,18 @@ void suggestAnyAppleOSAvailability(const Decl *D,\n os << \"anyAppleOS \" << commonVersion;\n \n auto groupHead = attrGroups.front();\n+\n+ // Get the location of the @available attr's right paren.\n SourceLoc groupEndLoc = gro... | 2026-03-31T22:28:10 |
mrdoob/three.js | 97244a7540b5de1175ca4d8b9eae074820cd362e | 461515f3594c6da470c0301011f220468e92b81d | WGSLNodeBuilder: Fix array texture layer support for filtered sampling (#32990) | [
{
"path": "src/renderers/webgpu/nodes/WGSLNodeBuilder.js",
"patch": "@@ -112,6 +112,29 @@ fn tsl_biquadraticTexture( map : texture_2d<f32>, coord : vec2f, iRes : vec2u, l\n \n \treturn mix( mix( rg1, rg2, f.x ), mix( rg3, rg4, f.x ), f.y );\n \n+}\n+` ),\n+\tbiquadraticTextureArray: new CodeNode( /* wgsl */... | 2026-02-10T12:45:32 |
tensorflow/tensorflow | e2c9f36eb215c057a49ed30dc18fb80b737e3990 | a1f7a8130ea23632172fcf644fe54f7fcf42cbfa | Avoid crashing in HloVerifier for unexpected shapes in AllGather.
HloVerifier cannot assume anything about the provided HLO and should validate
it instead of crashing.
Fix the same kind of bug for ReduceScatter.
PiperOrigin-RevId: 893432458 | [
{
"path": "third_party/xla/xla/service/hlo_verifier.cc",
"patch": "@@ -476,15 +476,27 @@ static absl::Status CheckCommonAllGatherInvariants(\n int64_t shard_count;\n for (int64_t i = 0; i < ag->operand_count(); ++i) {\n TF_RET_CHECK(\n+ ag->operand(i)->shape().IsArray() &&\n ag->all_g... | 2026-04-02T11:29:38 |
golang/go | 9002bd9fa1a3b500ca570844ea563967268a3878 | d9fbe4c90d956f7835224f4de1afcf799e8cc3ed | cmd/compile: ensure map/slice clearing expressions are walked
The order pass ensures that initialization operations for clear(expr)
are scheduled. However, if 'expr' is a conversion that the walk pass
subsequently optimizes away or transforms, the resulting nodes can
be left in an un-walked state.
These un-walked nod... | [
{
"path": "src/cmd/compile/internal/walk/builtin.go",
"patch": "@@ -136,17 +136,18 @@ func walkGrowslice(slice *ir.Name, init *ir.Nodes, oldPtr, newLen, oldCap, num i\n }\n \n // walkClear walks an OCLEAR node.\n-func walkClear(n *ir.UnaryExpr) ir.Node {\n+func walkClear(n *ir.UnaryExpr, init *ir.Nodes) ir.... | 2026-03-30T06:15:38 |
kubernetes/kubernetes | ca66143d5fc5645eeffd83d64de4d1a519b2ba4a | 39e99b2a2c280ff4d7cbfa490ebf97703fdef005 | Add DRA test for device attribute with no value set
Test that declarative validation catches a DeviceAttribute with no
value fields set, which was the original bug scenario where union
ratcheting incorrectly skipped validation for new map entries. | [
{
"path": "pkg/registry/resource/resourceslice/declarative_validation_test.go",
"patch": "@@ -304,6 +304,13 @@ func TestDeclarativeValidateUpdate(t *testing.T) {\n \t\t\t\t\t\tfield.Invalid(field.NewPath(\"spec\", \"devices\").Index(0).Child(\"attributes\").Key(\"test.io/multiple\"), \"\", \"\").WithOrigin(... | 2026-03-18T22:26:41 |
mrdoob/three.js | 950578f359c319cc8baf9aa3fc1c8ed1f811e4ec | 4afd908854ab194ef2810f3dbefc2820ff081441 | Fix typo and link in Installation manual (#32972) | [
{
"path": "manual/en/installation.html",
"patch": "@@ -85,7 +85,7 @@ <h3>Development</h3>\n \n <ol>\n <li>\n- Install [link:https://nodejs.org/ Node.js]. We'll need it to load manage dependencies and to run our build tool.\n+ Install [link:https://nodejs.org/ ... | 2026-02-09T08:44:35 |
golang/go | db6661a2fd321d4af14efc48492144f86bb50c93 | af4c316c28d2dad63851e7384a7aa198ee729aee | net/http: support passing Server Shutdown context to HTTP/3 implementations
Currently, when Server.Shutdown is called with a given context, an
HTTP/3 server implementation does not have access to said context. This
forces HTTP/3 server implementations to guess a reasonable fixed timeout
when attempting to gracefully s... | [
{
"path": "src/net/http/server.go",
"patch": "@@ -3121,6 +3121,7 @@ type Server struct {\n \tactiveConn map[*conn]struct{}\n \tonShutdown []func()\n \th2 *http2Server\n+\th3 *http3ServerHandler\n \n \tlistenerGroup sync.WaitGroup\n }\n@@ -3188,6 +3189,9 @@ func (s *Server) Shutdown(ctx conte... | 2026-03-31T02:24:12 |
tensorflow/tensorflow | e6f2c70433d011941f01fa2718b47ef1d86dc223 | a88ebff317f6c76f989fa7868f324f38d568ca07 | Roll-forward Migrate XLA GPU emitters and HWIR to use SymbolicMap.
Failing tests were fixed in (cl/892275092). Tests are passing now.
Original message:
Partial migration of IndexingMap::GetAffineMap. Still some users are there to be migrated, but I do not want to make a giant CL.
The changes include:
- Updating call... | [
{
"path": "third_party/xla/xla/backends/gpu/codegen/emitters/BUILD",
"patch": "@@ -240,6 +240,7 @@ cc_library(\n \"//xla/codegen/emitters:type_util\",\n \"//xla/codegen/emitters:utils\",\n \"//xla/hlo/analysis:indexing_analysis\",\n+ \"//xla/hlo/analysis:symbolic_map\",\n ... | 2026-04-02T09:32:01 |
kubernetes/kubernetes | c9e18abca5e3efc7b9f3410e2dad983625dfd926 | e7a3b09a0366f348f0e090fad656ffef2f8b8260 | Fix union validation ratcheting when oldObj is nil
When oldObj is nil (e.g. new map entry added during update), union
ratcheting incorrectly treats nil old and empty new as unchanged
membership, skipping validation entirely. Fix by checking
reflect.ValueOf(oldObj).IsNil() and disabling ratcheting when
oldObj is nil, s... | [
{
"path": "staging/src/k8s.io/apimachinery/pkg/api/validate/union.go",
"patch": "@@ -19,6 +19,7 @@ package validate\n import (\n \t\"context\"\n \t\"fmt\"\n+\t\"reflect\"\n \t\"strings\"\n \n \t\"k8s.io/apimachinery/pkg/api/operation\"\n@@ -106,9 +107,10 @@ func DiscriminatedUnion[T any, D ~string](_ contex... | 2026-03-18T22:25:32 |
denoland/deno | 2cc7630031a7edfbaf87c65f5966f37f06d028a3 | fd3da5a8e5c7c0c309108cf6d1f17b0c5fd7aaa0 | chore: add lint plugin to track Deno.* API usage in node polyfills (#32964)
Supersedes #31598.
## Summary
- Add a Deno lint plugin
(`tools/lint_plugins/no_deno_api_in_polyfills.ts`) that flags `Deno.*`
API usage in `ext/node/polyfills`
- Track expected violation counts per file in `EXPECTED_VIOLATIONS` --
any mismat... | [
{
"path": "tools/lint.js",
"patch": "@@ -37,6 +37,7 @@ if (rs) {\n if (js) {\n promises.push(dlint());\n promises.push(dlintPreferPrimordials());\n+ promises.push(lintNodePolyfillDenoApis());\n promises.push(ensureCiYmlUpToDate());\n promises.push(ensureNoUnusedOutFiles());\n promises.push(ensure... | 2026-03-25T16:31:24 |
mrdoob/three.js | 55358d6073325a4e2a825fcd53bd1c36ff6d7ee5 | 8d547cdb02b541a0db50a02f5ec53e6d63f80887 | TSL: Fix `instancedArray()` `bufferCount` property (#32977) | [
{
"path": "src/nodes/accessors/Arrays.js",
"patch": "@@ -61,7 +61,7 @@ export const instancedArray = ( count, type = 'float' ) => {\n \t}\n \n \tconst buffer = new StorageInstancedBufferAttribute( count, itemSize, typedArray );\n-\tconst node = storage( buffer, type, count );\n+\tconst node = storage( buffe... | 2026-02-08T21:08:37 |
swiftlang/swift | 7dfcd7c31f55e8ae768bb15082548061566da475 | aa649de3ca776247b23a9b70c38e85a77a6addf0 | [Concurrency] SE-0466: Refactor implementation of isolation inference
This change fixes the implementation of the default `MainActor` inference
rules for types, extensions and their members to better align with the
proposal.
Isolation inference is suppressed for a type that:
- is an actor; or
- has isolation othe... | [
{
"path": "lib/Sema/TypeCheckConcurrency.cpp",
"patch": "@@ -6097,70 +6097,90 @@ computeDefaultInferredActorIsolation(ValueDecl *value) {\n if (isa<AssociatedTypeDecl>(value))\n return {};\n \n+ // Opaque types cannot have custom isolation, they are tied to\n+ // their parent declara... | 2026-03-25T22:03:53 |
golang/go | af4c316c28d2dad63851e7384a7aa198ee729aee | 1f8aff4386ca8be6ae9b9553205d113884c4a8ee | image/jpeg: reject RGB and non-standard chroma subsampling
This fixes a possible panic introduced a few months ago by "image/jpeg:
add support for non-standard chroma subsampling ratios" (CL 738280).
Fixes #78368
Change-Id: I1f181582b7dc1e2955e3ec26c3aa24bc0f4159df
Reviewed-on: https://go-review.googlesource.com/c/g... | [
{
"path": "src/image/jpeg/reader.go",
"patch": "@@ -755,7 +755,27 @@ func (d *decoder) isRGB() bool {\n }\n \n func (d *decoder) convertToRGB() (image.Image, error) {\n-\tcScale := d.comp[0].h / d.comp[1].h\n+\t// Historically, we only supported 4:4:4, 4:4:0, 4:2:2, 4:2:0, 4:1:1 or\n+\t// 4:1:0 chroma subsa... | 2026-03-31T09:09:53 |
tensorflow/tensorflow | b608e9b38c7d399a12e4560785db0c79a0a84567 | f19ff477be18ae74d0cd352fe1cdeac76e9f3ec4 | PR #39843: Bump jwalton/gh-find-current-pr from 1.3.3 to 1.3.5
Imported from GitHub PR https://github.com/openxla/xla/pull/39843
Bumps [jwalton/gh-find-current-pr](https://github.com/jwalton/gh-find-current-pr) from 1.3.3 to 1.3.5.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github... | [
{
"path": "third_party/xla/.github/workflows/benchmark_postsubmit.yml",
"patch": "@@ -101,7 +101,7 @@ jobs:\n GITHUB_EVENT_PULL_REQUEST_HEAD_REF: ${{ github.event.pull_request.head.ref }}\n GITHUB_EVENT_PULL_REQUEST_BASE_REF: ${{ github.event.pull_request.base.ref }}\n # Find the c... | 2026-04-02T09:13:58 |
denoland/deno | fd3da5a8e5c7c0c309108cf6d1f17b0c5fd7aaa0 | bf581bc7e3f97e4a78de9ea5c294a9eb1e7656e6 | perf(ops): replace per-op generated slow metrics wrappers with shared dispatch (#32889)
## Summary
- Replace N per-op generated `v8_fn_ptr_metrics` functions with a single
shared `slow_metrics_dispatch` wrapper in `deno_core`
- Add `slow_fn_impl: SlowFnImplRef` field to `OpDecl` storing a function
pointer to the op's... | [
{
"path": "libs/core/extensions.rs",
"patch": "@@ -158,6 +158,15 @@ impl ExtensionFileSource {\n }\n \n pub type OpFnRef = v8::FunctionCallback;\n+/// Function pointer type for the slow op implementation that returns a status code.\n+///\n+/// Status codes:\n+/// - `0`: op completed synchronously without er... | 2026-03-25T16:30:26 |
mrdoob/three.js | 8d547cdb02b541a0db50a02f5ec53e6d63f80887 | 585b578fb735485a95b651ff9d9e001601d3090f | Utils: Fix loading of sites without .html extension. (#32970) | [
{
"path": "utils/server.js",
"patch": "@@ -124,9 +124,17 @@ ${items}\n \n \t\tif ( ! existsSync( filePath ) ) {\n \n-\t\t\tres.writeHead( 404 );\n-\t\t\tres.end( 'File not found' );\n-\t\t\treturn;\n+\t\t\tif ( existsSync( filePath + '.html' ) ) {\n+\n+\t\t\t\tfilePath += '.html';\n+\n+\t\t\t} else {\n+\n+\... | 2026-02-08T09:53:01 |
golang/go | 1f8aff4386ca8be6ae9b9553205d113884c4a8ee | b526b2d49b39a116cf654551f7f65c965144b096 | simd/archsimd: mark pa* unsafe helpers as nocheckptr
Despite the cast from smaller to bigger slice, the elements after the
input slice length are not actually read. Thus they should have
nocheckptr annotation to make checkptr happy.
Fixes #78413
Change-Id: I3e27eab8a69b37bb11632b130a87e6625e06e8ac
Reviewed-on: https... | [
{
"path": "src/simd/archsimd/_gen/tmplgen/main.go",
"patch": "@@ -794,6 +794,8 @@ var unsafePATemplate = templateOf(\"unsafe PA helper\", `\n // pa{{.VType}} returns a type-unsafe pointer to array that can\n // only be used with partial load/store operations that only\n // access the known-safe portions of ... | 2026-03-30T15:21:43 |
tensorflow/tensorflow | f19ff477be18ae74d0cd352fe1cdeac76e9f3ec4 | 01aa15c416c49fc4d23396f67556ec47e8003838 | PR #39622: [ROCm] Use BFCAllocator for scratch allocations needed for MIOpen autotuning
Imported from GitHub PR https://github.com/openxla/xla/pull/39622
📝 Summary of Changes
Pass down device_allocator from gpu_compiler into miopen backend instead constructing one when getting algorithms.
🎯 Justification
Allows mi... | [
{
"path": "third_party/xla/xla/backends/gpu/autotuner/BUILD",
"patch": "@@ -1052,12 +1052,12 @@ cc_library(\n \"//xla/service/gpu:gpu_conv_runner\",\n \"//xla/service/gpu:stream_executor_util\",\n \"//xla/stream_executor:device_address\",\n+ \"//xla/stream_executor:device_addr... | 2026-04-02T08:37:13 |
golang/go | b526b2d49b39a116cf654551f7f65c965144b096 | 261d489139b958e3b7b3bf76d1fb23c9bca76142 | net/http/internal/http2: don't reuse ClientRequest streams
The ClientRequest type (unlike http.Request) is not reusable
across RoundTrip attempts because it includes a single-use
clientStream. (It's possible for RoundTrip to return while
some goroutines are still accessing the clientStream.)
Always clone the ClientRe... | [
{
"path": "src/net/http/internal/http2/transport.go",
"patch": "@@ -644,16 +644,16 @@ var (\n \n // shouldRetryRequest is called by RoundTrip when a request fails to get\n // response headers. It is always called with a non-nil error.\n-// It returns either a request to retry (either the same request, or a\... | 2026-03-30T20:55:37 |
swiftlang/swift | 978b55e7fd494ddec4dff51628b05d9f0eb9435a | b866471e8c03512f81ff71abc97729130f035a25 | [test] Limit a crasher test to macOS | [
{
"path": "validation-test/compiler_crashers/DiagnosticEngine-diagnose-d98e8c.swift",
"patch": "@@ -1,5 +1,6 @@\n // {\"aliases\":[\"swift::DiagnosticState::determineBehavior(swift::Diagnostic const&, swift::SourceManager&) const\"],\"kind\":\"typecheck\",\"languageMode\":6,\"original\":\"ede44338\",\"signa... | 2026-03-31T14:27:48 |
denoland/deno | bf581bc7e3f97e4a78de9ea5c294a9eb1e7656e6 | 3229f5ff2fc310312c903e8cb71063fdca5623fd | test: add edge case and worker termination tests for Node-API (#32986)
## Summary
- Add async cleanup hook tests (`napi_add_async_cleanup_hook` /
`napi_remove_async_cleanup_hook`), verifying LIFO ordering on exit and
that removed hooks don't fire
- Add reference double-free safety test (runs in subprocess to avoid
cr... | [
{
"path": "tests/napi/cleanup_hook_async_test.js",
"patch": "@@ -0,0 +1,68 @@\n+// Copyright 2018-2026 the Deno authors. MIT license.\n+\n+// deno-lint-ignore-file no-console\n+\n+import { assertEquals, loadTestLibrary } from \"./common.js\";\n+\n+const lib = loadTestLibrary();\n+\n+if (Deno.args[0] === \"i... | 2026-03-25T16:26:51 |
kubernetes/kubernetes | 0fc32838ffae4e8ee9ccc8a615c52d36157b1ecb | 0eb9650790f92e2cc90b372f7bec430815d9a15e | Fix round-tripping HPAv2 resources via v1 with object metrics | [
{
"path": "pkg/apis/autoscaling/v1/conversion.go",
"patch": "@@ -22,6 +22,7 @@ import (\n \tautoscalingv1 \"k8s.io/api/autoscaling/v1\"\n \n \tv1 \"k8s.io/api/core/v1\"\n+\t\"k8s.io/apimachinery/pkg/api/resource\"\n \t\"k8s.io/apimachinery/pkg/conversion\"\n \t\"k8s.io/kubernetes/pkg/apis/autoscaling\"\n \t... | 2026-03-18T18:40:03 |
tensorflow/tensorflow | 4d7f2638028e820caf86cac14a2ecc57c90e5db7 | 6539afcf5cceeb0dcaf3f96330a285b5f1a894fd | Fix heap-use-after-free in ConstraintPropagator::PropagateConstraintsExact.
The issue was that holding a reference to an element in states_ (an absl::flat_hash_map) was unsafe when subsequent operations on states_ (like operator[]) could trigger a resize and invalidate the reference. Changing the reference to a copy o... | [
{
"path": "third_party/xla/xla/tests/constraint_propagator.cc",
"patch": "@@ -329,8 +329,9 @@ absl::Status ConstraintPropagator::SeedConstraints(\n HloComputation* fused_computation =\n inst->fused_instructions_computation();\n for (int i = 0; i < inst->operand_count(); ++i) {\n- ... | 2026-04-02T00:13:40 |
golang/go | ed3ec75df47ab8e7d6e4a30c445a8ef771382584 | a4b534f5e42fe58d58c0ff0562d76680cedb0466 | go/types, types2: report an error if constant string overflows
Set a limit of 10 GiB for strings obtained via constant string addition.
Fixes #78346.
Change-Id: I35dbdff94f3ed32bf69654f4b3da435dad9f6236
Reviewed-on: https://go-review.googlesource.com/c/go/+/761300
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-proj... | [
{
"path": "src/cmd/compile/internal/types2/const.go",
"patch": "@@ -46,6 +46,14 @@ func (check *Checker) overflow(x *operand, opPos syntax.Pos) {\n \t\t}\n \t\tcheck.errorf(atPos(opPos), InvalidConstVal, \"constant %soverflow\", op)\n \t\tx.val = constant.MakeUnknown()\n+\t\treturn\n+\t}\n+\n+\tconst maxLen... | 2026-03-30T19:27:31 |
denoland/deno | 3229f5ff2fc310312c903e8cb71063fdca5623fd | 357759fe0663c7cd9fc6b62d0ef87a88f48bc918 | test: mark unsupported Node compat tests as ignored (#32956)
## Summary
- Mark disabled node compat tests as ignored with reasons:
- `test-debugger-*` (32 tests): require `node inspect` CLI subcommand
- `test-node-output-*` (6 tests): snapshot output tests depend on exact
Node.js CLI output formatting
- `test-node-... | [
{
"path": "tests/node_compat/config.jsonc",
"patch": "@@ -473,40 +473,120 @@\n \"parallel/test-crypto-verify-failure.js\": {},\n \"parallel/test-crypto-webcrypto-aes-decrypt-tag-too-small.js\": {},\n \"parallel/test-datetime-change-notify.js\": {},\n- // \"parallel/test-debugger-address.mjs\"... | 2026-03-25T16:26:15 |
mrdoob/three.js | 4f28c50058d28e9d4064e84248955d02cb08a04e | e226c917c1c6bf28f739109a4467df2d9e8d7e4e | WebGPURenderer: Fix wireframe rendering for `BatchedMesh`. (#32955) | [
{
"path": "src/renderers/common/Geometries.js",
"patch": "@@ -1,6 +1,5 @@\n import DataMap from './DataMap.js';\n import { AttributeType } from './Constants.js';\n-import { arrayNeedsUint32 } from '../../utils.js';\n \n import { Uint16BufferAttribute, Uint32BufferAttribute } from '../../core/BufferAttribute... | 2026-02-04T16:01:21 |
kubernetes/kubernetes | c859cb3e64ea73a37fe6b37ce8e8cbe7c8e39573 | 757cdd011533566b4947c0c49e764f35bad3dc12 | Add kernel 5.9+ version check for MemoryQoS
The check runs only when MemoryQoS feature gate is enabled and
cgroups v2 is in use. It logs a warning but does not block kubelet
startup, since RHEL/LTS kernels may backport the fix without bumping
the version.
Signed-off-by: Sohan Kunkerkar <sohank2602@gmail.com> | [
{
"path": "cmd/kubelet/app/server.go",
"patch": "@@ -63,6 +63,7 @@ import (\n \tutilruntime \"k8s.io/apimachinery/pkg/util/runtime\"\n \t\"k8s.io/apimachinery/pkg/util/sets\"\n \t\"k8s.io/apimachinery/pkg/util/validation/field\"\n+\tutilversion \"k8s.io/apimachinery/pkg/util/version\"\n \t\"k8s.io/apimachin... | 2026-03-12T03:50:36 |
tensorflow/tensorflow | 4c1ad93a14504de5d278f0778e71bf3738964ca0 | 3d89deb4f81b1560ca18e5339f202a0918f74f61 | Fix dependency issues.
PiperOrigin-RevId: 892972734 | [
{
"path": "tensorflow/core/platform/distribute.bzl",
"patch": "@@ -69,6 +69,15 @@ def distribute_py_test(\n )\n \n if \"notpu\" not in tags and \"no_tpu\" not in tags:\n+ # Extract strict_deps from kwargs to avoid passing it twice when\n+ # test_rule is py_strict_test (which already se... | 2026-04-01T16:34:56 |
golang/go | a4b534f5e42fe58d58c0ff0562d76680cedb0466 | 9c88851d456b462ae3aa5fe8b9d66ea953af48f6 | all: fix some minor issues in the comments
Change-Id: If6c304efac7a46a9718cdc63ded3d98a26a3a831
Reviewed-on: https://go-review.googlesource.com/c/go/+/760700
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Auto-Submit: Robert Griesemer <gri@google.com>
Reviewed-by: Neal Patel ... | [
{
"path": "src/cmd/compile/internal/ir/dump.go",
"patch": "@@ -213,7 +213,7 @@ func DumpNodeHTML(fn *Func, why string, n Node) {\n \tw.WritePhase(why, why)\n }\n \n-// CloseHTMLWriter closes the HTML writer for fn, if one exists.\n+// CloseHTMLWriters closes the HTML writer for fn, if one exists.\n func Clo... | 2026-03-28T08:50:11 |
swiftlang/swift | 7e2a4a12c1346a3f2d6749c2647ce101d54be770 | b866471e8c03512f81ff71abc97729130f035a25 | Revert "Schubfach-based Floating Point debugDescription" | [
{
"path": "stdlib/public/core/CMakeLists.txt",
"patch": "@@ -92,9 +92,7 @@ split_embedded_sources(\n EMBEDDED FlatMap.swift\n EMBEDDED Flatten.swift\n EMBEDDED FloatingPoint.swift\n- EMBEDDED FloatingPointFromString.swift\n EMBEDDED FloatingPointRandom.swift\n- EMBEDDED FloatingPointToString.swift... | 2026-03-31T14:23:58 |
denoland/deno | 357759fe0663c7cd9fc6b62d0ef87a88f48bc918 | c394911f8edc7591de8da65c7b6690bcbc78afc1 | fix(cli): show clean error instead of panic for invalid --unsafely-ignore-certificate-errors value (#32868)
## Summary
- Fixes a panic when a URL (e.g. `https://example.com/`) is passed to
`--unsafely-ignore-certificate-errors`, which only accepts domains and
IPs.
- Changed `unsafely_ignore_certificate_errors_parse` ... | [
{
"path": "cli/args/flags.rs",
"patch": "@@ -1903,7 +1903,7 @@ pub fn flags_from_vec_with_initial_cwd(\n \"types\" => types_parse(&mut flags, &mut m),\n \"uninstall\" => uninstall_parse(&mut flags, &mut m),\n \"update\" => outdated_parse(&mut flags, &mut m, true)?,\n- \"upgrad... | 2026-03-25T16:22:43 |
mrdoob/three.js | 65f616d29eca9b2328cd294d9df4fe6d464aa1e3 | 04961bea57be780b1587a57c64d335b854cff0b2 | ObjectLoader.loadAsync: wrap JSON.parse in try/catch for consistent error handling (#32947) | [
{
"path": "src/loaders/ObjectLoader.js",
"patch": "@@ -170,7 +170,17 @@ class ObjectLoader extends Loader {\n \n \t\tconst text = await loader.loadAsync( url, onProgress );\n \n-\t\tconst json = JSON.parse( text );\n+\t\tlet json;\n+\n+\t\ttry {\n+\n+\t\t\tjson = JSON.parse( text );\n+\n+\t\t} catch ( e ) {... | 2026-02-04T09:53:15 |
golang/go | 9c88851d456b462ae3aa5fe8b9d66ea953af48f6 | 7dbbeea110b8e03afe63f4d6c73e99c29d5030ff | runtime/race: allow TestOutput output in either order
We have only seen the wrappersym case reported in the opposite order in
practice, but since these are intentionally racy, they could
theoretically all occur in the opposite order.
It would be nice to have a bit more structure to these tests so the test
itself coul... | [
{
"path": "src/runtime/race/output_test.go",
"patch": "@@ -119,7 +119,9 @@ func racer() {\n \tstore(xptr, 42)\n \tdonechan <- true\n }\n-`, []string{`==================\n+`, []string{\n+\t// Allow the race output in either order.\n+\t`==================\n WARNING: DATA RACE\n Write at 0x[0-9,a-f]+ by gorout... | 2026-03-27T20:25:58 |
tensorflow/tensorflow | 1d230797ed6a0297289b8facec1ecde05a5931a8 | 7a5986040b4ccea33b3e27744b875aba01f88a36 | [XLA:CPU] Lower Cbrt to Libm call.
The CPU pipeline was missing the pass ConvertMathToLibm. To avoid a lowering
error for Cbrt, a naive conversion pattern was added. This change removes this
naive conversion and adds the ConvertMathToLibm pass.
Tested that the exhaustive tests still work. While there, remove a useless... | [
{
"path": "third_party/xla/xla/backends/cpu/codegen/BUILD",
"patch": "@@ -243,6 +243,7 @@ cc_library(\n \"@llvm-project//mlir:LinalgTransforms\",\n \"@llvm-project//mlir:MathDialect\",\n \"@llvm-project//mlir:MathToLLVM\",\n+ \"@llvm-project//mlir:MathToLibm\",\n \"@ll... | 2026-04-01T16:21:17 |
mrdoob/three.js | 1f2fea769315befd9bdb3f46574e2eeb92c5047a | b1430df4bf24e8120adfd14d520c8d7228dac04d | Fix typo in FileLoader JSDoc: hhttps → https (#32946) | [
{
"path": "src/loaders/FileLoader.js",
"patch": "@@ -43,7 +43,7 @@ class FileLoader extends Loader {\n \n \t\t/**\n \t\t * The expected mime type. Valid values can be found\n-\t\t * [here](hhttps://developer.mozilla.org/en-US/docs/Web/API/DOMParser/parseFromString#mimetype)\n+\t\t * [here](https://developer... | 2026-02-03T20:53:21 |
swiftlang/swift | 641f748eb7a5024b04d6c43336a08e503cbbe143 | 80ba6be95807100318a5f83320f3769eec9aa7f8 | [cxx-interop] Add a test for `Set<std.string>`
This was previously reported as a compiler crash on Linux. It is no longer crashing with a recent compiler.
rdar://165140115 / resolves https://github.com/swiftlang/swift/issues/85619 | [
{
"path": "test/Interop/Cxx/stdlib/use-std-string.swift",
"patch": "@@ -281,6 +281,15 @@ StdStringTestSuite.test(\"std::string as Hashable\") {\n expectNotEqual(h0, h3)\n expectNotEqual(h1, h2)\n expectNotEqual(h2, h3)\n+\n+ var stringSet: Set<std.string> = [\"something\"]\n+ expectEqual(s... | 2026-03-31T14:03:40 |
denoland/deno | 34f7b23923f8846c3e80d20e2cc70c08e6f44737 | 8ae5320b01bb78696e76e2a9602f7a19e87f5af6 | test(napi): add more coverage for advanced features (#32963)
## Summary
- **General utilities** (new): `napi_instanceof`, `napi_get_version`,
`napi_run_script`, `napi_get_node_version`, `napi_get_last_error_info`,
`node_api_get_module_file_name`
- **Error extensions**: `node_api_throw_syntax_error`,
`node_api_create_... | [
{
"path": "tests/integration/napi_tests.rs",
"patch": "@@ -135,3 +135,68 @@ fn napi_wrap_leak_pointers_finalizer_on_shutdown() {\n stdout\n );\n }\n+\n+/// Test napi_fatal_error: calling it should abort the process and log the\n+/// error message to stderr.\n+#[test_util::test]\n+fn napi_fatal_error()... | 2026-03-25T12:30:40 |
golang/go | 7dbbeea110b8e03afe63f4d6c73e99c29d5030ff | dadc8a5cd274a7d70542d36fa1dfbeb112197988 | cmd/go/internal/doc: document that -all and -short cannot be combined
And return an error message. Hopefully we can add support by the end of
the cycle, but for now return an error to avoid confusing users.
For #77191
Change-Id: I8a673a4bdfe640a04ec67b8bee0b5a056a6a6964
Reviewed-on: https://go-review.googlesource.co... | [
{
"path": "src/cmd/go/alldocs.go",
"patch": "@@ -457,7 +457,8 @@\n //\t \t-http\n //\t\t\tServe HTML docs over HTTP.\n //\t\t-short\n-//\t\t\tOne-line representation for each symbol.\n+//\t\t\tOne-line representation for each symbol. Cannot be\n+//\t\t\tcombined with -all.\n //\t\t-src\n //\t\t\tShow the f... | 2026-03-27T19:18:29 |
tensorflow/tensorflow | 4a9ea765254c6c88bf589eea773cbdbe6bdb61d7 | b24dbf572ac0edde49edfbddd06edd9c5d5b85c3 | Fix use-after-free in `SymbolicMap::GetResults()`
These changes address an issue in `SymbolicMap::GetResults()` when being called on temporary objects (rvalues) by explicitly returning a SmallVector inside `const &&` overload.
Before this, calling `GetResults()` on a temporary `SymbolicMap` would return an `llvm::Arr... | [
{
"path": "third_party/xla/xla/hlo/analysis/indexing_map.h",
"patch": "@@ -192,7 +192,10 @@ class IndexingMap {\n }\n \n // Returns the symbolic map.\n- SymbolicMap GetSymbolicMap() const { return symbolic_map_; }\n+ const SymbolicMap& GetSymbolicMap() const& { return symbolic_map_; }\n+ // Return th... | 2026-04-01T15:08:12 |
mrdoob/three.js | ef1a43855d78482e98684aeb14f44a4b924ff451 | f9e33fa65eabb78b3866ea5275b9d8bd668e7887 | Nodes: Fix PMREM cache. (#32941) | [
{
"path": "src/nodes/lighting/EnvironmentNode.js",
"patch": "@@ -9,7 +9,7 @@ import { bentNormalView } from '../accessors/AccessorsUtils.js';\n import { pmremTexture } from '../pmrem/PMREMNode.js';\n import { materialEnvIntensity } from '../accessors/MaterialProperties.js';\n \n-const _envNodeCache = new We... | 2026-02-03T11:31:21 |
denoland/deno | 8ae5320b01bb78696e76e2a9602f7a19e87f5af6 | 29ce03804be3534e6d42eef892499d8a82ce8681 | fix(resolver): fall through to .deno/ when BYONM node_modules version mismatches (#32981)
## Summary
- When resolving `npm:pkg@version` in BYONM mode, the resolver would
find a matching package.json dep via `intersects` (e.g., dep `^1.3.5`
intersects req `1.3.6`) but then resolve the directory by package
**name** onl... | [
{
"path": "libs/resolver/npm/byonm.rs",
"patch": "@@ -160,27 +160,45 @@ impl<TSys: ByonmNpmResolverSys> ByonmNpmResolver<TSys> {\n // now attempt to resolve if it's found in any package.json\n let maybe_pkg_json_and_alias =\n self.resolve_pkg_json_and_alias_for_req(req, referrer)?;\n- match... | 2026-03-25T12:29:52 |
golang/go | 4d1f503396fa30da1e7b841de2f464c8bf8940e0 | 09031d907c720e38cdde6242c763d25c9f985327 | cmd/compile/internal/devirtualize: improve debug logs
Change-Id: Ie8d74d0968c3dfa6fe3454f1d3fdf13d6a6a6944
Reviewed-on: https://go-review.googlesource.com/c/go/+/760162
Auto-Submit: Mateusz Poliwczak <mpoliwczak34@gmail.com>
Reviewed-by: Keith Randall <khr@golang.org>
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com... | [
{
"path": "src/cmd/compile/internal/devirtualize/devirtualize.go",
"patch": "@@ -182,6 +182,17 @@ const concreteTypeDebug = false\n // Returns nil when the concrete type could not be determined, or when there are multiple\n // (different) types assigned to an interface.\n func concreteType(s *State, n ir.No... | 2026-03-27T17:09:23 |
mrdoob/three.js | 70f24f687d72eca78186cd63c88f97c2b0c22703 | ca544b92a994adc14842dd4aa0f9ad15b72cdf1e | NodeMaterialObeserver: Fix detection of replaced attribute/index. (#32933) | [
{
"path": "src/materials/nodes/manager/NodeMaterialObserver.js",
"patch": "@@ -173,6 +173,7 @@ class NodeMaterialObserver {\n \t\t\t\tgeometry: {\n \t\t\t\t\tid: geometry.id,\n \t\t\t\t\tattributes: this.getAttributesData( geometry.attributes ),\n+\t\t\t\t\tindexId: geometry.index ? geometry.index.id : null... | 2026-02-02T09:00:04 |
kubernetes/kubernetes | e8fc7dcfb3ad8046e4cbb1e0b03efd5b2710c9dc | 63bac0c167b118a4c634d59078a1c6788613f853 | validation-gen: move ifEnabled logic to validationStability, document overrides, and fix test comments/coverage
Co-authored-by: Joe Betz <jpbetz@google.com> | [
{
"path": "staging/src/k8s.io/code-generator/cmd/validation-gen/lint_rules.go",
"patch": "@@ -18,6 +18,7 @@ package main\n \n import (\n \t\"fmt\"\n+\t\"path\"\n \t\"strings\"\n \n \t\"k8s.io/code-generator/cmd/validation-gen/validators\"\n@@ -57,21 +58,18 @@ func alphaBetaPrefix() lintRule {\n // checkTagS... | 2026-03-17T07:54:09 |
tensorflow/tensorflow | b24dbf572ac0edde49edfbddd06edd9c5d5b85c3 | 5ac565cca4fbb5910d9b7bf747a0caf2d8ea1c14 | [XLA:GPU] Fix Triton loads dropping the mask and causing OOB with aligned reads that read pass the end of the original shape.
We should also check that we don't access elements out of bounds, not just alignment. See the included MLIR test for an example.
PiperOrigin-RevId: 892934087 | [
{
"path": "third_party/xla/xla/backends/gpu/codegen/triton/BUILD",
"patch": "@@ -95,6 +95,8 @@ cc_library(\n \"//xla:util\",\n \"//xla/backends/gpu/codegen/triton/ir:triton_xla\",\n \"//xla/codegen/emitters/ir:xla\",\n+ \"//xla/hlo/analysis:indexing_analysis\",\n+ \"//x... | 2026-04-01T15:04:15 |
denoland/deno | 29ce03804be3534e6d42eef892499d8a82ce8681 | 2186d72c3068f0beaab1cad662cf7c1c9ebef2f5 | fix(compile): skip Node-to-Deno arg translation in standalone binaries (#32980)
## Summary
- Skip Node.js-to-Deno CLI argument translation in `child_process.spawn`
and
`child_process.fork` when running inside a standalone (compiled) binary
- Fixes an issue where compiled npm CLI tools that relaunch themselves
(e.g.,
... | [
{
"path": "ext/node/polyfills/child_process.ts",
"patch": "@@ -146,37 +146,45 @@ export function fork(\n // Combine execArgv (Node CLI flags), modulePath (script), and args (script args)\n const nodeArgs = [...(execArgv || []), modulePath, ...args].map(String);\n \n- // Use the Rust parser to translate... | 2026-03-25T12:20:15 |
mrdoob/three.js | d887959ff0bc372364fd5994bc23f411e66080ba | 8780c30b96221aae736aac34d15c5cca6a43e39f | WebGPURenderer: Fix `flipY` and cache key when `generateMipmap` (#32922) | [
{
"path": "src/renderers/webgpu/utils/WebGPUTexturePassUtils.js",
"patch": "@@ -49,7 +49,7 @@ fn mainVS(\n \n \tlet p = pos[ vertexIndex ];\n \tlet mult = select( vec2f( 0.5, -0.5 ), vec2f( 0.5, 0.5 ), flipY != 0 );\n-\tVarys.vTex = p * vec2f( 0.5, -0.5 ) + vec2f( 0.5 );\n+\tVarys.vTex = p * mult + vec2f( 0... | 2026-02-01T16:03:04 |
golang/go | 09031d907c720e38cdde6242c763d25c9f985327 | acc2ce075982cea15636f018c421f96105049282 | cmd/compile/internal/devirtualize: use pointer identity for type comparison
Fixes #78404
Change-Id: I6adc1fb42ad6a3acce21333c6819d0796a6a6964
Reviewed-on: https://go-review.googlesource.com/c/go/+/760161
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Keith Randa... | [
{
"path": "src/cmd/compile/internal/devirtualize/devirtualize.go",
"patch": "@@ -293,9 +293,22 @@ func concreteType1(s *State, n ir.Node, seen map[*ir.Name]struct{}) (outT *types\n \t\t\t\tcontinue\n \t\t\t}\n \t\t}\n-\t\tif t == nil || (typ != nil && !types.Identical(typ, t)) {\n-\t\t\treturn nil\n+\t\tif ... | 2026-03-27T17:09:23 |
kubernetes/kubernetes | 63bac0c167b118a4c634d59078a1c6788613f853 | e7a3b09a0366f348f0e090fad656ffef2f8b8260 | validation-gen: allow beta validations in alpha packages without prefixes | [
{
"path": "staging/src/k8s.io/code-generator/cmd/validation-gen/lint_rules.go",
"patch": "@@ -18,6 +18,7 @@ package main\n \n import (\n \t\"fmt\"\n+\t\"strings\"\n \n \t\"k8s.io/code-generator/cmd/validation-gen/validators\"\n \t\"k8s.io/gengo/v2/codetags\"\n@@ -80,31 +81,44 @@ func checkTagStability(tag c... | 2026-03-16T10:02:02 |
tensorflow/tensorflow | 0309590e2b721e2813d57e617b3689a80e80a3ba | d392c7ebee9383b5d9656fecdcf7deb1feba6ff3 | Wrap XNNPack delegate check macros in `do { ... } while(0)`.
This will generate compiler errors when forgetting to add a `;` after these
macro calls.
PiperOrigin-RevId: 892895784 | [
{
"path": "tensorflow/lite/delegates/xnnpack/macros.h",
"patch": "@@ -21,28 +21,32 @@ limitations under the License.\n \n #define XNNPACK_LOG_LIMIT 4048\n \n-#define XNNPACK_ABORT_CHECK(TEST, ...) \\\n- if (!(TEST)) { ... | 2026-04-01T13:28:57 |
mrdoob/three.js | 314a12b55a9cf43ec56ae5f1547641dcb9143c1d | 602617422465b6584d908c1006ef1a407c044afa | Refine eslint config: limited exclusion and lint fixes (#32917) | [
{
"path": "editor/js/libs/app.js",
"patch": "@@ -80,7 +80,7 @@ const APP = {\n \n \t\t\tconst scriptWrapResult = JSON.stringify( scriptWrapResultObj ).replace( /\\\"/g, '' );\n \n-\t\t\tfor ( let uuid in json.scripts ) {\n+\t\t\tfor ( const uuid in json.scripts ) {\n \n \t\t\t\tconst object = scene.getObjec... | 2026-02-01T09:48:05 |
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.