repo stringclasses 15
values | fix_commit stringlengths 40 40 | buggy_commit stringlengths 40 40 | message stringlengths 3 64.3k | files listlengths 1 300 | timestamp timestamp[s]date 2013-03-13 20:45:00 2026-04-11 07:48:46 |
|---|---|---|---|---|---|
denoland/deno | d08d79083dd7b760aa556d057e4a937d4dd6c07e | 0905fd9d36367fb46337c9be490a7337cffd758a | fix(ext/node): support numbered positional parameters in node:sqlite (#31722)
SQLite numbered positional parameters (?1, ?2, ?NNN) were incorrectly
treated as named parameters and skipped during binding, causing a
"column index out of range" error. This fix updates the parameter
binding logic to recognize that paramet... | [
{
"path": "ext/node/ops/sqlite/statement.rs",
"patch": "@@ -543,20 +543,33 @@ impl StatementSync {\n anon_start += 1;\n }\n \n- let mut anon_idx = 1;\n+ // SAFETY: `raw` is a valid pointer to a sqlite3_stmt.\n+ let sql_param_count = unsafe { ffi::sqlite3_bind_parameter_count(raw... | 2026-01-01T16:04:36 |
tensorflow/tensorflow | 1feb7ae9849b81daa6d391651b01dbd9481c661f | a30f09bd934dbff961cdec782b8132e09a2b6baf | PR #37142: Bump github/codeql-action from 4.31.11 to 4.32.0
Imported from GitHub PR https://github.com/openxla/xla/pull/37142
Bumps [github/codeql-action](https://github.com/github/codeql-action) from 4.31.11 to 4.32.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/github/... | [
{
"path": "third_party/xla/.github/workflows/scorecards-analysis.yml",
"patch": "@@ -67,6 +67,6 @@ jobs:\n # Upload the results to GitHub's code scanning dashboard (optional).\n # Commenting out will disable upload of results to your repo's Code Scanning dashboard\n - name: \"Upload to cod... | 2026-02-03T10:49:09 |
mrdoob/three.js | 16b58119d159e78fda0ead73bf5a1939462e5003 | b91fd11291c48f82160b2b15b7731a07236d6f25 | OculusHandModel: fix reference to path attribute (#30679)
Co-authored-by: Samuel Rigaud <srigaud@duodisplay.com> | [
{
"path": "examples/jsm/webxr/OculusHandModel.js",
"patch": "@@ -15,6 +15,7 @@ class OculusHandModel extends Object3D {\n \t\tthis.envMap = null;\n \t\tthis.loader = loader;\n \t\tthis.onLoad = onLoad;\n+\t\tthis.path = null;\n \n \t\tthis.mesh = null;\n ",
"additions": 1,
"deletions": 0,
"langu... | 2025-03-07T18:37:54 |
golang/go | a593ca9d657efb1ea021c9fc51cb528c398bbf4e | 89552911b383b78cd8807ec747ca5df8ba52e239 | runtime/cgo: add support for `any` param and return type
When using `any` as param or return type of an exported
function, we currently have the error `unrecognized Go
type any`. `any` is an alias of `interface{}` which is
already supported.
This would avoid such change: https://github.com/php/frankenphp/pull/1976
F... | [
{
"path": "src/cmd/cgo/gcc.go",
"patch": "@@ -1121,6 +1121,9 @@ func (p *Package) hasPointer(f *File, t ast.Expr, top bool) bool {\n \t\tif t.Name == \"error\" {\n \t\t\treturn true\n \t\t}\n+\t\tif t.Name == \"any\" {\n+\t\t\treturn true\n+\t\t}\n \t\tif goTypes[t.Name] != nil {\n \t\t\treturn false\n \t\t... | 2025-11-24T08:14:18 |
denoland/deno | 0905fd9d36367fb46337c9be490a7337cffd758a | 0ffed3e8fbd1ff0c26f37539e20401ddb53d3119 | feat(node/http): enable keepAlive connection reuse for HTTP Agent (#31709)
Closes https://github.com/denoland/deno/issues/29676
Enables HTTP Agent keepAlive connection pooling for improved performance
with Node.js HTTP clients.
Changes:
- Use `conn.without_shutdown()` to allow socket reuse after HTTP
response
- Add ... | [
{
"path": "ext/node/lib.rs",
"patch": "@@ -323,6 +323,7 @@ deno_core::extension!(deno_node,\n ops::handle_wrap::op_node_new_async_id,\n ops::http::op_node_http_fetch_response_upgrade,\n ops::http::op_node_http_request_with_conn,\n+ ops::http::op_node_http_response_reclaim_conn,\n ops::htt... | 2025-12-30T13:22:08 |
mrdoob/three.js | b91fd11291c48f82160b2b15b7731a07236d6f25 | 66ecaab3f35c8031b77d48315304effcc0049206 | BufferGeometry: fix clone index data copy (#30680)
Co-authored-by: Samuel Rigaud <srigaud@duodisplay.com> | [
{
"path": "src/core/BufferGeometry.js",
"patch": "@@ -1352,7 +1352,7 @@ class BufferGeometry extends EventDispatcher {\n \n \t\tif ( index !== null ) {\n \n-\t\t\tthis.setIndex( index.clone( data ) );\n+\t\t\tthis.setIndex( index.clone() );\n \n \t\t}\n ",
"additions": 1,
"deletions": 1,
"langua... | 2025-03-07T18:37:23 |
golang/go | f045ed4110aa430da0ba118d2be46f0d602d6633 | 220d73cc44a0c580dc8ee10df6395c8e517e118f | [dev.simd] go/doc/comment: don't include experimental packages in std list
go/doc/comment/std.go has a list of top-level package prefixes in
the standard library. This list can vary depending on goexperiment,
but the file is static. E.g.
GOEXPERIMENT=arenas go test -run=TestStd go/doc/comment
would fail.
Don't incl... | [
{
"path": "src/go/doc/comment/mkstd.sh",
"patch": "@@ -19,6 +19,6 @@ echo \"// Copyright 2022 The Go Authors. All rights reserved.\n package comment\n \n var stdPkgs = []string{\"\n-go list std | grep -v / | sort | sed 's/.*/\"&\",/'\n+GOEXPERIMENT=none go list std | grep -v / | sort | sed 's/.*/\"&\",/'\n ... | 2025-11-24T17:03:59 |
kubernetes/kubernetes | 7d5b4710bda738ec34f5bff23e02e930f09a0687 | f4eedc41b8c7aa9a4c66c08d153d8d4ce6c1e6a6 | fix: handle nil ResourceList in max() to prevent panic | [
{
"path": "staging/src/k8s.io/kubectl/pkg/util/resource/resource.go",
"patch": "@@ -152,7 +152,12 @@ func determineContainerReqs(pod *corev1.Pod, container *corev1.Container, cs *co\n // max returns the result of max(a, b...) for each named resource and is only used if we can't\n // accumulate into an exist... | 2026-01-28T14:07:25 |
tensorflow/tensorflow | 60e15acb579aa4287163df91c9748ef64a258636 | effe06b79d2b5f0c3aa7beb8aedaaf7a7b007870 | PR #37137: Bump protobuf from 5.29.5 to 6.33.5 in /xla/backends/cpu/benchmarks/e2e/gemma2/flax_2b
Imported from GitHub PR https://github.com/openxla/xla/pull/37137
Bumps [protobuf](https://github.com/protocolbuffers/protobuf) from 5.29.5 to 6.33.5.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a hre... | [
{
"path": "third_party/xla/xla/backends/cpu/benchmarks/e2e/gemma2/flax_2b/requirements.txt",
"patch": "@@ -17,7 +17,7 @@ numpy==2.2.0\n opt_einsum==3.4.0\n optax==0.2.4\n orbax-checkpoint==0.10.2\n-protobuf==5.29.5\n+protobuf==6.33.5\n Pygments==2.18.0\n PyYAML==6.0.2\n rich==13.9.4",
"additions": 1,
... | 2026-02-03T10:18:40 |
denoland/deno | 0ffed3e8fbd1ff0c26f37539e20401ddb53d3119 | 0ae83e43ca96a1b40e7c8bcb80590f6a1fe757c2 | fix(ext/node): support TypedArray and DataView targets in Buffer.copy() (#31734)
Closes https://github.com/denoland/deno/issues/31637
- `parallel/test-buffer-copy.js` now passes
- Allow `Buffer.copy()` to accept any `ArrayBufferView` (TypedArray or
DataView) as the target, matching Node.js behavior
- Previously only ... | [
{
"path": "ext/node/polyfills/internal/buffer.mjs",
"patch": "@@ -17,7 +17,9 @@ const {\n ArrayPrototypeSlice,\n ArrayPrototypeForEach,\n BigInt,\n+ DataViewPrototypeGetBuffer,\n DataViewPrototypeGetByteLength,\n+ DataViewPrototypeGetByteOffset,\n Float32Array,\n Float64Array,\n MathFloor,\n... | 2025-12-30T13:19:49 |
mrdoob/three.js | 2e7fadcf7c6286731c688781441d391117c8d3ff | 537d3965a9cbc9163892d24c699a79768866885e | WebGLRenderer: Fixed readRenderTargetPixelsAsync checking readability against incorrect render target (#30672)
* WebGLRenderer: Fixed readRenderTargetPixelsAsync checking readability against incorrect render target
readRenderTargetPixelsAsync was checking if the render target was readable before binding the render ta... | [
{
"path": "examples/webgl_interactive_cubes_gpu.html",
"patch": "@@ -254,6 +254,9 @@\n \t\t\t\trenderer.setClearColor( clearColor );\n \t\t\t\trenderer.render( pickingScene, camera );\n \n+\t\t\t\t// Restore active render target to canvas\n+\t\t\t\trenderer.setRenderTarget( null );\n+\n \t\t\t\t// clear the... | 2025-03-07T09:00:20 |
tensorflow/tensorflow | effe06b79d2b5f0c3aa7beb8aedaaf7a7b007870 | 22d107c08b9ce1b526d5ccc7680231f9caa70eef | PR #37141: Bump numpy from 2.4.1 to 2.4.2
Imported from GitHub PR https://github.com/openxla/xla/pull/37141
Bumps [numpy](https://github.com/numpy/numpy) from 2.4.1 to 2.4.2.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/numpy/numpy/releases">numpy's releases</a>.</em></p>... | [
{
"path": "third_party/xla/requirements_lock_3_11.txt",
"patch": "@@ -1,76 +1,76 @@\n-numpy==2.4.1 \\\n- --hash=sha256:0093e85df2960d7e4049664b26afc58b03236e967fb942354deef3208857a04c \\\n- --hash=sha256:09aa8a87e45b55a1c2c205d42e2808849ece5c484b2aab11fecabec3841cafba \\\n- --hash=sha256:0cce2a669e... | 2026-02-03T10:11:41 |
mrdoob/three.js | 537d3965a9cbc9163892d24c699a79768866885e | 4e441e8f7622fc0162b3b2a97ce38985ec25a997 | GLTFLoader: fix bad reference to PATH_PROPERTIES (#30669)
Co-authored-by: Samuel Rigaud <srigaud@duodisplay.com> | [
{
"path": "examples/jsm/loaders/GLTFLoader.js",
"patch": "@@ -2295,7 +2295,7 @@ function addUnknownExtensionsToUserData( knownExtensions, object, objectDef ) {\n }\n \n /**\n- * @param {Object3D|Material|BufferGeometry} object\n+ * @param {Object3D|Material|BufferGeometry|Object} object\n * @param {GLTF.de... | 2025-03-06T22:43:44 |
denoland/deno | 0ae83e43ca96a1b40e7c8bcb80590f6a1fe757c2 | 223d7bb683a425ecbf5a6380a9a0a5fd46581a20 | fix(task): prioritize member `package.json` when `deno.json` only in root (#31736)
It was using the deno.json from the root even if the member package.json
had a script with the same name. | [
{
"path": "cli/args/mod.rs",
"patch": "@@ -799,7 +799,7 @@ impl CliOptions {\n pub fn resolve_storage_key_resolver(&self) -> StorageKeyResolver {\n if let Some(location) = &self.flags.location {\n StorageKeyResolver::from_flag(location)\n- } else if let Some(deno_json) = self.start_dir.maybe_... | 2025-12-29T22:49:03 |
swiftlang/swift | 8dd18534e2ce9f2f15416a4a9b248ce0b3b0ffd6 | 36786055456c5c45dc05d27d4833829d1bb6f301 | [DebuggingTheCompiler] Standardize code block formatting
Convert all 4-space-indented code blocks to fenced code blocks with
appropriate language tags:
- ```sh for shell commands
- ```lldb for LLDB sessions
- ```vim for vim configuration
- Plain ``` for output/logs and other content
This improves readability and enab... | [
{
"path": "docs/DebuggingTheCompiler.md",
"patch": "@@ -225,8 +225,10 @@ When using swift LLDB REPL, one can dump the same output for each\n expression as one evaluates the expression by enabling constraints debugging by\n passing the flag `-Xfrontend -debug-constraints`:\n \n- $ swift repl -Xfrontend -d... | 2026-02-24T15:58:56 |
golang/go | 0c69e7734308f36de7acbeda4cabced8018c04e3 | da92168ec8cedf08603fd77929a4b9d7e3183275 | Revert "[dev.simd] internal/runtime/gc: add simd package based greentea kernels"
This reverts CL 719520.
Reason for revert: Naming is confusing. Also, this has a semantic merge
conflict with CL 722040. Let's revert, fix the naming and conflict, and
do it again.
Change-Id: I0dc0c7c58470d63d48a4f69adb38c18f95db0beb
Re... | [
{
"path": "src/cmd/compile/internal/ssa/stmtlines_test.go",
"patch": "@@ -140,7 +140,7 @@ func TestStmtLines(t *testing.T) {\n \tvar m float64\n \tswitch runtime.GOARCH {\n \tcase \"amd64\":\n-\t\tm = 0.0112 // > 98.88% obtained on amd64, no backsliding\n+\t\tm = 0.0111 // > 98.89% obtained on amd64, no bac... | 2025-11-22T02:17:10 |
tensorflow/tensorflow | 73c35655e0ba60311ff36bec1f869efa74dc5959 | 1eed09e456a21cdb9a071f219dca0946313c230a | PR #37129: [Trivial] Fixed a bug in the handling of recv callbacks in PJRT.
Imported from GitHub PR https://github.com/openxla/xla/pull/37129
📝 Summary of Changes
Switched from `options.send_callbacks.size()` to `options.recv_callbacks.size()` in a couple places that dealt with receive callbacks instead of send cal... | [
{
"path": "third_party/xla/xla/pjrt/gpu/tfrt/utils.cc",
"patch": "@@ -478,7 +478,7 @@ SendDeviceMemoryFunction ConvertSendCallbacksToSendFunction(\n RecvDeviceMemoryFunction ConvertRecvCallbacksToRecvFunction(\n int replica, const ExecuteOptions& options) {\n // Check if we have callbacks registered f... | 2026-02-03T10:05:52 |
denoland/deno | 223d7bb683a425ecbf5a6380a9a0a5fd46581a20 | ce1d4514ac401d8550df16b59b37c20bb5958b3b | fix(serve): net permissions in config file (#31718)
It wasn't being resolved properly because we were injecting allow-net
options when parsing flags instead of when resolving wholly resolving
permissions.
Closes #31728 | [
{
"path": "cli/args/flags.rs",
"patch": "@@ -6509,25 +6509,6 @@ fn serve_parse(\n let open_site = matches.remove_one::<bool>(\"open\").unwrap_or(false);\n \n runtime_args_parse(flags, matches, true, true, true)?;\n- // If the user didn't pass --allow-net, add this port to the network\n- // allowlist. ... | 2025-12-29T14:11:22 |
mrdoob/three.js | 4e441e8f7622fc0162b3b2a97ce38985ec25a997 | 0040bd2bad650d4d28c7c7316202f7cdd91464aa | LDrawLoader: wrong call to parseModel (#30670)
Co-authored-by: Samuel Rigaud <srigaud@duodisplay.com> | [
{
"path": "examples/jsm/loaders/LDrawLoader.js",
"patch": "@@ -1839,7 +1839,7 @@ class LDrawLoader extends Loader {\n \t\t\tthis.setMaterials( [] );\n \n \t\t\tthis.partsCache\n-\t\t\t\t.parseModel( text, this.materialLibrary )\n+\t\t\t\t.parseModel( text )\n \t\t\t\t.then( group => {\n \n \t\t\t\t\tthis.ap... | 2025-03-06T22:40:56 |
swiftlang/swift | 36786055456c5c45dc05d27d4833829d1bb6f301 | 7f088247db180fd9efcca7d294f798cf97a1af49 | [DebuggingTheCompiler] Fix formatting inconsistencies
- Add ### prefix to bare "Build inside the Container" text
- Standardize heading capitalization to Title Case
- Standardize double-backtick flags to single-backtick to match
the rest of the document | [
{
"path": "docs/DebuggingTheCompiler.md",
"patch": "@@ -340,9 +340,9 @@ SIL passes. More information is available in\n [Compiler Performance](CompilerPerformance.md) for the unified statistics, and\n [Optimizer Counter Analysis](OptimizerCountersAnalysis.md) for pass counters.\n \n-## Debugging and Profilin... | 2026-02-24T15:53:59 |
golang/go | e88be8a128d167c5ab91eabc998ab364370c702e | a318843a2ad17d853b13599a73b2912a13474490 | runtime: fix stale comment for mheap/malloc
mheap use pageAlloc to manage free/scav address space instead of
using free/scav treap. The comment on mheap states mheap uses
treaps. Update the comment to reflect the use of pageAlloc.
In the fallback code when sizeSpecializedMalloc is enabled,
heapBitsInSpan is false. Up... | [
{
"path": "src/runtime/malloc.go",
"patch": "@@ -1169,7 +1169,7 @@ func mallocgc(size uintptr, typ *_type, needzero bool) unsafe.Pointer {\n \tvar x unsafe.Pointer\n \tvar elemsize uintptr\n \tif sizeSpecializedMallocEnabled {\n-\t\t// we know that heapBitsInSpan is true.\n+\t\t// we know that heapBitsInSpa... | 2025-11-21T03:14:46 |
tensorflow/tensorflow | 30014375344a54d8755ea7f419e8d752724ffa23 | a597f92b77d13848c5670644013e2170f7d18948 | Always run the name generators passed to TraceMe on debug builds to help catch bugs
Today, the name generators are run only when there is an active tracing session, which means that none of the code inside the name generators are tested at all. Since users sometimes perform non-trivial work (such as accessing pointers... | [
{
"path": "third_party/xla/third_party/tsl/tsl/profiler/lib/traceme.h",
"patch": "@@ -155,6 +155,12 @@ class TraceMe {\n TraceMeRecorder::CheckFilter(filter_mask))) {\n name_.Emplace(std::forward<NameGeneratorT>(name_generator)());\n start_time_ = GetCurrentTimeNanos();\... | 2026-02-03T09:01:14 |
kubernetes/kubernetes | 3a0744ce6d9b6f747b00f19eb086485d003aa075 | 091d147008c4aecce64fe4d9bbef84ab95d74bc7 | Add missing tests for kubectl describe commands (#136461)
* Add missing tests for kubectl describe commands
* fix linter error | [
{
"path": "staging/src/k8s.io/kubectl/pkg/describe/describe_test.go",
"patch": "@@ -33,12 +33,14 @@ import (\n \tautoscalingv1 \"k8s.io/api/autoscaling/v1\"\n \tautoscalingv2 \"k8s.io/api/autoscaling/v2\"\n \tbatchv1 \"k8s.io/api/batch/v1\"\n+\tcertificatesv1 \"k8s.io/api/certificates/v1\"\n \tcoordinationv... | 2026-01-28T11:07:52 |
denoland/deno | ce1d4514ac401d8550df16b59b37c20bb5958b3b | 11e9e073d9fc0c670206f41727c54789a1be56af | fix(install): wait for package installations before applying patches (#31711)
## Overview
In the current latest version of Deno (2.6.3), there is an issue where
running the `deno install` command causes patched packages specified in
the `links` property of `deno.json` to be overwritten with npm package
sources. To re... | [
{
"path": "libs/npm_installer/local.rs",
"patch": "@@ -468,6 +468,12 @@ impl<\n }\n }\n \n+ // Wait for all npm package installations to complete before applying patches\n+ // This prevents race conditions where npm packages could overwrite patch files\n+ while let Some(result) = cache_fu... | 2025-12-24T20:29:35 |
mrdoob/three.js | d95b2e2ada9ab039520a569cd136444881652b21 | eca7998460a0af1d4c64a05efd1d004f11ba5317 | AMFLoader: fix materialId reference (#30668)
Co-authored-by: Samuel Rigaud <srigaud@duodisplay.com> | [
{
"path": "examples/jsm/loaders/AMFLoader.js",
"patch": "@@ -236,7 +236,7 @@ class AMFLoader extends Loader {\n \n \t\tfunction loadMeshVolume( node ) {\n \n-\t\t\tconst volume = { name: '', triangles: [], materialid: null };\n+\t\t\tconst volume = { name: '', triangles: [], materialId: null };\n \n \t\t\tl... | 2025-03-06T22:34:43 |
golang/go | 437323ef7b933255c5c7fbb0775019e95f19b05e | 1993dca4002267b772566d6c8055c6ace46dfd4f | slices: fix incorrect comment in slices.Insert function documentation
The comment previously stated that r[i+len(v)] would equal the value
originally at r[i], but it should be the value originally at s[i].
Change-Id: I635ddbdd5dc4da9c06ed426d5542bf969b7fe6dd
Reviewed-on: https://go-review.googlesource.com/c/go/+/7226... | [
{
"path": "src/slices/slices.go",
"patch": "@@ -128,7 +128,7 @@ func ContainsFunc[S ~[]E, E any](s S, f func(E) bool) bool {\n // returning the modified slice.\n // The elements at s[i:] are shifted up to make room.\n // In the returned slice r, r[i] == v[0],\n-// and, if i < len(s), r[i+len(v)] == value or... | 2025-11-21T02:47:06 |
swiftlang/swift | 7f088247db180fd9efcca7d294f798cf97a1af49 | 48e75198c5575cd08ed30e5c32dd4f15ceacb904 | [DebuggingTheCompiler.md] Fix typos and textual errors in DebuggingTheCompiler.md
Fix mechanical typos and copy-paste errors throughout the document. E.x.:
- "we know to ignore swift_getGenericMetadata" → "we know to ignore
`GlobalARCOpts::run`" (copy-paste error; the example is about
GlobalARCOpts::run)
- "could ... | [
{
"path": "docs/DebuggingTheCompiler.md",
"patch": "@@ -50,7 +50,7 @@ benefit of all Swift developers.\n - [Debugging Swift Executables](#debugging-swift-executables)\n - [Debugging Swift Testing Executables with LLDB](#debugging-swift-testing-executables-with-lldb)\n - [Determining the mangled name... | 2026-02-24T15:48:32 |
tensorflow/tensorflow | 610bbbddd8d4c07754694736c93fcad0b8da5bbe | 25b146303a200e3c547fab51661ca3545e78f6e3 | PR #37010: [ROCm] Changed error value for SplitK test in triton_gemm_fusion_test.cc
Imported from GitHub PR https://github.com/openxla/xla/pull/37010
📝 Summary of Changes
Changed error value for SplitK test in triton_gemm_fusion_test.cc.
🎯 Justification
Considering error mismatch on ROCm:
```
Top relative error mi... | [
{
"path": "third_party/xla/xla/backends/gpu/codegen/triton/triton_gemm_fusion_test.cc",
"patch": "@@ -2154,7 +2154,7 @@ ENTRY e {\n EXPECT_TRUE(\n RunAndCompareTwoModules(std::move(ref_module_and_metadata.module),\n std::move(test_module_and_metadata.module),\n- ... | 2026-02-02T14:47:50 |
mrdoob/three.js | 222a903ee0361b3331274d8fa73a6386d58e8864 | b948e1f23b4ee59fd270ce7987d1d7fb9899fca6 | Types: fix errors (#30665)
Co-authored-by: Samuel Rigaud <srigaud@duodisplay.com> | [
{
"path": "examples/jsm/csm/CSMFrustum.js",
"patch": "@@ -10,7 +10,7 @@ class CSMFrustum {\n \t/**\n \t * Constructs a new CSM frustum.\n \t *\n-\t * @param {CSMFrustum~Data} data - The CSM data.\n+\t * @param {CSMFrustum~Data} [data] - The CSM data.\n \t */\n \tconstructor( data ) {\n ",
"additions": 1... | 2025-03-06T22:33:14 |
denoland/deno | 11e9e073d9fc0c670206f41727c54789a1be56af | 1ce0e55d7850de54ad27c48c1fb097cb6156af73 | fix(ext/node): support for inspector.url() (#31705)
Closes https://github.com/denoland/deno/issues/31700 | [
{
"path": "ext/node/lib.rs",
"patch": "@@ -34,6 +34,7 @@ use deno_permissions::PermissionCheckError;\n pub use node_resolver::DENO_SUPPORTED_BUILTIN_NODE_MODULES as SUPPORTED_BUILTIN_NODE_MODULES;\n pub use node_resolver::PathClean;\n use ops::handle_wrap::AsyncId;\n+pub use ops::inspector::InspectorServerU... | 2025-12-22T23:42:06 |
golang/go | 337f7b1f5d18e8b2469a37174c24baced4c23801 | 3c26aef8fba0ef1f4d26d802ba037b43671924e9 | cmd/go: update default go directive in mod or work init
This commit updates the default go directive when initializing a new
module.
The current logic is to use the latest version supported by the
toolchain. This behavior is simple, predictable, and importantly, it
can work while completely offline (i.e., no interne... | [
{
"path": "src/cmd/go/internal/modload/init.go",
"patch": "@@ -29,6 +29,7 @@ import (\n \t\"cmd/go/internal/lockedfile\"\n \t\"cmd/go/internal/modfetch\"\n \t\"cmd/go/internal/search\"\n+\tigover \"internal/gover\"\n \n \t\"golang.org/x/mod/modfile\"\n \t\"golang.org/x/mod/module\"\n@@ -826,7 +827,7 @@ func... | 2025-11-13T21:38:20 |
tensorflow/tensorflow | c66a08b553780756d205c2b7c96a4928bb368e2c | 621bde48753133e29d75ed6d8c7ddac87c59313a | PR #36963: [ROCm] Use shared AsBlasLtEpilogue in GemmWorkspaceRewriter
Imported from GitHub PR https://github.com/openxla/xla/pull/36963
Replace the duplicate with the shared function to fix the issue and prevent future divergence. The duplicate AsBlasLtEpilogue in gemm_workspace_rewriter.cc was missing SILU epilogue... | [
{
"path": "third_party/xla/xla/service/gpu/transforms/gemm_workspace_rewriter.cc",
"patch": "@@ -50,30 +50,6 @@ using se::gpu::BlasLt;\n \n namespace {\n \n-absl::StatusOr<BlasLt::Epilogue> AsBlasLtEpilogue(\n- GemmBackendConfig_Epilogue epilogue) {\n- switch (epilogue) {\n- case GemmBackendConfig::D... | 2026-02-02T14:00:23 |
kubernetes/kubernetes | b2049e9a91cf991690bcf5f2cda750c864a9904d | f866eed44a50ebfe678f88b8e2917464e3a3373c | Fix the semver for the nginx image
Signed-off-by: Manjunath Kumatagi <mkumatag@in.ibm.com> | [
{
"path": "test/images/nginx/VERSION",
"patch": "@@ -1 +1 @@\n-1.27.0 - 0\n+1.27.0-0",
"additions": 1,
"deletions": 1,
"language": "Unknown"
}
] | 2026-01-28T09:58:12 |
mrdoob/three.js | b948e1f23b4ee59fd270ce7987d1d7fb9899fca6 | fe2a12c88c7f9a6ddff378d3c9c0b1243cb6467b | Docs: fix some typos (#30664)
Co-authored-by: Samuel Rigaud <srigaud@duodisplay.com> | [
{
"path": "examples/jsm/animation/AnimationClipCreator.js",
"patch": "@@ -15,7 +15,7 @@ import {\n class AnimationClipCreator {\n \n \t/**\n-\t * Creates an animation clip that rotates a 3D object 360 degress\n+\t * Creates an animation clip that rotates a 3D object 360 degrees\n \t * in the given period of... | 2025-03-06T16:43:55 |
denoland/deno | 1ce0e55d7850de54ad27c48c1fb097cb6156af73 | 0a162aaecceb267f099b0347bc7722950de7be3e | fix(compile): make compile work with `--unstable-npm-lazy-caching` (#31704)
Closes https://github.com/denoland/deno/issues/31703 | [
{
"path": "cli/standalone/binary.rs",
"patch": "@@ -49,13 +49,15 @@ use deno_lib::util::v8::construct_v8_flags;\n use deno_lib::version::DENO_VERSION_INFO;\n use deno_npm::NpmSystemInfo;\n use deno_npm::resolution::SerializedNpmResolutionSnapshot;\n+use deno_npm::resolution::ValidSerializedNpmResolutionSnap... | 2025-12-22T19:28:45 |
golang/go | 31aa9f800bc8d4089e05b8726b599abe04a486a3 | d68aec8db1bc3c167d2f0e5fdee8c1346ee35418 | crypto/tls: use inner hello for earlyData when using QUIC and ECH
I don't think we have good QUIC ECH tests. BoGo has some for this, but
I'm not sure how easy it would be to enable those for QUIC.
Fixes #76283
Change-Id: I0ffa535fd89a624b7f9bfd73441ce2a1683e0549
Reviewed-on: https://go-review.googlesource.com/c/go/+... | [
{
"path": "src/crypto/tls/handshake_client.go",
"patch": "@@ -308,7 +308,11 @@ func (c *Conn) clientHandshake(ctx context.Context) (err error) {\n \tif hello.earlyData {\n \t\tsuite := cipherSuiteTLS13ByID(session.cipherSuite)\n \t\ttranscript := suite.hash.New()\n-\t\tif err := transcriptMsg(hello, transcr... | 2025-11-17T00:09:16 |
mrdoob/three.js | fe2a12c88c7f9a6ddff378d3c9c0b1243cb6467b | 4ab13b4acfc5c14ffdb69ec7aff316481fe1474e | Update Capsule.js
Fix typo. | [
{
"path": "examples/jsm/math/Capsule.js",
"patch": "@@ -61,7 +61,7 @@ class Capsule {\n \t * @param {Vector3} start - The start vector.\n \t * @param {Vector3} end - The end vector\n \t * @param {number} radius - The capsule's radius.\n-\t * @return {Box2} A reference to this bounding box.\n+\t * @return {C... | 2025-03-06T13:28:38 |
tensorflow/tensorflow | 621bde48753133e29d75ed6d8c7ddac87c59313a | 0ccd0276353e5516ca131302a5c6ed22a36d4bb7 | [XLA:GPU] Fix downcast.
PiperOrigin-RevId: 864316790 | [
{
"path": "third_party/xla/xla/pjrt/gpu/se_gpu_pjrt_client_test.cc",
"patch": "@@ -2926,7 +2926,7 @@ TEST(StreamExecutorGpuClientTest, EventCaching) {\n TF_ASSERT_OK_AND_ASSIGN(auto client,\n GetStreamExecutorGpuClient(DefaultOptions()));\n auto* async_work_runner =\n- abs... | 2026-02-02T13:49:52 |
kubernetes/kubernetes | d088372d98fea4cf7ef9a233cdbb507d1da249bf | f866eed44a50ebfe678f88b8e2917464e3a3373c | Add test for GetImageRef content-based deduplication
Adds TestGetImageRefReturnsImageIdNotRepoDigest to verify that GetImageRef
returns Image.Id instead of RepoDigests. This ensures content-based
deduplication where the same image pulled from different registries is
treated as identical content rather than separate im... | [
{
"path": "pkg/kubelet/kuberuntime/kuberuntime_image_test.go",
"patch": "@@ -136,6 +136,37 @@ func TestGetImageRef(t *testing.T) {\n \tassert.Equal(t, image, imageRef)\n }\n \n+// TestGetImageRefReturnsImageIdNotRepoDigest verifies that GetImageRef returns\n+// Image.Id instead of RepoDigests to ensure cont... | 2026-01-28T08:19:27 |
golang/go | 6aeacdff3889bc743f2baf8e8239b8cb83afd807 | 9570036ca5a95bff4c6768288a7c1db68277b9c0 | cmd/go: support sha1 repos when git default is sha256
When git is recent enough (beyond 2.29), always set the --object-format
flag.
This fixes repo cloning when users have set the git configuration
init.defaultObjectFormat to sha256.
Git is planning[1] to switch the default hash function to sha256 with
the 3.0 relea... | [
{
"path": "src/cmd/go/internal/modfetch/codehost/git.go",
"patch": "@@ -17,6 +17,7 @@ import (\n \t\"os\"\n \t\"os/exec\"\n \t\"path/filepath\"\n+\t\"regexp\"\n \t\"runtime\"\n \t\"slices\"\n \t\"sort\"\n@@ -91,9 +92,21 @@ func newGitRepo(ctx context.Context, remote string, local bool) (Repo, error) {\n \t\... | 2025-11-14T02:16:43 |
mrdoob/three.js | c399a18428027f60c2303b6bdcee3acb1e790fca | 4edb768f269c0953639cf7138cd0eae524a1bfca | fix: reuse instantiated material for buildXform to avoid generating missing materials (#30661) | [
{
"path": "examples/jsm/exporters/USDZExporter.js",
"patch": "@@ -119,7 +119,7 @@ class USDZExporter {\n \n \t\t\t\t\t}\n \n-\t\t\t\t\toutput += buildXform( object, geometry, material );\n+\t\t\t\t\toutput += buildXform( object, geometry, materials[ material.uuid ] );\n \n \t\t\t\t} else {\n \n@@ -796,7 +79... | 2025-03-06T11:33:39 |
swiftlang/swift | 6b663dd4007838f993a95c7ed32a4f971c8ae189 | 2c83361bb01e076914e1e9c7b2139fb5f0112869 | test: Delete a stale forever-XFAILed test
This test has been XFAILed since 2016 despite merely missing an error
expectation. However, given that the obsoleted pre-Swift-3 metatype
syntax tested here has not had a tailored compatibility diagnostic since
at least Swift 3 (the compiler), I do not think it carries its wei... | [
{
"path": "test/SourceKit/CodeComplete/metatype_in_expr.swift",
"patch": "@@ -1,15 +0,0 @@\n-// RUN: %swift -typecheck %s -verify\n-// rdar://16172507\n-// XFAIL: *\n-\n-// This checks if adding \".metatype\" is valid or not.\n-// Any change here, should be reflected in code-completion results.\n-\n-class F... | 2026-02-24T12:07:27 |
tensorflow/tensorflow | 5163ce797bb6699a23f59fc553d0e004a15f4880 | 223d7853669ab94975cecd7fb01686312a72a831 | PR #35456: Manage events for intra-process data transfers after enqueue of dependencies instead of completion
Imported from GitHub PR https://github.com/openxla/xla/pull/35456
📝 Summary of Changes
This PR modifies `PjRtStreamExecutorRawBuffer` to allocate and record the definition event of the receive buffer / the u... | [
{
"path": "third_party/xla/xla/pjrt/gpu/se_gpu_pjrt_client_test.cc",
"patch": "@@ -1179,6 +1179,61 @@ TEST(StreamExecutorGpuClientTest, AsyncCopyToDevice) {\n literal->Relayout(src_literal.shape().layout()).data<float>());\n }\n \n+TEST(StreamExecutorGpuClientTest, CopyErrorBufferToDevice) {\n+ ... | 2026-02-02T12:24:25 |
golang/go | 155efbbeeb532473c0ac3cc93f9a8a7597322157 | 6f16669e346038c983ae33025ca02dccd78b6f20 | crypto/sha3: make the zero value of SHA3 useable
Fixes #75154
Change-Id: I860ab0b4bd5d64e1f58aa5dfbab19d77e2925430
Reviewed-on: https://go-review.googlesource.com/c/go/+/714120
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Mark Freeman <markfreeman@google.com>
... | [
{
"path": "src/crypto/sha3/sha3.go",
"patch": "@@ -97,6 +97,7 @@ func sumSHAKE256(out, data []byte, length int) []byte {\n }\n \n // SHA3 is an instance of a SHA-3 hash. It implements [hash.Hash].\n+// The zero value is a usable SHA3-256 hash.\n type SHA3 struct {\n \ts sha3.Digest\n }\n@@ -126,43 +127,57 @... | 2025-10-23T09:20:10 |
mrdoob/three.js | 1c45822f6cb536b41ecc93dccc60363810485888 | b1242211bcdc28fe27e355e6059665abff50c575 | WebGPURenderer: Fix texture view caching and dispose event stacking (#30647)
* WebGPURenderer: Fix texture view caching and dispose event stacking
* cleanup log
* cleanup
* cleanup | [
{
"path": "src/renderers/common/Renderer.js",
"patch": "@@ -1932,6 +1932,8 @@ class Renderer {\n \t\t\trenderContext.stencil = renderTarget.stencilBuffer;\n \t\t\t// #30329\n \t\t\trenderContext.clearColorValue = this.backend.getClearColor();\n+\t\t\trenderContext.activeCubeFace = this.getActiveCubeFace();\... | 2025-03-05T13:35:15 |
golang/go | 6f16669e346038c983ae33025ca02dccd78b6f20 | 121bc3e464b901327a5c138d8a992bb85c440862 | database/sql: don't ignore ColumnConverter for unknown input count
In the case a sql driver implements the ColumnConverter interface and also
returns -1 for NumInputs, indicating an unknown number of input arguments to
a query, the previous implementation would ignore the column converter would
not be called, leading ... | [
{
"path": "src/database/sql/convert.go",
"patch": "@@ -55,7 +55,7 @@ func (c ccChecker) CheckNamedValue(nv *driver.NamedValue) error {\n \t// it isn't expecting. The final error will be thrown\n \t// in the argument converter loop.\n \tindex := nv.Ordinal - 1\n-\tif c.want <= index {\n+\tif c.want >= 0 && c... | 2024-07-08T16:14:43 |
swiftlang/swift | e233b0b4d4f5cf7fc664655c9e3f913b5bc930dd | 7c5b0f760cb55c2016b60e18473d96f346e91379 | EmbeddedSwiftDiagnostics: ignore `destroy_value` with a `dead_end` flag
Fixes a false "deinit of non-copyable type not visible in the current module" error
rdar://171009835 | [
{
"path": "SwiftCompilerSources/Sources/Optimizer/ModulePasses/EmbeddedSwiftDiagnostics.swift",
"patch": "@@ -176,7 +176,7 @@ private struct FunctionChecker {\n case let apply as ApplySite:\n try checkApply(apply: apply)\n \n- case let destroy as DestroyValueInst:\n+ case let destroy as Dest... | 2026-02-24T13:26:10 |
mrdoob/three.js | e52f524bdaaf85c25cdfd6aba033344ff5740966 | 2da51185bd8aaafbc0ed7ae13151e0ffc606c42e | Backend: Fix signature. (#30644) | [
{
"path": "src/renderers/common/Backend.js",
"patch": "@@ -344,7 +344,7 @@ class Backend {\n \t * @abstract\n \t * @param {Texture} srcTexture - The source texture.\n \t * @param {Texture} dstTexture - The destination texture.\n-\t * @param {?Vector4} [srcRegion=null] - The region of the source texture to c... | 2025-03-04T08:23:37 |
golang/go | 121bc3e464b901327a5c138d8a992bb85c440862 | b604148c4e8ad61640d12cde40379bc3c137d8a6 | runtime/pprof: remove hard-coded sleep in CPU profile reader
The CPU profiler reader goroutine has a hard-coded 100ms sleep between
reads of the CPU profile sample buffer. This is done because waking up
the CPU profile reader is not signal-safe on some platforms. As a
consequence, stopping the profiler takes 200ms (on... | [
{
"path": "src/runtime/pprof/pprof.go",
"patch": "@@ -924,7 +924,10 @@ func profileWriter(w io.Writer) {\n \tb := newProfileBuilder(w)\n \tvar err error\n \tfor {\n-\t\ttime.Sleep(100 * time.Millisecond)\n+\t\tif runtime.GOOS == \"darwin\" || runtime.GOOS == \"ios\" {\n+\t\t\t// see runtime_pprof_readProfil... | 2025-11-21T16:01:29 |
tensorflow/tensorflow | 524acbcb8f87e219c0080aa9066b6aefe229c62f | 92d667887fa1dcd201a00a8c14ca8e097ddd62d5 | Fix the name of ci_multi_device configuration
PiperOrigin-RevId: 864255372 | [
{
"path": "third_party/xla/.github/workflows/ci_multi_device.yml",
"patch": "@@ -28,7 +28,7 @@ jobs:\n {\n pool: \"linux-x86-a3-8g-h100-8gpu\",\n container: \"us-docker.pkg.dev/ml-oss-artifacts-published/ml-public-container/ml-build:latest\",\n- name: \"XLA Linux... | 2026-02-02T10:28:38 |
mrdoob/three.js | 2da51185bd8aaafbc0ed7ae13151e0ffc606c42e | 7284747f79e8a189fad13a58261ead0febc9220b | Update Backend.js
Fix interface method, see #30584. | [
{
"path": "src/renderers/common/Backend.js",
"patch": "@@ -346,9 +346,10 @@ class Backend {\n \t * @param {Texture} dstTexture - The destination texture.\n \t * @param {?Vector4} [srcRegion=null] - The region of the source texture to copy.\n \t * @param {?(Vector2|Vector3)} [dstPosition=null] - The destinat... | 2025-03-04T08:19:18 |
swiftlang/swift | e6f651fd5a187e5b2bd7e734210a5056b3006859 | 450a3f1a7823f9f23480548c5655587a83bf984b | [test] Add some more known crashers | [
{
"path": "validation-test/IDE/crashers/AssociatedTypeInference-inferTypeWitnessesViaValueWitnesses-3b277d.swift",
"patch": "@@ -0,0 +1,4 @@\n+// {\"kind\":\"complete\",\"original\":\"62efa6bf\",\"signature\":\"(anonymous namespace)::AssociatedTypeInference::inferTypeWitnessesViaValueWitnesses(llvm::SetVect... | 2026-02-12T23:03:19 |
kubernetes/kubernetes | 8701f481ff6e24257021f07afcec67df2aef27dc | 99a2c5c6346ad84976f9bda40034670a97950f24 | client-go clientcmd: exclude from structured, contextual logging
The only log output is for error messages which should normally not occur. It's
also likely that users expect to see exactly those messages, so it's better to
not touch them. | [
{
"path": "staging/src/k8s.io/client-go/tools/clientcmd/client_config.go",
"patch": "@@ -679,11 +679,13 @@ func (config *inClusterClientConfig) Possible() bool {\n // to the default config.\n func BuildConfigFromFlags(masterUrl, kubeconfigPath string) (*restclient.Config, error) {\n \tif kubeconfigPath == \... | 2024-12-04T14:39:14 |
denoland/deno | 6aaed850b8a775c85eb4a4a6f20024a3f0e62ae2 | d3668555dceb0b252234e8af5e26fe6118ba440a | fix(check): improve node types handling (#31677)
1. Always injects node types when someone has a `node:` import (like
before, so this isn't dependent on the lib setting... which fixes the
linked issue)
2. Handles someone doing `/// <reference lib="node" />`. Previously this
was slightly broken.
*
https://github.com/d... | [
{
"path": "cli/lsp/documents.rs",
"patch": "@@ -3,6 +3,7 @@\n use std::borrow::Cow;\n use std::collections::BTreeMap;\n use std::collections::HashMap;\n+use std::collections::HashSet;\n use std::fs;\n use std::future::Future;\n use std::ops::Range;\n@@ -1506,6 +1507,11 @@ impl DocumentModules {\n fo... | 2025-12-20T10:17:45 |
golang/go | b604148c4e8ad61640d12cde40379bc3c137d8a6 | 22f24f90b52958158a2de5fa68adf0faf7699e4e | runtime: fix double wakeup in CPU profile buffer
The profBuf.wakeupExtra method wakes up the profile reader if it's
sleeping, either when the buffer is closed or when there is a pending
overflow entry. Unlike in profBuf.write, profBuf.wakeupExtra does not
clear the profReaderSleeping bit before doing the wakeup. As a... | [
{
"path": "src/runtime/profbuf.go",
"patch": "@@ -406,6 +406,11 @@ func (b *profBuf) wakeupExtra() {\n \tfor {\n \t\told := b.w.load()\n \t\tnew := old | profWriteExtra\n+\t\t// Clear profReaderSleeping. We're going to wake up the reader\n+\t\t// if it was sleeping and we don't want double wakeups in case\n... | 2025-11-21T14:09:57 |
mrdoob/three.js | 2244d4acb61ec25cac5afb2eb34a14602c7e4f1a | 4944ad7a7f08944981987de860255b90a123f8c0 | Update Raycaster.js
Fix typo. | [
{
"path": "src/core/Raycaster.js",
"patch": "@@ -5,7 +5,7 @@ import { Layers } from './Layers.js';\n const _matrix = /*@__PURE__*/ new Matrix4();\n \n /**\n- * This class is designed to assist with raycasting] Raycasting is used for\n+ * This class is designed to assist with raycasting. Raycasting is used f... | 2025-03-01T13:43:06 |
tensorflow/tensorflow | e52e993720e1276d35139c0d79722130f5feffb0 | 5b3611092bcad1539c6c3a96d8b3dc657e4c8cd1 | PR #36975: [HLO] Add option to print inline stack frames.
Imported from GitHub PR https://github.com/openxla/xla/pull/36975
Issue No.: #36953
📝 Summary of Changes
Added a new debug option xla_hlo_print_inline_stack_frames to DebugOptions. When enabled, the HLO printer resolves stack_frame_ids and prints the source ... | [
{
"path": "third_party/xla/xla/hlo/ir/hlo_instruction.cc",
"patch": "@@ -4085,10 +4085,25 @@ void HloInstruction::PrintWithCanonicalNameMap(\n (metadata_ != nullptr &&\n (!metadata_->op_type().empty() || !metadata_->op_name().empty() ||\n !metadata_->source_file().empty() ||\n- !... | 2026-01-31T02:07:53 |
swiftlang/swift | 450a3f1a7823f9f23480548c5655587a83bf984b | 6ffcf5ce5497daf97a1d7dbb251b94bdb0e3991d | [test] Update a couple of crasher signatures | [
{
"path": "validation-test/IDE/crashers/CodeCompletionCallbacksImpl-readyForTypeChecking-0ee20e.swift",
"patch": "@@ -0,0 +1,3 @@\n+// {\"kind\":\"complete\",\"original\":\"0057cadb\",\"signature\":\"(anonymous namespace)::CodeCompletionCallbacksImpl::readyForTypeChecking(swift::SourceFile*)\",\"signatureAs... | 2026-02-12T23:06:54 |
kubernetes/kubernetes | 3b4e56e09c51d52f380cc53e775beeec2cd1cb85 | 1c913f6e9cbcb51ba8d78273b22caed769ce65d1 | kubelet: DRA: plugin: set logging prefix | [
{
"path": "pkg/kubelet/cm/dra/plugin/dra_plugin.go",
"patch": "@@ -74,7 +74,7 @@ func (p *DRAPlugin) NodePrepareResources(\n \treq *drapbv1.NodePrepareResourcesRequest,\n \topts ...grpc.CallOption,\n ) (*drapbv1.NodePrepareResourcesResponse, error) {\n-\tlogger := klog.FromContext(ctx)\n+\tlogger := klog.Fr... | 2026-01-26T15:41:33 |
denoland/deno | d3668555dceb0b252234e8af5e26fe6118ba440a | 9cd8077757a365f2e9e36499c2330d2d4facbb2e | Revert "fix(ext/node): stub out Module.register and Module.registerHooks" (#31684)
Reverts denoland/deno#31666 | [
{
"path": "ext/node/polyfills/01_require.js",
"patch": "@@ -1322,21 +1322,13 @@ Module.findSourceMap = findSourceMap;\n * @param {{ parentURL: string | URL, data: any, transferList: any[] }} [_options]\n */\n export function register(_specifier, _parentUrl, _options) {\n- throw new Error(\n- \"Module ... | 2025-12-20T09:53:17 |
golang/go | 22f24f90b52958158a2de5fa68adf0faf7699e4e | cfb9d2eb73d9ecb0e5ea2ce5ef0d3f23593087be | cmd/compile: change testing.B.Loop keep alive semantic
This CL implements this initial design of testing.B.Loop's keep variable
alive semantic:
https://github.com/golang/go/issues/61515#issuecomment-2407963248.
Fixes #73137.
Change-Id: I8060470dbcb0dda0819334f3615cc391ff0f6501
Reviewed-on: https://go-review.googleso... | [
{
"path": "src/cmd/compile/internal/bloop/bloop.go",
"patch": "@@ -0,0 +1,313 @@\n+// Copyright 2025 The Go Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style\n+// license that can be found in the LICENSE file.\n+\n+package bloop\n+\n+// This file contains support routines... | 2025-10-30T19:14:57 |
mrdoob/three.js | 628fc0d0bb7bb6ca8852465aeaa7d149869281f3 | 008362f9af0d078aaf3d88eaef73942e8aae013e | Doc: fix some errors (#30632)
Co-authored-by: Samuel Rigaud <srigaud@duodisplay.com> | [
{
"path": "examples/jsm/geometries/ParametricGeometries.js",
"patch": "@@ -98,7 +98,7 @@ class ParametricTorusKnotGeometry extends ParametricTubeGeometry {\n \t\tconst radiusSegments = segmentsR;\n \t\tconst extrudePath = new TorusKnotCurve();\n \n-\t\tsuper( extrudePath, segments, tube, radiusSegments, tru... | 2025-02-28T21:17:14 |
tensorflow/tensorflow | 7e765f8dbb9197b59ba5a8f2fb793fd6c7af4291 | 0a3550ac429e5917fd048d3ebb5b56f2a015fda1 | [XLA:GPU] Fix MultiGpuBarrierKernel initialization safety
Changes:
- Switches the barrier logic from post-increment to pre-increment. This ensures the first barrier execution synchronizes on step 1 (instead of 0), allowing all counters and buffers to be safely initialized to zero without causing the first kernel laun... | [
{
"path": "third_party/xla/xla/stream_executor/cuda/BUILD",
"patch": "@@ -1456,6 +1456,7 @@ cc_library(\n \":cudnn_plugin\",\n \":cufft_plugin\",\n \":make_batch_pointers_kernel_cuda\",\n+ \":multi_gpu_barrier_kernel_cuda\",\n \":ragged_all_to_all_kernel_cuda\",\n ... | 2026-01-31T00:44:49 |
swiftlang/swift | 90048c3b3eee8e078f792e441b2ae4c76d1e30f6 | 4d1d68836566aa48bc4b7440377e25e1d21a2681 | FreeBSD: un-xfail bad-generated-filenames
Re-enabling the diagnostics/bad-generated-filenames.swift test.
I don't see what caused this test to be x-failed in the first place and
is causing CI failures due to unexpectedly passing. If it is crashing in
the future, I will need a core file or some way to reproduce it at
t... | [
{
"path": "test/diagnostics/bad-generated-filenames.swift",
"patch": "@@ -5,9 +5,6 @@\n // RUN: c-index-test -read-diagnostics %t/serialized.dia > %t/serialized.txt 2>&1\n // RUN: %FileCheck %s -check-prefix CHECK-DIA < %t/serialized.txt\n \n-// rdar://168250323\n-// XFAIL: OS=freebsd\n-\n import SlashA\n i... | 2026-02-24T05:29:35 |
mrdoob/three.js | 1eabccd84b1a0050f9d1c57c941004ff263e63e4 | ba08cab76a91a1f7975fb4712ccfe98e9ea38888 | Docs: Fix some typing (#30626)
Co-authored-by: Samuel Rigaud <srigaud@duodisplay.com> | [
{
"path": "src/animation/AnimationClip.js",
"patch": "@@ -289,7 +289,7 @@ class AnimationClip {\n \t * @static\n \t * @param {Object} animation - A serialized animation clip as JSON.\n \t * @param {Array<Bones>} bones - An array of bones.\n-\t * @return {AnimationClip} The new animation clip.\n+\t * @return... | 2025-02-27T17:33:31 |
denoland/deno | 48c6d0e107e740116c96bf339eb0fdaad76ca82d | bd7b0a8f3a470e2323d6437c6fc677cfc8113564 | fix(compile): ensure temp dir exists during x64 codesign (#31672)
Closes https://github.com/denoland/deno/issues/31664 | [
{
"path": "Cargo.lock",
"patch": "@@ -5773,9 +5773,9 @@ dependencies = [\n \n [[package]]\n name = \"libsui\"\n-version = \"0.12.4\"\n+version = \"0.12.5\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"31c0d3e44c406dd59a3366bf17b79bf60d22c4d47fe903b7bf84cb57e7b1314b\"\n... | 2025-12-19T12:29:02 |
kubernetes/kubernetes | 1c913f6e9cbcb51ba8d78273b22caed769ce65d1 | 2f82dc6dce33cb00b51ce4fbe40c49f87ea4fe19 | kubelet: DRA: manager: set logging prefix | [
{
"path": "pkg/kubelet/cm/dra/manager.go",
"patch": "@@ -172,7 +172,7 @@ func (m *Manager) initDRAPluginManager(ctx context.Context, getNode GetNodeFunc,\n \n // reconcileLoop ensures that any stale state in the manager's claimInfoCache gets periodically reconciled.\n func (m *Manager) reconcileLoop(ctx con... | 2026-01-26T15:36:31 |
tensorflow/tensorflow | 44b586672cb376833121d0acc924aba1bb020aef | 3d348878f329992a1fd3c9895f363b982b7f13b8 | [XLA Test Fixture Migration] Migrate `topk_rewriter_test `
PiperOrigin-RevId: 863347811 | [
{
"path": "third_party/xla/xla/service/BUILD",
"patch": "@@ -5485,10 +5485,11 @@ cc_library(\n ],\n )\n \n-xla_cc_test(\n+xla_test(\n name = \"topk_rewriter_test\",\n srcs = [\"topk_rewriter_test.cc\"],\n- tags = [\"pjrt_migration_candidate\"],\n+ backends = [\"interpreter\"],\n+ tags =... | 2026-01-30T20:31:48 |
golang/go | 0f32fbc631875bb729c74b839328fdf541bfed9a | 3e0a8e78677a5c4035e5305446ca8f8ac3ebf2f9 | net/http: populate Response.Request when using NewFileTransport
Fixes #51562
Change-Id: Ia6fe4728b1e3e0cf3a6462be99c1044260cadf31
Reviewed-on: https://go-review.googlesource.com/c/go/+/720822
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Damien Neil <dneil@goog... | [
{
"path": "src/net/http/filetransport.go",
"patch": "@@ -57,15 +57,15 @@ func (t fileTransport) RoundTrip(req *Request) (resp *Response, err error) {\n \t// sends our *Response on, once the *Response itself has been\n \t// populated (even if the body itself is still being\n \t// written to the res.Body, a p... | 2025-11-16T00:26:27 |
denoland/deno | bd7b0a8f3a470e2323d6437c6fc677cfc8113564 | d9a8d18a0bf7d0bc632bb8c7c430a01833f3582b | fix(ext/node): stub out Module.register and Module.registerHooks (#31666)
Stubs out `Module.register` and `Module.registerHooks` functions that
are meant to be used for Module Loader hooks as per
https://nodejs.org/api/module.html#customization-hooks.
This is a follow up to https://github.com/denoland/deno/pull/24965... | [
{
"path": "ext/node/polyfills/01_require.js",
"patch": "@@ -1322,13 +1322,21 @@ Module.findSourceMap = findSourceMap;\n * @param {{ parentURL: string | URL, data: any, transferList: any[] }} [_options]\n */\n export function register(_specifier, _parentUrl, _options) {\n- // TODO(@marvinhagemeister): Stu... | 2025-12-19T12:28:29 |
mrdoob/three.js | ba08cab76a91a1f7975fb4712ccfe98e9ea38888 | 791353c68b19645308b70b0b2c0e2c6d36699856 | Docs: More JSDoc. (#30624)
* Docs: More JSDoc.
* AnimationUtils: Fix `if`. | [
{
"path": "src/animation/AnimationAction.js",
"patch": "@@ -1,13 +1,31 @@\n import { WrapAroundEnding, ZeroCurvatureEnding, ZeroSlopeEnding, LoopPingPong, LoopOnce, LoopRepeat, NormalAnimationBlendMode, AdditiveAnimationBlendMode } from '../constants.js';\n \n-\n+/**\n+ * An instance of `AnimationAction` sc... | 2025-02-27T15:53:00 |
golang/go | 3e0a8e78677a5c4035e5305446ca8f8ac3ebf2f9 | 831af61120b9b846965996ed1d4daaa079847b2a | net/http: preserve original path encoding in redirects
Fixes #70758
Change-Id: I9fc6fe98c194351557c6219513918b7593899bc1
Reviewed-on: https://go-review.googlesource.com/c/go/+/720821
Reviewed-by: Damien Neil <dneil@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
R... | [
{
"path": "src/net/http/serve_test.go",
"patch": "@@ -2881,6 +2881,19 @@ func TestRedirectBadPath(t *testing.T) {\n \t}\n }\n \n+func TestRedirectEscapedPath(t *testing.T) {\n+\tbaseURL, redirectURL := \"http://example.com/foo%2Fbar/\", \"qux%2Fbaz\"\n+\treq := httptest.NewRequest(\"GET\", baseURL, NoBody)\... | 2025-11-16T00:13:40 |
tensorflow/tensorflow | 22bfec1242222b31fbe8484be9327997628ebd23 | 077e4304c712d9bf574a277147d738723d79b6d1 | rollforward with a fix
Reverts c9c9cdb1d48e4b5e67f32c6b79f3e604e3281cdc
PiperOrigin-RevId: 863324221 | [
{
"path": "tensorflow/core/tpu/kernels/sparse_core_layout.cc",
"patch": "@@ -24,6 +24,7 @@ limitations under the License.\n #include \"absl/status/status.h\"\n #include \"absl/status/statusor.h\"\n #include \"absl/strings/str_cat.h\"\n+#include \"absl/strings/string_view.h\"\n #include \"absl/strings/substi... | 2026-01-30T19:30:47 |
kubernetes/kubernetes | 4ba42116603d5a16a0be281dec19278e146dc595 | b4947a5891ab3faa822e8bfe0c17725b2ba18766 | fix: normalize nil ports to empty slice in NewPortMapKey
Prevents EndpointSlice churn for headless services where
getEndpointPorts returns [] but existing slices from the API
have nil ports, causing different hash values. | [
{
"path": "staging/src/k8s.io/endpointslice/reconciler_test.go",
"patch": "@@ -2209,6 +2209,49 @@ func TestReconcile_TrafficDistribution(t *testing.T) {\n \t}\n }\n \n+// TestReconcileHeadlessServiceNoPorts verifies that headless services with no ports\n+// don't cause EndpointSlice churn. Validates fix for... | 2026-01-24T18:29:59 |
mrdoob/three.js | bb126a25931dc631515087c629230a89c17a9398 | a8a6faf14b4837070bdfabb9e6ee5df23aa05d52 | FBXLoader: Loading FBX files with out-of-bounds material assignments lead to incorrect geometry groups and subsequent errors (#30581)
In line with other FBX loaders, a default material is now created. | [
{
"path": "examples/jsm/loaders/FBXLoader.js",
"patch": "@@ -22,6 +22,7 @@ import {\n \tMesh,\n \tMeshLambertMaterial,\n \tMeshPhongMaterial,\n+\tMeshStandardMaterial,\n \tNumberKeyframeTrack,\n \tObject3D,\n \tPerspectiveCamera,\n@@ -1298,6 +1299,35 @@ class FBXTreeParser {\n \n \t\t}\n \n+\t\t// Sanitizat... | 2025-02-25T10:11:04 |
denoland/deno | d9a8d18a0bf7d0bc632bb8c7c430a01833f3582b | dd47e25a3056dea79620ddb778834c462713881b | fix(audit): fix deserde for transitive npm audit actions (#31671)
Fixes https://github.com/denoland/deno/issues/31613 | [
{
"path": "cli/tools/pm/audit.rs",
"patch": "@@ -450,8 +450,8 @@ mod npm {\n #[derive(Debug, Deserialize)]\n pub struct AuditActionResolve {\n pub id: i32,\n+ pub path: Option<String>,\n // TODO(bartlomieju): currently not used, commented out so it's not flagged by clippy\n- // pub path: S... | 2025-12-19T08:22:26 |
golang/go | 831af61120b9b846965996ed1d4daaa079847b2a | 87269224cb3609a967b821c89f5a920864969a10 | net/http: use HTTP 307 redirects in ServeMux
Clients receiving an HTTP 301 Moved Permanently may conservatively
change the method of a POST request to GET.
The newer HTTP 307 Temporary Redirect and 308 Permanent Redirect
explicitly allows retrying POST requests after the redirect.
These should be safe for ServeMux as ... | [
{
"path": "src/net/http/serve_test.go",
"patch": "@@ -288,7 +288,7 @@ func testHostHandlers(t *testing.T, mode testMode) {\n \t\t\tif s != vt.expected {\n \t\t\t\tt.Errorf(\"Get(%q) = %q, want %q\", vt.url, s, vt.expected)\n \t\t\t}\n-\t\tcase StatusMovedPermanently:\n+\t\tcase StatusTemporaryRedirect:\n \t... | 2025-11-15T23:58:58 |
mrdoob/three.js | a8a6faf14b4837070bdfabb9e6ee5df23aa05d52 | 3184121924ac47c8ffcbb0e866d834f804da506f | Reflector: Add `forceUpdate`. (#30569)
* Add needsUpdate to Reflector
* Rename needsUpdate to forceUpdate in Reflector
* Update Reflector.js
Improved code style.
* Add forceUpdate to ReflectorBaseNode
* ReflectorNode.js Eslint fix
* Update ReflectorNode.js
---------
Co-authored-by: Michael Herzog <michael.herz... | [
{
"path": "examples/jsm/objects/Reflector.js",
"patch": "@@ -21,6 +21,7 @@ class Reflector extends Mesh {\n \t\tthis.isReflector = true;\n \n \t\tthis.type = 'Reflector';\n+\t\tthis.forceUpdate = false;\n \t\tthis.camera = new PerspectiveCamera();\n \n \t\tconst scope = this;\n@@ -76,9 +77,10 @@ class Refle... | 2025-02-25T10:10:02 |
swiftlang/swift | 9a42678cd0565a7194f2701e0d519237444a8666 | a298d72fdfbd97f5981bfba680c8e714a7cb17e9 | [DebugInfo] Emit DW_TAG_reference_type for indirect enum cases in DWARF
Wrap indirect enum case payload types in DW_TAG_reference_type to indicate
that the case stores a pointer to a heap-allocated box rather than the
payload directly.
rdar://170687015 | [
{
"path": "lib/IRGen/IRGenDebugInfo.cpp",
"patch": "@@ -1450,6 +1450,21 @@ class IRGenDebugInfoImpl : public IRGenDebugInfo {\n return DBuilder.replaceTemporary(std::move(FwdDecl), DITy);\n }\n \n+ /// If the enum case is indirect, wrap the payload debug type in a\n+ /// DW_TAG_reference_type to ind... | 2026-02-19T02:24:09 |
denoland/deno | e76aa96376fdc12b1848fe3d74616c93e6e12b19 | 1d77081cc31720362e33a9063d354f07b0c786ed | fix(check): handle workspace members having different jsx import sources and importing each other (#31654) | [
{
"path": "cli/lsp/tsc.rs",
"patch": "@@ -4837,7 +4837,7 @@ fn op_release(\n #[allow(clippy::type_complexity)]\n fn op_resolve(\n state: &mut OpState,\n- #[string] base: String,\n+ #[string] base: &str,\n #[serde] specifiers: Vec<(bool, String)>,\n ) -> Result<Vec<Option<(String, Option<String>)>>, de... | 2025-12-19T02:54:21 |
golang/go | 87269224cb3609a967b821c89f5a920864969a10 | 7aa9ca729fcb063506ea4ed35ee9b2673a853e4f | net/http: update Response.Request.URL after redirects on GOOS=js
Fixes #71346
Change-Id: Id4053626e621faf50bb88a10ca0d540f393c8e01
Reviewed-on: https://go-review.googlesource.com/c/go/+/720860
Reviewed-by: Damien Neil <dneil@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceacco... | [
{
"path": "src/net/http/roundtrip_js.go",
"patch": "@@ -11,6 +11,7 @@ import (\n \t\"fmt\"\n \t\"io\"\n \t\"net/http/internal/ascii\"\n+\t\"net/url\"\n \t\"strconv\"\n \t\"strings\"\n \t\"syscall/js\"\n@@ -195,6 +196,13 @@ func (t *Transport) RoundTrip(req *Request) (*Response, error) {\n \t\t\tuncompressed... | 2025-11-16T00:45:28 |
kubernetes/kubernetes | 48c4605408f409ad2d26a8f8a8969a09498e6b71 | 028015267e30a5f4f975c9a57f91f53ddd79eca5 | Add logging error when UpdatePod finds no existing PodGroup with the pod to update | [
{
"path": "pkg/scheduler/backend/workloadmanager/podgroupstate.go",
"patch": "@@ -17,12 +17,14 @@ limitations under the License.\n package workloadmanager\n \n import (\n+\t\"fmt\"\n \t\"sync\"\n \t\"time\"\n \n \tv1 \"k8s.io/api/core/v1\"\n \t\"k8s.io/apimachinery/pkg/types\"\n \t\"k8s.io/apimachinery/pkg/... | 2026-01-23T09:31:42 |
swiftlang/swift | b3cdeee4dea23c8d07b335b55c2e0adf668b4c4c | 3a264683bdc2dec56b466fc1480868bae442c7ca | [update-checkout] correctly reset to remote branches
In #87124 I regressed the behaviour of `--reset-to-remote`, causing it
to never apply new remote changes to the local branches.
Fix this by restoring the logic that finds the remote branch. | [
{
"path": "utils/update_checkout/tests/test_clone.py",
"patch": "@@ -323,3 +323,49 @@ def test_update(self):\n \n # Then, update using our custom scheme---a subset of the default one.\n self.call(self.base_args + [\"--scheme\", self.scheme_name])\n+\n+\n+class SchemeWithAdditionalChanges(sch... | 2026-02-23T21:54:09 |
denoland/deno | 1d77081cc31720362e33a9063d354f07b0c786ed | bf919416b3e28cb273ae6014f76235e0ca2b7ab2 | fix(fetch): fix SOCKS5 proxy URL validation logic (#31604)
Closes #31356 | [
{
"path": "ext/fetch/22_http_client.js",
"patch": "@@ -64,7 +64,7 @@ function createHttpClient(options) {\n case \"socks5\": {\n const url = options.proxy.url;\n if (\n- !StringPrototypeStartsWith(url, \"socks5:\") ||\n+ !StringPrototypeStartsWith(url, \"soc... | 2025-12-18T14:53:11 |
tensorflow/tensorflow | edb98b06b0d7dac657a7763046076d797160fe6e | c3af1026e2c59a40296b02f9f95ac8b01f25741a | PR #36599: [ROCm] Fix build break in tfrt_gpu_buffer_test using absl_testing::StatusIs
Imported from GitHub PR https://github.com/openxla/xla/pull/36599
📝 Summary of Changes
Use absl_testing::StatusIs instead of testing::status::StatusIs and extend the test to all supported gpu architectures.
🎯 Justification
Fixes... | [
{
"path": "third_party/xla/xla/pjrt/gpu/tfrt/BUILD",
"patch": "@@ -374,11 +374,12 @@ xla_cc_test(\n \"//xla:xla_data_proto_cc\",\n \"//xla/pjrt:pjrt_client\",\n \"//xla/pjrt/plugin/xla_gpu:xla_gpu_client_options\",\n- \"//xla/service:gpu_plugin\",\n+ \"//xla/service:gpu... | 2026-01-30T13:45:50 |
golang/go | 7aa9ca729fcb063506ea4ed35ee9b2673a853e4f | f870a1d3989d428a5d87368e340f23c4d8232380 | net/http/cookiejar: treat localhost as secure origin
For development purposes, browsers treat localhost
as a secure origin regardless of protocol.
Fixes #60997
https://developer.mozilla.org/en-US/docs/Web/HTTP/Guides/Cookies#restrict_access_to_cookies
https://bugzilla.mozilla.org/show_bug.cgi?id=1618113
https://issu... | [
{
"path": "src/net/http/cookiejar/jar.go",
"patch": "@@ -12,6 +12,7 @@ import (\n \t\"net\"\n \t\"net/http\"\n \t\"net/http/internal/ascii\"\n+\t\"net/netip\"\n \t\"net/url\"\n \t\"slices\"\n \t\"strings\"\n@@ -120,7 +121,7 @@ func (e *entry) id() string {\n // request to host/path. It is the caller's respo... | 2025-11-04T22:47:42 |
swiftlang/swift | 807496352bfd89a18f7b85b0b82740226b4d5f42 | 9944ff160abd9548b0f3bd296f4214c3702fd7e0 | [cxx-interop] Load function template members alongside storage (#87409)
Due to still-to-be investigated shortcomings of lazy name lookup, the
Swift compiler is is unable to look up templated member functions. This
previously worked because we were loading all members eagerly, including
such templated member functions,... | [
{
"path": "lib/ClangImporter/ImportDecl.cpp",
"patch": "@@ -10761,7 +10761,11 @@ void ClangRecordMemberLoader::load(const clang::RecordDecl *clangRecord,\n \n // Skip this member if caller asked for storage and this isn't a field,\n // or vice versa.\n- if (storage != isa<clang::FieldDecl>(m))\n+... | 2026-02-23T23:35:12 |
golang/go | f870a1d3989d428a5d87368e340f23c4d8232380 | 9962d95fed9c13b9a7497bc41ba86253ba619a29 | net/url: warn that JoinPath arguments should be escaped
Fixes #75799
Change-Id: I483f7b1129799d8dd7f359a04e6ebc1b6a5d0b08
Reviewed-on: https://go-review.googlesource.com/c/go/+/719000
Reviewed-by: Mark Freeman <markfreeman@google.com>
Reviewed-by: Damien Neil <dneil@google.com>
LUCI-TryBot-Result: Go LUCI <golang-sco... | [
{
"path": "src/net/url/url.go",
"patch": "@@ -1205,7 +1205,13 @@ func (u *URL) UnmarshalBinary(text []byte) error {\n // JoinPath returns a new [URL] with the provided path elements joined to\n // any existing path and the resulting path cleaned of any ./ or ../ elements.\n // Any sequences of multiple / ch... | 2025-11-08T18:16:48 |
tensorflow/tensorflow | 588563749dbb3150ea6d6f3e0d29232a871b904a | 7a9396a0522aa043f0bcc78477e41fbf2fd31679 | Handling error zero-sized buffer PjRtCApiClient.
PiperOrigin-RevId: 862866977 | [
{
"path": "third_party/xla/xla/pjrt/c_api_client/pjrt_c_api_client.cc",
"patch": "@@ -3063,10 +3063,14 @@ Future<> PjRtCApiBuffer::ToLiteral(MutableLiteralBase* literal) {\n \n args.dst_size = ShapeUtil::ByteSizeOfElements(shape);\n args.dst = literal->untyped_data();\n- if (args.dst == nullptr) {\n- ... | 2026-01-29T21:11:33 |
denoland/deno | bf919416b3e28cb273ae6014f76235e0ca2b7ab2 | 719132d265d2db95a00db863bab3b846ea7e2d8d | fix(ext/node): avoid env permission for TERM in console and readline (#31638)
Fixes #30372 | [
{
"path": "ext/node/polyfills/internal/console/constructor.mjs",
"patch": "@@ -1,7 +1,10 @@\n // Copyright 2018-2025 the Deno authors. MIT license.\n // Copyright Joyent and Node contributors. All rights reserved. MIT license.\n \n-import { op_preview_entries } from \"ext:core/ops\";\n+import {\n+ op_get_e... | 2025-12-18T12:28:33 |
golang/go | f821fc46c586d2f114dddbcfaaffbb4bf5cd89b7 | b59efc38a0ce1683bb360a2db67d2543047170dc | crypto/internal/fisp140test: update acvptool, test data
This commit updates the BoringSSL module version used for the acvptool,
as well as the module version used for the static test data used by our
CI process to avoid interacting with a live ACVP server.
Two important upstream changes of note:
1. NIST changed the ... | [
{
"path": "src/crypto/internal/fips140test/acvp_capabilities.json",
"patch": "@@ -16,17 +16,17 @@\n {\"algorithm\":\"cSHAKE-128\",\"hexCustomization\":false,\"outputLen\":[{\"min\":16,\"max\":65536,\"increment\":8}],\"msgLen\":[{\"min\":0,\"max\":65536,\"increment\":8}],\"revision\":\"1.0\"},\n {\"algor... | 2025-11-11T19:41:43 |
mrdoob/three.js | 4c052540fe2f67470bb5aac57d8d0bb32a509357 | 5323b5e78c5198ff4bb9d4c09b47c468adb2749f | Update Audio.js
Docs: Fix typo. | [
{
"path": "src/audio/Audio.js",
"patch": "@@ -3,7 +3,7 @@ import { Object3D } from '../core/Object3D.js';\n /**\n * Represents a non-positional ( global ) audio object.\n *\n- * This and related audio module make use of the [Web Audio API]{@link https://www.w3.org/TR/webaudio-1.1/}.\n+ * This and related ... | 2025-02-24T15:13:57 |
tensorflow/tensorflow | e82cb343d0ea612a1a5f0d365487f558744e7f70 | c8caaa6d8bfe559af106a9015a92726a43a1f069 | [XLA Test Fixture Migration] Migrate `while_loop_unroller `
PiperOrigin-RevId: 862835785 | [
{
"path": "third_party/xla/xla/service/BUILD",
"patch": "@@ -2951,18 +2951,19 @@ cc_library(\n ],\n )\n \n-xla_cc_test(\n+xla_test(\n name = \"while_loop_unroller_test\",\n srcs = [\"while_loop_unroller_test.cc\"],\n- tags = [\"pjrt_migration_candidate\"],\n+ backends = [\"interpreter\"],\... | 2026-01-29T19:54:10 |
denoland/deno | 719132d265d2db95a00db863bab3b846ea7e2d8d | 9ab949017d539d415c1759168fed945595291904 | fix(ext/node): add error handling functions and tests for UV bindings (#31639) | [
{
"path": "ext/node/polyfills/internal_binding/uv.ts",
"patch": "@@ -545,3 +545,20 @@ export function errname(errno: number): string {\n }\n return `UNKNOWN (${errno})`;\n }\n+\n+export function getErrorMessage(errno: number): string {\n+ const err = errorMap.get(errno);\n+\n+ if (err) {\n+ return ... | 2025-12-18T12:14:47 |
golang/go | 62741480b8837f2570e75fbb982e80bc0be564ca | 7db2f0bb9a5d0e3d68e3eb153dbce928138206a0 | runtime: remove linkname for gopanic
github.com/goplus/igop now renamed github.com/goplus/ixgo
already requires checklinkname=0, so the special case can be removed.
https://github.com/goplus/ixgo/tree/e0d0bfeb2de9cfbe0b6cd668f015a1ba35dfea76/ixgo
go.undefinedlabs.com is no longer a resolvable domain,
having been abso... | [
{
"path": "src/runtime/panic.go",
"patch": "@@ -793,10 +793,7 @@ var panicnil = &godebugInc{name: \"panicnil\"}\n // The compiler emits calls to this function.\n //\n // gopanic should be an internal detail,\n-// but widely used packages access it using linkname.\n-// Notable members of the hall of shame in... | 2025-11-17T21:16:06 |
kubernetes/kubernetes | eedbe162d1164d4aa95fb428f2a0cb4f9b4e0041 | 028015267e30a5f4f975c9a57f91f53ddd79eca5 | Fix route controller condition update when external CNI sets NetworkUnavailable | [
{
"path": "staging/src/k8s.io/cloud-provider/controllers/route/route_controller.go",
"patch": "@@ -497,12 +497,12 @@ func (rc *RouteController) reconcile(ctx context.Context, nodes []*v1.Node, rout\n \n func (rc *RouteController) updateNetworkingCondition(node *v1.Node, routesCreated bool) error {\n \t_, co... | 2026-01-27T10:15:03 |
mrdoob/three.js | c8b3e444d1c1b38443a5642d68a8ad1594ab0142 | 9d03b1261e4755d23116095a5358b9bf6318045d | DDSLoader: Fix incorrect alpha when loading 24-bit uncompressed textures. (#30598) | [
{
"path": "examples/jsm/loaders/DDSLoader.js",
"patch": "@@ -126,7 +126,7 @@ class DDSLoader extends CompressedTextureLoader {\n \t\t\t\t\tbyteArray[ dst ] = r; dst ++;\t//r\n \t\t\t\t\tbyteArray[ dst ] = g; dst ++;\t//g\n \t\t\t\t\tbyteArray[ dst ] = b; dst ++;\t//b\n- \t\t\tbyteArray[ d... | 2025-02-23T22:10:04 |
swiftlang/swift | 2354c7ceb750a163fac77dc42830de3f6a1593dd | ad51a7d68667aa303bab49c47e57a1d686da5056 | Fix an ARMASM build error
PUBLIC is a MASM directive and causes a build error in a certain version of MSVC
```
Microsoft (R) ARM Macro Assembler Version 14.44.35217.0 for 64 bits
Copyright (C) Microsoft Corporation. All rights reserved.
D:\r\_work\swift-build\swift-build\SourceCache\swift\stdlib\public\RuntimeModul... | [
{
"path": "stdlib/public/RuntimeModule/get-cpu-context-aarch64.asm",
"patch": "@@ -18,7 +18,7 @@\n EXPORT _swift_get_cpu_context\n \n ;; On entry, x8 contains the pointer to the arm64_gprs\n-_swift_get_cpu_context PROC PUBLIC\n+_swift_get_cpu_context PROC\n stp x0, x1, [x8, #0x00]\n ... | 2026-02-23T20:50:42 |
tensorflow/tensorflow | c8caaa6d8bfe559af106a9015a92726a43a1f069 | 3358a4bcade6ebe6799dafc3ece252eb7e8b91e4 | Make PjRtStreamExecutorRawLoadedExecutable::Execute fold bad status results as
error events.
PiperOrigin-RevId: 862835315 | [
{
"path": "third_party/xla/xla/pjrt/gpu/se_gpu_pjrt_client_test.cc",
"patch": "@@ -475,9 +475,13 @@ TEST(StreamExecutorGpuClientTest, SendErrorNoDeadLock) {\n opts.recv_callbacks = recv_callbacks;\n \n // Check that send error safely rejected and we do not dead lock.\n- auto result = executable->Execut... | 2026-01-29T19:52:52 |
denoland/deno | 9ab949017d539d415c1759168fed945595291904 | 8a00009a834cdb51df5f6678a7822f8dcade7d6b | fix: panic on dropped inspector session (#31658)
Closes https://github.com/denoland/deno/issues/31652 | [
{
"path": "Cargo.lock",
"patch": "@@ -1885,9 +1885,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_core\"\n-version = \"0.375.0\"\n+version = \"0.376.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"9c1a2c21b05c4d0e26d7bf679390fe2aa4a822fcef4c88c5d6b269c104d44e4... | 2025-12-18T09:54:08 |
Subsets and Splits
Assembly Language GitHub Issues
Retrieves a sample of assembly-language related commits with their details, but doesn't provide meaningful analysis or patterns beyond basic filtering.
Swift Compiler Issues Analysis
Retrieves all training data for the Swift programming language repository, providing basic filtering but offering limited analytical insight beyond identifying relevant code examples.