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
c1e6e49d5d3f3fb927f1bfd1b453d8e7c906c6ac
7fbf54bfebf9243550177bc6871d80e58bedf1a6
fmt: reduce Errorf("x") allocations to match errors.New("x") For unformatted strings, it comes up periodically that there are more allocations using fmt.Errorf("x") compared to errors.New("x"). People cite it as a reason to switch code using fmt.Errorf to use errors.New instead. Three examples from the last few weeks...
[ { "path": "src/fmt/errors.go", "patch": "@@ -6,6 +6,7 @@ package fmt\n \n import (\n \t\"errors\"\n+\t\"internal/stringslite\"\n \t\"slices\"\n )\n \n@@ -19,7 +20,22 @@ import (\n // order they appear in the arguments.\n // It is invalid to supply the %w verb with an operand that does not implement\n // the...
2025-10-03T14:59:54
denoland/deno
c46393755d1209fa92056707154103ed05385870
71909e76084857051253233b4fed576d763385aa
fix(ext/ws): send User-Agent header in WS handshake (#30758)
[ { "path": "ext/fetch/lib.rs", "patch": "@@ -63,6 +63,7 @@ use deno_tls::TlsKeysHolder;\n use deno_tls::rustls::RootCertStore;\n pub use fs_fetch_handler::FsFetchHandler;\n use http::Extensions;\n+use http::HeaderMap;\n use http::Method;\n use http::Uri;\n use http::header::ACCEPT;\n@@ -1347,12 +1348,34 @@ i...
2025-09-17T13:00:54
tensorflow/tensorflow
cf48faf37271ca5213619b1b2bfdcc70406b4373
ec74f804514f6c7adec87771ddef2faf7a04a7ac
Tag PjRt migration candidates explicitly. (BUILD changes) This change adds a new tag "pjrt_migration_candidate" to all test targets that depend on HloTestBase, ClientLibraryTestBase, and HloRunnerTpuSystem. This change also adds a new `use_legacy_runtime` kwarg to `xla_test`, which acts as a replacement for "test_mig...
[ { "path": "third_party/xla/xla/tools/BUILD", "patch": "@@ -708,6 +708,8 @@ xla_test(\n srcs = [\"matmul_perf_table_gen_test.cc\"],\n backends = [\"gpu\"],\n local_defines = if_cuda([\"GOOGLE_CUDA\"]),\n+ tags = [\"pjrt_migration_candidate\"],\n+ use_legacy_runtime = True,\n deps = [\n ...
2026-01-07T18:09:37
kubernetes/kubernetes
57b65a2509f7b2a094442133fc87599c069bb63b
d04610bbfb8a16b01ee1266ee9c58a9e7f202efd
hack: remove list-feature-tests.sh The script is broken because it relies on grepping the source code. This has always been fragile (currently it finds the search term in comments) and stopped working years ago when changing how tests are labeled. Instead of fixing the script let's remove it because it's clearly unus...
[ { "path": "hack/list-feature-tests.sh", "patch": "@@ -1,25 +0,0 @@\n-#!/usr/bin/env bash\n-\n-# Copyright 2016 The Kubernetes Authors.\n-#\n-# Licensed under the Apache License, Version 2.0 (the \"License\");\n-# you may not use this file except in compliance with the License.\n-# You may obtain a copy of t...
2025-12-27T10:15:24
mrdoob/three.js
a7a4e22ee19187198ea38721bb0acc99b11ba2cc
25e6fd33e3c3bad7fc2516031802411241a4b665
TSL: Fix exponential float conversion (#29562)
[ { "path": "src/nodes/core/NodeBuilder.js", "patch": "@@ -55,9 +55,17 @@ const typeFromArray = new Map( [\n \n const toFloat = ( value ) => {\n \n-\tvalue = Number( value );\n+\tif ( /e/g.test( value ) ) {\n \n-\treturn value + ( value % 1 ? '' : '.0' );\n+\t\treturn String( value ).replace( /\\+/g, '' );\n+...
2024-10-05T21:01:55
golang/go
1d62e92567a858b18f4e7e0c24e071c039dd3edf
4fca79833fcdd0dc19bb0feba8715a0def3d07be
test/codegen: make sure assignment results are used. Some tests make assignments to an argument without reading it. With CL 708865, they are treated as dead stores and are removed. Make sure the results are used. Fixes #75745. Fixes #75746. Change-Id: I05580beb1006505ec1550e5fa245b54dcefd10b9 Reviewed-on: https://go...
[ { "path": "test/codegen/constants.go", "patch": "@@ -7,7 +7,7 @@\n package codegen\n \n // A uint16 or sint16 constant shifted left.\n-func shifted16BitConstants(out [64]uint64) {\n+func shifted16BitConstants() (out [64]uint64) {\n \t// ppc64x: \"MOVD\\t[$]8193,\", \"SLD\\t[$]27,\"\n \tout[0] = 0x0000010008...
2025-10-04T15:32:33
swiftlang/swift
d4b0c713d4ccc8abc4ec5de88212822e4d7bf2f6
aa62cfdcbb60ccc3c4a886c5801333a9e6bc6a4e
Tweak lifetime dependencies for 'inout' parameters Assume a default dependency for all 'inout' parameters regardless of the presence of an explicit annotation. Default to `@lifetime(inoutArg: copy inoutArg)` even if an explicit annotation exists. This way API authors do not need to make the inout dependency explicit...
[ { "path": "lib/AST/LifetimeDependence.cpp", "patch": "@@ -378,7 +378,8 @@ struct LifetimeDependenceBuilder {\n }\n \n void inferInoutDependency(unsigned paramIndex) {\n- inferDependency(paramIndex, paramIndex, LifetimeDependenceKind::Inherit);\n+ auto iter = depsArray.try_emplace(paramIndex, false...
2026-02-07T00:11:26
denoland/deno
71909e76084857051253233b4fed576d763385aa
6807ca4e9c8dbb32a12c9109afdbcb71069d18b2
fix(tunnel): make auth more robust (#30731)
[ { "path": "cli/main.rs", "patch": "@@ -909,9 +909,18 @@ fn wait_for_start(\n })\n }\n \n-async fn auth_tunnel() -> Result<String, deno_core::anyhow::Error> {\n+async fn auth_tunnel(\n+ env_token: Option<String>,\n+) -> Result<String, deno_core::anyhow::Error> {\n+ let mut args = vec![\"deploy\".to_strin...
2025-09-17T12:23:35
tensorflow/tensorflow
ec74f804514f6c7adec87771ddef2faf7a04a7ac
b05d9bca0667ea616f3489f3dcc6f6eacb165a01
Tag PjRt migration candidates explicitly. (BUILD changes) This change adds a new tag "pjrt_migration_candidate" to all test targets that depend on HloTestBase, ClientLibraryTestBase, and HloRunnerTpuSystem. This change also adds a new `use_legacy_runtime` kwarg to `xla_test`, which acts as a replacement for "test_mig...
[ { "path": "third_party/xla/xla/service/cpu/BUILD", "patch": "@@ -455,6 +455,7 @@ xla_test(\n xla_cc_test(\n name = \"cpu_compiler_internals_test\",\n srcs = [\"cpu_compiler_internals_test.cc\"],\n+ tags = [\"pjrt_migration_candidate\"],\n deps = [\n \":cpu_compiler_pure\",\n \...
2026-01-07T17:57:38
mrdoob/three.js
f22effae3913d4356dab246a077ac278813f505b
32f8b05fa5f086f1bf866a2cfc04a938ff8f87b3
FXAA: Improve quality. (#29524) * fxaa update * webGPU * FXAANode NDC fix * FXAANode ternary conditionals * FXAANode uniformArray * 10 > 6 samples, cleanup * parity between WebGL and WebGPU * formatting * unflipping WebGPU * move to object struct * cleanup * cleanup * parameter cont...
[ { "path": "examples/jsm/shaders/FXAAShader.js", "patch": "@@ -2,14 +2,6 @@ import {\n \tVector2\n } from 'three';\n \n-/**\n- * NVIDIA FXAA by Timothy Lottes\n- * https://developer.download.nvidia.com/assets/gamedev/files/sdk/11/FXAA_WhitePaper.pdf\n- * - WebGL port by @supereggbert\n- * http://www.glge.org...
2024-10-05T16:51:07
kubernetes/kubernetes
7a4d6501253a5df3f1b03bd0218ab16b6ad8c032
d04610bbfb8a16b01ee1266ee9c58a9e7f202efd
DRA extended resources: fix flake in unit tests The tests assumed that instantiating a DRAManager followed by informerFactory.WaitForCacheSync would be enough to have the manager up-to-date, but that's not correct: the test only waits for informer *caches* to be synced, but syncing *event handlers* like the one in the...
[ { "path": "pkg/scheduler/framework/plugins/noderesources/balanced_allocation_test.go", "patch": "@@ -17,7 +17,6 @@ limitations under the License.\n package noderesources\n \n import (\n-\t\"context\"\n \t\"testing\"\n \n \t\"github.com/google/go-cmp/cmp\"\n@@ -26,7 +25,6 @@ import (\n \tapiruntime \"k8s.io/...
2025-12-26T17:14:14
denoland/deno
9f9061193245726cc94576f1c731732ff430f8fd
20f3a0700163629e68b31055720f95422f7a291b
fix(node): reduce chance of module not found error due to missing copy package (#30744)
[ { "path": "Cargo.lock", "patch": "@@ -2557,9 +2557,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_npm\"\n-version = \"0.38.0\"\n+version = \"0.38.1\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"c11034223675352ee51fd2c564600b1bc4a0bd04de2b54fe91df505c73dbb042\"...
2025-09-16T14:57:36
swiftlang/swift
eed25ef52d077815e68b8ab6b0055762565e0755
708115195e554a9d7dbba27f2d1a20db3f3fbce1
Make StaticBigInt's debugDescription no longer depend on the Unicode tables
[ { "path": "stdlib/public/core/StaticBigInt.swift", "patch": "@@ -183,8 +183,9 @@ extension StaticBigInt: CustomDebugStringConvertible {\n }\n \n // Overwrite leading zeros with the \"±0x\" indicator.\n- if let upToIndex = result.firstIndex(where: { $0 != \"0\" }) {\n- result.replaceSubrange(...
2026-02-06T23:22:59
golang/go
719dfcf8a8478d70360bf3c34c0e920be7b32994
f3312124c2370c2f64a7f9ad29732ec30209647a
cmd/compile: redo arm64 LR/FP save and restore Instead of storing LR (the return address) at 0(SP) and the FP (parent's frame pointer) at -8(SP), store them at framesize-8(SP) and framesize-16(SP), respectively. We push and pop data onto the stack such that we're never accessing anything below SP. The prolog/epilog ...
[ { "path": "src/cmd/compile/abi-internal.md", "patch": "@@ -576,19 +576,19 @@ A function's stack frame, after the frame is created, is laid out as\n follows:\n \n +------------------------------+\n+ | return PC |\n+ | frame pointer on entry | ← R29 points to\n | ... loc...
2025-05-17T22:05:56
mrdoob/three.js
97fd89d1a69d8b933c7f7fed5f44f43b14f2327c
88349e38abc12e8726716ba6900828e8e71facb4
Examples: Fix `webgpu_particles` example (#29555) * fix `webgpu_particles` example * cleanup * Update webgpu_instance_sprites.jpg
[ { "path": "src/materials/nodes/SpriteNodeMaterial.js", "patch": "@@ -2,7 +2,7 @@ import NodeMaterial from './NodeMaterial.js';\n import { cameraProjectionMatrix } from '../../nodes/accessors/Camera.js';\n import { materialRotation } from '../../nodes/accessors/MaterialNode.js';\n import { modelViewMatrix, m...
2024-10-05T04:55:20
tensorflow/tensorflow
b05d9bca0667ea616f3489f3dcc6f6eacb165a01
7724b5629e694160655356472ed19fa7df3c68cf
Tag PjRt migration candidates explicitly. (BUILD changes) This change adds a new tag "pjrt_migration_candidate" to all test targets that depend on HloTestBase, ClientLibraryTestBase, and HloRunnerTpuSystem. This change also adds a new `use_legacy_runtime` kwarg to `xla_test`, which acts as a replacement for "test_mig...
[ { "path": "third_party/xla/xla/backends/gpu/codegen/triton/BUILD", "patch": "@@ -466,7 +466,9 @@ xla_test(\n ],\n tags = [\n \"no_mac\",\n+ \"pjrt_migration_candidate\",\n ],\n+ use_legacy_runtime = True,\n deps = [\n \":test_utils\",\n \":xtile_compiler\",\...
2026-01-07T17:57:37
denoland/deno
20f3a0700163629e68b31055720f95422f7a291b
d4a84393da588dae932b1e3807a387c2be2f4418
fix(permissions): point to correct config file in error message in workspace containing permissions at root (#30742)
[ { "path": "cli/args/mod.rs", "patch": "@@ -1065,27 +1065,21 @@ impl CliOptions {\n let set_config_permission_name = match &self.flags.subcommand {\n DenoSubcommand::Bench(_) => dir\n .to_bench_permissions_config()?\n- .is_some()\n- .then_some(\"Bench\"),\n...
2025-09-16T14:42:15
golang/go
f3312124c2370c2f64a7f9ad29732ec30209647a
24416458c21a48d83f34d3c2242d892e002bcd6c
runtime: remove batching from spanSPMC free Added in CL 700496, freeSomeSpanSPMCs attempts to bound tail latency by processing at most 64 entries at a time, as well as returning early if it notices a preemption request. Both of those are attempts to reduce tail latency, as we cannot preempt the function while it holds...
[ { "path": "src/runtime/mgc.go", "patch": "@@ -2046,8 +2046,7 @@ func gcSweep(mode gcMode) bool {\n \t\tprepareFreeWorkbufs()\n \t\tfor freeSomeWbufs(false) {\n \t\t}\n-\t\tfor freeSomeSpanSPMCs(false) {\n-\t\t}\n+\t\tfreeDeadSpanSPMCs()\n \t\t// All \"free\" events for this mark/sweep cycle have\n \t\t// no...
2025-10-06T18:38:47
mrdoob/three.js
88349e38abc12e8726716ba6900828e8e71facb4
e395c1a1a07a8c7b32bf9d98bc9f4043952157a9
Examples: Fix node imports (#29556)
[ { "path": "examples/webgpu_compute_particles_snow.html", "patch": "@@ -25,7 +25,8 @@\n \t\t<script type=\"module\">\n \n \t\t\timport * as THREE from 'three';\n-\t\t\timport { Fn, texture, vec3, pass, color, uint, screenUV, positionWorld, positionLocal, timerLocal, vec2, hash, gaussianBlur, instanceIndex, s...
2024-10-05T04:37:30
tensorflow/tensorflow
7724b5629e694160655356472ed19fa7df3c68cf
69b4471ca86ff50f5ca2640ed75e17f7d8454eab
Tag PjRt migration candidates explicitly. (BUILD changes) This change adds a new tag "pjrt_migration_candidate" to all test targets that depend on HloTestBase, ClientLibraryTestBase, and HloRunnerTpuSystem. This change also adds a new `use_legacy_runtime` kwarg to `xla_test`, which acts as a replacement for "test_mig...
[ { "path": "third_party/xla/xla/stream_executor/sycl/BUILD", "patch": "@@ -152,7 +152,9 @@ xla_test(\n tags = [\n \"gpu\",\n \"oneapi-only\",\n+ \"pjrt_migration_candidate\",\n ],\n+ use_legacy_runtime = True,\n deps = [\n \":sycl_event\",\n \":sycl_platf...
2026-01-07T17:55:39
denoland/deno
fc6f0d38a32e8d85d4967d1e0719ddcf81fa2a72
d8c186196c962e814f41a8b9a87a52951288f208
fix(ext/node): implement `fchmod` on windows (#30704) - Also fixes `node:fs.fstat` because it was incorrectly showing the file mode on windows, which is needed by the node compat test. - Moves the `stat_extra` function from `ext/fs/std_fs.rs` (deno_fs) into `ext/io/lib.rs` (deno_io), because it's more convenient to ex...
[ { "path": "ext/fs/std_fs.rs", "patch": "@@ -862,7 +862,7 @@ fn stat(path: &Path) -> FsResult<FsStat> {\n let file = opts.open(path)?;\n let metadata = file.metadata()?;\n let mut fsstat = FsStat::from_std(metadata);\n- stat_extra(&file, &mut fsstat)?;\n+ deno_io::stat_extra(&file, &mut fsstat)?;\n ...
2025-09-16T13:22:37
swiftlang/swift
2abf087e71f0ff8845a6d2ce3584943542a31138
3d15cdea45f5490d2b6376699ab1012a38203f34
[Concurrency] Emit a distinct mangling for checked ObjC async completion handlers. This avoids coalescing checked and unchecked handlers with the same types, which results in runtime crashes as they are not compatible. We have a separate mangling for predefined handlers, TZ, which is unused. Repurpose this for checke...
[ { "path": "include/swift/Demangling/DemangleNodes.def", "patch": "@@ -198,7 +198,7 @@ NODE(NominalTypeDescriptorRecord)\n NODE(NonObjCAttribute)\n NODE(Number)\n NODE(ObjCAsyncCompletionHandlerImpl)\n-NODE(PredefinedObjCAsyncCompletionHandlerImpl)\n+NODE(CheckedObjCAsyncCompletionHandlerImpl)\n NODE(ObjCAtt...
2026-02-06T22:45:43
mrdoob/three.js
b249dc8ebb01d00276d1e34146e66f43cf06811c
d69e82b4a28a317c94104348825d5f270434a669
WebGLBackend: Fix type conversion in transform feedback (#29554)
[ { "path": "examples/webgpu_compute_geometry.html", "patch": "@@ -25,7 +25,7 @@\n \t\t<script type=\"module\">\n \n \t\t\timport * as THREE from 'three';\n-\t\t\timport { vec3, vec4, storage, Fn, If, uniform, instanceIndex, objectWorldMatrix, color, screenUV, attribute } from 'three/tsl';\n+\t\t\timport { ve...
2024-10-05T03:09:49
golang/go
c2fb15164bdb9d44a302771be613fbef5faa4a8e
ac2ec82172799b88c057bb9ded6fe24e7909e860
testing/synctest: remove Run Run (experimental) is replaced by Test. Fixes #74012 Change-Id: I1721e1edfbcb4f1fe2159dc0430a13685b2d08c4 Reviewed-on: https://go-review.googlesource.com/c/go/+/709355 Reviewed-by: Emmanuel Odeke <emmanuel@orijtech.com> Reviewed-by: Damien Neil <dneil@google.com> Auto-Submit: Damien Neil...
[ { "path": "src/testing/synctest/run.go", "patch": "@@ -1,16 +0,0 @@\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.synctest\n-\n-package synctest\n-\n-import \"i...
2025-10-05T22:17:40
tensorflow/tensorflow
04274983446e46b0c2a2340e08ce76739804ba6c
b0610e8b3ed928b5bbebb180aa3841a9faccf5c8
Tag PjRt migration candidates explicitly. (BUILD changes) This change adds a new tag "pjrt_migration_candidate" to all test targets that depend on HloTestBase, ClientLibraryTestBase, and HloRunnerTpuSystem. This change also adds a new `use_legacy_runtime` kwarg to `xla_test`, which acts as a replacement for "test_mig...
[ { "path": "third_party/xla/xla/backends/cpu/transforms/BUILD", "patch": "@@ -118,6 +118,7 @@ cc_library(\n xla_cc_test(\n name = \"ynn_matcher_test\",\n srcs = [\"ynn_matcher_test.cc\"],\n+ tags = [\"pjrt_migration_candidate\"],\n deps = [\n \"//xla:xla_proto_cc\",\n \"//xla/s...
2026-01-07T17:24:15
mrdoob/three.js
d69e82b4a28a317c94104348825d5f270434a669
4c7aac71c5ee3ab9deba3de54e60ea19534f3c87
Examples: Fix shadow map enabled in `webgpu_instancing_morph` (#29553)
[ { "path": "examples/webgpu_instancing_morph.html", "patch": "@@ -140,6 +140,7 @@\n \t\t\t\trenderer.setAnimationLoop( animate );\n \t\t\t\trenderer.setPixelRatio( window.devicePixelRatio );\n \t\t\t\trenderer.setSize( window.innerWidth, window.innerHeight );\n+\t\t\t\trenderer.shadowMap.enabled = true;\n \t...
2024-10-05T02:09:17
golang/go
ac2ec82172799b88c057bb9ded6fe24e7909e860
e74b224b7c7b7511fe37686d81a6e33d40fdeb17
runtime: bump thread count slack for TestReadMetricsSched This test is *still* flaky, but it appears to be just mayMoreStackPreempt and the thread count *occasionally* exceeds the original (and arbitrary) thread count slack by exactly 1. Bump the thread count slack by one. We can investigate further and bump it again...
[ { "path": "src/runtime/testdata/testprog/schedmetrics.go", "patch": "@@ -84,7 +84,12 @@ func SchedMetrics() {\n \n \t// threadsSlack is the maximum number of threads left over\n \t// from the runtime (sysmon, the template thread, etc.)\n-\tconst threadsSlack = 4\n+\t// Certain build modes may also cause the...
2025-10-03T16:23:10
denoland/deno
d8c186196c962e814f41a8b9a87a52951288f208
0ad6a5eb7f0ec6adea51f9ec604920f314f74a4d
fix(ext/node): validate fs.read on empty buffer (#30706) Towards #29972 Allows https://github.com/nodejs/node/blob/v24.2.0/test/parallel/test-fs-read-empty-buffer.js test to pass.
[ { "path": "ext/node/polyfills/_fs/_fs_read.ts", "patch": "@@ -4,7 +4,10 @@\n // deno-lint-ignore-file prefer-primordials\n \n import { Buffer } from \"node:buffer\";\n-import { ERR_INVALID_ARG_TYPE } from \"ext:deno_node/internal/errors.ts\";\n+import {\n+ ERR_INVALID_ARG_TYPE,\n+ ERR_INVALID_ARG_VALUE,\n...
2025-09-16T09:16:17
mrdoob/three.js
5f96ed4875850cb6b7891b0783503485f8aa5519
ea866888ca59c8138a1ea67a33ff357da7f92d0f
NodeMaterial: Introduce `.geometryNode` and jelly example (#29551) * fix `compute()` during `render()` call * NodeMaterial: Introduce `.geometryNode` * update compute geometry example * rename jellyNode -> jelly * cleanup
[ { "path": "examples/webgpu_compute_geometry.html", "patch": "@@ -25,83 +25,139 @@\n \t\t<script type=\"module\">\n \n \t\t\timport * as THREE from 'three';\n-\t\t\timport { vec3, cos, sin, mat3, storage, Fn, instanceIndex, timerLocal } from 'three/tsl';\n+\t\t\timport { vec3, vec4, storage, Fn, If, uniform,...
2024-10-05T00:37:22
golang/go
e74b224b7c7b7511fe37686d81a6e33d40fdeb17
3a05e7b0325eb71fede880f67db63d192f2fa0e1
crypto/tls: streamline BoGo testing w/ -bogo-local-dir If -bogo-local-dir is provided but doesn't exist, populate it with a git checkout of the BoringSSL repo at the correct SHA. Without any -bogo-local-dir argument the BoGo TLS handshake test will fetch the BoringSSL source at a specific SHA as a Go module in a r/o ...
[ { "path": "src/crypto/tls/bogo_shim_test.go", "patch": "@@ -11,6 +11,7 @@ import (\n \t\"encoding/base64\"\n \t\"encoding/json\"\n \t\"encoding/pem\"\n+\t\"errors\"\n \t\"flag\"\n \t\"fmt\"\n \t\"html/template\"\n@@ -541,6 +542,7 @@ func orderlyShutdown(tlsConn *Conn) {\n }\n \n func TestBogoSuite(t *testin...
2025-07-11T14:42:22
kubernetes/kubernetes
5f675740442edc32f2dcbbe1453f49484440e7a8
1c30a75a22d0052c5e0e2d3c1b8cca2dfa02ded1
kubectl: Fix panic in exec terminal size queue Check if delegate is nil before calling Next() in terminalSizeQueueAdapter to prevent a nil pointer dereference.
[ { "path": "staging/src/k8s.io/kubectl/pkg/cmd/exec/exec.go", "patch": "@@ -411,6 +411,10 @@ type terminalSizeQueueAdapter struct {\n }\n \n func (a *terminalSizeQueueAdapter) Next() *remotecommand.TerminalSize {\n+\tif a.delegate == nil {\n+\t\treturn nil\n+\t}\n+\n \tnext := a.delegate.Next()\n \tif next =...
2025-12-23T20:37:59
tensorflow/tensorflow
b0610e8b3ed928b5bbebb180aa3841a9faccf5c8
16f037e5d51943c7403fe5d0629a4e15fe2f175b
Tag PjRt migration candidates explicitly. (BUILD changes) This change adds a new tag "pjrt_migration_candidate" to all test targets that depend on HloTestBase, ClientLibraryTestBase, and HloRunnerTpuSystem. This change also adds a new `use_legacy_runtime` kwarg to `xla_test`, which acts as a replacement for "test_mig...
[ { "path": "third_party/xla/xla/service/gpu/transforms/BUILD", "patch": "@@ -171,6 +171,7 @@ cc_library(\n xla_cc_test(\n name = \"async_wrapper_test\",\n srcs = [\"async_wrapper_test.cc\"],\n+ tags = [\"pjrt_migration_candidate\"],\n deps = [\n \":async_wrapper\",\n \"//xla:li...
2026-01-07T17:17:36
swiftlang/swift
ad13c9ff6a775c7cab2db0f7f6f1be94dc9ca9b5
5e5978c0747cafb877d814a91e600d978f80eec0
Fix typos in documentation
[ { "path": "stdlib/public/Observation/Sources/Observation/Observations.swift", "patch": "@@ -11,9 +11,9 @@\n \n import _Concurrency\n \n-/// An asychronous sequence generated from a closure that tracks the transactional changes of `@Observable` types.\n+/// An asynchronous sequence generated from a closure t...
2026-02-06T21:52:27
denoland/deno
0ad6a5eb7f0ec6adea51f9ec604920f314f74a4d
4a1f63b930629dcc36b7723e942482c32b035cd4
fix(ext/node): make `fs.glob` accepts `URL` cwd (#30705) Towards #29972 Allows https://github.com/nodejs/node/blob/v24.2.0/test/parallel/test-fs-glob.mjs to pass.
[ { "path": "ext/node/polyfills/_fs/_fs_glob.ts", "patch": "@@ -42,6 +42,7 @@ import {\n import assert from \"node:assert\";\n \n import type { ErrnoException } from \"ext:deno_node/_global.d.ts\";\n+import { toPathIfFileURL } from \"ext:deno_node/internal/url.ts\";\n \n interface GlobOptionsBase {\n /**\n@...
2025-09-16T09:12:08
mrdoob/three.js
b13d1b1c34437f2ab4f64ee04c39188fbac620c8
251354316499ca894cbe0bc2315b1b43339f3be4
KTX2Exporter: Fix metadata, add example (#29541)
[ { "path": "examples/files.json", "patch": "@@ -503,6 +503,7 @@\n \t\t\"misc_exporter_stl\",\n \t\t\"misc_exporter_usdz\",\n \t\t\"misc_exporter_exr\",\n+\t\t\"misc_exporter_ktx2\",\n \t\t\"misc_lookat\"\n \t],\n \t\"css2d\": [", "additions": 1, "deletions": 0, "language": "JSON" }, { "pa...
2024-10-03T21:43:38
golang/go
3a05e7b0325eb71fede880f67db63d192f2fa0e1
2a71af11fc7e45903be9ab84e59c668bb051f528
spec: close tag Close an "a" tag. While we are here, fix some escapes. Change-Id: I16040eff0d4beeef6230aec8fcf4315f0efd13a4 GitHub-Last-Rev: 3ba7b9f7478f54338bd3ca7ac55cc2ad1ffcb3a4 GitHub-Pull-Request: golang/go#75760 Reviewed-on: https://go-review.googlesource.com/c/go/+/708517 Reviewed-by: Sean Liao <sean@liao.dev...
[ { "path": "doc/go_spec.html", "patch": "@@ -3173,7 +3173,7 @@ <h3 id=\"Composite_literals\">Composite literals</h3>\n \n <p>\n Unless the LiteralType is a type parameter,\n-its <a href=\"#Underlying_types\">underlying type\n+its <a href=\"#Underlying_types\">underlying type</a>\n must be a struct, array, sl...
2025-10-05T11:57:40
kubernetes/kubernetes
f758d0850b4d59f7f9ba6dc96a8ffe0a86cbf67d
d04610bbfb8a16b01ee1266ee9c58a9e7f202efd
scheduler: plugin test DATA RACE fix Reading numPreFilterCalled races with writing it in the scheduler, at least as far as the data race detector is concerned. That the test waits for pod scheduling is too indirect. enqueuePlugin.called has the same problem, but hasn't triggered the race detector (yet). We need to pr...
[ { "path": "test/integration/scheduler/plugins/plugins_test.go", "patch": "@@ -23,6 +23,7 @@ import (\n \t\"context\"\n \t\"fmt\"\n \t\"sync\"\n+\t\"sync/atomic\"\n \t\"testing\"\n \t\"time\"\n \n@@ -87,12 +88,12 @@ type QueueSortPlugin struct {\n }\n \n type PreEnqueuePlugin struct {\n-\tcalled int\n+\tcall...
2025-12-23T13:43:29
tensorflow/tensorflow
16f037e5d51943c7403fe5d0629a4e15fe2f175b
c92903310dfe3207b930de723dc21deff7aa2f15
Tag PjRt migration candidates explicitly. (BUILD changes) This change adds a new tag "pjrt_migration_candidate" to all test targets that depend on HloTestBase, ClientLibraryTestBase, and HloRunnerTpuSystem. This change also adds a new `use_legacy_runtime` kwarg to `xla_test`, which acts as a replacement for "test_mig...
[ { "path": "third_party/xla/xla/service/gpu/autotuning/BUILD", "patch": "@@ -246,7 +246,9 @@ xla_test(\n tags = [\n \"cuda-only\",\n \"no_mac\",\n+ \"pjrt_migration_candidate\",\n ],\n+ use_legacy_runtime = True,\n deps = [\n \":autotune_cache_key\",\n \"...
2026-01-07T17:17:29
mrdoob/three.js
47fb8fe0859d570f9734eca4f6a3e4345ecbc3c4
1e67d7ed3eb8429d9860182abe5a20cfd979e098
WebGPURenderer: Fix premultiplied alpha with clear colors. (#29538)
[ { "path": "src/renderers/common/Background.js", "patch": "@@ -111,15 +111,25 @@ class Background extends DataMap {\n \n \t\tif ( renderer.autoClear === true || forceClear === true ) {\n \n-\t\t\t_clearColor.multiplyScalar( _clearColor.a );\n-\n \t\t\tconst clearColorValue = renderContext.clearColorValue;\n ...
2024-10-02T10:22:00
swiftlang/swift
53a1e5d9c20d49f9da777cf6d734066b1e0eccae
2ee7a74c9937a8b2039e2e1508139e19d5b26816
[Test][Backtracing] Remove --crash flag from not command in TTYDetectionColourMacOS
[ { "path": "test/Backtracing/TTYDetectionColourMacOS.swift", "patch": "@@ -2,7 +2,7 @@\n // RUN: %target-build-swift %s -parse-as-library -Onone -g -o %t/TTYDetection\n // RUN: %target-codesign %t/TTYDetection\n \n-// RUN: not --crash env SWIFT_BACKTRACE=enable=yes,cache=no,interactive=no %target-run script ...
2026-02-03T00:49:39
golang/go
ee5369b003b17b34aa6417cf8c9b702f1cd76da1
1bca4c1673f5d90822086f34aed6de4a9bea2d93
cmd/link: add LIBRARY statement only with -buildmode=cshared When creating a .def file for Windows linking, add a LIBRARY statement only when building a DLL with -buildmode=cshared. That statement is documented to instruct the linker to create a DLL, overriding any other flag that might indicate building an executable...
[ { "path": "src/cmd/link/internal/ld/pe.go", "patch": "@@ -1758,7 +1758,9 @@ func peCreateExportFile(ctxt *Link, libName string) (fname string) {\n \tfname = filepath.Join(*flagTmpdir, \"export_file.def\")\n \tvar buf bytes.Buffer\n \n-\tfmt.Fprintf(&buf, \"LIBRARY %s\\n\", libName)\n+\tif ctxt.BuildMode == ...
2025-10-03T09:18:47
denoland/deno
4a1f63b930629dcc36b7723e942482c32b035cd4
a6663b0ce3bced56fbd9138e02ef473669d6c114
Revert "fix(ext/node): `fs.stat` and `fs.statSync` compatibility (#30… (#30741) …637)" This reverts commit 432761aac5afa5108ac5bd41b3de8e0b9c93e2d8. The tests are causing flakes on Windows
[ { "path": "cli/rt/file_system.rs", "patch": "@@ -1443,13 +1443,13 @@ impl FileBackedVfsMetadata {\n blksize: 0,\n size: self.len,\n dev: 0,\n- ino: None,\n+ ino: 0,\n mode: 0,\n- nlink: None,\n+ nlink: 0,\n uid: 0,\n gid: 0,\n rdev: 0,\n- bl...
2025-09-15T23:25:47
mrdoob/three.js
1e67d7ed3eb8429d9860182abe5a20cfd979e098
cf28ac50fa5fb816d84bfbbf8515c4abea818899
ColorManagement: Fix rendering to linear spaces (#29543) * ColorManagement: Fix support for linear output configuration * ColorSpaces: Fix support for linear P3 output configuration
[ { "path": "examples/jsm/math/ColorSpaces.js", "patch": "@@ -44,7 +44,8 @@ export const LinearDisplayP3ColorSpaceImpl = {\n \ttoXYZ: LINEAR_DISPLAY_P3_TO_XYZ,\n \tfromXYZ: XYZ_TO_LINEAR_DISPLAY_P3,\n \tluminanceCoefficients: P3_LUMINANCE_COEFFICIENTS,\n-\tworkingColorSpaceConfig: { unpackColorSpace: DisplayP...
2024-10-02T08:17:15
tensorflow/tensorflow
c92903310dfe3207b930de723dc21deff7aa2f15
4b6e4c780b3a13ecae9110c4e58c6f3eec773a8a
Tag PjRt migration candidates explicitly. (BUILD changes) This change adds a new tag "pjrt_migration_candidate" to all test targets that depend on HloTestBase, ClientLibraryTestBase, and HloRunnerTpuSystem. This change also adds a new `use_legacy_runtime` kwarg to `xla_test`, which acts as a replacement for "test_mig...
[ { "path": "third_party/xla/xla/backends/gpu/codegen/BUILD", "patch": "@@ -82,7 +82,11 @@ xla_test(\n name = \"cudnn_test\",\n srcs = [\"cudnn_test.cc\"],\n backends = [\"gpu\"],\n- tags = [\"cuda-only\"],\n+ tags = [\n+ \"cuda-only\",\n+ \"pjrt_migration_candidate\",\n+ ],...
2026-01-07T17:17:26
golang/go
38b26f29f1f97d24afc852b9f4eee829341ee682
003b5ce1bc15cf265e74ba1ec4eb7cf801e49986
cmd/compile: remove stores to unread parameters Currently, we remove stores to local variables that are not read. We don't do that for arguments. But arguments and locals are essentially the same. Arguments are passed by value, and are not expected to be read in the caller's frame. So we can remove the writes to them ...
[ { "path": "src/cmd/compile/internal/ssa/deadstore.go", "patch": "@@ -7,6 +7,7 @@ package ssa\n import (\n \t\"cmd/compile/internal/ir\"\n \t\"cmd/compile/internal/types\"\n+\t\"cmd/internal/obj\"\n )\n \n // dse does dead-store elimination on the Function.\n@@ -213,7 +214,7 @@ func elimDeadAutosGeneric(f *F...
2025-09-22T14:57:29
swiftlang/swift
a50dc8af54899a55835c7aa1aec7f52707480690
2ddadb6a0cdd85b1f45e742e258ac90f82b0db36
[Test][Backtracing] Use not --crash instead of subshells for internal shell compatibility
[ { "path": "test/Backtracing/CrashAsync.swift", "patch": "@@ -5,8 +5,8 @@\n // Demangling is disabled for now because older macOS can't demangle async\n // function names. We test demangling elsewhere, so this is no big deal.\n \n-// RUN: (env SWIFT_BACKTRACE=enable=yes,demangle=no,cache=no %target-run %t/C...
2026-01-31T05:31:40
denoland/deno
a6663b0ce3bced56fbd9138e02ef473669d6c114
73853545f1b52374e4b6c2f3289bac38feda023a
fix(lsp): don't write lockfile during cache-on-save (#30733)
[ { "path": "cli/lsp/config.rs", "patch": "@@ -555,7 +555,7 @@ pub struct WorkspaceSettings {\n \n /// Cache local modules and their dependencies on `textDocument/didSave`\n /// notifications corresponding to them.\n- #[serde(default)]\n+ #[serde(default = \"default_to_true\")]\n pub cache_on_save: bo...
2025-09-15T20:01:05
mrdoob/three.js
cf28ac50fa5fb816d84bfbbf8515c4abea818899
35127e2517c5d0ffe374539abeeabf611d429ad8
Fix `renderer.info.render` data if use `BatchedMesh._multiDraw` (#29532) * Fix multidraw render info * WebGLBufferRender fix
[ { "path": "src/renderers/webgl-fallback/WebGLBufferRenderer.js", "patch": "@@ -120,18 +120,13 @@ class WebGLBufferRenderer {\n \t\t\t}\n \n \t\t\tlet elementCount = 0;\n-\n \t\t\tfor ( let i = 0; i < drawCount; i ++ ) {\n \n-\t\t\t\telementCount += counts[ i ];\n+\t\t\t\telementCount += counts[ i ] * primco...
2024-10-01T11:51:03
kubernetes/kubernetes
b1d7cb00cf4569e64d3ded5ac7283494e7c22313
3bde8d89a4fc53e2fd4ffd71ae87a2fcac7432ea
Fix log validation messages and example typo Signed-off-by: bo.jiang <bo.jiang@daocloud.io>
[ { "path": "pkg/kubelet/kubelet_server_journal.go", "patch": "@@ -432,7 +432,7 @@ func heuristicsCopyFileLog(ctx context.Context, w io.Writer, logDir, logFileName\n func safeServiceName(s string) error {\n \t// Max length of a service name is 256 across supported OSes\n \tif len(s) > maxServiceLength {\n-\t\...
2025-12-22T09:56:19
tensorflow/tensorflow
4b6e4c780b3a13ecae9110c4e58c6f3eec773a8a
0a9e95162bead19528f0c39a7212e8fee1005684
Tag PjRt migration candidates explicitly. (BUILD changes) This change adds a new tag "pjrt_migration_candidate" to all test targets that depend on HloTestBase, ClientLibraryTestBase, and HloRunnerTpuSystem. This change also adds a new `use_legacy_runtime` kwarg to `xla_test`, which acts as a replacement for "test_mig...
[ { "path": "third_party/xla/xla/hlo/builder/lib/BUILD", "patch": "@@ -139,6 +139,8 @@ cc_library(\n xla_test(\n name = \"constants_test\",\n srcs = [\"constants_test.cc\"],\n+ tags = [\"pjrt_migration_candidate\"],\n+ use_legacy_runtime = True,\n deps = [\n \":constants\",\n ...
2026-01-07T17:16:37
golang/go
003b5ce1bc15cf265e74ba1ec4eb7cf801e49986
d91148c7a8b2d774ddea5c66c170d24937195df5
cmd/compile: fix SIMD const rematerialization condition This CL fixes a condition for the previous fix CL 704056. Cherry-picked from the dev.simd branch. This CL is not necessarily SIMD specific. Apply early to reduce risk. Test is SIMD specific so not included for now. Change-Id: I1f1f8c6f72870403cb3dff14755c43385d...
[ { "path": "src/cmd/compile/internal/ssa/regalloc.go", "patch": "@@ -2561,22 +2561,25 @@ func (e *edgeState) processDest(loc Location, vid ID, splice **Value, pos src.XP\n \t\t\te.s.f.Fatalf(\"can't find source for %s->%s: %s\\n\", e.p, e.b, v.LongString())\n \t\t}\n \t\tif dstReg {\n-\t\t\t// Handle incompa...
2025-09-19T18:38:25
swiftlang/swift
58ad64d3f40722af6dfe521e8910a0b7c4df2f26
6dda8b98d9d033a6abc56207cf78f0bd49e0d00e
Reparenting: fix interface emission The `@reparented` was missing and a typealias was being synthesized unexpectedly, creating an issue when typechecking the interface later. There's no fundamental reason why typealiases cannot be supported to say the same thing as the same-type requirement, but I think the same-type...
[ { "path": "lib/AST/ASTPrinter.cpp", "patch": "@@ -3050,6 +3050,8 @@ void PrintAST::printInherited(const Decl *decl) {\n Printer << \"@retroactive \";\n if (inherited.isPreconcurrency())\n Printer << \"@preconcurrency \";\n+ if (inherited.isReparented())\n+ Printer << \"@rep...
2026-02-06T20:17:28
mrdoob/three.js
fb5406d850eafb14c8f0b5d5b75b0a62a24ba131
7ede9aa9866b654333a4abe23ef3e5bd3731bf64
WebGPURenderer: Ignore diagnostic() method in Deno (#29522) * Ignore `diagnostic()` method in deno * fix deno webgpu diagnostic * Ignore `diagnostic()` method in deno
[ { "path": "src/renderers/webgpu/nodes/WGSLNodeBuilder.js", "patch": "@@ -152,7 +152,7 @@ if ( /Windows/g.test( navigator.userAgent ) ) {\n \n let diagnostics = '';\n \n-if ( /Firefox/g.test( navigator.userAgent ) !== true ) {\n+if ( /Firefox|Deno/g.test( navigator.userAgent ) !== true ) {\n \n \tdiagnostics...
2024-09-30T09:26:49
denoland/deno
73853545f1b52374e4b6c2f3289bac38feda023a
08d989507592c4191b4e3ee50f20bd5c6877f287
fix(init): regression where `deno init --npm` stopped working on mac (#30730)
[ { "path": "cli/tools/init/mod.rs", "patch": "@@ -13,6 +13,7 @@ use deno_core::anyhow::Context;\n use deno_core::error::AnyError;\n use deno_core::futures::FutureExt;\n use deno_core::serde_json::json;\n+use deno_lib::args::UnstableConfig;\n use deno_npm_installer::PackagesAllowedScripts;\n use deno_runtime:...
2025-09-15T18:33:47
golang/go
ad3db2562edf23cb4fb9a909ea11d57b65e304fb
18cd4a1fc7d5387ae91ffc23328e4fc81f93681d
cmd/compile: handle rematerialized op for incompatible reg constraint This CL fixes an issue raised by contributor dominikh@. Cherry-picked from the dev.simd branch. This CL is not necessarily SIMD specific. Apply early to reduce risk. Test is SIMD specific so not included for now. Change-Id: I941b330a6ba6f6c120c699...
[ { "path": "src/cmd/compile/internal/ssa/regalloc.go", "patch": "@@ -2561,7 +2561,26 @@ func (e *edgeState) processDest(loc Location, vid ID, splice **Value, pos src.XP\n \t\t\te.s.f.Fatalf(\"can't find source for %s->%s: %s\\n\", e.p, e.b, v.LongString())\n \t\t}\n \t\tif dstReg {\n-\t\t\tx = v.copyInto(e.p...
2025-09-16T03:27:41
tensorflow/tensorflow
0a9e95162bead19528f0c39a7212e8fee1005684
56569a373e30348402062199b07e29bcf56b4476
Tag PjRt migration candidates explicitly. (BUILD changes) This change adds a new tag "pjrt_migration_candidate" to all test targets that depend on HloTestBase, ClientLibraryTestBase, and HloRunnerTpuSystem. This change also adds a new `use_legacy_runtime` kwarg to `xla_test`, which acts as a replacement for "test_mig...
[ { "path": "third_party/xla/xla/service/gpu/kernels/BUILD", "patch": "@@ -149,7 +149,11 @@ xla_test(\n name = \"cutlass_gemm_fusion_test\",\n srcs = [\"cutlass_gemm_fusion_test.cc\"],\n backends = [\"gpu\"],\n- tags = [\"cuda-only\"],\n+ tags = [\n+ \"cuda-only\",\n+ \"pjrt_mi...
2026-01-07T17:16:29
mrdoob/three.js
7ede9aa9866b654333a4abe23ef3e5bd3731bf64
efb7510951afff90c90fd2c969675285e374b0be
BatchedMesh: Add `optimize()`. (#29527) * Add support for "deleteGeometry" * Add docs, fix mistype * BatchedMesh: Add an "optimize" function * Fix index offset * Add docs * Update BatchedMesh.html * Update BatchedMesh.html
[ { "path": "docs/api/en/objects/BatchedMesh.html", "patch": "@@ -301,6 +301,14 @@ <h3>\n \t\t\tCalling this will change all instances that are rendering that geometry.\n \t\t</p>\n \n+\n+\t\t<h3>\n+\t\t\t[method:this optimize]()\n+\t\t</h3>\n+\t\t<p>\n+\t\t\tRepacks the sub geometries in [name] to remove any...
2024-09-30T09:19:43
denoland/deno
08d989507592c4191b4e3ee50f20bd5c6877f287
4b81955f03050db75d50ad49a4d33047c2ebd149
chore(test): fix `node:fs.close` test flakiness (#30735)
[ { "path": "tests/unit_node/_fs/_fs_close_test.ts", "patch": "@@ -2,6 +2,7 @@\n import { assert, assertThrows, fail } from \"@std/assert\";\n import { assertCallbackErrorUncaught } from \"../_test_utils.ts\";\n import { close, closeSync, openSync } from \"node:fs\";\n+import { setTimeout } from \"node:timers...
2025-09-15T17:21:22
swiftlang/swift
3dd5286d485be78f7b3dbe58ca55caa779b1fb92
0a744979cad15b8b76e5c60d1dd2c9fc32f036ad
[embedded] [IRGen] Avoid creating "aliases" for type metadata address points in client modules We don't need to export the type metadata address point alias in clients that lazily emit other module's type metadata. There will be an exported metadata symbol in the originating module for that purpose. Instead, satisfy ...
[ { "path": "lib/IRGen/GenDecl.cpp", "patch": "@@ -5399,6 +5399,20 @@ llvm::GlobalValue *IRGenModule::defineTypeMetadata(\n addr = llvm::ConstantExpr::getBitCast(addr, TypeMetadataPtrTy);\n \n // For concrete metadata, declare the alias to its address point.\n+\n+ if (hasEmbeddedExistentials) {\n+ aut...
2026-02-06T15:06:48
golang/go
1caa95acfa9d516eb3bc26292b5601bea25a4e79
ec70d1902355f10e0ab4788334b80db11ab69785
cmd/compile: enhance prove to deal with double-offset IsInBounds checks For chunked iterations (useful for, but not exclusive to, SIMD calculations) it is common to see the combination of ``` for ; i <= len(m)-4; i += 4 { ``` and ``` r0, r1, r2, r3 := m[i], m[i+1], m[i+2], m[i+3] `` Prove did not handle the case of l...
[ { "path": "src/cmd/compile/internal/ssa/prove.go", "patch": "@@ -2174,6 +2174,65 @@ func unsignedSubUnderflows(a, b uint64) bool {\n \treturn a < b\n }\n \n+// checkForChunkedIndexBounds looks for index expressions of the form\n+// A[i+delta] where delta < K and i <= len(A)-K. That is, this is a chunked\n+...
2025-09-03T17:09:32
kubernetes/kubernetes
c8f8bb83d1183043e845ec1d1b5e3f801794a7e9
9720186a466cc627b0417433fb1f66cd1dd96f94
Update KAS apiserver network proxy to v0.34 Update konnectivity network proxy to v0.34.0. Includes bug fixes such as memory-leak in http-connect mode, stale count fix and updates to match/support kubernetes version 1.34 (https://github.com/kubernetes-sigs/apiserver-network-proxy/commits/v0.34.0)
[ { "path": "cluster/gce/addons/konnectivity-agent/konnectivity-agent-ds.yaml", "patch": "@@ -27,7 +27,7 @@ spec:\n nodeSelector:\n kubernetes.io/os: linux\n containers:\n- - image: registry.k8s.io/kas-network-proxy/proxy-agent:v0.31.2\n+ - image: registry.k8s.io/kas-network-...
2025-12-20T00:43:04
mrdoob/three.js
ccfcc1e1a3cdde72d6a659b69813f9dc693ae201
01a69ef5bf074b1031e486438574d00d388e8869
BatchedMesh: Add deleteGeometry function (#29523) * Add support for "deleteGeometry" * Add docs, fix mistype
[ { "path": "docs/api/en/objects/BatchedMesh.html", "patch": "@@ -260,7 +260,13 @@ <h3>\n \t\t<p>\n \t\t\tAdds the given geometry to the [name] and returns the associated geometry id referring to it to be used in other functions.\n \t\t</p>\n-\n+\t\t<h3>\n+\t\t\t[method:Integer deleteGeometry]( [param:Integer...
2024-09-29T19:10:39
tensorflow/tensorflow
56569a373e30348402062199b07e29bcf56b4476
56169b492e4cb310a71d68bfc5da6260eb428f91
Tag PjRt migration candidates explicitly. (BUILD changes) This change adds a new tag "pjrt_migration_candidate" to all test targets that depend on HloTestBase, ClientLibraryTestBase, and HloRunnerTpuSystem. This change also adds a new `use_legacy_runtime` kwarg to `xla_test`, which acts as a replacement for "test_mig...
[ { "path": "third_party/xla/xla/service/gpu/BUILD", "patch": "@@ -1905,6 +1905,8 @@ xla_test(\n backends = [\"gpu\"],\n data = [\"gpu_compiler_test_autotune_db.textproto\"],\n shard_count = 2,\n+ tags = [\"pjrt_migration_candidate\"],\n+ use_legacy_runtime = True,\n deps = [\n \...
2026-01-07T17:16:28
denoland/deno
432761aac5afa5108ac5bd41b3de8e0b9c93e2d8
5eea5f550472cf58a95fcee2b340d34f554ddd20
fix(ext/node): `fs.stat` and `fs.statSync` compatibility (#30637) Closes #30570 Changes in this PR: - Implement `ino`, `nlink`, and `blocks` properties of `Deno.FileInfo` on Windows. These changes are automatically reflected to the corresponding node stat function. In order to do so, I had to tinker with the [createB...
[ { "path": "cli/rt/file_system.rs", "patch": "@@ -1443,13 +1443,13 @@ impl FileBackedVfsMetadata {\n blksize: 0,\n size: self.len,\n dev: 0,\n- ino: 0,\n+ ino: None,\n mode: 0,\n- nlink: 0,\n+ nlink: None,\n uid: 0,\n gid: 0,\n rdev: 0,\n- bl...
2025-09-15T13:29:30
swiftlang/swift
51d4ef5597fb180cb9ce67d55f6ab1866558e4bd
a0664a938a305830fae6912a3aa31ec600480c4d
[rbi] Add logging to distinguish unknown pattern errors from dataflow errors Add REGIONBASEDISOLATION_LOG statements to all emitUnknownPatternError() methods in SendNonSendable.cpp to emit: Emitting Error. DiagnosticEmission Error: Unknown Code Pattern. Emitter: $EMITTER_NAME Inst: $INST Location: $FILE:$LINE ...
[ { "path": "lib/SILOptimizer/Mandatory/SendNonSendable.cpp", "patch": "@@ -438,6 +438,39 @@ static InFlightDiagnostic diagnoseNote(const SILInstruction *inst,\n std::forward<U>(args)...);\n }\n \n+//===----------------------------------------------------------------------===//\n+// ...
2026-02-06T19:34:52
golang/go
10e796884905d23ab2419cc158769e8fdc73de4e
ab043953cbd6e3cd262548710f35f05924aa8f32
cmd/compile: accounts rematerialize ops's output reginfo This CL implements the check for rematerializeable value's output regspec at its remateralization site. It has some potential problems, please see the TODO in regalloc.go. Fixes #70451. Cherry-picked from the dev.simd branch. This CL is not necessarily SIMD sp...
[ { "path": "src/cmd/compile/internal/ssa/func.go", "patch": "@@ -102,6 +102,7 @@ func (c *Config) NewFunc(fe Frontend, cache *Cache) *Func {\n \t\tNamedValues: make(map[LocalSlot][]*Value),\n \t\tCanonicalLocalSlots: make(map[LocalSlot]*LocalSlot),\n \t\tCanonicalLocalSplits: make(map[LocalSlotSpli...
2025-08-12T16:53:44
mrdoob/three.js
9af0a09049f81f7b355fd4facb7fb16cd9e35ced
e5f9e0031beb4bc4d61ccdd4cd54d5f1c4e69c33
Examples: Fix shadow map enabled in `webgpu_shadowmap` (#29520)
[ { "path": "examples/webgpu_shadowmap.html", "patch": "@@ -174,6 +174,7 @@\n \t\t\t\trenderer.setPixelRatio( window.devicePixelRatio );\n \t\t\t\trenderer.setSize( window.innerWidth, window.innerHeight );\n \t\t\t\trenderer.setAnimationLoop( animate );\n+\t\t\t\trenderer.shadowMap.enabled = true;\n \t\t\t\tr...
2024-09-28T14:13:53
denoland/deno
5eea5f550472cf58a95fcee2b340d34f554ddd20
27fa8db5c6f55b3fbfc64311aa0a15878ad62276
fix(bundle): set the type of the outputFile in the deno bundle to `Uint8Array<ArrayBuffer>` (#30716)
[ { "path": "cli/tsc/dts/lib.deno.unstable.d.ts", "patch": "@@ -146,7 +146,7 @@ declare namespace Deno {\n */\n export interface OutputFile {\n path: string;\n- contents?: Uint8Array;\n+ contents?: Uint8Array<ArrayBuffer>;\n hash: string;\n text(): string;\n }", "a...
2025-09-15T10:19:41
tensorflow/tensorflow
56169b492e4cb310a71d68bfc5da6260eb428f91
c79d9536253e202acd7483780f77fff35c5fa954
Tag PjRt migration candidates explicitly. (BUILD changes) This change adds a new tag "pjrt_migration_candidate" to all test targets that depend on HloTestBase, ClientLibraryTestBase, and HloRunnerTpuSystem. This change also adds a new `use_legacy_runtime` kwarg to `xla_test`, which acts as a replacement for "test_mig...
[ { "path": "third_party/xla/xla/service/llvm_ir/BUILD", "patch": "@@ -306,6 +306,7 @@ xla_cc_test(\n xla_cc_test(\n name = \"llvm_util_test\",\n srcs = [\"llvm_util_test.cc\"],\n+ tags = [\"pjrt_migration_candidate\"],\n deps = [\n \":llvm_util\",\n \"//xla:error_spec\",", ...
2026-01-07T17:15:51
swiftlang/swift
d003f1dcca38420543de220f75d89cad4619e523
c88519a83b58a6b7ae58b6cff8db9ed0351baeae
Use condfail_message in _debugPrecondition and make it more transparent Improve debugging from core dumps for Embedded Swift by using condfail rather than trap within _debugPrecondition, and make the call stack transparent enough that we promote these out to callers. Fixes rdar://159471659.
[ { "path": "stdlib/public/core/AssertCommon.swift", "patch": "@@ -91,7 +91,7 @@ internal func _fatalErrorFlags() -> UInt32 {\n #if !$Embedded\n @inline(never)\n #else\n-@inline(__always)\n+@inline(__always) @_transparent\n #endif\n @_semantics(\"programtermination_point\")\n internal func _assertionFailure(\...
2025-09-17T19:02:57
golang/go
ebb72bef44a0e125c7f900a04af6538e3c39dfc6
c54dc1418b6fbff4176aaaffcc9fab6f1ad631a6
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 has a "go"...
[ { "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
mrdoob/three.js
a646cbc32b40d2ae63fa7c065d0f9b7e0c4300cb
86b8447f70535ee21d624f5bf3244be5b6880053
WebGPURenderer: Fixed shadows not rendering correctly with `logarithmicDepthBuffer` (#29447) * Fixed shadows not rendering correctly when logarithmicDepthBuffer = true (issue #29200) * Further improvements to the logarithmic depth buffer shadows bugfix: 1) Disabled logarithmic depth buffer for orthographic cameras...
[ { "path": "src/materials/nodes/NodeMaterial.js", "patch": "@@ -10,7 +10,7 @@ import { normalLocal } from '../../nodes/accessors/Normal.js';\n import { instance } from '../../nodes/accessors/InstanceNode.js';\n import { batch } from '../../nodes/accessors/BatchNode.js';\n import { materialReference } from '....
2024-09-28T00:37:30
denoland/deno
27fa8db5c6f55b3fbfc64311aa0a15878ad62276
6050aea25aa2ba9af13c7f8e582df9d564b09ed6
fix(ext/node): handle falsy values enumerability in process.env (#30708) Closes #30701
[ { "path": "ext/node/polyfills/_process/process.ts", "patch": "@@ -85,7 +85,7 @@ export const env: InstanceType<ObjectConstructor> & Record<string, string> =\n ownKeys: () => ReflectOwnKeys(Deno.env.toObject()),\n getOwnPropertyDescriptor: (_target, name) => {\n const value = denoEnvGet(String(...
2025-09-15T09:59:51
tensorflow/tensorflow
c79d9536253e202acd7483780f77fff35c5fa954
e96d7cdf32183eec746c64f534abf5333aef5a36
Tag PjRt migration candidates explicitly. (BUILD changes) This change adds a new tag "pjrt_migration_candidate" to all test targets that depend on HloTestBase, ClientLibraryTestBase, and HloRunnerTpuSystem. This change also adds a new `use_legacy_runtime` kwarg to `xla_test`, which acts as a replacement for "test_mig...
[ { "path": "third_party/xla/xla/service/debug/BUILD", "patch": "@@ -94,6 +94,8 @@ xla_test(\n \"h100\",\n \"b200\",\n ],\n+ tags = [\"pjrt_migration_candidate\"],\n+ use_legacy_runtime = True,\n deps = [\n \"//xla:xla_proto_cc\",\n \"//xla/hlo/parser:hlo_parser\"...
2026-01-07T17:15:47
mrdoob/three.js
ac963e25c6ddf9ea1f5f070e90e78529db96f701
f9480de02c9aba7125d079d0a33b7c3db8033f22
WebGPURenderer: Fix NodeLibrary Logic for Minified Builds (#29501) * WebGPURenderer: Fix NodeLibrary after minification * add warning * fix missing materials * fix depthmaterial, thanks e2e tests * some minifier moves type as property
[ { "path": "examples/jsm/lines/LineMaterial.js", "patch": "@@ -405,12 +405,17 @@ ShaderLib[ 'line' ] = {\n \n class LineMaterial extends ShaderMaterial {\n \n+\n+\tstatic get type() {\n+\n+\t\treturn 'LineMaterial';\n+\n+\t}\n+\n \tconstructor( parameters ) {\n \n \t\tsuper( {\n \n-\t\t\ttype: 'LineMaterial'...
2024-09-27T16:06:37
swiftlang/swift
4646ca13859b6f09d3594d07e2127de0ee775bea
a0664a938a305830fae6912a3aa31ec600480c4d
[Concurrency] Mark a type as `nonisolated` if a conformance requires it When default isolation is set to `MainActor` a type should be considered `nonisolated` if it's primary definition is stated to conform to a `Sendable` or `SendableMetatype` protocol. But default isolation computation currently produces "unspecifie...
[ { "path": "lib/Sema/TypeCheckConcurrency.cpp", "patch": "@@ -23,6 +23,7 @@\n #include \"TypeCheckType.h\"\n #include \"TypeChecker.h\"\n #include \"swift/AST/ASTWalker.h\"\n+#include \"swift/AST/ActorIsolation.h\"\n #include \"swift/AST/Attr.h\"\n #include \"swift/AST/Concurrency.h\"\n #include \"swift/AST/...
2026-01-21T01:47:43
denoland/deno
6050aea25aa2ba9af13c7f8e582df9d564b09ed6
9e2472afc072fdbca49b3de7ccbb4beedf59fc6a
fix(ext/node): set default callback for `fs.close` (#30720) Fixes #30718
[ { "path": "ext/node/polyfills/_fs/_fs_close.ts", "patch": "@@ -13,9 +13,19 @@ const {\n ObjectPrototypeIsPrototypeOf,\n } = primordials;\n \n-export function close(fd: number, callback: CallbackWithError) {\n+function defaultCloseCallback(err: Error | null) {\n+ if (err !== null) throw err;\n+}\n+\n+expo...
2025-09-15T08:05:31
kubernetes/kubernetes
ef476fa19e4721917ea2c5410c24ae795c08036f
96d47f1383d024f74481e28cc490dd9cd70e677f
fix: linter
[ { "path": "staging/src/k8s.io/kubectl/pkg/describe/describe_test.go", "patch": "@@ -5153,24 +5153,23 @@ func TestDescribeEvents(t *testing.T) {\n \n \tdescriberFor := func(name string, clientset *fake.Clientset) ResourceDescriber {\n \t\tm := map[string]ResourceDescriber{\n-\t\t\t\"DaemonSetDescriber\": &Da...
2025-12-22T16:48:48
mrdoob/three.js
6cff00a99fb915c2934bcdab2201885fff3046bd
5b0e2813654909aa0c6c1e559ca48574480c93b4
TransformControls: Fix `dispose()`. (#29512)
[ { "path": "examples/jsm/controls/TransformControls.js", "patch": "@@ -536,12 +536,7 @@ class TransformControls extends Controls {\n \n \t\tthis.disconnect();\n \n-\t\tthis.traverse( function ( child ) {\n-\n-\t\t\tif ( child.geometry ) child.geometry.dispose();\n-\t\t\tif ( child.material ) child.material.d...
2024-09-27T09:48:30
tensorflow/tensorflow
e96d7cdf32183eec746c64f534abf5333aef5a36
8645449b376a0115b6e07a38905d1b34eddf53d8
Tag PjRt migration candidates explicitly. (BUILD changes) This change adds a new tag "pjrt_migration_candidate" to all test targets that depend on HloTestBase, ClientLibraryTestBase, and HloRunnerTpuSystem. This change also adds a new `use_legacy_runtime` kwarg to `xla_test`, which acts as a replacement for "test_mig...
[ { "path": "third_party/xla/xla/service/gpu/model/BUILD", "patch": "@@ -83,6 +83,7 @@ cc_library(\n xla_cc_test(\n name = \"sol_latency_estimator_test\",\n srcs = [\"sol_latency_estimator_test.cc\"],\n+ tags = [\"pjrt_migration_candidate\"],\n deps = [\n \":collective_interpolator\",\n...
2026-01-07T17:15:47
denoland/deno
9e2472afc072fdbca49b3de7ccbb4beedf59fc6a
bf8288baa50d084580ee003b08f7b2421773ba94
fix(check): filter resolution errors for bare ambient modules (#30690)
[ { "path": "cli/graph_util.rs", "patch": "@@ -23,6 +23,7 @@ use deno_graph::ModuleGraph;\n use deno_graph::ModuleGraphError;\n use deno_graph::ModuleLoadError;\n use deno_graph::ResolutionError;\n+use deno_graph::SpecifierError;\n use deno_graph::WorkspaceFastCheckOption;\n use deno_graph::source::Loader;\n ...
2025-09-12T16:44:13
mrdoob/three.js
cd250e295ba3f2368677ee5399f9c1a386bd9772
1a1e0a45b2e7b331f04e567821a1b30eb0d032ab
Global: Move some WebGPU modules from core to addons. (#29511) * Global: Move some WebGPU modules from core to addons. * Examples: Fixing some imports. * More fixes. * More clean up. * E2E: Add example to exception list.
[ { "path": "examples/jsm/tsl/display/AfterImageNode.js", "patch": "@@ -1,17 +1,5 @@\n-import TempNode from '../core/TempNode.js';\n-import { nodeObject, Fn, float, vec4 } from '../tsl/TSLBase.js';\n-import { NodeUpdateType } from '../core/constants.js';\n-import { uv } from '../accessors/UV.js';\n-import { t...
2024-09-27T09:42:56
kubernetes/kubernetes
7b6fbc9677afc703e058f9a9079805026af76745
3bde8d89a4fc53e2fd4ffd71ae87a2fcac7432ea
Fix typos in kubectl package comments - Fix 'Prefrences' -> 'Preferences' in kuberc.go - Fix 'formating' -> 'formatting' in humanreadable_flags.go
[ { "path": "staging/src/k8s.io/kubectl/pkg/cmd/get/humanreadable_flags.go", "patch": "@@ -58,7 +58,7 @@ func (f *HumanPrintFlags) EnsureWithNamespace() error {\n \treturn nil\n }\n \n-// AllowedFormats returns more customized formating options\n+// AllowedFormats returns more customized formatting options\n ...
2025-12-22T07:17:37
tensorflow/tensorflow
8645449b376a0115b6e07a38905d1b34eddf53d8
1b0d124fdd155774f8963e3bfec93cfd9e711266
Fix lifetime issue in CompilationEnvironmentsTest `CompilationEnvironments::RegisterProcessNewEnvFn` requires the passed in `Descriptor*` pointer to be valid for the lifetime of the program. The test `GetEnvTriggersFullNameFallback` dynamically registers a processing function for a custom descriptor and achieves the ...
[ { "path": "third_party/xla/xla/service/BUILD", "patch": "@@ -5529,14 +5529,13 @@ cc_library(\n \"@com_google_absl//absl/container:flat_hash_map\",\n \"@com_google_absl//absl/log\",\n \"@com_google_absl//absl/log:check\",\n- \"@com_google_absl//absl/memory\",\n \"@com_g...
2026-01-07T16:31:52
golang/go
d5b950399de01a0e28eeb48d2c8474db4aad0e8a
53845004d647e16b3de7c74e50cffaca77e028e9
cmd/cgo: fix unaligned arguments typedmemmove crash on iOS Irregularly typedmemmove and bulkBarrierPreWrite crashes on unaligned arguments. By aligning the arguments this is fixed. Fixes #46893 Change-Id: I7beb9fdc31053fcb71bee6c6cb906dea31718c56 GitHub-Last-Rev: 46ae8b96889644aab60ea4284cf447a740354c6a GitHub-Pull-...
[ { "path": "src/cmd/cgo/internal/testout/out_test.go", "patch": "@@ -0,0 +1,144 @@\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 out_test\n+\n+import (\n+\t\"bufio\"\n+\t\"bytes...
2025-09-30T21:53:11
denoland/deno
bf8288baa50d084580ee003b08f7b2421773ba94
97ae158610f8b2421929fe360bf5c334a70d7c55
fix(ext/fetch): mark unix and vsock proxy conns as proxy (#30699) This means that requests will have an absolute path specified.
[ { "path": "ext/fetch/proxy.rs", "patch": "@@ -925,13 +925,13 @@ where\n }\n }\n #[cfg(not(windows))]\n- Proxied::Unix(_) => Connected::new(),\n+ Proxied::Unix(_) => Connected::new().proxy(true),\n #[cfg(any(\n target_os = \"android\",\n target_os = \"linux...
2025-09-12T13:53:34
swiftlang/swift
3d84ab5845067e5bdafdaaa8b81cc8e38858965c
a965f825a47f0806f784357ecd7b507e09fc239c
ExistentialSpecializer: complete lifetimes in the generated thunk if needed If the thunk calls to a no-return function, it is ended with an `unreachable`. This may introduce incomplete lifetimes. Fixes a compiler crash rdar://169555460
[ { "path": "lib/SILOptimizer/FunctionSignatureTransforms/ExistentialTransform.cpp", "patch": "@@ -27,8 +27,10 @@\n #include \"swift/SIL/TypeSubstCloner.h\"\n #include \"swift/SILOptimizer/PassManager/Transforms.h\"\n #include \"swift/SILOptimizer/Utils/BasicBlockOptUtils.h\"\n+#include \"swift/SILOptimizer/U...
2026-02-06T14:40:03
mrdoob/three.js
1a1e0a45b2e7b331f04e567821a1b30eb0d032ab
37d6f280a5cd642e801469bb048f52300d31258e
Playground: Update `flow.module.js` - fix zoom
[ { "path": "playground/libs/flow.module.js", "patch": "@@ -24,6 +24,12 @@ let _id = 0;\n \n class Serializer extends EventTarget {\n \n+\tstatic get type() {\n+\n+\t\treturn 'Serializer';\n+\n+\t}\n+\n \tconstructor() {\n \n \t\tsuper();\n@@ -74,7 +80,7 @@ class Serializer extends EventTarget {\n \n \tget cl...
2024-09-26T15:31:43
tensorflow/tensorflow
1b0d124fdd155774f8963e3bfec93cfd9e711266
2e1239bed32facbb416a12b4ddc2ea858a1e0878
[Autotuner] Log selected config verbosely. E.g. `Picked best config: {Triton : go/debugstr { block_m: 16 block_n: 8 block_k: 64 split_k: 1 num_stages: 4 num_warps: 2 num_ctas: 1 } duration: 66.656us, scratch_bytes: 0}`. PiperOrigin-RevId: 853260524
[ { "path": "third_party/xla/xla/backends/autotuner/autotuner.cc", "patch": "@@ -371,7 +371,8 @@ absl::StatusOr<Autotuner::Config> Autotuner::TuneBestConfig(\n absl::StrCat(\"Autotuning failed for HLO: \", instr->ToString(),\n \" with error: \", best_result.status().ToString()));\...
2026-01-07T15:50:44
denoland/deno
8244cd8e214551faadea0902cc40f10fb4244670
4c0ae84d94abacc9a71ee1a81488b96c5dbfe3ca
fix(ext/node): validate readlink arguments (#30691) Also accepts `Buffer` typed path. Allows https://github.com/nodejs/node/blob/v24.2.0/test/parallel/test-fs-readlink-type-check.js test to pass. Towards #29972
[ { "path": "ext/node/polyfills/_fs/_fs_readlink.ts", "patch": "@@ -5,9 +5,11 @@\n \n import { TextEncoder } from \"ext:deno_web/08_text_encoding.js\";\n import { MaybeEmpty, notImplemented } from \"ext:deno_node/_utils.ts\";\n-import { pathFromURL } from \"ext:deno_web/00_infra.js\";\n import { promisify } f...
2025-09-11T16:43:48
golang/go
53845004d647e16b3de7c74e50cffaca77e028e9
bbdff9e8e1fca772a13acb0c4c7828cfe246d403
net/http/httputil: deprecate ReverseProxy.Director The Director function has been superseded by Rewrite. Rewrite avoids fundamental security issues with hop-by-hop header handling in the Director API and has better default handling of X-Forwarded-* headers. Fixes #73161 Change-Id: Iadaf3070e0082458f79fb892ade51cb7ce...
[ { "path": "api/next/73161.txt", "patch": "@@ -0,0 +1 @@\n+pkg net/http/httputil, type ReverseProxy struct, Director //deprecated #73161", "additions": 1, "deletions": 0, "language": "Plain Text" }, { "path": "doc/next/6-stdlib/99-minor/net/http/httputil/73161.md", "patch": "@@ -0,0 +...
2025-10-02T16:42:57
mrdoob/three.js
8b66cd5983f5649c7129e900049cfef6578bc593
f7eac2853e4ccce77355a407779f0f5c96215ecd
ReferenceNode: Fix null reference using `getNodeType()` (#29498) * fix null reference using `getNodeType()` * add `sprite.center` check
[ { "path": "src/materials/nodes/manager/NodeMaterialObserver.js", "patch": "@@ -90,6 +90,12 @@ class NodeMaterialObserver {\n \t\t\t\tworldMatrix: renderObject.object.matrixWorld.clone()\n \t\t\t};\n \n+\t\t\tif ( renderObject.object.center ) {\n+\n+\t\t\t\tdata.center = renderObject.object.center.clone();\n...
2024-09-25T20:46:35
swiftlang/swift
a965f825a47f0806f784357ecd7b507e09fc239c
7deb203301cc207a61dd582f4ff4e59a270d900c
MandatoryPerformanceOptimizations: make sure to break infinite loops and complete lifetimes Those tasks are already done within the optimization in `runSimplification`. However, afterwards we specialize generics in the function. And specialization can create unreachable blocks and incomplete lifetimes. Fixes a compil...
[ { "path": "SwiftCompilerSources/Sources/Optimizer/ModulePasses/MandatoryPerformanceOptimizations.swift", "patch": "@@ -233,6 +233,16 @@ private func optimize(function: Function, _ context: FunctionPassContext, _ modu\n // stores in global init functions.\n eliminateDeadStores(in: function, context)\...
2026-02-06T14:11:48
tensorflow/tensorflow
fb78adaec824f848fd341a2d1b41aac6aa20bb17
f386b754054c3dfa3d93c7433c479fd4d2843f6f
[XLA:GPU] Refactor Triton pass dumping and improve error logging. Extracts the logic for setting up MLIR pass dumping to a helper class and uses it in both `CompileTritonToLLVM` and `LowerXTileToTriton`. The public API is minimized to a single function EnableIRPrintingIfRequested. PiperOrigin-RevId: 853236668
[ { "path": "third_party/xla/xla/backends/gpu/codegen/triton/BUILD", "patch": "@@ -320,13 +320,13 @@ cc_library(\n \":lowering_util\",\n \":support\",\n \"//xla:autotuning_proto_cc\",\n- \"//xla:status_macros\",\n \"//xla:util\",\n \"//xla:xla_data_proto_cc\",\n ...
2026-01-07T14:37:39
mrdoob/three.js
ab23d7be0086d869c01c94f9fc35d099e2e4d3ec
9df48f2a92d09c97cc50f865eb2e369c5816a897
BatchedMesh: Add `getGeometryRangeAt` (#29409) * BatchedMesh: Add getGeometryRangeAt Co-authored-by: Luigi Denora <luigidenora@users.noreply.github.com> * Fix eslint error Co-authored-by: Luigi Denora <luigidenora@users.noreply.github.com> * Doc changed * Add optional target --------- Co-authored-...
[ { "path": "docs/api/en/objects/BatchedMesh.html", "patch": "@@ -167,16 +167,29 @@ <h3>\n \t\t<p>\n \t\t\t[page:Integer instanceId]: The id of an instance to get the visibility state of.\n \t\t</p>\n-\t\t<p>Get whether the given instance is marked as \"visible\" or not.</p>\n-\t\t\n+\t\t<p>Get whether the gi...
2024-09-24T19:42:48
swiftlang/swift
7deb203301cc207a61dd582f4ff4e59a270d900c
27f970af5eaeef0cc95f329b71d6c78f860e0a7b
Inliner: break infinite loops which are a result of inlining This can happen if the only exit of a loop is the throw-branch of a `try_apply` and the inlined function does not actually throw. Fixes a SIL verification failure. rdar://169569071
[ { "path": "lib/SILOptimizer/Transforms/PerformanceInliner.cpp", "patch": "@@ -1482,9 +1482,8 @@ class SILPerformanceInlinerPass : public SILFunctionTransform {\n removeUnreachableBlocks(*getFunction());\n invalidateAnalysis(SILAnalysis::InvalidationKind::FunctionBody);\n \n- // We know that...
2026-02-06T13:55:30
golang/go
bbdff9e8e1fca772a13acb0c4c7828cfe246d403
4008e07080ef215e46f48e5e2f6b5d37d6d9cb9f
net/http: update bundled x/net/http2 and delete obsolete http2inTests http2inTests is no longer needed after go.dev/cl/708135 and should be deleted. To prevent errors in future vendored dependency updates, h2_bundle.go is also updated together in this change. Change-Id: I7b8c3f6854203fab4ec639a2a268df0cd2b1dee7 Revie...
[ { "path": "src/go.mod", "patch": "@@ -4,7 +4,7 @@ go 1.26\n \n require (\n \tgolang.org/x/crypto v0.42.0\n-\tgolang.org/x/net v0.44.0\n+\tgolang.org/x/net v0.44.1-0.20251002015445-edb764c2296f\n )\n \n require (", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "src/go...
2025-10-02T16:41:25
mrdoob/three.js
f97d930ff24880e3b68b302b723b85aa7a4f252d
19e79dcbcd115a6e0452cfa31543806fe9a1dc79
SkyMesh,WaterMesh: Fix NodeMaterial imports (#29477)
[ { "path": "examples/jsm/objects/SkyMesh.js", "patch": "@@ -2,10 +2,9 @@ import {\n \tBackSide,\n \tBoxGeometry,\n \tMesh,\n-\tNodeMaterial,\n \tVector3\n } from 'three';\n-import { float, Fn, vec3, acos, add, mul, clamp, cos, dot, exp, max, mix, modelViewProjection, normalize, positionWorld, pow, smoothstep...
2024-09-23T22:08:15
tensorflow/tensorflow
e55bee0dfca397403659b2a441e17cf76b7a35aa
10ebfedb0e2a90739179b86f242c12cd7b8edd5f
Add rank check in MatrixSetDiagOp to prevent crashes. The MatrixSetDiagOp kernel can crash if the rank of the `diag` tensor is too small when `lower_diag_index != upper_diag_index`. This change adds an `OP_REQUIRES` check to validate the `diag` tensor's rank before this access. A new test case is added to `diag_op_tes...
[ { "path": "tensorflow/core/kernels/linalg/matrix_set_diag_op.cc", "patch": "@@ -25,15 +25,14 @@ limitations under the License.\n \n #include \"unsupported/Eigen/CXX11/Tensor\" // from @eigen_archive\n #include \"tensorflow/core/framework/op_kernel.h\"\n+#include \"tensorflow/core/framework/op_requires.h\"\...
2026-01-07T13:16:41
golang/go
0e4e2e68323df08d9e4c876e5abc5b549bd247f5
f03c392295cfd57c29c92fcc300181f8016cf5ac
runtime: skip TestGoroutineLeakProfile under mayMoreStackPreempt This may be the long-term fix, but we first need to understand if this just makes the tests flaky, or if it's revealing an actual underlying issue. I'm leaning toward the former. If it is the former, ideally we just make the tests robust (wait longer, ma...
[ { "path": "src/runtime/goroutineleakprofile_test.go", "patch": "@@ -6,12 +6,20 @@ package runtime_test\n \n import (\n \t\"fmt\"\n+\t\"internal/testenv\"\n+\t\"os\"\n \t\"regexp\"\n \t\"strings\"\n \t\"testing\"\n )\n \n func TestGoroutineLeakProfile(t *testing.T) {\n+\tif strings.Contains(os.Getenv(\"GOFLA...
2025-10-02T19:15:34