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 | 1eac4fbc9d04c4b1249d42d544fe85050941f6df | 7614a37b30ef0b6864f7405d748a0a2a537ede40 | [XLA:GPU] Plug in the all reduce codegen into thunk emitter.
This is the last in the chain to enable all-reduce codegen through triton.
This switches to the codegen all-reduce for the one-shot variant.
Some changes were made to the collective emitter to make it work e2e:
- Add casts for PRED types.
- Fix issues w... | [
{
"path": "third_party/xla/xla/backends/gpu/codegen/triton/BUILD",
"patch": "@@ -1084,6 +1084,7 @@ xla_cc_test(\n \"@com_google_absl//absl/memory\",\n \"@com_google_absl//absl/status\",\n \"@com_google_absl//absl/status:statusor\",\n+ \"@com_google_absl//absl/strings\",\n ... | 2025-12-01T17:27:11 |
denoland/deno | 8362881c0942d50b3b6fcd6759d42fe3e19c3703 | f609bbb267adc92da41647c26d0c8c09f68e84e3 | fix(ext/node): Module.wrap cleanup for npm:v8-code-cache (#29725)
This removes the additional arguments on the function returned by
`Module.wrap`.
Allow libraries that overwrite this behavior (like `v8-code-cache`) to
work correctly.
---------
Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com> | [
{
"path": "ext/node/polyfills/01_require.js",
"patch": "@@ -65,8 +65,6 @@ const {\n TypeError,\n } = primordials;\n \n-import { nodeGlobals } from \"ext:deno_node/00_globals.js\";\n-\n import _httpAgent from \"node:_http_agent\";\n import _httpCommon from \"node:_http_common\";\n import _httpOutgoing from... | 2025-06-17T00:32:10 |
golang/go | 608e9fac9055aa188c513f4dd53f12e692bc3c0c | 72e8237cc11569de2faf9885a1b83d06446533b5 | go/types, types2: flip on position tracing
Running compilebench with flags off / on, we get the below:
│ old.txt │ new.txt │
│ sec/op │ sec/op vs base │
Template 149.2m ± 6% 155.5m ± 5% ... | [
{
"path": "src/cmd/compile/internal/types2/check.go",
"patch": "@@ -22,7 +22,7 @@ var nopos syntax.Pos\n const debug = false // leave on during development\n \n // position tracing for panics during type checking\n-const tracePos = false // TODO(markfreeman): check performance implications\n+const tracePos ... | 2025-05-28T16:12:35 |
swiftlang/swift | 7e327326494ba2f6acdd6475def630ee28135209 | e6ea70720c872ee25a4acb504b92c29233d4b1bd | [SE-0474] Force unwind off for new yielding accessors
In the context of coroutine/yielding accessors, "unwind" means
that the second half of the coroutine (code _after_ the `yield`
statement) will not run if an exception is thrown during the access.
Unwinding was the default behavor for legacy `_read`/`_modify` corou... | [
{
"path": "include/swift/AST/Types.h",
"patch": "@@ -5153,15 +5153,17 @@ enum class SILCoroutineKind : uint8_t {\n /// results and may not have yield results.\n None,\n \n- /// This function is a yield-once coroutine (used by e.g. accessors).\n- /// It must not have normal results and may have arbitra... | 2026-01-24T00:01:48 |
tensorflow/tensorflow | cb02f668c8d54646f770de8e6a42fa8d707f2c7d | 04c86dfa04a82768676b36016161f94cac6f686a | PR #34173: [ROCm][XLA:GPU] Rename warp to shmem_group in PackedTranspose
Imported from GitHub PR https://github.com/openxla/xla/pull/34173
Rename `warp` to `shmem_group` in `PackedTranspose`.
Also calculate their count as `kNumThreadsPerBlock / kNumShmemBanks` to avoid inconsistency when manually specified.
This ch... | [
{
"path": "third_party/xla/xla/backends/gpu/codegen/emitters/tests/transpose/packed_transpose_bf16.hlo",
"patch": "@@ -6,4 +6,6 @@ fusion {\n p0 = bf16[30,16,30] parameter(0)\n ROOT transpose = bf16[30,16,30] transpose(p0), dimensions={2,1,0}\n }\n-// CHECK: xla_gpu.allocate_shared : tensor<64x64xbf16>... | 2025-12-01T15:52:39 |
denoland/deno | f609bbb267adc92da41647c26d0c8c09f68e84e3 | bf6292b1705a34d27ae2c2ac96e9656b3ef1f4b1 | fix(fmt): fix handling of indent inside template language (#29616)
This commit fixes the handling of indent inside the template languages.
See https://github.com/dprint/dprint-plugin-typescript/pull/718 for
details | [
{
"path": "Cargo.lock",
"patch": "@@ -3368,9 +3368,9 @@ dependencies = [\n \n [[package]]\n name = \"dprint-plugin-typescript\"\n-version = \"0.95.6\"\n+version = \"0.95.7\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"52be8b73afa35c3e8910131f2ab4c8de5179506868c217b632... | 2025-06-17T00:00:18 |
golang/go | 72e8237cc11569de2faf9885a1b83d06446533b5 | 3406a617d9643902e932ca99c6f276fa7b19e030 | cmd/compile: allow more args in StructMake folding rule
imakeOfStructMake does the right thing, but we never call it
when the StructMake has more than one argument.
Fixes #74908
Change-Id: Ib4b1a025bfb1fa69a325207e47b74bd6217092bf
Reviewed-on: https://go-review.googlesource.com/c/go/+/693615
Auto-Submit: Keith Randa... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/generic.rules",
"patch": "@@ -921,7 +921,7 @@\n @x.Block (Load <v.Type> (OffPtr <v.Type.PtrTo()> [t.FieldOff(int(i))] ptr) mem)\n \n // Putting struct{*byte} and similar into direct interfaces.\n-(IMake _typ (StructMake val)) => imakeOfStructMake(v)\n+(IMake _t... | 2025-08-06T16:21:41 |
swiftlang/swift | bf35deaddfa10b2e5f642d76aba0efc8b2af6087 | be5e89a9bb064fb54a2582ed3566218908b64afa | build-script: use the overall build variant to find early swift driver
The path in which the early SwiftDriver is installed depends on the
`build_variant` argument (set with `--release`, `--release-debuginfo`
and `--debug`), but build-script calculate it based off
`swift_build_variant`, which can be different from the... | [
{
"path": "utils/swift_build_support/swift_build_support/build_script_invocation.py",
"patch": "@@ -258,7 +258,7 @@ def convert_to_impl_arguments(self):\n '-DSWIFTSYNTAX_ENABLE_ASSERTIONS:BOOL=TRUE')\n \n if args.build_early_swift_driver:\n- configuration = 'release' i... | 2026-01-23T22:28:23 |
kubernetes/kubernetes | 3b0913c8666136a72207a3ca90f69ef04340a64d | 778ff5d5ab472371be998648c33746916a2ccf9b | fix test case | [
{
"path": "test/integration/apiserver/apply/reset_fields_test.go",
"patch": "@@ -409,6 +409,9 @@ spec:\n \t}\n \tt.Logf(\"result: %s\", string(result))\n \tnewManagedFields, err := getManagedFields(result)\n+\tif err != nil {\n+\t\tt.Fatalf(\"failed to get managed fields: %v\", err)\n+\t}\n \t// newManagedF... | 2025-11-05T03:17:00 |
tensorflow/tensorflow | 04c86dfa04a82768676b36016161f94cac6f686a | 7e73d0a256d61d3e3474573199b43e6d6ec46648 | PR #34150: [ROCm] Consider runfiles in lit tests
Imported from GitHub PR https://github.com/openxla/xla/pull/34150
📝 Summary of Changes
Fixing lit tests in rocm config
🎯 Justification
rocm provides its libs in the runfiles directory hence
when running the lit test they are missing and gpu_test_correctness fails
wi... | [
{
"path": "third_party/xla/xla/BUILD",
"patch": "@@ -19,6 +19,10 @@ package(\n licenses = [\"notice\"],\n )\n \n+exports_files([\n+ \"sh_test_with_runfiles.py\",\n+])\n+\n exports_files([\n \"lit.cfg.py\",\n ] + if_google([\"lit_google_cfg.py\"]))",
"additions": 4,
"deletions": 0,
"la... | 2025-12-01T15:49:27 |
golang/go | 7ca34599ec4df8a21b7d4580f7e1c716c44f7e0f | 82d056ddd7378ee23ab073c7a195d92cfc4a59d6 | [dev.simd] simd, cmd/compile: generated files to add 'blend' and 'blendMasked'
Generated by arch/internal/simdgen CL 693175
These methods are not public because of simdgen-induced name/signature
issues, and because their addition was motivated by the need for
emulation tools.
The specific name signature problems are... | [
{
"path": "src/cmd/compile/internal/amd64/simdssa.go",
"patch": "@@ -589,7 +589,11 @@ func ssaGenSIMDValue(s *ssagen.State, v *ssa.Value) bool {\n \t\tssa.OpAMD64VPXORDMasked512,\n \t\tssa.OpAMD64VPXORQMasked128,\n \t\tssa.OpAMD64VPXORQMasked256,\n-\t\tssa.OpAMD64VPXORQMasked512:\n+\t\tssa.OpAMD64VPXORQMask... | 2025-08-04T19:19:54 |
denoland/deno | bf6292b1705a34d27ae2c2ac96e9656b3ef1f4b1 | a84ee8a9c4885ebd3a09edf303bbe13356c37806 | fix(bundle): improve error handling and reporting (#29744)
We were effectively ignoring our diagnostics, and instead falling back
to esbuild (and then displaying the esbuild diagnostics). That was
mostly for simplicity and so we would fall back to esbuild handling
unsupported things (for instance css imports).
This d... | [
{
"path": "Cargo.lock",
"patch": "@@ -3626,9 +3626,9 @@ checksum = \"31ae425815400e5ed474178a7a22e275a9687086a12ca63ec793ff292d8fdae8\"\n \n [[package]]\n name = \"esbuild_client\"\n-version = \"0.2.0\"\n+version = \"0.3.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \... | 2025-06-16T21:11:14 |
mrdoob/three.js | 6990d5ff0225e534ef45b460f831c06b341cba0f | 1784e50b9a2eb2f03a538843ff43a0626f361b36 | Editor: Fixed non-localized history entries (#28275)
* localize commands
* adds space after colon
---------
Co-authored-by: Michael Herzog <michael.herzog@human-interactive.org> | [
{
"path": "editor/js/Sidebar.Material.js",
"patch": "@@ -500,7 +500,7 @@ function SidebarMaterial( editor ) {\n \n \t\t\t\t}\n \n-\t\t\t\teditor.execute( new SetMaterialCommand( editor, currentObject, material, currentMaterialSlot ), 'New Material: ' + materialClass.getValue() );\n+\t\t\t\teditor.execute( n... | 2024-05-04T10:27:42 |
swiftlang/swift | 0d5f91b00ccd94496284b3b8385978dcb62fc8ab | e6ea70720c872ee25a4acb504b92c29233d4b1bd | End-to-end execution test for yielding accessors
This verifies that yielding borrow and mutate accessors run both before
and after the access in each of the following cases:
* Simple access of a struct
* As above, but with a throw exception during the access
* As above, but through a protocol existential | [
{
"path": "test/SILGen/coroutine_accessors_exec.swift",
"patch": "@@ -0,0 +1,163 @@\n+// RUN: %empty-directory(%t)\n+// RUN: %target-build-swift %s -o %t/a.out \\\n+// RUN: -enable-experimental-feature CoroutineAccessors\n+// RUN: %target-codesign %t/a.out\n+// RUN: %target-run %t/a.out | %FileCheck %s\n... | 2026-01-23T20:21:07 |
kubernetes/kubernetes | 120bcee05787c24fbf8802c68547a0d815411484 | d12663248d50a7d5632dc05a29cb7ec80ddd7c95 | KE-3619: fix emulation version in unit tests | [
{
"path": "pkg/api/pod/util_test.go",
"patch": "@@ -4065,7 +4065,7 @@ func TestDropSupplementalGroupsPolicy(t *testing.T) {\n \t\t\t\t\t),\n \t\t\t\t\tfunc(t *testing.T) {\n \t\t\t\t\t\t// Set emulation version so that the feature gate can be disabled in the test\n-\t\t\t\t\t\tfeaturegatetesting.SetFeatureG... | 2025-11-05T00:28:10 |
golang/go | e1fd4faf914b914856dfb0be1ad26cd4cef4a9ae | bcd25c79aa5675d3e5d28c09715b8147906da006 | runtime: fix godoc comment for inVDSOPage
Change-Id: I7dcab0c915a748e52c5c689c1cb774f486d2b9e6
Reviewed-on: https://go-review.googlesource.com/c/go/+/693195
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
Auto-Submit: Tobias Klauser <tobias.klauser@gmail.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project... | [
{
"path": "src/runtime/vdso_linux.go",
"patch": "@@ -285,7 +285,7 @@ func vdsoauxv(tag, val uintptr) {\n \t}\n }\n \n-// vdsoMarker reports whether PC is on the VDSO page.\n+// inVDSOPage reports whether PC is on the VDSO page.\n //\n //go:nosplit\n func inVDSOPage(pc uintptr) bool {",
"additions": 1,
... | 2025-08-05T10:57:42 |
tensorflow/tensorflow | 51355e39ec059059369adff49b69195f26da39e1 | a8be1339b2f409a3c1e13a087665be97f46bc12c | [XLA:GPU] remove is_autotuning_compilation flag
The flag was used all over the place to make various decisions in
compiler that is now aware about existence of autotuner. Instead
introduce a new debug flag and compile option to control what do we want
compiler to do.
Also removed conditional logging for estimated mem... | [
{
"path": "third_party/xla/xla/backends/cpu/autotuner/cpu_codegen_backend.h",
"patch": "@@ -21,7 +21,6 @@ limitations under the License.\n #include <utility>\n #include <vector>\n \n-#include \"absl/status/status.h\"\n #include \"absl/status/statusor.h\"\n #include \"absl/strings/string_view.h\"\n #include ... | 2025-12-01T15:24:33 |
mrdoob/three.js | b98f98a7b82de322a19a912c4ce2ea0b047aefae | 83a058b51492dcca971e69fd0a83249d8a7561aa | support updating only dirty `CompressedArrayTexture` layers (#27972)
* support CompressedArrayTexture
* docs
* address feedback
* s/length/size
* data array texture
* precompute texel size
* fix lint
* fix missing break statements
* s/dirty/update | [
{
"path": "docs/api/en/textures/CompressedArrayTexture.html",
"patch": "@@ -61,11 +61,32 @@ <h3>[property:number wrapR]</h3>\n \t\t<h3>[property:Object image]</h3>\n \t\t<p>Overridden with a object containing width, height, and depth.</p>\n \n+\t\t<h3>[property:Set layerUpdates]</h3>\n+\t\t<p>\n+\t\t\tA set... | 2024-05-04T08:52:42 |
kubernetes/kubernetes | d12663248d50a7d5632dc05a29cb7ec80ddd7c95 | cdbe340143134465e22c24b7cee959a26794df45 | KEP-3619: fix removal version for SupplementalGroupsPolicy feature | [
{
"path": "pkg/features/kube_features.go",
"patch": "@@ -1726,7 +1726,7 @@ var defaultVersionedKubernetesFeatureGates = map[featuregate.Feature]featuregate\n \tSupplementalGroupsPolicy: {\n \t\t{Version: version.MustParse(\"1.31\"), Default: false, PreRelease: featuregate.Alpha},\n \t\t{Version: version.Mus... | 2025-11-05T00:21:24 |
mrdoob/three.js | 83a058b51492dcca971e69fd0a83249d8a7561aa | cc774f107f9baf5c82833a166e84d0f9dcbdc14a | fix mismatch .type (#28276) | [
{
"path": "editor/js/commands/SetMaterialVectorCommand.js",
"patch": "@@ -6,7 +6,7 @@ class SetMaterialVectorCommand extends Command {\n \n \t\tsuper( editor );\n \n-\t\tthis.type = 'SetMaterialColorCommand';\n+\t\tthis.type = 'SetMaterialVectorCommand';\n \t\tthis.name = `Set Material.${attributeName}`;\n ... | 2024-05-04T08:41:06 |
tensorflow/tensorflow | a8be1339b2f409a3c1e13a087665be97f46bc12c | c5cd88abb404cbbf209710212d1eec037b93e2bf | Fix asan error in `gpu_executable_test.cc`
A reference of the BufferAllocation was being passed to a thunk, but was falling out of scope after creation.
PiperOrigin-RevId: 838763436 | [
{
"path": "third_party/xla/xla/service/gpu/gpu_executable_test.cc",
"patch": "@@ -499,11 +499,10 @@ TEST(GpuExecutableTest, GpuExecutableDump) {\n debug_options.set_xla_dump_to(temp_dir.path());\n debug_options.set_xla_enable_dumping(true);\n \n+ BufferAllocation alloc(0, 1024, 0);\n auto create_exec... | 2025-12-01T15:23:53 |
golang/go | bcd25c79aa5675d3e5d28c09715b8147906da006 | b0945a54b5ec65f79ad722d62f8c3ed62ba0b9d9 | cmd/compile: allow StructSelect [x] of interface data fields for x>0
As of CL 681937 we can now have structs which are pointer shaped, but
their pointer field is not the first field, like struct{ struct{}; *int }.
Fixes #74888
Change-Id: Idc80f6b1abde3ae01437e2a9cadb5aa23d04b806
Reviewed-on: https://go-review.google... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/dec.rules",
"patch": "@@ -98,7 +98,7 @@\n // Some of these are copied from generic.rules\n \n (IMake _typ (StructMake val)) => (IMake _typ val)\n-(StructSelect [0] (IData x)) => (IData x)\n+(StructSelect (IData x)) => (IData x)\n \n (StructSelect [i] x:(StructMak... | 2025-08-05T20:37:21 |
mrdoob/three.js | f91fe5fc251a88b0d0c3ae9f47c68277ecf0d0f3 | f2766a0dfc47a790cd64dec6f9b7132d6fee9fa8 | Editor: Fixed non-localized prompt messages (#28260)
* localize the prompts
* no brackets | [
{
"path": "editor/index.html",
"patch": "@@ -226,7 +226,7 @@\n \n \t\t\t\tconst file = hash.slice( 6 );\n \n-\t\t\t\tif ( confirm( 'Any unsaved data will be lost. Are you sure?' ) ) {\n+\t\t\t\tif ( confirm( editor.strings.getKey( 'prompt/file/open' ) ) ) {\n \n \t\t\t\t\tconst loader = new THREE.FileLoader... | 2024-05-03T11:09:55 |
kubernetes/kubernetes | 4acafd92452c3ed75b30839c5b38d4c0a800c61a | 934c34435ad851469ee6e97e9da0117fe77494bf | [DRA] Fix unexpected errors on ResourceClaim strategy update
- Fix setting distinctAttribute=nil when DRAConsumableCapacity is disabled
- Add must have no error check when no error expected in strategy test
- Update test case that causes unexpected errors
Signed-off-by: Sunyanan Choochotkaew <sunyanan.choochotkaew1@i... | [
{
"path": "pkg/api/resourceclaimspec/util.go",
"patch": "@@ -135,8 +135,8 @@ func dropDisabledDRAResourceClaimConsumableCapacityFields(new, old *resource.Res\n \t\treturn\n \t}\n \n-\tfor _, constaint := range new.Devices.Constraints {\n-\t\tconstaint.DistinctAttribute = nil\n+\tfor i := range new.Devices.C... | 2025-10-30T23:46:12 |
golang/go | af0c4fe2ca51918bd82231ac48a28a0d0ef15c98 | e73afaae69bb6f098e3c1dbd98cfe134843910a1 | 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 requires 3... | [
{
"path": "src/runtime/export_test.go",
"patch": "@@ -554,6 +554,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 |
tensorflow/tensorflow | 5fb03342f2e1b7ffdd6b47daddf20062ab62f68c | 1a19efb9118fdd02612fa905032a366a58cf70a2 | [XLA:GPU] Pre-factor DotDecomposer: Extract repetitive code for handling LHS and RHS operands during dot canonicalization.
Also use a consistent naming scheme using the prefixes `original` and `canonical` to refer to the existing dot and the canonical replacement being built.
PiperOrigin-RevId: 838735497 | [
{
"path": "third_party/xla/xla/hlo/transforms/expanders/BUILD",
"patch": "@@ -339,20 +339,18 @@ cc_library(\n hdrs = [\"dot_decomposer.h\"],\n deps = [\n \"//xla:shape_util\",\n+ \"//xla:util\",\n \"//xla:xla_data_proto_cc\",\n \"//xla/hlo/ir:hlo\",\n \"//xla/h... | 2025-12-01T13:52:50 |
mrdoob/three.js | 678c80cabfedb728782261ac27479376e3f6ffc2 | 697a873e88ceae9f711fa06042824b3da21fe6a0 | lint fix (#28261) | [
{
"path": "editor/js/Loader.js",
"patch": "@@ -99,7 +99,7 @@ function Loader( editor ) {\n \n \t\t\t\t\t}, function ( error ) {\n \n-\t\t\t\t\t\tconsole.error( error )\n+\t\t\t\t\t\tconsole.error( error );\n \n \t\t\t\t\t} );\n \n@@ -941,7 +941,7 @@ function Loader( editor ) {\n \t\t\t\t{\n \n \t\t\t\t\tcon... | 2024-05-03T01:54:13 |
golang/go | c0025d5e0b3f6fca7117e9b8f4593a95e37a9fa5 | 4ee0df8c466861bcd258ec55b58283f276d3b3d5 | go/parser: correct comment in expectedErrors
If `here` were already the start of the comment, then
the `pos = here` assignment would be redundant. Since pos
is already the start of the comment.
Change-Id: I793334988951ae5441327cb62d7524b423155b74
Reviewed-on: https://go-review.googlesource.com/c/go/+/693295
Reviewed-... | [
{
"path": "src/go/parser/error_test.go",
"patch": "@@ -88,7 +88,7 @@ func expectedErrors(fset *token.FileSet, filename string, src []byte) map[token.\n \t\t\ts := errRx.FindStringSubmatch(lit)\n \t\t\tif len(s) == 3 {\n \t\t\t\tif s[1] == \"HERE\" {\n-\t\t\t\t\tpos = here // start of comment\n+\t\t\t\t\tpos... | 2025-08-05T16:51:09 |
denoland/deno | 96ab2d3b68721b4e942f2a5e87818bca50ecf13c | 413aa404f906d6df96b8d31713757467ab86b4b1 | fix(ext/node): crypto.timingSafeEqual (#29758) | [
{
"path": "ext/node/polyfills/internal/errors.ts",
"patch": "@@ -681,7 +681,7 @@ export class ERR_CRYPTO_TIMING_SAFE_EQUAL_LENGTH extends NodeRangeError {\n constructor() {\n super(\n \"ERR_CRYPTO_TIMING_SAFE_EQUAL_LENGTH\",\n- \"Input buffers must have the same length\",\n+ \"Input bu... | 2025-06-16T12:33:49 |
tensorflow/tensorflow | b52f21667af37701695420a26047f949b14cd660 | 25e5cd2ecca5824b716538b49d62dacb85a1c870 | PR #34533: [ROCm] Make TmaPTX tests cuda specific
Imported from GitHub PR https://github.com/openxla/xla/pull/34533
📝 Summary of Changes
PTX tests are cuda specific and skip them on ROCm platform
🚀 Kind of Contribution
🐛 Bug Fix,
🧪 Execution Tests:
//xla/backends/gpu/runtime:kernel_thunk_test.cc
Copybara impor... | [
{
"path": "third_party/xla/xla/backends/gpu/runtime/BUILD",
"patch": "@@ -1021,6 +1021,7 @@ xla_test(\n \"//xla/runtime:buffer_use\",\n \"//xla/service:buffer_assignment\",\n \"//xla/service:executable\",\n+ \"//xla/service:platform_util\",\n \"//xla/service/gpu:buffer... | 2025-12-01T12:37:12 |
mrdoob/three.js | 2802562d5a93b2d96aaf286b173b29db3489494a | 5a6eb7ab8bc8d5ccb887aea2d8af92b0502b0ee2 | Editor: Fixed outliner's low contrast issue in dark theme (#28248)
* hi con
* indent using tabs | [
{
"path": "editor/css/main.css",
"patch": "@@ -661,10 +661,13 @@ select {\n \t\t}\n \n \t.Outliner {\n-\t\tcolor: #888;\n \t\tbackground: #222;\n \t}\n \n+\t\t.Outliner .option {\n+\t\t\tcolor: #999;\n+\t\t}\n+\n \t\t.Outliner .option:hover {\n \t\t\tbackground-color: rgba(21,60,94,0.5);\n \t\t}",
"addi... | 2024-05-02T08:30:34 |
golang/go | 4ee0df8c466861bcd258ec55b58283f276d3b3d5 | a2c45f0eb1f281ed39c5111dd0fe4b2728f11cf3 | cmd: remove dead code
Fixes #74076
Change-Id: Icc67b3d4e342f329584433bd1250c56ae8f5a73d
Reviewed-on: https://go-review.googlesource.com/c/go/+/690635
Reviewed-by: Alan Donovan <adonovan@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Commit-Queue: Alan Donovan <ad... | [
{
"path": "src/cmd/asm/internal/arch/loong64.go",
"patch": "@@ -23,18 +23,6 @@ func jumpLoong64(word string) bool {\n \treturn false\n }\n \n-// IsLoong64MUL reports whether the op (as defined by an loong64.A* constant) is\n-// one of the MUL/DIV/REM instructions that require special handling.\n-func IsLoon... | 2025-07-26T08:46:22 |
denoland/deno | 413aa404f906d6df96b8d31713757467ab86b4b1 | a7d177c848827bc75df465fec6854a4955d48f9d | fix(ext/node): add key length validation in `DiffieHellman.prototype.computeSecret` (#29757) | [
{
"path": "ext/node/ops/crypto/cipher.rs",
"patch": "@@ -11,6 +11,7 @@ use aes::cipher::KeyIvInit;\n use aes::cipher::KeySizeUser;\n use aes::cipher::StreamCipher;\n use deno_core::Resource;\n+use deno_error::JsErrorClass;\n use digest::generic_array::GenericArray;\n use digest::KeyInit;\n \n@@ -433,7 +434,... | 2025-06-16T12:32:05 |
swiftlang/swift | cd8e4c29d2a9a8999efd591b8f75f60ad5705018 | 4384452f27fb0bfb4ed810055e4ec0c589d95b2b | [cxx-interop] Skip over static_assert when importing members
Not doing so prevents member-wise initializers from being synthesized
Fixes #86730 | [
{
"path": "lib/ClangImporter/ImportDecl.cpp",
"patch": "@@ -2442,7 +2442,7 @@ namespace {\n // FIXME: Import anonymous union fields and support field access when\n // it is nested in a struct.\n for (auto m : decl->decls()) {\n- if (isa<clang::AccessSpecDecl>(m)) {\n+ if (isa... | 2026-01-23T17:48:36 |
mrdoob/three.js | 9287a98ab32db06e541a379291bc95e97984f0e9 | 5a3b00adacddb7cdc01feeb4ea53f92787781580 | fix unreadable text in viewport (#28253) | [
{
"path": "editor/css/main.css",
"patch": "@@ -308,7 +308,7 @@ select {\n \tbottom: 0;\n }\n \n-\t#viewport #info {\n+\t#viewport .Text {\n \t\ttext-shadow: 1px 1px 0 rgba(0,0,0,0.25);\n \t\tpointer-events: none;\n \t}",
"additions": 1,
"deletions": 1,
"language": "CSS"
}
] | 2024-05-02T08:30:11 |
tensorflow/tensorflow | 3c6a89b06aa90b1a32ebe116a7fa9df0bb61981d | d5f86991fef36e22bf482bb527acf1b7b990842b | [XLA:GPU] Prepare collective kernel thunk to work with emitted kernels.
- Changes number of arguments passed in.
- Adds logic for getting slices from the collective metadata pointer.
- Fixes shared memory declaration during kernel creation.
PiperOrigin-RevId: 838698198 | [
{
"path": "third_party/xla/xla/backends/gpu/runtime/BUILD",
"patch": "@@ -1247,6 +1247,7 @@ cc_library(\n \"//xla/stream_executor:device_memory\",\n \"//xla/stream_executor:device_memory_handle\",\n \"//xla/stream_executor:kernel\",\n+ \"//xla/stream_executor:kernel_args\",\n ... | 2025-12-01T11:43:13 |
denoland/deno | a7d177c848827bc75df465fec6854a4955d48f9d | c064b6d59446cbb378a064ab92d091e1b31cc150 | fix(ext/node): fix events.once (#29716) | [
{
"path": "ext/node/polyfills/_events.mjs",
"patch": "@@ -28,6 +28,7 @@\n import { primordials } from \"ext:core/mod.js\";\n const {\n ArrayPrototypeMap,\n+ ArrayPrototypeFilter,\n ObjectDefineProperty,\n ObjectEntries,\n SafeMap,\n@@ -57,7 +58,10 @@ import {\n } from \"ext:deno_node/internal/valid... | 2025-06-16T12:30:38 |
mrdoob/three.js | 6d905135f5f915277c11f1c41a362be896201994 | 32d19ebeef7a5a3b7a86a4865df3f883c050e88f | Examples: Fix WebGPU logarithmic detph buffer demo. (#28249) | [
{
"path": "examples/webgpu_camera_logarithmicdepthbuffer.html",
"patch": "@@ -118,9 +118,9 @@\n \t\t\t\t{ size: 1e19, scale: 1.0, label: 'mind boggling (1000 light years)' }\n \t\t\t];\n \n-\t\t\tinit();\n+\t\t\tinit().then( animate );\n \n-\t\t\tfunction init() {\n+\t\t\tasync function init() {\n \n \t\t\t... | 2024-05-01T14:55:04 |
swiftlang/swift | 49df9fae70f5e94850e3ba5df5c6218ba95444db | e6ea70720c872ee25a4acb504b92c29233d4b1bd | SIL: replace some `assert`s with `ASSERT`s
To catch those errors also in a non-assert build of the compiler.
I recently investigated a compiler crash with a non-assert compiler and would have found the root cause much faster if those asserts would have triggered. | [
{
"path": "include/swift/SIL/SILCloner.h",
"patch": "@@ -250,7 +250,7 @@ class SILCloner : protected SILInstructionVisitor<ImplClass> {\n /// override the implementation via `postProcess`.\n void recordClonedInstruction(SILInstruction *Orig, SILInstruction *Cloned) {\n asImpl().postProcess(Orig, Clo... | 2026-01-23T17:39:33 |
tensorflow/tensorflow | 335d7bcf5c8e3ebb09589ec58d33c4fef8204cc1 | 13d523c8ee7e36c68374417ea9ea3b95e8391f7d | [XLA:GPU] Fix usages of deprecated tsl::errors::FailedPrecondition in xla
This change replaces usages of tsl::errors::FailedPrecondition with absl::FailedPreconditionError,
wrapping arguments in absl::StrCat where necessary. This addresses deprecation
warnings and moves towards standard Abseil error handling.
The dep... | [
{
"path": "third_party/xla/xla/backends/profiler/gpu/device_tracer_cuda.cc",
"patch": "@@ -165,7 +165,7 @@ absl::Status GpuTracer::CollectData(XSpace* space) {\n VLOG(1) << \"No trace data collected, session wasn't started\";\n return absl::OkStatus();\n case State::kStartedOk:\n- retur... | 2025-11-29T13:11:56 |
golang/go | cd55f86b8dcfc139ee5c17d32530ac9e758c8bc0 | 21ab0128b62658ba3e325586f45bb781bee55fda | cmd/compile: allow multi-field structs to be stored directly in interfaces
If the struct is a bunch of 0-sized fields and one pointer field.
Fixes #74092
Change-Id: I87c5d162c8c9fdba812420d7f9d21de97295b62c
Reviewed-on: https://go-review.googlesource.com/c/go/+/681937
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/generic.rules",
"patch": "@@ -921,8 +921,8 @@\n @x.Block (Load <v.Type> (OffPtr <v.Type.PtrTo()> [t.FieldOff(int(i))] ptr) mem)\n \n // Putting struct{*byte} and similar into direct interfaces.\n-(IMake _typ (StructMake val)) => (IMake _typ val)\n-(StructSelect... | 2025-06-15T03:10:50 |
mrdoob/three.js | 258c28f958a784fda02eac3ff8a0b4a255fd7bbc | a6130f8f112148d1eb658d99b3ccaec8bb322f8c | Raycaster: add Raycaster.stopTraversal() (#27709)
* Raycaster: add stop traversal on demand
* Raycaster: fix CI warn Implicit operand conversion
* Raycaster: stopTraversal on current branch only
* raycast stop traversal of children when return true
* Update Raycaster.js
Fix code style.
* Update Rayca... | [
{
"path": "src/core/Raycaster.js",
"patch": "@@ -101,13 +101,15 @@ function ascSort( a, b ) {\n \n function intersect( object, raycaster, intersects, recursive ) {\n \n+\tlet stopTraversal = false;\n+\n \tif ( object.layers.test( raycaster.layers ) ) {\n \n-\t\tobject.raycast( raycaster, intersects );\n+\t\... | 2024-04-27T00:11:33 |
denoland/deno | c064b6d59446cbb378a064ab92d091e1b31cc150 | ba10e17e4b4087255414bc08d274db184ddb87ce | fix: `import.meta.resolve` - do not error for non-existent files in npm packages (#29741)
This further improves `import.meta.resolve` to not error in many more
scenarios (better alignment with Node).
1. Non-existent files in npm packages
1. Non-existent built-in node modules (ex. `node:non-existent`)
1. Many things t... | [
{
"path": "Cargo.lock",
"patch": "@@ -1755,9 +1755,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_core\"\n-version = \"0.350.0\"\n+version = \"0.351.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"e273b731fce500130790e777cb2631dc451db412975304d23816c1e444a10c5... | 2025-06-16T10:03:12 |
swiftlang/swift | 2423a6364c54246d7d15e68febecc6f3cdd5226e | 5f49668577f077a395a6975fb3b3b0cedbbd5ddb | IRGen: Support for fixed-layout borrows. | [
{
"path": "include/swift/SIL/SILType.h",
"patch": "@@ -965,6 +965,8 @@ class SILType {\n /// True if a value of this type can have its address taken by a\n /// lifetime-dependent value.\n bool isAddressableForDeps(const SILFunction &function) const;\n+ bool isAddressableForDeps(SILModule &module,\n+ ... | 2026-01-05T23:02:42 |
mrdoob/three.js | b175d49fcabb4b9bb17216bceba8cd07fde5eb9b | 360c0e9636cb5577e217e235a5a3eaabdb1463ed | Playground: Fix `PreviewEditor` (#28223)
* Playground: Fix `PreviewEditor`
* add antialias | [
{
"path": "playground/editors/PreviewEditor.js",
"patch": "@@ -2,8 +2,9 @@ import { OrbitControls } from 'three/addons/controls/OrbitControls.js';\n import { ViewHelper } from 'three/addons/helpers/ViewHelper.js';\n import { Element, LabelElement, SelectInput } from 'flow';\n import { BaseNodeEditor } from ... | 2024-04-26T00:08:05 |
tensorflow/tensorflow | 13d523c8ee7e36c68374417ea9ea3b95e8391f7d | fbd7ed0ded5a1c660bc3a02626f2e063cf153c7b | [XLA:GPU] Fix usages of deprecated tsl::errors::Unimplemented in xla and resolve nvml linker errors
This change addresses the deprecation of `tsl::errors::Unimplemented` by replacing its usages with `absl::UnimplementedError`,
wrapping arguments in `absl::StrCat` where necessary. This brings the code closer to standar... | [
{
"path": "third_party/xla/xla/tsl/lib/io/BUILD",
"patch": "@@ -109,7 +109,6 @@ cc_library(\n hdrs = [\"inputstream_interface.h\"],\n deps = [\n \"//xla/tsl/platform:errors\",\n- \"//xla/tsl/platform:status\",\n \"//xla/tsl/platform:types\",\n \"@com_google_absl//absl/... | 2025-11-29T10:54:47 |
golang/go | a3295df873bb22b3ba427124b1220370a5ca5cdb | bd082857a55b81acfd5b341c41dd90e29c159bd7 | cmd/compile/internal/ssa: Use transitive properties for len/cap
Remove the special casing for len/cap and rely on the posets.
After removing the special logic, I ran `go build -gcflags='-d
ssa/prove/debug=2' all` to verify my results. During this, I found 2
common cases where the old implicit unsigned->signed domain ... | [
{
"path": "src/cmd/compile/internal/ssa/prove.go",
"patch": "@@ -409,12 +409,6 @@ type factsTable struct {\n \tlimits []limit // indexed by value ID\n \tlimitStack []limitFact // previous entries\n \trecurseCheck []bool // recursion detector for limit propagation\n-\n-\t// For each slice s,... | 2025-06-04T08:22:21 |
denoland/deno | ba10e17e4b4087255414bc08d274db184ddb87ce | fcf628ab87f896362eeea91550881aeee8726cfb | fix: move win32job under windows dependencies in tests/util/server (#29745)
`win32job` doesn't declare `windows` as a target specific dependency
https://github.com/ohadravid/win32job-rs/blob/main/Cargo.toml | [
{
"path": "tests/util/server/Cargo.toml",
"patch": "@@ -60,10 +60,10 @@ tempfile.workspace = true\n termcolor.workspace = true\n tokio.workspace = true\n url.workspace = true\n-win32job.workspace = true\n \n [target.'cfg(windows)'.dependencies]\n winapi = { workspace = true, features = [\"consoleapi\", \"sy... | 2025-06-16T10:01:43 |
mrdoob/three.js | 7c449d803bbdf9f6255d1321f6168711394c6641 | 5cfc5dba4f8b26bce30f42310d5b9289e40b011e | Examples: Fixed webgpu_loader_materialx. | [
{
"path": "examples/webgpu_loader_materialx.html",
"patch": "@@ -38,8 +38,6 @@\n \n \t\t\timport WebGPURenderer from 'three/addons/renderers/webgpu/WebGPURenderer.js';\n \n-\t\t\timport { nodeFrame } from './jsm/renderers/webgl-legacy/nodes/WebGLNodes.js';\n-\n \t\t\tconst SAMPLE_PATH = 'https://raw.githubu... | 2024-04-25T04:49:51 |
golang/go | bd082857a55b81acfd5b341c41dd90e29c159bd7 | 2b622b05a97bf785e97a3c241270cb6580d65ef7 | doc: fix typo in go memory model doc
Fixes a typo where originally "may by" was written where the intent was
"may be".
Change-Id: Ia5ba51a966506395c41b17ca28d59f63bd487f3e
Reviewed-on: https://go-review.googlesource.com/c/go/+/693075
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
Auto-Submit: Dmitri Shuralyov <d... | [
{
"path": "doc/go_mem.html",
"patch": "@@ -231,7 +231,7 @@ <h2 id=\"restrictions\">Implementation Restrictions for Programs Containing Data R\n \n <p>\n A read of an array, struct, or complex number\n-may by implemented as a read of each individual sub-value\n+may be implemented as a read of each individual... | 2025-08-04T18:33:05 |
tensorflow/tensorflow | 50667d9a05b1ea9f0b7c20a01d4e0f1355832fae | 5aa36f87d51cdd763cf2b4599227397d716a5875 | [XLA:GPU] Fix usages of deprecated tsl::errors::OutOfRange in xla
This change replaces usages of tsl::errors::OutOfRange with absl::OutOfRangeError,
wrapping arguments in absl::StrCat where necessary. This addresses deprecation
warnings and moves towards standard Abseil error handling.
The deprecated tsl::errors::Out... | [
{
"path": "third_party/xla/xla/service/gpu/BUILD",
"patch": "@@ -1332,7 +1332,6 @@ xla_cc_test(\n \"//xla/hlo/testlib:test\",\n \"//xla/hlo/testlib:verified_hlo_module\",\n \"//xla/tests:xla_internal_test_main\",\n- \"//xla/tsl/platform:errors\",\n \"//xla/tsl/platform... | 2025-11-29T05:36:29 |
denoland/deno | fcf628ab87f896362eeea91550881aeee8726cfb | c9de072b618c155f729f05c6ae105af4f9a525c9 | fix(ext/node): use primordials in `ext/node/polyfills/internal/fs/utils.mjs` (#29708) | [
{
"path": "ext/node/polyfills/internal/fs/utils.mjs",
"patch": "@@ -1,12 +1,42 @@\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 \"use strict\";\n \n import { primordials } fro... | 2025-06-16T05:05:28 |
mrdoob/three.js | 1395e9dbcf4791797a2b47e0fc0d80e8916954af | 5493cfa86c57d66c260e8b62655c2bd3d2c98378 | Editor: Fix glTF assets with external KTX2 textures. (#28206) | [
{
"path": "editor/js/Loader.js",
"patch": "@@ -974,7 +974,7 @@ function Loader( editor ) {\n \t\tconst dracoLoader = new DRACOLoader();\n \t\tdracoLoader.setDecoderPath( '../examples/jsm/libs/draco/gltf/' );\n \n-\t\tconst ktx2Loader = new KTX2Loader();\n+\t\tconst ktx2Loader = new KTX2Loader( manager );\n ... | 2024-04-24T09:09:22 |
swiftlang/swift | 98a6cb008b5adae5919540f002323e1e8d7b22dc | d3270fdf1e8bab2529491f948f8ae206478c0ca7 | [SILGen] Upgrade an assert
Make sure we always crash if we don't have a failure branch for a
refutable pattern, otherwise we can end up infinite looping. | [
{
"path": "lib/SILGen/SILGenDecl.cpp",
"patch": "@@ -1099,7 +1099,7 @@ class RefutablePatternInitialization : public Initialization {\n public:\n RefutablePatternInitialization(RefutablePatternInitInfo initInfo)\n : initInfo(initInfo) {\n- assert(initInfo.failureDest.isValid() &&\n+ ASSERT(ini... | 2026-01-22T15:07:09 |
golang/go | 5ab9f23977694ab87614fd30e081d294eb313efd | fcc036f03b07e58f76ed94bc9a9483ddef96f81c | cmd/compile, runtime: add checkptr instrumentation for unsafe.Add
Fixes #74431
Change-Id: Id651ea0b82599ccaff8816af0a56ddbb149b6f89
Reviewed-on: https://go-review.googlesource.com/c/go/+/692015
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Keith Randall <khr@go... | [
{
"path": "src/cmd/compile/internal/walk/expr.go",
"patch": "@@ -131,6 +131,14 @@ func walkExpr1(n ir.Node, init *ir.Nodes) ir.Node {\n \t\tn := n.(*ir.BinaryExpr)\n \t\tn.X = walkExpr(n.X, init)\n \t\tn.Y = walkExpr(n.Y, init)\n+\t\tif n.Op() == ir.OUNSAFEADD && ir.ShouldCheckPtr(ir.CurFunc, 1) {\n+\t\t\t/... | 2025-07-29T11:45:23 |
denoland/deno | c9de072b618c155f729f05c6ae105af4f9a525c9 | 02cff572b20fbbfbd0d3671e53cca32cb703f711 | fix(ext/node): throw invalid state from `getAuthTag` (#29752) | [
{
"path": "ext/node/polyfills/internal/crypto/cipher.ts",
"patch": "@@ -47,6 +47,7 @@ import {\n isAnyArrayBuffer,\n isArrayBufferView,\n } from \"ext:deno_node/internal/util/types.ts\";\n+import { ERR_CRYPTO_INVALID_STATE } from \"ext:deno_node/internal/errors.ts\";\n \n const FastBuffer = Buffer[Symbo... | 2025-06-16T02:48:20 |
tensorflow/tensorflow | 5aa36f87d51cdd763cf2b4599227397d716a5875 | aff438421fd966275601b9b3ccab24f45c1edd4e | [XLA:GPU] Fix usages of deprecated tsl::errors::DataLoss and tsl::errors::InvalidArgument in xla
This change replaces usages of tsl::errors::DataLoss with absl::DataLossError and tsl::errors::InvalidArgument with absl::InvalidArgumentError,
wrapping arguments in absl::StrCat where necessary. This addresses deprecation... | [
{
"path": "third_party/xla/xla/hlo/builder/lib/BUILD",
"patch": "@@ -128,11 +128,10 @@ cc_library(\n \"//xla:xla_data_proto_cc\",\n \"//xla/hlo/builder:xla_builder\",\n \"@com_google_absl//absl/algorithm:container\",\n+ \"@com_google_absl//absl/status\",\n \"@com_googl... | 2025-11-28T21:54:16 |
mrdoob/three.js | c5c42fb7d0af9905f1527c741b898798feb48e8b | 50d4f7407043b6b9cb7bd4c0bdeb93e917555ee1 | Examples: Fix `monaco-editor` (#28201) | [
{
"path": "examples/jsm/nodes/materials/NodeMaterial.js",
"patch": "@@ -146,6 +146,8 @@ class NodeMaterial extends ShaderMaterial {\n \n \tsetupClipping( builder ) {\n \n+\t\tif ( builder.clippingContext === null ) return null;\n+\n \t\tconst { globalClippingCount, localClippingCount } = builder.clippingCon... | 2024-04-23T17:25:12 |
denoland/deno | 02cff572b20fbbfbd0d3671e53cca32cb703f711 | 090df402908bfa46382c188f026c3984a81cceab | fix(ext/node): validate auth tag for GCM mode cipher (#29739)
Enables `parallel/test-crypto-gcm-explicit-short-tag.js`
Ref https://github.com/denoland/deno/issues/29637 | [
{
"path": "ext/node/lib.rs",
"patch": "@@ -281,6 +281,7 @@ deno_core::extension!(deno_node,\n ops::crypto::op_node_decipheriv_decrypt,\n ops::crypto::op_node_decipheriv_final,\n ops::crypto::op_node_decipheriv_set_aad,\n+ ops::crypto::op_node_decipheriv_auth_tag,\n ops::crypto::op_node_dh... | 2025-06-16T02:04:41 |
mrdoob/three.js | 1780cc5466511ed177fcba3c08b43a49067f2b96 | 4993e3af579a27cec950401b523b6e796eab93ec | WebGPURenderer: fix `D_BlinnPhong` (#28199)
* WebGPURenderer: fix `D_BlinnPhong`
* fix: correction | [
{
"path": "examples/jsm/nodes/functions/PhongLightingModel.js",
"patch": "@@ -12,7 +12,7 @@ const G_BlinnPhong_Implicit = () => float( 0.25 );\n \n const D_BlinnPhong = tslFn( ( { dotNH } ) => {\n \n-\treturn shininess.mul( 0.5 / Math.PI ).add( 1.0 ).mul( dotNH.pow( shininess ) );\n+\treturn shininess.mul( ... | 2024-04-23T15:37:11 |
tensorflow/tensorflow | aff438421fd966275601b9b3ccab24f45c1edd4e | c2a7efcfd5e35dceeb0b4ec00eb1dd9a38cd70fb | [XLA:GPU] Fix usages of deprecated tsl::errors::PermissionDenied in xla
This change replaces usages of tsl::errors::PermissionDenied with absl::PermissionDeniedError,
wrapping arguments in absl::StrCat where necessary. This addresses deprecation
warnings and moves towards standard Abseil error handling.
Changes:
- Re... | [
{
"path": "third_party/xla/xla/tsl/platform/cloud/curl_http_request.cc",
"patch": "@@ -513,7 +513,7 @@ absl::Status CurlHttpRequest::Send() {\n case 401: // Unauthorized\n case 403: // Forbidden\n case 407: // Proxy Authorization Required\n- result = errors::PermissionDenied(get_error_me... | 2025-11-28T21:46:04 |
denoland/deno | fa3208bf27adc390e64011d565fdad5d15bba39b | 3d5ff3cf1c4f4059a100be1d00956ff805d032c9 | fix(ext/node): Fix `crypto.pbkdf2` compat (#29738) | [
{
"path": "ext/node/lib.rs",
"patch": "@@ -301,6 +301,7 @@ deno_core::extension!(deno_node,\n ops::crypto::op_node_hkdf,\n ops::crypto::op_node_pbkdf2_async,\n ops::crypto::op_node_pbkdf2,\n+ ops::crypto::op_node_pbkdf2_validate,\n ops::crypto::op_node_private_decrypt,\n ops::crypto::... | 2025-06-13T16:10:41 |
mrdoob/three.js | 0de958e14ba8c0b354439f6a8621f6b16f1f55f4 | 81b782ad8b13eae6dbd3335cf295f7a00bba98ff | Object3D: add generator-based traversal methods (#28053)
* Object3D: add traversal generator methods
* feat: add opt condition to traversal generators
* feat: move generator functions to SceneUtils
* fix(test): move tests, oops
* fix: remove unit tests
* fix: remove condition callback (always yield)
... | [
{
"path": "examples/jsm/utils/SceneUtils.js",
"patch": "@@ -245,10 +245,69 @@ function sortInstancedMesh( mesh, compareFn ) {\n \n }\n \n+/**\n+ * @param {Object3D} object Object to traverse.\n+ * @yields {Object3D} Objects that passed the filter condition.\n+ */\n+function* traverseGenerator( object ) {\n+... | 2024-04-23T08:15:26 |
swiftlang/swift | 535a58e3fb76d891e326dacea31d7c3c7a119350 | 76881aebc08fb9c04f5bd344f8a4857464974a21 | SIL: assume a read-effect for unused indirect arguments
Even if an indirect argument is unused, pretend that the function reads from it.
If the unused argument is passed to another generic function and that function is specialized,
the argument may be re-abstracted and the specializer inserts a load from the indirect ... | [
{
"path": "SwiftCompilerSources/Sources/SIL/Effects.swift",
"patch": "@@ -101,6 +101,14 @@ extension Function {\n // %2 = ref_element_addr %1 // class projection\n return getSideEffects()\n }\n+ if convention.isIndirectIn && !argument.path.hasClassProjection {\n+ // E... | 2026-01-23T14:57:54 |
tensorflow/tensorflow | c2a7efcfd5e35dceeb0b4ec00eb1dd9a38cd70fb | 261933ee3923574c8e5942190b895ed2cc782ee3 | Fix ExactInterpolatorKey equality and enable sol_latency_estimator_test.
Include data_type in ExactInterpolatorKey::operator== to correctly distinguish keys.
Remove the "optonly" tag from sol_latency_estimator_test.
PiperOrigin-RevId: 837912807 | [
{
"path": "third_party/xla/xla/service/gpu/model/BUILD",
"patch": "@@ -84,7 +84,6 @@ cc_library(\n xla_cc_test(\n name = \"sol_latency_estimator_test\",\n srcs = [\"sol_latency_estimator_test.cc\"],\n- tags = [\"optonly\"], # Remove once b/463565595 is fixed.\n deps = [\n \":collecti... | 2025-11-28T21:34:50 |
denoland/deno | 3d5ff3cf1c4f4059a100be1d00956ff805d032c9 | 1f02d34877db45d20e10f444ae94c30d58a61823 | fix(npm): support resolving npm specifiers not in graph with `import.meta.resolve` for resolved packages (#29732) | [
{
"path": "Cargo.lock",
"patch": "@@ -2716,9 +2716,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_semver\"\n-version = \"0.8.0\"\n+version = \"0.8.1\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"f2d807160e754edb1989b4a19cac1ac5299065a7a89ff98682a2366cbaa25795\... | 2025-06-13T13:23:19 |
mrdoob/three.js | 81b782ad8b13eae6dbd3335cf295f7a00bba98ff | 4d6fa0d96f81a1adfc0e9f998d443be1e3e7591d | WebGPURenderer: Support `specularColorMap` (#28155)
* WebGPURenderer: support `specularColorMap`
* chore: follow pattern
* chore: rename variable
* fix: wrong scope | [
{
"path": "examples/jsm/nodes/Nodes.js",
"patch": "@@ -85,7 +85,7 @@ export { default as VertexColorNode, vertexColor } from './accessors/VertexColor\n export { default as CubeTextureNode, cubeTexture } from './accessors/CubeTextureNode.js';\n export { default as InstanceNode, instance } from './accessors/I... | 2024-04-22T17:47:40 |
swiftlang/swift | e8c2005c529bacb07d2fa830e39c14760d3fbbb2 | f24d72aa6c49e6b3bf71a184c3211afde4e5ebc0 | [test] Disable newly failing DebugInfo async-args test case and two other unmodified regressions on 32-bit platforms | [
{
"path": "test/DebugInfo/async-args.swift",
"patch": "@@ -3,6 +3,7 @@\n // RUN: -parse-as-library | %FileCheck %s\n \n // REQUIRES: concurrency\n+// REQUIRES: PTRSIZE=64\n \n func use<T>(_ t: T) {}\n func forceSplit() async {",
"additions": 1,
"deletions": 0,
"language": "Swift"
},
{
... | 2026-01-23T08:42:17 |
mrdoob/three.js | 4d6fa0d96f81a1adfc0e9f998d443be1e3e7591d | 31b2f94b0deec375807e4dd2c38bde258437e339 | WebGLRenderer: remove redundant code (#28186)
The null check seems to have been redundant.
This code should behave the same as the previous code and return `null` when
`context === null` or return `context` otherwise.
Maybe there is a good reason it was like it was (ability to put a debugger on
line 227?) in w... | [
{
"path": "src/renderers/WebGLRenderer.js",
"patch": "@@ -218,10 +218,7 @@ class WebGLRenderer {\n \n \t\tfunction getContext( contextName, contextAttributes ) {\n \n-\t\t\tconst context = canvas.getContext( contextName, contextAttributes );\n-\t\t\tif ( context !== null ) return context;\n-\n-\t\t\treturn ... | 2024-04-22T11:17:47 |
tensorflow/tensorflow | 2e69329303d0cf72f24a2b5d7c1d3710443284d0 | a919d097c8ba45c011da5dbe0530bd8b34c2cfe6 | Verify that input arrays are on the expected devices before execution
This is to generate more helpful error messages than failing at the IFRT op execution level, e.g., `CopyArrays` complaining about mismatching devices.
PiperOrigin-RevId: 837895552 | [
{
"path": "third_party/xla/xla/python/ifrt/ir/program_interpreter.cc",
"patch": "@@ -220,6 +220,13 @@ absl::StatusOr<ExecuteResult> ProgramInterpreter::Execute(\n \"Input array #\", idx, \" of program \", program_->program_name,\n \" has already been deleted or donated.\"));\n }\n+ ... | 2025-11-28T20:02:10 |
denoland/deno | 1f02d34877db45d20e10f444ae94c30d58a61823 | cdf4834ba0e6ee151688f8c05df81b483251d4d1 | fix: remove `self` from global middleware (#29734)
Follow up to https://github.com/denoland/deno/pull/29543 that does
the same for `self` global. Unfortunately this omission led to a problem
described in https://github.com/denoland/deno/issues/29726 where
packages started thinking that they are being run in a web work... | [
{
"path": "ext/node/global.rs",
"patch": "@@ -64,14 +64,13 @@ const fn str_to_utf16<const N: usize>(s: &str) -> [u16; N] {\n \n // UTF-16 encodings of the managed globals. THIS LIST MUST BE SORTED.\n #[rustfmt::skip]\n-const MANAGED_GLOBALS: [&[u16]; 11] = [\n+const MANAGED_GLOBALS: [&[u16]; 10] = [\n &st... | 2025-06-13T10:48:26 |
swiftlang/swift | f24d72aa6c49e6b3bf71a184c3211afde4e5ebc0 | b47a2ab2e7fa63b1501bf8bbd7b540636ed48dbe | [test] Fix building Android tests on Windows toolchain CI (#86694)
Ever since #84574 added Android availability versioning, the Reflection
test stopped building for Android unless the API level was in the target
triple, so [we hacked that into CMake in that
pull](https://github.com/swiftlang/swift/pull/84574/files#dif... | [
{
"path": "utils/build.ps1",
"patch": "@@ -2834,6 +2834,13 @@ function Test-Runtime([Hashtable] $Platform) {\n throw \"LIT test utilities not found in $CompilersBinaryCache\\bin\"\n }\n \n+ $PlatformDefines = @{}\n+ if ($Platform.OS -eq [OS]::Android) {\n+ $PlatformDefines += @{\n+ SWIFT_AND... | 2026-01-23T11:02:29 |
mrdoob/three.js | 812cf86f8e7a74bc1116174f72a245b6a0469af6 | ff08e10db0fb9c5ca4831dcecef77debb3e0beae | make PMREM blur order consistent (#28166)
* make blur order consistent
* fix format | [
{
"path": "src/extras/PMREMGenerator.js",
"patch": "@@ -49,16 +49,16 @@ const INV_PHI = 1 / PHI;\n // Vertices of a dodecahedron (except the opposites, which represent the\n // same axis), used as axis directions evenly spread on a sphere.\n const _axisDirections = [\n-\t/*@__PURE__*/ new Vector3( 1, 1, 1 )... | 2024-04-20T08:33:12 |
tensorflow/tensorflow | a919d097c8ba45c011da5dbe0530bd8b34c2cfe6 | ad73a1d1ce1bbcaff3f2722058359fa28093503b | [XLA:GPU] Fix usages of deprecated tsl::errors::OutOfRange in xla
This change replaces usages of tsl::errors::OutOfRange with absl::OutOfRangeError,
wrapping arguments in absl::StrCat where necessary. This addresses deprecation
warnings and moves towards standard Abseil error handling.
PiperOrigin-RevId: 837859077 | [
{
"path": "third_party/xla/xla/tsl/lib/io/BUILD",
"patch": "@@ -570,6 +570,7 @@ tsl_cc_test(\n \"//xla/tsl/platform:env_impl\",\n \"//xla/tsl/platform:errors\",\n \"//xla/tsl/platform:test\",\n+ \"@com_google_absl//absl/status\",\n \"@com_google_googletest//:gtest_main... | 2025-11-28T16:50:30 |
denoland/deno | cdf4834ba0e6ee151688f8c05df81b483251d4d1 | 578634daf6c98407aa3362233f0672fd9baf5489 | fix(ext/node): fix oneshot hash validation (#29661)
Enables `parallel/test-crypto-oneshot-hash.js`
Ref https://github.com/denoland/deno/issues/29637
---------
Co-authored-by: Yoshiya Hinosawa <stibium121@gmail.com> | [
{
"path": "ext/node/lib.rs",
"patch": "@@ -505,7 +505,8 @@ deno_core::extension!(deno_node,\n ops::sqlite::Session,\n ops::handle_wrap::AsyncWrap,\n ops::handle_wrap::HandleWrap,\n- ops::sqlite::StatementSync\n+ ops::sqlite::StatementSync,\n+ ops::crypto::digest::Hasher,\n ],\n esm_... | 2025-06-13T04:42:10 |
golang/go | d7bd7773ebe0ffe7d7fae92acb77e10ad0539dd3 | 4b6cbc377f9b3d2598b0d30a37c9cf3797ba6e12 | go/parser: remove safePos
The logic in safePos is wrong, since (*token.File).Offset does not panic,
so this function was basically a noop (since CL 559436).
To work properly it would have to be:
return p.file.Pos(p.file.Offset(pos))
Since it effectively acts as a no-op and hasn't been noticed since,
let's go ahead ... | [
{
"path": "src/go/parser/parser.go",
"patch": "@@ -455,25 +455,6 @@ var exprEnd = map[token.Token]bool{\n \ttoken.RBRACE: true,\n }\n \n-// safePos returns a valid file position for a given position: If pos\n-// is valid to begin with, safePos returns pos. If pos is out-of-range,\n-// safePos returns the... | 2025-08-04T15:25:37 |
kubernetes/kubernetes | 27a81144b223aa964a965997b80faff326b53992 | af70ebcbf505bd9c2b879a8a7081724435a9fb06 | Add checkpoint for groupsnapshot data consistency (#134637)
* Add checkpoint for groupsnapshot data consistency
Signed-off-by: Penghao <pewang@redhat.com>
* fix: using exist helpers check data consistency
Signed-off-by: Penghao <pewang@redhat.com>
---------
Signed-off-by: Penghao <pewang@redhat.com> | [
{
"path": "test/e2e/storage/framework/testdriver.go",
"patch": "@@ -130,7 +130,8 @@ type SnapshottableTestDriver interface {\n \tGetSnapshotClass(ctx context.Context, config *PerTestConfig, parameters map[string]string) *unstructured.Unstructured\n }\n \n-type VoulmeGroupSnapshottableTestDriver interface {\... | 2025-11-04T16:20:15 |
mrdoob/three.js | 7ce0c40e70da95e24a1308cb2f25217a924ffcaf | b8b67f25b4af6abbd8b626adbee83e4d864cd097 | Fixing rotation defect in VRMLLoader.js (#28162)
VRML files can contain non-normalized rotation vectors, whether correctly or incorrectly. This change loads such files safely, and has no impact if the vector is already normalized. | [
{
"path": "examples/jsm/loaders/VRMLLoader.js",
"patch": "@@ -800,7 +800,7 @@ class VRMLLoader extends Loader {\n \t\t\t\t\t\tbreak;\n \n \t\t\t\t\tcase 'rotation':\n-\t\t\t\t\t\tconst axis = new Vector3( fieldValues[ 0 ], fieldValues[ 1 ], fieldValues[ 2 ] );\n+\t\t\t\t\t\tconst axis = new Vector3( fieldVa... | 2024-04-19T18:27:53 |
denoland/deno | 578634daf6c98407aa3362233f0672fd9baf5489 | f80075c3ffbcb01a035f2ca530081b4f694195e0 | fix(ext/node): DiffieHellman constructor behaviors (#29718) | [
{
"path": "ext/node/polyfills/internal/crypto/diffiehellman.ts",
"patch": "@@ -51,7 +51,21 @@ import type { BufferEncoding } from \"ext:deno_node/_global.d.ts\";\n \n const DH_GENERATOR = 2;\n \n-export class DiffieHellman {\n+export function DiffieHellman(\n+ sizeOrKey: number | string | ArrayBufferView,\... | 2025-06-13T03:21:39 |
tensorflow/tensorflow | ad73a1d1ce1bbcaff3f2722058359fa28093503b | 623c126a182c186cd18ad1dae89aacaca3f4de7e | [XLA:GPU] call AdjustDebugOptionsForAutotuning from autotuner util
that removes most of the code duplication and call to the gpu backend in
compile.
PiperOrigin-RevId: 837848792 | [
{
"path": "third_party/xla/xla/backends/gpu/autotuner/gpu_codegen_backend.h",
"patch": "@@ -96,6 +96,7 @@ class GpuCodegenBackend : public CodegenBackend {\n static void AdjustDebugOptionsForAutotuning(\n DebugOptions& debug_options, bool force_allow_register_spills) {\n debug_options.set_xla_en... | 2025-11-28T16:03:29 |
golang/go | 4b6cbc377f9b3d2598b0d30a37c9cf3797ba6e12 | b2960e35804aafbbb0df9973f99b034bea8c150a | cmd/cgo/internal/test: use (syntactic) constant for C array bound
A test in C has an array bound defined as a "const int", which is
technically a variable. The new version of C compiler in Xcode 26
beta emits a warning "variable length array folded to constant
array as an extension" for this (as an error since we buil... | [
{
"path": "src/cmd/cgo/internal/test/test.go",
"patch": "@@ -245,7 +245,7 @@ static void *thread(void *p) {\n \treturn NULL;\n }\n void testSendSIG() {\n-\tconst int N = 20;\n+\tenum { N = 20 };\n \tint i;\n \tpthread_t tid[N];\n \tfor (i = 0; i < N; i++) {",
"additions": 1,
"deletions": 1,
"lan... | 2025-08-02T22:13:19 |
mrdoob/three.js | b8b67f25b4af6abbd8b626adbee83e4d864cd097 | ec498d07f3314dfdad9598314f06d1c0abf8f48a | WebGPURenderer: Fix group draw range (#28163) | [
{
"path": "examples/jsm/renderers/common/RenderObject.js",
"patch": "@@ -56,6 +56,8 @@ export default class RenderObject {\n \t\tthis.geometry = object.geometry;\n \t\tthis.version = material.version;\n \n+\t\tthis.drawRange = null;\n+\n \t\tthis.attributes = null;\n \t\tthis.pipeline = null;\n \t\tthis.ver... | 2024-04-19T17:54:25 |
kubernetes/kubernetes | 0639f7f40e044c2e14f3b91eca1e70fe4f36ab4e | 8b2babcbff64ef7368d3187e83029f8100c661c4 | Allow PSA controller tests to handle failure cases as errors | [
{
"path": "staging/src/k8s.io/pod-security-admission/test/fixtures.go",
"patch": "@@ -183,6 +183,11 @@ type fixtureGenerator struct {\n \t// Pass cases are not allowed to be feature-gated (pass cases must only depend on data existing in GA fields).\n \tfailRequiresFeatures []featuregate.Feature\n \n+\t// fa... | 2025-11-04T13:29:14 |
denoland/deno | 12ed9f3649307a850d911a6564ab3236b79da5c4 | 6c33a7a46fc80c7d2ba47ad36e2ff5e2254b4dfb | fix(bundle): parse the allow-import flag, fix example in help text (#29733)
Closes #29729. | [
{
"path": "cli/args/flags.rs",
"patch": "@@ -1944,11 +1944,11 @@ fn bundle_subcommand() -> Command {\n \"bundle\",\n \"Output a single JavaScript file with all dependencies.\n \n- deno bundle https://deno.land/std/examples/colors.ts colors.bundle.js\n+ deno bundle jsr:@std/http/file-server -o file... | 2025-06-13T01:44:26 |
mrdoob/three.js | ec498d07f3314dfdad9598314f06d1c0abf8f48a | edc383d8cd3e657bd4bc601e937fb4ffc9f57037 | Nodes: Line2NodeMaterial - simplify extension (#28160)
* move setupShader to setup
* fix update signalling
---------
Co-authored-by: aardgoose <angus.sawyer@email.com> | [
{
"path": "examples/jsm/nodes/materials/Line2NodeMaterial.js",
"patch": "@@ -43,9 +43,15 @@ class Line2NodeMaterial extends NodeMaterial {\n \t\tthis.dashSizeNode = null;\n \t\tthis.gapSizeNode = null;\n \n+\t\tthis.setValues( params );\n+\n+\t}\n+\n+\tsetup( builder ) {\n+\n \t\tthis.setupShaders();\n \n-\... | 2024-04-19T15:34:02 |
golang/go | abeeef1c08a589c2341f0d4e19ae49ec0892e797 | d44749b65b47f42e7a5bae2e0e9b0ab6bb3d5f80 | cmd/compile/internal/test: fix typo in comments
Change-Id: Iba6bb7f8252120f56d7e6ae49c9edc9382e8c7e0
Reviewed-on: https://go-review.googlesource.com/c/go/+/679855
Reviewed-by: abner chenc <chenguoqi@loongson.cn>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Mark... | [
{
"path": "src/cmd/compile/internal/test/mulconst_test.go",
"patch": "@@ -143,7 +143,7 @@ func BenchmarkMulconstI32(b *testing.B) {\n \t\t}\n \t\tmulSinkI32 = x\n \t})\n-\t// -120x = 8x - 120x\n+\t// -120x = 8x - 128x\n \tb.Run(\"-120\", func(b *testing.B) {\n \t\tx := int32(1)\n \t\tfor i := 0; i < b.N; i+... | 2025-06-07T02:27:43 |
tensorflow/tensorflow | feb9e37991586c9011c8d176c1fa5989107bfa48 | b7bb8d25fea7624f8909f89eea896754fc0ee2de | [XLA:GPU] Fix usages of deprecated tsl::errors::Internal in xla
This change replaces usages of tsl::errors::Internal with absl::InternalError,
wrapping arguments in absl::StrCat where necessary. This addresses deprecation
warnings and moves towards standard Abseil error handling.
PiperOrigin-RevId: 837836286 | [
{
"path": "third_party/xla/xla/tsl/platform/cloud/gcs_file_system.cc",
"patch": "@@ -249,7 +249,7 @@ std::set<string> AddAllSubpaths(const std::vector<string>& paths) {\n absl::Status ParseJson(absl::string_view json, Json::Value* result) {\n Json::Reader reader;\n if (!reader.parse(json.data(), json.da... | 2025-11-28T15:04:52 |
denoland/deno | 09f41185297861020dab5acbc9da7f63d04c85b1 | 7b951af81a87e45b5bcc2c3326fe5f43b56841e8 | fix(bundle): enable sloppy imports by default when bundling (#29731)
It's more permissive, aligns more with typical bundler behavior, and
runtime perf is not as much of a concern | [
{
"path": "cli/tools/bundle/mod.rs",
"patch": "@@ -45,9 +45,13 @@ use crate::resolver::CliResolver;\n use crate::tools::bundle::externals::ExternalsMatcher;\n \n pub async fn bundle(\n- flags: Arc<Flags>,\n+ mut flags: Arc<Flags>,\n bundle_flags: BundleFlags,\n ) -> Result<(), AnyError> {\n+ {\n+ le... | 2025-06-12T21:43:13 |
tensorflow/tensorflow | b7bb8d25fea7624f8909f89eea896754fc0ee2de | 6a5fd8155f88f14cd289f12fafbbae109d20a577 | Fix output bytes for cuBLAS custom calls in GPU HLO Cost Model.
PiperOrigin-RevId: 837823432 | [
{
"path": "third_party/xla/xla/service/gpu/model/gpu_hlo_cost_analysis.cc",
"patch": "@@ -300,6 +300,14 @@ absl::Status GpuHloCostAnalysis::HandleCustomCall(\n current_properties_[kFlopsKey] =\n GetDotFlops(custom_call->operand(0)->shape(), output_shape,\n gemm_config.dot_dim... | 2025-11-28T14:09:41 |
swiftlang/swift | fc628a8bfbf8481519235cfc5bcae5a58288c61b | ba412d89a584b85b82f3dd2773ea2d27ac6a11a4 | [test][NFC] Add more keys to test SDKSettings files
Every time DarwinSDKInfo reads a new key out of SDKSettings, a boatload of test SDKSettings files need to be updated across several repositories and forks and branches. It’s tedious to be careful to update those with real values so that the tests are properly regress... | [
{
"path": "test/CAS/path_remap.swift",
"patch": "@@ -83,8 +83,40 @@ version: 1\n modules:\n - name: _B_A\n //--- sdk/SDKSettings.json\n-{\"Version\":\"26.1\", \"CanonicalName\": \"macosx26.1\", \"MaximumDeploymentTarget\": \"26.1.99\",\n- \"SupportedTargets\": {\n- \"macosx\": {\"Archs\": [\"x86_64\", \... | 2026-01-22T21:35:39 |
kubernetes/kubernetes | c98804b77f3bf5ef2c9df7b956e8fbd7f6670027 | 81448febcf409d349a2f3143d90231b5f6fd5375 | Fix existing integration tests for NominatedNodeName | [
{
"path": "test/integration/scheduler/preemption/nominatednodename/nominatednodename_test.go",
"patch": "@@ -94,15 +94,12 @@ func TestNominatedNode(t *testing.T) {\n \t\tnodeCapacity map[v1.ResourceName]string\n \t\t// A slice of pods to be created in batch.\n \t\tpodsToCreate [][]*v1.Pod\n-\t\t// Each post... | 2025-10-31T13:13:01 |
golang/go | d6beda863e3a8825c8cfe656744cc8f99f47d048 | 4ab1aec00799f91e96182cbbffd1de405cd52e93 | runtime: add reference to debugPinnerV1
This is intended to be used by debuggers, to keep heap memory reachable
even if it isn't referenced from anywhere else.
Change-Id: I1e900e02b4fe3a188f8173cec70f8de32122489b
Reviewed-on: https://go-review.googlesource.com/c/go/+/682875
Reviewed-by: abner chenc <chenguoqi@loongso... | [
{
"path": "src/runtime/asm_loong64.s",
"patch": "@@ -70,8 +70,9 @@ nocgo:\n \t// start this M\n \tJAL\truntime·mstart(SB)\n \n-\t// Prevent dead-code elimination of debugCallV2, which is\n+\t// Prevent dead-code elimination of debugCallV2 and debugPinnerV1, which are\n \t// intended to be called by debugger... | 2025-06-19T11:55:28 |
denoland/deno | 7b951af81a87e45b5bcc2c3326fe5f43b56841e8 | 8c3e6a14a1d14582b1ce47ee7db0cd250897cbd4 | chore: fix internal hmr feature (#29730)
Currently broken on main due to `SnapshotOptions` not being in op state | [
{
"path": "runtime/ops/bootstrap.rs",
"patch": "@@ -69,7 +69,14 @@ impl Default for SnapshotOptions {\n #[op2]\n #[serde]\n pub fn op_snapshot_options(state: &mut OpState) -> SnapshotOptions {\n- state.take::<SnapshotOptions>()\n+ #[cfg(feature = \"hmr\")]\n+ {\n+ state.try_take::<SnapshotOptions>().u... | 2025-06-12T21:42:16 |
tensorflow/tensorflow | 80924698ef14f71016f624e63d09b310e234e7ff | cc31c1d055c08959faac39faca058fe76ed2a454 | [XLA:GPU] Fix usages of deprecated tsl::errors::Unimplemented in xla
This change replaces usages of tsl::errors::Unimplemented with absl::UnimplementedError,
wrapping arguments in absl::StrCat where necessary. This addresses deprecation
warnings and moves towards standard Abseil error handling.
The deprecated tsl::er... | [
{
"path": "third_party/xla/xla/stream_executor/cuda/cuda_dnn.cc",
"patch": "@@ -5648,7 +5648,7 @@ absl::Status CudnnSupport::GetFusedConvolveRunners(\n \n if (input_type == dnn::DataType::kInt8 &&\n !stream->GetCudaComputeCapability().IsAtLeast(6, 1)) {\n- return tsl::errors::Unimplemented(\n+ ... | 2025-11-28T13:27:53 |
swiftlang/swift | 172bf3990197297197868858af050719d391e202 | 051a4f86cfaa4c6cca2b4240860e58c08c9b86d9 | Optimizer: let OSSA canonicalization always respect deinit barriers
When computing the region to search for deinit barriers, include _all_ destroys of a canonical liverange - including destroys of all copies.
Before this fix, only destroys of the original def were considered which resulted in moving destroys across de... | [
{
"path": "lib/SILOptimizer/Utils/OSSACanonicalizeOwned.cpp",
"patch": "@@ -409,8 +409,6 @@ void OSSACanonicalizeOwned::extendLivenessToDeinitBarriers() {\n });\n } else {\n for (auto destroy : destroys) {\n- if (destroy->getOperand(0) != getCurrentDef())\n- continue;\n ends.... | 2026-01-23T07:41:53 |
kubernetes/kubernetes | 257ff6edcd6c43246557aede1521d0881c313a62 | 462c8693540b5715a1c32c590fac29736004d341 | kubelet/app/server_bootstrap_test: fix Test_buildClientCertificateManager | [
{
"path": "cmd/kubelet/app/server_bootstrap_test.go",
"patch": "@@ -38,8 +38,12 @@ import (\n \tmetav1 \"k8s.io/apimachinery/pkg/apis/meta/v1\"\n \t\"k8s.io/apimachinery/pkg/runtime\"\n \t\"k8s.io/apimachinery/pkg/types\"\n+\t\"k8s.io/apimachinery/pkg/watch\"\n+\tutilfeature \"k8s.io/apiserver/pkg/util/feat... | 2025-10-01T19:36:07 |
golang/go | 08bec02907cf59c3fd60e5c5e31b2d6c30b462b7 | 09ff25e3508287970940645b97e4d88e92bb5407 | [dev.simd] cmd/compile: add register-to-mask moves, other simd glue
This includes code generated by simdgen CL 689955,
here because of git-facilitated pilot error
(the generated file should have been in the next CL
but that is related to this one, so, oh well).
Change-Id: Ibfea3f1cd93ca9cd12970edf15a013471677a6ba
Rev... | [
{
"path": "src/cmd/compile/internal/amd64/ssa.go",
"patch": "@@ -1530,6 +1530,14 @@ func ssaGenValue(s *ssagen.State, v *ssa.Value) {\n \t\tp.To.Type = obj.TYPE_REG\n \t\tp.To.Reg = v.Reg()\n \n+\tcase ssa.OpAMD64KMOVQ, ssa.OpAMD64KMOVD, ssa.OpAMD64KMOVW, ssa.OpAMD64KMOVB:\n+\t\t// See also ssa.OpAMD64KMOVQ... | 2025-07-23T17:47:08 |
denoland/deno | 8c3e6a14a1d14582b1ce47ee7db0cd250897cbd4 | 1ef6746a77e5cdee0c5ca9c5a15fe4b1006fc0d1 | fix(lsp): respect media type for tsx jupyter cells (#29712) | [
{
"path": "cli/lsp/documents.rs",
"patch": "@@ -1406,11 +1406,18 @@ impl DocumentModules {\n None\n }\n \n- pub fn primary_specifier(&self, document: &Document) -> Option<Arc<Url>> {\n+ pub fn primary_specifier(\n+ &self,\n+ document: &Document,\n+ ) -> Option<(Arc<Url>, MediaType)> {\n s... | 2025-06-12T21:39:59 |
mrdoob/three.js | df2bdbe4c9df82aaaa54281b0b7b8c4e5e15c615 | 14f9db73d401cfcc59d84ccb32c67a9e4ff090de | fix array size calc (#28161)
Co-authored-by: aardgoose <angus.sawyer@email.com> | [
{
"path": "examples/jsm/renderers/webgl/utils/WebGLTextureUtils.js",
"patch": "@@ -706,7 +706,7 @@ class WebGLTextureUtils {\n \n \t\tawait backend.utils._clientWaitAsync();\n \n-\t\tconst dstBuffer = new typedArrayType( elementCount );\n+\t\tconst dstBuffer = new typedArrayType( byteLength / typedArrayType... | 2024-04-19T13:41:31 |
swiftlang/swift | 27ab7f99c0a207ad5e08d73847cc1406abe54e8a | ba412d89a584b85b82f3dd2773ea2d27ac6a11a4 | MandatoryInlining: fix handling of inlined lexical closures
If the result of the `partial_apply` is lexical we must make sure to make its captured arguments lexical.
Otherwise the argument lifetimes may be shortened after inlining because the (lexical) `partial_apply` is not there anymore to keep the arguments alive.
... | [
{
"path": "lib/SILOptimizer/Mandatory/MandatoryInlining.cpp",
"patch": "@@ -77,6 +77,16 @@ enum class MandatoryInlining_t {\n inlineAlways\n };\n \n+static bool isLexicalPartialApply(PartialApplyInst *pai) {\n+ for (Operand *use : pai->getUses()) {\n+ if (auto *mv = dyn_cast<MoveValueInst>(use->getUse... | 2026-01-22T10:33:50 |
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.