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 | 10128048bf30b6325d419d992af616cd2e8b9303 | d63ae1979f816d61905fec637b39849217c178ed | fix(ext/node): validate process.exitCode and fix process constructor name (#32806)
## Summary
- Validate `process.exitCode` setter to reject non-integer values with
`ERR_INVALID_ARG_TYPE` (matching Node.js behavior)
- Simplify `process.exit()` to delegate validation to the exitCode
setter
- Fix `invalidArgTypeHelper` ... | [
{
"path": "ext/node/polyfills/process.ts",
"patch": "@@ -117,10 +117,8 @@ export const execArgv: string[] = [];\n \n /** https://nodejs.org/api/process.html#process_process_exit_code */\n export const exit = (code?: number | string) => {\n- if (code || code === 0) {\n+ if (code !== undefined) {\n proc... | 2026-03-18T19:34:16 |
golang/go | d0bd295ec12d8f5ad2bdb204e14123bf912f52aa | 8afbae3e51ca0a22121bdf34ac65e0d4c9d888b7 | cmd/go: provide concise user message to use - go work use
Fixes #64007
Change-Id: Ia1de6b33b2a531545984351e4453aa5d97b16953
Reviewed-on: https://go-review.googlesource.com/c/go/+/589815
Reviewed-by: Michael Matloob <matloob@golang.org>
Auto-Submit: Michael Matloob <matloob@google.com>
Reviewed-by: Carlos Amedee <car... | [
{
"path": "src/cmd/go/internal/modload/init.go",
"patch": "@@ -1156,8 +1156,8 @@ func errWorkTooOld(gomod string, wf *modfile.WorkFile, goVers string) error {\n \t\t// even when it doesn't list any version.\n \t\tverb = \"implicitly requires\"\n \t}\n-\treturn fmt.Errorf(\"module %s listed in go.work file r... | 2024-06-03T14:16:32 |
kubernetes/kubernetes | 85bca3b6845fcf311a032943fabe5e368d9ad8f2 | e3c5ead23f5e3823f3140badeb7d1a0761413242 | DRA device taints: fix beta-enabled, alpha-disable configurations
DeviceTaintRule is off by default because the corresponding v1beta2 API group
is off. When enabled, the potentially still disabled v1alpha3 API version was
used instead of the new v1beta2, causing the scheduler to fail while setting up
informers and the... | [
{
"path": "pkg/scheduler/eventhandlers_test.go",
"patch": "@@ -29,7 +29,7 @@ import (\n \tbatchv1 \"k8s.io/api/batch/v1\"\n \tv1 \"k8s.io/api/core/v1\"\n \tresourceapi \"k8s.io/api/resource/v1\"\n-\tresourcealphaapi \"k8s.io/api/resource/v1alpha3\"\n+\tresourcebetaapi \"k8s.io/api/resource/v1beta2\"\n \tsch... | 2026-03-13T07:18:54 |
mrdoob/three.js | fcdaf6c0a11eacc6cf984a87049147446d844f9c | 56fc856c1597c14842816f1f43242cecdc36acaa | PolyhedronGeometry: Fix typo in fromJSON() (#32475) | [
{
"path": "src/geometries/PolyhedronGeometry.js",
"patch": "@@ -339,7 +339,7 @@ class PolyhedronGeometry extends BufferGeometry {\n \t */\n \tstatic fromJSON( data ) {\n \n-\t\treturn new PolyhedronGeometry( data.vertices, data.indices, data.radius, data.details );\n+\t\treturn new PolyhedronGeometry( data.... | 2025-12-04T14:31:12 |
denoland/deno | d63ae1979f816d61905fec637b39849217c178ed | cdeec3c4f4031ddadf759b4b90a6c2c900a2f480 | fix(ext/node): skip normalization in path.win32.join for reserved device names (#32808)
## Summary
- When a joined path contains a Windows reserved device name with a
colon (e.g. `CON:`, `PRN:`, `NUL:`), skip `normalize()` and only convert
`/` to `\`, matching Node.js behavior
- This prevents `..` segments from being... | [
{
"path": "ext/node/polyfills/path/_win32.ts",
"patch": "@@ -525,6 +525,36 @@ export function join(...paths: string[]): string {\n }\n }\n \n+ // If any path component is a Windows reserved device name (e.g. CON:,\n+ // PRN:, NUL:), skip normalization to avoid resolving `..` through it.\n+ // This ... | 2026-03-18T19:31:58 |
tensorflow/tensorflow | 79cbe17ed58674e4adb8cfa7b7b0a653d6143b17 | 79aa6a626ef02e82e8dec55ca1ed5fc68ac75131 | [XLA:GPU] Add missing include in multi_gpu_barrier_test
Causes build errors in some OSS builds, but wasn't caught by internal or
OSS presubmits.
PiperOrigin-RevId: 890388867 | [
{
"path": "third_party/xla/xla/stream_executor/cuda/BUILD",
"patch": "@@ -2940,6 +2940,7 @@ xla_test(\n \"//xla/tsl/concurrency:future\",\n \"//xla/tsl/cuda:nccl\",\n \"//xla/tsl/platform:env\",\n+ \"//xla/tsl/platform:status_macros\",\n \"@com_google_absl//absl/status... | 2026-03-27T12:08:03 |
golang/go | 8afbae3e51ca0a22121bdf34ac65e0d4c9d888b7 | 0a56bf885884d07f6391afcbb122041f193eebb2 | cmd/compile: allow multiple induction variables in one block in prove
In this CL, the restriction that each block can only have one induction
variable has been removed. This reduces missed optimizations.
Fixes #76269
Change-Id: I14043182a40cc7887c5b6d9c1a5df8ea3a1bfedc
Reviewed-on: https://go-review.googlesource.com... | [
{
"path": "src/cmd/compile/internal/ssa/downward_counting_loop.go",
"patch": "@@ -4,8 +4,6 @@\n \n package ssa\n \n-import \"fmt\"\n-\n // maybeRewriteLoopToDownwardCountingLoop tries to rewrite the loop to a\n // downward counting loop checking against start if the loop body does\n // not depend on ind or ... | 2025-11-12T09:38:27 |
mrdoob/three.js | 4e86f504a07428d376a149c035a68d89c1360600 | 06a4e973c7902181b1807886c403260898158d48 | UltraHDRLoader: Fix incorrect alpha channel values. (#32464) | [
{
"path": "examples/jsm/loaders/UltraHDRLoader.js",
"patch": "@@ -542,11 +542,11 @@ class UltraHDRLoader extends Loader {\n \n \t\t\t\tif ( this.type === HalfFloatType ) {\n \n-\t\t\t\t\thdrBuffer = new Uint16Array( sdrImageData.data.length ).fill( 23544 );\n+\t\t\t\t\thdrBuffer = new Uint16Array( sdrImageD... | 2025-12-03T00:16:13 |
kubernetes/kubernetes | 90912e6e100351e373ee003c8ff3a1f060e59c5f | 92a8387751204669af8aadd3cc06b52a8ebb6d58 | Plumb ctx down to sync() and syncStatus() methods
Use contextual logging in sync() and syncStatus() by passing ctx
from the caller instead of context.Background(). Replace klog.Infof
calls with logger.Info/Error from klog.FromContext(ctx).
Update tests to use ktesting.NewTestContext.
Signed-off-by: ChengHao Yang <17... | [
{
"path": "pkg/controlplane/controller/defaultservicecidr/default_servicecidr_controller.go",
"patch": "@@ -100,16 +100,17 @@ type Controller struct {\n // Start will not return until the default ServiceCIDR exists or stopCh is closed.\n func (c *Controller) Start(ctx context.Context) {\n \tdefer utilruntim... | 2026-03-13T04:25:35 |
denoland/deno | cdeec3c4f4031ddadf759b4b90a6c2c900a2f480 | f5d0971d2392e6dda51284f957122f19f4ee0e9e | fix(ext/node): add disabled process function stubs in worker threads (#32809)
## Summary
- In worker threads, replace `process.abort`, `process.chdir`,
`process.send`, `process.disconnect`, and uid/gid setters (`setuid`,
`seteuid`, `setgid`, `setegid`, `setgroups`, `initgroups`) with stubs
that have `.disabled = true... | [
{
"path": "ext/node/polyfills/02_init.js",
"patch": "@@ -42,6 +42,8 @@ function initialize(args) {\n Deno.args,\n Deno.version,\n nodeDebug ?? \"\",\n+ false,\n+ runningOnMainThread,\n );\n internals.__initWorkerThreads(\n runningOnMainThread,",
"additions": 2,
... | 2026-03-18T19:31:29 |
swiftlang/swift | 85671a9599fa719e8459e85abac2cc70daa4efa3 | 35f235364c6b4c1c85c5e092a6dc501176b397e8 | fix: handle addressable OpaqueValueExprs in SILGen | [
{
"path": "lib/SILGen/SILGenApply.cpp",
"patch": "@@ -3499,6 +3499,11 @@ SILGenFunction::tryEmitAddressableParameterAsAddress(ArgumentSource &&arg,\n return ManagedValue();\n };\n \n+ // See through opaque value placeholders, e.g. the for-each sequence.\n+ if (auto *OV = dyn_cast<OpaqueValueExpr>(... | 2026-03-18T16:47:55 |
golang/go | a481ef071e0b30b33b2857919957be151b2d2a6d | a61fd428974822a8c57a2b2840fc237e6711b24d | net/url: allow commas in hostnames for mongodb urls
A valid MongoDB URL can contain commas
to include multiple host:port pairs.
The current parseHost function splits the port
starting from the first colon (:),
but for MongoDB URLs that contain multiple host:port pairs,
it needs to split from the last colon (:).
Fixes... | [
{
"path": "src/net/url/url.go",
"patch": "@@ -617,6 +617,13 @@ func parseHost(scheme, host string) (string, error) {\n \t\t\t\t// continue to permit it for postgres:// URLs only.\n \t\t\t\t// https://go.dev/issue/75223\n \t\t\t\ti = lastColon\n+\t\t\t} else if scheme == \"mongodb\" || scheme == \"mongodb+sr... | 2026-03-13T03:04:12 |
tensorflow/tensorflow | 79aa6a626ef02e82e8dec55ca1ed5fc68ac75131 | 211a001f0f1ac8a5f0bf29519ce4213f58932b08 | Fix proto reconstruction for RaggedAllToAllThunk
Loaded AOT executables with RaggedAllToAllThunk were crashing because `RaggedAllToAllConfig::fast_interconnect_slice_size_override` was restored to a value 0 which should have been a `std::nullopt`.
This change fixes it.
PiperOrigin-RevId: 890388431 | [
{
"path": "third_party/xla/xla/backends/gpu/runtime/ragged_all_to_all_thunk.cc",
"patch": "@@ -436,13 +436,19 @@ RaggedAllToAllStartThunk::FromProto(\n CollectiveConfig config =\n CollectiveConfig::FromProto(thunk_proto.collective_config());\n \n+ std::optional<int64_t> fast_interconnect_slice_size... | 2026-03-27T12:06:39 |
mrdoob/three.js | 3e8ca1e10079de160576088ae2d75cf7defd8645 | d8dc3dd2ead252f40ba4e9c48d2168c34023f126 | Docs: Fix `Renderer` WebGPU convention (#32457) | [
{
"path": "src/renderers/common/Renderer.js",
"patch": "@@ -1843,9 +1843,9 @@ class Renderer {\n \t/**\n \t * Defines the scissor rectangle.\n \t *\n-\t * @param {number | Vector4} x - The horizontal coordinate for the lower left corner of the box in logical pixel unit.\n+\t * @param {number | Vector4} x - ... | 2025-12-02T18:23:13 |
denoland/deno | f5d0971d2392e6dda51284f957122f19f4ee0e9e | 0896ac3e9add21dac364a4b199cd45c10c945337 | fix(ext/node): improve process.title and support --title flag (#32201)
- Default `process.title` to `process.execPath` instead of hardcoded
`"deno"`, matching Node.js behavior
- Make `process.title` setter functional instead of a no-op
- Parse `--title=<value>` from `NODE_OPTIONS` and set `process.title`
during bootst... | [
{
"path": "ext/node/lib.rs",
"patch": "@@ -315,6 +315,7 @@ deno_core::extension!(deno_node,\n ops::ipc::op_node_ipc_buffer_constructor,\n ops::ipc::op_node_ipc_ref,\n ops::ipc::op_node_ipc_unref,\n+ ops::process::op_node_process_set_title,\n ops::process::op_node_process_kill,\n ops::... | 2026-03-18T16:31:12 |
mrdoob/three.js | 6e006b29964ff6facb832690d3e38918d8434b64 | 625d234eb79fdeba4b2361cd138ca46e73c5d604 | Octree: Fixed typo. | [
{
"path": "examples/jsm/math/Octree.js",
"patch": "@@ -20,7 +20,7 @@ const _line2 = new Line3();\n const _box = new Box3();\n const _sphere = new Sphere();\n const _capsule = new Capsule();\n-const _center = new Capsule();\n+const _center = new Vector3();\n \n const _temp1 = new Vector3();\n const _temp2 = ... | 2025-12-01T17:55:34 |
golang/go | a92edd97bfb9b383acb934fa0564bcad948bbb20 | 5978090f9d4c45b63c2c749174e04594ca39b064 | cmd/compile: simplify the implementation of LoweredZeroLoop on loong64
Removes 6484 instructions from the go binary on loong64.
before after delta
asm 561517 561225 -292
cgo 480929 480493 -436
compile 2887121 2886277 -844
cover 530429 530125 -304
fix ... | [
{
"path": "src/cmd/compile/internal/loong64/ssa.go",
"patch": "@@ -576,7 +576,7 @@ func ssaGenValue(s *ssagen.State, v *ssa.Value) {\n \t\t}\n \tcase ssa.OpLOONG64LoweredZeroLoop:\n \t\tptrReg := v.Args[0].Reg()\n-\t\tcountReg := v.RegTmp()\n+\t\tendReg := v.RegTmp()\n \t\tflagReg := int16(loong64.REGTMP)\n... | 2026-03-11T02:11:35 |
tensorflow/tensorflow | 211a001f0f1ac8a5f0bf29519ce4213f58932b08 | 4bd474349b4c2ee073d14a76195a69d3c4a8bc3b | [XLA:BUILD]: Check windows build failure fix
PiperOrigin-RevId: 890382390 | [
{
"path": "third_party/xla/third_party/llvm/build.patch",
"patch": "@@ -1,8 +1,8 @@\n diff --git a/utils/bazel/llvm-project-overlay/llvm/BUILD.bazel b/utils/bazel/llvm-project-overlay/llvm/BUILD.bazel\n-index 0102a20b28..0102a295f2 100644\n+index a7e652c..5b8ac5e 100644\n --- a/utils/bazel/llvm-project-over... | 2026-03-27T11:50:07 |
denoland/deno | 0896ac3e9add21dac364a4b199cd45c10c945337 | 76c3d7e13164085c27b800aa916eb89da642330a | fix(ext/node): support interface option for IPv6 multicast membership (#32754)
Fixes the IPv6 multicast interface option which was hardcoded to `0`.
## Problem
The `interface` option for `addMembership`/`dropMembership` was ignored
for IPv6 sockets:
```ts
op_node_udp_join_multi_v6(this.#rid, multicastAddress, 0); ... | [
{
"path": "ext/node/ops/udp.rs",
"patch": "@@ -156,31 +156,122 @@ pub fn op_node_udp_leave_multi_v4(\n Ok(())\n }\n \n-#[op2(fast)]\n+/// Resolve an IPv6 interface address to an interface index.\n+/// If the address contains a zone ID (e.g. \"fe80::1%eth0\"), use that.\n+/// Otherwise, try to find the int... | 2026-03-18T16:29:00 |
mrdoob/three.js | 72f91e3cf64eee7f392c8b15bddbc36bc56247d5 | 9e94632cb90fc22f0b32f1461d625439b9db47e8 | Update ReferenceBaseNode.js
Fix typo. | [
{
"path": "src/nodes/accessors/ReferenceBaseNode.js",
"patch": "@@ -4,7 +4,7 @@ import { uniform } from '../core/UniformNode.js';\n import { nodeObject } from '../tsl/TSLCore.js';\n import ArrayElementNode from '../utils/ArrayElementNode.js';\n \n-// TODO: Avoid duplicated code and ues only ReferenceBaseNod... | 2025-12-01T08:59:15 |
golang/go | 5978090f9d4c45b63c2c749174e04594ca39b064 | adf9c27874d8b59b9632a23d9148db4faef36d98 | cmd/internal/obj/loong64: correcting spelling errors in the comments
Change-Id: I8773f3d00a529d11009c4682a191b3b75b15f396
Reviewed-on: https://go-review.googlesource.com/c/go/+/754060
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Carlos Amedee <carlos@golang.org... | [
{
"path": "src/cmd/internal/obj/loong64/instOp.go",
"patch": "@@ -327,47 +327,47 @@ var oprrr = map[obj.As]uint32{\n \tAVMADDWEVWH: 0x0e159 << 15, // vmaddwev.w.h\n \tAVMADDWEVVW: 0x0e15a << 15, // vmaddwev.d.w\n \tAVMADDWEVQV: 0x0e15b << 15, // vmaddwev.q.d\n-\tAVMADDWODHB: 0x... | 2026-03-11T09:24:15 |
swiftlang/swift | 4b0ddd3c2ae29fdff2cf4af94ab70a3adf53ad56 | bf7d2551864c4edd02db4848beaa5570915cfedf | [Sema] Fix fix-it range in nonisolated(unsafe) test expectations
Correct the expected fix-it column range from {{3-24}} to {{3-22}}
to match the actual SourceRange of the nonisolated(unsafe) attribute.
The previous range incorrectly extended past the closing parenthesis. | [
{
"path": "test/FixCode/nonisolated_unsafe_fixit.swift",
"patch": "@@ -4,10 +4,10 @@\n \n class MyClass {\n nonisolated(unsafe) var computedValue: Int? {\n- // expected-warning@-1 {{'nonisolated(unsafe)' has no effect on property 'computedValue', consider using 'nonisolated'}}{{3-24=nonisolated}}\n+ // ... | 2026-03-25T02:49:57 |
tensorflow/tensorflow | 09d30f3ffd90470ea48b638f2c076b056edd9c54 | efbc6b44f6495ea7d85409d02dd3a4ea47efe5ee | Make involuntary full rematerialization an fatal error when conflict resolution is not needed.
PiperOrigin-RevId: 890114124 | [
{
"path": "third_party/xla/xla/service/spmd/BUILD",
"patch": "@@ -81,6 +81,7 @@ cc_library(\n \"//xla/tsl/platform:errors\",\n \"//xla/tsl/platform:statusor\",\n \"@com_google_absl//absl/algorithm:container\",\n+ \"@com_google_absl//absl/base:log_severity\",\n \"@com_g... | 2026-03-26T23:44:56 |
mrdoob/three.js | 9e94632cb90fc22f0b32f1461d625439b9db47e8 | d70adae523c1b3c67defbe9fdf3a69c153cbd454 | Update ReferenceNode.js
Fix typo. | [
{
"path": "src/nodes/accessors/ReferenceNode.js",
"patch": "@@ -9,7 +9,7 @@ import { uniformArray } from './UniformArrayNode.js';\n import ArrayElementNode from '../utils/ArrayElementNode.js';\n import { warn } from '../../utils.js';\n \n-// TODO: Avoid duplicated code and ues only ReferenceBaseNode or Refe... | 2025-12-01T08:58:39 |
denoland/deno | 0fede96dc61a81f0355421f99ffc506d74d72ead | 328c8d35476e0d1376f2b818d57b7e89d9bd66b5 | fix(ext/node): fix 8 Node.js compat test failures (#32755)
## Summary
Fixes 8 Node.js compat tests that were failing after the node_test
submodule update to Node.js 25.8.1 (#32705). Closes part of #32706.
- **`events`**: `listenerCount()` now handles `EventTarget` instances by
delegating to `getEventListeners()`
- *... | [
{
"path": "ext/node/polyfills/_events.mjs",
"patch": "@@ -813,6 +813,9 @@ export function listenerCount(emitter, type) {\n if (typeof emitter.listenerCount === \"function\") {\n return emitter.listenerCount(type);\n }\n+ if (emitter instanceof EventTarget) {\n+ return getEventListeners(emitter, ... | 2026-03-18T08:39:51 |
golang/go | cd2fa3b48dc059203aa724474e19096928b3f71f | a6949e942c4287fcccf3264b8df6190c88609cb7 | runtime: fix memclrNoHeapPointersPreemptible
memclrNoHeapPointersChunked was originally written for
clearing fresh allocations. It converts to uintptr early and thus
doesn't handle the case where the pointer points to the stack.
At the preemption point, the buffer being pointed to might be
on the stack and copied to a... | [
{
"path": "src/runtime/malloc.go",
"patch": "@@ -2184,22 +2184,27 @@ func reusableSize(size uintptr) bool {\n // Use this with care; if the data being cleared is tagged to contain\n // pointers, this allows the GC to run before it is all cleared.\n func memclrNoHeapPointersChunked(size uintptr, x unsafe.Poi... | 2026-03-17T18:13:16 |
swiftlang/swift | 68fbc7debc00ca5cb065e65f0aab8c49235ff122 | aad317178f032f15c5491be5be4be4ee3fabb810 | [IRGen] Fix ptrauth discriminator cache incorrectly shared between function-type and yield-type.
The CoroutineYieldTypes case in getTypeDiscriminator computes a different discriminator from the CanSILFunctionType case, but they shared a cache. The YieldTypes cache already exists for this purpose but wasn't being used.... | [
{
"path": "lib/IRGen/GenPointerAuth.cpp",
"patch": "@@ -536,7 +536,7 @@ PointerAuthEntity::getTypeDiscriminator(IRGenModule &IGM) const {\n case Kind::CoroutineYieldTypes: {\n auto fnType = Storage.get<CanSILFunctionType>(StoredKind);\n \n- llvm::ConstantInt *&cache = IGM.getPointerAuthCaches().Typ... | 2026-03-24T22:46:16 |
tensorflow/tensorflow | d4e71925439d0d9adfe4e689126658079c7f8caf | b2e50c50d6fd9dd964282796d975b3eed037f0c8 | Fix HloDCE pruning root multi-output fusions with side-effecting users
HloDCE includes an optimization (`RemoveMultiOutputFusionsUnusedOutputs`) that strips unused tuple elements from multi-output fusions if they are only partially consumed. To determine usage, the pass inspects the internal users of the fusion instru... | [
{
"path": "third_party/xla/xla/hlo/transforms/simplifiers/BUILD",
"patch": "@@ -894,7 +894,9 @@ xla_cc_test(\n srcs = [\"hlo_dce_test.cc\"],\n deps = [\n \":hlo_dce\",\n+ \"//xla:comparison_util\",\n \"//xla:literal_util\",\n+ \"//xla:shape_layout\",\n \"//xla:s... | 2026-03-26T20:15:49 |
golang/go | a6949e942c4287fcccf3264b8df6190c88609cb7 | e0ebb4c646ade3ab83708d1772bce452398888b3 | go/types, types2: handle unconstrained type parameters correctly in a few places
When iterating over a type set via a range clause, am unconstrained
type set produces a single (nil, nil) result. This was not properly
accounted for in a few places:
- In the code for the append and copy built-in, handle the (nil, nil)
... | [
{
"path": "src/cmd/compile/internal/types2/builtins.go",
"patch": "@@ -112,7 +112,7 @@ func (check *Checker) builtin(x *operand, call *syntax.CallExpr, id builtinId) (\n \t\t\t\tfor _, u := range typeset(y.typ()) {\n \t\t\t\t\tif s, _ := u.(*Slice); s != nil && Identical(s.elem, universeByte) {\n \t\t\t\t\t... | 2026-03-12T02:02:07 |
denoland/deno | 328c8d35476e0d1376f2b818d57b7e89d9bd66b5 | 7d810eeeedd26873cb3ec0b297326b39c8f9d06c | perf(ext/web): optimize URLPattern ops to reduce serde overhead and GC pressure (#32766)
## Summary
- **`op_urlpattern_process_match_input`**: Replace `#[serde]
Option<(MatchInput, Inputs)>` return with `#[string] Option<String>` +
`#[buffer] &mut [u32]`. The 8 URL component values are concatenated into
a single stri... | [
{
"path": "ext/web/01_urlpattern.js",
"patch": "@@ -22,9 +22,11 @@ const {\n RegExpPrototypeTest,\n SafeMap,\n SafeRegExp,\n+ StringPrototypeSlice,\n Symbol,\n SymbolFor,\n TypeError,\n+ Uint32Array,\n } = primordials;\n \n import * as webidl from \"ext:deno_webidl/00_webidl.js\";\n@@ -138,10 ... | 2026-03-18T08:39:31 |
kubernetes/kubernetes | a5a0327d6dfb59de71ed15590d630f8d26e51915 | a073972cad8d1dcde52d3efe2de0948463ade6f4 | Fix test reset fields of servicecidr | [
{
"path": "pkg/registry/networking/servicecidr/strategy.go",
"patch": "@@ -19,6 +19,8 @@ package servicecidr\n import (\n \t\"context\"\n \n+\t\"sigs.k8s.io/structured-merge-diff/v6/fieldpath\"\n+\n \tmetav1 \"k8s.io/apimachinery/pkg/apis/meta/v1\"\n \t\"k8s.io/apimachinery/pkg/runtime\"\n \t\"k8s.io/apimac... | 2026-03-12T21:43:36 |
mrdoob/three.js | 76d5e4f40c08b9a06f36ebfe88aa19c6c635ea75 | 9641add693fe9e2e919b40a9ec196f39b068a263 | Fix: WebGPUTextureUtils._getDefaultCubeTextureGPU using wrong cache (#32425)
Co-authored-by: “SE7EN2028” <“RITIKGOTBUSY@GMAIL.COM”> | [
{
"path": "src/renderers/webgpu/utils/WebGPUTextureUtils.js",
"patch": "@@ -683,7 +683,7 @@ class WebGPUTextureUtils {\n \t */\n \t_getDefaultCubeTextureGPU( format ) {\n \n-\t\tlet defaultCubeTexture = this.defaultTexture[ format ];\n+\t\tlet defaultCubeTexture = this.defaultCubeTexture[ format ];\n \n \t\... | 2025-11-30T16:08:56 |
swiftlang/swift | bf7d2551864c4edd02db4848beaa5570915cfedf | 5478f521ae394007fdbcae92ee6a1539b001ad69 | [Sema] Fix nonisolated(unsafe) fix-it to replace full attribute text (#87342)
The fixItReplace call in visitNonisolatedAttr() was using
attr->getStartLoc(), which only covers the 'nonisolated' keyword.
This caused the fix-it to display "Replace 'nonisolated' with
'nonisolated'" — identical text on both sides.
Changed... | [
{
"path": "lib/Sema/TypeCheckAttr.cpp",
"patch": "@@ -8333,7 +8333,7 @@ void AttributeChecker::visitNonisolatedAttr(NonisolatedAttr *attr) {\n ctx.Diags\n .diagnose(attr->getStartLoc(),\n diag::nonisolated_unsafe_uneffective_on_funcs, VD)\n- .fixItReplace(attr->g... | 2026-03-25T01:31:03 |
tensorflow/tensorflow | 0c6ecccc3f0c55f532ba92e5d4672f6026137112 | 7abae51ee3bce788f168959b0b30bc89d14c6154 | Rollforward with fixes as described here: cl/888943300
Reverts 8f44cf594f9bde5001ad0aab36ebaf42d5939c73
PiperOrigin-RevId: 889923999 | [
{
"path": "third_party/xla/xla/hlo/utils/hlo_sharding_util.cc",
"patch": "@@ -1088,6 +1088,13 @@ HloSharding TransposeSharding(const HloSharding& sharding,\n std::optional<HloSharding> ReshapeSharding(const Shape& source_shape,\n const Shape& target_shape,\n ... | 2026-03-26T17:35:52 |
golang/go | e0ebb4c646ade3ab83708d1772bce452398888b3 | ab1a2c8874e470b251a6c2469eabf36b389a0a02 | cmd/compile: use 128-bit arm64 vector ops for Move expansion
Update Move rewrite rules to use FMOVQload/store and FLDPQ/FSTPQ
for medium-sized copies (16-64 bytes). This generates fewer and
wider instructions than the previous approach using LDP/STP pairs.
Executable Base .text go1 Change
------... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/ARM64.rules",
"patch": "@@ -434,33 +434,25 @@\n (Move [15] dst src mem) =>\n \t(MOVDstore [7] dst (MOVDload [7] src mem)\n \t\t(MOVDstore dst (MOVDload src mem) mem))\n-(Move [16] dst src mem) =>\n-\t(STP dst (Select0 <typ.UInt64> (LDP src mem)) (Select1 <typ.UIn... | 2026-01-21T20:29:59 |
mrdoob/three.js | 9641add693fe9e2e919b40a9ec196f39b068a263 | 7ad089e773167ed7a7da33dc13ee7fd05280bc36 | TSL: Fix non-stack function call with loops (#32420) | [
{
"path": "src/nodes/core/AssignNode.js",
"patch": "@@ -99,8 +99,8 @@ class AssignNode extends TempNode {\n \n \t\tconst scope = targetNode.getScope();\n \n-\t\tconst targetProperties = builder.getNodeProperties( scope );\n-\t\ttargetProperties.assign = true;\n+\t\tconst scopeData = builder.getDataFromNode(... | 2025-11-30T06:50:58 |
swiftlang/swift | 9a25399f81f455c6f15dbad4cb3b61b1b4e5a8db | ec08191e251e779f46343dac1d22cc34524d77e2 | Make StrictAccessControl an experimental feature.
It was originally introduced as an upcoming feature, but there isn't any
precedent for using upcoming features as a way to opt-in to type checking fixes
without an associated Swift Evolution proposal. Rather than using a "feature" to
control this behavior, it would pro... | [
{
"path": "include/swift/Basic/Features.def",
"patch": "@@ -320,7 +320,6 @@ MIGRATABLE_UPCOMING_FEATURE(MemberImportVisibility, 444, LanguageMode::future)\n MIGRATABLE_UPCOMING_FEATURE(InferIsolatedConformances, 470, LanguageMode::future)\n MIGRATABLE_UPCOMING_FEATURE(NonisolatedNonsendingByDefault, 461, La... | 2026-03-25T00:40:01 |
tensorflow/tensorflow | b68523c188ef1306bdf1752ed5539b12c6da97f3 | 2897483c6f7f08c1c3d9d952d8102539df75b69d | PR #39763: [ROCm] Extend select_threshold macro to be more selective
Imported from GitHub PR https://github.com/openxla/xla/pull/39763
📝 Summary of Changes
Extend select threshold macro to accept dictionary
🎯 Justification
We use select_threshold to handle changes in rocm interfaces changes in bazel
dependencies. ... | [
{
"path": "third_party/xla/third_party/gpus/rocm/BUILD.tpl",
"patch": "@@ -601,9 +601,11 @@ cc_library(\n alias(\n name = \"amd_comgr\",\n actual = select_threshold(\n- above_or_eq = \":amd_comgr_dynamic\",\n- below = \":amd_comgr_static\",\n- threshold = 71000,\n+ thresh... | 2026-03-26T15:55:09 |
golang/go | ff7ecb4efc2f754709ec018ae822fb411fcfa5a9 | 8e1ecee49120359594cad3b3e6e6464eb3945f49 | os/exec: document that Cmd.Wait must not be called concurrently
Clarify in the Wait documentation that it must not be called
concurrently from multiple goroutines. Also note that a custom
Cmd.Cancel function should not call Wait because Cancel may be
invoked by watchCtx in a separate goroutine.
Fixes #78046
Change-I... | [
{
"path": "src/os/exec/exec.go",
"patch": "@@ -929,6 +929,9 @@ func (e *ExitError) Error() string {\n // If any of c.Stdin, c.Stdout or c.Stderr are not an [*os.File], Wait also waits\n // for the respective I/O loop copying to or from the process to complete.\n //\n+// Wait must not be called concurrently ... | 2026-03-10T17:58:14 |
kubernetes/kubernetes | fbb68965f2729d173e763330d6b3c8a3d5a92f5b | 59e64a6ba31839ca4696b27df46c668d112db6d4 | Fix zero PSI metrics emitted when OS doesn't enable PSI
Made-with: Cursor | [
{
"path": "cmd/kubelet/app/server.go",
"patch": "@@ -778,7 +778,7 @@ func run(ctx context.Context, s *options.KubeletServer, kubeDeps *kubelet.Depend\n \n \tif kubeDeps.CAdvisorInterface == nil {\n \t\timageFsInfoProvider := cadvisor.NewImageFsInfoProvider(s.ContainerRuntimeEndpoint)\n-\t\tkubeDeps.CAdvisor... | 2026-03-01T12:04:42 |
tensorflow/tensorflow | 5039b95691ff1c8b88e063bea82d1d7f536f0b3d | 908a4c910384a0e4d601106db69c7e42c61d1f00 | PR #39692: Skip python_hlo_runner_test when transformer_engine_jax is unavailable
Imported from GitHub PR https://github.com/openxla/xla/pull/39692
📝 Summary of Changes
- Wrap `from transformer_engine import transformer_engine_jax` in a try/except so the test module loads even when transformer_engine is not installe... | [
{
"path": "third_party/xla/xla/tools/multihost_hlo_runner/python_hlo_runner_test.py",
"patch": "@@ -18,9 +18,11 @@\n import pathlib\n \n from absl.testing import absltest\n-from transformer_engine import transformer_engine_jax\n-\n from xla.tools.multihost_hlo_runner import py_hlo_multihost_runner\n+try:\n+... | 2026-03-26T14:18:48 |
denoland/deno | 2b62955bfdee96be1bcc09291bbe16dade6c14a4 | 97a701cb933762d79067f1918e7491463660edad | feat(ext/node): add MIMEType, convertProcessSignalToExitCode, Symbol.dispose for ChildProcess (#32793)
- Implements util.MIMEType and util.MIMEParams classes (Node.js v18.13+)
with full MIME type parsing and serialization
- Adds util.convertProcessSignalToExitCode() to convert signal names to
exit codes (128 + signal ... | [
{
"path": "ext/node/lib.rs",
"patch": "@@ -477,6 +477,7 @@ deno_core::extension!(deno_node,\n \"internal/http2/util.ts\",\n \"internal/http2/compat.js\",\n \"internal/idna.ts\",\n+ \"internal/mime.ts\",\n \"internal/net.ts\",\n \"internal/normalize_encoding.ts\",\n \"internal/opti... | 2026-03-18T08:19:22 |
mrdoob/three.js | 192d5c1ea18bd2a76b8a0d191420c39a3e0593ac | 7505b21f1a34041c10fdb4e2ec6a0e0651c41492 | Inspector: Fix cube depth texture error (#32412) | [
{
"path": "examples/jsm/inspector/ui/Style.js",
"patch": "@@ -879,9 +879,16 @@ export class Style {\n \tborder-bottom: none;\n \tuser-select: none;\n \t-webkit-user-select: none;\n+}\n+\n+.parameters .list-item-row {\n \tmin-height: 31px;\n }\n \n+.mini-panel-content .parameters .list-item-row {\n+\tmin-hei... | 2025-11-29T01:16:36 |
golang/go | 8e1ecee49120359594cad3b3e6e6464eb3945f49 | 65f76a20a32fc2a63f22f681591813e568506c9d | context: fix package doc description of WithDeadlineCause and WithTimeoutCause
The package documentation incorrectly states that WithCancelCause,
WithDeadlineCause, and WithTimeoutCause all return a CancelCauseFunc.
In fact, only WithCancelCause returns a CancelCauseFunc. WithDeadlineCause
and WithTimeoutCause accept ... | [
{
"path": "src/context/context.go",
"patch": "@@ -24,11 +24,12 @@\n // child and its children until the parent is canceled. The go vet tool\n // checks that CancelFuncs are used on all control-flow paths.\n //\n-// The [WithCancelCause], [WithDeadlineCause], and [WithTimeoutCause] functions\n-// return a [C... | 2026-02-09T06:12:22 |
tensorflow/tensorflow | 2702a5fea97437989c6bb8e3397d6c223265151c | 4f46527d21391e24c3e160601f8c68791cc0d343 | PR #39730: [ROCm] Skip denorm fp16 dots on MI200 architctures
Imported from GitHub PR https://github.com/openxla/xla/pull/39730
📝 Summary of Changes
In triton gemm fusion test randomly generated fp16 values for test are not denoramlized and MI200 and lower architecture fails to handle denorm fp16 values.
🎯 Justifi... | [
{
"path": "third_party/xla/xla/backends/gpu/codegen/triton/triton_gemm_fusion_test.cc",
"patch": "@@ -653,6 +653,11 @@ ENTRY e {\n ; CHECK-SAME: kind=kCustom\n ; CHECK-SAME: backend_config={{.*}}\"kind\":\"__triton_nested_gemm_fusion\"\n )\");\n+\n+ if (GpuComputeCapability().IsRocm()) {\n+ if (GpuCompu... | 2026-03-26T12:57:30 |
denoland/deno | 97a701cb933762d79067f1918e7491463660edad | cca89e6dd0dcc83c82b91fb41d20d20578e7015f | test: prevent Claude from running entire spec suite (#32797)
I can't make Claude stop doing this, so I'm gonna punish it with a
panic. | [
{
"path": "tests/specs/mod.rs",
"patch": "@@ -264,6 +264,18 @@ struct StepMetaData {\n }\n \n pub fn main() {\n+ // When running from Claude Code, require a test filter (additional arg)\n+ // to prevent accidentally running the entire spec test suite.\n+ if std::env::var_os(\"CLAUDE_CODE_ENTRYPOINT\").is... | 2026-03-18T08:16:30 |
mrdoob/three.js | 7505b21f1a34041c10fdb4e2ec6a0e0651c41492 | 82c64b0878256b32f154e6b8ca93554ae41d9d54 | Examples: Fix WebGPU water simulation on mobile GPUs (#32411) | [
{
"path": "examples/webgpu_compute_water.html",
"patch": "@@ -35,7 +35,7 @@\n \t\t<script type=\"module\">\n \n \t\t\timport * as THREE from 'three/webgpu';\n-\t\t\timport { instanceIndex, struct, If, uint, int, floor, float, length, clamp, vec2, cos, vec3, vertexIndex, Fn, uniform, instancedArray, min, max... | 2025-11-28T17:32:15 |
kubernetes/kubernetes | 566dc7f3f30192650178ae34165ee52a76a31ff7 | 16900015564cca04ffa7e93f9ade4d5c0e2207cf | DRA device taints: graduate to beta
The fields become beta, enabled by default. DeviceTaintRule gets
added to the v1beta2 API, but support for it must remain off by default
because that API group is also off by default.
The v1beta1 API is left unchanged. No-one should be using it
anymore (deprecated in 1.33, could be... | [
{
"path": "cmd/kube-controller-manager/app/core.go",
"patch": "@@ -271,7 +271,7 @@ func newDeviceTaintEvictionController(ctx context.Context, controllerContext Con\n \t\tcontrollerContext.InformerFactory.Core().V1().Pods(),\n \t\tcontrollerContext.InformerFactory.Resource().V1().ResourceClaims(),\n \t\tcont... | 2026-02-20T12:17:37 |
mrdoob/three.js | f57f64429ea1a1b0c151a58f31fa0695bd08b58f | e6aeb3c99b102e9e8f34bf8cbc130ee7e840f0a4 | Update Sphere.js
Fix type in `fromJSON()`. | [
{
"path": "src/math/Sphere.js",
"patch": "@@ -405,7 +405,7 @@ class Sphere {\n \t * Returns a serialized structure of the bounding sphere.\n \t *\n \t * @param {Object} json - The serialized json to set the sphere from.\n-\t * @return {Box3} A reference to this bounding sphere.\n+\t * @return {Sphere} A ref... | 2025-11-28T11:00:53 |
denoland/deno | cca89e6dd0dcc83c82b91fb41d20d20578e7015f | 6f4d5e91b234e41247fd24d527aac424fb35595e | fix(ext/node): improve worker_threads path validation and error handling (#32791)
## Summary
- Implement `ERR_WORKER_PATH` error class for proper Node.js-compatible
path validation in `worker_threads.Worker`
- Reject string URL specifiers (`file://`, `data:`, `http://`,
`https://`) with `ERR_WORKER_PATH` (must use `n... | [
{
"path": "ext/node/polyfills/internal/errors.ts",
"patch": "@@ -5,7 +5,6 @@\n * ERR_MANIFEST_ASSERT_INTEGRITY\n * ERR_QUICSESSION_VERSION_NEGOTIATION\n * ERR_REQUIRE_ESM\n- * ERR_WORKER_PATH\n * ERR_QUIC_ERROR\n * ERR_SYSTEM_ERROR //System error, shouldn't ever happen inside Deno\n * ERR_TTY_INIT_FAI... | 2026-03-18T06:19:34 |
golang/go | 75fdbda51799a9f867b58a61004685d8637413e6 | 105b1e2757e8c0da9058a45c1e31c57849aedeae | cmd/go: update urls in documentation to go.dev
Update the urls in user facing documentation
and error messages to consistently use go.dev
instead of golang.org
Change-Id: I48866eb03036221035bcf204a892d9a3b4c214bb
Reviewed-on: https://go-review.googlesource.com/c/go/+/754460
LUCI-TryBot-Result: Go LUCI <golang-scoped@... | [
{
"path": "src/cmd/go/alldocs.go",
"patch": "@@ -199,7 +199,7 @@\n //\t\tBy default, if a vendor directory is present and the go version in go.mod\n //\t\tis 1.14 or higher, the go command acts as if -mod=vendor were set.\n //\t\tOtherwise, the go command acts as if -mod=readonly were set.\n-//\t\tSee https... | 2026-03-11T19:51:44 |
tensorflow/tensorflow | a31f3070b649de2b6ae66d56b87a826fa26967a5 | f057286b57aab4f15ff08b6eb130a7fc653e01af | PR #39797: [xla:gpu] Track while loop state in Thunk progerss tracking
Imported from GitHub PR https://github.com/openxla/xla/pull/39797
Track inside what loop nest thunks are executed, because it's critical for debugging deadlocks that happen inside while loop iteration and thunks printed in reverse order, which is ... | [
{
"path": "third_party/xla/xla/backends/gpu/runtime/BUILD",
"patch": "@@ -2872,6 +2872,7 @@ cc_library(\n \":annotation\",\n \":collective_thunk\",\n \":thunk\",\n+ \":while_loop\",\n \"//xla:util\",\n \"//xla/stream_executor:event\",\n \"//xla/stream_e... | 2026-03-26T09:33:06 |
mrdoob/three.js | 7b82fad194690ab02bc0e0795482ce6eeb2f868b | 122c7c84bc1ec17b1c1403b4d9c0ce3fee5a6f1c | Revert "Revert "Physics Addons: Add errors when trying to use `getShape()` for unsupported geometry types."" (#32394) | [
{
"path": "examples/jsm/physics/AmmoPhysics.js",
"patch": "@@ -66,6 +66,8 @@ async function AmmoPhysics() {\n \n \t\t}\n \n+\t\tconsole.error( 'AmmoPhysics: Unsupported geometry type:', geometry.type );\n+\n \t\treturn null;\n \n \t}",
"additions": 2,
"deletions": 0,
"language": "JavaScript"
}... | 2025-11-27T20:54:50 |
swiftlang/swift | 8b3f775673dcf5cca0a77a1da95b7fb4fed91b46 | ce2de43ecbb5c9d51e92a2441a65ecc8366c64f7 | COWOpts: Don't look through struct_extract/destructure_struct for multi-field structs
`LifetimeDependenceScopeFixup` can insert `end_cow_mutation_addr` on a struct address containing multiple COW fields, `SimplifyEndCOWMutationAddr` lowers it to an `end_cow_mutation` on the struct.
`skipStructAndExtract()` in COWOpts... | [
{
"path": "lib/SILOptimizer/Transforms/COWOpts.cpp",
"patch": "@@ -111,11 +111,17 @@ static SILValue skipStructAndExtract(SILValue value) {\n continue;\n }\n if (auto *sei = dyn_cast<StructExtractInst>(value)) {\n+ if (sei->getStructDecl()->getStoredProperties().size() != 1) {\n+ r... | 2026-03-24T19:52:34 |
denoland/deno | 6f4d5e91b234e41247fd24d527aac424fb35595e | 9f327bb9ab0dd08ae5999678f21b6befd4a3b6f9 | fix(ext/node): fix TLA stall with native TTY handles and make stdio indestructible (#32792)
## Summary
- Fix TLA (top-level await) stall detection to account for active native
libuv-compat TTY handles. Without this, any `await` on readline/stdin
with a non-stdout output stream (like `@inquirer/prompts`' MuteStrea... | [
{
"path": "ext/node/polyfills/process.ts",
"patch": "@@ -1244,6 +1244,22 @@ internals.__bootstrapNodeProcess = function (\n if (io.stdout.isTerminal()) {\n /** https://nodejs.org/api/process.html#process_process_stdout */\n stdout = process.stdout = new TTYWriteStream(1);\n+ // Match No... | 2026-03-18T06:06:08 |
golang/go | c697e0fc482de62da72d4470ac082bf5e5720642 | f3966c1ada0a0ddaea873f979ee9165649eb11b7 | spec: fix prose in rule for keys of struct composite literals
Use "promoted" rather than "embedded" because the selector
provides access to a promoted field.
For #9859.
Change-Id: If62c5260ab7bdfef3d6ea4ff770543ad668ac9b6
Reviewed-on: https://go-review.googlesource.com/c/go/+/755782
LUCI-TryBot-Result: Go LUCI <gola... | [
{
"path": "doc/go_spec.html",
"patch": "@@ -1,6 +1,6 @@\n <!--{\n \t\"Title\": \"The Go Programming Language Specification\",\n-\t\"Subtitle\": \"Language version go1.27 (March 5, 2026)\",\n+\t\"Subtitle\": \"Language version go1.27 (March 16, 2026)\",\n \t\"Path\": \"/ref/spec\"\n }-->\n \n@@ -3211,13 +321... | 2026-03-16T22:30:40 |
tensorflow/tensorflow | 0f33775c9bc621e79c626965f69d88109aafef0f | 713fd1ab29146bf82f4e2bbab650c6e5dbeff477 | PR #39673: [ROCm] Fix ShardedAutotuningWorks test for ROCm platform
Imported from GitHub PR https://github.com/openxla/xla/pull/39673
📝 Summary of Changes
Commit c28a2c59af added a backend fingerprint to the KV store key used in sharded autotuning. The test hardcodes the CUDA backend fingerprint (4253997026), but RO... | [
{
"path": "third_party/xla/xla/tools/multihost_hlo_runner/functional_hlo_runner_test.cc",
"patch": "@@ -33,6 +33,7 @@ limitations under the License.\n #include \"absl/status/statusor.h\"\n #include \"absl/strings/ascii.h\"\n #include \"absl/strings/match.h\"\n+#include \"absl/strings/str_cat.h\"\n #include ... | 2026-03-26T08:56:49 |
kubernetes/kubernetes | b4220f8b08949c115258abed0398512bf54ffc48 | f7f694e5e066149a41a7f94394f84977fc6d0ea6 | Add credential plugin`kubectl kuberc set` options (#137300)
* Add <...> kuberc set --section=credentialplugin
The requirement that the `--command` option be provided is no longer
valid; a solution will need to be found.
Signed-off-by: Peter Engelbert <pmengelbert@gmail.com>
* Remove required mark on `--command` fla... | [
{
"path": "staging/src/k8s.io/kubectl/pkg/cmd/kuberc/set.go",
"patch": "@@ -22,20 +22,25 @@ import (\n \t\"strings\"\n \n \t\"github.com/spf13/cobra\"\n-\t\"k8s.io/kubectl/pkg/kuberc\"\n \n \tmetav1 \"k8s.io/apimachinery/pkg/apis/meta/v1\"\n+\tutilerrors \"k8s.io/apimachinery/pkg/util/errors\"\n \t\"k8s.io/... | 2026-03-12T17:19:41 |
mrdoob/three.js | 122c7c84bc1ec17b1c1403b4d9c0ce3fee5a6f1c | 58d9d506e5bbc59a9c2d6583013c06460dd54299 | Revert "Physics Addons: Add errors when trying to use `getShape()` for unsupported geometry types." (#32393) | [
{
"path": "examples/jsm/physics/AmmoPhysics.js",
"patch": "@@ -66,8 +66,6 @@ async function AmmoPhysics() {\n \n \t\t}\n \n-\t\tconsole.error( 'AmmoPhysics: Unsupported geometry type:', geometry.type );\n-\n \t\treturn null;\n \n \t}",
"additions": 0,
"deletions": 2,
"language": "JavaScript"
}... | 2025-11-27T20:49:41 |
golang/go | dbb3793b59371828cd1463bd3796f586ad4e6433 | 5262546d8296a6bed3fcd385385db51bd3e5f48b | slices: document that Delete, DeleteFunc, Replace, Insert modify the slice
Rephrase the opening doc comments for Delete, DeleteFunc, Replace, and
Insert to clarify that these functions modify s in place and return the
modified slice, following the pattern used by Compact.
Fixes #64329
Change-Id: I82c381a350b71efc819... | [
{
"path": "src/slices/slices.go",
"patch": "@@ -125,8 +125,8 @@ func ContainsFunc[S ~[]E, E any](s S, f func(E) bool) bool {\n \treturn IndexFunc(s, f) >= 0\n }\n \n-// Insert inserts the values v... into s at index i,\n-// returning the modified slice.\n+// Insert modifies s in place by inserting the value... | 2026-02-17T01:13:17 |
swiftlang/swift | 7eb94c9204c22ad4dcc2de6140c8d1ab3c007398 | 764fd166056c8fcc76093d4cff7d940d88e0db58 | [test][android] Fix one test and disable others for NDK 28 and API 24 (#88056)
This fixes the failing IRGen test after
swiftlang/swift-docker#528 and bring those disabled tests for NDK 28
here instead. | [
{
"path": "test/IRGen/availability_android.swift",
"patch": "@@ -1,13 +1,13 @@\n-// RUN: %target-swift-frontend -target aarch64-unknown-linux-android24 -primary-file %s -emit-ir | %FileCheck %s --check-prefix=CHECK-24\n-// RUN: %target-swift-frontend -target aarch64-unknown-linux-android28 -primary-file %s ... | 2026-03-24T19:39:04 |
denoland/deno | 6aa3354a7faa644abe89bdcb66c04fde72830cd3 | e4ae3116eb983ef4a0f2776218abfd8f31d2f893 | fix(ext/node): fix Buffer.concat, expose internal/buffer, implement markAsUntransferable (#32760)
## Summary
Fixes 3 Buffer compat tests from #32706 and fixes #31824.
- **Buffer.concat**: Use `TypedArrayPrototypeGetByteLength` instead of
`.length` to prevent spoofed length getters from causing uninitialized
memory e... | [
{
"path": "ext/node/lib.rs",
"patch": "@@ -184,6 +184,7 @@ deno_core::extension!(deno_node,\n ops::blocklist::op_blocklist_add_subnet,\n ops::blocklist::op_blocklist_check,\n \n+ ops::buffer::op_mark_as_untransferable,\n ops::buffer::op_is_ascii,\n ops::buffer::op_is_utf8,\n ops::buff... | 2026-03-17T21:09:27 |
mrdoob/three.js | 5240f294f9ce655d05eaeabf3c8f5491a3a1d335 | 9a0da1a5de93f61f092d878bb44e6ccaeda50285 | StructTypeNode: Fix memory length calculations (#32377) | [
{
"path": "src/nodes/core/NodeUtils.js",
"patch": "@@ -181,22 +181,22 @@ export function getMemoryLengthFromType( type ) {\n }\n \n /**\n- * Returns the byte boundary for the given data type.\n+ * Returns the alignment requirement for the given data type.\n *\n * @private\n * @method\n * @param {string}... | 2025-11-26T21:25:55 |
tensorflow/tensorflow | 713fd1ab29146bf82f4e2bbab650c6e5dbeff477 | 94294f958014288f773826aadf584773f8fdc44f | Fix 6 IncludeCleaner findings
PiperOrigin-RevId: 889698020 | [
{
"path": "third_party/xla/xla/backends/gpu/tests/BUILD",
"patch": "@@ -1141,6 +1141,7 @@ cc_library(\n \":hlo_pjrt_gpu_test_base\",\n \"//xla:literal\",\n \"//xla:xla_data_proto_cc\",\n+ \"//xla:xla_proto_cc\",\n \"//xla/backends/gpu/target_config\",\n \"//xla... | 2026-03-26T08:56:12 |
golang/go | 5262546d8296a6bed3fcd385385db51bd3e5f48b | a8a5b81473c00e857dd9963dc027dc1c10016d79 | cmd/go/internal/test: enable stdversion by default
Also, update the list of available checks, including
using the non-deprecated names.
Updates #18085
Fixes #77729
Change-Id: Ic31a53fda5628f0de85c7f447182f0d4b1cdcdb2
Reviewed-on: https://go-review.googlesource.com/c/go/+/755240
Reviewed-by: Michael Matloob <matloob@... | [
{
"path": "src/cmd/go/alldocs.go",
"patch": "@@ -1875,11 +1875,11 @@\n // and its test source files to identify significant problems. If go vet\n // finds any problems, go test reports those and does not run the test\n // binary. Only a high-confidence subset of the default go vet checks are\n-// used. That... | 2026-03-13T21:05:17 |
mrdoob/three.js | 17fd5bf424395d4a40b2cb8db21363c6b9f09542 | 39d47057351aac9af7ef68ffb27897ee831aba8f | Dev: Fix high severity vulnerability. (#32374) | [
{
"path": "package-lock.json",
"patch": "@@ -1722,7 +1722,6 @@\n \"integrity\": \"sha512-promo4eFwuiW+TfGxhi+0x3czqTYJkG8qB17ZUJiVF10Xm7NLVRSLUsfRTU/6h1e24VvRnXCx+hG7li58lkzog==\",\n \"dev\": true,\n \"license\": \"MIT\",\n- \"peer\": true,\n \"dependencies\": {\n \"@typ... | 2025-11-26T12:21:46 |
golang/go | a8a5b81473c00e857dd9963dc027dc1c10016d79 | 655aa335c951c3b1a61560016ad2cd2f6eac1684 | cmd/go: ensure go.mod and go.sum are consistent after `go get -tool`
The issue was that `go get -tool` could trigger module upgrades (due to
the tool's own requirements) that were not correctly captured by the
final consistency check in `checkPackageProblems`. This happened because
`updateTools` was being called after... | [
{
"path": "src/cmd/go/internal/modget/get.go",
"patch": "@@ -402,14 +402,14 @@ func runGet(ctx context.Context, cmd *base.Command, args []string) {\n \t\t}\n \t}\n \n+\tif *getTool {\n+\t\tupdateTools(moduleLoaderState, ctx, r, queries, &opts)\n+\t}\n+\n \t// If a workspace applies, checkPackageProblems wil... | 2026-02-24T17:00:40 |
denoland/deno | e4ae3116eb983ef4a0f2776218abfd8f31d2f893 | 922a9cafafc54d6f1aee1d4ba4dfd87a11abef85 | fix(ext/node): rewrite node:tty on top of uv compat (#32777)
Fixed https://github.com/denoland/deno/issues/30075
A decent chunk of this is written by claude, mostly uv_tty. | [
{
"path": "ext/node/lib.rs",
"patch": "@@ -352,11 +352,15 @@ deno_core::extension!(deno_node,\n ops::udp::op_node_udp_leave_source_specific,\n ops::udp::op_node_udp_send,\n ops::udp::op_node_udp_recv,\n+ ops::stream_wrap::op_stream_base_register_state,\n+ ops::tty_wrap::op_tty_check_fd_per... | 2026-03-17T19:55:36 |
mrdoob/three.js | a95af48c45ed2400cbce960f30b22c9aab0034a4 | 7c3d020650e36b57a49bd015d7e8b8bd91f129f0 | Update GTAONode.js
Fix typo. | [
{
"path": "examples/jsm/tsl/display/GTAONode.js",
"patch": "@@ -29,7 +29,7 @@ let _rendererState;\n * postProcessing.outputNod = aoPass.getTextureNode().mul( scenePassColor );\n * ```\n *\n- * Reference: [Practical Real-Time Strategies for Accurate Indirect Occlusionnpmm](https://www.activision.com/cdn/r... | 2025-11-26T11:49:41 |
swiftlang/swift | 64fb3cb9255b988355ade3c3a86ba052a5df161f | 5b817e726980c08eab5e6d13b4d98198983030e7 | [cxx-interop] Fix a missing offset adjustment when calling FRTs
We already generate forwarding methods that can fix up the base offset
when we call base methods. Unfortunately, these forwarding methods were
not used when we emitted a call to a refcount operation of a foreign
reference type where the annotation is on t... | [
{
"path": "include/swift/AST/ClangModuleLoader.h",
"patch": "@@ -223,6 +223,10 @@ class ClangModuleLoader : public ModuleLoader {\n /// Returns the original method if \\param decl is a clone from a base class\n virtual ValueDecl *getOriginalForClonedMember(const ValueDecl *decl) = 0;\n \n+ /// Returns ... | 2026-03-24T16:01:52 |
tensorflow/tensorflow | a7be2c3ba31be4ec2671d858fb04b942a57f1d13 | 336096726d7707656a3700622436c21379c2b10b | Fix the algebraic simplifier conv->multiply pass to not consider convolutions
with sparse kernel.
PiperOrigin-RevId: 889626445 | [
{
"path": "third_party/xla/xla/hlo/transforms/simplifiers/algebraic_simplifier.cc",
"patch": "@@ -9947,6 +9947,11 @@ absl::StatusOr<bool> AlgebraicSimplifierVisitor::SimplifyConvToMultiply(\n return false;\n }\n \n+ // Don't simplify conv to multiply for sparse convs.\n+ if (convolution->sparsity_co... | 2026-03-26T05:48:10 |
golang/go | 48bbe7996d1e53c39188fba941bc3f9e523c8b94 | 6614616b7576a8011053c4b50fbb5e64d469837b | net/http/internal/http2: deflake TestServer_Rejects_Too_Many_Streams
This test contains a race condition in the server handler:
inHandler <- streamID
<-leaveHandler
We assume that all requests queue reading from leaveHandler in order,
but it is possible for the second request (stream id 3) to arrive at
leaveHandle... | [
{
"path": "src/net/http/internal/http2/server_test.go",
"patch": "@@ -2386,18 +2386,7 @@ func TestServer_Rejects_Too_Many_Streams(t *testing.T) {\n \tsynctestTest(t, testServer_Rejects_Too_Many_Streams)\n }\n func testServer_Rejects_Too_Many_Streams(t testing.TB) {\n-\tinHandler := make(chan uint32)\n-\tlea... | 2026-03-13T21:43:22 |
mrdoob/three.js | 7c3d020650e36b57a49bd015d7e8b8bd91f129f0 | 3b0c9cd4760c0b75f3fa4ce1ac5f882e37f68fd3 | Update GTAONode.js
Fix link. | [
{
"path": "examples/jsm/tsl/display/GTAONode.js",
"patch": "@@ -29,7 +29,7 @@ let _rendererState;\n * postProcessing.outputNod = aoPass.getTextureNode().mul( scenePassColor );\n * ```\n *\n- * Reference: {@link https://www.activision.com/cdn/research/Practical_Real_Time_Strategies_for_Accurate_Indirect_O... | 2025-11-26T11:49:24 |
kubernetes/kubernetes | 8d0f80e4ed87658c0e05b9db0690927547be6ad5 | f25830be53bcb29f78aa39be21794d5fc5c1109e | staging/testdata: Remove UserNamespacesSupport reference
This is just a sed to remove the old data from the text fixtures too.
While two files are clearly test data given that they include testdata
in their name, these two is not so obvious but are also test data:
* openapi/swagger-with-shared-parameters.json: is r... | [
{
"path": "staging/src/k8s.io/cli-runtime/artifacts/openapi/swagger-with-shared-parameters.json",
"patch": "@@ -8193,7 +8193,7 @@\n \"type\": \"boolean\"\n },\n \"hostUsers\": {\n- \"description\": \"Use the host's user namespace. Optional: Default to true. If set to true ... | 2026-02-13T15:04:51 |
denoland/deno | 9be5e367e0e902e343de48f1b72528110fa887d1 | 21a81528207918a0df439698ab1c946748ae453b | fix(ext/node): allow passing `FileHandle` as `fd` argument for `WriteStream` and `ReadStream` (#32770)
Towards #29972
Allows the following tests to pass:
-
https://github.com/nodejs/node/blob/v25.8.1/test/parallel/test-fs-read-stream-file-handle.js
-
https://github.com/nodejs/node/blob/v25.8.1/test/parallel/test-fs-w... | [
{
"path": "ext/node/polyfills/internal/fs/handle.ts",
"patch": "@@ -98,8 +98,8 @@ const kRefs = Symbol(\"kRefs\");\n const kClosePromise = Symbol(\"kClosePromise\");\n const kCloseResolve = Symbol(\"kCloseResolve\");\n const kCloseReject = Symbol(\"kCloseReject\");\n-const kRef = Symbol(\"kRef\");\n-const k... | 2026-03-17T16:08:02 |
swiftlang/swift | 52a77cefd4a43fbb3de91040c7679ccf5c4b8824 | 14cd8ff81d7e00243e39fd349641b56db3f3b2d4 | ASTGen: Fix a no-usage warning in Generics.swift. | [
{
"path": "lib/ASTGen/Sources/ASTGen/Generics.swift",
"patch": "@@ -209,7 +209,7 @@ extension ASTGenVisitor {\n let bridgedIntExpr = self.generate(integerLiteralExpr: intLitExpr)\n bridgedIntExpr.setNegative(loc: self.generateSourceLoc(op))\n bridgedArgumentExpr = bridgedIntExpr.asExpr\n- ... | 2026-03-24T16:35:12 |
tensorflow/tensorflow | 90046b43206ea9ecacc7548941f50003c82eabf4 | b2e2ce804a27ab65a2fefd181250680dd2ae660e | Fix NCCL use rules_python py_binary to accommodate rules_python 1.8.4
PiperOrigin-RevId: 889528551 | [
{
"path": "third_party/xla/third_party/nccl/archive.BUILD",
"patch": "@@ -15,6 +15,7 @@ load(\n \"@local_config_nccl//:generated_names.bzl\",\n \"GENERATED_SOURCES\",\n )\n+load(\"@rules_python//python:defs.bzl\", \"py_binary\")\n \n licenses([\"notice\"])\n ",
"additions": 1,
"deletions": 0... | 2026-03-26T00:59:55 |
golang/go | 9ce4f3876e89a43dbd8508cb2762a2e4644dfe84 | b3ee07636a1fe4ba5129705fd4692b442cf6b6f0 | cmd/compile: keep blank nodes alive in b.loop
The current bloop pass implementation skips blank nodes silently. This
CL makes it aware of that and keep them alive in temps.
Fixes #77654.
Change-Id: Iaffa5194ba1f0fe8d7c80a4c8e5c9a65a47bf534
Reviewed-on: https://go-review.googlesource.com/c/go/+/754920
LUCI-TryBot-Res... | [
{
"path": "src/cmd/compile/internal/bloop/bloop.go",
"patch": "@@ -216,11 +216,49 @@ func preserveCallArgs(curFn *ir.Func, call *ir.CallExpr) ir.Node {\n func preserveStmt(curFn *ir.Func, stmt ir.Node) ir.Node {\n \tswitch n := stmt.(type) {\n \tcase *ir.AssignStmt:\n+\t\t// If the left hand side is blank, ... | 2026-03-12T20:56:24 |
mrdoob/three.js | 3b1e4d534d2d1959cf533a5a8ee7c8c75297c0ef | 0537b25f3f448dfa2837da778b358d8940dd732c | DecalGeometry: Fix typo (#32366) | [
{
"path": "examples/jsm/geometries/DecalGeometry.js",
"patch": "@@ -35,7 +35,7 @@ class DecalGeometry extends BufferGeometry {\n \t * @param {Mesh} [mesh] - The base mesh the decal should be projected on.\n \t * @param {Vector3} [position] - The position of the decal projector.\n \t * @param {Euler} [orient... | 2025-11-25T22:42:21 |
denoland/deno | 21a81528207918a0df439698ab1c946748ae453b | 832fbcf1099396fc0d98917d40ae1373ae9257d8 | fix(process): allow unref'd child processes to outlive parent (#32563)
## Summary
- Fixes `child_process.unref()` killing the child process when the
parent exits, instead of letting it continue running independently
(Node.js behavior)
- Replaces tokio's `kill_on_drop(true)` with a custom `Drop` on
`ChildResource` tha... | [
{
"path": "ext/process/40_process.js",
"patch": "@@ -6,6 +6,8 @@ import {\n op_run,\n op_run_status,\n op_spawn_child,\n+ op_spawn_child_ref,\n+ op_spawn_child_unref,\n op_spawn_kill,\n op_spawn_sync,\n op_spawn_wait,\n@@ -401,12 +403,18 @@ class ChildProcess {\n core.refOpPromise(this.#wa... | 2026-03-17T16:03:03 |
golang/go | b3ee07636a1fe4ba5129705fd4692b442cf6b6f0 | 0dc89195f9aece70476320be3fc9d6d657904056 | net/http/internal/http2: drop benchmarks which use synctest
Drop a number of low-level benchmarks which use internal test APIs
that now use synctest. Synctest and benchmarks don't really mix;
we don't necessarily expect bubbled code to perform in the same
fashion as unbubbled code.
Fixes #78114
Change-Id: I23f0a5d29... | [
{
"path": "src/net/http/internal/http2/export_test.go",
"patch": "@@ -166,10 +166,6 @@ func SummarizeFrame(f Frame) string {\n \treturn summarizeFrame(f)\n }\n \n-func SetTestHookGetServerConn(t testing.TB, f func(*serverConn)) {\n-\tSetForTest(t, &testHookGetServerConn, f)\n-}\n-\n func init() {\n \ttestHo... | 2026-03-12T21:44:28 |
swiftlang/swift | 2016b41de5ad6d19f111cf8277e023b53c60a3cb | 14cd8ff81d7e00243e39fd349641b56db3f3b2d4 | Revert "Merge pull request #86773 from aeu/61733-error-message-improvement-ii"
This reverts commit b8459a8dbc2e0f8b4bb1003e638d0b8edc80fa6b. | [
{
"path": "lib/Sema/CSSimplify.cpp",
"patch": "@@ -1735,65 +1735,28 @@ static ConstraintSystem::TypeMatchResult matchCallArguments(\n }\n }\n \n- auto shouldOpenExistentialArgument =\n- [&]() -> std::optional<std::pair<TypeVariableType *, Type>> {\n- Type argTypeForOpening... | 2026-03-24T16:31:04 |
mrdoob/three.js | aff821740942de1368d8d2a2fc426d4a4e06b747 | 53e74515e3a4d18d1ca84d5b5973c8fae593a2eb | WebGPURenderer: Fix point light shadows. (#32365) | [
{
"path": "src/nodes/lighting/PointShadowNode.js",
"patch": "@@ -6,12 +6,57 @@ import { texture } from '../accessors/TextureNode.js';\n import { max, abs, sign } from '../math/MathNode.js';\n import { sub, div } from '../math/OperatorNode.js';\n import { renderGroup } from '../core/UniformGroupNode.js';\n+i... | 2025-11-25T21:36:31 |
tensorflow/tensorflow | d9727d409611b9e9aed5e776b00c6aa51bad3e1a | eda58fedb475fa64f23f768da36ee6406565ab33 | Fix deserialization of empty tuples in OriginalValue
The serialization of `OriginalValue` produced an ambiguous `OriginalValueProto` for an empty tuple `OriginalValue(Node::Tuple())` and a leaf node with a null value `OriginalValue(Node::Leaf(std::nullopt))`, causing `FromProto` to incorrectly deserialize empty tuples... | [
{
"path": "third_party/xla/xla/hlo/ir/hlo_original_value.cc",
"patch": "@@ -155,9 +155,9 @@ OriginalValueProto OriginalValue::ToProto() const {\n if (is_synthetic_call()) {\n original_value_proto.set_is_synthetic_call(true);\n } else {\n- tree().ForEachElement([&original_value_proto](\n- ... | 2026-03-25T21:54:58 |
denoland/deno | 974c6da2e9f587ca8a5ba44ca46911a345947815 | 40c1da687a9457ac48c9d711b99596e784e17be7 | fix(core): don't panic in to_v8_error when JS error builder callback fails (#32749)
## Summary
- When the JS error builder callback in `to_v8_error` throws (e.g. due
to stack overflow or `Object.prototype` / `Array.prototype` pollution),
fall back to returning the plain message string instead of panicking
- Adds a uni... | [
{
"path": "libs/core/error.rs",
"patch": "@@ -333,19 +333,14 @@ pub fn to_v8_error<'s, 'i>(\n match maybe_exception {\n Some(exception) => exception,\n None => {\n- let mut msg =\n- \"Custom error class must have a builder registered\".to_string();\n+ // The JS error builder callb... | 2026-03-17T15:06:27 |
golang/go | 9e2189ef8e04d2745d18ac870ae54dcdcbc008db | 75cfb36608a3457f182eb3284d99cd677f463dcb | cmd/go: isolate some very long tests
These tests are exceptionally slow. Move them out of the normal cmd/go
test suite to try to make it more reasonable to run 'go test cmd/go' in
a regular dev cycle. More tests can be moved here as needed. (Hopefully
this can also help longtest sharding)
Change-Id: I4ca0696d0afe72aa... | [
{
"path": "src/cmd/go/internal/verylongtest/script_test.go",
"patch": "@@ -0,0 +1,26 @@\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 verylongtest\n+\n+import (\n+\t\"cmd/inter... | 2026-03-10T21:34:02 |
mrdoob/three.js | 7aae387bd300ccf0bc299a882df81a64334acad4 | 877fc4388b452366d464b198fd9fcb67289ba8c6 | Inspector: Fix value update of number and checkbox elements. (#32355) | [
{
"path": "examples/jsm/inspector/ui/Values.js",
"patch": "@@ -157,6 +157,14 @@ class ValueNumber extends Value {\n \n \t}\n \n+\tsetValue( val ) {\n+\n+\t\tthis.input.value = val;\n+\n+\t\treturn super.setValue( val );\n+\n+\t}\n+\n \tgetValue() {\n \n \t\treturn parseFloat( this.input.value );\n@@ -194,6 ... | 2025-11-25T17:06:45 |
swiftlang/swift | 561f6492d4c5188c8119aeb98df6eeb1f0b4b78d | 14cd8ff81d7e00243e39fd349641b56db3f3b2d4 | [CSSimplify] Don't transfer typed throws onto the closure
This is a partial revert of https://github.com/swiftlang/swift/pull/87360
The change attempted to infer a concrete thrown error type onto
the closure but that leads to incorrect solutions when closure is
passed as an argument to an overloaded declaration becau... | [
{
"path": "lib/Sema/CSGen.cpp",
"patch": "@@ -1979,6 +1979,15 @@ namespace {\n if (closure->getThrowsLoc().isValid())\n return Type();\n \n+ // Thrown type inferred from context.\n+ if (auto contextualType =\n+ CS.getContextualType(closure, /*forConstraint=*/fa... | 2026-03-23T21:22:41 |
kubernetes/kubernetes | 66f49068b32917afcf77078cac44e60bd394adf3 | 57d7c4d812d6c3cccd6bbca9e6e9701ef63be122 | fixup: remove unused klog import; drop rogpeppe from apimachinery
Signed-off-by: Davanum Srinivas <davanum@gmail.com> | [
{
"path": "pkg/kubelet/kubelet_pods_test.go",
"patch": "@@ -51,7 +51,6 @@ import (\n \truntimeapi \"k8s.io/cri-api/pkg/apis/runtime/v1\"\n \t\"k8s.io/cri-streaming/pkg/streaming/portforward\"\n \t\"k8s.io/cri-streaming/pkg/streaming/remotecommand\"\n-\t\"k8s.io/klog/v2\"\n \t_ \"k8s.io/kubernetes/pkg/apis/c... | 2026-03-06T18:09:30 |
tensorflow/tensorflow | 11930945e50d4ba71952db9522d361f53d22f658 | 9b6097e5bce7ed17e6f1556a16b604a491ce7b37 | Fix forward on [XLA] Disalbe LICM on scalar and support Range calculation for kNegate
Reverts fd8aa6ff0b93c198cc2d48e300e469ddd0728bcc
PiperOrigin-RevId: 889427451 | [
{
"path": "third_party/xla/xla/service/collective_pipeliner_test.cc",
"patch": "@@ -6228,5 +6228,80 @@ ENTRY entry {\n }\n }\n \n+TEST_F(CollectivePipelinerTest, ForwardSinkWithNegatedConstantIndex) {\n+ constexpr absl::string_view hlo_string = R\"(\n+HloModule module\n+\n+ add {\n+ lhs = bf16[] para... | 2026-03-25T21:08:21 |
denoland/deno | 40c1da687a9457ac48c9d711b99596e784e17be7 | 457de64d2d322e448b171f614afa743c9fcd0123 | feat(ext/signals): support additional signals on Windows (#32689)
## Summary
- Add SIGTERM, SIGQUIT, SIGKILL, and SIGABRT to the Windows signal
dictionary, matching libuv's signal definitions
- `Deno.addSignalListener("SIGTERM", ...)` and
`Deno.addSignalListener("SIGQUIT", ...)` now work on Windows
- `Deno.kill()` on... | [
{
"path": "cli/tsc/dts/lib.deno.ns.d.ts",
"patch": "@@ -3694,8 +3694,8 @@ declare namespace Deno {\n * );\n * ```\n *\n- * _Note_: On Windows only `\"SIGINT\"` (CTRL+C) and `\"SIGBREAK\"` (CTRL+Break)\n- * are supported.\n+ * _Note_: On Windows only `\"SIGINT\"` (CTRL+C), `\"SIGBREAK\"` (CTRL... | 2026-03-17T14:47:03 |
mrdoob/three.js | 46521a47496742fd1f9697b77fef7a5be3a4b855 | 701e16e3e318a2ac9fd5627dcd40c7ac940cd813 | Update Raycaster.js
Fix copy/paste error. | [
{
"path": "src/core/Raycaster.js",
"patch": "@@ -38,7 +38,7 @@ class Raycaster {\n \t\tthis.near = near;\n \n \t\t/**\n-\t\t * All results returned are further away than near. Near can't be negative.\n+\t\t * All results returned are closer than far. Far can't be lower than near.\n \t\t *\n \t\t * @type {nu... | 2025-11-25T14:17:50 |
golang/go | 81908597a8787b09b1da90e7c6d3461b4302820f | 2cd24ace83bb8055280b9302efb1a21a14d7c763 | net/http/internal/http2: skip TestTransportNewClientConnCloseOnWriteError
Rewrote this test to use newTestClientConn, discovered that the assertion
that it's supposed to make (if a write to a conn fails, the conn is closed)
doesn't hold for all writes.
Skip the amended test for now.
For #67810
Change-Id: I1b696afcd... | [
{
"path": "src/net/http/internal/http2/transport_test.go",
"patch": "@@ -3850,31 +3850,36 @@ func testTransportBodyLargerThanSpecifiedContentLength(t testing.TB, body *chunk\n \t}\n }\n \n-type fakeConnErr struct {\n-\tnet.Conn\n-\twriteErr error\n-\tclosed bool\n-}\n-\n-func (fce *fakeConnErr) Write(b []... | 2026-03-10T21:02:10 |
tensorflow/tensorflow | f607fde75243ef7125c4987886d9dc31eebfc28a | b04a450108de99781770e30a670a1ec543eb00ba | [XLA:GPU]: Use error callbacks in the runtime to notify of async failures.
This change uses the error_cb to be notified of failures on the stream.
More specifically we cancel the promise that the host thread waits on if the
callback is never scheduled on the device.
PiperOrigin-RevId: 889184308 | [
{
"path": "third_party/xla/xla/pjrt/gpu/BUILD",
"patch": "@@ -784,3 +784,38 @@ cc_library(\n \"@com_google_absl//absl/status:statusor\",\n ],\n )\n+\n+xla_test(\n+ name = \"gpu_client_stream_error_test\",\n+ srcs = [\"gpu_client_stream_error_test.cc\"],\n+ backends = [\n+ \"nvgpu... | 2026-03-25T12:24:03 |
mrdoob/three.js | a893a58c6d74baedad531e347e9f86290f78f628 | e48e7eb3a0f6ce22e76b9fae9307fbc7248fcde0 | Update/fix restitution param desc in physics addons (#32341) | [
{
"path": "examples/jsm/physics/JoltPhysics.js",
"patch": "@@ -305,7 +305,7 @@ async function JoltPhysics() {\n \t\t * @name JoltPhysics#addMesh\n \t\t * @param {Mesh} mesh The mesh to add.\n \t\t * @param {number} [mass=0] The mass in kg of the mesh.\n-\t\t * @param {number} [restitution=0] The restitution... | 2025-11-24T19:32:14 |
denoland/deno | 457de64d2d322e448b171f614afa743c9fcd0123 | 44301a6b8e8559f59454e07ebd6d132371a1cc40 | fix(repl): fix panic when pressing Tab at beginning of line (#32750)
## Summary
- Fixes a panic (usize underflow) in the REPL when pressing Tab at the
beginning of a line that contains text
- The `get_expr_from_line_at_pos` function was looking at text *after*
the cursor to determine the completion expression, then su... | [
{
"path": "cli/tools/repl/editor.rs",
"patch": "@@ -169,15 +169,8 @@ fn is_word_boundary(c: char) -> bool {\n \n fn get_expr_from_line_at_pos(line: &str, cursor_pos: usize) -> &str {\n let start = line[..cursor_pos].rfind(is_word_boundary).unwrap_or(0);\n- let end = line[cursor_pos..]\n- .rfind(is_wor... | 2026-03-17T14:46:07 |
golang/go | a8a0dc9ea2e8cd37f667614e1b9a6dd5fc0af040 | 29ada7aa481930fbddab626e0686f84c1fcd63a2 | net/http/internal/http2: make server write errors sticky
After encountering a write error on a server's connection,
remember the error and reuse it for future writes.
Fixes a rare flakiness in TestServerWriteByteTimeout,
where we can sometimes attempt to flush the write buffer
after encountering a write timeout.
Chan... | [
{
"path": "src/net/http/internal/http2/http2.go",
"patch": "@@ -258,6 +258,7 @@ type bufferedWriter struct {\n \tconn net.Conn // immutable\n \tbw *bufio.Writer // non-nil when data is buffered\n \tbyteTimeout time.Duration // immutable, WriteByteTimeout\n+\twerr error\n }\n \n f... | 2026-03-10T16:38:22 |
mrdoob/three.js | 56ad6e05ab0e29e647f18dddf8dd0e491e209660 | e3be204eb54969e6fa7208576ec75537e7a869d7 | Controls: Fix stuck state when releasing mouse outside window (#32323) | [
{
"path": "examples/jsm/controls/OrbitControls.js",
"patch": "@@ -482,8 +482,8 @@ class OrbitControls extends Controls {\n \tdisconnect() {\n \n \t\tthis.domElement.removeEventListener( 'pointerdown', this._onPointerDown );\n-\t\tthis.domElement.removeEventListener( 'pointermove', this._onPointerMove );\n-\... | 2025-11-21T10:05:09 |
denoland/deno | 4ba47aaff3e9d9abecfb655b36cf736dfef3546a | 3998494368e93e46d8151e51d1b42152831b8b73 | perf(ext/web): add write buffering for FsFile.writable streams (#32676)
## Summary
- Add opt-in write buffering to `writableStreamForRid()` via a new
`bufferSize` option
- Enable 64KB buffering for `FsFile.writable` streams only — network
sockets, stdin, QUIC, and WebTransport remain unbuffered
- Small chunks are acc... | [
{
"path": "ext/fs/30_fs.js",
"patch": "@@ -663,7 +663,12 @@ class FsFile {\n \n get writable() {\n if (this.#writable === undefined) {\n- this.#writable = writableStreamForRid(this.#rid);\n+ this.#writable = writableStreamForRid(\n+ this.#rid,\n+ true,\n+ undefined,\n+ ... | 2026-03-17T14:42:20 |
golang/go | 26d5e160750b34a537cce0f1bfd47f663a110d27 | 6b7763407c83e9014c94997f1d454b175a6ea601 | runtime/cgo: clarify pinning requirement in Handle example
Add a comment to the void* example in the Handle documentation
highlighting that if the C code keeps the pointer after the call
returns, runtime.Pinner should be used to pin it.
The existing documentation already mentions this requirement in prose
(lines 69-7... | [
{
"path": "src/runtime/cgo/handle.go",
"patch": "@@ -97,6 +97,9 @@ import (\n //\tfunc main() {\n //\t\tval := \"hello Go\"\n //\t\th := cgo.NewHandle(val)\n+//\t\t// In this example, unsafe.Pointer(&h) is valid because myprint\n+//\t\t// does not keep a copy of the pointer. If the C code keeps the\n+//\t\t... | 2026-02-03T14:34:08 |
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.