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
denoland/deno
80e36fc36a95d7e36d232918beba0ec12d33de09
ad54330f39955278b06d10202502a2e619f96628
fix(ext/node): `DatabaseSync` compatibility (#31515) Closes #29439 Notable changes: - `DatabaseSync`: - accept Buffer and URL paths. - implement `.location()` method. - add `isTransaction` and `isOpen` getters. - respect timeout option. - `backup`: accept Buffer and URL paths. Allows https://github.com/nodej...
[ { "path": "ext/node/ops/sqlite/backup.rs", "patch": "@@ -25,20 +25,14 @@ struct BackupOptions {\n rate: Option<c_int>,\n }\n \n-#[derive(Serialize, Deserialize)]\n-struct BackupResult {\n- #[serde(rename = \"totalPages\")]\n- total_pages: c_int,\n-}\n-\n #[op2(stack_trace)]\n-#[serde]\n+#[smi]\n pub fn ...
2025-12-11T13:04:20
mrdoob/three.js
e0b7bd9ca547889d6a57dfcd32596317f2ccf28c
2061c3e1860dbbf1c2afd11d06d7a7d94973e2de
Examples: Fix time usage. (#30498) * Examples: Fix time usage. * E2E: Update screenshots.
[ { "path": "examples/misc_raycaster_helper.html", "patch": "@@ -29,7 +29,7 @@\n \t\t\timport { RaycasterHelper } from 'https://cdn.jsdelivr.net/npm/@gsimone/three-raycaster-helper@0.1.0/dist/gsimone-three-raycaster-helper.esm.js';\n \n \t\t\tlet scene, renderer;\n-\t\t\tlet camera, clock;\n+\t\t\tlet camera;...
2025-02-10T15:36:10
tensorflow/tensorflow
54ea0b6f545df45a12519bee4f61680b470339b6
8f3530279031a4d7129cd3266ef74b954541aee8
[XLA Test Fixture Migration] Migrate `map_inliner_test ` PiperOrigin-RevId: 861885001
[ { "path": "third_party/xla/xla/service/BUILD", "patch": "@@ -5197,10 +5197,11 @@ cc_library(\n ],\n )\n \n-xla_cc_test(\n+xla_test(\n name = \"map_inliner_test\",\n srcs = [\"map_inliner_test.cc\"],\n- tags = [\"pjrt_migration_candidate\"],\n+ backends = [\"interpreter\"],\n+ tags = [\"...
2026-01-27T22:20:56
mrdoob/three.js
7e366d0aaee9675474dada60f9147851504616e2
cdd7c6c25acd227b2e5926679300da83b600ce78
WebGPURenderer: Fix color space of clear colors. (#30488)
[ { "path": "src/renderers/common/Backend.js", "patch": "@@ -557,7 +557,7 @@ class Backend {\n \n \t\trenderer.getClearColor( _color4 );\n \n-\t\t_color4.getRGB( _color4, this.renderer.currentColorSpace );\n+\t\t_color4.getRGB( _color4 );\n \n \t\treturn _color4;\n ", "additions": 1, "deletions": 1, ...
2025-02-09T13:27:05
denoland/deno
ad54330f39955278b06d10202502a2e619f96628
56e196b517488977ee32fa29330a841a3251e208
fix(add): include type-only imports when building graph (#31552) Fixes #31550
[ { "path": "cli/args/mod.rs", "patch": "@@ -542,6 +542,7 @@ impl CliOptions {\n \n pub fn graph_kind(&self) -> GraphKind {\n match self.sub_command() {\n+ DenoSubcommand::Add(_) => GraphKind::All,\n DenoSubcommand::Cache(_) => GraphKind::All,\n DenoSubcommand::Check(_) => GraphKind::Ty...
2025-12-11T09:29:47
golang/go
790384c6c23f7ce44199ea3cd61c856d632b08aa
a49b0302d0e1d97b67a5f3f3beceafdcbc4c2ef0
spec: adjust rule for type parameter on RHS of alias declaration Per discussion on issue #75885, a type parameter on the RHS of an alias declaration must not be declared in the same declaration (but it may be declared by an enclosing function). This relaxes the spec slightly and allows for (pre-existing) test cases. ...
[ { "path": "doc/go_spec.html", "patch": "@@ -1,6 +1,6 @@\n <!--{\n \t\"Title\": \"The Go Programming Language Specification\",\n-\t\"Subtitle\": \"Language version go1.26 (Nov 12, 2025)\",\n+\t\"Subtitle\": \"Language version go1.26 (Nov 18, 2025)\",\n \t\"Path\": \"/ref/spec\"\n }-->\n \n@@ -2487,11 +2487,1...
2025-11-18T23:47:44
mrdoob/three.js
14d99e0221b96e9e866f936650770a74dd26cedd
57e59a97c00bd07e439dbd8ac7a76f66c06ca2cc
WebGLBackend: Fix `clear()`. (#30485) * WebGLBackend: Fix `clear()`. * Fix typo.
[ { "path": "src/renderers/common/Renderer.js", "patch": "@@ -1917,7 +1917,17 @@ class Renderer {\n \t\t\trenderContext.depth = renderTarget.depthBuffer;\n \t\t\trenderContext.stencil = renderTarget.stencilBuffer;\n \t\t\t// #30329\n-\t\t\trenderContext.clearColorValue = this._clearColor;\n+\t\t\trenderContex...
2025-02-09T12:33:19
denoland/deno
56e196b517488977ee32fa29330a841a3251e208
ed55de83b71b386f14196c2e56138d43a942249e
fix(x): fix executing native binary on windows + some cleanup (#31551) Addressing some todos from the original PR. For instance, this allows things like `dx supabase` (which is a native bin) to work on windows
[ { "path": "cli/tools/x.rs", "patch": "@@ -105,21 +105,16 @@ async fn maybe_run_local_npm_bin(\n ) -> Result<Option<i32>, AnyError> {\n let permissions = factory.root_permissions_container()?;\n \n- let bins = resolve_local_bins(node_resolver, npm_resolver)?;\n- let command = if command.starts_with(\"@\"...
2025-12-11T08:33:20
golang/go
a49b0302d0e1d97b67a5f3f3beceafdcbc4c2ef0
32f5aadd2ffc60421c62b185fa7668012fb5e73e
net/http: correctly close fake net.Conns Fix an inverted test in fakeNetConn.Close that caused closing a connection to not break the other half of the connection. Change-Id: I4e53f78402f8e503c749d57f294a4524abdccfb5 Reviewed-on: https://go-review.googlesource.com/c/go/+/722220 Reviewed-by: Nicholas Husin <nsh@golang....
[ { "path": "src/net/http/netconn_test.go", "patch": "@@ -180,9 +180,10 @@ func (c *fakeNetConn) Close() error {\n \tc.loc.unlock()\n \t// Remote half of the connection reads EOF after reading any remaining data.\n \tc.rem.lock()\n-\tif c.rem.readErr != nil {\n+\tif c.rem.readErr == nil {\n \t\tc.rem.readErr ...
2025-11-19T19:25:49
tensorflow/tensorflow
0d5e4483e38036477092c186d71f47569eded61d
d7e5a58285315a8d263f078409affdf967d6d59b
Removed PlatformType::NOGPU to prevent silent failures - Prevent Silent Failures: Changed PutSignalFlag and WaitSignalFlag in the base header from empty inline functions {} to forward declarations. This ensures that missing platform specializations result in a linker error rather than silently skipping synchronization...
[ { "path": "third_party/xla/xla/stream_executor/cuda/BUILD", "patch": "@@ -2459,7 +2459,6 @@ cuda_library(\n \"gpu\",\n ],\n deps = [\n- \"//xla/stream_executor:kernel_spec\",\n \"@local_config_cuda//cuda:cuda_headers\",\n ],\n alwayslink = 1,", "additions": 0, ...
2026-01-27T18:03:52
kubernetes/kubernetes
03e6622c926f4cb2425b84cb63b2ad8e4896fe2f
c7416f744edf3fd12d7f1ceaebc94875a6add3c2
Fix container_restart_test AfterEach failing when CRI Proxy is undefined Two test contexts were failing because their AfterEach blocks run even when BeforeEach skips the test (standard Ginkgo behavior). This caused resetCRIProxyInjector to fail with "CRI Proxy is undefined". Switched to using DeferCleanup inside Befo...
[ { "path": "test/e2e_node/container_restart_test.go", "patch": "@@ -100,11 +100,9 @@ var _ = SIGDescribe(\"Container Restart\", feature.CriProxy, framework.WithSerial(\n \t\t\tif err := resetCRIProxyInjector(e2eCriProxy); err != nil {\n \t\t\t\tginkgo.Skip(\"Skip the test since the CRI Proxy is undefined.\")...
2026-01-23T22:47:17
mrdoob/three.js
a95ed9e00f1282af1aab0b507ded55bf75825b4a
6c2c7acb51aef39e141cfee46ed71985d6c0cdbf
WebGPURenderer: Fix info metrics. (#30483)
[ { "path": "src/renderers/webgl-fallback/WebGLBufferRenderer.js", "patch": "@@ -26,7 +26,7 @@ class WebGLBufferRenderer {\n \n \t\t}\n \n-\t\tinfo.update( object, count, mode, 1 );\n+\t\tinfo.update( object, count, 1 );\n \n \t}\n \n@@ -46,7 +46,7 @@ class WebGLBufferRenderer {\n \n \t\t}\n \n-\t\tinfo.updat...
2025-02-08T11:01:57
denoland/deno
d94c7fa2dc05448d5c27d121d2a480de86dd07e5
d5b1548eba893d4cc26305f33739a6ca2e6e8c11
fix: adjust deno_cache version (#31553) Small mishap because of https://github.com/denoland/deno/pull/31183 and https://github.com/denoland/deno/pull/31205.
[ { "path": "Cargo.lock", "patch": "@@ -1791,7 +1791,7 @@ dependencies = [\n \n [[package]]\n name = \"deno_cache\"\n-version = \"0.154.0\"\n+version = \"0.155.0\"\n dependencies = [\n \"async-stream\",\n \"async-trait\",", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path...
2025-12-10T16:36:32
golang/go
32f5aadd2ffc60421c62b185fa7668012fb5e73e
a18aff805706bfdaeb9aca042111fae32f9f8b61
cmd/compile: stack allocate backing stores during append We can already stack allocate the backing store during append if the resulting backing store doesn't escape. See CL 664299. This CL enables us to often stack allocate the backing store during append *even if* the result escapes. Typically, for code like: f...
[ { "path": "src/cmd/compile/internal/deadlocals/deadlocals.go", "patch": "@@ -44,6 +44,11 @@ func Funcs(fns []*ir.Func) {\n \t\t\t\t*as.lhs = ir.BlankNode\n \t\t\t\t*as.rhs = zero\n \t\t\t}\n+\t\t\tif len(assigns) > 0 {\n+\t\t\t\t// k.Defn might be pointing at one of the\n+\t\t\t\t// assignments we're overwr...
2025-09-12T21:43:19
mrdoob/three.js
b3a9472452d9170fea192384eb8c8b24b863c73c
426c39aa0ea42d4612dcc3fd9e20862af6413a30
Fix spell errors (#30480)
[ { "path": "manual/en/optimize-lots-of-objects-animated.html", "patch": "@@ -71,7 +71,7 @@ <h1>Optimize Lots of Objects Animated</h1>\n it's not important really. The important part is showing different sets\n of data.</p>\n <p>Let's generate 2 more sets of data. One being the places where the number\n-men a...
2025-02-08T09:38:57
swiftlang/swift
ef9ef052cf6a56bafdf8919a9a51891d3d691d27
434b68b35495cad9e718a98b0ac349cf8db36710
Sema: Add BindingSet::operator!= for debugging
[ { "path": "include/swift/Sema/CSBindings.h", "patch": "@@ -635,7 +635,11 @@ class BindingSet {\n \n static BindingScore formBindingScore(const BindingSet &b);\n \n- bool operator==(const BindingSet &other);\n+ bool operator==(const BindingSet &other) const;\n+\n+ bool operator!=(const BindingSet &other...
2026-02-20T22:33:54
tensorflow/tensorflow
3f5a36e0e5510f8c6c6e94693c443b7b3320f730
52dab60ce18374d344aa1b5255d0a097d9b0e6bb
Add a bug number to a TODO. PiperOrigin-RevId: 861757100
[ { "path": "third_party/xla/xla/service/gpu/custom_call_test.cc", "patch": "@@ -1180,7 +1180,7 @@ TEST_F(CustomCallHloTest, CallConcurrentUpdateTwoBuffers) {\n EXPECT_THAT(results[0].data<int32_t>(), ::testing::Each(1));\n }\n \n-// TODO: Enable this test once the runtime failure is fixed.\n+// TODO(b/4776...
2026-01-27T17:28:52
denoland/deno
6b81dc58d39d90c6d456f9eccd7c6992249358f1
556eb7146965f594cfc8e772e69835699e9f5a9f
fix(ext/node): fix sqlite extension used for testing; ensure related tests are actually meaningful (#31547) Reland of https://github.com/denoland/deno/pull/31455 which was reverted in https://github.com/denoland/deno/pull/31539.
[ { "path": "Cargo.lock", "patch": "@@ -8528,6 +8528,13 @@ dependencies = [\n \"winnow 0.6.26\",\n ]\n \n+[[package]]\n+name = \"sqlite_extension_test\"\n+version = \"0.1.0\"\n+dependencies = [\n+ \"test_server\",\n+]\n+\n [[package]]\n name = \"stable_deref_trait\"\n version = \"1.2.0\"\n@@ -9347,14 +9354,6...
2025-12-10T13:06:05
golang/go
ab5956909952aa625ab8d51086beca299477e7b0
c4bb9653ba28cba4bcd3a3cbb64285c495a03ba2
go/version: use "custom" as an example of a version suffix The suffix in a non-standard toolchain version can be any string. Show more of a middle ground example of a non-standard version suffix, aligning it with the example used at https://go.dev/doc/toolchain#name. For #75953. Change-Id: I98f9c4de98316aecf76c017eb...
[ { "path": "src/go/version/version.go", "patch": "@@ -4,7 +4,7 @@\n \n // Package version provides operations on [Go versions]\n // in [Go toolchain name syntax]: strings like\n-// \"go1.20\", \"go1.21.0\", \"go1.22rc2\", and \"go1.23.4-bigcorp\".\n+// \"go1.20\", \"go1.21.0\", \"go1.22rc2\", and \"go1.23.4-...
2025-11-14T20:40:43
mrdoob/three.js
91f977091a7f249f6f128ca5894d8f46145c8269
92f9a16fcc834c84644d823641140f6050993572
Update ArrayNode.js Fix typo.
[ { "path": "src/nodes/core/ArrayNode.js", "patch": "@@ -2,7 +2,7 @@ import TempNode from './TempNode.js';\n import { addMethodChaining, nodeObject } from '../tsl/TSLCore.js';\n \n /**\n- * ArrayNode represents a collection of nodes, typically created using the {@link marray} function.\n+ * ArrayNode represen...
2025-02-06T11:37:05
kubernetes/kubernetes
b7355510ef13630fdf016f8c40cc412468402906
687076f6f9b7f4f753c6456d452e13062fb8c857
Fix copyright notice in container_manager_test.go Correct copyright year in container_manager_test.go
[ { "path": "pkg/kubelet/cm/container_manager_test.go", "patch": "@@ -1,7 +1,7 @@\n //go:build linux\n \n /*\n-Copyright 2026 The Kubernetes Authors.\n+Copyright The Kubernetes Authors.\n \n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with...
2026-01-23T19:58:47
tensorflow/tensorflow
918989d8b17dbf2acdc0a9237d3f79bef6100bb9
8350c3a72bde78da7b470c6636b6a3a13f61f54a
Move Riegeli and its dependencies to Bazel module extensions. This change migrates the Riegeli, Highwayhash, Brotli, and net_zstd dependencies to be loaded via the `third_party_ext` module extension, instead of a mix of Bazel Modules (`bazel_dep`) and workspace loading. This resolves duplicate symbol errors in BzlMod...
[ { "path": "third_party/xla/MODULE.bazel", "patch": "@@ -22,7 +22,6 @@ bazel_dep(name = \"pybind11_abseil\", version = \"202402.0\")\n bazel_dep(name = \"pybind11_bazel\", version = \"2.13.6\")\n bazel_dep(name = \"pybind11_protobuf\", version = \"0.0.0-20250210-f02a2b7\")\n bazel_dep(name = \"re2\", version...
2026-01-27T16:42:20
golang/go
4fef9f8b5596d42a2997fd8b74185d53fb7d0e43
33529db142dab098d4687f99e27e6284c31fa039
go/types, types2: fix object path for grouped declaration statements CL 715840 deferred popping from the object path during handling of grouped declaration statements, which leaves extra objects on the path since this executes in a loop. Surprisingly, no test exercised this. This change fixes this small bug and adds ...
[ { "path": "src/cmd/compile/internal/types2/decl.go", "patch": "@@ -876,8 +876,8 @@ func (check *Checker) declStmt(list []syntax.Decl) {\n \t\t\tscopePos := s.Name.Pos()\n \t\t\tcheck.declare(check.scope, s.Name, obj, scopePos)\n \t\t\tcheck.push(obj) // mark as grey\n-\t\t\tdefer check.pop()\n \t\t\tcheck.t...
2025-11-19T20:10:24
mrdoob/three.js
4df98989058a9c954eb98a7b7c4936004ecf4e78
4e629c8aef297856f3fddcde1ea9a3ba70652716
Examples: Adjust volume instances demo to write to depth (#30464) * Calculate screen coordinates * Get depth working * Remove unused variables * code style * Update depth assignment * variable name updates * Fix depth calculation * Update screenshot * Updated screenshot with a CI generated one....
[ { "path": "examples/webgl_volume_instancing.html", "patch": "@@ -61,28 +61,28 @@\n \t\t\t\t\tuniform mat4 projectionMatrix;\n \t\t\t\t\tuniform vec3 cameraPos;\n \n-\t\t\t\t\tout vec3 vOrigin;\n-\t\t\t\t\tout vec3 vDirection;\n+\t\t\t\t\tout vec4 vScreenPosition;\n+\t\t\t\t\tout mat4 vInstanceToViewMatrix;\...
2025-02-06T09:28:07
denoland/deno
861f62a4ec38ddcc6497cde3f1056f5ec22b07e7
f5cb510ebac83583ca95d516d6c689e79c531f51
feat: add `deno x` (alias `dx`) for conveniently running binaries from packages (#31138) an equivalent to npx, for conveniently running binaries from packages available as `deno x`, and you can install an alias via `deno x --install-alias` (defaults to dx but can be specified) Used like `deno x rolldown`, or `dx rol...
[ { "path": "cli/args/flags.rs", "patch": "@@ -417,6 +417,42 @@ impl RunFlags {\n }\n }\n \n+#[derive(Clone, Debug, Eq, PartialEq, Default)]\n+pub enum DenoXShimName {\n+ #[default]\n+ Dx,\n+ Denox,\n+ Other(String),\n+}\n+\n+impl DenoXShimName {\n+ pub fn name(&self) -> &str {\n+ match self {\n+ ...
2025-12-09T23:06:36
golang/go
dc42565a202694731945421c1fd58815f12423b5
e64023dcbf40af59a637a982cba58ee8272d61c4
cmd/compile: fix control flow for unsigned divisions proof relations The continue used to make sense since I first wrote this patch with a loop, for testing the commutativity of the add. This was refactored to just try both but I forgot to fix the continue. Change-Id: I91466a052d5d8ee7193084a71faf69bd27e36d2a Review...
[ { "path": "src/cmd/compile/internal/ssa/prove.go", "patch": "@@ -2503,15 +2503,13 @@ func addLocalFacts(ft *factsTable, b *Block) {\n \t\t\t\txl := ft.limits[x.ID]\n \t\t\t\ty := add.Args[1]\n \t\t\t\tyl := ft.limits[y.ID]\n-\t\t\t\tif unsignedAddOverflows(xl.umax, yl.umax, add.Type) {\n-\t\t\t\t\tcontinue\...
2025-11-18T00:26:01
tensorflow/tensorflow
83500b549648548e5891e016b145ee603a58030c
540721085b08579b9547af3997bb7050493dd879
Remove java_outer_classname from copy_thunk.proto. The current java_outer_classname `CopyThunkProto` is breaking the build because the name may not be the same of one of proto messages in the file. Removing the option makes protobuf auto generate a name which might be non obvious. But since we don't need the java tar...
[ { "path": "third_party/xla/xla/backends/gpu/runtime/copy_thunk.proto", "patch": "@@ -20,7 +20,6 @@ package xla.gpu;\n import \"xla/service/shaped_slice.proto\";\n \n option java_multiple_files = true;\n-option java_outer_classname = \"CopyThunkProto\";\n \n message CopyThunkProto {\n xla.ShapedSliceProto ...
2026-01-27T14:38:36
denoland/deno
f5cb510ebac83583ca95d516d6c689e79c531f51
dd80d7575f7c07e2eaa73ad76ce3d811fb61f1b0
fix(bundle): support android (#31521) support android os in esbuild linked with https://github.com/denoland/esbuild_client/pull/16
[ { "path": "cli/tools/bundle/esbuild.rs", "patch": "@@ -28,6 +28,8 @@ fn esbuild_platform() -> &'static str {\n (\"aarch64\", \"macos\" | \"apple\") => \"darwin-arm64\",\n (\"x86_64\", \"windows\") => \"win32-x64\",\n (\"aarch64\", \"windows\") => \"win32-arm64\",\n+ (\"x86_64\", \"android\") ...
2025-12-09T22:28:31
mrdoob/three.js
a5734130516db50c1de2cdfe27f477a33ecd1c87
ca28ca780a676530f757b1a967ebfd2138b9d490
WebGPURenderer: Fix clear for default framebuffer (#30457) * WebGPURenderer: Fix clear for default framebuffer * cleanup
[ { "path": "src/renderers/common/Renderer.js", "patch": "@@ -1907,12 +1907,11 @@ class Renderer {\n \t\t\trenderContext.renderTarget = renderTarget;\n \t\t\trenderContext.depth = renderTarget.depthBuffer;\n \t\t\trenderContext.stencil = renderTarget.stencilBuffer;\n+\t\t\t// #30329\n+\t\t\trenderContext.clea...
2025-02-05T08:27:40
golang/go
489d3dafb791df8297f71ecf4e2c3c84ea11f6f2
8c41a482f9b7a101404cd0b417ac45abd441e598
math: switch s390x math.Pow to generic implementation The s390x assembly implementation of math.Pow incorrectly handles certain subnormal cases. This change switches the function to use the generic implementation instead. Updates #76247 Cq-Include-Trybots: luci.golang.try:gotip-linux-s390x Change-Id: I794339080d5a7a...
[ { "path": "src/math/arith_s390x.go", "patch": "@@ -129,7 +129,7 @@ func archExpm1(x float64) float64\n func expm1TrampolineSetup(x float64) float64\n func expm1Asm(x float64) float64\n \n-const haveArchPow = true\n+const haveArchPow = false\n \n func archPow(x, y float64) float64\n func powTrampolineSetup(x...
2025-11-14T13:21:37
tensorflow/tensorflow
910cd24a6b2f7a6c51becdd1c82546995d7a441d
9506de9dd94d45dd5b706a70908c6d85d1ca48c3
[XLA:CPU] Disable LLVM IR generation on Mac while we debug Eigen. We have been seeing some OSS Mac build errors downstream in Eigen: ``` 2026-01-26 02:26:08,833 - INFO - external/eigen_archive/Eigen/src/Core/arch/clang/PacketMath.h:367:32: error: cannot initialize return object of type 'Packet8l' (aka 'VectorType<int...
[ { "path": "third_party/xla/xla/codegen/intrinsic/cpp/cc_to_llvm_ir.bzl", "patch": "@@ -155,12 +155,23 @@ def cc_ir_header(name, src, deps = [], copts = [], **kwargs):\n # TODO(talts): In the next version, I will update this to store the bitcode in a shared object\n # file so that we aren't using LLV...
2026-01-27T10:13:07
swiftlang/swift
6d045e3b567922d7fc19b597fc923538fb213d74
af6270ce6a65985635a98b44242a4a0b1f04d50d
Avoid automatically making pack argument into tuple Fixes #69245 by ensuring CSSimplify does not wrap PackExpansionType in a tuple when it is the argument for a tuple parameter. This was causing a crash. Also changes matchTypes to wrap such a pack expansion in a tuple after diagnosing so we can infer more types. Adds ...
[ { "path": "include/swift/AST/DiagnosticsSema.def", "patch": "@@ -6403,6 +6403,9 @@ ERROR(expansion_expr_not_allowed,none,\n ERROR(invalid_expansion_argument,none,\n \"cannot pass value pack expansion to non-pack parameter of type %0\",\n (Type))\n+NOTE(did_you_mean_tuple_pack_expansion,none,\n+ ...
2026-02-20T03:39:31
kubernetes/kubernetes
b56c322f240fd6dcbed4e5750a97423fc86c0823
5f4adaf57935eaeb0d7b924c60ffe4abdde32007
cleanup: improve darwin error messages
[ { "path": "hack/local-up-cluster.sh", "patch": "@@ -1467,7 +1467,7 @@ if [[ \"${START_MODE}\" != *\"nokubelet\"* ]]; then\n # Detect the OS name/arch and display appropriate error.\n case \"$(uname -s)\" in\n Darwin)\n- print_color \"kubelet is not currently supported in darwin, kubelet a...
2026-01-23T04:00:07
denoland/deno
6d55117b824ee0a6cfd12ddadf34f570dfc7ebfc
5f2a56ff5fe46b67a6870b59e407507cde175416
Revert "fix(ext/node): fix sqlite extension used for testing; ensure … (#31539) …related tests are actually meaningful (#31455)" This reverts commit 40cf41275b8e1ec4358d6bca5fdecd104787e5d5. Started getting random kills on linux arm after this PR landed. Reverting to see if it will help.
[ { "path": "Cargo.lock", "patch": "@@ -8528,13 +8528,6 @@ dependencies = [\n \"winnow 0.6.26\",\n ]\n \n-[[package]]\n-name = \"sqlite_extension_test\"\n-version = \"0.1.0\"\n-dependencies = [\n- \"test_server\",\n-]\n-\n [[package]]\n name = \"stable_deref_trait\"\n version = \"1.2.0\"\n@@ -9354,6 +9347,14...
2025-12-09T15:35:50
golang/go
e912618bd2de2121d6c9fed3473b5e0a47da138c
2cf9d4b62f167cbef01469d625dabefdd783c0e8
runtime: add hexdumper Currently, we have a simple hexdumpWords facility for debugging. It's useful but pretty limited. This CL adds a much more configurable and capable "hexdumper". It can be configured for any word size (including bytes), handles unaligned data, includes an ASCII dump, and accepts data in multiple ...
[ { "path": "src/runtime/export_test.go", "patch": "@@ -2029,3 +2029,36 @@ func (head *ListHeadManual) Pop() unsafe.Pointer {\n func (head *ListHeadManual) Remove(p unsafe.Pointer) {\n \thead.l.remove(p)\n }\n+\n+func Hexdumper(base uintptr, wordBytes int, mark func(addr uintptr, start func()), data ...[]byte...
2025-06-10T23:19:08
tensorflow/tensorflow
ac5c3bf79f0400ccfc9b62f06485cb8e5ffc9de3
fcb45e59ee44e620df6121dc5aaa0b580a4ef5d1
[XLA:GPU] Fix out-of-bounds access in BuffersFloatCheckThunk Not all temp space is always used. When this happens, only the initialized subset of the temp space should be reduced. This caused false positives in NaN checks for small buffers. Also clean up an useless check in thunk_buffer_debug_float_check.cc PiperOr...
[ { "path": "third_party/xla/xla/backends/gpu/runtime/buffers_float_check_thunk.cc", "patch": "@@ -184,12 +184,14 @@ absl::Status BuffersDebugFloatCheckThunk::ExecuteOnStream(\n PrimitiveType buffer_type = buffer.element_type();\n se::DeviceAddressBase device_buffer =\n params.buffer_allocatio...
2026-01-27T06:43:08
denoland/deno
55a2c7d28b1a4c0714fc5af504a9b7077bfbb3b4
05dac153b6eacc7218a4bae1bfdf35509060680b
fix(install): report installed npm packages when not using node_modules, fix double counting (#31536) Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
[ { "path": "cli/tools/installer/mod.rs", "patch": "@@ -81,7 +81,7 @@ pub struct InstallStats {\n pub downloaded_jsr: DashSet<String>,\n pub reused_jsr: DashSet<String>,\n pub resolved_npm: DashSet<String>,\n- pub downloaded_npm: Count,\n+ pub downloaded_npm: DashSet<String>,\n pub intialized_npm: D...
2025-12-09T12:20:03
golang/go
4d0658bb0871806a8c5551063d1ef1d205916ceb
ba634ca5c7f19105c853db5752cc0f6d3ca76e45
cmd/compile: prefer fixed registers for values For this code: func f() (int, int) { return 0, 0 } We currently generate on arm64: MOVD ZR, R0 MOVD R0, R1 This CL changes that to MOVD ZR, R0 MOVD ZR, R1 Probably not a big performance difference, but it makes the generated code clearer. A followup-is...
[ { "path": "src/cmd/compile/internal/ssa/regalloc.go", "patch": "@@ -596,17 +596,18 @@ func (s *regAllocState) allocValToReg(v *Value, mask regMask, nospill bool, pos\n \tvar c *Value\n \tif vi.regs != 0 {\n \t\t// Copy from a register that v is already in.\n-\t\tr2 := pickReg(vi.regs)\n \t\tvar current *Val...
2025-11-17T23:33:01
denoland/deno
0bc213b15b819597d935be6cb04cec03659d146b
63fe08925da3ed245fca9c3935ab40101ec5eb3e
fix(ext/node): prevent cipher operations after finalize (#31533) Throw a state error for operations if the cipher is already finalized.
[ { "path": "ext/node/polyfills/internal/crypto/cipher.ts", "patch": "@@ -184,6 +184,8 @@ export class Cipheriv extends Transform implements Cipher {\n \n #autoPadding = true;\n \n+ #finalized = false;\n+\n constructor(\n cipher: string,\n key: CipherKey,\n@@ -220,6 +222,10 @@ export class Cipher...
2025-12-09T10:33:37
tensorflow/tensorflow
fcb45e59ee44e620df6121dc5aaa0b580a4ef5d1
2532268464da3989b22a7b370ae6e02e9b11e340
Fix more bzlmod incompatibility Working towards https://github.com/tensorflow/tensorflow/issues/62598 PiperOrigin-RevId: 861443369
[ { "path": "tensorflow/core/kernels/BUILD", "patch": "@@ -4792,7 +4792,7 @@ tf_kernel_library(\n deps = [\n \"//tensorflow/core:lib_internal\",\n \"@com_google_absl//absl/status\",\n- \"@net_zstd//:zstdlib\",\n+ \"@net_zstd//:zstd\",\n ] + PARSING_DEPS,\n )\n ", "add...
2026-01-27T02:25:42
kubernetes/kubernetes
e8d1e3563b25acda66cc43f6ab87e6ba0d9d404a
3863ed83f1601e6532d9ff56836fa2fd56d652ca
Fix volume/nfs image for CentOS Stream 9 The volume/nfs:1.5 image was updated from CentOS 8 to CentOS Stream 9 in commit 9b47a096f4b, but this broke NFS server startup because NFSv2 is no longer supported in RHEL 9 / CentOS Stream 9. The `-N 2` flag (disable NFSv2) passed to rpc.mountd and rpc.nfsd causes them to fai...
[ { "path": "test/images/volume/nfs/VERSION", "patch": "@@ -1 +1 @@\n-1.5\n+1.6.0", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "test/images/volume/nfs/run_nfs.sh", "patch": "@@ -51,11 +51,11 @@ function start()\n mount -t nfsd nfsd /proc/fs/nfsd\n \n # -...
2026-01-23T02:07:30
golang/go
9461db5c5945472b0ba9d3ef75e802bb861f214d
4004ff3523f03a6e42e60e47b41d8954dfa3a001
[dev.simd] simd: fix comment in file generator the comment was accidentally updated in the generated file, and the update was good. So update the generator, too. Change-Id: I6a76aa3bdb7fb78378508b95248939567bff69e4 Reviewed-on: https://go-review.googlesource.com/c/go/+/721341 LUCI-TryBot-Result: Go LUCI <golang-scop...
[ { "path": "src/simd/genfiles.go", "patch": "@@ -912,6 +912,7 @@ type SIMDLogicalOP uint8\n const (\n \t// boolean simd operations, for reducing expression to VPTERNLOG* instructions\n \t// sloInterior is set for non-root nodes in logical-op expression trees.\n+\t// the operations are even-numbered.\n \tsloI...
2025-11-17T20:37:47
denoland/deno
80e36b53d386dd9b83e54d2b86e5be6bb10479b6
1317a36332cae7fc0712bee17722519919ccae31
fix(install): rewrite node_modules .bin shim generation for windows to be like npm (#31494) Previously we were just generating a little cmd file that did `deno run npm:/..`..., but we were the odd one out in that most other package managers do .cmd, a sh script, and a powershell script. This ports the shim logic from...
[ { "path": "Cargo.lock", "patch": "@@ -2595,6 +2595,7 @@ dependencies = [\n \"deno_unsync\",\n \"dyn-clone\",\n \"futures\",\n+ \"lazy-regex\",\n \"log\",\n \"once_cell\",\n \"parking_lot\",", "additions": 1, "deletions": 0, "language": "Unknown" }, { "path": "libs/npm_installer/Car...
2025-12-09T08:39:20
mrdoob/three.js
9004ed1d3dacbede52c5657a1556789be10c0a77
13bc4c2e0a89d00b0403655e8df98a2589e95b70
Update ClippingNode.js Fix formatting.
[ { "path": "src/nodes/accessors/ClippingNode.js", "patch": "@@ -9,11 +9,10 @@ import { uniformArray } from './UniformArrayNode.js';\n import { builtin } from './BuiltinNode.js';\n \n /**\n- * ```\n * This node is used in {@link NodeMaterial} to setup the clipping\n * which can happen hardware-accelerated (...
2025-02-02T18:32:41
swiftlang/swift
a70733c222b8865b8b76bc58c6f1aed034f28d8e
c785ec7bacac49acbae42e8fe910b531df10a3b0
[loadable-by-address] Update debug variable type when rewriting alloc_stack The LoadableByAddress pass rewrites alloc_stack instructions when their element type changes (e.g., a function parameter convention changes from @guaranteed to @in_guaranteed for large/opaque types). However, it was passing the original SILDeb...
[ { "path": "lib/IRGen/LoadableByAddress.cpp", "patch": "@@ -2141,8 +2141,13 @@ static void rewriteFunction(StructLoweringState &pass,\n SILType currSILType = instr->getType();\n SILType newSILType = pass.getNewSILType(pass.F->getLoweredFunctionType(),\n cur...
2026-02-20T10:26:19
tensorflow/tensorflow
483b91d1bc5a00c42332a136149b3a248104e0dd
159eb57476475c4d8da680c0976cddae2d568f6c
Implement asynchronous compilation for IFRT IR programs This CL leverages IFRT's asynchronous compilation API to dispatch atom program compilation without creating a large number of threads. Since IFRT IR compilation does not need the atom program compilation results [1], the CL introduces a new `AtomExecutableFutureM...
[ { "path": "third_party/xla/xla/python/ifrt/ir/BUILD", "patch": "@@ -321,8 +321,8 @@ cc_library(\n \"//xla/pjrt:pjrt_executable\",\n \"//xla/python/ifrt\",\n \"//xla/python/ifrt/hlo:hlo_program\",\n+ \"//xla/tsl/concurrency:future\",\n \"@com_google_absl//absl/container...
2026-01-26T23:56:40
golang/go
8806d53c106ba9d797a4383b2a49418c509a42c2
c93766007dbb9c975d2f18b7c741f4804ce911c0
cmd/link: align sections, not symbols after DWARF compress After DWARF compression, we recompute the symbol and section addresses. On Windows, we need to align the sections to PEFILEALIGN. But the code actually apply the alignment to every symbol. This works mostly fine as after compression a section usually contains ...
[ { "path": "src/cmd/link/internal/ld/dwarf.go", "patch": "@@ -2507,19 +2507,19 @@ func dwarfcompress(ctxt *Link) {\n \tvar prevSect *sym.Section\n \tfor _, si := range dwarfp {\n \t\tfor _, s := range si.syms {\n-\t\t\tldr.SetSymValue(s, int64(pos))\n \t\t\tsect := ldr.SymSect(s)\n \t\t\tif sect != prevSect ...
2025-11-17T22:27:21
mrdoob/three.js
d6446efba961d9723446b7e889ca8d5a040308f0
8a475a6bdf7fb1536cb462f39f17867e37c7a807
StructTypeNode: Fix inclusion when added to the layout. (#30439)
[ { "path": "src/nodes/core/NodeBuilder.js", "patch": "@@ -1636,7 +1636,7 @@ class NodeBuilder {\n \t */\n \tgetStructTypeFromNode( node, membersLayout, name = null, shaderStage = this.shaderStage ) {\n \n-\t\tconst nodeData = this.getDataFromNode( node, shaderStage );\n+\t\tconst nodeData = this.getDataFromN...
2025-02-01T02:10:06
denoland/deno
1317a36332cae7fc0712bee17722519919ccae31
b18b8347f7095d85608dda41c47af3c744539787
fix(bundle): don't use createRequire when targeting browser in Deno.bundle (#31534) Fixes #31524 Missed a code path in the original fix
[ { "path": "cli/tools/bundle/provider.rs", "patch": "@@ -173,7 +173,9 @@ impl BundleProvider for CliBundleProvider {\n super::process_result(\n &result,\n &bundler.cwd,\n- true,\n+ crate::tools::bundle::should_replace_require_shim(\n+ bundl...
2025-12-09T00:13:35
swiftlang/swift
c785ec7bacac49acbae42e8fe910b531df10a3b0
be16bbb99e937e39cd7025a206ca9712ce70ca3c
[gardening] Fix typo in a function name.
[ { "path": "lib/IRGen/LoadableByAddress.cpp", "patch": "@@ -1759,9 +1759,8 @@ class LoadableByAddress : public SILModuleTransform {\n \n /// Given that we've allocated space to hold a scalar value, try to rewrite\n /// the uses of the scalar to be uses of the address.\n-static void rewriteUsesOfSscalar(Struc...
2026-02-20T17:28:56
tensorflow/tensorflow
159eb57476475c4d8da680c0976cddae2d568f6c
c5b15df2be5601f670621b2905b2b54afd7023cb
Fix error where PjRtStreamExecutorClient::RunAsync was comparing the value identity but this was crashing for unconstructed outputs (failed donation). PiperOrigin-RevId: 861392791
[ { "path": "third_party/xla/xla/pjrt/pjrt_stream_executor_client.cc", "patch": "@@ -1571,7 +1571,7 @@ PjRtStreamExecutorClient::RunAsync(\n auto buf =\n tensorflow::down_cast<PjRtStreamExecutorRawBuffer*>(results[i].get())\n ->device_buffer();\n- if (&*buf == &*input.buf) {...
2026-01-26T23:55:35
golang/go
c93766007dbb9c975d2f18b7c741f4804ce911c0
9859b436430aac382b337964a1b380bc4bfcda70
runtime: do not print recovered when double panic with the same value Show the "[recovered, repanicked]" message only when it is repanicked after recovered. For the duplicated panics that not recovered, do not show this message. Fixes #76099 Change-Id: I87282022ebe44c6f6efbe3239218be4a2a7b1104 Reviewed-on: https://g...
[ { "path": "src/runtime/crash_test.go", "patch": "@@ -413,6 +413,15 @@ func TestRepanickedPanicSandwich(t *testing.T) {\n \t}\n }\n \n+func TestDoublePanicWithSameValue(t *testing.T) {\n+\toutput := runTestProg(t, \"testprog\", \"DoublePanicWithSameValue\")\n+\twant := `panic: message\n+`\n+\tif !strings.Has...
2025-10-29T05:11:48
mrdoob/three.js
422684a64f5eae6cb9e556c80e20555540d1990c
88062edb091598ce32696f3c0a11d3a73c840295
AfterImageNode: Refactor code and improve demo. (#30433) * AfterImageNode: Refactor code and improve demo. * Update AfterImageNode.js * E2E: Update screenshot. * E2E: Update screenshot one more time. * E2E: Add exception.
[ { "path": "examples/jsm/tsl/display/AfterImageNode.js", "patch": "@@ -46,7 +46,9 @@ class AfterImageNode extends TempNode {\n \t\tthis.textureNodeOld = texture();\n \n \t\t/**\n-\t\t * The damping intensity as a uniform node.\n+\t\t * How quickly the after-image fades. A higher value means the after-image\n...
2025-01-31T15:50:12
denoland/deno
b18b8347f7095d85608dda41c47af3c744539787
17cdcc288c741c35465baccae737230eadb574f4
chore: macos-15-intel runner on ci (#31419) This includes fixes from https://github.com/denoland/sui/commit/e229ef18a616e76bee0f225807bc71f8376c3c9b
[ { "path": ".github/workflows/ci.generate.ts", "patch": "@@ -12,7 +12,7 @@ const ubuntuX86XlRunner = \"ghcr.io/cirruslabs/ubuntu-runner-amd64:24.04\";\n const ubuntuARMRunner = \"ghcr.io/cirruslabs/ubuntu-runner-arm64:24.04\";\n const windowsX86Runner = \"windows-2022\";\n const windowsX86XlRunner = \"window...
2025-12-08T23:07:44
golang/go
9859b436430aac382b337964a1b380bc4bfcda70
b9ef0633f6117c74fabcd7247a76b4feb86df086
cmd/asm,cmd/compile,cmd/internal/obj/riscv: use compressed instructions on riscv64 Make use of compressed instructions on riscv64 - add a compress pass to the end of the assembler, which replaces non-compressed instructions with compressed alternatives if possible. Provide a `compressinstructions` compiler and assemb...
[ { "path": "src/cmd/asm/internal/flags/flags.go", "patch": "@@ -29,8 +29,9 @@ var (\n )\n \n var DebugFlags struct {\n-\tMayMoreStack string `help:\"call named function before all stack growth checks\"`\n-\tPCTab string `help:\"print named pc-value table\\nOne of: pctospadj, pctofile, pctoline, pctoin...
2025-09-25T19:05:49
swiftlang/swift
abba80a76465447408ea8c2d59d5e4afeb0ae7f5
229eccb89926d294705e79663f6ab2140e8efe9c
CMake Runtimes: Fix target sources `target_sources` requires a scope.
[ { "path": "Runtimes/Supplemental/Runtime/CMakeLists.txt", "patch": "@@ -184,7 +184,7 @@ if(${PROJECT_NAME}_ENABLE_BACKTRACING)\n endif()\n else()\n # Other platforms can use the shared `.S` file.\n- target_sources(swiftRuntime\n+ target_sources(swiftRuntime PRIVATE\n get-cpu-context.S)...
2026-02-20T18:27:33
tensorflow/tensorflow
c5b15df2be5601f670621b2905b2b54afd7023cb
60559874dbdf2c664aac2ffe69905be8e0a70046
Clean up `IfrtIRCompileOptions.propagate_shardings` All call sites except tests are passing false to this option, so it is safe to clean this up. Cleaning this up will make it easier to implement fully asynchronous compilation since propagating sharding requires synchronously blocking IFRT IR compilation until atom pr...
[ { "path": "third_party/xla/xla/python/ifrt/ir/compiled_ifrt_ir_program.cc", "patch": "@@ -352,18 +352,11 @@ absl::StatusOr<CompiledIfrtIrProgram> CompiledIfrtIrProgram::Create(\n compile_options->mlir_dump_func_re,\n compile_options->mlir_enable_timing);\n \n- xla:...
2026-01-26T23:25:55
mrdoob/three.js
8137a7ed7a5015f0f3845416585a65788cfc86b9
df8b2266610f0ed00e10aa0593c1aea53651c131
GLSLNodeBuilder: Fix usage of `flat` qualifier. (#30428)
[ { "path": "src/renderers/webgl-fallback/nodes/GLSLNodeBuilder.js", "patch": "@@ -769,10 +769,20 @@ ${ flowData.code }\n \t\t\tfor ( const varying of varyings ) {\n \n \t\t\t\tif ( shaderStage === 'compute' ) varying.needsInterpolation = true;\n+\n \t\t\t\tconst type = this.getType( varying.type );\n-\t\t\t\...
2025-01-31T04:49:55
denoland/deno
a15cafeb3bf135f3043bc3f78b08b925ffe6a244
642f2a46a6d49b2018c042faae5407c328810d9d
feat(ext/web): transferable {Readable,Writable,Transform}Stream (#31126) https://streams.spec.whatwg.org/#rs-transfer https://streams.spec.whatwg.org/#ws-transfer https://streams.spec.whatwg.org/#ts-transfer Remaining test failures are due to our `DOMException` not correctly being serializable and can be solved in a ...
[ { "path": ".gitignore", "patch": "@@ -45,3 +45,6 @@ Untitled*.ipynb\n /.ms-playwright\n \n **/.claude/settings.local.json\n+\n+# pyenv\n+/.python-version", "additions": 3, "deletions": 0, "language": "Unknown" }, { "path": "ext/web/06_streams.js", "patch": "@@ -60,6 +60,7 @@ const {\...
2025-12-08T12:31:43
golang/go
b9ef0633f6117c74fabcd7247a76b4feb86df086
a087dea8692eee879e8226b70eb691dea7758b0b
cmd/internal/sys,internal/goarch,runtime: enable the use of compressed instructions on riscv64 Enable the use of compressed instructions on riscv64 by reducing the PC quantum to two bytes and reducing the minimum instruction length to two bytes. Change gostartcall on riscv64 to land at two times the PC quantum into go...
[ { "path": "src/cmd/internal/obj/riscv/obj.go", "patch": "@@ -4799,10 +4799,17 @@ func assemble(ctxt *obj.Link, cursym *obj.LSym, newprog obj.ProgAlloc) {\n \t\t\tv := pcAlignPadLength(p.Pc, alignedValue)\n \t\t\toffset := p.Pc\n \t\t\tfor ; v >= 4; v -= 4 {\n-\t\t\t\t// NOP\n-\t\t\t\tcursym.WriteBytes(ctxt,...
2023-08-27T09:35:33
swiftlang/swift
5e0376380e6ce5ce3d0bd9d1cf5087ad11ff3d9f
56355ad6778c3e176be8c97a981e32e04ba954e6
[CMAKE] don't expand the var CMAKE_SYSTEM_PROCESSOR to a string when … (#87359) When performing the check `if(WIN32 AND ${CMAKE_SYSTEM_PROCESSOR} MATCHES "X86")` using `${CMAKE_SYSTEM_PROCESSOR}` expands the variable eagerly, if it's empty it would lead to an error ``` CMake Error at CMakeLists.txt:101 (if): if...
[ { "path": "Runtimes/Supplemental/Runtime/CMakeLists.txt", "patch": "@@ -98,7 +98,7 @@ add_compile_options(\n \"$<$<AND:$<BOOL:${${PROJECT_NAME}_ENABLE_LIBRARY_EVOLUTION}>,$<COMPILE_LANGUAGE:Swift>>:-enable-library-evolution>\"\n \"$<$<AND:$<BOOL:${${PROJECT_NAME}_ENABLE_PRESPECIALIZATION}>,$<COMPILE_LAN...
2026-02-20T17:43:49
mrdoob/three.js
cde58e1ddc5c015e50ce8a9e3c6c9bab440e675b
2cc5bb8c6dcc691a2ae9e16762dd16fea73fc4a6
Update NodeMaterial.js Fix code demo.
[ { "path": "src/materials/nodes/NodeMaterial.js", "patch": "@@ -198,7 +198,7 @@ class NodeMaterial extends Material {\n \t\t * material.transparent = true;\n \t\t *\n \t\t * // everything behind the object will be monochromatic\n-\t\t * material.backdropNode = viewportSharedTexture().rgb.saturation( 0 );\n+\...
2025-01-30T16:28:24
denoland/deno
642f2a46a6d49b2018c042faae5407c328810d9d
2353b9ba6af282c63a1e6e88af9a86690f19ec5d
fix(lsp): don't provide organizeImports action when client provides it (#31530)
[ { "path": "cli/lsp/config.rs", "patch": "@@ -1208,6 +1208,14 @@ impl Config {\n })()\n .unwrap_or(false)\n }\n+\n+ pub fn client_provided_organize_imports_capable(&self) -> bool {\n+ (|| {\n+ let experimental = self.client_capabilities.experimental.as_ref()?;\n+ experimental.get(\"cl...
2025-12-08T10:46:22
golang/go
a087dea8692eee879e8226b70eb691dea7758b0b
e1a12c781f55da85a30fd63471f8adcba908acd2
debug/elf: sync new loong64 relocation types up to LoongArch ELF psABI v20250521 Add several new relocation types defined in newer versions of LoongArch ELF psABI v20250521, part of the v2.40 spec bundle. The new relocations are seeing increased adoption because distributions are moving to newer GNU/LLVM toolchain ver...
[ { "path": "api/next/75562.txt", "patch": "@@ -0,0 +1,38 @@\n+pkg debug/elf, const R_LARCH_TLS_DESC32 = 13 #75562\n+pkg debug/elf, const R_LARCH_TLS_DESC32 R_LARCH #75562\n+pkg debug/elf, const R_LARCH_TLS_DESC64 = 14 #75562\n+pkg debug/elf, const R_LARCH_TLS_DESC64 R_LARCH #75562\n+pkg debug/elf, const R_LA...
2025-09-13T07:57:12
tensorflow/tensorflow
9414eec009d25a4d2ce80c413a5de84609c740fc
6f5f4a29bc39c841bce4b227a0e7cfdef9ad84e9
Update Keras nightly version and drop Python 3.9 support to fix vulnerability (CVE-2025-8747) in Keras 3.10. Keras +3.11 no longer supports Python 3.9. PiperOrigin-RevId: 861355239
[ { "path": "ci/official/requirements_updater/numpy1_requirements/requirements.in", "patch": "@@ -18,7 +18,7 @@ auditwheel >= 6.1.0\n # Note that here we want the latest version that matches TF major.minor version\n # Note that we must use nightly here as these are used in nightly jobs\n # For release jobs, w...
2026-01-26T22:24:43
mrdoob/three.js
df853401acbe2d45945e1b7a23db53b877b11ecb
558b7c7a13c22e24e8fcd8c5f0eff3c0c0fc2f3d
Fix index on intersection. (#30424)
[ { "path": "src/objects/Line.js", "patch": "@@ -119,7 +119,7 @@ class Line extends Object3D {\n \t\t\t\tconst a = index.getX( i );\n \t\t\t\tconst b = index.getX( i + 1 );\n \n-\t\t\t\tconst intersect = checkIntersection( this, raycaster, _ray, localThresholdSq, a, b );\n+\t\t\t\tconst intersect = checkInter...
2025-01-30T09:08:34
swiftlang/swift
fe97a4e66f140c3ee748101026dd9a291fe05f8b
90a32371817e439dc465ec4967a68879c915f67e
[stdlib] Fix documentation typo in DebugDescription macro
[ { "path": "stdlib/public/core/DebuggerSupport.swift", "patch": "@@ -57,7 +57,7 @@ import SwiftShims\n ///\n /// The description implementation has the following requirements:\n ///\n-/// * The body of the description implementation must a single string\n+/// * The body of the description implementation must...
2025-12-22T09:35:15
golang/go
6caab99026a496107e903469d8c906be66a71896
eda2e8c683798e435e725f60f0bb580eb4aa9686
runtime: relax TestMemoryLimit on darwin a bit more Add 8MB more. Covers most of the failures watchflakes has seen. Fixes #73136 Change-Id: I593c599a9519b8b31ed0f401d4157d27ac692587 Reviewed-on: https://go-review.googlesource.com/c/go/+/708617 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gser...
[ { "path": "src/runtime/testdata/testprog/gc.go", "patch": "@@ -396,7 +396,7 @@ func gcMemoryLimit(gcPercent int) {\n \t\t// should do considerably better than this bound.\n \t\tbound := int64(myLimit + 16<<20)\n \t\tif runtime.GOOS == \"darwin\" {\n-\t\t\tbound += 16 << 20 // Be more lax on Darwin, see issu...
2025-10-02T20:09:03
denoland/deno
2353b9ba6af282c63a1e6e88af9a86690f19ec5d
40cf41275b8e1ec4358d6bca5fdecd104787e5d5
fix(ext/node): implement `DatabaseSync.aggregate()` (#31461) Implementation is based on https://github.com/nodejs/node/blob/v24.2.0/src/node_sqlite.cc It passes all tests from https://github.com/nodejs/node/blob/v24.2.0/test/parallel/test-sqlite-aggregate-function.mjs except for two test cases where it uses `mock()` ...
[ { "path": "ext/node/ops/sqlite/database.rs", "patch": "@@ -25,6 +25,7 @@ use deno_permissions::PermissionsContainer;\n use rusqlite::ffi as libsqlite3_sys;\n use rusqlite::ffi::SQLITE_DBCONFIG_DQS_DDL;\n use rusqlite::ffi::SQLITE_DBCONFIG_DQS_DML;\n+use rusqlite::ffi::sqlite3_create_window_function;\n use r...
2025-12-08T10:34:31
tensorflow/tensorflow
be9db6f8ea4e775e459327ef784c23d3883bd5c1
71703c73a765931709e9e94b6410ae8dda490330
Log failed coordination service registration attempts to facilitate debugging. PiperOrigin-RevId: 861291293
[ { "path": "third_party/xla/xla/pjrt/distributed/coordination/coordination_service_agent.cc", "patch": "@@ -177,11 +177,18 @@ absl::Status CoordinationServiceAgent::Connect() {\n n.WaitForNotification();\n \n if (!connect_status.ok()) {\n- // Exponential backoff with jitter. Note we will retry f...
2026-01-26T19:49:15
mrdoob/three.js
558b7c7a13c22e24e8fcd8c5f0eff3c0c0fc2f3d
4de68d2a02188b3f05ab7483c33aa713eed01a91
VarNode: Fix `getMemberType()` reference (#30427)
[ { "path": "src/nodes/core/VarNode.js", "patch": "@@ -82,6 +82,12 @@ class VarNode extends Node {\n \n \t}\n \n+\tgetMemberType( builder, name ) {\n+\n+\t\treturn this.node.getMemberType( builder, name );\n+\n+\t}\n+\n \tgetElementType( builder ) {\n \n \t\treturn this.node.getElementType( builder );", "...
2025-01-30T00:27:40
swiftlang/swift
5e2851d36ede48a8e9621fc9643206799f3401c1
ac04f0ea2bac143f4b12b6de82c2a9e1b117720f
ClosureSpecialization: fix two problems * insert borrow scopes for specialized guaranteed arguments: This is needed if the guaranteed argument is replaced by a copied owned value. If the argument has any use which is not compatible with "owned" ownership, we need a borrow scope. * prevent creating a specialized funct...
[ { "path": "SwiftCompilerSources/Sources/Optimizer/FunctionPasses/ClosureSpecialization.swift", "patch": "@@ -201,6 +201,13 @@ private func trySpecialize(apply: ApplySite, _ context: FunctionPassContext) ->\n return false\n }\n \n+ let specializedParameters = specialization.getSpecializedParameters()\...
2026-02-19T13:54:17
golang/go
934dbcea1a806c198a7870b1808fb8e41b568984
e4d94842207a7f29fb473ecece2acdc5a2a207f7
[dev.simd] simd: update CPU feature APIs This CL also updates the internal uses of these APIs. This CL also fixed a instable output issue left by previous CLs. Change-Id: Ibc38361d35e2af0c4943a48578f3c610b74ed14d Reviewed-on: https://go-review.googlesource.com/c/go/+/720020 Reviewed-by: Cherry Mui <cherryyz@google.c...
[ { "path": "src/simd/_gen/simdgen/gen_simdTypes.go", "patch": "@@ -146,21 +146,25 @@ type {{.Name}} struct {\n const simdFeaturesTemplate = `\n import \"internal/cpu\"\n \n+type X86Features struct {}\n+\n+var X86 X86Features\n+\n {{range .}}\n {{- if eq .Feature \"AVX512\"}}\n-// Has{{.Feature}} returns whet...
2025-11-12T19:56:09
denoland/deno
40cf41275b8e1ec4358d6bca5fdecd104787e5d5
b8b549d574eceed3275923339f402a4b3df5385e
fix(ext/node): fix sqlite extension used for testing; ensure related tests are actually meaningful (#31455) The SQLite extension-loading tests, prior to this PR, were short-circuiting due to an incorrect search path, and not actually verifying that extensions loaded. When this invalid path was fixed, the result was a ...
[ { "path": "Cargo.lock", "patch": "@@ -8527,6 +8527,13 @@ dependencies = [\n \"winnow 0.6.26\",\n ]\n \n+[[package]]\n+name = \"sqlite_extension_test\"\n+version = \"0.1.0\"\n+dependencies = [\n+ \"test_server\",\n+]\n+\n [[package]]\n name = \"stable_deref_trait\"\n version = \"1.2.0\"\n@@ -9346,14 +9353,6...
2025-12-08T10:30:54
mrdoob/three.js
9e17a9a5be623a2e3383d1490031ebd26bb350e6
7d4b4ae02d54343f3ea8c39423e9b5ca2b315190
Update StorageBufferNode.js Fix JSDoc.
[ { "path": "src/nodes/accessors/StorageBufferNode.js", "patch": "@@ -50,7 +50,7 @@ class StorageBufferNode extends BufferNode {\n \t * Constructs a new storage buffer node.\n \t *\n \t * @param {StorageBufferAttribute|StorageInstancedBufferAttribute|BufferAttribute} value - The buffer data.\n-\t * @param {St...
2025-01-29T14:10:57
tensorflow/tensorflow
fba3f1dde49cd50cf63655aa020550aaf561c677
a4cf99f5c343ec4d848c5fe48ab45090267c0775
PR #36812: Bump actions/checkout from 6.0.0 to 6.0.2 Imported from GitHub PR https://github.com/openxla/xla/pull/36812 Bumps [actions/checkout](https://github.com/actions/checkout) from 6.0.0 to 6.0.2. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/actions/checkout/releases...
[ { "path": "third_party/xla/.github/workflows/bazel_dependency_violations.yml", "patch": "@@ -48,7 +48,7 @@ jobs:\n docker-images: true\n swap-storage: false\n - name: \"Checking out repository\"\n- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1\n+ ...
2026-01-26T15:35:38
kubernetes/kubernetes
85aceb54fdb395b43c77836f169df1e3edeab01c
0eabb569fbced0fc37d98ea6a6e6734d7a1b485e
Remove fmt.Println() added for debug
[ { "path": "pkg/controller/devicetainteviction/device_taint_eviction_test.go", "patch": "@@ -1995,7 +1995,6 @@ func testHandlers(tContext *testContext, tc testCase) {\n \t\tassertEqual(tContext, state.queuedProcessed, tContext.mockQueue.State(), prefix+\"work queue after processing\", queueCmpOpts...)\n \t\t...
2026-01-22T13:04:15
mrdoob/three.js
7d4b4ae02d54343f3ea8c39423e9b5ca2b315190
0b79d6f41a2a1382467aafeaab1e1a02fc9eb120
WebGLBackend: Fix depth formats. (#30422)
[ { "path": "src/renderers/webgl-fallback/utils/WebGLTextureUtils.js", "patch": "@@ -261,7 +261,8 @@ class WebGLTextureUtils {\n \n \t\tif ( glFormat === gl.DEPTH_COMPONENT ) {\n \n-\t\t\tif ( glType === gl.UNSIGNED_INT ) internalFormat = gl.DEPTH24_STENCIL8;\n+\t\t\tif ( glType === gl.UNSIGNED_SHORT ) intern...
2025-01-29T09:22:54
denoland/deno
b8b549d574eceed3275923339f402a4b3df5385e
61cf9333a914fa3eb1d5295f01e2ccb12f08c3cb
fix(node): missing `statfs` export from `node:fs/promises` (#31528) We already had the functionality, we just didn't export it. Fixes https://github.com/denoland/deno/issues/31526
[ { "path": "ext/node/polyfills/fs/promises.ts", "patch": "@@ -16,6 +16,7 @@ export const readlink = fsPromises.readlink;\n export const symlink = fsPromises.symlink;\n export const lstat = fsPromises.lstat;\n export const stat = fsPromises.stat;\n+export const statfs = fsPromises.statfs;\n export const fstat...
2025-12-08T09:45:01
swiftlang/swift
ac04f0ea2bac143f4b12b6de82c2a9e1b117720f
1d2177884e4e663af9f2d0363126dfeec555eb2e
MemoryLifetimeVerifier: fix two false alarms * fix the handling of `store [assign]` * ignore inout function arguments if the callee has no side-effects computed, yet. This can happen if a store to an unused inout has been eliminated at a call site and afterwards the callee is specialized and therefore doesn't have the...
[ { "path": "lib/SIL/Verifier/MemoryLifetimeVerifier.cpp", "patch": "@@ -335,16 +335,16 @@ bool MemoryLifetimeVerifier::applyMayRead(Operand *argOp, SILValue addr) {\n return false;\n }\n \n+ if (!addr)\n+ return false;\n+\n for (SILFunction *callee : callees) {\n- if (addr) {\n- if (calle...
2026-02-19T13:52:56
golang/go
e4d94842207a7f29fb473ecece2acdc5a2a207f7
d7a0c45642fef106b5443aa16937fd4bffb51d12
[dev.simd] cmd/compile: fix unstable output This CL fixed an error left by CL 718160. Change-Id: I442ea59bc1ff0dda2914d1858dd5ebe93e2818dc Reviewed-on: https://go-review.googlesource.com/c/go/+/720281 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: David Chase <d...
[ { "path": "src/cmd/compile/internal/amd64/simdssa.go", "patch": "@@ -42,32 +42,50 @@ func ssaGenSIMDValue(s *ssagen.State, v *ssa.Value) bool {\n \t\tssa.OpAMD64VPBROADCASTW512,\n \t\tssa.OpAMD64VPBROADCASTD512,\n \t\tssa.OpAMD64VPBROADCASTQ512,\n-\t\tssa.OpAMD64VPMOVWB128,\n+\t\tssa.OpAMD64VPMOVWB128_128,\...
2025-11-13T17:07:16
tensorflow/tensorflow
0daedf313b2d39fd68926ab2a657af57e94f74a9
d0c101630224190bbbca4b2e827bcefc1413dadd
PR #36811: Bump github/codeql-action from 4.31.10 to 4.31.11 Imported from GitHub PR https://github.com/openxla/xla/pull/36811 Bumps [github/codeql-action](https://github.com/github/codeql-action) from 4.31.10 to 4.31.11. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/githu...
[ { "path": "third_party/xla/.github/workflows/scorecards-analysis.yml", "patch": "@@ -67,6 +67,6 @@ jobs:\n # Upload the results to GitHub's code scanning dashboard (optional).\n # Commenting out will disable upload of results to your repo's Code Scanning dashboard\n - name: \"Upload to cod...
2026-01-26T14:40:50
mrdoob/three.js
089e36db16a6fbaf8cd12fbc8b6abfa3beaa4801
99b02bbe5fe783c8e14fd00c1430d959a7960efc
XRManager: Fix foveation. (#30417)
[ { "path": "src/renderers/common/Textures.js", "patch": "@@ -127,18 +127,9 @@ class Textures extends DataMap {\n \n \t\tconst options = { sampleCount };\n \n-\t\t// when using the WebXR Layers API, the render target uses external textures which\n-\t\t// require no manual updates\n+\t\t// XR render targets re...
2025-01-28T15:43:12
denoland/deno
99c4d22b8574557921e45466df1f6d4f569bee8b
c27d8f047bec19a175e8c5708e865fba85189023
Revert "fix(resolver): fall back to execution if can't resolve types" (#31513) Reverts denoland/deno#31507
[ { "path": "libs/resolver/npm/mod.rs", "patch": "@@ -513,21 +513,6 @@ impl<\n match resolution_result {\n Ok(url) => Ok(url),\n Err(err) => {\n- if err.as_types_not_found().is_some() {\n- // failed to find types, just fall back to normal resolution\n- debug_assert_eq!...
2025-12-07T15:46:49
swiftlang/swift
87ddf4a7a1db33036f2756144439ac321f7d40a9
0a484457c37af48d888d1a0bba5cf0e596bfa1f9
SemanticARCOpts: add ImplicitActorToOpaqueIsolationCast to the list of forwarding instructions Fixes a crash
[ { "path": "lib/SILOptimizer/SemanticARC/SemanticARCOptVisitor.h", "patch": "@@ -196,6 +196,7 @@ struct LLVM_LIBRARY_VISIBILITY SemanticARCOptVisitor\n FORWARDING_INST(DifferentiableFunctionExtract)\n FORWARDING_INST(LinearFunctionExtract)\n FORWARDING_INST(FunctionExtractIsolation)\n+ FORWARDING_INST...
2026-02-20T15:05:52
golang/go
8e734ec954ed25e4c41e7d5a6f59ed1c1072ea83
592775ec7d8bbc99ee0a1ada56c4490c855f9385
go/ast: fix BasicLit.End position for raw strings containing \r This CL causes the parser to record in a new field, BasicLit.EndPos, the actual end position of each literal token, and to use it in BasicLit.End. Previously, the End was computed heuristically as Pos + len(Value). This heuristic is incorrect for a multil...
[ { "path": "api/next/76031.txt", "patch": "@@ -0,0 +1 @@\n+pkg go/ast, type BasicLit struct, ValueEnd token.Pos #76031", "additions": 1, "deletions": 0, "language": "Plain Text" }, { "path": "doc/next/6-stdlib/99-minor/go/ast/76031.md", "patch": "@@ -0,0 +1,5 @@\n+The new [BasicLit.Va...
2025-11-12T22:13:40
mrdoob/three.js
99b02bbe5fe783c8e14fd00c1430d959a7960efc
5077c093b7dc6f43452d2b455e3a25b0cba4bae8
WebGLBackend: Fix context parameter. (#30413) * WebGLBackend: Fix context parameter. * WebGLBackend: Disable depth buffer of canvas.
[ { "path": "src/renderers/common/XRManager.js", "patch": "@@ -589,8 +589,6 @@ class XRManager extends EventDispatcher {\n \n \t\t\t//\n \n-\t\t\tconst attributes = gl.getContextAttributes();\n-\n \t\t\tif ( this._useLayers === true ) {\n \n \t\t\t\t// default path using XRWebGLBinding/XRProjectionLayer\n@@ -...
2025-01-28T13:20:53
tensorflow/tensorflow
2c1f70c74e3b1ec24e1504cc1b1c79405eb00f7d
e7dc89ceeb9b082f76e09b2871358c02ce075545
PR #36798: Fix dtype reference in shapes documentation Imported from GitHub PR https://github.com/openxla/xla/pull/36798 Corrected the dtype reference from 'bf316' to 'bf16'. 📝 Summary of Changes Please provide a clear and concise summary of the changes you've made. 🎯 Justification Explain why this change is impo...
[ { "path": "third_party/xla/docs/shapes.md", "patch": "@@ -15,8 +15,8 @@ This consists of the following components:\n * This is the unique name for the operation.\n * Shape: `bf16[8,1,1280,16384]`\n * This is the output shape of the Op. Here the dtype is\n- [bf316](https://en.wikipedia.o...
2026-01-26T13:29:49
kubernetes/kubernetes
dd78c810577c90535b13315c63b59da8031f1dbe
2274f69d9a00b52e076c3df5b82827f756ec8c81
E2E framework ssh: avoid log spam in runSSHCommand Emitting "error dialing" on each retry spams the test log output even when the tests succeed. Using Eventually also has other advantages (better failure message, support for Gingko progress reports when a test is stuck).
[ { "path": "test/e2e/framework/ssh/ssh.go", "patch": "@@ -247,16 +247,12 @@ func runSSHCommand(ctx context.Context, cmd, user, host string, signer ssh.Signe\n \t\tAuth: []ssh.AuthMethod{ssh.PublicKeys(signer)},\n \t\tHostKeyCallback: ssh.InsecureIgnoreHostKey(),\n \t}\n-\tclient, err := ssh.Dial(\...
2026-01-22T11:00:09
denoland/deno
c27d8f047bec19a175e8c5708e865fba85189023
bc9d356059abf4bb04c9849edbfcc53ebcd363ed
fix: make '@types' package resolution more consistent (#31512) Shifts `@types` package resolution down into node_resolver so it's always done. We were being inconsistent.
[ { "path": "Cargo.lock", "patch": "@@ -2520,9 +2520,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_npm\"\n-version = \"0.42.1\"\n+version = \"0.42.2\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"7676aeffeeefb7ef4343a5f5c04e6bf97d5b24038d04c119fb3891fa56a1d146\"...
2025-12-06T16:59:06
golang/go
590cf18dafcad9f39a3bf2ecf9f1b7578471eff8
c12c33709923907348837e8131122ec4c45d2c83
crypto/mlkem/mlkemtest: add derandomized Encapsulate768/1024 Fixes #73627 Change-Id: I6a6a69649927e9b1cdff910832084fdc04ff5bc2 Reviewed-on: https://go-review.googlesource.com/c/go/+/703795 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Auto-Submit: Filippo Valsorda <filippo@...
[ { "path": "api/next/73627.txt", "patch": "@@ -0,0 +1,2 @@\n+pkg crypto/mlkem/mlkemtest, func Encapsulate1024(*mlkem.EncapsulationKey1024, []uint8) ([]uint8, []uint8, error) #73627\n+pkg crypto/mlkem/mlkemtest, func Encapsulate768(*mlkem.EncapsulationKey768, []uint8) ([]uint8, []uint8, error) #73627", "a...
2025-09-05T17:37:45
swiftlang/swift
0a484457c37af48d888d1a0bba5cf0e596bfa1f9
f3f497b4f590f21b2d0ad80fe551379c3c84526e
SIL: fix the ownership of the `initializeDistributedRemoteActor` This builtin is allocating a reference-counted object. Therefore its ownership needs to be "owned" rather than "none". Fixes a mis-compile
[ { "path": "lib/SIL/IR/ValueOwnership.cpp", "patch": "@@ -639,7 +639,7 @@ CONSTANT_OWNERSHIP_BUILTIN(Owned, CreateAsyncTask)\n CONSTANT_OWNERSHIP_BUILTIN(None, ConvertTaskToJob)\n CONSTANT_OWNERSHIP_BUILTIN(None, InitializeDefaultActor)\n CONSTANT_OWNERSHIP_BUILTIN(None, DestroyDefaultActor)\n-CONSTANT_OWNER...
2026-02-20T15:05:18
mrdoob/three.js
2539ed25cb0c08074d14da7a86bb548d98a060b5
84b5607155a9cc661a2b51f0fd70f6ad6f7f2680
GltfLoader: fix too generic assigment of light decay (#30411) Co-authored-by: Samuel Rigaud <srigaud@duodisplay.com>
[ { "path": "examples/jsm/loaders/GLTFLoader.js", "patch": "@@ -600,8 +600,6 @@ class GLTFLightsExtension {\n \t\t// here, because node-level parsing will only override position if explicitly specified.\n \t\tlightNode.position.set( 0, 0, 0 );\n \n-\t\tlightNode.decay = 2;\n-\n \t\tassignExtrasToUserData( lig...
2025-01-27T17:33:22
tensorflow/tensorflow
6c52532e01c7a4c1c839ef7b6acf31ed36dc5bc5
7f329d57847a8c3394e480a46f4ca8afc380ff53
[XLA:GPU] Fixes LayoutNormalization pass change detection. The LayoutNormalization pass now correctly detects changes in two scenarios: 1. When a CustomCallTransformer modifies a custom call instruction in place but returns std::nullopt, the pass will now be marked as changed. 2. The DefaultAction for instructions l...
[ { "path": "third_party/xla/xla/service/BUILD", "patch": "@@ -5726,6 +5726,7 @@ cc_library(\n \"//xla/tsl/platform:statusor\",\n \"@com_google_absl//absl/algorithm:container\",\n \"@com_google_absl//absl/container:flat_hash_set\",\n+ \"@com_google_absl//absl/container:inlined_v...
2026-01-26T09:59:51
kubernetes/kubernetes
e08030fa5f3435057648f5b538c9cecc1f29f774
0eabb569fbced0fc37d98ea6a6e6734d7a1b485e
Fix post-kubernetes-push-e2e-node-perf-npb-is-test-images problem (arm64) Signed-off-by: Davanum Srinivas <davanum@gmail.com>
[ { "path": "test/images/node-perf/npb-is/Dockerfile", "patch": "@@ -30,7 +30,13 @@ WORKDIR ./NPB3.3.1/NPB3.3-OMP\n RUN sed -i '1i#!/bin/sh' sys/print_header sys/print_instructions\n \n # Create build config based on the architecture and build the workload.\n-RUN if [ $(arch) != \"x86_64\" ]; then \\\n+# arm6...
2026-01-22T04:03:54
golang/go
c12c33709923907348837e8131122ec4c45d2c83
bc159638135e751a291fe6753fc8c8c3d61be863
cmd/compile: teach prove about subtract idioms For v = x-y: if y >= 0 then v <= x if y <= x then v >= 0 (With appropriate guards against overflow/underflow.) Fixes #76304 Change-Id: I8f8f1254156c347fa97802bd057a8379676720ae Reviewed-on: https://go-review.googlesource.com/c/go/+/720740 Reviewed-by: Mark Free...
[ { "path": "src/cmd/compile/internal/ssa/prove.go", "patch": "@@ -1945,6 +1945,7 @@ func (ft *factsTable) flowLimit(v *Value) {\n \t\tft.newLimit(v, a.sub(b, uint(v.Type.Size())*8))\n \t\tft.detectMod(v)\n \t\tft.detectSliceLenRelation(v)\n+\t\tft.detectSubRelations(v)\n \tcase OpNeg64, OpNeg32, OpNeg16, OpN...
2025-11-14T23:26:36
mrdoob/three.js
84b5607155a9cc661a2b51f0fd70f6ad6f7f2680
d969abd832c1799fa7b3380701c05a42daa7e91e
TSLEncoder: Fix transpilation issues. (#30410) * TSLEncoder: Fix number imports. * GLSLDecoder: Improve uint support. * GLSLDecoder: Fix CodeQL feedback.
[ { "path": "examples/jsm/transpiler/GLSLDecoder.js", "patch": "@@ -461,11 +461,11 @@ class GLSLDecoder {\n \t\t\tconst isHex = /^(0x)/.test( firstToken.str );\n \n \t\t\tif ( isHex ) type = 'int';\n-\t\t\telse if ( /u$/.test( firstToken.str ) ) type = 'uint';\n+\t\t\telse if ( /u$|U$/.test( firstToken.str ) ...
2025-01-27T17:11:06
swiftlang/swift
f3f497b4f590f21b2d0ad80fe551379c3c84526e
a03ac54643286fd683c6fb17b1b8742090f20df9
DestroyAddrHoisting: don't hoist `destroy_addr` if the operand address is an `unchecked_addr_cast` Such casts could cast from a vector to its first element. Prevent DestroyAddrHoisting from hoisting such `destroy_addr`s because it would also replace the address from the cast result to the cast operand. Fixes a mis-co...
[ { "path": "lib/SILOptimizer/Transforms/DestroyAddrHoisting.cpp", "patch": "@@ -109,6 +109,20 @@ using namespace swift;\n \n namespace {\n \n+static bool hasUncheckedAddrCast(SILValue v) {\n+ if (isa<UncheckedAddrCastInst>(v))\n+ return true;\n+ if (auto *bai = dyn_cast<BeginAccessInst>(v)) {\n+ retu...
2026-02-20T15:03:42
denoland/deno
bc9d356059abf4bb04c9849edbfcc53ebcd363ed
8c46ac3228762fb442b0080c7eb81e5e918543bb
fix(node/net): return string `family` in `server.address()` (#31465) ## Summary Aligns Deno's Node.js compatibility layer (`node:net`, `node:http`, `node:https`, `node:http2`, `node:dns`) with Node.js v18.4.0+ behavior by returning the `family` property as a string (`"IPv4"` or `"IPv6"`) rather than a number in `serv...
[ { "path": "ext/node/polyfills/dns.ts", "patch": "@@ -234,8 +234,19 @@ export function lookup(\n }\n \n if (options?.family != null) {\n- validateOneOf(options.family, \"options.family\", validFamilies);\n- family = options.family;\n+ // Accept both numeric (0, 4, 6) and string ('IPv4'...
2025-12-06T03:51:55
tensorflow/tensorflow
867b5f103927af288368b803436fd96147dde348
06a2678d429f5800e04134548a84e8f63e9f0533
[XLA:GPU] [NFC] improve debuging and comment updates in symbolic analysis split test of concatenate tiling into two to make it easier to debug PiperOrigin-RevId: 860453245
[ { "path": "third_party/xla/xla/codegen/tiling/symbolic_tile_analysis.cc", "patch": "@@ -97,7 +97,7 @@ using ::mlir::MLIRContext;\n // `ComputeOutputTilingInfo` creates a new instance of this struct.\n struct OutputTilingInfo {\n // The number of output tiles for each dimension of the root indexing.\n- //...
2026-01-24T10:05:34