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
446f223ae6405f885b7c754a394168ad75b8899a
1401e3efb76d5d906f7cf30f4b4b30a33cab98cc
FBXLoader: Fix morph deltas. (#33350)
[ { "path": "examples/jsm/loaders/FBXLoader.js", "patch": "@@ -2364,6 +2364,13 @@ class GeometryParser {\n \t\tparentGeo.morphAttributes.position = [];\n \t\t// parentGeo.morphAttributes.normal = []; // not implemented\n \n+\t\t// Morph attribute positions are stored as deltas (morphTargetsRelative = true), s...
2026-04-10T11:11:12
tensorflow/tensorflow
0173493a0652d46c52af68dbc6ef0b7a04eb6d3f
3128140fc8ef4bcdb700ee747022b9b72a0c90dc
Swap the order of ABSL_DEPRECATED and ABSL_REFACTOR_INLINE in xla/tsl/platform/errors.h PiperOrigin-RevId: 897951146
[ { "path": "third_party/xla/xla/tsl/platform/errors.h", "patch": "@@ -225,8 +225,9 @@ inline absl::Status Cancelled(const absl::Status& arg) {\n return absl::CancelledError(arg.message());\n }\n template <typename Arg1>\n-ABSL_DEPRECATED(\"Use absl::CancelledError(arg1) instead.\")\n-ABSL_REFACTOR_INLINE i...
2026-04-10T23:48:30
golang/go
6064169e0507e71305e7b600e607e357fc842dd9
11655d2c1420dcc869a8e43087668221b657c67f
debug/elf: use saferio.SliceCap for segment slice This avoids using a lot of memory for an invalid segment count. No test case because the problem can only happen for invalid ata. Let the fuzzer find cases like this. For #47653 Fixes #78611 Change-Id: I649f5446496bfa46668e7a3e5c84c82131e1d136 Reviewed-on: https://g...
[ { "path": "src/debug/elf/file.go", "patch": "@@ -467,7 +467,14 @@ func NewFile(r io.ReaderAt) (*File, error) {\n \t}\n \n \t// Read program headers\n-\tf.Progs = make([]*Prog, phnum)\n+\tc := saferio.SliceCap[*Prog](uint64(phnum))\n+\tif c < 0 {\n+\t\treturn nil, &FormatError{0, \"too many segments\", phnum...
2026-04-09T21:43:28
kubernetes/kubernetes
3b5f1501532b021bf88d8f89ba2388725c5325d4
093c91d2264ad9c4b965ad6dd27b3089681b0d73
devicemanager: constrain topology hints to device NUMA nodes On platforms with many OS-visible NUMA nodes that carry no devices (e.g. NVIDIA GB200 with 36 NUMA nodes, only 1–2 hosting GPUs), IterateBitMasks enumerates O(2^n) combinations and stalls the kubelet for minutes. Introduce deviceNUMANodes(), which collects ...
[ { "path": "pkg/kubelet/cm/devicemanager/topology_hints.go", "patch": "@@ -152,12 +152,27 @@ func (m *ManagerImpl) getAvailableDevices(resource string) sets.Set[string] {\n }\n \n func (m *ManagerImpl) generateDeviceTopologyHints(resource string, available sets.Set[string], reusable sets.Set[string], request...
2025-12-11T02:49:32
mrdoob/three.js
84335585d465607cb53006581624dff46ad38010
f1103c4e48a11bb67f85c1789faaf8f2d976a65c
GLTFExporter: Make attribute prefix more robust. (#33357)
[ { "path": "examples/jsm/exporters/GLTFExporter.js", "patch": "@@ -1848,7 +1848,7 @@ class GLTFWriter {\n \t\t\tconst validVertexAttributes =\n \t\t\t\t\t/^(POSITION|NORMAL|TANGENT|TEXCOORD_\\d+|COLOR_\\d+|JOINTS_\\d+|WEIGHTS_\\d+)$/;\n \n-\t\t\tif ( ! validVertexAttributes.test( attributeName ) ) attributeN...
2026-04-09T09:06:00
denoland/deno
8157260173d6f55534f688020a44ac5e2f7bbc61
1ececcbcd1a1d541bb6598c2d9aeb86b13451d48
fix(permissions): normalize IPv4-mapped IPv6 addresses in net permission checks (#33223) ## Summary Normalize IPv4-mapped IPv6 addresses (e.g. `::ffff:127.0.0.1`) to their IPv4 equivalent before storing or comparing `Host::Ip` values in the permission system. Without this, `--deny-net=127.0.0.1` does not block conne...
[ { "path": "runtime/permissions/lib.rs", "patch": "@@ -1730,6 +1730,19 @@ pub enum SubdomainWildcards {\n Disabled,\n }\n \n+/// Normalize IPv4-mapped IPv6 addresses (e.g. `::ffff:127.0.0.1`) to\n+/// their IPv4 equivalent so that permission checks treat them identically\n+/// to the bare IPv4 form.\n+fn n...
2026-04-09T16:53:31
tensorflow/tensorflow
0bc6b53ebdd093a56932eea3216ecba99ff4ac77
08e778020fb56b565b341eb71db1a5242e426855
Fix invalid-null-argument crash in GraphConstructor and tensor decoding - Accurately identify fully mapped nodes in GraphConstructor::IsNodeFullyMapped by iterating over all flat output indices using NumOutputsForNode. - Safeguard CordStringListDecoderImpl::Data in tensor_coding.cc against zero-sized string decodings ...
[ { "path": "tensorflow/core/common_runtime/graph_constructor.cc", "patch": "@@ -1086,7 +1086,9 @@ absl::Status GraphConstructor::IsNodeFullyMapped(const NodeDef& node_def,\n bool* is_node_mapped) {\n const OpDef* op_def;\n TF_RETURN_IF_ERROR(g_->op_registr...
2026-04-10T22:21:14
golang/go
11655d2c1420dcc869a8e43087668221b657c67f
27c0ad865c944a7c7c637fd0f97f48a422ca6fae
net: drop always nil (*netFD).netFD error return value Drop the always-nil error to simplify callers. This was missed in CL 764620. Change-Id: I7a93640b5422d7441234e226aa8b541888b2ebea Reviewed-on: https://go-review.googlesource.com/c/go/+/765220 Auto-Submit: Tobias Klauser <tobias.klauser@gmail.com> LUCI-TryBot-Resu...
[ { "path": "src/net/ipsock_plan9.go", "patch": "@@ -249,8 +249,8 @@ func listenPlan9(ctx context.Context, net string, laddr Addr) (fd *netFD, err er\n \treturn newFD(proto, name, nil, f, nil, laddr, nil), nil\n }\n \n-func (fd *netFD) netFD() (*netFD, error) {\n-\treturn newFD(fd.net, fd.n, fd.listen, fd.ctl...
2026-04-10T08:26:09
mrdoob/three.js
8b169b04fffa5fdaf546b7c53159c78288dd69f3
e4110f5aeaf202c7ef61875d80b444837be14552
Revert "MathNode: Fix `transformDirection()`." (#33349)
[ { "path": "src/nodes/accessors/Normal.js", "patch": "@@ -1,5 +1,5 @@\n import { attribute } from '../core/AttributeNode.js';\n-import { cameraViewMatrix, cameraWorldMatrix } from './Camera.js';\n+import { cameraViewMatrix } from './Camera.js';\n import { modelNormalMatrix, modelWorldMatrix } from './ModelNo...
2026-04-07T12:42:07
denoland/deno
1ececcbcd1a1d541bb6598c2d9aeb86b13451d48
ce2e62bef11d6243f4812acc9a302ead80ef7af9
fix(core): fix uv_pipe_open handle lifecycle to match libuv (#33225) ## Summary Fix pipe handle lifecycle to match libuv's semantics. Two changes: 1. **Don't set `UV_HANDLE_ACTIVE` in `uv_pipe_open`** -- In libuv, `uv_pipe_open` only associates an fd with the handle. The handle becomes active only when `uv_read_star...
[ { "path": "libs/core/uv_compat/pipe.rs", "patch": "@@ -232,7 +232,11 @@ pub unsafe fn uv_pipe_open(pipe: *mut uv_pipe_t, fd: c_int) -> c_int {\n if let Ok(afd) = tokio::io::unix::AsyncFd::new(RawFdWrapper(fd)) {\n (*pipe).internal_async_fd = Some(afd);\n }\n- (*pipe).flags |= UV_HANDLE_ACTI...
2026-04-09T16:26:44
golang/go
4478774aa2b1069774c274ebc2ee2ae029030b0f
2f3c778b232dd53c41e1b623d25cd9f4ab28aaa5
cmd/compile: fix typo Change-Id: Ia9ee618aa68aad5bab73ee62eea176084ee162da GitHub-Last-Rev: 4cc005d3cd1ae4e5eaa283b1799c7be26b2279f5 GitHub-Pull-Request: golang/go#78625 Reviewed-on: https://go-review.googlesource.com/c/go/+/765280 Reviewed-by: Keith Randall <khr@golang.org> Reviewed-by: Dmitri Shuralyov <dmitshur@goo...
[ { "path": "src/cmd/compile/internal/ssa/check.go", "patch": "@@ -198,7 +198,7 @@ func checkFunc(f *Func) {\n \t\t\t\tcanHaveAux = true\n \t\t\tcase auxCCop:\n \t\t\t\tif opcodeTable[Op(v.AuxInt)].name == \"OpInvalid\" {\n-\t\t\t\t\tf.Fatalf(\"value %v has an AuxInt value that is a valid opcode\", v)\n+\t\t\...
2026-04-10T14:34:47
tensorflow/tensorflow
08e778020fb56b565b341eb71db1a5242e426855
fc47a7ebaff1fcc78fe67605aff7bfe2186cc739
[XLA Test Fixture Migration] Migrate collective ops test to use HloPjRtTestBase. PiperOrigin-RevId: 897900202
[ { "path": "third_party/xla/xla/tests/BUILD", "patch": "@@ -2671,11 +2671,11 @@ xla_test(\n \"gpu\",\n \"cpu\",\n ],\n- tags = [\"pjrt_migration_candidate\"],\n- use_legacy_runtime = True,\n deps = [\n- \":hlo_test_base\",\n+ \":aot_utils\",\n+ \":hlo_pjrt_t...
2026-04-10T21:51:57
mrdoob/three.js
e4110f5aeaf202c7ef61875d80b444837be14552
2a4e27e261b48fc5d8060e7aa733713970c4e388
MathNode: Fix `transformDirection()`. (#33347)
[ { "path": "src/nodes/accessors/Normal.js", "patch": "@@ -1,5 +1,5 @@\n import { attribute } from '../core/AttributeNode.js';\n-import { cameraViewMatrix } from './Camera.js';\n+import { cameraViewMatrix, cameraWorldMatrix } from './Camera.js';\n import { modelNormalMatrix, modelWorldMatrix } from './ModelNo...
2026-04-07T11:33:07
denoland/deno
301e2245161ee6db43b5aea9eadc4da8e8934f91
f66ec66c048858b70c8bbe5fe19408c41d56d7d7
fix(core): handle WouldBlock in op_print for non-blocking stdio (#33221) ## Summary Replace `write_all` in the core `op_print` with a manual write loop that retries on `WouldBlock` and `Interrupted`. When Node's `process.stdout`/`process.stderr` opens stdio fds via `uv_pipe_open` or `uv_tty_init`, it sets `O_NONBLOC...
[ { "path": "libs/core/ops_builtin.rs", "patch": "@@ -220,13 +220,28 @@ pub fn op_print(\n #[string] msg: &str,\n is_err: bool,\n ) -> Result<(), std::io::Error> {\n- if is_err {\n- stderr().write_all(msg.as_bytes())?;\n- stderr().flush().unwrap();\n+ let mut out: Box<dyn Write> = if is_err {\n+ ...
2026-04-09T12:59:53
tensorflow/tensorflow
81338d48b382581100d5128ae84220795bc5eb53
05e905cd15181be8e80229e65f570caaa2839bb2
Fix host tracing routine for benchmarks. PiperOrigin-RevId: 897867567
[ { "path": "third_party/xla/xla/backends/profiler/cpu/BUILD", "patch": "@@ -3,7 +3,7 @@ load(\n \"xla_cc_test\",\n )\n load(\"//xla/tsl:tsl.bzl\", \"internal_visibility\")\n-load(\"//xla/tsl/platform:rules_cc.bzl\", \"cc_library\")\n+load(\"//xla/tsl/platform:rules_cc.bzl\", \"cc_binary\", \"cc_library\"...
2026-04-10T20:43:55
golang/go
926a1bef08ae6b93b50a96eedb15210e1d8c4733
0e31741044d519065f62a5e96499909d6cd230dc
cmd/asm, cmd/internal/obj/arm64: add GP and SIMD reg support for SVE The GP registers and SIMD registers are comforming to the existing Go syntax: they are V or R registers, their widths are specified in the Opcode, the rules to specify them is: - if that instruction only contains one GP or SIMD register: If it's 3...
[ { "path": "src/cmd/asm/internal/asm/testdata/arm64sveenc.s", "patch": "@@ -34,8 +34,8 @@ TEXT asmtest(SB),DUPOK|NOSPLIT,$-8\n \tPPTRUE PN14.S // 1678a025\n \tPPUNPKHI P14.B, P0.H // c0413105\n \tPPUNPKLO P14.B, P0.H ...
2026-03-25T19:05:16
mrdoob/three.js
2a4e27e261b48fc5d8060e7aa733713970c4e388
c73eff8c53663621ba6bf2cbb9bb288a3f0d730b
Added new DevTools (#30870) Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com> Co-authored-by: Chris Smoak <chris.smoak+@gmail.com> Co-authored-by: Jasiel Guillén <darkensses@gmail.com> Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
[ { "path": "devtools/README.md", "patch": "@@ -0,0 +1,98 @@\n+# Three.js DevTools Extension\n+\n+This Chrome DevTools extension provides debugging capabilities for Three.js applications. It allows you to inspect scenes, objects, materials, and renderers.\n+\n+## Installation\n+\n+1. **Development Mode**:\n+ ...
2026-04-07T10:22:58
kubernetes/kubernetes
bfe8f6b7298d9ff9262d4cf8081e9ca8d2510fc0
b9b0ff440d5493764532348e0d80abdb7daf47b5
lint small fix Signed-off-by: Mujib Ahasan <ahasanmujib8@gmail.com>
[ { "path": "pkg/features/kube_features.go", "patch": "@@ -344,13 +344,6 @@ const (\n \t// based on \"structured parameters\".\n \tDynamicResourceAllocation featuregate.Feature = \"DynamicResourceAllocation\"\n \n-\t// owner: @helayoty @mm4tt @wojtek-t\n-\t// kep: https://kep.k8s.io/5547\n-\t//\n-\t// Enables...
2026-04-04T14:49:57
golang/go
0e31741044d519065f62a5e96499909d6cd230dc
824a8a315668598436072566727cc5b28ac2f8c9
runtime: fix AIX library initialization On AIX, libInit passes a function descriptor instead of the function pointer to pthread_create. This is a regression from CL 706417. Change-Id: I660175eb992a41ef61b1927c51392887a724cd76 Reviewed-on: https://go-review.googlesource.com/c/go/+/761780 Reviewed-by: Ian Lance Taylor ...
[ { "path": "src/runtime/libinit.go", "patch": "@@ -11,6 +11,13 @@ import (\n \t\"unsafe\"\n )\n \n+// rt0LibGoFn holds the function pointer to rt0_lib_go suitable for thread\n+// creation. On most platforms it is zero, meaning the raw code address should\n+// be used. On AIX it is set by libpreinit to a func...
2026-04-01T14:07:46
tensorflow/tensorflow
4025619336c963e61ac658d513b04bd0583c77cb
6468f68295ef2e4a77744dea5241f578032a7f5f
Use `pkg @ url` for local wheel overrides again, instead of `--find-links`. Thus, undo a temporary, flimsier workaround. Re-cap: 1. rules_python upgraded 1.7.0 -> 1.8.4\ https://github.com/openxla/xla/commit/0025bf752460567b8198d5ea5fd8bff0b815bc70 * 1.8.4 introduces regression that causes `pkg @ url` lines to...
[ { "path": "third_party/py/python_repo.bzl", "patch": "@@ -210,12 +210,14 @@ def _rewrite_requirements_with_local_wheels(\n base_requirement_names,\n )\n \n- return _merge_local_wheels_into_base_requirements(\n+ merged_requirements_blocks, override_report_entries = _merge_local_wheels_into_...
2026-04-10T15:47:13
denoland/deno
f66ec66c048858b70c8bbe5fe19408c41d56d7d7
241d11f9a39f63c45e5d5bda30dc711f5ba67591
test: prevent task/signals spec test from hanging in CI (#33020) ## Summary - The `task/signals` spec test registers signal handlers for **all** signals including SIGTERM in `listener.ts`, which means the test harness cannot kill it when the timeout fires — causing 30+ minute CI hangs - Added a 30s hard timeout in `s...
[ { "path": "tests/specs/task/signals/__test__.jsonc", "patch": "@@ -1,5 +1,5 @@\n {\n- \"timeout\": 60,\n+ \"timeout\": 45,\n // signals don't really exist on windows\n \"if\": \"unix\",\n // this runs a deno task", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path"...
2026-04-09T12:44:52
mrdoob/three.js
c73eff8c53663621ba6bf2cbb9bb288a3f0d730b
b75d0c368f797502f5bd0c75404ee50f39474fd4
BufferGeometryUtils: Fix two bugs. (#33338)
[ { "path": "examples/jsm/utils/BufferGeometryUtils.js", "patch": "@@ -286,8 +286,7 @@ function mergeGeometries( geometries, useGroups = false ) {\n \tfor ( const name in morphAttributes ) {\n \n \t\tconst numMorphTargets = morphAttributes[ name ][ 0 ].length;\n-\n-\t\tif ( numMorphTargets === 0 ) break;\n+\t...
2026-04-06T21:39:24
kubernetes/kubernetes
bc2179d8824f41bce3e25bf563e7164989d094ea
d3b9c54bd952117924fb0790f6989c0d30715b19
pause: fix version drift in various files The latest pause version is 3.10.2 but due to the introduction of the PATCH level version to the pause image (previously was only MAJOR.MINOR), various files have remained on an older version. Either 3.10 or 3.10.1. Our validation with build/dependencies.yaml ./hack/verify-ext...
[ { "path": "cluster/gce/config-common.sh", "patch": "@@ -154,7 +154,7 @@ export WINDOWS_KUBEPROXY_KUBECONFIG_FILE=\"${WINDOWS_K8S_DIR}\\kubeproxy.kubeconfi\n # Path for kube-proxy kubeconfig file on Windows nodes.\n export WINDOWS_NODEPROBLEMDETECTOR_KUBECONFIG_FILE=\"${WINDOWS_K8S_DIR}\\node-problem-detecto...
2026-04-03T14:01:49
golang/go
76ddc5b92ba644c91908b5ffc62bfb9e8a822d70
2393d14061ea07d26be70091196bbe7c8c12a402
crypto/internal/fips140/pbkdf2: fix typo in error message Change-Id: I24a44b0f06b02fe99c8364afa2a9c04ff5435c0e Reviewed-on: https://go-review.googlesource.com/c/go/+/765001 Reviewed-by: Robert Griesemer <gri@google.com> Auto-Submit: Neal Patel <nealpatel@google.com> Reviewed-by: Carlos Amedee <carlos@golang.org> LUCI-...
[ { "path": "src/crypto/internal/fips140/pbkdf2/pbkdf2.go", "patch": "@@ -24,7 +24,7 @@ func Key[Hash hash.Hash](h func() Hash, password string, salt []byte, iter, keyL\n \tsetServiceIndicator(salt, keyLength)\n \n \tif keyLength <= 0 {\n-\t\treturn nil, errors.New(\"pkbdf2: keyLength must be larger than 0\")...
2026-04-09T21:22:13
tensorflow/tensorflow
6468f68295ef2e4a77744dea5241f578032a7f5f
0e3e9bac160383d0c7b930b8f5541f93cf0b2f39
Add a test to verify that Literal::Make() returns an error when the shape is too large. PiperOrigin-RevId: 897712738
[ { "path": "third_party/xla/xla/literal_test.cc", "patch": "@@ -611,6 +611,14 @@ TEST_F(LiteralUtilTest, LogicalInequalitySlowPath) {\n EXPECT_FALSE(b.Equal(a, false));\n }\n \n+TEST_F(LiteralUtilTest, MakeReturnsErrorOnHugeAllocation) {\n+ // Create a shape that is too large to allocate.\n+ Shape huge_s...
2026-04-10T15:46:51
denoland/deno
241d11f9a39f63c45e5d5bda30dc711f5ba67591
acdf3904eca57f4d5a2d231b62abd98409f84658
fix(permissions): check deny rules against resolved IPs to prevent numeric hostname bypass (#33203) Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com> Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
[ { "path": "ext/net/ops.rs", "patch": "@@ -267,6 +267,17 @@ pub async fn op_net_send_udp(\n .next()\n .ok_or(NetError::NoResolvedAddress)?;\n \n+ {\n+ state\n+ .borrow_mut()\n+ .borrow_mut::<PermissionsContainer>()\n+ .check_net_resolved(\n+ &addr.ip(),\n+ addr.port()...
2026-04-09T12:18:29
swiftlang/swift
d57f8722b628e6de7f76c5c61503a1095d60f39b
5f060ce8fc8ea39749397ab81489afc57f66f37f
[Concurrency] Fix IRGen test for task-local metadata on ARM64 The CHECK pattern expected `tail call` but LLVM only emits `tail call` on x86. resolves rdar://174207398
[ { "path": "test/IRGen/task_local_function_value_metadata.swift", "patch": "@@ -1,13 +1,12 @@\n // RUN: %target-swift-frontend -primary-file %s -emit-ir -O -swift-version 5 -plugin-path %swift-plugin-dir -module-name main | %FileCheck %s\n \n // REQUIRES: concurrency\n-// REQUIRES: rdar174207398\n \n @TaskLo...
2026-04-10T03:01:55
mrdoob/three.js
a6ef8f570264b88997426fdfd633361cd8d8f336
37a0863cc7ce723922c67feb9cca30cdb5d2a637
WebGPURenderer: Fix WebGPU render bundle reuse across render contexts (#33335)
[ { "path": "src/renderers/common/RenderBundle.js", "patch": "@@ -11,11 +11,13 @@ class RenderBundle {\n \t *\n \t * @param {BundleGroup} bundleGroup - The bundle group.\n \t * @param {Camera} camera - The camera the bundle group is rendered with.\n+\t * @param {RenderContext} renderContext - The render conte...
2026-04-05T07:48:55
golang/go
0eb3e5736d2134b1ed2d14b3b25c831bd6adbec6
be193f3a97dce50bad1cf6100aa662c2f6ba57f7
spec: fix prose in Instantiatons section For #77273. Change-Id: Idf5b81f77115e4e30921476f7424769fdf604ef4 Reviewed-on: https://go-review.googlesource.com/c/go/+/764920 Reviewed-by: Alan Donovan <adonovan@google.com> TryBot-Bypass: Robert Griesemer <gri@google.com> Auto-Submit: Robert Griesemer <gri@google.com> Review...
[ { "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 (April 7, 2026)\",\n+\t\"Subtitle\": \"Language version go1.27 (April 9, 2026)\",\n \t\"Path\": \"/ref/spec\"\n }-->\n \n@@ -4398,8 +4398,...
2026-04-09T19:34:27
tensorflow/tensorflow
0e3e9bac160383d0c7b930b8f5541f93cf0b2f39
68ca32659d58cc4d088b4d091b97be1942d88a46
Add precision checking test for default dot algorithm. This change adds a test case to dot_algorithms_test.cc to verify the behavior when the xla_gpu_default_to_alg_dot_bf16_bf16_f32 flag is enabled, causing ALG_UNSET to default to ALG_DOT_BF16_BF16_F32. Also, variable names for maximum relative error are corrected fr...
[ { "path": "third_party/xla/xla/backends/gpu/codegen/triton/dot_algorithms_test.cc", "patch": "@@ -1704,8 +1704,9 @@ double GetMaxRelErrorForSmallContractingDim(Backend backend,\n //\n // Thus, they do not actually depend on k, since f32 has much higher precision\n // than the rounding mode.\n- const ...
2026-04-10T15:11:11
denoland/deno
acdf3904eca57f4d5a2d231b62abd98409f84658
c16785b435e56f2cef7d6665868942e18592d8fb
fix(io): remove global stdio statics, handle non-blocking stdin (#33219) ## Summary - Remove `STDIN_HANDLE`/`STDOUT_HANDLE`/`STDERR_HANDLE` global `Lazy<StdFile>` statics that wrapped raw stdio fds 0/1/2 - Replace with local `stdio_fd()` helper + `Drop` impl that leaks stdio fds to prevent closing them at shutdown - A...
[ { "path": "cli/util/console.rs", "patch": "@@ -19,8 +19,7 @@ use super::draw_thread::DrawThread;\n \n /// Gets the console size.\n pub fn console_size() -> Option<ConsoleSize> {\n- let stderr = &deno_runtime::deno_io::STDERR_HANDLE;\n- deno_runtime::ops::tty::console_size(stderr).ok()\n+ deno_runtime::op...
2026-04-09T12:15:02
swiftlang/swift
f771a6e2ea08de332306bc0030611d574901a240
236f80fa362ab7935e252d1db69b83e9f833f542
Synthesize builtin generic parameter names when there are more than 6 generic parameters (#87201) First 6 got pre-defined names. Fixes #87091
[ { "path": "lib/AST/Builtins.cpp", "patch": "@@ -287,11 +287,13 @@ static const char * const GenericParamNames[] = {\n \"Z\"\n };\n \n-static GenericTypeParamDecl*\n-createGenericParam(ASTContext &ctx, const char *name, unsigned index,\n- bool isParameterPack = false) {\n+static GenericTy...
2026-04-10T02:04:40
mrdoob/three.js
4a5f5b33f903c17260f14da9f33b836971b8f227
6b0c51ece53d5e1c7e4f491651f6daaa18556ed3
Dev: Execute `npm audit fix`. (#33333)
[ { "path": "package-lock.json", "patch": "@@ -1214,9 +1214,9 @@\n \"license\": \"MIT\"\n },\n \"node_modules/brace-expansion\": {\n- \"version\": \"1.1.12\",\n- \"resolved\": \"https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz\",\n- \"integrity\": \"sha512-9...
2026-04-04T10:00:18
golang/go
be193f3a97dce50bad1cf6100aa662c2f6ba57f7
28c56bb5fb438d46d921a37f2e172ecf198f75c2
cmd/go: use fsys.ReadDir for IsStandardPackage FIPS140 crypto files will be bound into the virtual filesystem using the fsys package. So IsStandardPackage needs to use fsys.ReadDir to check that the fips140 packages are standard packages rather than os.ReadDir because os.ReadDir doesn't know about the overlay. It wou...
[ { "path": "src/cmd/go/internal/modindex/read.go", "patch": "@@ -680,7 +680,7 @@ func (rp *IndexPackage) Import(bctxt build.Context, mode build.ImportMode) (p *b\n // and otherwise falling back to internal/goroot.IsStandardPackage\n func IsStandardPackage(goroot_, compiler, path string) bool {\n \tif !enable...
2026-04-03T19:03:36
tensorflow/tensorflow
68ca32659d58cc4d088b4d091b97be1942d88a46
c5e36b092a31739dc182311159b08961529d4f0b
PR #40653: [ROCm] Add missing ROCm dependencies to collective_perf_table_gen Imported from GitHub PR https://github.com/openxla/xla/pull/40653 📝 Summary of Changes Add missing ROCm dependencies to `collective_perf_table_gen`. 🎯 Justification The `collective_perf_table_gen` tool was failing with the following messa...
[ { "path": "third_party/xla/xla/tools/BUILD", "patch": "@@ -860,6 +860,9 @@ cc_library(\n ] + if_cuda([\n \"//xla/service:gpu_plugin\",\n \"//xla/stream_executor:cuda_platform\",\n+ ]) + if_rocm([\n+ \"//xla/service:gpu_plugin\",\n+ \"//xla/stream_executor:rocm_platform\"...
2026-04-10T15:10:34
denoland/deno
1d69e90ed958eb30e4148bc2c973842d44cbd83c
b1acf1c32b0ab2734e6d7e76594d987c236487a7
fix(ext/napi): use per-isolate Private key for napi_wrap/napi_unwrap (#33204) ## Summary - **Root cause**: Each `op_napi_open` call created a unique `v8::Private` symbol for `napi_wrap` and `type_tag`. Since `v8::Private::new()` always creates a distinct symbol, objects wrapped by one native addon could not be unwrap...
[ { "path": "ext/napi/lib.rs", "patch": "@@ -326,6 +326,12 @@ pub struct NapiState {\n /// Matches Node.js `finalizing_reflist` / `reflist` behavior.\n pub ref_tracker: Rc<RefCell<Vec<PendingNapiFinalizer>>>,\n pub env_shared_ptrs: Vec<*mut EnvShared>,\n+ /// Per-isolate V8 Private key for napi_wrap/na...
2026-04-09T10:19:07
swiftlang/swift
45fad559940c104cc6437cfd2cd963638c333efe
594c32a89d9545b2a7eefc6748305f16c2fbfc85
SILGen: fix mismatch in expectations of substitution map The backdeployment thunk is calling into a method within a constrained extension, but it's constrained the generic parameter to a fixed type. So, there is no invocation generic signature, thus no substitution map is expected by the assertion added in https://gi...
[ { "path": "lib/SILGen/SILGenAvailability.cpp", "patch": "@@ -185,7 +185,12 @@ static void emitBackDeployForwardApplyAndReturnOrThrow(\n SILFunctionConventions fnConv(silFnType, SGF.SGM.M);\n \n SILValue functionRef = SGF.emitGlobalFunctionRef(loc, function);\n- auto subs = SGF.F.getForwardingSubstituti...
2026-04-09T21:14:35
mrdoob/three.js
e62f72d7de74e82d73ab43ab4830effe642ac22d
9c53443573a19e588770eff2c8655f9899e932f5
FBXLoader: Fix opacity fallback. (#33325)
[ { "path": "examples/jsm/loaders/FBXLoader.js", "patch": "@@ -601,7 +601,8 @@ class FBXTreeParser {\n \n \t\t}\n \n-\t\t// the transparency handling is implemented based on Blender/Unity's approach: https://github.com/sobotka/blender-addons/blob/7d80f2f97161fc8e353a657b179b9aa1f8e5280b/io_scene_fbx/import_fb...
2026-04-03T14:37:21
golang/go
28c56bb5fb438d46d921a37f2e172ecf198f75c2
f6d825cd3a7f98fbb48880b791b4c2be8cecddf3
cmd/go: build pkgsite doc command in same go command invocation Instead of running go run. This is enabled by Ian Alexander's work to remove global state in the loader package. This also fixes an issue where we can't build and run the pkgsite binary because, with our GOPROXY setting, if pkgsite module is available in...
[ { "path": "src/cmd/go/internal/doc/doc.go", "patch": "@@ -222,16 +222,16 @@ func do(ctx context.Context, writer io.Writer, flagSet *flag.FlagSet, args []str\n \t\t\tmod, err := runCmd(append(os.Environ(), \"GOWORK=off\"), \"go\", \"list\", \"-m\")\n \t\t\tif err == nil && mod != \"\" && mod != \"command-lin...
2026-04-07T21:15:10
tensorflow/tensorflow
0652aa1b39e1106e371aba18b632f9c2639a2857
eab676155fb927d5acf67ed0469dcca1f845365f
update agents.md to stop insisting on TF_ prefixes PiperOrigin-RevId: 897647178
[ { "path": "third_party/xla/xla/AGENTS.md", "patch": "@@ -15,9 +15,9 @@ suggesting, or modifying code within the\n 1. **Error Handling (`absl::Status`, `absl::StatusOr`)**:\n * **Always** use `absl::Status` or `absl::StatusOr<T>` for functions that can encounter recoverable errors.\n * **Macros*...
2026-04-10T12:50:12
swiftlang/swift
a83fdaf476ff9e95091abe0abe4389c7b3ca27e9
5b817e726980c08eab5e6d13b4d98198983030e7
[cxx-interop] Fix missing dtor call for methods taking rvalue ref In C++, moved-from objects' dtors need to be invoked. Swift had some special logic in place to make sure this happens when an C++ object is consumed by a C++ function in Swift code. Unfortunately, this logic only applied to free functions but not to met...
[ { "path": "lib/SIL/IR/SILFunctionType.cpp", "patch": "@@ -1474,7 +1474,8 @@ class Conventions {\n return ParameterConvention::Indirect_In_Guaranteed;\n case ValueOwnership::Owned:\n if (kind == ConventionsKind::CFunction ||\n- kind == ConventionsKind::CFunctionType)\n+ kind...
2026-04-09T13:45:34
denoland/deno
34ed78ae521a5bc18ef9c28cab96aad5fa94d359
928e94414db217f0b38002a0de618509fe987b26
feat(ext/node): add llhttp-based HTTPParser with native cppgc binding (#33202) ## Summary Add a native HTTP/1.1 parser based on Node.js's llhttp library, exposed as a cppgc `HTTPParser` object matching Node's `internalBinding('http_parser')` API. This is the foundation for replacing hyper-based HTTP processing with l...
[ { "path": "Cargo.lock", "patch": "@@ -2751,6 +2751,7 @@ dependencies = [\n \"boxed_error\",\n \"brotli\",\n \"bytes\",\n+ \"cc\",\n \"data-encoding\",\n \"deno_ast\",\n \"deno_core\",", "additions": 1, "deletions": 0, "language": "Unknown" }, { "path": "ext/node/Cargo.toml", "p...
2026-04-09T07:34:40
tensorflow/tensorflow
95f7553fdc6e2aa25f3537f8862273a235f89f6d
f63a1dc50a671ce7777a2969a4ec17697293387b
PR #40383: [XLA:GPU] [oneAPI] Use symlinks to preserve RUNPATHS Imported from GitHub PR https://github.com/openxla/xla/pull/40383 Update copy_file in emitters/test to create symlink instead of copying. Using copy results in the copied executable not finding the shared libraries in rpaths at runtime. (e.g., with oneAP...
[ { "path": "third_party/xla/xla/codegen/emitters/tests/BUILD", "patch": "@@ -16,6 +16,7 @@ copy_file(\n testonly = True,\n src = \"//xla/backends/cpu/codegen/tools:fusion_to_mlir\",\n out = \"cpu_fusion_to_mlir\",\n+ allow_symlink = True,\n is_executable = True,\n )\n \n@@ -24,6 +25,7 @@ c...
2026-04-10T10:13:55
golang/go
f6d825cd3a7f98fbb48880b791b4c2be8cecddf3
b67dcb53be7f779cbea922688bf336fad6adc24d
crypto/internal/fips140/edwards25519/field: fix Invert comment Pointed out by Alexander Yastrebov in FiloSottile/edwards25519#48. Change-Id: I8ff0b761ff49ad454159f749e3e07ed86a6a6964 Reviewed-on: https://go-review.googlesource.com/c/go/+/745900 Reviewed-by: Daniel McCarney <daniel@binaryparadox.net> Reviewed-by: Juny...
[ { "path": "src/crypto/internal/fips140/edwards25519/field/fe.go", "patch": "@@ -116,7 +116,7 @@ func (v *Element) Negate(a *Element) *Element {\n // If z == 0, Invert returns v = 0.\n func (v *Element) Invert(z *Element) *Element {\n \t// Inversion is implemented as exponentiation with exponent p − 2. It us...
2026-02-15T20:27:08
mrdoob/three.js
29ee96253ecee0c42edbd30e40370e536a120322
965f22fd423b4b5847647d3423e85872b01617d8
FBXLoader: Fix rotation animations. (#33323)
[ { "path": "examples/jsm/loaders/FBXLoader.js", "patch": "@@ -2779,7 +2779,13 @@ class AnimationParser {\n \n \t\t\t\t\t\t\t\t\t\t\tnode.transform = child.matrix;\n \n-\t\t\t\t\t\t\t\t\t\t\tif ( child.userData.transformData ) node.eulerOrder = child.userData.transformData.eulerOrder;\n+\t\t\t\t\t\t\t\t\t\t\t...
2026-04-03T13:05:29
denoland/deno
928e94414db217f0b38002a0de618509fe987b26
d62e2fd77e338b573354233e7e58b67a3171093d
fix(runtime): cache canonicalized watch paths, fix spurious events (#33123) ## Summary - Pre-canonicalize watched paths once at `op_fs_events_open` time instead of calling `canonicalize()` on both the event path and the watched path on every filesystem event for every watcher - Previously `starts_with_canonicalized` d...
[ { "path": "runtime/ops/fs_events.rs", "patch": "@@ -92,31 +92,93 @@ impl From<NotifyEvent> for FsEvent {\n }\n }\n \n-type WatchSender = (Vec<PathBuf>, mpsc::Sender<Result<FsEvent, NotifyError>>);\n+struct WatchSender {\n+ /// Original paths as provided by the caller.\n+ paths: Vec<PathBuf>,\n+ /// Pre...
2026-04-08T19:45:21
tensorflow/tensorflow
ecf955f0ff2f51875f6769dc4528110fcbea51b0
1a73244fe7da846c1e8a87e1ec184f65cbeccde1
PR #40697: SynchronousMemZero: deprecate and replace with stream-ordered version Imported from GitHub PR https://github.com/openxla/xla/pull/40697 📝 Summary of Changes - Deprecate `StreamExecutor::SynchronousMemZero`, recommending the use of `Stream::MemZero` and `Stream::BlockHostUntilReady` intead - Change the i...
[ { "path": "third_party/xla/xla/backends/gpu/runtime/all_reduce_test.cc", "patch": "@@ -154,13 +154,13 @@ class AllReduceKernelTest : public ::testing::Test,\n 2 * aligned_input_size, aligned_input_size));\n TF_RET_CHECK(!output_buffers[i].is_null());\n TF_RETURN_IF_ERROR(\n- e...
2026-04-10T09:48:43
golang/go
b67dcb53be7f779cbea922688bf336fad6adc24d
86241330242b57fd73f13014556cbd7ba4c1c1bc
crypto/internal/fips140/edwards25519: fix zero coeff. skip optimization This was reported first by Adrian Grigore in private and then by github.com/shaharcohen1 in FiloSottile/edwards25519#53. fips140: off goos: linux goarch: amd64 pkg: crypto/internal/fips140/edwards25519 cpu: AMD EPYC 7443P 24-Core Processor ...
[ { "path": "src/crypto/internal/fips140/edwards25519/scalarmult.go", "patch": "@@ -167,10 +167,11 @@ func (v *Point) VarTimeDoubleScalarBaseMult(a *Scalar, A *Point, b *Scalar) *Poi\n \n \t// Find the first nonzero coefficient.\n \ti := 255\n-\tfor j := i; j >= 0; j-- {\n-\t\tif aNaf[j] != 0 || bNaf[j] != 0 ...
2026-02-15T19:52:50
mrdoob/three.js
965f22fd423b4b5847647d3423e85872b01617d8
582a03b74d843d2c99082aa84589a228b480d262
FBXLoader: Fix `penumbra` computation. (#33321)
[ { "path": "examples/jsm/loaders/FBXLoader.js", "patch": "@@ -1290,21 +1290,24 @@ class FBXTreeParser {\n \n \t\t\t\tcase 2: // Spot\n \t\t\t\t\tlet angle = Math.PI / 3;\n+\t\t\t\t\tlet penumbra = 0;\n \n-\t\t\t\t\tif ( lightAttribute.InnerAngle !== undefined ) {\n+\t\t\t\t\tif ( lightAttribute.OuterAngle !=...
2026-04-03T09:51:57
swiftlang/swift
0494037b1eadb01c133d35b6f4ba52f13ada6084
ab663c6f6a1b0c928d295b88fa3107fd5aee4586
Optimizer: fix optimization of unconditional `cond_fail`s When the option `-remove-runtime-asserts` is used all `cond_fail` instructions are removed. However, the cast optimizer inserts such unconditional fails for failing casts. This ended up in an infinite optimization loop in SILCombine. The fix is 1. don't remove ...
[ { "path": "SwiftCompilerSources/Sources/Optimizer/InstructionSimplification/SimplifyCondFail.swift", "patch": "@@ -15,23 +15,23 @@ import SIL\n extension CondFailInst : OnoneSimplifiable, SILCombineSimplifiable {\n func simplify(_ context: SimplifyContext) {\n \n- if context.options.shouldRemoveCondFai...
2026-04-09T13:52:29
denoland/deno
b06fcf884ee1b729645b9e4719aadfbe6ee746d2
7cd968cb16253c4019474d7aaa33fca685a2eaf0
Revert "feat(add/install): default to npm registry for unprefixed packages (#33156) (#33214) This reverts commit 6b44f6d6babb98778177bf0738962c764e41fc5f. This will be relanded for Deno v2.8.
[ { "path": "cli/args/flags.rs", "patch": "@@ -6056,9 +6056,7 @@ fn add_parse_inner(\n } else if matches.get_flag(\"jsr\") {\n Some(DefaultRegistry::Jsr)\n } else {\n- // Default to npm when no --npm or --jsr flag is provided.\n- // This allows `deno add express` to work without requiring `npm:`...
2026-04-08T18:26:28
kubernetes/kubernetes
10efa46fbb79864d72a0f6defa983c21b5064f80
c6a95ffd4c787426e9242b208a38c8ded77e5212
e2e_node: wait for pod drain before asserting zero pods in Memory Manager Metrics The Memory Manager Metrics BeforeEach asserts that zero pods are running on the node after a kubelet config update. This hard assertion flakes when a preceding serial test's namespace deletion hasn't completed yet — framework namespace c...
[ { "path": "test/e2e_node/memory_manager_metrics_test.go", "patch": "@@ -79,8 +79,21 @@ var _ = SIGDescribe(\"Memory Manager Metrics\", framework.WithSerial(), feature.Me\n \t\t\t\tupdateKubeletConfig(ctx, f, oldCfg, true)\n \t\t\t})\n \n-\t\t\tcount := printAllPodsOnNode(ctx, f.ClientSet, framework.TestCont...
2026-03-28T19:27:25
tensorflow/tensorflow
418327b75a73335e1f8746b449e31be0e5b8810a
6f0ba297cea5e0c6ed75eee398e56b2efae181d8
Remove `tsl::errors::Is...` aliases from `tensorflow/core/platform/errors.h`. These error checking functions are no longer used via these aliases within TensorFlow. PiperOrigin-RevId: 897568495
[ { "path": "tensorflow/compiler/tf2tensorrt/kernels/trt_engine_resource_ops.cc", "patch": "@@ -130,7 +130,7 @@ class InitializeTRTResource : public OpKernel {\n do {\n tstring record;\n Status status = reader->ReadRecord(&offset, &record);\n- if (errors::IsOutOfRange(status)) break;\n+ ...
2026-04-10T09:12:33
mrdoob/three.js
582a03b74d843d2c99082aa84589a228b480d262
90aeab4fe7e1c352d0a35d9c57036d165dae57e8
fix: dispose variable ShaderMaterials in GPUComputationRenderer.dispose() (#33318) Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
[ { "path": "examples/jsm/misc/GPUComputationRenderer.js", "patch": "@@ -339,6 +339,8 @@ class GPUComputationRenderer {\n \n \t\t\t\t}\n \n+\t\t\t\tvariable.material.dispose();\n+\n \t\t\t}\n \n \t\t};", "additions": 2, "deletions": 0, "language": "JavaScript" } ]
2026-04-03T08:13:46
golang/go
6c087a167e562242d21c702b2b66fc8329a14322
15da1c91cd35ccf8129464ee10997622eac7cdc5
net: remove always-nil newFD error return value newFD never returns an error on any of the platforms that define it. Drop the always-nil error to simplify callers. Change-Id: I727e95a0dac51ef70497ea1295276a8a6dce7f08 Reviewed-on: https://go-review.googlesource.com/c/go/+/764620 LUCI-TryBot-Result: Go LUCI <golang-sco...
[ { "path": "src/net/fd_plan9.go", "patch": "@@ -27,7 +27,7 @@ type netFD struct {\n \n var netdir = \"/net\" // default network\n \n-func newFD(net, name string, listen, ctl, data *os.File, laddr, raddr Addr) (*netFD, error) {\n+func newFD(net, name string, listen, ctl, data *os.File, laddr, raddr Addr) *net...
2026-04-09T14:07:19
swiftlang/swift
732de1f28eafe7a2b93192e29fc77fbc0c03e759
abdfecea0832fd6dec014aeeb250c4509c324e87
Fix module names on OpenBSD for amd64/x86_64. In #88224 we moved to unversioned triples. However in using the existing getUnversionedTriple implementation, we lost the call to getMajorArchitectureName and just used getArchName on the triple. On OpenBSD, the spelling is amd64. We make a number of transpositions to use...
[ { "path": "lib/Basic/Platform.cpp", "patch": "@@ -473,15 +473,20 @@ llvm::Triple swift::getTargetSpecificModuleTriple(const llvm::Triple &triple) {\n \n llvm::Triple swift::getUnversionedTriple(const llvm::Triple &triple) {\n StringRef unversionedOSName = triple.getOSName().take_until(llvm::isDigit);\n+ ...
2026-04-07T00:54:48
kubernetes/kubernetes
e622b86069a925de2b650da6af4b254a958d057d
c49126e0310d50ac0f2f6a1f6a96a03e029acb02
remove unnecessary fixes
[ { "path": "test/integration/scheduler/podgroup/topology_aware_scheduling/tas_test.go", "patch": "@@ -751,25 +751,17 @@ func TestTopologyAwareSchedulingWithBasicPolicy(t *testing.T) {\n \t\t\t\t\tcreatePodGroup: makeBasicPodGroup(\"pg1\", \"rack\"),\n \t\t\t\t},\n \t\t\t\t{\n-\t\t\t\t\t// Fixing test flakine...
2026-03-27T09:32:12
denoland/deno
7cd968cb16253c4019474d7aaa33fca685a2eaf0
5085a59aef53fa90dc58c8859e4feb887f0a742a
fix(core): free UvLoopInner on uv_loop_t drop to prevent worker memory leak (#33200) ## Summary - Add `Drop` impl for `uv_loop_t` to free the `UvLoopInner` allocation that was previously leaked on every Web Worker teardown - Each worker's `JsRuntime` creates a `uv_loop_t` via `uv_loop_init`, which heap-allocates a `U...
[ { "path": "libs/core/uv_compat.rs", "patch": "@@ -102,6 +102,22 @@ pub struct uv_loop_t {\n stop_flag: Cell<bool>,\n }\n \n+impl Drop for uv_loop_t {\n+ fn drop(&mut self) {\n+ if !self.internal.is_null() {\n+ // SAFETY: `internal` was allocated by `uv_loop_init` as\n+ // `Box::into_raw(Box:...
2026-04-08T14:10:47
tensorflow/tensorflow
5347916d9fe117d1365d0ffa5aed83e3936d0646
f556fa4e36018e5ee485e309c10c361dc5c16de9
PR #40609: [XLA:GPU] Migrate ComputationIdCmd to ReplicaOrPartitionIdThunk Imported from GitHub PR https://github.com/openxla/xla/pull/40609 As part of the ongoing effort to consolidate the Command and Thunk hierarchies, this CL migrates ComputationIdCmd by folding its Record() implementation directly into ReplicaOrP...
[ { "path": "third_party/xla/xla/backends/gpu/runtime/BUILD", "patch": "@@ -2717,15 +2717,21 @@ cc_library(\n srcs = [\"replica_id_thunk.cc\"],\n hdrs = [\"replica_id_thunk.h\"],\n deps = [\n+ \":command\",\n \":thunk\",\n \":thunk_proto_cc\",\n \"//xla:shape_util\",...
2026-04-10T07:30:51
mrdoob/three.js
13a06fc663fcf35de89a1044f64b40ef499e6f2e
d2d9d4069320de51d2e7f36855375f4640578ecb
FBXLoader: Add skinning fixes. (#33316)
[ { "path": "examples/jsm/loaders/FBXLoader.js", "patch": "@@ -824,8 +824,6 @@ class FBXTreeParser {\n \t\t\t\tindices: [],\n \t\t\t\tweights: [],\n \t\t\t\ttransformLink: new Matrix4().fromArray( boneNode.TransformLink.a ),\n-\t\t\t\t// transform: new Matrix4().fromArray( boneNode.Transform.a ),\n-\t\t\t\t//...
2026-04-02T14:48:29
golang/go
15da1c91cd35ccf8129464ee10997622eac7cdc5
e122bcdc9d567c21a72ba5851488edbd073d7bfe
cmd/go/internal/modload: fix logged filename for 'go mod init -modfile' Fix 'go mod init -modfile=tools.mod module' which prints 'creating new go.mod' instead of 'creating new tools.mod'. Note that -modfile already works, but isn't yet documented and this is the subject of proposal #78503, so this patch is the minima...
[ { "path": "src/cmd/go/internal/modload/init.go", "patch": "@@ -1203,7 +1203,11 @@ func CreateModFile(ld *Loader, ctx context.Context, modPath string) {\n \t}\n \tcheckModulePath(modPath)\n \n-\tfmt.Fprintf(os.Stderr, \"go: creating new go.mod: module %s\\n\", modPath)\n+\tif cfg.ModFile != \"\" {\n+\t\tfmt....
2026-04-02T11:06:28
mrdoob/three.js
75ae80b3aa4326b23fce73ebb11b85412073859c
cbf6fff0287c3d259a17af418a549f8598eb47ed
Update incorrect documentation for setMatrixAt (#33310)
[ { "path": "src/objects/InstancedMesh.js", "patch": "@@ -341,7 +341,7 @@ class InstancedMesh extends Mesh {\n \n \t/**\n \t * Sets the given local transformation matrix to the defined instance. Make sure you set the `needsUpdate` flag of\n-\t * {@link InstancedMesh#instanceMatrix} to `true` after updating al...
2026-04-02T07:57:22
tensorflow/tensorflow
feabc3f1a28414c4e6d88e107b7231401a6e4717
e36fb42326d5af0b9a0e1966ae1e6c5cd375fb82
Avoid implicit conversion of jax arrays to dtypes. This raises an warning with JAX v0.9.0 under NumPy 2.4.0 or later, and in the future will raise an error. PiperOrigin-RevId: 897344158
[ { "path": "tensorflow/python/ops/numpy_ops/np_utils.py", "patch": "@@ -506,6 +506,8 @@ def _maybe_get_dtype(x):\n return _to_numpy_type(x.dtype)\n if isinstance(x, dtypes.DType):\n return x.as_numpy_dtype\n+ if hasattr(x, 'dtype') and isinstance(x.dtype, np.dtype):\n+ return x.dtype\n if isi...
2026-04-09T22:52:07
golang/go
e122bcdc9d567c21a72ba5851488edbd073d7bfe
c4cb9a90f6b5bf0dbe8b8fe3bf994c0c50c08aaf
cmd/go: respect -short flag when documenting individual symbols The -short flag was ignored when documenting individual symbols (functions, types, or variables) with "go doc -short package.symbol". This change adds short flag checks to symbolDoc, typeDoc, and valueDoc functions. Fixes #77192 Change-Id: I66935ceb5ffb...
[ { "path": "src/cmd/go/internal/doc/pkg.go", "patch": "@@ -808,9 +808,14 @@ func (pkg *Package) symbolDoc(symbol string) bool {\n \tfor _, fun := range pkg.findFuncs(symbol) {\n \t\t// Symbol is a function.\n \t\tdecl := fun.Decl\n+\t\tfound = true\n+\t\tif short {\n+\t\t\tpkg.Printf(\"%s\\n\", pkg.oneLineNo...
2026-04-08T15:07:16
denoland/deno
5085a59aef53fa90dc58c8859e4feb887f0a742a
8295a2cf2aabe2ecd9ccce8a802d0d5d61095a2e
fix(ext/node): throw on cipher update with input >= 2^31-1 bytes (#33201) ## Summary - Adds size validation in `Cipheriv.prototype.update` and `Decipheriv.prototype.update` to throw when input length >= 2^31 - 1 bytes - Matches Node.js/OpenSSL behavior where `EVP_EncryptUpdate`/`EVP_DecryptUpdate` use `int` for input ...
[ { "path": "ext/node/polyfills/internal/crypto/cipher.ts", "patch": "@@ -321,6 +321,12 @@ Cipheriv.prototype.update = function (\n if (typeof data === \"string\") {\n buf = Buffer.from(data, inputEncoding);\n }\n+\n+ // Match Node.js/OpenSSL behavior: reject inputs >= INT_MAX bytes\n+ if (buf.lengt...
2026-04-08T14:10:16
swiftlang/swift
9086ba29f49a7dba82d685477e62c1c00ac1372e
8423768d613e7a6fbd77b490f18ef368002639b5
fix test_expected_options_have_default_values
[ { "path": "utils/build_swift/tests/expected_options.py", "patch": "@@ -355,6 +355,7 @@\n 'clean_install_destdir': False,\n 'use_linker': None,\n 'enable_new_runtime_build': False,\n+ 'continue_on_test_failure': False,\n }\n \n ", "additions": 1, "deletions": 0, "language": "Python...
2026-04-08T22:31:40
golang/go
c4cb9a90f6b5bf0dbe8b8fe3bf994c0c50c08aaf
b3c54d2e597ee67939f9abc2ec8aaca841fb1138
cmd/internal/tesdir: fix Test/codegen/switch on loong64 loong64 uses ALSLV the compute the lookup index. Fixes #78575 Change-Id: Ied90a4f811cc19ffec4d304333546d1fa430ccc0 Reviewed-on: https://go-review.googlesource.com/c/go/+/764180 Reviewed-by: abner chenc <chenguoqi@loongson.cn> Reviewed-by: Keith Randall <khr@gol...
[ { "path": "test/codegen/switch.go", "patch": "@@ -134,7 +134,6 @@ func floatLookup(x int) float64 {\n func stringLookup(x int) string {\n \t// amd64:`LEAQ .*\\(SB\\)` -`JMP \\(.*\\)\\(.*\\)$`\n \t// arm64:-`JMP \\(R.*\\)$`\n-\t// loong64:-`ALSLV`\n \tswitch x {\n \tcase 1:\n \t\treturn \"a\"\n@@ -161,7 +160...
2026-04-08T16:14:28
tensorflow/tensorflow
c103d5962ca81921a959f3f8cafc71d232ee6a57
60c78b79b93fe915c67ee3ed902ae34372942c31
Fix Gather-Scatter utils with conversions. PiperOrigin-RevId: 897319176
[ { "path": "third_party/xla/xla/service/spmd/spmd_partitioner_test.cc", "patch": "@@ -1771,7 +1771,7 @@ ENTRY entry {\n EXPECT_EQ(root->operand(0)->window().dimensions(0).padding_high(), 0);\n }\n \n-TEST_P(SpmdPartitioningTest, SelectAndScatterNoOverlap) {\n+TEST_P(SpmdPartitioningAllShardingTest, SelectA...
2026-04-09T22:01:29
denoland/deno
8295a2cf2aabe2ecd9ccce8a802d0d5d61095a2e
3ec37cc7e012dc091fb7f592dcbb971fd207f926
fix(node): validate resolved main path stays within package directory (#33170) ## Summary - Adds path validation to `legacy_main_resolve` to ensure the resolved `main` field from `package.json` doesn't resolve outside the package directory - This matches the existing validation already present in `resolve_package_targ...
[ { "path": "ext/node/polyfills/01_require.js", "patch": "@@ -359,6 +359,22 @@ function tryPackage(requestPath, exts, isMain, originalPath) {\n }\n \n const filename = pathResolve(requestPath, pkg);\n+ // Ensure the resolved main path doesn't escape the package directory\n+ // via path traversal (e.g. \...
2026-04-08T07:43:14
kubernetes/kubernetes
ba1ac16d2bcd6933f887d3a94b33004f505557c3
3fea8a2fef75c5eb4f357482dbbb591d3aba83f6
fix erroneously reporting a PLR resize in progress on pod creation
[ { "path": "pkg/kubelet/kuberuntime/kuberuntime_manager.go", "patch": "@@ -2218,7 +2218,22 @@ func (m *kubeGenericRuntimeManager) isPodLevelResourcesResizeInProgress(allocate\n \t\treturn false\n \t}\n \n-\tif allocatedPod.Spec.Resources == nil {\n+\tif allocatedPod.Spec.Resources == nil || podStatus == nil ...
2026-03-26T20:51:18
mrdoob/three.js
be5aee80df446c5100ec2014e7418a34f3b343da
8ad5f7cb6feacb4bcecee18a938e287ced8142e2
WGSLNodeBuilder: Fix `textureDimensions()` cache scope (#33312)
[ { "path": "src/renderers/webgpu/nodes/WGSLNodeBuilder.js", "patch": "@@ -436,7 +436,7 @@ class WGSLNodeBuilder extends NodeBuilder {\n \t */\n \tgenerateTextureDimension( texture, textureProperty, levelSnippet ) {\n \n-\t\tconst textureData = this.getDataFromNode( texture, this.shaderStage, this.globalCache...
2026-04-02T03:30:55
swiftlang/swift
8423768d613e7a6fbd77b490f18ef368002639b5
1ef18da95da4430542672666302913d5da85cfac
Fix test_expected_options_exhaustive
[ { "path": "utils/build_swift/tests/expected_options.py", "patch": "@@ -933,4 +933,6 @@ class BuildScriptImplOption(_BaseOption):\n StrOption('--llvm-install-components'),\n ChoicesOption('--use-linker', dest='use_linker', choices=['gold', 'lld']),\n EnableOption('--enable-new-runtime-build', des...
2026-04-08T21:01:58
tensorflow/tensorflow
60c78b79b93fe915c67ee3ed902ae34372942c31
002dab7a440a1960cf9b5d84268772084e0eb145
Fix FlatSize overflow in concat PiperOrigin-RevId: 897319104
[ { "path": "tensorflow/lite/kernels/internal/reference/concatenation.h", "patch": "@@ -17,6 +17,7 @@ limitations under the License.\n #define TENSORFLOW_LITE_KERNELS_INTERNAL_REFERENCE_CONCATENATION_H_\n \n #include <algorithm>\n+#include <cstddef>\n \n #include \"tensorflow/lite/kernels/internal/common.h\"\...
2026-04-09T22:01:21
golang/go
455d4f41fb1c2bf48645b4904a8ee293272c90db
996b985008c7615004c0dbe8b031928faff3c993
cmd/compile: run CondSelect into math rules on all arches Fixes #78558 I've also added tests to make sure PPC still generate ISEL when the constant isn't 1. This is to make sure we aren't generating a sequence that wouldn't work right now. But it does not mean we couldn't try to optimize other constants on PPC64 if ...
[ { "path": "src/cmd/compile/internal/ssa/rewrite.go", "patch": "@@ -2834,6 +2834,9 @@ func rewriteCondSelectIntoMath(config *Config, op Op, constant int64) bool {\n \t\t\t\treturn true\n \t\t\t}\n \t\t}\n+\tdefault:\n+\t\t// TODO: fine tune for other architectures.\n+\t\treturn constant == 1\n \t}\n \treturn...
2026-04-07T09:57:56
kubernetes/kubernetes
65cc1c23a5647a568967b13c1724e5ca26b2969f
1ed5965382e09c1fdc8b363c153e9ebee0942481
Fix race condition in updating the PodStatus cache
[ { "path": "pkg/kubelet/container/runtime.go", "patch": "@@ -221,6 +221,8 @@ type Pod struct {\n \t// Sandboxes are sorted by creation time, newest -> oldest.\n \t// TODO: use the runtimeApi.PodSandbox type directly.\n \tSandboxes []*Container\n+\t// Timestamp is the time that this Pod object was read from t...
2026-03-25T19:17:57
mrdoob/three.js
967be2b709a9715f46199ddb2cfcb97a867bce9a
1e144d8784851c9512465084328eee096aac5676
Update GTAONode.js Fix docs.
[ { "path": "examples/jsm/tsl/display/GTAONode.js", "patch": "@@ -26,7 +26,7 @@ let _rendererState;\n *\n * const aoPass = ao( scenePassDepth, scenePassNormal, camera );\n *\n- * renderPipeline.outputNode = aoPass.getTextureNode().mul( scenePassColor );\n+ * renderPipeline.outputNode = scenePassColor.mul( ...
2026-04-01T18:50:18
denoland/deno
3ec37cc7e012dc091fb7f592dcbb971fd207f926
b8ec8611217c6bdd0a1821c16a45869489910358
refactor(ext/node): wire up native TLSWrap from JS (#33184) Replace the `kStreamBaseField`-based TLS implementation with a native `TLSWrap` cppgc object backed by rustls. This eliminates the async stream-swap pattern where TLS upgrades worked by swapping `handle[kStreamBaseField]` from a `TcpConn` to a `TlsConn`. Key...
[ { "path": "ext/node/lib.rs", "patch": "@@ -444,6 +444,7 @@ deno_core::extension!(deno_node,\n \"internal_binding/string_decoder.ts\",\n \"internal_binding/symbols.ts\",\n \"internal_binding/tcp_wrap.ts\",\n+ \"internal_binding/tls_wrap.ts\",\n \"internal_binding/tty_wrap.ts\",\n \"int...
2026-04-08T07:15:23
tensorflow/tensorflow
ec36d13eacefa8e336f7306efc90d0fc27877dd8
63bcb6c7e46a5f49f67c7da1ebb11aa0837ea37e
[XLA] Fix dangling pointer in CallInliner Deferred deletion of unused operands during inlining to avoid iterator invalidation when iterating over scheduled sequences or sequences modified by mutations. Unused operands are now cleaned up by the HloDCE pass at the end of CallInliner. PiperOrigin-RevId: 897283527
[ { "path": "third_party/xla/xla/service/call_inliner.cc", "patch": "@@ -192,7 +192,7 @@ class SubcomputationInsertionVisitor : public DfsHloVisitorWithDefault {\n /*old_instruction=*/call_, /*new_instruction=*/new_root,\n /*preserve_sharding=*/false,\n /*relay_...
2026-04-09T20:47:34
swiftlang/swift
094e6d348162d3cfb9b7366c3f93586849b522db
0a82ff34460a09f2ad9d0ed1b9d2f3c8cce1a041
Optimizer: fix deinit barrier detection for instructions which access memory via a pointer The original implementation of `mayAccessPointer` did look through `address_to_pointer` - `pointer_to_address` pairs and therefore not detect such pointers. Fixes a miscompile rdar://174268466
[ { "path": "SwiftCompilerSources/Sources/Optimizer/Analysis/CalleeAnalysis.swift", "patch": "@@ -143,7 +143,7 @@ extension Instruction {\n if let aai = self as? AbortApplyInst {\n return aai.isBarrier(analysis)\n }\n- return mayAccessPointer || mayLoadWeakOrUnowned || maySynchronize\n+ re...
2026-04-08T15:13:24
golang/go
996b985008c7615004c0dbe8b031928faff3c993
e67d773034fde21e6f726c4add5eeba5882198ae
cmd/compile: improve stp merging for non-sequent cases Original algorithm merges stores with the first mergeable store in the chain, but it misses some cases. Additionally, creating list of STs, which store data to adjacent memory cells allows merging them according to the direction of increase of their addresses. I ...
[ { "path": "src/cmd/compile/internal/ssa/pair.go", "patch": "@@ -320,10 +320,70 @@ func memoryBarrierTest(b *Block) bool {\n \treturn false\n }\n \n+// pairStores merges store instructions.\n+// It collects stores into a buffer where they can be freely reordered.\n+// When encountering an instruction that ca...
2026-03-27T10:15:45
mrdoob/three.js
077dd13c0e869d9f3dbe55875686f920367de457
f3fd5697e361007dda39bd4fe0cecff688f58f5e
USDComposer: Fix uv data for multi-material meshes. (#33297)
[ { "path": "examples/jsm/loaders/usd/USDComposer.js", "patch": "@@ -1998,10 +1998,17 @@ class USDComposer {\n \n \t\t// Triangulate original data using consistent pattern\n \t\tconst { indices: origIndices, pattern: triPattern } = this._triangulateIndicesWithPattern( faceVertexIndices, faceVertexCounts, poin...
2026-03-31T12:01:55
denoland/deno
b8ec8611217c6bdd0a1821c16a45869489910358
a55464066dc4fe9814d633e9c87592a140a62930
fix(ext/webgpu): accept `ArrayBuffer` in `GPUQueue.writeBuffer()` as data source (#33152) Fixes #33151
[ { "path": "ext/webgpu/queue.rs", "patch": "@@ -159,6 +159,13 @@ impl GPUQueue {\n // SAFETY: the slice is within the bounds of the backing store\n unsafe { std::slice::from_raw_parts(ptr as *const u8, byte_len) };\n (buf, bpe)\n+ } else if let Ok(ab) = v8::Local::<v8::ArrayBuffe...
2026-04-08T06:57:01
kubernetes/kubernetes
adbf3b5aa597637b6825844983e3847033a17b39
1ed5965382e09c1fdc8b363c153e9ebee0942481
Add granular authorization for DRA ResourceClaim status updates This commit introduces the DRAResourceClaimGranularStatusAuthorization feature gate (Beta in 1.36) to enforce fine-grained authorization checks on ResourceClaim status updates. Previously, 'update' permission on 'resourceclaims/status' allowed modifying ...
[ { "path": "pkg/controlplane/instance.go", "patch": "@@ -432,7 +432,10 @@ func (c CompletedConfig) StorageProviders(client *kubernetes.Clientset) ([]contr\n \t\tappsrest.StorageProvider{},\n \t\tadmissionregistrationrest.RESTStorageProvider{Authorizer: c.ControlPlane.Generic.Authorization.Authorizer, Discove...
2025-10-30T21:23:30
swiftlang/swift
f608fc03ef7f8c151bcdf0aaf91e4fd5df32cdf5
82bb7a76bda8fc1b70afd243d987537a562bc2c3
Reparenting: even more feature guarding improvements The only known condfail scenario is inheriting from a protocol P that inherits from a reparentable one R. We already guard P if it mentions R in its inheritance clause. So older compilers will simply report that "P" is missing in the interface, which is a better er...
[ { "path": "lib/AST/FeatureSet.cpp", "patch": "@@ -646,15 +646,19 @@ static bool usesFeatureReparenting(Decl *decl) {\n return false;\n };\n \n- // Check the where-clause of the generic context.\n- if (auto *gc = decl->getAsGenericContext()) {\n+ // Search the decl or extension for mentions of a rep...
2026-04-08T17:48:40
tensorflow/tensorflow
845e416660c372e59c7641cd4cee8c9bf5cb636e
59fd1bf408610f4d3f8ee7fc932b0479d23c771c
Simplify coordination_service_test.cc. - Replace test fixtures with free functions. - Use CoordinationService::Config when possible instead of passing around a bunch of arguments. PiperOrigin-RevId: 897269984
[ { "path": "third_party/xla/xla/pjrt/distributed/coordination/BUILD", "patch": "@@ -101,16 +101,19 @@ xla_cc_test(\n deps = [\n \":coordination_service\",\n \":coordination_service_proto_cc\",\n+ \"//xla/runtime:device_id\",\n \"//xla/tsl/lib/core:status_test_util\",\n ...
2026-04-09T20:19:37
golang/go
7c5ab4118014acd1e7c0fc67028186a4985c0a28
5d6aa23e5b6151d25955a512532383c28c745e18
net: document LookupSRV cname return value Document that the first return value of LookupSRV is the canonical name of the DNS target that was looked up, which may differ from the input name due to CNAME records. Fixes #49982 Change-Id: I574e0f5cdc381d3d9b11b5bd7a5acbea2c9e185d GitHub-Last-Rev: 9c756d48d55587f373c7cf...
[ { "path": "src/net/lookup.go", "patch": "@@ -487,6 +487,11 @@ func (r *Resolver) LookupCNAME(ctx context.Context, host string) (string, error)\n // publishing SRV records under non-standard names, if both service\n // and proto are empty strings, LookupSRV looks up name directly.\n //\n+// The returned cnam...
2026-02-09T02:43:54
mrdoob/three.js
f3fd5697e361007dda39bd4fe0cecff688f58f5e
332ec85f5fa8b861209142103711d8553421cb8e
WebGPURenderer: Fix texture issues. (#33296)
[ { "path": "src/renderers/common/Info.js", "patch": "@@ -3,7 +3,7 @@ import {\n \tByteType, UnsignedByteType, ShortType, UnsignedShortType, HalfFloatType,\n \tIntType, UnsignedIntType, FloatType,\n \tAlphaFormat, RedFormat, RedIntegerFormat, DepthFormat, DepthStencilFormat,\n-\tRGBFormat,\n+\tRGFormat, RGInt...
2026-03-31T10:03:55
denoland/deno
a55464066dc4fe9814d633e9c87592a140a62930
9df8007ebc67af49f4055b465b81570dd0faf845
fix(core): use c_char instead of i8 in uv_buf_t base cast (#33179) Ran into this in nixpkgs, build fails for `aarch64-linux`: https://github.com/NixOS/nixpkgs/issues/506707 🤖 Generated with [Claude Code](https://claude.com/claude-code)
[ { "path": "libs/core/uv_compat/tests.rs", "patch": "@@ -2,6 +2,7 @@\n \n use std::cell::Cell;\n use std::cell::RefCell;\n+use std::ffi::c_char;\n use std::ffi::c_void;\n use std::future::poll_fn;\n use std::rc::Rc;\n@@ -1791,7 +1792,7 @@ async fn tcp_close_cancels_pending_writes() {\n unsafe {\n (...
2026-04-08T06:52:49
tensorflow/tensorflow
f9e76dac48105e796382ecf3f46eb97a9a9d06e2
fa69f9a525c7eadff2bfc2df0d5cc3aca283fcc3
Re-enable HandleScatterWithoutConflicts. Re-enables calling HandleScatterWithoutConflicts when conflict resolution is not needed. Also changes HandleScatterWithoutConflicts to report an error when a reduction identity cannot be found for sharded implicit batching dimensions, instead of producing incorrect code silent...
[ { "path": "third_party/xla/xla/service/spmd/gather_scatter_handler.cc", "patch": "@@ -2007,7 +2007,10 @@ absl::Status SpmdPartitioningVisitor::HandleScatterWithoutConflicts(\n select_operand = SelectOperandForScatterIndexPassthroughDimensions(\n scatter, indices, operands[0], b);\n if (!sele...
2026-04-09T17:30:07
golang/go
5d6aa23e5b6151d25955a512532383c28c745e18
352d76b2912b20ede8b3238fc2ed7b697bc2695b
cmd/go: use MkdirTemp to create temp directory for "go bug" Don't use a predictable, potentially attacker-controlled filename in /tmp. Fixes #78584 Fixes CVE-2026-39819 Change-Id: I72116aa6dd8fa50f65b6dc0292a15a8c6a6a6964 Reviewed-on: https://go-review.googlesource.com/c/go/+/763882 Reviewed-by: Nicholas Husin <husi...
[ { "path": "src/cmd/go/internal/bug/bug.go", "patch": "@@ -184,14 +184,14 @@ func firstLine(buf []byte) []byte {\n // printGlibcVersion prints information about the glibc version.\n // It ignores failures.\n func printGlibcVersion(w io.Writer) {\n-\ttempdir := os.TempDir()\n-\tif tempdir == \"\" {\n+\ttempdi...
2026-04-08T16:55:54
mrdoob/three.js
332ec85f5fa8b861209142103711d8553421cb8e
e48228fe1d65a214cd2ecfb8bbacb2063d9dc076
USDComposer: Fix reference parsing. (#33294)
[ { "path": "examples/jsm/loaders/usd/USDComposer.js", "patch": "@@ -625,56 +625,71 @@ class USDComposer {\n \t\t\tconst typeName = spec.fields.typeName;\n \n \t\t\t// Check for references/payloads\n-\t\t\tconst refValue = this._getReference( spec );\n-\t\t\tif ( refValue ) {\n+\t\t\tconst refValues = this._g...
2026-03-31T08:49:41
denoland/deno
9df8007ebc67af49f4055b465b81570dd0faf845
2c4f99e0e715002e732a4e1fbe154b9c582f7f2c
fix(ext/node): add dns.getDefaultResultOrder() API (#33197) ## Summary - Adds the missing `getDefaultResultOrder()` export to `dns`, `dns.promises`, and `dns/promises` Node.js compat modules - This API exists in Node.js and returns the current default DNS result ordering (`"ipv4first"`, `"ipv6first"`, or `"verbatim"`)...
[ { "path": "ext/node/polyfills/dns.ts", "patch": "@@ -1003,6 +1003,7 @@ export const CANCELLED = \"ECANCELLED\";\n \n const promises = {\n ...promisesBase,\n+ getDefaultResultOrder: getDefaultDnsOrder,\n setDefaultResultOrder,\n setServers,\n \n@@ -1033,6 +1034,8 @@ const promises = {\n CANCELLED,\n...
2026-04-08T06:24:16
mrdoob/three.js
c0553ae6966096947e2b84499e788c52503a5a2e
87c407b70235a6cdf64f96fa3f74d6fb9b0ccbbc
WebGLOutput: Add DepthTexture to scene render target Attach a DepthTexture to the primary render target so post-processing effects passed to setEffects() can read scene depth. Also fix a missing dispose call for the depth texture. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
[ { "path": "src/renderers/webgl/WebGLOutput.js", "patch": "@@ -15,6 +15,7 @@ import { Float32BufferAttribute } from '../../core/BufferAttribute.js';\n import { RawShaderMaterial } from '../../materials/RawShaderMaterial.js';\n import { Mesh } from '../../objects/Mesh.js';\n import { OrthographicCamera } from...
2026-03-31T02:04:03
golang/go
1ea7966042731bae941511fb2b261b9536ad268f
22f65d37c46d8eb087d764a734693d0abe39080f
crypto/tls: prevent deadlock when client sends multiple key update messages When we made setReadTrafficSecret send an alert when there are pending handshake messages, we introduced a deadlock when the client sends multiple key update messages that request a response, as handleKeyUpdate will lock the mutex, and defer t...
[ { "path": "src/crypto/tls/conn.go", "patch": "@@ -1362,7 +1362,7 @@ func (c *Conn) handleKeyUpdate(keyUpdate *keyUpdateMsg) error {\n \t}\n \n \tnewSecret := cipherSuite.nextTrafficSecret(c.in.trafficSecret)\n-\tif err := c.setReadTrafficSecret(cipherSuite, QUICEncryptionLevelInitial, newSecret); err != nil...
2026-03-23T18:54:41
tensorflow/tensorflow
0b54b9e90d890c0a42249ec21b4c731c625b5ad4
37c9526abcf960c71df8fde5ede442ea1b9dedfa
PR #36839: [GPU] Integrate async collective multi-streaming Imported from GitHub PR https://github.com/openxla/xla/pull/36839 📝 Summary of Changes Added XLA flag for async collective multi-streaming, along with some minor tweaks for e2e integration. Flag is default to false, existing behavior should not be affected....
[ { "path": "third_party/xla/xla/backends/gpu/runtime/execution_stream_id.h", "patch": "@@ -131,6 +131,12 @@ void AbslStringify(Sink& sink, const ExecutionStreamId& id) {\n }\n }\n \n+// Number of async compute execution streams.\n+inline constexpr int kDefaultNumComputeStreams = 4;\n+\n+// Number of async ...
2026-04-09T15:06:51
denoland/deno
2c4f99e0e715002e732a4e1fbe154b9c582f7f2c
e5150f526de240155f225a194a38222d6a6b2377
fix(otel): add timeout to OTEL HTTP exporter to prevent hangs (#33159) ## Summary - Fixes #33157 — `deno run` with `OTEL_DENO=true` hangs indefinitely when no OTEL collector is running - The OTEL HTTP exporter had no timeout on requests, so during shutdown it would block forever trying to connect to `localhost:4317` -...
[ { "path": "ext/telemetry/lib.rs", "patch": "@@ -510,6 +510,7 @@ mod hyper_client {\n use std::fmt::Debug;\n use std::pin::Pin;\n use std::task::Poll;\n+ use std::time::Duration;\n \n use deno_net::tunnel::TunnelConnection;\n use deno_net::tunnel::TunnelStream;\n@@ -753,9 +754,22 @@ mod hyper_clie...
2026-04-08T06:21:49
mrdoob/three.js
11e6acb93e826c62deb1e18cc251f6812e889cac
e13523a796b5cd4e4bcbb1fac9db96c410f05fd4
Examples: Fix links missing target="_blank" in webgl_loader_3dtiles example Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
[ { "path": "examples/webgl_loader_3dtiles.html", "patch": "@@ -36,12 +36,12 @@\n \t\t\t<a href=\"https://threejs.org\" target=\"_blank\" rel=\"noopener\">three.js</a> 3d tiles - <a href=\"https://github.com/NASA-AMMOS/3DTilesRendererJS\" target=\"_blank\" rel=\"noopener\">3d-tiles-renderer</a><br/>\n \t\t\tS...
2026-03-30T10:59:41
golang/go
22f65d37c46d8eb087d764a734693d0abe39080f
f5b77a7e2fa0f7ff346c665974a8eded367b1bc2
cmd/go: disallow cgo trust boundary bypass The cgo compiler implicitly trusts generated files with 'cgo' prefixes; thus, SWIG files containing 'cgo' in their names will cause bypass of the trust boundary, leading to code smuggling or arbitrary code execution. The cgo compiler will now produce an error if it encounter...
[ { "path": "src/cmd/go/internal/work/exec.go", "patch": "@@ -3463,6 +3463,10 @@ func (b *Builder) swigIntSize(objdir string) (intsize string, err error) {\n \n // Run SWIG on one SWIG input file.\n func (b *Builder) swigOne(a *Action, file, objdir string, pcCFLAGS []string, cxx bool, intgosize string) error ...
2026-02-24T23:05:34
tensorflow/tensorflow
377abd66115bf41a8acca3cc104394dec66fc57b
e27a8580fd7f65a063631c3aaf5d16b0eaf15f9d
Avoid crashing when the sub mesh does not have the same device assignment as the mesh in `IsSubtilingOrEqualNamedSharding`, and instead convert to v2, as two shardings may have comparable device assignments but with different axes. PiperOrigin-RevId: 897112389
[ { "path": "third_party/xla/xla/hlo/utils/hlo_sharding_util.cc", "patch": "@@ -277,7 +277,12 @@ bool IsSubTilingOrEqualNamedSharding(const Shape& potential_sharded_shape,\n !sharding.manual_axes().empty()) {\n return false;\n }\n- CHECK(sub_mesh.DeviceAssignmentEquals(mesh));\n+ if (!sub_mesh.D...
2026-04-09T14:51:13
denoland/deno
e5150f526de240155f225a194a38222d6a6b2377
daeaf3c495d89a0234417b2eb4d6bd45cfe26cc2
fix(schema): fix the `publish: false` of deno.json schema (#33196) Fixed a bug that was overlooked in #30852
[ { "path": "cli/schemas/config-file.v1.json", "patch": "@@ -952,8 +952,7 @@\n }\n }, {\n \"description\": \"Disable publishing this package with deno publish\",\n- \"type\": \"boolean\",\n- \"const\": \"false\"\n+ \"const\": false\n }]\n },\n \"bench\"...
2026-04-08T06:06:32