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 |
|---|---|---|---|---|---|
kubernetes/kubernetes | cff8bc868656ed67128072d7cedf92ce60a31d20 | fb10a2995459c52238024adbb10ffdfbdafd2c4d | fix the unknown flag: --logtostderr error | [
{
"path": "test/images/agnhost/mtlsclient/client.go",
"patch": "@@ -22,7 +22,6 @@ import (\n \t\"crypto/tls\"\n \t\"crypto/x509\"\n \t\"encoding/pem\"\n-\t\"flag\"\n \t\"fmt\"\n \t\"io\"\n \t\"log\"\n@@ -58,9 +57,6 @@ func init() {\n func main(cmd *cobra.Command, args []string) error {\n \tlogs.InitLogs()\n... | 2025-10-26T03:48:43 |
tensorflow/tensorflow | 53dfa7e1aa10368666cca8b701572a964a2e8f25 | c51d830d034e458dff1b1613774904308957b630 | [xla:cpu] Fix msan errors in sort_lib + tfcompile
PiperOrigin-RevId: 833569008 | [
{
"path": "tensorflow/compiler/aot/thunk_proto_execution_deserializer.cc",
"patch": "@@ -624,6 +624,7 @@ ThunkProtoExecutionDeserializer::GetSortThunkRunImpl(\n [comparator](const void** data) {\n bool result;\n (*comparator)(&result, nullptr, data, nullptr, nullptr, nul... | 2025-11-18T01:55:25 |
golang/go | 03ad694dcbe8d981d644c9878326bd086d056af0 | 9d1cd0b8816654ac36f2122b52dd8335aae86b26 | runtime: update skips for TestGdbBacktrace
We encountered a new type of "no such process" error on loong64, it's like this
"Couldn't get NT_PRSTATUS registers: No such process.", I checked the source code
of gdb, NT_PRSTATUS is not fixed, it may be another name, so I use regular
expression here to match possible cases... | [
{
"path": "src/runtime/runtime-gdb_test.go",
"patch": "@@ -528,11 +528,12 @@ func TestGdbBacktrace(t *testing.T) {\n \tgot, err := cmd.CombinedOutput()\n \tt.Logf(\"gdb output:\\n%s\", got)\n \tif err != nil {\n+\t\tnoProcessRE := regexp.MustCompile(`Couldn't get [a-zA-Z_ -]* ?registers: No such process\\.`... | 2025-06-13T03:48:44 |
swiftlang/swift | 8d1ae65a4b1500ee0bfa652a55a9e04952c7fb14 | dc21b0882c24bfa9a19da16082ac0a8e04fba37d | Adjust swift LLVM config to support `LLVM_LINK_LLVM_DYLIB`
When building LLVM as a dynamic library, we only need to depend on the
LLVM target to build properly.
Bug: #85241 | [
{
"path": "cmake/modules/SwiftSharedCMakeConfig.cmake",
"patch": "@@ -338,6 +338,12 @@ endmacro()\n # configuration in LLVM. ('llvm_config()' selects the same build configuration\n # in LLVM as we have for Swift.)\n function(swift_common_llvm_config target)\n+ if (LLVM_LINK_LLVM_DYLIB)\n+ # Link agains... | 2026-01-15T16:54:22 |
denoland/deno | bc8b191b7c8df03dab8ee084506df87a32143281 | c6c6be328fb8ce3cc9bec9a8f55cd60dd774691e | ci: fix main (#29442) | [
{
"path": ".github/workflows/ci.generate.ts",
"patch": "@@ -947,6 +947,7 @@ const ci = {\n 'gsutil -h \"Cache-Control: public, max-age=3600\" cp ./target/release/*.symcache gs://dl.deno.land/canary/$(git rev-parse HEAD)/',\n \"echo ${{ github.sha }} > canary-latest.txt\",\n ... | 2025-05-24T20:21:16 |
mrdoob/three.js | ce36e0d1406b99eda5a85003e7d846456db57887 | 4194940f9145164d8eebf2358f53c72780de44ab | WebGPURenderer: Add Anisotropy Support & Resolve Scissor Issues in WebGL Backend (#27609)
* fix anisotropy and stencil
* puppeteer doesnt like webgpu | [
{
"path": "examples/files.json",
"patch": "@@ -369,7 +369,8 @@\n \t\t\"webgpu_tsl_transpiler\",\n \t\t\"webgpu_video_panorama\",\n \t\t\"webgpu_postprocessing_afterimage\",\n-\t\t\"webgpu_multisampled_renderbuffers\"\n+\t\t\"webgpu_multisampled_renderbuffers\",\n+\t\t\"webgpu_materials_texture_anisotropy\"\... | 2024-01-23T09:33:24 |
golang/go | acb914f2c2a3ec3dd227812ba6b119480d6400cd | b51f1cdb8752c2fdd6a2bf06224aab0b5c07caac | cmd/doc: fix -http on Windows
On Windows, GOMODCACHE almost never starts with a slash, and
"go doc -http" constructs a GOPROXY URL by doing "file://" + GOMODCACHE,
resulting in an invalid file URI.
For example, if GOMODCACHE is "C:\foo", then the file URI should be
"file:///C:/foo", but it becomes "file://C:/foo" ins... | [
{
"path": "src/cmd/go/alldocs.go",
"patch": "@@ -405,6 +405,8 @@\n //\n //\tgo doc\n //\t\tShow documentation for current package.\n+//\tgo doc -http\n+//\t\tServe HTML documentation over HTTP for the current package.\n //\tgo doc Foo\n //\t\tShow documentation for Foo in the current package.\n //\t\t(Foo s... | 2025-06-27T10:45:22 |
tensorflow/tensorflow | 4fc3c61b2574fc35831e7bfc779d115fac4042b0 | 1119532d1ea619471df367ad1689964534523251 | [XLA:CollectivePipeliner] Fix two issues:
1) Accept transpose as a formatting op in ForwardSink.
2) Do not stop when a large collective was sunk in the previous iteration. Instead, delay sinking large collectives while sinking small collectives level by level and run an additional sinking iteration dedicated to large c... | [
{
"path": "third_party/xla/xla/service/collective_pipeliner.cc",
"patch": "@@ -348,7 +348,7 @@ CheckStoreIntoSliceIsCompatible(\n if (direction ==\n collective_pipeliner_utils::PipeliningDirection::kForwardSink) {\n // TODO(maggioni): Support these ops in forward sink.\n- if (HloPredi... | 2025-11-17T19:31:27 |
mrdoob/three.js | 02d41f89d5a58bee0fbcfcab169409e5337de403 | 74aa7bd1403b8b384ed90f8518129e7fa5fe2d23 | Volumetric NURBS (#27601)
* Update Addons.js
* Update NURBSUtils.js
Fixed inconsistent naming of parameters in comment
* Update NURBSUtils.js
* Create NURBSVolume.js
* Update webgl_geometry_nurbs.html
Expanded NURBS example to NURBSVolume objects.
* Update webgl_geometry_nurbs.html
Added missin... | [
{
"path": "examples/jsm/Addons.js",
"patch": "@@ -25,6 +25,7 @@ export * from './csm/CSMShader.js';\n export * as Curves from './curves/CurveExtras.js';\n export * from './curves/NURBSCurve.js';\n export * from './curves/NURBSSurface.js';\n+export * from './curves/NURBSVolume.js';\n export * as NURBSUtils f... | 2024-01-23T09:14:34 |
denoland/deno | c6c6be328fb8ce3cc9bec9a8f55cd60dd774691e | ff078dcfabfe916c63db800d2d91ca0dd77da5c7 | ci: error when `cargo test` makes git status dirty (#29429) | [
{
"path": ".github/workflows/ci.generate.ts",
"patch": "@@ -998,6 +998,22 @@ const ci = {\n ].join(\"\\n\"),\n run: \"cargo test --release --locked --features=panic-trace\",\n },\n+ {\n+ name: \"Ensure no git changes\",\n+ if: \"matrix.job == 'test'\",\n+... | 2025-05-24T17:32:11 |
swiftlang/swift | 349fadf933cebd8e20d06dd32299f2545139a11e | 0ee2c0d75dd79c91cc592a4e06b745858a3da6d4 | [Test][SourceKit] Fix match-module-cache-with-compiler.swift on Windows | [
{
"path": "test/SourceKit/Misc/match-module-cache-with-compiler.swift",
"patch": "@@ -3,9 +3,9 @@\n \n // RUN: %empty-directory(%t)\n \n-// RUN: %swiftc_driver -emit-module -emit-module-path themod.swiftmodule -Xfrontend -experimental-skip-all-function-bodies -module-name themod -module-cache-path %t/mcp -s... | 2026-01-15T14:19:51 |
golang/go | b51f1cdb8752c2fdd6a2bf06224aab0b5c07caac | f1e6ae2f6f5424f9f5c6dc915866d4f457c1483e | runtime: remove arbitrary 5-second timeout in TestNeedmDeadlock
The NeedmDeadlock test program currently has a 5-second timeout,
which is sort of arbitrary. It is long enough in regular mode
(which usually takes 0.0X seconds), but not quite so for
configurations like ASAN. Instead of using an arbitrary timeout,
just u... | [
{
"path": "src/runtime/testdata/testprogcgo/needmdeadlock.go",
"patch": "@@ -70,8 +70,6 @@ import \"C\"\n \n import (\n \t\"fmt\"\n-\t\"os\"\n-\t\"time\"\n )\n \n func init() {\n@@ -84,12 +82,8 @@ func GoNeedM() {\n \n func NeedmDeadlock() {\n \t// The failure symptom is that the program hangs because of a\... | 2025-06-27T23:45:22 |
mrdoob/three.js | e43ed970eaf1b1bf835878c815d5691d87ab3216 | 13a5874eabfe45fb8459e268e9786a20054bb6a2 | WebGPURenderer: Add timestamp queries support in WebGPU (#27597)
* add timestamp queries support
* add live example
* improve example
* honor async render and move to renderer await functions
* rename to trackTimestamp and cleanupg
* new async standard
* fix tabs
--------- | [
{
"path": "examples/jsm/objects/QuadMesh.js",
"patch": "@@ -37,9 +37,9 @@ class QuadMesh {\n \n \t}\n \n-\trender( renderer ) {\n+\tasync renderAsync( renderer ) {\n \n-\t\trenderer.render( this._mesh, _camera );\n+\t\tawait renderer.renderAsync( this._mesh, _camera );\n \n \t}\n \n@@ -55,6 +55,12 @@ class ... | 2024-01-21T15:47:50 |
kubernetes/kubernetes | c403fd4481193e3e98d8bccf2b5368484662fbd0 | c764de03dc6e7779bc20bc183f89db153219d749 | kubeadm: validate the KubeletVersion for cgroups v1
By using k8s.io/system-validators v1.12.1 a KubeletVersion
can be passed to the CgroupsValidator. The library
can then decide if to throw an error or a warning.
An error is thrown if the version is >= 1.35.
During upgrade pass a KubeletVersion that is with MINOR+1
... | [
{
"path": "cmd/kubeadm/app/cmd/phases/upgrade/apply/preflight.go",
"patch": "@@ -70,7 +70,7 @@ func runPreflight(c workflow.RunData) error {\n \tif err := preflight.RunRootCheckOnly(ignorePreflightErrors); err != nil {\n \t\treturn err\n \t}\n-\tif err := preflight.RunUpgradeChecks(ignorePreflightErrors); e... | 2025-10-23T16:22:34 |
denoland/deno | 3de21f1b8dbdc27365730cfc9a4c9273dc188819 | 16e5ac6cd7beb833b837c02392e345037b85e697 | fix(ext/node): add `fchown` and `fchownSync` to `node:fs` (#29408) | [
{
"path": "Cargo.lock",
"patch": "@@ -2085,6 +2085,7 @@ dependencies = [\n \"fs3\",\n \"libc\",\n \"log\",\n+ \"nix 0.27.1\",\n \"once_cell\",\n \"os_pipe\",\n \"parking_lot\",",
"additions": 1,
"deletions": 0,
"language": "Unknown"
},
{
"path": "cli/rt/file_system.rs",
"patch"... | 2025-05-23T06:00:39 |
tensorflow/tensorflow | 1119532d1ea619471df367ad1689964534523251 | 0c8f9d1ec66de3ff005812f0cc24b57b70ffd6b9 | Rollback to fix JAX OSS tests.
See: https://github.com/jax-ml/jax/actions/runs/19434252629/job/55602012097
Reverts 7bbde49af9d139d18d1898e83066cb4bf2d02e96
PiperOrigin-RevId: 833423809 | [
{
"path": "third_party/xla/xla/backends/profiler/gpu/BUILD",
"patch": "@@ -168,7 +168,6 @@ cuda_library(\n \"@com_google_googletest//:gtest_for_library\",\n \"@local_config_cuda//cuda:cuda_headers\",\n \"@local_config_cuda//cuda:cuda_runtime\",\n- \"@local_tsl//tsl/profiler/li... | 2025-11-17T19:28:19 |
swiftlang/swift | 11f1ec8fe440ebc9dee5cd1f9f539d88086de73e | 355424f8b50f2b7b97f64f86854176e39ce667d3 | [cxx-interop] Fix occasionally omitted diagnostic | [
{
"path": "lib/IRGen/GenStruct.cpp",
"patch": "@@ -622,6 +622,9 @@ namespace {\n auto &ctx = IGF.IGM.Context;\n auto *importer = static_cast<ClangImporter *>(ctx.getClangModuleLoader());\n \n+ auto &diagEngine = importer->getClangSema().getDiagnostics();\n+ clang::DiagnosticErrorTrap t... | 2026-01-13T17:29:30 |
mrdoob/three.js | 13a5874eabfe45fb8459e268e9786a20054bb6a2 | 6c1e2c0a2d6f694548a74f208df47569040f8100 | WebGPURenderer: Custom fog example, TriNoise3D and fixes (#27599)
* LoopNode: Fix float values in GLSL
* Added TriNoise3D TSL
* Fix non-TSL class extended
* add webgpu_custom_fog example
* revision
* cleanup
* update screenshot
* Update puppeteer.js
* auto rotate
* update builds
* update | [
{
"path": "examples/files.json",
"patch": "@@ -330,6 +330,7 @@\n \t\t\"webgpu_cubemap_adjustments\",\n \t\t\"webgpu_cubemap_dynamic\",\n \t\t\"webgpu_cubemap_mix\",\n+\t\t\"webgpu_custom_fog\",\n \t\t\"webgpu_depth_texture\",\n \t\t\"webgpu_equirectangular\",\n \t\t\"webgpu_instance_mesh\",",
"additions... | 2024-01-21T15:25:53 |
golang/go | f1e6ae2f6f5424f9f5c6dc915866d4f457c1483e | e81c624656e415626c7ac3a97768f5c2717979a4 | reflect: fix TypeAssert on nil interface values
In the Go language a type assertion of a nil interface value
will always report false:
var err error
v, ok := err.(error) // always reports (nil, false)
Consequently, assertion on a reflect.Value.Interface()
will also report false:
var err error
rv := ValueOf(&err... | [
{
"path": "src/reflect/all_test.go",
"patch": "@@ -8719,6 +8719,11 @@ func TestTypeAssert(t *testing.T) {\n \ttestTypeAssert(t, any(int(1)), int(1), true)\n \ttestTypeAssert(t, any(int(1)), byte(0), false)\n \ttestTypeAssert(t, fmt.Stringer(vv), vv, true)\n+\n+\ttestTypeAssert(t, any(nil), any(nil), false)\... | 2025-06-27T17:59:44 |
denoland/deno | 16e5ac6cd7beb833b837c02392e345037b85e697 | 5898835e4c81be4f3aa88260e4b0c839874e124b | fix(lsp): handle 'deno.config' setting outside of workspace (#29420) | [
{
"path": "cli/lsp/config.rs",
"patch": "@@ -2026,7 +2026,12 @@ impl ConfigTree {\n let pkg_json_cache = PackageJsonMemCache::default();\n let workspace_cache = WorkspaceMemCache::default();\n let mut scopes = BTreeMap::new();\n- for (folder_url, ws_settings) in &settings.by_workspace_folder ... | 2025-05-22T17:43:45 |
tensorflow/tensorflow | 89a86d1ecc0acd4f4f0223e7050e31cf707fb2ed | 768adefcc5488f6ed1997532134df70c439c462c | PR #31902: [XLA:GPU] Escape MLIR in triton parsing error
Imported from GitHub PR https://github.com/openxla/xla/pull/31902
📝 Summary of Changes
This patch escapes the dumped IR in the error message when triton
parser fails. This ensures that the error message is always valid UTF-8.
🎯 Justification
JAX interprets e... | [
{
"path": "third_party/xla/xla/service/gpu/ir_emitter_unnested.cc",
"patch": "@@ -34,6 +34,7 @@ limitations under the License.\n #include \"absl/log/check.h\"\n #include \"absl/log/log.h\"\n #include \"absl/status/status.h\"\n+#include \"absl/strings/escaping.h\"\n #include \"absl/strings/str_cat.h\"\n #inc... | 2025-11-17T15:59:15 |
mrdoob/three.js | 6c1e2c0a2d6f694548a74f208df47569040f8100 | edcd30520f23fbf8fd03454303820f7a0a9a316b | WebGPURenderer: Fix `copyFramebufferToTexture` wrong framebuffer binding in WebGLBackend (#27593)
* fix framebuffer binding
* fix stencil
* fix webgl warning with unecessary READ_FRAMEBUFFER null binding | [
{
"path": "examples/jsm/renderers/webgl/utils/WebGLTextureUtils.js",
"patch": "@@ -486,21 +486,25 @@ class WebGLTextureUtils {\n \t\tconst width = texture.image.width;\n \t\tconst height = texture.image.height;\n \n-\t\tstate.bindFramebuffer( gl.READ_FRAMEBUFFER, null );\n-\n \t\tif ( texture.isDepthTexture... | 2024-01-20T19:42:32 |
golang/go | e81c624656e415626c7ac3a97768f5c2717979a4 | 2a22aefa1f7befb0ac7a95c918b75b05919c1907 | os: use minimal file permissions when opening parent directory in RemoveAll
On Windows, the process might not have read permission on the parent
directory, but still can delete files in it. This change allows
RemoveAll to open the parent directory with minimal permissions, which
is sufficient for deleting child files.... | [
{
"path": "src/os/removeall_at.go",
"patch": "@@ -8,6 +8,7 @@ package os\n \n import (\n \t\"io\"\n+\t\"runtime\"\n \t\"syscall\"\n )\n \n@@ -34,7 +35,15 @@ func removeAll(path string) error {\n \t// its parent directory\n \tparentDir, base := splitPath(path)\n \n-\tparent, err := Open(parentDir)\n+\tflag :... | 2025-06-27T09:16:54 |
denoland/deno | 8ac14deada322509a801693083ee05141888cde2 | 0d6fac61f0160f6ddc345a2fedf4d2ddf779ea78 | fix(lsp): don't cache jsxImportSource on lockfile-only changes (#29415) | [
{
"path": "cli/lsp/language_server.rs",
"patch": "@@ -1150,6 +1150,10 @@ impl Inner {\n .send_did_refresh_deno_configuration_tree_notification(\n self.config.tree.to_did_refresh_params(),\n );\n+ }\n+\n+ #[cfg_attr(feature = \"lsp-tracing\", tracing::instrument(skip_all))]\n+ fn dispa... | 2025-05-21T22:39:11 |
mrdoob/three.js | 668968e67c416b925abc5c68e1d3273651a5ac6d | 687df5c3c2936828060db734334a2f9d4c6c8e5a | 🎥 : PerspectiveCamera: New helper methods `getFrustumBounds()`, `getFrustumSize()`. (#27574)
* 🎥 : WIP : New PerspectiveCamera helper method - getMarginAt()
* 🐛 : FIX : Various small fixes
* 🎥 : UPGRADE : Account for camera's matrix world
* 🎥 : REFACTOR : getMarginsAt() => frustumHeight(), frustumWidth()... | [
{
"path": "docs/api/en/cameras/PerspectiveCamera.html",
"patch": "@@ -118,6 +118,19 @@ <h2>Methods</h2>\n \t\t<h3>[method:undefined clearViewOffset]()</h3>\n \t\t<p>Removes any offset set by the [page:PerspectiveCamera.setViewOffset .setViewOffset] method.</p>\n \n+\t\t<h3>[method:Vector2 getFrustumSize]( [... | 2024-01-19T20:23:36 |
swiftlang/swift | 94ec6bc6ed2c950dbfd59d4714b785f61c8e5c7f | 9a99b71a825abb97a71076c7f8f5f65196791c04 | [Concurrency] Adopt typed throws and nonisolated(nonsending) in withTaskCancellationHandler
Replace the use of rethrows and #isolation in
withTaskCancellationHandler with typed throws and
nonisolated(nonsending), respectively.
Fixes rdar://146901428. | [
{
"path": "stdlib/public/Concurrency/TaskCancellation.swift",
"patch": "@@ -74,10 +74,29 @@ import Swift\n /// Therefore, if a cancellation handler must acquire a lock, other code should\n /// not cancel tasks or resume continuations while holding that lock.\n @available(SwiftStdlib 5.1, *)\n+@export(implem... | 2025-11-14T22:45:37 |
golang/go | 2a22aefa1f7befb0ac7a95c918b75b05919c1907 | 742fda95246958076e439bbcf71fedda43a894bb | encoding/json: add security section to doc
Add a section to the package doc which details the security
considerations of using encoding/json, in particular with respect to
parser misalignment issues.
Additionally, clarify previously ambiguous statement in the Unmarshal
doc about how case is used when matching keys in... | [
{
"path": "src/encoding/json/decode.go",
"patch": "@@ -43,11 +43,14 @@ import (\n // and the input is a JSON quoted string, Unmarshal calls\n // [encoding.TextUnmarshaler.UnmarshalText] with the unquoted form of the string.\n //\n-// To unmarshal JSON into a struct, Unmarshal matches incoming object\n-// ke... | 2025-06-26T19:19:23 |
denoland/deno | 0d6fac61f0160f6ddc345a2fedf4d2ddf779ea78 | 99264cd2f26ee91a27343e1a4f78f2b0622ae5b9 | fix(node): do not look up node_module paths when using global resolver (#29398)
It doesn't make sense for the global resolver to search for npm packages
because the structure of the folder there doesn't do node_resolution. | [
{
"path": "cli/module_loader.rs",
"patch": "@@ -410,6 +410,7 @@ impl CliModuleLoaderFactory {\n let node_require_loader = Rc::new(CliNodeRequireLoader {\n cjs_tracker: self.shared.cjs_tracker.clone(),\n emitter: self.shared.emitter.clone(),\n+ npm_resolver: self.shared.npm_resolver.clon... | 2025-05-21T17:52:23 |
mrdoob/three.js | 687df5c3c2936828060db734334a2f9d4c6c8e5a | 597b839e1790c1a4551602c9d8fdae1de3dbab82 | BufferGeometryUtils.mergeAttributes: Add support for interleaved buffers (#27591)
* Add support for interleaved attributes to mergeAttributes
* Fix use of offset | [
{
"path": "examples/jsm/utils/BufferGeometryUtils.js",
"patch": "@@ -311,13 +311,6 @@ function mergeAttributes( attributes ) {\n \n \t\tconst attribute = attributes[ i ];\n \n-\t\tif ( attribute.isInterleavedBufferAttribute ) {\n-\n-\t\t\tconsole.error( 'THREE.BufferGeometryUtils: .mergeAttributes() failed.... | 2024-01-19T15:03:02 |
kubernetes/kubernetes | f0e88857f7b5d3f56e1296b8c7b38bf4a7eee676 | 6652c9fadf4fa2febdca4a856a0340086236f9e5 | Return error in case of discovery client failure | [
{
"path": "staging/src/k8s.io/kubectl/pkg/cmd/apiresources/apiresources.go",
"patch": "@@ -229,6 +229,9 @@ func (o *APIResourceOptions) RunAPIResources() error {\n \t\tallResources = append(allResources, apiList)\n \t}\n \n+\tif len(allResources) == 0 {\n+\t\treturn utilerrors.NewAggregate(errs)\n+\t}\n \tf... | 2025-10-23T22:28:18 |
golang/go | fdc076ce762326fc19ef1b6de01da6ce50f55926 | d9d2cadd635f3b8fdfba0ab6369604f5e78643b0 | net/http: fix RoundTrip context cancellation for js/wasm
The existing js/wasm implementation of RoundTrip calls abort() on the
fetch() call when the context is canceled but does not wait for for the
resulting promise to be rejected. The result is the failure callback for the
promise will be called at some later point ... | [
{
"path": "src/net/http/roundtrip_js.go",
"patch": "@@ -236,6 +236,14 @@ func (t *Transport) RoundTrip(req *Request) (*Response, error) {\n \t\tif !ac.IsUndefined() {\n \t\t\t// Abort the Fetch request.\n \t\t\tac.Call(\"abort\")\n+\n+\t\t\t// Wait for fetch promise to be rejected prior to exiting. See\n+\t... | 2025-06-10T15:09:35 |
swiftlang/swift | 88905a47a1900232319c0b1d4d9492d8e67d5ecf | 37e89902a32162c5beab475e805b47ee5ad097b6 | [Concurrency] Fix `stripConcurrency` to strip only global actor isolation
The original condition was removing not just global actor isolation
but any isolation set on the function type. This leads to incorrect
conversions in AST and miscompiles.
Resolves: https://github.com/swiftlang/swift/issues/86332
Resolves: rdar... | [
{
"path": "lib/AST/Type.cpp",
"patch": "@@ -1001,7 +1001,7 @@ Type TypeBase::stripConcurrency(bool recurse, bool dropGlobalActor) {\n ASTExtInfo extInfo =\n fnType->hasExtInfo() ? fnType->getExtInfo() : ASTExtInfo();\n extInfo = extInfo.withSendable(false);\n- if (dropGlobalActor)\n+ i... | 2026-01-14T17:06:56 |
denoland/deno | 99264cd2f26ee91a27343e1a4f78f2b0622ae5b9 | 7abce12183f24c6d8c5a939392545c11fbc28f6a | fix: Support virtio vsock only on systems on which it is available (#29268) (#29354)
See https://github.com/denoland/deno/issues/29268 for the related
discussion. @devsnek @marvinhagemeister | [
{
"path": "cli/Cargo.toml",
"patch": "@@ -193,6 +193,7 @@ winapi = { workspace = true, features = [\"knownfolders\", \"mswsock\", \"objbase\", \"\n [target.'cfg(unix)'.dependencies]\n nix.workspace = true\n shell-escape = \"=0.1.5\"\n+[target.'cfg(any(target_os = \"linux\", target_os = \"macos\"))'.dependen... | 2025-05-21T13:54:05 |
mrdoob/three.js | 6b31f885a946180a0b9d512634c62906fb5c5dc1 | 6fe0b840ecdd4509370bff655cf0f085c256cb00 | Material: Add alpha to coverage define, add clipping & alpha test anti aliasing (#22172)
* add alpha-to-coverage define
* update clipping plane material to support alpha to coverage
* update cliping examples
* add early discard
* make standard material work
* update stencil example
* fix alphaToCover... | [
{
"path": "docs/api/en/materials/Material.html",
"patch": "@@ -45,8 +45,9 @@ <h3>[property:Float alphaTest]</h3>\n \t\t<h3>[property:Boolean alphaToCoverage]</h3>\n \t\t<p>\n \t\t\tEnables alpha to coverage. Can only be used with MSAA-enabled contexts\n-\t\t\t(meaning when the renderer was created with `ant... | 2024-01-19T09:38:51 |
golang/go | d9d2cadd635f3b8fdfba0ab6369604f5e78643b0 | 0f8ab2db177baee7b04182f5641693df3b212aa9 | encoding/json: fix typo in hotlink for jsontext.PreserveRawStrings
Updates #71845
Change-Id: Ie099e7ac77293696fd9e69559487e27f4b70ab3f
Reviewed-on: https://go-review.googlesource.com/c/go/+/684416
Auto-Submit: Joseph Tsai <joetsai@digital-static.net>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.ia... | [
{
"path": "src/encoding/json/v2_options.go",
"patch": "@@ -221,7 +221,7 @@ type Options = jsonopts.Options\n // - [jsontext.AllowInvalidUTF8]\n // - [jsontext.EscapeForHTML]\n // - [jsontext.EscapeForJS]\n-// - [jsontext.PreserveRawString]\n+// - [jsontext.PreserveRawStrings]\n //\n // All other b... | 2025-06-27T01:18:32 |
kubernetes/kubernetes | 8a331a59d139e41097538d267512b96eb58543b1 | 196d3abcd53d15dbd6b4f85110d8289088d745dd | test: Fix data race on policy refresh interval
Add a mutex to protect the global policyRefreshInterval. This prevents a data race during tests where SetPolicyRefreshIntervalForTests writes to the variable while a background goroutine reads it. | [
{
"path": "staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/generic/policy_source.go",
"patch": "@@ -47,6 +47,7 @@ import (\n const policyRefreshIntervalDefault = 1 * time.Second\n \n var policyRefreshInterval = policyRefreshIntervalDefault\n+var policyRefreshIntervalLock sync.Mutex\n \n type policy... | 2025-10-23T21:24:50 |
tensorflow/tensorflow | f575b8d60ecd81ff23a1c43746621a953ad07ec2 | 8a1e75e8b0417447a01a6eb76fd0ae7b7120c80c | [XLA:GPU] Register BF16 kernels for Cub sort and Cub prefix sum
This was probably an oversight. Our tests did not detect this, as SortRewriter
will not rewrite if there is no kernel registered for the data type.
Adjust the SortSupportsType test so that it would catch this issue.
PiperOrigin-RevId: 833305248 | [
{
"path": "third_party/xla/xla/service/gpu/build_defs.bzl",
"patch": "@@ -11,6 +11,7 @@ def get_cub_sort_kernel_types(name = \"\"):\n \"\"\" List of supported types for CUB sort kernels.\n \"\"\"\n return [\n+ \"bf16\",\n \"f16\",\n \"f32\",\n \"f64\",",
"addit... | 2025-11-17T14:04:26 |
swiftlang/swift | 6f60adf009c078183e418698baa52acae45b941b | 7847de0095d013f6dfb1d6aacc59f0b8018681dd | Use a separate DIRefMap cache for existential typealiases (#86368)
After https://github.com/swiftlang/swift/pull/85655, DI types for
existential typealiases and their inner protocol types are created,
which may encounter conflicts in the DIRefMap cache and assert failures
because they can have identical mangled names.... | [
{
"path": "lib/IRGen/IRGenDebugInfo.cpp",
"patch": "@@ -161,6 +161,7 @@ class IRGenDebugInfoImpl : public IRGenDebugInfo {\n llvm::StringSet<> OriginallyDefinedInTypes;\n TrackingDIRefMap DIRefMap;\n TrackingDIRefMap InnerTypeCache;\n+ TrackingDIRefMap ExistentialTypeAliasMap;\n /// \\}\n \n /// ... | 2026-01-14T21:50:59 |
denoland/deno | 7abce12183f24c6d8c5a939392545c11fbc28f6a | 8687526f947fbaeafd3f0dd0652d30ab95585170 | fix(ext/node): use primordials in `ext/node/polyfills/internal/errors.ts` (#29382) | [
{
"path": "ext/node/polyfills/internal/errors.ts",
"patch": "@@ -1,9 +1,6 @@\n // Copyright 2018-2025 the Deno authors. MIT license.\n // Copyright Node.js contributors. All rights reserved. MIT License.\n \n-// TODO(petamoriken): enable prefer-primordials for node polyfills\n-// deno-lint-ignore-file prefe... | 2025-05-21T03:49:40 |
mrdoob/three.js | a7b2f19aefaab83462d22e3ae9a537445cef2f1d | 9eefe186dea772510e36baf189824b66d0c419fc | Examples: Update external library dependencies (#27584)
* Update external lib version
* Fix import | [
{
"path": "examples/webgl_geometry_csg.html",
"patch": "@@ -29,8 +29,8 @@\n \t\t\t\t\"imports\": {\n \t\t\t\t\t\"three\": \"../build/three.module.js\",\n \t\t\t\t\t\"three/addons/\": \"./jsm/\",\n-\t\t\t\t\t\"three-mesh-bvh\": \"https://unpkg.com/three-mesh-bvh@0.6.0/build/index.module.js\",\n-\t\t\t\t\t\"t... | 2024-01-18T12:33:27 |
golang/go | 0f8ab2db177baee7b04182f5641693df3b212aa9 | 988a20c8c5e2c9eb49f8749e5ee94ce3c964fe59 | cmd/link: permit a larger size BSS reference to a smaller DATA symbol
Currently, if there is a BSS reference and a DATA symbol
definition with the same name, we pick the DATA symbol, as it
contains the right content. In this case, if the BSS reference
has a larger size, we error out, because it is not safe to access
a... | [
{
"path": "src/cmd/cgo/internal/testsanitizers/asan_test.go",
"patch": "@@ -42,6 +42,8 @@ func TestASAN(t *testing.T) {\n \t\t{src: \"asan_global3_fail.go\", memoryAccessError: \"global-buffer-overflow\", errorLocation: \"asan_global3_fail.go:13\"},\n \t\t{src: \"asan_global4_fail.go\", memoryAccessError: \... | 2025-06-26T19:46:31 |
kubernetes/kubernetes | 9e5b6ad7488cc89e768f76d83866bb6c22337691 | 0bb040288a3a42deb8cce2a65df45b9dfd90d3bb | fix error checks | [
{
"path": "test/images/agnhost/README.md",
"patch": "@@ -367,6 +367,33 @@ Usage:\n [--retry_time <seconds>] [--break_on_expected_content <true_or_false>]\n ```\n \n+### mtlsclient\n+\n+```console\n+ kubectl run test-agnhost \\\n+ --generator=run-pod/v1 \\\n+ --image=registry.k8s.io/e2e-... | 2025-10-22T15:14:02 |
mrdoob/three.js | 534737d242a82239d7e89457ba6005810a361153 | 0b91656c4f7c89ad9333279fc9ff1659a9841793 | Nodes: Fix `viewportCoordinate` build (#27566) | [
{
"path": "examples/jsm/nodes/display/ViewportNode.js",
"patch": "@@ -59,8 +59,6 @@ class ViewportNode extends Node {\n \n \t\tconst scope = this.scope;\n \n-\t\tif ( scope === ViewportNode.COORDINATE ) return;\n-\n \t\tlet output = null;\n \n \t\tif ( scope === ViewportNode.RESOLUTION ) {",
"additions"... | 2024-01-15T15:12:40 |
tensorflow/tensorflow | 8a1e75e8b0417447a01a6eb76fd0ae7b7120c80c | 581d1a6689062926c6459ad3c7807278220e24c9 | Update autotuner to filter out "Cublas_fission" backends.
- This fixes the xla_gpu_cublas_fallback flag behavior.
PiperOrigin-RevId: 833294523 | [
{
"path": "third_party/xla/xla/backends/autotuner/autotuner.cc",
"patch": "@@ -499,7 +499,7 @@ absl::StatusOr<Autotuner::ConfigResult> Autotuner::PickBestConfig(\n std::remove_if(results.begin(), results.end(),\n [](const ConfigResult& result) {\n retu... | 2025-11-17T13:27:41 |
denoland/deno | 224908c39a63216085919b6611892355971cc75e | ef7090cfa8450502192a2eb4c517661d88644dc7 | fix(node): do not require permission checks for require's node_modules stats (#29397)
This change specifically allows op_require_stat to stat node_module
directories without having to go through the permission system.
Closes https://github.com/denoland/deno/issues/20484 | [
{
"path": "ext/node/ops/require.rs",
"patch": "@@ -374,7 +374,13 @@ pub fn op_require_stat<\n #[string] path: String,\n ) -> Result<i32, JsErrorBox> {\n let path = PathBuf::from(path);\n- let path = ensure_read_permission::<P>(state, &path)?;\n+ let path = if path.ends_with(\"node_modules\") {\n+ /... | 2025-05-20T15:50:41 |
swiftlang/swift | 251f0a266c1c1386595117c756ae2df0fefe428f | 9885eab3a26c3f4a6b5c8760788a239a59dde382 | Sema: Fix missing diagnostics with internal bridging headers
rdar://166322874 | [
{
"path": "lib/Sema/ResilienceDiagnostics.cpp",
"patch": "@@ -240,7 +240,8 @@ static bool diagnoseTypeAliasDeclRefExportability(SourceLoc loc,\n /// deferred to exportability checking. An exportable extension is effectively a\n /// public extension.\n static bool shouldDiagnoseDeclAccess(const ValueDecl *D,... | 2025-11-13T23:32:07 |
golang/go | 988a20c8c5e2c9eb49f8749e5ee94ce3c964fe59 | b5d555991ab73e06e09741952a66dd7eeaf2a185 | cmd/compile/internal/escape: evaluate any side effects when rewriting with literals
CL 649035 and CL 649079 updated escape analysis to rewrite
certain operands in OMAKE and OCONVIFACE nodes from non-constant
expressions to basic literals that evaluate to the same value.
However, when doing that rewriting, we need to ... | [
{
"path": "src/cmd/compile/internal/escape/escape.go",
"patch": "@@ -545,6 +545,14 @@ func (b *batch) rewriteWithLiterals(n ir.Node, fn *ir.Func) {\n \t\tbase.Fatalf(\"no ReassignOracle for function %v with closure parent %v\", fn, fn.ClosureParent)\n \t}\n \n+\tassignTemp := func(n ir.Node, init *ir.Nodes)... | 2025-06-25T23:01:11 |
mrdoob/three.js | 0b91656c4f7c89ad9333279fc9ff1659a9841793 | 7a47f0e691969dbc8bc3149228cb230bf270df9d | WebGPURenderer: Fix `BachedMesh` coordinate system in case of `WebGLBackend` (#27567) | [
{
"path": "examples/jsm/renderers/webgpu/WebGPUBackend.js",
"patch": "@@ -2,6 +2,8 @@\n import 'https://greggman.github.io/webgpu-avoid-redundant-state-setting/webgpu-check-redundant-state-setting.js';\n //*/\n \n+import { WebGPUCoordinateSystem } from 'three';\n+\n import { GPUFeatureName, GPUTextureFormat... | 2024-01-15T15:11:41 |
kubernetes/kubernetes | c764de03dc6e7779bc20bc183f89db153219d749 | 7d353c524988a1321ce63bc2e9bea90728b65105 | vendor: update system-validators to v1.12.1
Includes an update to the cgroups validator to throw
an error if v1 is detected on the host.
Also includes a KubeletVersion field to determine
to show a warning or an error. | [
{
"path": "go.mod",
"patch": "@@ -115,7 +115,7 @@ require (\n \tk8s.io/mount-utils v0.0.0\n \tk8s.io/pod-security-admission v0.0.0\n \tk8s.io/sample-apiserver v0.0.0\n-\tk8s.io/system-validators v1.11.1\n+\tk8s.io/system-validators v1.12.1\n \tk8s.io/utils v0.0.0-20250604170112-4c0f3b243397\n \tsigs.k8s.io/... | 2025-10-21T11:25:11 |
denoland/deno | ef7090cfa8450502192a2eb4c517661d88644dc7 | 721a8ad8a283caace2a9038f9d06bc9d7bb4f261 | fix(cli): Correct a small typo in help output (#29395)
Fixes a typo in the description of the DENO_EMIT_CACHE_MODE help
description.
closes: #29394
Signed-off-by: Phil Hawksworth <phil@deno.com> | [
{
"path": "cli/args/flags.rs",
"patch": "@@ -1190,7 +1190,7 @@ static ENV_VARIABLES_HELP: &str = cstr!(\n <p(245)>(defaults to $HOME/.deno/bin)</>\n <g>DENO_KV_DB_MODE</> Controls whether Deno.openKv() API should use disk based or in-memory\n datab... | 2025-05-20T14:42:42 |
tensorflow/tensorflow | 2c999f516dbc5ce4d36015ec0080b484372b18cc | be02f0db8dbc76b9d12f62ae091d205580053762 | PR #33956: [ROCm] Add missing run_under to tsan/asan configs, add missing tsan ignorelist
Imported from GitHub PR https://github.com/openxla/xla/pull/33956
📝 Summary of Changes
Properly support asan/tsan builds with rbe by providing the lists through the run_under script
🎯 Justification
asan and tsan configs were ... | [
{
"path": "third_party/xla/build_tools/rocm/rocm_xla.bazelrc",
"patch": "@@ -26,10 +26,13 @@ build:tsan --copt -fno-omit-frame-pointer\n build:tsan --linkopt -fsanitize=thread\n build:tsan --linkopt -g\n build:tsan --//build_tools/rocm:sanitizer=tsan\n+build:tsan --test_env=TSAN_OPTIONS=suppressions=build_t... | 2025-11-17T11:40:42 |
mrdoob/three.js | 2ba547da88f9b875b4f85db6074b25d8d39d8779 | 329f9f0fb7c60822a04cf1c91dd5232dcd9aaa2c | WebGLProgram: Improve formatting of error log. (#27565) | [
{
"path": "src/renderers/webgl/WebGLProgram.js",
"patch": "@@ -966,7 +966,8 @@ function WebGLProgram( renderer, cacheKey, parameters, bindingStates ) {\n \t\t\t\t\tconsole.error(\n \t\t\t\t\t\t'THREE.WebGLProgram: Shader Error ' + gl.getError() + ' - ' +\n \t\t\t\t\t\t'VALIDATE_STATUS ' + gl.getProgramParam... | 2024-01-15T10:13:50 |
denoland/deno | 71d1384a89c2106a809e3d1499328551da23d7fa | ff2354be0b489609e138ff03de361b4cc87c8153 | fix(ext/node): include `assert.ok` in `node:test` (#29383) | [
{
"path": "ext/node/polyfills/testing.ts",
"patch": "@@ -32,6 +32,7 @@ const methodsToCopy = [\n \"rejects\",\n \"strictEqual\",\n \"throws\",\n+ \"ok\",\n ];\n \n /** `assert` object available via t.assert */",
"additions": 1,
"deletions": 0,
"language": "Unknown"
},
{
"path": "t... | 2025-05-20T04:05:19 |
kubernetes/kubernetes | 1e3a6e18d08b7ad9e55af72ecc0f57bb5d0c87ca | 286d13b96c0e7ddfb9bb1eca7433a90de93a645c | node: e2e: update podresources check post fix of kubernetes#119423
With kubernetes/kubernetes#132028 merged, pods in terminal states are no longer
reported by the podresources API. The previous test logic accounted for the old
behavior where even failed pods appeared in the API response (tracked under k/k
issue #11942... | [
{
"path": "test/e2e_node/device_plugin_test.go",
"patch": "@@ -989,17 +989,14 @@ func testDevicePluginNodeReboot(f *framework.Framework, pluginSockDir string) {\n \t\t\t\treturn err\n \t\t\t}, 30*time.Second, framework.Poll).ShouldNot(gomega.HaveOccurred(), \"cannot fetch the compute resource assignment aft... | 2025-10-21T13:19:09 |
tensorflow/tensorflow | 8ba07281da4a307807284b34adf6a5b5f7e956c0 | bca597caa1d6087e890e9babb62975fc378e4189 | PR #34042: Fix comments for xla/hlo/ir/hlo_input_output_alias_config.h
Imported from GitHub PR https://github.com/openxla/xla/pull/34042
📝 Summary of Changes
I am reading the code of XLA buffer alias, I think the comments for xla::HloInputOutputAliasConfig::AliasKind has the typo.
🚀 Kind of Contribution
📚 Documen... | [
{
"path": "third_party/xla/xla/hlo/ir/hlo_input_output_alias_config.h",
"patch": "@@ -41,8 +41,8 @@ class HloModule;\n // parameter index in the entry computation.\n class HloInputOutputAliasConfig {\n public:\n- // The kind of aliases which can be set. A kMayAlias is one setup at\n- // compilation time ... | 2025-11-17T10:43:49 |
mrdoob/three.js | 329f9f0fb7c60822a04cf1c91dd5232dcd9aaa2c | a1be53d671b7161ad8479ab47c72de97e34faa68 | show which shader caused compilation error (#27553) | [
{
"path": "src/renderers/webgl/WebGLProgram.js",
"patch": "@@ -966,6 +966,7 @@ function WebGLProgram( renderer, cacheKey, parameters, bindingStates ) {\n \t\t\t\t\tconsole.error(\n \t\t\t\t\t\t'THREE.WebGLProgram: Shader Error ' + gl.getError() + ' - ' +\n \t\t\t\t\t\t'VALIDATE_STATUS ' + gl.getProgramParam... | 2024-01-15T10:12:22 |
swiftlang/swift | a35a0ad696533bc456ffdba5acc6202d181e7bf6 | 287b6015ada488d6e7fba66db6657622595d0c2e | [cxx-interop] Support inherited protected destructors and copy/move constructors
C++ classes can have protected destructors, copy constructors, and move
constructors. This pattern prevents that class from being directly
constructed, copied, or moved directly, but permits those operations on
types that inherit from it.... | [
{
"path": "lib/ClangImporter/ClangImporter.cpp",
"patch": "@@ -91,6 +91,7 @@\n #include \"clang/Tooling/DependencyScanning/ScanAndUpdateArgs.h\"\n #include \"llvm/ADT/DenseSet.h\"\n #include \"llvm/ADT/IntrusiveRefCntPtr.h\"\n+#include \"llvm/ADT/PointerIntPair.h\"\n #include \"llvm/ADT/STLExtras.h\"\n #inc... | 2026-01-08T01:31:59 |
denoland/deno | ff2354be0b489609e138ff03de361b4cc87c8153 | 5a8c0a23db69d3c012b692de52fe841c61506265 | fix(ext/node): Fix `Database#exec` should return undefined (#29368) | [
{
"path": "Cargo.lock",
"patch": "@@ -1754,9 +1754,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_core\"\n-version = \"0.347.0\"\n+version = \"0.348.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"d75ae5562f6ad750bc2007e7b1032ae37115a83fe58b6fbc77331c47744956c... | 2025-05-20T02:20:49 |
golang/go | f8ccda2e0574c9ca5d92068852a34b463f87a85b | f069a8299876f9987a01a8d4a664d2a887bd5efc | runtime: make explicit nil check in (*spanInlineMarkBits).init
The hugo binary gets slower, potentially dramatically so, with
GOEXPERIMENT=greenteagc. The root cause is page mapping churn. The Green
Tea code introduced a new implicit nil check on value in a
freshly-allocated span to clear some new heap metadata. This ... | [
{
"path": "src/runtime/mgcmark_greenteagc.go",
"patch": "@@ -111,6 +111,26 @@ func (o *spanScanOwnership) or(v spanScanOwnership) spanScanOwnership {\n }\n \n func (imb *spanInlineMarkBits) init(class spanClass) {\n+\tif imb == nil {\n+\t\t// This nil check and throw is almost pointless. Normally we would\n... | 2025-06-25T15:47:05 |
mrdoob/three.js | caff384aa96447c252050f1ca72150771e6a136a | 28a7aba17f64ae18be624ef2d46d37ed690bd0a2 | WebGPURenderer: PostProcessing fix tone mapping on display nodes (#27557)
* disable tone mapping on postprocess quadmesh
* typo | [
{
"path": "examples/jsm/nodes/display/AfterImageNode.js",
"patch": "@@ -109,6 +109,7 @@ class AfterImageNode extends TempNode {\n \t\t//\n \n \t\tconst materialComposed = this._materialComposed || ( this._materialComposed = builder.createNodeMaterial( 'MeshBasicNodeMaterial' ) );\n+\t\tmaterialComposed.tone... | 2024-01-13T20:04:27 |
tensorflow/tensorflow | caddf5796c909951b3816028dc51c783e1921bc1 | 48afbe1feada977fe2a8902717f2f50883cc7049 | Remove dependency on HloInstruction from CustomKernelThunk
CustomKernelThunk's constructor used to take a pointer to an HloInstruction for the sole purpose to extract the computation name (for debugging purposes).
Since Thunks should not depend on HLO if avoidable this change moves the creation of ThunkInfo to where ... | [
{
"path": "third_party/xla/xla/backends/gpu/codegen/custom.cc",
"patch": "@@ -101,9 +101,11 @@ absl::StatusOr<std::unique_ptr<Thunk>> BuildCustomKernelThunkForFusion(\n emitters::KernelArguments::Create(ir_emitter_context.buffer_assignment(),\n GetDefaultBufferA... | 2025-11-17T10:36:26 |
denoland/deno | 4801c0e7bb0ab2e5e493ca6477c14e040aa30f25 | 69eeabb879cd51943da590de5ab6e49bc1c18582 | fix(coverage): pass DENO_COVERAGE_DIR env var correctly (#29363) | [
{
"path": "cli/main.rs",
"patch": "@@ -308,7 +308,7 @@ async fn run_subcommand(\n // this is set in order to ensure spawned processes use the same\n // coverage directory\n env::set_var(\n- \"DENO_UNSTABLE_COVERAGE_DIR\",\n+ \"DENO_COVERAGE_DIR\",\n ... | 2025-05-19T08:30:01 |
swiftlang/swift | d0017555c7314e6c8430e9e8ab8cb7ca7946187d | 9a99b71a825abb97a71076c7f8f5f65196791c04 | [Runtime] Faster dynamic exclusivity checking implemented in Swift.
Replace C++ implementation of swift_beginAccess and swift_endAccess with (almost) pure Swift implementation. Helpers remain in C++ for TLS, getting return addresses, and raising a fatal error on violations.
This change also moves the exclusivity acce... | [
{
"path": "Runtimes/Core/Core/CMakeLists.txt",
"patch": "@@ -74,6 +74,7 @@ add_library(swiftCore\n EmptyCollection.swift\n EnumeratedSequence.swift\n Equatable.swift\n+ Exclusivity.swift\n ErrorType.swift\n ExistentialCollection.swift\n Filter.swift",
"additions": 1,
"deletions": 0,
... | 2025-10-17T18:02:08 |
golang/go | e515ef8bc271f632bb2ebb94e8e700ab67274268 | 47b941f445f0a839e826b81a5394d30934821500 | context: fix typo in context_test.go
Change-Id: Iee90ce7965eec4074fcb81a34968591877a062d3
GitHub-Last-Rev: f18fd099e490b130affa298bfc40da27ac589b26
GitHub-Pull-Request: golang/go#74360
Reviewed-on: https://go-review.googlesource.com/c/go/+/683675
Auto-Submit: Dmitri Shuralyov <dmitshur@golang.org>
Reviewed-by: Dmitri ... | [
{
"path": "src/context/context_test.go",
"patch": "@@ -5,7 +5,7 @@\n package context\n \n // Tests in package context cannot depend directly on package testing due to an import cycle.\n-// If your test does requires access to unexported members of the context package,\n+// If your test requires access to un... | 2025-06-24T23:46:06 |
mrdoob/three.js | 28a7aba17f64ae18be624ef2d46d37ed690bd0a2 | 1a30c17473b937606a54888b392383f57506cccc | Docs: fix typo :P (#27554) | [
{
"path": "docs/api/ar/objects/LOD.html",
"patch": "@@ -27,7 +27,7 @@ <h2>مثال للكود</h2>\n \t\t\t\n \t\t// إنشاء كرات مع 3 مستويات من التفاصيل وإنشاء مستويات LOD جديدة لهم\n \t\tfor( let i = 0; i < 3; i++ ) {\n-\t\t\tconst geometry = new THREE.IcosahedronGeometry( 10, 3 - i )\n+\t\t\tconst geometry = new T... | 2024-01-13T09:49:47 |
tensorflow/tensorflow | 48afbe1feada977fe2a8902717f2f50883cc7049 | 7fd6f3e6aa2836d6cfda6ea8c891fc6ac1fcf960 | [XLA:GPU] Add more informative error messages to CHECKs in GpuPerformanceModel.
PiperOrigin-RevId: 833239767 | [
{
"path": "third_party/xla/xla/service/gpu/model/gpu_performance_model.cc",
"patch": "@@ -227,7 +227,11 @@ GpuPerformanceModel::RunTimes GpuPerformanceModel::EstimateRunTimes(\n const HloInstruction* producer, const GpuHloCostAnalysis* cost_analysis,\n absl::Span<const HloInstruction* const> fused_c... | 2025-11-17T10:30:40 |
denoland/deno | 69eeabb879cd51943da590de5ab6e49bc1c18582 | 3c6a99fce39be5f995432aae06d3171cd84b0ee9 | fix(ext/node): implement `before` and `after` hooks in `node:test` (#29367)
Ref https://github.com/denoland/deno/issues/29360 and
https://github.com/denoland/deno/issues/28837. Needed for `node:sqlite`
tests | [
{
"path": "ext/node/polyfills/testing.ts",
"patch": "@@ -6,6 +6,8 @@ const {\n ArrayPrototypePush,\n ArrayPrototypeForEach,\n SafePromiseAll,\n+ TypeError,\n+ SafeArrayIterator,\n SafePromisePrototypeFinally,\n Symbol,\n } = primordials;\n@@ -54,6 +56,8 @@ const skippedSymbol = Symbol(\"skipped\... | 2025-05-19T07:26:41 |
golang/go | fcb985085925e1d89511ef7523215a2f71cfb891 | 11f11f2a00aa3149a6ea69a50e7b7b429cf368b7 | net/http: reduce allocs in CrossOriginProtection.Check
Rather than repeatedly creating error values on
CrossOriginProtection.Check's unhappy paths, return non-exported and
effectively constant error variables.
For #73626.
Change-Id: Ibaa036c29417071b3601b8d200ab0902359d1bb9
GitHub-Last-Rev: e704d63cd63665845d544796e... | [
{
"path": "src/net/http/csrf.go",
"patch": "@@ -136,7 +136,7 @@ func (c *CrossOriginProtection) Check(req *Request) error {\n \t\tif c.isRequestExempt(req) {\n \t\t\treturn nil\n \t\t}\n-\t\treturn errors.New(\"cross-origin request detected from Sec-Fetch-Site header\")\n+\t\treturn errCrossOriginRequest\n ... | 2025-06-23T16:19:19 |
swiftlang/swift | 9497dbb7e97723b3d2a0077d6caa5ef300ee7f89 | 40dabefdb43a4205ad43bdaa4cd9534f0533de93 | LifetimeDependence: Centralized ParamInfo type & prefetch SourceFile
All relevant information about each parameter, including the implicit self
parameter, is now represented by an instance of the new ParamInfo type.
By pre-computing the "contextualized" parameter types and the source file, we
eliminate the last few c... | [
{
"path": "lib/AST/LifetimeDependence.cpp",
"patch": "@@ -405,12 +405,22 @@ class LifetimeDependenceChecker {\n using Param = AnyFunctionType::Param;\n \n SmallVector<LifetimeEntry *, 2> lifetimeEntries;\n- SmallVector<Param, 4> parameters;\n- SmallVector<SourceLoc, 4> paramLocs;\n+ struct ParamInfo ... | 2026-01-14T14:27:11 |
mrdoob/three.js | 6c7cf52790b5d5089b4939ae56c826d0c30773ef | 01f09f81fdcfd09dd7fe9408dc6c43a183545ee0 | fix: Update the token pattern for Identifier to load VRMLs from Kicad (#27543)
* fix: Update the token pattern for Identifier to load VRML files from Kicad
char '-' is allowded to be used inside the identifiers for footprints in Kicad , e.g. 'PIN-01' , 'IC-LABEL-01'
* style: Replace '-' with '0x2d' in the patt... | [
{
"path": "examples/jsm/loaders/VRMLLoader.js",
"patch": "@@ -126,7 +126,7 @@ class VRMLLoader extends Loader {\n \t\t\t// from http://gun.teipir.gr/VRML-amgem/spec/part1/concepts.html#SyntaxBasics\n \n \t\t\tconst RouteIdentifier = createToken( { name: 'RouteIdentifier', pattern: /[^\\x30-\\x39\\0-\\x20\\x... | 2024-01-12T10:18:16 |
denoland/deno | 3c6a99fce39be5f995432aae06d3171cd84b0ee9 | a7226ceb7c128f7c6285f647196aa79d823327b7 | fix(ext/node): handle `null` ssl options in `node:https` (#29365)
Fixes https://github.com/denoland/deno/issues/29364 | [
{
"path": "ext/node/polyfills/http.ts",
"patch": "@@ -522,12 +522,12 @@ class ClientRequest extends OutgoingMessage {\n throw (this.socket.errored || err);\n }\n if (this._encrypted) {\n- const hasCaCerts = this.agent?.options?.ca !== undefined;\n+ const hasCaCert... | 2025-05-19T05:55:15 |
mrdoob/three.js | 5953d4232d5db31c06f370052dfad61016079f2f | 66aa8ff136c969246585449eccc3198e752297d3 | Editor:Fix determine if colorSpace needs to be modified (#27548) | [
{
"path": "editor/js/Sidebar.Material.MapProperty.js",
"patch": "@@ -114,7 +114,7 @@ function SidebarMaterialMapProperty( editor, property, name ) {\n \n \t\tif ( texture !== null ) {\n \n-\t\t\tif ( colorMaps[ property ] !== undefined && texture.isDataTexture !== true && texture.colorSpace !== THREE.SRGBCo... | 2024-01-12T09:47:22 |
golang/go | 11f11f2a00aa3149a6ea69a50e7b7b429cf368b7 | 62deaf4fb839a6e152fc832c2c71325215e55831 | encoding/json/v2: support ISO 8601 durations
Based on the discussion in #71631, it is hotly contested
whether the default JSON representation for a Go time.Duration
should be the time.Duration.String format or
a particular profile of ISO 8601.
Regardless of the default, it seems clear that we should
at least support I... | [
{
"path": "src/encoding/json/v2/arshal.go",
"patch": "@@ -147,17 +147,23 @@ var export = jsontext.Internal.Export(&internal.AllowInternalUse)\n // If the format matches one of the format constants declared\n // in the time package (e.g., RFC1123), then that format is used.\n // If the format is ... | 2025-06-19T01:35:36 |
swiftlang/swift | 798af3aa3d7c2296aecbc19d4856b31309fb16a2 | 1c2579d65b4a95e0870893236d0abb2c93713405 | Fix test on wasi | [
{
"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|W)}} {{(_)?}}$e8MyModule0A5ClassCAA08Intern... | 2026-01-14T15:40:25 |
mrdoob/three.js | 66aa8ff136c969246585449eccc3198e752297d3 | 9fb80cf753f75743ccc909ac5dda27d33856ef92 | Water2: Fix the error when flowSpeed and other parameters are 0. (#27536) | [
{
"path": "examples/jsm/objects/Water2.js",
"patch": "@@ -34,14 +34,14 @@ class Water extends Mesh {\n \t\tconst scope = this;\n \n \t\tconst color = ( options.color !== undefined ) ? new Color( options.color ) : new Color( 0xFFFFFF );\n-\t\tconst textureWidth = options.textureWidth || 512;\n-\t\tconst text... | 2024-01-10T09:05:46 |
denoland/deno | a7226ceb7c128f7c6285f647196aa79d823327b7 | 94683caba1d7247ba914107b521efa54b61580b1 | feat(lsp): display JsErrors at their original line (#29221) | [
{
"path": "cli/lsp/testing/execution.rs",
"patch": "@@ -42,6 +42,7 @@ use crate::lsp::urls::url_to_uri;\n use crate::tools::test;\n use crate::tools::test::create_test_event_channel;\n use crate::tools::test::FailFastTracker;\n+use crate::tools::test::TestFailure;\n use crate::tools::test::TestFailureFormat... | 2025-05-18T16:29:00 |
golang/go | 62deaf4fb839a6e152fc832c2c71325215e55831 | 2e9bb62bfed92ef24a6744fbdc3cf24eb672cd56 | doc: fix links to runtime Environment Variables
Change-Id: I9e8ecc5e4f4cba0b09008b2b0d9d3f8842687ec3
GitHub-Last-Rev: e0ddaaed3875761a1ff3692af49c0ec2622a5e20
GitHub-Pull-Request: golang/go#74180
Reviewed-on: https://go-review.googlesource.com/c/go/+/681516
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
Reviewed-... | [
{
"path": "doc/godebug.md",
"patch": "@@ -187,7 +187,7 @@ Go 1.25 switched to SHA-256 to fill in missing SubjectKeyId in\n crypto/x509.CreateCertificate. The setting `x509sha256skid=0` reverts to SHA-1.\n \n Go 1.25 corrected the semantics of contention reports for runtime-internal locks,\n-and so removed t... | 2025-06-16T22:15:04 |
swiftlang/swift | 6eb4d5b9158afad17f5c5d6de49db2705ca7b584 | 3983d76369a8392eb07cb5b90ff3ebea1d4d2891 | [cxx-interop] Fix crash deserializing some Clang function types
When a function type refers to a Swift declaration we get a crash during
deserialization. This patch prevents serializing the problematic clang
function types to avoid this crash.
rdar://166359524 | [
{
"path": "include/swift/AST/ClangModuleLoader.h",
"patch": "@@ -266,6 +266,11 @@ class ClangModuleLoader : public ModuleLoader {\n virtual const clang::Decl *\n resolveStableSerializationPath(const StableSerializationPath &path) const = 0;\n \n+ struct SerializableInfo {\n+ bool Serializable;\n+ ... | 2026-01-13T12:09:32 |
denoland/deno | 69eafe48143098d15669fef39a856b02b68c8259 | 28cb8f7011f533e3c79da6832cea098030e35953 | fix(ext/node): prevent stdin double read (#29353)
Accidental debug code from
https://github.com/denoland/deno/commit/28cb8f7011f533e3c79da6832cea098030e35953 | [
{
"path": "ext/node/polyfills/internal_binding/stream_wrap.ts",
"patch": "@@ -144,11 +144,6 @@ export class LibuvStreamWrap extends HandleWrap {\n this.#read();\n }\n \n- if (this.cancelHandle) {\n- this.#reading = true;\n- this.#read();\n- }\n-\n return 0;\n }\n ",
"addi... | 2025-05-17T17:17:39 |
tensorflow/tensorflow | 4c92c131440d84cf992a24bbf6ab83cdfa98d134 | 84378aaed0128111a066c3a5bf065179352d7788 | [XLA:GPU] Add tests for GPU float check logging and reduce log spam.
This change introduces `float_check_device_test.cc` to verify that NaN and Inf detections on GPU trigger the expected error logging, including details about the HLO instruction. To reduce redundant error messages, `thunk_buffer_debug_float_check.cc` ... | [
{
"path": "third_party/xla/xla/backends/gpu/runtime/BUILD",
"patch": "@@ -2995,6 +2995,7 @@ cc_library(\n \"@com_google_absl//absl/algorithm:container\",\n \"@com_google_absl//absl/base:nullability\",\n \"@com_google_absl//absl/container:flat_hash_map\",\n+ \"@com_google_absl/... | 2025-11-14T18:45:49 |
golang/go | 2e9bb62bfed92ef24a6744fbdc3cf24eb672cd56 | ed7815726db4a0eb904d7cae2532cde48348d7ff | encoding/json/v2: reject unquoted dash as a JSON field name
In this blog:
https://blog.trailofbits.com/2025/06/17/unexpected-security-footguns-in-gos-parsers/
the concern was raised that whenever "-" is combined with other options,
the "-" is intepreted as as a name, rather than an ignored field,
which may go contr... | [
{
"path": "src/encoding/json/decode_test.go",
"patch": "@@ -1189,6 +1189,27 @@ var unmarshalTests = []struct {\n \t\tout: []int{1, 2, 0, 4, 5},\n \t\terr: &UnmarshalTypeError{Value: \"bool\", Type: reflect.TypeFor[int](), Offset: 9},\n \t},\n+\n+\t{\n+\t\tCaseName: Name(\"DashComma\"),\n+\t\tin: ... | 2025-06-22T04:27:09 |
mrdoob/three.js | 9fb80cf753f75743ccc909ac5dda27d33856ef92 | 2e5df1c6b2c6cd9bdb603a09433e1a742758d0de | WebGPURenderer: partial compute() shader support for WebGL backend (#27367)
* compute support
* code bot fixes
* add StorageBufferAttribute
* adapt to storagetBufferAttribute
* dynamically realign the size of storage buffer based on backend
* compute examples takes too much time to init for puppeteer
... | [
{
"path": "examples/jsm/nodes/accessors/BufferAttributeNode.js",
"patch": "@@ -67,12 +67,14 @@ class BufferAttributeNode extends InputNode {\n \n \t\tconst nodeType = this.getNodeType( builder );\n \n-\t\tconst nodeUniform = builder.getBufferAttributeFromNode( this, nodeType );\n-\t\tconst propertyName = bu... | 2024-01-09T16:20:55 |
swiftlang/swift | d47de5827d82c7887f1b33560f944a9a22a97a2a | 12f33654b65d4577614d75ce25181c5da25095b3 | [Test][SourceKit] Fix UNSUPPORTED directive placement in checkdeps tests | [
{
"path": "test/SourceKit/CodeComplete/complete_checkdeps_bridged.swift",
"patch": "@@ -1,11 +1,12 @@\n-// UNSUPPORTED: OS=windows-msvc\n import ClangFW\n import SwiftFW\n \n func foo() {\n /*HERE*/\n }\n \n+// UNSUPPORTED: OS=windows-msvc\n+\n // RUN: %empty-directory(%t/Frameworks)\n // RUN: %empty-dire... | 2026-01-14T12:37:52 |
golang/go | ed7815726db4a0eb904d7cae2532cde48348d7ff | f866958246556ec609b81d31376a39efe9d51a51 | encoding/json/v2: report error on time.Duration without explicit format
The default representation of a time.Duration is still undecided.
In order to keep the future open, report an error on a time.Duration
without an explicit format flag provided.
Updates #71631
Change-Id: I08248404ff6551723851417c8188a13f53c61937
... | [
{
"path": "src/encoding/json/v2/arshal_test.go",
"patch": "@@ -365,7 +365,7 @@ type (\n \t\tInterface any `json:\",omitzero,format:invalid\"`\n \t}\n \tstructDurationFormat struct {\n-\t\tD1 time.Duration\n+\t\tD1 time.Duration `json:\",format:units\"` // TODO(https://go.dev/issue/71631): Re... | 2025-06-17T19:34:22 |
mrdoob/three.js | c46ef180d7424d988ae1ae78ab0a122517dae659 | 7fa81b3655fbc9f1d2cdfd501198678ed83fea35 | GroundedSkybox: Fix UVs being flipped (#27500)
* GroundedSkybox: Fix UVs being flipped
* fix deepscan issue | [
{
"path": "examples/jsm/objects/GroundedSkybox.js",
"patch": "@@ -1,4 +1,4 @@\n-import { BackSide, Mesh, MeshBasicMaterial, SphereGeometry, Vector3 } from 'three';\n+import { Mesh, MeshBasicMaterial, SphereGeometry, Vector3 } from 'three';\n \n /**\n * A ground-projected skybox. The height is how far the c... | 2024-01-09T09:05:18 |
tensorflow/tensorflow | 005132058f7b28fae524a11ffb1fadb44fe4538c | 42667488ea28e6b09e06fcab5abd095797b3b95f | Fix getSuccessorRegions implementation
This corrects a bad fix that was previously made for
[41f65666f6378bba7266be7c662c70074f04ed75](https://github.com/llvm/llvm-project/commit/41f65666f6378bba7266be7c662c70074f04ed75)
PiperOrigin-RevId: 831923210 | [
{
"path": "tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc",
"patch": "@@ -3643,9 +3643,8 @@ void WhileRegionOp::getSuccessorRegions(\n // For compatibility with older code, we allow the \"yield\" in a condition\n // to only yield a single boolean. In that case we can't forward any args.\n ... | 2025-11-13T18:48:13 |
mrdoob/three.js | d75bb9b9c4662c270f58855b547e2b5f312ea400 | aea18212096f7a93c8ddc694ea05fb4f15c5ebd9 | OrbitControls: Fix offscreen and cleanup (#27522)
* fix offscreen canvas and lint
* feedbacks
* added comment and removed if condition based on feedback | [
{
"path": "examples/jsm/controls/OrbitControls.js",
"patch": "@@ -1228,7 +1228,7 @@ class OrbitControls extends EventDispatcher {\n \t\t\t\tclientX: event.clientX,\n \t\t\t\tclientY: event.clientY,\n \t\t\t\tdeltaY: event.deltaY,\n-\t\t\t}\n+\t\t\t};\n \n \t\t\tswitch ( mode ) {\n \n@@ -1243,7 +1243,7 @@ cl... | 2024-01-09T01:10:39 |
golang/go | f77a0aa6b6d90742932f0bf29d2f94459597331a | 4506796a6ebee9799dd6272c0fb12c7b993631e2 | internal/trace: improve gc-stress test
The gc-stress test is useful for trying to exercise GC-related trace
events by producing a lot of them in many different situations.
Unfortunately this test is flaky, because allocating in a loop can
easily out-run the GC when it's trying to preempt the allocating
goroutine.
It'... | [
{
"path": "src/internal/trace/testdata/testprog/gc-stress.go",
"patch": "@@ -13,6 +13,7 @@ import (\n \t\"log\"\n \t\"os\"\n \t\"runtime\"\n+\t\"runtime/debug\"\n \t\"runtime/trace\"\n \t\"time\"\n )\n@@ -36,11 +37,25 @@ func makeTree(depth int) *node {\n \t}\n }\n \n+func initTree(n *node) {\n+\tif n == ni... | 2025-06-23T20:14:18 |
tensorflow/tensorflow | 42667488ea28e6b09e06fcab5abd095797b3b95f | 5a3c23b1d7ee994d19e054096469f69b34e5674c | PR #33534: [ROCm] rm gcc bazelrc and unify rocm_ci and rocm (#412)
Imported from GitHub PR https://github.com/openxla/xla/pull/33534
📝 Summary of Changes
rm unused rocm config and unify it as clang only
🎯 Justification
previous `--config=rocm` is not used at all.
🚀 Kind of Contribution
Please remove what does no... | [
{
"path": "third_party/xla/tensorflow.bazelrc",
"patch": "@@ -278,19 +278,14 @@ common:rocm_base --define=xnn_enable_avxvnniint8=false\n common:rocm_base --define=xnn_enable_avx512fp16=false\n common:rocm_base --repo_env TF_NEED_ROCM=1\n \n-# Depraceted, will be removed once all build/test scripts are migra... | 2025-11-13T17:38:48 |
mrdoob/three.js | d4e13e525ba7241ed2d788fa549ad969cf611526 | f017aa9080b463fc81cf257833302a0e909721f8 | WebGPURenderer: Add Offscreen Support (#27520)
* add offscreen support
* refactor statics webgpu
* navigator.gpu should be enough for initial check
* fix webgl context ktx2loader
* use isAvailable in webgpurenderer
* cleanup and should fix pupeeter
* return promise
* feedbacks
* remove unecessa... | [
{
"path": "examples/jsm/capabilities/WebGPU.js",
"patch": "@@ -1,27 +1,30 @@\n-if ( window.GPUShaderStage === undefined ) {\n+if ( self.GPUShaderStage === undefined ) {\n \n-\twindow.GPUShaderStage = { VERTEX: 1, FRAGMENT: 2, COMPUTE: 4 };\n+\tself.GPUShaderStage = { VERTEX: 1, FRAGMENT: 2, COMPUTE: 4 };\n ... | 2024-01-08T23:47:47 |
swiftlang/swift | 3fe6f51ca9642c12e634c356348881dbd377ca18 | 56df1faab2976c94542fabd3853151a7f0313530 | tests: disable more autodiff tests on linux which fail due to a linker crash
rdar://143988849
rdar://167564410
rdar://147769717 | [
{
"path": "test/AutoDiff/compiler_crashers_fixed/issue-54992-siloptimizer-rewrite-partial-apply-convention-method.swift",
"patch": "@@ -4,6 +4,10 @@\n // SIL verification error regarding `CapturePropagation::rewritePartialApply`\n // for `partial_apply` with `@convention(method)` callee\n \n+// On linux thi... | 2026-01-14T07:58:07 |
golang/go | 456a90aa1618a6c3aa49ecba46969128e2bfa26f | 1cf6386b5ee1ba7d367b6456c2c6888ab68c3ec8 | runtime: add missing unlock in sysReserveAlignedSbrk
sysReserveAlignedSbrk locks memlock at entry, but it is not
unlocked at one of the return path. Add the missing unlock.
Fixes #74339.
Change-Id: Ib641bc348aca41494ec410e2c4eb9857f3362484
Reviewed-on: https://go-review.googlesource.com/c/go/+/683295
LUCI-TryBot-Res... | [
{
"path": "src/runtime/mem_sbrk.go",
"patch": "@@ -231,6 +231,7 @@ func sysReserveAlignedSbrk(size, align uintptr) (unsafe.Pointer, uintptr) {\n \t\t\tmemFree(unsafe.Pointer(end), endLen)\n \t\t}\n \t\tmemCheck()\n+\t\tunlock(&memlock)\n \t\treturn unsafe.Pointer(pAligned), size\n \t}\n ",
"additions": ... | 2025-06-22T19:01:27 |
tensorflow/tensorflow | 5a3c23b1d7ee994d19e054096469f69b34e5674c | d1a4ab1019fa5b696858a58b63c55bc1a796de75 | [xla:gpu] Disable the legacy emitter path.
- Set `XLA_FLAGS=--xla_gpu_unsupported_generic_triton_emitter_features=+disable_legacy_gemm` by default.
This triggers an error when we are trying to emit Triton through the legacy path. With that, the legacy emitter is disabled (with the exception of some legacy-emitter tes... | [
{
"path": "third_party/xla/xla/debug_options_flags.cc",
"patch": "@@ -327,14 +327,14 @@ DebugOptions DefaultDebugOptionsIgnoringFlags() {\n \n opts.set_xla_gpu_enable_triton_gemm(true);\n opts.clear_xla_gpu_unsupported_generic_triton_emitter_features();\n- // When changing the default value of the flag... | 2025-11-13T14:51:52 |
mrdoob/three.js | dc9f4c3d78b3447c2cc079c0c8d0299bae14dd0b | 1845374cfdc98f9a5fa9daf8a1723fd3cd2ff31e | WebGPURenderer: Remove from Puppeteer exceptionList some examples (#27514)
* test pupeeter new webgl support
* webgpu_postprocessing_afterimage seems to still get issue
* update puppeteer | [
{
"path": "test/e2e/puppeteer.js",
"patch": "@@ -103,6 +103,7 @@ const exceptionList = [\n \t'webgl2_volume_instancing',\n \t'webgl2_multisampled_renderbuffers',\n \t'webgl_points_dynamic',\n+\t'webgpu_multisampled_renderbuffers',\n \n \t// TODO: implement determinism for setTimeout and setInterval\n \t// c... | 2024-01-06T09:14:50 |
kubernetes/kubernetes | 7d1500bb1ea597fc99e5d30b180d2bf0537d53af | 12b5106809d67fd7c76066e4bd3bed86fbae80cf | feat: Add exceptions for conflicting markers in kube-api-linter | [
{
"path": "hack/golangci-hints.yaml",
"patch": "@@ -143,6 +143,19 @@ linters:\n path: \"staging/src/k8s.io/api/resource/\"\n - text: \"Conditions field in AllocatedDeviceStatus has incorrect tags, should be: `json:\\\"conditions,omitempty\\\" patchStrategy:\\\"merge\\\" patchMergeKey:\\\"type\... | 2025-10-22T18:01:22 |
denoland/deno | 28cb8f7011f533e3c79da6832cea098030e35953 | 1a955223780ab68c0d3fdfae6690353135b5e767 | fix: `process.stdin.pause()` (#29330) | [
{
"path": "ext/io/12_io.js",
"patch": "@@ -5,14 +5,19 @@\n // Thank you! We love Go! <3\n \n import { core, primordials } from \"ext:core/mod.js\";\n-import { op_set_raw } from \"ext:core/ops\";\n+import {\n+ op_read_create_cancel_handle,\n+ op_read_with_cancel_handle,\n+ op_set_raw,\n+} from \"ext:core/... | 2025-05-17T13:16:26 |
mrdoob/three.js | a4fbc07b38ec3730346f38a0c7a0059d6c18f69e | 589eeb192d972c9b96e802e8a777a6ef9635713e | display offersession promise failure instead of showing console errors (#27492)
* display offersession promise failure instead of showing console errors
* change log() to warn() for offersession handler | [
{
"path": "examples/jsm/webxr/ARButton.js",
"patch": "@@ -107,7 +107,12 @@ class ARButton {\n \t\t\t\t\tif ( navigator.xr.offerSession !== undefined ) {\n \n \t\t\t\t\t\tnavigator.xr.offerSession( 'immersive-ar', sessionInit )\n-\t\t\t\t\t\t\t.then( onSessionStarted );\n+\t\t\t\t\t\t\t.then( onSessionStarte... | 2024-01-05T15:03:00 |
tensorflow/tensorflow | 20c1ff66b771b2f030701d78f7cfe6846fac4db8 | 27d2ad105604e700f9cefcbbb3c8bf5d0c0042d9 | PR #33860: [XLA:GPU][oneAPI][Build-fix] Fix ptx custom kernel build issue.
Imported from GitHub PR https://github.com/openxla/xla/pull/33860
Recent addition of ptx custom kernel to `xla/service/gpu/ir_emitter_unnested.cc` is not supported by SYCL platform. This PR fixes the build issue with a stub implementation.
Co... | [
{
"path": "third_party/xla/xla/service/gpu/BUILD",
"patch": "@@ -6,6 +6,10 @@ load(\n \"@local_config_rocm//rocm:build_defs.bzl\",\n \"if_rocm_is_configured\",\n )\n+load(\n+ \"@local_config_sycl//sycl:build_defs.bzl\",\n+ \"if_sycl_is_configured\",\n+)\n load(\"@rules_cc//cc:cc_library.bzl\",... | 2025-11-13T09:42:02 |
denoland/deno | 1a955223780ab68c0d3fdfae6690353135b5e767 | a08d4a09f083b337b7551d8dccf588f9767f5120 | fix(task): wildcard match starts at the beginning (#29343)
Closes https://github.com/denoland/deno/issues/29341 | [
{
"path": "cli/tools/task.rs",
"patch": "@@ -929,12 +929,7 @@ fn match_tasks(\n \n // Match tasks in deno.json\n for name in tasks_config.task_names() {\n- let matches_filter = match &task_name_filter {\n- TaskNameFilter::Exact(n) => *n == name,\n- TaskNameFilter::Regex(re) => re.is_match(n... | 2025-05-17T11:12:31 |
tensorflow/tensorflow | 27d2ad105604e700f9cefcbbb3c8bf5d0c0042d9 | d8292f2e97c7d1cd596757e20d7ef4f61362dc00 | PR #33754: [NVIDIA GPU] Add pred, int8 and uint8 as supported nvshmem reduction types
Imported from GitHub PR https://github.com/openxla/xla/pull/33754
📝 Summary of Changes
Add pred, int8 and uint8 as supported nvshmem reduction types
🎯 Justification
Nvshmem 3.2.5 supports doing reductions for byte-sized numerics.... | [
{
"path": "third_party/xla/xla/backends/gpu/collectives/nvshmem_communicator.cc",
"patch": "@@ -293,6 +293,20 @@ Future<> NvshmemCommunicator::AllReduce(\n dest_ptr, count);\n break;\n }\n+ case PrimitiveType::PRED:\n+ case PrimitiveType::U8: {\n+ CALL_NVSHMEM_BITWISE_REDUCTIO... | 2025-11-13T09:35:39 |
Subsets and Splits
Swift Compiler Issues Analysis
Retrieves all training data for the Swift programming language repository, providing basic filtering but offering limited analytical insight beyond identifying relevant code examples.