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
golang/go
49cdf0c42e320dfed044baa551610f081eafb781
3bf1eecbd30f48851c35f608aa265c978b2cf301
testing, testing/synctest: handle T.Helper in synctest bubbles Fixes #74199 Change-Id: I6a15fbd59a3a3f8c496440f56d09d695e1504e4e Reviewed-on: https://go-review.googlesource.com/c/go/+/682576 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Alan Donovan <adonovan@g...
[ { "path": "src/testing/synctest/helper_test.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+package synctest_test\n+\n+import \"testing\"\n+\n+// helperLo...
2025-06-20T13:44:09
kubernetes/kubernetes
804708df5321206ae6c47eabdaacab8188a6392b
a4f14e57f4850541937659dc1cbfc1a5e5efaebf
/test: use a different image for hostname override e2e tests As discovered in ticket 134737 `hostname` is buggy on busybox due to the musl backend that it uses. something in the /etc/hosts that k8s generates trips its parser and it doesn't work properly in the ipv6 tests. To workaround that use an image that has a gl...
[ { "path": "test/e2e/common/node/pod_hostnameoverride.go", "patch": "@@ -43,7 +43,7 @@ func newTestPod(namespace string) *v1.Pod {\n \t\t\tContainers: []v1.Container{\n \t\t\t\t{\n \t\t\t\t\tName: \"test-pod-hostname-override\",\n-\t\t\t\t\tImage: imageutils.GetE2EImage(imageutils.Agnhost),\n+\t\t\t\t\t...
2025-10-22T10:04:12
denoland/deno
a08d4a09f083b337b7551d8dccf588f9767f5120
46ec01374edb9aa335adf5602323b35bf56588c8
fix(ext/node): emit 'worker' event when a new worker thread is created (#29345) As per title. Enables one Node compat test
[ { "path": "ext/node/polyfills/process.ts", "patch": "@@ -89,7 +89,6 @@ const { NumberMAX_SAFE_INTEGER } = primordials;\n \n const notImplementedEvents = [\n \"multipleResolves\",\n- \"worker\",\n ];\n \n export const argv: string[] = [\"\", \"\"];", "additions": 0, "deletions": 1, "language":...
2025-05-17T07:05:05
swiftlang/swift
6ac43fb25b9047c04c21868023d77cbd4279a913
b6160978736de3c484cfd3c0603d723ed77e3d11
tests: disable `AutoDiff/compiler_crashers_fixed/issue-56649-missing-debug-scopes-in-pullback-trampoline.swift` on linux On linux this test sometimes fails with a linker crash rdar://168025835
[ { "path": "test/AutoDiff/compiler_crashers_fixed/issue-56649-missing-debug-scopes-in-pullback-trampoline.swift", "patch": "@@ -5,6 +5,10 @@\n // https://github.com/apple/swift/issues/56649\n // SIL verification fails when differentiating a function of `[[Double]]`\n \n+// On linux this test sometimes fails ...
2026-01-14T07:28:44
golang/go
4150372a5d2c3b70591efe1ce208f0a92747f1dc
1b87d52549677a1ab3dfc05bb00eb568d81f6a5c
[dev.simd] cmd/compile: don't treat devel compiler as a released compiler The compiler has a logic to print different messages on internal compiler error depending on whether this is a released version of Go. It hides the panic stack trace if it is a released version. It does this by checking the version and see if it...
[ { "path": "src/cmd/compile/internal/base/print.go", "patch": "@@ -220,7 +220,7 @@ func FatalfAt(pos src.XPos, format string, args ...interface{}) {\n \t\tfmt.Printf(\"\\n\")\n \n \t\t// If this is a released compiler version, ask for a bug report.\n-\t\tif Debug.Panic == 0 && strings.HasPrefix(buildcfg.Vers...
2025-06-20T16:02:18
tensorflow/tensorflow
704b84a8d55ed37c2c302599f526379c88f35d5b
6bf52ef9aa4c1e255fe41bdfebd11ec4e0b3e1b5
Fix bug in KernelArgsPackedVector::number_of_arguments `KernelArgs::number_of_arguments()` is supposed to consider the number of shared memory bytes as an argument (if the shared memory is required). This change fixes that assumption and adds a test. PiperOrigin-RevId: 831746579
[ { "path": "third_party/xla/xla/stream_executor/kernel_args_packed_vector.h", "patch": "@@ -40,7 +40,14 @@ class KernelArgsPackedVector : public KernelArgsPackedArrayBase {\n }\n }\n \n- size_t number_of_arguments() const final { return argument_storage_.size(); }\n+ size_t number_of_arguments() cons...
2025-11-13T09:18:41
denoland/deno
2b0d44d8da88ec0ca7fcb1ad5039e3fd731d3b14
97b84669a8a30faea7aa0c78cb836fe92f2e3e26
fix(lsp): lookup bare workspace specifiers for auto-import (#29304)
[ { "path": "cli/lsp/analysis.rs", "patch": "@@ -467,6 +467,12 @@ impl<'a> TsResponseImportMapper<'a> {\n return Some(dep_name);\n }\n \n+ if let Some(bare_package_specifier) =\n+ scoped_resolver.jsr_lookup_bare_specifier_for_workspace_file(specifier)\n+ {\n+ return Some(bare_package...
2025-05-16T20:38:14
kubernetes/kubernetes
9d48e7d2d4090436d37c843fdb63a6ab2f097e46
fb7774f22ad1bdf057a525ee08a05749480523bf
fix missing involvedObject.apiVersion in event
[ { "path": "cmd/kube-proxy/app/server.go", "patch": "@@ -34,7 +34,6 @@ import (\n \t\"k8s.io/apimachinery/pkg/fields\"\n \t\"k8s.io/apimachinery/pkg/labels\"\n \t\"k8s.io/apimachinery/pkg/selection\"\n-\t\"k8s.io/apimachinery/pkg/types\"\n \tutilerrors \"k8s.io/apimachinery/pkg/util/errors\"\n \tutilruntime ...
2025-10-21T14:58:14
mrdoob/three.js
8286a475fd8ee00ef07d1049db9bb1965960057b
cb6c6bc7a666f6379fbfd4c7ba7afbd911a8b79d
typo fixes for installation (#27499) * typo fixes for installation * typo add missing word
[ { "path": "docs/manual/en/introduction/Installation.html", "patch": "@@ -87,7 +87,7 @@ <h3>Development</h3>\n \t\t\t\t\t\t\tnpm uses <i>package.json</i> to describe which versions of each dependency you've installed. If you have other people working on the project with you, they can install the original ver...
2024-01-04T09:41:13
golang/go
3bf1eecbd30f48851c35f608aa265c978b2cf301
8ed23a2936dc5f3cf070c52043dcc0e92563e62b
runtime: fix struct comment Change-Id: I0c33830b13c8a187ac82504c7653abb8f8cf7530 Reviewed-on: https://go-review.googlesource.com/c/go/+/681655 Reviewed-by: Sean Liao <sean@liao.dev> Reviewed-by: Junyang Shao <shaojunyang@google.com> Reviewed-by: Michael Knyszek <mknyszek@google.com> LUCI-TryBot-Result: Go LUCI <golang...
[ { "path": "src/runtime/mheap.go", "patch": "@@ -312,8 +312,10 @@ type heapArena struct {\n \t// during marking.\n \tpageSpecials [pagesPerArena / 8]uint8\n \n-\t// pageUseSpanDartboard is a bitmap that indicates which spans are\n-\t// heap spans and also gcUsesSpanDartboard.\n+\t// pageUseSpanInlineMarkBits...
2025-06-14T11:37:47
tensorflow/tensorflow
a062ff39b7d9f55714c325e78e4b14b33e1918d6
285775b9e68563906bcd5b3925f7864db3c71428
Fix flatbuffer import for large models PiperOrigin-RevId: 831567953
[ { "path": "tensorflow/compiler/mlir/lite/utils/const_tensor_utils.cc", "patch": "@@ -74,7 +74,7 @@ llvm::SmallVector<mlir::APInt> ReadAsHostEndian(ArrayRef<uint8_t> bytes) {\n ret.reserve(elem_count);\n \n const char* data_ptr = reinterpret_cast<const char*>(bytes.data());\n- for (int i = 0; i < elem_c...
2025-11-12T23:40:51
denoland/deno
97b84669a8a30faea7aa0c78cb836fe92f2e3e26
744eaa956d31e8906aab7cfbeab903953b36a6df
fix(node): use `JsErrorClass` for `code` property on node resolver errors (#29294) Superseeds #26631 --------- Signed-off-by: Leo Kettmeir <crowlkats@toaxl.com> Co-authored-by: David Sherret <dsherret@gmail.com>
[ { "path": "Cargo.lock", "patch": "@@ -1879,9 +1879,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_error\"\n-version = \"0.5.6\"\n+version = \"0.5.7\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"19fae9fe305307b5ef3ee4e8244c79cffcca421ab0ce8634dea0c6b1342f220f\"...
2025-05-16T18:54:47
mrdoob/three.js
67dfcd8b35bd0b6365945a316c1838f682125328
de6dd45d7e5aa58fed0fbc1dbe53def3402b39cc
WebGPURenderer: fix renderContext tracking in WebGLBackend (#27490) Co-authored-by: aardgoose <angus.sawyer@email.com>
[ { "path": "examples/jsm/renderers/webgl/WebGLBackend.js", "patch": "@@ -172,9 +172,6 @@ class WebGLBackend extends Backend {\n \n \t\t}\n \n-\n-\t\tthis._currentContext = renderContext;\n-\n \t\tconst occlusionQueryCount = renderContext.occlusionQueryCount;\n \n \t\tif ( occlusionQueryCount > 0 ) {\n@@ -355...
2024-01-04T03:09:44
golang/go
8ed23a2936dc5f3cf070c52043dcc0e92563e62b
ef60769b46c5ef796876c6b4407562646fb27d15
crypto/cipher: fix link to crypto/aes Fixes #74309 Change-Id: I4d97514355d825124a8d879c2590b45b039f5fd1 Reviewed-on: https://go-review.googlesource.com/c/go/+/682596 Reviewed-by: Daniel McCarney <daniel@binaryparadox.net> Reviewed-by: Junyang Shao <shaojunyang@google.com> Reviewed-by: Cherry Mui <cherryyz@google.com>...
[ { "path": "src/crypto/cipher/gcm.go", "patch": "@@ -82,7 +82,7 @@ func newGCM(cipher Block, nonceSize, tagSize int) (AEAD, error) {\n \n // NewGCMWithRandomNonce returns the given cipher wrapped in Galois Counter\n // Mode, with randomly-generated nonces. The cipher must have been created by\n-// [aes.NewCi...
2025-06-20T11:04:22
denoland/deno
08b236b5b7ca3f2d71094c38353f1bfecf50cfb1
637bcffea72d2aaf21bad94cb96295b815675760
Revert "fix(fmt): upgrade markup_fmt and malva" (#29325) Reverts denoland/deno#29168 Ref: https://github.com/g-plane/malva/issues/34
[ { "path": "Cargo.lock", "patch": "@@ -5324,9 +5324,9 @@ dependencies = [\n \n [[package]]\n name = \"malva\"\n-version = \"0.12.0\"\n+version = \"0.11.2\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"5a10a4f69b1fd3c73e65e9b0446904f60019b7a746e10440d89fbb6e1659144b\"\n+...
2025-05-16T10:50:15
tensorflow/tensorflow
285775b9e68563906bcd5b3925f7864db3c71428
800e5a90e027565c9b14743a09328da2f6c95b6b
Fix StableHLO Patch file PiperOrigin-RevId: 831543354
[ { "path": "third_party/xla/third_party/stablehlo/temporary.patch", "patch": "@@ -101,6 +101,17 @@ diff --ruN a/stablehlo/stablehlo/integrations/cpp/builder/StablehloBuilderTest.c\n #include \"mlir/IR/BuiltinAttributes.h\"\n #include \"mlir/IR/BuiltinOps.h\"\n #include \"mlir/IR/DialectRegistry.h\"\n+diff...
2025-11-12T22:34:18
mrdoob/three.js
de6dd45d7e5aa58fed0fbc1dbe53def3402b39cc
aeb40de3859505ee249fd573830a1bbb99b5d685
Examples: Fix `webgpu_morphtargets_face` (#27489)
[ { "path": "examples/webgpu_morphtargets_face.html", "patch": "@@ -75,6 +75,7 @@\n \t\t\t\trenderer.setPixelRatio( window.devicePixelRatio );\n \t\t\t\trenderer.setSize( window.innerWidth, window.innerHeight );\n \t\t\t\trenderer.toneMapping = THREE.ACESFilmicToneMapping;\n+\t\t\t\trenderer.setAnimationLoop(...
2024-01-03T08:06:31
golang/go
8552bcf7c261cd150d0074c4ec7e2412b20af0a5
4c7567290ced9c4dc629f2386f2eebfebba95ce6
cmd/go/internal/fips140: ignore GOEXPERIMENT on error During toolchain selection, the GOEXPERIMENT value may not be valid for the current version (but it is valid for the selected version). In this case, cfg.ExperimentErr is set and cfg.Experiment is nil. Normally cmd/go main exits when ExperimentErr is set, so Exper...
[ { "path": "src/cmd/go/internal/fips140/fips140.go", "patch": "@@ -114,7 +114,11 @@ func Init() {\n \t\tfsys.Bind(Dir(), filepath.Join(cfg.GOROOT, \"src/crypto/internal/fips140\"))\n \t}\n \n-\tif cfg.Experiment.BoringCrypto && Enabled() {\n+\t// ExperimentErr != nil if GOEXPERIMENT failed to parse. Typicall...
2025-06-11T20:46:21
swiftlang/swift
1c2579d65b4a95e0870893236d0abb2c93713405
20dd7577cbdd188bd65e68449132f3e0af527a56
Try to fix linux - the second attempt
[ { "path": "test/embedded/existential-class-bound8.swift", "patch": "@@ -13,7 +13,7 @@\n \n \n // ORIGINBINARY-NOT: e8MyModule0A5ClassCAA08InternalC5BoundAAWP\n-// CLIENTBINARY: {{(S|V)}} _$e8MyModule0A5ClassCAA08InternalC5BoundAAWP\n+// CLIENTBINARY: {{(S|V)}} {{(_)?}}$e8MyModule0A5ClassCAA08InternalC5Bound...
2026-01-13T23:55:04
mrdoob/three.js
aeb40de3859505ee249fd573830a1bbb99b5d685
d28e94e2088800fb169acc914eea8542ce78ab1a
WebGPURenderer: MSAA, Postprocessing and Wireframe support in the WebGL Backend (#27473) * support material.wireframe in webgl backend * fix reattach framebuffer, support msaa and wireframe demo * fix depth samples === 0 * cleanup * more cleanup * more cleanup to the webgl pipeline * postprocessing s...
[ { "path": "examples/files.json", "patch": "@@ -367,7 +367,8 @@\n \t\t\"webgpu_tsl_editor\",\n \t\t\"webgpu_tsl_transpiler\",\n \t\t\"webgpu_video_panorama\",\n-\t\t\"webgpu_postprocessing_afterimage\"\n+\t\t\"webgpu_postprocessing_afterimage\",\n+\t\t\"webgpu_multisampled_renderbuffers\"\n \t],\n \t\"webaud...
2024-01-03T08:00:34
denoland/deno
637bcffea72d2aaf21bad94cb96295b815675760
7b74f385396bded16f99db64b97aa48e6f603f16
fix(check): ignore errors on ambient modules (#29135) This commit makes `deno check` ignore `Cannot find module` diagnostic if the missing module specifier matches one of ambient module pattern. (For example if there's `declare module "*.svg" { ... }` declaration in one of d.ts files, importing of `<any>.svg` doesn't ...
[ { "path": "cli/graph_util.rs", "patch": "@@ -47,6 +47,7 @@ use crate::args::deno_json::TsConfigResolver;\n use crate::args::jsr_url;\n use crate::args::CliLockfile;\n use crate::args::CliOptions;\n+use crate::args::DenoSubcommand;\n pub use crate::args::NpmCachingStrategy;\n use crate::cache;\n use crate::c...
2025-05-16T06:06:34
tensorflow/tensorflow
f068f7e17f8ca48846b34fb54a5c51e485b8fb9c
269aa1db2417509df1a1d3f47da3e9bc7f9869fb
PR #33201: Docs: Error 0102 Imported from GitHub PR https://github.com/openxla/xla/pull/33201 After #32628 🚀 Kind of Contribution 📚 Documentation Copybara import of the project: -- f7eaa2740a83d33aed95ef8fe93ea1fa74766b0c by Mateusz Sokół <mat646@gmail.com>: Doc page for Error 0102 Merging this change closes #...
[ { "path": "third_party/xla/docs/error_codes.md", "patch": "@@ -1,3 +1,5 @@\n # XLA Error codes\n \n This page is a list of all error codes emitted by the XLA compiler.\n+\n+- [E0102](./errors/error_0102.md)", "additions": 2, "deletions": 0, "language": "Markdown" }, { "path": "third_pa...
2025-11-12T20:11:05
golang/go
4c7567290ced9c4dc629f2386f2eebfebba95ce6
c6ac7362888c25dd1251adaa11e1503cf78ec26d
runtime: set mspan limit field early and eagerly Currently the mspan limit field is set after allocSpan returns, *after* the span has already been published to the GC (including the conservative scanner). But the limit field is load-bearing, because it's checked to filter out invalid pointers. A stale limit value coul...
[ { "path": "src/runtime/arena.go", "patch": "@@ -1052,10 +1052,18 @@ func (h *mheap) allocUserArenaChunk() *mspan {\n \th.initSpan(s, spanAllocHeap, spc, base, userArenaChunkPages)\n \ts.isUserArenaChunk = true\n \ts.elemsize -= userArenaChunkReserveBytes()\n-\ts.limit = s.base() + s.elemsize\n \ts.freeindex...
2025-06-18T17:42:16
mrdoob/three.js
d28e94e2088800fb169acc914eea8542ce78ab1a
28f610df9d9fac02c84895dfc054ab2612241f0a
WebGPURenderer: MeshSSSPhysicalNodeMaterial (#27488) * Add MeshSSSPhysicalNodeMaterial * add `webgpu_materials_sss` example * update title * fix from scanning * fix old property name * update default values
[ { "path": "examples/files.json", "patch": "@@ -346,6 +346,7 @@\n \t\t\"webgpu_loader_gltf_sheen\",\n \t\t\"webgpu_loader_materialx\",\n \t\t\"webgpu_materials\",\n+\t\t\"webgpu_materials_sss\",\n \t\t\"webgpu_materials_video\",\n \t\t\"webgpu_materialx_noise\",\n \t\t\"webgpu_multiple_rendertargets\",", ...
2024-01-03T07:23:04
swiftlang/swift
38a9d8389df1eaff2a42568a89baa93a48a6507f
6b3b6608b60515027ed7c7baf418c9383f42f421
Sema: Fix crash when parameterized protocol types define conflicting type witnesses
[ { "path": "include/swift/AST/DiagnosticsSema.def", "patch": "@@ -3266,6 +3266,11 @@ NOTE(associated_type_deduction_default,none,\n \"using associated type default %0\", (Type))\n NOTE(ambiguous_witnesses_type,none,\n \"multiple matching types named %0\", (Identifier))\n+ERROR(ambiguous_associated_...
2026-01-06T17:30:23
denoland/deno
dc29220f4ab76fd4fafeb40f3d7aa572450a997a
3f7b7d612dbe01d71b0b161f43e130534f6b5572
docs(dts): fix typos in API docs (#29301)
[ { "path": "cli/tsc/dts/lib.deno.ns.d.ts", "patch": "@@ -234,7 +234,7 @@ declare namespace Deno {\n * @category Errors */\n export class AlreadyExists extends Error {}\n /**\n- * Raised when an operation to returns data that is invalid for the\n+ * Raised when an operation returns data t...
2025-05-15T07:08:00
tensorflow/tensorflow
bfb40572e26286445d45f5d1382d274e5397b4c3
fa71348f91af6922a58956002d3bf72c8f916be6
[XLA:GPU] Enhance float check debug logging with thunk profile annotations. The main improvement is that we now dump to the log not only the instruction name but instruction itself and if it is a fusion call we also dump to the log the corresponding computation. This change adds a `profile_annotation` field to `Buffe...
[ { "path": "third_party/xla/xla/backends/gpu/runtime/BUILD", "patch": "@@ -3180,6 +3180,7 @@ cc_library(\n \"//xla/stream_executor/gpu:gpu_kernel_registry\",\n \"//xla/tsl/platform:errors\",\n \"//xla/tsl/platform:statusor\",\n+ \"@com_google_absl//absl/base:core_headers\",\n ...
2025-11-12T14:12:28
golang/go
c6ac7362888c25dd1251adaa11e1503cf78ec26d
53af292aed21c3f6ea75d16e5b25f660b2c028fb
runtime: prevent mutual deadlock between GC stopTheWorld and suspendG Almost everywhere we stop the world we casGToWaitingForGC to prevent mutual deadlock with the GC trying to scan our stack. This historically was only necessary if we weren't stopping the world to change the GC phase, because what we were worried abo...
[ { "path": "src/runtime/mgc.go", "patch": "@@ -1048,7 +1048,7 @@ func gcMarkTermination(stw worldStop) {\n \t// N.B. The execution tracer is not aware of this status\n \t// transition and handles it specially based on the\n \t// wait reason.\n-\tcasGToWaitingForGC(curgp, _Grunning, waitReasonGarbageCollectio...
2025-06-14T02:45:08
mrdoob/three.js
564e673db91bbf4cbaad426bbe2232fb20b32cea
17d8eee2ae861732657e15451c5ac7953316bc2f
Examples: SVGLoader - fix triangle segment uv coordinates (#27485)
[ { "path": "examples/jsm/loaders/SVGLoader.js", "patch": "@@ -2924,8 +2924,8 @@ class SVGLoader extends Loader {\n \t\t\taddVertex( currentPointL, u1, 0 );\n \n \t\t\taddVertex( lastPointR, u0, 1 );\n-\t\t\taddVertex( currentPointL, u1, 1 );\n-\t\t\taddVertex( currentPointR, u1, 0 );\n+\t\t\taddVertex( curre...
2024-01-02T14:06:29
denoland/deno
3f7b7d612dbe01d71b0b161f43e130534f6b5572
6fe8fcda33a5eff21425837711df619b6b1fe96c
fix(ext/node): use primordials in `ext/node/polyfills/internal/net.ts` (#29297) Towards #24236. Replaces `Symbol`, `RegExp` and its instance method, `.test()`, with primordial equivalents.
[ { "path": "ext/node/polyfills/internal/net.ts", "patch": "@@ -20,21 +20,21 @@\n // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n // USE OR OTHER DEALINGS IN THE SOFTWARE.\n \n-// TODO(petamoriken): enable prefer-primordials for node polyfills\n-// deno-lint-ignore-file prefer-p...
2025-05-15T07:01:50
kubernetes/kubernetes
81e3dbdc33f0ce9efe5314bd0abb00b8ae4563f4
625cb3c8f13b8c42c6009f327a91e213853b6521
Fix DRAConsumableCapacity to schedule more than one devices Signed-off-by: Sunyanan Choochotkaew <sunyanan.choochotkaew1@ibm.com>
[ { "path": "staging/src/k8s.io/dynamic-resource-allocation/structured/internal/allocatortesting/allocator_testing.go", "patch": "@@ -4458,7 +4458,7 @@ func TestAllocator(t *testing.T,\n \n \t\t\texpectResults: []any{}, // default max requestPolicy is 4, should not allocate even though 6 < 10\n \t\t},\n-\t\t\...
2025-08-26T11:10:12
tensorflow/tensorflow
66507bb5adf5ae01ac65f1d61d8dfc0d05cef5ad
1027f3de21c698279b2c36d3e175f9c8448b14c1
Fix the change in `base_api`
[ { "path": "tensorflow/core/api_def/base_api/api_def_Imag.pbtxt", "patch": "@@ -1,5 +1,12 @@\n op {\n graph_op_name: \"Imag\"\n+ attr {\n+ name: \"Tout\"\n+ description: <<END\n+Need to be `tf.float32` when the type of `x` is `tf.complex64`.\n+Need to be `tf.float64` when the type of `x` is `tf.comp...
2025-11-12T11:54:37
golang/go
1be5eb2686d8050c7067897b1ed98446ff8566c5
3a4d10bfca5cca54b69c50123d1245604c334e0f
[dev.simd] cmd/compile: fix signature error of PairDotProdAccumulate. This CL is generated by CL 682135. Change-Id: I6f004b2eca6323f1ff22555c85db993386f24c6c Reviewed-on: https://go-review.googlesource.com/c/go/+/682155 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed...
[ { "path": "src/cmd/compile/internal/ssa/_gen/simdAMD64.rules", "patch": "@@ -1115,9 +1115,9 @@\n (MaskedSaturatedSubUint8x16 x y mask) => (VPSUBSBMasked128 x y (VPMOVVec8x16ToM <types.TypeMask> mask))\n (MaskedSaturatedSubUint8x32 x y mask) => (VPSUBSBMasked256 x y (VPMOVVec8x32ToM <types.TypeMask> mask))\n...
2025-06-16T22:53:36
mrdoob/three.js
17d8eee2ae861732657e15451c5ac7953316bc2f
3c1a47a4cb526dc6195dae63130b4107cb2cbf54
Fix delete geometry causing the model to disappear (#27484)
[ { "path": "src/objects/BatchedMesh.js", "patch": "@@ -600,7 +600,7 @@ class BatchedMesh extends Mesh {\n \t\tconst active = this._active;\n \t\tif ( active[ id ] === false ) {\n \n-\t\t\treturn this;\n+\t\t\treturn null;\n \n \t\t}\n \n@@ -643,7 +643,7 @@ class BatchedMesh extends Mesh {\n \t\tconst active ...
2024-01-02T09:44:16
denoland/deno
6fe8fcda33a5eff21425837711df619b6b1fe96c
fab9b068782cf0d07183fcf409976e3cd65fb881
fix(ext/node): use primordials in `ext/node/polyfills/internal/validators.mjs` (#29302) Towards #24236. Replaces JS instrinsics with equivalent primordials.
[ { "path": "ext/node/polyfills/internal/validators.mjs", "patch": "@@ -1,13 +1,22 @@\n // Copyright 2018-2025 the Deno authors. MIT license.\n // Copyright Joyent and Node contributors. All rights reserved. MIT license.\n \n-// TODO(petamoriken): enable prefer-primordials for node polyfills\n-// deno-lint-ig...
2025-05-15T07:01:14
swiftlang/swift
5bcdcd1fa62dd352be08ffd64f134cbe7fd699af
95bd190c54c91a0c74f523cdee184f2744d7ac8b
FrontendTool: Stop if SILGen emits diagnostics even when lazy type checking is off We've had several bugs lately where SILGen produces a diagnostic, but the resulting invalid SIL causes crashes further down in the mandatory pipeline. To prevent this from happening, just stop after SILGen if diagnostics were emitted, e...
[ { "path": "lib/FrontendTool/FrontendTool.cpp", "patch": "@@ -2053,11 +2053,11 @@ static bool performCompileStepsPostSILGen(\n return writeSIL(*SM, PSPs, Instance, Invocation.getSILOptions());\n }\n \n- // In lazy typechecking mode, SILGen may have triggered requests which\n- // resulted in errors. W...
2026-01-13T14:18:22
mrdoob/three.js
3f19a059c875a7f8621ff5b3cb64efab42971459
1d3895dcff6cb8c6241d8c608578eff5e84598a7
WebGPURenderer: Support KTX Compressed texture in the WebGL Backend (#27463) * wip * cleanup webgl backend * cleanup and add silentError * cleanup WebGLTextureUtils * move textures to textureutils * remove handling error in hasFeatre
[ { "path": "examples/jsm/loaders/KTX2Loader.js", "patch": "@@ -126,11 +126,11 @@ class KTX2Loader extends Loader {\n \n \t\t\tthis.workerConfig = {\n \t\t\t\tastcSupported: renderer.hasFeature( 'texture-compression-astc' ),\n-\t\t\t\tetc1Supported: false,\n+\t\t\t\tetc1Supported: renderer.hasFeature( 'textur...
2023-12-31T18:25:43
golang/go
53af292aed21c3f6ea75d16e5b25f660b2c028fb
d05825468921f8d0e54c81f59330d3b263057a54
encoding/json/jsontext: fix spelling error Change-Id: Ic1f385afbe35addba8b3c439ccb64c56b1d300c9 Reviewed-on: https://go-review.googlesource.com/c/go/+/681795 Reviewed-by: Sean Liao <sean@liao.dev> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Joseph Tsai <joetsa...
[ { "path": "src/encoding/json/jsontext/doc.go", "patch": "@@ -10,7 +10,7 @@\n // primitive data types such as booleans, strings, and numbers,\n // in addition to structured data types such as objects and arrays.\n //\n-// This package (encoding/json/jsontxt) is experimental,\n+// This package (encoding/json/...
2025-06-16T05:51:57
tensorflow/tensorflow
18fe05b778dac1152e0964f1d0ddbdb31b7ad41f
573976b87ab1e000b00b6f25c56a7a5040e07d32
Fixed the change in `base_api` instead of `python_api`
[ { "path": "tensorflow/core/api_def/base_api/api_def_ComplexAbs.pbtxt", "patch": "@@ -1,5 +1,12 @@\n op {\n graph_op_name: \"ComplexAbs\"\n+ attr {\n+ name: \"Tout\"\n+ description: <<END\n+Need to be `tf.float32` when the type of `x` is `tf.complex64`.\n+Need to be `tf.float64` when the type of `x`...
2025-11-12T11:51:04
denoland/deno
fab9b068782cf0d07183fcf409976e3cd65fb881
6daaf0e1a600e0233d6768b8499f3b6d7ca67d75
fix(fmt): fail command when embedded language has syntax error (#29259)
[ { "path": "Cargo.lock", "patch": "@@ -3263,9 +3263,9 @@ dependencies = [\n \n [[package]]\n name = \"dprint-plugin-typescript\"\n-version = \"0.95.2\"\n+version = \"0.95.3\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"308b7fac4a5579ca0d89338ac2eed093a9e06cbef60bc04112...
2025-05-15T01:51:48
mrdoob/three.js
eda87b223e41dd4a6d5d1cc96c576d15953372af
4326c9fab90d7893b4f8dd6601c69853629d7bbb
WebGPURenderer: Fix Renderer `dispose()` (#27471) * fix dispose * temporary remove _properties
[ { "path": "examples/jsm/renderers/common/DataMap.js", "patch": "@@ -45,7 +45,7 @@ class DataMap {\n \n \tdispose() {\n \n-\t\tthis.data.clear();\n+\t\tthis.data = new WeakMap();\n \n \t}\n ", "additions": 1, "deletions": 1, "language": "JavaScript" }, { "path": "examples/jsm/renderers/co...
2023-12-30T15:20:21
swiftlang/swift
95bd190c54c91a0c74f523cdee184f2744d7ac8b
355424f8b50f2b7b97f64f86854176e39ce667d3
[test] Add some more known crashers
[ { "path": "validation-test/IDE/crashers/GenericSignatureImpl-getSuperclassBound-251862.swift", "patch": "@@ -0,0 +1,8 @@\n+// {\"kind\":\"complete\",\"original\":\"89b4bdea\",\"signature\":\"swift::GenericSignatureImpl::getSuperclassBound(swift::Type) const\"}\n+// RUN: not --crash %target-swift-ide-test -c...
2026-01-07T00:19:26
golang/go
3254c2bb8308690a88a9f62b7f51c84d80325e79
816199e421f743324e9c1c82bda22d1d0f53845c
internal/reflectlite: fix comment about meaning of flag field Copied current (presumably correct) comment text from reflect package. Change-Id: I19582b3675fbcb96a925002498d24ad2b7bc6178 Reviewed-on: https://go-review.googlesource.com/c/go/+/681935 Reviewed-by: Keith Randall <khr@google.com> LUCI-TryBot-Result: Go LUC...
[ { "path": "src/internal/reflectlite/value.go", "patch": "@@ -43,17 +43,19 @@ type Value struct {\n \tptr unsafe.Pointer\n \n \t// flag holds metadata about the value.\n-\t// The lowest bits are flag bits:\n+\t//\n+\t// The lowest five bits give the Kind of the value, mirroring typ.Kind().\n+\t//\n+\t// The ...
2025-06-14T23:38:26
kubernetes/kubernetes
f2a4ffd5b8b945e398c59bdba295692a90e50e29
fb7774f22ad1bdf057a525ee08a05749480523bf
Promote ContainerRestartRules to beta Fix prober not running properly with containerRestartRules and add unit test coverage
[ { "path": "pkg/features/kube_features.go", "patch": "@@ -1128,6 +1128,7 @@ var defaultVersionedKubernetesFeatureGates = map[featuregate.Feature]featuregate\n \n \tContainerRestartRules: {\n \t\t{Version: version.MustParse(\"1.34\"), Default: false, PreRelease: featuregate.Alpha},\n+\t\t{Version: version.Mus...
2025-10-15T22:04:40
tensorflow/tensorflow
4e2f5ad6bd94e16c3509884cd7f76477d51bb331
7fca0de608e8d7ddc0ea9b1b1b512a6f1a68db8d
Fixed the linter issue
[ { "path": "tensorflow/python/ops/linalg/linear_operator_toeplitz.py", "patch": "@@ -140,7 +140,8 @@ def __init__(self,\n \n Raises:\n ValueError: If `is_square` is `False`.\n- ValueError: If `is_positive_definite` is `True` and `is_non_singular` is `False`.\n+ ValueError: If `is_posit...
2025-11-12T11:42:10
denoland/deno
938803ae6e5ea2e70c4b2eccab86eee7d0d83d23
412426511a056c582ca16d82a86a4648847c7741
fix(repl): use object_id for repl internal (#29163) Closes https://github.com/denoland/deno/issues/26599 Closes https://github.com/denoland/deno/issues/29121 This PR use object_id to interact with repl internal, instead of global variable (`__DENO_REPL_INTERNALS_{seconds}__`), so we don't need to hide this in complet...
[ { "path": "cli/tools/jupyter/server.rs", "patch": "@@ -36,7 +36,6 @@ use uuid::Uuid;\n \n use super::JupyterReplProxy;\n use crate::cdp;\n-use crate::tools::repl;\n \n pub struct JupyterServer {\n execution_count: ExecutionCount,\n@@ -322,11 +321,7 @@ impl JupyterServer {\n )\n .aw...
2025-05-14T15:44:24
mrdoob/three.js
dfbee3c483d9eb39529161a35650e369c5e77a35
2f731051b896a5ac438d35e797f48d3b611de8e3
OrbitControls: fix pinch zoom behaviour (#27446) Signed-off-by: Guilherme Avila <3927951+sciecode@users.noreply.github.com>
[ { "path": "examples/jsm/controls/OrbitControls.js", "patch": "@@ -483,6 +483,8 @@ class OrbitControls extends EventDispatcher {\n \t\tconst pointers = [];\n \t\tconst pointerPositions = {};\n \n+\t\tlet controlActive = false;\n+\n \t\tfunction getAutoRotationAngle( deltaTime ) {\n \n \t\t\tif ( deltaTime !=...
2023-12-28T02:58:01
golang/go
816199e421f743324e9c1c82bda22d1d0f53845c
ea00461b17c7579d1c9aff2398953b61747ce642
runtime: don't let readTrace spin on trace.shutdown Issue #74045 describes a scenario in which gopark is inlined into readTrace, such that there are no preemption points. This is only a problem because readTrace spins if trace.shutdown is set, through traceReaderAvailable. However, trace.shutdown is almost certainly o...
[ { "path": "src/runtime/trace.go", "patch": "@@ -956,7 +956,7 @@ func traceReader() *g {\n // scheduled and should be. Callers should first check that\n // (traceEnabled() || traceShuttingDown()) is true.\n func traceReaderAvailable() *g {\n-\t// There are three conditions under which we definitely want to s...
2025-06-10T21:44:56
swiftlang/swift
58b0e565f0204f6aadbef4d3050663bbe5e821fc
6b0c2330422ac3300b0eaaaf3602fcd6b15674ac
[stdlib] preserve items appended until a thrown error
[ { "path": "stdlib/public/core/Array.swift", "patch": "@@ -1651,8 +1651,8 @@ extension Array {\n /// At the end of the closure, `span`'s `count` elements will have been\n /// appended to the array.\n ///\n- /// If the closure throws an error, the array will be reverted to its initial\n- /// state.\n+...
2026-01-13T22:59:30
kubernetes/kubernetes
0a301490f61bbddf426d9bb49356172b00a2e0eb
8b9498b07db757fddb6da81a5aa077f248f4c2df
Fixing k8s.io/kubernetes/pkg/kubelet/kuberuntime unit tests on Windows Signed-off-by: Mark Rossetti <marosset@microsoft.com>
[ { "path": "pkg/kubelet/kuberuntime/kuberuntime_container_test.go", "patch": "@@ -246,6 +246,9 @@ func TestToKubeContainerStatus(t *testing.T) {\n // TestToKubeContainerStatusWithResources tests the converting the CRI container status to\n // the internal type (i.e., toKubeContainerStatus()) for containers t...
2025-02-14T21:20:21
denoland/deno
412426511a056c582ca16d82a86a4648847c7741
5e171ad3172c76771054ec60e760f0b4ae61fad5
feat(otel): add events for boot failure and uncaught error (#29287) This commit adds "boot_failure" and "uncaught_exception" events that are sent when a worker crashes during `deno run`.
[ { "path": "Cargo.toml", "patch": "@@ -269,7 +269,7 @@ zip = { version = \"2.4.1\", default-features = false, features = [\"flate2\"] }\n \n opentelemetry = \"0.27.0\"\n opentelemetry-http = \"0.27.0\"\n-opentelemetry-otlp = { version = \"0.27.0\", features = [\"logs\", \"http-proto\", \"http-json\"] }\n+ope...
2025-05-14T10:20:12
mrdoob/three.js
cd614f62e9a07e769161668c55afb40873910732
a3ef45934030cb2e9dd6af24d2e1f69652139026
Addons: auto-fix linting problems (#27457) Brings 93 problems (60 errors, 33 warnings) down to 37 problems (4 errors, 33 warnings).
[ { "path": "examples/jsm/controls/OrbitControls.js", "patch": "@@ -373,14 +373,14 @@ class OrbitControls extends EventDispatcher {\n \t\t\t\t\t}\n \n \t\t\t\t} else if ( scope.object.isOrthographicCamera ) {\n-\t\t\t\t\t\n+\n \t\t\t\t\tzoomChanged = scale !== 1;\n \n \t\t\t\t\tif ( zoomChanged ) {\n \n \t\t\...
2023-12-27T21:56:39
golang/go
ea00461b17c7579d1c9aff2398953b61747ce642
96a6e147b2b02b1f070d559cb2c8e1c25c9b78c3
internal/trace: make Value follow reflect conventions A previous change renamed Value.Uint64 to Value.ToUint64 to accomodate string values. The method for a string value is then Value.ToString, while the method for a debug string (for example, for fmt) is just called String, as per fmt.Stringer. This change follows a...
[ { "path": "src/cmd/trace/gen.go", "patch": "@@ -283,11 +283,11 @@ func (g *globalMetricGenerator) GlobalMetric(ctx *traceContext, ev *trace.Event)\n \tm := ev.Metric()\n \tswitch m.Name {\n \tcase \"/memory/classes/heap/objects:bytes\":\n-\t\tctx.HeapAlloc(ctx.elapsed(ev.Time()), m.Value.ToUint64())\n+\t\tc...
2025-06-11T21:35:29
swiftlang/swift
b214eed78e25f36762fa20da235c6e7981982145
d5ed01666ef8c87cdbf12979fe0755d91bd79f37
Specify a module ABI name suffix for the Darwin toolchain copy of Swift Testing (#86305) This adopts a new CMake setting being added to Swift Testing in https://github.com/swiftlang/swift-testing/pull/1471 which allows specifying a suffix for the ABI names of that project's modules. For more background context on this...
[ { "path": "utils/swift_build_support/swift_build_support/products/swift_testing.py", "patch": "@@ -102,6 +102,11 @@ def build(self, host_target):\n if Version(self.args.darwin_deployment_version_osx) < Version('10.15'):\n override_deployment_version = '10.15'\n \n+ # O...
2026-01-13T22:35:59
denoland/deno
5437871a526cd0bca078ec9346fd7d77d62efcd4
df7ddfc7dfb494dd9a6025a39ed9f1c1bdf227c0
fix(ext/node): use primordials in `ext/node/polyfills/internal/stream_base_commons.ts` (#29290) Towards #24236. Replaces JS intrinsics with primordial equivalents. Lint "ignore" statements were added for `Readable` stream instances.
[ { "path": "ext/node/polyfills/internal/stream_base_commons.ts", "patch": "@@ -20,9 +20,6 @@\n // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n // USE OR OTHER DEALINGS IN THE SOFTWARE.\n \n-// TODO(petamoriken): enable prefer-primordials for node polyfills\n-// deno-lint-ignore...
2025-05-14T09:54:23
mrdoob/three.js
00f29b8f281c2b987bef8eb593efa8aad68d9e68
e852478997ce767788817244d5340a8e31ac2f5e
WebGPURenderer: Fix Geometry does not have the Attribute requested by the Material (#27454) * WebGPURenderer: Fix Geometry does not have the Attribute * cleanup
[ { "path": "examples/jsm/renderers/common/RenderObject.js", "patch": "@@ -82,6 +82,8 @@ export default class RenderObject {\n \n \t\t\tconst attribute = nodeAttribute.node && nodeAttribute.node.attribute ? nodeAttribute.node.attribute : geometry.getAttribute( nodeAttribute.name );\n \n+\t\t\tif ( attribute =...
2023-12-27T19:11:25
golang/go
b9a548775fda6a74de8ab2020b2b95b4ebf1a2a9
ca01eab9c7c9c4987a36f6887e332a1fcba757f0
cmd/compile: add up-to-date test for generated files This runs the ssa/_gen generator writing files into a temporary directory, and then checks that there are no differences with what is currently in the ssa directory, and also checks that any file with the "generated from _gen/..." header was actually generated, and ...
[ { "path": "src/cmd/compile/internal/ssa/_gen/README", "patch": "@@ -9,3 +9,8 @@ more information.\n \n To regenerate everything, run \"go generate\" on the ssa package\n in the parent directory.\n+\n+The parent directory contains a test in generate_test.go that will fail\n+if the generated files are not up-...
2025-06-10T18:15:46
tensorflow/tensorflow
6351a8099ef38c90f9a187b14ee5d21c138c1516
3cb3c49ddc57bfc78b1396e0f1b4649efee5a35f
[XLA:GPU] Add support for detecting infinite values in XLA GPU. This change introduces a new debug option `xla_gpu_detect_inf` to enable checking for infinite values in kernel outputs. Similar to NaN detection, users can choose between "none", "warning", and "fail" modes. When enabled, additional thunks are added to t...
[ { "path": "third_party/xla/xla/backends/gpu/runtime/thunk_buffer_debug_checksum.cc", "patch": "@@ -157,25 +157,6 @@ absl::Status DumpBufferDebugChecksumLog(\n VLOG(1) << \"read \" << buffer_debug_log_proto.entries_size() << \" entries\";\n DumpPerExecutionProtobufToFile(*hlo_module, buffer_debug_log_pro...
2025-11-12T10:53:22
denoland/deno
df7ddfc7dfb494dd9a6025a39ed9f1c1bdf227c0
63952553110bf78ed6a99f3fb5da4584781c3373
fix(ext/node): use primordials in `ext/node/polyfills/internal/url.ts` (#29146) Towards #24236.
[ { "path": "ext/node/polyfills/internal/url.ts", "patch": "@@ -1,17 +1,23 @@\n // Copyright 2018-2025 the Deno authors. MIT license.\n \n-// TODO(petamoriken): enable prefer-primordials for node polyfills\n-// deno-lint-ignore-file prefer-primordials\n-\n import { fileURLToPath } from \"node:url\";\n import ...
2025-05-13T23:30:44
mrdoob/three.js
60ee95f25de408aa97543b4fd5f497309c2a26aa
9b59e9be355bca7012080dc9f796622c5d92032c
LUT Loaders: Add support for FloatType and add docs (#27431) * Update LUT loaders * Add docs for LUT loaders * Fix lint issues * Update list.json * Add module name to error messages * Remove unnecessary code * Update comment
[ { "path": "docs/examples/en/loaders/LUT3dlLoader.html", "patch": "@@ -0,0 +1,84 @@\n+<!DOCTYPE html>\n+<html lang=\"en\">\n+\t<head>\n+\t\t<meta charset=\"utf-8\" />\n+\t\t<base href=\"../../../\" />\n+\t\t<script src=\"page.js\"></script>\n+\t\t<link type=\"text/css\" rel=\"stylesheet\" href=\"page.css\" /...
2023-12-27T11:06:29
golang/go
5a08865de339b5eeb8ad1c52635ea8ba505aafec
d166a0b03e88e3ffe17a5bee4e5405b5091573c6
net: remove some BUG entries A few methods that were not implemented on Windows are implemented in CL 668195. Change-Id: I35423792a5af00f29fcd24e56a6dfcf013669371 Reviewed-on: https://go-review.googlesource.com/c/go/+/680180 Reviewed-by: Quim Muntal <quimmuntal@gmail.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@lu...
[ { "path": "src/net/iprawsock.go", "patch": "@@ -24,9 +24,6 @@ import (\n // BUG(mikio): On JS and Plan 9, methods and functions related\n // to IPConn are not implemented.\n \n-// BUG(mikio): On Windows, the File method of IPConn is not\n-// implemented.\n-\n // IPAddr represents the address of an IP end po...
2025-06-09T20:59:00
kubernetes/kubernetes
95c42b99515f1a4e393cc0b2a9d75eca2cfec583
cf96486aed882712d7c52406d16d22157aebded7
Fix rebase issues
[ { "path": "pkg/apis/resource/v1beta1/zz_generated.validations.go", "patch": "@@ -502,6 +502,9 @@ func Validate_DeviceClassSpec(ctx context.Context, op operation.Operation, fldPa\n \t\t\t\treturn nil\n \t\t\t}\n \t\t\t// call field-attached validations\n+\t\t\tif e := validate.OptionalPointer(ctx, op, fldPat...
2025-10-02T19:00:38
denoland/deno
63952553110bf78ed6a99f3fb5da4584781c3373
784c6a5296b84217123a6c2c50285f57b5bf036d
chore: fix workflow failure on lts post publish (#29288)
[ { "path": ".github/workflows/post_publish.yml", "patch": "@@ -31,4 +31,4 @@ jobs:\n - name: Upload version file to dl.deno.land\n run: |\n echo ${GITHUB_REF#refs/*/} > release-latest.txt\n- deno run --allow-net tools/release/version_greater_latest.ts ${GITHUB_REF#refs/*/} &&...
2025-05-13T23:23:36
mrdoob/three.js
9b59e9be355bca7012080dc9f796622c5d92032c
c8252d3ec82412bdd8db0efcdbd77440e8af10dc
Update RectAreaLight.html (#27441) Fix a error
[ { "path": "docs/api/zh/lights/RectAreaLight.html", "patch": "@@ -33,7 +33,7 @@ <h2>代码示例</h2>\n \t\trectLight.lookAt( 0, 0, 0 );\n \t\tscene.add( rectLight )\n \n-\t\trectLightHelper = new RectAreaLightHelper( rectLight );\n+\t\tconst rectLightHelper = new RectAreaLightHelper( rectLight );\n \t\tscene.add( r...
2023-12-27T09:49:58
tensorflow/tensorflow
dec2b02416665a5bb665336de5ef78d2eb9da1f2
b9f5ea7f218793cbbb853f4a1d49e0057a591d53
PR #31348: [ROCm] added rocm7 support to EnablePeerAccess Imported from GitHub PR https://github.com/openxla/xla/pull/31348 Since rocm7, hipGetLastError returns last error even if last call was successful. This change makes it possible to work correctly with rocm7. We need to call hipGetLastError to reset per thread...
[ { "path": "third_party/xla/xla/stream_executor/rocm/rocm_driver_wrapper.h", "patch": "@@ -49,8 +49,8 @@ namespace wrap {\n auto hipSymbolName(Args... args) -> decltype(::hipSymbolName(args...)) { \\\n using FuncPtrT = std::add_pointer<decltype(::hipSymbolName)>::type; \\\n static FuncPtrT loa...
2025-11-12T08:56:51
swiftlang/swift
e2f1d08c1ec2c3bc317dbb5ae99c0e02c6c98570
74c2731fc94be027a89dcc5cb52ecfe00ebf9d38
Sema: Add a couple of LLVM_DEBUGs
[ { "path": "lib/Sema/AssociatedTypeInference.cpp", "patch": "@@ -1341,8 +1341,10 @@ class TypeReprCycleCheckWalker : private ASTWalker {\n \n // If we already have an interface type, don't bother trying to\n // avoid a cycle.\n- if (witness->hasInterfaceType())\n+ if (witness->hasInterfaceType(...
2026-01-13T21:54:21
golang/go
d4c6effaa7b95a2ea149ece4a400c0ace2773839
7fa2c736b3dbcc741b4575f4df758532aaee34f7
cmd/compile: add up-to-date test for generated files This runs the ssa/_gen generator writing files into a temporary directory, and then checks that there are no differences with what is currently in the ssa directory, and also checks that any file with the "generated from _gen/..." header was actually generated, and ...
[ { "path": "src/cmd/compile/internal/ssa/_gen/README", "patch": "@@ -9,3 +9,8 @@ more information.\n \n To regenerate everything, run \"go generate\" on the ssa package\n in the parent directory.\n+\n+The parent directory contains a test in generate_test.go that will fail\n+if the generated files are not up-...
2025-06-10T18:15:46
mrdoob/three.js
d3bd0d885f133a38771bfdaebb1baab49caaac51
8738774b90bc7df48e011682d918c0f9e4405ab3
WebGPURenderer: Fix alpha canvas in WebGPU (#27442) * fix alpha background in webgpu * fix whitespace
[ { "path": "examples/jsm/renderers/common/Renderer.js", "patch": "@@ -30,6 +30,7 @@ class Renderer {\n \n \t\tconst {\n \t\t\tlogarithmicDepthBuffer = false,\n+\t\t\talpha = true\n \t\t} = parameters;\n \n \t\t// public\n@@ -43,6 +44,8 @@ class Renderer {\n \t\tthis.autoClearDepth = true;\n \t\tthis.autoClea...
2023-12-26T13:33:38
kubernetes/kubernetes
3968f7ec5d602a4097d5ba916c18ba632723b871
a4f14e57f4850541937659dc1cbfc1a5e5efaebf
apis/apps/fuzzer: add missing MaxUnavailable defaulting Include defaulting in the StatefulSet fuzzer for the field RollingUpdate.MaxUnavailable, otherwise when the feature gate MaxUnavailableStatefulSet is enabled it changes the default in SetDefaults_StatefulSet from /pkg/apis/apps/v1/defaults.go. That can cause err...
[ { "path": "pkg/apis/apps/fuzzer/fuzzer.go", "patch": "@@ -26,6 +26,7 @@ import (\n \truntimeserializer \"k8s.io/apimachinery/pkg/runtime/serializer\"\n \t\"k8s.io/apimachinery/pkg/util/intstr\"\n \t\"k8s.io/kubernetes/pkg/apis/apps\"\n+\t\"k8s.io/utils/ptr\"\n )\n \n // Funcs returns the fuzzer functions fo...
2025-10-21T17:03:57
denoland/deno
784c6a5296b84217123a6c2c50285f57b5bf036d
527c7401d544f2b9c769e28d866f20f25b696377
fix(check): do not add `@types/node@*` to lockfile if a `@types/node` req already exists (#29270)
[ { "path": "Cargo.lock", "patch": "@@ -2345,9 +2345,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_npm\"\n-version = \"0.33.2\"\n+version = \"0.33.3\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"5217eb9aaebd02e92baeea7b474ca3f663b611204ccbfba11f8d296be08abe69\"...
2025-05-13T22:44:54
tensorflow/tensorflow
b9f5ea7f218793cbbb853f4a1d49e0057a591d53
b15ba07ff222fe11d0453bb11137aa3dd22938bc
Fix test breakage when address/memory/thread sanitizer was enabled also on Apple. Tsan seems not to work with `mstats()` (other sanitizers are fine). As per `lite/profiling/BUILD:160`, this could happen, but due to how `tflite_portable_test_suite_combined` rule works, this test will be included if the tsan flag is pas...
[ { "path": "tensorflow/lite/profiling/memory_info_test.cc", "patch": "@@ -74,26 +74,30 @@ TEST(MemoryUsage, GetMemoryUsage) {\n }\n \n EXPECT_GE(result.mem_footprint_kb, size / 1024);\n-#if !defined(__linux__) || \\\n- (!defined(ADDRESS_SANITIZER) && !defined(MEM...
2025-11-12T08:50:14
swiftlang/swift
74c2731fc94be027a89dcc5cb52ecfe00ebf9d38
355424f8b50f2b7b97f64f86854176e39ce667d3
Sema: Narrow down cycle-breaking hack in TypeChecker::lookupMemberType() It's okay if we're in the middle of associated type inference, as long as we've already recorded the type witness we're looking for! This fixes a regression from 62e4979691570df8e66452eed5be71ce69c7aa54, but what's notable is the cycle breaking ...
[ { "path": "lib/Sema/TypeCheckNameLookup.cpp", "patch": "@@ -561,11 +561,13 @@ LookupTypeResult TypeChecker::lookupMemberType(DeclContext *dc,\n auto *concrete = conformance.getConcrete();\n auto *normal = concrete->getRootNormalConformance();\n \n- // This is the only case where NormalProto...
2026-01-13T21:42:58
golang/go
7fa2c736b3dbcc741b4575f4df758532aaee34f7
281cfcfc1b15fbb87fd32660b0a1d50be996d108
os: disallow Root.Remove(".") on Plan 9, js, and Windows Windows already forbids this, since removing the root causes a sharing violation (can't delete the directory while the os.Root has a handle open to it), but add a more explicit check for attempts to delete "." and return EINVAL. Note that this change to Windows...
[ { "path": "src/internal/syscall/windows/at_windows.go", "patch": "@@ -192,6 +192,11 @@ func Mkdirat(dirfd syscall.Handle, name string, mode uint32) error {\n }\n \n func Deleteat(dirfd syscall.Handle, name string, options uint32) error {\n+\tif name == \".\" {\n+\t\t// NtOpenFile's documentation isn't expli...
2025-06-05T21:27:45
mrdoob/three.js
85b3ee713ae64ac1db20fd9dd29d2892d10fab3d
1cd56c46ba996de8ce975b371d8cd117e6e3aa1c
examples: GTAOPass fix setting of PERSPECTIVE_CAMERA (#27436)
[ { "path": "examples/jsm/postprocessing/GTAOPass.js", "patch": "@@ -61,7 +61,7 @@ class GTAOPass extends Pass {\n \t\t\tdepthTest: false,\n \t\t\tdepthWrite: false,\n \t\t} );\n-\t\tthis.gtaoMaterial.definesPERSPECTIVE_CAMERA = this.camera.isPerspectiveCamera ? 1 : 0;\n+\t\tthis.gtaoMaterial.defines.PERSPECT...
2023-12-24T10:39:56
denoland/deno
527c7401d544f2b9c769e28d866f20f25b696377
658489e92c3058327694fa848115e33312efbfd7
fix(ext/node): use primordials in `ext/node/polyfills/internal/normalize_encoding.mjs` (#29283) Towards #24236. Replaces the `.toLowerCase` method with its equivalent primordial method.
[ { "path": "ext/node/polyfills/internal/normalize_encoding.mjs", "patch": "@@ -1,7 +1,7 @@\n // Copyright 2018-2025 the Deno authors. MIT license.\n \n-// TODO(petamoriken): enable prefer-primordials for node polyfills\n-// deno-lint-ignore-file prefer-primordials\n+import { primordials } from \"ext:core/mod...
2025-05-13T22:03:04
tensorflow/tensorflow
92f53bf012fcdee94a21622c0ade569bfe98731c
630956bed0a5f8d6a3d0bbc29ee6ba26289088cc
[XLA:GPU] Refactor BufferDebugLog to be a template class. This change makes `BufferDebugLog` a template class `BufferDebugLog<Entry>`, inheriting from a new `BufferDebugLogBase`. This allows methods like `RequiredSizeForEntries`, `CreateOnDevice`, and `ReadFromDevice` to be type-safe and simplifies their usage by remo...
[ { "path": "third_party/xla/xla/backends/gpu/runtime/buffers_checksum_thunk.cc", "patch": "@@ -107,8 +107,9 @@ absl::Status BuffersDebugChecksumThunk::ExecuteOnStream(\n \n se::DeviceMemory<uint8_t> log_ptr(\n params.buffer_allocations->GetDeviceAddress(log_slice_));\n- se::gpu::BufferDebugLog buffe...
2025-11-11T17:49:30
golang/go
281cfcfc1b15fbb87fd32660b0a1d50be996d108
4f86f2267167a63b673c4a2a2994e008b32c90ea
runtime: handle system goroutines later in goroutine profiling Before CL 650697, there was only one system goroutine that could dynamically change between being a user goroutine and a system goroutine, and that was the finalizer/cleanup goroutine. In goroutine profiles, it was handled explicitly. It's status would be ...
[ { "path": "src/runtime/mprof.go", "patch": "@@ -1431,10 +1431,6 @@ func tryRecordGoroutineProfile(gp1 *g, pcbuf []uintptr, yield func()) {\n \t\t// so here we check _Gdead first.\n \t\treturn\n \t}\n-\tif isSystemGoroutine(gp1, false) {\n-\t\t// System goroutines should not appear in the profile.\n-\t\tretu...
2025-06-10T16:42:59
mrdoob/three.js
a797aca01f4abbb9d776c2ad03e1129aa40a2283
93b292382c8d210dac7f9275e7b391c468453817
OrbitControls: fix Orthographic 'change' event (#27424) * OrbitControls: fix Orthographic 'change' event Signed-off-by: Guilherme Avila <3927951+sciecode@users.noreply.github.com> * OrbitControls: only recalculate when zoom has changed Signed-off-by: Guilherme Avila <3927951+sciecode@users.noreply.github.com>...
[ { "path": "examples/jsm/controls/OrbitControls.js", "patch": "@@ -373,10 +373,15 @@ class OrbitControls extends EventDispatcher {\n \t\t\t\t\t}\n \n \t\t\t\t} else if ( scope.object.isOrthographicCamera ) {\n+\t\t\t\t\t\n+\t\t\t\t\tzoomChanged = scale !== 1;\n \n-\t\t\t\t\tscope.object.zoom = Math.max( scop...
2023-12-24T10:08:31
swiftlang/swift
5d74bcd57cde8dc2be915ad07a271b9daad23448
61a8c6abaa010c8e9c42550a8b6b23a4f82a443a
[MiscDiagnostics] Modernize `checkUseOfMetaTypeName` This is a follow-up to https://github.com/swiftlang/swift/pull/86499. Make sure that the error is downgraded even when there is no parent expression, this covers pattern binding initializer expressions which started to error after `DynamicSelf` change. Replace a c...
[ { "path": "include/swift/AST/DiagnosticsSema.def", "patch": "@@ -5005,8 +5005,7 @@ ERROR(value_of_module_type,none,\n \"expected module member name after module name\", ())\n \n ERROR(value_of_metatype_type,none,\n- \"expected member name or initializer call after type name%select{|; this \"\n- ...
2026-01-13T18:06:45
denoland/deno
658489e92c3058327694fa848115e33312efbfd7
b384bd343371baf2088a9542c03e027d0023d072
fix: use v8 instead of swc for explicit resource management (#29282)
[ { "path": "Cargo.lock", "patch": "@@ -473,22 +473,13 @@ version = \"0.22.1\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n checksum = \"72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6\"\n \n-[[package]]\n-name = \"base64-simd\"\n-version = \"0.7.0\"\n-source = \"reg...
2025-05-13T19:34:12
kubernetes/kubernetes
49e4fe9d2ba73c93f726690ac5634e0c5a953269
183e01c6f2098710540bcc9cfa40bc8055eb31a6
kubelet: fix kubeletconfig.cgroupDriver in configz Reflect the correct cgroupDriver setting in the configz enpoint in case the cgroup driver setting is received from the CRI. Moves the initialization of the configz handler to a slightly later phase where the CRI has been queried.
[ { "path": "cmd/kubelet/app/server.go", "patch": "@@ -650,12 +650,6 @@ func run(ctx context.Context, s *options.KubeletServer, kubeDeps *kubelet.Depend\n \t\t}\n \t}\n \n-\t// Register current configuration with /configz endpoint\n-\terr = initConfigz(ctx, &s.KubeletConfiguration)\n-\tif err != nil {\n-\t\tl...
2025-10-20T17:19:04
mrdoob/three.js
93b292382c8d210dac7f9275e7b391c468453817
3c8d309ed5bc932d4ae0a51bc1129070ef8de174
fix: update vertices according uv.y when linecap is square (#27429)
[ { "path": "examples/jsm/loaders/SVGLoader.js", "patch": "@@ -3082,7 +3082,8 @@ class SVGLoader extends Loader {\n \t\t\t\t\t\t} else {\n \n \t\t\t\t\t\t\ttempV2_3.toArray( vertices, 1 * 3 );\n-\t\t\t\t\t\t\ttempV2_3.toArray( vertices, 3 * 3 );\n+\t\t\t\t\t\t\t// using tempV2_4 to update 3rd vertex if the uv...
2023-12-24T10:06:44
tensorflow/tensorflow
ac2bbd5b1cfca70a4fb5598f0d6e0e1553cb1fa5
ea8af7f1535632115bfd3860f9d05e07fda10e4c
Use `lookupOrDefault` for value mapping in TritonReduce lowering. This just means it will use the original operand value if there is no mapping. This covers the odd case for when the return op is not within the reduction space - for example a constant: ``` %cst = arith.constant dense<true> : tensor<i1> ... %12 = stab...
[ { "path": "third_party/xla/xla/backends/gpu/codegen/triton/transforms/stablehlo_lower_to_triton.cc", "patch": "@@ -205,7 +205,7 @@ class LowerReduce : public mlir::OpRewritePattern<stablehlo::ReduceOp> {\n SmallVector<Value> return_operands;\n for (Value operand : old_block.getTerminator()->getOpera...
2025-11-11T16:00:48
golang/go
4f86f2267167a63b673c4a2a2994e008b32c90ea
773701a853a3105696c59c2b92b2eff35e0e055b
testing/synctest, runtime: avoid panic when using linker-alloc WG from bubble We associate WaitGroups with synctest bubbles by attaching a special to the WaitGroup. It is not possible to attach a special to a linker-allocated value, such as: var wg sync.WaitGroup Avoid panicking when accessing a linker-allocated...
[ { "path": "src/internal/synctest/synctest.go", "patch": "@@ -8,6 +8,7 @@\n package synctest\n \n import (\n+\t\"internal/abi\"\n \t\"unsafe\"\n )\n \n@@ -22,14 +23,25 @@ func Wait()\n //go:linkname IsInBubble\n func IsInBubble() bool\n \n-// Associate associates p with the current bubble.\n-// It returns fa...
2025-06-05T20:47:06
denoland/deno
b384bd343371baf2088a9542c03e027d0023d072
5ea90de1999bf048451c56c2abaf78accac6f5cc
fix(upgrade): skip version comparison when upgrading (#29112)
[ { "path": "cli/tools/upgrade.rs", "patch": "@@ -754,46 +754,22 @@ async fn find_latest_version_to_upgrade(\n }\n };\n \n- let (maybe_newer_latest_version, current_version) = match release_channel {\n- ReleaseChannel::Canary => {\n- let current_version = version::DENO_VERSION_INFO.git_hash;\n-...
2025-05-13T18:58:57
kubernetes/kubernetes
ad2832977c745ebe7201d164f7330b4079a0b0de
0969bb173cbbd74ea1e87cd8646746f414fc58ca
fix(kubelet_node_status): remove the node.Spec.Unschedulable check, after remove the register schedulable
[ { "path": "pkg/kubelet/kubelet_node_status.go", "patch": "@@ -43,7 +43,6 @@ import (\n \t\"k8s.io/kubernetes/pkg/features\"\n \t\"k8s.io/kubernetes/pkg/kubelet/events\"\n \t\"k8s.io/kubernetes/pkg/kubelet/nodestatus\"\n-\ttaintutil \"k8s.io/kubernetes/pkg/util/taints\"\n \tvolutil \"k8s.io/kubernetes/pkg/vo...
2025-10-21T08:04:14
mrdoob/three.js
3c8d309ed5bc932d4ae0a51bc1129070ef8de174
8ca5469c99aba0b2888a3109c82ec8aa4a5e9901
Fix fogExp2 (#27430)
[ { "path": "src/renderers/webgl/WebGLPrograms.js", "patch": "@@ -300,7 +300,7 @@ function WebGLPrograms( renderer, cubemaps, cubeuvmaps, extensions, capabilities\n \n \t\t\tfog: !! fog,\n \t\t\tuseFog: material.fog === true,\n-\t\t\tfogExp2: ( fog && fog.isFogExp2 ),\n+\t\t\tfogExp2: ( !! fog && fog.isFogExp...
2023-12-24T08:43:12
tensorflow/tensorflow
2fb4baac5c5971698fadb67d539e3ffd35526581
b2d0fdb0e73804c810f2edff283302e503f4898d
[XLA:GPU] Add infinity and zero counts to GPU buffer float checks. This change extends the `BufferDebugFloatCheckEntry` struct to include counts for infinities and zeros. The CUDA kernel for float checking is updated to compute and store these additional counts in the log entries. PiperOrigin-RevId: 830870471
[ { "path": "third_party/xla/xla/backends/gpu/runtime/buffer_debug_log_structs.h", "patch": "@@ -58,17 +58,22 @@ struct BufferDebugFloatCheckEntry {\n // An ID that uniquely identifies a log entry within a HLO module execution.\n BufferDebugLogEntryId entry_id;\n uint32_t nan_count;\n+ uint32_t inf_cou...
2025-11-11T13:34:54
denoland/deno
5ea90de1999bf048451c56c2abaf78accac6f5cc
9b0707baa21479fb7350e95d5f704b504b0fc847
feat(jupyter): allow to install and maintain multiple kernels (#29249) This commit changes the `deno jupyter` subcommand: - `deno jupyter` now accepts additional `--name` argument to allow installing and maintaing multiple kernelsspec - useful when one wants to install a stable kernel and a debug/canary kernel - `de...
[ { "path": "cli/args/flags.rs", "patch": "@@ -278,8 +278,11 @@ pub struct JSONReferenceFlags {\n #[derive(Clone, Debug, Eq, PartialEq)]\n pub struct JupyterFlags {\n pub install: bool,\n+ pub name: Option<String>,\n+ pub display: Option<String>,\n pub kernel: bool,\n pub conn_file: Option<String>,\n+...
2025-05-13T16:56:16
swiftlang/swift
945482dd9dcedd3927a26a8e48750384a79cd064
52424446a71e4d5c4746cd00f789da185c38cf32
[basic] Add llvm::reportFatal{Internal,Usage}Error that use a llvm::raw_ostream closure based API so normal C++ dumpers can be used ergonomically. LLVM is switching to use these APIs instead of report_fatal_error. One unfortunate characteristic of these APIs is that they take Twines and StringRefs so if one wants to u...
[ { "path": "include/swift/Basic/LLVMExtras.h", "patch": "@@ -19,7 +19,10 @@\n \n #include \"llvm/ADT/DenseSet.h\"\n #include \"llvm/ADT/SetVector.h\"\n+#include \"llvm/ADT/SmallString.h\"\n #include \"llvm/ADT/SmallVector.h\"\n+#include \"llvm/Support/ErrorHandling.h\"\n+#include \"llvm/Support/raw_ostream.h...
2026-01-05T17:54:34
mrdoob/three.js
299f53ff4e65041a95b13c98b8da24a47cb877ea
b1d1cdfbcb67a00bfaf6a64b0022c498cc17c15e
MaterialXLoader: improve onError handling (#27433)
[ { "path": "examples/jsm/loaders/MaterialXLoader.js", "patch": "@@ -141,6 +141,20 @@ class MaterialXLoader extends Loader {\n \n \tload( url, onLoad, onProgress, onError ) {\n \n+\t\tconst _onError = function ( e ) {\n+\n+\t\t\tif ( onError ) {\n+\n+\t\t\t\tonError( e );\n+\n+\t\t\t} else {\n+\n+\t\t\t\tcons...
2023-12-23T21:25:36
denoland/deno
9b0707baa21479fb7350e95d5f704b504b0fc847
e6c2ad1431a2463bafc44fc7f0295202cad7f9f8
fix(check): don't assert unique normalized specifiers (#29274)
[ { "path": "cli/tsc/97_ts_host.js", "patch": "@@ -23,15 +23,6 @@ function spanned(name, f) {\n }\n }\n \n-// The map from the normalized specifier to the original.\n-// TypeScript normalizes the specifier in its internal processing,\n-// but the original specifier is needed when looking up the source from ...
2025-05-13T16:16:38
tensorflow/tensorflow
485a5ec57f156c2a3df02a6005e8c3af29528b03
72a2b88027d82f553f783c985717174d11691f39
NFC: Add bounds checks in Triton fusion emitter. This change adds checks to ensure that indices used to access `lhs_output_tile_sizes` and `block_level_parameters.output_tile_sizes` are within the valid range, preventing potential out-of-bounds errors. PiperOrigin-RevId: 830855360
[ { "path": "third_party/xla/xla/backends/gpu/codegen/triton/fusion_emitter.cc", "patch": "@@ -1601,6 +1601,11 @@ absl::StatusOr<Tiling> TilingFromAnnotatedFusion(\n dot_tiling_parameters.reserve(num_tiling_parameters);\n for (int64_t contracting_dim_id :\n hlo->dot_dimension_numbers()....
2025-11-11T12:37:59
swiftlang/swift
74f7a44952fbed3805bca28f8ab7fe8863ef9c6a
52424446a71e4d5c4746cd00f789da185c38cf32
[caller-analysis] Add ability to print out a specific FunctionInfo. Before this change the ability to print FunctionInfo on CallerAnalysis was defined on CallerAnalysis itself and by mistake FunctionInfo had a declaration for a print method that was not actually defined. This made it so that one could only print out ...
[ { "path": "include/swift/SILOptimizer/Analysis/CallerAnalysis.h", "patch": "@@ -344,7 +344,8 @@ class CallerAnalysis::FunctionInfo {\n \n SWIFT_DEBUG_DUMP;\n \n- void print(llvm::raw_ostream &os) const;\n+ void print(llvm::raw_ostream &os,\n+ NullablePtr<SILFunction> callee = nullptr) const;...
2026-01-05T17:58:01
mrdoob/three.js
b1d1cdfbcb67a00bfaf6a64b0022c498cc17c15e
d04539a76736ff500cae883d6a38b3dd8643c548
ShaderNode: Fix .isArrayInput (#27428)
[ { "path": "examples/jsm/nodes/shadernode/ShaderNode.js", "patch": "@@ -341,7 +341,7 @@ class ShaderNodeInternal extends Node {\n \n \tget isArrayInput() {\n \n-\t\treturn /^\\(\\s+?\\[/.test( this.jsFunc.toString() );\n+\t\treturn /^\\((\\s+)?\\[/.test( this.jsFunc.toString() );\n \n \t}\n ", "additions...
2023-12-23T13:39:51
kubernetes/kubernetes
a817e2b923ff06b13e0fe5c2037ce573656a9889
ce93309f4c96802f73c1c112e79f3f64b170f037
test(validation): Mark bindingConditions and bindingFailureConditions errors as covered by declarative
[ { "path": "pkg/apis/resource/validation/validation_resourceclaim_test.go", "patch": "@@ -1828,7 +1828,7 @@ func TestValidateClaimStatusUpdate(t *testing.T) {\n \t\t\t},\n \t\t},\n \t\t\"too-many-binding-conditions\": {\n-\t\t\twantFailures: field.ErrorList{field.TooMany(field.NewPath(\"status\", \"allocatio...
2025-10-20T23:38:48
golang/go
773701a853a3105696c59c2b92b2eff35e0e055b
fb0c27c514b7d6bbb88b72cfd7baff01e567f6bb
internal/trace: pass GOTRACEBACK=crash to testprogs The failures in #70310 are hard to decipher. The cases where the lock is being held either don't really make sense (the STW failures) or the goroutine that fails is 'running on another thread' and we don't get a stack trace. In fact, such a goroutine exists even in t...
[ { "path": "src/internal/trace/trace_test.go", "patch": "@@ -600,6 +600,10 @@ func testTraceProg(t *testing.T, progName string, extra func(t *testing.T, trace\n \t\t\tgodebug += \",\" + extraGODEBUG\n \t\t}\n \t\tcmd.Env = append(cmd.Env, \"GODEBUG=\"+godebug)\n+\t\tif _, ok := os.LookupEnv(\"GOTRACEBACK\");...
2025-06-09T22:54:54
denoland/deno
e6c2ad1431a2463bafc44fc7f0295202cad7f9f8
3b6c70e5b25d1dc48ee849b7d837f22ebd6afd8e
fix(ext/node): TLS server unref (#29279) Fixes https://github.com/denoland/deno/issues/29230
[ { "path": "ext/node/polyfills/_tls_wrap.ts", "patch": "@@ -281,13 +281,28 @@ export function Server(options: any, listener: any) {\n export class ServerImpl extends EventEmitter {\n listener?: Deno.TlsListener;\n #closed = false;\n+ #unrefed = false;\n constructor(public options: any, listener: any) ...
2025-05-13T16:08:41
tensorflow/tensorflow
b97df3e433a0a2e668b83eea7e969f82cf2529f6
900d4c4de113890017427e7f84d9cb7015f970a0
[XLA:GPU] Specialize buffer debug float check thunk. This change introduces a custom `BufferDebugFloatCheckEntry` for float checking, allowing for more specific data to be logged (e.g., `nan_count`). The metadata store is updated with a batch lookup function to efficiently retrieve metadata for multiple entries. The c...
[ { "path": "third_party/xla/xla/backends/gpu/runtime/buffer_debug_log_entry_metadata_store.cc", "patch": "@@ -48,6 +48,18 @@ BufferDebugLogEntryMetadataStore::GetEntryMetadata(\n return GetEntryMetadataLocked(entry_id);\n }\n \n+std::vector<std::optional<BufferDebugLogEntryMetadataStore::Metadata>>\n+Buffe...
2025-11-11T10:30:01
mrdoob/three.js
08b24a17a486f97b57f4564f85bdab9bcc81cb04
f163ee91d583edd6b7382df8090113e57b26163f
Timer: Added FixedTimer (#27423) * Timer: Added FixedTimer. * Updated docs. * Updated docs.
[ { "path": "docs/examples/en/misc/Timer.html", "patch": "@@ -17,7 +17,6 @@ <h1>[name]</h1>\n \t\t\t<ul>\n \t\t\t\t<li>[name] has an [page:.update]() method that updates its internal state. That makes it possible to call [page:.getDelta]() and [page:.getElapsed]() multiple times per simulation step without ge...
2023-12-22T10:20:05