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
e2fef50def98b87107ab963f657d43d7869b8463
7f6418bb4e44b1b11d428d402dd6935a2a1ea335
runtime: rename mallocTiny* to mallocgcTinySize* This makes it easier to identify which functions are used for memory allocation by looking for functions that start with mallocgc. The Size suffix is added so that the isSpecializedMalloc function in cmd/compile/internal/ssa can distinguish between the generated functio...
[ { "path": "src/cmd/compile/internal/ssa/rewrite.go", "patch": "@@ -480,7 +480,7 @@ func isSpecializedMalloc(aux Aux) bool {\n \tname := fn.String()\n \treturn strings.HasPrefix(name, \"runtime.mallocgcSmallNoScanSC\") ||\n \t\tstrings.HasPrefix(name, \"runtime.mallocgcSmallScanNoHeaderSC\") ||\n-\t\tstrings...
2026-01-12T19:37:39
mrdoob/three.js
b9ce407722a91c1a47336a25744846af3cc5c229
965b51ca9c63db299a5e22d33163b7a2c099010f
TTFLoader: Fix when TTF has different unicode assign to same glyph index (#31386) * TTFLoader - Fix when TTF has different unicode assign to same glyph index * Update TTFLoader.js Clean up. * Change to isArray --------- Co-authored-by: Michael Herzog <michael.herzog@human-interactive.org>
[ { "path": "examples/jsm/loaders/TTFLoader.js", "patch": "@@ -152,7 +152,19 @@ class TTFLoader extends Loader {\n \n \t\t\t\t\t} );\n \n-\t\t\t\t\tglyphs[ String.fromCodePoint( glyph.unicode ) ] = token;\n+\t\t\t\t\tif ( Array.isArray( glyph.unicodes ) && glyph.unicodes.length > 0 ) {\n+\t\t\t\t\t\t\n+\t\t\t...
2025-07-10T07:45:43
denoland/deno
cd14853b7f67821df990eec8d43a4c772b5019bb
bdbe8bea09dd02712c03db0c28d244dad604cb44
ci: fix mtime cache for node types (#32205) The CI was rebuilding due to the node types directory being watched and the mtimes cache not working with directories.
[ { "path": "cli/build.rs", "patch": "@@ -155,8 +155,6 @@ fn process_node_types(out_dir: &Path) {\n Ok(())\n }\n \n- println!(\"cargo:rerun-if-changed={}\", node_dir.display());\n-\n let mut paths = Vec::new();\n visit_dirs(&node_dir, &mut |path| {\n paths.push(path.to_path_buf());\n@@ -166,6 +...
2026-02-17T04:47:47
tensorflow/tensorflow
8a3b6d707cc223e8ee26dbb1fe416eb58c6630ec
850992365c70822ce13cb0ae99024486f0b799dd
[XLA:CollectiveSinking] Defer removal of merged WhileMoveInfo entries. Instead of erasing elements from the move_infos_ vector within the loop, mark them as invalidated. Compact the vector after the loop by moving valid entries to the front. This avoids potentially expensive repeated erasures and fixes a bug caused by...
[ { "path": "third_party/xla/xla/service/collective_pipeliner.cc", "patch": "@@ -689,6 +689,7 @@ struct WhileMoveInfo {\n int64_t sliced_idx;\n std::vector<int64_t> output_indices;\n HloInstruction* sink_instruction;\n+ bool invalidated = false;\n };\n \n std::string ToString(const WhileMoveInfo& move_...
2026-02-26T18:36:26
mrdoob/three.js
42bd20050773c9ff64d582e0a4b88e30952026d2
d9a24afcdf0e4c8a19822017f24662007bc1f5e6
Update Line3.js Fix typo.
[ { "path": "src/math/Line3.js", "patch": "@@ -151,11 +151,11 @@ class Line3 {\n \t}\n \n \t/**\n-\t * Returns the closets point on the line for a given point.\n+\t * Returns the closest point on the line for a given point.\n \t *\n \t * @param {Vector3} point - The point to compute the closest point on the l...
2025-07-08T09:11:10
golang/go
7f6418bb4e44b1b11d428d402dd6935a2a1ea335
c16402d15b42cf494774796e606aba66c90d3d6b
all: fix misspellings in comments Change-Id: I121847e7f68c602dd8e9ecddfc41b547f8a86f10 Reviewed-on: https://go-review.googlesource.com/c/go/+/734361 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Robert Griesemer <gri@google.com> Reviewed-by: Junyang Shao <shaoju...
[ { "path": "src/cmd/compile/internal/ssagen/ssa.go", "patch": "@@ -7795,7 +7795,7 @@ func AddrAuto(a *obj.Addr, v *ssa.Value) {\n // Call returns a new CALL instruction for the SSA value v.\n // It uses PrepareCall to prepare the call.\n func (s *State) Call(v *ssa.Value) *obj.Prog {\n-\tpPosIsStmt := s.pp.P...
2026-01-07T05:46:43
swiftlang/swift
2faa72d7e464fb2a48f96b241576a10e397de456
8fe11fd17c12dd5d8b25afc427d315b1997028a5
[rbi] Properly identify function applications that take BuiltinImplicitActor as an isolated parameter as nonisolated(nonsending). Previously, we would identify it as actor isolated. I also fixed a few other issues where we were not able to merge nonisolated(nonsending) with partial_apply isolated-any parameters. I als...
[ { "path": "include/swift/SIL/SILArgument.h", "patch": "@@ -447,6 +447,15 @@ class SILFunctionArgument : public SILArgument {\n SILParameterInfo::Isolated);\n }\n \n+ /// Returns true if this SILFunctionArgument is an isolated leading\n+ /// ImplicitBuiltinActor.\n+ bool isImplicitBuiltin...
2026-03-04T21:21:51
denoland/deno
25b79aab0267bbff2889c5ba1a9ba2f8112e1a95
8012d48ec911d2e8619a3530008496d06da01dc1
fix(node/http): preserve request body on stale keepalive retry (#32148) Closes https://github.com/denoland/deno/issues/32006 When a reused keepAlive socket goes stale, the retry logic was not re-sending the request body for POST/PUT/PATCH requests. The body data in outputData was consumed by _flushBuffer() before the...
[ { "path": "ext/node/polyfills/http.ts", "patch": "@@ -572,6 +572,11 @@ class ClientRequest extends OutgoingMessage {\n this._bodyWriteRid,\n baseConnRid,\n );\n+ // Save body data before flushing so it can be restored if\n+ // a stale keepAlive socket fails during t...
2026-02-16T19:26:51
mrdoob/three.js
36c2b6665b8d460751f398f8a084e24eeefbb252
ea90d92d150dba90abed495b4793fabfd103a438
WebGLRenderer: Add `ReversedCoordinateSystem`, fix shadows with `reverseDepthBuffer`. (#31370)
[ { "path": "examples/jsm/shaders/UnpackDepthRGBAShader.js", "patch": "@@ -43,8 +43,21 @@ const UnpackDepthRGBAShader = {\n \n \t\tvoid main() {\n \n-\t\t\tfloat depth = 1.0 - unpackRGBAToDepth( texture2D( tDiffuse, vUv ) );\n-\t\t\tgl_FragColor = vec4( vec3( depth ), opacity );\n+\t\t\tfloat depth = unpackRG...
2025-07-07T14:04:11
golang/go
b7e6d8b923ad06538c800d635d3ede90d3d0b782
cbe153806e67a16e362a1cdbbf1741d4ce82e98a
os/exec_test: fix test on Plan 9 Error strings vary across OSes when trying to execute a file that does not exist. Since matching them is not the point of the test, ignore them. Fixes #76965 Change-Id: I6d220bc2d0289070f3441adb48983c13b2a3e597 Reviewed-on: https://go-review.googlesource.com/c/go/+/732940 LUCI-TryBot...
[ { "path": "src/os/exec/exec_test.go", "patch": "@@ -1845,23 +1845,13 @@ func TestStart_twice(t *testing.T) {\n \ttestenv.MustHaveExec(t)\n \n \tcmd := exec.Command(\"/bin/nonesuch\")\n-\tfor i, want := range []string{\n-\t\tcond(runtime.GOOS == \"windows\",\n-\t\t\t`exec: \"/bin/nonesuch\": executable file ...
2025-12-28T00:08:26
denoland/deno
8012d48ec911d2e8619a3530008496d06da01dc1
b248af44b755036bd0da339ae62d1a90fa049434
fix(test): throw when Deno.test() is called during test execution (#32184) Fixes #30787. `Deno.test()` was being accepted even when called from inside a running test callback. That means nested registrations could silently be ignored and tests looked like they passed. Now `Deno.test()` calls made from inside a runni...
[ { "path": "cli/ops/testing.rs", "patch": "@@ -132,7 +132,7 @@ fn op_register_test(\n };\n state\n .borrow_mut::<TestContainer>()\n- .register(description, function);\n+ .register(description, function)?;\n ret_buf.copy_from_slice(&(id as u32).to_le_bytes());\n Ok(())\n }", "additions":...
2026-02-16T17:50:06
mrdoob/three.js
348c91b0eaa2cb6504ce61ca5d3e799eab4beb07
38de8801b76c0e5fdce8b2aae5257aae42284ccf
VideoTexture: Cancel rVFC on Dispose (#31375) * fix * lint * 0 * lint
[ { "path": "src/textures/VideoTexture.js", "patch": "@@ -53,18 +53,28 @@ class VideoTexture extends Texture {\n \t\t */\n \t\tthis.generateMipmaps = false;\n \n+\t\t/**\n+\t\t * The video frame request callback identifier, which is a positive integer.\n+\t\t *\n+\t\t * Value of 0 represents no scheduled rVFC...
2025-07-07T08:56:07
golang/go
cbe153806e67a16e362a1cdbbf1741d4ce82e98a
30d0b4026410da3486ba841bb7f13c1d9074e91d
net: fix socket duplication error handling on Windows Calls to dupSocket may fail, but the error is not properly handled because the surrounding code incorrectly checks for nil error instead of non-nil error. I'm not aware of any code paths that would trigger this error, and I haven't been able to create a test case ...
[ { "path": "src/net/fd_windows.go", "patch": "@@ -248,7 +248,7 @@ func (fd *netFD) dup() (*os.File, error) {\n \terr := fd.pfd.RawControl(func(fd uintptr) {\n \t\th, syserr = dupSocket(syscall.Handle(fd))\n \t})\n-\tif err != nil {\n+\tif err == nil {\n \t\terr = syserr\n \t}\n \tif err != nil {", "addit...
2026-01-08T14:50:15
kubernetes/kubernetes
58d00acb621ee2fcec2a5d5419fc5fe5d43d262f
b08fa0cdf18610be74d9741cf361446a5f42ff76
remove unwanted dependency 'github.com/pkg/errors'
[ { "path": "hack/unwanted-dependencies.json", "patch": "@@ -200,10 +200,6 @@\n \"k8s.io/kube-openapi\",\n \"sigs.k8s.io/structured-merge-diff/v6\"\n ],\n- \"github.com/pkg/errors\": [\n- \"sigs.k8s.io/kustomize/api\",\n- \"sigs.k8s.io/kustomize/kustomize/v5\"\n- ...
2026-02-09T18:59:56
tensorflow/tensorflow
289444dd50793064cffb6680cc50a6c4509bbd50
dc12752048d768ed7480f043a2967d688750b8a6
Add HLO Workload Executor action Create a new composite GitHub Action to build and execute HLO benchmarks. This workload executor is fully compatible with BAP. Key features include: - Local/GCS HLO support - Context-aware checkout (uses existing user_repo for internal CI, or checks out XLA source for external callers...
[ { "path": "third_party/xla/xla/tools/benchmarks/bap/hlo_workload_executor/action.yml", "patch": "@@ -0,0 +1,150 @@\n+# Copyright 2026 The OpenXLA Authors. All Rights Reserved.\n+#\n+# Licensed under the Apache License, Version 2.0 (the \"License\");\n+# you may not use this file except in compliance with th...
2026-02-26T10:25:33
denoland/deno
b248af44b755036bd0da339ae62d1a90fa049434
8dc2fbf7884b8a08f144aba73259306595ff9b4e
fix(ext/node): export File class from node:buffer module (#32182) Node.js 20+ exports the `File` class from the `buffer` module. Currently Deno's `node:buffer` polyfill exports `Blob` but not `File`, which causes runtime errors like: ``` Error: Attempt to export a nullable value for "File" ``` This breaks frameworks...
[ { "path": "ext/node/polyfills/buffer.ts", "patch": "@@ -7,6 +7,7 @@ export {\n Buffer,\n constants,\n default,\n+ File,\n INSPECT_MAX_BYTES,\n isAscii,\n isUtf8,", "additions": 1, "deletions": 0, "language": "Unknown" }, { "path": "ext/node/polyfills/internal/buffer.d.ts", ...
2026-02-16T17:46:23
mrdoob/three.js
0201031d1a0bda66006149e4cbaaf753866014d8
32c4f23e12f1922bfb67c7a5f6a4ebe5ade79d99
USDCParser: Fix import.
[ { "path": "examples/jsm/loaders/usd/USDCParser.js", "patch": "@@ -1,3 +1,7 @@\n+import {\n+\tGroup\n+} from 'three';\n+\n class USDCParser {\n \n \tparse( buffer ) {\n@@ -10,4 +14,4 @@ class USDCParser {\n \n }\n \n-export { USDCParser };\n\\ No newline at end of file\n+export { USDCParser };", "additio...
2025-07-05T06:09:24
golang/go
30d0b4026410da3486ba841bb7f13c1d9074e91d
5741608de26f06488e771fd7b3b35ca2ca4c93a6
net: don't ignore getsockname errors in newFileFD newFileFD is called when creating a net FD from an existing socket handle. That socket might not be bound yet, in which case getsockname returns a useful error that is currently ignored and replaced with a potentially misleading EPROTONOSUPPORT error later on. Updates...
[ { "path": "src/net/file_posix.go", "patch": "@@ -23,7 +23,11 @@ func newFileFD(f *os.File) (*netFD, error) {\n \t\tpoll.CloseFunc(s)\n \t\treturn nil, os.NewSyscallError(\"getsockopt\", err)\n \t}\n-\tlsa, _ := syscall.Getsockname(s)\n+\tlsa, err := syscall.Getsockname(s)\n+\tif err != nil {\n+\t\tpoll.Clos...
2026-01-08T14:44:51
kubernetes/kubernetes
cf1db1645019861a18054c53911081284febf10c
b08fa0cdf18610be74d9741cf361446a5f42ff76
Fix the NodeAuthenticator e2e tests The tests were accidentally shadowing the nodeIPs variable, resulting in them being no-ops. Noticed while trying to fix them to only act on a single node IP anyway, because there's no guarantee that kubelet is listening on every reported node IP.
[ { "path": "test/e2e/auth/node_authn.go", "patch": "@@ -39,7 +39,7 @@ var _ = SIGDescribe(\"NodeAuthenticator\", func() {\n \tf := framework.NewDefaultFramework(\"node-authn\")\n \tf.NamespacePodSecurityLevel = admissionapi.LevelBaseline\n \tvar ns string\n-\tvar nodeIPs []string\n+\tvar nodeIP string\n \tgi...
2026-02-19T11:58:49
denoland/deno
02c6d3d30142236d75c1de969dd342ec8c2f6f3b
48c89eea2405f7df71f00f76ab839ba955826012
fix(ext/node): `assert.ok` compatibility (#32173) Allows https://github.com/nodejs/node/blob/v24.12.0/test/parallel/test-assert-first-line.js to pass --------- Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
[ { "path": "Cargo.lock", "patch": "@@ -2512,6 +2512,7 @@ dependencies = [\n \"brotli\",\n \"bytes\",\n \"data-encoding\",\n+ \"deno_ast\",\n \"deno_core\",\n \"deno_error\",\n \"deno_fetch\",", "additions": 1, "deletions": 0, "language": "Unknown" }, { "path": "ext/node/Cargo.toml",...
2026-02-16T14:58:54
tensorflow/tensorflow
5f2116260c0ac7d805944e84e813ae90b267827c
33b457672a78c9b4ebfafd30eb7827c79719b65c
PR #26196: force delay scheduling start to extend overlap interval Imported from GitHub PR https://github.com/openxla/xla/pull/26196 📝 Summary of Changes This pr introduces a new heuristics to delay scheduling start based on the op type when the overlap limit is larger than 1 and default cost model is used. 🎯 Just...
[ { "path": "third_party/xla/xla/service/gpu/gpu_hlo_schedule.cc", "patch": "@@ -582,17 +582,70 @@ absl::Status RunLatencyHidingSchedulerPasses(\n pipeline.AddPass<PGLEAccuracyChecker>(\n dynamic_cast<ProfileGuidedLatencyEstimator&>(*estimator));\n }\n-\n+ // If overlap limit is set to be great...
2026-02-26T10:09:50
mrdoob/three.js
937d157507f22f74f3ea1f188906cbe3bc888a82
6b2f433272da1f756c0dc621146515e5b80efcc9
LightProbeGenerator: Support `FloatType` in `fromCubeRenderTarget()`. (#31349) * LightProbeGenerator: Support `FloatType` in `fromCubeRenderTarget()`. * E2E: Move unstable example to exception list.
[ { "path": "examples/jsm/lights/LightProbeGenerator.js", "patch": "@@ -8,7 +8,8 @@ import {\n \tNoColorSpace,\n \tHalfFloatType,\n \tDataUtils,\n-\tWebGLCoordinateSystem\n+\tWebGLCoordinateSystem,\n+\tFloatType\n } from 'three';\n \n /**\n@@ -178,7 +179,11 @@ class LightProbeGenerator {\n \n \t\tif ( rendere...
2025-07-01T14:49:38
golang/go
5741608de26f06488e771fd7b3b35ca2ca4c93a6
df6c351aa4bbc8805406bfef979e62f59fc76da9
net: don't ignore errors in TestUnixUnlink TestUnixUnlink calls some functions and methods that can fail, but it ignores the returned errors. This test is flaky on Windows, and those errors should be checked to help diagnose the problem. Updates #75282 Updates #76582 Updates #77038 Change-Id: Ia868762a4c0b94a7255d57...
[ { "path": "src/net/unixsock_test.go", "patch": "@@ -375,6 +375,17 @@ func TestUnixUnlink(t *testing.T) {\n \t\t}\n \t\treturn l.(*UnixListener)\n \t}\n+\tfileListener := func(t *testing.T, l *UnixListener) (*os.File, Listener) {\n+\t\tf, err := l.File()\n+\t\tif err != nil {\n+\t\t\tt.Fatal(err)\n+\t\t}\n+\...
2026-01-08T09:25:44
kubernetes/kubernetes
5e8ae74b8b3129ab79d24aea6ef6ca9a76fbd668
b08fa0cdf18610be74d9741cf361446a5f42ff76
apiserver: use contextual logging in WatchServer.HandleWS Replace context-unaware functions with their contextual logging alternatives in WatchServer.HandleWS: - IgnoreReceives -> IgnoreReceivesWithLogger - HandleCrash -> HandleCrashWithContext - context.TODO() -> real request context from ws.Request().Context() The...
[ { "path": "staging/src/k8s.io/apiserver/pkg/endpoints/handlers/watch.go", "patch": "@@ -17,7 +17,6 @@ limitations under the License.\n package handlers\n \n import (\n-\t\"context\"\n \t\"fmt\"\n \t\"io\"\n \t\"net/http\"\n@@ -329,6 +328,9 @@ func (s *WatchServer) HandleHTTP(w http.ResponseWriter, req *http...
2026-02-19T11:20:53
swiftlang/swift
f1a1596e9abc1f5bbf42df3b8d01150e2285a5fa
cf6594fc489d845f0d6af0a9f4ef5ec789288078
[test] Add some more known crashers
[ { "path": "validation-test/IDE/crashers/ASTMangler-appendBoundGenericArgs-6361b3.swift", "patch": "@@ -0,0 +1,5 @@\n+// {\"kind\":\"complete\",\"original\":\"48e2c440\",\"signature\":\"swift::Mangle::ASTMangler::appendBoundGenericArgs(swift::DeclContext*, swift::GenericSignature, swift::SubstitutionMap, boo...
2026-03-09T10:41:34
mrdoob/three.js
6b2f433272da1f756c0dc621146515e5b80efcc9
5737a9b96cd7e68091e703031ea6233bdb62b6e5
RoundedBoxGeometry: add type, parameters and toJSON (#31340) * Enhance RoundedBoxGeometry: add type, update parameters and override toJSON * Update RoundedBoxGeometry.js Clean up. * Fix create box geometry with 1x1x1 dimensions to avoid normal/shading issues --------- Co-authored-by: Michael Herzog <michael.herzo...
[ { "path": "examples/jsm/geometries/RoundedBoxGeometry.js", "patch": "@@ -59,21 +59,40 @@ class RoundedBoxGeometry extends BoxGeometry {\n \t * @param {number} [width=1] - The width. That is, the length of the edges parallel to the X axis.\n \t * @param {number} [height=1] - The height. That is, the length o...
2025-07-01T14:01:48
tensorflow/tensorflow
4ec27e78f2a96dbe9a5d65506e6ca927a159c375
1e913b40263559ad2ed37fe6b5ddec49826bbe48
Fix: Use ragged dimension for 'm' in RaggedDot legalization. The calculation of the 'm' dimension in the legalization of chlo.ragged_dot now correctly uses the `lhsRaggedDimension` from the `RaggedDotDimensionNumbers` instead of always assuming it's the second to last dimension. PiperOrigin-RevId: 875578823
[ { "path": "third_party/xla/third_party/stablehlo/temporary.patch", "patch": "@@ -1469,15 +1469,15 @@ diff --ruN a/stablehlo/stablehlo/transforms/ChloLegalizeToStablehlo.cpp b/stable\n ArrayAttr convertPrecisionConfig(mlir::ArrayAttr precisionConfig,\n ConversionPatternRewr...
2026-02-26T09:11:53
denoland/deno
5c8a33e3cffbae7437f44dabf54cc44b410d437f
0f2fecf35ce2beb82c8a23f154ac4a395ae4ce83
ci: fix mtime cache (#32193)
[ { "path": ".github/workflows/ci.generate.ts", "patch": "@@ -16,7 +16,7 @@ import {\n // Bump this number when you want to purge the cache.\n // Note: the tools/release/01_bump_crate_versions.ts script will update this version\n // automatically via regex, so ensure that this line maintains this format.\n-co...
2026-02-16T05:40:48
golang/go
fed3b0a298464457c58d1150bdb3942f22bd6220
55ab5bba17a5221a51df244c8a3aeb1898cbdf1a
cmd/dist: fix goroot typo in panic message Change-Id: I636a029eedaab0967b774648670710d1303a1f7c GitHub-Last-Rev: 519faedc5b8327696efeeb431ef66e9fd29f0db7 GitHub-Pull-Request: golang/go#77081 Reviewed-on: https://go-review.googlesource.com/c/go/+/734080 Reviewed-by: Ian Lance Taylor <iant@golang.org> LUCI-TryBot-Result...
[ { "path": "src/cmd/dist/imports.go", "patch": "@@ -259,6 +259,6 @@ func resolveVendor(imp, srcDir string) string {\n \t} else if strings.HasPrefix(srcDir, filepath.Join(goroot, \"src\")) {\n \t\treturn path.Join(\"vendor\", imp)\n \t} else {\n-\t\tpanic(fmt.Sprintf(\"srcDir %q not in GOOROT/src\", srcDir))\...
2026-01-05T22:59:29
mrdoob/three.js
4f67fd3767c0b22eead0540fbd80366b523b99c8
e9277b2678a1c45a02107b437c545c18a04a5013
Editor: Fix crash when geometry lacks position attribute. (#31334) * Fix crash when geometry lacks position attribute in Viewport.Info This patch prevents a runtime error in Viewport.Info.js that occurs when importing a GLB file containing geometries without a position attribute. Previously, the code assumed all geom...
[ { "path": "editor/js/Viewport.Info.js", "patch": "@@ -60,18 +60,25 @@ function ViewportInfo( editor ) {\n \t\t\t\tif ( object.isMesh || object.isPoints ) {\n \n \t\t\t\t\tconst geometry = object.geometry;\n+\t\t\t\t\tconst positionAttribute = geometry.attributes.position;\n \n-\t\t\t\t\tvertices += geometry...
2025-06-30T21:10:29
denoland/deno
1951149659c32b26c9f1dfb557eecc20a278e298
21461bd0bf6cb3105e10f07e349ed07ede9a6f34
fix(ext/node): process.exit() in worker immediately halts execution (#32169) ## Summary In Node.js, `process.exit()` inside a worker immediately stops all JS execution at the C++ level. In Deno, it called `workerClose()` which triggered V8's `terminate_execution()`, but JS continued running because V8 only checks the...
[ { "path": "ext/node/polyfills/process.ts", "patch": "@@ -128,6 +128,21 @@ export const exit = (code?: number | string) => {\n // Any valid thing `process.exitCode` set is already held in Deno.exitCode.\n // At this point, we don't have to pass around Node's raw/string exit value.\n process.reallyExit(...
2026-02-15T21:18:35
swiftlang/swift
cf6594fc489d845f0d6af0a9f4ef5ec789288078
1a7d5542ead885d548a8f49be75381533105ffff
[test] Update a couple of crasher signatures
[ { "path": "validation-test/compiler_crashers/TypeTransform-doIt-b7d484.swift", "patch": "@@ -1,3 +1,3 @@\n-// {\"kind\":\"typecheck\",\"signature\":\"swift::TypeTransform<swift::Type::transformRec(llvm::function_ref<std::__1::optional<swift::Type> (swift::TypeBase*)>) const::Transform>::doIt(swift::Type, sw...
2026-03-09T10:41:34
tensorflow/tensorflow
75ad6352bb1075f84c9e56bf60f523808017013b
18f50fca6db586f561353733409d64b15807b369
Add methods for checking coexistence, overlap, and prefix without overlap for AxisRef. This change introduces: - `AxisRef::CanCoexist`: Determines if two AxisRefs can be part of the same sharding. - `AxisRef::Overlaps`: Checks if two AxisRefs have an overlapping range. - `AxisRef::GetPrefixWithoutOverlap`: Retur...
[ { "path": "third_party/xla/xla/hlo/ir/BUILD", "patch": "@@ -205,6 +205,7 @@ cc_library(\n \"//xla/tsl/platform:errors\",\n \"@com_google_absl//absl/algorithm:container\",\n \"@com_google_absl//absl/container:flat_hash_set\",\n+ \"@com_google_absl//absl/log\",\n \"@com_...
2026-02-25T20:02:56
golang/go
108b333d510c1f60877ac917375d7931791acfe6
2bbb2ace346a26e0b1f7e32f1cdc645db8170d1c
cmd/go: only use check cache action's dependencies to build vet config We manipulate the dependencies of the build action when adding the non-test variant of the package being tested as a dependency for the test, so the set of deps of the build package doesn't correctly represent the dependencies of the package that h...
[ { "path": "src/cmd/go/internal/work/exec.go", "patch": "@@ -627,7 +627,7 @@ func (b *Builder) checkCacheForBuild(a, buildAction *Action, covMetaFileName str\n \t// If we are going to do a full build anyway,\n \t// we're going to regenerate the files in the build action anyway.\n \tif need == needVet {\n-\t\...
2026-01-08T17:45:34
kubernetes/kubernetes
73ce1b3a1632b72c33a0e7bce1ab1d0c6802eda3
124f6f01c63803ff17cb218d3e13636219bb2d8f
Retry RepairIPAddress runOnce() for Forbidden error
[ { "path": "pkg/registry/core/service/ipallocator/controller/repairip.go", "patch": "@@ -247,7 +247,18 @@ func (r *RepairIPAddress) RunUntil(onFirstSuccess func(), stopCh chan struct{})\n \n // runOnce verifies the state of the ClusterIP allocations and returns an error if an unrecoverable problem occurs.\n ...
2026-02-14T06:54:30
mrdoob/three.js
009726fd8c306a3fc33f3bf2edd3b2431493a625
e9a17272a3d98467f9d848f3bb606bfdf13f64ca
TSL Transpiler: Introduce `WGSLEncoder` (#31329) * Introduce `WGSLEncoder` * fix * cleanup code style * ignore break in switch-case * cleanup
[ { "path": "examples/jsm/transpiler/AST.js", "patch": "@@ -1,10 +1,13 @@\n+import { toFloatType } from './TranspilerUtils.js';\n+\n export class ASTNode {\n \n \tconstructor() {\n \n \t\tthis.isASTNode = true;\n \n \t\tthis.linker = {\n+\t\t\treference: null,\n \t\t\taccesses: [],\n \t\t\tassignments: []\n \...
2025-06-29T02:58:32
denoland/deno
21461bd0bf6cb3105e10f07e349ed07ede9a6f34
bc1e7e2b203362296cb24268fb7c07f47c3aeafc
chore: fix deno_features rebuilding when unnecessary (#32186)
[ { "path": "runtime/features/build.rs", "patch": "@@ -8,6 +8,12 @@ mod data;\n mod structs;\n \n fn main() {\n+ // only rerun if the build script or its input modules change,\n+ // not when any file in the package changes (the default)\n+ println!(\"cargo:rerun-if-changed=build.rs\");\n+ println!(\"cargo...
2026-02-15T21:04:41
swiftlang/swift
aa7f7384c8036be741b9f322cf57bad8c6aa5203
1a7d5542ead885d548a8f49be75381533105ffff
SILCombine: fix an ownership violation when trying to eliminate a forwarding instruction If a forwarding instruction doesn't forward the same ownership we cannot delete it. This can happen if e.g. a `struct` instruction constructs a non-copyable struct out of trivial arguments. rdar://172074176
[ { "path": "lib/SILOptimizer/Utils/CanonicalizeInstruction.cpp", "patch": "@@ -521,8 +521,15 @@ eliminateUnneededForwardingUnarySingleValueInst(SingleValueInstruction *inst,\n }\n return next;\n }\n- deleteAllDebugUses(inst, pass.callbacks);\n SILValue op = inst->getOperand(0);\n+\n+ // If a fo...
2026-03-09T10:17:12
tensorflow/tensorflow
5f676210fe3e0a8e602b80adcb35189aca2fe9a0
d5d306e1049cec17602ec58378b16b3cba8c5ff7
Intern stack frame construction. This allows us to cheaply compare two stack locations for equality, enabling relatively cheap prefix tests. This PR does introduce a couple of functional changes: * we will now drop illegal metadata during parsing or proto deserialization. I tried erroring at first but it turns out pe...
[ { "path": "third_party/xla/xla/hlo/ir/hlo_instruction_test.cc", "patch": "@@ -86,7 +86,7 @@ TEST_F(HloInstructionTest, GetStackTraceStringFromStackFrameId) {\n frame2->set_file_location_id(2);\n frame2->set_parent_frame_id(1);\n \n- module->set_stack_frames(StackFrames(index));\n+ module->set_stack_fr...
2026-02-25T19:53:23
kubernetes/kubernetes
88ed94e34292c56d70e05caf6eed432e2d49cf6c
b08fa0cdf18610be74d9741cf361446a5f42ff76
Scale ReplicaSet in DRA test down once in total, not once per pod The RS scale down closure was registered inside the per-pod loop, causing it to run several times during cleanup. On the second+ iteration the RS Get/Update could fail with a conflict error if the resourceVersion changed, failing the test during teardow...
[ { "path": "test/e2e/dra/utils/deploy.go", "patch": "@@ -687,21 +687,24 @@ func (d *Driver) SetUp(tCtx ktesting.TContext, kubeletRootDir string, nodes *Nod\n \t\td.cleanup = append(d.cleanup, func(tCtx ktesting.TContext) {\n \t\t\t// Depends on cancel being called first.\n \t\t\tplugin.Stop()\n-\n-\t\t\t// A...
2026-02-18T21:46:34
mrdoob/three.js
fcddfd2e1d345e0b378ea8729f3e5ff287cc9eaa
0af81f41f92407931adc4a4d7052d5932e4e9a38
TSL Transpiler: Introduce `Linker` and improvements (#31314) * updates * cleanup * fix hasAssignment * fix float import * fix negate * improve numeric expression
[ { "path": "examples/jsm/transpiler/AST.js", "patch": "@@ -1,19 +1,119 @@\n-export class Program {\n+export class ASTNode {\n \n \tconstructor() {\n \n-\t\tthis.body = [];\n+\t\tthis.isASTNode = true;\n+\n+\t\tthis.linker = {\n+\t\t\taccesses: [],\n+\t\t\tassignments: []\n+\t\t};\n+\n+\t\tthis.parent = null;...
2025-06-27T15:10:35
denoland/deno
afa1646de07c4a60f7eb94c58362d4b01f312477
ad9c6cac029a095d5fb79e3b2d8fa0aac0dc7bfd
fix(ext/node): `fs.rmdir` compatibility (#32144) Closes #32116 --------- Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
[ { "path": "cli/rt/file_system.rs", "patch": "@@ -269,6 +269,15 @@ impl FileSystem for DenoRtSys {\n RealFs.remove_async(path, recursive).await\n }\n \n+ fn rmdir_sync(&self, path: &CheckedPath) -> FsResult<()> {\n+ self.error_if_in_vfs(path)?;\n+ RealFs.rmdir_sync(path)\n+ }\n+ async fn rmdir...
2026-02-15T13:11:00
swiftlang/swift
8fe11fd17c12dd5d8b25afc427d315b1997028a5
48d91711c5eca5d56da1f1b5119a4b669a66ee42
Fix a test
[ { "path": "test/Distributed/distributed_actor_transfernonsendable.swift", "patch": "@@ -34,7 +34,7 @@ distributed actor MyDistributedActor {\n _ = { @MainActor in\n // TODO: This should error saying 'y' is actor isolated.\n print(y) // expected-error {{sending 'y' risks causing data races}}\...
2026-03-03T16:09:09
tensorflow/tensorflow
77715c02578dc99a58932ec677a6d3b529d18f94
feb95099235f1be81ccb4898bca8e55afec65393
[StableHLO] Fix for VHLO serialization of i1 PiperOrigin-RevId: 875221333
[ { "path": "third_party/xla/third_party/stablehlo/temporary.patch", "patch": "@@ -402,17 +402,17 @@ diff --ruN a/stablehlo/stablehlo/dialect/VhloBytecode.cpp b/stablehlo/stablehlo/\n + // Pack the data if i1\n + SmallVector<char> data;\n + ArrayRef<char> rawData = attr.getData();\n++ auto numElements = c...
2026-02-25T18:14:16
mrdoob/three.js
cac652a6078318d935a2fc97562c401381102ffa
681a4fd3d9f223bfedce82bccf10e2e7d655fb46
RoundedBoxGeometry: Fix parameters of the parent class (#31319)
[ { "path": "examples/jsm/geometries/RoundedBoxGeometry.js", "patch": "@@ -70,7 +70,7 @@ class RoundedBoxGeometry extends BoxGeometry {\n \t\t// ensure radius isn't bigger than shortest side\n \t\tradius = Math.min( width / 2, height / 2, depth / 2, radius );\n \n-\t\tsuper( 1, 1, 1, segments, segments, segme...
2025-06-27T07:44:55
kubernetes/kubernetes
755a7261ee0281376a69096357141371e1c49866
d820c046f5c520aab51ec850b263524b1fa5a4e9
Fix some dual-stack tests to use svc.Spec.IPFamilies
[ { "path": "test/e2e/framework/network/utils.go", "patch": "@@ -47,7 +47,6 @@ import (\n \te2epodoutput \"k8s.io/kubernetes/test/e2e/framework/pod/output\"\n \te2eskipper \"k8s.io/kubernetes/test/e2e/framework/skipper\"\n \timageutils \"k8s.io/kubernetes/test/utils/image\"\n-\tnetutils \"k8s.io/utils/net\"\n...
2026-02-18T17:34:49
denoland/deno
ad9c6cac029a095d5fb79e3b2d8fa0aac0dc7bfd
3127eab864feedc4f88bef6b97210581d174c1e6
fix(ext/node): support O_RDONLY | O_CREAT in fs.openSync (#32152) ## Description POSIX allows `O_RDONLY | O_CREAT` to create a file if it doesn't exist and then open it for reading only. Node.js and other runtimes support this combination. However, Rust's `std::fs::OpenOptions` requires write or append access when `c...
[ { "path": "ext/fs/std_fs.rs", "patch": "@@ -1029,13 +1029,49 @@ fn open_options(options: OpenOptions) -> fs::OpenOptions {\n open_options\n }\n \n-#[inline(always)]\n pub fn open_with_checked_path(\n- options: OpenOptions,\n+ opts: OpenOptions,\n path: &CheckedPath,\n ) -> FsResult<std::fs::File> {\n-...
2026-02-15T13:10:48
golang/go
2bbb2ace346a26e0b1f7e32f1cdc645db8170d1c
6b2505c79cb3838c6e27cf47ac09980fe51c83c2
runtime/trace: fix documentation comment Correct documentation comment for mul function Change-Id: I8b90f02bf0aaba9bb5813833d1b9dd1ebb7d71f4 GitHub-Last-Rev: e91af64af9bad9cd2574dc3dd7ed88123a288be8 GitHub-Pull-Request: golang/go#77082 Reviewed-on: https://go-review.googlesource.com/c/go/+/734100 Reviewed-by: Michael...
[ { "path": "src/runtime/trace/recorder.go", "patch": "@@ -112,7 +112,7 @@ func runtime_traceClockNow() uint64\n // frequency is nanoseconds per timestamp unit.\n type frequency float64\n \n-// mul multiplies an unprocessed to produce a time in nanoseconds.\n+// mul multiplies an unprocessed timestamp to prod...
2026-01-05T23:08:44
swiftlang/swift
48d91711c5eca5d56da1f1b5119a4b669a66ee42
4e31a309911a84099a3752eb6f4f8a4eea91993a
[unittest] Fix PartitionUtilsTest for changes.
[ { "path": "unittests/SILOptimizer/PartitionUtilsTest.cpp", "patch": "@@ -100,10 +100,12 @@ struct MockedPartitionOpEvaluatorWithFailureCallback final\n case PartitionOpError::NonSendableIsolationCrossingResult:\n case PartitionOpError::InOutSendingReturned:\n case PartitionOpError::InOutSendingP...
2026-03-02T21:11:34
tensorflow/tensorflow
e79493aab272a48af5cf6496fca902f6ee364400
05e060ca633467e648e4f696a5c53b18c3df7984
[XLA:GPU] Implement concrete tiling propagation. Also fix a bug in the reduce op tiling. PiperOrigin-RevId: 875163146
[ { "path": "third_party/xla/xla/codegen/tiling/experimental/symbolic_tile.cc", "patch": "@@ -40,7 +40,6 @@ using ::llvm::SmallVector;\n using ::mlir::AffineExpr;\n using ::mlir::getAffineConstantExpr;\n using ::mlir::getAffineDimExpr;\n-using ::mlir::getAffineSymbolExpr;\n using ::mlir::MLIRContext;\n \n Sma...
2026-02-25T15:53:53
kubernetes/kubernetes
66a7bd6de607798daad108d5554ac42ababff507
0af21eae1ee6e914d237314dd9f7ef8e6a3f8488
Fix TestEtcdStoragePath for MutatingAdmissionPolicy emulation This commit fixes a failure in TestEtcdStoragePath when emulating version 1.34. The test failure was caused by the removal of alpha versions from the test data during emulation, which prevented 'storageVersionAtEmulationVersion' from correctly resolving the...
[ { "path": "pkg/kubeapiserver/default_storage_factory_builder.go", "patch": "@@ -28,7 +28,6 @@ import (\n \t\"k8s.io/apiserver/pkg/util/compatibility\"\n \tbasecompatibility \"k8s.io/component-base/compatibility\"\n \t\"k8s.io/kubernetes/pkg/api/legacyscheme\"\n-\t\"k8s.io/kubernetes/pkg/apis/admissionregist...
2026-02-17T22:35:42
denoland/deno
3127eab864feedc4f88bef6b97210581d174c1e6
0c839b0891e84faba19a3a27c772bd75e6f232d4
fix(ext/node): add parentPath to Dirent from fs.opendir and support Buffer paths in lstat (#32178) Closes https://github.com/denoland/deno/issues/32175 ## Summary - **Fix `fs.opendir` Dirent `parentPath`**: `Dir.read()` and `Dir.readSync()` now pass the directory path to `direntFromDeno()`, so Dirents correctly have...
[ { "path": "ext/node/polyfills/_fs/_fs_dir.ts", "patch": "@@ -50,12 +50,16 @@ export default class Dir {\n AsyncGeneratorPrototypeNext(this.#asyncIterator),\n (iteratorResult) => {\n resolve(\n- iteratorResult.done ? null : direntFromDeno(iteratorResult.value),\n+ ...
2026-02-15T13:05:32
golang/go
6b2505c79cb3838c6e27cf47ac09980fe51c83c2
4b89bcb8b7141c7e4ef1a7dbb4c3f17f589d89c0
cmd/go: remove user-content from doc strings in cgo ASTs. Thank you to RyotaK (https://ryotak.net) of GMO Flatt Security Inc. for reporting this issue. Updates golang/go#76697 Fixes CVE-2025-61732 Change-Id: I1121502f1bf1e91309eb4bd41cc3a09c39366d36 Reviewed-on: https://go-review.googlesource.com/c/go/+/734220 Revie...
[ { "path": "src/cmd/cgo/ast.go", "patch": "@@ -301,17 +301,12 @@ func (f *File) saveExport(x any, context astContext) {\n \t\t\terror_(c.Pos(), \"export comment has wrong name %q, want %q\", name, n.Name.Name)\n \t\t}\n \n-\t\tdoc := \"\"\n-\t\tfor _, c1 := range n.Doc.List {\n-\t\t\tif c1 != c {\n-\t\t\t\td...
2026-01-06T21:09:19
swiftlang/swift
3e4ef57a30eda16a404303db093ec3c5e89f77e4
975da8cec6384b4c83d37377e36cfb7917b9dee4
[rbi] Add IncompatibleRegionMerge error with contextual diagnostics Introduce the IncompatibleRegionMerge partition op error type to detect merges between regions with incompatible isolation. Previously, these merge failures produced generic "unknown pattern" errors. Now we detect them during partition evaluation and...
[ { "path": "include/swift/AST/DiagnosticsSIL.def", "patch": "@@ -1220,6 +1220,40 @@ GROUPED_ERROR(regionbasedisolation_inout_sending_in_same_region, RegionIsolation\n NOTE(regionbasedisolation_inout_sending_in_same_region_note, none,\n \"caller function assumes on return that %0 and %1 cannot be used to...
2026-02-10T19:03:29
tensorflow/tensorflow
726241dcd17f09f6381e14844385f12bd31957fb
608ac601e499d6262c51808de92cec538fac0709
PR #38233: [XLA:GPU][oneAPI] Fix --config=warnings error on SYCL backend Imported from GitHub PR https://github.com/openxla/xla/pull/38233 PR #37430 enables warnings as errors by default. Due to this change, the following error occurs on the SYCL backend: `xla/stream_executor/sycl/sycl_context_test.cc:31:46: error: ...
[ { "path": "third_party/xla/xla/stream_executor/sycl/sycl_context_test.cc", "patch": "@@ -22,18 +22,7 @@ limitations under the License.\n namespace stream_executor::sycl {\n namespace {\n \n-class SyclContextTest : public ::testing::Test {\n- protected:\n- void SetUp() override {\n- TF_ASSERT_OK_AND_ASSI...
2026-02-25T09:36:33
denoland/deno
0c839b0891e84faba19a3a27c772bd75e6f232d4
e3fda850d5215d4a78e95fbc0ae86096c2f12546
fix(ext/node): fix worker.terminate() return value and exit code (#32168) ## Summary Two fixes to `worker.terminate()` behavior to match Node.js: - **Return `undefined` when worker already exited**: In Node.js, calling `worker.terminate()` after the worker has already exited resolves to `undefined` (the internal han...
[ { "path": "ext/node/polyfills/worker_threads.ts", "patch": "@@ -601,7 +601,7 @@ class NodeWorker extends EventEmitter {\n // https://nodejs.org/api/worker_threads.html#workerterminate\n terminate() {\n if (this.#status === \"TERMINATED\") {\n- return PromiseResolve(0);\n+ return PromiseRes...
2026-02-15T13:04:43
kubernetes/kubernetes
962f5fe9ba8dfa3987be66861af8fb3b48f97069
cb52554c883c513d3722cfd6570e9532a00871b7
Fix integration tests
[ { "path": "pkg/kubeapiserver/default_storage_factory_builder.go", "patch": "@@ -89,7 +89,6 @@ func NewStorageFactoryConfigEffectiveVersion(effectiveVersion basecompatibility.\n \t\tresource.Resource(\"devicetaintrules\").WithVersion(\"v1alpha3\"),\n \t\tscheduling.Resource(\"workloads\").WithVersion(\"v1alp...
2026-01-06T21:03:44
golang/go
4b89bcb8b7141c7e4ef1a7dbb4c3f17f589d89c0
8ac4477d83672af8c3d39399685731ee6b81ce2f
lib/fips140: freeze v1.26.0 FIPS 140-3 module Fixes #76770 Change-Id: Ia617f01ea9be0d1759147b6cca0403c56a6a6964 Reviewed-on: https://go-review.googlesource.com/c/go/+/731840 Reviewed-by: Roland Shoemaker <roland@golang.org> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Auto...
[ { "path": "lib/fips140/fips140.sum", "patch": "@@ -10,4 +10,4 @@\n #\tgo test cmd/go/internal/fips140 -update\n #\n v1.0.0-c2097c7c.zip daf3614e0406f67ae6323c902db3f953a1effb199142362a039e7526dfb9368b\n-v1.1.0-rc1.zip ea94f8c3885294c9efe1bd8f9b6e86daeb25b6aff2aeb20707cd9a5101f6f54e\n+v1.26.0.zip 9b28f847fdf...
2025-12-19T22:14:36
denoland/deno
e3fda850d5215d4a78e95fbc0ae86096c2f12546
c3fe9932581c7396d50c1b228012eb6c9102f817
fix(ext/node): add worker_threads stdin support (#32165) ## Summary - Adds `worker.stdin` support when `{ stdin: true }` is passed to the `Worker` constructor - Parent creates a `Writable` stream (`worker.stdin`) that sends `WORKER_STDIN` / `WORKER_STDIN_END` messages to the worker via `postMessage` - Worker replaces...
[ { "path": "ext/node/polyfills/worker_threads.ts", "patch": "@@ -38,7 +38,7 @@ import {\n validateObject,\n } from \"ext:deno_node/internal/validators.mjs\";\n import { EventEmitter } from \"node:events\";\n-import { Readable } from \"node:stream\";\n+import { Readable, Writable } from \"node:stream\";\n i...
2026-02-14T18:26:38
golang/go
874d8b98eba8129559b97d2fdfa02ddeb88b95f9
d1e7f49e3d1eb039d9d2aed3ba923459bd42aa7c
cmd/go/internal/work: decrement concurrentProcesses when action finishes This fixes a bug where we only incremented concurrentProcesses but never decremented it, causing us to run out of tokens and give all compiles -c=1 after a point. Cq-Include-Trybots: luci.golang.try:gotip-linux-amd64_c2s16-perf_vs_parent,gotip-l...
[ { "path": "src/cmd/go/internal/work/exec.go", "patch": "@@ -248,6 +248,11 @@ func (b *Builder) Do(ctx context.Context, root *Action) {\n \n \twg.Wait()\n \n+\tif tokens != totalTokens || concurrentProcesses != 0 {\n+\t\tbase.Fatalf(\"internal error: tokens not restored at end of build: tokens: %d, totalToke...
2026-01-06T22:18:48
mrdoob/three.js
5ad8fee1a12c25a3f21ef6ce47302a1b5cfc5977
87c88a4d9e9a6ec2fade1552390f731810f65ed5
Manual: Fix links to homepage. (#31301)
[ { "path": "manual/examples/resources/editor.html", "patch": "@@ -242,7 +242,7 @@\n <button class=\"button-fullscreen\">&nbsp;</button>\n </div>\n <div class=\"panelogo\">\n- <div><a href=\"/\"><span data-subst=\"textContent|name\"></span>&nbsp;</a><a href=\"/\"><img data...
2025-06-22T08:16:27
swiftlang/swift
975da8cec6384b4c83d37377e36cfb7917b9dee4
7e6f26204600915e86d40035e1992239c7b9a527
[rbi] Refactor SILIsolationInfo lattice and merge logic. Restructure the isolation info lattice from a linear progression to a diamond-shaped lattice that properly models merge failures: Old: Unknown -> Disconnected -> Task -> Actor New: Disconnected ---> Task ---> Invalid \--> Actor -/ This cl...
[ { "path": "include/swift/SILOptimizer/Utils/PartitionUtils.h", "patch": "@@ -422,7 +422,7 @@ struct SendingOperandState {\n /// The dynamic isolation info of the region of value when we sent.\n ///\n /// This will contain the isolated value if we found one.\n- SILDynamicMergedIsolationInfo isolationI...
2026-02-05T17:53:46
tensorflow/tensorflow
608ac601e499d6262c51808de92cec538fac0709
52be61eb3dbd7b2385088689e2ce9579983990d0
Add shard map import unit tests for an unsupported case where call graph on manual computations is non-flat and multiple calls. When the order of functions are in pre-order on call call graph it succeeds and in post-order it fails. This change only adds the unit tests. It does not fix yet. PiperOrigin-RevId: 874992...
[ { "path": "third_party/xla/xla/service/spmd/shardy/test/sdy_round_trip_shard_map_import.mlir", "patch": "@@ -1,4 +1,4 @@\n-// RUN: sdy_opt %s -xla-sdy-round-trip-shard-map-import 2>&1 | FileCheck %s\n+// RUN: sdy_opt %s --split-input-file -xla-sdy-round-trip-shard-map-import 2>&1 | FileCheck %s\n \n sdy.mes...
2026-02-25T08:03:32
kubernetes/kubernetes
e809602da59d90fe46c696ad48beb38862c5381b
448fa19b8e9a567a257ec8740ddc444ac41f25ba
podresources: filter out inactive pods in Get() Currently the provider that the podresources API consumes does *not* obviously filters out the terminal pod, and this is corroborated by the fact the related e2e test starts to fail. We had a bug in the test which masked the real failure, but now it's evident. So we per...
[ { "path": "pkg/kubelet/kubelet.go", "patch": "@@ -3197,7 +3197,15 @@ func (pp *kubeletPodsProvider) GetPods() []*v1.Pod {\n }\n \n func (pp *kubeletPodsProvider) GetPodByName(namespace, name string) (*v1.Pod, bool) {\n-\treturn pp.kl.podManager.GetPodByName(namespace, name)\n+\tpod, found := pp.kl.podManage...
2026-02-18T14:03:39
golang/go
d1e7f49e3d1eb039d9d2aed3ba923459bd42aa7c
f6ebd91129e13ef7f495550a4fc8fa74769f6a2d
internal/trace: fix recorder.Write return value for header-only buffers Fix issue #77083 Change-Id: I9189d1e3a6efea8478224164e820f50c818abcd5 GitHub-Last-Rev: bb24cbda95f0b5b10aeae9a5ee8cbe215ba6d4eb GitHub-Pull-Request: golang/go#77092 Reviewed-on: https://go-review.googlesource.com/c/go/+/734300 Reviewed-by: Michae...
[ { "path": "src/runtime/trace/recorder.go", "patch": "@@ -39,7 +39,7 @@ func (w *recorder) Write(b []byte) (n int, err error) {\n \t\tw.headerReceived = true\n \t}\n \tif len(b) == n {\n-\t\treturn 0, nil\n+\t\treturn n, nil\n \t}\n \tba, nb, err := readBatch(b[n:]) // Every write from the runtime is guarant...
2026-01-06T22:47:07
mrdoob/three.js
b1d24bdc37bc89354c0eb9ac034ba96a20474a51
8f21de2b812bc63d94044ef334ea6925b2f8326d
TSL Transpiler: Add simplified `Fn()` layout (#31299) * fix arithmetic operators check * add simplified layout
[ { "path": "examples/jsm/transpiler/GLSLDecoder.js", "patch": "@@ -4,6 +4,10 @@ const unaryOperators = [\n \t'+', '-', '~', '!', '++', '--'\n ];\n \n+const arithmeticOperators = [\n+\t'*', '/', '%', '+', '-', '<<', '>>'\n+];\n+\n const precedenceOperators = [\n \t'*', '/', '%',\n \t'-', '+',\n@@ -328,7 +332,...
2025-06-21T23:59:11
denoland/deno
c3fe9932581c7396d50c1b228012eb6c9102f817
021eb21b09d85e4fb8b29f4e7a0efb78397daf28
fix(ext/node): make worker_threads ref/unref idempotent like Node.js (#32161) Closes #31871 ## Summary - Changes `Worker.ref()`/`Worker.unref()` from a reference counter to an idempotent boolean toggle, matching Node.js semantics - In Node.js, `ref()`/`unref()` are idempotent: calling `ref()` multiple times is the sa...
[ { "path": "ext/node/polyfills/worker_threads.ts", "patch": "@@ -160,7 +160,7 @@ const privateWorkerRef = Symbol(\"privateWorkerRef\");\n class NodeWorker extends EventEmitter {\n #id = 0;\n #name = \"\";\n- #refCount = 1;\n+ #refed = true;\n #messagePromise = undefined;\n #controlPromise = undefin...
2026-02-14T17:34:10
tensorflow/tensorflow
34779c787b6ec7f235e352141dadafd7efdb91f7
0667786a1a8016e4ee4036953a6e2efca1ba77be
Fix sharding partial replication check. Currently it's just checking for `ReplicateOnLastTileDim` which doesn't cover partial replication case using subgroups for replicated sharding, e.g: cases when there are multiple subgroups and one of them is Replicated which also counts as Partial Replicated sharding. PiperOrig...
[ { "path": "third_party/xla/xla/service/spmd/custom_call_handler.cc", "patch": "@@ -97,7 +97,7 @@ absl::Status SpmdPartitioningVisitor::HandleCustomCallTopK(\n const HloSharding& sharding = hlo->operand(0)->sharding();\n // No support for partial replicate yet.\n if (sharding.IsTileMaximal() || shardin...
2026-02-25T04:25:57
kubernetes/kubernetes
448fa19b8e9a567a257ec8740ddc444ac41f25ba
1c947e67bcdf8700f3334f6a24574c00088e5534
e2e: node: podresources: fix expectations for Get() and terminated pods terminated pods should not be reported by Get() calls, we should get an error instead Signed-off-by: Francesco Romani <fromani@redhat.com>
[ { "path": "test/e2e_node/podresources_test.go", "patch": "@@ -1002,23 +1002,31 @@ func podresourcesGetTests(ctx context.Context, f *framework.Framework, cli kubel\n \n \trestartNever := v1.RestartPolicyNever\n \ttpd = newTestPodData()\n-\tginkgo.By(\"checking the output when only pod require CPU is terminat...
2026-02-18T13:53:35
swiftlang/swift
7e6f26204600915e86d40035e1992239c7b9a527
1a7d5542ead885d548a8f49be75381533105ffff
[flow-isolation] Treat non-Sendable params of nonisolated sync actor inits as actor-isolated The region isolation proposal requires that nonisolated synchronous and asynchronous initializers for actors behave consistently. Previously, non-Sendable parameters of nonisolated *async* actor inits were given actor-instance...
[ { "path": "lib/SILOptimizer/Utils/SILIsolationInfo.cpp", "patch": "@@ -958,6 +958,8 @@ SILIsolationInfo SILIsolationInfo::get(SILArgument *arg) {\n return attr->isUnsafe();\n }();\n \n+ auto *func = fArg->getFunction();\n+\n // If we have a closure capture that is not an indirect result or indirect...
2026-02-27T16:01:04
mrdoob/three.js
37c98fa6bcf0289083926677eacea650ab6d6186
4f796737b89d61d5f7006b68e3f746a2a53e37fb
TSL Transpiler: Fix unary negate after arithmetic operator (#31297) * fix negate * cleanup * Update GLSLDecoder.js
[ { "path": "examples/jsm/transpiler/GLSLDecoder.js", "patch": "@@ -327,6 +327,9 @@ class GLSLDecoder {\n \n \t\t\t\tif ( ! token.isOperator || i === 0 || i === tokens.length - 1 ) return;\n \n+\t\t\t\t// important for negate operator after arithmetic operator: a * -1, a * -( b )\n+\t\t\t\tif ( ( inverse && t...
2025-06-21T23:11:59
golang/go
d1d0fc7a97539206e33f04bac935f6450597137c
9b2e3b9a02bd8872bdbf5c6086674fa6b4bc8ef9
os/exec: avoid atomic.Bool for Cmd.startCalled An atomic.Bool isn't necessary here since, unless otherwise specified, the methods of an object are not concurrency-safe w.r.t. each other. Using an atomic causes the copylocks vet check to warn about copying of Cmd, which is not wrong, because one shouldn't be copying op...
[ { "path": "src/os/exec/exec.go", "patch": "@@ -357,7 +357,9 @@ type Cmd struct {\n \tcachedLookExtensions struct{ in, out string }\n \n \t// startCalled records that Start was attempted, regardless of outcome.\n-\tstartCalled atomic.Bool\n+\t// (Until go.dev/issue/77075 is resolved, we use atomic.SwapInt32,...
2026-01-06T19:48:31
denoland/deno
fd7ab8a43abfc932d9a679acd8b1234683500328
f08c376cad1898753f400eba47be10b93632b1d7
Revert "fix(compile): use SHT_NOTE to prevent `strip` from removing deno compiler data" (#32171) Reverts denoland/deno#32102
[ { "path": "Cargo.lock", "patch": "@@ -6090,14 +6090,13 @@ dependencies = [\n \n [[package]]\n name = \"libsui\"\n-version = \"0.13.0\"\n+version = \"0.12.6\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"4dd268ef2098e102e82c67d9de9076a2f1cef12ae284a7a35635ea30fa2dda9e\"...
2026-02-14T14:04:26
tensorflow/tensorflow
cfb869cf2ed3b23092eb41c1216ed58270f6adfd
2fc1d3771a32072699ad2db6234efd7d70ef283d
[StableHLO] Fix for VHLO deser PiperOrigin-RevId: 874884193
[ { "path": "third_party/xla/third_party/stablehlo/temporary.patch", "patch": "@@ -261,7 +261,7 @@ diff --ruN a/stablehlo/stablehlo/dialect/VhloBytecode.cpp b/stablehlo/stablehlo/\n #include \"llvm/Support/raw_ostream.h\"\n #include \"mlir/Bytecode/BytecodeImplementation.h\"\n #include \"mlir/IR/Attributes...
2026-02-25T02:33:02
kubernetes/kubernetes
d7c1072e4fd398e1ebee85a5e41ec4d8598b7d78
b12d6a7f6bd2a700f3e9c2b7f29940ef39a0b838
Fix example in kubectl create configmap Signed-off-by: Yosri Barhoumi <med.yosri.brh@gmail.com>
[ { "path": "staging/src/k8s.io/kubectl/pkg/cmd/create/create_configmap.go", "patch": "@@ -64,11 +64,8 @@ var (\n \t\t # Create a new config map named my-config with key1=config1 and key2=config2\n \t\t kubectl create configmap my-config --from-literal=key1=config1 --from-literal=key2=config2\n \n-\t\t # C...
2026-02-03T00:49:10
mrdoob/three.js
7858b59e2b169a4fd86135ab1c37e1f2444253d7
f7157ee9708c149d1a1e4b3b4517fc814f3074e4
RapierPhysics: Add removeMesh() (#31296) * RapierPhysics: Add removeMesh() * Update RapierPhysics.js Fix JSDoc. --------- Co-authored-by: Michael Herzog <michael.herzog@human-interactive.org>
[ { "path": "examples/jsm/physics/RapierPhysics.js", "patch": "@@ -1,6 +1,6 @@\n import { Clock, Vector3, Quaternion, Matrix4 } from 'three';\n \n-const RAPIER_PATH = 'https://cdn.skypack.dev/@dimforge/rapier3d-compat@0.12.0';\n+const RAPIER_PATH = 'https://cdn.skypack.dev/@dimforge/rapier3d-compat@0.17.3';\n...
2025-06-21T08:22:56
golang/go
f8ee0f84753b22254d217bf28ce8ecca7db7025c
b094749bad125db5b89e48248bbb9c7dc1292a95
cmd/go/testdata/vcstest/git: use git commands that work on older git versions On older versions of git (such as 2.25.1), `git branch -M master` fails after `git init` - use `git checkout -b master` instead, which works across multiple versions. Fixes tests on the rather outdated linux/mips* builders. Change-Id: Id86...
[ { "path": "src/cmd/go/testdata/vcstest/git/legacytest.txt", "patch": "@@ -6,7 +6,7 @@ env GIT_COMMITTER_NAME=$GIT_AUTHOR_NAME\n env GIT_COMMITTER_EMAIL=$GIT_AUTHOR_EMAIL\n \n git init\n-git branch -M master\n+git checkout -b master\n \n at 2018-07-17T12:41:39-04:00\n cp x_cf92c7b.go x.go", "additions": ...
2025-12-12T08:03:05
denoland/deno
f08c376cad1898753f400eba47be10b93632b1d7
fb701ea348214d960dc79d8f4edf94264744d3fb
fix(compile): use SHT_NOTE to prevent `strip` from removing deno compiler data (#32102) Fixes https://github.com/denoland/deno/issues/22556 > Data is stored in ELF notes using a section of type SHT_NOTE and a program header of type PT_NOTE. The .note.sui section is placed inside a PT_LOAD segment so it is mapped at r...
[ { "path": "Cargo.lock", "patch": "@@ -6090,13 +6090,14 @@ dependencies = [\n \n [[package]]\n name = \"libsui\"\n-version = \"0.12.6\"\n+version = \"0.13.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"e2b6d6bbf43ba95540d1681826c8d7acb9744708398463ccbcd3c3a5d04c2fdc\"...
2026-02-14T11:32:30
mrdoob/three.js
b8c03ae2fc20ba395dcdb0c0cabb245a9e70bb79
1c78abf303de8356e94faf7bc81e987c9bf353f8
TSL: Introduce `textureBicubicLevel()` (#31288) * fix texture uv reference * add `textureBicubicLevel` * cleanup * cleanup
[ { "path": "src/Three.TSL.js", "patch": "@@ -477,6 +477,7 @@ export const texture = TSL.texture;\n export const texture3D = TSL.texture3D;\n export const textureBarrier = TSL.textureBarrier;\n export const textureBicubic = TSL.textureBicubic;\n+export const textureBicubicLevel = TSL.textureBicubicLevel;\n ex...
2025-06-20T18:28:49
kubernetes/kubernetes
4a326b0196eb44826e8aca038b528ea49e4293e4
4edf082c406416b170d923e8f2c2cee69d933ae6
Preempt pods in prebind phase without delete calls. This change allows the preemption to preempt a pod that is not yet bound, but is already in prebind phase) without issuing a delete call to the apiserver. Pods are added to a special map of pods currently in prebind phaseand preemption can cancel the context that is...
[ { "path": "pkg/scheduler/framework/plugins/defaultpreemption/default_preemption_test.go", "patch": "@@ -477,6 +477,7 @@ func TestPostFilter(t *testing.T) {\n \t\t\t\t\tframeworkruntime.WithSnapshotSharedLister(internalcache.NewSnapshot(tt.pods, tt.nodes)),\n \t\t\t\t\tframeworkruntime.WithLogger(logger),\n ...
2025-11-28T12:49:19
golang/go
b28808d838682b2911698fcb934813b02f39fa69
d64add4d60b69973e5cae62f07983f91435de58b
cmd/go/internal/modindex: fix obvious bug using failed type assertion adonovan pointed out this bug in the review of CL 733320 and this seems to be the cause of all those list_empty_importpath flakes. It makes sense that something nondeterministic would be tied up with the module index because the state of the cache c...
[ { "path": "src/cmd/go/internal/modindex/scan.go", "patch": "@@ -112,10 +112,10 @@ func parseErrorToString(err error) string {\n \t\treturn \"\"\n \t}\n \tvar p parseError\n-\tif e, ok := err.(scanner.ErrorList); ok {\n-\t\tp.ErrorList = &e\n+\tif errlist, ok := err.(scanner.ErrorList); ok {\n+\t\tp.ErrorLis...
2025-12-30T20:41:41
denoland/deno
7a048f40f980f63a646444e3386e3e92d0e6a0c1
db1386570f5fdfa7712de275ca41d1501c17dec8
fix(ext/node): forward stdout from worker_threads to parent (#32160) Closes #31889 ## Summary - Adds `stdout` and `stderr` as `Readable` streams on the `Worker` class, and `stdin` (null by default), matching the Node.js API surface - Forwards `process.stdout.write()` and `process.stderr.write()` from worker threads t...
[ { "path": "ext/node/polyfills/worker_threads.ts", "patch": "@@ -38,6 +38,7 @@ import {\n validateObject,\n } from \"ext:deno_node/internal/validators.mjs\";\n import { EventEmitter } from \"node:events\";\n+import { Readable } from \"node:stream\";\n import {\n BroadcastChannel as WebBroadcastChannel,\n...
2026-02-14T10:03:25
mrdoob/three.js
1c78abf303de8356e94faf7bc81e987c9bf353f8
fa5da939ac7a7deb9df4e4cca2e450177bd7aa6b
WebGLPrograms: Fix cache key with gradient maps. (#31292)
[ { "path": "src/renderers/webgl/WebGLPrograms.js", "patch": "@@ -515,6 +515,8 @@ function WebGLPrograms( renderer, cubemaps, cubeuvmaps, extensions, capabilities\n \t\t\t_programLayers.enable( 20 );\n \t\tif ( parameters.batchingColor )\n \t\t\t_programLayers.enable( 21 );\n+\t\tif ( parameters.gradientMap )...
2025-06-20T10:27:41
golang/go
fd45d70799853ef5980a559e206353574108d8da
df4e08ac65e94041367785783ec1482e8bed2397
all: fix some minor grammatical issues in the comments Change-Id: I0459f05e7f6abd9738813c65d993114e931720d5 Reviewed-on: https://go-review.googlesource.com/c/go/+/731000 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Keith Randall <khr@google.com> Reviewed-by: Ch...
[ { "path": "src/archive/tar/reader_test.go", "patch": "@@ -787,7 +787,7 @@ type readBadSeeker struct{ io.ReadSeeker }\n \n func (rbs *readBadSeeker) Seek(int64, int) (int64, error) { return 0, fmt.Errorf(\"illegal seek\") }\n \n-// TestReadTruncation test the ending condition on various truncated files and\n...
2025-12-18T02:36:50
kubernetes/kubernetes
ed551f682611afeb030ae57a9f650f68af8f6413
4edf082c406416b170d923e8f2c2cee69d933ae6
KAL:enforce optionalorrequired on rbac API group # Conflicts: # hack/golangci-hints.yaml # hack/golangci.yaml # hack/kube-api-linter/exceptions.yaml
[ { "path": "hack/golangci-hints.yaml", "patch": "@@ -215,7 +215,7 @@ linters:\n # OptionalOrRequired is being enabled over time. For now, each API group should be added to this list until we comb through each group and fix the missing tags.\n # The nonpointerstructs linter is included here as wel...
2026-02-18T08:11:39
denoland/deno
0ea7d9f8130a2f803258d15ea641133a743ba410
1108e77020c560c5a777e585c1464e891ed67b0f
feat(ext/tls): add `SSLKEYLOGFILE` support for TLS key logging (#31867) Adds support for the `SSLKEYLOGFILE` environment variable, enabling TLS session key logging for debugging encrypted traffic. When `SSLKEYLOGFILE` is set to a file path, Deno writes TLS session keys in NSS Key Log format, which can be used by tool...
[ { "path": "Cargo.lock", "patch": "@@ -3119,6 +3119,7 @@ dependencies = [\n \"deno_core\",\n \"deno_error\",\n \"deno_native_certs\",\n+ \"log\",\n \"rustls\",\n \"rustls-pemfile\",\n \"rustls-tokio-stream\",", "additions": 1, "deletions": 0, "language": "Unknown" }, { "path": "cli/...
2026-02-13T16:01:10
mrdoob/three.js
fa5da939ac7a7deb9df4e4cca2e450177bd7aa6b
91de2913aa40268ed01286ebbc024ca80536680a
fixed scenegraph example typo (#31289)
[ { "path": "manual/en/scenegraph.html", "patch": "@@ -91,7 +91,7 @@ <h1>Scene Graph</h1>\n represents light that emanates from a single point.</p>\n <pre class=\"prettyprint showlinemods notranslate lang-js\" translate=\"no\">{\n const color = 0xFFFFFF;\n- const intensity = 3;\n+ const intensity = 500;\n...
2025-06-20T08:02:22
golang/go
df4e08ac65e94041367785783ec1482e8bed2397
cd668d744f77da06ca9565f41c63c3a5251469ee
test/codegen: fix a tab in comparisons.go to ensure pattern works Fix a pattern in test/codegen/comparisons.go to use whitespace instead of a tab. The test needs a whitespace to properly fail if the regalloc change from CL686655 would be missing (in that case we would have a spill immediately after call to memequal, w...
[ { "path": "test/codegen/comparisons.go", "patch": "@@ -660,13 +660,13 @@ func equalVarString8(a string) bool {\n \treturn a[:8] == b\n }\n \n-func equalVarStringNoSpill(a,b string) bool {\n+func equalVarStringNoSpill(a, b string) bool {\n \ts := string(\"ZZZZZZZZZ\")\n \t// arm64:\".*memequal\"\n \tmemeq1 :...
2025-12-06T13:43:55
tensorflow/tensorflow
a456b5da0e2d60007aa98bf45c24d1530ce41e79
319f1779aa8ebae344b8be3dc603b99ba452c071
[XLA:GPU]: Enable 2 shot all-reduce 2e2e tests. There was a synchronization bug in the 2 shot implementation that had to be fixed for this. PiperOrigin-RevId: 874723867
[ { "path": "third_party/xla/xla/stream_executor/gpu/all_reduce_kernel_lib.cu.h", "patch": "@@ -270,9 +270,10 @@ __device__ __forceinline__ void TwoShotAllReduceKernelImpl(\n \n // Shot1: Wait for all participating devices to finish copying data to their\n // shared buffer.\n+ __syncthreads(); // Make s...
2026-02-24T19:52:48
mrdoob/three.js
4ec743df6500ae6fc93f3a28ed02a9912e01f443
1f603c32b8a21d43102e9b31dc8bf271679784bc
TSL Transpiler: Add Support for Switch Statements (#31272) * init branch * work on switch transpiler * work * alternate approach * remove logs, add default case * rework switch to use parseBody and getGroupDelta * fix read bug * remove comments, add continue and break * add import and improve code style * ski...
[ { "path": "examples/jsm/transpiler/AST.js", "patch": "@@ -214,6 +214,26 @@ export class Discard {\n \n }\n \n+export class Continue {\n+\n+\tconstructor() {\n+\n+\t\tthis.isContinue = true;\n+\n+\t}\n+\n+}\n+\n+export class Break {\n+\n+\tconstructor() {\n+\n+\t\tthis.isBreak = true;\n+\n+\t}\n+\n+}\n+\n ex...
2025-06-18T16:50:21
denoland/deno
1108e77020c560c5a777e585c1464e891ed67b0f
f72ef98854679bf50d2b479743fb98171df94869
chore: split up deno_node to improve compile times (#32142) I let claude loose on improving compile times and it suggested splitting up `deno_node` by extracting the crypto stuff and node sqlite. And the other change is getting rid of all unused constants in `winerror.rs`. That changes it from 17k lines down to 240. ...
[ { "path": ".github/workflows/ci.yml", "patch": "@@ -506,17 +506,17 @@ jobs:\n if: '!(matrix.skip) && matrix.job == ''test'' && matrix.profile == ''debug'' && !startsWith(github.ref, ''refs/tags/'') && runner.os == ''Linux'''\n env:\n CARGO_PROFILE_DEV_DEBUG: 0\n- run: cargo ...
2026-02-13T15:48:57
golang/go
cd668d744f77da06ca9565f41c63c3a5251469ee
06eff0f7c3027a78088d45efdaec8ac3ed636481
cmd/compile: disable inlining for functions using runtime.deferrangefunc The rangefunc rewrite pass implements defer using deferrangefunc and deferproccat. The loop body is rewritten into a closure, it cannot be inlined due to defer call. But the outer function may still be inlined in certain scenarios (e.g., with PGO...
[ { "path": "src/cmd/compile/internal/inline/inl.go", "patch": "@@ -516,6 +516,9 @@ opSwitch:\n \t\t\t\t\t\tbreak opSwitch\n \t\t\t\t\tcase \"panicrangestate\":\n \t\t\t\t\t\tcheap = true\n+\t\t\t\t\tcase \"deferrangefunc\":\n+\t\t\t\t\t\tv.reason = \"defer call in range func\"\n+\t\t\t\t\t\treturn true\n \t\...
2025-12-23T08:12:04
tensorflow/tensorflow
d2317dce4b800bc2ca0739175d632f32fa06e3f3
e9b3443d9daec4574450a317b8a138a55f5a5857
[StableHLO CompatFix] Handle packed/unpacked i1 tensors in VHLO serialization Also reverts all bytecode files to ensure full backward compatibility. PiperOrigin-RevId: 874691075
[ { "path": "third_party/xla/third_party/stablehlo/temporary.patch", "patch": "@@ -242,6 +242,124 @@ diff --ruN a/stablehlo/stablehlo/dialect/TypeInference.cpp b/stablehlo/stablehlo\n return success();\n }\n \n+diff --ruN a/stablehlo/stablehlo/dialect/VhloBytecode.cpp b/stablehlo/stablehlo/dialect/VhloBy...
2026-02-24T18:47:18
swiftlang/swift
451f7df9520b1a9da4c32af723abc32ba446cb5d
0d81f6fc5cad6373d073831602c40f1c739a17d2
[Sema] Fix type-checker assertion for SourceKit We ought to properly fix this, but for now let's avoid asserting for SourceKit.
[ { "path": "include/swift/Basic/LangOptions.h", "patch": "@@ -526,6 +526,10 @@ namespace swift {\n /// prevents files from being written.\n bool OpenSourcesAsVolatile = false;\n \n+ /// Whether the AST is being built for SourceKit.\n+ /// FIXME: Eliminate this, it's a layering violation.\n+ ...
2026-03-08T00:06:21
mrdoob/three.js
6e73a322e3888052a472cea70dff73c35434a85d
db897c4fe66edd638da126f6bae53b1f479def04
TSL: Fix `convertToTexture()` auto resize (#31277) * fix auto resize update * rename `autoSize` to `autoResize`
[ { "path": "src/nodes/utils/RTTNode.js", "patch": "@@ -131,7 +131,7 @@ class RTTNode extends TextureNode {\n \t * @readonly\n \t * @default true\n \t */\n-\tget autoSize() {\n+\tget autoResize() {\n \n \t\treturn this.width === null;\n \n@@ -188,13 +188,21 @@ class RTTNode extends TextureNode {\n \n \t\t//\n...
2025-06-17T04:12:59
kubernetes/kubernetes
dfcf94431c5cba502621a2310552553bca7e9da4
04d82d95fa3c245906e0f9dfe062b4a9c0dd2048
Fix missing container_swap_usage_bytes metrics in cri_stats_provider
[ { "path": "pkg/kubelet/stats/cri_stats_provider.go", "patch": "@@ -1195,6 +1195,11 @@ func (p *criStatsProvider) addCadvisorContainerCPUAndMemoryStats(\n \tif memory != nil {\n \t\tcs.Memory = memory\n \t}\n+\n+\tswap := cadvisorInfoToSwapStats(caPodStats)\n+\tif swap != nil {\n+\t\tcs.Swap = swap\n+\t}\n }...
2026-02-17T22:10:54
denoland/deno
f72ef98854679bf50d2b479743fb98171df94869
cf25db5ce03f61c3455b85833558278c4199bad1
tests(node/ext): ignore zlib kmaxlength tests (#32137) Deno pre-loads polyfills as ESM, so kMaxLength is a live binding that can't be snapshotted like Node.js CJS require Ignore 3 node_compat tests: - test-zlib-kmaxlength-rangeerror - test-zlib-brotli-kmaxlength-rangeerror - test-zlib-zstd-kmaxlength-rangeerror
[ { "path": "tests/node_compat/config.jsonc", "patch": "@@ -1595,7 +1595,12 @@\n \"parallel/test-zlib-brotli-flush.js\": {},\n \"parallel/test-zlib-brotli-from-brotli.js\": {},\n \"parallel/test-zlib-brotli-from-string.js\": {},\n- // \"parallel/test-zlib-brotli-kmaxlength-rangeerror.js\": {},\...
2026-02-13T14:32:39
golang/go
76dddce29302681bdddafd4cbc27db66802414dd
6ecdd2fc6e58c0cd2b788032a85f7845af10c922
simd/archsimd: remove redundant suffix of ExtendLo operations For methods like ExtendLo2ToInt64x2, the last "x2" is redundant, as it is already mentioned in "Lo2". Remove it, so it is just ExtendLo2ToInt64. Change-Id: I490afd818c40bb7a4ef15c249723895735bd6488 Reviewed-on: https://go-review.googlesource.com/c/go/+/733...
[ { "path": "src/cmd/compile/internal/ssa/_gen/simdAMD64.rules", "patch": "@@ -376,26 +376,26 @@\n (ExpandUint64x2 x mask) => (VPEXPANDQMasked128 x (VPMOVVec64x2ToM <types.TypeMask> mask))\n (ExpandUint64x4 x mask) => (VPEXPANDQMasked256 x (VPMOVVec64x4ToM <types.TypeMask> mask))\n (ExpandUint64x8 x mask) => ...
2025-12-29T16:30:33
swiftlang/swift
d22fafd1641b54b7729a1148f5d32391eda10d54
546f1536698ac253b1c280da99da3752e6cf81d2
[UVT] support -verify-ignore-unrelated swift-frontend -verify -verify-ignore-unrelated does not expect matchers for files in unchecked files, but it still emits diagnostic output like this: ``` /path/to/sdk/file.h:19:29: remark: diagnostic produced elsewhere: did not add safe interop wrapper struct _LIBCPP_TEMPLATE_VI...
[ { "path": "test/Utils/update-verify-tests/diagnostic-produced-elsewhere.swift", "patch": "@@ -0,0 +1,27 @@\n+// RUN: %empty-directory(%t)\n+// RUN: split-file %s %t\n+\n+// RUN: not %target-swift-frontend -typecheck -import-bridging-header %t/test.h -verify -verify-ignore-unrelated %t/test.swift 2> %t/outpu...
2026-03-05T00:51:23
tensorflow/tensorflow
672d23ffd7731fd063590c3b2560b4a1bceb0766
04019fe13e5e2681daec3e5dce6299e8ac53385e
Fix layout propagation in IFRT proxy `Client::CopyArrays` This CL fixes layout propagation for "unpinned_host", if the destination is on "unpinned_host", the array must use default layout. PiperOrigin-RevId: 874615783
[ { "path": "third_party/xla/xla/python/ifrt_proxy/client/BUILD", "patch": "@@ -170,6 +170,7 @@ cc_library(\n \":memory\",\n \":rpc_helper\",\n \"//xla:xla_data_proto_cc\",\n+ \"//xla/pjrt:host_memory_spaces\",\n \"//xla/pjrt:pjrt_device_description\",\n \"//xla/...
2026-02-24T16:01:14