repo stringclasses 15
values | fix_commit stringlengths 40 40 | buggy_commit stringlengths 40 40 | message stringlengths 3 64.3k | files listlengths 1 300 | timestamp timestamp[s]date 2013-03-13 20:45:00 2026-04-11 07:48:46 |
|---|---|---|---|---|---|
tensorflow/tensorflow | d3b24701e58fa05aadd5d84861ec0a91fc36122d | f70d07773c1a02eef9d230321e1823946c243beb | PR #33200: Docs: Error 0101
Imported from GitHub PR https://github.com/openxla/xla/pull/33200
After #32628
🚀 Kind of Contribution
📚 Documentation
Copybara import of the project:
--
3a2278135c6b497ed2a7b9332192e844c473d4e2 by Mateusz Sokół <mat646@gmail.com>:
Doc page for Error 0101
--
11903d433e7f9b8265c3c2ec... | [
{
"path": "third_party/xla/docs/error_codes.md",
"patch": "@@ -3,4 +3,5 @@\n This page is a list of all error codes emitted by the XLA compiler.\n \n - [E0100](./errors/error_0100.md)\n+- [E0101](./errors/error_0101.md)\n - [E0102](./errors/error_0102.md)",
"additions": 1,
"deletions": 0,
... | 2025-11-19T22:07:13 |
denoland/deno | 833fbfd3adca8ca8deb72f8b1265b7ad78e6154c | 644efa157e80e9e278f145a1e8863762e9ad7280 | ci: fix features for nix in permissions/Cargo.toml (#29511) | [
{
"path": "runtime/permissions/Cargo.toml",
"patch": "@@ -37,7 +37,7 @@ winapi = { workspace = true, features = [\"commapi\", \"knownfolders\", \"mswsock\", \"\n windows-sys = { workspace = true, features = [\"Win32_Storage_FileSystem\"] }\n \n [target.'cfg(unix)'.dependencies]\n-nix = { workspace = true }\... | 2025-05-29T20:26:37 |
golang/go | 47b07a87a65584f7b1c1efa26cf94e551e72dc2c | 08cd62e9f50b10a19f96b94c1e75f868b958d113 | [dev.simd] cmd/compile, simd: fix Int64x2 Greater output type to mask
This CL is generated by CL 686821.
Change-Id: I4bc4fa717ff858299b13955a40e750709a796fba
Reviewed-on: https://go-review.googlesource.com/c/go/+/686998
Reviewed-by: David Chase <drchase@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-proj... | [
{
"path": "src/simd/ops_amd64.go",
"patch": "@@ -2248,7 +2248,7 @@ func (x Int32x8) Greater(y Int32x8) Mask32x8\n // Greater compares for greater than.\n //\n // Asm: VPCMPGTQ, CPU Feature: AVX\n-func (x Int64x2) Greater(y Int64x2) Int64x2\n+func (x Int64x2) Greater(y Int64x2) Mask64x2\n \n // Greater compa... | 2025-07-09T21:16:03 |
mrdoob/three.js | 66ed062bfceb871e756645b5e2f68ac39a512d6f | d0ee260c95746bae20f3a911bd944d85bb52128a | WebGPURenderer: Fix attribute data getting reset when using vec3 in WebGPU (#27708) | [
{
"path": "examples/jsm/renderers/webgpu/utils/WebGPUAttributeUtils.js",
"patch": "@@ -49,6 +49,12 @@ class WebGPUAttributeUtils {\n \t\t\t\tbufferAttribute.itemSize = 4;\n \t\t\t\tarray = new array.constructor( bufferAttribute.count * 4 );\n \n+\t\t\t\tfor ( let i = 0; i < bufferAttribute.count; i ++ ) {\n... | 2024-02-08T06:29:59 |
denoland/deno | 6f831d10353fa723c2024cc3d0c5a645cba607d1 | 17a628379d1b87953a5e848ee4b2c4f97f83681d | fix: `--frozen` flag missing from several subcommands (#29508)
Closes https://github.com/denoland/deno/issues/29498 | [
{
"path": "cli/args/flags.rs",
"patch": "@@ -1748,6 +1748,7 @@ Or multiple dependencies at once:\n )\n .arg(add_dev_arg())\n .arg(allow_scripts_arg())\n+ .args(lock_args())\n .args(default_registry_args())\n })\n }\n@@ -1781,13 +1782,15 @@ You can remove multiple dependencies ... | 2025-05-29T15:26:24 |
tensorflow/tensorflow | 71c1ec1305f8cd0989d299704249e45cb346ff3b | 0b6f905aea06c5ee0823843c17bbe4b3da6ccdaa | Reorder DynamicUpdateSlice partitioning methods.
Before this change, if the method is `kAllPartitionedSliceDimsHaveConstantIndices` but enzyme is disabled. The partitioner does nothing, which is wrong.
We should have the default solution at the end if the optimizations are not enabled.
PiperOrigin-RevId: 834416365 | [
{
"path": "third_party/xla/xla/service/spmd/spmd_partitioner.cc",
"patch": "@@ -3969,31 +3969,30 @@ absl::Status SpmdPartitioningVisitor::HandleDynamicUpdateSlice(\n }\n }\n \n+ // Refer to go/dus-spmd for more details.\n DynamicUpdateSliceAnalysis analysis = AnalyzeDynamicUpdateSlice(hlo);\n \n- ... | 2025-11-19T21:14:40 |
golang/go | 8131635e5a9c7ae2fd2c083bed9e841d27226500 | 67c1704444ba9661699a80d0ea0a2df20b4107e2 | runtime: run TestSignalDuringExec in its own process group
TestSignalDuringExec sends a SIGWINCH to the whole process group.
However, it may execute concurrently with other copies of the runtime
tests, especially through `go tool dist`, and gdb version <12.1 has a
bug in non-interactive mode where recieving a SIGWINCH... | [
{
"path": "src/runtime/runtime-gdb_test.go",
"patch": "@@ -78,6 +78,9 @@ func checkGdbVersion(t *testing.T) {\n \tif major < 10 {\n \t\tt.Skipf(\"skipping: gdb version %d.%d too old\", major, minor)\n \t}\n+\tif major < 12 || (major == 12 && minor < 1) {\n+\t\tt.Logf(\"gdb version <12.1 is known to crash du... | 2025-07-09T15:50:06 |
kubernetes/kubernetes | 68710ce086be3feac0cc5ed245b0e0ebdfb3c168 | 2e257dffd80fb4aa866b227f1421613eafced482 | add declarative validation test
- restore v1alpha1
- fix lint issues
- ensure tests run with valid objects | [
{
"path": "pkg/api/testing/validation_test.go",
"patch": "@@ -41,6 +41,7 @@ func TestVersionedValidationByFuzzing(t *testing.T) {\n \t\t{Group: \"resource.k8s.io\", Version: \"v1\"},\n \t\t{Group: \"storage.k8s.io\", Version: \"v1beta1\"},\n \t\t{Group: \"storage.k8s.io\", Version: \"v1\"},\n+\t\t{Group: \"... | 2025-10-24T11:30:50 |
mrdoob/three.js | 762a1340908d187cf5674b15d5f91957c52ff06e | a988218a34e5b6fb6fd51267139c098720b8ed0e | WebGPURenderer: Fix `vec2` and `vec3` for `storageObject` in StorageBufferNode (#27697)
* improve tests
* fix vec2, vec3 packing
* cleanup
* always switch buffer to support reading and align with toAttribute() | [
{
"path": "examples/jsm/renderers/webgl/WebGLBackend.js",
"patch": "@@ -437,11 +437,10 @@ class WebGLBackend extends Backend {\n \n \t\t\t\tthis.textureUtils.copyBufferToTexture( dualAttributeData.transformBuffer, dualAttributeData.pbo );\n \n-\t\t\t} else {\n+\t\t\t}\n \n-\t\t\t\tdualAttributeData.switchBu... | 2024-02-08T03:43:46 |
denoland/deno | 17a628379d1b87953a5e848ee4b2c4f97f83681d | 0f7d15dc8688bbe32224756578c42953eff7bb89 | fix(ext/console): console.group indents two spaces (#29486)
Since `DEFAULT_INDENT` is already two spaces, incrementing `indentLevel`
by 2 was causing each group to indent by **four** spaces. Indenting by
two spaces matches the behavior Node and Bun. | [
{
"path": "ext/console/01_console.js",
"patch": "@@ -3401,14 +3401,14 @@ class Console {\n if (label.length > 0) {\n this.log(...new SafeArrayIterator(label));\n }\n- this.indentLevel += 2;\n+ this.indentLevel++;\n };\n \n groupCollapsed = this.group;\n \n groupEnd = () => {\n ... | 2025-05-29T14:20:43 |
mrdoob/three.js | 76bff1eb9584c47d521755b87e49246079a8ae24 | bd885e92f3fe8f71fc1160492e9a81ea9d8d94fe | GLTFExporter: Better error handling when using invalid image data. (#27700) | [
{
"path": "examples/jsm/exporters/GLTFExporter.js",
"patch": "@@ -1288,7 +1288,17 @@ class GLTFWriter {\n \n \t\t\t} else {\n \n-\t\t\t\tctx.drawImage( image, 0, 0, canvas.width, canvas.height );\n+\t\t\t\tif ( ( typeof HTMLImageElement !== 'undefined' && image instanceof HTMLImageElement ) ||\n+\t\t\t\t\t(... | 2024-02-07T10:06:37 |
tensorflow/tensorflow | 6c463c65897790db312e2318a0402454c707dd80 | bad3f81749fcfa4c1447841e57285b3a50645792 | PR #33199: Docs: Error 0100
Imported from GitHub PR https://github.com/openxla/xla/pull/33199
After #32628
🚀 Kind of Contribution
📚 Documentation
Copybara import of the project:
--
87aa8d2e818a7633eac51a79f8bcfe9c913f81eb by Mateusz Sokół <mat646@gmail.com>:
Doc page for Error 0100
Merging this change closes ... | [
{
"path": "third_party/xla/docs/error_codes.md",
"patch": "@@ -2,4 +2,5 @@\n \n This page is a list of all error codes emitted by the XLA compiler.\n \n+- [E0100](./errors/error_0100.md)\n - [E0102](./errors/error_0102.md)",
"additions": 1,
"deletions": 0,
"language": "Markdown"
},
{
... | 2025-11-19T20:31:16 |
golang/go | 54c9d776302d53ab1907645cb67fa4a948e1500c | fca43a8436f2dbec981fb002c6ba31fe9ff89dd6 | cmd/go: disable support for multiple vcs in one module
Removes the somewhat redundant vcs.FromDir, "allowNesting" argument,
which was always enabled, and disallow multiple VCS metadata folders
being present in a single directory. This makes VCS injection attacks
much more difficult.
Also adds a GODEBUG, allowmultiple... | [
{
"path": "doc/godebug.md",
"patch": "@@ -189,6 +189,11 @@ crypto/x509.CreateCertificate. The setting `x509sha256skid=0` reverts to SHA-1.\n Go 1.25 corrected the semantics of contention reports for runtime-internal locks,\n and so removed the [`runtimecontentionstacks` setting](/pkg/runtime#hdr-Environment... | 2025-06-09T18:23:46 |
swiftlang/swift | 154d81e2d7b84c51f9fa7b50779260da9782a41d | 86e88f50e68e27f5994608eb25dae84b9090a780 | [CSBindings] Fix `LiteralRequirement::isCoveredBy` to not produce a type if it wasn't adjusted
Otherwise `determineLiteralCoverage` is going to re-introduce
the same binding if the type didn't actually change. | [
{
"path": "lib/Sema/CSBindings.cpp",
"patch": "@@ -1382,7 +1382,7 @@ LiteralRequirement::isCoveredBy(const PotentialBinding &binding, bool canBeNil,\n return std::make_pair(false, Type());\n \n if (isCoveredBy(type, CS)) {\n- return std::make_pair(true, requiresUnwrap ? type : binding.Binding... | 2026-01-16T23:28:22 |
denoland/deno | 8ec14ae133f72d66658a40934c961fd14ae216fa | f9bb8241ca6057b76881479208d52944ecf16dd5 | fix: support numerical properties for deno_errors (#29489) | [
{
"path": "Cargo.lock",
"patch": "@@ -1584,9 +1584,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_ast\"\n-version = \"0.47.0\"\n+version = \"0.48.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"59d2c5dcead329b1382472f0ca026839f33a86d897b47cf6d9cfa21c520b69c6\"... | 2025-05-29T09:40:46 |
mrdoob/three.js | bd885e92f3fe8f71fc1160492e9a81ea9d8d94fe | 68264263bc2b2b301fd763e80e6b11b05c97b069 | Nodes: Fix `tangentView` and move `TBNViewMatrix` to AccessorsUtils (#27696)
* Fix tangentView
* Move TBN to AccessorsUtils
* Update webgpu_loader_gltf_compressed.jpg | [
{
"path": "examples/jsm/nodes/Nodes.js",
"patch": "@@ -77,6 +77,7 @@ export { default as ReflectorNode, reflector } from './utils/ReflectorNode.js';\n export * from './shadernode/ShaderNode.js';\n \n // accessors\n+export { TBNViewMatrix } from './accessors/AccessorsUtils.js';\n export { default as Bitangen... | 2024-02-07T03:02:14 |
golang/go | 86b5ba731044dcbb0400f03293989796ed5807fe | ef46e1b164e4a530c278434a9aaa2b23ce9a9d12 | internal/trace: only test for sync preemption if async preemption is off
Currently, the test change made for the fix to #68090 is flaky. This is
because the sync-point-only goroutine that we expect to be sync
preempted might only ever get async preempted in some circumstances.
This change adds a variant to all trace ... | [
{
"path": "src/internal/trace/trace_test.go",
"patch": "@@ -23,7 +23,7 @@ import (\n )\n \n func TestTraceAnnotations(t *testing.T) {\n-\ttestTraceProg(t, \"annotations.go\", func(t *testing.T, tb, _ []byte, _ bool) {\n+\ttestTraceProg(t, \"annotations.go\", func(t *testing.T, tb, _ []byte, _ string) {\n \t... | 2025-07-07T17:19:17 |
tensorflow/tensorflow | 98a39e096618e58608a6c773a26c1e84dd66e738 | e211ea6b4d2b44dfec9a5ea4202d1efe119b6a86 | Qualify usage of cudnnGetLastErrorString to versions that support it.
PiperOrigin-RevId: 834379808 | [
{
"path": "third_party/xla/xla/stream_executor/cuda/cuda_dnn.cc",
"patch": "@@ -5432,11 +5432,13 @@ absl::Status CreateOpRunners(\n .setEngineConfig(filtered_configs[i], op_graph->getTag())\n .build();\n if (plan.get_status() != CUDNN_STATUS_SUCCESS) {\n+#if CUDNN... | 2025-11-19T19:39:54 |
denoland/deno | f9bb8241ca6057b76881479208d52944ecf16dd5 | ab9673dcc172e2c0b7a521b3527eb5ce2cf3858c | fix(coverage): HTML validation errors in coverage explorer (#29497)
Closes #29493 | [
{
"path": "cli/tools/coverage/reporter.rs",
"patch": "@@ -505,7 +505,7 @@ impl HtmlCoverageReporter {\n let footer = self.create_html_footer(timestamp);\n format!(\n \"<!doctype html>\n- <html>\n+ <html lang='en-US'>\n {head}\n <body>\n <div class='wrapper'>... | 2025-05-29T07:48:11 |
mrdoob/three.js | 68264263bc2b2b301fd763e80e6b11b05c97b069 | ca69555211ff6847b2577df08d7ddc36bf89ef82 | fix: check `WEBGL_draw_buffers` before call `drawBuffersWEBGL` (#27693) | [
{
"path": "src/renderers/webgl/WebGLState.js",
"patch": "@@ -541,10 +541,14 @@ function WebGLState( gl, extensions, capabilities ) {\n \n \t\t\t\tgl.drawBuffers( drawBuffers );\n \n-\t\t\t} else {\n+\t\t\t} else if ( extensions.has( 'WEBGL_draw_buffers' ) === true ) {\n \n \t\t\t\textensions.get( 'WEBGL_dra... | 2024-02-06T15:31:07 |
swiftlang/swift | 1c6265659b2d1a6da8f393adbd96a06655b87842 | b0db22bbbe5d36263ea04299853613e5032636e4 | Drop unnecessary -fptrauth-calls Clang option
It causes issues in some configurations, and has nothing to do with
what this test is testing. Fixes rdar://166922694. | [
{
"path": "test/embedded/ptr-auth-irgen-verify-no-stdlib.swift",
"patch": "@@ -1,4 +1,4 @@\n-// RUN: %target-swift-emit-ir %s -parse-stdlib -enable-experimental-feature Embedded -target arm64e-apple-none -Xcc -fptrauth-calls -module-name Swift | %FileCheck %s\n+// RUN: %target-swift-emit-ir %s -parse-stdlib... | 2026-01-16T22:43:10 |
golang/go | ef46e1b164e4a530c278434a9aaa2b23ce9a9d12 | 75b43f9a97ada1f0fce7a5775d4ab373bd0dad9c | cmd/internal/doc: fix GOROOT skew and path joining bugs
Use the goCmd() function to get the go command to invoke, so that when
GOROOT is set, the go command that's invoked uses the same GOROOT.
Otherwise there will be skew between the go command and the tools and
runtime. Also use the environment when determining GOPR... | [
{
"path": "src/cmd/internal/doc/main.go",
"patch": "@@ -15,6 +15,7 @@ import (\n \t\"io\"\n \t\"log\"\n \t\"net\"\n+\t\"net/url\"\n \t\"os\"\n \t\"os/exec\"\n \t\"os/signal\"\n@@ -214,7 +215,10 @@ func doPkgsite(urlPath string) error {\n \t\treturn fmt.Errorf(\"failed to find port for documentation server: ... | 2025-07-01T21:16:53 |
tensorflow/tensorflow | 516a240db792a7daed8e39c792a10bb8ef8aa072 | c03dafde0cd7dc08422799989f3c7329f7f67ad6 | Fix dangling pointer issue in RangeEvaluator::ComputeExpressionRange
An iterator was being created from the return of indexing_map_.GetConstraints(), and then compared against the end() of a possibly different temporary object from a second call to the same function. This was not leading to any issue because we are re... | [
{
"path": "third_party/xla/xla/hlo/analysis/indexing_map.cc",
"patch": "@@ -1155,8 +1155,9 @@ Interval RangeEvaluator::ComputeExpressionRange(AffineExpr expr) {\n }\n \n if (use_constraints_) {\n- auto constraint = indexing_map_.GetConstraints().find(expr);\n- if (constraint != indexing_map_.GetCo... | 2025-11-19T18:31:43 |
kubernetes/kubernetes | 1dd384c44d4628c5cc76ae7cada524d868417bc8 | e1b996a4d3358b783a17e5f54a70e573e394a697 | Fixing unit test flakes in pkg/kubelet/winstats TestCollectMetricsData
Signed-off-by: Mark Rossetti <marosset@microsoft.com> | [
{
"path": "pkg/kubelet/winstats/perfcounter_nodestats_test.go",
"patch": "@@ -143,8 +143,9 @@ func TestCollectMetricsData(t *testing.T) {\n \t\tmemoryPrivWorkingSetBytes: 2,\n \t\tmemoryCommittedBytes: 3,\n \t\tinterfaceStats: networkAdapterCounter.listInterfaceStats(),\n-\t\ttimeStamp: ... | 2025-10-28T17:17:42 |
denoland/deno | 437afebf5c77119cde1f8c860f60f1375701e840 | f1fd29aba050a7a4031cac42f31021fce249b8db | fix: don't unwrap in global interceptor (#29484)
Handle other contexts gracefully instead of panicking.
Fixes: https://github.com/denoland/deno/issues/29482 | [
{
"path": "ext/node/global.rs",
"patch": "@@ -280,7 +280,9 @@ pub fn getter<'s>(\n \n let context = scope.get_current_context();\n let inner = {\n- let storage = context.get_slot::<GlobalsStorage>().unwrap();\n+ let Some(storage) = context.get_slot::<GlobalsStorage>() else {\n+ return v8::Int... | 2025-05-28T15:22:18 |
mrdoob/three.js | ca69555211ff6847b2577df08d7ddc36bf89ef82 | a2bf250301187940fd97f60d5c020691ad3b8c11 | ProgressiveLightMap: Fix uv regression. (#27692) | [
{
"path": "examples/jsm/misc/ProgressiveLightMap.js",
"patch": "@@ -45,6 +45,7 @@ class ProgressiveLightMap {\n \n \t\t\t// Vertex Shader: Set Vertex Positions to the Unwrapped UV Positions\n \t\t\tshader.vertexShader =\n+\t\t\t\t'attribute vec2 uv1;\\n' +\n \t\t\t\t'#define USE_LIGHTMAP\\n' +\n \t\t\t\t'#d... | 2024-02-06T11:06:18 |
golang/go | 33fb4819f59d16c483be6cf2016f79eef3543691 | a995269a9383d90a3bdd029989bafc8fc3b19dc3 | cmd/compile/internal/ssa: skip EndSequence entries in TestStmtLines
The TestStmtLines test has been accessing a nil pointer when it
tries to look up LineEntry.File.Name on a line entry with
EndSequence set to true. The doc for EndSequence specifies that if
EndSequence is set, only it and the Address field are meaningf... | [
{
"path": "src/cmd/compile/internal/ssa/stmtlines_test.go",
"patch": "@@ -120,6 +120,11 @@ func TestStmtLines(t *testing.T) {\n \t\t\t\tbreak\n \t\t\t}\n \t\t\tmust(err)\n+\t\t\tif le.EndSequence {\n+\t\t\t\t// When EndSequence is true only\n+\t\t\t\t// le.Address is meaningful, skip.\n+\t\t\t\tcontinue\n+\... | 2025-07-04T10:45:42 |
tensorflow/tensorflow | e8bd931c28e61d54d82e98e22b5790b1bd9713bc | e614df4c82aa61bad0ebb3000e9a391086090f28 | Make the ragged dot a VLOG(2) instead of a warning since that spams a lot of users in OSS
Fixes https://github.com/jax-ml/jax/issues/33403
PiperOrigin-RevId: 834345123 | [
{
"path": "third_party/xla/xla/service/spmd/spmd_partitioner.cc",
"patch": "@@ -4956,8 +4956,8 @@ absl::Status SpmdPartitioningVisitor::HandlePartitionId(HloInstruction* hlo) {\n }\n \n absl::Status SpmdPartitioningVisitor::HandleRaggedDot(HloInstruction* hlo) {\n- LOG(WARNING) << \"You have to use Shardy ... | 2025-11-19T18:14:38 |
mrdoob/three.js | a2bf250301187940fd97f60d5c020691ad3b8c11 | 85e5ddaa02376cbe158efa71bbda63615d6b0f1f | WebGPURenderer: `StorageBufferNode` Support reading external elements in the WebGL Backend (#27661)
* init pbo
* remove flag
* regenerate live example
* single buffer and alternate for example
* cleanup, no idea about circ dep
* test fix circular
* cleanup
* moved pbo management to GLSLNodeBuilder... | [
{
"path": "examples/files.json",
"patch": "@@ -374,7 +374,8 @@\n \t\t\"webgpu_postprocessing_anamorphic\",\n \t\t\"webgpu_mirror\",\n \t\t\"webgpu_multisampled_renderbuffers\",\n-\t\t\"webgpu_materials_texture_anisotropy\"\n+\t\t\"webgpu_materials_texture_anisotropy\",\n+\t\t\"webgpu_storage_buffer\"\n \t],... | 2024-02-06T05:56:53 |
denoland/deno | f1fd29aba050a7a4031cac42f31021fce249b8db | e56dc01cb8bdece748c7a568cc153531d72db600 | fix(ext/node): fix `getEventListeners` in `node:events` (#29480) | [
{
"path": "ext/node/polyfills/_events.mjs",
"patch": "@@ -46,6 +46,7 @@ import {\n } from \"ext:deno_node/internal/validators.mjs\";\n import { spliceOne } from \"ext:deno_node/_utils.ts\";\n import { nextTick } from \"ext:deno_node/_process/process.ts\";\n+import { eventTargetData } from \"ext:deno_web/02_... | 2025-05-28T12:47:31 |
golang/go | a995269a9383d90a3bdd029989bafc8fc3b19dc3 | 6c3b5a2798c83d583cb37dba9f39c47300d19f1f | sort: clarify Less doc
clarifies the requirements for Less
Fixes https://github.com/golang/go/issues/73420
Change-Id: I7d49b10fad78c618d946b3bb161ce19680ede47a
GitHub-Last-Rev: 7a49ad81923048bfc99b265dd89f012eefcf5699
GitHub-Pull-Request: golang/go#74333
Reviewed-on: https://go-review.googlesource.com/c/go/+/683275
... | [
{
"path": "src/sort/sort.go",
"patch": "@@ -26,13 +26,15 @@ type Interface interface {\n \t// Sort may place equal elements in any order in the final result,\n \t// while Stable preserves the original input order of equal elements.\n \t//\n-\t// Less must describe a transitive ordering:\n+\t// Less must des... | 2025-07-06T18:41:28 |
swiftlang/swift | 7d0aec4f4b0aa1198cbaef4762afa7b5f30339f8 | 0ce372974032a8451fa49d592a3fb92aeed0bc92 | Return to some tests in transfernonsendable_closure_captures.swift back to their state so it passes in ToT.
I have a patch out of tree that fixes these tests so that the error is not
emitted. But to make the overall change cherry-pickable, I decided to leave out
that change. Once the main change lands, I will commit t... | [
{
"path": "test/Concurrency/transfernonsendable_closure_captures.swift",
"patch": "@@ -127,7 +127,8 @@ func testNoncopyableSendableStructWithEscapingMainActorAsync() {\n let x = NoncopyableStructSendable()\n let _ = {\n escapingAsyncUse { @MainActor in\n- useValue(x)\n+ useValue(x) // expe... | 2026-01-14T22:16:58 |
mrdoob/three.js | 86a94fd75b176a8414d4b0dc2bd23126c7850ec3 | c0764e9c0407cfffabd0debf5f8b4759cb099a68 | WebGLRenderer: Remove unnecessary `__hasExternalTextures` check. (#27684)
* fix: remove unnecessasy if statement
* lint: fix lint
* lint: fix lint
* fix: revert `vaoAvailable` | [
{
"path": "src/renderers/WebGLRenderer.js",
"patch": "@@ -2171,20 +2171,16 @@ class WebGLRenderer {\n \t\t\tconst renderTargetProperties = properties.get( renderTarget );\n \t\t\trenderTargetProperties.__hasExternalTextures = true;\n \n-\t\t\tif ( renderTargetProperties.__hasExternalTextures ) {\n+\t\t\tren... | 2024-02-05T11:19:31 |
denoland/deno | e56dc01cb8bdece748c7a568cc153531d72db600 | a88c61de3d1ffe9f355d24a26a2f28e1c9b45bfc | fix(ext/node): add "internal/http2/util" module (#29474) | [
{
"path": "ext/node/lib.rs",
"patch": "@@ -640,6 +640,7 @@ deno_core::extension!(deno_node,\n \"internal/fs/handle.ts\",\n \"internal/hide_stack_frames.ts\",\n \"internal/http.ts\",\n+ \"internal/http2/util.ts\",\n \"internal/idna.ts\",\n \"internal/net.ts\",\n \"internal/normaliz... | 2025-05-28T12:46:36 |
tensorflow/tensorflow | 672185b2ecba64fbcba58adf1e67b72da0acbaa2 | 181850c3ba755be200c93c10fc2c8f4be85315ad | Do constant folding in symbolic expression creation
This change force constant folding for all binary operations on symbolic expressions. Previously, constant folding was handled ad-hoc for Add and Mul. By centralizing it, all binary operations on two constant symbolic expressions will now be folded into a single cons... | [
{
"path": "third_party/xla/xla/hlo/analysis/symbolic_expr.cc",
"patch": "@@ -229,11 +229,6 @@ SymbolicExpr BasicAddSimplify(SymbolicExpr lhs, SymbolicExpr rhs) {\n if (lhs.GetType() == SymbolicExprType::kConstant && lhs.GetValue() == 0) {\n return rhs;\n }\n- if (lhs.GetType() == SymbolicExprType::... | 2025-11-19T17:43:56 |
golang/go | 72c39ef83470334b1e592312d30ebef9a1e8ddda | 1ee72a15a3e893c82cc7108c49f141e824f941c2 | [dev.simd] cmd/compile: fix the "always panic" code to actually panic
without this change, the intrinsics of non-constant immediates
just substitute a zero, which is wrong.
Change-Id: I2c39ebedcfb0d0d6c072f4434f393027c6f3f033
Reviewed-on: https://go-review.googlesource.com/c/go/+/685575
Reviewed-by: Junyang Shao <sha... | [
{
"path": "src/cmd/compile/internal/ssagen/intrinsics.go",
"patch": "@@ -1636,7 +1636,7 @@ func opLen4(op ssa.Op, t *types.Type) func(s *state, n *ir.CallExpr, args []*ssa\n \n func plainPanicSimdImm(s *state) {\n \tcmp := s.newValue0(ssa.OpConstBool, types.Types[types.TBOOL])\n-\tcmp.AuxInt = 1\n+\tcmp.Aux... | 2025-07-02T18:28:10 |
mrdoob/three.js | dee7c4e4319c469901a73240d233b9bee89ccb2a | ab3be077a8062d8f1699fbae5f87baa3ef9c8cf8 | Fix missing footnote (#27676)
It looks like the previous footnote for the KHR_lights_punctual extension was to mention that useLegacyLights needed to be disabled. The footnote itself was removed in a previous commit, but the reference to it remained despite there being no "footnote 1" any longer.
Removed the footno... | [
{
"path": "docs/examples/en/loaders/GLTFLoader.html",
"patch": "@@ -53,7 +53,7 @@ <h2>Extensions</h2>\n \t\t\t<li>KHR_materials_unlit</li>\n \t\t\t<li>KHR_materials_volume</li>\n \t\t\t<li>KHR_mesh_quantization</li>\n-\t\t\t<li>KHR_lights_punctual<sup>1</sup></li>\n+\t\t\t<li>KHR_lights_punctual</li>\n \t\t... | 2024-02-04T09:41:47 |
swiftlang/swift | 0ce372974032a8451fa49d592a3fb92aeed0bc92 | e74e17dd73eb0ceb950e961d163e08ac34b66008 | [rbi] Mark mutable weak capture boxes containing Sendable types as immutable if they are never interprocedurally written to and teach SILIsolationInfo::isSendable that they are meant to be treated as Sendable.
The pass works by walking functions in the modules looking for mutable alloc_box
that contains a weak variabl... | [
{
"path": "include/swift/SIL/OperandDatastructures.h",
"patch": "@@ -102,6 +102,19 @@ class OperandWorklist {\n return false;\n }\n \n+ /// Pushes the operands of all uses of \\p value onto the worklist if the\n+ /// operands have never been pushed before. Returns \\p true if we inserted\n+ /// /an... | 2026-01-14T17:48:25 |
denoland/deno | a88c61de3d1ffe9f355d24a26a2f28e1c9b45bfc | 32db2db1211aa5237c8d87e5da7a5936ee9d43d2 | fix(ext/node): return values in node:domain (#29440)
When using Domain#bind, Domain#intercept, and Domain#run we were
invoking the callback but then not actually returning the value returned
from that callback.
This makes Gulp work with async functions as tasks. | [
{
"path": "ext/node/polyfills/domain.ts",
"patch": "@@ -50,7 +50,7 @@ export class Domain extends EventEmitter {\n const self = this;\n return function () {\n try {\n- FunctionPrototypeApply(fn, null, ArrayPrototypeSlice(arguments));\n+ return FunctionPrototypeApply(fn, null, Arr... | 2025-05-28T11:50:46 |
golang/go | 6c3b5a2798c83d583cb37dba9f39c47300d19f1f | dd687c386016445b2f4abc2a958963dd2056d95f | runtime: correct vdsoSP on S390X
It should get the caller's SP. The current code gets the address
of the first parameter, which is one word above the caller's SP.
There is a slot for saving the LR at 0(SP) in the caller's frame.
Fixes #62086 (for s390x).
Change-Id: Ie8cbfabc8161b98658c884a32e0af72df189ea56
Reviewed-... | [
{
"path": "src/runtime/sys_linux_s390x.s",
"patch": "@@ -226,7 +226,7 @@ TEXT runtime·walltime(SB),NOSPLIT,$32-12\n \tMOVD\tR4, 24(R15)\n \n \tMOVD\tR14, R8 \t\t// Backup return address\n-\tMOVD\t$sec+0(FP), R4 \t// return parameter caller\n+\tMOVD\t$ret-8(FP), R4 \t// caller's SP\n \n \tMOVD\tR8, m_vdsoPC(... | 2025-07-03T03:26:44 |
tensorflow/tensorflow | 181850c3ba755be200c93c10fc2c8f4be85315ad | a97367c8df820aacc7988badf23d2b9cf33cde9d | PR #33361: [ROCm] Fix exp accuracy on complex inputs
Imported from GitHub PR https://github.com/openxla/xla/pull/33361
This PR improves the accuracy of complex exponential implementation in the elemental IR emitter. The corresponding test is included in `xla/tests/complex_unary_op_test.cc`.
Note: it is better to mer... | [
{
"path": "third_party/xla/xla/service/elemental_ir_emitter.cc",
"patch": "@@ -1201,14 +1201,38 @@ absl::StatusOr<llvm::Value*> ElementalIrEmitter::EmitComplexUnaryOp(\n }\n case HloOpcode::kExp: {\n // e^(a+bi) = e^a*(cos(b)+sin(b)i)\n- TF_ASSIGN_OR_RETURN(\n- auto exp_a,\n- ... | 2025-11-19T17:19:28 |
mrdoob/three.js | ab3be077a8062d8f1699fbae5f87baa3ef9c8cf8 | f3721a5a5a2457aec28a5555d7e0c0fecb87b4c3 | ShaderChunk: link issue and fix typo in inline video decode. (#27671) | [
{
"path": "src/renderers/shaders/ShaderChunk/map_fragment.glsl.js",
"patch": "@@ -5,7 +5,7 @@ export default /* glsl */`\n \n \t#ifdef DECODE_VIDEO_TEXTURE\n \n-\t\t// use inline sRGB decode until browsers properly support SRGB8_APLHA8 with video textures\n+\t\t// use inline sRGB decode until browsers prope... | 2024-02-04T09:40:17 |
kubernetes/kubernetes | ce828ccf2854f861c7f043ea624f922f1995c954 | 71fa43e37f198ae8035a96ff9f1c112b03b9e0fa | Fix typo in iscsi.go comment: provideded -> provided | [
{
"path": "pkg/volume/iscsi/iscsi.go",
"patch": "@@ -631,7 +631,7 @@ func createSecretMap(spec *volume.Spec, plugin *iscsiPlugin, namespace string) (\n \t\t}\n \n \t\tif len(secretName) > 0 && len(secretNamespace) > 0 {\n-\t\t\t// if secret is provideded, retrieve it\n+\t\t\t// if secret is provided, retrie... | 2025-10-28T11:32:18 |
denoland/deno | 32db2db1211aa5237c8d87e5da7a5936ee9d43d2 | 4823f2b9e8bc86f37e0537577988a483c004f2f5 | fix(ext/node): createInterface doesn't require env permission (#29472)
Closes https://github.com/denoland/deno/issues/29441 | [
{
"path": "ext/node/polyfills/_readline.mjs",
"patch": "@@ -24,6 +24,8 @@\n // deno-lint-ignore-file prefer-primordials\n // deno-lint-ignore-file camelcase\n \n+import { op_get_env_no_permission_check } from \"ext:core/ops\";\n+\n import {\n clearLine,\n clearScreenDown,\n@@ -35,7 +37,6 @@ import promi... | 2025-05-28T09:59:26 |
golang/go | dd687c386016445b2f4abc2a958963dd2056d95f | b3251514531123d7fd007682389bce7428d159a0 | hash: document that Clone may only return ErrUnsupported or a nil error
Updates #69521
Change-Id: I6a6a6964ce384a80c4c89efe67c260dc6e9ed6c8
Reviewed-on: https://go-review.googlesource.com/c/go/+/685235
Auto-Submit: Filippo Valsorda <filippo@golang.org>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.... | [
{
"path": "src/hash/hash.go",
"patch": "@@ -64,7 +64,8 @@ type Hash64 interface {\n // unless GOFIPS140=v1.0.0 is set.\n //\n // If a hash can only determine at runtime if it can be cloned (e.g. if it wraps\n-// another hash), it may return an error wrapping [errors.ErrUnsupported].\n+// another hash), Clon... | 2025-07-01T09:51:37 |
mrdoob/three.js | edb39714e318ca3af3cc6d4d05925dede86cebe9 | 877424bc26adee2a33777de8c3ac9f3d0c68f4dd | SkeletonUtils: fix retargetClip duration and last frame (#27653)
* SkeletonUtils: fix retargetClip duration and last frame
* SkeletonUtils: set retargetClip default fps to source clip fps
* SkeletonUtils: Update retargetClip to set default fps based on the longest track | [
{
"path": "examples/jsm/utils/SkeletonUtils.js",
"patch": "@@ -200,7 +200,8 @@ function retarget( target, source, options = {} ) {\n function retargetClip( target, source, clip, options = {} ) {\n \n \toptions.useFirstFramePosition = options.useFirstFramePosition !== undefined ? options.useFirstFramePositio... | 2024-02-01T10:09:05 |
tensorflow/tensorflow | a25e51c3cae99ba9f76a1423b48ce0d8a4be43ba | c47e231c7217ed3c12d22ef1224714520f228191 | [XLA:GPU] Fix b_scale shape in dot_scaled.
PiperOrigin-RevId: 834304041 | [
{
"path": "third_party/xla/xla/backends/gpu/codegen/triton/transforms/tests/triton_xla_convert_unsupported_types.mlir",
"patch": "@@ -25,7 +25,8 @@ module {\n // CHECK: %[[arg_3:.*]] = xtile.extract %arg3[%[[C_0]], %[[C_0]]] [1, 16] [1, 1] : memref<16x64xi8, #triton_xla.layout<[1, 0]>> -> tensor<1x16xi8... | 2025-11-19T16:26:46 |
denoland/deno | 077f0c5665647b85e394b158f196bb41c64cfa21 | d8879ee3fdb660fb3bbc9612adfb592ac37169f3 | fix(ext/node): ignore some Node.js specific flags (#29461) | [
{
"path": "ext/node/polyfills/internal/child_process.ts",
"patch": "@@ -1220,6 +1220,10 @@ function toDenoArgs(args: string[]): string[] {\n if (flagInfo === undefined) {\n if (arg === \"--no-warnings\") {\n denoArgs.push(\"--quiet\");\n+ } else if (arg === \"--expose-internals\") {\n... | 2025-05-28T03:02:26 |
kubernetes/kubernetes | fb228c4704843dd2fa584a7ccfa630dfb7f3fde2 | 71fa43e37f198ae8035a96ff9f1c112b03b9e0fa | Fix DRAConsumableCapacity to be able to allocate the same device that previously consumed the counterSet
Signed-off-by: Sunyanan Choochotkaew <sunyanan.choochotkaew1@ibm.com> | [
{
"path": "staging/src/k8s.io/dynamic-resource-allocation/structured/internal/allocatortesting/allocator_testing.go",
"patch": "@@ -4876,17 +4876,45 @@ func TestAllocator(t *testing.T,\n \t\t},\n \t\t\"allow-multiple-allocations-with-partitionable-device\": {\n \t\t\tfeatures: Features{\n+\t\t\t\tPrioritize... | 2025-09-17T06:37:52 |
golang/go | b3251514531123d7fd007682389bce7428d159a0 | 15d9fe43d648764d41a88c75889c84df5e580930 | cmd/cgo/internal/testsanitizers: skip asan tests when FIPS140 mode is on
Executing "GODEBUG=fips140=on go test -run TestASAN
./cmd/cgo/internal/testsanitizers" fails because FIPS 140 mode is
incompatible with ASAN.
Change-Id: I1a489f3398bbabf597fe7ffc0982c86c3b86e07e
Reviewed-on: https://go-review.googlesource.com/c/... | [
{
"path": "src/cmd/cgo/internal/testsanitizers/asan_test.go",
"patch": "@@ -8,6 +8,7 @@ package sanitizers_test\n \n import (\n \t\"bytes\"\n+\t\"crypto/fips140\"\n \t\"fmt\"\n \t\"internal/platform\"\n \t\"internal/testenv\"\n@@ -157,6 +158,10 @@ func mustHaveASAN(t *testing.T) *config {\n \t\tt.Skipf(\"sk... | 2025-07-02T14:11:37 |
swiftlang/swift | 6fc9789cd9a2dacf0bf569d2406a22f7cd62f170 | 581cfcd7b61332ef40cbcbb87b12c8adc95fce3c | [silgen] Remove the [var_decl] marker from the begin_borrow generated for mutable capture boxes.
The reason I am doing this is that I want to be careful and make sure that we
can distinguish in between weak var and weak let var decls and real captures.
In the caller, we do not actually represent the capture's var dec... | [
{
"path": "lib/SILGen/SILGenDecl.cpp",
"patch": "@@ -608,6 +608,16 @@ class LocalVariableInitialization : public SingleBufferInitialization {\n Box = SGF.B.createMarkUnresolvedReferenceBindingInst(\n decl, Box, MarkUnresolvedReferenceBindingInst::Kind::InOut);\n \n+ // If we are from a ca... | 2026-01-14T21:25:25 |
mrdoob/three.js | 877424bc26adee2a33777de8c3ac9f3d0c68f4dd | 841d2e791d3e8a2463322c5ca31b16956828b91c | [Doc/zh]: fix some incorrect links (#27657)
* Update CCDIKSolver.html
* Update MMDAnimationHelper.html
* Update MMDPhysics.html
* Update ArcballControls.html
* Update MapControls.html
* Update DRACOExporter.html
* Update EXRExporter.html
* Update GLTFExporter.html
* Update OBJExporter.html
*... | [
{
"path": "docs/examples/zh/animations/CCDIKSolver.html",
"patch": "@@ -180,9 +180,8 @@ <h3>[method:this updateOne]( [param:Object ikParam] )</h3>\n \t<h2>源代码</h2>\n \n \t<p>\n-\t\t[link:https://github.com/mrdoob/three.js/blob/master/examples/jsm/animation/CCDIKSolver.js\n-\t\texamples/jsm/animation/CCDIKSo... | 2024-01-31T18:03:12 |
denoland/deno | 1b6736d3f93c0f5321d6b05ce748bd88baf9a120 | e3bf5ee5db47e01a7833e588b7a9160339e6dc2d | fix(ext/node): node:buffer validates INSPECT_MAX_BYTES (#29469)
Co-authored-by: David Sherret <dsherret@users.noreply.github.com> | [
{
"path": "ext/node/polyfills/internal/buffer.mjs",
"patch": "@@ -119,7 +119,9 @@ const MAX_UINT32 = 2 ** 32;\n \n const customInspectSymbol = SymbolFor(\"nodejs.util.inspect.custom\");\n \n-export const INSPECT_MAX_BYTES = 50;\n+let INSPECT_MAX_BYTES_ = 50;\n+\n+export const INSPECT_MAX_BYTES = INSPECT_MAX... | 2025-05-27T23:31:35 |
golang/go | 6e95fd96cc4514bb6fb39db85bb2164d717cb4da | 7755a05209177e6f2d494a08a9b98b9b31d6ee8f | crypto/ecdsa: fix crypto/x509 godoc links
Change-Id: I6a6a6964c0e8269305804dc2bb57f13f94f08ed5
Reviewed-on: https://go-review.googlesource.com/c/go/+/685236
Reviewed-by: David Chase <drchase@google.com>
Auto-Submit: Filippo Valsorda <filippo@golang.org>
Reviewed-by: Roland Shoemaker <roland@golang.org>
LUCI-TryBot-Res... | [
{
"path": "src/crypto/ecdsa/ecdsa.go",
"patch": "@@ -48,9 +48,9 @@ type PublicKey struct {\n \t// invalidate internal optimizations; moreover, [big.Int] methods are not\n \t// suitable for operating on cryptographic values. To encode and decode\n \t// PublicKey values, use [PublicKey.Bytes] and [ParseUncomp... | 2025-07-01T09:55:48 |
kubernetes/kubernetes | 86bfcd5eec17bfc59e8e2fc2fd7b8d79a141ad04 | 11f9d32a0ea288b974261d9e61e5bcb17ed753b6 | oopsie missed two, should fix failing tests | [
{
"path": "test/e2e/common/node/container_probe.go",
"patch": "@@ -36,7 +36,6 @@ import (\n \tpodutil \"k8s.io/kubernetes/pkg/api/v1/pod\"\n \t\"k8s.io/kubernetes/pkg/features\"\n \t\"k8s.io/kubernetes/pkg/kubelet/events\"\n-\t\"k8s.io/kubernetes/test/e2e/feature\"\n \t\"k8s.io/kubernetes/test/e2e/framework... | 2025-10-28T01:26:32 |
mrdoob/three.js | 1e771e13cb3de863afec27fbcbda5eb1f19b41b0 | 2b6dfe9b581036c8d2360bc23e5800febed930f4 | Editor: Fixed pathtracer render when environment is null. | [
{
"path": "editor/js/Viewport.Pathtracer.js",
"patch": "@@ -6,6 +6,16 @@ import {\n \tPhysicalPathTracingMaterial\n } from 'three-gpu-pathtracer';\n \n+function buildColorTexture( color ) {\n+\n+\tconst data = new Uint8Array( [ color.r * 255, color.g * 255, color.b * 255, 255 ] );\n+\tconst texture = new TH... | 2024-01-30T13:37:00 |
denoland/deno | 7a86ee086f80c9541b9b842c18f86c0d479a68f3 | bca0a9a6bf440e378fab928ee454cae8e7485b7f | fix(lsp): do not warn about unscoped package name (#29463)
It's useful to just use a bare specifier for the package name in a
workspace when not publishing to JSR. | [
{
"path": "cli/schemas/config-file.v1.json",
"patch": "@@ -709,8 +709,7 @@\n },\n \"name\": {\n \"type\": \"string\",\n- \"description\": \"The name of this JSR package. Must be scoped\",\n- \"pattern\": \"^@[a-z0-9-]+/[a-z0-9-]+$\"\n+ \"description\": \"The name of this JSR or ... | 2025-05-27T15:07:58 |
golang/go | d168ad18e15c4e052260bb8c3446c90ab46fdde0 | 27ad1f50135c6de20c2afd593cdd17f47c2388e0 | slices: update TestIssue68488 to avoid false positives
Fixes #74387
Even tho we are abusing unsafe.SliceData a bit here it's probably fine;
in case this test fail, it means some memory alias is happening
which is not good for GC purposes.
We don't care about false keep alives for stack locations tho.
Change-Id: I94... | [
{
"path": "src/slices/slices_test.go",
"patch": "@@ -1454,13 +1454,16 @@ func TestRepeatPanics(t *testing.T) {\n \t}\n }\n \n+var leak *int\n+\n func TestIssue68488(t *testing.T) {\n \ts := make([]int, 3)\n \tclone := Clone(s[1:1])\n \tswitch unsafe.SliceData(clone) {\n \tcase &s[0], &s[1], &s[2]:\n \t\tt.E... | 2025-06-28T00:20:22 |
tensorflow/tensorflow | 402aeaf322152c834042189ecd3cd0d3b1688486 | fc23688e8243f67ecf8531c9a0354d17ab70db1d | Add tests for `ComposeIndexingMaps` with many dimensions
During the refactor to use SymbolicExpr internally (cl/802100018), we had several crashes involving xla::SymbolicExpr::ReplaceDimsAndSymbols()/xla::ComposeIndexingMaps(),
I still do not fully understand why they were not happening before, but they happened beca... | [
{
"path": "third_party/xla/xla/codegen/emitters/computation_partitioner_test.cc",
"patch": "@@ -487,6 +487,23 @@ TEST_F(ComputationPartitionerTest, PartitioningIsDeterministic) {\n EXPECT_EQ(computation.subgraphs().size(), 1);\n }\n \n+TEST_F(ComputationPartitionerTest, ScaleAndTranslateSamplerE2ETest) {\... | 2025-11-19T14:57:08 |
denoland/deno | bca0a9a6bf440e378fab928ee454cae8e7485b7f | 280f5985f51166778ddd0f329eb3023b5fbad845 | fix(compile): init dummy stdin after debug env is initialized (#29144)
This should be the last change to fix
https://github.com/denoland/deno/issues/27730 and
https://github.com/denoland/deno/issues/21091
The dummy stdin needed when using `--no-terminal` instantly closes, but
closing can't be done until the debug env... | [
{
"path": "ext/node/polyfills/process.ts",
"patch": "@@ -996,12 +996,6 @@ internals.__bootstrapNodeProcess = function (\n core.setMacrotaskCallback(runNextTicks);\n enableNextTick();\n \n- // Replace stdin if it is not a terminal\n- const newStdin = initStdin();\n- if (newStdin) {\n- s... | 2025-05-27T06:40:20 |
golang/go | 27ad1f50135c6de20c2afd593cdd17f47c2388e0 | 86fca3dcb63157b8e45e565e821e7fb098fcf368 | internal/abi: fix comment on NonEmptyInterface
Change-Id: Ia3f4e844049caf11ae67d1bd6dd48350f51c532f
Reviewed-on: https://go-review.googlesource.com/c/go/+/684375
Reviewed-by: David Chase <drchase@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Auto-Submit: Keith Ra... | [
{
"path": "src/internal/abi/iface.go",
"patch": "@@ -26,7 +26,7 @@ type EmptyInterface struct {\n \tData unsafe.Pointer\n }\n \n-// EmptyInterface describes the layout of an interface that contains any methods.\n+// NonEmptyInterface describes the layout of an interface that contains any methods.\n type Non... | 2025-06-26T21:36:14 |
kubernetes/kubernetes | 7b2acb74c07e89d18c5d65111e65ada9b08d5662 | 1cb45e2a27f564e2161c6ae8ec7f6215e07096d3 | DRA: fix admit logic for extended resources
Updated allocateContainerResources to skip resources referring
extended resource claims as they are managed by DRA drivers.
These resources shouldn't be processed by device plugins. | [
{
"path": "pkg/kubelet/cm/devicemanager/manager.go",
"patch": "@@ -849,6 +849,11 @@ func (m *ManagerImpl) allocateContainerResources(ctx context.Context, pod *v1.Po\n \t\tresource := string(k)\n \t\tneeded := int(v.Value())\n \t\tlogger.V(3).Info(\"Looking for needed resources\", \"resourceName\", resource,... | 2025-08-30T08:02:27 |
tensorflow/tensorflow | 04ec92ee195e61aeae5a547eaceb906aecf873c4 | 5c0b3f2c24c33be546abc1c986995f3cd1baafe1 | PR #33946: [ROCm] Fix rocm_executor_test
Imported from GitHub PR https://github.com/openxla/xla/pull/33946
📝 Summary of Changes
After this change to `GpuComputeCapability` https://github.com/openxla/xla/commit/11b6a3db362f30b79d385f24523d184592132f11 `RocmExecutorTest:CreateDeviceDescription` had a build break.
🚀 ... | [
{
"path": "third_party/xla/xla/stream_executor/rocm/rocm_executor_test.cc",
"patch": "@@ -57,10 +57,10 @@ TEST(RocmExecutorTest, CreateDeviceDescription) {\n EXPECT_THAT(result->model_str(), Not(IsEmpty()));\n EXPECT_THAT(result->device_vendor(), \"Advanced Micro Devices, Inc\");\n \n- EXPECT_THAT(\n- ... | 2025-11-19T07:39:39 |
denoland/deno | 280f5985f51166778ddd0f329eb3023b5fbad845 | ff74f5416170f63105126c51455be29332d2b20d | fix(lsp): lookup patched jsr packages for auto-import (#29437) | [
{
"path": "cli/lsp/jsr.rs",
"patch": "@@ -57,34 +57,27 @@ impl JsrCacheResolver {\n let info_by_name = DashMap::new();\n let mut workspace_packages_by_name = HashMap::new();\n if let Some(config_data) = config_data {\n- for jsr_pkg_config in config_data.member_dir.workspace.jsr_packages() {... | 2025-05-27T04:16:53 |
golang/go | 0710cce6eb0d75db1fc6c45807773f40edb14d73 | 59846af331228b28e69326412011b26b62f0c74d | [dev.simd] runtime: remove write barrier in xRegRestore
Currently, there's a write barrier in xRegRestore when it assigns
pp.xRegs.cache = gp.xRegs.state. This is bad because that gets called
on the asyncPreempt return path, where we have really limited stack
space, and we don't currently account for this write barrie... | [
{
"path": "src/runtime/mkpreempt.go",
"patch": "@@ -160,7 +160,7 @@ func writeXRegs(arch string, l *layout) {\n \tfmt.Fprintf(g.w, `\n package runtime\n \n-type xRegState struct {\n+type xRegs struct {\n `)\n \tpos := 0\n \tfor _, reg := range l.regs {",
"additions": 1,
"deletions": 1,
"language... | 2025-06-30T20:42:19 |
mrdoob/three.js | 635a04ab70bc975668815f9bd905502bb7dc7b6d | 6daf30036735ba78a1a05b31481fca1f4e0d3d15 | Update cameras.html (#27640)
SphereBufferGeometry is wrong,
SphereGeometry should be used | [
{
"path": "manual/zh/cameras.html",
"patch": "@@ -251,7 +251,7 @@ <h1>摄像机</h1>\n const sphereRadius = 3;\n const sphereWidthDivisions = 32;\n const sphereHeightDivisions = 16;\n- const sphereGeo = new THREE.SphereBufferGeometry(sphereRadius, sphereWidthDivisions, sphereHeightDivisions);\n+ const sph... | 2024-01-29T11:57:35 |
tensorflow/tensorflow | ce226319352f2f1b5c98f8864bc594ca6d2feeeb | 20c3f8b268c2b6bc1931ae7ba6438c422637c1c5 | Return an error if a tracked buffer cannot be retrieved.
PiperOrigin-RevId: 834100455 | [
{
"path": "third_party/xla/xla/pjrt/gpu/tfrt/tfrt_gpu_executable.cc",
"patch": "@@ -436,70 +436,57 @@ absl::StatusOr<PjRtLoadedExecutable::Result> TfrtGpuExecutable::ExecuteHelper(\n options.non_donatable_input_indices.contains(i);\n bool must_donate = donate_it != donated_params.end() && *donat... | 2025-11-19T05:03:43 |
kubernetes/kubernetes | 1cb45e2a27f564e2161c6ae8ec7f6215e07096d3 | c48da291ae9703e4ea7f113ef904475adde60375 | DRA: fix scheduling of pods with extended resources
Previously, the scheduler assumed an extended resource was maintained
by a device plugin if its name was present in the node's Allocatable
map, even if its value was zero. This blocked scheduling when a device
plugin was disconnected or uninstalled, because Kubelet s... | [
{
"path": "pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go",
"patch": "@@ -758,10 +758,10 @@ func (pl *DynamicResources) filterExtendedResources(state *stateData, pod *v1.Po\n \t\t\tcontinue\n \t\t}\n \n-\t\t_, okScalar := nodeInfo.GetAllocatable().GetScalarResources()[rName]\n+\t\tallo... | 2025-08-30T07:40:30 |
golang/go | e46d586eddfdd2186d77a5e996bbd6415cfcf2f5 | 479b51ee1f78a884a45b517c1e993d91c9774e29 | cmd/compile/internal/escape: add debug hash for literal allocation optimizations
Several CLs earlier in this stack added optimizations to reduce
user allocations by recognizing and taking advantage of literals,
including CL 649555, CL 649079, and CL 649035.
This CL adds debug hashing of those changes, which enables u... | [
{
"path": "src/cmd/compile/internal/base/debug.go",
"patch": "@@ -40,6 +40,7 @@ type DebugFlags struct {\n \tInlFuncsWithClosures int `help:\"allow functions with closures to be inlined\" concurrent:\"ok\"`\n \tInlStaticInit int `help:\"allow static initialization of inlined calls\" concurren... | 2025-06-28T20:53:37 |
swiftlang/swift | f8f48d173c9f281ef3383986566d17c67f8fcbab | dc21b0882c24bfa9a19da16082ac0a8e04fba37d | ASTMangler: Fix incorrect mangling of retroactive conformances to marker protocols
We turn off the AllowMarkerProtocols mangler flag when
mangling the types that are passed into the runtime demangler.
The logic in appendAnyProtocolConformance() was wrong when
this flag was set; we would early exit from this function,... | [
{
"path": "lib/AST/ASTMangler.cpp",
"patch": "@@ -2112,6 +2112,7 @@ static bool isRetroactiveConformance(const RootProtocolConformance *root) {\n \n template<typename Fn>\n static bool forEachConditionalConformance(const ProtocolConformance *conformance,\n+ bool allo... | 2026-01-16T02:29:50 |
tensorflow/tensorflow | d2cfe13dc9ecc8eabc3b7a97a0aa44599f33164e | c6d564a12e429efb1babcc00d51415b6249f763a | [xla:cpu] Fix undefined behaviour in `CopyThunk` with sub-byte types.
PiperOrigin-RevId: 834075135 | [
{
"path": "third_party/xla/xla/backends/cpu/runtime/copy_thunk.cc",
"patch": "@@ -57,7 +57,12 @@ absl::StatusOr<std::unique_ptr<CopyThunk>> CopyThunk::Create(\n \"Source shape %s must be compatible with destination shape %s\",\n src_shape.ToString(true), dst_shape.ToString(true));\n }\n-\n... | 2025-11-19T03:50:06 |
golang/go | 479b51ee1f78a884a45b517c1e993d91c9774e29 | 8002d283e8dc3d02f087a3885894c2c29fac93fa | cmd/compile/internal/escape: stop disabling literal allocation optimizations when coverage is enabled
CL 649079 and CL 649035 updated escape analysis to rewrite certain
expressions in OMAKE and OCONVIFACE nodes as optimizations to
reduce user allocations.
Part of the change in CL 649079 disabled those optimzations wh... | [
{
"path": "src/cmd/compile/internal/escape/escape.go",
"patch": "@@ -534,10 +534,6 @@ func (b *batch) rewriteWithLiterals(n ir.Node, fn *ir.Func) {\n \tif n.Op() != ir.OMAKESLICE && n.Op() != ir.OCONVIFACE {\n \t\treturn\n \t}\n-\tif base.Flag.Cfg.CoverageInfo != nil {\n-\t\t// Avoid altering coverage resul... | 2025-06-27T22:46:27 |
denoland/deno | e7bb7cca24269dbe3747de17d641441f9a665a75 | 15f9368ace492bf547994308bff490160373ecef | fix: load changed non-remote dynamic imports at runtime (#29413) | [
{
"path": "Cargo.lock",
"patch": "@@ -1678,9 +1678,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_cache_dir\"\n-version = \"0.20.1\"\n+version = \"0.21.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"8976e7d563536051895564bdc7041e7f7f771a64bede15ca92fbcffc4e7a... | 2025-05-26T21:38:51 |
mrdoob/three.js | 6050a4caf46f17abe1ebf1398f873f7ecc4556eb | a222a673eede515c1983b0932c07c9da6127a772 | 3DMLoader: Fix typos and reorder imports alphabetically (#27631)
* 3DMLoader: Fix typos and reorder imports alphabetically
- Also modify the default MeshStandardMaterial params:
- change metalness value from 0.8 to 0.1
- add roughness value at 0.6
* Update 3DMLoader.js
Revert arbitrary changes | [
{
"path": "examples/jsm/loaders/3DMLoader.js",
"patch": "@@ -1,29 +1,29 @@\n import {\n \tBufferGeometryLoader,\n-\tFileLoader,\n-\tLoader,\n-\tObject3D,\n-\tMeshStandardMaterial,\n-\tMeshPhysicalMaterial,\n-\tMesh,\n+\tCanvasTexture,\n+\tClampToEdgeWrapping,\n \tColor,\n-\tPoints,\n-\tPointsMaterial,\n+\tD... | 2024-01-29T09:19:30 |
swiftlang/swift | 39447fa0e6ffd893c26074edd08f572777da21ce | 85799a45e3e92ee879be964259dbc3b763aab82c | [stdlib] fix semantics of span count properties
`@_semantics` isn’t compatible with `@_transparent`. Make sure all the count properties have the appropriate `@_semantics` annotation. | [
{
"path": "stdlib/public/core/Span/MutableRawSpan.swift",
"patch": "@@ -135,7 +135,7 @@ extension MutableRawSpan {\n @_originallyDefinedIn(module: \"Swift;CompatibilitySpan\", SwiftCompatibilitySpan 6.2)\n extension MutableRawSpan {\n @_alwaysEmitIntoClient\n- @_transparent\n+ @_semantics(\"fixed_storag... | 2026-01-16T01:07:35 |
golang/go | 8002d283e8dc3d02f087a3885894c2c29fac93fa | fdd7713fe5a7bc054fe08f79a1877f90c7188e53 | crypto/tls: update bogo version
This commit updates the pinned revision of BoringSSL that's used for the
BoGo integration test.
Doing this requires a few categories of config changes:
* ignoring a few new tests for features crypto/tls doesn't implement
* ignoring a few new tests that require further
investigation/... | [
{
"path": "src/crypto/tls/bogo_config.json",
"patch": "@@ -74,6 +74,9 @@\n \"BadRSAClientKeyExchange-5\": \"crypto/tls doesn't check the version number in the premaster secret - see processClientKeyExchange comment\",\n \"SupportTicketsWithSessionID\": \"We don't support session ID resumptio... | 2025-06-23T19:48:57 |
mrdoob/three.js | bd33e679a5b634842bb39a377b9a37eb68bc0e2a | 4445abd3577296e347b5c14164cd17cd364acf5e | WebGPURenderer: Fix ambiguous field in WebGL Backend (#27619)
* fix ambious field in webgl backend
* fix job
* cleanup
--------- | [
{
"path": "examples/jsm/nodes/accessors/CameraNode.js",
"patch": "@@ -1,6 +1,5 @@\n import Object3DNode from './Object3DNode.js';\n import { addNodeClass } from '../core/Node.js';\n-import { label } from '../core/ContextNode.js';\n import { NodeUpdateType } from '../core/constants.js';\n //import { sharedUn... | 2024-01-25T06:24:19 |
denoland/deno | 15f9368ace492bf547994308bff490160373ecef | 32acf3a92490652c2af12e58d9a2066fbb432a92 | fix(lsp): lookup mapped npm specifier resolutions for auto-import (#29388) | [
{
"path": "cli/lsp/analysis.rs",
"patch": "@@ -462,7 +462,7 @@ impl<'a> TsResponseImportMapper<'a> {\n return Some(result);\n }\n } else if let Some(dep_name) =\n- scoped_resolver.file_url_to_package_json_dep(specifier)\n+ scoped_resolver.file_url_to_npm_dep_key(specifier)\n ... | 2025-05-26T21:11:16 |
kubernetes/kubernetes | a35785c0331520f170de7ca260b2ea0c7fd5dcd0 | fb10a2995459c52238024adbb10ffdfbdafd2c4d | Drop loopback clients if unused
kube-controller-manager and kube-scheduler do not use the
configured loopback clients. Drop them.
Fix up scheduler test server to not depend on
the loopback client. | [
{
"path": "cmd/kube-controller-manager/app/config/config.go",
"patch": "@@ -35,8 +35,6 @@ type Config struct {\n \tComponentConfig kubectrlmgrconfig.KubeControllerManagerConfiguration\n \n \tSecureServing *apiserver.SecureServingInfo\n-\t// LoopbackClientConfig is a config for a privileged loopback connecti... | 2025-10-11T19:19:46 |
tensorflow/tensorflow | f7ba7e3431e9d77c8cd98a8894f31d08a487407d | 472aa36e21c61c5d895ffc4275d13d28e406f264 | Introduce debug buffer saver inserter to thunk rewriter
PiperOrigin-RevId: 834060787 | [
{
"path": "third_party/xla/xla/backends/gpu/runtime/BUILD",
"patch": "@@ -3001,19 +3001,22 @@ cc_library(\n \"thunk_buffer_debug_filter.cc\",\n \"thunk_buffer_debug_float_check.cc\",\n \"thunk_buffer_debug_pass.cc\",\n+ \"thunk_buffer_debug_saver_inserter.cc\",\n ],\n ... | 2025-11-19T02:54:18 |
swiftlang/swift | 607c7af3d345c4c637ad6917ae7b1b564e1f108a | 97e75f09c206790ab21b6345375959cd145d4915 | [Swiftify] fix ForwardDeclaredConcreteTypeVisitor
This fixes two bugs:
1) The outermost pointee type is not necessarily a nominal type. There
can e.g. be a pointer to an array (tuple) type. This would result in a
null pointer dereference. Instead of assuming direct pointee nominal
types, we now check for nominal type... | [
{
"path": "lib/ClangImporter/SwiftifyDecl.cpp",
"patch": "@@ -372,37 +372,44 @@ struct ForwardDeclaredConcreteTypeVisitor : public TypeWalker {\n Action walkToTypePre(Type ty) override {\n DLOG(\"Walking type:\\n\");\n LLVM_DEBUG(DUMP(ty));\n- if (Type PointeeTy = ConcretePointeeType(ty)) {\n- ... | 2026-01-15T22:02:02 |
mrdoob/three.js | 51d582b86350f785e8d4797b19cdbdd077f40767 | 7e226d00e27a98fe4e126766ff6cb2c2ba6dec4f | WebGPURenderer: Fix names(2) | [
{
"path": "examples/jsm/renderers/common/Renderer.js",
"patch": "@@ -1188,13 +1188,13 @@ class Renderer {\n \n \tget compute() {\n \n-\t\tconsole.warn( 'THREE.Renderer: compile() is deprecated and will be removed in r170, use compileAsync instead.' ); // @deprecated, r170\n \t\treturn this.computeAsync;\n \... | 2024-01-23T22:32:06 |
golang/go | fdd7713fe5a7bc054fe08f79a1877f90c7188e53 | 740857f529ce4074c7f9aa1d6f38db8c4a00246c | internal/goexperiment: fix godoc formatting
In internal/goexperiment fix godoc formatting (list indent, add godoc
links).
In internal/buildcfg fix godoc for Experiment.baseline.
Change-Id: I30eaba60cbf3978a375b50dda19dbb2830903bdb
Reviewed-on: https://go-review.googlesource.com/c/go/+/595915
Reviewed-by: Austin Clem... | [
{
"path": "src/internal/buildcfg/exp.go",
"patch": "@@ -25,7 +25,7 @@ type ExperimentFlags struct {\n // (This is not necessarily the set of experiments the compiler itself\n // was built with.)\n //\n-// experimentBaseline specifies the experiment flags that are enabled by\n+// Experiment.baseline specifie... | 2024-06-30T22:49:11 |
denoland/deno | 79a9868d5ee7cd8de8484bdebff68bbcba6359fe | ffe8ce62040c87d28819785d71f4dd5e35d2329e | fix(fmt): allow expressions used as key-value pair in css template literals (#29369) | [
{
"path": "Cargo.lock",
"patch": "@@ -3310,9 +3310,9 @@ dependencies = [\n \n [[package]]\n name = \"dprint-plugin-typescript\"\n-version = \"0.95.3\"\n+version = \"0.95.4\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"20b6b18951ebbfe42a284c62dc307a0ae836f8cb1c1aa34aff... | 2025-05-26T01:50:36 |
kubernetes/kubernetes | bbd44717c15681a47567fe841770d3bc4e02ff6d | 7d353c524988a1321ce63bc2e9bea90728b65105 | fix: allow job startTime updates on resume from suspended state
Signed-off-by: Dejan Zele Pejchev <pejcev.dejan@gmail.com> | [
{
"path": "pkg/apis/batch/validation/validation.go",
"patch": "@@ -914,6 +914,15 @@ func IsConditionTrue(list []batch.JobCondition, cType batch.JobConditionType) bo\n \treturn false\n }\n \n+func IsConditionFalse(list []batch.JobCondition, cType batch.JobConditionType) bool {\n+\tfor _, c := range list {\n+... | 2025-10-22T06:26:54 |
tensorflow/tensorflow | 4ea98e8a5141d376d751105a3b08d2b152cb405f | 12bda18eb7037e360275b29a714255428ddfa6a0 | [StableHLO broadcast] Fix broadcast bounded lowering for non-splat expands
PiperOrigin-RevId: 833905937 | [
{
"path": "third_party/xla/third_party/stablehlo/temporary.patch",
"patch": "@@ -320,7 +320,7 @@ diff --ruN a/stablehlo/stablehlo/tests/TestUtils.td b/stablehlo/stablehlo/tests/\n diff --ruN a/stablehlo/stablehlo/tests/ops_broadcasting.mlir b/stablehlo/stablehlo/tests/ops_broadcasting.mlir\n --- stablehlo/s... | 2025-11-18T19:44:34 |
mrdoob/three.js | 7e226d00e27a98fe4e126766ff6cb2c2ba6dec4f | c3fedd4e9d1634946190a301dc1fdbf422e359dd | WebGPURenderer: ReflectorNode (#27611)
* Add first prevent update
* GaussianBlurNode: Fix type
* Rename lightNodes -> lightsNode
* Add ReflectorNode
* add reflector examples
* cleanup
* rev
* revision
* rev
* update reflection resolution
* Add prevent update | [
{
"path": "examples/files.json",
"patch": "@@ -356,6 +356,7 @@\n \t\t\"webgpu_occlusion\",\n \t\t\"webgpu_particles\",\n \t\t\"webgpu_portal\",\n+\t\t\"webgpu_reflection\",\n \t\t\"webgpu_rtt\",\n \t\t\"webgpu_sandbox\",\n \t\t\"webgpu_shadertoy\",\n@@ -369,6 +370,7 @@\n \t\t\"webgpu_tsl_transpiler\",\n \t\... | 2024-01-23T22:20:45 |
denoland/deno | ffe8ce62040c87d28819785d71f4dd5e35d2329e | 90c320f71b2e935986c1b6f0d72c322f4c92c8ee | fix(ext/node): use primordials in `ext/node/polyfills/internal/util.mjs` (#29430)
Towards #24236. Replaces JS builtins with equivalent primordials. | [
{
"path": "ext/node/polyfills/internal/util.mjs",
"patch": "@@ -1,8 +1,5 @@\n // Copyright 2018-2025 the Deno authors. MIT license.\n \n-// TODO(petamoriken): enable prefer-primordials for node polyfills\n-// deno-lint-ignore-file prefer-primordials\n-\n import { validateFunction } from \"ext:deno_node/inte... | 2025-05-25T22:30:31 |
tensorflow/tensorflow | 12bda18eb7037e360275b29a714255428ddfa6a0 | b6495a6320c12bd8024679a0838ab9b0243f1a3c | PR #32748: [ROCM] Adding grid-stride loops for buffer comparator and redzone checker kernels
Imported from GitHub PR https://github.com/openxla/xla/pull/32748
📝 Summary of Changes
Added grid-stride loops to buffer_comparator and redzone checker kernels,
extended gpu_kernel_tiling test and buffer_comparator_test, rem... | [
{
"path": "third_party/xla/xla/backends/gpu/runtime/buffer_comparator.cc",
"patch": "@@ -48,6 +48,7 @@ namespace gpu {\n struct ComparisonParams {\n double relative_tol = 0.1;\n bool verbose = true;\n+ bool run_host_compare = true;\n const Shape* shape = nullptr;\n se::Stream* stream = nullptr;\n ... | 2025-11-18T19:31:00 |
mrdoob/three.js | c3fedd4e9d1634946190a301dc1fdbf422e359dd | 3449f17e1e18ce8047f5a158545acf318216b15d | WebGPURenderer: Fix names | [
{
"path": "examples/jsm/renderers/common/Renderer.js",
"patch": "@@ -1189,6 +1189,12 @@ class Renderer {\n \tget compute() {\n \n \t\tconsole.warn( 'THREE.Renderer: compile() is deprecated and will be removed in r170, use compileAsync instead.' ); // @deprecated, r170\n+\t\treturn this.computeAsync;\n+\n+\t... | 2024-01-23T22:21:34 |
golang/go | 426cf36b4d0c672dc88fc5cef9b0d5db0d2f4fe5 | ead249a2e2989c6775235058d38f0e33afdf752a | [dev.simd] runtime: save scalar registers off stack in amd64 async preemption
Asynchronous preemption must save all registers that could be in use
by Go code. Currently, it saves all of these to the goroutine stack.
As a result, the stack frame requirements of asynchronous preemption
can be rather high. On amd64, this... | [
{
"path": "src/runtime/export_test.go",
"patch": "@@ -555,6 +555,8 @@ type G = g\n \n type Sudog = sudog\n \n+type XRegPerG = xRegPerG\n+\n func Getg() *G {\n \treturn getg()\n }",
"additions": 2,
"deletions": 0,
"language": "Go"
},
{
"path": "src/runtime/lockrank.go",
"patch": "@@ -... | 2025-04-30T02:55:40 |
mrdoob/three.js | 3449f17e1e18ce8047f5a158545acf318216b15d | d963e6b307b99370db9209206240cece590a4caf | WebGPURenderer: implement compileAsync() (#27098)
* compileAsync
* fix typo
* take account of targetScene
* add getter
* cleanup
* minor fixes
---------
Co-authored-by: aardgoose <angus.sawyer@email.com> | [
{
"path": "examples/jsm/renderers/common/Pipelines.js",
"patch": "@@ -89,7 +89,7 @@ class Pipelines extends DataMap {\n \n \t}\n \n-\tgetForRender( renderObject ) {\n+\tgetForRender( renderObject, promises = null ) {\n \n \t\tconst { backend } = this;\n \n@@ -149,7 +149,7 @@ class Pipelines extends DataMap ... | 2024-01-23T22:15:36 |
tensorflow/tensorflow | 06037f94421d2371679d767a66062f9489ffe654 | 8551579c51601f7509e9a1e41bbbaa15fa3d6632 | [XLA:GPU] Fix timing out test.
PiperOrigin-RevId: 833784794 | [
{
"path": "third_party/xla/xla/service/gpu/tests/BUILD",
"patch": "@@ -610,7 +610,7 @@ xla_test(\n \"//xla:types\",\n \"//xla:xla_data_proto_cc\",\n \"//xla/hlo/ir:hlo\",\n- \"//xla/stream_executor/cuda:cuda_compute_capability\",\n+ \"//xla/service/gpu/transforms:sort_r... | 2025-11-18T14:03:53 |
golang/go | 740857f529ce4074c7f9aa1d6f38db8c4a00246c | 9ae38be3025fa71ec2967111e0a184f886876cb1 | runtime: stash allpSnapshot on the M
findRunnable takes a snapshot of allp prior to dropping the P because
afterwards procresize may mutate allp without synchronization.
procresize is careful to never mutate the contents up to cap(allp), so
findRunnable can still safely access the Ps in the slice.
Unfortunately, grow... | [
{
"path": "src/runtime/proc.go",
"patch": "@@ -1059,6 +1059,28 @@ func (mp *m) becomeSpinning() {\n \tsched.needspinning.Store(0)\n }\n \n+// Take a snapshot of allp, for use after dropping the P.\n+//\n+// Must be called with a P, but the returned slice may be used after dropping\n+// the P. The M holds a ... | 2025-06-27T21:21:20 |
denoland/deno | 90c320f71b2e935986c1b6f0d72c322f4c92c8ee | cb738ee5da0f10c5b41fbe61831cccf6422621cb | fix(ext/node): use primordials in `ext/node/polyfills/_fs/_fs_truncate.ts` (#29422)
Towards #24236. Replaces `Error`, `instanceof`, and `Promise.then()`
with the equivalent primordials. | [
{
"path": "ext/node/polyfills/_fs/_fs_truncate.ts",
"patch": "@@ -1,18 +1,23 @@\n // Copyright 2018-2025 the Deno authors. MIT license.\n \n-// TODO(petamoriken): enable prefer-primordials for node polyfills\n-// deno-lint-ignore-file prefer-primordials\n+import { primordials } from \"ext:core/mod.js\";\n \... | 2025-05-25T21:49:39 |
mrdoob/three.js | d963e6b307b99370db9209206240cece590a4caf | 59ceca26a0b0b2e39a223a5beb7f9087015f458e | WebGPUBackend: Fix occlusion query result | [
{
"path": "examples/jsm/renderers/webgpu/WebGPUBackend.js",
"patch": "@@ -551,7 +551,7 @@ class WebGPUBackend extends Backend {\n \n \t\t\tfor ( let i = 0; i < currentOcclusionQueryObjects.length; i ++ ) {\n \n-\t\t\t\tif ( results[ i ] !== 0 ) {\n+\t\t\t\tif ( results[ i ] !== 0n ) {\n \n \t\t\t\t\tocclude... | 2024-01-23T21:18:34 |
swiftlang/swift | b47e0320d98132e1eb5bee11fe4a99eb04f67fd5 | dc21b0882c24bfa9a19da16082ac0a8e04fba37d | Adjust dependencies on LLVM components
Swift host libraries should depend on LLVM libraries as part of the
`LLVM_LINK_COMPONENTS` argument so the dependency graph can be properly
set up. This is a problem when building LLVM as a DLL on Windows as
Swift targets should depend on the LLVM DLL.
Bug: #85241 | [
{
"path": "lib/ClangImporter/CMakeLists.txt",
"patch": "@@ -27,12 +27,14 @@ add_swift_host_library(swiftClangImporter STATIC\n Serializability.cpp\n SwiftifyDecl.cpp\n SwiftLookupTable.cpp\n+\n+ LLVM_LINK_COMPONENTS\n+ BitstreamReader\n )\n target_link_libraries(swiftClangImporter PRIVATE\n swif... | 2025-10-29T19:11:55 |
golang/go | 9ae38be3025fa71ec2967111e0a184f886876cb1 | 4731832342f6430d6eb4cb13a00b97c3db5da993 | sync: disassociate WaitGroups from bubbles on Wait
Fix a race condition in disassociating a WaitGroup in a synctest
bubble from its bubble. We previously disassociated the WaitGroup
when count becomes 0, but this causes problems when an Add call
setting count to 0 races with one incrementing the count.
Instead, disas... | [
{
"path": "src/internal/synctest/synctest_test.go",
"patch": "@@ -654,6 +654,17 @@ func TestWaitGroupInBubble(t *testing.T) {\n \t})\n }\n \n+// https://go.dev/issue/74386\n+func TestWaitGroupRacingAdds(t *testing.T) {\n+\tsynctest.Run(func() {\n+\t\tvar wg sync.WaitGroup\n+\t\tfor range 100 {\n+\t\t\twg.Go... | 2025-06-27T15:46:28 |
denoland/deno | cb738ee5da0f10c5b41fbe61831cccf6422621cb | bc8b191b7c8df03dab8ee084506df87a32143281 | chore: Rust 1.86.0 (#29435)
Since `rust 1.87.0` reported `undefined symbol:
ring::pbkdf2::PBKDF2_HMAC_SHA1::*` in CI and it was difficult to debug
locally, use `rust 1.86.0` in CI tests for troubleshoot the errors | [
{
"path": ".github/workflows/ci.generate.ts",
"patch": "@@ -5,7 +5,7 @@ import { stringify } from \"jsr:@std/yaml@^0.221/stringify\";\n // Bump this number when you want to purge the cache.\n // Note: the tools/release/01_bump_crate_versions.ts script will update this version\n // automatically via regex, s... | 2025-05-25T21:40:48 |
mrdoob/three.js | b8df03024ada15ff501bf725032d156404c5a8b1 | ce36e0d1406b99eda5a85003e7d846456db57887 | WebGPURenderer: Fix Video Textures in WebGL Backend (#27610)
* fix video webgl backend
* fix webgl video texture | [
{
"path": "examples/jsm/renderers/webgl/utils/WebGLTextureUtils.js",
"patch": "@@ -189,7 +189,7 @@ class WebGLTextureUtils {\n \n \n \t\t// follow WebGPU backend mapping for texture filtering\n-\t\tconst minFilter = texture.minFilter === LinearFilter ? LinearMipmapLinearFilter : texture.minFilter;\n+\t\tcon... | 2024-01-23T10:01:24 |
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.