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
bbc02e4d6ea99049c1c9cee1e0717f042c6fd71c
92e73b939ac0561ababfdd24fc891e517a769f92
fix(ext/node): `sqlite`'s `StatementSync` compatibility (#31941) Allows https://github.com/nodejs/node/blame/v24.12.0/test/parallel/test-sqlite-statement-sync.js to pass
[ { "path": "ext/node/ops/sqlite/mod.rs", "patch": "@@ -98,11 +98,9 @@ pub enum SqliteError {\n #[property(\"code\" = self.code())]\n InvalidExpandedSql,\n #[class(range)]\n- #[error(\n- \"The value of column {0} is too large to be represented as a JavaScript number: {1}\"\n- )]\n+ #[error(\"Value...
2026-01-24T10:42:14
tensorflow/tensorflow
4915c5c9ac17aa45e99f9a071c7d11fc172b8149
9867761014dd3916dea88a37a15a9f47310be934
[XLA:MSA] Fix scheduling corner cases in MSA - * Among all the instructions that are to be scheduled between time `t` and `t+1` * Schedule 'copy-done's first to avoid unnecessary overlaps. * The eviction schedule before time in MSA is conservatively scheduled earlier by 1, we wont fix that as part of this cl. * Sched...
[ { "path": "third_party/xla/xla/service/memory_space_assignment/algorithm.cc", "patch": "@@ -6907,6 +6907,9 @@ AllocationResult MsaAlgorithm::Evict(const AllocationRequest& request,\n // start time to ensure that the value is created before we start copying\n // back to default memory.\n int64_t evicti...
2026-02-11T21:53:19
mrdoob/three.js
6ff21e0942e15845f0fbffc309bba51270ae4063
92bd89f2cc36bfa029fcbfe260130c96895fdc1a
RapierPhysics: Add heightfield support. (#30906) * Add rapier terrain physics example * Add screenshot (same as ammo version) and entry to files.json for physics_rapier_terrain * fix linting error by removing unused variable declaration * Responding to PR feedback Use RapierPhysics instead of direct Rapier in exam...
[ { "path": "examples/files.json", "patch": "@@ -509,7 +509,9 @@\n \t\t\"physics_rapier_instancing\",\n \t\t\"physics_rapier_joints\",\n \t\t\"physics_rapier_character_controller\",\n-\t\t\"physics_rapier_vehicle_controller\"\n+\t\t\"physics_rapier_vehicle_controller\",\n+\t\t\"physics_rapier_terrain\"\n+\n \...
2025-04-12T10:12:44
golang/go
c1acdcb34560b20291cf55c988d0f883a38e8bbf
8ae5d408ed62d234cb72adebb9a23e08da1cedc6
crypto/x509: prevent HostnameError.Error() from consuming excessive resource Constructing HostnameError.Error() takes O(N^2) runtime due to using a string concatenation in a loop. Additionally, there is no limit on how many names are included in the error message. As a result, a malicious attacker could craft a certif...
[ { "path": "src/crypto/x509/verify.go", "patch": "@@ -108,31 +108,38 @@ type HostnameError struct {\n \n func (h HostnameError) Error() string {\n \tc := h.Certificate\n+\tmaxNamesIncluded := 100\n \n \tif !c.hasSANExtension() && matchHostnames(c.Subject.CommonName, h.Host) {\n \t\treturn \"x509: certificate...
2025-11-24T19:56:23
denoland/deno
92e73b939ac0561ababfdd24fc891e517a769f92
59fe2aa577891618d6610a47f8a4ddadd3a39e2a
fix(node): throw ERR_INVALID_ARG_TYPE for invalid fs.readFile path (#31918)
[ { "path": "ext/node/polyfills/_fs/_fs_readFile.ts", "patch": "@@ -12,15 +12,18 @@ import {\n import { Buffer } from \"node:buffer\";\n import { readAllSync } from \"ext:deno_io/12_io.js\";\n import { FileHandle } from \"ext:deno_node/internal/fs/handle.ts\";\n-import { pathFromURL } from \"ext:deno_web/00_i...
2026-01-24T00:36:19
swiftlang/swift
840b318e7b4750fa47581d7ac7832147132719b8
22b79a56640abacc412e7504af0ca5c7707231f1
[cxx-interop] Fix missing type traits for enums imported from ObjC We did not generate type traits for enums that were imported from ObjC, as a result whenever those types are used in a generic context (e.g., as the generic argument of an optional) we produced a reverse interop header that did not compile. This patch ...
[ { "path": "lib/PrintAsClang/ModuleContentsWriter.cpp", "patch": "@@ -567,11 +567,12 @@ class ModuleWriter {\n }\n if (!isa<clang::TypeDecl>(clangDecl))\n return;\n- // Get the underlying clang type from a type alias decl or record decl.\n+ // Get the underlying clang type from a type ali...
2026-02-27T18:25:19
mrdoob/three.js
92bd89f2cc36bfa029fcbfe260130c96895fdc1a
e431ae3df64a00b4130d94992203d57fa629cb0e
CapsuleGeometry: Change length param to height, fix UVs (#30915) * CapsuleGeometry: Fix prop name Change length to height; matching heightSegments and other geometries * CapsuleGeometry: improve UVs, fix capSegments parameter * Remove noop section check * Fix extend test
[ { "path": "docs/api/ar/geometries/CapsuleGeometry.html", "patch": "@@ -47,11 +47,11 @@ <h2>مثال الكود</h2>\n \t\t<h2>المنشئ (Constructor)</h2>\n \n \t\t<h3>\n- \t\t[name]([param:Float radius], [param:Float length], [param:Integer capSegments], [param:Integer radialSegments])\n+ \t\t[name]([param:Float radi...
2025-04-12T09:44:04
kubernetes/kubernetes
ae8838f58a5859c33f2443b7df8a4bc525fde95b
95616cecda20138fc1256a63f1d8c5c5f6d7d4ae
Fixes under staging.
[ { "path": "staging/src/k8s.io/apiserver/pkg/quota/v1/resources.go", "patch": "@@ -17,7 +17,7 @@ limitations under the License.\n package v1\n \n import (\n-\t\"sort\"\n+\t\"slices\"\n \t\"strings\"\n \n \tcorev1 \"k8s.io/api/core/v1\"\n@@ -198,7 +198,7 @@ func Intersection(a []corev1.ResourceName, b []corev...
2026-02-06T21:44:34
tensorflow/tensorflow
e49a0a903a55d03769f30d284e5816a26a85b9a3
be4c47ea25b49a457eeb89c7d7dca024bd3e9376
[XLA] HloDimensionAnalysis doesn't currently support non-flat graphs. Error out instead of silently propagating only through the first callsite. PiperOrigin-RevId: 868807570
[ { "path": "third_party/xla/xla/hlo/analysis/hlo_dimension_analysis.cc", "patch": "@@ -262,6 +262,10 @@ absl::Status HloDimensionInfoPropagation::HandleGetTupleElement(\n absl::Status HloDimensionInfoPropagation::HandleCall(HloInstruction* call) {\n RETURN_IF_ALREADY_PROPAGATED(call);\n HloComputation* c...
2026-02-11T21:03:24
golang/go
8ae5d408ed62d234cb72adebb9a23e08da1cedc6
c5c05a0e43d062a89fc8d4172d3c043617d9dd81
spec: more precise prose for built-in function new 1) explain new(type) (simpler) before new(expr) (more complicated) 2) for new(expr), explain what happens when expr is an untyped bool 3) explain that new(nil) is not permitted 4) streamline examples slightly Fixes #76122. Change-Id: I5ddb26bd88241b4b2b9aa9b532a62f7...
[ { "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 18, 2025)\",\n+\t\"Subtitle\": \"Language version go1.26 (Dec 2, 2025)\",\n \t\"Path\": \"/ref/spec\"\n }-->\n \n@@ -7794,40 +7794,32...
2025-11-20T22:05:27
denoland/deno
59fe2aa577891618d6610a47f8a4ddadd3a39e2a
e6e72e57c2e2566b54f4672e03a6ff4d91d7b167
fix(ext/web): support object in `DOMException` second argument for Node.js compat (#31939) Fix #31915
[ { "path": "ext/web/01_dom_exception.js", "patch": "@@ -18,6 +18,7 @@ const {\n ObjectPrototypeIsPrototypeOf,\n ObjectSetPrototypeOf,\n ReflectConstruct,\n+ ReflectHas,\n Symbol,\n SymbolFor,\n } = primordials;\n@@ -95,21 +96,43 @@ class DOMException {\n [_code];\n \n // https://webidl.spec.wh...
2026-01-23T19:38:56
mrdoob/three.js
3152a8b95d40aa2c998b172c48286e66efd289ce
929c4764effe5eadd878fbdba2d1028c2a7e4fab
Editor: Fix selection box update when reparenting objects in hierarchy (#30904) * Editor: Dispatch objectChanged signal on object movement * Update screenshot for WebGL buffer geometry attributes * Revert "Update screenshot for WebGL buffer geometry attributes" This reverts commit cbb40c495407c86b157bd015985ca28ed4...
[ { "path": "editor/js/commands/MoveObjectCommand.js", "patch": "@@ -50,6 +50,9 @@ class MoveObjectCommand extends Command {\n \t\tthis.object.parent = this.newParent;\n \n \t\tthis.object.dispatchEvent( { type: 'added' } );\n+\t\tthis.editor.signals.objectChanged.dispatch( this.object );\n+\t\tthis.editor.si...
2025-04-11T08:29:56
tensorflow/tensorflow
20fc1fb2cea94e34157a95274efdf6bb9c3cdebd
3f7ce2a24e0871e86576389d1c7ffd0b51b1f73b
Fixes a bug in peak priority rematerialization. During one single rematerialization pass, a new instruction being inserted into the instruction list might have its placement depend on instructions that have been killed by earlier steps. Creates a safe insertion method to avoid dead instructions without requiring a DCE....
[ { "path": "third_party/xla/xla/hlo/transforms/simplifiers/BUILD", "patch": "@@ -983,6 +983,7 @@ xla_cc_test(\n \"@com_google_absl//absl/status\",\n \"@com_google_absl//absl/status:statusor\",\n \"@com_google_absl//absl/strings\",\n+ \"@com_google_absl//absl/types:span\",\n ...
2026-02-11T20:10:24
golang/go
8b5db48db11f6ec075fd1ea528a5d611579c3a0d
94616dad425959b92d50498e1a18e47e5e6c8709
net/http: deflake TestClientConnReserveAndConsume This test includes an assertion that a client conn's state hook is called exactly once, but some of the test cases can result in two events occurring: A request completes and a connection closes. Change the assertion to just check that the hook is called at least once...
[ { "path": "src/net/http/clientconn_test.go", "patch": "@@ -286,9 +286,10 @@ func TestClientConnReserveAndConsume(t *testing.T) {\n \t\t\t\tsynctest.Wait()\n \n \t\t\t\t// State hook should be called, either to report the\n-\t\t\t\t// connection availability increasing or the connection closing.\n-\t\t\t\tif...
2025-12-01T20:28:19
denoland/deno
3403492db3e507e22bb16770a48bccfbeb3160fd
79716029c3d02664be48785d58a413683df9e66f
fix(ext/node): retry stale keepAlive connections in http client (#31932) Closes https://github.com/denoland/deno/issues/31891 When a server closes an idle keepAlive connection, the client's HTTP agent may still have the socket pooled. Attempting to reuse this stale socket results in ECONNRESET ("socket hang up"). Thi...
[ { "path": "ext/node/polyfills/http.ts", "patch": "@@ -432,6 +432,8 @@ class ClientRequest extends OutgoingMessage {\n }\n \n if (this.agent) {\n+ // Store options for potential retry on stale keepAlive connections.\n+ this._agentOptions = optsWithoutSignal;\n this.agent.addRequest(th...
2026-01-23T15:48:24
mrdoob/three.js
fec7a6c769ab32ecd3a68a452b3ef03ac37f0449
7cbe312421a64e1224ef4e4fc6b2ae7cf6ee43ca
WebGPURenderer: Fix early-z rejection (#30891) * fix early-z rejection * cleanup * water material as transparent * using `.colorNode` instead of `.fragmentNode` * fix texture matrix update
[ { "path": "src/renderers/common/RenderList.js", "patch": "@@ -19,10 +19,6 @@ function painterSortStable( a, b ) {\n \n \t\treturn a.renderOrder - b.renderOrder;\n \n-\t} else if ( a.material.id !== b.material.id ) {\n-\n-\t\treturn a.material.id - b.material.id;\n-\n \t} else if ( a.z !== b.z ) {\n \n \t\tr...
2025-04-08T12:15:41
swiftlang/swift
c496931403193948d2b7c5280bf012502c498d67
22b79a56640abacc412e7504af0ca5c7707231f1
[Caching] Support -debug-module-path type of debug info Add flag `-debug-module-cache-key` and flag `-debug-module-self-key` to support embedded swift module output in the debug info via CASID. rdar://169110002
[ { "path": "include/swift/AST/DiagnosticsFrontend.def", "patch": "@@ -97,6 +97,8 @@ WARNING(warning_option_requires_specific_sanitizer, none,\n \n ERROR(error_option_missing_required_argument, none,\n \"option '%0' is missing a required argument (%1)\", (StringRef, StringRef))\n+ERROR(error_option_miss...
2026-02-18T00:53:25
kubernetes/kubernetes
18f56fa7c72228e4590557e877ca79286b5ba10e
0cf6c382a04d9669db210e95f3d62276376730c2
fix(kube-proxy): skip topology hints logging when no ready endpoints exist When all endpoints are non-ready (ready=false, serving=false, terminating=false), the topologyModeFromHints function was incorrectly logging "Ignoring same-zone topology hints for service since no hints were provided for zone" because the boole...
[ { "path": "pkg/proxy/topology.go", "patch": "@@ -168,6 +168,7 @@ func topologyModeFromHints(svcInfo ServicePort, endpoints []Endpoint, nodeName,\n \t\treturn \"\"\n \t}\n \n+\thasReadyEndpoints := false\n \thasEndpointForNode := false\n \tallEndpointsHaveNodeHints := true\n \thasEndpointForZone := false\n@@...
2026-02-04T12:04:19
golang/go
42e03bbd27a31e389ca37863b0bb90692086f408
18015e8c369df15ca73fc00d6db8efc0590236ba
debug/elf: correct case of DWARF in comment Change-Id: I5b80b0e3e50fafdb732c732cdae6e2756d919d20 Reviewed-on: https://go-review.googlesource.com/c/go/+/725360 Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> Reviewed-by: Mark Freeman <markfreeman@google.com> Auto-Submit: Ian Lance Taylor <iant@golang.org> Reviewed-...
[ { "path": "src/debug/elf/file.go", "patch": "@@ -1300,7 +1300,7 @@ func (f *File) DWARF() (*dwarf.Data, error) {\n \t\treturn b, nil\n \t}\n \n-\t// There are many DWARf sections, but these are the ones\n+\t// There are many DWARF sections, but these are the ones\n \t// the debug/dwarf package started with....
2025-11-28T22:34:06
tensorflow/tensorflow
642f5c64283c78e1fdd3d8efc24cb740185f5d91
cb145f69de51dec046b6fda49150465311986cad
Fix a bug in `RemapPlan::Validate()` where it was requiring non-addressable output devices to have a mapping PiperOrigin-RevId: 868767737
[ { "path": "third_party/xla/xla/python/ifrt/remap_plan.cc", "patch": "@@ -315,7 +315,10 @@ absl::Status RemapPlan::Validate() const {\n std::vector<std::vector<bool>> in_used_buffers_list(num_inputs);\n for (int i = 0; i < num_inputs; ++i) {\n in_used_buffers_list[i].resize(\n- /*count=*/input...
2026-02-11T19:31:29
mrdoob/three.js
7cbe312421a64e1224ef4e4fc6b2ae7cf6ee43ca
205d56c6da86bbba92fd79176b5ee9bd38ba6fa8
TSL: Fix `texture()` matrix sync (#30893)
[ { "path": "src/nodes/accessors/TextureNode.js", "patch": "@@ -266,7 +266,7 @@ class TextureNode extends UniformNode {\n \tsetUpdateMatrix( value ) {\n \n \t\tthis.updateMatrix = value;\n-\t\tthis.updateType = value ? NodeUpdateType.RENDER : NodeUpdateType.NONE;\n+\t\tthis.updateType = value ? NodeUpdateType...
2025-04-08T07:04:47
denoland/deno
e57d3697b2e89f92ed18ac1a985a5697054ff78d
8eb295d6fb178bceb1ef90d339720cab4d572a32
fix(ext/node): align assert throws/rejects signatures (#31934) Fixes #31931
[ { "path": "ext/node/polyfills/assert.ts", "patch": "@@ -519,46 +519,34 @@ function expectsNoError(\n \n function throws(\n fn: () => void,\n- message?: string,\n-): void;\n-function throws(\n- fn: () => void,\n- error?: Function,\n message?: string | Error,\n ): void;\n function throws(\n fn: () =>...
2026-01-23T07:47:09
mrdoob/three.js
205d56c6da86bbba92fd79176b5ee9bd38ba6fa8
0356d98e2888bd535905c845f8233ad625a7de32
Water2Mesh: Fix missing `material.transparent=true` (#30892) * water material as transparent * using `.colorNode` instead of `.fragmentNode`
[ { "path": "examples/jsm/objects/Water2Mesh.js", "patch": "@@ -37,6 +37,7 @@ class WaterMesh extends Mesh {\n \tconstructor( geometry, options = {} ) {\n \n \t\tconst material = new NodeMaterial();\n+\t\tmaterial.transparent = true;\n \n \t\tsuper( geometry, material );\n \n@@ -49,7 +50,7 @@ class WaterMesh ...
2025-04-08T06:57:05
kubernetes/kubernetes
317c96a0627fdaa12ce1ed64df1d4014912046e3
2023f445eca52e6baa72139e56c6e4e01be0ee97
Fix data race in PopulateRefs by copying Items and AdditionalProperties The populateRefs function was modifying result.Items.Schema and result.AdditionalProperties.Schema directly. Since result is a shallow copy of the input schema, these pointer fields still reference the original shared structures, causing a data ra...
[ { "path": "staging/src/k8s.io/apiserver/pkg/cel/openapi/resolver/refs.go", "patch": "@@ -86,7 +86,9 @@ func populateRefs(schemaOf func(ref string) (*spec.Schema, bool), visited sets.S\n \t\t}\n \t\tif populated != result.AdditionalProperties.Schema {\n \t\t\tchanged = true\n-\t\t\tresult.AdditionalPropertie...
2025-12-06T01:01:59
golang/go
18015e8c369df15ca73fc00d6db8efc0590236ba
4be545115cf8ed42aa0337cbb6c3a92f718192b9
doc/next: clean up some Go 1.26 release notes The Var.Kind stuff was in Go 1.25. And the net additions were in the wrong tense and didn't have links. Change-Id: Ie710e1d41c714fe627a3a21a5afb6b7f78301f68 Reviewed-on: https://go-review.googlesource.com/c/go/+/724780 Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> ...
[ { "path": "doc/initial/6-stdlib/99-minor/0-heading.md", "patch": "@@ -1,10 +1 @@\n ### Minor changes to the library {#minor_library_changes}\n-\n-#### go/types\n-\n-The `Var.Kind` method returns an enumeration of type `VarKind` that\n-classifies the variable (package-level, local, receiver, parameter,\n-res...
2025-11-26T18:11:41
swiftlang/swift
c802acf6f6d1a55511a050ab56afdd43b345d72b
c5e86ff48c9bc8b2c2fbc0fa87bdb2193cc8d024
Fix build script for XCTest so it can link _TestingInterop (#87464) Fix build script for XCTest so it can link _TestingInterop This is follow up for #87318, where I updated the build script but still left a few shortcomings that are addressed here. I've validated these changes more extensively by building in CI agai...
[ { "path": "utils/build-script-impl", "patch": "@@ -2333,7 +2333,7 @@ for host in \"${ALL_HOSTS[@]}\"; do\n \n -Ddispatch_DIR=$(build_directory ${host} libdispatch)/cmake/modules\n -DFoundation_DIR=$(build_directory ${host} foundation)/cmake/modules\n- ...
2026-02-27T16:46:37
denoland/deno
2c0ee56e42b81dbb62aca8211f2d8c0e796f1915
a8d4565575e23f2297e5c044aa362d3c2143840b
fix(ext/node): implement `sqlite`'s missing options (#31919) Closes #31634
[ { "path": "ext/node/ops/sqlite/database.rs", "patch": "@@ -48,6 +48,10 @@ struct DatabaseSyncOptions {\n read_only: bool,\n allow_extension: bool,\n enable_double_quoted_string_literals: bool,\n+ use_big_int_arguments: bool,\n+ allow_bare_named_params: bool,\n+ return_arrays: bool,\n+ allow_unknow...
2026-01-23T04:01:45
mrdoob/three.js
0356d98e2888bd535905c845f8233ad625a7de32
e7aa484bc40c1ab5f08c7098e610aa679e0deeda
Examples: Add external "3d tiles" globe example (#30883) * Add 3d tiles example * Add screenshot * Remake screenshot * Update tags * Update 3d tiles renderer version * comment update * title update * Add exception * Remove shadows * Cleanup
[ { "path": "examples/files.json", "patch": "@@ -73,6 +73,7 @@\n \t\t\"webgl_lines_fat_wireframe\",\n \t\t\"webgl_loader_3dm\",\n \t\t\"webgl_loader_3ds\",\n+\t\t\"webgl_loader_3dtiles\",\n \t\t\"webgl_loader_3mf\",\n \t\t\"webgl_loader_3mf_materials\",\n \t\t\"webgl_loader_amf\",", "additions": 1, "d...
2025-04-08T03:56:32
kubernetes/kubernetes
a0cc80ba93f425953e1c3594177f3b4e3321ae12
aba3dc725616ec570db62680eee1c063089e8bb9
Fix Resolve WaitForAttachAndMount concurrency contention and timeout mechanism
[ { "path": "pkg/kubelet/volumemanager/volume_manager_test.go", "patch": "@@ -741,7 +741,7 @@ func TestWaitForAllPodsUnmount(t *testing.T) {\n \n \t\t\t\tfor _, pod := range pods {\n \t\t\t\t\tgo func() {\n-\t\t\t\t\t\terr := manager.WaitForAttachAndMount(context.Background(), pod)\n+\t\t\t\t\t\terr := manage...
2026-02-06T08:09:05
denoland/deno
48126d6a93e9809f9964b0ab65c9acd51baf41f0
b910888867ac91f245ce87f68e389259a9a69fe2
fix(ext/node): support setImmediate promisify.custom (#31920) - Add dedicated `setImmediatePromise` function in `timers.ts` - Add `promisify.custom` property to `setImmediate` that returns `setImmediatePromise` - Update `promises.setImmediate` to use `setImmediatePromise` directly - Bump `node_shim` to 0.3.0 (includes...
[ { "path": "Cargo.lock", "patch": "@@ -6356,9 +6356,9 @@ dependencies = [\n \n [[package]]\n name = \"node_shim\"\n-version = \"0.2.0\"\n+version = \"0.3.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"4c0c15839a684a17f9f07e62811a8989ba204e8b0f011859d5d0f73a4667d82b\"\...
2026-01-22T22:44:31
mrdoob/three.js
e9144842962d46f0ab4a7049cc072ad201d9659d
311af89ebf044bfd7235d6ec011d1f513635921d
Fix WebXR Haptics example when entering VR from Oculus Browser button (#30859) * Fix WebXR Haptics example when entering VR from Oculus Browser button * Remove redundant event listener for XRButton click in haptics example
[ { "path": "examples/webxr_xr_haptics.html", "patch": "@@ -140,14 +140,13 @@\n \t\t\t\trenderer.setPixelRatio( window.devicePixelRatio );\n \t\t\t\trenderer.setSize( window.innerWidth, window.innerHeight );\n \t\t\t\trenderer.setAnimationLoop( animate );\n+\t\t\t\trenderer.xr.addEventListener( 'sessionstart'...
2025-04-07T09:34:04
tensorflow/tensorflow
5bf959031459f7b822307fdad6d1cd65cb347a5c
35561a0f978ea2e9737ab6b1c578943a8ef16df4
PR #37601: [xla:ffi] Extract separate library for handler registration Imported from GitHub PR https://github.com/openxla/xla/pull/37601 Extract separate library for handler registration in preparation with fixing global static hell. `xla::ffi::Invoke` now takes explicit `XLA_FFI_APi*` parameter because we want user...
[ { "path": "third_party/xla/xla/backends/cpu/runtime/BUILD", "patch": "@@ -674,10 +674,12 @@ cc_library(\n \":thunk\",\n \"//xla:shape_util\",\n \"//xla:util\",\n+ \"//xla/ffi\",\n \"//xla/ffi:attribute_map\",\n \"//xla/ffi:call_frame\",\n \"//xla/ffi:ex...
2026-02-11T12:10:16
denoland/deno
b910888867ac91f245ce87f68e389259a9a69fe2
b9b87a6bfb61a5d8855ee1578620ac3a9393b6bb
fix(ext/node): use primordials in `ext/node/polyfills/tls.ts` (#31816) Towards #24236. Replaces JS builtins with equivalent primordials.
[ { "path": "ext/node/polyfills/tls.ts", "patch": "@@ -1,9 +1,6 @@\n // Copyright 2018-2026 the Deno authors. MIT license.\n // Copyright Joyent and Node contributors. All rights reserved. MIT license.\n \n-// TODO(petamoriken): enable prefer-primordials for node polyfills\n-// deno-lint-ignore-file prefer-pr...
2026-01-22T22:44:08
mrdoob/three.js
e6f310170d8dc2a5c03ca825092b8ef672f81a49
037536a817412bd990b2232db1b4cf690fe788d0
TSL: Fix optional `Fn` parameters (#30884)
[ { "path": "src/nodes/core/NodeBuilder.js", "patch": "@@ -2710,6 +2710,11 @@ class NodeBuilder {\n \n \t}\n \n+\t/**\n+\t * Prevents the node builder from being used as an iterable in TSL.Fn(), avoiding potential runtime errors.\n+\t */\n+\t*[ Symbol.iterator ]() { }\n+\n \t// Deprecated\n \n \t/**\n@@ -2725...
2025-04-07T05:00:40
tensorflow/tensorflow
7d825d187b3781a2b9bd3d264d626c73a76e1a6f
0e506357bfd98805df8bed71b5cfe390e4834a8d
Add ParseSymbolicMapAndAdvance to parse a SymbolicMap and advance the string view. This change introduces `ParseSymbolicMapAndAdvance`, which parses a SymbolicMap from the start of a given string view and updates the string view to the portion remaining after the parsed map. It will be used for IndexingMap to partiall...
[ { "path": "third_party/xla/xla/hlo/analysis/BUILD", "patch": "@@ -741,6 +741,7 @@ xla_cc_test(\n \":symbolic_map\",\n \"@com_google_absl//absl/base:log_severity\",\n \"@com_google_absl//absl/log:scoped_mock_log\",\n+ \"@com_google_absl//absl/strings\",\n \"@com_google_...
2026-02-11T11:42:32
kubernetes/kubernetes
b753a2afe5a7e4b8889503b079bee430e2961789
62cbba593bbafdb26bddcf5673cd28628eaef087
fix: Set effectively unlimited MaxSize for audit logs when 0 is specified Signed-off-by: Alessio Attilio <attilio.alessio@protonmail.com> fix: Update TestAuditLogMaxSizeZero to expect os.File when MaxSize is 0 fix: Update TestAuditValidOptions to handle MaxSize=0 case
[ { "path": "staging/src/k8s.io/apiserver/pkg/server/options/audit.go", "patch": "@@ -154,6 +154,10 @@ func NewAuditOptions() *AuditOptions {\n \t\t\tGroupVersionString: \"audit.k8s.io/v1\",\n \t\t},\n \t\tLogOptions: AuditLogOptions{\n+\t\t\tMaxSize: 100,\n+\t\t\tMaxAge: 366,\n+\t\t\tMaxBackups: 100,\...
2026-02-05T18:27:20
golang/go
1555fad47ddfe149ae5f2eb593124fd7371968a9
eec1afeb28522df37c78c29506ae89233bbce4e9
vendor/golang.org/x/tools: update to 1ad6f3d cmd$ go get golang.org/x/tools@1ad6f3d cmd$ GOWORK=off go mod tidy cmd$ GOWORK=off go mod vendor This merge pulls in the following commits, which include several fixes needed for go1.26, marked by an asterisk. None of the unmarked commits affects vendored packages, so it i...
[ { "path": "src/cmd/go.mod", "patch": "@@ -11,7 +11,7 @@ require (\n \tgolang.org/x/sys v0.38.0\n \tgolang.org/x/telemetry v0.0.0-20251111182119-bc8e575c7b54\n \tgolang.org/x/term v0.34.0\n-\tgolang.org/x/tools v0.39.1-0.20251120214200-68724afed209\n+\tgolang.org/x/tools v0.39.1-0.20251130212600-1ad6f3d02713...
2025-12-01T15:26:29
swiftlang/swift
8569a6c59cc7fe2797e4cd948ff56216de6f6e23
d31c569fe4d18e0faaacf064e8ebb6a18a0d5ae5
[PropertyWrappers] Fix verify pattern in invalid wrapper test
[ { "path": "test/decl/var/property_wrappers_invalid.swift", "patch": "@@ -14,8 +14,8 @@ public class Store {\n set {}\n }\n public static subscript(_enclosingInstance object: Any,\n- wrapped wrappedKeyPath: Any, // expected-error {{parameter 'wrapped:' of enclosing-self subsc...
2026-02-27T13:47:36
tensorflow/tensorflow
0e506357bfd98805df8bed71b5cfe390e4834a8d
3d337c5482e7710218c1ef2a37072502cb1a7d12
[XLA:GPU] Add VLOG statements to OneHotRewriter for better debugging. PiperOrigin-RevId: 868592054
[ { "path": "third_party/xla/xla/backends/gpu/transforms/BUILD", "patch": "@@ -3546,6 +3546,7 @@ cc_library(\n \"//xla/service:pattern_matcher\",\n \"//xla/tsl/platform:status_macros\",\n \"@com_google_absl//absl/container:flat_hash_set\",\n+ \"@com_google_absl//absl/log\",\n ...
2026-02-11T11:35:40
golang/go
eec1afeb28522df37c78c29506ae89233bbce4e9
3f94f3d4b2f03a913de3f5a737bad793418e751f
debug/elf: make check for empty symbol section consistent for 64-bit and 32-bit binaries The check for whether a binary's symbols section is empty is inconsistent across the 32-bit and 64-bit flows. Change-Id: I1abc235320a53cf957cfb83c9e7bcad6e52bc529 GitHub-Last-Rev: f264915ca2964ad8f34ce1deee4f42c2f9dc21bf GitHub-P...
[ { "path": "src/debug/elf/file.go", "patch": "@@ -641,7 +641,7 @@ func (f *File) getSymbols32(typ SectionType) ([]Symbol, []byte, error) {\n \t\treturn nil, nil, fmt.Errorf(\"cannot load symbol section: %w\", err)\n \t}\n \tif len(data) == 0 {\n-\t\treturn nil, nil, errors.New(\"symbol section is empty\")\n+...
2025-09-10T02:34:03
swiftlang/swift
58c28c516aaa4a8b8d17de2b7264d2e53fd6ceee
2ce15b125075ee0c0a96360007f5e13119a33cd3
[cxx-interop] Fix miscompilation of Optional structs with FRTs When an optional is initialized, Swift generates a zero-initialized stack allocation for the optional and uses an assign operation to store the payload into this memory. The assign will destroy the previously owned payload. In this case the previously owne...
[ { "path": "lib/IRGen/ClassTypeInfo.h", "patch": "@@ -82,6 +82,12 @@ class ClassTypeInfo : public HeapTypeInfo<ClassTypeInfo> {\n HeapTypeInfo::emitScalarRelease(IGF, value, atomicity);\n }\n \n+ bool canValueWitnessExtraInhabitantsUpTo(IRGenModule &IGM,\n+ un...
2026-02-26T12:30:58
golang/go
3f94f3d4b2f03a913de3f5a737bad793418e751f
2ac1f9cbc3eb2b97ad82730569199ba6ffea956d
test/codegen: fix shift tests on riscv64 These were broken by CL 721206, which changes Rsh to RshU for positive inputs. Change-Id: I9e38c3c428fb8aeb70cf51e7e76f4711c864f027 Reviewed-on: https://go-review.googlesource.com/c/go/+/723340 Reviewed-by: Meng Zhuo <mengzhuo1203@gmail.com> Reviewed-by: Mark Ryan <markdryan@r...
[ { "path": "test/codegen/shift.go", "patch": "@@ -661,7 +661,7 @@ func rsh64to32(v int64) int32 {\n \tx := int32(v)\n \t// riscv64:\"MOVW\"\n \tif x > 8 {\n-\t\t// riscv64:\"SRAIW\" -\"MOVW\" -\"SLLI\"\n+\t\t// riscv64:\"SRLIW\" -\"MOVW\" -\"SLLI\"\n \t\tx >>= 2\n \t}\n \treturn x\n@@ -671,7 +671,7 @@ func r...
2025-11-22T14:10:41
tensorflow/tensorflow
9fed308eae422afa8d24cf05661451a04d4e275f
7c9b0013d7bbb4ea67084fa6ae75ac2391afcb9a
Allow to specify xla_hlo_evaluator_use_fast_path as environment flag. Currently it can only be set directly via the DebugOptions class. However it can be useful for tools like run_hlo_module as well, so allow to set it to true via flag. PiperOrigin-RevId: 868550259
[ { "path": "third_party/xla/xla/debug_options_flags.cc", "patch": "@@ -169,6 +169,8 @@ inline std::string DefaultMaxIsa() {\n \n DebugOptions DefaultDebugOptionsIgnoringFlags() {\n DebugOptions opts;\n+ // Our test bases set this to true.\n+ opts.set_xla_hlo_evaluator_use_fast_path(false);\n opts.set_x...
2026-02-11T09:34:07
denoland/deno
98557599cbde32d99806a57182e50881af5e2538
2a91db0259480b4c91afc82a4758d63b9fe76faf
feat: instrument cron with OTEL (#31916) This PR adds OpenTelemetry tracing support to `Deno.cron()` handlers. When OTEL tracing is enabled, each cron handler invocation is wrapped in a span named `"deno.cron"` with `deno.cron.name` and `deno.cron.schedule` attributes. The span is properly entered so that any child sp...
[ { "path": "ext/cron/01_cron.ts", "patch": "@@ -1,15 +1,19 @@\n // Copyright 2018-2026 the Deno authors. MIT license.\n \n import { core, internals, primordials } from \"ext:core/mod.js\";\n-const {\n- isPromise,\n-} = core;\n import { op_cron_create, op_cron_next } from \"ext:core/ops\";\n const {\n Arra...
2026-01-22T13:55:20
mrdoob/three.js
7c9d92b01555cbae25eac3ae5c009cbd6617e9ec
f9ba3dd210f52632fd109c59d90d9dcced3318df
WebGPURenderer: Fix integer attributes using compatibility-mode (#30875) * improve compatibility-mode * update interpolateParams * cleanup
[ { "path": "src/renderers/webgpu/nodes/WGSLNodeBuilder.js", "patch": "@@ -1586,7 +1586,7 @@ ${ flowData.code }\n \n \t\t\t\t\t} else if ( /^(int|uint|ivec|uvec)/.test( varying.type ) ) {\n \n-\t\t\t\t\t\tattributesSnippet += ' @interpolate( flat )';\n+\t\t\t\t\t\tattributesSnippet += ` @interpolate( ${ this....
2025-04-06T01:27:13
swiftlang/swift
3774c3b6fda25dde2158faf041096f0219715640
0a2248019338b13b1aa1c60d7ddc9e00b9ec34eb
MandatoryDestroyHoisting: ignore type-dependent operands when computing the liverange of a value Type-dependent operands can appear outside the liverange of a value and therefore must be ignored. This bug caused MandatoryDestroyHoisting to insert wrong destroys. Fixes a SIL verification error and/or a mis-compile rda...
[ { "path": "SwiftCompilerSources/Sources/Optimizer/FunctionPasses/MandatoryDestroyHoisting.swift", "patch": "@@ -218,7 +218,7 @@ private struct Liverange {\n prunedLiverange.insert(contentsOf: nonDestroyingUsers)\n \n self.fullLiverange = InstructionRange(for: value, context)\n- fullLiverange.inse...
2026-02-27T11:05:57
golang/go
2ac1f9cbc3eb2b97ad82730569199ba6ffea956d
de456450e7a49789de63c515cb78a1e38e88440e
cmd/compile: avoid unnecessary interface conversion in bloop Fixes #76482 Change-Id: I076568d8ae92ad6c9e0a5797cfe5bbfb615f63d2 Reviewed-on: https://go-review.googlesource.com/c/go/+/725180 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Keith Randall <khr@golang....
[ { "path": "src/cmd/compile/internal/bloop/bloop.go", "patch": "@@ -74,7 +74,7 @@ func getNameFromNode(n ir.Node) *ir.Name {\n }\n \n // keepAliveAt returns a statement that is either curNode, or a\n-// block containing curNode followed by a call to runtime.keepAlive for each\n+// block containing curNode fo...
2025-11-28T10:19:42
denoland/deno
2a91db0259480b4c91afc82a4758d63b9fe76faf
f321e88fdf071c49c117a4d4018dee0a2def4214
fix(ext/node): inspector.open() and inspector.close() (#31898) This commit adds proper support for `node:inspector` APIs: - `inspector.open()` - `inspector.close()` Also `process.features.inspector` value was changed to `true`. As a result a bunch of Node compat tests related to inspector started failing - turns out...
[ { "path": "Cargo.lock", "patch": "@@ -1885,9 +1885,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_core\"\n-version = \"0.380.0\"\n+version = \"0.380.1\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"669603e9d217e82488f22f89632831a7bc879f7cae9827037d44f22c27148ba...
2026-01-22T10:55:15
tensorflow/tensorflow
0ac274c98a6508ca65789d5914ae841ea7bcef4a
7d38657b670d8930c917620f0c7b5df5501dfb14
[XLA] Fix HloValueTracing for collective-permute-start with two operands. This change removes an overly restrictive check in HloValueTracing that assumed collective-permute-start always has 1 or 4 operands. Collective-permute-start can have 2 operands, and the downstream logic is robust to it. hlo diff currently cras...
[ { "path": "third_party/xla/xla/hlo/tools/hlo_diff/graph/analysis/hlo_value_tracing.cc", "patch": "@@ -107,7 +107,6 @@ HloValue* HloValueTracing::NewHloValue(HloInstruction* instruction,\n value_id, instruction, index, is_phi)});\n CHECK(result.second);\n \n-\n return ...
2026-02-11T02:59:02
mrdoob/three.js
142144a5f68bea28d5b13f3395c66c293feb6fae
cf9e08436e13acf54b7eaadcbf6b8b17c9d5378a
WebGPURenderer: Fix `DepthTexture` if used `compatibilityMode:true` (#30869)
[ { "path": "src/renderers/webgpu/nodes/WGSLNodeBuilder.js", "patch": "@@ -534,20 +534,30 @@ class WGSLNodeBuilder extends NodeBuilder {\n \t */\n \tgenerateTextureLoad( texture, textureProperty, uvIndexSnippet, depthSnippet, levelSnippet = '0u' ) {\n \n+\t\tlet snippet;\n+\n \t\tif ( texture.isVideoTexture =...
2025-04-05T02:39:01
kubernetes/kubernetes
cb796755082aaf29e1c0cb4b252f571637283b35
dc1ec1211e4f54064ba6dafd8aac46ac3d4379b4
Fix defer duration metric recording bug Defer statements were incorrectly recording near-zero duration values (~2 microseconds) instead of actual elapsed time because arguments to deferred functions are evaluated immediately when the defer statement is executed. Solution: Added HistogramVec.ObserveSince() API that pr...
[ { "path": "pkg/kubelet/kuberuntime/instrumented_services.go", "patch": "@@ -181,7 +181,7 @@ func (in instrumentedRuntimeService) RunPodSandbox(ctx context.Context, config *\n \tconst operation = \"run_podsandbox\"\n \tstartTime := time.Now()\n \tdefer recordOperation(operation, startTime)\n-\tdefer metrics....
2026-01-29T15:16:07
golang/go
de456450e7a49789de63c515cb78a1e38e88440e
67d4a28707fe948b4d5fe3e171717ab887730c2b
runtime/secret: disable tests under memory validating modes These tests rely on reading memory that has been freed, so any of the modes that validate memory accesses are going to fail. Disable them for now. Fixes #76586. Cq-Include-Trybots: luci.golang.try:gotip-linux-amd64-msan-clang15,gotip-linux-amd64-asan-clang1...
[ { "path": "src/runtime/secret/secret_test.go", "patch": "@@ -2,10 +2,14 @@\n // Use of this source code is governed by a BSD-style\n // license that can be found in the LICENSE file.\n \n-// the race detector does not like our pointer shenanigans\n-// while checking the stack.\n-\n-//go:build goexperiment.r...
2025-11-28T09:40:00
denoland/deno
f321e88fdf071c49c117a4d4018dee0a2def4214
1556f14651887bf85e02ad71a7376426f0076967
fix(ext/node): validate fd in tty.isatty and enable pseudo-tty tests (#31892) Closes https://github.com/denoland/deno/issues/29876 - tty.isatty() now returns false for negative and non-integer fd values - Added run_in_pty() to run pseudo-tty tests in a real terminal - Skip pseudo-tty tests on Windows CI where PTY i...
[ { "path": "ext/node/polyfills/tty.js", "patch": "@@ -17,7 +17,7 @@ import * as io from \"ext:deno_io/12_io.js\";\n \n // Returns true when the given numeric fd is associated with a TTY and false otherwise.\n function isatty(fd) {\n- if (typeof fd !== \"number\") {\n+ if (typeof fd !== \"number\" || fd >> ...
2026-01-22T10:34:06
mrdoob/three.js
883964488255dd6c14af6a8cdcdef63e40a390f0
30b980cf429fb5c98dcbaf706e4c113906cba90e
Examples: Fix AR hit-test (#30866)
[ { "path": "examples/webxr_ar_hittest.html", "patch": "@@ -9,7 +9,7 @@\n \t<body>\n \n \t\t<div id=\"info\">\n-\t\t\t<a href=\"https://threejs.org\" target=\"_blank\" rel=\"noopener\">three.js</a> ar - hit test<br/>(Chrome Android 81+)\n+\t\t\t<a href=\"https://threejs.org\" target=\"_blank\" rel=\"noopener\...
2025-04-04T21:51:56
tensorflow/tensorflow
8c47f2e95a5dccc02994f40685edcda3d2714839
bcf80ccb759ae7ea5eb5aeb5e0f7756a9ede8a9f
Update RuntimeUnexpectedCoreHalt error code to match documentation. PiperOrigin-RevId: 868297330
[ { "path": "third_party/xla/xla/error/error_codes.h", "patch": "@@ -83,7 +83,7 @@ namespace xla::error {\n X(\"E0101\", RuntimeProgramAllocationFailure, \\\n absl::StatusCode::kResourceExhausted) \\\n X(\"E0102\", RuntimeProgramInput...
2026-02-10T21:36:31
kubernetes/kubernetes
c063acdb16576a7950eac82f59388786c3f1c3d5
13c031ffc8147ab754980da521105a99e93c4fe3
Fix RecordStorageListMetrics comment
[ { "path": "staging/src/k8s.io/apiserver/pkg/storage/etcd3/metrics/metrics.go", "patch": "@@ -286,7 +286,7 @@ func UpdateLeaseObjectCount(count int64) {\n \tetcdLeaseObjectCounts.WithLabelValues().Observe(float64(count))\n }\n \n-// RecordListEtcd3Metrics notes various metrics of the cost to serve a LIST req...
2026-02-05T16:20:21
golang/go
67d4a28707fe948b4d5fe3e171717ab887730c2b
c079dd13c0b0e977d607cf2775bc2f16dd3d106e
fmt: document space behavior of Append Also, introduce the {Print,Fprint,Sprint,Append}{,f,ln} cross product of functions at the top of the docs. Fixes #74656 Change-Id: I85a156cd545ca866e579d8020ddf165cd4bcb26f Reviewed-on: https://go-review.googlesource.com/c/go/+/688877 Reviewed-by: Rob Pike <r@golang.org> LUCI-T...
[ { "path": "src/fmt/doc.go", "patch": "@@ -9,6 +9,18 @@ are simpler.\n \n # Printing\n \n+There are four families of printing functions defined by their output destination.\n+[Print], [Println] and [Printf] write to [os.Stdout];\n+[Sprint], [Sprintln] and [Sprintf] return a string;\n+[Fprint], [Fprintln] and...
2025-07-18T18:57:38
swiftlang/swift
b0f5646611c96598c5d792aa8d8a9e37e2284fdb
c806b014f616449830cfb56094cd01836f3ca28f
[Swiftify] add SWIFT_NO_SAFE_WRAPPER annotation This adds SWIFT_NO_SAFE_WRAPPER, which can be used to signal that a function should not get a safe interop wrapper. This can serve as a fallback if a safe wrapper blocks compilation, while waiting for a fix to ship. rdar://169146789
[ { "path": "lib/ClangImporter/SwiftBridging/swift/bridging", "patch": "@@ -360,6 +360,10 @@\n /// unsafe constituents.\n #define SWIFT_SAFE __attribute__((swift_attr(\"safe\")))\n \n+/// Do not generate a safe wrapper overload function even if this function\n+/// contains annotations that would trigger it ot...
2026-02-26T19:25:52
mrdoob/three.js
30b980cf429fb5c98dcbaf706e4c113906cba90e
caddbf4cd84b62d7edf6b9fc937ca709afdfe915
TileShadowNode: Fix shadow manual update (#30863)
[ { "path": "examples/jsm/tsl/shadows/TileShadowNode.js", "patch": "@@ -312,7 +312,7 @@ class TileShadowNode extends ShadowBaseNode {\n \t */\n \tupdateBefore( frame ) {\n \n-\t\tconst shadow = this.lights[ 0 ].shadow; // so far test only the first light\n+\t\tconst shadow = this.originalLight.shadow;\n \n \t...
2025-04-04T13:22:36
denoland/deno
7046dc85c45ab809267d715dc72250ead11705a7
f7e4aa3d95613561101a84b5c587c50033b80923
fix(ext/node): improve child_process CLI argument parsing (#31825) Closes https://github.com/denoland/deno/issues/26567 Replace incomplete JavaScript-based Node CLI flag handling with a comprehensive Rust parser for better `node:child_process` compatibility. --------- Co-authored-by: Bartek Iwańczuk <biwanczuk@gmai...
[ { "path": "Cargo.lock", "patch": "@@ -2509,6 +2509,7 @@ dependencies = [\n \"md4\",\n \"nix 0.27.1\",\n \"node_resolver\",\n+ \"node_shim\",\n \"num-bigint\",\n \"num-bigint-dig\",\n \"num-integer\",\n@@ -6352,6 +6353,15 @@ dependencies = [\n \"url\",\n ]\n \n+[[package]]\n+name = \"node_shim\"\n+ver...
2026-01-22T00:45:13
tensorflow/tensorflow
4943e585d51943f47d5dd765c7912460db2bae7a
0089b58d59cd5884660cc8964a4ada3de5ba67f9
Fix the evaluator for GatherOp PiperOrigin-RevId: 868175619
[ { "path": "third_party/xla/xla/hlo/evaluator/hlo_evaluator.cc", "patch": "@@ -2433,8 +2433,9 @@ ShapeUtil::IndexIterationSpace IterationSpaceForOutputOffsetIndices(\n bool is_output_window_dim =\n absl::c_binary_search(dim_numbers.offset_dims(), i);\n if (is_output_window_dim) {\n- whil...
2026-02-10T17:05:52
golang/go
c079dd13c0b0e977d607cf2775bc2f16dd3d106e
2947cb0469aa89aac70cc6e3968f00f4c625671a
runtime/secret: reorganize tests to fix -buildmode=shared The testing assembly methods had a linkname that was implicitly satisfied during the regular build but not there during the shared build. Fix by moving the testing routine into the package itself. For good measure, section off the assembly files from the non-e...
[ { "path": "src/runtime/secret/asm_amd64.s", "patch": "@@ -2,6 +2,8 @@\n // Use of this source code is governed by a BSD-style\n // license that can be found in the LICENSE file.\n \n+//go:build goexperiment.runtimesecret\n+\n // Note: this assembly file is used for testing only.\n // We need to access regis...
2025-11-27T06:45:20
mrdoob/three.js
32e12df85c2a9c872f18d27d165719c93afb0a27
468f47a43ac55f3613763a5e709b6b738b380f91
TSL: Introduce `varying.setInterpolation()` (#30582) * init branch * add example and GLSL fallback * refine example * add screenshot * try new screenshot * try fix screenshot again * add centroid sampling to puppeteer exception list * rev * update example * updates --------- Co-authored-by: sunag <sunagbras...
[ { "path": "examples/files.json", "patch": "@@ -306,6 +306,7 @@\n \t\t\"webgpu_camera\",\n \t\t\"webgpu_camera_array\",\n \t\t\"webgpu_camera_logarithmicdepthbuffer\",\n+\t\t\"webgpu_centroid_sampling\",\n \t\t\"webgpu_clearcoat\",\n \t\t\"webgpu_clipping\",\n \t\t\"webgpu_compute_audio\",", "additions":...
2025-04-04T07:50:30
swiftlang/swift
c806b014f616449830cfb56094cd01836f3ca28f
183bb6b8cfe9b2b3f3d72730ca6801ea7d1cd762
[DiagnosticsEngine] fix assertion on `-suppress-notes` `diagnosticInfoForDiagnostic` can return null for note diagnostics when compiling with `-suppress-notes`. Test case exercising this in the next commit.
[ { "path": "lib/AST/DiagnosticEngine.cpp", "patch": "@@ -1714,7 +1714,9 @@ void DiagnosticEngine::emitDiagnostic(const Diagnostic &diagnostic) {\n auto child =\n diagnosticInfoForDiagnostic(childNotes[i],\n /* includeDiagnosticName= */ true);\n- asse...
2026-02-27T04:29:03
denoland/deno
f7e4aa3d95613561101a84b5c587c50033b80923
0be96f999828fb2d60cc26aca5166eca20493d45
fix(doc): non-determinism in `deno doc --lint` (#31911)
[ { "path": "Cargo.lock", "patch": "@@ -1991,9 +1991,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_doc\"\n-version = \"0.189.0\"\n+version = \"0.189.1\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"5d82f89d6417f786a32d310e3287306ad4c0763a53a83b8323f86b9ac471c71e...
2026-01-21T23:33:02
tensorflow/tensorflow
40d20e543bde6f572e065a1cc590fe4d607440c8
af69d8a4663759f2ecac9204a648a5b93ea32ee7
Add a patch file for tf_runtime to fix compile error tf_runtime has not gotten any changes since September. The latest LLVM version upgrade requires an adjustment. PiperOrigin-RevId: 867999298
[ { "path": "third_party/tf_runtime/f16_attr.patch", "patch": "@@ -0,0 +1,21 @@\n+diff --git a/include/tfrt/basic_kernels/opdefs/basic_kernels.td b/include/tfrt/basic_kernels/opdefs/basic_kernels.td\n+index 80dacbf2..b42004a9 100644\n+--- a/include/tfrt/basic_kernels/opdefs/basic_kernels.td\n++++ b/include/tf...
2026-02-10T09:02:33
golang/go
2947cb0469aa89aac70cc6e3968f00f4c625671a
cead111a772c2852c870fb140029d89152da4d14
runtime/_mkmalloc: fix log.Fatal formatting directive Change-Id: I9b9b9dbde440c3a24599efd55ef6f85a6a6a6964 Reviewed-on: https://go-review.googlesource.com/c/go/+/724281 Reviewed-by: David Chase <drchase@google.com> Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-proj...
[ { "path": "src/runtime/_mkmalloc/mkmalloc.go", "patch": "@@ -288,7 +288,7 @@ func inline(config generatorConfig) []byte {\n \t\t\tcase foldCondition:\n \t\t\t\tstamped = foldIfCondition(stamped, repl.from, repl.to)\n \t\t\tdefault:\n-\t\t\t\tlog.Fatal(\"unknown op kind %v\", repl.kind)\n+\t\t\t\tlog.Fatalf(...
2025-11-27T10:42:27
mrdoob/three.js
8cccca77a543619556043969341bae105ba8ed5c
e06239286b2fd49ea5d97dc643d5eb803ba4e3ef
WebGPURenderer: Introduce Shadow Map Array (#30830) * WebGPURenderer: Introduce Shadow Map Array * WebGPURenderer: Introduce Shadow Map Array * fixes * cleanup * fix webgl backend * works on both windows & macos so ignore puppeteer failing * cannot optimize fbo with redformat or it breaks transparent shadows * ...
[ { "path": "examples/files.json", "patch": "@@ -418,6 +418,7 @@\n \t\t\"webgpu_sandbox\",\n \t\t\"webgpu_shadertoy\",\n \t\t\"webgpu_shadowmap\",\n+\t\t\"webgpu_shadowmap_array\",\n \t\t\"webgpu_shadowmap_csm\",\n \t\t\"webgpu_shadowmap_opacity\",\n \t\t\"webgpu_shadowmap_progressive\",", "additions": 1,...
2025-04-03T15:51:16
denoland/deno
b0d0578d62df3481d39b2e05244443b8852ff0e5
f8160bfd93d7f3c88512d7fa55e82cc98d84a9c9
fix(dx): always spawn subprocess for dx (#31897) Fixes #31692. Fixes #31874. previously I tried to avoid this, but it messes up the argv0. So just spawn a process. Since we're going through native code (as opposed to a bash wrapper) it doesn't add too much time (I measured) though it does hurt perf a bit.
[ { "path": "cli/main.rs", "patch": "@@ -257,9 +257,9 @@ async fn run_subcommand(\n DenoSubcommand::Repl(repl_flags) => {\n spawn_subcommand(async move { tools::repl::run(flags, repl_flags).await })\n }\n- DenoSubcommand::X(x_flags) => spawn_subcommand(async move {\n- tools::x::run(flags...
2026-01-21T19:46:01
golang/go
c2af9f14b429741cfd4fed11a67a52427dec3931
6be5de4bc4e30ac0e2843c781393235d78e384a8
internal/runtime/cgroup: fix path on non-root mount point We should trim the mount root (4th field in /proc/self/mountinfo) from cgroup path read from /proc/self/cgroup before appending it to the mount point. Non-root mount points are very common in containers with cgroup v1. parseCPURelativePath is renamed to parse...
[ { "path": "src/internal/cgrouptest/cgrouptest_linux.go", "patch": "@@ -50,9 +50,8 @@ func (c *CgroupV2) SetCPUMax(quota, period int64) error {\n //\n // This must not be used in parallel tests, as it affects the entire process.\n func InCgroupV2(t *testing.T, fn func(*CgroupV2)) {\n-\tmount, rel := findCurr...
2025-11-21T17:44:14
mrdoob/three.js
0266aed57c0d9055c18a1834c3dfe5a5006ea625
5f4b079cc93b06dfcb158e892c13c53ac1a98ed1
Revert "InstanceNode: Fix usage with `VelocityNode`. (#30846)" (#30850) This reverts commit 998ee480ded25e3e178499a6f519b0e10baddc79.
[ { "path": "src/nodes/accessors/InstanceNode.js", "patch": "@@ -2,7 +2,7 @@ import Node from '../core/Node.js';\n import { varyingProperty } from '../core/PropertyNode.js';\n import { instancedBufferAttribute, instancedDynamicBufferAttribute } from './BufferAttributeNode.js';\n import { normalLocal, transfor...
2025-04-03T08:47:05
denoland/deno
f8160bfd93d7f3c88512d7fa55e82cc98d84a9c9
d2a9b8c77a467396dd23008bc10a4c33df5f3cb9
fix(publish): do not include tsconfig imports in publish graph (#31907)
[ { "path": "cli/factory.rs", "patch": "@@ -812,6 +812,7 @@ impl CliFactory {\n self.caches()?.clone(),\n self.cjs_tracker()?.clone(),\n cli_options.clone(),\n+ self.compiler_options_resolver()?.clone(),\n self.file_fetcher()?.clone(),\n s...
2026-01-21T19:45:07
golang/go
481c6df7b9006e59febbb24689ab8bf686695e9d
cec4d4303f6475475d1a632cca506e8a82072d25
io: reduce intermediate allocations in ReadAll and have a smaller final result Currently, io.ReadAll allocates a significant amount of intermediate memory as it grows its result slice to the size of the input data. This CL aims to reduce the allocated memory. Geomean benchstat results comparing existing io.ReadAll to...
[ { "path": "src/io/io.go", "patch": "@@ -707,20 +707,44 @@ func (c nopCloserWriterTo) WriteTo(w Writer) (n int64, err error) {\n // defined to read from src until EOF, it does not treat an EOF from Read\n // as an error to be reported.\n func ReadAll(r Reader) ([]byte, error) {\n+\t// Build slices of exponen...
2025-11-20T19:43:50
tensorflow/tensorflow
dda86e77d60d7f5b10db94c7f2d4d7b5992556dc
a4a67c7244176ab877ddf655f2145027f85b2984
Enable `strict_shape_checking` for `HloRunnerPjRt` to help catch shape/layout inconsistency bugs PiperOrigin-RevId: 867737532
[ { "path": "third_party/xla/xla/service/hlo_runner_pjrt.cc", "patch": "@@ -140,6 +140,7 @@ absl::StatusOr<std::vector<Layout>> FlattenedParameterLayouts(\n \n absl::StatusOr<ExecuteOptions> GenerateExecuteOptions(const HloModule& module) {\n ExecuteOptions execute_options;\n+ execute_options.strict_shape_...
2026-02-09T21:04:12
mrdoob/three.js
5f4b079cc93b06dfcb158e892c13c53ac1a98ed1
b4ca470e69fb7a5b0a97505b13431828ee4ba9c4
Animation: Fix ReferenceError in non-broswer environment (#30835) * Animation: Fix ReferenceError in Node.js environment Node.js do not support `self`. * Update Animation.js --------- Co-authored-by: Michael Herzog <michael.herzog@human-interactive.org>
[ { "path": "src/renderers/common/Animation.js", "patch": "@@ -32,9 +32,9 @@ class Animation {\n \t\t * A reference to the context from `requestAnimationFrame()` can\n \t\t * be called (usually `window`).\n \t\t *\n-\t\t * @type {Window|XRSession}\n+\t\t * @type {?(Window|XRSession)}\n \t\t */\n-\t\tthis._con...
2025-04-02T19:27:57
denoland/deno
7e6483145f1a11111c68a443c405a8b7b38edad0
6c22c7393931779622adbd1cf726efbef073444e
fix(ext/node): prevent derefencing symlinks on `fs.rm` (#31886)
[ { "path": "ext/node/ops/winerror.rs", "patch": "@@ -30,7 +30,6 @@ use deno_core::op2;\n #[string]\n pub fn op_node_sys_to_uv_error(err: i32) -> String {\n let uv_err = match err {\n- ERROR_ACCESS_DENIED => \"EACCES\",\n ERROR_NOACCESS => \"EACCES\",\n WSAEACCES => \"EACCES\",\n ERROR_CANT_A...
2026-01-20T23:56:47
swiftlang/swift
341208d56f084fbc3f6b05b3097ecce55ac26267
5c856950a07d24397909a8e4c301927bdff40690
Fix static linking with dispatch with experimental static runtime (#87547) Issue https://github.com/swiftlang/swift/issues/87516
[ { "path": "utils/build.ps1", "patch": "@@ -2890,6 +2890,10 @@ function Build-ExperimentalRuntime([Hashtable] $Platform, [switch] $Static = $fa\n \n dispatch_DIR = (Get-ProjectCMakeModules $Platform CDispatch);\n \n+ # FIXME(hjyamauchi) Should dynamic to libdispatch https://github.com/swiftlan...
2026-02-27T00:57:05
golang/go
cec4d4303f6475475d1a632cca506e8a82072d25
f1bbc66a10a545811a21dcf9f9431e783aafcb42
os: allow direntries to have zero inodes on Linux Some Linux filesystems have been known to return valid enties with zero inodes. This new behavior also puts Go in agreement with recent glibc. Fixes #76428 Change-Id: Ieaf50739a294915a3ea2ef8c5a3bb2a91a186881 GitHub-Last-Rev: 8f83d009ef0320fd3fe7cf03e55d5d24df57f015 ...
[ { "path": "src/os/dir_unix.go", "patch": "@@ -112,7 +112,8 @@ func (f *File) readdir(n int, mode readdirMode) (names []string, dirents []DirEn\n \t\t// or might expose a remote file system which does not have the concept\n \t\t// of inodes. Therefore, we cannot make the assumption that it is safe\n \t\t// t...
2025-11-25T03:55:45
mrdoob/three.js
b4ca470e69fb7a5b0a97505b13431828ee4ba9c4
1e6169357025bd923c7aecffefcac8e9b37549e0
TSL: Fix `instance()` optional parameter (#30848)
[ { "path": "src/nodes/accessors/InstanceNode.js", "patch": "@@ -33,9 +33,9 @@ class InstanceNode extends Node {\n \t *\n \t * @param {number} count - The number of instances.\n \t * @param {InstancedBufferAttribute} instanceMatrix - Instanced buffer attribute representing the instance transformations.\n-\t *...
2025-04-02T16:52:04
kubernetes/kubernetes
aa4159c2d2dde5d2e9929974884f12608d7d2d3d
44ff6085cd32c370ed84a53ba756e4ffef5c3603
Bump prometheus/common to v0.67.5 and prometheus/procfs to v0.19.2 prometheus/common v0.66.1 -> v0.67.5: - Breaking: TextParser must now use NewTextParser() constructor - Float/gauge histograms support in expfmt - Fixed panic in tlsRoundTripper when CA file missing - https://github.com/prometheus/common/compare/v0.66....
[ { "path": "go.mod", "patch": "@@ -46,7 +46,7 @@ require (\n \tgithub.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2\n \tgithub.com/prometheus/client_golang v1.23.2\n \tgithub.com/prometheus/client_model v0.6.2\n-\tgithub.com/prometheus/common v0.66.1\n+\tgithub.com/prometheus/common v0.67.5\n \...
2026-02-04T02:24:37
denoland/deno
f8df593f34bbe12af4720dbbd5520ded399655f1
7f553d3e3adad912074d5483b84615cc3549a166
fix(ext/web): export PerformanceObserver and PerformanceObserverEntryList (#31887) Follow up https://github.com/denoland/deno/pull/31875 that exposes Web APIs on the global scope.
[ { "path": "runtime/js/98_global_scope_shared.js", "patch": "@@ -83,6 +83,10 @@ const windowOrWorkerGlobalScope = {\n PerformanceEntry: core.propNonEnumerable(performance.PerformanceEntry),\n PerformanceMark: core.propNonEnumerable(performance.PerformanceMark),\n PerformanceMeasure: core.propNonEnumera...
2026-01-20T13:33:36
golang/go
43cfd785e72ccd04fe638395aa80029aae23fef6
312b2034a4e16583fac00070e698c3d464eca1c8
cmd/link, runtime, debug/gosym: move pclntab magic to internal/abi Change-Id: I2d3c41b0e61b994d7b04bd16a791fd226dc45269 Reviewed-on: https://go-review.googlesource.com/c/go/+/720302 Reviewed-by: Michael Knyszek <mknyszek@google.com> Reviewed-by: David Chase <drchase@google.com> Reviewed-by: Cherry Mui <cherryyz@google...
[ { "path": "src/cmd/link/internal/ld/pcln.go", "patch": "@@ -261,7 +261,7 @@ func (state *pclntab) generatePCHeader(ctxt *Link) {\n \n \t\t// Write header.\n \t\t// Keep in sync with runtime/symtab.go:pcHeader and package debug/gosym.\n-\t\theader.SetUint32(ctxt.Arch, 0, 0xfffffff1)\n+\t\theader.SetUint32(ct...
2025-11-13T21:01:14
tensorflow/tensorflow
1a957b0b9b6aa098e2d9eb8d79b16687e4dbde78
7df8c0ff89d652ad2f9604f8f14e799a14d2311f
Fix compatibility with numpy 2.4 PiperOrigin-RevId: 867641453
[ { "path": "tensorflow/python/ops/array_ops.py", "patch": "@@ -5401,6 +5401,11 @@ def gather_nd(params, indices, name=None, batch_dims=0, bad_indices_policy=\"\"):\n \"\"\"\n batch_dims_ = tensor_util.constant_value(batch_dims)\n if batch_dims_ is not None:\n+ batch_dims_ = (\n+ batch_dims_.i...
2026-02-09T17:30:38
swiftlang/swift
0c056341563593254279c238556466e6a3195735
ada252b48472f7ac7fd31a1859a2709d0535c369
Fix lifetime type checking to infer immortal static accessors A recent change to lifetime type checking affected the way lifetimes are inferred for static methods resulting in diagnostic errors for accessors that returned a non-Escapable type. Add a special lifetime default for accessors, such as: /* DEFAULT: @_...
[ { "path": "lib/AST/LifetimeDependence.cpp", "patch": "@@ -416,6 +416,13 @@ struct LifetimeDependenceBuilder {\n }\n }\n \n+ void inferImmortalResult() {\n+ auto targetDeps = getInferredTargetDeps(resultIndex);\n+ if (!targetDeps)\n+ return;\n+ targetDeps->hasImmortalSpecifier = true;\n+...
2026-02-27T00:32:30
mrdoob/three.js
1e6169357025bd923c7aecffefcac8e9b37549e0
998ee480ded25e3e178499a6f519b0e10baddc79
Typos (#30843) * Typos * fix alpha --------- Co-authored-by: Samuel Rigaud <rigaud@gmail.com>
[ { "path": "examples/jsm/postprocessing/EffectComposer.js", "patch": "@@ -119,7 +119,7 @@ class EffectComposer {\n \t\tthis.copyPass.material.blending = NoBlending;\n \n \t\t/**\n-\t\t * The intenral clock for managing time data.\n+\t\t * The internal clock for managing time data.\n \t\t *\n \t\t * @private\...
2025-04-02T16:37:45
denoland/deno
7f553d3e3adad912074d5483b84615cc3549a166
8812083d1cc27ba8320f1b545c118284cf574520
fix(ext/sqlite): double free of Session after database closed (#31830)
[ { "path": "ext/node/ops/sqlite/session.rs", "patch": "@@ -112,6 +112,9 @@ impl Session {\n }\n \n self.freed.set(true);\n+ if self.db.borrow().is_none() {\n+ return Ok(());\n+ }\n // Safety: `self.inner` is a valid session. double free is\n // prevented by `freed` flag.\n unsa...
2026-01-20T12:31:48
golang/go
d8269ab0d59212fed0f5975f7083f6bbbfc00ec4
c6d64f85565e6a934110c4928ca95fea0045ebaa
cmd/link, cmd/internal/obj: fix a remote call failure issue When a function call exceeds the immediate value range of the instruction, a trampoline is required to assist in the jump. Trampoline is only omitted when plt is needed; otherwise, a check is required. Change-Id: I7fe2e08d75f6f574475837b560e650bbd4215858 Rev...
[ { "path": "src/cmd/internal/obj/loong64/asm.go", "patch": "@@ -2437,6 +2437,9 @@ func (c *ctxt0) asmout(p *obj.Prog, o *Optab, out []uint32) {\n \t\tv := int32(0)\n \t\tif p.To.Target() != nil {\n \t\t\tv = int32(p.To.Target().Pc-p.Pc) >> 2\n+\t\t\tif v < -1<<25 || v >= 1<<25 {\n+\t\t\t\tc.ctxt.Diag(\"branc...
2025-11-24T09:28:42
mrdoob/three.js
998ee480ded25e3e178499a6f519b0e10baddc79
2a7cf1f506577465d559cadfc38b55594af814f2
InstanceNode: Fix usage with `VelocityNode`. (#30846)
[ { "path": "src/nodes/accessors/InstanceNode.js", "patch": "@@ -2,7 +2,7 @@ import Node from '../core/Node.js';\n import { varyingProperty } from '../core/PropertyNode.js';\n import { instancedBufferAttribute, instancedDynamicBufferAttribute } from './BufferAttributeNode.js';\n import { normalLocal, transfor...
2025-04-02T16:32:47
denoland/deno
821d36129fe292cff8ee8a00c48a5a6d113985cd
88341cadf6bd924e1369ecd7f9cbd636ae122bb0
fix(ext/crypto): add support for SHA3 (#31668) Fix #31631
[ { "path": "Cargo.lock", "patch": "@@ -1961,6 +1961,7 @@ dependencies = [\n \"ed448-goldilocks\",\n \"elliptic-curve\",\n \"num-traits\",\n+ \"ocb3\",\n \"once_cell\",\n \"p256\",\n \"p384\",\n@@ -1971,6 +1972,7 @@ dependencies = [\n \"serde_bytes\",\n \"sha1\",\n \"sha2\",\n+ \"sha3\",\n \"signatu...
2026-01-19T17:23:04
golang/go
c6d64f85565e6a934110c4928ca95fea0045ebaa
c048a9a11f21e879a76e328b7a92f3a47f298b37
cmd/internal/obj/loong64: remove the incorrect unsigned instructions The loong64 ISA does not support the 32-bit unsigned arithmetic instructions ADDU, SUBU and MULU. Change-Id: Ifa67de9c59aa12d08844189ed23e6daad0cc11ea Reviewed-on: https://go-review.googlesource.com/c/go/+/722760 Reviewed-by: abner chenc <chenguoqi@...
[ { "path": "src/cmd/asm/internal/asm/testdata/loong64enc1.s", "patch": "@@ -199,8 +199,6 @@ lable2:\n \tMOVHU\tR4, 1(R5)\t\t// a4044029\n \tMOVHU\ty+8(FP), R4\t\t// 6440402a\n \tMOVHU\t1(R5), R4\t\t// a404402a\n-\tMULU\tR4, R5\t \t\t// a5101c00\n-\tMULU\tR4, R5, R6\t\t// a6101c00\n \tMULH\tR4, R5\t \t\t/...
2025-11-21T09:22:05
kubernetes/kubernetes
f81e280ca96c0bf8037d4bf041ac810d168e838d
13c031ffc8147ab754980da521105a99e93c4fe3
fix install-containerd-ubuntu to skip apt when both versions specified when both UBUNTU_INSTALL_CONTAINERD_VERSION and UBUNTU_INSTALL_RUNC_VERSION are set, skip apt entirely and download binaries directly from GitHub. this avoids installing apt packages that get immediately overwritten. Signed-off-by: Davanum Sriniva...
[ { "path": "cluster/gce/gci/configure.sh", "patch": "@@ -510,70 +510,98 @@ function load-docker-images {\n fi\n }\n \n-# If we are on ubuntu we can try to install containerd\n+# Create containerd systemd service (needed when skipping apt install)\n+function ensure-containerd-systemd-service {\n+ local -r ...
2026-02-03T20:41:09
mrdoob/three.js
2a7cf1f506577465d559cadfc38b55594af814f2
19d07ee4276676b0af67dca4944af280a71b495d
TSL: Fix `bitangent*` if used `material.flatShading` (#30837) * fix bitangent if used flat shading * cleanup * cleanup * Update Bitangent.js * Update Bitangent.js * Update Bitangent.js * Update Bitangent.js * fix extrusion side of normal map if tangent used * Revert "fix extrusion side of normal map if tangent...
[ { "path": "src/nodes/accessors/Bitangent.js", "patch": "@@ -1,49 +1,71 @@\n import { varying } from '../core/VaryingNode.js';\n+import { Fn } from '../tsl/TSLCore.js';\n import { cameraViewMatrix } from './Camera.js';\n import { normalGeometry, normalLocal, normalView, normalWorld, transformedNormalView } f...
2025-04-02T16:11:37
swiftlang/swift
0b0432723e8e17c37bc0c9cdf3482a4d4aeaf4d2
7ecdb0d3edb6a381961cf3e794d9854e706669a9
Adjust type lowering to take the raw layout's like type in account for fixed abi. also shortcut raw layout for borrow representation
[ { "path": "lib/IRGen/GenBorrow.cpp", "patch": "@@ -403,7 +403,14 @@ TypeConverter::convertBuiltinBorrowType(BuiltinBorrowType *T) {\n // SIL type.\n auto referentTy = SILType::getPrimitiveObjectType(T->getReferentType());\n auto &referentTI = IGM.getTypeInfo(referentTy);\n- \n+\n+ // If the referent...
2026-02-26T23:36:53
denoland/deno
88341cadf6bd924e1369ecd7f9cbd636ae122bb0
c66d1254b34ba91d803294f1f349e8e2a6b6567c
fix(ext/node): implement PerformanceObserver (#31875) Fixes #31723 --------- Co-authored-by: Felipe Cardozo <fraifelipe@gmail.com>
[ { "path": "cli/tsc/dts/node/perf_hooks.d.cts", "patch": "@@ -559,6 +559,11 @@ declare module \"perf_hooks\" {\n */\n class PerformanceObserver extends AsyncResource {\n constructor(callback: PerformanceObserverCallback);\n+ /**\n+ * Returns a list of the entry types supported...
2026-01-19T16:11:17
mrdoob/three.js
19d07ee4276676b0af67dca4944af280a71b495d
f636bf1f7b0d177ea66504800b170ea73872c0e7
TSL: Fix `.blur()` on Framebuffer (#30845)
[ { "path": "src/nodes/accessors/TextureNode.js", "patch": "@@ -564,7 +564,7 @@ class TextureNode extends UniformNode {\n \n \t\tconst map = textureNode.value;\n \n-\t\tif ( map && map.generateMipmaps === false || map.minFilter === NearestFilter || map.magFilter === NearestFilter ) {\n+\t\tif ( textureNode.ge...
2025-04-02T16:03:42
golang/go
ff2fd6327ecb343d96074dff3ccee359b5f1d629
3531ac23d4aac6bdd914f14f65ee5fdc5e6e98fa
go/types, types2: remove setDefType and most def plumbing CL 722161 replaced the setDefType mechanism with boundaries on composite literals, removing the need to pass the def argument in all but 1 case. The exception is interface types, which use def to populate the receiver type for better error messages. Change-Id...
[ { "path": "src/cmd/compile/internal/types2/call.go", "patch": "@@ -669,7 +669,7 @@ var cgoPrefixes = [...]string{\n \t\"_Cmacro_\", // function to evaluate the expanded expression\n }\n \n-func (check *Checker) selector(x *operand, e *syntax.SelectorExpr, def *TypeName, wantType bool) {\n+func (check *Check...
2025-11-24T19:34:39
denoland/deno
c66d1254b34ba91d803294f1f349e8e2a6b6567c
2d77536bd96129b2e2a86a7f28c6d0b08d53d2c5
chore: fix flaky websocket unit test (#31883) This test previously assumed frame websocket frame arrived in the same read as HTTP headers. Now it just reads until we have everything.
[ { "path": "tests/unit/websocket_test.ts", "patch": "@@ -1125,12 +1125,24 @@ Deno.test(\"WebSocket close with reason but no code doesn't send 1005\", async ()\n );\n \n const response = new Uint8Array(2048);\n- const n = await conn.read(response);\n+ let totalRead = 0;\n+\n+ let n = await conn.read(re...
2026-01-19T09:39:31
swiftlang/swift
79da4ce4bce7a62d5d6dc3f8ac895e2dff747e42
421e83c48f73d0f9818fa086480e7a113902c7a1
[Concurrency] Fix #86820 withTaskCanHan which used wrong availability (#87480) We need to keep this API for source compatibility, and it was brought back in #86820 however it used wrong availability, we need this to be 5.1+ with backdeployment as it was before resolves rdar://171011139
[ { "path": "stdlib/public/Concurrency/TaskCancellation.swift", "patch": "@@ -151,7 +151,8 @@ public func withTaskCancellationHandler<Return, Failure>(\n /// as resuming a continuation, may acquire these same internal locks.\n /// Therefore, if a cancellation handler must acquire a lock, other code should\n /...
2026-02-26T21:02:06
mrdoob/three.js
7f74cfa8bca4f3cacc513493a43c6042acab565e
f1ecf66df2de3c6b13c33c5c141a489bf436c37d
Added additional Rapier physics examples (#30818) * Added new Rapier physics examples * Delete attribute when using Rapier debugger * Added screenshots * Restored jsDocs to RapierPhysics.js * Updated files.json * added exception * Updates for Michael * Refactored debugger as RapierHelper * Removed unused impor...
[ { "path": "examples/files.json", "patch": "@@ -502,7 +502,11 @@\n \t\t\"physics_ammo_terrain\",\n \t\t\"physics_ammo_volume\",\n \t\t\"physics_jolt_instancing\",\n-\t\t\"physics_rapier_instancing\"\n+\t\t\"physics_rapier_basic\",\n+\t\t\"physics_rapier_instancing\",\n+\t\t\"physics_rapier_joints\",\n+\t\t\"...
2025-04-01T17:20:13
golang/go
3531ac23d4aac6bdd914f14f65ee5fdc5e6e98fa
2b8dbb35b0d6a5601ae9b6f1d1de106774251214
go/types, types2: replace setDefType with pending type check Given a type definition of the form: type T RHS The setDefType function would set T.fromRHS as soon as we knew its top-level type. For instance, in: type S struct { ... } S.fromRHS is set to a struct type before type-checking anything inside the stru...
[ { "path": "src/cmd/compile/internal/types2/expr.go", "patch": "@@ -993,6 +993,13 @@ func (check *Checker) rawExpr(T *target, x *operand, e syntax.Expr, hint Type, a\n \t\tcheck.nonGeneric(T, x)\n \t}\n \n+\t// Here, x is a value, meaning it has a type. If that type is pending, then we have\n+\t// a cycle. A...
2025-11-24T22:04:49