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
e93f439ac4160baf9992f059d2bfb511e23f63c9
69e74b0aacc1de59b618bbb9789a2e7e0cd806b5
runtime/cgo: retry when CreateThread fails with ERROR_ACCESS_DENIED _cgo_beginthread used to retry _beginthread only when it failed with EACCESS, but CL 651995 switched to CreateThread and incorrectly mapped EACCESS to ERROR_NOT_ENOUGH_MEMORY. The correct mapping is ERROR_ACCESS_DENIED. Fixes #72814 Fixes #75381 Cha...
[ { "path": "src/runtime/cgo/gcc_libinit_windows.c", "patch": "@@ -145,7 +145,7 @@ void _cgo_beginthread(unsigned long (__stdcall *func)(void*), void* arg) {\n \n \tfor (tries = 0; tries < 20; tries++) {\n \t\tthandle = CreateThread(NULL, 0, func, arg, 0, NULL);\n-\t\tif (thandle == 0 && GetLastError() == ERR...
2025-09-23T08:46:46
denoland/deno
b1a510ce543429a0589d455c1dceb6c745008594
5e1427c39783785567527044d2f9b2f00f8686ef
fix(node): regression where Node fs APIs required elevated permissions on Windows (#30535) Closes https://github.com/denoland/deno/issues/30534
[ { "path": "ext/node/polyfills/01_require.js", "patch": "@@ -306,8 +306,6 @@ let hasInspectBrk = false;\n let usesLocalNodeModulesDir = false;\n \n function stat(filename) {\n- // TODO: required only on windows\n- // filename = path.toNamespacedPath(filename);\n if (statCache !== null) {\n const resu...
2025-08-27T13:29:44
swiftlang/swift
76807253965b0c4a518b52e5edcd64dd79fb65ec
80e482c281d1570a2a279cd51d138bbef8450b90
[Swiftify] properly support initializers This linearizes the macro expansions by leaking the internal buffer pointer in [Mutable][Raw]Span parameters. This avoids the closure-based nesting, simplifying the function body, but more importantly avoids an error when the function is an intializer: Swift does not allow call...
[ { "path": "lib/ClangImporter/SwiftifyDecl.cpp", "patch": "@@ -52,7 +52,6 @@ using namespace importer;\n #define DLOG_SCOPE(x) do {} while(false);\n #endif\n \n-\n namespace {\n #ifndef NDEBUG\n struct LogIndentTracker {\n@@ -447,6 +446,20 @@ static StringRef getAttributeName(const clang::CountAttributedType...
2026-02-05T03:06:46
mrdoob/three.js
78f2ffb922600f1116538f04a347e285bc3dab5f
d7f2d9ac3af4228f0940d3b2410b1ad6f0dda529
WebGPURenderer: Improve clippingContext cachekey (#29232) * fix clipping cache key and simplify versions * lint fix --------- Co-authored-by: aardgoose <angus.sawyer@email.com>
[ { "path": "src/renderers/common/ClippingContext.js", "patch": "@@ -4,13 +4,11 @@ import { Vector4 } from '../../math/Vector4.js';\n \n const _plane = /*@__PURE__*/ new Plane();\n \n-let _clippingContextVersion = 0;\n-\n class ClippingContext {\n \n \tconstructor() {\n \n-\t\tthis.version = ++ _clippingConte...
2024-08-27T01:24:28
golang/go
fde10c4ce7f3b32acd886992450dd94cafb699a4
5d040df09271ad2f1b0f93abf94a1b2efc8871df
runtime: split gcMarkWorkAvailable into two separate conditions Right now, gcMarkWorkAvailable is used in two scenarios. The first is critical: we use it to determine whether we're approaching mark termination, and it's crucial to reaching a fixed point across the ragged barrier in gcMarkDone. The second is a heuristi...
[ { "path": "src/runtime/mcheckmark.go", "patch": "@@ -68,7 +68,7 @@ func startCheckmarks() {\n \n // endCheckmarks ends the checkmarks phase.\n func endCheckmarks() {\n-\tif gcMarkWorkAvailable(nil) {\n+\tif !gcIsMarkDone() {\n \t\tthrow(\"GC work not flushed\")\n \t}\n \tuseCheckmark = false", "addition...
2025-09-05T17:39:09
tensorflow/tensorflow
76210ebaa17e3bb5c7776a383263e32e65129972
4e413608beef6a5b0c80ccea3ef6b60c6e3d0d2f
[ASAN] Initialize Thunk::PrepareParams with all members in tests. This change ensures that Thunk::PrepareParams is fully initialized in thunk tests, including collective-related parameters, using a designated initializer list. It fixes asan runtime error: _Nonnull binding to null pointer of type 'CollectiveMultimemRe...
[ { "path": "third_party/xla/xla/backends/gpu/runtime/BUILD", "patch": "@@ -280,6 +280,7 @@ xla_test(\n \"gpu\",\n ],\n deps = [\n+ \":collective_multimem_registry\",\n \":custom_call_thunk\",\n \":dynamic_slice_thunk\",\n \":dynamic_slice_thunk_proto_cc\",\n@@ -...
2025-12-23T19:10:05
denoland/deno
5e1427c39783785567527044d2f9b2f00f8686ef
f146dbe12d5e98e946a140a0b5e6d9b1ee9b8013
fix(ext/node): path.normalize compatibility (#30537) Forked from Node.js implementation: - https://github.com/nodejs/node/blob/591ba692bfe30408e6a67397e7d18bfa1b9c3561/lib/path.js#L76 - https://github.com/nodejs/node/blob/591ba692bfe30408e6a67397e7d18bfa1b9c3561/lib/path.js#L1231 This allows `parallel/test-path-norma...
[ { "path": "ext/node/polyfills/path/_util.ts", "patch": "@@ -61,15 +61,14 @@ export function normalizeString(\n if (isPathSeparator(code!)) {\n if (lastSlash === i - 1 || dots === 1) {\n // NOOP\n- } else if (lastSlash !== i - 1 && dots === 2) {\n+ } else if (dots === 2) {\n ...
2025-08-27T08:16:29
swiftlang/swift
5b124bc54de39a0244866964c0392eb0666021f6
f627832f94ac2f16682f68ec289183c19f3db85d
[cxx-interop] Fix confusion between multiply and dereference operators c2952b7 mistakenly treated the binary C++ operator*() ("multiply") as the unary operator*() ("dereference"), preventing ClangImporter from synthesizing the Swift func *(_:_) operator. This patch fixes the issue and adds some tests to exercise the s...
[ { "path": "lib/ClangImporter/ImportDecl.cpp", "patch": "@@ -3780,6 +3780,10 @@ namespace {\n switch (cxxOperatorKind) {\n case clang::OverloadedOperatorKind::OO_None:\n llvm_unreachable(\"should only be handling operators at this point\");\n+ case clang::OverloadedOperatorKind::OO_C...
2026-02-05T03:04:49
mrdoob/three.js
206ab2b7e03caf9e18c7d1c8abd1ced8f7b7cc95
896e436c8c638f52a0892e8fb85920aff6bd72a5
WebGPURenderer: Fix sync `NodeFrame` state if render call tree are used (#29230)
[ { "path": "src/renderers/common/nodes/Nodes.js", "patch": "@@ -448,25 +448,27 @@ class Nodes extends DataMap {\n \n \tupdateBefore( renderObject ) {\n \n-\t\tconst nodeFrame = this.getNodeFrameForRender( renderObject );\n \t\tconst nodeBuilder = renderObject.getNodeBuilderState();\n \n \t\tfor ( const node ...
2024-08-26T09:35:46
golang/go
7e0251bf584c5fe79e95b9c460c7d60a7199d0ae
22ac328856ae4c0dcd3d770f50aac5a2df498989
runtime: don't report non-blocked goroutines as "(durable)" in stacks Only append the " (durable)" suffix to a goroutine's status when the goroutine is waiting. Avoids reporting a goroutine as "runnable (durable)". Change-Id: Id679692345afab6e63362ca3eeff16808367e50f Reviewed-on: https://go-review.googlesource.com/c...
[ { "path": "src/runtime/traceback.go", "patch": "@@ -1249,6 +1249,7 @@ func goroutineheader(gp *g) {\n \t\tprint(\" (scan)\")\n \t}\n \tif bubble := gp.bubble; bubble != nil &&\n+\t\tgpstatus == _Gwaiting &&\n \t\tgp.waitreason.isIdleInSynctest() &&\n \t\t!stringslite.HasSuffix(status, \"(durable)\") {\n \t\...
2025-09-22T22:15:40
denoland/deno
82f6b4714a17b9133f885ce5c3c41871ef2f1370
b164cf5adecf09902dac024edec70861758c3ad9
fix: add another space after warning symbol (#30482) The warning symbol was overlapping the text in my terminal.
[ { "path": "cli/main.rs", "patch": "@@ -131,7 +131,7 @@ async fn run_subcommand(\n }),\n DenoSubcommand::Bundle(bundle_flags) => spawn_subcommand(async {\n log::warn!(\n- \"⚠️ {} is experimental and subject to changes\",\n+ \"⚠️ {} is experimental and subject to changes\",\n ...
2025-08-26T15:19:51
golang/go
2b50ffe172ee638a88e2750481eaeeac7d3bedfa
2d8cb80d7c4af3dbcb507783938ceb0e071f64e3
[dev.simd] cmd/compile: remove stores to unread parameters Currently, we remove stores to local variables that are not read. We don't do that for arguments. But arguments and locals are essentially the same. Arguments are passed by value, and are not expected to be read in the caller's frame. So we can remove the writ...
[ { "path": "src/cmd/compile/internal/ssa/deadstore.go", "patch": "@@ -7,6 +7,7 @@ package ssa\n import (\n \t\"cmd/compile/internal/ir\"\n \t\"cmd/compile/internal/types\"\n+\t\"cmd/internal/obj\"\n )\n \n // dse does dead-store elimination on the Function.\n@@ -213,7 +214,7 @@ func elimDeadAutosGeneric(f *F...
2025-09-22T14:57:29
denoland/deno
b164cf5adecf09902dac024edec70861758c3ad9
b7e89f85c3c7f91253f49295ec44039e29530c05
fix(bundle): don't error when using npm package without bin as entrypoint (#30523) Fixes #30266.
[ { "path": "cli/tools/bundle/mod.rs", "patch": "@@ -1093,9 +1093,12 @@ fn resolve_roots(\n let package_folder = npm_resolver\n .resolve_pkg_folder_from_deno_module_req(v.req(), &referrer)\n .unwrap();\n- let main_module = node_resolver\n- .resolve_binary_export(&pa...
2025-08-26T15:18:05
swiftlang/swift
80e482c281d1570a2a279cd51d138bbef8450b90
6021a238f501cd56379a3165790686ee80e317f2
[Swiftify] modernize test cases (NFC) This updates test cases in test/Macros/SwiftifyImport to use -verify instead of -warnings-as-errors, diff instead of FileCheck, and removes -disableAvailabilityChecking, which silences more errors than just availability. This requires making functions public, since @_alwaysEmitInt...
[ { "path": "test/Macros/SwiftifyImport/CountedBy/Anonymous.swift", "patch": "@@ -1,7 +1,13 @@\n // REQUIRES: swift_swift_parser\n \n-// RUN: %target-swift-frontend %s -swift-version 5 -module-name main -typecheck -plugin-path %swift-plugin-dir -strict-memory-safety -warnings-as-errors -dump-macro-expansions ...
2026-02-05T02:06:36
denoland/deno
b7e89f85c3c7f91253f49295ec44039e29530c05
e463e57b0e4289558282509b39d7c3ac4b8861f7
fix(unstable): support unstable-raw-imports when prewarmed (#30530)
[ { "path": "cli/main.rs", "patch": "@@ -761,7 +761,6 @@ fn wait_for_start(\n roots.compiled_wasm_module_store.clone(),\n ),\n additional_extensions: vec![],\n- enable_raw_imports: false,\n });\n \n let (rx, mut tx): (", "additions": 0, "deletions": 1, "language": ...
2025-08-26T13:45:28
swiftlang/swift
4207eb5c083d28dcd0f085365846d7cac51e8bae
49462296c0bac5a56ddbca1c1383adcc8c7a07b5
Reparenting: fix ASTVerifier 1. We can skip re-verification of reparented conformances on extensions of a protocol. 2. We should continue on and verify the reparented conformance when the decl is a protocol. We'd gain witness checking.
[ { "path": "lib/AST/ASTVerifier.cpp", "patch": "@@ -2898,18 +2898,28 @@ class Verifier : public ASTWalker {\n DeclContext *conformingDC = conformance->getDeclContext();\n \n ProtocolDecl *derived = dyn_cast<ProtocolDecl>(decl);\n- if (!derived) {\n- auto *ext = cast<ExtensionD...
2026-02-05T00:24:22
tensorflow/tensorflow
2f90852c17800308bc406ac1ea7de4cf9e78fd01
d0b7f40548c9fa54b9eea1d71e24c49b67933984
[XLA:GPU] Remove TF_ prefix from RETURN_IF_ERROR and ASSIGN_OR_RETURN macros. PiperOrigin-RevId: 847716343
[ { "path": "third_party/xla/xla/backends/gpu/runtime/BUILD", "patch": "@@ -1521,6 +1521,7 @@ cc_library(\n \"//xla/stream_executor:memory_allocation\",\n \"//xla/stream_executor:stream\",\n \"//xla/tsl/platform:errors\",\n+ \"//xla/tsl/platform:status_macros\",\n \"//xl...
2025-12-22T12:50:10
mrdoob/three.js
676e85dc7cd5971a6565c4152e9e6d8bdd20a2b7
d1893133f278735efecabfa6f4c7467ab80d3451
Nodes: IndexNode - `invocationLocalIndex` (#29202) * add ability to access local_invocation_index * fix * add WebGLBackend workaround * remove log * make name change per sunag suggestion * change name
[ { "path": "src/nodes/Nodes.js", "patch": "@@ -11,7 +11,7 @@ export { default as BypassNode, bypass } from './core/BypassNode.js';\n export { default as CacheNode, cache } from './core/CacheNode.js';\n export { default as ConstNode } from './core/ConstNode.js';\n export { default as ContextNode, context, lab...
2024-08-24T01:31:04
golang/go
63a09d6d3d68acedfc9e5fd2daf6febc35aca1d6
2ca96d218d2cbaad99ba807b3bddd90bbf6a5ba8
[dev.simd] cmd/compile: fix SIMD const rematerialization condition This CL fixes a condition for the previous fix CL 704056. Change-Id: I1f1f8c6f72870403cb3dff14755c43385dc0c933 Reviewed-on: https://go-review.googlesource.com/c/go/+/705499 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gservicea...
[ { "path": "src/cmd/compile/internal/ssa/regalloc.go", "patch": "@@ -2576,22 +2576,25 @@ func (e *edgeState) processDest(loc Location, vid ID, splice **Value, pos src.XP\n \t\t\te.s.f.Fatalf(\"can't find source for %s->%s: %s\\n\", e.p, e.b, v.LongString())\n \t\t}\n \t\tif dstReg {\n-\t\t\t// Handle incompa...
2025-09-19T18:38:25
denoland/deno
e463e57b0e4289558282509b39d7c3ac4b8861f7
3a14447576c673f878938baee3e2256ac1771a84
fix(ext/node): `fs.exists` and `fs.existsSync` compatibility (#30507) Closes #30506 Other changes: - Emit deprecation warning. - Allows [parallel/test-fs-exists.js](https://github.com/nodejs/node/blob/v24.2.0/test/parallel/test-fs-exists.js) to pass. - Allows [test-fs-symlink-dir-junction.js](https://github.com/nodej...
[ { "path": "cli/rt/file_system.rs", "patch": "@@ -207,6 +207,21 @@ impl FileSystem for DenoRtSys {\n RealFs.chown_async(path, uid, gid).await\n }\n \n+ fn exists_sync(&self, path: &CheckedPath) -> bool {\n+ if self.0.is_path_within(path) {\n+ self.0.exists(path)\n+ } else {\n+ RealFs.e...
2025-08-26T13:31:39
swiftlang/swift
49462296c0bac5a56ddbca1c1383adcc8c7a07b5
006a0a494ac7e43900e68efa9286f9b2bf91ea3c
Reparenting: fix crash in TypeAliasRequirementsRequest There isn't always an inheritance clause, despite a protocol inheriting from some other protocol, with reparenting.
[ { "path": "lib/AST/RequirementMachine/RequirementLowering.cpp", "patch": "@@ -1122,8 +1122,17 @@ TypeAliasRequirementsRequest::evaluate(Evaluator &evaluator,\n if (auto trailing = proto->getTrailingWhereClause())\n return { \", \", trailing->getRequirements().back().getSourceRange().End };\n \n+ ...
2026-02-04T22:52:20
tensorflow/tensorflow
d0b7f40548c9fa54b9eea1d71e24c49b67933984
f5b102299e277dfea97cee3cfc630278bcd8daa1
[tosa] : fixing dynamic batch handling in FullyConnected legalization (#106638)
[ { "path": "tensorflow/compiler/mlir/tosa/tests/tfl-to-tosa-pipeline.mlir", "patch": "@@ -3282,6 +3282,21 @@ func.func @test_fullyconnected_dynamic_output(%arg0: tensor<1x2048xf32>, %arg1:\n \n // -----\n \n+// CHECK-LABEL: @test_fullyconnected_dynamic_batch\n+func.func @test_fullyconnected_dynamic_batch(%ar...
2025-12-22T12:10:39
golang/go
e23edf5e55703cc6ddbb86a198a35487b34d863b
177cd8d7633843c3eabf8f887381cadbeed3514b
runtime: don't re-read metrics before check in TestReadMetricsSched The two remaining popular flakes in TestReadMetricsSched are with waiting and not-in-go goroutines. I believe the reason for both of these is pollution due to other goroutines in the test binary, and we can be a little bit more robust to them. In par...
[ { "path": "src/runtime/metrics_test.go", "patch": "@@ -1760,8 +1760,6 @@ func TestReadMetricsSched(t *testing.T) {\n \t\t\tmetrics.Read(s[:])\n \t\t\treturn s[notInGo].Value.Uint64() >= count\n \t\t})\n-\n-\t\tmetrics.Read(s[:])\n \t\tlogMetrics(t, s[:])\n \t\tcheck(t, &s[notInGo], count, count+generalSlack...
2025-09-22T17:36:03
denoland/deno
0d8732f0123bdebbea583241314404e72d1bb7a0
6e77e868967681c2d0f092c0f6047b2684978b61
fix(node_resolver): incorrect resolution of `require("..")` (#30524) Fixes https://github.com/denoland/deno/issues/30505
[ { "path": "libs/node_resolver/resolution.rs", "patch": "@@ -553,10 +553,9 @@ impl<\n // }\n \n let p_str = path.to_str().unwrap();\n- let path = if p_str.ends_with('/') {\n- PathBuf::from(&p_str[p_str.len() - 1..])\n- } else {\n- path\n+ let path = match p_str.strip_suffix('/') {\...
2025-08-26T02:10:36
mrdoob/three.js
c3f1d68cd93bd430e0bbeaddc01cc14f944e9ddf
281f32acf9e91bc8199741c9835b9720792adeff
Nodes: StereoCompositePassNode.js (#29201) * Make anaglyph pass and parallax barrier pass extensions ofStereoCompositePassNode class to reuse shared functionality * remove uniformNode import * fix superfluous argument * add node classes and update backdrop screenshot * cleanup * implement mugen suggesti...
[ { "path": "examples/webgpu_display_stereo.html", "patch": "@@ -40,7 +40,8 @@\n \t\t\tconst position = new THREE.Vector3();\n \n \t\t\tconst params = {\n-\t\t\t\teffect: 'stereo'\n+\t\t\t\teffect: 'stereo',\n+\t\t\t\teyeSep: 0.064,\n \t\t\t};\n \n \t\t\tconst effects = { Stereo: 'stereo', Anaglyph: 'anaglyph...
2024-08-22T18:36:06
tensorflow/tensorflow
f5b102299e277dfea97cee3cfc630278bcd8daa1
23dd865ee573dbe5b112f5e1feab048df75ff227
[Autotuner] Log autotuner config in readable json format. When debugging the autotuner we often want to know the values of the AutotuneConfig. PiperOrigin-RevId: 847683182
[ { "path": "third_party/xla/xla/backends/autotuner/autotuner.cc", "patch": "@@ -499,6 +499,7 @@ absl::StatusOr<std::vector<Autotuner::ConfigResult>> Autotuner::ProfileAll(\n \n std::optional<ScopedShapedBuffer> reference_output;\n if (autotune_config_.check_buffers) {\n+ VLOG(2) << \"Checking buffers\...
2025-12-22T10:41:59
golang/go
177cd8d7633843c3eabf8f887381cadbeed3514b
2353c1578596aae7128f028c75b52c6047f0b057
log/slog: use a pooled json encoder goos: linux goarch: amd64 pkg: log/slog/internal/benchmarks cpu: 12th Gen Intel(R) Core(TM) i7-1260P │ old.txt │ new.txt │ │ sec/op │ sec/op vs base │ Attrs/JS...
[ { "path": "src/log/slog/internal/benchmarks/benchmarks.go", "patch": "@@ -31,12 +31,19 @@ import (\n \n const testMessage = \"Test logging, but use a somewhat realistic message length.\"\n \n+type event struct {\n+\tID string\n+\tIndex int\n+\tFlag bool\n+}\n+\n var (\n \ttestTime = time.Date(2022, ...
2025-09-20T11:33:03
denoland/deno
6e77e868967681c2d0f092c0f6047b2684978b61
09036f52410420467fa7e8da1021bac29650cde4
fix(install): force refresh if cannot find version (#30483) Fixes #30464.
[ { "path": "cli/jsr.rs", "patch": "@@ -5,7 +5,9 @@ use std::sync::Arc;\n use dashmap::DashMap;\n use deno_core::serde_json;\n use deno_graph::packages::JsrPackageInfo;\n+use deno_graph::packages::JsrPackageInfoVersion;\n use deno_graph::packages::JsrPackageVersionInfo;\n+use deno_semver::Version;\n use deno_...
2025-08-25T23:03:21
mrdoob/three.js
e2ace0b9b0e8084f14a6e265e732545b3a6bcf00
1524acf4a83166a16410cc7db810229eba16bb1e
PCDLoader: Fix regex to match header fields at line start (#29196) * Fix PCDLoader.js regex to match header fields at line start This PR improves the robustness of the `PCDLoader` by refining how header information is parsed from PCD files. The update addresses an issue where the regex patterns used to extract head...
[ { "path": "examples/jsm/loaders/PCDLoader.js", "patch": "@@ -127,15 +127,15 @@ class PCDLoader extends Loader {\n \n \t\t\t// parse\n \n-\t\t\tPCDheader.version = /VERSION (.*)/i.exec( PCDheader.str );\n-\t\t\tPCDheader.fields = /FIELDS (.*)/i.exec( PCDheader.str );\n-\t\t\tPCDheader.size = /SIZE (.*)/i.exe...
2024-08-21T12:10:39
golang/go
2353c1578596aae7128f028c75b52c6047f0b057
32dfd69282ac86b0ce49909d36e2a4e5797ad25c
cmd/cgo/internal/test: skip TestMultipleAssign when using UCRT on Windows The Universal C Runtime (UCRT) default behavior is to crash the program when strtol is called with an invalid base (that is, not 0 or 2..36). This an invalid base (that is, not 0 or 2..36). This changes the test to skip when running on Windows a...
[ { "path": "src/cmd/cgo/internal/test/test.go", "patch": "@@ -1096,6 +1096,12 @@ func testErrno(t *testing.T) {\n }\n \n func testMultipleAssign(t *testing.T) {\n+\tif runtime.GOOS == \"windows\" && usesUCRT(t) {\n+\t\t// UCRT's strtol throws an unrecoverable crash when\n+\t\t// using an invalid base (that i...
2025-09-19T10:18:26
swiftlang/swift
ebc88a4875e00ae66e8fd6b3a9e1c2f6f71c0eb0
0546ff3de1a67fcef5a6d4e94a8cd05eccf08194
[CSBindings] Don't propagate defaults up the supertype chain Default bindings are local and shouldn't be moved because that could lead to incorrect diagnostics.
[ { "path": "lib/Sema/CSBindings.cpp", "patch": "@@ -622,12 +622,6 @@ void BindingSet::inferTransitiveSupertypeBindings() {\n ASSERT(inserted);\n }\n \n- llvm::SmallDenseSet<Type> seenDefaults;\n- for (auto *constraint : Defaults) {\n- bool inserted = seenDefaults.insert(constraint->getSecondType()...
2026-01-21T18:30:38
tensorflow/tensorflow
b1d25385411365db38891bd8bb0fb42fdf02c994
7b0d71c54e5dfdcf96c40e17fd6aba9a5ab9aa98
[Autotuner] Initialize random input values for buffer checks. If values are initialized to 0 buffer checker will fail to detect backends with wrong results. PiperOrigin-RevId: 847627821
[ { "path": "third_party/xla/xla/service/gpu/autotuning/autotuner_pass.cc", "patch": "@@ -80,10 +80,12 @@ AutotuneConfig GetAutotuneConfig(const DebugOptions& debug_options,\n return autotune_config;\n }\n \n-ProfileOptions GetProfileOptions(const DebugOptions& debug_options) {\n+ProfileOptions GetProfileOp...
2025-12-22T07:34:56
denoland/deno
09036f52410420467fa7e8da1021bac29650cde4
3948bb6e55301680c0966c0f09dd35c9009ba456
fix(ext/node): handle `null` keypair in tls connect (#30516)
[ { "path": "ext/node/polyfills/_tls_wrap.js", "patch": "@@ -87,8 +87,8 @@ export class TLSSocket extends net.Socket {\n \n const cert = tlsOptions?.secureContext?.cert;\n const key = tlsOptions?.secureContext?.key;\n- const hasTlsKey = key !== undefined &&\n- cert !== undefined;\n+ const h...
2025-08-25T17:47:10
mrdoob/three.js
1524acf4a83166a16410cc7db810229eba16bb1e
4c62a132378d6ea5901c937a2f1ace46a4ffeb26
Nodes: Add anaglyph and parallax barrier pass nodes. (#29184) * Nodes: Add anaglyph and parallax barrier pass nodes.y * Nodes: Fix `dispose()`. * E2E: Update screenshot.
[ { "path": "examples/webgpu_display_stereo.html", "patch": "@@ -1,15 +1,15 @@\n <!DOCTYPE html>\n <html lang=\"en\">\n \t<head>\n-\t\t<title>three.js webgpu - stereo</title>\n+\t\t<title>three.js webgpu - stereo effects</title>\n \t\t<meta charset=\"utf-8\">\n \t\t<meta name=\"viewport\" content=\"width=devi...
2024-08-21T09:26:24
golang/go
32dfd69282ac86b0ce49909d36e2a4e5797ad25c
7f6ff5ec3edfa1ed82014ad53f6cad3dc023f48e
cmd/dist: disable FIPS 140-3 mode when testing maphash with purego hash/maphash can't be built with FIPS 140-3 mode and the purego tag since CL 703095. That change precludes running "GODEBUG=fips140=on go dist test" with, as there is a test variant that tests maphash with the purego tag. Change-Id: Iaedfaf3bb79281a79...
[ { "path": "src/cmd/dist/test.go", "patch": "@@ -705,6 +705,7 @@ func (t *tester) registerTests() {\n \t\t\t\ttimeout: 300 * time.Second,\n \t\t\t\ttags: []string{\"purego\"},\n \t\t\t\tpkg: \"hash/maphash\",\n+\t\t\t\tenv: []string{\"GODEBUG=fips140=off\"}, // FIPS 140-3 mode is incompatible with...
2025-09-22T10:59:20
mrdoob/three.js
d7ba0351543915d87d910c409aa7b08ef1611964
cd8f55ceb8f87110a8ddd02944316d9ce39d9b47
Nodes: Update `DotScreenNode`, `ColorAdjustmentNode`, `BlendModeNode` (#29178) * DotScreenNode: Use `viewportResolution` * ColorAdjustmentNode: Use TSL approach * MathNode: Fix `step(a,b)` first parameter as float, second as vec * BlendModeNode: Move to TSL approach * cleanup
[ { "path": "src/nodes/Nodes.js", "patch": "@@ -115,9 +115,9 @@ export { default as UserDataNode, userData } from './accessors/UserDataNode.js';\n export * from './accessors/VelocityNode.js';\n \n // display\n-export { default as BlendModeNode, burn, dodge, overlay, screen } from './display/BlendModeNode.js';...
2024-08-19T17:27:22
denoland/deno
3948bb6e55301680c0966c0f09dd35c9009ba456
6dd5ccada679d153a38a77cd55f2605a9d6531a2
fix(ext/node): http.server.listen to handle signal option (#30515) Closes #30508
[ { "path": "ext/node/polyfills/http.ts", "patch": "@@ -28,6 +28,7 @@ import { ERR_SERVER_NOT_RUNNING } from \"ext:deno_node/internal/errors.ts\";\n import { EventEmitter } from \"node:events\";\n import { nextTick } from \"ext:deno_node/_next_tick.ts\";\n import {\n+ validateAbortSignal,\n validateBoolean...
2025-08-25T14:55:51
swiftlang/swift
82fa88a8550a7c22c1b09d5341a6e4b74f53408e
f627832f94ac2f16682f68ec289183c19f3db85d
[rbi] Fix logic around tracking of Sendable/non-Sendable field projections from Sendable/non-Sendable values Previously, region-based isolation was not diagnosing cases where a non-Sendable value projected from a Sendable base that was MainActor isolated. For example: ```swift @MainActor struct MainActorBox { var v...
[ { "path": "include/swift/SILOptimizer/Analysis/RegionAnalysis.h", "patch": "@@ -49,6 +49,10 @@ getApplyIsolationCrossing(SILInstruction *inst);\n // the computation.\n class PartitionOpTranslator;\n \n+//===----------------------------------------------------------------------===//\n+// ...
2026-02-04T02:03:13
golang/go
7f6ff5ec3edfa1ed82014ad53f6cad3dc023f48e
9693b94be057b58f35bcc4a81c937495b93d588e
cmd/compile: fix doc word "using" -> "uses" Change-Id: I2bcefc6128dafd4fd05d7ce291b1afb28465a25c GitHub-Last-Rev: bf9006eeb65c94a4e492be29f530f511a3d6ffc1 GitHub-Pull-Request: golang/go#75548 Reviewed-on: https://go-review.googlesource.com/c/go/+/705515 Reviewed-by: Keith Randall <khr@google.com> Auto-Submit: Keith R...
[ { "path": "src/cmd/compile/README.md", "patch": "@@ -57,7 +57,7 @@ terms of these, so the next step after type checking is to convert the syntax\n and types2 representations to ir and types. This process is referred to as\n \"noding.\"\n \n-Noding using a process called Unified IR, which builds a node repre...
2025-09-19T21:59:21
kubernetes/kubernetes
7e68ec0ffca5cfcb0bfde481cecc1adf29074ce5
c0c81a425830cf39352ef79af91bda3624dafd91
test: refine vgs resources clean up (#135250) * test: refine vgs resources clean up Signed-off-by: Penghao <pewang@redhat.com> * fix: refine structure Signed-off-by: Penghao <pewang@redhat.com> * fix: typo and proper data structure usage Signed-off-by: Penghao <pewang@redhat.com> --------- Signed-off-by: Pengha...
[ { "path": "test/e2e/storage/framework/volume_group_snapshot_resource.go", "patch": "@@ -22,8 +22,11 @@ import (\n \n \t\"github.com/onsi/ginkgo/v2\"\n \t\"github.com/onsi/gomega\"\n+\tapierrors \"k8s.io/apimachinery/pkg/api/errors\"\n \tmetav1 \"k8s.io/apimachinery/pkg/apis/meta/v1\"\n \t\"k8s.io/apimachine...
2025-12-18T04:00:09
mrdoob/three.js
01a93110767cae7024bb441eb855d54ada41ae55
00e8861b439792b810639bd5728747b3460a522e
WebGPURenderer: Fix BatchedMesh with indexed geometry (#29174)
[ { "path": "src/renderers/webgpu/WebGPUBackend.js", "patch": "@@ -955,14 +955,14 @@ class WebGPUBackend extends Backend {\n \t\t\tconst drawCount = object._multiDrawCount;\n \t\t\tconst drawInstances = object._multiDrawInstances;\n \n-\t\t\tconst bytesPerElement = hasIndex ? index.bytesPerElement : 1;\n+\t\t...
2024-08-19T14:16:35
denoland/deno
6dd5ccada679d153a38a77cd55f2605a9d6531a2
9450d0798f044f8fd334d8b4c584286e07270a51
chore: fix wpt_epoch CI (#30501) Update tools/deno.lock.json to v5 > ``` > error: Unsupported lockfile version '4'. Try upgrading Deno or recreating the lockfile at 'tools/deno.lock.json'. > ``` https://github.com/denoland/deno/actions/runs/17169066564/job/48715288781#step:9:25
[ { "path": "tools/deno.lock.json", "patch": "@@ -1,29 +1,48 @@\n {\n- \"version\": \"4\",\n+ \"version\": \"5\",\n \"specifiers\": {\n+ \"jsr:@david/code-block-writer@13\": \"13.0.3\",\n \"jsr:@david/dax@0.41.0\": \"0.41.0\",\n \"jsr:@david/dax@0.42\": \"0.42.0\",\n+ \"jsr:@david/dax@0.42.0...
2025-08-25T14:53:33
golang/go
9693b94be057b58f35bcc4a81c937495b93d588e
8616981ce691248dfa585918a108e5f32c9aacc5
runtime: include stderr when objdump fails If objdump panics, we want the panic included in the test log. Change-Id: I6a6a636c13c5ba08acaa1c6c8714541a8e91542b Reviewed-on: https://go-review.googlesource.com/c/go/+/704338 Reviewed-by: Florian Lehner <lehner.florian86@gmail.com> Auto-Submit: Michael Pratt <mpratt@googl...
[ { "path": "src/runtime/unsafepoint_test.go", "patch": "@@ -43,7 +43,7 @@ func TestUnsafePoint(t *testing.T) {\n \tcmd := exec.Command(testenv.GoToolPath(t), \"tool\", \"objdump\", \"-s\", \"setGlobalPointer\", os.Args[0])\n \tout, err := cmd.CombinedOutput()\n \tif err != nil {\n-\t\tt.Fatalf(\"can't objdum...
2025-09-16T19:07:08
swiftlang/swift
838bfc30cdc0102f9a4f9f1543a5cbe697afde47
1e00daa140adf86b3666281375c1e1f6439b8f23
[cxx-interop] Fix printing suppressible conformances for imported types We only added the old attributes but those are not picked up by ASTPrinter. This PR adds inherited entries which is the correct representation of these conformances. rdar://157868143
[ { "path": "lib/ClangImporter/ImportDecl.cpp", "patch": "@@ -33,6 +33,7 @@\n #include \"swift/AST/GenericEnvironment.h\"\n #include \"swift/AST/GenericSignature.h\"\n #include \"swift/AST/Identifier.h\"\n+#include \"swift/AST/KnownProtocols.h\"\n #include \"swift/AST/LifetimeDependence.h\"\n #include \"swift...
2026-02-04T15:31:45
mrdoob/three.js
00e8861b439792b810639bd5728747b3460a522e
e02bd0987b8f9ab6fb46087bf726b30b6e5fc7ef
WebGPURenderer: Fix linear filter textures w/o mipmaps (#29172)
[ { "path": "src/renderers/webgl-fallback/utils/WebGLTextureUtils.js", "patch": "@@ -259,8 +259,10 @@ class WebGLTextureUtils {\n \t\tgl.texParameteri( textureType, gl.TEXTURE_MAG_FILTER, filterToGL[ texture.magFilter ] );\n \n \n+\t\tconst hasMipmaps = texture.mipmaps !== undefined && texture.mipmaps.length ...
2024-08-19T10:46:03
denoland/deno
9450d0798f044f8fd334d8b4c584286e07270a51
55f43d0373d46aa574b2b733bc45ed42812f7182
fix(napi): buffer finalizer is nullable (#30514) Fixes: https://github.com/denoland/deno/issues/30512
[ { "path": "ext/napi/js_native_api.rs", "patch": "@@ -2938,7 +2938,7 @@ fn napi_create_external_arraybuffer<'s>(\n env: &'s mut Env,\n data: *mut c_void,\n byte_length: usize,\n- finalize_cb: napi_finalize,\n+ finalize_cb: Option<napi_finalize>,\n finalize_hint: *mut c_void,\n result: *mut napi_v...
2025-08-25T10:57:01
tensorflow/tensorflow
af8c7d0e2e006be6e69b0034d3d2d9fb1e744179
84ad581652911f91120f53bb07bcaeed812f34a3
Apply llvm-use-new-mlir-op-builder fixes This migrates `builder.create<Op>()` => `Op::create()` PiperOrigin-RevId: 846865415
[ { "path": "tensorflow/compiler/mlir/stablehlo/transforms/utils.cc", "patch": "@@ -27,14 +27,14 @@ namespace odml {\n \n mhlo::ConstantOp GetScalarConstOfType(Type ty, Location loc, int64_t raw_value,\n OpBuilder* builder) {\n- return builder->create<mhlo::ConstantOp>(l...
2025-12-19T22:17:57
golang/go
b8af74436000dcb370b41ec70acc8ab4632adf05
51dc5bfe6c1e8e71065401f12cf000b9941882fd
testing: fix example for unexported identifier Fixes #75540 Change-Id: I925f893d33660f0b08996d53cc9c564017232b39 Reviewed-on: https://go-review.googlesource.com/c/go/+/705456 Reviewed-by: Alan Donovan <adonovan@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Revie...
[ { "path": "src/testing/testing.go", "patch": "@@ -30,9 +30,9 @@\n //\timport \"testing\"\n //\n //\tfunc TestAbs(t *testing.T) {\n-//\t got := Abs(-1)\n+//\t got := abs(-1)\n //\t if got != 1 {\n-//\t t.Errorf(\"Abs(-1) = %d; want 1\", got)\n+//\t t.Errorf(\"abs(-1) = %d; want 1\", go...
2025-09-19T10:27:55
swiftlang/swift
48464a9cbdc92e5c846fd8bfefa15465e47ed343
4542ea9904f484c1fb7afb7f45cc1753abecef36
[Sema] Correctly handle properties in nested macros We need to ensure that we recurse into the auxiliary decls in `enumerateStoredPropertiesAndMissing` to pick up properties in nested macro expansions. Also do the same in `enumerateCurrentPropertiesAndAuxiliaryVars` and `InitializablePropertiesRequest` to ensure the m...
[ { "path": "lib/Sema/CodeSynthesis.cpp", "patch": "@@ -977,20 +977,25 @@ static void diagnoseMissingRequiredInitializer(\n /// at least once.\n static bool enumerateCurrentPropertiesAndAuxiliaryVars(\n NominalTypeDecl *typeDecl, llvm::function_ref<bool(VarDecl *)> callback) {\n- for (auto *member :\n- ...
2026-01-24T22:25:11
denoland/deno
55f43d0373d46aa574b2b733bc45ed42812f7182
6314c3c46d04727a3c4483101813be57dcca2d8e
fix(ext/node): `fs.path`' `makelong` and `resolve` compatibility (#30503) Changes are based on Node.js' implementation https://github.com/nodejs/node/tree/v24.2.0/lib/path.js. It allows this tests to pass: - [parallel/test-path-makelong.js](https://github.com/nodejs/node/blob/v24.2.0/test/parallel/test-path-makelong....
[ { "path": "ext/node/polyfills/path/_posix.ts", "patch": "@@ -16,36 +16,58 @@ import {\n normalizeString,\n } from \"ext:deno_node/path/_util.ts\";\n import { primordials } from \"ext:core/mod.js\";\n-\n-const { StringPrototypeSlice, StringPrototypeCharCodeAt, TypeError } =\n- primordials;\n+import { vali...
2025-08-25T08:59:52
mrdoob/three.js
7d48ada917d7769f8e2d5682d0b912b18b36495a
e1a5a6b5b1e6bc02a1471b5b265358286b36e11b
WebGL: Deprecate `isWebGLAvailable()` and `getWebGLErrorMessage()`. (#29153)
[ { "path": "examples/jsm/capabilities/WebGL.js", "patch": "@@ -1,20 +1,5 @@\n class WebGL {\n \n-\tstatic isWebGLAvailable() {\n-\n-\t\ttry {\n-\n-\t\t\tconst canvas = document.createElement( 'canvas' );\n-\t\t\treturn !! ( window.WebGLRenderingContext && ( canvas.getContext( 'webgl' ) || canvas.getContext( ...
2024-08-17T08:26:25
golang/go
51dc5bfe6c1e8e71065401f12cf000b9941882fd
ee7bf06cb306ea9234fbc1501f3e0f3903ada427
Revert "cmd/go: disable cgo by default if CC unset and DefaultCC doesn't exist" This reverts commit c2d85eb999fcd428a1cd71ed93805cbde0c16eaa. Reason for revert: change was incorrect. ignores setting of CGO_ENABLED in some cases Change-Id: I8e6e68dd600be5306a247a3314f4b57175f1aa56 Reviewed-on: https://go-review.goog...
[ { "path": "src/cmd/go/internal/cfg/cfg.go", "patch": "@@ -145,8 +145,7 @@ func defaultContext() build.Context {\n \tif buildcfg.DefaultCGO_ENABLED == \"1\" {\n \t\tdefaultCgoEnabled = true\n \t} else if buildcfg.DefaultCGO_ENABLED == \"0\" {\n-\t}\n-\tif runtime.GOARCH == ctxt.GOARCH && runtime.GOOS == ctxt...
2025-09-19T16:25:20
denoland/deno
6314c3c46d04727a3c4483101813be57dcca2d8e
b5808041e0d8a1ba8712f0ad59acfd8616e1ae3e
fix(ext/node): `crypto.hkdfSync` returns wrong result for non-Uint8Array TypedArray inputs (#30463) The original HKDF implementation incorrectly handled TypedArrays by converting them through the toBuf() function, which only handles strings and Buffers. This caused TypedArrays to be processed incorrectly, losing their...
[ { "path": "ext/node/polyfills/internal/crypto/hkdf.ts", "patch": "@@ -39,15 +39,29 @@ import {\n } from \"ext:deno_node/internal/util/types.ts\";\n import { isKeyObject } from \"ext:deno_node/internal/crypto/_keys.ts\";\n import { getHashes } from \"ext:deno_node/internal/crypto/hash.ts\";\n+import { Buffer...
2025-08-23T09:56:19
swiftlang/swift
4542ea9904f484c1fb7afb7f45cc1753abecef36
63aeaba436c8aeda6ba31490f8fd0b5e67dcee26
[Remangler] Fix remangling of peer macro expansions There may be 3 or 4 children here dependending on whether the peer expansion is being used as the context for another macro expansion, make sure the discriminator in these cases always comes after the operator. No test case as it's covered by the next commit.
[ { "path": "lib/Demangling/Remangler.cpp", "patch": "@@ -3253,18 +3253,20 @@ ManglingError Remangler::mangleFreestandingMacroExpansion(\n \n ManglingError Remangler::mangleAttachedMacro(Node *node, unsigned depth,\n StringRef mangledChar) {\n- RETURN_IF_ERROR(man...
2026-01-24T22:25:11
mrdoob/three.js
5db8c8320afde4e27238112f591284c0c14ea3fd
4046207972b46a82219f085ba4bd75752f5e0d1d
WebGPURenderer: fix occlusion when rendering to a texture with WebGL fallback (#29154) Co-authored-by: aardgoose <angus.sawyer@email.com>
[ { "path": "src/renderers/webgl-fallback/WebGLBackend.js", "patch": "@@ -230,6 +230,20 @@ class WebGLBackend extends Backend {\n \t\tconst renderContextData = this.get( renderContext );\n \t\tconst previousContext = renderContextData.previousContext;\n \n+\t\tconst occlusionQueryCount = renderContext.occlusi...
2024-08-16T16:43:31
kubernetes/kubernetes
3e34de29c49cf357666432218507d3fea2b132a9
5bcb7599736327cd8c6d23e398002354a6e40f68
fixed the loophole that allows user to get around resource quota set by system admin
[ { "path": "cmd/kube-controller-manager/app/core.go", "patch": "@@ -597,7 +597,10 @@ func newResourceQuotaController(ctx context.Context, controllerContext Controlle\n \n \tdiscoveryFunc := resourceQuotaControllerDiscoveryClient.ServerPreferredNamespacedResources\n \tlisterFuncForResource := generic.ListerFu...
2025-11-24T19:38:14
golang/go
ee7bf06cb306ea9234fbc1501f3e0f3903ada427
f9e61a9a32c8cbfd810ac9fec135b5c0911b8d69
time: improve ParseDuration performance for invalid input Add "parseDurationError" to reduce memory allocation in the error path of "ParseDuration" and delay the generation of error messages. This improves the performance when dealing with invalid input. The format of the error message remains unchanged. Benchmarks:...
[ { "path": "src/time/format.go", "patch": "@@ -1602,6 +1602,16 @@ func leadingFraction(s string) (x uint64, scale float64, rem string) {\n \treturn x, scale, s[i:]\n }\n \n+// parseDurationError describes a problem parsing a duration string.\n+type parseDurationError struct {\n+\tmessage string\n+\tvalue s...
2025-09-19T10:34:09
tensorflow/tensorflow
84ad581652911f91120f53bb07bcaeed812f34a3
b35e4ed192d1e9cefcf6be5e5657e4256d778787
Apply llvm-use-new-mlir-op-builder fixes This migrates `builder.create<Op>()` => `Op::create()` PiperOrigin-RevId: 846862419
[ { "path": "tensorflow/compiler/tf2xla/kernels/xla_call_module_op.cc", "patch": "@@ -519,7 +519,7 @@ class XlaCallModuleOp : public XlaOpKernel {\n } else if (options.add_token_input_output) {\n // Add a dummy token if the inner computation takes a token but the\n // custom call d...
2025-12-19T22:10:03
denoland/deno
b5808041e0d8a1ba8712f0ad59acfd8616e1ae3e
87bda4a106a366e33551df84df0e5e291076dd1d
feat: allow disable hostname verification in TLS (#30409) Fixes https://github.com/denoland/deno/issues/28903 Closes https://github.com/denoland/deno/issues/26190 - Adds a new option `unsafelyDisableHostnameVerification` to `Deno.connectTls` and `Deno.startTls` to ignore DNS name mismatch errors from rustls server ve...
[ { "path": "cli/main.rs", "patch": "@@ -915,11 +915,14 @@ async fn initialize_tunnel(\n let root_cert_store = cert_store_provider.get_or_try_init()?.clone();\n \n let tls_config = deno_runtime::deno_tls::create_client_config(\n- Some(root_cert_store),\n- vec![],\n- None,\n- deno_runtime::deno...
2025-08-23T05:07:57
mrdoob/three.js
e652a07d79350c34e73db3890faace547d02e9d7
769a82d469f4314efeb47a540c835e53f9fc6c8f
WebGPUBackend: BatchedMesh in WebGPU throw Error: reading "bytesPerElement" of null (#29140) Co-authored-by: wangziqian <wangziqian@fabu.ai>
[ { "path": "src/renderers/webgpu/WebGPUBackend.js", "patch": "@@ -955,7 +955,7 @@ class WebGPUBackend extends Backend {\n \t\t\tconst drawCount = object._multiDrawCount;\n \t\t\tconst drawInstances = object._multiDrawInstances;\n \n-\t\t\tconst bytesPerElement = index.bytesPerElement || 1;\n+\t\t\tconst byte...
2024-08-16T02:15:24
swiftlang/swift
657fa172bc3fdcffad97dade46ab1416ebb7e830
0fb21c9156bdec9ce1c4387c2baeb1faeb1bef1f
Fix ASTPrinting of borrow/mutate protocol requirements
[ { "path": "lib/AST/ASTPrinter.cpp", "patch": "@@ -2590,8 +2590,11 @@ void PrintAST::printAccessors(const AbstractStorageDecl *ASD) {\n Printer << \" {\";\n if (mutatingGetter) printWithSpace(\"mutating\");\n \n- // TODO: Print borrow/yielding borrow here?\n- printWithSpace(\"get\");\n+ if (...
2026-02-04T08:35:01
golang/go
3cf1aaf8b9c846c44ec8db679495dd5816d1ec30
0ab038af6290c7fb52d4c26949d735692781b3d1
runtime: use futexes with 64-bit time on Linux Linux introduced new syscalls to fix the year 2038 issue. To still be able to use the old ones, the Kconfig option COMPAT_32BIT_TIME would be necessary. Use the new syscall with 64-bit values for futex by default. Define _ENOSYS for detecting if it's not available. Add a...
[ { "path": "src/runtime/defs2_linux.go", "patch": "@@ -48,6 +48,7 @@ const (\n \tEINTR = C.EINTR\n \tEAGAIN = C.EAGAIN\n \tENOMEM = C.ENOMEM\n+\tENOSYS = C.ENOSYS\n \n \tPROT_NONE = C.PROT_NONE\n \tPROT_READ = C.PROT_READ", "additions": 1, "deletions": 0, "language": "Go" }, { "path": ...
2025-09-18T15:43:42
mrdoob/three.js
769a82d469f4314efeb47a540c835e53f9fc6c8f
17d60f6de00b0f9fb3d489648cb0a8dbe22e9cdf
WebGPURenderer: WebGL fallback - fix scissor with MSAA (#29148) * scissor msaa resolve and invalidation * update screenshot * exclude screenshot from tests --------- Co-authored-by: aardgoose <angus.sawyer@email.com>
[ { "path": "examples/webgpu_textures_anisotropy.html", "patch": "@@ -228,7 +228,7 @@\n \t\t\t\trenderer.setScissor( SCREEN_WIDTH / 2, 0, SCREEN_WIDTH / 2 - 2, SCREEN_HEIGHT );\n \t\t\t\trenderer.render( scene2, camera );\n \n-\t\t\t\t// renderer.setScissorTest( false );\n+\t\t\t\trenderer.setScissorTest( fal...
2024-08-16T02:13:40
denoland/deno
87bda4a106a366e33551df84df0e5e291076dd1d
eab54fde9d7e9c5c1ddae7e9b6529664d755f7aa
fix: pass npm process state when spawning script in npm package via Node APIs (#30490)
[ { "path": "ext/node/lib.rs", "patch": "@@ -448,6 +448,7 @@ deno_core::extension!(deno_node,\n ops::util::op_node_guess_handle_type,\n ops::util::op_node_view_has_buffer,\n ops::util::op_node_call_is_from_dependency<TInNpmPackageChecker, TNpmPackageFolderResolver, TSys>,\n+ ops::util::op_node_...
2025-08-22T23:49:35
golang/go
a58afe44fa3be498e213bafa77455ffdfe5e23e2
3203a5da290753e5c7aceb12f41f06b272356bd0
net: fix testHookCanceledDial race Loading and calling testHookCanceledDial in the function passed to context.AfterFunc is racey, because the function runs in a separate goroutine, and is not synchronized with the test code that restores the original testHookCanceledDial value. We could add a channel and wait for the...
[ { "path": "src/net/fd_unix.go", "patch": "@@ -82,6 +82,9 @@ func (fd *netFD) connect(ctx context.Context, la, ra syscall.Sockaddr) (rsa sysc\n \t\t\tdefer fd.pfd.SetWriteDeadline(noDeadline)\n \t\t}\n \n+\t\t// Load the hook function synchronously to prevent a race\n+\t\t// with test code that restores the ...
2025-09-16T20:25:53
mrdoob/three.js
17d60f6de00b0f9fb3d489648cb0a8dbe22e9cdf
df91505048eca9a3078943d322a6925a862f73a3
MaterialX: Fix `mx_hsvtorgb` and `brick_procedural` example (#29150) * revision mx_hsvtorgb * add optional return for function with layout * added brick procedural * cleanup
[ { "path": "examples/webgpu_loader_materialx.html", "patch": "@@ -42,7 +42,7 @@\n \n \t\t\tconst samples = [\n \t\t\t\t'standard_surface_brass_tiled.mtlx',\n-\t\t\t\t//'standard_surface_brick_procedural.mtlx',\n+\t\t\t\t'standard_surface_brick_procedural.mtlx',\n \t\t\t\t'standard_surface_carpaint.mtlx',\n \...
2024-08-16T02:10:40
tensorflow/tensorflow
5e685fb6e1e645a3af69c1b462d2329abdac7357
d11a803d83c3040078ebcb854d99d9f93377a39d
Apply llvm-use-new-mlir-op-builder fixes This migrates `builder.create<Op>()` => `Op::create()` PiperOrigin-RevId: 846854812
[ { "path": "tensorflow/compiler/mlir/lite/debug/debug_test.cc", "patch": "@@ -103,20 +103,21 @@ class InitPassManagerTest : public testing::Test {\n context_.loadAllAvailableDialects();\n \n mlir::OpBuilder builder(&context_);\n- module_ = builder.create<mlir::ModuleOp>(builder.getUnknownLoc());\n...
2025-12-19T21:53:16
denoland/deno
eab54fde9d7e9c5c1ddae7e9b6529664d755f7aa
7ff1da023c67940c27241ec6028d35ae780a1bfe
fix(init): eliminate flickering progress bar (#30496)
[ { "path": "cli/factory.rs", "patch": "@@ -1042,6 +1042,7 @@ impl CliFactory {\n self.maybe_lockfile().await?.cloned(),\n self.npm_installer_if_managed().await?.cloned(),\n npm_resolver.clone(),\n+ self.text_only_progress_bar().clone(),\n self.sys(),\n self.create_cli_main_...
2025-08-22T20:16:41
golang/go
3203a5da290753e5c7aceb12f41f06b272356bd0
8ca209ec3962874ad1c15c22c86293edf428c284
net/http: avoid connCount underflow race Remove a race condition in counting the number of connections per host, which can cause a connCount underflow and a panic. The race occurs when: - A RoundTrip call attempts to use a HTTP/2 roundtripper (pconn.alt != nil) and receives an isNoCachedConn error. The call re...
[ { "path": "src/net/http/transport.go", "patch": "@@ -1382,7 +1382,10 @@ func (w *wantConn) cancel(t *Transport) {\n \tw.done = true\n \tw.mu.Unlock()\n \n-\tif pc != nil {\n+\t// HTTP/2 connections (pc.alt != nil) aren't removed from the idle pool on use,\n+\t// and should not be added back here. If the pco...
2025-09-15T22:18:57
swiftlang/swift
259f5403b8c4b04bfe408cdd0ed2b6b7ec94bc23
437589d1b6c9a4ddd65cc222fcbe72200f69c15d
DefiniteInitialization: handle inout-self uses when analyzing closures Fixes a false "used before being initialized" error when using self-mutating functions inside conditional operators (`&&`, `||`) in initializers. This is a follow-up on https://github.com/swiftlang/swift/pull/35276. rdar://168784050
[ { "path": "lib/SILOptimizer/Mandatory/DIMemoryUseCollector.cpp", "patch": "@@ -1239,6 +1239,7 @@ bool ElementUseCollector::addClosureElementUses(PartialApplyInst *pai,\n case DIUseKind::Load:\n case DIUseKind::Escape:\n case DIUseKind::InOutArgument:\n+ case DIUseKind::InOutSelfArgume...
2026-02-04T14:04:37
mrdoob/three.js
8be7c0f3f45b231ceb85c2b1d2380de871175c20
f571082bcb7e76080b3e2a50e2b5aca37b463c90
NodeMaterial: Does not crash if there is no `colorNode` (#29141)
[ { "path": "src/nodes/accessors/MaterialNode.js", "patch": "@@ -2,7 +2,7 @@ import Node, { addNodeClass } from '../core/Node.js';\n import { reference } from './ReferenceNode.js';\n import { materialReference } from './MaterialReferenceNode.js';\n import { normalView } from './NormalNode.js';\n-import { node...
2024-08-15T03:36:23
tensorflow/tensorflow
e07a58b641076d34591ed29a5b918d230348c461
5a8f8d649101fc9d48b91d6a88ba5fc611be4d5e
Fix configure.py sysconfig fallback snippet configure.get_python_path() falls back to a `sysconfig.get_path("purelib")` python -c snippet when `site.getsitepackages()` fails, but the fallback snippet was missing a closing parenthesis, causing a SyntaxError and breaking `./configure` on environments where the fallback ...
[ { "path": "configure.py", "patch": "@@ -160,7 +160,7 @@ def get_python_path(environ_cp, python_bin_path):\n run_shell([\n python_bin_path,\n '-c',\n- 'import sysconfig;print(sysconfig.get_path(\"purelib\")',\n+ 'import sysconfig; print(sysconfig.get_path...
2025-12-19T07:14:04
golang/go
8ca209ec3962874ad1c15c22c86293edf428c284
3032894e045fd3628198061a44c56d4a1fb73d93
context: don't return a non-nil from Err before Done is closed The Context.Err documentation states that it returns nil if the context's done channel is not closed. Fix a race condition introduced by CL 653795 where Err could return a non-nil error slightly before the Done channel is closed. No impact on Err performa...
[ { "path": "src/context/context.go", "patch": "@@ -463,6 +463,8 @@ func (c *cancelCtx) Done() <-chan struct{} {\n func (c *cancelCtx) Err() error {\n \t// An atomic load is ~5x faster than a mutex, which can matter in tight loops.\n \tif err := c.err.Load(); err != nil {\n+\t\t// Ensure the done channel has ...
2025-09-18T18:15:47
mrdoob/three.js
bd2051d642bc6347b8ac21c08d800baaa41941f4
a92e8bc3efd90b812c916755f41482668ffda7d8
WebGPURenderer: Fix duplicate shader programs in the WebGLBackend (#29135) Co-authored-by: aardgoose <angus.sawyer@email.com>
[ { "path": "src/renderers/webgl-fallback/WebGLBackend.js", "patch": "@@ -747,9 +747,9 @@ class WebGLBackend extends Backend {\n \n \t}\n \n-\tgetRenderCacheKey( renderObject ) {\n+\tgetRenderCacheKey( /*renderObject*/ ) {\n \n-\t\treturn renderObject.id;\n+\t\treturn '';\n \n \t}\n ", "additions": 2, ...
2024-08-14T13:58:52
swiftlang/swift
e5d6339cbbf27d70d7484ddfea049499f886350b
389be8d92797fc4b4bedef76d85eac04bfc3cec3
[update-checkout] fix error when running --skip-history with commit hash
[ { "path": "utils/update_checkout/tests/scheme_mock.py", "patch": "@@ -219,7 +219,8 @@ def tearDown(self):\n teardown_mock_remote(self.workspace)\n \n def call(self, *args, **kwargs):\n- kwargs[\"cwd\"] = self.source_root\n+ if \"cwd\" not in kwargs:\n+ kwargs[\"cwd\"] = ...
2026-02-04T13:16:58
tensorflow/tensorflow
8bb1b4215c096c0800f99b19567856948b0ab332
d68f58209eb731c3e298c2d487a3f3df5cd9ce6b
PR #35354: [ROCM] bug-fixing SortRewriter and fixing self_adjoint_test on ROCM Imported from GitHub PR https://github.com/openxla/xla/pull/35354 📝 Summary of Changes - This reenables SortRewriter which was erroneously disabled on ROCM (wrong platform). - SortRewriter is called after EighExpander to make sure sort op...
[ { "path": "third_party/xla/xla/service/gpu/transforms/BUILD", "patch": "@@ -2629,7 +2629,6 @@ xla_test(\n \"gpu\",\n ],\n tags = [\n- \"cuda-only\",\n \"test_migrated_to_hlo_runner_pjrt\",\n ],\n deps = [", "additions": 0, "deletions": 1, "language": "Unkno...
2025-12-19T13:22:20
golang/go
d9751166a6872e05afee5087cee2f360344bd2f9
4eb5c6e07b56b75033d98941c8fadd3304ee4965
[dev.simd] cmd/compile: handle rematerialized op for incompatible reg constraint This CL fixes an issue raised by contributor dominikh@. Change-Id: I941b330a6ba6f6c120c69951ddd24933f2f0b3ec Reviewed-on: https://go-review.googlesource.com/c/go/+/704056 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.i...
[ { "path": "src/cmd/compile/internal/ssa/regalloc.go", "patch": "@@ -2576,7 +2576,26 @@ func (e *edgeState) processDest(loc Location, vid ID, splice **Value, pos src.XP\n \t\t\te.s.f.Fatalf(\"can't find source for %s->%s: %s\\n\", e.p, e.b, v.LongString())\n \t\t}\n \t\tif dstReg {\n-\t\t\tx = v.copyInto(e.p...
2025-09-16T03:27:41
mrdoob/three.js
410f73742f0043540857a60d3827e4635875ec90
90c34c0ebe693ed524079ad97c56340d7c40483b
Examples: WebGPU GPGPU Birds (#29081) * init * fix wgsl syntax * Working image * Fixed color and vertex shaders, need to make minor adjustments, and add more instructive comments * add lighting * try to fix compute * testing * add labels to uniforms and storage buffers * add back missing veloci...
[ { "path": "examples/files.json", "patch": "@@ -311,6 +311,7 @@\n \t\t\"webgpu_clearcoat\",\n \t\t\"webgpu_clipping\",\n \t\t\"webgpu_compute_audio\",\n+\t\t\"webgpu_compute_birds\",\n \t\t\"webgpu_compute_geometry\",\n \t\t\"webgpu_compute_particles\",\n \t\t\"webgpu_compute_particles_rain\",", "additio...
2024-08-13T15:04:22
golang/go
443b7aeddb82d90345b8e7c8a4ef7c145dac7ce4
bdd30e25caa0b69e335ba1f1f48566924850fa4b
[dev.simd] cmd/compile, simd/_gen: make rewrite rules consistent on CPU Features The previous CL left a bug in the xed parser so that the generator can generate rules rewriting an AVX instruction to AVX512 instruction. This CL fixes that. Change-Id: I0df7e7dc6c936ce7add24a757ce7f44a15917fef Reviewed-on: https://go-r...
[ { "path": "src/cmd/compile/internal/amd64/simdssa.go", "patch": "@@ -1397,110 +1397,50 @@ func ssaGenSIMDValue(s *ssagen.State, v *ssa.Value) bool {\n \t\tssa.OpAMD64VSQRTPDMasked512load:\n \t\tp = simdVkvload(s, v)\n \n-\tcase ssa.OpAMD64VADDPS128load,\n-\t\tssa.OpAMD64VADDPS256load,\n-\t\tssa.OpAMD64VADDP...
2025-09-12T18:45:39
mrdoob/three.js
f7c92c844db68a1667d9aada812768d8a35f5e08
97b3164a43e74507a5c3e3b4fc645d9388866821
Fix timeStep logic in CreateMaterialColorAnimation (#29111) * Fix timeStep logic in CreateMaterialColorAnimation * Fix edge-case with only one color
[ { "path": "examples/jsm/animation/AnimationClipCreator.js", "patch": "@@ -92,7 +92,7 @@ class AnimationClipCreator {\n \tstatic CreateMaterialColorAnimation( duration, colors ) {\n \n \t\tconst times = [], values = [],\n-\t\t\ttimeStep = duration / colors.length;\n+\t\t\ttimeStep = ( colors.length > 1 ) ? d...
2024-08-13T11:48:44
tensorflow/tensorflow
bf95b538bfbf1254f652e98407235fddf9f41b01
5ffce0d7c979638e68efaec00d22cc4c1519fd59
Make filecheck prefixes a parameter. `CHECK-PTX` and `CHECK-GCN` have been considered valid prefixes only if the build is configured as a ROCM or a CUDA build. This change makes this a parameter to the RunFilecheck functions and allows individual tests to decide which prefixes they wanna use. PiperOrigin-RevId: 84663...
[ { "path": "third_party/xla/xla/hlo/testlib/BUILD", "patch": "@@ -1,17 +1,9 @@\n # Description:\n # Base testing infrastructure for XLA.\n \n-load(\n- \"@local_config_rocm//rocm:build_defs.bzl\",\n- \"if_rocm_is_configured\",\n-)\n load(\"//xla/tsl:tsl.bzl\", \"internal_visibility\")\n load(\"//xla/t...
2025-12-19T10:11:06
denoland/deno
24cb6c71a51aab240144027e290e170c07f3c551
3af338eed2d6f5d711dd861eec38779c616b8083
fix: do not have duplicate progress bars for post install scripts (#30489)
[ { "path": "cli/factory.rs", "patch": "@@ -562,10 +562,12 @@ impl CliFactory {\n self.text_only_progress_bar().clone(),\n )),\n match resolver_factory.npm_resolver()?.as_managed() {\n- Some(managed_npm_resolver) => Arc::new(\n- DenoTaskLifeCycleScriptsExecutor::n...
2025-08-22T18:35:47
golang/go
78ef487a6f936a39e9d4ebf66ac421bb1244a7a9
77aac7bb75edc222dd7b350e8b76c20c79da5f43
cmd/compile: fix the issue of shift amount exceeding the valid range Fixes #75479 Change-Id: I362d3e49090e94f91a840dd5a475978b59222a00 Reviewed-on: https://go-review.googlesource.com/c/go/+/704135 Reviewed-by: Mark Freeman <markfreeman@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.g...
[ { "path": "src/cmd/compile/internal/ssa/_gen/LOONG64.rules", "patch": "@@ -717,7 +717,8 @@\n (SRLVconst [rc] (MOVBUreg x)) && rc >= 8 => (MOVVconst [0])\n \n // (x + x) << c -> x << c+1\n-((SLLV|SLL)const [c] (ADDV x x)) => ((SLLV|SLL)const [c+1] x)\n+((SLLV|SLL)const <t> [c] (ADDV x x)) && c < t.Size() * 8...
2025-09-16T07:27:42
swiftlang/swift
9f0a9d77c0824545ce229071d0e38629c0bb2615
1b918ded02079db525811c71d29c02f56c8ffa2c
DeinitDevirtualizer: don't devirtualize `destroy_value [dead_end]` It doesn't make sense to de-virtualize `destroy_value [dead_end]` because such operations are no-ops anyway. This is especially important for Embedded Swift, because introducing calls to generic deinit functions after the mandatory pipeline can result ...
[ { "path": "SwiftCompilerSources/Sources/Optimizer/Utilities/Devirtualization.swift", "patch": "@@ -17,6 +17,12 @@ import SIL\n /// This may be a no-op if the destroy doesn't call any deinitializers.\n /// Returns true if all deinitializers could be devirtualized.\n func devirtualizeDeinits(of destroy: Destr...
2026-02-04T08:09:56
mrdoob/three.js
5762f7009acc23eaebfb96c6c418679f7032d3af
f7a09bb50526d6bb2c7a57af5d0df98f3730043f
Fix incorrect file name in documentation paragraph (#29118) Corrected the file name mentioned in the documentation paragraph. The previous file name was incorrect, which could cause confusion for users. Changes made: - Fixed file name HTML in line no 74 of the documentation as main.js.
[ { "path": "docs/manual/en/introduction/Creating-a-scene.html", "patch": "@@ -71,7 +71,7 @@ <h2>Creating the scene</h2>\n \n \t\t<h2>Rendering the scene</h2>\n \n-\t\t<p>If you copied the code from above into the HTML file we created earlier, you wouldn't be able to see anything. This is because we're not ac...
2024-08-12T07:46:18
kubernetes/kubernetes
914ddf44680b8bc8ab892bc4186a4be8609c438b
615ac0d2996f36fe4df7410e1168a8577e7045ba
kubelet: improve CRI stats for resource metrics and testing properly support the resource metrics endpoint when `PodAndContainerStatsFromCRI` is enabled and fix the related e2e tests. Stats Provider: - add container-level CPU and memory stats to `ListPodCPUAndMemoryStats` so the resource metrics endpoint has complete...
[ { "path": "pkg/kubelet/stats/cri_stats_provider.go", "patch": "@@ -398,8 +398,12 @@ func (p *criStatsProvider) ListPodCPUAndMemoryStats(ctx context.Context) ([]stat\n \t\t\t\t\tcontinue\n \t\t\t\t}\n \t\t\t\tps := buildPodStats(podSandbox)\n+\t\t\t\t// Add container-level CPU and memory stats from CRI\n+\t\...
2025-12-04T03:39:38
denoland/deno
51f2bf6e9b94e4d0b4b7584cfb18156575ac28c3
8f427532d6f8a41d3c61c7038f69cf499a396921
chore(test): preserve node test fixtures line endings (#30488)
[ { "path": "tests/node_compat/config.toml", "patch": "@@ -451,8 +451,11 @@\n \"parallel/test-fs-read-stream-encoding.js\" = {}\n \"parallel/test-fs-read-stream-fd-leak.js\" = {}\n \"parallel/test-fs-read-stream-fd.js\" = {}\n+\"parallel/test-fs-read-stream-inherit.js\" = {}\n \"parallel/test-fs-read-stream-p...
2025-08-22T14:38:06
tensorflow/tensorflow
5ffce0d7c979638e68efaec00d22cc4c1519fd59
b9853f94c32cd1a83c2ce7416ba50abdc2aeba96
[XLA:GPU] Fix bugs when sorting two elements with a fused iota. The first bug was that we did not pass the right HloInstruction to EmitIota(). The second bug happens if the comparison determines that the two elements don't have to be swapped. Then we would not write the computed iota into the output buffer, as we only...
[ { "path": "third_party/xla/xla/backends/gpu/codegen/llvm/sort_util.cc", "patch": "@@ -73,7 +73,7 @@ absl::Status EmitCompareLoopBody(\n std::function<void(int64_t operand, llvm::Value* index, llvm::Value* value)>\n write_element,\n const EmitCallToNestedComputationCallback& emit_compare_call...
2025-12-19T10:10:49
mrdoob/three.js
f7a09bb50526d6bb2c7a57af5d0df98f3730043f
c2373ef9feea4b9cf0a815fcf9cdf0744ba4ce25
Nodes: Add `SSAAPassNode`. (#29106) * Nodes: Add `SSAAPassNode`. * some progress * more progress * SSAAPassNode: Minor fixes. * custom mrt setup * add depth * ignore aa for depth for now --------- Co-authored-by: sunag <sunagbrasil@gmail.com>
[ { "path": "examples/files.json", "patch": "@@ -388,6 +388,7 @@\n \t\t\"webgpu_postprocessing_masking\",\n \t\t\"webgpu_postprocessing_motion_blur\",\n \t\t\"webgpu_postprocessing_sobel\",\n+\t\t\"webgpu_postprocessing_ssaa\",\n \t\t\"webgpu_postprocessing_transition\",\n \t\t\"webgpu_postprocessing\",\n \t\...
2024-08-12T07:43:12
golang/go
465b85eb760bfdb114f6b6ebccf374aba3977929
909704b85e64b156f81e78bcfd1fbd9b032c089a
runtime: fix CheckScavengedBitsCleared with randomized heap base We cannot easily determine the base address of the arena we added the random padding pages to, which can cause confusing TestScavengedBitsCleared failures when the arena we padded does not have the lowest address of all of the arenas. Instead of attempt...
[ { "path": "src/runtime/export_test.go", "patch": "@@ -1122,8 +1122,6 @@ func CheckScavengedBitsCleared(mismatches []BitsMismatch) (n int, ok bool) {\n \t\t// Lock so that we can safely access the bitmap.\n \t\tlock(&mheap_.lock)\n \n-\t\theapBase := mheap_.pages.inUse.ranges[0].base.addr()\n-\t\tsecondArena...
2025-09-17T21:04:56
swiftlang/swift
7ea1756fa4013ed1b396fcff4adfb15aae3860f8
52a33beec0265a89fae6964649c55f7ee67c25f6
Optimizer: don't remove unused `destructure_struct` of a non-copyable value Because `destructure_struct` acts as lifetime-ending use. Removing this instruction results in an ownership error. This can happen if a non-copyable struct only has trivial fields. Fixes a verifier crash https://github.com/swiftlang/swift/iss...
[ { "path": "SwiftCompilerSources/Sources/Optimizer/Utilities/OptUtils.swift", "patch": "@@ -441,6 +441,14 @@ extension Instruction {\n // An extend_lifetime can only be removed if the operand is also removed.\n // If its operand is trivial, it will be removed by MandatorySimplification.\n r...
2026-02-04T07:47:42
denoland/deno
c632dd7759114e13b39b9b31d15aebba09fbffc6
5f9a64bcaf5269c6287edb1133528aa8119e77b6
fix(npm): do not error on failure to write warned script file (#30479)
[ { "path": "libs/npm_installer/global.rs", "patch": "@@ -222,10 +222,9 @@ impl<TSys: NpmCacheSys> LifecycleScriptsStrategy\n log::warn!(\"┖─ {}\", colors::bold(\"\\\"nodeModulesDir\\\": \\\"auto\\\"\"));\n \n for (package, _) in packages {\n- self.sys.fs_open(\n- self.warned_scripts_file(...
2025-08-21T23:35:04
kubernetes/kubernetes
b18339638aed6707c91a92456a6b29b3512ef35c
c70011cf108c8af63c5b4af3c2f8ff88b333a698
Fix data race in garbage collector on node.owners field Add ownersLock to protect concurrent access to node.owners between GraphBuilder.processGraphChanges() (writer) and GC worker goroutines reading in blockingDependents() and unblockOwnerReferences() methods. Also fix concurrent reads in the HTTP debug handler (/gr...
[ { "path": "pkg/controller/garbagecollector/dump.go", "patch": "@@ -148,9 +148,9 @@ func NewDOTVertex(node *node) *dotVertex {\n \t\tgvk: gv.WithKind(node.identity.Kind),\n \t\tnamespace: node.identity.Namespace,\n \t\tname: node.identity.Name,\n-\t\tbeingDeleted: ...
2025-12-06T20:28:21
tensorflow/tensorflow
f1953049fbd9e320013bd272378f0339fedf6795
5a8f8d649101fc9d48b91d6a88ba5fc611be4d5e
Fix struct size check in PJRT_Executable_GetCompiledMemoryStats. PiperOrigin-RevId: 846575527
[ { "path": "third_party/xla/xla/pjrt/c/pjrt_c_api_wrapper_impl.cc", "patch": "@@ -2071,8 +2071,9 @@ PJRT_Error* PJRT_Executable_Serialize(PJRT_Executable_Serialize_Args* args) {\n PJRT_Error* PJRT_Executable_GetCompiledMemoryStats(\n PJRT_Executable_GetCompiledMemoryStats_Args* args) {\n PJRT_RETURN_IF...
2025-12-19T07:00:15
mrdoob/three.js
c2373ef9feea4b9cf0a815fcf9cdf0744ba4ce25
90160e9e84dd6f92ec90f48d7cdbeeeeb7022d7b
NodeMaterial: Added support to custom MRT depth (#29117) * added support to custom MRT depth * fix tab in code
[ { "path": "src/nodes/materials/NodeMaterial.js", "patch": "@@ -206,11 +206,21 @@ class NodeMaterial extends Material {\n \n \t\tlet depthNode = this.depthNode;\n \n-\t\tif ( depthNode === null && renderer.logarithmicDepthBuffer === true ) {\n+\t\tif ( depthNode === null ) {\n \n-\t\t\tconst fragDepth = mode...
2024-08-12T03:13:12
golang/go
909704b85e64b156f81e78bcfd1fbd9b032c089a
3db5979e8cc4cc86c4fefb4cecc5a2041b32404d
encoding/json/v2: fix typo in comment Use the correct spelling of the Gregorian calendar. Change-Id: I7e1d2974d38d5d3ded64f98852ee726c7b84be22 Reviewed-on: https://go-review.googlesource.com/c/go/+/704595 Reviewed-by: Joseph Tsai <joetsai@digital-static.net> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-acc...
[ { "path": "src/encoding/json/v2/arshal_time.go", "patch": "@@ -465,7 +465,7 @@ func appendDurationISO8601(b []byte, d time.Duration) []byte {\n }\n \n // daysPerYear is the exact average number of days in a year according to\n-// the Gregorian calender, which has an extra day each year that is\n+// the Greg...
2025-09-17T09:55:02
denoland/deno
ab36a16bf38d5beec74bc1479cc37b63929b80cd
c0bc233f1f57d06f61a3eaa7bc1ff1cde834d087
fix(lsp): silence tsc debug failures for inlay hints (#30456)
[ { "path": "cli/lsp/language_server.rs", "patch": "@@ -4919,19 +4919,28 @@ impl Inner {\n error!(\"Failed to convert range to text_span: {:#}\", err);\n LspError::internal_error()\n })?;\n- let maybe_inlay_hints = self\n+ let mut inlay_hints = self\n .ts_server\n ...
2025-08-20T21:35:45
kubernetes/kubernetes
4d11e21fc92bba864ff4d27d66dfce35ec735320
c180d6762d7ac5059d9b50457cafb0d7f4cf74a9
kubeadm: always retry Patch() Node API calls The PatchNodeOnce function has historically exited early in scanarious when we Get a Node object, but the next Patch API call on the same Node object fails. This can happen in setups that are under a lot of resource pressure or different network timeout scenarious. Instead...
[ { "path": "cmd/kubeadm/app/util/apiclient/idempotency.go", "patch": "@@ -192,10 +192,7 @@ func PatchNodeOnce(client clientset.Interface, nodeName string, patchFn func(*v1\n \n \t\tif _, err := client.CoreV1().Nodes().Patch(ctx, n.Name, types.StrategicMergePatchType, patchBytes, metav1.PatchOptions{}); err !...
2025-12-16T18:09:01
tensorflow/tensorflow
46f4c9ab9f8d71faa9f9f86b69868236c65d5c6a
728c0ee8e4d8f4e63c2861da38c417cb7702d441
[JAX] Refresh a custom layout if a buffer is copied across clients or memories This change retrieves a new custom layout if a buffer is copied across PjRt clients or memory spaces because the detail of the buffer layout often changes (e.g., tiling is added if a buffer is copied from a CPU client to a TPU client). Wit...
[ { "path": "third_party/xla/xla/python/pjrt_ifrt/pjrt_array.cc", "patch": "@@ -550,15 +550,15 @@ absl::StatusOr<ArrayRef> PjRtArray::Copy(\n if (new_client == nullptr) {\n new_client = client_;\n }\n- std::shared_ptr<const xla::PjRtLayout> layout;\n- static MemoryKind kUnpinnedHostMemoryKind(Unpinn...
2025-12-19T01:11:46
mrdoob/three.js
90160e9e84dd6f92ec90f48d7cdbeeeeb7022d7b
0536e005c1d9a31f82a318eb4ddc255217924cc2
ViewportDepthNode: Fix `material.depthNode=depth` assign (#29116) * Fix material.depthNode = depth assign * added default values
[ { "path": "src/nodes/display/RenderOutputNode.js", "patch": "@@ -2,7 +2,7 @@ import TempNode from '../core/TempNode.js';\n import { addNodeClass } from '../core/Node.js';\n import { addNodeElement, nodeObject } from '../shadernode/ShaderNode.js';\n \n-import { SRGBColorSpace, NoToneMapping } from '../../con...
2024-08-12T03:03:09