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 |
|---|---|---|---|---|---|
tensorflow/tensorflow | 52a007a2302affd1b967e9cf141834022e81a643 | 31f6aab16bf1dd062186f490d17c5e55af16cc7f | Fix Bzlmod compatibility for PIP package build
- Refactor tf_wheel rule to resolve canonical repository names and pass them as environment variables.
- Update wheel target in BUILD to use external_repos list for cleaner maintenance.
- Simplify get_repo_path in build_pip_package.py to leverage these environment variabl... | [
{
"path": "MODULE.bazel",
"patch": "@@ -285,6 +285,7 @@ use_repo(\n \"cuda_cusparse\",\n \"cuda_driver\",\n \"cuda_nvcc\",\n+ \"cuda_nvjitlink\",\n \"cuda_nvml\",\n \"cuda_nvrtc\",\n \"cuda_nvtx\",",
"additions": 1,
"deletions": 0,
"language": "Unknown"
},
{
"p... | 2026-03-13T14:53:59 |
mrdoob/three.js | 28dcaf5f9db3326dc40eb98d377b48e72afbf771 | a33da3ceec9fd47e8cea4042ed597b066d29f7e1 | New Docs: Fixed left padding / media queries. | [
{
"path": "files/main.css",
"patch": "@@ -448,7 +448,7 @@ iframe#viewer {\n }\n \n #viewer {\n-\tpadding-left: var(--panel-width);\n+\tpadding-left: 0;\n }\n \n #button {",
"additions": 1,
"deletions": 1,
"language": "CSS"
},
{
"path": "utils/docs/template/static/styles/page.css",
"p... | 2025-10-12T13:28:20 |
denoland/deno | e55b986c1c895e44f23be5b388b52460b2591088 | 4b0fdb1ca0ff8fbefd30b9e3a3f93e3593cc4b8e | fix(ext/node): handle generateKeyPair 2-arg call and enable PQC tests (#32619)
## Summary
- `generateKeyPair(type, callback)` without options was throwing
`ERR_INVALID_ARG_TYPE` because the callback was being treated as the
options argument. Now properly detects when the second argument is a
function and shifts ... | [
{
"path": "ext/node/polyfills/internal/crypto/keygen.ts",
"patch": "@@ -568,16 +568,20 @@ export function generateKeyPair(\n export function generateKeyPair(\n type: KeyType,\n options: unknown,\n- callback: (\n+ callback?: (\n err: Error | null,\n publicKey: any,\n privateKey: any,\n ) ... | 2026-03-11T08:01:10 |
golang/go | 83b4c5d233b1df459fbbd12bfda1194f567a422f | f5479628d36e6cdd63c39784b58fa7241abd3295 | runtime/cgo: avoid unused parameter warning
Annotate the unused parameter with `__attribute__((unused))` to avoid
build failures in environments that treat unused parameters as errors.
We see this when using `rules_go`:
```
@@rules_go+//:stdlib
builder failed: error executing GoStdlib command (from stdlib rule target... | [
{
"path": "src/runtime/cgo/gcc_clearenv.c",
"patch": "@@ -10,7 +10,7 @@\n \n /* Stub for calling clearenv */\n void\n-x_cgo_clearenv(void **_unused)\n+x_cgo_clearenv(void **env __attribute__((unused)))\n {\n \t_cgo_tsan_acquire();\n \tclearenv();",
"additions": 1,
"deletions": 1,
"language": "C"... | 2026-02-27T15:14:25 |
swiftlang/swift | 23d50fba72172a7bc516896f5be3cdf2ad440dae | 0cefab98275ab1dd0b514de990a1f3e799f42321 | [update-checkout] fix error reporting | [
{
"path": "utils/update_checkout/update_checkout/cli_arguments.py",
"patch": "@@ -167,4 +167,4 @@ def parse_args() -> \"CliArguments\":\n subparsers = parser.add_subparsers(dest='command')\n subparsers.add_parser('status', help='Print the status of all the repositories')\n \n- return ... | 2026-03-19T16:38:08 |
kubernetes/kubernetes | 6ebabf319899cc0aaad39a252135bcf19b62948d | 0ffb81575035cc7ce0681d8856a314361122922c | Fix the semantics of e2essh.NodeSSHHosts on error
If it failed to find an IP for every node, it returned a partial list
along with an error. However, (a) this should never happen since every
scheduleable node should have at least one usable IP, and (b) it
didn't matter since all of its callers just treat any error as ... | [
{
"path": "test/e2e/framework/ssh/ssh.go",
"patch": "@@ -125,8 +125,7 @@ func makePrivateKeySignerFromFile(key string) (ssh.Signer, error) {\n // NodeSSHHosts returns SSH-able host names for all schedulable nodes.\n // If it can't find any external IPs, it falls back to\n // looking for internal IPs. If it ... | 2026-03-02T17:08:56 |
tensorflow/tensorflow | 31f6aab16bf1dd062186f490d17c5e55af16cc7f | 1cf643b3b506f1b29cd95f5edf4c9f2e7bca44ea | PR #39372: [xla:gpu] Fix NCCL comm split deadlock
Imported from GitHub PR https://github.com/openxla/xla/pull/39372
Fixx deadlock in GPU collective clique acquisition caused by overly aggressive abandon predicate.
**Root cause:** When sub-cliques were split from a large parent (e.g. 8-device), and later re-acquired ... | [
{
"path": "third_party/xla/xla/backends/gpu/collectives/BUILD",
"patch": "@@ -168,6 +168,7 @@ cc_library(\n \"//xla/tsl/platform:env\",\n \"//xla/tsl/platform:errors\",\n \"//xla/tsl/platform:logging\",\n+ \"//xla/tsl/platform:status_macros\",\n \"//xla/tsl/platform:st... | 2026-03-18T08:30:33 |
golang/go | 5055a181560b09170a23be81612ee849e47b0a30 | 76222756d9674a41b01a11d123ce39a7b26eb7fc | cmd/go/internal/doc: support @version suffix on first argument
This change allows `go doc` to display documentation for packages
outside the workspace by explicitly providing a version (e.g., `go doc
pkg@version`) or by inferring it from an installed command.
Therefore, all of the following are now valid:
```
go doc... | [
{
"path": "src/cmd/go/internal/doc/doc.go",
"patch": "@@ -151,7 +151,7 @@ func runDoc(ctx context.Context, cmd *base.Command, args []string) {\n \tlog.SetPrefix(\"doc: \")\n \tdirsInit()\n \tvar flagSet flag.FlagSet\n-\terr := do(os.Stdout, &flagSet, args)\n+\terr := do(ctx, os.Stdout, &flagSet, args)\n \ti... | 2026-02-20T05:24:55 |
mrdoob/three.js | a33da3ceec9fd47e8cea4042ed597b066d29f7e1 | 2ab339085fd21cd720ba3da0adf9ac4501865be4 | New Docs: Generate old docs system and design (#32036)
* New Docs: Generate old doc system.
* New Docs: Added THREE instance and ASCII Art.
* New Docs: Templates clean up.
* New Docs: Clean up.
* New Docs: Avoid generating redundant tags.
* New Docs: Fixed search results and link colors.
* New Docs: Implemented ... | [
{
"path": "examples/jsm/tsl/display/DenoiseNode.js",
"patch": "@@ -259,6 +259,7 @@ export default DenoiseNode;\n /**\n * Generates denoise samples based on the given parameters.\n *\n+ * @private\n * @param {number} numSamples - The number of samples.\n * @param {number} numRings - The number of rings.\... | 2025-10-12T12:59:16 |
kubernetes/kubernetes | b68e2ac8a5b97a4dc609c5361b83409cb55aedda | 6302e3a94f8edddda5c4edc68bbde4ec1cca2d11 | Drop e2enode.PickIP(), fix its one caller
This returned a randomly-selected IP from across all nodes, preferring
ExternalIP but falling back to an InternalIP. But it was only called
from one place, which was connecting from inside the cluster and thus
wanted an InternalIP anyway. | [
{
"path": "test/e2e/framework/node/resource.go",
"patch": "@@ -294,19 +294,6 @@ func CollectAddresses(nodes *v1.NodeList, addressType v1.NodeAddressType) []stri\n \treturn ips\n }\n \n-// PickIP picks one public node IP\n-func PickIP(ctx context.Context, c clientset.Interface) (string, error) {\n-\tpublicIp... | 2026-02-21T13:14:41 |
tensorflow/tensorflow | 533c4da4a0cb6604bf16ad8c819cf08f723783cb | fed9bc150551c006ba7efa561a8053c275cfd843 | [XLA:GPU]: Fix all_reduce_e2e_test compilation on cpp17
absl::c_linear_search is not constexpr prior to cpp20.
PiperOrigin-RevId: 885418791 | [
{
"path": "third_party/xla/xla/tests/all_reduce_e2e_test.cc",
"patch": "@@ -206,20 +206,33 @@ struct AllReduceTestParams {\n }\n };\n \n+/// Constexpr backport of absl::c_linear_search so that it works with array\n+/// types.\n+template <typename ContainerT>\n+constexpr bool LinearSearch(const ContainerT&... | 2026-03-18T07:10:04 |
mrdoob/three.js | 00d1804cfdfe5dc0e41e7cda030e97b368cd0735 | eeda755f0da15713b785da1866631bfc1bb061f1 | Examples: Update deprecate async methods. (#32033)
* fixes
* remove init
* add more examples
* add more examples
* improve inspector for particles snow
* Update webgpu_instance_mesh.jpg
* add more examples
* Update webgpu_compute_texture_pingpong.html
* Update webgpu_instance_mesh.jpg
* updates
* Update webg... | [
{
"path": "examples/webgpu_compute_audio.html",
"patch": "@@ -56,7 +56,7 @@\n \n \t\t\t\t// compute audio\n \n-\t\t\t\tawait renderer.computeAsync( computeNode );\n+\t\t\t\trenderer.compute( computeNode );\n \n \t\t\t\tconst wave = new Float32Array( await renderer.getArrayBufferAsync( waveArray.value ) );\n... | 2025-10-11T18:48:30 |
golang/go | 76222756d9674a41b01a11d123ce39a7b26eb7fc | f2633386e0d2f692b4363134626f472fc95b9858 | cmd/compile: gate instrumentEnterExit on NoRaceFunc check
The NoRaceFunc flag is meant to suppress racefuncenter/racefuncexit
instrumentation for packages like internal/runtime/atomic. However,
instrumentEnterExit was set unconditionally when -race was enabled,
outside the NoRaceFunc guard. This caused generic functio... | [
{
"path": "src/cmd/compile/internal/ssagen/ssa.go",
"patch": "@@ -341,9 +341,9 @@ func buildssa(fn *ir.Func, worker int, isPgoHot bool) *ssa.Func {\n \tif base.Flag.Cfg.Instrumenting && fn.Pragma&ir.Norace == 0 && !fn.Linksym().ABIWrapper() {\n \t\tif !base.Flag.Race || !objabi.LookupPkgSpecial(fn.Sym().Pkg... | 2026-02-23T19:53:35 |
swiftlang/swift | 5b5f10acd896a5dbe7d1b6d44bb8b2eef7ff8c3b | 0cefab98275ab1dd0b514de990a1f3e799f42321 | [Windows] Fix LNK1104 race in Test-Compilers by linking stdlib DLLs first
On Windows, swift-frontend.exe memory-maps stdlib DLLs (swiftCore.dll
and others) at startup. When ninja links these DLLs concurrently with
swift-frontend compilations that load them, the linker fails with
LNK1104 because Windows prevents overwr... | [
{
"path": "utils/build.ps1",
"patch": "@@ -2273,6 +2273,11 @@ function Test-Compilers([Hashtable] $Platform, [string] $Variant, [switch] $Test\n Write-Warning \"Test-Compilers invoked without specifying test target(s).\"\n }\n \n+ # Stdlib DLLs must be fully linked before swift-frontend compila... | 2026-03-19T15:26:36 |
tensorflow/tensorflow | 33a19201f995a00a60ac9d3f1a3eb38ba67d16a8 | 8353456520ba1f3504785f9bc48dae9efa2fdfeb | Fix f16 constant folding for ir_model_builder
PiperOrigin-RevId: 885388317 | [
{
"path": "tensorflow/lite/delegates/utils.cc",
"patch": "@@ -232,7 +232,8 @@ FP16GraphPartitionHelper::GetNodesOfFirstNLargestPartitionsImpl(\n bool FP16GraphPartitionHelper::IsNodeSupported(\n TfLiteContext* context, TfLiteNode* node, TfLiteRegistration* registration,\n int node_id, std::string* u... | 2026-03-18T05:43:55 |
mrdoob/three.js | eeda755f0da15713b785da1866631bfc1bb061f1 | 195f172ccefd2fded6bb05121128079db68b33d9 | Docs: Fix errors in the zh docs' example code and translate code comments (#32041) | [
{
"path": "docs/examples/zh/helpers/RectAreaLightHelper.html",
"patch": "@@ -31,7 +31,7 @@ <h2>代码示例</h2>\n \t\t<code>\n \t\tconst light = new THREE.RectAreaLight( 0xffffbb, 1.0, 5, 5 );\n \t\tconst helper = new RectAreaLightHelper( light );\n-\t\tscene.add( helper );\n+\t\tlight.add( helper ); // 辅助对象必须作为子对... | 2025-10-11T09:23:44 |
golang/go | f71432d223eeb2139b460957817400750fd13655 | 40a10063e89d4f0ae55631d1e50c31e3314fb812 | cmd/compile: fix bloop test
Not 100% sure this is right, but it seems to fix the issue.
Fixes #77832
Change-Id: Ifa6eae61a5444f4fd88b310536b1caf7144e7797
Reviewed-on: https://go-review.googlesource.com/c/go/+/749660
Reviewed-by: Keith Randall <khr@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-a... | [
{
"path": "src/cmd/compile/internal/bloop/bloop.go",
"patch": "@@ -86,7 +86,7 @@ func getKeepAliveNodes(pos src.XPos, n ir.Node) ir.Nodes {\n \tif name != nil {\n \t\tdebugName(name, pos)\n \t\treturn ir.Nodes{name}\n-\t} else if deref := n.(*ir.StarExpr); deref != nil {\n+\t} else if deref, ok := n.(*ir.St... | 2026-02-27T03:48:46 |
denoland/deno | bd3fd9a8d0113bba467d506b00ce839c3bcb8e83 | 130a3771c5dd0820e0c399c5df9cfd8922b7b6cd | fix(ext/http): allow rejecting HTTP upgrades with non-101 status codes (#32615)
Previously, when using node:http's upgrade event, attempting to reject
an upgrade request with a non-101 status code (e.g., 401 Unauthorized)
would throw a "write UNKNOWN" error because the UpgradeStream parser
only accepted 101 Switching ... | [
{
"path": "ext/http/http_next.rs",
"patch": "@@ -1368,13 +1368,19 @@ enum UpgradeStreamWriteState {\n AsyncMut<Option<(NetworkStreamReadHalf, Bytes)>>,\n ),\n Network(NetworkStreamWriteHalf),\n+ /// The upgrade was rejected with a non-101 status code.\n+ /// The response has been sent and the stre... | 2026-03-11T07:28:07 |
swiftlang/swift | 8b096129ee4fd64b0c8062438825ccecc6067dee | 6cb7480a693ef43cffae46e8844c8345160b3d7c | [Build] Fix BacktracingDT 6.2 on Windows.
When we're building for Windows, we still need to put a version number
in for macOS.
rdar://172911008 | [
{
"path": "Runtimes/Supplemental/Runtime/CMakeLists.txt",
"patch": "@@ -99,7 +99,7 @@ add_compile_options(\n \n # Generate BacktracingDT 6.2\n set(backgtracingdt62_version)\n-if(NOT SwiftCore_ENABLE_STRICT_AVAILABILITY AND CMAKE_OSX_DEPLOYMENT_TARGET VERSION_LESS \"26.0\")\n+if(NOT SwiftCore_ENABLE_STRICT_A... | 2026-03-19T15:09:56 |
kubernetes/kubernetes | 16900015564cca04ffa7e93f9ade4d5c0e2207cf | 42eb93b12fa6e9fd0e0da852cc01f13850ac5258 | DRA scheduler_perf: fix informer sync check
DeviceTaintRule informer depends on the new (in 1.35!) DRADeviceTaintRules
feature gate, not the more general DRADeviceTaints. This becomes relevant once
the latter gets enabled by default in 1.36.
While at it, enhance the check by using the new 1.36 API for
syncing (contex... | [
{
"path": "test/integration/scheduler_perf/dra.go",
"patch": "@@ -24,12 +24,12 @@ import (\n \t\"reflect\"\n \t\"sync\"\n \n+\t\"github.com/google/go-cmp/cmp\"\n \t\"github.com/onsi/gomega\"\n-\t\"github.com/stretchr/testify/require\"\n \n \tv1 \"k8s.io/api/core/v1\"\n \tresourceapi \"k8s.io/api/resource/v1... | 2026-02-23T10:49:51 |
tensorflow/tensorflow | 07163c35fa6826193eb72c668c6315f621ab0e82 | 124fcea4fc3e082f2df79878bcc9e94adb215f83 | Fix Leaky Relu for negative alpha values
- Reference Kernel: Updated `QuantizeLeakyRelu` to safely handle negative alpha values. By extracting the sign beforehand and passing its absolute value to `MultiplyByQuantizedMultiplier`, it avoids triggering internal assertions that expect positive multipliers, and corrects t... | [
{
"path": "tensorflow/lite/kernels/activations_test.cc",
"patch": "@@ -143,8 +143,14 @@ class BaseActivationsOpModel : public SingleOpModel {\n // The output scale and input scale might be different.\n if (input.type == TensorType_UINT8 || input.type == TensorType_INT8 ||\n input.type == Ten... | 2026-03-18T04:00:24 |
mrdoob/three.js | 195f172ccefd2fded6bb05121128079db68b33d9 | 2a0228c066a7fe4bce0f1d12b3e5bd4058dcc218 | Examples: Fix compute_texture_pingpong example (#32039) | [
{
"path": "src/renderers/webgpu/nodes/WGSLNodeBuilder.js",
"patch": "@@ -951,8 +951,7 @@ class WGSLNodeBuilder extends NodeBuilder {\n \n \t\t\t\t}\n \n-\t\t\t\t// Only mark as storage binding when actually writing (storeNode is set)\n-\t\t\t\ttexture.store = node.isStorageTextureNode === true && node.store... | 2025-10-11T08:15:45 |
golang/go | 40a10063e89d4f0ae55631d1e50c31e3314fb812 | 657ed934e85dc575aad51356c4b437961e7c1313 | runtime: fix scan size calculation for small arrays of only pointers
When allocating arrays, scan size should be the position of the last pointer in the last object.
Small array allocations containing only pointers (for example, the backing store for a []*int)
have a fast path in the allocator for unrolling their bits... | [
{
"path": "src/runtime/export_test.go",
"patch": "@@ -2083,3 +2083,8 @@ func DumpPrintQuoted(s string) string {\n \n \treturn string(buf)\n }\n+\n+func GetScanAlloc() uintptr {\n+\tc := getMCache(getg().m)\n+\treturn c.scanAlloc\n+}",
"additions": 5,
"deletions": 0,
"language": "Go"
},
{
... | 2026-02-12T09:00:24 |
denoland/deno | 130a3771c5dd0820e0c399c5df9cfd8922b7b6cd | b7cc30f2c4c5f581022cb5c55829c741a2862dd5 | fix(ext/node): fix multiple node:dgram compatibility issues (#32520)
## Summary
Fixes several `node:dgram` compatibility issues, enabling 7 additional
node_compat tests:
- **`close()` on already-closed socket**: No longer throws
`ERR_SOCKET_DGRAM_NOT_RUNNING` — returns early silently (fixes
`test-dgram-abort-closed`... | [
{
"path": "ext/node/Cargo.toml",
"patch": "@@ -72,6 +72,6 @@ errno = \"0.3.10\"\n nix = { workspace = true, features = [\"user\"] }\n \n [target.'cfg(windows)'.dependencies]\n-windows-sys = { workspace = true, features = [\"Win32_Networking_WinSock\"] }\n+windows-sys = { workspace = true, features = [\"Win3... | 2026-03-11T07:04:49 |
mrdoob/three.js | 56013e03035caa8a3ca857795315b773c5c78ec8 | 9aad521bc15b018ba52636ab01ba7a8b48306145 | TubePainter: Fixed end caps and removed object allocations (#32030)
* TubePainter: Fixed end caps and removed object allocations.
* TubePainter: Inlined _lineTo.
* Clean up.
* TubePainter: Fixed endCap not being moved tot he end of the new segments.
* TubePainter: Removed minDistance code.
* TubePainter: Restored... | [
{
"path": "examples/jsm/misc/TubePainter.js",
"patch": "@@ -42,9 +42,7 @@ function TubePainter() {\n \tgeometry.setAttribute( 'color', colors );\n \tgeometry.drawRange.count = 0;\n \n-\tconst material = new MeshStandardMaterial( {\n-\t\tvertexColors: true\n-\t} );\n+\tconst material = new MeshStandardMateri... | 2025-10-09T12:45:23 |
golang/go | 657ed934e85dc575aad51356c4b437961e7c1313 | 753022f82fc54dab5e348fac3706a9df8afc5cb5 | os: avoid escape from Root via ReadDir or Readdir
When reading the contents of a directory using
File.ReadDir or File.Readdir, the os.FileInfo was
populated on Unix platforms using lstat.
This lstat call is vulnerable to a TOCTOU race
and could escape the root.
For example:
- Open the directory "dir" within a Root.... | [
{
"path": "src/internal/poll/fstatat_unix.go",
"patch": "@@ -0,0 +1,22 @@\n+// Copyright 2026 The Go Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style\n+// license that can be found in the LICENSE file.\n+\n+//go:build unix || wasip1\n+\n+package poll\n+\n+import (\n+\t\"... | 2026-02-26T17:54:33 |
denoland/deno | ed367f222d10d1cad82b5aef9d85498a1289a995 | 042a768744ef8bfe237540d61336471004755948 | fix(npm): memoize peer cache hit checks to prevent combinatorial explosion (#32609)
## Summary
- Fixes `deno add npm:@aws-cdk/aws-ecs` (and similar large peer dep
trees) hanging indefinitely
- Root cause: `find_peers_cache_hit_inner` in
`libs/npm/resolution/graph.rs` recursively checks whether cached peer
resolutions... | [
{
"path": "libs/npm/resolution/graph.rs",
"patch": "@@ -2298,18 +2298,33 @@ impl<'a, TNpmRegistryApi: NpmRegistryApi>\n parent_pkgs: &BTreeMap<StackString, NodeId>,\n ) -> Option<PeersResolution> {\n let mut checking = HashSet::new();\n- self.find_peers_cache_hit_inner(nv, parent_pkgs, &mut che... | 2026-03-10T17:50:55 |
mrdoob/three.js | 9aad521bc15b018ba52636ab01ba7a8b48306145 | da275a4e00536723155b68518944de5eb7945550 | Renderer: Fix breakage in deprecated methods. (#32029) | [
{
"path": "src/renderers/common/PostProcessing.js",
"patch": "@@ -215,6 +215,8 @@ class PostProcessing {\n \n \t\twarnOnce( 'PostProcessing: \"renderAsync()\" has been deprecated. Use \"render()\" and \"await renderer.init();\" when creating the renderer.' ); // @deprecated r181\n \n+\t\tawait this.renderer... | 2025-10-09T09:23:46 |
swiftlang/swift | d0145a772a5b9587efb663be57e8470dceac863b | 53c68fc70f0c825006d1b90e2d6f490a26a27fdd | [Runtime] Fix calling convention mismatch on MetadataAccessor and TargetCanonicalSpecializedMetadataAccessorsListEntry.
These accessors are generated with swiftcc, so the C++ type declaration needs SWIFT_CC(swift) to match. This fixes corrupted data being returned from the accessor on ABIs where the convention for ret... | [
{
"path": "include/swift/ABI/Metadata.h",
"patch": "@@ -4004,7 +4004,10 @@ struct TargetCanonicalSpecializedMetadatasListEntry {\n \n template <typename Runtime>\n struct TargetCanonicalSpecializedMetadataAccessorsListEntry {\n- TargetCompactFunctionPointer<Runtime, MetadataResponse(MetadataRequest), /*Nul... | 2026-03-18T18:25:39 |
golang/go | 89d92fc21166c27db7d4203d93019e33f8cb9695 | b4ef60b9cb74c24108ad02cc11531c0f144bb77d | cmd/compile: ternary rewrite of rewrite should skip, not panic
The panic was unnecessary, if there's nothing to rewrite,
just do nothing. Added a debug message for this to help
with testing; it seems (from accidentally perturbing the
test away from failure) to be somewhat rare, so likely
okay to mingle with the other... | [
{
"path": "src/cmd/compile/internal/ssa/rewritetern.go",
"patch": "@@ -5,7 +5,6 @@\n package ssa\n \n import (\n-\t\"fmt\"\n \t\"internal/goarch\"\n \t\"slices\"\n )\n@@ -175,7 +174,10 @@ func rewriteTern(f *Func) {\n \t\timm := computeTT(a0, vars0)\n \t\top := ternOpForLogical(a0.Op)\n \t\tif op == a0.Op {... | 2026-02-25T20:56:36 |
denoland/deno | 042a768744ef8bfe237540d61336471004755948 | 527c844f9574895feff910c5cd2195407422dcc1 | fix(ext/node): add `node_api_create_property_key_(latin1/utf8)` (#32559)
Implements `node_api_create_property_key_latin1` and
`node_api_create_property_key_utf8` to complement the existing
`node_api_create_property_key_utf16`. These create internalized V8
strings for use as object property keys, enabling deduplication... | [
{
"path": "ext/napi/generated_symbol_exports_list_linux.def",
"patch": "@@ -1 +1 @@\n-{ \"node_api_create_syntax_error\"; \"napi_make_callback\"; \"napi_has_named_property\"; \"napi_async_destroy\"; \"napi_coerce_to_object\"; \"napi_get_arraybuffer_info\"; \"napi_detach_arraybuffer\"; \"napi_get_undefined\"... | 2026-03-10T16:23:00 |
mrdoob/three.js | 69317a85cc0838ad6c3b95b48037fe3a500efa8c | e1809743e6779eef3a4612a8c4af5200c2b63f34 | Renderer: Deprecate `renderAsync()`. (#32022)
* Renderer: Deprecate `renderAsync()`.
* Examples: Clean up.
* Playground: Fix PreviewEditor.
* Renderer: Improve comment.
* Renderer: Use `Error` instead of error log.
* Update deprecation version. | [
{
"path": "examples/webgpu_compute_texture.html",
"patch": "@@ -40,10 +40,9 @@\n \n \t\t\tlet camera, scene, renderer;\n \n-\t\t\tinit();\n-\t\t\trender();\n+\t\t\tinit().then( render );\n \n-\t\t\tfunction init() {\n+\t\t\tasync function init() {\n \n \t\t\t\tif ( WebGPU.isAvailable() === false ) {\n \n@@ ... | 2025-10-07T12:16:34 |
tensorflow/tensorflow | d85cf0908f5bef8fa31cf3a7eb09a5a173813e43 | 8be46d515d4adc4f2f7bdd36e7f89f8250f2d54f | Enable HLO Sharding V3 in SPMD partitioner V3 tests.
This change sets the `xla_enable_hlo_sharding_v3` debug option to true when running tests with the Shardy partitioner in `spmd_partitioner_test.cc`.
PiperOrigin-RevId: 885128551 | [
{
"path": "third_party/xla/xla/service/spmd/spmd_partitioner_test.cc",
"patch": "@@ -17145,6 +17145,7 @@ class SpmdPartitioningV3Test : public HloHardwareIndependentTestBase {\n config.set_use_spmd_partitioning(true);\n config.set_num_partitions(num_devices);\n config.set_use_shardy_partitioner(... | 2026-03-17T18:38:52 |
golang/go | 20d78eca0a5cb8bb18a870e1c9dc6810c5e1ef6d | 5c7d8a3e4896df7d2d0f9d9ec72248eb39e71f96 | cmd/go: fix ignored error check when sanitizing SwigCXXFiles
Change-Id: Icc78a16c1fd128b14e9113016abdfcd6e91f1c1c
Reviewed-on: https://go-review.googlesource.com/c/go/+/746320
Reviewed-by: David Chase <drchase@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> | [
{
"path": "src/cmd/go/internal/work/exec.go",
"patch": "@@ -3331,7 +3331,7 @@ func (b *Builder) swig(a *Action, objdir string, pcCFLAGS []string) error {\n \t\t}\n \t}\n \tfor _, f := range p.SwigCXXFiles {\n-\t\tif b.swigOne(a, f, objdir, pcCFLAGS, true, intgosize); err != nil {\n+\t\tif err := b.swigOne(a... | 2026-02-17T18:07:38 |
swiftlang/swift | 24613080f6d19fc3ec99f4e371f1ba6430ce0289 | 0e3b667d69877c2274901d0a7eabe9f9baaacc87 | SILMem2Reg: Fix debug scope of debug_value for empty tuple values
Commit 0ef2094279969bc8af96d5e3108d2443b5980c8e salvages more debug
information in Mem2Reg in several cases. It propagates the information from
the alloc_stack to the replaced load instructions.
However, there are cases where the loads from an alloca a... | [
{
"path": "lib/SILOptimizer/Transforms/SILMem2Reg.cpp",
"patch": "@@ -1981,9 +1981,12 @@ void MemoryToRegisters::removeSingleBlockAllocation(AllocStackInst *asi) {\n LiveValues::toReplace(asi,\n /*replacement=*/initialValue),\n /*isStorageValid=*/!do... | 2026-03-03T20:25:44 |
kubernetes/kubernetes | 80fdfe2b72b8a0c5500515757d974c9350e7bd02 | a555870578402c8ba74b653aa73253d3db12b727 | e2e: node: podresources: fix grpc connection issues when kubelet restarts
Signed-off-by: Swati Gupta <swatig@nvidia.com> | [
{
"path": "test/e2e_node/podresources_test.go",
"patch": "@@ -32,6 +32,7 @@ import (\n \t\"github.com/onsi/gomega/types\"\n \n \t\"google.golang.org/grpc\"\n+\t\"google.golang.org/protobuf/encoding/protojson\"\n \t\"google.golang.org/protobuf/proto\"\n \n \tv1 \"k8s.io/api/core/v1\"\n@@ -963,15 +964,14 @@ f... | 2026-02-09T22:11:07 |
denoland/deno | 527c844f9574895feff910c5cd2195407422dcc1 | ed9858527a2b544a802f7f441b5074f59a1c1284 | fix: flush CPU profile and coverage data on Deno.exit() (#32591)
## Summary
- When `Deno.exit()` is called, `std::process::exit()` bypasses normal
cleanup in the worker's run loop, causing CPU profile and coverage data
to be lost
- Adds `OpExitCallbacks` stored in `OpState` that are invoked by
`op_exit` before `std::... | [
{
"path": "cli/worker.rs",
"patch": "@@ -23,6 +23,7 @@ use deno_runtime::WorkerExecutionMode;\n use deno_runtime::coverage::CoverageCollector;\n use deno_runtime::cpu_prof_filename;\n use deno_runtime::cpu_profiler::CpuProfiler;\n+use deno_runtime::deno_os::OpExitCallbacks;\n use deno_runtime::deno_permissi... | 2026-03-10T16:04:41 |
mrdoob/three.js | cfd6be3add2249883afd84d30f4a125d5dedf1dc | 6d29214d5a6b543fc1096b175de33c030b2fcaf0 | ShadowNode: Fix shadows in first frame. (#32021)
* ShadowNode: Fix shadows in first frame.
* Lights: Fix `lightShadowMatrix()`. | [
{
"path": "src/nodes/accessors/Lights.js",
"patch": "@@ -32,8 +32,18 @@ export function lightShadowMatrix( light ) {\n \n \treturn data.shadowMatrix || ( data.shadowMatrix = uniform( 'mat4' ).setGroup( renderGroup ).onRenderUpdate( ( frame ) => {\n \n+\t\t// normally, shadow matrices are updated in ShadowNo... | 2025-10-06T14:17:49 |
golang/go | 0886e65b119e5be88846b1580451dc2b0d6f6fd0 | b48b2002febf107a04350c43d99e86cba60eba43 | cmd/compile: treat all zero-sized values as SSA-able
Might as well, we don't need any registers for such values.
Fixes #77635
Change-Id: Iedc1bc3f13662b043b183228bcc1dc4e6c91da81
Reviewed-on: https://go-review.googlesource.com/c/go/+/747780
Reviewed-by: Junyang Shao <shaojunyang@google.com>
LUCI-TryBot-Result: Go LU... | [
{
"path": "src/cmd/compile/internal/ssa/value.go",
"patch": "@@ -616,6 +616,9 @@ func CanSSA(t *types.Type) bool {\n \tif t.IsSIMD() {\n \t\treturn true\n \t}\n+\tif t.Size() == 0 {\n+\t\treturn true\n+\t}\n \tsizeLimit := int64(MaxStruct * types.PtrSize)\n \tif t.Size() > sizeLimit {\n \t\t// 4*Widthptr is... | 2026-02-20T20:04:35 |
tensorflow/tensorflow | 41f7e6765da87f19df61debfd3f110512150bfe7 | 14b3fe8233a2856d1f71b84cfab94dfa68070c00 | Use DefineDotOp and DefineConvolutionOp to implement EmitYnnDotSubgraph and EmitYnnConvolutionSubgraph
This also inlines some of the helpers that were previous used by both paths, but are now only used once.
This fixes a bug where dots from fusions didn't allow dot operand types to be different from output, and makes... | [
{
"path": "third_party/xla/xla/backends/cpu/BUILD",
"patch": "@@ -147,6 +147,7 @@ cc_library(\n \"@com_google_absl//absl/algorithm:container\",\n \"@com_google_absl//absl/container:flat_hash_map\",\n \"@com_google_absl//absl/functional:any_invocable\",\n+ \"@com_google_absl//a... | 2026-03-17T17:46:08 |
swiftlang/swift | 0e3b667d69877c2274901d0a7eabe9f9baaacc87 | f753928c7c8cf6b1893332303765ab7c5a9135a9 | Revert "[DebugInfo] Disable SILMem2Reg debug info salvaging temporarily"
This reverts commit 5f5b9112621056ed90302cfa282d6286f8d86bf7. | [
{
"path": "lib/SILOptimizer/Transforms/SILMem2Reg.cpp",
"patch": "@@ -1981,13 +1981,10 @@ void MemoryToRegisters::removeSingleBlockAllocation(AllocStackInst *asi) {\n LiveValues::toReplace(asi,\n /*replacement=*/initialValue),\n /*isStorageValid=*/!d... | 2026-03-19T13:03:26 |
denoland/deno | ed9858527a2b544a802f7f441b5074f59a1c1284 | 9c73df383e00295818fa6e77da527a2cd09fb696 | fix(npm): support npmrc email authorization (#32616) | [
{
"path": "libs/npm_cache/remote.rs",
"patch": "@@ -7,7 +7,9 @@ use deno_npm::npm_rc::RegistryConfig;\n #[derive(Debug, thiserror::Error, deno_error::JsError)]\n pub enum AuthHeaderForNpmRegistryError {\n #[class(type)]\n- #[error(\"Both the username and password must be provided for basic auth\")]\n+ #... | 2026-03-10T16:03:16 |
mrdoob/three.js | cee5c449bb861472d9626416f2c1d88d317f3e08 | c7f57a83c123a507c90a673492a8233a59bbce56 | fix typos (#32017)
Co-authored-by: Samuel Rigaud <rigaud@gmail.com> | [
{
"path": "examples/jsm/gpgpu/BitonicSort.js",
"patch": "@@ -136,7 +136,7 @@ export class BitonicSort {\n \t\t}\n \n \t\t/**\n-\t\t * A node representing a storage buffer used for transfering the result of the global sort back to the original data buffer.\n+\t\t * A node representing a storage buffer used f... | 2025-10-05T21:15:32 |
golang/go | 0ac9d84e3dd7eacc66b0bcc6bef86a90f4ec7714 | ed0367718f3b17677c9112f259d27892b2b53424 | reflect: fix support for iter with named boolean in Seq/Seq2
Fixes #77542
Change-Id: Ic2f33f5aabbdf064cbf5aa850f6c08f01352db80
Reviewed-on: https://go-review.googlesource.com/c/go/+/745580
Auto-Submit: Alan Donovan <adonovan@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceacco... | [
{
"path": "src/reflect/iter.go",
"patch": "@@ -36,7 +36,7 @@ func rangeNum[T int8 | int16 | int32 | int64 | int |\n // Uint, Uint8, Uint16, Uint32, Uint64, Uintptr,\n // Array, Chan, Map, Slice, or String.\n func (v Value) Seq() iter.Seq[Value] {\n-\tif canRangeFunc(v.abiType()) {\n+\tif canRangeFunc(v.abiT... | 2026-02-14T10:47:17 |
tensorflow/tensorflow | 9aea41927f5f22e5b7c9054852a8d646e74e7f05 | 18a377fbffdc3db5fa30b07229ab1983fab62465 | PR #39268: [ROCm] Fix invalid isSubset implementation, missing incarnations_ comparison
Imported from GitHub PR https://github.com/openxla/xla/pull/39268
📝 Summary of Changes
🎯 Justification
Add missing incarnations comparison in isSubsetOf the clique key.
Fix timeout on jax test target //tests:image_test_gpu
Thi... | [
{
"path": "third_party/xla/xla/backends/gpu/collectives/gpu_clique_key.cc",
"patch": "@@ -94,8 +94,13 @@ bool GpuCliqueKey::IsSubsetOf(const CliqueKey& other) const {\n }\n \n return is_p2p() == other_gpu->is_p2p() &&\n- absl::c_all_of(devices(), [&](GlobalDeviceId id) {\n- return absl... | 2026-03-17T16:35:36 |
swiftlang/swift | 9f5719221fe729ae8eb0a48c5d2c551e84d078fb | 60b7d2d9d110145f1c9a7116a55dde11ddec12bf | utils: Support multiple CMake versions in build.ps1
Starting with CMake 3.30, CMake is passing linker flags to the Swift
invocation used as the linker driver. This causes issues because Swift
does not understand the linker flags and fails to link.
This is essentially a reland of #84306 with a few changes:
* A new hel... | [
{
"path": "stdlib/public/SwiftShims/swift/shims/CMakeLists.txt",
"patch": "@@ -126,6 +126,9 @@ else()\n set(clang_headers_location \"${LLVM_LIBRARY_OUTPUT_INTDIR}/clang/${CLANG_VERSION_MAJOR}\")\n endif()\n \n+# Normalize the path.\n+cmake_path(CONVERT \"${clang_headers_location}\" TO_CMAKE_PATH_LIST clan... | 2025-09-23T17:20:21 |
denoland/deno | 88d6de0e5763a03eb7237df731590c5864638ecb | f81e36050aa75996ca989638e3dc07de05154de2 | fix(ext/node): run worker_threads eval code in sloppy mode (#32428)
## Summary
- **Root cause**: `node:worker_threads` with `{ eval: true }` was
wrapping code in `import` statements and loading it as a
`data:text/javascript` URL via `load_main_es_module`, which enforces
**strict mode**. Node.js runs eval workers as C... | [
{
"path": "ext/node/polyfills/worker_threads.ts",
"patch": "@@ -51,7 +51,6 @@ import { createRequire } from \"node:module\";\n \n const {\n ArrayIsArray,\n- encodeURIComponent,\n Error,\n FunctionPrototypeCall,\n NumberIsFinite,\n@@ -359,24 +358,29 @@ class NodeWorker extends EventEmitter {\n ... | 2026-03-10T14:44:53 |
kubernetes/kubernetes | 2634261c175cf1c5960a808708728fb51df9f8ed | e56063a6008d477261a3fb1deb2d66f1c661098f | cmd/kubeadm: ignore EINVAL error during unmount
If /var/lib/kubelet is MS_SHARED mountpoint, all the mountpoints
under /var/lib/kubelet will have duplicate one. When `kubeadm reset -f`
is executed, it will try to umount one path twice. However, they are in
the peer group. Once we umount one path, the duplicate one wil... | [
{
"path": "cmd/kubeadm/app/cmd/phases/reset/unmount_linux.go",
"patch": "@@ -69,6 +69,12 @@ func unmountKubeletDirectory(kubeletRunDirectory string, flags []string) error {\n \t\t}\n \t\tklog.V(5).Infof(\"[reset] Unmounting %q\", m[1])\n \t\tif err := syscall.Unmount(m[1], flagsInt); err != nil {\n+\t\t\t//... | 2026-03-06T16:08:42 |
golang/go | ed0367718f3b17677c9112f259d27892b2b53424 | 8411ab9d3d947fc842dd99eadf0ee01e3f6b9477 | Revert "cmd/compile: avoid panic in ternary rewrite on checked instructions"
This reverts CL 745460.
Reason for revert: This just disables the optimization, instead of fixing it.
Change-Id: I26350d08c847f666d12450d484312d0baf5f1112
Reviewed-on: https://go-review.googlesource.com/c/go/+/749161
LUCI-TryBot-Result: Go ... | [
{
"path": "src/cmd/compile/internal/ssa/issue77582_test.go",
"patch": "@@ -1,29 +0,0 @@\n-// Copyright 2026 The Go Authors. All rights reserved.\n-// Use of this source code is governed by a BSD-style\n-// license that can be found in the LICENSE file.\n-\n-//go:build goexperiment.simd && amd64\n-\n-package... | 2026-02-25T19:33:49 |
tensorflow/tensorflow | d6d1164e85e462d86c2370a7457e5393d3b8b0cd | 94630ebe03ba0a57b475c69381f8e4ae8455c726 | PR #38882: Fix delay kernel timeouts in the autotuner.
Imported from GitHub PR https://github.com/openxla/xla/pull/38882
📝 Summary of Changes
Unload probed candidates synchronously before next ones start being profiled.
Without this unloading can overlap with profiling started in other threads preventing them from l... | [
{
"path": "third_party/xla/xla/backends/autotuner/BUILD",
"patch": "@@ -104,7 +104,6 @@ xla_cc_test(\n \"//xla/tsl/distributed_runtime:call_options\",\n \"//xla/tsl/distributed_runtime/coordination:coordination_service_agent\",\n \"//xla/tsl/platform:env\",\n- \"//xla/tsl/plat... | 2026-03-17T16:17:54 |
mrdoob/three.js | 8c5163671f87f2ea16b9ec51d9fcfc8bdf4c8da9 | 3220e981e9b3d2a77d615bbf2aa9da114f6cf551 | Fix Uint32Array initialization (#32011) | [
{
"path": "examples/webgpu_compute_sort_bitonic.html",
"patch": "@@ -396,7 +396,7 @@\n \n \t\t\t\tconst scene = new THREE.Scene();\n \n-\t\t\t\tconst infoArray = new Uint32Array( 3, 2, 2 );\n+\t\t\t\tconst infoArray = new Uint32Array( [ 3, 2, 2 ] );\n \t\t\t\tconst infoBuffer = new THREE.StorageInstancedBuf... | 2025-10-05T13:15:49 |
denoland/deno | f81e36050aa75996ca989638e3dc07de05154de2 | 4c548d42e5895eb3a6f00bb6d7cb3a9d601db7e8 | fix(lsp): tsgo scope attribution for asset files (#32608) | [
{
"path": "cli/lsp/documents.rs",
"patch": "@@ -1159,7 +1159,7 @@ pub struct DocumentModules {\n dep_info_by_scope: once_cell::sync::OnceCell<Arc<DepInfoByScope>>,\n modules_unscoped: Arc<WeakDocumentModuleMap>,\n modules_by_scope: Arc<BTreeMap<Arc<Url>, Arc<WeakDocumentModuleMap>>>,\n- assigned_scop... | 2026-03-10T14:43:29 |
golang/go | 8411ab9d3d947fc842dd99eadf0ee01e3f6b9477 | 1aa534dbb8970b86b0f4059b7665e3505d145e25 | Revert "test/simd: add test for issue 77582"
This reverts CL 748760.
Reason for revert:
1. the fix in CL 745460 is not really correct.
2. this test doesn't actually reproduce the failure. (It needs to
actually use the result, instead of assigning to _.)
Change-Id: Ifb3da8954c5e8774ac000ee3bbf92e5813705dd6
Reviewe... | [
{
"path": "src/cmd/compile/internal/ssa/issue77582_test.go",
"patch": "@@ -1,25 +1,29 @@\n-// compile\n-\n-//go:build goexperiment.simd && amd64\n-\n // Copyright 2026 The Go Authors. All rights reserved.\n // Use of this source code is governed by a BSD-style\n // license that can be found in the LICENSE f... | 2026-02-25T21:49:08 |
kubernetes/kubernetes | 1360b939cf0dd07e4280d22c79c42d5fd86cefbb | 3369e51e093d98c5b52791e8afa844c60ff303ae | Use contextual logging in leaderelection controller
Replace deprecated logging and wait APIs with their context-aware
alternatives in pkg/controlplane/controller/leaderelection/:
- utilruntime.HandleCrash -> HandleCrashWithContext
- utilruntime.HandleError -> HandleErrorWithContext
- cache.WaitForCacheSync -> WaitFor... | [
{
"path": "pkg/controlplane/controller/leaderelection/leaderelection_controller.go",
"patch": "@@ -75,7 +75,7 @@ type Controller struct {\n }\n \n func (c *Controller) Run(ctx context.Context, workers int) {\n-\tdefer utilruntime.HandleCrash()\n+\tdefer utilruntime.HandleCrashWithContext(ctx)\n \tdefer c.qu... | 2026-03-06T01:27:41 |
mrdoob/three.js | 9178da53cac7f3030f8195fa5ce63698ed2fbd48 | 758b6543902fe5dfbb85729ce2dae3ddad44e646 | New Docs: Updated templates with old design. (#32002)
* New Docs: Updated templates with old design.
* New Docs: Remove (nullable) from methods that return null.
* New Docs: Improved parameters table.
* New Docs: Removed unused code from templates.
* New Docs: Fixed h2/h3 in dark mode.
* New Docs: Fixed Import.
... | [
{
"path": "utils/docs/template/publish.js",
"patch": "@@ -106,7 +106,20 @@ function updateItemName( item ) {\n \n function addParamAttributes( params ) {\n \n-\treturn params.filter( ( { name } ) => name && ! name.includes( '.' ) ).map( updateItemName );\n+\treturn params.filter( ( { name } ) => name && ! n... | 2025-10-03T06:24:30 |
tensorflow/tensorflow | cd85c80c7780d36707e87694f68dd2160d690d05 | 4025ba459136de179b2fd97b501c4928b6354463 | [XLA:GPU] Roll-forward scatter simplifier changes.
https://github.com/openxla/xla/commit/fcfcc029f03793f4dd272c42be5d340b38fe948e fixed the issue exposed by this change.
Reverts 9f246d8f58e68e50a6231466fb4a583317c6aaa2
PiperOrigin-RevId: 885035771 | [
{
"path": "third_party/xla/xla/backends/cpu/codegen/emitters/cpu_scatter_emitter.cc",
"patch": "@@ -373,6 +373,8 @@ absl::Status CpuScatterFusion::EmitEntryFunction(\n \n const ScatterDimensionNumbers& scatter_dims =\n scatter->scatter_dimension_numbers();\n+ const auto& scatter_dims_to_operand_dim... | 2026-03-17T15:25:44 |
denoland/deno | 4c548d42e5895eb3a6f00bb6d7cb3a9d601db7e8 | f33915b81c39ac23a4612ade19310b4611b8b0c1 | fix(ext/napi): run async work execute callback on a worker thread (#32560)
## Summary
- **Fixes `napi_queue_async_work`** to run the `execute` callback on a
worker
thread (via `std::thread::spawn`) instead of the V8 main thread
- **Dispatches `complete`** back to the main thread via
`async_work_sender.spawn()` wh... | [
{
"path": "ext/napi/node_api.rs",
"patch": "@@ -586,8 +586,16 @@ pub(crate) fn napi_queue_async_work(\n }\n \n let work = SendPtr(work);\n+ let sender = env.async_work_sender.clone();\n+ let tracker = env.external_ops_tracker.clone();\n \n- env.add_async_work(move || {\n+ // Keep the event loop aliv... | 2026-03-10T14:19:29 |
golang/go | abf84a51fcec1156712be90f8aa2ae58b461aa65 | 45138d477d5a7547086357218061429d3c80a6be | cmd/go: use 'gcloud storage cp' instead of 'gsutil cp'
In some misguided attempt at "cleanup", Google Cloud has
decided to retire 'gsutil' in favor of 'gcloud storage' instead
of leaving an entirely backwards-compatible wrapper so
that client scripts and muscle memory keep working.
In addition to breaking customers t... | [
{
"path": "src/cmd/go/testdata/script/mod_get_pseudo_other_branch.txt",
"patch": "@@ -64,4 +64,4 @@ git checkout master\n git merge b -m merge\n \n zip -r ../tagtests.zip .\n-gsutil cp ../tagtests.zip gs://vcs-test/git/tagtests.zip\n+gcloud storage cp ../tagtests.zip gs://vcs-test/git/tagtests.zip",
"ad... | 2026-02-25T12:59:00 |
mrdoob/three.js | 3410b486aba8c64361b22af604244d9fb05743d2 | cbc975bfee24bca21d22797bacc45a8b8a2f3ebe | Examples/Inspector: Revisions (#32003)
* change init message icon/style
* fix button parameters `.name()`
* improve mobile style
* remove `.step()` function from ui parameters
* Update webgpu_backdrop_water.html
* updates
* Update puppeteer.js | [
{
"path": "examples/jsm/inspector/Inspector.js",
"patch": "@@ -135,7 +135,7 @@ class Inspector extends RendererInspector {\n \n \t\tconst renderer = this.getRenderer();\n \n-\t\tlet sign = `🚀 \"WebGPURenderer\" - ${ REVISION } [ \"`;\n+\t\tlet sign = `THREE.WebGPURenderer: ${ REVISION } [ \"`;\n \n \t\tif ... | 2025-10-03T01:23:17 |
kubernetes/kubernetes | 6bc89a62a143a05739395aac121a0e7a86ff6d96 | bd3c97fbd8d79741ba71f85a1eb342c01266e2b9 | field/errors: add TooShort error type
and fix the TooLongCharacters message
to return character(s) instead of char(s).
Signed-off-by: Bryce Palmer <bpalmer@redhat.com> | [
{
"path": "staging/src/k8s.io/apimachinery/pkg/util/validation/field/errors.go",
"patch": "@@ -109,7 +109,7 @@ var omitValue = OmitValueType{}\n func (e *Error) ErrorBody() string {\n \tvar s string\n \tswitch e.Type {\n-\tcase ErrorTypeRequired, ErrorTypeForbidden, ErrorTypeTooLong, ErrorTypeInternal:\n+\t... | 2026-02-12T19:54:14 |
denoland/deno | 1036b2ac9046d69a3a8ef7ac30298363a4acc432 | c0de125d80f6006a3559c86fbbfa6a759e4e2ebb | fix(ext/node): make tty ReadStream/WriteStream callable without `new` (#32537)
## Summary
- Convert `ReadStream` (in `tty.js`) and `WriteStream` (in
`internal/tty.js`) from ES classes to function-style constructors so
they can be called without `new`, matching Node.js behavior
- Uses `FunctionPrototypeCall` and `Obje... | [
{
"path": "ext/node/polyfills/internal/tty.js",
"patch": "@@ -8,9 +8,11 @@ import { primordials } from \"ext:core/mod.js\";\n const {\n ArrayPrototypeSome,\n Error,\n+ FunctionPrototypeCall,\n ObjectEntries,\n ObjectPrototypeHasOwnProperty,\n ObjectPrototypeIsPrototypeOf,\n+ ObjectSetPrototypeOf... | 2026-03-10T11:35:33 |
mrdoob/three.js | cbc975bfee24bca21d22797bacc45a8b8a2f3ebe | e72ae5142bb3828ccf7bdf0c975695a135d7760e | WebGLBackend: Fix functions with struct layouts cannot resolve struct types (#32000) | [
{
"path": "src/renderers/webgl-fallback/nodes/GLSLNodeBuilder.js",
"patch": "@@ -1379,6 +1379,9 @@ ${shaderData.extensions}\n // precision\n ${ defaultPrecisions }\n \n+// structs\n+${shaderData.structs}\n+\n // uniforms\n ${shaderData.uniforms}\n \n@@ -1388,9 +1391,6 @@ ${shaderData.varyings}\n // codes\n ... | 2025-10-02T12:59:43 |
golang/go | a78df5aa0afcd64935f89577c0da0ed2315014ea | 60dc96479a85db0e245a5c14d964628169abedf4 | cmd/compile: rewriteFixedLoad: ensure AuxInt is sign-extended
CL 701297 accidentailly broke the type casting behavior for Hash.
Previously, the generated rules for Hash shared a common pattern:
v.AuxInt = int32ToAuxInt(fixed32(config, sym, off))
which inherently equaled to a signed-extend:
v.AuxInt = int64... | [
{
"path": "src/cmd/compile/internal/ssa/rewrite.go",
"patch": "@@ -2171,11 +2171,11 @@ func rewriteFixedLoad(v *Value, sym Sym, sb *Value, off int64) *Value {\n \t\t\t\t\treturn v\n \t\t\t\tcase \"Hash\":\n \t\t\t\t\tv.reset(OpConst32)\n-\t\t\t\t\tv.AuxInt = int64(types.TypeHash(t))\n+\t\t\t\t\tv.AuxInt = i... | 2026-02-12T06:56:43 |
tensorflow/tensorflow | 155f105be6456e2eae7ab41a92af0eb76d957ea6 | 03111a2d8a6e226c079d77eed4b0531dad507817 | PR #38779: [XLA:GPU] Add a VMM based memory allocator.
Imported from GitHub PR https://github.com/openxla/xla/pull/38779
# Add `DeviceAddressVmmAllocator`: VMM-based device memory allocator
## Motivation
XLA currently uses `cuMemAlloc`-style allocation, which ties virtual address reservation and physical memory al... | [
{
"path": "third_party/xla/xla/stream_executor/BUILD",
"patch": "@@ -321,6 +321,33 @@ cc_library(\n ],\n )\n \n+cc_library(\n+ name = \"vmm_device_address_allocator\",\n+ srcs = [\"vmm_device_address_allocator.cc\"],\n+ hdrs = [\"vmm_device_address_allocator.h\"],\n+ deps = [\n+ \":de... | 2026-03-17T13:14:36 |
kubernetes/kubernetes | 68d7b7952767c93e75b3bbd03531588769fcbd06 | 1b5fb46b720484a19951198165494c98691a513d | kubeadm: Use go:embed for readability
Migrate test fixtures to use go:embed for improved readability
and maintainability across kubeadm test files.
Signed-off-by: sivchari <shibuuuu5@gmail.com> | [
{
"path": "cmd/kubeadm/app/cmd/phases/reset/removeetcdmember_test.go",
"patch": "@@ -17,6 +17,7 @@ limitations under the License.\n package phases\n \n import (\n+\t_ \"embed\"\n \t\"os\"\n \t\"path/filepath\"\n \t\"testing\"\n@@ -26,34 +27,16 @@ import (\n \tkubeadmapi \"k8s.io/kubernetes/cmd/kubeadm/app/a... | 2026-03-06T08:42:24 |
denoland/deno | c0de125d80f6006a3559c86fbbfa6a759e4e2ebb | a33c9748401e2261c46211c247f819564c4218d3 | fix(ext/node): add missing http2 header constants (#32611)
Adds missing HTTP2_HEADER_ACCEPT_ENCODING and related constants that
grpc-js depends on. Without these, grpc-js server crashes with:
```
TypeError: Cannot read properties of undefined (reading 'toLowerCase')
at normalizeKey (metadata.js:38:16)
at Meta... | [
{
"path": "ext/node/ops/http2/types.rs",
"patch": "@@ -152,6 +152,10 @@ pub struct Http2Constants {\n http2_header_transfer_encoding: &'static str,\n http2_header_keep_alive: &'static str,\n http2_header_proxy_connection: &'static str,\n+ http2_header_accept: &'static str,\n+ http2_header_accept_enc... | 2026-03-10T11:07:10 |
golang/go | 60dc96479a85db0e245a5c14d964628169abedf4 | fa8595702eba16f757860705157f17f8054a92df | reflect: use &zeroVal[0] instead of nil for data field for zero-sized payloads
Because our wrapper functions barf if the pointer is nil, even if
we don't actually dereference the pointer.
Fixes #77779
Change-Id: Ib1b93d9f0fdc771cd884137007508ba2b1da4b7a
Reviewed-on: https://go-review.googlesource.com/c/go/+/748660
R... | [
{
"path": "src/reflect/value.go",
"patch": "@@ -1288,9 +1288,10 @@ func (v Value) Field(i int) Value {\n \t\t// bunch of zero-sized fields. We must return the zero-sized\n \t\t// fields indirectly, as only ptr-shaped things can be direct.\n \t\t// See issue 74935.\n-\t\t// We use nil instead of v.ptr as it ... | 2026-02-24T23:31:08 |
mrdoob/three.js | 72cd0f81ea76c0d0558b397fa331c75742bd79ca | 9e7a65c17bc3832798103190df8f674b9acca073 | Examples: More Inspector usage and revisions. (#31995)
* add overlay
* TiledLightsNode: Improve description
* Examples: add inspector
* update screenshots
* update
* improve description
* update examples
* update screenshots
* more examples
* add more examples
* fix color hex get value
* add listen()
* add... | [
{
"path": "examples/example.css",
"patch": "@@ -1,9 +1,3 @@\n-* {\n-\tbox-sizing: border-box;\n-\t-webkit-font-smoothing: antialiased;\n-\t-moz-osx-font-smoothing: grayscale;\n-}\n-\n body {\n \tmargin: 0;\n \tbackground-color: #000;\n@@ -27,7 +21,7 @@ a {\n \tgrid-template-columns: 50px auto;\n \tgrid-temp... | 2025-10-02T03:27:07 |
swiftlang/swift | 6cb7480a693ef43cffae46e8844c8345160b3d7c | d91f19199300755d7fb44a426a86906a2ec25305 | [Backtracing] Fix function entry table processing during unwind.
The Win32 unwinder has to locate function entry records for the
`StackWalk64()` API to use; the code that was doing this was
incorrect and sometimes found the wrong record, which would result
in a corrupted stack walk.
rdar://172911008 | [
{
"path": "stdlib/public/RuntimeModule/ImageMap+Win32.swift",
"patch": "@@ -20,6 +20,7 @@ import Swift\n \n internal import WinSDK\n internal import BacktracingImpl.ImageFormats.CodeView\n+internal import BacktracingImpl.OS.Windows\n \n typealias CV_PDB70_INFO = swift.runtime.CV_PDB70_INFO\n typealias RTL_G... | 2026-03-19T12:12:48 |
kubernetes/kubernetes | 8cdc61b92403e2150bd40c0dab2125a375e915d9 | c37f97806d2fd4353023a3b2d48f2f7811ccdc14 | fix(kube-proxy): fix IPv6 support check for Linux
The current Linux implementation checks whether a node supports
IPv6 by testing for the presence of '/proc/net/if_inet6'. However,
that check does not confirm that IPv6 support is actually enabled.
As a result, kube-proxy can incorrectly enable dual‑stack support
on no... | [
{
"path": "cmd/kube-proxy/app/server_linux.go",
"patch": "@@ -25,6 +25,7 @@ import (\n \t\"errors\"\n \t\"fmt\"\n \t\"os\"\n+\t\"strings\"\n \n \tv1 \"k8s.io/api/core/v1\"\n \tutilsysctl \"k8s.io/component-helpers/node/util/sysctl\"\n@@ -106,7 +107,14 @@ func (s *ProxyServer) platformCheckSupported(ctx cont... | 2026-03-04T12:33:12 |
tensorflow/tensorflow | 1efdfa51ec7b1e07570b6aadc90b776b2f7a29de | 30381137a7453364b485efeee62d8a8c5f8f6d28 | Handle cross compilation in StreamExecutorGpuPjRtCompiler
This is a rollback of a rollback that fixes the previously occuring layout issues. So this change is now also adding auto layout support to the cross compilation path.
This change adds support for what we call cross compilation to XLA:GPU's
implementation of P... | [
{
"path": "third_party/xla/xla/pjrt/BUILD",
"patch": "@@ -355,6 +355,23 @@ cc_library(\n ],\n )\n \n+cc_library(\n+ name = \"mock_pjrt_client\",\n+ testonly = 1,\n+ hdrs = [\"mock_pjrt_client.h\"],\n+ visibility = internal_visibility([\"//xla:friends\"]),\n+ deps = [\n+ \":pjrt_cli... | 2026-03-17T11:59:33 |
denoland/deno | 0eddc94dc9ecc27f4f35da32fe847673a05562c4 | 913548b879a7530d7992d8722954ac5060194d28 | test: ignore some Node compat tests (#32556)
## Summary
- Adds an `ignore` field to the node_compat test config schema
(`config.jsonc`) so tests can be skipped on all platforms with a single
flag instead of setting `darwin: false, linux: false, windows: false`
separately
- `reason` is required when `ignore: true` is ... | [
{
"path": "tests/node_compat/config.jsonc",
"patch": "@@ -4,11 +4,17 @@\n \"abort/test-addon-register-signal-handler.js\": {},\n \"abort/test-addon-uv-handle-leak.js\": {},\n \"abort/test-zlib-invalid-internals-usage.js\": {\n- \"darwin\": false,\n- \"linux\": false,\n- \"windows\... | 2026-03-10T10:38:04 |
golang/go | fa8595702eba16f757860705157f17f8054a92df | e237976802f31e13e98cbde121fa0348f77d8df4 | internal/runtime/sys: only use speculation barrier for DIT on Apple Silicon
The Apple documentation [0] indicates that when enabling DIT (via MSR),
a speculation barrier should be used. The rationale for this is not
explained, but one could assume that they perhaps do not treat MSR of
a PSTATE bit as a context synchro... | [
{
"path": "src/internal/runtime/sys/dit_arm64.s",
"patch": "@@ -11,9 +11,17 @@ TEXT ·EnableDIT(SB),$0-1\n MOVB R1, ret+0(FP)\n TBNZ $0, R1, ret\n MSR $1, DIT\n+#ifdef GOOS_darwin\n+ // Arm documents that barriers are not necessary when writing to, or reading\n+ // from, PSTATE fields. Howe... | 2026-02-24T16:58:39 |
mrdoob/three.js | b73a55ab4050a8d61af3d02f57776d3c98f9a295 | ec4c9b2e0da04bcc5fe0f597c13c20b44f8ba637 | Transpiler: Fix immutable to dynamic parameter conversion and `webgpu_shadertoy` example (#31996) | [
{
"path": "examples/jsm/transpiler/TSLEncoder.js",
"patch": "@@ -681,6 +681,12 @@ ${ this.tab }} )`;\n \n \t\t}\n \n+\t\tif ( node.needsToVar ) {\n+\n+\t\t\tvarStr = varStr + '.toVar()';\n+\n+\t\t}\n+\n \t\treturn varStr;\n \n \t}\n@@ -750,6 +756,7 @@ ${ this.tab }} )`;\n \t\t\tconst mutableParam = new Vari... | 2025-10-01T20:35:48 |
denoland/deno | c28573335523cb26aaa2da09bb8a2a6366e50b77 | 20e1ef892e7605469a239c269705f417e42bd5d8 | fix(ext/node): napi_set_instance_data on exit (#32509)
Closes https://github.com/denoland/deno/issues/30529
---------
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com> | [
{
"path": "ext/napi/lib.rs",
"patch": "@@ -306,8 +306,13 @@ impl<T> PendingNapiAsyncWork for T where T: FnOnce() + Send + 'static {}\n pub struct NapiState {\n // Thread safe functions.\n pub env_cleanup_hooks: Rc<RefCell<Vec<(napi_cleanup_hook, *mut c_void)>>>,\n+ pub env_shared_ptrs: Vec<*mut EnvShar... | 2026-03-10T08:55:08 |
tensorflow/tensorflow | 8975b6b9435c67ec21f3802bc5828fe93191eec4 | 0c5506a91576d768dff8dd522d9b5240e64d2666 | Add a test to make sure manual -> unreduced in shardy works. Fixes https://github.com/jax-ml/jax/issues/35934
Corresponding shardy fix: https://github.com/openxla/shardy/pull/1061
PiperOrigin-RevId: 884749260 | [
{
"path": "third_party/xla/xla/python/version.h",
"patch": "@@ -18,6 +18,6 @@ limitations under the License.\n \n // An increasing version number to protect jax code against breaking changes.\n // In JAX, reference this via jax._src.lib.ifrt_version.\n-#define JAX_IFRT_VERSION_NUMBER 50 // Shardy unreduced... | 2026-03-17T02:24:04 |
mrdoob/three.js | b067191bc81bdd87dfee84712d5581cce7cbf19b | 94ca22d03149b06a59722c0219ce7b4fcae90ae0 | Inspector: WebGL2 backend version (#31982)
* inspector webgl
* Update clean-page.js
* update
* update
* Update webgpu_instance_mesh.jpg
* puppeteer: add exception `webgpu_volume_lighting`, `webgpu_volume_lighting_rectarea` | [
{
"path": "examples/jsm/inspector/Inspector.js",
"patch": "@@ -27,6 +27,7 @@ class Inspector extends RendererInspector {\n \t\tprofiler.addTab( parameters );\n \n \t\tconst viewer = new Viewer();\n+\t\tviewer.hide();\n \t\tprofiler.addTab( viewer );\n \n \t\tconst performance = new Performance();\n@@ -79,7 ... | 2025-09-30T03:36:30 |
golang/go | 874c3ceb3fcca850ccf9443974dce72abe112521 | 8d5e57474c4fe6d653327a49d460d4010c1d1d9b | cmd/compile: add loclist for removed DCL nodes
Certain return parameters which live in registers and end up pruned by
earlier SSA passes will end up with a DWARF entry but no location list.
This patch fixes this by ensuring those params have proper location
lists generated for them.
Change-Id: I4fff074e62c3010abdee85... | [
{
"path": "src/cmd/compile/internal/dwarfgen/dwarf.go",
"patch": "@@ -236,6 +236,8 @@ func createDwarfVars(fnsym *obj.LSym, complexOK bool, fn *ir.Func, apDecls []*ir\n \t// reliably report its contents.\"\n \t// For non-SSA-able arguments, however, the correct information\n \t// is known -- they have a sin... | 2025-08-14T21:48:46 |
swiftlang/swift | 99858205162affe6b1409ddd7a1de488bb490b6b | 4bbfa8bff1f980ebc8e13c4c82c9f9f2ac7b5ccb | [rbi] Change how we process ref_element_addr to handle non-Sendable fields with different isolations than the parent class.
Specifically, previously if we had a non-Sendable field in a non-Sendable parent
class, we would perform an assign direct. This is not safe anymore since we are
being much more stringent about mi... | [
{
"path": "lib/SILOptimizer/Analysis/RegionAnalysis.cpp",
"patch": "@@ -4354,8 +4354,8 @@ TranslationSemantics PartitionOpTranslator::visitUnconditionalCheckedCastInst(\n // ref_element_addr to be merged into.\n TranslationSemantics\n PartitionOpTranslator::visitRefElementAddrInst(RefElementAddrInst *reai) ... | 2026-03-18T22:08:18 |
mrdoob/three.js | 94ca22d03149b06a59722c0219ce7b4fcae90ae0 | c74f0ee037c1ac6729b305c247c399b5b89a80fd | WebGPURenderer: Fix compressed texture feature detection for WebGL backend. (#31980)
* WebGPURenderer: Fix compressed texture feature detection for WebGL backend.
* WebGPUBackend: Fix check. | [
{
"path": "examples/jsm/loaders/KTX2Loader.js",
"patch": "@@ -202,9 +202,9 @@ class KTX2Loader extends Loader {\n \t\tthis.workerConfig = {\n \t\t\tastcSupported: await renderer.hasFeatureAsync( 'texture-compression-astc' ),\n \t\t\tastcHDRSupported: false, // https://github.com/gpuweb/gpuweb/issues/3856\n-... | 2025-09-29T23:43:06 |
golang/go | 8d5e57474c4fe6d653327a49d460d4010c1d1d9b | 4afaf67ab44508258995371b09d16efd3c29edb0 | builtin: update new function comment
The function comment for new does not reflect the recent change in behaviour since Go 1.26.
Fixes #77584
Change-Id: I501d701adb5a1c2ff4b559c243ba07bbef4940d9
Reviewed-on: https://go-review.googlesource.com/c/go/+/746561
Reviewed-by: Alan Donovan <adonovan@google.com>
Auto-Submit:... | [
{
"path": "src/builtin/builtin.go",
"patch": "@@ -122,6 +122,10 @@ type Type int\n // invocation.\n type Type1 int\n \n+// TypeOrExpr is here for the purposes of documentation only. It is a stand-in\n+// for either a Go type or an expression.\n+type TypeOrExpr int\n+\n // IntegerType is here for the purpose... | 2026-02-18T16:12:31 |
tensorflow/tensorflow | d2d089d7d826a5f669d723dbe2e9a915d9015234 | 709928036681dd2a222a9cbb0fb6aff2584d0fbf | Fix a bug in TFLite dialect that the bias index for Conv3DTranspose was wrong
PiperOrigin-RevId: 884697978 | [
{
"path": "tensorflow/compiler/mlir/lite/ir/tfl_ops.td",
"patch": "@@ -5741,7 +5741,7 @@ def TFL_Conv3DOp : TFL_Op<\"conv_3d\", [\n \n def TFL_Conv3DTransposeOp : TFL_Op<\"conv_3d_transpose\", [\n Pure,\n- AccumulatorUniformScale<2, 0, 1>,\n+ AccumulatorUniformScale<3, 1, 2>,\n TFL_OperandHasR... | 2026-03-16T23:46:21 |
denoland/deno | 20e1ef892e7605469a239c269705f417e42bd5d8 | 8a3ed27eb1fea2629b67cb2a7a7ef15bd58e3710 | fix(ext/node): rewrite http2 implementation (#32418)
Rewrite Node.js http2 module using nghttp2 with libuv compatibility
layer.
Co-authored-by: Divy Srivastava <me@littledivy.com>
Co-authored-by: kajukitli <kajukitli@users.noreply.github.com>
Co-authored-by: Nathan Whitaker <nathan@deno.com> | [
{
"path": "Cargo.lock",
"patch": "@@ -595,6 +595,26 @@ dependencies = [\n \"syn 2.0.117\",\n ]\n \n+[[package]]\n+name = \"bindgen\"\n+version = \"0.71.1\"\n+source = \"registry+https://github.com/rust-lang/crates.io-index\"\n+checksum = \"5f58bf3d7db68cfbac37cfc485a8d711e87e064c3d0fe0435b92f7a407f9d6b3\"\... | 2026-03-10T08:45:38 |
mrdoob/three.js | f78c89fd21072de5f02b62258c4159db665eddec | 0dfaecd6f78f3d678dce0a1f031f944110a13cef | WebGLBackend: Fix logs. (#31978) | [
{
"path": "src/renderers/webgl-fallback/WebGLBackend.js",
"patch": "@@ -1080,7 +1080,7 @@ class WebGLBackend extends Backend {\n \n \t\t\t\t} else if ( ! this.hasFeature( 'WEBGL_multi_draw' ) ) {\n \n-\t\t\t\t\twarnOnce( 'WebGLRenderer: WEBGL_multi_draw not supported.' );\n+\t\t\t\t\twarnOnce( 'WebGLBackend... | 2025-09-29T09:28:48 |
swiftlang/swift | a8276e37c2df30bf01f9224cfa970091ecd19af0 | 157709a41cbedd438fc5c10c8eb19b637fccd855 | Fix OSSA utility GuaranteedOwnershipExtension
OSSA utilities have a compile-time micro-optimization for computing the liveness
boundary. It takes advantage of the OSSA property that the consuming uses
post-dominate all uses. But when we extend liveness to incorporate new uses of a
guaranteed value, that optimization n... | [
{
"path": "include/swift/SILOptimizer/Utils/OwnershipOptUtils.h",
"patch": "@@ -101,16 +101,19 @@ class GuaranteedOwnershipExtension {\n DeadEndBlocks &deBlocks;\n \n // --- analysis state\n+ SmallVector<SILBasicBlock *> guaranteedLivenessBlocks;\n MultiDefPrunedLiveness guaranteedLiveness;\n+ Small... | 2026-03-18T22:04:36 |
golang/go | 8438ace20738cbb1faab5708837e57a50aa774d3 | c2fabf1a268f0480d78bede82fc6a9d3a63fcace | cmd/compile: avoid panic in ternary rewrite on checked instructions
The replace function in rewritetern.go was panicing when encountering
instructions that had already been processed. This adds a check to
ensure we don't trigger a panic on these instructions.
Fixes #77582
Change-Id: I0b38312109b9cedaa1cb1320015097d6... | [
{
"path": "src/cmd/compile/internal/ssa/issue77582_test.go",
"patch": "@@ -0,0 +1,29 @@\n+// Copyright 2026 The Go Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style\n+// license that can be found in the LICENSE file.\n+\n+//go:build goexperiment.simd && amd64\n+\n+package... | 2026-02-13T19:44:32 |
tensorflow/tensorflow | a879bc9944f52219d0b579d747e4b3e376d0b176 | e7d230b07b825bb32e77cb31ffab5dacc125bd13 | Return `UnimplementedError` instead of `OkStatus` for unimplemented methods in `file_system.h`
PiperOrigin-RevId: 884636246 | [
{
"path": "third_party/xla/xla/tsl/platform/BUILD",
"patch": "@@ -487,6 +487,7 @@ cc_library(\n \"@com_google_absl//absl/base:core_headers\",\n \"@com_google_absl//absl/status\",\n \"@com_google_absl//absl/status:statusor\",\n+ \"@com_google_absl//absl/strings\",\n \"@... | 2026-03-16T21:25:10 |
denoland/deno | 8a3ed27eb1fea2629b67cb2a7a7ef15bd58e3710 | ddbdb6d294eab9f30d6a64b12f2df77b046a2b9b | fix(ext/node): improve node:dns compat (#32536)
## Summary
Several improvements to the `node:dns` module compatibility:
- Add `ipv6first` as a valid value for `dns.setDefaultResultOrder()` /
`dns.promises.setDefaultResultOrder()`
- Add `order` option support to `dns.lookup()` and
`dns.promises.lookup()`, accepting `... | [
{
"path": "ext/net/lib.rs",
"patch": "@@ -74,6 +74,7 @@ deno_core::extension!(deno_net,\n ops::op_net_set_broadcast_udp,\n ops::op_net_validate_multicast,\n ops::op_dns_resolve,\n+ ops::op_net_get_system_dns_servers,\n ops::op_set_nodelay,\n ops::op_set_keepalive,\n ops::op_net_li... | 2026-03-09T22:41:53 |
mrdoob/three.js | 0dfaecd6f78f3d678dce0a1f031f944110a13cef | bf8916dc41d3fbbb255c075827786fcfabdebec0 | CSS2DRenderer: Add `sortObjects`. (#31946)
* Implement automatic z index opt out from css2drenderer
* Implement css2dobject depth test property
* invert depthtest order
* fix comment
* implement sortObjects instead | [
{
"path": "examples/jsm/renderers/CSS2DRenderer.js",
"patch": "@@ -137,6 +137,16 @@ class CSS2DRenderer {\n \t\t */\n \t\tthis.domElement = domElement;\n \n+\t\t/**\n+\t\t * Controls whether the renderer assigns `z-index` values to CSS2DObject DOM elements.\n+\t\t * If set to `true`, z-index values are assi... | 2025-09-29T07:46:51 |
swiftlang/swift | 23785a4df08d94d848d479d1cafa1fa4d0d06b21 | a0451cc33af093709a1d9c64d0f2c98ba6ab903d | utils: update bootstrap toolchain snapshot
Update the toolchain snapshot to be able to use some of the new fixes
for the CAS. | [
{
"path": "utils/build.ps1",
"patch": "@@ -270,13 +270,13 @@ if ($UseHostToolchain -is [string]) {\n \n $DefaultPinned = @{\n AMD64 = @{\n- PinnedBuild = \"https://download.swift.org/development/windows10/swift-DEVELOPMENT-SNAPSHOT-2026-03-01-a/swift-DEVELOPMENT-SNAPSHOT-2026-03-01-a-windows10.exe\";\n... | 2026-03-18T21:10:15 |
tensorflow/tensorflow | 9996ada61122ac971c52e300dd072d0574f437d8 | 91f0b5e679af9c2a7fde023208e8a928a8768624 | Fix tests incorrectly checking for allocation type when the allocation is delegated
PiperOrigin-RevId: 884614841 | [
{
"path": "tensorflow/lite/kernels/concatenation_test.cc",
"patch": "@@ -873,8 +873,10 @@ TYPED_TEST(ConcatenationOpPersistentModelTest, PersistentTest) {\n input_data_lists);\n m0.PopulateInputTensors();\n ASSERT_EQ(m0.Invoke(), kTfLiteOk);\n- ASS... | 2026-03-16T20:41:43 |
mrdoob/three.js | e80d168055b8863becb2b5b4d70e342914513b9a | 699e1fa3a2dda4f53dbe31e2b979cf2b2eacf6c1 | TSL: Fix conditional cache and introduce `isolate()` (#31973)
* cleanup
* Update FunctionCallNode.js
* fix conditional cache
* add custom parent scope
* Rename `CacheNode` -> `IsolateNode`, `cache()` -> `isolate()`
* Update IsolateNode.js | [
{
"path": "src/nodes/Nodes.js",
"patch": "@@ -6,7 +6,7 @@ export { default as ArrayNode } from './core/ArrayNode.js';\n export { default as AssignNode } from './core/AssignNode.js';\n export { default as AttributeNode } from './core/AttributeNode.js';\n export { default as BypassNode } from './core/BypassNo... | 2025-09-29T03:48:25 |
denoland/deno | ddbdb6d294eab9f30d6a64b12f2df77b046a2b9b | d77f623c4e8764b1c74ed6248c11fb9737e1f17c | fix(ext/node): emit correct error codes for unsupported PQC key types (#32533)
## Summary
- When `createPublicKey` or `createPrivateKey` encounters an unsupported
PQC key type (ML-KEM, ML-DSA, SLH-DSA), emit Node-compatible error codes
(`ERR_OSSL_EVP_DECODE_ERROR` / `ERR_OSSL_UNSUPPORTED`) instead of a
plain TypeError... | [
{
"path": "ext/node_crypto/keys.rs",
"patch": "@@ -611,6 +611,12 @@ pub enum EdRawError {\n UnsupportedCurve,\n }\n \n+#[derive(Debug, thiserror::Error, deno_error::JsError)]\n+#[class(generic)]\n+#[error(\"unsupported\")]\n+#[property(\"code\" = \"ERR_OSSL_UNSUPPORTED\")]\n+pub struct UnsupportedPrivateK... | 2026-03-09T22:39:20 |
swiftlang/swift | b25df1566d90a29bec9beda66a768115d4006935 | 157709a41cbedd438fc5c10c8eb19b637fccd855 | [TEST-ONLY] Fix CAS/swift-scan-test
Don't diff `stat` output, which might be different due to last access
time. Using `getmtime` script to compare mtime only to make sure the
output is not updated.
rdar://172853933 | [
{
"path": "test/CAS/swift-scan-test.swift",
"patch": "@@ -36,17 +36,17 @@\n // RUN: diff %t/Test.swiftmodule %t/Test2.swiftmodule\n // RUN: diff %t/test.o %t/test2.o\n \n-// RUN: stat %t/Test.swiftmodule > %t/before.module.stat\n-// RUN: stat %t/test.o > %t/before.object.stat\n+// RUN: %{python} %S/../Input... | 2026-03-18T20:27:04 |
mrdoob/three.js | f80cc650666742d3612e1816e4d4fcd77cb07df4 | 27bed7203c3852b17def83bbcd916195fb61e54a | Addons: GPGPU - Fix Bitonic Sort JSDoc and add Ping/Pong Buffers (#31949)
* add jsdoc
* bitonic sort adjustments
* testing, fixing, removing left over gui buttons | [
{
"path": "examples/jsm/gpgpu/BitonicSort.js",
"patch": "@@ -74,15 +74,14 @@ export const getBitonicDisperseIndices = /*@__PURE__*/ Fn( ( [ index, swapSpan ]\n \t]\n } );\n \n-// TODO: Add parameters for computing a buffer larger than vec4\n export class BitonicSort {\n \n \t/**\n \t * Constructs a new ligh... | 2025-09-28T23:20:50 |
tensorflow/tensorflow | 8cff0a4b3fbac30cabbc55048da4b8b349145d55 | 5aea7df677f862007b6714095ae371d501b2b52f | Fix OptimizeDotOfConcatHelper crash on non-2D operands
PiperOrigin-RevId: 884547521 | [
{
"path": "third_party/xla/xla/hlo/transforms/simplifiers/algebraic_simplifier.cc",
"patch": "@@ -2830,7 +2830,8 @@ AlgebraicSimplifierVisitor::OptimizeDotOfConcatHelper(\n HloInstruction* rhs, int64_t rhs_contracting_dim, bool swapped) {\n bool can_optimize = lhs->opcode() == HloOpcode::kConcatenate ... | 2026-03-16T18:19:11 |
denoland/deno | d77f623c4e8764b1c74ed6248c11fb9737e1f17c | d7e449d85de2b1414bd7ce110d890862104e3fb2 | fix(console): prevent multi-line object values in console.table (#32604)
## Summary
- Objects in `console.table` could break the table layout when their
`Deno.inspect` output exceeded the default `breakLength` (72 chars),
causing some rows to wrap across multiple lines
- Fix: set `breakLength: Infinity` in the inspec... | [
{
"path": "ext/web/01_console.js",
"patch": "@@ -3771,6 +3771,7 @@ class Console {\n ...getConsoleInspectOptions(noColorStdout()),\n depth: 1,\n compact: true,\n+ breakLength: Infinity,\n });\n const toTable = (header, body) => this.log(cliTable(header, body));\n ",
... | 2026-03-09T22:28:20 |
golang/go | 01b795bc4c6ea54648c60ade6691ad306c0405d3 | 370513491ab89fe25afb8a4864c409a3dff836b1 | log/syslog: document that this package no longer works after macOS 12.0
Per https://developer.apple.com/documentation/os/logging, Apple's syslog
no longer uses the legacy syslog and Apple System Logger (ASL) APIs
as of macOS 12.X (Monterey), 13.X (Ventura) and thus this package no
longer works and no longer listens on... | [
{
"path": "src/log/syslog/doc.go",
"patch": "@@ -22,3 +22,8 @@ package syslog\n // see https://golang.org/issue/1108.\n \n // BUG(akumar): This package is not implemented on Plan 9.\n+\n+// BUG(odeke-em): As of Darwin's macOS 12.X (Monterey), Apple's syslog daemon no\n+// longer listens on a UNIX domain soc... | 2025-12-25T07:35:27 |
mrdoob/three.js | 1f7b55ee4ae5180e327ca2914032d4049794c5a4 | f44e0cbce05156af51d7f8975999e1aaf5cf301f | WebGPURenderer: Fix binding sampler update (#31971) | [
{
"path": "src/renderers/common/nodes/NodeSampler.js",
"patch": "@@ -43,7 +43,15 @@ class NodeSampler extends Sampler {\n \t */\n \tupdate() {\n \n-\t\tthis.texture = this.textureNode.value;\n+\t\tconst { textureNode } = this;\n+\n+\t\tif ( this.texture !== textureNode.value ) {\n+\n+\t\t\tthis.texture = te... | 2025-09-28T19:05:13 |
denoland/deno | e76e5fa173945757aab4674573772b8793fa20a8 | 881f8c0e0f0f3431185247a0e28fa41a0c079cfb | fix(ext/node): multiple readline improvements (#32538)
## Summary
Several fixes and feature additions to the Node.js readline polyfill:
- **Fix tab completion column formatting** —
`Math.max.apply(completionsWidth)` was missing the array argument,
causing all completions to display one-per-line instead of in columns... | [
{
"path": "ext/node/polyfills/_readline.mjs",
"patch": "@@ -133,12 +133,13 @@ Interface.prototype.question = function question(query, options, cb) {\n };\n options.signal.addEventListener(\"abort\", onAbort, { once: true });\n const cleanup = () => {\n- options.signal.removeEventListener(on... | 2026-03-09T22:07:20 |
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.