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 |
|---|---|---|---|---|---|
swiftlang/swift | e3e0c87cdd5b7bf4adaceb9f38d03cd73e1afda1 | 7118b1848fda9074d0490e83622c70cd5bc2ae0f | [SILGen] Emit thunk for sync function called as async via override
This change fixes rdar://164087561, #85332 by adding a check to
TypeConverter::checkFunctionForABIDifferences for sync function called
as async to be marked as needing a thunk, since they do not have the
same calling convention. Witnesses don't exhibit... | [
{
"path": "lib/SIL/IR/TypeLowering.cpp",
"patch": "@@ -5250,6 +5250,12 @@ TypeConverter::checkFunctionForABIDifferences(SILModule &M,\n (fnTy1->isAsync() || fnTy2->isAsync()))\n return ABIDifference::NeedsThunk;\n \n+ // A synchronous function requires a thunk to be treated as an asynchronous\n+ ... | 2026-04-07T22:38:11 |
golang/go | f5b77a7e2fa0f7ff346c665974a8eded367b1bc2 | 3985ca0b6264835c049e601900a8072b5d1b13b4 | cmd/compile: fix loopbce overflow check logic
addWillOverflow and subWillOverflow has an implicit assumption that y is
positive, using it outside of addU and subU is really incorrect. This CL
fixes those incorrect usage to use the correct logic in place.
Thanks to Jakub Ciolek for reporting this issue.
Fixes #78333
... | [
{
"path": "src/cmd/compile/internal/ssa/loopbce.go",
"patch": "@@ -235,9 +235,11 @@ nextblock:\n \t\t\t\t\t\t\tif init.AuxInt > v {\n \t\t\t\t\t\t\t\treturn false\n \t\t\t\t\t\t\t}\n+\t\t\t\t\t\t\t// TODO(1.27): investigate passing a smaller-magnitude overflow limit to addU\n+\t\t\t\t\t\t\t// for addWillOve... | 2026-03-06T00:03:45 |
kubernetes/kubernetes | 61cf993c6b0d6fd8f90a689f9674c5fb62c8a089 | 32d6fb17599bbdee67b19097ff7ca2bf33c4fb6e | scheduler: fix race in DRA pending allocation sharing | [
{
"path": "pkg/scheduler/framework/autoscaler_contract/lister_contract_test.go",
"patch": "@@ -148,26 +148,18 @@ func (r *resourceClaimTrackerContract) GatherAllocatedState() (*schedulerapi.All\n \treturn nil, nil\n }\n \n-func (r *resourceClaimTrackerContract) SignalClaimPendingAllocation(_ types.UID, _ *r... | 2026-03-19T13:42:04 |
tensorflow/tensorflow | a3bab998c18739931acc86d5c0bad85a000a4fdb | 33369b6b4234e57a51e52ae2bb54983a15d28fce | [CublasLt] Reenable CublasLt algorithm 3.
Use highest precision in linalg_sharding_test for gemms to fix numerics for complex numbers. Also lower absolute tolerance to 1e-4 instead of 1e-6. QR decomposition uses many gemms and 1e-4 is a reasonable floating point tolerance.
PiperOrigin-RevId: 897093641 | [
{
"path": "third_party/xla/xla/backends/gpu/autotuner/cublaslt.cc",
"patch": "@@ -125,11 +125,6 @@ CublasLtBackend::GetSupportedConfigs(const HloInstruction& instr) {\n std::vector<std::unique_ptr<BackendConfig>> configs;\n configs.reserve(num_algorithms);\n for (int i = 0; i < num_algorithms; ++i) {\... | 2026-04-09T14:06:13 |
mrdoob/three.js | e13523a796b5cd4e4bcbb1fac9db96c410f05fd4 | d0d5c3675fb6d111640afd1ec8fe0542fc5c39bf | Bayer node: fix web worker usage (#33279)
Co-authored-by: Michael Herzog <michael.herzog@human-interactive.org> | [
{
"path": "examples/jsm/tsl/math/Bayer.js",
"patch": "@@ -1,4 +1,4 @@\n-import { TextureLoader } from 'three';\n+import { ImageBitmapLoader, Texture } from 'three';\n import { Fn, int, ivec2, textureLoad, screenUV, screenSize, mod, floor, float, vec3 } from 'three/tsl';\n \n /**\n@@ -25,7 +25,18 @@ export c... | 2026-03-30T09:08:41 |
swiftlang/swift | 10f4d0d99aab50d5eba1487755343a2f84e1488f | 89c77d98488bd7bf183bc87d2ebff562819798f4 | Remove -enable-experimental-feature BorrowMutateAccessors from the standard library
Certain older compilers that recognize BorrowMutateAccessors feature, but do not have BorrowMutateAccessors enabled in production compilers
run into cond_fail errors when compiling the swiftinterface file of the standard library genera... | [
{
"path": "stdlib/public/core/CMakeLists.txt",
"patch": "@@ -347,7 +347,6 @@ list(APPEND swift_stdlib_compile_flags \"-enable-experimental-feature\" \"AllowUnsa\n list(APPEND swift_stdlib_compile_flags \"-enable-experimental-feature\" \"SuppressedAssociatedTypesWithDefaults\")\n list(APPEND swift_stdlib_com... | 2026-04-07T22:07:29 |
denoland/deno | b9434ee387bbbfecef06da2c2d4bc4ce7701da67 | 11db67aaa38dd552925c49d519bbc754fd3104f5 | fix(repl): surface CDP protocol errors and fix race in wait_for_response (#33190)
## Summary
- The REPL's `wait_for_response` silently swallowed CDP error responses
(responses with an `"error"` field instead of `"result"`), converting
them to `null`. This made the `npm_packages` test failure on Windows
ARM64 impossib... | [
{
"path": "cli/tools/repl/session.rs",
"patch": "@@ -260,21 +260,35 @@ impl ReplSessionState {\n }\n \n async fn wait_for_response(&self, msg_id: i32) -> serde_json::Value {\n- if let Some(message_state) = self.0.lock().messages.remove(&msg_id) {\n- let InspectorMessageState::Ready(mut value) = ... | 2026-04-07T06:36:49 |
golang/go | 3985ca0b6264835c049e601900a8072b5d1b13b4 | 4978c2029c3ff66da8f1dfe32ac6770ce1514fe8 | cmd/compile: fix mem access overlap detection
When a no-op interface conversion is wrapped around the rhs of an
assignment, the memory overlap detection logic in the compiler failed to
peel down conversion to see the actual pointer, causing an incorrect
no-overlapping determination.
Thanks to Jakub Ciolek for reporti... | [
{
"path": "src/cmd/compile/internal/ssagen/ssa.go",
"patch": "@@ -1654,6 +1654,16 @@ func (s *state) stmtList(l ir.Nodes) {\n \t}\n }\n \n+func peelConvNop(n ir.Node) ir.Node {\n+\tif n == nil {\n+\t\treturn n\n+\t}\n+\tfor n.Op() == ir.OCONVNOP {\n+\t\tn = n.(*ir.ConvExpr).X\n+\t}\n+\treturn n\n+}\n+\n // ... | 2026-03-12T21:36:33 |
tensorflow/tensorflow | 33369b6b4234e57a51e52ae2bb54983a15d28fce | 2945b8d3d09c7dd18f6c13ee5b7caf22cd466c05 | PR #40173: [XLA:GPU] Command buffer supports partial update-free for trace commands.
Imported from GitHub PR https://github.com/openxla/xla/pull/40173
📝 Summary of Changes
Replaces the boolean flag xla_gpu_enable_command_buffer_va_remapping with a three-value enum CommandBufferUpdateMode in DebugOptions:
- FUL... | [
{
"path": "third_party/xla/xla/backends/gpu/runtime/BUILD",
"patch": "@@ -113,6 +113,7 @@ cc_library(\n deps = [\n \":command_state\",\n \":thunk\",\n+ \"//xla:xla_proto_cc\",\n \"//xla/runtime:resource_use\",\n \"//xla/service:buffer_assignment\",\n \"//xl... | 2026-04-09T14:00:04 |
kubernetes/kubernetes | 72ed617db18d9c52e946cb5a4fe0524551fc49e4 | 0e71d2d28f29514e4e55e5a4f3d0e57436fe1f0b | Flaky test fix for 'should restart failing container when pod restartPolicy is Always' | [
{
"path": "test/e2e_node/container_lifecycle_pod_construction.go",
"patch": "@@ -329,11 +329,15 @@ func parseOutput(ctx context.Context, f *framework.Framework, pod *v1.Pod) conta\n \tvar buf bytes.Buffer\n \tfor _, cs := range statuses {\n \t\tlog, err := e2epod.GetPodLogs(ctx, f.ClientSet, f.Namespace.Nam... | 2026-03-24T16:36:48 |
mrdoob/three.js | 7a77bfe6c45c1fc398b2a57ee8ce4d06ae8352c7 | 82b371fb82bf9b39bc15818d4f66a430c19d5ac1 | Fix: preserve multiview in RenderTarget.copy() (#33285) | [
{
"path": "src/core/RenderTarget.js",
"patch": "@@ -369,6 +369,7 @@ class RenderTarget extends EventDispatcher {\n \t\tif ( source.depthTexture !== null ) this.depthTexture = source.depthTexture.clone();\n \n \t\tthis.samples = source.samples;\n+\t\tthis.multiview = source.multiview;\n \n \t\treturn this;\n... | 2026-03-29T13:50:24 |
denoland/deno | 3ec851496663011690b94a5555d82e56fd8c8bb1 | 00d46fe27611060fd87432010c401bbb3ca55a6e | fix(ext/node): implement uv_ref for native TCP handles (#33174)
## Summary
- Adds `ref()` method to the native libuv TCP class (`uv_ref`), matching
the existing `unref()` (`uv_unref`)
- Updates `TCP.ref()` in `tcp_wrap.ts` to call through to the native
handle instead of being a no-op
- Removes both TODO comments from ... | [
{
"path": "ext/node/ops/libuv_stream.rs",
"patch": "@@ -725,6 +725,18 @@ impl TCP {\n self.handle_data.replace(None);\n }\n \n+ #[fast]\n+ #[rename(\"ref\")]\n+ fn ref_handle(&self) {\n+ let tcp = self.raw();\n+ // SAFETY: tcp handle pointer is valid and initialized\n+ unsafe {\n+ if ... | 2026-04-04T16:14:15 |
golang/go | 4978c2029c3ff66da8f1dfe32ac6770ce1514fe8 | 199c4d1c3c9d509a51f777c81cb17d4b17728097 | crypto/x509: fix wildcard constraint map case sensitivity
When applying excluded constraints to wildcard DNS SANs, the constraint
checking implementation did not normalize the case of the constraint nor
the SAN, which could lead to incorrect constraint checking results. This
change lowercases both the constraint and t... | [
{
"path": "src/crypto/x509/constraints.go",
"patch": "@@ -351,6 +351,7 @@ func newDNSConstraints(l []string, permitted bool) interface{ query(string) (str\n \tif !permitted {\n \t\tparentConstraints := map[string]string{}\n \t\tfor _, name := range nc.constraints.set {\n+\t\t\tname = strings.ToLower(name)\n... | 2026-03-23T17:22:34 |
tensorflow/tensorflow | 6a2f589eb009f72f2c66ccf7f832b4f172134b98 | 5d5708832bd777dc8c2b4bd9a559366a752d43cd | PR #40553: Bump github/codeql-action from 4.32.3 to 4.35.1
Imported from GitHub PR https://github.com/openxla/xla/pull/40553
Bumps [github/codeql-action](https://github.com/github/codeql-action) from 4.32.3 to 4.35.1.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/github/co... | [
{
"path": "third_party/xla/.github/workflows/scorecards-analysis.yml",
"patch": "@@ -67,6 +67,6 @@ jobs:\n # Upload the results to GitHub's code scanning dashboard (optional).\n # Commenting out will disable upload of results to your repo's Code Scanning dashboard\n - name: \"Upload to cod... | 2026-04-09T10:57:05 |
mrdoob/three.js | 2baf31e360d060220548713b3c577a92054bed25 | 065e7ad9ad88479f2472f39dd76b363128b89c32 | UniformsGroup: Fix incorrect index in Vector4 dirty check (#33276)
Co-authored-by: Mridul <iammridul012@gamil.com> | [
{
"path": "src/renderers/common/UniformsGroup.js",
"patch": "@@ -369,7 +369,7 @@ class UniformsGroup extends UniformBuffer {\n \t\tconst offset = uniform.offset;\n \t\tconst type = uniform.getType();\n \n-\t\tif ( a[ offset + 0 ] !== v.x || a[ offset + 1 ] !== v.y || a[ offset + 2 ] !== v.z || a[ offset + 4... | 2026-03-28T22:15:48 |
denoland/deno | 00d46fe27611060fd87432010c401bbb3ca55a6e | ad725eea313df6204d342d84ace4af1b11cc341f | fix(ext/node): remove dead legacy TCP server accept path (#33172)
## Summary
- Removes the legacy `Deno.listen()`/`Deno.Listener.accept()` server
accept path from `TCP` in `tcp_wrap.ts` — since `bind()`/`bind6()`
always set `kUseNativeWrap = true` before `listen()`, this was
unreachable dead code
- Removes `#listenLeg... | [
{
"path": "ext/node/polyfills/internal_binding/tcp_wrap.ts",
"patch": "@@ -50,13 +50,8 @@ import {\n } from \"ext:deno_node/internal_binding/stream_wrap.ts\";\n import { ownerSymbol } from \"ext:deno_node/internal_binding/symbols.ts\";\n import { codeMap } from \"ext:deno_node/internal_binding/uv.ts\";\n-im... | 2026-04-04T15:38:44 |
golang/go | 199c4d1c3c9d509a51f777c81cb17d4b17728097 | d7b6fb44b5f39cb0f551ed7eb62498089b604a88 | html/template: properly track JS template literal brace depth across contexts
Properly track JS template literal brace depth across branches/ranges,
and prevent accidental re-use of escape analysis by including the
brace depth in the stringification/mangling for contexts.
Fixes #78331
Fixes CVE-2026-32289
Change-Id:... | [
{
"path": "src/html/template/context.go",
"patch": "@@ -6,6 +6,7 @@ package template\n \n import (\n \t\"fmt\"\n+\t\"slices\"\n \t\"text/template/parse\"\n )\n \n@@ -37,7 +38,7 @@ func (c context) String() string {\n \tif c.err != nil {\n \t\terr = c.err\n \t}\n-\treturn fmt.Sprintf(\"{%v %v %v %v %v %v %v}... | 2026-03-23T20:34:23 |
mrdoob/three.js | 153f630f910459a2cd8644d1d9bbb3c47116267b | 112ba9b71c29e984e339dd95ab42584b43029940 | Docs: Fix typos in TessellateModifier and LineMaterial (#33272) | [
{
"path": "examples/jsm/lines/LineMaterial.js",
"patch": "@@ -647,7 +647,7 @@ class LineMaterial extends ShaderMaterial {\n \n \t/**\n \t * The size of the viewport, in screen pixels. This must be kept updated to make\n-\t * screen-space rendering accurate.The `LineSegments2.onBeforeRender` callback\n+\t * ... | 2026-03-28T16:51:54 |
tensorflow/tensorflow | 5d5708832bd777dc8c2b4bd9a559366a752d43cd | b1f95b1cd617e9cabfc0b04858102a48d74bce47 | Improve errors when autotuning fails.
PiperOrigin-RevId: 897017903 | [
{
"path": "third_party/xla/xla/backends/autotuner/autotuner.cc",
"patch": "@@ -163,7 +163,8 @@ absl::StatusOr<std::unique_ptr<Autotuner>> Autotuner::Create(\n std::unique_ptr<AutotunerCacheInterface> cache,\n tsl::thread::ThreadPool* thread_pool) {\n if (codegen_backends.empty()) {\n- return ab... | 2026-04-09T10:56:50 |
denoland/deno | 43deeb2cdbbb8687bf6e9136f4809c6ce32fa1ff | fee058926971273db03f1596235c1a51a7c9d628 | fix(ext/node): implement timeout, killSignal, and pid for child_process spawnSync (#32810)
## Summary
- Implements `timeout` and `killSignal` options for
`spawnSync`/`execSync`/`execFileSync`
- Spawns a condvar-based timer thread that kills the child process (and
its process group on Unix) after the deadline, then fla... | [
{
"path": "ext/node/polyfills/internal/child_process.ts",
"patch": "@@ -76,8 +76,10 @@ import {\n kExtraStdio,\n kInputOption,\n kIpc,\n+ kKillSignalOption,\n kNeedsNpmProcessState,\n kSerialization,\n+ kTimeoutOption,\n } from \"ext:deno_process/40_process.js\";\n \n export function mapValues<T... | 2026-04-03T13:01:56 |
mrdoob/three.js | 2389967d30fd493bdef1169a14aad92e54bcbca2 | f0a65ef67e50d3c6ee158d2198b8fe6910484479 | SVGLoader: Fix round stroke joins and caps when `arcDivisions = 1` (#33256)
Co-authored-by: Michael Herzog <michael.herzog@human-interactive.org> | [
{
"path": "examples/jsm/loaders/SVGLoader.js",
"patch": "@@ -3005,7 +3005,7 @@ class SVGLoader extends Loader {\n \n \t\t\t}\n \n-\t\t\taddVertex( tempV2_4, u, v );\n+\t\t\taddVertex( tempV2_3, u, v );\n \t\t\taddVertex( p2, u, v );\n \t\t\taddVertex( center, u, 0.5 );\n ",
"additions": 1,
"deletion... | 2026-03-28T09:21:14 |
golang/go | d7b6fb44b5f39cb0f551ed7eb62498089b604a88 | c1352b7df17574e0f7d3ada9514b36ddac993abb | cmd/compile: preserve dot vars necessary for debuggers in DWARF
This patch fixes a bug introduced in the recent DWARF refactor / cleanup
where `shouldEmitDwarf` was unified and ended up pruning certain dot
prefixed vars that are necessary for debuggers.
Other dot prefixed vars are already pruned in earlier passes, th... | [
{
"path": "src/cmd/compile/internal/dwarfgen/dwarf.go",
"patch": "@@ -675,8 +675,7 @@ func shouldEmitDwarfVar(n *ir.Name) bool {\n \tif n.Sym().Name == \"_\" {\n \t\treturn false\n \t}\n-\tc := n.Sym().Name[0]\n-\tif c == '.' || n.Type().IsUntyped() {\n+\tif n.Type().IsUntyped() {\n \t\treturn false\n \t}\n... | 2026-04-07T19:32:00 |
tensorflow/tensorflow | b1f95b1cd617e9cabfc0b04858102a48d74bce47 | d073c4c925e460e9a7c0e3a86047e2519ef8f4ac | PR #40552: Bump numpy from 2.4.3 to 2.4.4
Imported from GitHub PR https://github.com/openxla/xla/pull/40552
Bumps [numpy](https://github.com/numpy/numpy) from 2.4.3 to 2.4.4.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/numpy/numpy/releases">numpy's releases</a>.</em></p>... | [
{
"path": "third_party/xla/requirements_lock_3_11.txt",
"patch": "@@ -1,76 +1,76 @@\n-numpy==2.4.3 \\\n- --hash=sha256:0200b25c687033316fb39f0ff4e3e690e8957a2c3c8d22499891ec58c37a3eb5 \\\n- --hash=sha256:0448e7f9caefb34b4b7dd2b77f21e8906e5d6f0365ad525f9f4f530b13df2afc \\\n- --hash=sha256:0a195f4216... | 2026-04-09T10:56:22 |
kubernetes/kubernetes | c49126e0310d50ac0f2f6a1f6a96a03e029acb02 | dea9cfa9fe67e588efded0cbf539ddee9a03d461 | Fix flakiness in integration test for TopologyAwareScheduling with Basic Policy | [
{
"path": "test/integration/scheduler/podgroup/topology_aware_scheduling/tas_test.go",
"patch": "@@ -751,17 +751,25 @@ func TestTopologyAwareSchedulingWithBasicPolicy(t *testing.T) {\n \t\t\t\t\tcreatePodGroup: makeBasicPodGroup(\"pg1\", \"rack\"),\n \t\t\t\t},\n \t\t\t\t{\n-\t\t\t\t\tname: \"Create all pod... | 2026-03-23T11:08:40 |
denoland/deno | fee058926971273db03f1596235c1a51a7c9d628 | 607c73fa98f914309afd6105173caf51fba19845 | feat: disable ops and resources sanitizers by default in deno test (#33158)
## Summary
Changes the default for `sanitizeOps` and `sanitizeResources` from
`true` to `false` in `Deno.test()`. This aligns with what most users
expect -- tests no longer fail due to leaked async ops or resources
unless explicitly opted in.... | [
{
"path": "cli/args/flags.rs",
"patch": "@@ -559,6 +559,8 @@ pub struct TestFlags {\n pub filter: Option<String>,\n pub shuffle: Option<u64>,\n pub trace_leaks: bool,\n+ pub sanitize_ops: bool,\n+ pub sanitize_resources: bool,\n pub watch: Option<WatchFlagsWithPaths>,\n pub reporter: TestReporte... | 2026-04-03T13:00:21 |
mrdoob/three.js | 61184846352941d0684167aa343467c9c2a384a2 | b4822a411ab883290e21f9f5251ed40a7815265c | Docs: Fix module links in search. (#33255) | [
{
"path": "utils/docs/template/publish.js",
"patch": "@@ -191,7 +191,7 @@ function buildSearchListForData() {\n \n \t\t\t\t\tconst category = categoryMap[ className ];\n \t\t\t\t\tconst entry = {\n-\t\t\t\t\t\ttitle: item.longname,\n+\t\t\t\t\t\ttitle: item.longname.replace( 'module:', 'module-' ),\n \t\t\t... | 2026-03-27T19:07:22 |
golang/go | 497ec0d4e1763ffd167577cc2ac5fdb82b99ad82 | 6797caf71af755fb0fb1c7be72664619ac79f56f | cmd/go/internal/tool: only forward SIGHUP, SIGINT, SIGQUIT, and SIGTERM
These are the signals that are likely to be sent to go tool by other
programs. This means we won't forward SIGTSTP, SIGTTIN, SIGTTOU. Doing
so was breaking expected behavior in a terminal.
Fixes #76173
Change-Id: I018808e8ecf59e4e111f353968d83b8... | [
{
"path": "src/cmd/go/internal/tool/signal.go",
"patch": "@@ -0,0 +1,14 @@\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+//go:build !plan9 && !js\n+\n+package tool\n+\n+import (\n+\t\"... | 2026-04-06T14:13:32 |
tensorflow/tensorflow | 0167b8ad8ada13277c0d811d9f5aaf0d429daf25 | 45d86b3139006f944d1bacddee56dc529e4cc35b | PR #40531: Fix sort comparison type mismatch causing tf.random.shuffle XLA failure
Imported from GitHub PR https://github.com/openxla/xla/pull/40531
createSortOp was setting TOTALORDER whenever any element type was float, but the sort comparator only ever compares the first element type (the sort key). When shuffling... | [
{
"path": "third_party/xla/xla/mlir_hlo/mhlo/IR/hlo_ops.cc",
"patch": "@@ -7775,13 +7775,12 @@ SortOp createSortOp(PatternRewriter* rewriter, const Location& loc,\n mhlo::SortOp::create(*rewriter, loc, operands, dimension, isStable);\n \n // Use TOTALORDER comparison type instead of the default comp... | 2026-04-09T10:13:46 |
swiftlang/swift | 741209803895a193f4eabd49bd2390e574a2da69 | 0676703b29297f23ea2d1f2b700e2e325816269f | [test] Add some more known crashers | [
{
"path": "validation-test/IDE/crashers/CodeCompletionResultType-calculateTypeRelation-b2ff0d.swift",
"patch": "@@ -0,0 +1,7 @@\n+// {\"kind\":\"complete\",\"original\":\"26aa1d68\",\"signature\":\"swift::ide::CodeCompletionResultType::calculateTypeRelation(swift::ide::ExpectedTypeContext const*, swift::Dec... | 2026-04-07T09:10:05 |
denoland/deno | 607c73fa98f914309afd6105173caf51fba19845 | 6b44f6d6babb98778177bf0738962c764e41fc5f | fix(ext/node): implement TCP.open(fd) (#33155)
## Summary
- Wire `TCP.prototype.open(fd)` to delegate to the existing
`NativeTCP.open()` which calls `uv_tcp_open` in `uv_compat`
- Sets `kUseNativeWrap = true` on success so all subsequent I/O goes
through the native libuv path
- Fix `NativeTCP.open` to return `UV_EBADF... | [
{
"path": "ext/node/ops/libuv_stream.rs",
"patch": "@@ -348,11 +348,14 @@ impl TCP {\n \n #[fast]\n fn open(&self, #[smi] fd: i32) -> i32 {\n- // SAFETY: tcp handle is valid; fd is checked before use\n+ if fd < 0 {\n+ return uv_compat::UV_EBADF;\n+ }\n+ // SAFETY: tcp handle is valid; f... | 2026-04-03T11:29:17 |
mrdoob/three.js | a14d87454682cba3816d13403d5f3ea29b771eb1 | fdd1b45692130de7f221da7525422a9030fc0a69 | Fix missing return in DataTextureLoader catch block (#33243) | [
{
"path": "src/loaders/DataTextureLoader.js",
"patch": "@@ -67,10 +67,11 @@ class DataTextureLoader extends Loader {\n \t\t\t\t} else {\n \n \t\t\t\t\terror( e );\n-\t\t\t\t\treturn;\n \n \t\t\t\t}\n \n+\t\t\t\treturn;\n+\n \t\t\t}\n \n \t\t\tif ( texData.image !== undefined ) {",
"additions": 2,
"d... | 2026-03-25T21:33:16 |
mrdoob/three.js | fdd1b45692130de7f221da7525422a9030fc0a69 | aebac8a9064e1bbfac13b8e0bdafeab5355a8402 | ObjectLoader: Fix log regression. (#33240) | [
{
"path": "src/loaders/ObjectLoader.js",
"patch": "@@ -121,11 +121,11 @@ class ObjectLoader extends Loader {\n \n \t\t\t\tjson = JSON.parse( text );\n \n-\t\t\t} catch ( error ) {\n+\t\t\t} catch ( e ) {\n \n-\t\t\t\tif ( onError !== undefined ) onError( error );\n+\t\t\t\tif ( onError !== undefined ) onErr... | 2026-03-25T18:15:45 |
denoland/deno | 6b44f6d6babb98778177bf0738962c764e41fc5f | f172f70dc07e7ec90eeb8d7e73cbe41694278dab | feat(add/install): default to npm registry for unprefixed packages (#33156)
Before:
```
$ deno install npm:express npm:react
$ deno install --npm express react
$ deno install jsr:@std/async
```
After:
```
$ deno install express react jsr:@std/async
```
---------
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@... | [
{
"path": "cli/args/flags.rs",
"patch": "@@ -6040,7 +6040,9 @@ fn add_parse_inner(\n } else if matches.get_flag(\"jsr\") {\n Some(DefaultRegistry::Jsr)\n } else {\n- None\n+ // Default to npm when no --npm or --jsr flag is provided.\n+ // This allows `deno add express` to work without requi... | 2026-04-03T11:28:31 |
golang/go | 899e473c3b4872a9001ce1df60e6cb575502ebb0 | e186f8d25cfd86ed4c530e319712ae338a165a4e | archive/tar: limit the number of old GNU sparse format entries
We did not set a limit on the maximum size of sparse maps in
the old GNU sparse format. Set a limit based on the cumulative
size of the extension blocks used to encode the map (consistent
with how we limit the sparse map size for other formats).
Add an ad... | [
{
"path": "src/archive/tar/format.go",
"patch": "@@ -147,6 +147,12 @@ const (\n \t// Max length of a special file (PAX header, GNU long name or link).\n \t// This matches the limit used by libarchive.\n \tmaxSpecialFileSize = 1 << 20\n+\n+\t// Maximum number of sparse file entries.\n+\t// We should never ac... | 2026-03-23T20:12:44 |
mrdoob/three.js | d31df14f23f383ded1c92fd643eb149c74ee10a8 | 2f89c1e296f041f5a188df3eadc0f16639d10c2b | Line2NodeMaterial: Fix clone() losing worldUnits, dashed, and linewidth (#33236) | [
{
"path": "src/materials/nodes/Line2NodeMaterial.js",
"patch": "@@ -537,6 +537,33 @@ class Line2NodeMaterial extends NodeMaterial {\n \n \t}\n \n+\t/**\n+\t * Copies the properties of the given material to this instance.\n+\t *\n+\t * @param {Line2NodeMaterial} source - The material to copy.\n+\t * @return ... | 2026-03-25T08:48:18 |
swiftlang/swift | 3695a92b308f098dcfb84bc5214d92ffc2b86dab | c54bffff4422143be524f03dd21a233891b098b1 | [crash-reduce] Increase parallelization of creduce | [
{
"path": "utils/swift-dev-utils/Sources/CrashReduce/ProcessReproducers.swift",
"patch": "@@ -287,9 +287,11 @@ public actor ProcessReproducers {\n }\n groupedRepros[sig, default: []].append(crasher)\n }\n+ log.info(\"found \\(groupedRepros.count) new crasher(s), reducing...\")\n \n+ //... | 2026-04-07T09:10:05 |
tensorflow/tensorflow | bc9b57b92d266c681d8989b7d552334195f38701 | 918e1c119fb2e3ec0e78ee03e135239fa00fe246 | Extract the `CheckedInt` operator+-*/ implementations as friend functions.
Fixes G++ compilation.
PiperOrigin-RevId: 896715274 | [
{
"path": "tensorflow/lite/util.h",
"patch": "@@ -258,176 +258,24 @@ class CheckedInt {\n // Helper constructor for operators.\n CheckedInt(T val, bool overflow) : value_(val), overflow_(overflow) {}\n \n- template <class U>\n- friend class CheckedInt;\n+ template <class V, class U>\n+ friend Checke... | 2026-04-08T21:53:19 |
kubernetes/kubernetes | 93f0ba1add2b93a8ad913828bdae3a53938b67a6 | dd0958fece5c08e7438f4ce4f91678f1555a3b83 | Fix malformed OWNERS entries used by maintainers | [
{
"path": "cmd/preferredimports/OWNERS",
"patch": "@@ -6,5 +6,5 @@ reviewers:\n approvers:\n - dims\n - cblecker\n-emeritus_aprovers:\n+emeritus_approvers:\n - spiffxp",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
"path": "test/instrumentation/OWNERS",
"patch": "... | 2026-03-24T02:34:00 |
golang/go | e186f8d25cfd86ed4c530e319712ae338a165a4e | c3c65602d639e60ed6071fee22979b7e3ece1a30 | all: update to x/tools@f6476fbaabd396b58618b473e4eb71e1f532b495
This just brings in CL 763663 in hopes of fixing the longest builders.
Change-Id: Ib4a24dc214f58e77dfd2999df7ecf5c0dd21d1fc
Reviewed-on: https://go-review.googlesource.com/c/go/+/763770
Reviewed-by: Robert Griesemer <gri@google.com>
LUCI-TryBot-Result: G... | [
{
"path": "src/cmd/go.mod",
"patch": "@@ -11,7 +11,7 @@ require (\n \tgolang.org/x/sys v0.42.1-0.20260320201212-a76ec62d6c53\n \tgolang.org/x/telemetry v0.0.0-20260311193753-579e4da9a98c\n \tgolang.org/x/term v0.39.0\n-\tgolang.org/x/tools v0.43.1-0.20260406190732-b36d1d12a1a7\n+\tgolang.org/x/tools v0.43.1... | 2026-04-07T23:12:41 |
denoland/deno | 4e6eb1e1d53f108898d85384ebb282b4f33a757a | ff775b28644c15915919b0d64cc5010cd3eef87d | fix(ext/node): create net.Socket from file descriptors (#33150)
## Summary
- Implements the `fd` option for `net.Socket()`, matching Node.js
`lib/net.js` behavior
- When `fd` is provided, `_createHandle(fd)` determines handle type via
`guessHandleType`, then `handle.open(fd)` registers the fd for stream
I/O
- Adds `op... | [
{
"path": "ext/node/lib.rs",
"patch": "@@ -207,6 +207,7 @@ deno_core::extension!(deno_node,\n ops::fs::op_node_file_from_fd,\n ops::fs::op_node_register_fd,\n ops::fs::op_node_create_pipe,\n+ ops::fs::op_node_fd_set_blocking,\n ops::fs::op_node_fs_close,\n ops::fs::op_node_fs_read_syn... | 2026-04-03T09:47:13 |
mrdoob/three.js | 33feff9e355cddabc3493533fb4ee9bc09091c6d | a567d3642a5357194accb890ba02c42842b18193 | Inspector: Fix `Tab.isActive` | [
{
"path": "examples/jsm/inspector/ui/Tab.js",
"patch": "@@ -40,7 +40,7 @@ export class Tab extends EventDispatcher {\n \t\tthis.content.id = `${this.id}-content`;\n \t\tthis.content.className = 'profiler-content';\n \n-\t\tthis.isActive = false;\n+\t\tthis._isActive = false;\n \t\tthis.isVisible = true;\n \... | 2026-03-25T06:45:47 |
swiftlang/swift | c54bffff4422143be524f03dd21a233891b098b1 | 95895115faf8277f04f7647cfe70cb39f674a905 | [crash-reduce] Improve assertion signature handling | [
{
"path": "utils/swift-dev-utils/Sources/CrashReduce/Assertion.swift",
"patch": "@@ -16,6 +16,7 @@ import Foundation\n public struct Assertion: Hashable, Sendable {\n public var fullMessage: String\n public var message: String\n+ public var function: String?\n \n private static func matchAssert(_ str... | 2026-04-07T09:10:05 |
golang/go | c3c65602d639e60ed6071fee22979b7e3ece1a30 | 524b8606a8e4e8f6e37f77c7d601fdf44497b928 | internal/syscall/unix: properly support AT_SYMLINK_NOFOLLOW on Linux
On Linux, the fchmodat syscall silently ignores the AT_SYMLINK_NOFOLLOW flag.
Change the Linux Fchmodat function to use the fstatat2 syscall
(added in Linux 6.6) when available.
When fstatat2 is not available, use the same workaround as
GNU libc an... | [
{
"path": "src/cmd/dist/buildtool.go",
"patch": "@@ -92,6 +92,7 @@ var bootstrapDirs = []string{\n \t\"internal/race\",\n \t\"internal/runtime/gc\",\n \t\"internal/saferio\",\n+\t\"internal/strconv\",\n \t\"internal/syscall/unix\",\n \t\"internal/types/errors\",\n \t\"internal/unsafeheader\",",
"additio... | 2026-03-23T17:34:50 |
tensorflow/tensorflow | d09053aaf1dfa38ebe862695dcd8e2310e9a4b75 | 5bd1b3d5dbd8f4d1c310dd15ca6a1139581b9a26 | Allow Gather, SegmentReduction, and FillEmptyRows GPU Ops to handle `int64` work element counts safely; fix unsafe DivUp arithmetic.
* Introduces `GpuLaunchConfig64` and updates `GetGpuLaunchConfig64` to return `absl::StatusOr<GpuLaunchConfig64>` to safely handle 64-bit work element counts and propagate errors without... | [
{
"path": "tensorflow/core/kernels/depthwise_conv_op_gpu.h",
"patch": "@@ -37,7 +37,6 @@ limitations under the License.\n #endif\n \n namespace tensorflow {\n-using Eigen::numext::div_ceil;\n \n namespace detail {\n template <typename T>\n@@ -641,7 +640,7 @@ Status LaunchDepthwiseConv2dGPUSmall(OpKernelCont... | 2026-04-08T20:37:48 |
denoland/deno | ff775b28644c15915919b0d64cc5010cd3eef87d | d198cda44b7fddb56d892a8ef2349d1630adfa37 | fix(ext/node): support numeric FDs in child_process stdio array (#33140)
## Summary
Now that `fs.openSync` returns real OS file descriptors (#33039),
numeric values in child_process stdio arrays should be treated as raw fds rather
than Deno resource IDs. This re-lands the functionality from #32959
(reverted in #33017... | [
{
"path": "ext/io/lib.rs",
"patch": "@@ -262,31 +262,50 @@ deno_core::extension!(deno_io,\n ));\n assert_eq!(rid, 0, \"stdin must have ResourceId 0\");\n \n- let rid = t.add(FileResource::new(\n- Rc::new(match stdio.stdout.pipe {\n- StdioPipeInner::Inherit => StdFileResource... | 2026-04-03T04:23:50 |
mrdoob/three.js | 207740de065cf99a55930b2d24fe98206c15a392 | 48301423ccfa37e09540972a71e7d6bff922103f | WGSLNodeBuilder: Fix varying indexes (#33229) | [
{
"path": "src/renderers/webgpu/nodes/WGSLNodeBuilder.js",
"patch": "@@ -1807,13 +1807,15 @@ ${ flowData.code }\n \t\t\tconst varyings = this.varyings;\n \t\t\tconst vars = this.vars[ shaderStage ];\n \n+\t\t\tlet varyingIndex = 0;\n+\n \t\t\tfor ( let index = 0; index < varyings.length; index ++ ) {\n \n \... | 2026-03-23T22:39:04 |
golang/go | a2cc178edf7908a2686089bdc35d1e6d134c7dd1 | 230d1407b04da5d65505415b1a7b4f6d70c75086 | go/types: Hasher, a hash function for Types
This CL defines a hash function for Types using the
maphash.Hasher API proposed in #70471 (CL 657296)
that is consistent with the equivalence relation
of types.Identical.
It also defines a variant, HasherIgnoreTypes, that is
consistent with types.IdenticalIgnoreTags. (The a... | [
{
"path": "api/next/69420.txt",
"patch": "@@ -0,0 +1,6 @@\n+pkg go/types, method (Hasher) Equal(Type, Type) bool #69420\n+pkg go/types, method (Hasher) Hash(*maphash.Hash, Type) #69420\n+pkg go/types, method (HasherIgnoreTags) Equal(Type, Type) bool #69420\n+pkg go/types, method (HasherIgnoreTags) Hash(*map... | 2025-03-12T22:13:04 |
mrdoob/three.js | 48301423ccfa37e09540972a71e7d6bff922103f | 6591d2536ea3db6d829c46389785024ec599502b | Update NodeManager.js
Fix typo. | [
{
"path": "src/renderers/common/nodes/NodeManager.js",
"patch": "@@ -952,7 +952,7 @@ class NodeManager extends DataMap {\n \n \t/**\n \t * Triggers the call of `update()` methods\n-\t * for all nodes of the given compute node.\n+\t * for all nodes of the given render object.\n \t *\n \t * @param {RenderObje... | 2026-03-23T20:24:31 |
tensorflow/tensorflow | 584d207fd515a9a756b039113849ac237ea0ead1 | d1f33e5d8a3df4be76b3bfcf550e80bc7fbc9eca | Allow Gather, SegmentReduction, and FillEmptyRows GPU Ops to handle `int64` work element counts safely; fix unsafe DivUp arithmetic.
* Introduces `GpuLaunchConfig64` and updates `GetGpuLaunchConfig64` to return `absl::StatusOr<GpuLaunchConfig64>` to safely handle 64-bit work element counts and propagate errors without... | [
{
"path": "tensorflow/core/kernels/depthwise_conv_op_gpu.h",
"patch": "@@ -37,6 +37,7 @@ limitations under the License.\n #endif\n \n namespace tensorflow {\n+using Eigen::numext::div_ceil;\n \n namespace detail {\n template <typename T>\n@@ -640,7 +641,7 @@ Status LaunchDepthwiseConv2dGPUSmall(OpKernelCont... | 2026-04-08T19:05:15 |
kubernetes/kubernetes | 2e60e1407b79b3216b0e882f81957b226afda9b8 | 0e71d2d28f29514e4e55e5a4f3d0e57436fe1f0b | Fix user namespace test cleanup race | [
{
"path": "test/e2e_node/util.go",
"patch": "@@ -87,6 +87,7 @@ const (\n \t// state files\n \tcpuManagerStateFile = \"/var/lib/kubelet/cpu_manager_state\"\n \tmemoryManagerStateFile = \"/var/lib/kubelet/memory_manager_state\"\n+\tusernsStateFiles = \"/var/lib/kubelet/pods/*/userns\"\n )\n \n var ("... | 2026-03-22T06:23:40 |
denoland/deno | d198cda44b7fddb56d892a8ef2349d1630adfa37 | 6383876893b0cfe7e6622259e9207a175fa24043 | fix(ext/node): rewrite Pipe.open(fd) to use raw fd ops (#33136)
## Summary
Rewrites `Pipe.open(fd)` to use the `NodeFsState` fd-based I/O
infrastructure (from #33039) instead of creating Deno resources.
- **New op: `op_node_register_fd`** -- registers a raw OS fd in
`NodeFsState` so existing fd-based read/write/clos... | [
{
"path": "ext/net/lib.rs",
"patch": "@@ -102,8 +102,6 @@ deno_core::extension!(deno_net,\n ops_unix::op_node_unstable_net_listen_unixpacket,\n ops_unix::op_net_recv_unixpacket,\n ops_unix::op_net_send_unixpacket,\n- ops_unix::op_net_unix_stream_from_fd,\n-\n ops_win_pipe::op_pipe_open,\n... | 2026-04-02T18:32:10 |
golang/go | e3b3216242691ab0e02164458bda98346ce36adf | 6f662188c2e2640712af74a01f589ee31ba0282f | math/big: Binomial should return 0 if k < 0
Fixes #78541
Change-Id: I73ba10b6d34f9f189b5bdd356d6325d5a4a6985f
GitHub-Last-Rev: 0594d99f55c51f2f164d17a61c4eb1b2bbb8462e
GitHub-Pull-Request: golang/go#78542
Reviewed-on: https://go-review.googlesource.com/c/go/+/763000
Auto-Submit: Robert Griesemer <gri@google.com>
Revi... | [
{
"path": "src/math/big/int.go",
"patch": "@@ -227,7 +227,7 @@ func (z *Int) MulRange(a, b int64) *Int {\n \n // Binomial sets z to the binomial coefficient C(n, k) and returns z.\n func (z *Int) Binomial(n, k int64) *Int {\n-\tif k > n {\n+\tif k > n || k < 0 {\n \t\treturn z.SetInt64(0)\n \t}\n \t// reduc... | 2026-04-06T10:36:44 |
mrdoob/three.js | aed29ca2fef72a0c9663624f3bccbe27c21a0cc8 | f01bb0837278e4fe0f20f579e350a87114cc2f63 | SVGRenderer: Fix performance regression. (#33220) | [
{
"path": "examples/jsm/renderers/Projector.js",
"patch": "@@ -310,18 +310,18 @@ class Projector {\n \t\t\t\tconst v2 = _vertexPool[ b ];\n \t\t\t\tconst v3 = _vertexPool[ c ];\n \n-\t\t\t\t// Get homogeneous clip space positions (before perspective divide)\n-\t\t\t\t_clipPos1.copy( v1.positionWorld ).apply... | 2026-03-21T09:12:14 |
swiftlang/swift | e9acbe61cae907bd59f606772425706579d1ad38 | 135eb8b0cdfe1c342f3589fd86679b7959f22ff3 | Docs: fix diagnostic-groups.md | [
{
"path": "userdocs/diagnostics/diagnostic-groups.md",
"patch": "@@ -42,6 +42,7 @@ Or upgrade all warnings except deprecated declaration to errors:\n - <doc:clang-declaration-import>\n - <doc:isolated-conformances>\n - <doc:error-in-future-swift-version>\n+- <doc:old-suppressed-associatedtypes>\n - <doc:mod... | 2026-04-06T23:46:34 |
tensorflow/tensorflow | 5f46445d09956b4d3626a63ab2dc246f8511c211 | 43087c300286e9e24287f8336b7f08266b3e808b | Fix asan error in test
Reverts 45e89d30c99547209e197102a271cb4a7bc4e16a
PiperOrigin-RevId: 896611565 | [
{
"path": "tensorflow/core/tfrt/run_handler_thread_pool/BUILD",
"patch": "@@ -84,6 +84,7 @@ tf_cc_test(\n \"//tensorflow/core/kernels:matmul_op\",\n \"@com_google_absl//absl/strings\",\n \"@com_google_absl//absl/synchronization\",\n+ \"@com_google_absl//absl/time\",\n ... | 2026-04-08T18:32:42 |
denoland/deno | 6383876893b0cfe7e6622259e9207a175fa24043 | dba93738662f4b6ad47356095f230f5be76a7908 | fix: linked packages with peer deps failing to cache from lockfile (#33143)
## Summary
- Fix linked npm packages with peer dependencies causing `Failed caching
npm package` error when `deno.lock` is present
- The serialized lockfile key for packages with peer deps includes a
suffix (e.g. `@myorg/shared@1.0.0_zod@4.3.... | [
{
"path": "libs/npm/resolution/snapshot.rs",
"patch": "@@ -965,12 +965,13 @@ pub fn snapshot_from_lockfile(\n let mut root_packages = HashMap::<PackageReq, NpmPackageId>::with_capacity(\n lockfile.content.packages.specifiers.len(),\n );\n- let link_package_ids = params\n+ let link_package_nvs = pa... | 2026-04-02T15:26:37 |
kubernetes/kubernetes | be5285b46fbe26ad41988c3800e38353acad18ae | 0e71d2d28f29514e4e55e5a4f3d0e57436fe1f0b | Fix restartable init container startup race | [
{
"path": "test/e2e_node/container_lifecycle_pod_construction.go",
"patch": "@@ -85,8 +85,8 @@ func ExecCommand(name string, c execCommand) []string {\n \t\tfmt.Fprint(&cmd, sleepCommand(c.StartDelay))\n \t}\n \t// You can check started file to see if the container has started\n-\tfmt.Fprintf(&cmd, \"touch ... | 2026-03-21T22:16:03 |
tensorflow/tensorflow | 4b37ef305f1c6c0cfb90f11406057724df8fc066 | 3d4fb594613ace9e128de4da595bfa7d3f2ba70f | PR #38737: [ROCm] Support hipblaslt group-gemm 5/5
Imported from GitHub PR https://github.com/openxla/xla/pull/38737
**PR 5/5: Extend the autotuner support**
PR 1/5 : https://github.com/openxla/xla/pull/38732
PR 2/5 : https://github.com/openxla/xla/pull/38735
PR 3/5 : https://github.com/openxla/xla/pull/38909
PR 4/5... | [
{
"path": "third_party/xla/xla/backends/autotuner/autotuner.cc",
"patch": "@@ -47,7 +47,9 @@ limitations under the License.\n #include \"xla/backends/autotuner/backends.pb.h\"\n #include \"xla/backends/autotuner/codegen_backend.h\"\n #include \"xla/backends/autotuner/profiler.h\"\n+#include \"xla/hlo/ir/hlo... | 2026-04-08T15:57:34 |
swiftlang/swift | 33bc1be1251d7e069ffabbbc6092a77b8e965d6c | 7118b1848fda9074d0490e83622c70cd5bc2ae0f | Embedded: fix OOM in `swift-frontend` with recursive generics (#88296)
**Explanation**: Provides an error diagnostic that notifies the user that recursive generics are not supported in Embedded Swift. This prevents current OOM behavior in `swift-frontend`.
**Scope**: limited to a rarely used pattern in Embedded Swift
... | [
{
"path": "include/swift/AST/DiagnosticsSema.def",
"patch": "@@ -8861,6 +8861,13 @@ GROUPED_WARNING(dynamic_cast_involving_protocol_in_embedded_swift,\n \"cannot perform a dynamic cast to a type involving %kind0 in Embedded Swift\",\n (const Decl *))\n \n+GROUPED_ERROR(self_r... | 2026-04-06T21:57:00 |
denoland/deno | dba93738662f4b6ad47356095f230f5be76a7908 | 593bb1cf623fa3b10632fa81e8cc7fc3b61c65ba | refactor: remove forked typescript-go infrastructure (#33133)
## Summary
- Remove all code related to the `denoland/typescript-go` fork binary
- `--unstable-tsgo` / `DENO_UNSTABLE_TSGO_LSP` are now no-ops for the
LSP path
- Fork binary is no longer downloaded, cached, or invoked
### Removed (~4,200 lines)
- `cli/ts... | [
{
"path": "cli/factory.rs",
"patch": "@@ -526,20 +526,6 @@ impl CliFactory {\n self.resolver_factory()?.in_npm_package_checker()\n }\n \n- pub async fn tsgo_path(&self) -> Result<Option<&PathBuf>, AnyError> {\n- if self.cli_options()?.unstable_tsgo() {\n- Ok(Some(\n- crate::tsc::ensure... | 2026-04-02T14:04:38 |
golang/go | 30ed7f97faa41413659a871c6ccc10de51b58c41 | da723e15d7492143459c65e4fecf2c17dc0fa1e4 | cmd/go/internal/modload: rename State to Loader
Rename modload.State to modload.Loader. Rename all references to module
loader state. The term "Loader" now refers to the module loader by
default. The package loader was explicitly renamed "packageLoader" in
an earlier change in order to distinguish it from the modul... | [
{
"path": "src/cmd/go/internal/bug/bug.go",
"patch": "@@ -42,17 +42,17 @@ func init() {\n }\n \n func runBug(ctx context.Context, cmd *base.Command, args []string) {\n-\tmoduleLoaderState := modload.NewState()\n+\tmoduleLoader := modload.NewLoader()\n \tif len(args) > 0 {\n \t\tbase.Fatalf(\"go: bug takes n... | 2026-04-07T13:51:06 |
tensorflow/tensorflow | 149c5e31e66bb20f17cf9b7a220cfb34ee8a0244 | 1908dd326529f71bfeca437bd4ff0a44d59aca61 | [XLA:GPU] Fix Split-K rewrite for dots with different batch dimension indices.
The Split-K rewriter now ensures that when a new batch dimension is inserted, it is placed at the same relative index within the batch dimensions list for both the LHS and RHS operands. Previously, the insertion logic could result in differ... | [
{
"path": "third_party/xla/xla/backends/gpu/transforms/BUILD",
"patch": "@@ -3502,7 +3502,6 @@ cc_library(\n hdrs = [\"splitk_rewriter.h\"],\n deps = [\n \"//xla:literal_util\",\n- \"//xla:permutation_util\",\n \"//xla:shape_util\",\n \"//xla:util\",\n \"//xla:... | 2026-04-08T14:38:18 |
swiftlang/swift | 135eb8b0cdfe1c342f3589fd86679b7959f22ff3 | 67b099aeb88fb813ae53cbe25975458979540354 | Docs: fix URL for SE-503 | [
{
"path": "userdocs/diagnostics/old-suppressed-associatedtypes.md",
"patch": "@@ -1,14 +1,14 @@\n # Migrating away from experimental suppressed associated types (OldSuppressedAssociatedTypes)\n \n-[SE-503](https://github.com/swiftlang/swift-evolution/blob/main/proposals/503-suppressed-associated-types.md) \... | 2026-04-06T20:50:43 |
denoland/deno | 318b04c777318c5201cc829ee9c598e33533e36a | fa5d0a4bd36b8160ca6fc66cde79dda654d61920 | fix: update release template workflow URLs to .generated.yml (#33116) | [
{
"path": "tools/release/prerelease_doc_template.md",
"patch": "@@ -33,7 +33,7 @@ Release checklist: <LINK TO THIS FORKED GIST GOES HERE>\n ### Phase 1: Bumping versions\n \n - [ ] Go to the \"version_bump\" workflow in the CLI repo's actions:\n- https://github.com/denoland/deno/actions/workflows/versi... | 2026-04-01T20:25:58 |
mrdoob/three.js | ca7895c141bd593d45d076643c5feeab3e23e779 | 1e292ced576d306f905269050b92eacf057f57a8 | EXRLoader: Fix channel rule matching. (#33216) | [
{
"path": "examples/jsm/loaders/EXRLoader.js",
"patch": "@@ -1826,11 +1826,14 @@ class EXRLoader extends DataTextureLoader {\n \n \t\t\t\tconst cd = channelData[ offset ];\n \n+\t\t\t\tconst dotIndex = cd.name.lastIndexOf( '.' );\n+\t\t\t\tconst suffix = dotIndex >= 0 ? cd.name.substring( dotIndex + 1 ) : c... | 2026-03-19T14:37:38 |
golang/go | da723e15d7492143459c65e4fecf2c17dc0fa1e4 | 7394184e4ecf7cd1e938b80434f057caeb5ffa58 | crypto/tls: avoid atLeastReader and associated allocations.
Go 1.21 introduced bytes.Buffer.AvailableBuffer. This mechanism lets us
write directly into a Buffer's backing memory while also implementing
custom logic without going through interfaces.
atLeastReader caused an allocation on every read. On workloads with v... | [
{
"path": "src/crypto/tls/conn.go",
"patch": "@@ -800,29 +800,6 @@ func (c *Conn) retryReadRecord(expectChangeCipherSpec bool) error {\n \treturn c.readRecordOrCCS(expectChangeCipherSpec)\n }\n \n-// atLeastReader reads from R, stopping with EOF once at least N bytes have been\n-// read. It is different fro... | 2026-01-25T14:42:26 |
tensorflow/tensorflow | 9ad4ef78f3de1f399e0b33a3e49a9748343eb43d | 4a711ab7700d988974fcec3c9104c766df2bb3e0 | Fix bug in `TransposeSharding` util `HloShardingV3` implementation
PiperOrigin-RevId: 896469953 | [
{
"path": "third_party/xla/xla/hlo/utils/hlo_sharding_util.cc",
"patch": "@@ -1064,8 +1064,8 @@ HloSharding TransposeSharding(const HloSharding& sharding,\n std::vector<NamedSharding::DimensionSharding> transposed_dim_shardings(\n sharding.num_dimensions());\n for (int64_t i = 0; i < dimensi... | 2026-04-08T13:43:08 |
mrdoob/three.js | 7716cd9415b12c9f29596ca838a7a99814b82787 | bfe332d9ee7016ab36dfb79826d421d4487058f4 | MeshPhysicalMaterial: Fix Anisotropic regression. (#33205) | [
{
"path": "src/nodes/functions/BSDF/V_GGX_SmithCorrelated_Anisotropic.js",
"patch": "@@ -1,4 +1,5 @@\n import { div } from '../../math/OperatorNode.js';\n+import { EPSILON } from '../../math/MathNode.js';\n import { Fn, vec3 } from '../../tsl/TSLBase.js';\n \n // https://google.github.io/filament/Filament.m... | 2026-03-18T12:46:16 |
kubernetes/kubernetes | b93ba52b9cd76063ff18fa65ccdf5bfb45526fa9 | 0e71d2d28f29514e4e55e5a4f3d0e57436fe1f0b | cri-client: use passthrough resolver for socket endpoints
gRPC defaults to the DNS resolver for bare targets passed to
NewClient. For CRI socket endpoints, GetAddressAndDialer returns a
socket path plus a custom dialer, but handing the bare path to
grpc.NewClient still lets gRPC resolve the target first.
That breaks ... | [
{
"path": "staging/src/k8s.io/cri-client/pkg/connection_target.go",
"patch": "@@ -0,0 +1,28 @@\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 Lic... | 2026-03-22T08:07:57 |
denoland/deno | fa5d0a4bd36b8160ca6fc66cde79dda654d61920 | 2ec084503f404893fefce2598588a195666e7db1 | refactor(ext/node): rework stream wrap infrastructure for reentrant safety (#33100)
## Summary
Extracts the foundational stream infrastructure changes from #32819
(node:tls rewrite) so they can be reviewed and landed independently.
This reduces #32819's diff by ~1,000 lines and lets the TLS-specific
changes build on ... | [
{
"path": "ext/node/ops/handle_wrap.rs",
"patch": "@@ -15,6 +15,69 @@ use deno_core::uv_compat;\n use deno_core::uv_compat::uv_handle_t;\n use deno_core::v8;\n \n+// ---------------------------------------------------------------------------\n+// OwnedPtr — a raw-pointer wrapper that owns heap memory withou... | 2026-04-01T20:12:35 |
golang/go | 7394184e4ecf7cd1e938b80434f057caeb5ffa58 | f48684c59cf9dce53468e4ae610d5e90739602b5 | crypto/ed25519: use FIPS 140-3 GenerateKey and enforce fips140=only
Fixes #77594
Change-Id: I2685931ec37d9beb99de2e0398ab6f456a6a6964
Reviewed-on: https://go-review.googlesource.com/c/go/+/745800
Auto-Submit: Filippo Valsorda <filippo@golang.org>
Reviewed-by: Daniel McCarney <daniel@binaryparadox.net>
Reviewed-by: Ju... | [
{
"path": "src/crypto/ed25519/ed25519.go",
"patch": "@@ -160,6 +160,19 @@ func GenerateKey(random io.Reader) (PublicKey, PrivateKey, error) {\n \t\t}\n \t}\n \n+\tif fips140only.Enforced() && !fips140only.ApprovedRandomReader(random) {\n+\t\treturn nil, nil, errors.New(\"crypto/ed25519: only crypto/rand.Rea... | 2026-02-15T15:02:33 |
tensorflow/tensorflow | 4a711ab7700d988974fcec3c9104c766df2bb3e0 | 4fa53a7ad79a9aa5de313eb9a584ee433d9bc544 | Remove obsolete TODO comments
The removed TODOs referenced to issues that has been solved already. No more blockers to close the bug :)
PiperOrigin-RevId: 896439725 | [
{
"path": "third_party/xla/xla/codegen/emitters/transforms/flatten_tensors.cc",
"patch": "@@ -230,7 +230,6 @@ Value LinearizeIndex(Location loc, ShapedType type, ValueRange indices,\n }\n auto linear_shape =\n ShapeUtil::MakeShape(U8, {ShapeUtil::ElementsIn(byte_shape)});\n- // TODO(b/446856820):... | 2026-04-08T12:26:32 |
mrdoob/three.js | bfe332d9ee7016ab36dfb79826d421d4487058f4 | 21ae3131839e11323b4449c7374e876628b88a38 | PassNode: Fix scissor and viewport setup. (#33204) | [
{
"path": "src/nodes/display/PassNode.js",
"patch": "@@ -886,8 +886,26 @@ class PassNode extends TempNode {\n \n \t\tthis.renderTarget.setSize( effectiveWidth, effectiveHeight );\n \n-\t\tif ( this._scissor !== null ) this.renderTarget.scissor.copy( this._scissor );\n-\t\tif ( this._viewport !== null ) this... | 2026-03-18T10:48:43 |
golang/go | 83d0189f8453841abef37b3262713c7f15ac2274 | 9a1e20beb0240df1f9dcc8e7d4d66de573828309 | cmd/internal/testdir: do not fail fast when running asmcheck
Print each error as they happen, and continue running. This is
helpful if multiple targets fail using -all_codegen.
Change-Id: Ifcb87a834662fbd4766e562ecf3ca278dcdc1af2
Reviewed-on: https://go-review.googlesource.com/c/go/+/761465
Reviewed-by: Dmitri Shural... | [
{
"path": "src/cmd/internal/testdir/testdir_test.go",
"patch": "@@ -696,6 +696,7 @@ func (t test) run() error {\n \t\t// against a set of regexps in comments.\n \t\tops := t.wantedAsmOpcodes(long)\n \t\tself := runtime.GOOS + \"/\" + runtime.GOARCH\n+\t\tvar lastErr error\n \t\tfor _, env := range ops.Envs(... | 2026-03-30T19:16:33 |
denoland/deno | 2ec084503f404893fefce2598588a195666e7db1 | 76dc661e1921b5c0644e1eb2f81f429373d67cd3 | fix(ext/node): return real OS file descriptors from node:fs APIs (#33039)
## Summary
Fixes #32995
Fixes #33117
- **`node:fs` now returns real OS file descriptors** instead of Deno
Resource IDs. `fs.openSync()` returns e.g. fd 21 (a real POSIX fd)
rather than a small internal RID like 3. This fixes `tty.isatty()`
ret... | [
{
"path": "cli/rt/file_system.rs",
"patch": "@@ -1464,6 +1464,34 @@ impl deno_io::fs::File for FileBackedVfsFile {\n fn as_stdio(self: Rc<Self>) -> FsResult<StdStdio> {\n Err(FsError::NotSupported)\n }\n+ fn read_at_sync(\n+ self: Rc<Self>,\n+ buf: &mut [u8],\n+ position: u64,\n+ ) -> FsR... | 2026-04-01T20:11:16 |
tensorflow/tensorflow | 2269b79c55d9b630bf538f63435bde3ec61ffefe | 82dff163080aed5fd95dc09b1ff04e97dd29ccdc | PR #40451: [XLA:GPU][oneAPI][Bug Fix] Allow only default stream priority on SYCL platform
Imported from GitHub PR https://github.com/openxla/xla/pull/40451
This PR is a hot-fix on a breaking change from this commit https://github.com/openxla/xla/commit/5cc532ec06eb7d345d8927426052a0410b452eb7
Currently, oneAPI suppor... | [
{
"path": "third_party/xla/xla/pjrt/BUILD",
"patch": "@@ -272,8 +272,10 @@ cc_library(\n \"//xla/client:local_client\",\n \"//xla/stream_executor:device_address\",\n \"//xla/stream_executor:event\",\n+ \"//xla/stream_executor:platform\",\n \"//xla/stream_executor:strea... | 2026-04-08T11:16:33 |
swiftlang/swift | 78e81786755dbdb7958ffc02c6a6a96117f63be4 | 71de1efe64b526b61c5845bbc98c64b898f3f9bc | Fix infinite recursion in the presence of phi cycles in PartialApplyInst::visitOnStackLifetimeEnds
Use a visited set to avoid infinite recursion when there are phi cycles in the SSA.
rdar://173953876 | [
{
"path": "lib/SIL/IR/SILInstruction.cpp",
"patch": "@@ -2022,15 +2022,14 @@ PartialApplyInst::visitOnStackLifetimeEnds(\n SSAPrunedLiveness liveness(function, &discoveredBlocks);\n liveness.initializeDef(this);\n \n- StackList<SILValue> values(function);\n- values.push_back(this);\n+ ValueWorklist v... | 2026-04-06T17:37:38 |
mrdoob/three.js | 21ae3131839e11323b4449c7374e876628b88a38 | 1639cfb8505b4b1a812ff6e856ff04e8f8b0bdbb | CSMShadowNode: Fix error when disposed multiple times (#33202) | [
{
"path": "examples/jsm/csm/CSMShadowNode.js",
"patch": "@@ -574,8 +574,12 @@ class CSMShadowNode extends ShadowBaseNode {\n \t\t\tconst light = this.lights[ i ];\n \t\t\tconst parent = light.parent;\n \n-\t\t\tparent.remove( light.target );\n-\t\t\tparent.remove( light );\n+\t\t\tif ( parent !== null ) {\n... | 2026-03-18T08:30:06 |
golang/go | 33e66cfb0406b27ce11229a4ebd944c4cb20006f | fe5b750ce9e9443b42b20ed242664950499ffafe | cmd/go: invalidate test cache when -coverpkg dependencies change
When running tests with -cover and -coverpkg, the resulting coverage
profile includes data from all packages specified in -coverpkg, not
just the test package. Previously, the test cache key did not account
for changes in these out-of-band covered packag... | [
{
"path": "src/cmd/go/internal/test/test.go",
"patch": "@@ -1415,9 +1415,10 @@ type runTestActor struct {\n type runCache struct {\n \tdisableCache bool // cache should be disabled for this run\n \n-\tbuf *bytes.Buffer\n-\tid1 cache.ActionID\n-\tid2 cache.ActionID\n+\tbuf *bytes.Buffer\n+\tid1 cache... | 2026-04-06T16:07:24 |
denoland/deno | fab20d06e3ae25617bd16dfa0b5cff739c6fd091 | b4d51dc4d069afeda09acb3b74821c8e2f30e78f | ci: fix start_release workflow (#33113)
Little mistake | [
{
"path": "tools/release/00_start_release.ts",
"patch": "@@ -3,7 +3,7 @@\n \n // deno-lint-ignore-file no-console\n \n-import { $, createOctoKit, increment, semver } from \"./deps.ts\";\n+import { $, createOctoKit, semver } from \"./deps.ts\";\n \n const currentDirPath = $.path(import.meta.dirname!);\n \n@@... | 2026-04-01T08:26:02 |
mrdoob/three.js | 2bc2bd8991bade1600b69c996c15eb1e28e4f079 | 39bdb9b8948df2d5d78ea955475f680e5a5fbd37 | RenderPipeline: Fix sync with `renderer.outputColorSpace` and `renderer.toneMapping` (#33187) | [
{
"path": "src/renderers/common/RenderPipeline.js",
"patch": "@@ -94,6 +94,23 @@ class RenderPipeline {\n \t\t */\n \t\tthis._context = null;\n \n+\t\t/**\n+\t\t * The current tone mapping.\n+\t\t *\n+\t\t * @private\n+\t\t * @type {ToneMapping}\n+\t\t */\n+\t\tthis._toneMapping = renderer.toneMapping;\n+\n... | 2026-03-16T09:12:55 |
swiftlang/swift | 3e08e515307668ad332670d2ddc3f4e3e1f2f9cc | 95895115faf8277f04f7647cfe70cb39f674a905 | utils: give toolchains a unique identifier
We would previously generate the NoAsserts variant without a
discriminator and would cause a collision. Correct the generation of the
identifier to allow SPM to properly select and identify the toolchain.
Remove the `DEFAULT_COMPILER` as there is only a single compiler
selec... | [
{
"path": "utils/build.ps1",
"patch": "@@ -2295,7 +2295,7 @@ function Build-Compilers([Hashtable] $Platform, [string] $Variant) {\n \n $Settings = @{\n FallbackLibrarySearchPaths = @(\"usr/bin\")\n- Identifier = \"${ToolchainIdentifier}\"\n+ Identifier = \"${ToolchainIdentifier}.${Variant}\"\n ... | 2026-04-02T12:18:43 |
tensorflow/tensorflow | 4c4f9a1fcf0396df965f76f9fa1a651bc3b5890e | 24143f6e0c01e1768c289637fa4ac78a09a1a60c | PR #40498: [XLA:GPU] Make Command a subclass of Thunk
Imported from GitHub PR https://github.com/openxla/xla/pull/40498
Command is the command-buffer counterpart of Thunk, sharing the same execution stages (Prepare, Initialize, Execute/Record) and parameter types. This change establishes the inheritance relationship ... | [
{
"path": "third_party/xla/xla/backends/gpu/runtime/BUILD",
"patch": "@@ -125,6 +125,7 @@ cc_library(\n \"@com_google_absl//absl/status:statusor\",\n \"@com_google_absl//absl/strings:string_view\",\n \"@com_google_absl//absl/types:span\",\n+ \"@tsl//tsl/platform:casts\",\n ... | 2026-04-08T10:07:21 |
golang/go | fe5b750ce9e9443b42b20ed242664950499ffafe | a415314c0bdec971ecd503471c804ec0208c6a2b | cmd/go/internal/modload: minor modernization fixes
* Add package comment.
* Make octal literal explicit.
* Simplify single var declaration.
Change-Id: I3841ca538034c75098502b35b1a713a98e936efc
Reviewed-on: https://go-review.googlesource.com/c/go/+/763360
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-account... | [
{
"path": "src/cmd/go/internal/modload/init.go",
"patch": "@@ -2,6 +2,7 @@\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 modload provides module and package loading functionality.\n package modload\n \n import (\n@@ -850,7 +851,7 ... | 2026-04-07T13:30:23 |
mrdoob/three.js | 374209b928b7249a47b5515b1e33ca8906d36a40 | a8ff0aee93fbeaa14a3d0fa67a32bec1e1b4294c | Hdr loader header parse fix (#33174) | [
{
"path": "examples/jsm/loaders/HDRLoader.js",
"patch": "@@ -100,7 +100,7 @@ class HDRLoader extends DataTextureLoader {\n \n \t\t\t\t\ts += chunk; len += chunk.length;\n \t\t\t\t\tp += chunkSize;\n-\t\t\t\t\tchunk += String.fromCharCode.apply( null, new Uint16Array( buffer.subarray( p, p + chunkSize ) ) );... | 2026-03-14T11:02:58 |
kubernetes/kubernetes | 0acd0a446885ee30683eadbf9ea6efe7b04e482d | ef247770b50e7105eb7453c8bfd5279b5a3656ae | cri-client: use atomic.Bool for useStreaming to fix data race
Replace plain bool with sync/atomic.Bool for the useStreaming field
in remoteRuntimeService and remoteImageService to eliminate a data
race when multiple goroutines concurrently read/write the field
during Unimplemented fallback.
🤖 Generated with [Claude ... | [
{
"path": "staging/src/k8s.io/cri-client/pkg/remote_image.go",
"patch": "@@ -21,6 +21,7 @@ import (\n \t\"errors\"\n \t\"fmt\"\n \t\"io\"\n+\t\"sync/atomic\"\n \t\"time\"\n \n \t\"go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc\"\n@@ -46,9 +47,10 @@ type remoteImageService struct... | 2026-03-21T16:11:11 |
denoland/deno | 8422cdefaa95771a8466a4f1b72efe0d6e10e25c | b19a410bbdfa44341a6fd27bd707c9f5ad2db497 | fix(ext/node): fire fs.watch events for immediate writes (#32935) (#32989)
Fixes #32935 | [
{
"path": "ext/node/polyfills/fs.ts",
"patch": "@@ -3034,31 +3034,24 @@ function watch(\n // deno-lint-ignore prefer-primordials\n const watchPath = getValidatedPath(filename).toString();\n \n- let iterator: Deno.FsWatcher;\n- // Start the actual watcher a few msec later to avoid race condition\n- //... | 2026-04-01T06:54:59 |
tensorflow/tensorflow | 24143f6e0c01e1768c289637fa4ac78a09a1a60c | 5c8ff9346455d3a68f573cd31e00532e5f82a797 | PR #40186: [XLA:GPU][oneAPI] Update timestamp mask calculation to support 64-bit kernel timestamps
Imported from GitHub PR https://github.com/openxla/xla/pull/40186
Currently, the timestamp mask calculation supports up to 32-bit kernel timestamps. However, newer Intel GPUs (such as [BMG](https://www.intel.com/content... | [
{
"path": "third_party/xla/xla/stream_executor/sycl/sycl_gpu_runtime.cc",
"patch": "@@ -388,8 +388,18 @@ absl::StatusOr<SyclTimerProperties> SyclGetTimerProperties(int device_ordinal) {\n device_ordinal, \" with return code: \", status));\n }\n uint64_t timer_freq_hz = lz_device_pro... | 2026-04-08T10:01:40 |
swiftlang/swift | 95895115faf8277f04f7647cfe70cb39f674a905 | 2f9445d55e84eec95d3e066299d8f4636a3e5af9 | [Reapply][Concurrency] Reject isolated conformances escaping through async callees (#88151)
Reverts the revert https://github.com/swiftlang/swift/pull/88145
So, reapplies https://github.com/swiftlang/swift/pull/88030 after we are
certain we can land the change.
> This fixes holes in "rule 1" checking of
[SE-470](htt... | [
{
"path": "include/swift/AST/DiagnosticsSema.def",
"patch": "@@ -8999,6 +8999,10 @@ GROUPED_WARNING(isolated_conformance_will_become_nonisolated,IsolatedConformance\n GROUPED_ERROR(isolated_conformance_to_sendable_metatype,IsolatedConformances,none,\n \"cannot form %0 conformance of %1 to SendableMetaty... | 2026-04-06T15:48:20 |
mrdoob/three.js | adfb24b5e627b795b98db5a67014d3378a3d7726 | b431608199690aee90d571bc698d14d12b529b98 | TSL: Fix two issues in `StorageTextureNode` (#33167) | [
{
"path": "src/nodes/accessors/StorageTextureNode.js",
"patch": "@@ -146,19 +146,14 @@ class StorageTextureNode extends TextureNode {\n \t */\n \tgenerate( builder, output ) {\n \n-\t\tlet snippet;\n-\n \t\tif ( this.storeNode !== null ) {\n \n-\t\t\tsnippet = this.generateStore( builder );\n-\n-\t\t} else ... | 2026-03-14T03:48:57 |
golang/go | a415314c0bdec971ecd503471c804ec0208c6a2b | e93b26688c0c25efa78b3948a58c5309307025a2 | cmd/compile: ensure result selects are in the block of a call
Without this CL, when compiling test/range4.go:func9, we get:
b1:
v1 = StaticLECall <runtime.deferrangefunc>
mem = SelectN [1] v1
Defer v1 -> b2 b3
b2:
v2 = SelectN [0] v1
That select in b2 should really live in b1. This doesn't cause a bug
as far ... | [
{
"path": "src/cmd/compile/internal/ssagen/ssa.go",
"patch": "@@ -5162,6 +5162,19 @@ func (s *state) call(n *ir.CallExpr, k callKind, returnResultAddr bool, deferExt\n \t\ts.vars[memVar] = s.newValue1A(ssa.OpVarLive, types.TypeMem, v, s.mem())\n \t}\n \n+\t// Build result value (before we might end the defe... | 2026-02-21T18:07:54 |
denoland/deno | 094f8bf0c096f309190d87449e856d84990772ed | faea9ae92632045845a16cfa4018007e7678e68f | fix(watch): reduce graceful shutdown timeout from 5s to 500ms (#33099)
The 5-second grace period introduced in #32564 causes frustrating reload
delays during development when a SIGTERM handler is registered (e.g. for
production graceful DB shutdown). 500ms is enough time for most cleanup
tasks (closing connections, fl... | [
{
"path": "cli/util/file_watcher.rs",
"patch": "@@ -39,7 +39,7 @@ use crate::util::fs::canonicalize_path;\n \n const CLEAR_SCREEN: &str = \"\\x1B[H\\x1B[2J\\x1B[3J\";\n const DEBOUNCE_INTERVAL: Duration = Duration::from_millis(200);\n-const GRACEFUL_SHUTDOWN_TIMEOUT: Duration = Duration::from_secs(5);\n+con... | 2026-03-31T17:32:03 |
kubernetes/kubernetes | d4181e8c20723a9d6a07ba5a6c40686745d6d432 | 9ad8603033779d67df4d915890bf27d730cf6a47 | test/e2e/node: tolerate exit code 2 in pod status flake
The fast-delete pod status tests currently require the intentionally failing
"fail" container to report exit code 1. In CI, some runtimes occasionally
report exit code 2 with reason=Error even though the tested invariant still
holds: the container failed and the ... | [
{
"path": "test/e2e/node/pods.go",
"patch": "@@ -1001,6 +1001,11 @@ func (v *podStartVerifier) Verify(event watch.Event) error {\n \t\tswitch {\n \t\tcase t.ExitCode == 1:\n \t\t\t// expected\n+\t\tcase t.ExitCode == 2 && t.Reason == \"Error\" && t.Message == \"\":\n+\t\t\t// Some runtimes occasionally surf... | 2026-03-14T18:31:46 |
tensorflow/tensorflow | 37535ed0c49fe5440a6678e6764bf95df375e000 | d7b95ca44e77f371b5613de4a719a4b29e635547 | PR #40490: [ROCm] Separate OCP and NANOO FP8 collective ops E2E tests
Imported from GitHub PR https://github.com/openxla/xla/pull/40490
## Summary
The 5 FP8 collective ops E2E tests use OCP FP8 types (`f8e4m3fn`/`f8e5m2`), which are
not supported on NANOO-only platforms.
This PR properly separates the tests by FP8 va... | [
{
"path": "third_party/xla/xla/backends/gpu/tests/collective_ops_e2e_test.cc",
"patch": "@@ -87,6 +87,14 @@ class CollectiveOpsTestE2E : public CollectiveOpsE2ETestBase {\n GetDebugOptionsForTest().xla_gpu_enable_cublaslt();\n }\n \n+ // Ref:\n+ // https://rocm.docs.amd.com/projects/HIP/en/la... | 2026-04-08T08:07:06 |
swiftlang/swift | 2f9445d55e84eec95d3e066299d8f4636a3e5af9 | 717c33091094722598eedd0fee8cd03f33226b67 | [Concurrency] Must hop-back from nonsending adoption in withContinuation (#88157)
**Description**: The move to adopting nonisolated nonsending in
continuation APIs has removed un-necessary hops INTO the continuation
block, however this also removed hops "from" when the continuation is
resumed to where code is supposed... | [
{
"path": "lib/SILGen/SILGenBuiltin.cpp",
"patch": "@@ -14,6 +14,7 @@\n \n #include \"ArgumentSource.h\"\n #include \"Cleanup.h\"\n+#include \"ExecutorBreadcrumb.h\"\n #include \"Conversion.h\"\n #include \"Initialization.h\"\n #include \"LValue.h\"\n@@ -1863,6 +1864,14 @@ static ManagedValue emitBuiltinWit... | 2026-04-06T07:52:26 |
mrdoob/three.js | 2e69815d93df53e476b739234b3fbf5a30baa2bb | 4fad923a7f1be3024aa4040d9413c134236317b1 | WebGLRenderer: Fix active texture setting in `copyTextureToTexture()`. (#33153)
Co-authored-by: Michael Herzog <michael.herzog@human-interactive.org> | [
{
"path": "src/renderers/WebGLRenderer.js",
"patch": "@@ -3241,6 +3241,8 @@ class WebGLRenderer {\n \n \t\t\t}\n \n+\t\t\tstate.activeTexture( _gl.TEXTURE0 ); // see #33153\n+\n \t\t\t_gl.pixelStorei( _gl.UNPACK_FLIP_Y_WEBGL, dstTexture.flipY );\n \t\t\t_gl.pixelStorei( _gl.UNPACK_PREMULTIPLY_ALPHA_WEBGL, d... | 2026-03-12T14:25:19 |
golang/go | e93b26688c0c25efa78b3948a58c5309307025a2 | f5d460c3ea59ab574d5908f66f604c573891ffe1 | runtime: remove gopanicFP field from panic record
We can use SP instead of FP for the single thing this was used for
(finding the gopanic frame).
Change-Id: Iad2b406705abc3cdb0dbcdd069f7f9a330509164
Reviewed-on: https://go-review.googlesource.com/c/go/+/738042
Reviewed-by: Keith Randall <khr@google.com>
Reviewed-by: ... | [
{
"path": "src/runtime/panic.go",
"patch": "@@ -847,7 +847,6 @@ func gopanic(e any) {\n \n \tvar p _panic\n \tp.arg = e\n-\tp.gopanicFP = unsafe.Pointer(sys.GetCallerSP())\n \n \trunningPanicDefers.Add(1)\n \n@@ -1146,7 +1145,7 @@ func gorecover() any {\n \t\t\t\tcase abi.FuncIDWrapper:\n \t\t\t\t\tcontinue... | 2026-01-22T01:32:37 |
denoland/deno | a2c128a7127673162ebde4880a9faf78a00be2b6 | f79eedcfdb0adf29eaf029823d2b0422985a554d | fix(ext/node): add chacha20-poly1305 cipher support (#33084)
## Summary
Implements the ChaCha20-Poly1305 AEAD cipher (RFC 8439) for
`node:crypto` `createCipheriv`/`createDecipheriv`.
The implementation uses the `chacha20` and `poly1305` crates:
1. Derive Poly1305 key from first 32 bytes of ChaCha20 keystream
(counte... | [
{
"path": "Cargo.lock",
"patch": "@@ -948,6 +948,17 @@ version = \"0.2.1\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n checksum = \"613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724\"\n \n+[[package]]\n+name = \"chacha20\"\n+version = \"0.9.1\"\n+source = \"registry... | 2026-03-31T08:20:38 |
tensorflow/tensorflow | d7b95ca44e77f371b5613de4a719a4b29e635547 | 8a4a9e679b52a5b6f1f732dce98c9a44c457b708 | PR #39703: [ROCm] Fix hermetic build for rocm
Imported from GitHub PR https://github.com/openxla/xla/pull/39703
📝 Summary of Changes
Fix hermetic build under rocm config
🎯 Justification
Add missing rpaths to fix the hermetic build
🚀 Kind of Contribution
Please remove what does not apply: 🐛 Bug Fix
📊 Benchmark... | [
{
"path": "third_party/xla/third_party/gpus/rocm/BUILD.tpl",
"patch": "@@ -151,11 +151,13 @@ cc_library(\n \":build_hermetic\": [\n \"-Wl,-rpath,external/local_config_rocm/rocm/%{rocm_root}/lib\",\n \"-Wl,-rpath,external/local_config_rocm/rocm/%{rocm_root}/lib/llvm/lib\",\n+ ... | 2026-04-08T07:58:47 |
kubernetes/kubernetes | 627ac57e367931ba2ce61324ed16798c82b5c737 | b613ed56a2045c8d9e1dbe2d2b63bbdf55cd2b3b | KEP-5491: replace "new(bool)" with "new(true)" to fix typecheck error in validation_resourceslice_test.go | [
{
"path": "pkg/apis/resource/validation/validation_resourceslice_test.go",
"patch": "@@ -750,7 +750,7 @@ func TestValidateResourceSlice(t *testing.T) {\n \n \t\t\t\t// error: extra bool(scalar) attribute beyond ResourceSliceMaxAttributeValues\n \t\t\t\tslice.Spec.Devices[2].Attributes = maxStringAttributeVa... | 2026-03-21T03:33:47 |
Subsets and Splits
Assembly Language GitHub Issues
Retrieves a sample of assembly-language related commits with their details, but doesn't provide meaningful analysis or patterns beyond basic filtering.
Swift Compiler Issues Analysis
Retrieves all training data for the Swift programming language repository, providing basic filtering but offering limited analytical insight beyond identifying relevant code examples.