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
golang/go
1297fae7081a3116d2097ce7cfcc0f89ba2cf0fc
65c09eafdf316ef691f0f8eccbf860d2ef5f7c70
go/token: add (*File).End method Also, use it in a number of places. + test, api, relnote Fixes #75849 Change-Id: I44acf5b8190b964fd3975009aa407d7c82cee19b Reviewed-on: https://go-review.googlesource.com/c/go/+/720061 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed...
[ { "path": "api/next/75849.txt", "patch": "@@ -0,0 +1 @@\n+pkg go/token, method (*File) End() Pos #75849", "additions": 1, "deletions": 0, "language": "Plain Text" }, { "path": "doc/next/6-stdlib/99-minor/go/token/75849.md", "patch": "@@ -0,0 +1 @@\n+The new [File.End] convenience met...
2025-11-12T23:17:35
mrdoob/three.js
27a171511dc9b001641e0a97fe81b7a51d89ec14
92bd4f3a4332a890b3b62b0fc5dc2b0f6c7c30c6
ConvexGeometry html indentation fix (#30399)
[ { "path": "docs/examples/en/geometries/ConvexGeometry.html", "patch": "@@ -29,10 +29,11 @@ <h2>Import</h2>\n \n \t\t<h2>Code Example</h2>\n \n-\t\t<code>const geometry = new ConvexGeometry( points );\n-\t\tconst material = new THREE.MeshBasicMaterial( { color: 0x00ff00 } );\n-\t\tconst mesh = new THREE.Mesh...
2025-01-26T15:54:09
swiftlang/swift
a03ac54643286fd683c6fb17b1b8742090f20df9
f00c12a2f3990e6fd04ad35a7d88b357c4bddf5a
Cloner: ignore type-dependent operands when recursively cloning instructions Fixes a crash
[ { "path": "SwiftCompilerSources/Sources/SIL/Utilities/Cloner.swift", "patch": "@@ -133,7 +133,7 @@ public struct Cloner<Context: MutatingContext> {\n fatalError(\"expected instruction to clone or already cloned value\")\n }\n \n- for op in inst.operands {\n+ for op in inst.definedOperands {\...
2026-02-18T16:44:31
denoland/deno
8c46ac3228762fb442b0080c7eb81e5e918543bb
3a4b9de81ef0a83652729320cfc750f94ccab924
fix(check): move types not found error to tsc diagnostic (#31509) Closes https://github.com/denoland/deno/issues/31352
[ { "path": "cli/graph_util.rs", "patch": "@@ -297,9 +297,9 @@ pub fn resolution_error_for_tsc_diagnostic(\n | NodeJsErrorCode::ERR_UNSUPPORTED_ESM_URL_SCHEME\n | NodeJsErrorCode::ERR_INVALID_FILE_URL_PATH\n | NodeJsErrorCode::ERR_PACKAGE_IMPORT_NOT_DEFINED\n- | NodeJsErrorCode::ERR_PAC...
2025-12-06T02:57:45
mrdoob/three.js
98a3fa37f7c17c02a7ddf66648b7cbffe24924b3
3fefbf2ec96cf89b47270472ea2b4764dcf746db
fix (#30385)
[ { "path": "examples/webgpu_video_frame.html", "patch": "@@ -50,6 +50,9 @@\n \t\t\t\tconst decoder = new VideoDecoder( {\n \t\t\t\t\toutput( frame ) {\n \n+\t\t\t\t\t\t// To avoid video decoder stalls, we should close the VideoFrame which is no longer needed. https://w3c.github.io/webcodecs/#dom-videodecoder...
2025-01-22T22:25:59
tensorflow/tensorflow
582bafb0c6d4377b57ecdbb246bdec2be7a72755
649b7676a3b011c43e0ff1d3f58d5378c8dd07ce
[ReplicaGroupV3][Bug-Fix] fix execution tests and correctly convert devicelists from proto in hlo instruction. PiperOrigin-RevId: 860309875
[ { "path": "third_party/xla/xla/hlo/ir/hlo_instruction.cc", "patch": "@@ -757,16 +757,19 @@ absl::StatusOr<std::unique_ptr<HloInstruction>> HloInstruction::CreateFromProto(\n TF_RET_CHECK(proto.dimensions().size() == 1)\n << \"AllGather cannot have more than 1 all-gather dimensions\";\n ...
2026-01-24T01:03:07
golang/go
65c09eafdf316ef691f0f8eccbf860d2ef5f7c70
594129b80cad4eb291a4185f3ac81699cfb3afd6
runtime: hoist invariant code out of heapBitsSmallForAddrInline The first two instructions in heapBitsSmallForAddrInline are invariant for a given span and object and are called in a loop within ScanObjectsSmall which figures as a hot routine in profiles of some benchmark runs within sweet benchmark suite (x/benchmark...
[ { "path": "src/runtime/mgcmark_greenteagc.go", "patch": "@@ -978,7 +978,9 @@ func spanSetScans(spanBase uintptr, nelems uint16, imb *spanInlineMarkBits, toSc\n }\n \n func scanObjectSmall(spanBase, b, objSize uintptr, gcw *gcWork) {\n-\tptrBits := heapBitsSmallForAddrInline(spanBase, b, objSize)\n+\thbitsBa...
2025-11-07T07:45:02
swiftlang/swift
7277fbf5e2cda35fbb5075cb3f5490b050386476
80b092eb990ab52f3969e14cc4953d1a8aa2c2be
RCIdentityAnalysis: remove a wrong assert Structs can be non-trivial even if all fields are trivial. That's the case for non-copyable structs
[ { "path": "lib/SIL/IR/SILInstructions.cpp", "patch": "@@ -1734,10 +1734,6 @@ bool StructExtractInst::isTrivialFieldOfOneRCIDStruct() const {\n // return false.\n return false;\n }\n-\n- // We found only one trivial field.\n- assert(FoundNonTrivialField && \"Struct is non-trivial, but does not ha...
2025-10-05T17:36:12
mrdoob/three.js
3fefbf2ec96cf89b47270472ea2b4764dcf746db
574c8f8c669976e1994ae831ef925b3bd0dd68d4
Revert "Fix video decoder stalls issue in webgpu_video_frame.html (#30380)" (#30384) This reverts commit 574c8f8c669976e1994ae831ef925b3bd0dd68d4.
[ { "path": "examples/webgpu_video_frame.html", "patch": "@@ -50,9 +50,6 @@\n \t\t\t\tconst decoder = new VideoDecoder( {\n \t\t\t\t\toutput( frame ) {\n \n-\t\t\t\t\t\t// To avoid video decoder stalls, we should close the VideoFrame which is no longer needed. https://w3c.github.io/webcodecs/#dom-videodecoder...
2025-01-22T21:02:45
denoland/deno
3a4b9de81ef0a83652729320cfc750f94ccab924
3089aa8690af8dfaa6f24051800fa116a20b3ee3
fix: change errors message suggesting to run approve-scripts (#31493) Follow up to https://github.com/denoland/deno/pull/31472 Before: ``` $ deno install ... ╭ Warning │ │ Ignored build scripts for packages: │ npm:msgpackr-extract@3.0.3 │ npm:@parcel/watcher@2.5.1 │ npm:lmdb@2.8.5 │ npm:@swc/core@1.12.0 │ │ Run...
[ { "path": "cli/tools/pm/approve_scripts.rs", "patch": "@@ -126,11 +126,21 @@ pub async fn approve_scripts(\n config_updater.set_allow_scripts_value(allow_scripts_value);\n config_updater.commit()?;\n \n- for req in approvals {\n- log::info!(\"Approved {}\", colors::green(format!(\"npm:{req}\")));\n-...
2025-12-05T21:19:29
golang/go
c58d075e9a457fce92bdf60e2d1870c8c4df7dc5
d55ecea9e5a5a4cfba30c6f35d4841ae66e05ccd
crypto/rsa: deprecate PKCS#1 v1.5 encryption Fixes #75302 Change-Id: I6a6a6964c2b3b33bfb34b9677a57610b933bbfab Reviewed-on: https://go-review.googlesource.com/c/go/+/701436 Reviewed-by: Daniel McCarney <daniel@binaryparadox.net> Reviewed-by: Mark Freeman <markfreeman@google.com> LUCI-TryBot-Result: Go LUCI <golang-sc...
[ { "path": "api/next/75302.txt", "patch": "@@ -0,0 +1,4 @@\n+pkg crypto/rsa, func DecryptPKCS1v15 //deprecated #75302\n+pkg crypto/rsa, func DecryptPKCS1v15SessionKey //deprecated #75302\n+pkg crypto/rsa, func EncryptPKCS1v15 //deprecated #75302\n+pkg crypto/rsa, type PKCS1v15DecryptOptions //deprecated #753...
2025-09-07T14:07:43
tensorflow/tensorflow
f89fcf5575d3685797c67327f841ecbb9e6deb1f
bdb2511c9ea9979312cca5e6fbac9cf70f8bf5bf
PR #36721: [xla:gpu] Improve logging by consistently adding device ordinal and ranks Imported from GitHub PR https://github.com/openxla/xla/pull/36721 **NFC** Follow other examples in XLA and include device ordinal and ranks in all logging related to collective operations. This helps a LOT with debugging deadlocks a...
[ { "path": "third_party/xla/xla/backends/gpu/collectives/gpu_clique_key.cc", "patch": "@@ -134,8 +134,8 @@ std::string GpuCliqueKey::ToString() const {\n group_string = absl::StrFormat(\"; groups=[%s]\", absl::StrJoin(values, \",\"));\n }\n return absl::StrFormat(\n- \"devices=[%s]; is_p2p=%d%s;...
2026-01-24T00:42:39
mrdoob/three.js
574c8f8c669976e1994ae831ef925b3bd0dd68d4
176ea06512a4249a34b72296c432f9e76120de4c
Fix video decoder stalls issue in webgpu_video_frame.html (#30380) * fix * Update webgpu_video_frame.html More clean up. * Update webgpu_video_frame.html * Update webgpu_video_frame.html --------- Co-authored-by: Michael Herzog <michael.herzog@human-interactive.org>
[ { "path": "examples/webgpu_video_frame.html", "patch": "@@ -50,6 +50,9 @@\n \t\t\t\tconst decoder = new VideoDecoder( {\n \t\t\t\t\toutput( frame ) {\n \n+\t\t\t\t\t\t// To avoid video decoder stalls, we should close the VideoFrame which is no longer needed. https://w3c.github.io/webcodecs/#dom-videodecoder...
2025-01-22T21:00:13
kubernetes/kubernetes
45e30087fdf10d1ca4440c89a3791362e8dc03e4
e51e40ede6dc8f2b2d6f6844fd95f37e9a55f25f
Fix NPB test images arm64 cross-build failures The NPB (NAS Parallel Benchmarks) test images were failing to build for arm64 architecture due to missing shebangs in NPB shell scripts. The sys/print_header and sys/print_instructions scripts in NPB lack default /bin/sh), they fail with "Error 127" (command not found) d...
[ { "path": "test/images/node-perf/npb-ep/Dockerfile", "patch": "@@ -24,6 +24,11 @@ ADD http://www.nas.nasa.gov/assets/npb/NPB3.4.3.tar.gz .\n RUN tar xzf NPB3.4.3.tar.gz && chmod -R a+rX NPB3.4.3\n \n WORKDIR ./NPB3.4.3/NPB3.4-OMP\n+\n+# Add missing shebangs to shell scripts - required for cross-build with Q...
2026-01-22T00:33:17
swiftlang/swift
c6150638f23afd5f4761602ad8718fe52a831dc4
56a181c2e5f496163c2ed594022684275f54cfbf
[CSDiagnostics] Adjust assertion to handle `throws(Never)` considered to be a throwing function type `isThrowing` returns `true` for a function type that is `throws(Never)` even though it's wrong, let's work around that until the underlying issue is fixed.
[ { "path": "lib/Sema/CSDiagnostics.h", "patch": "@@ -954,7 +954,11 @@ class ThrowingFunctionConversionFailure final : public ContextualFailure {\n #ifndef NDEBUG\n auto fnType1 = fromType->castTo<FunctionType>();\n auto fnType2 = toType->castTo<FunctionType>();\n- assert(fnType1->isThrowing() != f...
2026-02-19T18:28:17
denoland/deno
a39796500df53799c72e83d7af6a3603625e263a
dfe26dadb0018f07f5a6086e10e4f6562b3613d0
fix(resolver): fall back to execution if can't resolve types (#31507) Fixes https://github.com/denoland/deno/issues/31352 This matches the behavior of the other node_modules_dir modes more closely as well as tsc's behavior. Failing to find types should not be an error
[ { "path": "libs/resolver/npm/mod.rs", "patch": "@@ -526,6 +526,19 @@ impl<\n {\n return Ok(resolved);\n }\n+ // failed to find types, just fall back to normal resolution\n+ debug_assert_eq!(resolution_kind, NodeResolutionKind::Types);\n+ if let Ok(r...
2025-12-05T20:34:02
mrdoob/three.js
176ea06512a4249a34b72296c432f9e76120de4c
1d5c43d496974bcc9fc596ac5e7a370f010a6fbe
Eslint: fix errors (#30383) Co-authored-by: Samuel Rigaud <srigaud@duodisplay.com>
[ { "path": "editor/js/Strings.js", "patch": "@@ -3,8 +3,8 @@ function Strings( config ) {\n \tconst language = config.getKey( 'language' );\n \n \tconst values = {\n-fa: {\n-'prompt/file/open': 'تمام داده های ذخیره نشده پاک خواهند شد آیا مطمئنید؟',\n+\t\tfa: {\n+\t\t\t'prompt/file/open': 'تمام داده های ذخیره...
2025-01-22T17:43:03
golang/go
410ef44f0054a9ab20a901895edb7db5a4d0aad7
50128a21541e3fd712ad717a223aaa109cb86d43
cmd: update x/tools to 59ff18c $ go get golang.org/x/tools@59ff18c $ GOWORK=off go mod tidy $ GOWORK=off go mod vendor This implies golang.org/x/sys@v0.38.0, for which I have also updated src/go.mod for consistency. I also upgraded x/mod@3f03020 to bring in some fixes to code that go vet would otherwise have flag...
[ { "path": "src/cmd/go.mod", "patch": "@@ -6,12 +6,12 @@ require (\n \tgithub.com/google/pprof v0.0.0-20250630185457-6e76a2b096b5\n \tgolang.org/x/arch v0.22.1-0.20251016010524-fea4a9ec4938\n \tgolang.org/x/build v0.0.0-20250806225920-b7c66c047964\n-\tgolang.org/x/mod v0.29.0\n-\tgolang.org/x/sync v0.17.0\n-...
2025-11-11T19:56:59
denoland/deno
dd0aa99f18822728c80011bb51ae04a9d5ec1b3c
e5f9b441ef9e2ba75306679068ad292a29f690ef
fix: fix npx running in test, make approve-scripts test less flaky (#31501) It was doing `npx cowsay` but cowsay wasn't listed as a dependency, so it was falling back to actual npx. I also found that the cowsay part sometimes overlaps with the progress bar, so checking for 'install' is more reliable
[ { "path": "tests/integration/pm_tests.rs", "patch": "@@ -178,9 +178,7 @@ fn approve_scripts_basic() {\n pty.write_line(\" \");\n pty.write_line(\"\\r\\n\");\n pty.expect(\"Approved npm:@denotest/node-lifecycle-scripts@1.0.0\");\n- pty.expect(\n- \"@denotest/node-lifecycle-scrip...
2025-12-05T08:20:01
swiftlang/swift
105bdb8910ea2f70b35384ee945ac2b70e65f0c1
f90a4b1b80b4516a822303732b6f7d00d89cf25a
[ConstraintSystem] Propagate typed throws error type into throwing closures In a typed throws context a throwing closure (as determined from the body or an explicit `throws`) assumes an error type of the context that is a subtype of `any Error`. This is a carve out from `FullTypedThrows` feature that let's more code ...
[ { "path": "lib/Sema/CSSimplify.cpp", "patch": "@@ -12389,7 +12389,6 @@ bool ConstraintSystem::resolveClosure(TypeVariableType *typeVar,\n parameters.push_back(param);\n }\n \n- // Propagate @Sendable from the contextual type to the closure.\n auto closureExtInfo = inferredClosureType->getExtInfo();...
2026-02-14T01:48:42
mrdoob/three.js
806d427f3c36afb643e2456d46e4d9fbe193d256
7bc5b1782682dc8c832a02456c16c13f77cc5969
WebGPURenderer: Introduce `TimestampQueryPool` (#30359) * WebGPURenderer: Introduce renderer.resolveAllTimestampsAsync(type) * cleanup * update some examples and cleanup * white space * test bird screenshot * fix bird e2e * revert bird screenshot * feedbacks * better to not use async as it affects the loop and...
[ { "path": "examples/webgpu_compute_birds.html", "patch": "@@ -28,7 +28,8 @@\n \t\t\t\t\t\"three\": \"../build/three.webgpu.js\",\n \t\t\t\t\t\"three/webgpu\": \"../build/three.webgpu.js\",\n \t\t\t\t\t\"three/tsl\": \"../build/three.tsl.js\",\n-\t\t\t\t\t\"three/addons/\": \"./jsm/\"\n+\t\t\t\t\t\"three/add...
2025-01-21T17:19:14
denoland/deno
49fa02d98859f467e0216bfdb79417aace90f433
54412e4e8fd1fe3dadb9dfb9276a9dfccca90fd1
fix(ext/node): `url.domainToASCII` returns empty string for invalid domains (#31219) ## Summary This PR fixes the behavior of `url.domainToASCII` to match Node.js by returning an empty string when an invalid domain is passed, instead of throwing an error. ## Changes - Modified `op_node_idna_domain_to_ascii` in `ext...
[ { "path": "ext/node/ops/idna.rs", "patch": "@@ -114,12 +114,12 @@ pub fn op_node_idna_punycode_to_unicode(\n \n /// Converts a domain to ASCII as per the IDNA spec\n /// (specifically UTS #46)\n+///\n+/// Returns an empty string if the domain is invalid, matching Node.js behavior\n #[op2]\n #[string]\n-pub ...
2025-12-03T14:57:53
golang/go
aea881230dcc640ad730d3759423104074577756
120f1874ef380362cf8b8c4775a327bcd417ff70
std: fix printf("%q", int) mistakes For #72850 Change-Id: I07e64f05c82a34b1dadb9a72e16f5045e68cbd24 Reviewed-on: https://go-review.googlesource.com/c/go/+/720642 Auto-Submit: Alan Donovan <adonovan@google.com> Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org> Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> LUCI...
[ { "path": "src/cmd/compile/internal/ir/fmt.go", "patch": "@@ -574,7 +574,7 @@ func exprFmt(n Node, s fmt.State, prec int) {\n \t\t// Special case for rune constants.\n \t\tif typ == types.RuneType || typ == types.UntypedRune {\n \t\t\tif x, ok := constant.Uint64Val(val); ok && x <= utf8.MaxRune {\n-\t\t\t\t...
2025-11-14T19:59:36
swiftlang/swift
6a9875c73e983672091de93b07bddfa9335d9cf2
80b092eb990ab52f3969e14cc4953d1a8aa2c2be
LifetimeDependenceUtils: add support for mutable captures A mutable capture is always escaping. Naturally, you can't mutably capture a non-Escapable value. Nonetheless, code may override the lifetime of the captured value as immortal, knowing that the closure does not actually escape. '_overrideLifetime(capturedThing...
[ { "path": "SwiftCompilerSources/Sources/Optimizer/Utilities/LifetimeDependenceUtils.swift", "patch": "@@ -1116,7 +1116,7 @@ extension LifetimeDependenceDefUseWalker {\n return escapingDependence(on: localAccess.operand!)\n case .outgoingArgument:\n let arg = allocation as! FunctionArgument\n...
2026-02-19T22:17:31
mrdoob/three.js
7bc5b1782682dc8c832a02456c16c13f77cc5969
7e76dc4499c9d252a74bc25d7196f87c2c7ee139
TSL: Add matrix operations support (#30370) * TSL: Add matrix operations support * fix lint * fix lint * fix CI
[ { "path": "src/nodes/math/OperatorNode.js", "patch": "@@ -118,23 +118,39 @@ class OperatorNode extends TempNode {\n \n \t\t} else {\n \n-\t\t\tif ( typeA === 'float' && builder.isMatrix( typeB ) ) {\n+\t\t\t// Handle matrix operations\n+\t\t\tif ( builder.isMatrix( typeA ) ) {\n \n-\t\t\t\treturn typeB;\n+\...
2025-01-21T15:36:47
denoland/deno
54412e4e8fd1fe3dadb9dfb9276a9dfccca90fd1
62e63ac9cacd6f55d5999c17814ef2d842213b5f
test: disable parallel/test-fs-promises-file-handle-readFile.js (#31485) This test needs some more work, I've seen it crash multiple times in various PRs over the last 24h.
[ { "path": "tests/node_compat/config.toml", "patch": "@@ -463,7 +463,8 @@\n \"parallel/test-fs-open-numeric-flags.js\" = {}\n \"parallel/test-fs-open.js\" = {}\n \"parallel/test-fs-promises-exists.js\" = {}\n-\"parallel/test-fs-promises-file-handle-readFile.js\" = { flaky = true }\n+# TODO(bartlomieju): cras...
2025-12-03T14:46:43
golang/go
120f1874ef380362cf8b8c4775a327bcd417ff70
fecfcaa4f68a220f47e2c7c8b65d55906dbf8d46
runtime: add more precise test of assist credit handling for runtime.freegc This CL is part of a set of CLs that attempt to reduce how much work the GC must do. See the design in https://go.dev/design/74299-runtime-freegc This CL adds a better test of assist credit handling when heap objects are being reused after a ...
[ { "path": "src/runtime/export_test.go", "patch": "@@ -644,6 +644,25 @@ func Freegc(p unsafe.Pointer, size uintptr, noscan bool) {\n \tfreegc(p, size, noscan)\n }\n \n+// Expose gcAssistBytes for the current g for testing.\n+func AssistCredit() int64 {\n+\tassistG := getg()\n+\tif assistG.m.curg != nil {\n+\...
2025-11-03T21:40:40
mrdoob/three.js
f4ff275b36f5abfcf6f167b12bcdc9c349ba619e
f70fece9eb12b9cb4bc5873c04bff54ac33ca329
TSL: Add `mat2` support (#30364) * TSL: Add mat2 support * fix CI * good
[ { "path": "src/nodes/core/NodeBuilder.js", "patch": "@@ -1320,9 +1320,16 @@ class NodeBuilder {\n \n \t\tif ( length === 1 ) return componentType;\n \n-\t\tconst baseType = getTypeFromLength( length );\n+\t\tlet baseType = getTypeFromLength( length );\n \t\tconst prefix = componentType === 'float' ? '' : co...
2025-01-20T20:07:54
tensorflow/tensorflow
e76c22ae7699d979a36f620a9a4d6ed2897a8d1d
f2285f50c8fc8913a0e21b92735cb11bcfd32061
Update rules_python patch to map 3.14 to 3.14.2. 3.14.1+ fixes stack overflow detection, which is important for CI: https://github.com/python/cpython/issues/139653 PiperOrigin-RevId: 860269037
[ { "path": "third_party/py/rules_python_versions.patch", "patch": "@@ -1,5 +1,5 @@\n diff --git a/python/versions.bzl b/python/versions.bzl\n-index 30929f82..c0856d70 100644\n+index 30929f82..df4a9a98 100644\n --- a/python/versions.bzl\n +++ b/python/versions.bzl\n @@ -810,6 +810,51 @@ TOOL_VERSIONS = {\n@@ ...
2026-01-23T23:02:55
denoland/deno
62e63ac9cacd6f55d5999c17814ef2d842213b5f
746f60d2a4eda1b825d7d459de192ee416dbc015
fix(audit): remove unwrap in favor of log, don't print empty reports (#31479) Changes to print reports from socket.dev, only if something is found.
[ { "path": "cli/tools/pm/audit.rs", "patch": "@@ -663,10 +663,14 @@ mod socket_dev {\n None\n }\n })\n- .map(|json_response| {\n- let response: FirewallResponse =\n- serde_json::from_str(&json_response).unwrap();\n- response\n+ .filter_map(|json_respon...
2025-12-02T23:30:57
golang/go
fecfcaa4f68a220f47e2c7c8b65d55906dbf8d46
5a347b775e051060f6f52ce25ec82a024a3a9365
runtime: add runtime.freegc to reduce GC work This CL is part of a set of CLs that attempt to reduce how much work the GC must do. See the design in https://go.dev/design/74299-runtime-freegc This CL adds runtime.freegc: func freegc(ptr unsafe.Pointer, uintptr size, noscan bool) Memory freed via runtime.freegc is ...
[ { "path": "src/cmd/link/internal/loader/loader.go", "patch": "@@ -2464,10 +2464,11 @@ var blockedLinknames = map[string][]string{\n \t// Experimental features\n \t\"runtime.goroutineLeakGC\": {\"runtime/pprof\"},\n \t\"runtime.goroutineleakcount\": {\"runtime/pprof\"},\n+\t\"runtime.freegc\": ...
2025-11-04T14:33:17
mrdoob/three.js
146e242603a10cecc37edb56786f21047dce4fbe
8343b4b85ad73f74098dd568633d300e5aee993a
Fix Grammar Scene.html (#30357)
[ { "path": "docs/api/en/scenes/Scene.html", "patch": "@@ -11,7 +11,7 @@\n \t\t<h1>[name]</h1>\n \n \t\t<p class=\"desc\">\n-\t\t\tScenes allow you to set up what and where is to be rendered by three.js.\n+\t\t\tScenes allow you to set up what is to be rendered and where by three.js.\n \t\t\tThis is where you...
2025-01-18T08:53:16
swiftlang/swift
9c3c25f07fc4947ec85ee06a5963d18ce94a9741
8d10694d48ab2eb88de3d9d8b109a5c135dc1b94
[Backtracing] If the backtracer crashes, backtrace it (once). If the backtracer crashes, at present we get no clues as to what went wrong. This makes it very hard to debug. Part of the reason for this is that we were worried about it entering a recursive backtracing loop, however not having any messages at all when ...
[ { "path": "stdlib/public/runtime/Backtrace.cpp", "patch": "@@ -142,6 +142,9 @@ SWIFT_RUNTIME_STDLIB_INTERNAL BacktraceSettings _swift_backtraceSettings = {\n // format\n OutputFormat::Text,\n \n+ // inBacktracer\n+ false,\n+\n // swiftBacktracePath\n NULL,\n \n@@ -346,6 +349,9 @@ BacktraceInitiali...
2026-02-20T15:01:32
denoland/deno
746f60d2a4eda1b825d7d459de192ee416dbc015
6b78b55a9aad141b397768b5f8dc8b454a962189
fix(tsgo): do not error out on non js/ts imports from npm packages (#31478) Fixes #31423 This already worked for non npm files because the loading for non-npm files uses the module graph, and things like CSS don't appear in the module graph. That meant we weren't prompting tsc to create a source file and parse those...
[ { "path": "cli/tsc/go.rs", "patch": "@@ -662,6 +662,33 @@ fn load_inner(\n let is_cjs = result.is_cjs;\n let media_type = result.media_type;\n \n+ match media_type {\n+ MediaType::JavaScript\n+ | MediaType::Jsx\n+ | MediaType::Mjs\n+ | MediaType::Cjs\n+ | MediaType::TypeScript\n+ | Me...
2025-12-02T22:06:15
golang/go
1a03d0db3f36c1a81a184fa15a54f716569a9972
cb0d9980f5721715ebb73dd2e580eaa11c2ddee2
runtime: skip tests for GOEXPERIMENT=arenas that do not handle clobberfree=1 When run with GODEBUG=clobberfree=1, three out of seven of the top-level tests in runtime/arena_test.go fail with a SIGSEGV inside the clobberfree function where it is overwriting freed memory with 0xdeadbeef. This is not a new problem. For ...
[ { "path": "src/runtime/arena_test.go", "patch": "@@ -36,6 +36,11 @@ type largeScalar [UserArenaChunkBytes + 1]byte\n type largePointer [UserArenaChunkBytes/unsafe.Sizeof(&smallPointer{}) + 1]*smallPointer\n \n func TestUserArena(t *testing.T) {\n+\tif Clobberfree() {\n+\t\t// This test crashes with SEGV in ...
2025-11-05T17:18:49
mrdoob/three.js
5b7a0175327b4dd17203ba78d1887f2ed413bf72
8bbd48e8f2139f08ffcc1f4be79f9ada120d43c3
XRManager: Fix background (#30348) * XRManager: Fix background clear in XR. * Renderer: Update background even in XR.
[ { "path": "src/renderers/common/Background.js", "patch": "@@ -142,6 +142,20 @@ class Background extends DataMap {\n \n \t\t//\n \n+\t\tconst environmentBlendMode = renderer.xr.getEnvironmentBlendMode();\n+\n+\t\tif ( environmentBlendMode === 'additive' ) {\n+\n+\t\t\t_clearColor.set( 0, 0, 0, 1 );\n+\n+\t\t...
2025-01-17T16:55:58
kubernetes/kubernetes
08b81b94f4ef3f30be2c240850d4bb77dc6df5cf
31e7bacdca59cf9543af5c86acbb8c9169d80eb9
Align IsWatchListSemanticsUnSupported comment The comment no longer matches the function name, this fixes that. Signed-off-by: Stephen Kitt <skitt@redhat.com>
[ { "path": "pkg/kubelet/config/apiserver_test.go", "patch": "@@ -40,7 +40,7 @@ func (lw fakePodLW) Watch(options metav1.ListOptions) (watch.Interface, error) {\n \treturn lw.watchResp, nil\n }\n \n-// IsWatchListSemanticsSupported informs the reflector that this client\n+// IsWatchListSemanticsUnSupported in...
2026-01-21T12:55:11
tensorflow/tensorflow
dfc130a3c47c95a86ba482b5edf92a0283c9ba6e
96ec9851967f0e2b9c0537d6686eda5c52178822
internal test fix PiperOrigin-RevId: 860212728
[ { "path": "tensorflow/core/common_runtime/BUILD", "patch": "@@ -2977,6 +2977,7 @@ tf_cuda_cc_test(\n # enables support for TensorFlow Debugger (tfdbg).\n tf_cc_test(\n name = \"direct_session_with_debug_test\",\n+ size = \"large\",\n srcs = [\"direct_session_test.cc\"],\n features = [\"-layer...
2026-01-23T20:33:14
golang/go
03ed43988ff7f7671094d8c455532de7f2242e70
1bb1f2bf0c07bbc583063a21b324407f7041e316
cmd/compile: allow multi-field structs to be stored directly in interfaces If the struct is a bunch of 0-sized fields and one pointer field. Merged revert-of-revert for 4 CLs. original revert 681937 695016 693415 694996 693615 695015 694195 694995 Fixes #74092 Update #74888 Update #74908 Update #74935 ...
[ { "path": "src/cmd/compile/internal/ssa/_gen/dec.rules", "patch": "@@ -97,8 +97,10 @@\n // Helpers for expand calls\n // Some of these are copied from generic.rules\n \n-(IMake _typ (StructMake val)) => (IMake _typ val)\n-(StructSelect [0] (IData x)) => (IData x)\n+(IMake _typ (StructMake ___)) => imakeOfSt...
2025-06-15T03:10:50
denoland/deno
57be16042c7ba21efa0c37f887f1f4b0923d0db2
0d662fee33071c797f9aa8ef9a095d75cb5733cb
chore: speed up macos compile tests (#31477) Most of the tests for deno compile take >= 20 seconds (each) on macos. This is mostly due to sha2 and libsui taking a long time to process the debug binary. This speeds them up to <1 sec each, which saves multiple minutes when running all the tests
[ { "path": "Cargo.toml", "patch": "@@ -427,6 +427,13 @@ opt-level = 3\n [profile.dev.package.v8]\n opt-level = 1\n \n+# speeds up deno compile tests a lot\n+[profile.dev.package.libsui]\n+opt-level = 3\n+\n+[profile.dev.package.sha2]\n+opt-level = 3\n+\n [profile.release.package.async-compression]\n opt-leve...
2025-12-02T21:35:36
mrdoob/three.js
e6a79f84a545d40efc8f1b18a5785fbf6a9a5ca3
2eff1b94da6b361bf5382f52e0fb8db7720d1ef0
WebGPURenderer: Add `XRManager`. (#30346) * WebGPURenderer: Add `XRManager`. * Renderer: Fix projection matrix computation in XR. * WebGLBackend: Use `gl.STATIC_DRAW` for camera index buffers. * Renderer: Clean up. * WebGLBackend: Don't cache `cameraIndex`. * XRManager: Add documentation. * E2E: Upda...
[ { "path": "examples/files.json", "patch": "@@ -448,7 +448,8 @@\n \t\t\"webgpu_video_panorama\",\n \t\t\"webgpu_volume_cloud\",\n \t\t\"webgpu_volume_perlin\",\n-\t\t\"webgpu_water\"\n+\t\t\"webgpu_water\",\n+\t\t\"webgpu_xr_cubes\"\n \t],\n \t\"webaudio\": [\n \t\t\"webaudio_orientation\",", "additions"...
2025-01-17T13:55:45
golang/go
1bb1f2bf0c07bbc583063a21b324407f7041e316
9fd2e4443955127ed360338cb19a5aeba6be1a8c
runtime: put AddCleanup cleanup arguments in their own allocation Currently, AddCleanup just creates a simple closure that calls `cleanup(arg)` as the actual cleanup function tracked internally. However, the argument ends up getting its own allocation. If it's tiny, then it can also end up sharing a tiny allocation sl...
[ { "path": "src/runtime/mcleanup.go", "patch": "@@ -72,8 +72,9 @@ import (\n // pass the object to the [KeepAlive] function after the last point\n // where the object must remain reachable.\n func AddCleanup[T, S any](ptr *T, cleanup func(S), arg S) Cleanup {\n-\t// Explicitly force ptr to escape to the heap...
2025-11-13T18:29:23
tensorflow/tensorflow
57aa8d691f33789c44de70b6ca0a9bd1c01cda0f
eeee6fbe28b8631ce20ab1ed95d22d7ca8c23db3
Fix local_tsl references. PiperOrigin-RevId: 860188143
[ { "path": "tensorflow/tools/def_file_filter/symbols_pybind.txt", "patch": "@@ -504,7 +504,7 @@ tensorflow::GetMlirCommonFlags\n tensorflow::GetXlaDeviceFlags\n tensorflow::ResetJitCompilerFlags\n \n-[//external/local_tsl/tsl/platform:tensor_float_32_utils] # tensor_float_32\n+[//external/tsl/tsl/platform:te...
2026-01-23T19:31:07
mrdoob/three.js
019541734841967b72aa73997f0451c5b48272d5
785add50170c5726e48ed55a7e71a5ec16d2c176
WebGLBackend: Fix `ArrayCamera` pixel ratio (#30338)
[ { "path": "src/renderers/webgl-fallback/WebGLBackend.js", "patch": "@@ -1104,11 +1104,16 @@ class WebGLBackend extends Backend {\n \n \t\t\t\t\tconst vp = subCamera.viewport;\n \n+\t\t\t\t\tconst x = vp.x * pixelRatio;\n+\t\t\t\t\tconst y = vp.y * pixelRatio;\n+\t\t\t\t\tconst width = vp.width * pixelRatio;...
2025-01-16T22:07:22
denoland/deno
0d662fee33071c797f9aa8ef9a095d75cb5733cb
cafd7f6c7f646b18f51bf3bc3156efa3d2000d48
fix(test): Remove ANSI Escape Codes for Junit Reports (#30854) * Add an option to the report printer to not use ansi codes. * Made this default fore the junit file output. * Implemented removal of codes in the formatter. It would be preferable for performance to not include them in the first place but that change is ...
[ { "path": "cli/tools/test/fmt.rs", "patch": "@@ -3,6 +3,7 @@\n use std::borrow::Cow;\n use std::ops::AddAssign;\n \n+use console_static_text::ansi::strip_ansi_codes;\n use deno_core::stats::RuntimeActivity;\n use deno_core::stats::RuntimeActivityDiff;\n use deno_core::stats::RuntimeActivityTrace;\n@@ -88,10...
2025-12-02T17:11:44
swiftlang/swift
1f008fb0d00283f2e9e066bca0f82a94d7e49beb
23c98fe5ca6e2026a1b4d9d2fd0e8820d26d1d0f
[ModuleInterface] Enable module selectors by default And update tests to use them. This commit depends on fixes in swiftlang/swift PRs #86905, #87129, and #87130. Fixes rdar://169749886.
[ { "path": "include/swift/AST/DiagnosticsFrontend.def", "patch": "@@ -199,6 +199,12 @@ WARNING(ignoring_option_requires_option,none,\n \"ignoring %0 (requires %1)\", (StringRef, StringRef))\n WARNING(warn_ignore_option_overridden_by,none,\n \"ignoring %0 (overridden by %1)\", (StringRef, Stri...
2026-02-11T01:05:16
golang/go
7a8d0b5d53dc7be331016b6903707aa256e22c2a
710abf74da2a017423e35e416ab3fd05e6053bf3
runtime: add debug mode to extend _Grunning-without-P windows This was suggested in CL 646198, and I tested with it, I forgot to push it so it wasn't merged. I think it might be worth keeping. Change-Id: Ibf97d969fe7d0eeb365f5f7b1fbeadea3a1076ab Reviewed-on: https://go-review.googlesource.com/c/go/+/716580 Reviewed-b...
[ { "path": "src/runtime/proc.go", "patch": "@@ -4658,6 +4658,11 @@ func reentersyscall(pc, sp, bp uintptr) {\n \tgp.m.locks--\n }\n \n+// debugExtendGrunningNoP is a debug mode that extends the windows in which\n+// we're _Grunning without a P in order to try to shake out bugs with code\n+// assuming this st...
2025-10-30T17:24:47
kubernetes/kubernetes
078c7dfd90968edc72146a81c83f7884596c15ee
cb077823fb053eb3dff39334f5d9d44d7512477e
features: lock TopologyManagerOptions TopologyManagerOptions went to GA but were not LockedToDefaults unlike other GA features. Fix that. Signed-off-by: Francesco Romani <fromani@redhat.com>
[ { "path": "pkg/features/kube_features.go", "patch": "@@ -1842,7 +1842,7 @@ var defaultVersionedKubernetesFeatureGates = map[featuregate.Feature]featuregate\n \tTopologyManagerPolicyOptions: {\n \t\t{Version: version.MustParse(\"1.26\"), Default: false, PreRelease: featuregate.Alpha},\n \t\t{Version: version...
2026-01-21T09:20:50
mrdoob/three.js
7b21022e42499807f95e2e6d99fe4ef4a7da37bd
add425de306c52432639920e50ddea653f3d29a4
fix CustomToneMapping in Post Processing OutputPass and OutputShader (#30335) Co-authored-by: Francesco Sampoli <sampoli@quest-it.com>
[ { "path": "examples/jsm/postprocessing/OutputPass.js", "patch": "@@ -8,6 +8,7 @@ import {\n \tAgXToneMapping,\n \tACESFilmicToneMapping,\n \tNeutralToneMapping,\n+\tCustomToneMapping,\n \tSRGBTransfer\n } from 'three';\n import { Pass, FullScreenQuad } from './Pass.js';\n@@ -63,6 +64,7 @@ class OutputPass e...
2025-01-16T13:19:29
tensorflow/tensorflow
eeee6fbe28b8631ce20ab1ed95d22d7ca8c23db3
ba722f8122d35724053df3be51f53df22ec00faa
PR #36426: [xla:gpu] Add an API to collect collective memory requests Imported from GitHub PR https://github.com/openxla/xla/pull/36426 Similar to `CollectiveCliqueRequests` add and API to collect device addresses (and buffer allocations) that must be mapped to symmetric memories for collective execution. This is pa...
[ { "path": "third_party/xla/xla/backends/gpu/BUILD", "patch": "@@ -22,6 +22,7 @@ cc_library(\n deps = [\n \"//xla/backends/gpu/runtime:collective_clique_requests\",\n \"//xla/backends/gpu/runtime:collective_cliques\",\n+ \"//xla/backends/gpu/runtime:collective_memory_requests\",\n ...
2026-01-23T19:24:53
golang/go
a0e738c657d33e2a648838546812fb50cf42e41d
2cdcc4150bc577e0b40a9cedaaa7c8301f2860cd
cmd/compile/internal: remove incorrect riscv64 SLTI rule The rule (SLTI [x] (ORI [y] _)) && y >= 0 && int64(y) >= int64(x) => (MOVDconst [0]) is incorrect as it only generates correct code if the unknown value being compared is >= 0. If the unknown value is < 0 the rule will incorrectly produce a constant value of...
[ { "path": "src/cmd/compile/internal/ssa/_gen/RISCV64.rules", "patch": "@@ -792,7 +792,6 @@\n // SLTI/SLTIU with known outcomes.\n (SLTI [x] (ANDI [y] _)) && y >= 0 && int64(y) < int64(x) => (MOVDconst [1])\n (SLTIU [x] (ANDI [y] _)) && y >= 0 && uint64(y) < uint64(x) => (MOVDconst [1])\n-(SLTI [x] (ORI [...
2025-11-13T11:28:29
kubernetes/kubernetes
703642baf653b14f1a614fec37d1a27c98028f19
e3684b7eb2bbeed2ca77d56120f3b97258b5858c
DRA scheduler: fix one root cause of double device allocation DRA depends on the assume cache having invoked all event handlers before Assume() returns, because DRA maintains state that is relevant for scheduling through those event handlers. This log snippet shows how this went wrong during PreBind: dynamicreso...
[ { "path": "pkg/scheduler/util/assumecache/assume_cache.go", "patch": "@@ -124,6 +124,9 @@ type AssumeCache struct {\n \t// Synchronizes updates to all fields below.\n \trwMutex sync.RWMutex\n \n+\t// cond is used by emitEvents.\n+\tcond *sync.Cond\n+\n \t// All registered event handlers.\n \teventHandlers ...
2026-01-16T07:39:02
mrdoob/three.js
0c1185d40e326cd35e55417e5df3d98dcf6dcd9d
a13e4b053ad4dec53b66a96cc035ee5c747c3d21
WebGPURenderer: Improve `ArrayCamera` performance and fixes (#30313) * wip arraycamera * Update webgl_camera_array2.html * updated approach * Update WebGLBackend.js * added webgpu support * update example * revision * update camera array * Update Camera.js * update * Update webgpu_camera_array.html * cleanu...
[ { "path": "examples/webgpu_camera_array.html", "patch": "@@ -7,6 +7,7 @@\n \t\t<link type=\"text/css\" rel=\"stylesheet\" href=\"main.css\">\n \t</head>\n \t<body>\n+\n \t\t<script type=\"importmap\">\n \t\t\t{\n \t\t\t\t\"imports\": {\n@@ -22,51 +23,43 @@\n \n \t\t\timport * as THREE from 'three';\n \n+\t\...
2025-01-16T12:14:34
golang/go
b57962b7c7de2b70fa943e66cd26b2cce631b7f8
0a569528ea355099af864f7612c3fa1973df30e4
bytes: fix panic in bytes.Buffer.Peek This change fixed the overlooked offset in bytes.Buffer.Peek. Otherwise, it will either return wrong result or panic with "runtime error: slice bounds out of range". Change-Id: Ic42fd8a27fb9703c51430f298933b91cf0d45451 GitHub-Last-Rev: fb97ebc3b188959835706626f66898d6306c16fb Git...
[ { "path": "src/bytes/buffer.go", "patch": "@@ -86,7 +86,7 @@ func (b *Buffer) Peek(n int) ([]byte, error) {\n \tif b.Len() < n {\n \t\treturn b.buf[b.off:], io.EOF\n \t}\n-\treturn b.buf[b.off:n], nil\n+\treturn b.buf[b.off : b.off+n], nil\n }\n \n // empty reports whether the unread portion of the buffer i...
2025-11-13T01:43:03
tensorflow/tensorflow
ba722f8122d35724053df3be51f53df22ec00faa
9655f08d2c00503d33df16365afac3f9f8c8b548
Make it clear that pjrt does not support nested tuples in the results and fix the failing tests that were replying on this. PiperOrigin-RevId: 860178510
[ { "path": "third_party/xla/xla/backends/cpu/codegen/tools/fusion_to_mlir.cc", "patch": "@@ -25,6 +25,7 @@ limitations under the License.\n #include \"xla/codegen/tools/test_lib.h\"\n #include \"xla/hlo/ir/hlo_casting_utils.h\"\n #include \"xla/hlo/ir/hlo_instructions.h\"\n+#include \"xla/hlo/ir/hlo_opcode.h...
2026-01-23T19:07:10
mrdoob/three.js
a13e4b053ad4dec53b66a96cc035ee5c747c3d21
d9ca4dc0104b05c6421e22d30346abafd66894c4
WebGPURenderer: Fix clear alpha in WebGLBackend (#30329) * WebGPURenderer: Fix clear alpha in WebGLBackend * improved jsdoc * add comment * simplify * remove white space * revert
[ { "path": "src/renderers/common/Renderer.js", "patch": "@@ -1855,6 +1855,9 @@ class Renderer {\n \n \t\t}\n \n+\t\t// #30329\n+\t\trenderContext.clearColorValue = this._clearColor;\n+\n \t\tthis.backend.clear( color, depth, stencil, renderContext );\n \n \t\tif ( renderTarget !== null && this._renderTarget ...
2025-01-16T02:51:01
kubernetes/kubernetes
ff7b1dac1817ce29b7c2bc0467c63eae159ba9aa
63459fb12853de2321bef2639929ca1459d69a3c
Fix NPB test image cross-build for arm64 Fix by adding chmod -R a+rX after tar extraction to ensure all files are readable and executables/directories are accessible. Signed-off-by: Davanum Srinivas <davanum@gmail.com>
[ { "path": "test/images/node-perf/npb-ep/Dockerfile", "patch": "@@ -20,7 +20,8 @@ CROSS_BUILD_COPY qemu-QEMUARCH-static /usr/bin/\n RUN apt-get update && apt-get install -y libc6-dev g++ bzip2 dpkg-dev build-essential gfortran\n \n ADD http://www.nas.nasa.gov/assets/npb/NPB3.4.3.tar.gz .\n-RUN tar xzf NPB3.4...
2026-01-21T03:15:49
golang/go
9daaab305c4d1dede9e4f6efdc5e1268a69327e6
d50a571ddfb7661d65c8488b0bbfeacc793f964b
cmd/link/internal/ld: make runtime.buildVersion with experiments valid Specifically if there are experiments but no nonstandard toolchain suffix such as "-devel", the go version will not be valid according to go/version.IsValid. To fix that, always put the X: part into the suffix, resulting in, for example, go1.25.0-X...
[ { "path": "src/cmd/go/internal/cache/hash.go", "patch": "@@ -51,6 +51,9 @@ func stripExperiment(version string) string {\n \tif i := strings.Index(version, \" X:\"); i >= 0 {\n \t\treturn version[:i]\n \t}\n+\tif i := strings.Index(version, \"-X:\"); i >= 0 {\n+\t\treturn version[:i]\n+\t}\n \treturn versio...
2025-11-11T18:54:52
denoland/deno
95e434eb37eccd7a008e230e3f68049ca8eb5db8
55621d9ef0d7e9f581c6b2cfe74067a13c872b3f
fix(ext/node): respect abort signal option on `FileHandle.readFile` (#31462) Towards #29972 Allows https://github.com/nodejs/node/blob/v24.2.0/test/parallel/test-fs-promises-file-handle-readFile.js test to pass.
[ { "path": "ext/node/polyfills/_fs/_fs_readFile.ts", "patch": "@@ -10,16 +10,37 @@ import {\n TextOptionsArgument,\n } from \"ext:deno_node/_fs/_fs_common.ts\";\n import { Buffer } from \"node:buffer\";\n-import { readAll, readAllSync } from \"ext:deno_io/12_io.js\";\n+import { readAllSync } from \"ext:den...
2025-12-02T01:13:11
mrdoob/three.js
a34d43c652c32a5e303320736c33e7dd563ab2a5
53452d3f02573c7a82b22ff74915974ef0666e18
Node: fix some types (#30323) * Node: fix some types * Update Lighting.js * Update Background.js * Update NodeMaterial.js --------- Co-authored-by: Samuel Rigaud <srigaud@duodisplay.com> Co-authored-by: Michael Herzog <michael.herzog@human-interactive.org>
[ { "path": "src/nodes/accessors/BufferAttributeNode.js", "patch": "@@ -271,7 +271,7 @@ class BufferAttributeNode extends InputNode {\n \t/**\n \t * Sets the `instanced` property to the given value.\n \t *\n-\t * @param {Number} value - The value to set.\n+\t * @param {Boolean} value - The value to set.\n \t ...
2025-01-14T15:23:43
tensorflow/tensorflow
14756f3b4aafc706545e16d03b2b617c788b1380
c7ee2831b0b2ccdf043628ec094552c46e710c36
PR #36755: autotuner: iterate in deterministic order Imported from GitHub PR https://github.com/openxla/xla/pull/36755 📝 Summary of Changes Avoid iterating in a run-to-run-unstable order (https://abseil.io/docs/cpp/guides/container#iteration-order-instability). This was causing different processes in distributed JAX...
[ { "path": "third_party/xla/xla/backends/autotuner/autotuner.cc", "patch": "@@ -271,7 +271,9 @@ absl::Status Autotuner::Autotune(HloModule* module,\n \n // 6. Apply the results to all candidate instructions, must be already in\n // cache_ due to step 3 and 5 above.\n- for (auto& [_, instructions] : all_...
2026-01-23T18:25:09
swiftlang/swift
bfc8a842a7d35545c34dca2a1aa77729403a416b
6075e13741e5b7528e7362e390a9bca80bdb2035
[DependencyScanning] Reenable Clang Module Dependency Scanning through the Shared Clang Compiler Instance (#87319) This PR enables the lookup using shared compiler instance since https://github.com/llvm/llvm-project/pull/178542 (and https://github.com/swiftlang/llvm-project/pull/12245) fixed the incorrect diagnostics ...
[ { "path": "lib/DependencyScan/ModuleDependencyScanner.cpp", "patch": "@@ -326,10 +326,9 @@ ModuleDependencyScanningWorker::scanFilesystemForClangModuleDependency(\n const llvm::DenseSet<clang::tooling::dependencies::ModuleID>\n &alreadySeenModules) {\n diagnosticReporter.registerNamedClangModu...
2026-02-19T21:36:31
kubernetes/kubernetes
cb8963ad92952e62f0dd285309c6d6f38efaf668
63459fb12853de2321bef2639929ca1459d69a3c
Fix sample-apiserver image build failure The kube-cross image has GOPATH=/usr/local/go and GOROOT=/usr/local/go (same directory). When `go install .` runs, the binary is placed in /usr/local/go/bin/, but the Makefile was searching for it in /go/bin/ which is empty. Fix by using `go build -o` to place the binary direc...
[ { "path": "test/images/sample-apiserver/Makefile", "patch": "@@ -27,15 +27,11 @@ export\n bin:\n \tdocker run --rm -i -v \"${TARGET}:${TARGET}:Z\" registry.k8s.io/build-image/kube-cross:${KUBE_CROSS_VERSION} \\\n \t\t/bin/bash -c \"\\\n-\t\t\tmkdir -p /go/src /go/bin && \\\n+\t\t\tmkdir -p /go/src && \\\n \...
2026-01-21T02:43:36
golang/go
d50a571ddfb7661d65c8488b0bbfeacc793f964b
704f841eab87462d4eefac07345c96f71fb6e964
test: fix tests to work with sizespecializedmalloc turned off Cq-Include-Trybots: luci.golang.try:gotip-linux-386-nosizespecializedmalloc,gotip-linux-amd64-nosizespecializedmalloc,gotip-linux-arm64-nosizespecializedmalloc Change-Id: I6a6a696465004b939c989afc058c4c3e1fb7134f Reviewed-on: https://go-review.googlesource....
[ { "path": "test/codegen/strings.go", "patch": "@@ -23,7 +23,7 @@ func CountBytes(s []byte) int {\n \n func ToByteSlice() []byte { // Issue #24698\n \t// amd64:`LEAQ type:\\[3\\]uint8`\n-\t// amd64:`CALL runtime\\.mallocTiny3`\n+\t// amd64:`CALL runtime\\.(newobject|mallocTiny3)`\n \t// amd64:-`.*runtime.str...
2025-11-13T22:04:54
denoland/deno
55621d9ef0d7e9f581c6b2cfe74067a13c872b3f
1d575591075876fa4ec79e3dbc5030078c3a593f
fix: wpt assert expectation correctly even if the filter has a layer (#30574) related: #30501 I fixed to assert properly even if the filter has a layer as follows: ``` ./tests/wpt/wpt.ts run -- WebCryptoAPI/import_export ```
[ { "path": "tests/wpt/wpt.ts", "patch": "@@ -64,6 +64,24 @@ class TestFilter {\n }\n return false;\n }\n+\n+ shouldKeepWalking(path): boolean {\n+ if (this.filter === undefined || this.filter.length == 0) {\n+ return true;\n+ }\n+ for (const filter of this.filter) {\n+ if (filte...
2025-12-02T00:51:45
mrdoob/three.js
0434326a9f83169affda7483adf0e87c58e4463e
2cf6a5bfd315dc6b87269f77fdef97146e4b34de
RenderObject: Improve cache key computation when rendering shadows. (#30316) * RenderObject: Improve cache key computation when rendering shadows. * ShadowNode: Fix material type conflict.
[ { "path": "src/nodes/lighting/ShadowNode.js", "patch": "@@ -56,7 +56,7 @@ const getShadowMaterial = ( light ) => {\n \t\tmaterial = new NodeMaterial();\n \t\tmaterial.colorNode = vec4( 0, 0, 0, 1 );\n \t\tmaterial.depthNode = depthNode;\n-\t\tmaterial.isShadowNodeMaterial = true; // Use to avoid other overr...
2025-01-14T09:07:35
tensorflow/tensorflow
c7ee2831b0b2ccdf043628ec094552c46e710c36
9762a5d7058fe2a216c95757de1d737e1bfacb3d
PR #36711: Bump sentencepiece from 0.1.99 to 0.2.1 in /xla/backends/cpu/benchmarks/e2e/gemma2/pytorch_2b Imported from GitHub PR https://github.com/openxla/xla/pull/36711 Bumps [sentencepiece](https://github.com/google/sentencepiece) from 0.1.99 to 0.2.1. <details> <summary>Release notes</summary> <p><em>Sourced from...
[ { "path": "third_party/xla/xla/backends/cpu/benchmarks/e2e/gemma2/pytorch_2b/requirements.txt", "patch": "@@ -1,4 +1,4 @@\n numpy == 1.24.4\n-sentencepiece == 0.1.99\n+sentencepiece == 0.2.1\n torch\n gemma @ git+https://github.com/google/gemma_pytorch.git@80881c2e6e797ef1913a4a705d4b40394791cc58\n\\ No new...
2026-01-23T18:23:30
swiftlang/swift
527f6d0cb0bc5eff3b572ee23cb133e8b32b63af
41524f9591c3c7b183a5540d85a5e379ae010b9d
[test] Add some fixed crashers Add some crashers that I encountered while making some other changes, ensure we don't regress them.
[ { "path": "validation-test/IDE/crashers_fixed/DependentMemberType-get-af29e9.swift", "patch": "@@ -0,0 +1,9 @@\n+// {\"kind\":\"complete\",\"original\":\"7ab2abac\",\"signature\":\"swift::DependentMemberType::get(swift::Type, swift::AssociatedTypeDecl*)\"}\n+// RUN: %target-swift-ide-test -code-completion -...
2026-01-10T21:17:40
denoland/deno
ed684124efd8c1b575d40caed05b858d4b8c1d89
b38897382e11e75c6808b7efa22f1112baac975d
fix(types): add [Symbol.iterator]() to NodeListOf (fixes #31382) (#31384) This PR adds missing iterable support to `NodeListOf<TNode>` in the DOM typings. Without this method, TypeScript raises error TS2488: ```ts for (const child of div.childNodes) {} // TS2488: NodeListOf<ChildNode> must have a [Symbol.iterator]() ...
[ { "path": "cli/tsc/dts/lib.dom.d.ts", "patch": "@@ -21993,6 +21993,7 @@ interface NodeListOf<TNode extends Node> extends NodeList {\n item(index: number): TNode;\n forEach(callbackfn: (value: TNode, key: number, parent: NodeListOf<TNode>) => void, thisArg?: any): void;\n [index: number]: TNode;\...
2025-12-02T00:24:36
tensorflow/tensorflow
9762a5d7058fe2a216c95757de1d737e1bfacb3d
01837c5a7e7c176a2f59f6874804443679778a1a
PR #36713: Bump sentencepiece from 0.2.0 to 0.2.1 in /xla/backends/cpu/benchmarks/e2e/gemma2/flax_2b Imported from GitHub PR https://github.com/openxla/xla/pull/36713 Bumps [sentencepiece](https://github.com/google/sentencepiece) from 0.2.0 to 0.2.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a h...
[ { "path": "third_party/xla/xla/backends/cpu/benchmarks/e2e/gemma2/flax_2b/requirements.txt", "patch": "@@ -22,7 +22,7 @@ Pygments==2.18.0\n PyYAML==6.0.2\n rich==13.9.4\n scipy==1.14.1\n-sentencepiece==0.2.0\n+sentencepiece==0.2.1\n simplejson==3.19.3\n tensorstore==0.1.69\n toolz==1.0.0", "additions": ...
2026-01-23T18:22:19
denoland/deno
b38897382e11e75c6808b7efa22f1112baac975d
42b6c822548af7995426a9bce26707fa87edbcbf
docs(libs): fix some typos in comment (#31250) Signed-off-by: geogrego <geogrego@outlook.com>
[ { "path": "libs/config/testdata/fmt/with_config/subdir/c.md", "patch": "@@ -5,7 +5,7 @@ unless you specifically enable it, a\n program run with Deno has no file,\n network, or environment access. Access\n to security sensitive functionality\n-requires that permisisons have been\n+requires that permissions h...
2025-12-01T23:50:24
denoland/deno
42b6c822548af7995426a9bce26707fa87edbcbf
3680f8b7993bffe83dda983856def1bb8138e9e6
fix(node/process): make `process.stdin.isTTY` writable (#31464) ## Summary In Node.js, `tty.ReadStream` sets `isTTY` as a simple instance property (`this.isTTY = true`), making it naturally writable. Deno's polyfill used a getter-only property definition, preventing assignment. Some npm packages need to override `is...
[ { "path": "ext/node/polyfills/_process/streams.mjs", "patch": "@@ -258,12 +258,18 @@ export const initStdin = (warmup = false) => {\n // so that the process can close down.\n stdin.on(\"pause\", () => nextTick(onpause));\n \n+ // Allow users to overwrite isTTY for test isolation and terminal mocking.\n...
2025-12-01T23:37:23
tensorflow/tensorflow
85b218c4637b27b3879b97d86c00ef35f97520b1
8d586e0ec6fdc79fccd7969a8761e6dfc8e62187
PR #36673: [xla:gpu] Add shared cancellation token to GPU comms and clique Imported from GitHub PR https://github.com/openxla/xla/pull/36673 Add shared cancellation token to GPU comms and clique. Add first class `CancellationToken` to `xla::gpu` collectives library and correctly pass it to all comms that belong to a...
[ { "path": "third_party/xla/xla/backends/gpu/collectives/BUILD", "patch": "@@ -43,11 +43,17 @@ cc_library(\n ]),\n )\n \n+cc_library(\n+ name = \"cancellation_token\",\n+ hdrs = [\"cancellation_token.h\"],\n+)\n+\n cc_library(\n name = \"gpu_clique\",\n srcs = [\"gpu_clique.cc\"],\n hdr...
2026-01-23T17:46:40
mrdoob/three.js
47cbf9de9155a41222a5a91dbba6dd073af576df
acc17c6582436a7cc2451a73aedb4c3854944dee
Renderer: fix types and references (#30318) Co-authored-by: Samuel Rigaud <srigaud@duodisplay.com>
[ { "path": "src/renderers/common/Binding.js", "patch": "@@ -27,7 +27,7 @@ class Binding {\n \t\t * A bitmask that defines in what shader stages the\n \t\t * binding's resource is accessible.\n \t\t *\n-\t\t * @type {String}\n+\t\t * @type {Number}\n \t\t */\n \t\tthis.visibility = 0;\n ", "additions": 1,...
2025-01-13T21:19:06
golang/go
ff61991aed2871301e3f4fafff65fd67d6b170b5
129d0cb543e1e15cdea706dd7230ee90c8d54446
cmd/go: fix flaky TestScript/mod_get_direct Use our local git server instead of cloud.google.com/go, which may go down or otherwise reject our traffic. I built and installed git 2.23.0 and confirmed that this updated test still fails if CL 196961 is rolled back. So the test is still accurate at detecting the problem....
[ { "path": "src/cmd/go/testdata/script/mod_get_direct.txt", "patch": "@@ -2,14 +2,14 @@\n # 'GOPROXY=direct go get golang.org/x/tools/gopls@master' did not correctly\n # resolve the pseudo-version for its dependency on golang.org/x/tools.\n \n-[!net:cloud.google.com] skip\n+[short] skip\n [!git] skip\n \n en...
2025-11-13T19:33:53
denoland/deno
3680f8b7993bffe83dda983856def1bb8138e9e6
07c3a8bfcd33330208bc7ff2d6d02ca611a0e0ff
fix: clippy::derivable_impls (#31460) https://rust-lang.github.io/rust-clippy/master/index.html#derivable_impls
[ { "path": "cli/args/flags.rs", "patch": "@@ -222,18 +222,13 @@ pub struct CoverageFlags {\n pub r#type: CoverageType,\n }\n \n-#[derive(Clone, Debug, Eq, PartialEq)]\n+#[derive(Clone, Debug, Eq, PartialEq, Default)]\n pub enum DocSourceFileFlag {\n+ #[default]\n Builtin,\n Paths(Vec<String>),\n }\n \...
2025-12-01T23:21:36
kubernetes/kubernetes
c40ea60b9f193fbead586f9fd6cc26f7b77312ff
58b22e33f933601472adf85d07ba628df6c56636
Update OpenTelemetry dependencies to latest versions Core packages (opentelemetry-go): - go.opentelemetry.io/otel: v1.38.0 → v1.39.0 - go.opentelemetry.io/otel/metric: v1.38.0 → v1.39.0 - go.opentelemetry.io/otel/trace: v1.38.0 → v1.39.0 - go.opentelemetry.io/otel/sdk: v1.38.0 → v1.39.0 Exporters: - go.opentelemetry....
[ { "path": "LICENSES/vendor/github.com/cenkalti/backoff/v5/LICENSE", "patch": "@@ -1,4 +1,4 @@\n-= vendor/github.com/cenkalti/backoff/v4 licensed under: =\n+= vendor/github.com/cenkalti/backoff/v5 licensed under: =\n \n The MIT License (MIT)\n \n@@ -21,4 +21,4 @@ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DA...
2026-01-20T22:20:21
tensorflow/tensorflow
3f77050e6b8adc21e511add9c0ba77777b22ea5f
c63cd3a6c5786440f4fb5c3735cace6f0b000ae7
Fix `ChangeOpDataType` to not attempt to change the result type Currently, `ChangeOpDataType` only checks if the operands match the `from_type`, and then tries to convert both the operands *and* the result to `to_type`, but the result type may have been different and may not require conversion, or a different conversi...
[ { "path": "third_party/xla/xla/service/BUILD", "patch": "@@ -5825,8 +5825,16 @@ cc_library(\n copts = tsl_copts(),\n deps = [\n \":hlo_creation_utils\",\n+ \"//xla:shape_util\",\n \"//xla:xla_proto_cc\",\n+ \"//xla/hlo/ir:hlo\",\n \"//xla/hlo/pass:hlo_pass\",\n+...
2026-01-23T17:14:04
swiftlang/swift
9cd56f412d3a259f4653b6e973a11b10691e8a8c
a79530a9fd6ffd3c3106f80dd97b41d2a770e240
embedded: Better diagnostics for missing deinit functions If value-type deinits cannot be de-virtualized we now print a more useful error message, including call tree information, source location and the type of the struct containing the deinit. Although this situation should never happen, it's still good to have this...
[ { "path": "SwiftCompilerSources/Sources/Optimizer/ModulePasses/EmbeddedSwiftDiagnostics.swift", "patch": "@@ -176,6 +176,25 @@ private struct FunctionChecker {\n case let apply as ApplySite:\n try checkApply(apply: apply)\n \n+ case let destroy as DestroyValueInst:\n+ let type = destroy.de...
2026-02-18T08:52:52
mrdoob/three.js
292c046b176f5fd087d7ef47e55b82cb23981a18
65d40344497e01218f5b1599c2eed602a90c8010
WebGPURenderer: Fix Shadows PBR (#30307)
[ { "path": "src/renderers/webgpu/WebGPUBackend.js", "patch": "@@ -890,7 +890,7 @@ class WebGPUBackend extends Backend {\n \n \t\t\tif ( color ) {\n \n-\t\t\t\tconst descriptor = this._getRenderPassDescriptor( renderTargetContext, { loadOp: GPULoadOp.Clear } );\n+\t\t\t\tconst descriptor = this._getRenderPass...
2025-01-11T12:23:34
golang/go
129d0cb543e1e15cdea706dd7230ee90c8d54446
77c5130100ac1b29bb2e04d0f5f99e200136c0af
net/http/cgi: accept INCLUDED as protocol for server side includes The existing protocol check for fcgi/cgi requests did not properly account for Apache SSI (Server-Side Includes) SERVER_PROTOCOL value of INCLUDED. Added check for well-known INCLUDED value for proper implementation of the CGI Spec as specified in RFC...
[ { "path": "src/net/http/cgi/child.go", "patch": "@@ -57,8 +57,11 @@ func RequestFromMap(params map[string]string) (*http.Request, error) {\n \n \tr.Proto = params[\"SERVER_PROTOCOL\"]\n \tvar ok bool\n-\tr.ProtoMajor, r.ProtoMinor, ok = http.ParseHTTPVersion(r.Proto)\n-\tif !ok {\n+\tif r.Proto == \"INCLUDE...
2025-10-28T16:26:26
denoland/deno
07c3a8bfcd33330208bc7ff2d6d02ca611a0e0ff
99a8dbf1f3320cfa73c1adae24fcc247d496ef8e
fix: update deno_error to 0.7.1 (#31450) Fixes https://github.com/denoland/deno/issues/31430
[ { "path": "Cargo.lock", "patch": "@@ -2021,9 +2021,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_error\"\n-version = \"0.7.0\"\n+version = \"0.7.1\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"dde60bd153886964234c5012d3d9caf788287f28d81fb24a884436904101ef10\"...
2025-12-01T22:45:26
mrdoob/three.js
dd4736363ffaa5d22d8710d1c13bcb0ba742e18f
0a7d33cbfd6c6b913b80d5ddcb15dbb2198606ce
RenderObject: Fix geometry key for morph targets. (#30302) * RenderObject: Fix geometry key for morph targets. * RenderObject: Clean up. * RenderObject: Improve cache key names.
[ { "path": "docs/api/en/core/BufferAttribute.html", "patch": "@@ -70,6 +70,9 @@ <h3>[property:Number gpuType]</h3>\n \t\t<h3>[property:Boolean isBufferAttribute]</h3>\n \t\t<p>Read-only flag to check if a given object is of type [name].</p>\n \n+\t\t<h3>[property:Integer id]</h3>\n+\t\t<p>Unique number for t...
2025-01-10T14:05:29
golang/go
028375323f39b2d59bae0abfe20ba187c42bcf16
4ebf295b0b1740caac6302cc824ebd0f6175c1d5
cmd/go/internal/modfetch/codehost: fix flaky TestReadZip In normal use by the go command, ReadZip always happens after Stat, which makes sure that the relevant revision has been fetched to local disk. But TestReadZip calls ReadZip directly, and ReadZip was not ensuring that fetch had happened. This made 'go test' pas...
[ { "path": "src/cmd/go/internal/modfetch/codehost/vcs.go", "patch": "@@ -624,15 +624,20 @@ func (r *vcsRepo) ReadZip(ctx context.Context, rev, subdir string, maxSize int64\n \t\treturn nil, vcsErrorf(\"vcs %s: ReadZip: %w\", r.cmd.vcs, errors.ErrUnsupported)\n \t}\n \n+\tif rev == \"latest\" {\n+\t\trev = r....
2025-11-13T16:43:55
denoland/deno
efa4da8643c1ada18102bd3eeadb28171f7cdad6
84b46ea9a66aad0418436da66af74077b9e4beb1
fix(ext/web): console.dir respects indent level (#31412) It looks more natural if you respect the indentation of `console.group`. `console.dir` on Node.js also respects group indentation, so this improves Node.js compat. Test code: ```ts console.dir("1"); console.group(); console.dir("2"); console.group(); console.d...
[ { "path": "ext/web/01_console.js", "patch": "@@ -3172,6 +3172,7 @@ class Console {\n this.#printFunc(\n inspectArgs([obj], {\n ...getConsoleInspectOptions(noColorStdout()),\n+ indentLevel: this.indentLevel,\n ...options,\n }) + \"\\n\",\n 1,", "additions": 1,...
2025-11-28T23:36:57
mrdoob/three.js
5fb35c77b98b0c3d438100035a1e8dafeca5eb2a
60e27ac7cb47c38491457bcb2de3584da9389a33
WebGPUBackend: Fix Timestamp Query (#30299) * fix * await
[ { "path": "src/renderers/webgpu/WebGPUBackend.js", "patch": "@@ -1468,23 +1468,23 @@ class WebGPUBackend extends Backend {\n \n \t\tconst renderContextData = this.get( renderContext );\n \n-\t\tif ( ! renderContextData.timestampQuerySet ) {\n+\t\t// init query set if not exists\n \n+\t\tif ( ! renderContext...
2025-01-10T07:36:29
golang/go
4ebf295b0b1740caac6302cc824ebd0f6175c1d5
625d8e9b9cd7ede188a8856c5ac88791333baa63
runtime: prefer to restart Ps on the same M after STW Today, Ps jump around arbitrarily across STW. Instead, try to keep the P on the previous M it ran on. In the future, we'll likely want to try to expand this beyond STW to create a more general affinity for specific Ms. For this to be useful, the Ps need to have ru...
[ { "path": "src/internal/trace/testtrace/helpers.go", "patch": "@@ -16,8 +16,7 @@ import (\n \t\"testing\"\n )\n \n-// MustHaveSyscallEvents skips the current test if the current\n-// platform does not support true system call events.\n+// Dump saves the trace to a file or the test log.\n func Dump(t *testin...
2025-10-24T19:14:59
tensorflow/tensorflow
7dacca661ea12d9f49aa6963e4e127004c4032c1
93cb6b69b4bd9268b9a2ed3b710a02391379286f
PR #108699: Fix local_xla reference mlir/tosa/glob_lit_tests.bzl Imported from GitHub PR https://github.com/tensorflow/tensorflow/pull/108699 Copybara import of the project: -- bff2192c31e2f0b8b472a5b01c9218e05daebaf1 by Yicheng Luo <ethanluoyc@gmail.com>: Fix local_xla reference in tensorflow/compiler/mlir/tosa/gl...
[ { "path": "tensorflow/compiler/mlir/lite/runlit.site.cfg.py", "patch": "@@ -47,7 +47,7 @@\n 'third_party/tensorflow/compiler/mlir/tensorflow',\n 'third_party/tensorflow/compiler/mlir/tfrt',\n 'third_party/tensorflow/compiler/mlir/tools/kernel_gen',\n- os.path.join(external_srcdir, 'local_xla/...
2026-01-23T11:22:38
swiftlang/swift
5b1096a4fa5a284521e567d3e65b13c612919876
a96cc53961f1e4fa3796ce2f2bffc08dabaa622b
[sema] Refactor usesFlowSensitiveIsolation to improve clarity and fix destructor check This commit refactors usesFlowSensitiveIsolation and related helpers by: 1. Remove unnecessary const qualifiers that required const_cast workarounds. Making a parameter const only to unconst it in the body just wastes text. 2. Ren...
[ { "path": "include/swift/AST/ActorIsolation.h", "patch": "@@ -453,7 +453,7 @@ ActorIsolation getActorIsolationOfContext(\n bool isSameActorIsolated(ValueDecl *value, DeclContext *dc);\n \n /// Determines whether this function's body uses flow-sensitive isolation.\n-bool usesFlowSensitiveIsolation(AbstractFu...
2026-02-18T06:45:52
mrdoob/three.js
60e27ac7cb47c38491457bcb2de3584da9389a33
7e300eb97793badc753474494fc76eaef0a8bb55
Renderer: Fix viewport configuration of `ArrayCamera`. (#30298)
[ { "path": "src/renderers/common/Renderer.js", "patch": "@@ -2622,6 +2622,7 @@ class Renderer {\n \t\t\t\t\t\tviewportValue.copy( vp ).multiplyScalar( this._pixelRatio ).floor();\n \t\t\t\t\t\tviewportValue.minDepth = minDepth;\n \t\t\t\t\t\tviewportValue.maxDepth = maxDepth;\n+\t\t\t\t\t\tthis._currentRende...
2025-01-09T12:48:07
denoland/deno
84b46ea9a66aad0418436da66af74077b9e4beb1
4c228b455d51162fcb1763422b258202799bc31e
fix(check): move unknown builtin node: module errors to tsc diagnostics (#31449)
[ { "path": "cli/graph_util.rs", "patch": "@@ -297,10 +297,10 @@ pub fn resolution_error_for_tsc_diagnostic(\n | NodeJsErrorCode::ERR_UNSUPPORTED_ESM_URL_SCHEME\n | NodeJsErrorCode::ERR_INVALID_FILE_URL_PATH\n | NodeJsErrorCode::ERR_PACKAGE_IMPORT_NOT_DEFINED\n- | NodeJsErrorCode::ERR_U...
2025-11-28T19:37:08
tensorflow/tensorflow
b82e2de2369c0e70dfd415988e209457eab3379b
96e20d36acbcaa14e096ed40314c04ee3f283e7a
Fix index bound calculation for dynamic slice/update slice in test_utils. The `FindConstrainedUses` function now returns `HloUse` objects, enabling `CreateLiteralForConstrainedUses` to precisely determine which operand of a dynamic slice or dynamic update slice is being constrained. This allows for accurate calculatio...
[ { "path": "third_party/xla/xla/tests/test_utils.cc", "patch": "@@ -23,6 +23,7 @@ limitations under the License.\n #include <optional>\n #include <random>\n #include <utility>\n+#include <vector>\n \n #include \"absl/status/status.h\"\n #include \"absl/status/statusor.h\"\n@@ -130,10 +131,10 @@ bool Reachabl...
2026-01-23T00:11:30
mrdoob/three.js
1b5a3bb8ab59483fa1975759bde8c82a7d6d9f60
e694219431b9a3acdd52468c177cd5c720418c8d
Update RenderContext.js Fix typo.
[ { "path": "src/renderers/common/RenderContext.js", "patch": "@@ -231,7 +231,7 @@ class RenderContext {\n }\n \n /**\n- * Computes a cache key for the given render context. This cache\n+ * Computes a cache key for the given render context. This key\n * should identify the render target state so it is possib...
2025-01-09T08:52:29
denoland/deno
4c228b455d51162fcb1763422b258202799bc31e
ef3192d8797d44d7c2a27e869809f587d67832bc
fix(ext/node): reimplement `setImmediate` API (#30328) Closes https://github.com/denoland/deno/issues/28016
[ { "path": "Cargo.lock", "patch": "@@ -1887,9 +1887,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_core\"\n-version = \"0.370.0\"\n+version = \"0.371.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"03593764555f24a3287b321c156304e8d142105631258f1fabdeac07013bb4a...
2025-11-28T10:05:41
golang/go
625d8e9b9cd7ede188a8856c5ac88791333baa63
4684a26c2606eae5ec3d06d17f66a66374315a47
runtime/pprof: fix goroutine leak profile tests for noopt The goroutine leak profile tests currently rely on a function being inlined, which results in a slightly different representation in the pprof proto. This function is not inlined on the noopt builder. Disable inlining of the one function which could be inlined...
[ { "path": "src/runtime/pprof/pprof_test.go", "patch": "@@ -1569,6 +1569,9 @@ func containsCountsLabels(prof *profile.Profile, countLabels map[int64]map[strin\n \treturn true\n }\n \n+// Inlining disabled to make identification simpler.\n+//\n+//go:noinline\n func goroutineLeakExample() {\n \t<-make(chan str...
2025-11-13T00:09:05
mrdoob/three.js
e694219431b9a3acdd52468c177cd5c720418c8d
dc9f057a4376e4d56049f47e1ae8838ac228a516
Update shadertoy.html (#30294) Update manual/zh/shadertory.html for incorrect transilation.
[ { "path": "manual/zh/shadertoy.html", "patch": "@@ -62,9 +62,9 @@ <h1>Three.js 与 Shadertoy</h1>\n class=\"notranslate\" translate=\"no\">vec4</code>, <code class=\"notranslate\" translate=\"no\">vec2</code>,<code\n class=\"notranslate\" translate=\"no\">vec3</code> 这三种特定类型。 一个 <code ...
2025-01-09T08:51:20
tensorflow/tensorflow
96e20d36acbcaa14e096ed40314c04ee3f283e7a
41a17bba02d5a4f78d9e15bc0d66b66defa3f9d0
[XLA Test Fixture Migration] Migrate `triangular_solve_expander_test ` PiperOrigin-RevId: 859807135
[ { "path": "third_party/xla/xla/service/BUILD", "patch": "@@ -2419,20 +2419,23 @@ cc_library(\n ],\n )\n \n-xla_cc_test(\n+xla_test(\n name = \"triangular_solve_expander_test\",\n size = \"medium\",\n srcs = [\"triangular_solve_expander_test.cc\"],\n+ backends = [\"cpu\"],\n shard_coun...
2026-01-22T23:45:23
denoland/deno
ef3192d8797d44d7c2a27e869809f587d67832bc
4876b41d59d79bbed3cbf11e010d20c62770dac4
fix(node/timers): ensure active timers entry is deleted on `Timeout.prototype.refresh` (#31436) Closes https://github.com/denoland/deno/issues/31435
[ { "path": "ext/node/polyfills/internal/timers.mjs", "patch": "@@ -5,6 +5,7 @@ import { primordials } from \"ext:core/mod.js\";\n const {\n FunctionPrototypeBind,\n MapPrototypeDelete,\n+ MapPrototypeGet,\n MapPrototypeSet,\n NumberIsFinite,\n SafeArrayIterator,\n@@ -33,6 +34,7 @@ export { kTimerI...
2025-11-27T19:03:27
golang/go
4684a26c2606eae5ec3d06d17f66a66374315a47
0f9c8fb29dfe70f3688bda95cb6cb38dfa7fff9f
spec: remove cycle restriction for type parameters Fixes #75883. Change-Id: I708c0594ef3182d3aca37a6358aa0a0ef89809b6 Reviewed-on: https://go-review.googlesource.com/c/go/+/711422 Reviewed-by: Robert Griesemer <gri@google.com> Reviewed-by: Alan Donovan <adonovan@google.com> Auto-Submit: Robert Griesemer <gri@google.c...
[ { "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 9, 2025)\",\n+\t\"Subtitle\": \"Language version go1.26 (Nov 12, 2025)\",\n \t\"Path\": \"/ref/spec\"\n }-->\n \n@@ -2686,22 +2686,6 ...
2025-10-13T23:57:34
mrdoob/three.js
dc9f057a4376e4d56049f47e1ae8838ac228a516
95a994c425bb7e9093e53a9823783fdcda585f6c
TSL: Fix optional parameter in `Fn()` (#30293)
[ { "path": "src/nodes/tsl/TSLCore.js", "patch": "@@ -305,7 +305,7 @@ class ShaderCallNodeInternal extends Node {\n \t\t} else {\n \n \t\t\tconst jsFunc = shaderNode.jsFunc;\n-\t\t\tconst outputNode = inputNodes !== null ? jsFunc( inputNodes, builder ) : jsFunc( builder );\n+\t\t\tconst outputNode = inputNode...
2025-01-09T02:32:09