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
566db64eb89c428eee5ca387711a0e101b82f283
c72f8980824ccf0f2e14f45fb429e8165ae41ec6
PR #38050: Bump keras from 3.13.1 to 3.13.2 in /xla/backends/cpu/benchmarks/e2e/gemma2/keras Imported from GitHub PR https://github.com/openxla/xla/pull/38050 Bumps [keras](https://github.com/keras-team/keras) from 3.13.1 to 3.13.2. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://githu...
[ { "path": "third_party/xla/xla/backends/cpu/benchmarks/e2e/gemma2/keras/requirements.txt", "patch": "@@ -1,4 +1,4 @@\n-keras==3.13.1\n+keras==3.13.2\n keras_nlp==0.18.1\n tensorflow==2.18.0\n jax==0.4.38", "additions": 1, "deletions": 1, "language": "Plain Text" } ]
2026-02-20T10:03:01
denoland/deno
c0857ab2ae6b1dfedeaf86b92792afc51c751468
29e64f0e19397664881c7658978fcbe0788a55c1
fix(ext/node): read from stdin when spawns node with no args (#32088) When child_process.spawn(process.execPath, []) is used (equivalent to running `node` with no args), the CLI arg translator produced `deno run -A` which fails because no script is specified. In Node.js, `node` with no args and piped stdin reads and ...
[ { "path": "ext/node/ops/node_cli_parser.rs", "patch": "@@ -72,10 +72,12 @@ pub fn op_node_translate_cli_args(\n #[serde] args: Vec<String>,\n script_in_npm_package: bool,\n ) -> Result<TranslatedArgs, CliParserError> {\n- // If no args, return early with run -A\n+ // If no args, return early with run ...
2026-02-09T12:32:27
kubernetes/kubernetes
33dec2246fb5e002bf2feb175a2ba1615dd43b8f
d1b805f41efa7b024473e27f5763fcb32df06cb8
address feedback: refactor declarative validation migration checks - Extract HV error filtering into filterHandwrittenErrors for readability. - Simplify errOutputMatcherByStability initialization in testing helpers.
[ { "path": "pkg/api/testing/validation.go", "patch": "@@ -400,7 +400,7 @@ func verifyValidationEquivalence(t *testing.T, expectedErrs field.ErrorList, run\n \t\tallDeclarativeErrs := runValidations(testCtx)\n \n \t\t// The matcher here is more specific to ensure that errors from Alpha rules are included and ...
2026-02-12T22:18:51
mrdoob/three.js
36ea6dbc7215d33a2e70eb1d7c437248871159bd
cacaad1e20a87b395a87dcea777dd9195e8e242b
WebGPUBackend: Fix `copyFramebufferToTexture`() generated mipmaps twice
[ { "path": "src/renderers/webgpu/WebGPUBackend.js", "patch": "@@ -2356,8 +2356,6 @@ class WebGPUBackend extends Backend {\n \t\t\t]\n \t\t);\n \n-\t\tif ( texture.generateMipmaps ) this.textureUtils.generateMipmaps( texture );\n-\n \t\tif ( renderContextData.currentPass ) {\n \n \t\t\tconst { descriptor } = ...
2025-05-25T16:37:30
golang/go
42cda7c1dfcc1ab109766f2016efe2331b3d0aab
baa0ae3aaacfcef6ae04beba78a2d2b06776e423
simd/archsimd: add Grouped for 256- and 512-bit SaturateTo(U)Int16Concat, and fix type They operate on 128-bit groups, so name them Grouped to be clear, and consistent with other grouped operations. Reword the documentation, mention the grouping only for grouped versions. Also, SaturateToUnt16Concat(Grouped) is a sig...
[ { "path": "src/cmd/compile/internal/amd64/simdssa.go", "patch": "@@ -739,12 +739,12 @@ func ssaGenSIMDValue(s *ssagen.State, v *ssa.Value) bool {\n \t\tssa.OpAMD64VPRORVQMasked128,\n \t\tssa.OpAMD64VPRORVQMasked256,\n \t\tssa.OpAMD64VPRORVQMasked512,\n-\t\tssa.OpAMD64VPACKSSDWMasked128,\n \t\tssa.OpAMD64VPA...
2025-12-19T20:21:15
tensorflow/tensorflow
c72f8980824ccf0f2e14f45fb429e8165ae41ec6
64801cf8c24cbf615fd53f125775eb5a933eddd1
PR #38007: Gracefully handle missing handler on legacy custom call path Imported from GitHub PR https://github.com/openxla/xla/pull/38007 📝 Summary of Changes Add error checking when doing lookup for legacy custom call handler 🎯 Justification Prevents segmentation fault when trying to invoke legacy custom call wit...
[ { "path": "third_party/xla/xla/backends/gpu/runtime/custom_call_thunk.cc", "patch": "@@ -138,8 +138,14 @@ ResolveLegacyCustomCall(const CustomCallTargetRegistry& registry,\n absl::string_view target_name,\n absl::string_view platform_name,\n ...
2026-02-20T09:55:01
swiftlang/swift
f81aa70e758e7bcc0db83ea353ea1efd94881b40
e7c3bf853574278b2a6b5561d56cd3b94a3005d6
Basic, Sema: adjust for LLDB (NFC) LLDB defines `lldb::private::swift::` which causes ambiguity for lookups. Use aliases and fully qualified names to avoid the ambiguity. This fixes some errors with building on Windows with the GNU driver.
[ { "path": "include/swift/Basic/Located.h", "patch": "@@ -59,20 +59,21 @@ template <typename T, typename Enable> struct DenseMapInfo;\n \n template<typename T>\n struct DenseMapInfo<swift::Located<T>> {\n+ using SourceLoc = swift::SourceLoc;\n \n static inline swift::Located<T> getEmptyKey() {\n retur...
2026-03-05T03:17:26
denoland/deno
29e64f0e19397664881c7658978fcbe0788a55c1
c996d21a962f334e0007eaac96964d2a51f4abf9
fix(ext/node): unref stdin on pause to allow process exit (#32086) When process.stdin is a pipe without a _handle (PIPE/TCP type), calling pause() did not unref the underlying Deno stdin resource. This caused pending reads to keep the event loop alive, preventing the process from exiting even after stdin was paused. ...
[ { "path": "ext/node/polyfills/_process/streams.mjs", "patch": "@@ -170,6 +170,7 @@ function _guessStdinType(fd) {\n }\n \n const _read = function (size) {\n+ io.stdin?.[io.REF]();\n const p = Buffer.alloc(size || 16 * 1024);\n PromisePrototypeThen(io.stdin?.read(p), (length) => {\n // deno-lint-ign...
2026-02-09T12:31:57
mrdoob/three.js
cacaad1e20a87b395a87dcea777dd9195e8e242b
87723dd4309fe589035df7d2e0988628b6b99962
WebGPUBackend: Fix `generateMipmaps` when used `copyFramebufferToTexture()` (#31163)
[ { "path": "src/renderers/webgpu/WebGPUBackend.js", "patch": "@@ -2394,6 +2394,12 @@ class WebGPUBackend extends Backend {\n \n \t\t}\n \n+\t\tif ( texture.generateMipmaps ) {\n+\n+\t\t\tthis.textureUtils.generateMipmaps( texture );\n+\n+\t\t}\n+\n \t}\n \n }", "additions": 6, "deletions": 0, "la...
2025-05-25T04:09:40
golang/go
25ed6c7f9b1985688cc9b09b2afdda54fc8932bd
4411edf9721cb4cdb0a5b81b9511ff7472581519
cmd/go/internal/doc: update pkgsite version Fixes #76827 For #36905 Change-Id: I3f855a75efc9272105f0a352c54600cd6a6a6964 Reviewed-on: https://go-review.googlesource.com/c/go/+/731460 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Michael Matloob <matloob@google....
[ { "path": "src/cmd/go/internal/doc/pkgsite.go", "patch": "@@ -71,7 +71,7 @@ func doPkgsite(urlPath, fragment string) error {\n \t\tenv = append(env, \"GOPROXY=\"+gomodcache+\",\"+goproxy)\n \t}\n \n-\tconst version = \"v0.0.0-20250714212547-01b046e81fe7\"\n+\tconst version = \"v0.0.0-20251215153041-4eb0af2c...
2025-12-19T18:00:33
kubernetes/kubernetes
3470dbd96e18a940c1eeabb6d7575642ba35c361
4d2a2abdeecf5f85a942405db5449a4cab50b329
address feedback: add IsAlpha/IsBeta helpers for ValidationStabilityLevel Introduce IsAlpha() and IsBeta() helper methods on field.Error to encapsulate stability level checks. Unexport the underlying ValidationStabilityLevel constants to keep the API surface minimal. Update the apiserver's validation logic to use thes...
[ { "path": "staging/src/k8s.io/apimachinery/pkg/util/validation/field/errors.go", "patch": "@@ -61,19 +61,19 @@ type Error struct {\n \tDeclarativeNative bool\n \n \t// ValidationStabilityLevel denotes the validation stability level of the declarative validation from this error is returned. This should be us...
2026-02-10T20:43:31
tensorflow/tensorflow
64801cf8c24cbf615fd53f125775eb5a933eddd1
df5b0e2ad2ba7afb10d7717a7271ca0c73cbe7df
PR #36882: [ROCm] suppress cuda error messages on ROCm when doing training Imported from GitHub PR https://github.com/openxla/xla/pull/36882 ## Motivation - On ROCm, it emits the following messages (harmless) related to CUDA. This PR is to suppress those. On CUDA, the counterpart related to ROCm has been suppressed ...
[ { "path": "third_party/xla/xla/stream_executor/cuda/cuda_blas.cc", "patch": "@@ -1399,6 +1399,16 @@ absl::Status CUDABlas::GetVersion(std::string *version) {\n }\n \n void initialize_cublas() {\n+ // Check if already registered before attempting - prevents duplicate\n+ // registration error messages (can ...
2026-02-20T09:54:50
denoland/deno
c996d21a962f334e0007eaac96964d2a51f4abf9
db748af2053d8f348244042e7a47991da803a98f
fix(test): user input clearing test runner output (#32082) I noticed that we don't sanitise output in the test runner when printing it. This allows clearing the output from the test runner itself through "destructive" ansi codes. Ran into this on the Fresh code base. Before: <img width="586" height="235" alt="Screens...
[ { "path": "cli/tools/test/reporters/pretty.rs", "patch": "@@ -1,8 +1,11 @@\n // Copyright 2018-2026 the Deno authors. MIT license.\n \n+use std::io::IsTerminal;\n+\n use super::common;\n use super::fmt::to_relative_path_or_remote_url;\n use super::*;\n+use crate::util::console::filter_destructive_ansi;\n \n...
2026-02-09T11:58:41
swiftlang/swift
7e8a8f0a58f900b2ee5294ff5e6532146fa1d828
3c9a6c11d9be9915fb44f52884b8f227375b4db3
[Sema] Attach actor attributes to synthesized lazy storage Finishes fixing rdar://156415458, by handling lazy storage lower in computeActorIsolation so that the attribute can be attached to the lazy storage. Adds tests to ensure the isolation is printed on public and private lazy storage. Also adds one more case to ac...
[ { "path": "lib/Sema/TypeCheckConcurrency.cpp", "patch": "@@ -6309,16 +6309,6 @@ static InferredActorIsolation computeActorIsolation(Evaluator &evaluator,\n };\n }\n \n- // If this declaration is lazy storage, it has the same isolation as the\n- // original variable. Use the evaluator to cache and ...
2026-03-04T23:55:49
mrdoob/three.js
87723dd4309fe589035df7d2e0988628b6b99962
605fb3b39f8baa9821d94aa578c2233e5d64b072
TSL: Fix `mat2` boundary size (#31162)
[ { "path": "src/nodes/core/NodeUtils.js", "patch": "@@ -270,7 +270,7 @@ export function getByteBoundaryFromType( type ) {\n \tif ( /vec2/.test( type ) ) return 8;\n \tif ( /vec3/.test( type ) ) return 16;\n \tif ( /vec4/.test( type ) ) return 16;\n-\tif ( /mat2/.test( type ) ) return 16;\n+\tif ( /mat2/.test...
2025-05-25T03:31:59
golang/go
d00e96d3aeccb11c373d125418316f0b019f4fb0
cfc024daebb84b1864f538d60659691ccf3acf30
internal/cpu: repair VNNI feature check This is a pain to test. Also the original test was never executed, because it was wrong. It looks like processors that might lack this features include Intel 11th generation and AMD Zen 4. These might or might not have bit 2 set in the 7th cpuid "leaf" (SM4) which is what the ...
[ { "path": "src/internal/cpu/cpu_x86.go", "patch": "@@ -219,7 +219,7 @@ func doinit() {\n \tif eax7 >= 1 {\n \t\teax71, _, _, _ := cpuid(7, 1)\n \t\tif X86.HasAVX {\n-\t\t\tX86.HasAVXVNNI = isSet(4, eax71)\n+\t\t\tX86.HasAVXVNNI = isSet(eax71, cpuid_AVXVNNI)\n \t\t}\n \t}\n ", "additions": 1, "deleti...
2025-12-18T18:18:14
kubernetes/kubernetes
4d2a2abdeecf5f85a942405db5449a4cab50b329
4f56a298ccb328b4282e1ab09f928dff25d7e68f
scheduling/workload: fix tests requiring RequestInfo for declarative validation - Update resttest and genericregistrytest to support RequestInfo injection. - Inject RequestInfo in Workload storage and strategy tests to resolve context-related failures. - Refine validate.go log messages and error deduplication logic.
[ { "path": "pkg/registry/scheduling/workload/storage/storage_test.go", "patch": "@@ -23,7 +23,9 @@ import (\n \t\"k8s.io/apimachinery/pkg/fields\"\n \t\"k8s.io/apimachinery/pkg/labels\"\n \t\"k8s.io/apimachinery/pkg/runtime\"\n+\tgenericapirequest \"k8s.io/apiserver/pkg/endpoints/request\"\n \t\"k8s.io/apise...
2026-02-09T21:33:12
denoland/deno
db748af2053d8f348244042e7a47991da803a98f
6c4ced6b360579e04be45deef958f7ec785d3c6b
fix(ext/node): add `threadName` to worker_threads module (#32072) ## Summary Adds the `threadName` export and `Worker.threadName` getter to the worker_threads module for Node.js compatibility. - `threadName` module export: returns the name of the current thread (empty string for main thread, worker's name inside a w...
[ { "path": "ext/node/polyfills/worker_threads.ts", "patch": "@@ -237,6 +237,7 @@ class NodeWorker extends EventEmitter {\n workerData: options?.workerData,\n environmentData: environmentData,\n env: env_,\n+ name: this.#name,\n isEval: !!options?.eval,\n isWorkerThread: tru...
2026-02-09T10:48:25
mrdoob/three.js
f714027c0c08999614c49c70bb5f7b377ec5ae1a
c9bb8004c6f28c94fa5077bcf2d7102a879ff3cf
Examples: Add webgpu_compute_particles_fluid (#31148) * begin work on webgpu_compute_particles_fluid * add mouse interaction * cleanup, add rounded box constraints, add ao, improve stability * removing `.setPBO()` * Update webgpu_compute_particles_fluid.html Fix formatting. ---------
[ { "path": "examples/files.json", "patch": "@@ -312,6 +312,7 @@\n \t\t\"webgpu_compute_cloth\",\n \t\t\"webgpu_compute_geometry\",\n \t\t\"webgpu_compute_particles\",\n+\t\t\"webgpu_compute_particles_fluid\",\n \t\t\"webgpu_compute_particles_rain\",\n \t\t\"webgpu_compute_particles_snow\",\n \t\t\"webgpu_com...
2025-05-23T18:54:58
golang/go
b8c4cc63e77bd457dffa6ec83a3ff65382dac94b
8564fede8929df5bbf9f10d35ff9d3620683ca80
runtime: keep track of secret allocation size During a naive attempt to test the new runtime/secret package, I tried wrapping the entire handshake in a secret.Do call. This lead to a panic because some of the allocator logic had been previously untested. freeSpecial takes p and size, but they can be misleading. They ...
[ { "path": "src/runtime/malloc.go", "patch": "@@ -1213,7 +1213,7 @@ func mallocgc(size uintptr, typ *_type, needzero bool) unsafe.Pointer {\n \tif goexperiment.RuntimeSecret && gp.secret > 0 {\n \t\t// Mark any object allocated while in secret mode as secret.\n \t\t// This ensures we zero it immediately when...
2025-12-16T13:50:57
kubernetes/kubernetes
eceed007d34fcad47904c9a3b5fb9164cb350c01
0c679cea688388e9f00e72e264ab45e232d3051a
Implement DeclarativeValidationBeta and Validation Lifecycle strategy - Introduce WithDeclarativeEnforcement to opt-in to the lifecycle model. - Update ValidateDeclarativelyWithMigrationChecks to: - Enforce Beta-level validations when DeclarativeValidationBeta is enabled. - Shadow Alpha-level validations. ...
[ { "path": "staging/src/k8s.io/apiserver/pkg/registry/rest/validate.go", "patch": "@@ -76,24 +76,24 @@ func WithNormalizationRules(rules []field.NormalizationRule) ValidationConfig {\n \t}\n }\n \n-// WithDeclarativeNative marks the validation configuration to indicate that it includes\n-// declarative valid...
2026-02-09T08:40:18
mrdoob/three.js
efcca9afd25e508f78c8714e93bac0a2cac4b844
d1e71ae2aa709cee66a34f0f521c9089b298f8cd
TSL: Ensure 4 byte alignment for `instancedArray()` and `attributeArray()` (#31146) * fix ensure 4 byte alignment * cleanup
[ { "path": "src/extras/DataUtils.js", "patch": "@@ -207,6 +207,23 @@ class DataUtils {\n \n \t}\n \n+\t/**\n+\t * Aligns a given byte length to the nearest 4-byte boundary.\n+\t *\n+\t * This function ensures that the returned byte length is a multiple of 4,\n+\t * which is often required for memory alignmen...
2025-05-22T05:24:17
denoland/deno
6c4ced6b360579e04be45deef958f7ec785d3c6b
501c6592c9268291b2d6e5479a2f4498f12807f0
fix(ext/node): set exitCode/signalCode correctly for killed child processes (#32081) ## Summary - When a child process was killed by a signal (e.g., SIGTERM from a timeout), `exitCode` was unconditionally set to the raw OS exit code (e.g., 143 for SIGTERM) instead of `null` - In Node.js, `exitCode` and `signalCode` ar...
[ { "path": "ext/node/polyfills/internal/child_process.ts", "patch": "@@ -542,12 +542,15 @@ export class ChildProcess extends EventEmitter {\n \n (async () => {\n const status = await this.#process.status;\n- this.exitCode = status.code;\n+ this.signalCode = this.signalCode || stat...
2026-02-08T22:07:30
golang/go
8564fede8929df5bbf9f10d35ff9d3620683ca80
eecdb61eebabc083f588a349d4ce5ac2defaf2ca
cmd/go: remove reference to no longer existing -i flag The flag was removed in CL 416094. Fixes #76850 Change-Id: Ia219b4d2d8391f08487b4ff1bbec43766a6a6964 Reviewed-on: https://go-review.googlesource.com/c/go/+/730721 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-...
[ { "path": "src/cmd/go/alldocs.go", "patch": "@@ -1954,7 +1954,7 @@\n //\n //\t-o file\n //\t Save a copy of the test binary to the named file.\n-//\t The test still runs (unless -c or -i is specified).\n+//\t The test still runs (unless -c is specified).\n //\t If file ends in a slash or names a...
2025-12-17T16:30:52
mrdoob/three.js
cd3aa0d2a453bd0e8091c0818778e550f6fe38dc
83bc6547e9628629f4e84e450a02077dd1f5032e
Examples: Add `webgpu_compute_cloth` (#31123) * Add webgpu_compute_cloth example * fix render calls * remove metalness * Add exception to puppeteer.js * Fix the cloth demo in WebGL2 Fallback * update normalView replacement approach * cleanup * update method ---------
[ { "path": "examples/files.json", "patch": "@@ -309,6 +309,7 @@\n \t\t\"webgpu_clipping\",\n \t\t\"webgpu_compute_audio\",\n \t\t\"webgpu_compute_birds\",\n+\t\t\"webgpu_compute_cloth\",\n \t\t\"webgpu_compute_geometry\",\n \t\t\"webgpu_compute_particles\",\n \t\t\"webgpu_compute_particles_rain\",", "add...
2025-05-18T15:38:44
kubernetes/kubernetes
d5e87fe5c7bba33d2129780481a92e98378713b9
04d82d95fa3c245906e0f9dfe062b4a9c0dd2048
fix: remove duplicate SSH execution in masterExec function
[ { "path": "test/e2e/apimachinery/etcd_failure.go", "patch": "@@ -115,10 +115,6 @@ func masterExec(ctx context.Context, f *framework.Framework, cmd string) {\n \n \thost := ips[0] + \":22\"\n \tresult, err := e2essh.SSH(ctx, cmd, host, framework.TestContext.Provider)\n-\tframework.ExpectNoError(err)\n-\te2es...
2026-02-12T18:39:23
denoland/deno
501c6592c9268291b2d6e5479a2f4498f12807f0
1c4204cc254671da16e777b13a9ae2bdcf268bad
fix(ext/node): emit error event for worker with missing main module (#32062) Fixes `test-worker-esm-missing-main.js` test --------- Signed-off-by: Divy <dj.srivastava23@gmail.com> Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
[ { "path": "ext/node/ops/worker_threads.rs", "patch": "@@ -86,21 +86,17 @@ pub fn op_worker_threads_filename<TSys: ExtNodeSys + 'static>(\n let path = ensure_read_permission(state, Cow::Borrowed(path))\n .map_err(WorkerThreadsFilenameError::Permission)?;\n let sys = state.borrow::<TSys>();\n- ...
2026-02-07T15:07:13
golang/go
516699848b7c19b2b7f80de82c66012719f6835b
8c28ab936a1042fad8531583ff7737aa361e324a
runtime/secret: warn users about allocations, loosen guarantees The discussion at #76477 warranted some stronger documentation about what is expected from users of the secret package. In addition, #76764 presented a problem about when a user can expect their secrets to be deleted. Fix by loosening the guarantee to wh...
[ { "path": "src/runtime/secret/doc.go", "patch": "@@ -0,0 +1,15 @@\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+//go:build goexperiment.runtimesecret\n+\n+// Package secret contains he...
2025-12-10T10:13:05
swiftlang/swift
34e721c7ac62f33837d64f1974178fe8ba221847
546f1536698ac253b1c280da99da3752e6cf81d2
[UVT] support expansions with unrelated prefix in same file This parses existing expected diagnostics in the source file even if they have a mismatching prefix. This lets the script know that the }} closing an unrelated expected-expansion block is not due to a mistake in parsing. Unrelated diagnostics are otherwise le...
[ { "path": "test/Utils/update-verify-tests/foreign-prefix-expansion.swift", "patch": "@@ -0,0 +1,25 @@\n+// RUN: %empty-directory(%t)\n+// RUN: split-file %s %t\n+\n+// Test that update-verify-tests correctly handles expansion blocks from a\n+// different verify prefix. When updating with \"--prefix diagnose...
2026-03-04T08:29:19
tensorflow/tensorflow
69f6670265b0029d6848ab3c431b2e31ff6b048f
ac7d683a33c59abcc53665bd759a5aa6ac439319
PR #36174: [XLA:GPU] Fix test CommandBufferCmdTest.NestedChildCmdCreateAndUpdate failure Imported from GitHub PR https://github.com/openxla/xla/pull/36174 Fix the issue reported by https://github.com/openxla/xla/issues/36088. Copybara import of the project: -- 6285c2ce9886219ba691a324ef61365dc2605252 by Shawn Wa...
[ { "path": "third_party/xla/xla/backends/gpu/runtime/BUILD", "patch": "@@ -271,6 +271,7 @@ xla_test(\n \"//xla/stream_executor:stream_executor_address_allocator\",\n \"//xla/stream_executor:stream_executor_h\",\n \"//xla/stream_executor:stream_executor_memory_allocator\",\n+ \"...
2026-02-20T09:27:38
mrdoob/three.js
5223683d0e03b89e620b8ce1a1410549d702bcf4
b654763d3e1e96567b1c27cc118e8b3d96c92fdc
fix layer colorcorrection (#31124)
[ { "path": "src/renderers/common/XRManager.js", "patch": "@@ -637,6 +637,8 @@ class XRManager extends EventDispatcher {\n \t\t\t\tresolveStencilBuffer: false\n \t\t\t} );\n \n+\t\trenderTarget.autoAllocateDepthBuffer = true;\n+\n \t\tconst material = new MeshBasicMaterial( { color: 0xffffff, side: FrontSide ...
2025-05-18T08:36:30
denoland/deno
84339a857ff49edbd4db464399fd832b7795ed1f
6d18b1bb18b26870be026bf0d3c552b70e8702dc
fix(ext/node): unref child_process stdio streams by default (#32071) With this fix, Pipe.unref() also propagates to the stream in `[kStreamBaseField]`, so esbuild's unref calls reach the StreamResource and the event loop can exit properly.
[ { "path": "ext/node/polyfills/internal_binding/pipe_wrap.ts", "patch": "@@ -416,12 +416,20 @@ export class Pipe extends ConnectionWrap {\n if (this.#listener) {\n this.#listener.ref();\n }\n+ const stream = this[kStreamBaseField];\n+ if (stream && typeof stream.ref === \"function\") {\n+...
2026-02-06T13:03:06
kubernetes/kubernetes
4810a2aae7b352559194f6ff19aa908de4df99c2
ae3163eecae0087192274445a04c5aeccdbbb7b8
fix: remove duplicate SSH execution in masterExec function
[ { "path": "test/e2e/apimachinery/etcd_failure.go", "patch": "@@ -115,10 +115,6 @@ func masterExec(ctx context.Context, f *framework.Framework, cmd string) {\n \n \thost := ips[0] + \":22\"\n \tresult, err := e2essh.SSH(ctx, cmd, host, framework.TestContext.Provider)\n-\tframework.ExpectNoError(err)\n-\te2es...
2026-02-12T18:39:23
golang/go
8c28ab936a1042fad8531583ff7737aa361e324a
65b71c11d469029f755328c5e51742139f6b8686
cmd/cgo: don't emit C local if it is not used Fixes #76861 Change-Id: Icc8452e48ed736e8240f8afea18637c33b8e3ef8 Reviewed-on: https://go-review.googlesource.com/c/go/+/730600 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: David Chase <drchase@google.com> Reviewed...
[ { "path": "src/cmd/cgo/internal/test/issue76861.go", "patch": "@@ -0,0 +1,12 @@\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+//go:build cgo\n+\n+package cgotest\n+\n+// Issue 43639: N...
2025-12-17T00:00:36
swiftlang/swift
7d3b2576241dda7586b9ebf4b59927a42137e232
c3573d9ec9d6147c6a2010f7e1e2d1383a67119d
[stdlib] Minor clean-up and new fast path for larger (e.g. 128-bit) integer printing (#85404) A follow-up to #85180. First, make the guarantee that our Swift-native implementation of integer-to-ASCII conversion always fills the _suffix_ of the given mutable span. (Some minor swift-format corrections interspersed.) ...
[ { "path": "stdlib/public/core/Integers.swift", "patch": "@@ -1377,11 +1377,17 @@ extension BinaryInteger {\n //===--- CustomStringConvertible conformance ------------------------------===//\n //===----------------------------------------------------------------------===//\n \n+/// Fills the *suffix* of a mu...
2026-03-04T21:33:32
mrdoob/three.js
b654763d3e1e96567b1c27cc118e8b3d96c92fdc
5bf53eec7836b1dc4ebaff478929e1970c258d92
USDZExporter: Fix Object indentation level (#31126)
[ { "path": "examples/jsm/exporters/USDZExporter.js", "patch": "@@ -315,16 +315,16 @@ function buildXform( object, geometry, material ) {\n \n \t}\n \n-\treturn `def Xform \"${ name }\" (\n-\tprepend references = @./geometries/Geometry_${ geometry.id }.usda@</Geometry>\n-\tprepend apiSchemas = [\"MaterialBind...
2025-05-18T08:35:19
tensorflow/tensorflow
74ad77f40811e579d37e85e374c7ad98cf331037
5b18fe126521e693d4b71a43e30a8592c3aa9820
PR #36564: [ROCm][TSAN] Read device_count from collective params and avoid race with concurrent updates Imported from GitHub PR https://github.com/openxla/xla/pull/36564 📝 Summary of Changes Fix race condition detected by TSAN whilst updating local device count 🎯 Justification Prevent race condition by reading loc...
[ { "path": "third_party/xla/xla/backends/gpu/runtime/all_to_all_thunk.cc", "patch": "@@ -128,12 +128,11 @@ AllToAllStartThunk::AllToAllStartThunk(\n \n absl::Status AllToAllStartThunk::Initialize(const InitializeParams& params) {\n TF_RETURN_IF_ERROR(CollectiveThunk::Initialize(params));\n- device_count_ ...
2026-02-20T09:23:18
denoland/deno
22b7401bb499c5dae4cfe231301aafba34264a41
cc6422dc6605424a3d32a4c39071f5e894bc6578
fix: support loading `npm:` and `jsr:` specifiers in required ES modules (#31974)
[ { "path": "Cargo.lock", "patch": "@@ -1905,9 +1905,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_core\"\n-version = \"0.383.0\"\n+version = \"0.385.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"ee60c193b9e93726558e20dca14b36db7fccfebdf4479271e834e52709d101c...
2026-02-06T01:18:18
golang/go
65b71c11d469029f755328c5e51742139f6b8686
ea1aa765540e17043f817919febad262cf061ad8
crypto/internal/fips140only: test fips140=only mode Fixes #70514 Updates #70878 Change-Id: I6a6a46561d872c8f7e9ea333ff208064b0bd44c1 Reviewed-on: https://go-review.googlesource.com/c/go/+/728506 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Auto-Submit: Filippo Valsorda <fi...
[ { "path": "src/crypto/internal/fips140only/fips140only_test.go", "patch": "@@ -0,0 +1,408 @@\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 fips140only_test\n+\n+import (\n+\t\"...
2024-12-28T21:32:59
kubernetes/kubernetes
ae3163eecae0087192274445a04c5aeccdbbb7b8
c0e6971b7006c5430ae04fe3ecafd7d06aacbee0
Fix issue 136525: Handle NotFound errors in garbage collector When objects are deleted externally (e.g., pods deleted directly after job deletion), the garbage collector should not log errors. This change adds explicit NotFound error handling in attemptToDeleteItem to enqueue virtual delete events when deleteObject re...
[ { "path": "pkg/controller/garbagecollector/garbagecollector.go", "patch": "@@ -625,7 +625,13 @@ func (gc *GarbageCollector) attemptToDeleteItem(ctx context.Context, item *node)\n \t\t// FinalizerDeletingDependents from the item, resulting in the final\n \t\t// deletion of the item.\n \t\tpolicy := metav1.De...
2026-02-07T12:46:43
mrdoob/three.js
5bf53eec7836b1dc4ebaff478929e1970c258d92
f7ad64495252915dd4a2d88deb0f3bcc9e87c38b
NodeMaterialObserver: Fix missing intensity uniform updates. (#31120)
[ { "path": "examples/webgpu_materials_lightmap.html", "patch": "@@ -24,13 +24,17 @@\n \t\t\timport * as THREE from 'three';\n \t\t\timport { vec4, color, positionLocal, mix } from 'three/tsl';\n \n-\t\t\timport Stats from 'three/addons/libs/stats.module.js';\n+\t\t\timport { GUI } from 'three/addons/libs/lil...
2025-05-16T20:53:15
swiftlang/swift
4cc9c7638a7b7b039ea7bfd7ec91e151506c2dc0
aa1c58700cc94bdbd0e09522f1481b969d7e7065
[Backtracing] Fix cross platform symbolication. (#87490) Refactoring to allow override on the hard coded image paths in crash logs. To allow cross platform offline symbolication. Co-authored-by: Carl Peto <carlpeto@Carls-MacBook-Pro.local> Co-authored-by: Alastair Houghton <alastair@alastairs-place.net>
[ { "path": "stdlib/public/RuntimeModule/Backtrace.swift", "patch": "@@ -363,7 +363,6 @@ public struct Backtrace: CustomStringConvertible, Sendable {\n -> SymbolicatedBacktrace? {\n return symbolicated(with: images,\n platform: .default,\n- alternativeSym...
2026-03-04T20:18:56
denoland/deno
cc6422dc6605424a3d32a4c39071f5e894bc6578
cb0b84c4dedf600db7089018b28f4b43ec996a3e
fix(ext/node): fix 'test-worker-process-{argv,env}.js' tests (#32065) Done with @claude
[ { "path": "ext/node/polyfills/worker_threads.ts", "patch": "@@ -49,16 +49,16 @@ const {\n encodeURIComponent,\n Error,\n FunctionPrototypeCall,\n- JSONParse,\n- JSONStringify,\n NumberIsFinite,\n ObjectHasOwn,\n+ ObjectKeys,\n ObjectPrototypeIsPrototypeOf,\n PromiseReject,\n PromiseResolv...
2026-02-05T23:56:54
tensorflow/tensorflow
85ce1cf218901e11307cbef90cb46fe6234882f3
c7934f14e719eec3b92d2bcb1fb3ef08a1e7eeda
[XLA Test Fixture Migration] Migrate `dynamic_padder_test ` PiperOrigin-RevId: 872766293
[ { "path": "third_party/xla/xla/service/BUILD", "patch": "@@ -3223,8 +3223,7 @@ cc_library(\n xla_test(\n name = \"dynamic_padder_test\",\n srcs = [\"dynamic_padder_test.cc\"],\n- tags = [\"pjrt_migration_candidate\"],\n- use_legacy_runtime = True,\n+ tags = [],\n deps = [\n \":d...
2026-02-20T08:38:36
golang/go
ea1aa765540e17043f817919febad262cf061ad8
5046bdf8a612b35a2c1a9e168054c1d5c65e7dd7
go/doc: exclude examples with results Fixes #36185 Change-Id: I7634744e62e00023367ed48a4700b61a6a6a6964 Reviewed-on: https://go-review.googlesource.com/c/go/+/729902 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Michael Knyszek <mknyszek@google.com> Reviewed-by...
[ { "path": "src/go/doc/example.go", "patch": "@@ -74,6 +74,9 @@ func Examples(testFiles ...*ast.File) []*Example {\n \t\t\tif params := f.Type.Params; len(params.List) != 0 {\n \t\t\t\tcontinue // function has params; not a valid example\n \t\t\t}\n+\t\t\tif results := f.Type.Results; results != nil && len(r...
2025-12-14T20:02:33
mrdoob/three.js
f7ad64495252915dd4a2d88deb0f3bcc9e87c38b
64b50b0910427c1bbeae01888ddc5be896dae227
USDZExporter: Fix JSDoc to match default value (#31119)
[ { "path": "examples/jsm/exporters/USDZExporter.js", "patch": "@@ -827,7 +827,7 @@ function buildCamera( camera ) {\n *\n * @typedef {Object} USDZExporter~Options\n * @property {number} [maxTextureSize=1024] - The maximum texture size that is going to be exported.\n- * @property {boolean} [includeAnchorin...
2025-05-16T08:43:28
denoland/deno
cb0b84c4dedf600db7089018b28f4b43ec996a3e
42f9bf7b2a7de796ae47c5eb33866ddb1d08f4d7
fix(ext/otel): use correct severity for `console.trace` (#32068) Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
[ { "path": "ext/telemetry/lib.rs", "patch": "@@ -1277,7 +1277,8 @@ fn op_otel_log<'s>(\n ..=0 => Severity::Debug,\n 1 => Severity::Info,\n 2 => Severity::Warn,\n- 3.. => Severity::Error,\n+ 3 | 5.. => Severity::Error,\n+ 4 => Severity::Trace,\n };\n \n let mut log_record = LogRecord:...
2026-02-05T23:25:36
swiftlang/swift
5404d15da6ecf8dc530ff2ee2c4b82a2fa150203
546f1536698ac253b1c280da99da3752e6cf81d2
Create tailored diagnostic for default argument between isolation Fixes #79077, rdar://143965795, #84519, rdar://161333188 Adds a tailored diagnostic for when the default value and the context it's being used in are both actor-isolated, to name the specific actors or explain that state cannot be accessed between inst...
[ { "path": "include/swift/AST/DiagnosticsSema.def", "patch": "@@ -5814,6 +5814,21 @@ NOTE(property_requires_actor,none,\n ERROR(isolated_default_argument_context,none,\n \"%0 default value in a %1 context\", \n (ActorIsolation, ActorIsolation))\n+ERROR(different_actor_isolated_default_argument_co...
2026-02-26T00:03:31
golang/go
5046bdf8a612b35a2c1a9e168054c1d5c65e7dd7
3f6eabdf09cd660c7881b75c5dfaef09609ba7e6
crypto/tls: reject trailing messages after client/server hello For TLS 1.3, after procesesing the server/client hello, if there isn't a CCS message, reject the trailing messages which were appended to the hello messages. This prevents an on-path attacker from injecting plaintext messages into the handshake. Additiona...
[ { "path": "src/crypto/tls/conn.go", "patch": "@@ -224,6 +224,9 @@ func (hc *halfConn) changeCipherSpec() error {\n \treturn nil\n }\n \n+// setTrafficSecret sets the traffic secret for the given encryption level. setTrafficSecret\n+// should not be called directly, but rather through the Conn setWriteTraffi...
2025-11-24T22:03:10
tensorflow/tensorflow
c7934f14e719eec3b92d2bcb1fb3ef08a1e7eeda
135ae354b27695ba9b7d19c7dc2425194243503a
update error message to use full flag name `xla_early_exit_with_layouts`. PiperOrigin-RevId: 872741760
[ { "path": "third_party/xla/xla/pjrt/gpu/tfrt/tfrt_gpu_client.cc", "patch": "@@ -747,7 +747,8 @@ TfrtGpuClient::LoadInternal(\n \n if (IsEarlyExitCompilation(compile_options)) {\n return InvalidArgument(\n- \"Excutable from early exit with layouts cannot be loaded.\");\n+ \"Executable com...
2026-02-20T07:19:27
mrdoob/three.js
a593f54a2ee458334ec0ef7ddb98e16656ef92bd
088df26e83d6dabb57c954d0f773f85ae3759678
WebGPURenderer: Fix runtime errors introduced by texture array refactor. (#31108) * fix runtime errors introduced by texture array refactor * add render pass for xr layers
[ { "path": "src/core/RenderTarget.js", "patch": "@@ -294,12 +294,7 @@ class RenderTarget extends EventDispatcher {\n \t\t\t\tthis.textures[ i ].image.width = width;\n \t\t\t\tthis.textures[ i ].image.height = height;\n \t\t\t\tthis.textures[ i ].image.depth = depth;\n-\n-\t\t\t\tif ( this.textures[ i ].image...
2025-05-15T08:54:41
kubernetes/kubernetes
551c08e2a2d9350f86747a7d68c1c61f9141526c
0b10375aec7460228a14f855224a7e214ef2d06e
Update exceptions to drop "it must be optional"
[ { "path": "hack/golangci-hints.yaml", "patch": "@@ -214,7 +214,7 @@ linters:\n \n # OptionalOrRequired is being enabled over time. For now, each API group should be added to this list until we comb through each group and fix the missing tags.\n # The nonpointerstructs linter is included he...
2026-02-12T17:42:44
golang/go
3f6eabdf09cd660c7881b75c5dfaef09609ba7e6
a4b5b92055d24da007ae13c4586aa0a229fa337b
cmd/compile: use unsigned constant when folding loads for SIMD ops with constants When folding loads into a SIMD op with a constant, in the SSA rules we use makeValAndOff to create an AuxInt for the constant and the offset. For the SIMD ops of concern (for now), the constants are always unsigned. So pass the constant ...
[ { "path": "src/cmd/compile/internal/ssa/_gen/simdAMD64.rules", "patch": "@@ -2511,30 +2511,30 @@\n (VPANDNQMasked128 x l:(VMOVDQUload128 {sym} [off] ptr mem) mask) && canMergeLoad(v, l) && clobber(l) => (VPANDNQMasked128load {sym} [off] x ptr mask mem)\n (VPANDNQMasked256 x l:(VMOVDQUload256 {sym} [off] ptr...
2025-12-16T16:16:47
swiftlang/swift
5515eb25dd51854561f289f0aed2350342d95979
4c1e2c55ccc8fe405ae6e8043821f62bd50f1ab0
[cxx-interop] Fix @implementation not detecting ownership mismatch @objc @implementation annotated Swift methods did not check whether the ownership conventions of the Swift function match the Obj-C(++) declaration. A mismatch can result in use after free errors or leaks. This PR adds some extra check for the ownersh...
[ { "path": "include/swift/AST/DiagnosticsSema.def", "patch": "@@ -1984,6 +1984,11 @@ ERROR(objc_implementation_sendability_mismatch,none,\n \"type %2 declared by the header\",\n (ValueDecl *, Type, Type))\n \n+ERROR(objc_implementation_ownership_mismatch,none,\n+ \"%kind0 has a parameter own...
2026-03-04T15:22:35
mrdoob/three.js
088df26e83d6dabb57c954d0f773f85ae3759678
7703433fca8aa2af2ffefe1c83dd17139298f2ce
LightsNode: Fix `castShadow` regression. (#31106) * LightsNode: Fix `castShadow` regression. * Update AnalyticLightNode.js
[ { "path": "src/nodes/lighting/AnalyticLightNode.js", "patch": "@@ -3,7 +3,6 @@ import { NodeUpdateType } from '../core/constants.js';\n import { uniform } from '../core/UniformNode.js';\n import { Color } from '../../math/Color.js';\n import { renderGroup } from '../core/UniformGroupNode.js';\n-import { has...
2025-05-15T08:39:09
tensorflow/tensorflow
c658d8d249851af88d63dc1f52e6bc611c799170
a94b74876592895383f86c44e017f11e40a1399a
[XLA Test Fixture Migration] Migrate `hlo_execution_profile_test ` PiperOrigin-RevId: 872650824
[ { "path": "third_party/xla/xla/service/BUILD", "patch": "@@ -3517,20 +3517,25 @@ cc_library(\n ],\n )\n \n-xla_cc_test(\n+xla_test(\n name = \"hlo_execution_profile_test\",\n srcs = [\"hlo_execution_profile_test.cc\"],\n+ backends = [\n+ \"cpu\",\n+ \"gpu\",\n+ ],\n tags ...
2026-02-20T02:08:46
denoland/deno
42f9bf7b2a7de796ae47c5eb33866ddb1d08f4d7
5afc23e70d382be37938c4be69b422d7a8b7d1e1
fix(ext/node): validate execArgv and NODE_OPTIONS in worker_threads (#32066) Fixes `test-worker-execargv-invalid.js` test --------- Signed-off-by: Divy <dj.srivastava23@gmail.com>
[ { "path": "ext/node/polyfills/internal/errors.ts", "patch": "@@ -5,7 +5,6 @@\n * ERR_MANIFEST_ASSERT_INTEGRITY\n * ERR_QUICSESSION_VERSION_NEGOTIATION\n * ERR_REQUIRE_ESM\n- * ERR_WORKER_INVALID_EXEC_ARGV\n * ERR_WORKER_PATH\n * ERR_QUIC_ERROR\n * ERR_SYSTEM_ERROR //System error, shouldn't ever happen...
2026-02-05T18:09:03
golang/go
9ba0948172cbb05308fb2a9db823a720f8ffb9ad
b7944a5f80b5aa7ad43730064cf4ebc8c473df47
cmd/link: don't create __x86.get_pc_thunk symbol if it already exists On 386, in some build modes we need to create the __x86.get_pc_thunk symbols, to support PC-relative addressing. In some situation the thunk symbols may already exist, e.g. loaded from a C object in internal linking mode. In this case, we should use...
[ { "path": "src/cmd/link/internal/x86/asm.go", "patch": "@@ -72,6 +72,9 @@ func gentext(ctxt *ld.Link, ldr *loader.Loader) {\n \t\t{\"di\", 7},\n \t} {\n \t\tthunkfunc := ldr.CreateSymForUpdate(\"__x86.get_pc_thunk.\"+r.name, 0)\n+\t\tif t := thunkfunc.Type(); t != 0 && t != sym.SXREF && t != sym.SDYNIMPORT ...
2025-12-15T18:45:28
mrdoob/three.js
fa53b27bd141f4cedfae7c17e8da11e65844444b
abf99f5836815cf792e1bbb501947878f637bd2d
SkeletonHelper: fix typo in JSDoc (#31113)
[ { "path": "src/helpers/SkeletonHelper.js", "patch": "@@ -81,7 +81,7 @@ class SkeletonHelper extends LineSegments {\n \t\tthis.root = object;\n \n \t\t/**\n-\t\t * he list of bones that the helper visualizes.\n+\t\t * The list of bones that the helper visualizes.\n \t\t *\n \t\t * @type {Array<Bone>}\n \t\t ...
2025-05-15T08:29:19
swiftlang/swift
0252de2b13b8ea3edf933aa7fe133cfe316001e4
18db1e8ba1d9e53f3ae2728539842484c1f71d89
[sema] Honor explicit global actor isolation for async closures in constraint solver Previously, we were emitting an unknown pattern error in code like: ``` @MainActor class MainActorIsolatedKlass { init() { Task.detached { @MainActor in _ = self for try await x in E.seq { } } } } enum ...
[ { "path": "lib/Sema/CSGen.cpp", "patch": "@@ -2043,12 +2043,9 @@ namespace {\n if (hasIsolatedParameter(closureParams))\n return FunctionTypeIsolation::forParameter();\n \n- // Honor an explicit global actor. This is suppressed if the\n- // closure is async (but should it be...
2026-02-07T20:48:05
tensorflow/tensorflow
90024e038ab386e429dcd1a3991e55833643ea11
ae3bd8f1230b4cdb54976ae11d348423bce5f9f1
PR #38032: [ROCm] Allow running tests on rbe runners Imported from GitHub PR https://github.com/openxla/xla/pull/38032 📝 Summary of Changes Allow lit tests to be executed remotely by setting --repo_env=REMOTE_GPU_TESTING=1 when using rocm_rbe config 🎯 Justification That is required to achieve a better gpu utilizat...
[ { "path": "third_party/xla/build_tools/rocm/rocm_xla.bazelrc", "patch": "@@ -3,6 +3,7 @@\n build:rocm_dev --remote_upload_local_results=false\n build:rocm_dev --remote_cache=\"https://wardite.cluster.engflow.com\"\n \n+build:rocm_rbe --repo_env=REMOTE_GPU_TESTING=1\n build:rocm_rbe --bes_backend=\"grpcs://w...
2026-02-19T17:00:22
denoland/deno
5afc23e70d382be37938c4be69b422d7a8b7d1e1
0baa1a65746e97dd030e291f65c3013b936b0462
fix(ext/node): emit error event for worker_threads terminal errors (#32052)
[ { "path": "ext/node/polyfills/worker_threads.ts", "patch": "@@ -246,6 +246,16 @@ class NodeWorker extends EventEmitter {\n switch (type) {\n case 1: { // TerminalError\n this.#status = \"CLOSED\";\n+ if (this.listenerCount(\"error\") > 0) {\n+ const err = new Erro...
2026-02-05T12:09:45
golang/go
b7944a5f80b5aa7ad43730064cf4ebc8c473df47
6713f46426c70f601ac33471d16be7b0e1aae349
text/template: fix slice builtin for pointers to arrays The slice function now properly handles pointers to arrays by calling indirect() to dereference pointers, matching the behavior of the index function. Fixes #39596 Change-Id: Id4920edbfd8fd3df3a181b59a61733f88b0f104d Reviewed-on: https://go-review.googlesource....
[ { "path": "src/text/template/exec_test.go", "patch": "@@ -43,7 +43,8 @@ type T struct {\n \tSIEmpty []int\n \tSB []bool\n \t// Arrays\n-\tAI [3]int\n+\tAI [3]int\n+\tPAI *[3]int // pointer to array\n \t// Maps\n \tMSI map[string]int\n \tMSIone map[string]int // one element, for deterministic ou...
2025-12-05T20:50:24
mrdoob/three.js
abf99f5836815cf792e1bbb501947878f637bd2d
5f3c69c3086e8e05a314109098ec38fb78675fc0
Examples: Add `webgpu_reflection_blurred` (#31116) * fix clear texture and facing away if `bounce` is `false` * add `premult`, `unpremult` * cleanup * add `hashBlur` options { mask, premultipliedAlpha } * add docs and cleanup * add `webgpu_reflection_blurred` example * update webgpu_reflection_blurred * update ...
[ { "path": "examples/files.json", "patch": "@@ -414,6 +414,7 @@\n \t\t\"webgpu_postprocessing\",\n \t\t\"webgpu_procedural_texture\",\n \t\t\"webgpu_reflection\",\n+\t\t\"webgpu_reflection_blurred\",\n \t\t\"webgpu_refraction\",\n \t\t\"webgpu_rendertarget_2d-array_3d\",\n \t\t\"webgpu_rtt\",", "addition...
2025-05-15T08:10:02
denoland/deno
0baa1a65746e97dd030e291f65c3013b936b0462
f7cb82042ad14573ceb1dac261607f7a5ff764c4
fix(ext/node): add `worker.cpuUsage([prev])` API (#32050)
[ { "path": "ext/node/polyfills/worker_threads.ts", "patch": "@@ -4,6 +4,7 @@\n import { core, internals, primordials } from \"ext:core/mod.js\";\n import {\n op_create_worker,\n+ op_host_get_worker_cpu_usage,\n op_host_post_message,\n op_host_recv_ctrl,\n op_host_recv_message,\n@@ -25,6 +26,12 @@ im...
2026-02-05T12:09:13
kubernetes/kubernetes
0b10375aec7460228a14f855224a7e214ef2d06e
0ebf47cb080a207a4829ce8e604e51bb494d63fb
Add exception for union type in scheduling API We need to add a marker to allow podgroup to be marked up correctly as a union type, and then teach the nonpointerstructs linter how to understand this
[ { "path": "hack/golangci-hints.yaml", "patch": "@@ -224,6 +224,13 @@ linters:\n # jsontags: 'Port' must be capitalized for backward compatibility\n - text: 'jsontags: field DaemonEndpoint.Port json tag does not match'\n path: \"staging/src/k8s.io/api/core/v1/types.go\"\n+ \n+ #...
2026-01-22T11:13:50
tensorflow/tensorflow
adb1527a9b9ecae0967e39271529aa969752e6b5
780fd20e65fa8e2725290cf706eaad0a7cc1c763
Migrate deprecated tsl::errors to absl equivalents. PiperOrigin-RevId: 872403758
[ { "path": "third_party/xla/xla/tsl/platform/cloud/gcs_file_system.cc", "patch": "@@ -2057,7 +2057,7 @@ absl::Status GcsFileSystem::CreateDir(const std::string& dirname,\n }\n VLOG(3) << \"Ignoring directory already exists on object \"\n << dirname_with_slash;\n- return errors::AlreadyExists(d...
2026-02-19T16:05:23
mrdoob/three.js
72a887f404d722c666ed4b2f9aeaf2c4edd131d3
54e36651073664b2d70a8315410d3337c8f9b450
TSL: Add `hashBlur()` options `{repeats,mask,premultipliedAlpha}` (#31115) * fix clear texture and facing away if `bounce` is `false` * add `premult`, `unpremult` * cleanup * add `hashBlur` options { mask, premultipliedAlpha } * add docs and cleanup
[ { "path": "examples/jsm/tsl/display/hashBlur.js", "patch": "@@ -1,4 +1,4 @@\n-import { float, Fn, vec2, uv, sin, rand, degrees, cos, Loop, vec4 } from 'three/tsl';\n+import { float, Fn, vec2, uv, sin, rand, degrees, cos, Loop, vec4, premult, unpremult } from 'three/tsl';\n \n /**\n * Applies a hash blur ef...
2025-05-15T06:51:49
golang/go
6713f46426c70f601ac33471d16be7b0e1aae349
388eb10f50f2b693fb68897dd0ddf627b512a885
archive/tar, compress/bzip2: base64 some troublesome testdata files This avoids complaints from scanners that look for and open tar and bz2 files, and complain if they look weird. In this case, they do look weird, because they are intentionally strange. This kind of thing shouldn't be necessary, but we already have th...
[ { "path": "src/archive/tar/reader_test.go", "patch": "@@ -10,6 +10,7 @@ import (\n \t\"errors\"\n \t\"fmt\"\n \t\"hash/crc32\"\n+\t\"internal/obscuretestdata\"\n \t\"io\"\n \t\"maps\"\n \t\"math\"\n@@ -25,10 +26,11 @@ import (\n \n func TestReader(t *testing.T) {\n \tvectors := []struct {\n-\t\tfile stri...
2025-12-12T22:18:13
swiftlang/swift
187cec62e77bc680b5466393c9c0a9ac2479b541
48822370d1aabe4b8b156922b9bcd7c8f75545b9
[Serialization] Get lifetimes with LifetimeDependenceInfoRequest Fixes: rdar://171315715
[ { "path": "lib/Serialization/ModuleFormat.h", "patch": "@@ -58,7 +58,7 @@ const uint16_t SWIFTMODULE_VERSION_MAJOR = 0;\n /// describe what change you made. The content of this comment isn't important;\n /// it just ensures a conflict if two people change the module format.\n /// Don't worry about adhering ...
2026-03-03T12:25:17
mrdoob/three.js
54e36651073664b2d70a8315410d3337c8f9b450
02d84d2c807e8ae9d2872e31522b502c8c931cf4
TSL: Add `premult` and `unpremult` (#31114) * fix clear texture and facing away if `bounce` is `false` * add `premult`, `unpremult` * cleanup
[ { "path": "examples/jsm/tsl/display/GaussianBlurNode.js", "patch": "@@ -1,36 +1,10 @@\n import { RenderTarget, Vector2, NodeMaterial, RendererUtils, QuadMesh, TempNode, NodeUpdateType } from 'three/webgpu';\n-import { nodeObject, Fn, If, float, uv, uniform, convertToTexture, vec2, vec4, passTexture, mul } f...
2025-05-15T06:24:36
golang/go
388eb10f50f2b693fb68897dd0ddf627b512a885
1b291b70dff51732415da5b68debe323704d8e8d
cmd/go: show comparable in go doc interface output The go doc command now displays the comparable constraint when embedded in an interface, matching the existing behavior for the error type. Previously, when an interface embedded comparable, it was not shown in the documentation and incorrectly triggered the "Has une...
[ { "path": "src/cmd/go/internal/doc/doc_test.go", "patch": "@@ -629,6 +629,35 @@ var tests = []test{\n \t\t\t`Has unexported methods`,\n \t\t},\n \t},\n+\t// Interface with comparable constraint.\n+\t{\n+\t\t\"interface type with comparable\",\n+\t\t[]string{p, `ExportedComparableInterface`},\n+\t\t[]string{...
2025-12-05T08:25:33
tensorflow/tensorflow
780fd20e65fa8e2725290cf706eaad0a7cc1c763
bd2f8cd1a0ae0b61795bf702362ecc1621bc95dc
[XLA:GPU] Move CopyCollectiveMetadataToDevice out from shared API since it's not used in the Mosaic anymore. Also fix the collective_kernel_thunk_test PiperOrigin-RevId: 872365043
[ { "path": "third_party/xla/xla/backends/gpu/runtime/BUILD", "patch": "@@ -2707,10 +2707,8 @@ cc_library(\n \"//xla/stream_executor:launch_dim\",\n \"//xla/stream_executor:stream\",\n \"//xla/stream_executor:stream_executor_h\",\n- \"//xla/stream_executor/gpu:collective_kernel_...
2026-02-19T14:17:17
mrdoob/three.js
02d84d2c807e8ae9d2872e31522b502c8c931cf4
d51e356deb8267e5be2972eec501fdff3db3b7ee
TSL: Fix `reflector()` clear texture and stop update if `bounce` is `false` (#31110)
[ { "path": "src/nodes/utils/ReflectorNode.js", "patch": "@@ -292,6 +292,17 @@ class ReflectorBaseNode extends Node {\n \t\t */\n \t\tthis.forceUpdate = false;\n \n+\t\t/**\n+\t\t * Whether the reflector has been rendered or not.\n+\t\t *\n+\t\t * When the reflector is facing away from the camera,\n+\t\t * th...
2025-05-15T04:41:57
denoland/deno
f7cb82042ad14573ceb1dac261607f7a5ff764c4
83d7b0c5ec1248d6af17bd73f061bce576e96e64
fix(ext/node): propagate worker exit code from process.exit() (#32061) Enables `test-worker-esm-exit.js` test --------- Signed-off-by: Divy <dj.srivastava23@gmail.com>
[ { "path": "ext/node/polyfills/worker_threads.ts", "patch": "@@ -249,7 +249,7 @@ class NodeWorker extends EventEmitter {\n this.#status = \"CLOSED\";\n if (!this.#exited) {\n this.#exited = true;\n- this.emit(\"exit\", 0);\n+ this.emit(\"exit\", data ?? 0...
2026-02-05T09:05:17
swiftlang/swift
78702e64cb2a716ed740bdfb68a012abf2b2963e
39293dd31d4d8deffa52109e72a94aa9432deb6c
[Backtracing] Fix struct packing for PE-COFF definitions. Due to unfortunate structure packing rules in C, `struct pe_symbol` ends up being 20 bytes instead of 18. The upshot is that when presented with a PE-COFF binary that contains symbols (noting that this is actually a spec violation), the backtracer will crash. ...
[ { "path": "stdlib/public/RuntimeModule/modules/ImageFormats/PeCoff/pe-coff.h", "patch": "@@ -24,6 +24,8 @@\n \n #include <inttypes.h>\n \n+#pragma pack(push, 1)\n+\n namespace swift {\n namespace runtime {\n \n@@ -409,5 +411,7 @@ struct pe_symbol {\n } // namespace runtime\n } // namespace swift\n \n+#pragm...
2026-03-04T12:18:56
golang/go
63fced531c0d702554fcfda41f9016701a6859c6
6455afbc6f93e7ddc5ffde38b563c4e1a6821d22
runtime/secret: restore goroutine behavior to proposal During review of CL 704615, a suggestion was made that spawning a goroutine inside a call to secret.Do result in a panic. I agreed with this at the time, but had missed that this had been extensively discussed on the proposal. Revert the behavior back to what was ...
[ { "path": "src/runtime/proc.go", "patch": "@@ -5286,10 +5286,6 @@ func malg(stacksize int32) *g {\n // The compiler turns a go statement into a call to this.\n func newproc(fn *funcval) {\n \tgp := getg()\n-\tif goexperiment.RuntimeSecret && gp.secret > 0 {\n-\t\tpanic(\"goroutine spawned while running in s...
2025-12-10T10:07:56
tensorflow/tensorflow
9140d26e2a91c53cabf37e86401b50e0db15aa5d
57832137311b35a9b78ce5f80da8acf367c79735
PR #37732: [ROCm] Fix tools/xla_*_compile_lib_tests Imported from GitHub PR https://github.com/openxla/xla/pull/37732 📝 Summary of Changes Add platform detection and platform-specific device configs to the following test targets to fix the tests on ROCm: `//xla/tools:xla_deviceless_compile_lib_test` `//xla/tools:xla...
[ { "path": "third_party/xla/xla/tools/BUILD", "patch": "@@ -1174,6 +1174,7 @@ xla_test(\n \"//xla:xla_proto_cc\",\n \"//xla/hlo/ir:hlo\",\n \"//xla/service:compiler\",\n+ \"//xla/service:hlo_runner_interface\",\n \"//xla/service:platform_util\",\n \"//xla/servic...
2026-02-19T11:01:50
mrdoob/three.js
ac8d338cc4de9c9529cbdb0d256eb0fc50a86a93
12d1cc51ad7d678ab530ef52fea20853fb8dee62
Fix classification (#31107)
[ { "path": "examples/files.json", "patch": "@@ -59,7 +59,6 @@\n \t\t\"webgl_lightprobe_cubecamera\",\n \t\t\"webgl_lights_hemisphere\",\n \t\t\"webgl_lights_physical\",\n-\t\t\"webgpu_lights_pointlights\",\n \t\t\"webgl_lights_spotlight\",\n \t\t\"webgl_lights_spotlights\",\n \t\t\"webgl_lights_rectarealight...
2025-05-14T18:31:39
denoland/deno
83d7b0c5ec1248d6af17bd73f061bce576e96e64
2a46e203ddbbff5840cbb14ee2a77893c05bdb24
fix(ext/node): Fix `.only` tests compatibilty (#32043) Only tests in Node.js are filtered from running instead of erroring out. This patch adds an option in Deno's test runner to skip santizing only tests.
[ { "path": "cli/js/40_test.js", "patch": "@@ -314,6 +314,7 @@ function testInner(\n testDesc.location.lineNumber,\n testDesc.location.columnNumber,\n registerTestIdRetBufU8,\n+ testDesc.sanitizeOnly ?? true,\n );\n testDesc.id = registerTestIdRetBuf[0];\n testDesc.origin = cachedOrigin;"...
2026-02-05T09:03:22
golang/go
6455afbc6f93e7ddc5ffde38b563c4e1a6821d22
8f45611e78095c05075b4cc49e44aabde064e134
runtime: dropg after emitting trace event in preemptPark Because we dropg before emitting a trace event in preemptPark, we end up failing to emit a status for the goroutine if this happens to be the first event for it in the generation. We only really see this with multiple subscribers in TestSubscribers. This is for...
[ { "path": "src/runtime/proc.go", "patch": "@@ -4385,7 +4385,6 @@ func preemptPark(gp *g) {\n \t// up. Hence, we set the scan bit to lock down further\n \t// transitions until we can dropg.\n \tcasGToPreemptScan(gp, _Grunning, _Gscan|_Gpreempted)\n-\tdropg()\n \n \t// Be careful about ownership as we trace t...
2025-12-11T19:23:19
swiftlang/swift
c8fd93e0e32935e609c7435ae6b498105169a0c0
39293dd31d4d8deffa52109e72a94aa9432deb6c
[Sema] Enforce we don't type-check bindings independently of closures Bindings in closures must be type-checked together with the surrounding closure, add an assertion to make sure we don't try this. Carve out an exception for code completion which may still kick lazy type-checking.
[ { "path": "lib/Sema/TypeCheckConstraints.cpp", "patch": "@@ -674,9 +674,7 @@ bool TypeChecker::typeCheckBinding(Pattern *&pattern, Expr *&initializer,\n target.markInvalid();\n return true;\n }\n- // FIXME: Once we ban forward references to bindings in closures, we can\n- // ...
2025-10-26T09:55:49
kubernetes/kubernetes
c4b2640b32ec7fc2fd00e49fa2167d8a070bb2b3
8651d99a26f648da7bf6fae239d302000cbeb123
Remove exceptions for groups with no issues
[ { "path": "hack/golangci-hints.yaml", "patch": "@@ -214,7 +214,7 @@ linters:\n \n # OptionalOrRequired is being enabled over time. For now, each API group should be added to this list until we comb through each group and fix the missing tags.\n - text: \"must be marked as optional or requi...
2025-10-17T12:54:49
mrdoob/three.js
e23e4572a64649d3d451d18859d32c1b16cf78b0
0eed4b5ec3084fe29401dd83cf03e57e5fb2f129
ShadowNode: Fix VSM with point lights. (#31103)
[ { "path": "src/nodes/lighting/ShadowNode.js", "patch": "@@ -417,7 +417,7 @@ class ShadowNode extends ShadowBaseNode {\n \n \t\t// VSM\n \n-\t\tif ( shadowMapType === VSMShadowMap ) {\n+\t\tif ( shadowMapType === VSMShadowMap && light.isPointLight !== true ) {\n \n \t\t\tdepthTexture.compareFunction = null; ...
2025-05-14T15:18:13
tensorflow/tensorflow
e13d7e6e1d036dde45b98fdbb09970927ec4f3bc
b3d0bbb56432ff127425dbbd65d84935f2637cff
[CPU] Fix Use-After-Free in JitCompiler caused by zombie tasks in ThreadPool 📝 Summary of Changes This PR fixes a use-after-free race condition in xla::cpu::JitCompiler where tasks lingering in the thread pool extend the lifetime of JIT resources beyond the lifetime of the compiler itself. The issue stems from how t...
[ { "path": "third_party/xla/xla/backends/cpu/codegen/jit_compiler.cc", "patch": "@@ -224,15 +224,31 @@ void JitCompiler::TaskDispatcher::dispatch(\n ++num_dispatched_tasks_;\n }\n \n- task_runner_([this, task = std::shared_ptr<llvm::orc::Task>(\n+ // Wrap the move-only task in a shared struct. This s...
2026-02-19T01:10:54
denoland/deno
f84c762373bb2248924781e6a907847e54880fba
533c5058380616b1755f1b42fb3c9a4c37a52f1c
fix(ext/node): handle raw fd instead rid in isatty (#31912) Previously, isatty(fd) was calling core.isTerminal(fd) which expected a Deno resource ID, but Node.js APIs pass raw OS file descriptors. For fd 0, 1, 2 (stdin/stdout/stderr) this happened to work because rid === fd, but it would fail for higher fds.
[ { "path": "ext/node/lib.rs", "patch": "@@ -369,6 +369,7 @@ deno_core::extension!(deno_node,\n ops::require::op_require_package_imports_resolve<TInNpmPackageChecker, TNpmPackageFolderResolver, TSys>,\n ops::require::op_require_break_on_next_statement,\n ops::util::op_node_guess_handle_type,\n+ ...
2026-02-04T20:03:29
golang/go
8f45611e78095c05075b4cc49e44aabde064e134
34af879dde2cfc2688b486399e9fc7e60d1e96fc
runtime/pprof: deflake TestGoroutineLeakProfileConcurrency Issue #76540 reports failures in this test from the leaked goroutine count being too small. The test makes an effort to wait for the goroutines to leak, but there's no guarantee. This change instead changes TestGoroutineLeakProfileConcurrency to wait for the ...
[ { "path": "src/runtime/pprof/pprof_test.go", "patch": "@@ -1590,14 +1590,30 @@ func TestGoroutineLeakProfileConcurrency(t *testing.T) {\n \tgoroutineProf := Lookup(\"goroutine\")\n \tgoroutineLeakProf := goroutineLeakProfile\n \n-\t// Check that a profile with debug information contains\n-\tincludesLeak := ...
2025-12-11T17:19:19
mrdoob/three.js
a4fb5e0cc23fa44b01ef7dfca819f8cbaa97f4f6
e04f92e17234ad17e1cdbc15c9d5c2a08fd5d929
Fix issues in WebXR caused by texture array work (#31099)
[ { "path": "src/renderers/common/Renderer.js", "patch": "@@ -2225,6 +2225,21 @@ class Renderer {\n \n \t}\n \n+\t/**\n+\t * Resets the renderer to the initial state before WebXR started.\n+\t *\n+\t */\n+\tXRResetState() {\n+\n+\t\tthis.backend.setXRTarget( null );\n+\t\tthis.setOutputRenderTarget( null );\n...
2025-05-14T08:09:05
denoland/deno
533c5058380616b1755f1b42fb3c9a4c37a52f1c
943b45b4bc5de51bfddf5e7a1eb9d68939d8bb23
feat(upgrade): add context to error messages for better troubleshooting (#32018) Fixes denoland/deno#31995 --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: bartlomieju <13602871+bartlomieju@users.noreply.github.com> Co-authored-by: Bartek Iwańczuk <biwancz...
[ { "path": "cli/tools/upgrade.rs", "patch": "@@ -484,7 +484,8 @@ pub async fn upgrade(\n let factory = CliFactory::from_flags(flags);\n let http_client_provider = factory.http_client_provider();\n let client = http_client_provider.get_or_create()?;\n- let current_exe_path = std::env::current_exe()?;\n...
2026-02-04T18:42:26
tensorflow/tensorflow
c5f18e3ffe397d2e8fd282c316538b3a8f9f8a4e
6a0cc543f0c5e285d47a9bec53120bd7008152ff
Refactor assertArrayNear to use assertAllClose. The implementation of `assertArrayNear` is updated to call `self.assertAllClose` with `rtol=0` and `atol=err`, simplifying the code and leveraging the existing `assertAllClose` functionality. Fixes tf_keras.gpu_pascal tests PiperOrigin-RevId: 871968799
[ { "path": "tensorflow/python/framework/test_util.py", "patch": "@@ -3165,9 +3165,7 @@ def assertArrayNear(self, farray1, farray2, err, msg=None):\n err: a float value.\n msg: Optional message to report on failure.\n \"\"\"\n- self.assertEqual(len(farray1), len(farray2), msg=msg)\n- for...
2026-02-18T19:36:54
golang/go
e8a83788a475544ab9a153bad4be4b796bc77ccc
927c89bbc5cc7366e86ecbb0f77267435b1d6d2c
go/doc: reuse import name logic for examples Examples resolved imports based on just the path name, but this doesn't work for go-name or modules on v2+. Updates #12794 Fixes #45110 Fixes #56740 Fixes #62059 Change-Id: I8c71b1e5311df04bccbdf319d759d3176a6a6964 Reviewed-on: https://go-review.googlesource.com/c/go/+/72...
[ { "path": "src/go/doc/example.go", "patch": "@@ -11,7 +11,6 @@ import (\n \t\"go/ast\"\n \t\"go/token\"\n \t\"internal/lazyregexp\"\n-\t\"path\"\n \t\"slices\"\n \t\"strconv\"\n \t\"strings\"\n@@ -221,7 +220,7 @@ func playExample(file *ast.File, f *ast.FuncDecl) *ast.File {\n \t\t\t// because the package sy...
2025-12-08T20:48:09
mrdoob/three.js
e04f92e17234ad17e1cdbc15c9d5c2a08fd5d929
c35b17794d15382ca3b446c1214654a7a1d1cd35
Improved webgpu_compute_particles example (#31092) * Improved webgpu_compute_particles example. * Indentation fix. * Indentation fix. * Potential fix for code scanning alert no. 3517: Unused variable, import, function or class Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@us...
[ { "path": "examples/webgpu_compute_particles.html", "patch": "@@ -38,16 +38,17 @@\n \t\t<script type=\"module\">\n \n \t\t\timport * as THREE from 'three';\n-\t\t\timport { Fn, uniform, texture, instancedArray, instanceIndex, float, hash, vec3, If } from 'three/tsl';\n+\t\t\timport { Fn, If, uniform, float,...
2025-05-14T07:25:06
swiftlang/swift
457debcf4d5e8984e48a39669e41faa6ac322304
bdc4f45eeaa63f97f5619d8be17dd4772fa906c5
ModuleInterface: Fix availability attributes on synthesized conformances. Adjust the algorithm that collects the availability attributes for synthesized conformances to ensure it skips attributes from parent declarations that are superceded by attributes in nested declarations, even when the domains of those attribute...
[ { "path": "lib/Frontend/ModuleInterfaceSupport.cpp", "patch": "@@ -452,18 +452,27 @@ class InheritedProtocolCollector {\n return cache.value();\n \n cache.emplace();\n+\n+ // Start with the decl itself and add its @available attributes to the list.\n+ // Then do the same for each parent decl...
2026-03-04T01:14:43
denoland/deno
943b45b4bc5de51bfddf5e7a1eb9d68939d8bb23
846c34e119d4c8600ff41f42446e3633c7bd3a75
fix(ext/node): implement Symbol.asyncDispose for node Worker (#32051) Fixes parallel/test-worker-dispose.mjs test
[ { "path": "ext/node/polyfills/worker_threads.ts", "patch": "@@ -49,6 +49,7 @@ const {\n StringPrototypeStartsWith,\n StringPrototypeTrim,\n Symbol,\n+ SymbolAsyncDispose,\n SymbolFor,\n SymbolIterator,\n TypeError,\n@@ -339,6 +340,10 @@ class NodeWorker extends EventEmitter {\n return Promi...
2026-02-04T17:10:05
golang/go
89614ad264803558cfa36d460d431f7cbd4bae47
bb2337f24c8d774ef122e2251f02c5e512c77a55
runtime/trace: fix broken TestSubscribers Currently we don't break out of the loop on a failure. This is leading to timeouts trying to parse a broken trace over and over, forever. But there's another issue where when we try to dump the trace, we pass only the unread portion of the bytes.Buffer. Change-Id: I1a338eea0...
[ { "path": "src/runtime/trace/subscribe_test.go", "patch": "@@ -16,15 +16,15 @@ import (\n )\n \n func TestSubscribers(t *testing.T) {\n-\tvalidate := func(t *testing.T, source string, tr *bytes.Buffer) {\n+\tvalidate := func(t *testing.T, source string, tr []byte) {\n \t\tdefer func() {\n \t\t\tif t.Failed(...
2025-12-11T18:02:36
tensorflow/tensorflow
4cf491d4403bd0197e7f7d46c4e6192e46dc4feb
9e62201e1e24a56f7bb08b6aeb6bfd776efbe5f0
Add support for RaggedAllToAllThunk in Command Buffer. ## Description This PR introduces XLA:GPU Command Buffer (CUDA Graph) support for RaggedAllToAll operations. Command buffer supports One-Shot RaggedAllToAll Kernel with MultiGpuBarrier kernel used for synchronization ## Key changes - Command Integration: Adds ...
[ { "path": "third_party/xla/xla/backends/gpu/runtime/BUILD", "patch": "@@ -87,7 +87,6 @@ cc_library(\n deps = [\n \":command_state\",\n \":thunk\",\n- \"//xla/runtime:buffer_use\",\n \"//xla/runtime:resource_use\",\n \"//xla/service:buffer_assignment\",\n \"...
2026-02-18T17:10:08
mrdoob/three.js
c35b17794d15382ca3b446c1214654a7a1d1cd35
7896d65833a6da9a9816b9cf2113024e87229ed7
TSL: Fix `.toVarying()` analyze for optimization (#31090) * fix cache of varying inside a conditional of fragment stage * add `isAssignNode` * improve optimization system for varyings * cleanup * second approach * Update StackNode.js
[ { "path": "src/nodes/core/AssignNode.js", "patch": "@@ -40,6 +40,15 @@ class AssignNode extends TempNode {\n \t\t */\n \t\tthis.sourceNode = sourceNode;\n \n+\t\t/**\n+\t\t * This flag can be used for type testing.\n+\t\t *\n+\t\t * @type {boolean}\n+\t\t * @readonly\n+\t\t * @default true\n+\t\t */\n+\t\tt...
2025-05-13T19:51:35
kubernetes/kubernetes
ab6221517fa877b5571d519f981d2367c2f1cb3f
89900005eed1fdfe3060680bddb69ea2a17ede22
e2e: fix typos in snapshot-metadata testfile Signed-off-by: Praveen M <m.praveen@ibm.com>
[ { "path": "test/e2e/storage/framework/testpattern.go", "patch": "@@ -312,7 +312,7 @@ var (\n \t\tAllowExpansion: true,\n \t}\n \n-\t// Deginition for snapshot metadata\n+\t// Definition for snapshot metadata\n \tSnapshotMetadata = TestPattern{\n \t\tName: \"SnapshotMetadata\",\n \t\tVolTyp...
2026-02-12T04:45:05
golang/go
bb2337f24c8d774ef122e2251f02c5e512c77a55
2622d2955bf1753f548c6ff46d471478933012d5
cmd/go: set GOOS in vet_asm test Not every OS (e.g. aix) supports ARCH=amd64. Fixes #76792 Change-Id: Id92cd247f1e36574192a6079990c686f9ab55910 Reviewed-on: https://go-review.googlesource.com/c/go/+/729220 Commit-Queue: Alan Donovan <adonovan@google.com> TryBot-Bypass: Alan Donovan <adonovan@google.com> Reviewed-by:...
[ { "path": "src/cmd/go/testdata/script/vet_asm.txt", "patch": "@@ -2,6 +2,7 @@\n \n env GO111MODULE=off\n env GOARCH=amd64\n+env GOOS=linux\n \n ! go vet -asmdecl a\n stderr 'f: invalid MOVW of x'", "additions": 1, "deletions": 0, "language": "Plain Text" } ]
2025-12-11T14:45:33
denoland/deno
4f776721191a91d58845ded6a4236ca84f04cf22
60814fb3995f096bab2713f052e740b2049ef41d
fix: `deno info` npm subpath import (#32056) Prevent circular redirects in the output of `deno info --json`
[ { "path": "cli/tools/info.rs", "patch": "@@ -345,8 +345,11 @@ fn add_npm_packages_to_json(\n .map(|path| format!(\"/{}\", path))\n .unwrap_or_default()\n );\n- redirects_to_add\n- .push((specifier.to_string(), new_specifier.clone()));\n+ ...
2026-02-04T16:53:27