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 |
|---|---|---|---|---|---|
mrdoob/three.js | 91aff1f4db105c9072ed883f0c1e4946c407d59a | 3ad2c780ed56ba135dd21e856cfddee7110c208f | DataTextureLoader: Fix log regression. (#33148) | [
{
"path": "src/loaders/DataTextureLoader.js",
"patch": "@@ -2,6 +2,7 @@ import { LinearFilter, LinearMipmapLinearFilter, ClampToEdgeWrapping } from '../\n import { FileLoader } from './FileLoader.js';\n import { DataTexture } from '../textures/DataTexture.js';\n import { Loader } from './Loader.js';\n+impor... | 2026-03-11T10:05:23 |
golang/go | f5d460c3ea59ab574d5908f66f604c573891ffe1 | 3b5954c6349d31465dca409b45ab6597e0942d9f | cmd/compile/testdata/script/issue77033.txt: make test panic
The issue77033.txt script is executed by
cmd/internal/script/scripttest/run.go
program, that uses 60 seconds interrupt timeout.
The timeout is implemented by calling
os/exec.Cmd.Process.Signal(os.Interrupt)
but that call is not implemented on Windows, and... | [
{
"path": "src/cmd/compile/testdata/script/issue77033.txt",
"patch": "@@ -1,5 +1,5 @@\n-go test -bench=Foo -cpuprofile=default.pgo\n-go test -bench=Foo -pgo=default.pgo\n+go test -bench=Foo -cpuprofile=default.pgo -timeout=30s\n+go test -bench=Foo -pgo=default.pgo -timeout=30s\n ! stdout 'FAIL'\n \n -- main... | 2026-04-06T02:38:21 |
tensorflow/tensorflow | 0116478e9f751de21d665db5524d840c3800e2c0 | e11ebea99e4acbcca47c24ba995fb03e3fa536aa | PR #40369: [ROCm] Skip unsupported unit tests on MI200
Imported from GitHub PR https://github.com/openxla/xla/pull/40369
Skip multi-pass dot tests for BF16 on MI200 since there's no valid algorithm being returned by hipBlasLt.
📝 Summary of Changes
hipBlasLt is returning empty algorithms for multi-pass bf16_bf16_f32... | [
{
"path": "third_party/xla/xla/backends/gpu/codegen/triton/dot_algorithms_test.cc",
"patch": "@@ -155,6 +155,10 @@ TEST_F(AlgorithmTest, Algorithm3xBF16) {\n }\n \n TEST_F(AlgorithmTest, Algorithm6xBF16) {\n+ if (GpuComputeComp().IsRocm() &&\n+ GpuComputeComp().rocm_compute_capability()->gfx9_mi200())... | 2026-04-08T06:04:10 |
denoland/deno | f79eedcfdb0adf29eaf029823d2b0422985a554d | 41fd4a1b3b362d8d79dee9d35cf0fc918444a25d | fix(ext/node): improve sign/verify crypto compat with Node.js (#33083)
## Summary
Sign/verify fixes extracted from #32745 for easier review:
- **DSA private key PEM**: Parse traditional "DSA PRIVATE KEY" format
(ASN.1 sequence with p, q, g, pub_key, priv_key)
- **Private-to-public key derivation**: When verify recei... | [
{
"path": "ext/node/polyfills/internal/crypto/sig.ts",
"patch": "@@ -13,6 +13,7 @@ const {\n import {\n op_node_create_private_key,\n op_node_create_public_key,\n+ op_node_derive_public_key_from_private_key,\n op_node_get_asymmetric_key_type,\n op_node_sign,\n op_node_sign_ed25519,\n@@ -101,6 +10... | 2026-03-31T06:56:26 |
kubernetes/kubernetes | ec6d65e33397e0739800a64d0fb32f8f9407b045 | 3b19886847bff7eb75188437718a94dd6df533f2 | test fixes | [
{
"path": "test/e2e/common/node/framework/podresize/resize.go",
"patch": "@@ -383,11 +383,6 @@ func WaitForPodResizeActuation(ctx context.Context, f *framework.Framework, podC\n \t\t\t\t}, nil\n \t\t\t}\n \n-\t\t\tif resourceErrs := VerifyPodStatusResources(pod, expectedContainers); resourceErrs != nil {\n-... | 2026-03-19T21:21:39 |
mrdoob/three.js | d6014c3e34c4aa32719fb5ea9349bc8f8f17ec95 | 63ddf2b9308c23f0451dc58c341a6b2f84fbbf2e | Dev: Fix vulnerabilities. (#33141) | [
{
"path": "package-lock.json",
"patch": "@@ -2654,9 +2654,9 @@\n }\n },\n \"node_modules/markdown-it\": {\n- \"version\": \"14.1.0\",\n- \"resolved\": \"https://registry.npmjs.org/markdown-it/-/markdown-it-14.1.0.tgz\",\n- \"integrity\": \"sha512-a54IwgWPaeBCAAsv13YgmALOF1elABB0... | 2026-03-09T11:07:10 |
golang/go | 3b5954c6349d31465dca409b45ab6597e0942d9f | a93560b70a65821ba8403b66261a3c23c93176c5 | cmd/compile: report error instead of ICE for oversized map element
When a map element or key type is 2GB or larger, the compiler crashed
with "internal compiler error: map elem too big" in reflectdata.ZeroAddr.
Add a size check in types.CalcSize for TMAP, similar to the existing
check for channel element types, so th... | [
{
"path": "src/cmd/compile/internal/types/size.go",
"patch": "@@ -366,6 +366,12 @@ func CalcSize(t *Type) {\n \t\tt.intRegs = 1\n \t\tCheckSize(t.Elem())\n \t\tCheckSize(t.Key())\n+\t\tif t.Elem().width >= 1<<31 {\n+\t\t\tbase.Errorf(\"map element type too large\")\n+\t\t}\n+\t\tif t.Key().width >= 1<<31 {\... | 2026-03-27T22:23:58 |
tensorflow/tensorflow | cc5a3101aec2701362267c321c632bd3dfca479d | 043b91289b9e6fc797396fcc08a88c66d910b2fb | Fix 16x8 FullyConnected to respect quantized_bias_type without bias tensor
Previously, the 16x8 FullyConnected operator evaluated in TFLite would only
use a 64-bit accumulator if an explicit 64-bit bias tensor was provided. If
the bias tensor was omitted (null), the operator bypassed the
quantized_bias_type parameter ... | [
{
"path": "tensorflow/lite/kernels/fully_connected.cc",
"patch": "@@ -1791,7 +1791,8 @@ TfLiteStatus EvalQuantized(TfLiteContext* context, TfLiteNode* node,\n }\n \n if (kernel_type == kReference || has_non_zero_point ||\n- (bias && bias->type == kTfLiteInt64)) {\n+ ... | 2026-04-07T20:44:10 |
denoland/deno | 41fd4a1b3b362d8d79dee9d35cf0fc918444a25d | 4678f77132c944747853d90a4f1648fb7727706b | fix(ext/node): return pid from spawnSync (#33081)
## Summary
- Returns `pid` from `op_spawn_sync` so `child_process.spawnSync()`
results include the `pid` field as Node.js expects
- Factored out from #32810
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com> | [
{
"path": "ext/node/polyfills/internal/child_process.ts",
"patch": "@@ -1728,6 +1728,8 @@ export function spawnSync(\n stderr = stderr && stderr.toString(encoding);\n }\n \n+ // deno-lint-ignore no-explicit-any\n+ result.pid = (output as any)._pid;\n result.status = status;\n result.... | 2026-03-30T17:56:55 |
mrdoob/three.js | c2adffecadd4704bce7f170918b68dbe9df5d795 | 2014dd06ef2f8478f576f3acf528d0b568340887 | WebGPURenderer: Fix WebXR sampling array-texture (#33132) | [
{
"path": "src/nodes/accessors/TextureNode.js",
"patch": "@@ -555,7 +555,7 @@ class TextureNode extends UniformNode {\n \n \t\t\t\tlet finalDepthSnippet = depthSnippet;\n \n-\t\t\t\tif ( finalDepthSnippet === null && texture.isArrayTexture ) {\n+\t\t\t\tif ( finalDepthSnippet === null && texture.isArrayText... | 2026-03-07T09:13:41 |
golang/go | 666e8c59c9211eae61e31f39ada1c5eed3ad6e11 | e76c910108577c93651dff7481034d2d5b933c14 | cmd/compile: improve Mul to Left Shift rules
- fix a bug where it wouldn't recognize 1<<63 as a power of two
- remove the IsSigned check; there is no such thing as a signed Mul
If the rule works for signed numbers it works for unsigned ones too.
Even if the intermediary steps makes no sense, it ends up wrapping
... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/generic.rules",
"patch": "@@ -1080,22 +1080,22 @@\n // Excluded from early opt so that prove can recognize mod\n // by the x - (x/d)*d pattern.\n // (Runs during \"middle opt\" and \"late opt\".)\n-(Mul8 <t> x (Const8 [c])) && isPowerOfTwo(c) && v.Block.Func.pa... | 2026-03-29T05:31:38 |
tensorflow/tensorflow | 33d41705d318b2840323592464e62f54369a9293 | 1fdec8c3fd6fb081bd7af6a4ee5f849bd7ebdc2c | PR #40506: [XLA:GPU][oneAPI][Bugfix] Fix CI build failures
Imported from GitHub PR https://github.com/openxla/xla/pull/40506
This PR fixes oneAPI CI build failures due to
- missing header file `xla/tsl/platform/errors.h` in `xla/stream_executor/sycl/sycl_gpu_runtime.cc`
- missing definition of pure virtual function ... | [
{
"path": "third_party/xla/xla/stream_executor/sycl/BUILD",
"patch": "@@ -444,6 +444,7 @@ sycl_library(\n ],\n deps = [\n \":sycl_status\",\n+ \"//xla/tsl/platform:errors\",\n \"//xla/tsl/platform:statusor\",\n \"@com_google_absl//absl/base\",\n \"@com_google_a... | 2026-04-07T19:57:01 |
kubernetes/kubernetes | 3b19886847bff7eb75188437718a94dd6df533f2 | 466e5d4720ba2646c10cfa5674188d71a3f93479 | Test fixes - update expected restart count for containers with no resources that inherit changes due to pod-level modifications | [
{
"path": "test/e2e/common/node/pod_level_resources_resize.go",
"patch": "@@ -79,10 +79,11 @@ func doGuaranteedPodLevelResizeTests(f *framework.Framework) {\n \t\t\t\t}\n \t\t\t\t// For containers where the resize policy is \"restart\", we expect a restart.\n \t\t\t\texpectRestart := int32(0)\n-\t\t\t\tif c... | 2026-03-19T07:02:08 |
denoland/deno | 4678f77132c944747853d90a4f1648fb7727706b | 5ab15413e23b4df0c731a10dc1d7bea39a8fdf9e | fix(ext/node): improve GCM cipher compat with Node.js (#33079)
## Summary
GCM-only fixes extracted from #32745 for easier review:
- **Empty IV validation**: `createCipheriv`/`createDecipheriv` with
empty IV now throws "Invalid initialization vector" (was silently
accepted)
- **Auth tag length validation**: `setAuthT... | [
{
"path": "ext/node/polyfills/internal/crypto/cipher.ts",
"patch": "@@ -295,6 +295,9 @@ Cipheriv.prototype.setAAD = function (\n plaintextLength: number;\n },\n ) {\n+ if (this._finalized) {\n+ throw new ERR_CRYPTO_INVALID_STATE(\"setAAD\");\n+ }\n op_node_cipheriv_set_aad(this._context, buffer... | 2026-03-30T17:01:38 |
mrdoob/three.js | 2014dd06ef2f8478f576f3acf528d0b568340887 | d03d54836239e894746cceeeb3afdb41b306fa9b | Source: Fix `getSize()` for `VideoFrame`. (#33131) | [
{
"path": "src/textures/Source.js",
"patch": "@@ -90,7 +90,7 @@ class Source {\n \n \t\t} else if ( ( typeof VideoFrame !== 'undefined' ) && ( data instanceof VideoFrame ) ) {\n \n-\t\t\ttarget.set( data.displayHeight, data.displayWidth, 0 );\n+\t\t\ttarget.set( data.displayWidth, data.displayHeight, 0 );\n... | 2026-03-07T09:12:02 |
golang/go | 0d0799f055dcc9b3b41df74bee3fbe398ae2f0e7 | ad7d6071ac1955e76e7407d8345cf18f354a1693 | net/mail: fix quadratic complexity in consumeComment
consumeComment builds the comment string by repeated string
concatenation inside a loop. Each concatenation copies the
entire string built so far, making the function O(n^2) in the
depth of nested comments.
Replace the concatenation with a strings.Builder, which
am... | [
{
"path": "src/net/mail/message.go",
"patch": "@@ -832,7 +832,7 @@ func (p *addrParser) consumeComment() (string, bool) {\n \t// '(' already consumed.\n \tdepth := 1\n \n-\tvar comment string\n+\tvar comment strings.Builder\n \tfor {\n \t\tif p.empty() || depth == 0 {\n \t\t\tbreak\n@@ -846,12 +846,12 @@ fu... | 2026-04-04T05:17:25 |
denoland/deno | 4738ecd0c1e525ba9c17c9887eb8e14fe1956a47 | ca989a0306e61ba65ad53d1981d4d25036bbac8d | fix(ext/node): drain pending messages before emitting worker exit event (#32623)
- Fixes a race condition in `worker_threads` where the `exit` event
could fire before pending `message` events were delivered
- In Node.js, `message` is guaranteed to fire before `exit` — our
implementation had two independent polling loo... | [
{
"path": "ext/node/polyfills/worker_threads.ts",
"patch": "@@ -208,6 +208,7 @@ class NodeWorker extends EventEmitter {\n #refed = true;\n #messagePromise = undefined;\n #controlPromise = undefined;\n+ #messageLoopPromise = undefined;\n #workerOnline = false;\n #exited = false;\n // \"RUNNING\"... | 2026-03-30T14:56:54 |
tensorflow/tensorflow | ebd4546d496ecf9a41d325fa252a17e0da4a69ae | e9b8bc777e146c1421bd655447b2f7861cce8736 | Fix BatchMatMul shape compression optimization when adj_x is true
PiperOrigin-RevId: 895970187 | [
{
"path": "tensorflow/lite/kernels/batch_matmul.cc",
"patch": "@@ -764,7 +764,11 @@ TfLiteStatus Eval(TfLiteContext* context, TfLiteNode* node) {\n // Compress ops where rhs shape is [..., 1, X, Y] and lhs shape is\n // [..., Q, R, S] which is equivalent to rhs: [..., X, Y] and\n // lhs: [..., Q * R, ... | 2026-04-07T17:26:48 |
mrdoob/three.js | d03d54836239e894746cceeeb3afdb41b306fa9b | 02c84b439b32e6eff5558102f4b1fbbd4dbbf1c3 | Fix typo in Texture.js (#33130) | [
{
"path": "src/textures/Texture.js",
"patch": "@@ -415,7 +415,7 @@ class Texture extends EventDispatcher {\n \t}\n \n \t/**\n-\t * Updates the texture transformation matrix from the from the properties {@link Texture#offset},\n+\t * Updates the texture transformation matrix from the properties {@link Textur... | 2026-03-07T09:06:14 |
swiftlang/swift | cad834f584e3f46844f2442109f49f802b8f392b | 9f9fbcbd238d8474323ca3f9335344ed0f3e108d | [Sema] Look through function conversion expr
Fixes rdar://168285524 by looking through function conversion expr,
which is used when the mutating function is nonisolated(nonsending). | [
{
"path": "lib/Sema/TypeCheckConcurrency.cpp",
"patch": "@@ -3754,8 +3754,8 @@ namespace {\n // can really only happen when the property is a struct with a\n // mutating async method.\n if (auto partialApply = dyn_cast<ApplyExpr>(apply->getFn())) {\n- if (auto declRe... | 2026-04-03T20:37:56 |
golang/go | 9956aca06ab9d3083fa0afaebb640a1a25dde77f | ba402cd756a02cd80bcd76a2f7afc22ae2041c6c | cmd/go/internal/workcmd: correct go.work file name
Fixes #51714
Change-Id: I0619b1ca6715bed85ccc066a83a449f66a6a6964
Reviewed-on: https://go-review.googlesource.com/c/go/+/762660
Reviewed-by: David Chase <drchase@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Rev... | [
{
"path": "src/cmd/go/alldocs.go",
"patch": "@@ -1634,10 +1634,10 @@\n // The -toolchain=name flag sets the Go toolchain to use.\n //\n // The -print flag prints the final go.work in its text format instead of\n-// writing it back to go.mod.\n+// writing it back to go.work.\n //\n // The -json flag prints t... | 2026-04-03T23:55:05 |
denoland/deno | ca989a0306e61ba65ad53d1981d4d25036bbac8d | 2bb06663c1d7ee6532f6737d721ea1adb89fd884 | fix(ext/node): fix BadResource error in FileHandle.readLines() (#32685)
## Summary
- Fixes #32678
- `FileHandle.createReadStream()` now passes the FileHandle object (not
numeric fd) to ReadStream/WriteStream, matching Node.js behavior
- Added `FileHandleOperations` wrapper in `importFd()` that bridges
FileHandle's pr... | [
{
"path": "ext/node/polyfills/internal/fs/handle.ts",
"patch": "@@ -318,7 +318,7 @@ export class FileHandle extends EventEmitter {\n \n readLines(options?: CreateReadStreamOptions): ReadlineInterface {\n return createInterface({\n- input: this.createReadStream({ ...options, autoClose: false }),\n... | 2026-03-30T14:55:19 |
mrdoob/three.js | f5d4b94ac51f1a4e552770a5de588fd2a016bef3 | 2882df3981c20ac06b5c7d2d40195493f040fe5b | FirstPersonControls: Fix deprecated handleResize() message.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> | [
{
"path": "examples/jsm/controls/FirstPersonControls.js",
"patch": "@@ -308,11 +308,11 @@ class FirstPersonControls extends Controls {\n \t}\n \n \t/**\n-\t * @deprecated, r184. The controls now handle resize internally.\n+\t * @deprecated, r184. This method is no longer needed.\n \t */\n \thandleResize() {... | 2026-03-06T22:58:28 |
tensorflow/tensorflow | 69a2927f1a792a5a9aea8823e0920e5a2d9ac27b | 9138b76a419bbf15ee52f77642f32e94bcc4a591 | PR #34957: [ROCm] Enable matmul perf table implementation for ROCm
Imported from GitHub PR https://github.com/openxla/xla/pull/34957
Implements HloOpProfiler for ROCm for use in `//xla/tools:matmul_perf_table_gen`. Also a small fix for hlo_op_profiles to return correct arch name.
Tests enabled and passing on ROCm:
`... | [
{
"path": "third_party/xla/xla/backends/profiler/gpu/BUILD",
"patch": "@@ -505,10 +505,7 @@ cc_library(\n tags = [\n \"gpu\",\n \"rocm-only\",\n- ] + if_google([\n- # TODO(b/360374983): Remove this tag once the target can be built without --config=rocm.\n- \"manual\",\n-... | 2026-04-07T13:45:50 |
golang/go | ba402cd756a02cd80bcd76a2f7afc22ae2041c6c | 6110cd6f83caa1f255189c209711c216d649c6d7 | runtime: fix timespec definition on 32bits systems
The nsec field of timespec is a C long even when using
64bits time on 32bits systems.
This is because by timespec API if nsec never holds more than a
second worth of nanoseconds.
If it would theses would increment the sec field while the nsec
field would get the amou... | [
{
"path": "src/runtime/defs_linux_386.go",
"patch": "@@ -152,13 +152,14 @@ func (ts *timespec32) setNsec(ns int64) {\n \n type timespec struct {\n \ttv_sec int64\n-\ttv_nsec int64\n+\ttv_nsec int32\n+\t_ [4]byte // the C ABI aligns int64 to 8 bytes\n }\n \n //go:nosplit\n func (ts *timespec) setNsec(... | 2026-03-04T09:01:11 |
mrdoob/three.js | 8886ab6e95f4b06945ffb5d19c531c09dc6c5ce7 | b22ed1518b2512707d09decc572f62c38ab5f4a8 | Update MeshToonMaterial.js
Fix JSDoc for `gradientMap`. | [
{
"path": "src/materials/MeshToonMaterial.js",
"patch": "@@ -57,7 +57,7 @@ class MeshToonMaterial extends Material {\n \n \t\t/**\n \t\t * Gradient map for toon shading. It's required to set\n-\t\t * {@link Texture#minFilter} and {@link Texture#magFilter} to {@linkNearestFilter}\n+\t\t * {@link Texture#minF... | 2026-03-02T11:00:23 |
denoland/deno | 2bb06663c1d7ee6532f6737d721ea1adb89fd884 | 7c57830506e4ded88a7bfee2a03a5e0530787fbe | fix: use case-insensitive path matching for permissions on Windows (#33073)
## Summary
- Add `normalize_path_case()` that lowercases paths on Windows at
construction time in `PathQueryDescriptor` and `PathDescriptor`
- Ensures path-scoped permission rules (allow/deny for read, write, ffi)
match correctly regardless of... | [
{
"path": "runtime/permissions/lib.rs",
"patch": "@@ -1292,22 +1292,36 @@ impl<\n #[derive(Clone, Debug)]\n pub struct PathQueryDescriptor<'a> {\n path: Cow<'a, Path>,\n+ /// Lowercased on Windows for case-insensitive comparison; same as `path` on\n+ /// other platforms. Used by PartialEq, starts_with, ... | 2026-03-30T14:06:55 |
tensorflow/tensorflow | 495306c001d74043714888f022665b52249314e4 | 960c93f386c7df0954209fc1f8d94822c6af4ed9 | PR #38736: [ROCm] Support hipblaslt group-gemm 4/5
Imported from GitHub PR https://github.com/openxla/xla/pull/38736
**PR 4/5: Hipblaslt Group-Gemm 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/third_party/gpus/rocm/BUILD.tpl",
"patch": "@@ -513,11 +513,9 @@ cc_library(\n \n cc_library(\n name = \"hipblaslt\",\n+ srcs = [\"%{rocm_root}/lib/libhipblaslt.so\"],\n hdrs = glob([\"%{rocm_root}/include/hipblaslt/**\"]),\n- data = glob([\n- \"%{rocm_root}/l... | 2026-04-07T11:03:27 |
mrdoob/three.js | b22ed1518b2512707d09decc572f62c38ab5f4a8 | 38331a28c54f35c8063263fd29b854eeaea668c7 | WebGLRenderer: Fix envMap and background rotation (#33077) | [
{
"path": "src/renderers/shaders/ShaderChunk/envmap_common_pars_fragment.glsl.js",
"patch": "@@ -2,7 +2,6 @@ export default /* glsl */`\n #ifdef USE_ENVMAP\n \n \tuniform float envMapIntensity;\n-\tuniform float flipEnvMap;\n \tuniform mat3 envMapRotation;\n \n \t#ifdef ENVMAP_TYPE_CUBE",
"additions": 0... | 2026-03-02T10:39:31 |
golang/go | 6110cd6f83caa1f255189c209711c216d649c6d7 | 0fa3564a74b802219d3df0852fbe921b3fe9c5be | net/http: fix shadow var frame
Change-Id: Ib03f65992b065e169fa6ccd08664336bec559c1d
GitHub-Last-Rev: bd597d4325c713c53a9f22cb93892d90f393c6ac
GitHub-Pull-Request: golang/go#78527
Reviewed-on: https://go-review.googlesource.com/c/go/+/762700
Reviewed-by: Nicholas Husin <nsh@golang.org>
LUCI-TryBot-Result: Go LUCI <gola... | [
{
"path": "src/net/http/server.go",
"patch": "@@ -1160,7 +1160,8 @@ func relevantCaller() runtime.Frame {\n \tframes := runtime.CallersFrames(pc[:n])\n \tvar frame runtime.Frame\n \tfor {\n-\t\tframe, more := frames.Next()\n+\t\tvar more bool\n+\t\tframe, more = frames.Next()\n \t\tif !strings.HasPrefix(fra... | 2026-04-04T08:51:23 |
denoland/deno | 7c57830506e4ded88a7bfee2a03a5e0530787fbe | b365d544c787acd227aa4a5e58c99cb8576bbdf2 | fix(resolver): resolve npm packages that shadow Node built-in names in BYONM mode (#32865)
## Summary
Closes #30607
When using `--node-modules-dir=manual` (BYONM), npm packages whose names
match Node.js built-in modules (e.g. `events`, `assert`,
`string_decoder`) failed to resolve:
```
$ deno run --node-modules-dir... | [
{
"path": "libs/node_resolver/resolution.rs",
"patch": "@@ -448,6 +448,40 @@ impl<\n Ok(resolve_response)\n }\n \n+ /// Resolve a bare package specifier, skipping the built-in module check\n+ /// and URL scheme handling. Only suitable for bare specifiers like\n+ /// \"events\" or \"assert\" — not f... | 2026-03-30T13:55:26 |
mrdoob/three.js | 91117d008ded130f2a9c371880e809e7f0b7fe63 | bd1baecf150319a8be043186536f0ff6219d93b2 | WebGPURenderer: Fixes framebuffer caching with multiple references of different sizes (#32690) | [
{
"path": "src/nodes/display/ViewportDepthTextureNode.js",
"patch": "@@ -26,28 +26,23 @@ class ViewportDepthTextureNode extends ViewportTextureNode {\n \t *\n \t * @param {Node} [uvNode=screenUV] - The uv node.\n \t * @param {?Node} [levelNode=null] - The level node.\n+\t * @param {?DepthTexture} [depthText... | 2026-03-02T04:18:15 |
kubernetes/kubernetes | 3c91eba80c35d85ae3669660baac3eb0e9376a92 | 6c87b171cac179ac232a4a8a527e7a94042fac69 | test: Fix PodGroup CRUD test failing due to missing Workload reference
Remove PodGroupTemplateRef from the PodGroup e2e CRUD test. The
PodGroupWorkloadExists admission plugin (introduced in #137464)
rejects PodGroups that reference a non-existent Workload, causing
the test to fail. The workload reference is not needed... | [
{
"path": "test/e2e/scheduling/workload.go",
"patch": "@@ -83,12 +83,6 @@ var _ = SIGDescribe(\"Workload\", framework.WithFeatureGate(features.GenericWorklo\n \t\t\t\t\tNamespaced: new(true),\n \t\t\t\t\tInitialSpec: &schedulingv1alpha2.PodGroup{\n \t\t\t\t\t\tSpec: schedulingv1alpha2.PodGroupSpec{\n-\t\t\t... | 2026-03-19T19:36:38 |
golang/go | 0fa3564a74b802219d3df0852fbe921b3fe9c5be | 3e5efa048ac647c7554eea3a4ed230f265841115 | math/big: optimize writeMultiple to use StringWriter and ByteWriter
This overhauls writeMultiple to reduce allocations:
- return early if called with a count of 0 rather than allocating a buffer
- if writing one byte, which happens when padding, try io.ByteWriter
- try io.StringWriter
- fallback to io.Writer as curren... | [
{
"path": "src/math/big/intconv.go",
"patch": "@@ -42,12 +42,27 @@ func (x *Int) String() string {\n \n // write count copies of text to s.\n func writeMultiple(s fmt.State, text string, count int) {\n-\tif len(text) > 0 {\n-\t\tb := []byte(text)\n-\t\tfor ; count > 0; count-- {\n-\t\t\ts.Write(b)\n+\tif le... | 2025-01-29T12:25:37 |
denoland/deno | b365d544c787acd227aa4a5e58c99cb8576bbdf2 | fa18175cc2781da5016a6ca44f68290bd3dc3e02 | fix(outdated): use dist-tags.latest for Latest column, matching npm/pnpm/bun (#32939)
## Summary
- Use `dist-tags.latest` directly for the "Latest" column in `deno
outdated`, matching npm/pnpm/bun behavior
- Prevent `--update --latest` from downgrading packages when the latest
dist-tag is lower than the current pre-r... | [
{
"path": "cli/tools/pm/deps.rs",
"patch": "@@ -759,28 +759,17 @@ impl DepManager {\n return Some(latest_tag.clone());\n }\n \n- let lower_bound = &semver_compatible.as_ref()?.version;\n- let latest_matches_newest_dep_date =\n- ... | 2026-03-30T13:09:30 |
mrdoob/three.js | ffb3ef520126688a1cc948ce27eb1f60e17c5870 | f22c30e14ece4ffc3f75a763f8f3a18ef7e3a38b | TSL: Fix array texture with no `.depth()` defined breaks shader compilation (#33096) | [
{
"path": "src/nodes/accessors/TextureNode.js",
"patch": "@@ -553,11 +553,19 @@ class TextureNode extends UniformNode {\n \t\t\t\tconst gradSnippet = gradNode ? [ gradNode[ 0 ].build( builder, 'vec2' ), gradNode[ 1 ].build( builder, 'vec2' ) ] : null;\n \t\t\t\tconst offsetSnippet = offsetNode ? this.genera... | 2026-03-01T04:46:13 |
golang/go | 3e5efa048ac647c7554eea3a4ed230f265841115 | 7a1d131afbb1aee15b56d8dd2405f270bbc486c2 | time: wrong Sign Cast in Time.UnmarshalBinary (V2 Format)
Fixes #78528
Change-Id: I8979a310dbf94b9710d3e8428480cb49a7308294
GitHub-Last-Rev: 3d7f5ef1491f15923add6ef556e387eb8d49bf3b
GitHub-Pull-Request: golang/go#78518
Reviewed-on: https://go-review.googlesource.com/c/go/+/762480
Reviewed-by: David Chase <drchase@goo... | [
{
"path": "src/time/time.go",
"patch": "@@ -1552,7 +1552,7 @@ func (t *Time) UnmarshalBinary(data []byte) error {\n \tbuf = buf[4:]\n \toffset := int(int16(buf[1])|int16(buf[0])<<8) * 60\n \tif version == timeBinaryVersionV2 {\n-\t\toffset += int(buf[2])\n+\t\toffset += int(int8(buf[2]))\n \t}\n \n \t*t = T... | 2026-04-04T11:06:26 |
tensorflow/tensorflow | 324ef3b5f30306e0cddd8febf3f3b054e899deac | 5c8133f4ace2be3f57cc28fa5f593901147f171e | PR #40199: [ROCm] Fix profiler leaking stale hipErrorInvalidDevice on ROCm
Imported from GitHub PR https://github.com/openxla/xla/pull/40199
📝 Summary of Changes
- Replace hipGetDeviceProperties in GetDeviceCapabilities with rocprofiler
agent data already available from RocmTracer. This eliminates HIP runtime
ca... | [
{
"path": "third_party/xla/xla/backends/profiler/gpu/device_tracer_rocm.cc",
"patch": "@@ -109,6 +109,7 @@ absl::Status GpuTracer::DoStart() {\n GetRocmTraceCollectorOptions(rocm_tracer_->NumGpus());\n rocm_trace_collector_ = CreateRocmCollector(\n trace_collector_options, start_walltime_ns, s... | 2026-04-07T10:29:46 |
swiftlang/swift | 080f9e6a81e926b63701d2d6916fb2341813a2dc | b97b3640f9d1d0ce02e1ce647592b1bf0034687a | Optimizer: add the ConformanceCheckOptimization optimization pass
Optimizes protocol conformance checking by pre-populating vtables with conformance information for "fast-cast" protocols that have superclass constraints.
This optimization works by:
1. Identifying classes that are eligible for optimization (have fixe... | [
{
"path": "SwiftCompilerSources/Sources/Optimizer/ModulePasses/CMakeLists.txt",
"patch": "@@ -7,6 +7,7 @@\n # See http://swift.org/CONTRIBUTORS.txt for Swift project authors\n \n swift_compiler_sources(Optimizer\n+ ConformanceCheckOptimization.swift\n DiagnoseUnknownConstValues.swift\n EmbeddedSwiftDia... | 2026-03-31T15:53:26 |
denoland/deno | fa18175cc2781da5016a6ca44f68290bd3dc3e02 | 583bee885ecaff76a6411b5f445cb0c5bf052f30 | fix(npm): resolve linked packages not published to npm registry (#33021)
## Summary
- Fixes the case where `"links"` in `deno.json` references a local npm
package that has **not been published** to the npm registry
- Added `package_info_or_link_fallback()` helper that falls back to
creating a synthetic `NpmPackageInf... | [
{
"path": "libs/npm/resolution/common.rs",
"patch": "@@ -15,6 +15,8 @@ use thiserror::Error;\n use crate::registry::NpmPackageInfo;\n use crate::registry::NpmPackageVersionInfo;\n use crate::registry::NpmPackageVersionInfosIterator;\n+use crate::registry::NpmRegistryApi;\n+use crate::registry::NpmRegistryPa... | 2026-03-30T12:57:00 |
mrdoob/three.js | 2eec45994017c2cef3be880a42f98c1417d10612 | d3a9f72e13539d51f699d77f1675c4b92ff6c0c9 | USDLoader: Fix skeleton skinning distortion. (#33085)
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com> | [
{
"path": "examples/jsm/loaders/usd/USDComposer.js",
"patch": "@@ -112,6 +112,17 @@ class USDComposer {\n \t\t// Bind skeletons to skinned meshes\n \t\tthis._bindSkeletons();\n \n+\t\t// Expose skeleton on the root group so that AnimationMixer's\n+\t\t// PropertyBinding.findNode resolves bone names before s... | 2026-02-27T21:20:34 |
golang/go | 7a1d131afbb1aee15b56d8dd2405f270bbc486c2 | 47d6423673479edc418e777d221f2527076e9944 | os: use t.TempDir in root_test tempDirWithUnixSocket
tempDirWithUnixSocket used os.MkdirTemp("", ""), while other paths in
root consistency tests use t.TempDir().
If GOTMPDIR and the system temp dir are on different filesystems (such
as during abuild), TestRootConsistencyRename and TestRootConsistencyLink
may produce... | [
{
"path": "src/os/root_test.go",
"patch": "@@ -1211,15 +1211,7 @@ var rootConsistencyTestCases = []rootConsistencyTest{{\n }}\n \n func tempDirWithUnixSocket(t *testing.T, name string) string {\n-\tdir, err := os.MkdirTemp(\"\", \"\")\n-\tif err != nil {\n-\t\tt.Fatal(err)\n-\t}\n-\tt.Cleanup(func() {\n-\t\... | 2026-03-11T14:08:09 |
tensorflow/tensorflow | 760ffa4d829558a5a177d90ce5ba8497588cad25 | 88c8d69c7e92a47e14d81903ad8d3f535ab121d5 | PR #36704: [XLA:GPU][oneAPI] Blas plugin for SYCL platform
Imported from GitHub PR https://github.com/openxla/xla/pull/36704
This PR adds BLAS plugin to sycl executor as a stub. Subsequent PRs will add concrete implementation using libraries.
Copybara import of the project:
--
9e359c2ca40afdef967df41c13ced573a9b175... | [
{
"path": "third_party/xla/xla/stream_executor/sycl/BUILD",
"patch": "@@ -86,7 +86,10 @@ cc_library(\n name = \"all_runtime\",\n copts = tsl_copts(),\n visibility = [\"//visibility:public\"],\n- deps = if_sycl_is_configured([\":sycl_platform\"]),\n+ deps = if_sycl_is_configured([\n+ ... | 2026-04-07T10:05:57 |
kubernetes/kubernetes | 57eb99dbb8756ad9b0fa86b2fd79b902028f255b | 880a6dda4cb642221ebbc9638f669aaa2adc83a4 | test: fix flaky static pod tests by asserting on termination message and container ID instead of StartTime
The expectation that StartTime changes on kubelet restart for static pods is no longer reliable due to faked init container status logic. This change updates the tests to assert on the specific behavior introduce... | [
{
"path": "test/e2e_node/static_pod_test.go",
"patch": "@@ -75,7 +75,6 @@ var _ = SIGDescribe(\"StaticPod\", framework.WithSerial(), func() {\n \t\t\t})\n \n \t\t\tvar initCtrID string\n-\t\t\tvar startTime *metav1.Time\n \t\t\tmirrorPodName := fmt.Sprintf(\"%s-%s\", staticPod.Name, framework.TestContext.No... | 2026-03-19T03:19:07 |
denoland/deno | 583bee885ecaff76a6411b5f445cb0c5bf052f30 | bf3f85b353dc45eaf0d853d4100d10749f0d03a3 | fix(ext/web): fix infinite loop in WebTransport datagram overflow handling (#33075)
## Summary
- Fix overflow removal loop in `WebTransportDatagramDuplexStream` that
used a `const` counter never decremented, causing an infinite loop when
the incoming queue exceeded the high-water mark
- Change `const toBeRemoved` to `... | [
{
"path": "ext/web/webtransport.js",
"patch": "@@ -713,9 +713,10 @@ class WebTransportDatagramDuplexStream {\n \n ArrayPrototypePush(queue, { datagram, timestamp: DateNow() });\n \n- const toBeRemoved = queue.length - this.#incomingHighWaterMark;\n+ let toBeRemoved = queue.length - this.#inc... | 2026-03-30T12:33:41 |
mrdoob/three.js | bc733cd5962af8644ad5ff38215efeea4f7f76ba | 3fb1d054bfad41a859533b5faaf0b6b0b908ee4d | WebGPUTextureUtils: Fix check `layerUpdates` property (#33075) | [
{
"path": "src/renderers/webgpu/utils/WebGPUTextureUtils.js",
"patch": "@@ -538,7 +538,7 @@ class WebGPUTextureUtils {\n \n \t\t} else if ( texture.isArrayTexture || texture.isDataArrayTexture || texture.isData3DTexture ) {\n \n-\t\t\tif ( texture.layerUpdates.size > 0 ) {\n+\t\t\tif ( texture.layerUpdates ... | 2026-02-27T09:25:27 |
swiftlang/swift | b97b3640f9d1d0ce02e1ce647592b1bf0034687a | 7ef83e336d9a629f3aaee33ea155ed06d0e07e69 | Optimizer: add some Context APIs
* `var isWholeModule`
* `var moduleDecl`
* `ClassDecl.hasFixedMetadataLayout` | [
{
"path": "SwiftCompilerSources/Sources/Optimizer/PassManager/ContextCommon.swift",
"patch": "@@ -45,6 +45,17 @@ extension Context {\n func canMakeStaticObjectReadOnly(objectType: Type) -> Bool {\n bridgedPassContext.canMakeStaticObjectReadOnly(objectType.bridged)\n }\n+\n+ /// True if the current ... | 2026-03-31T15:47:13 |
golang/go | 47d6423673479edc418e777d221f2527076e9944 | 70dc75b79b7454caf0ed256b51ff716f880b317d | cmd/go/internal/script: add fuzz test for quoteArgs
Adds a fuzz test for quoteArgs and fixes the bugs it found:
handling of empty strings and strings containing "&" or "$".
This is a copy of a similar change submitted to rsc.io/script:
https://github.com/rsc/script/pull/10
Change-Id: I76e7fc89475e1c4e415f45f2c7ac4a8... | [
{
"path": "src/cmd/internal/script/engine.go",
"patch": "@@ -493,15 +493,13 @@ func expandArgs(s *State, rawArgs [][]argFragment, regexpArgs []int) []string {\n }\n \n // quoteArgs returns a string that parse would parse as args when passed to a command.\n-//\n-// TODO(bcmills): This function should have a ... | 2024-02-23T05:00:46 |
tensorflow/tensorflow | e8bcb93967397c12baeb842054e794cff00b8e3c | 48ff8f9ed0a79208d91e091d5238205644f81cae | PR #40055: [ROCm] Make ScaledDotRewriter produce a dot that can be handled by cblas[Lt]
Imported from GitHub PR https://github.com/openxla/xla/pull/40055
📝 Summary of Changes
Makes sure scaled_dot_rewriter does not generate dots with output being less precise than inputs like bf16 x bf16 -> f16.
🎯 Justification
Th... | [
{
"path": "third_party/xla/xla/backends/gpu/transforms/scaled_dot_rewriter.cc",
"patch": "@@ -174,10 +174,17 @@ absl::StatusOr<bool> ScaledDotRewriter::RewriteComputation(\n TF_ASSIGN_OR_RETURN(HloInstruction * lhs, Dequantize(dot, 0, 2, \"LHS\"));\n TF_ASSIGN_OR_RETURN(HloInstruction * rhs, Dequant... | 2026-04-07T09:48:45 |
mrdoob/three.js | 3fb1d054bfad41a859533b5faaf0b6b0b908ee4d | 4cc5a1c777d09781ead8e8f4d96109e2ac57e5e2 | InstancedMesh, BatchedMesh: Fix getColorAt throwing an error when colors have not been set (#33079) | [
{
"path": "src/objects/BatchedMesh.js",
"patch": "@@ -1133,7 +1133,23 @@ class BatchedMesh extends Mesh {\n \tgetColorAt( instanceId, color ) {\n \n \t\tthis.validateInstanceId( instanceId );\n-\t\treturn color.fromArray( this._colorsTexture.image.data, instanceId * 4 );\n+\t\tif ( this._colorsTexture === n... | 2026-02-27T09:23:59 |
denoland/deno | bf3f85b353dc45eaf0d853d4100d10749f0d03a3 | 8252557622c7c4b893b99574d08e0072dfa683ff | docs: clarify mkdir does not throw with recursive: true (#33019)
The JSDoc for `Deno.mkdir` and `Deno.mkdirSync` said "Defaults to
throwing error if the directory already exists" without mentioning that
`recursive: true` suppresses this error.
The `MkdirOptions.recursive` property already documented this correctly,
b... | [
{
"path": "cli/tsc/dts/lib.deno.ns.d.ts",
"patch": "@@ -2639,7 +2639,8 @@ declare namespace Deno {\n * await Deno.mkdir(\"restricted_access_dir\", { mode: 0o700 });\n * ```\n *\n- * Defaults to throwing error if the directory already exists.\n+ * Throws if the directory already exists, unless `... | 2026-03-30T11:25:07 |
swiftlang/swift | 8414864ed27ab8958dbd9b09569b48615ca61ed3 | 8cda95bca4fe34d1685a3506c093f6395293a49d | Fix a couple of verifier output tests that I didn't notice | [
{
"path": "test/SIL/store_borrow_verify_errors.sil",
"patch": "@@ -16,7 +16,10 @@ sil @use_guaranteed : $@convention(thin) (@guaranteed Klass) -> ()\n sil @get_owned : $@convention(thin) () -> @owned Klass\n \n // CHECK: Begin Error in function test_missing_end_borrow_single\n-// CHECK: SIL verification fai... | 2026-04-03T04:37:33 |
tensorflow/tensorflow | ac1313d24aa8af7fa4621d124b8a5fa2e5c84e25 | a075bf5c81e1bc5a199db94cdc4360f6b4c9925a | PR #40331: [XLA:GPU][oneAPI] Fix build failure in IntelGpuCompiler
Imported from GitHub PR https://github.com/openxla/xla/pull/40331
https://github.com/openxla/xla/commit/00b5900c1229ec3160aff469f88d5a43724f0cc4 commit in XLA causes the following failure in oneAPI GPU CI build:
```
./xla/service/gpu/intel_gpu_compile... | [
{
"path": "third_party/xla/xla/service/gpu/intel_gpu_compiler.cc",
"patch": "@@ -54,7 +54,7 @@ IntelGpuCompiler::CompileTargetBinary(\n const HloModuleConfig& module_config, llvm::Module* llvm_module,\n const stream_executor::DeviceDescription& device_description,\n bool relocatable, const HloMo... | 2026-04-07T09:00:55 |
mrdoob/three.js | 8be76833b9929a1817143508618084f55715e775 | c99b4a405e2c94fddfa0a56e667ceb6508808eb9 | USDLoader: Fix flat shading on meshes without normals. (#33081)
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com> | [
{
"path": "examples/jsm/loaders/usd/USDComposer.js",
"patch": "@@ -1451,7 +1451,12 @@ class USDComposer {\n \n \t\t} else {\n \n-\t\t\tgeometry.computeVertexNormals();\n+\t\t\t// Compute vertex normals from the original indexed topology where\n+\t\t\t// vertices are shared, then expand them like positions.\... | 2026-02-27T08:20:31 |
golang/go | 70dc75b79b7454caf0ed256b51ff716f880b317d | d74de3ce79d4ab3495650bfcc4682cab09514b89 | cmd/compile: unify DWARF variable generation and remove encoding
Refactor the DWARF variable generation in the compiler:
1. Replace the intermediate []byte location list encoding with a
structured LocListEntry type. The old code packed SSA block/value
IDs into pointer-sized integers, wrote them alongside DWARF4... | [
{
"path": "src/cmd/compile/internal/dwarfgen/dwarf.go",
"patch": "@@ -93,7 +93,7 @@ func Info(ctxt *obj.Link, fnsym *obj.LSym, infosym *obj.LSym, curfn obj.Func) (s\n \t\t\tdefault:\n \t\t\t\tcontinue\n \t\t\t}\n-\t\t\tif !ssa.IsVarWantedForDebug(n) {\n+\t\t\tif !shouldEmitDwarfVar(n) {\n \t\t\t\tcontinue\n... | 2026-03-03T00:25:23 |
denoland/deno | 8252557622c7c4b893b99574d08e0072dfa683ff | 8b9d1aa92bdab59b117ce85777e20d443d20e905 | fix(serde_v8): use actual bytes written in to_utf8_slow (#33074)
## Summary
- `to_utf8_slow` discarded the return value of `write_utf8_uninit_v2`
and used the pre-estimated `capacity` for `Vec::set_len`
- This violated `set_len`'s safety contract (all bytes up to `len` must
be initialized)
- Use the actual return valu... | [
{
"path": "libs/serde_v8/de.rs",
"patch": "@@ -764,7 +764,7 @@ fn to_utf8_slow(s: v8::Local<v8::String>, scope: &mut v8::PinScope) -> String {\n let capacity = s.utf8_length(scope);\n let mut buf = Vec::with_capacity(capacity);\n \n- s.write_utf8_uninit_v2(\n+ let bytes_len = s.write_utf8_uninit_v2(\n... | 2026-03-30T10:27:31 |
kubernetes/kubernetes | 5513334650f0dc26c257d062fbf550a817b2290e | 58cbde2aff6390bef9dece2f635e1181571ea974 | Move ResourcePoolStatusRequest e2e tests to control plane context, drop unnecessary Feature:DynamicResourceAllocation tag, fix indentation
Signed-off-by: Nour <nurmn3m@gmail.com> | [
{
"path": "test/e2e/dra/dra.go",
"patch": "@@ -227,30 +227,28 @@ var _ = framework.SIGDescribe(\"node\")(framework.WithLabel(\"DRA\"), func() {\n \t\t\t\t},\n \t\t\t)\n \t\t})\n-\t\tf.It(\"resource.k8s.io/v1alpha3 ResourcePoolStatusRequest\",\n-\t\t\tf.WithFeatureGate(features.DRAResourcePoolStatus),\n-\t\t... | 2026-03-19T13:32:24 |
swiftlang/swift | 169561851d66b995091b1cca1e55ab0c7ad921ef | 6e2eaee27a31b75abaade4f69a576ab83191297b | Teach canImport to reject modules that mismatch on Embedded vs. normal Swift
Check for Embedded/normal Swift mismatches as part of module
validation, rather than after loading. Do this check as part of
canImport, so that canImport will evaluate false when there is a mismatch.
This will produce a warning in this case,... | [
{
"path": "include/swift/Serialization/SerializedModuleLoader.h",
"patch": "@@ -197,6 +197,7 @@ class SerializedModuleLoaderBase : public ModuleLoader {\n bool isFramework,\n StringRef SDKName,\n ... | 2026-04-03T01:28:07 |
tensorflow/tensorflow | a075bf5c81e1bc5a199db94cdc4360f6b4c9925a | 33f98f2f32db42cceab8145fa5e909bda971adb0 | PR #40419: [ROCm] Fix HSACO module cache using pointer-based key causing stale lookups
Imported from GitHub PR https://github.com/openxla/xla/pull/40419
📝 Summary of Changes
- The in_memory_modules_ cache in RocmExecutor used the raw HSACO data pointer as the cache key. When a CustomKernelThunk's owned HSACO buffer ... | [
{
"path": "third_party/xla/xla/stream_executor/rocm/BUILD",
"patch": "@@ -193,6 +193,7 @@ cc_library(\n \"@com_google_absl//absl/container:flat_hash_map\",\n \"@com_google_absl//absl/container:flat_hash_set\",\n \"@com_google_absl//absl/container:inlined_vector\",\n+ \"@com_go... | 2026-04-07T08:31:39 |
mrdoob/three.js | f274d6ad5eb7594a563884ca05239e8f5d644ce4 | d8cf11efc90f3ee67b640d6418b74607167c23fb | Inspector: Use fixed mini-panel (#33070) | [
{
"path": "examples/jsm/inspector/Inspector.js",
"patch": "@@ -224,12 +224,6 @@ class Inspector extends RendererInspector {\n \n \t\t\tthis.parameters.show();\n \n-\t\t\tif ( this.parameters.isDetached === false ) {\n-\n-\t\t\t\tthis.profiler.setActiveTab( this.parameters.id );\n-\n-\t\t\t}\n-\n \t\t}\n \n ... | 2026-02-26T15:20:59 |
denoland/deno | 8b9d1aa92bdab59b117ce85777e20d443d20e905 | 6710d587bc05e4275c2336fb1cc5104d5eee9fdc | fix(ext/node): escape shell metacharacters in child_process args on Windows (#33071)
## Summary
- Expand the set of characters that trigger quoting in `escapeShellArg`
on Windows to include cmd.exe metacharacters (`&`, `|`, `<`, `>`, `^`,
`%`, `!`, `(`, `)`)
- Add `%` doubling so percent signs are treated as literals ... | [
{
"path": "ext/node/polyfills/internal/child_process.ts",
"patch": "@@ -1279,7 +1279,10 @@ function escapeShellArg(arg: string): string {\n return '\"\"';\n }\n // If no special characters, return as-is\n- if (!/[\\s\"\\\\]/.test(arg)) {\n+ // Must include cmd.exe metacharacters: &|<>^!(... | 2026-03-30T10:13:16 |
golang/go | 2a902c8a8a37935abc4adc93605276c9d2103e45 | f4b87f314dd7a890e9d3b42d7d6427cc7f51f9a2 | cmd/compile: optimize switch statements using lookup tables
Switch statement containing integer constant cases and case bodies just
returning a constant should be optimizable to a simpler and faster table
lookup instead of a jump table.
That is, a switch like this:
switch x {
case 0: return 10
case 1: re... | [
{
"path": "src/cmd/compile/internal/test/switch_test.go",
"patch": "@@ -294,3 +294,135 @@ func (r rng) next(predictable bool) rng {\n func (r rng) value() uint64 {\n \treturn uint64(r)\n }\n+\n+// Benchmarks for switch-to-lookup-table optimization.\n+// These use functions that return constants, which is th... | 2026-03-18T09:34:00 |
kubernetes/kubernetes | 8b9159baa41418bcc62592e9da3b878e7cd138ca | 4dffbf5b2ad6b55514d04889177951400587ed7c | Drop CSR analogy, mark ObjectMeta +required,reduce limits (maxItems=500, maxLength=128) for etcd safety, add Errors printer column
Signed-off-by: Nour <nurmn3m@gmail.com> | [
{
"path": "api/openapi-spec/swagger.json",
"patch": "@@ -17002,7 +17002,7 @@\n \"type\": \"object\"\n },\n \"io.k8s.api.resource.v1alpha3.ResourcePoolStatusRequest\": {\n- \"description\": \"ResourcePoolStatusRequest triggers a one-time calculation of resource pool status based on the pro... | 2026-03-18T03:17:28 |
swiftlang/swift | 7e53770e42322ea5d0350626739539e9d236c61e | 157709a41cbedd438fc5c10c8eb19b637fccd855 | SILGen: Emit `@_addressableSelf` accessor bases properly.
Fix the check here to account for ad-hoc addressable parameters in addition to
addressable-for-dependencies types.
Fixes rdar://173472004 | [
{
"path": "lib/SILGen/SILGenLValue.cpp",
"patch": "@@ -4252,13 +4252,24 @@ LValue SILGenLValue::visitMemberRefExpr(MemberRefExpr *e,\n CanType substFormalRValueType = getSubstFormalRValueType(e);\n CanType baseTy = getBaseFormalType(e->getBase());\n AbstractionPattern orig = AbstractionPattern::getInv... | 2026-04-03T01:21:00 |
tensorflow/tensorflow | 06ebd8e681a28afd1bc609b8d8d23ba4fbd10f7b | e63d9814e06a59e649f3b3dacfa5e77b8e76b48f | PR #40310: [xla:gpu] Fix UndefinedBehaviorSanitizer for thunk_executor test
Imported from GitHub PR https://github.com/openxla/xla/pull/40310
Don't pass default constructed params marked as absl_nonnull, we don't need prepare state anyway in this test.
Copybara import of the project:
--
603e4e466f388c54c0cffce2ec898... | [
{
"path": "third_party/xla/xla/backends/gpu/runtime/thunk_executor_test.cc",
"patch": "@@ -199,7 +199,6 @@ TEST(SequentialThunkProgressTrackerTest, TrackWhileLoopNest) {\n std::move(body_thunks), /*trip_count=*/kTripCount));\n \n ThunkExecutor executor(std::move(outer_sequence));\n- ASSERT_OK(execu... | 2026-04-07T07:54:56 |
golang/go | 583ed06a2b82cf7437b37b2fc1fd2c772d7de420 | 16b01d5362794110376c23e83f386b9e413e2464 | crypto/x509/pkix: avoid quadratic string concatenation in RDNSequence.String
RDNSequence.String builds its result using repeated s += ... inside
nested loops, leading to O(N²) time and memory complexity.
A certificate with many Subject or Issuer RDN entries can therefore
cause excessive CPU and memory usage when Strin... | [
{
"path": "src/crypto/x509/pkix/pkix.go",
"patch": "@@ -11,6 +11,7 @@ import (\n \t\"encoding/hex\"\n \t\"fmt\"\n \t\"math/big\"\n+\t\"strings\"\n \t\"time\"\n )\n \n@@ -38,23 +39,25 @@ var attributeTypeNames = map[string]string{\n // String returns a string representation of the sequence r,\n // roughly fo... | 2026-03-26T21:05:23 |
denoland/deno | 6710d587bc05e4275c2336fb1cc5104d5eee9fdc | e15a439b9e6bcbda9017b7d8c1a933dc59238ae8 | fix(lsp): don't double-encode query/fragment in notebook cell URIs (#33070)
## Summary
- `normalize_non_file_uri` was re-encoding already percent-encoded
query/fragment components, turning `%3D` into `%253D`
- This broke `vscode-notebook-cell` URIs which use percent-encoded
base64 fragments, causing repeated "Could no... | [
{
"path": "cli/lsp/urls.rs",
"patch": "@@ -87,31 +87,12 @@ pub fn normalize_non_file_uri(uri: &Uri) -> Uri {\n &percent_encoding::percent_decode_str(uri.path().as_str())\n .decode_utf8_lossy(),\n );\n- let encoded_query = uri.query().map(|query| {\n- let mut encoded_query = fluent_uri::pct_e... | 2026-03-30T10:06:21 |
swiftlang/swift | d677252ee1af6a76a26b857ca73c6012db492b15 | 6e2eaee27a31b75abaade4f69a576ab83191297b | [Embedded platform] Disable bridging PCH
The bridging PCH created by the driver uses a temporary directory,
which introduces nondeterminism into the results. We don't need to
precompile this tiny header, so turn off the precompiled bridging
header.
Fixes rdar://172741975 | [
{
"path": "stdlib/public/EmbeddedPlatform/CMakeLists.txt",
"patch": "@@ -58,7 +58,7 @@ if(SWIFT_SHOULD_BUILD_EMBEDDED_STDLIB)\n EmbeddedPlatformPOSIX.swift\n \n C_COMPILE_FLAGS ${extra_c_compile_flags}\n- SWIFT_COMPILE_FLAGS ${swift_stdlib_compile_flags} -Xcc -ffreestanding -enable-experime... | 2026-04-02T23:10:20 |
tensorflow/tensorflow | e63d9814e06a59e649f3b3dacfa5e77b8e76b48f | 66a71a09496bd6699130434cb15bd546b087a26c | PR #40405: [ROCm] bump up ROCm CI to rocm7.2.1
Imported from GitHub PR https://github.com/openxla/xla/pull/40405
📝 Summary of Changes
Bump up ROCm CI docker image to rocm7.2.1 for JAX and XLA
🎯 Justification
there is a ROCr issuess on ROCm 7.2.0 to cause segfault when the command buffer is ON
🚀 Kind of Contribut... | [
{
"path": "third_party/xla/.github/workflows/rocm_jax_ut.yml",
"patch": "@@ -35,9 +35,11 @@ jobs:\n name: JAX Linux x86 AMD Instinct GPU\n runs-on: linux-x86-64-8gpu-amd\n env:\n- DOCKER_IMAGE: rocm/tensorflow-build@sha256:7fcfbd36b7ac8f6b0805b37c4248e929e31cf5ee3af766c8409dd70d5ab65faa\n+ ... | 2026-04-07T07:38:47 |
golang/go | 16b01d5362794110376c23e83f386b9e413e2464 | 7b5ba1f8ae661d4750a05e3908e0903cf9249a3b | path/filepath: document Dir behavior for Windows volume-only paths
Clarify that on Windows, Dir("C:") returns "C:." (the current directory
on drive C) rather than a root path. This is because Clean("") returns
"." and Dir prepends the volume name.
Fixes #77314
Change-Id: Idbc8ef5a4905e8587268428503a98a28c8c2f6e9
Rev... | [
{
"path": "src/path/filepath/path.go",
"patch": "@@ -463,6 +463,10 @@ func Base(path string) string {\n // If the path is empty, Dir returns \".\".\n // If the path consists entirely of separators, Dir returns a single separator.\n // The returned path does not end in a separator unless it is the root direc... | 2026-02-17T01:10:17 |
denoland/deno | e15a439b9e6bcbda9017b7d8c1a933dc59238ae8 | 6511a1455682bae793000e16399e1b644e32fc6c | fix(install): all package.json aliases should be added to node_modules (#33068)
## Summary
- Fix setup cache key in root node_modules symlink creation to use the
alias name instead of the real package name
- When multiple aliases point to the same package+version (e.g.
`typescript-6.0.2` and `typescript-next` both res... | [
{
"path": "libs/npm_installer/local.rs",
"patch": "@@ -717,8 +717,7 @@ impl<\n )?;\n } else {\n // symlink the package into `node_modules/<alias>`\n- if setup_cache\n- .insert_root_symlink(&remote_pkg.id.nv.name, &target_folder_name)\n+ if setup_cache... | 2026-03-30T09:27:32 |
tensorflow/tensorflow | 64017e2adccee5fe3098a7c24c516be49af8a0a8 | 76b99b1d99c1d6be3ae459a9e7011c575aa8095e | Disable HandleScatterWithoutConflicts while we are workign on fixing a related
sharding rule bug.
PiperOrigin-RevId: 895574238 | [
{
"path": "third_party/xla/xla/service/spmd/gather_scatter_handler.cc",
"patch": "@@ -2051,9 +2051,9 @@ absl::Status SpmdPartitioningVisitor::HandleScatter(HloInstruction* hlo) {\n if (hlo->sharding().IsSingleDevice()) {\n return DefaultAction(hlo);\n }\n- if (!options_.need_resolve_conflicts) {\n-... | 2026-04-07T00:14:16 |
swiftlang/swift | 8d385590d1bd640dbaf9f3d45a6d8296d15d05a6 | 71de1efe64b526b61c5845bbc98c64b898f3f9bc | ClangImporter: Fix null dereference in finalizeLookupTable for decls without an owning module
getOwningModule() can return nullptr for declarations encountered
during bridging PCH generation. Guard the IsSystem check to avoid
crashing.
rdar://173729736 | [
{
"path": "lib/ClangImporter/SwiftLookupTable.cpp",
"patch": "@@ -2139,8 +2139,9 @@ void importer::finalizeLookupTable(\n nameImporter.getClangContext().getSourceManager(), diagLoc);\n \n DiagnosticEngine &swiftDiags = nameImporter.getContext().Diags;\n- if (decl->getOwningModule(... | 2026-04-02T18:41:30 |
golang/go | 7b5ba1f8ae661d4750a05e3908e0903cf9249a3b | 0a36b58888cc41b276362673f70be87efd7e55ad | cmd/internal/obj/loong64: run go generate
"go generate" on this package seems to generate a diff.
I have no idea whether this diff is reasonable or not.
It looks kinda weird, but maybe? Or perhaps something is wrong with
../mkcnames.go.
Change-Id: I3474bab3f6880ffc24c1cf6ec11958a1c9467909
Reviewed-on: https://go-revi... | [
{
"path": "src/cmd/internal/obj/loong64/cnames.go",
"patch": "@@ -60,8 +60,14 @@ var cnames0 = []string{\n \t\"SAUTO\",\n \t\"LAUTO\",\n \t\"ZOREG\",\n-\t\"SOREG\",\n-\t\"LOREG\",\n+\t\"SOREG_8\",\n+\t\"SOREG_9\",\n+\t\"SOREG_10\",\n+\t\"SOREG_11\",\n+\t\"SOREG_12\",\n+\t\"SOREG_16\",\n+\t\"LOREG_32\",\n+\t... | 2026-03-31T21:46:09 |
denoland/deno | 6511a1455682bae793000e16399e1b644e32fc6c | d6f833150a45cc93231250b8d61e5f3e957f8551 | fix(ext/http): gracefully handle consumed external in OTel ops (#33027)
Closes #33026
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com> | [
{
"path": "ext/http/http_next.rs",
"patch": "@@ -151,6 +151,24 @@ macro_rules! clone_external {\n }};\n }\n \n+/// Try to clone Rc<HttpRecord> from raw external pointer.\n+/// Returns None if the pointer has already been consumed by take_external.\n+macro_rules! try_clone_external {\n+ ($external:expr) =... | 2026-03-30T08:53:36 |
mrdoob/three.js | b86ec644c67b6bbe9eab2a39f75325bdf4360167 | 7e290dd46ec321ccbb02d518f0cd4f8d8625a74b | Fixed warning message in WebGLTimestampQueryPool (#33068) | [
{
"path": "src/renderers/webgl-fallback/utils/WebGLTimestampQueryPool.js",
"patch": "@@ -61,7 +61,7 @@ class WebGLTimestampQueryPool extends TimestampQueryPool {\n \t\t// Check if we have enough space for a new query pair\n \t\tif ( this.currentQueryIndex + 2 > this.maxQueries ) {\n \n-\t\t\twarnOnce( `WebG... | 2026-02-26T09:00:40 |
tensorflow/tensorflow | fb89a11028f6153f6d37936ea0e75ea4650c3442 | a008b061e1b2cb7644aa54f64c3051ce0fcaf753 | PR #40432: [xla:gpu] Harden AsyncExecution runtime checks
Imported from GitHub PR https://github.com/openxla/xla/pull/40432
It is illegal to have `start - start - done - done` sequence of async operation with the same execution context. Add run time checks to `AsyncExecution` and fix tests with illegal HLO snippets.
... | [
{
"path": "third_party/xla/xla/backends/gpu/runtime/async_execution.cc",
"patch": "@@ -127,10 +127,12 @@ absl::StatusOr<AsyncExecution::ExecutionGuard> AsyncExecution::Start(\n ExecutionState * es,\n GetExecutionState(state, start_thunk_->thunk_info().thunk_id));\n \n- // TODO(ezhulenev): We sh... | 2026-04-06T20:12:42 |
kubernetes/kubernetes | f44e1fbbb05c5c49e0b44b44e5cbe0f36a32fdb1 | 1375a51e05d052b9f43abb142ec01d0c2fe19f0c | KEP-5491: '.includes' CEL function raises a runtime error when applying to lists longer than resourceapi.ResourceSliceMaxAttributeValuesPerDevice | [
{
"path": "staging/src/k8s.io/dynamic-resource-allocation/cel/compile.go",
"patch": "@@ -454,16 +454,19 @@ func newCompiler(features Features) *compiler {\n // which checks whether the target includes the argument.\n // It supports both singular values and lists.\n //\n-// WARNING: When the target is a list... | 2026-03-19T07:19:28 |
swiftlang/swift | 7b2d5fb212ecb62ca46edf63d3e46585a4fda06d | ce2de43ecbb5c9d51e92a2441a65ecc8366c64f7 | Fix escape analysis for pointer_to_address
When a `pointer_to_address` reinterprets the type (i.e. the address type
differs from the originating `address_to_pointer`), the accumulated
projection path is no longer meaningful. Use `anyValueFields` to be
conservative in both the walk-down and walk-up directions.
Without... | [
{
"path": "SwiftCompilerSources/Sources/Optimizer/Utilities/EscapeUtils.swift",
"patch": "@@ -275,6 +275,15 @@ struct EscapeUtilityTypes {\n return Self(projectionPath: self.projectionPath, followStores: self.followStores,\n addressIsStored: self.addressIsStored, knownType: knownType... | 2026-04-02T17:49:14 |
denoland/deno | d6f833150a45cc93231250b8d61e5f3e957f8551 | af49b5bbb32a45e6b62e6f2e01492aa552fa271a | chore: Use *mut _ and *const _ for type inference (#33053)
Replace explicit pointer type casts with underscore versions to allow
the compiler to infer the correct types. This fixes type mismatch errors
while maintaining type safety.
Noticed when running ./x lint on Linux aarch64 | [
{
"path": "ext/napi/node_api.rs",
"patch": "@@ -158,7 +158,7 @@ fn napi_fatal_error(\n std::ffi::CStr::from_ptr(location).to_str().unwrap()\n } else {\n let slice = std::slice::from_raw_parts(\n- location as *const u8,\n+ location as *const _,\n location_len... | 2026-03-30T08:27:36 |
mrdoob/three.js | 3ca54b0a022614b5b363bfa670ceb2ecef7a4574 | aa06320a1c424663cbe32e0d133b4859c89915a2 | WebGLRenderer: Fix feedback loop regression. (#33063) | [
{
"path": "src/renderers/WebGLRenderer.js",
"patch": "@@ -1953,7 +1953,7 @@ class WebGLRenderer {\n \t\t\t\t\tgenerateMipmaps: true,\n \t\t\t\t\ttype: hasHalfFloatSupport ? HalfFloatType : UnsignedByteType,\n \t\t\t\t\tminFilter: LinearMipmapLinearFilter,\n-\t\t\t\t\tsamples: capabilities.samples,\n+\t\t\t\... | 2026-02-25T09:04:22 |
tensorflow/tensorflow | 2fe84a0001cc5c6f310a6d49fb772a8b2235938b | 3b49850398c02b425c993c8de514299f1506c6da | [XLA:GPU] fix printing of tiled computation with regions
- added test for ToString to make sure we don't break it randomly
- use spaces instead of tabs (they are annoying)
- less \n
- print all region sizes on one line
PiperOrigin-RevId: 894418110 | [
{
"path": "third_party/xla/xla/codegen/tiling/BUILD",
"patch": "@@ -76,11 +76,34 @@ cc_library(\n \"//xla/tsl/lib/gtl:iterator_range\",\n \"@com_google_absl//absl/container:flat_hash_map\",\n \"@com_google_absl//absl/container:inlined_vector\",\n+ \"@com_google_absl//absl/log\... | 2026-04-04T05:58:28 |
swiftlang/swift | 5bddf886bb6ea0052003026d49b6a43fb943fe80 | 71de1efe64b526b61c5845bbc98c64b898f3f9bc | [ConstExtract][Caching] Remap file path in ConstExtract JSON
Fix that the `file` fields in ConstExtract JSON output are all prefix
mapped path when caching and prefix mapping are all enabled. This can
cause the consumers of the output failed to find the source file.
Now the JSON file is correct updated with the corre... | [
{
"path": "include/swift/ConstExtract/ConstExtract.h",
"patch": "@@ -59,7 +59,13 @@ gatherConstValuesForModule(const std::unordered_set<std::string> &Protocols,\n /// Serialize a collection of \\c ConstValueInfos to JSON at the\n /// provided output stream.\n bool writeAsJSONToFile(const std::vector<ConstVa... | 2026-04-02T17:10:47 |
denoland/deno | af49b5bbb32a45e6b62e6f2e01492aa552fa271a | 5e9407a74b1db61c14aa5258436c98b3f1c5f085 | fix(lsp): suggest import map aliases in auto-imports for local directories (#33048)
## Summary
- When an import map defines a meaningful alias like `"@app/":
"./src/"`, auto-import completions now correctly suggest the alias
(e.g., `@app/islands/components/Button.tsx`) instead of only offering
relative paths (e.g., `.... | [
{
"path": "cli/lsp/analysis.rs",
"patch": "@@ -244,16 +244,56 @@ pub fn import_map_lookup(\n import_map: &ImportMap,\n specifier: &Url,\n referrer: &Url,\n+) -> Option<String> {\n+ import_map_lookup_inner(\n+ import_map,\n+ specifier,\n+ referrer,\n+ ReferrerInAddressSkip::SkipAll,\n+ )\... | 2026-03-29T18:13:18 |
mrdoob/three.js | e61ab90bd7b03dd9956d170476966ca7d9f7af46 | 2e3cf39fbba5c840fda3f571083b1f9320f1533a | Examples: Fix floor threshold in `games_fps`. (#33053) | [
{
"path": "examples/games_fps.html",
"patch": "@@ -203,7 +203,9 @@\n \n \t\t\t\tif ( result ) {\n \n-\t\t\t\t\tplayerOnFloor = result.normal.y > 0;\n+\t\t\t\t\t// determine if the surface we bumped into is something we can stand on\n+\n+\t\t\t\t\tplayerOnFloor = result.normal.y >= 0.15; // allow slopes up t... | 2026-02-24T13:07:38 |
golang/go | 330aec810997f89262fa04939a00425194e94216 | 40ec033c33802cf6e1236ea8030d882338a457d5 | hash/maphash: add Hasher interface and ComparableHasher impl
Hasher is the standard interface for expressing custom hash
functions and equivalence relations for arbitrary data types.
This allows them to be used in hash-based collection types
such as a hash table (CL 612217) or a Bloom filter (CL 740440).
The Comparab... | [
{
"path": "api/next/70471.txt",
"patch": "@@ -0,0 +1,6 @@\n+pkg hash/maphash, method (ComparableHasher[$0]) Equal($0, $0) bool #70471\n+pkg hash/maphash, method (ComparableHasher[$0]) Hash(*Hash, $0) #70471\n+pkg hash/maphash, type ComparableHasher[$0 comparable] struct #70471\n+pkg hash/maphash, type Hashe... | 2025-03-12T21:12:41 |
tensorflow/tensorflow | 897bbd35d8696c8746817b7f21de13d0bd32d11c | 38b6cbcc0d3c4eac647f5e084d149f6bc4f0b117 | [tf.data service] Do not release clients before they start reading.
https://github.com/tensorflow/tensorflow/commit/72eb1a9d687571131071a2f776daf0f4a15bc86c fixed it when dispatcher starts.
However, if the dispatcher restarts, `latest_client_heartbeats_us_`
still has the wrong values. This change fixes the problem if... | [
{
"path": "tensorflow/core/data/service/dispatcher_impl.cc",
"patch": "@@ -262,10 +262,8 @@ absl::Status DataServiceDispatcherImpl::Start() {\n }\n }\n for (const auto& client_id : state_.ListActiveClientIds()) {\n- // Conservatively pretend we just received a heartbeat from all clients, so\n- ... | 2026-04-04T00:36:19 |
denoland/deno | a57d32c19cfcdef1cb9017044b277019e08c43d8 | f065b072ab052602746b4be8da37ad90e51aee70 | fix(ext/node): `process.argv[0]` is equivalent to execPath (#28915)
Fixes https://github.com/denoland/deno/issues/28889
---------
Co-authored-by: David Sherret <dsherret@users.noreply.github.com>
Co-authored-by: Yoshiya Hinosawa <stibium121@gmail.com>
Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
Co-authored... | [
{
"path": "ext/node/polyfills/process.ts",
"patch": "@@ -1331,7 +1331,7 @@ internals.__bootstrapNodeProcess = function (\n ) {\n if (!warmup) {\n argv0 = argv0Val || \"\";\n- argv[0] = argv0;\n+ argv[0] = Deno.execPath();\n argv[1] = Deno.build.standalone\n ? Deno.execPath()\n : ... | 2026-03-27T17:06:16 |
mrdoob/three.js | 2e3cf39fbba5c840fda3f571083b1f9320f1533a | 2b5ba4f99fa5a570514c070b218da1e815b3a7f8 | TSL: Fix billboarding examples in TSL.md (#33056) | [
{
"path": "docs/TSL.md",
"patch": "@@ -1483,11 +1483,11 @@ Example:\n ```js\n import { billboarding } from 'three/tsl';\n \n-// Full billboarding (like particles) - faces camera in all directions\n+// Default: Horizontal only (like trees) - rotates around Y axis only\n material.vertexNode = billboarding();\... | 2026-02-24T13:07:18 |
golang/go | 40ec033c33802cf6e1236ea8030d882338a457d5 | 4ce2612f21d2c32fc8a6f7bbd2c6c6c5b807f4fe | runtime: add sysUnreserve to undo sysReserve
This is inspired by CL 724560 by Bobby Powers, particularly their great
commit message.
When using address sanitizer with leak detection, sysReserve registers
memory regions with LSAN via lsanregisterrootregion. However, several
code paths release this memory using sysFree... | [
{
"path": "src/runtime/export_test.go",
"patch": "@@ -550,7 +550,7 @@ func MapNextArenaHint() (start, end uintptr, ok bool) {\n \tif !ok {\n \t\t// We were unable to get the requested reservation.\n \t\t// Release what we did get and fail.\n-\t\tsysFreeOS(got, physPageSize)\n+\t\tsysUnreserve(got, physPageS... | 2026-04-02T17:17:23 |
tensorflow/tensorflow | 13e34343d616c69f746840d125ea7289a9baa956 | 9e6df828d0c48fb635706020377a56acb3bec679 | Erase async collectives in XLA CPU.
Previously, JAX and StableHLO did not have asynchronous collectives. Thus,
every JAX program lowered, via StableHLO, to an HLO program without
asynchronous collectives.
Recently, we added asynchronous collectives to JAX and StableHLO, but the XLA
CPU backend doesn't support asynchr... | [
{
"path": "third_party/xla/xla/hlo/transforms/collectives/BUILD",
"patch": "@@ -94,6 +94,43 @@ xla_cc_test(\n ],\n )\n \n+cc_library(\n+ name = \"async_collective_replacer\",\n+ srcs = [\"async_collective_replacer.cc\"],\n+ hdrs = [\"async_collective_replacer.h\"],\n+ deps = [\n+ \":c... | 2026-04-02T23:45:24 |
denoland/deno | 0a8cce448c8d5e560f93bc999eb05208c6c2e06a | 47b20af1e7d64c91667ddd3bd99f53eca77710b8 | Revert "fix(ext/node): support numeric FDs in child_process stdio array (#32959)" (#33017)
## Summary
Reverts #32959 (commit ffbe2368) which added support for numeric FDs in
`child_process` stdio array.
The reverted commit changed deserialization of numeric values in stdio
config from `Rid(ResourceId)` to `Fd(i32)`,... | [
{
"path": "ext/process/lib.rs",
"patch": "@@ -7,8 +7,6 @@ use std::collections::HashMap;\n use std::ffi::OsString;\n use std::io::Write;\n #[cfg(unix)]\n-use std::os::fd::FromRawFd;\n-#[cfg(unix)]\n use std::os::unix::prelude::ExitStatusExt;\n #[cfg(unix)]\n use std::os::unix::process::CommandExt;\n@@ -81,1... | 2026-03-27T07:23:29 |
mrdoob/three.js | 2b5ba4f99fa5a570514c070b218da1e815b3a7f8 | d14d3ec07beb851fc17a74487e9c58512e48f15f | Examples: Fix colors in webgpu_custom_fog (#33057) | [
{
"path": "examples/webgpu_custom_fog.html",
"patch": "@@ -53,8 +53,11 @@\n \n \t\t\t\t// custom fog\n \n-\t\t\t\tconst skyColor = color( 0xf0f5f5 );\n-\t\t\t\tconst groundColor = color( 0xd0dee7 );\n+\t\t\t\tconst skyColorValue = 0xf0f5f5;\n+\t\t\t\tconst groundColorValue = 0xd0dee7;\n+\n+\t\t\t\tconst sky... | 2026-02-24T13:05:51 |
golang/go | 78d5260426899e934a4d680910b1484953e78087 | ef90a565b50af191c4f20b62770b084d6978a88d | runtime: use asmcgocall_no_g in libInit
libInit runs before rt0_go, which is where TLS setup occurs. Thus the
contents of the TLS may not be defined, so the g lookup in asmcgocall is
not safe.
Concretely, android-386 c-shared builds crash without this change
because asmcgocall reads an invalid non-zero g from the TLS... | [
{
"path": "src/runtime/asm_loong64.s",
"patch": "@@ -568,6 +568,15 @@ nosave:\n \tMOVW\tR4, ret+16(FP)\n \tRET\n \n+// func asmcgocall_no_g(fn, arg unsafe.Pointer)\n+// Call fn(arg) aligned appropriately for the gcc ABI.\n+// Called on a system stack, and there may be no g yet.\n+TEXT ·asmcgocall_no_g(SB),N... | 2026-03-31T20:34:59 |
mrdoob/three.js | 1178b248603d2ebf408a0137fa700945fb222d07 | e9461b694c6453e9809335bd63a5301dfdaf3548 | WebGPURenderer: Fix texture compare fallback for shadows. (#33050) | [
{
"path": "src/nodes/accessors/TextureNode.js",
"patch": "@@ -8,7 +8,7 @@ import { nodeProxy, vec3, nodeObject, int, Fn } from '../tsl/TSLBase.js';\n import { step } from '../math/MathNode.js';\n import { NodeUpdateType } from '../core/constants.js';\n \n-import { Compatibility, IntType, LessCompare, Neares... | 2026-02-23T10:32:35 |
tensorflow/tensorflow | f983c0f6c25223a79426ffcce60565324bc3372d | f5df0e8e14b8c603d1019e7595d9b917addb3124 | [tsl] Clean up #includes in errors.h and status.h
Main goal is to not include Eigen when all we need is error codes.
PiperOrigin-RevId: 893722480 | [
{
"path": "third_party/xla/xla/stream_executor/cuda/subprocess_compilation_no_fakes_test.cc",
"patch": "@@ -62,7 +62,7 @@ TEST(SubprocessCompilationTest, BundleGpuAsmUsingFatbinWorks) {\n )\";\n \n GpuAsmOpts opts;\n- tensorflow::se::CudaComputeCapability cc{9, 0};\n+ CudaComputeCapability cc{9, 0};\n ... | 2026-04-02T22:05:58 |
swiftlang/swift | 1a70684c1ab0f98978ef3dcf9dbf9105cb5ec0dc | 80ba6be95807100318a5f83320f3769eec9aa7f8 | [cxx-interop] Fix "Failed to reconstruct type" assertion for `NS_OPTIONS` types
This fixes the following assertion failure when building with debug info:
```
Abort: function getMangledName at IRGenDebugInfo.cpp:1098
Failed to reconstruct type for $sSo20NSDataWritingOptionsVmD
```
This assertion started triggering aft... | [
{
"path": "lib/ClangImporter/ClangImporter.cpp",
"patch": "@@ -3873,6 +3873,29 @@ void ClangImporter::lookupTypeDecl(\n }\n }\n \n+ // In C++ language mode, CF_OPTIONS/NS_OPTIONS have a different expansion. If\n+ // the tag lookup didn't find anything, try an ordinary name lookup for the\n+ // type... | 2026-04-01T14:15:59 |
denoland/deno | 47b20af1e7d64c91667ddd3bd99f53eca77710b8 | 522e0710bb8c3b9be39578a0771ea68eea12507f | refactor(core): libuv compatibility improvements for uv_compat (#33015)
## Summary
Factors out standalone libuv compliance improvements from #32819 (TLS
rewrite) so they can land and be tested independently.
- **Cached loop time**: `update_time()` once per tick instead of wall
clock reads
- **Socket lifecycle**: `uv... | [
{
"path": "libs/core/runtime/jsruntime.rs",
"patch": "@@ -2230,6 +2230,8 @@ impl JsRuntime {\n // ===== Phase 1: Timers =====\n // 1a. Fire expired libuv C timers\n if let Some(uv_inner_ptr) = context_state.uv_loop_inner.get() {\n+ // Update cached loop time at the start of each tick, match... | 2026-03-27T07:14:30 |
golang/go | 7bbb5a8ec139cce0d126d00de16b167c2512ca1b | affadc7997466dfacad5b9a3dc90ee5e7a7b6085 | io/fs: fix godoc to refer to the 'fsys' arg
Fix godoc for package io/fs functions where 'fs' is mentioned instead of
the 'fsys' argument. This allows to more clearly distinguish references
to the methods of that argument from functions of the io/fs package.
Change-Id: I18674940e59dcf4501f46ee48f94fc58948df28c
Reviewe... | [
{
"path": "src/io/fs/glob.go",
"patch": "@@ -27,7 +27,7 @@ type GlobFS interface {\n // The only possible returned error is [path.ErrBadPattern], reporting that\n // the pattern is malformed.\n //\n-// If fs implements [GlobFS], Glob calls fs.Glob.\n+// If fsys implements [GlobFS], Glob calls fsys.Glob.\n /... | 2026-03-16T09:15:53 |
mrdoob/three.js | 5f6753b296df6faca9e4474ccc497ffd86372fa4 | 8d9c591c1c93a5c583a69e5ec6083d26b85a028d | AnimationAction: Fix `timeScale` reversal jump. (#33035) | [
{
"path": "src/animation/AnimationAction.js",
"patch": "@@ -856,6 +856,7 @@ class AnimationAction {\n \n \t\t\t} else {\n \n+\t\t\t\tthis._loopCount = loopCount;\n \t\t\t\tthis.time = time;\n \n \t\t\t}",
"additions": 1,
"deletions": 0,
"language": "JavaScript"
},
{
"path": "test/unit/sr... | 2026-02-21T09:21:06 |
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.