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
mrdoob/three.js
25873ff60e19b24e2cb71a01778363f7b969194a
dcabbf7343b09d5314c62d5ce7aa4fa82b0a236c
PMREMGenerator: Fix usage with `PMREMNode`. (#31001)
[ { "path": "src/renderers/common/extras/PMREMGenerator.js", "patch": "@@ -161,7 +161,7 @@ class PMREMGenerator {\n \n \t\t\tconsole.warn( 'THREE.PMREMGenerator: .fromScene() called before the backend is initialized. Try using .fromSceneAsync() instead.' );\n \n-\t\t\tconst cubeUVRenderTarget = renderTarget |...
2025-04-27T01:00:29
kubernetes/kubernetes
2cfc90672aa5373603850c7fee0ff04128524364
59cddedb04dcb2c3c5550e9f508b9771ba99f29c
fix flake on ipaddress allocator integration test The test need to consider the time for the Delete operation to populate the ipallocator informer, otherwise, it can happen the allocator fails with a range full failing the test. Co-authored-by: hiirrxnn <hiren2004sharma@gmail.com>
[ { "path": "pkg/registry/core/service/storage/alloc.go", "patch": "@@ -419,7 +419,7 @@ func (al *Allocators) allocIPs(service *api.Service, toAlloc map[api.IPFamily]st\n \t\t\t\t\tel := field.ErrorList{field.Invalid(field.NewPath(\"spec\", \"clusterIPs\"), service.Spec.ClusterIPs, fmt.Sprintf(\"failed to all...
2026-02-10T10:26:36
tensorflow/tensorflow
6ddf180775d8e8882f64cdfb1b0d4ae6e883616b
f96c32c57a1bde4db8d55299e75e0646e749a84a
PR #36845: [XLA:GPU][codegen] Support Range Metadata in LLVM-SPIRV backend Imported from GitHub PR https://github.com/openxla/xla/pull/36845 This PR fixes runtime ret_check crashes observed while trying to add range metadata to SPIRV builtins Error: `INTERNAL: RET_CHECK failure (xla/service/gpu/gpu_compiler.cc:2060...
[ { "path": "third_party/xla/xla/service/llvm_ir/llvm_util.cc", "patch": "@@ -580,17 +580,22 @@ void SetDereferenceableMetadataForLoad(llvm::LoadInst* load,\n llvm::Instruction* AddRangeMetadata(int32_t lower, int32_t upper,\n llvm::Instruction* inst,\n ...
2026-02-16T12:00:54
denoland/deno
3246e10ded5bcc989498d80f48785f0f7be3f832
f4c20db6c9277582963ed441d69f91b532bf6404
fix(ext/node): implement `sqlite`' `SQLTagStore` (#31945) Implementation is based on Node.js v24.12.0 It passes test cases on https://github.com/nodejs/node/blob/v24.12.0/test/parallel/test-sqlite-template-tag.js, but since we don't yet implement `beforeEach` of `node:test` the test will fail. I ported the tests to o...
[ { "path": "ext/node/lib.rs", "patch": "@@ -410,6 +410,7 @@ deno_core::extension!(deno_node,\n ops::perf_hooks::EldHistogram,\n ops::sqlite::DatabaseSync,\n ops::sqlite::Session,\n+ ops::sqlite::SQLTagStore,\n ops::handle_wrap::AsyncWrap,\n ops::handle_wrap::HandleWrap,\n ops::sqli...
2026-01-30T10:01:23
swiftlang/swift
19d05abf88e18e36f79bf80e1a64d39641883101
7ecdb0d3edb6a381961cf3e794d9854e706669a9
[Concurrency] Fix `stripConcurrency` to avoid dropping parameter isolation Special case for `isolated` parameters, because even though the isolation was dropped, the parameter itself was left with `isolated` bit set. `dropIsolation` is intended only for mangling of `@preconcurrency` declarations and isolated parameter...
[ { "path": "lib/AST/Type.cpp", "patch": "@@ -1006,8 +1006,16 @@ Type TypeBase::stripConcurrency(bool recurse, bool dropGlobalActor,\n if (dropGlobalActor && extInfo.getGlobalActor())\n extInfo = extInfo.withoutIsolation();\n \n- if (dropIsolation)\n- extInfo = extInfo.withoutIsolation();\n+...
2026-03-02T19:51:21
mrdoob/three.js
dcabbf7343b09d5314c62d5ce7aa4fa82b0a236c
a3fe811aa493ca75d11f451f954f664f627d9c88
Manual: Fix primitives page. (#30997)
[ { "path": "manual/resources/lesson.js", "patch": "@@ -48,15 +48,22 @@\n \n \t}\n \n-\tlet text = document.body.innerHTML;\n+\tconst parts = window.location.href.split( '/' );\n+\tconst filename = parts[ parts.length - 1 ];\n \n-\ttext = text.replace( /\\[link:([\\w\\:\\/\\.\\-\\_\\(\\)\\?\\#\\=\\!\\~]+)\\]/...
2025-04-25T11:38:28
golang/go
d4972f6295aede2ddc35bcb1da5f6351623e9e4d
0d0d5c9a827bac4da9cf20da351791d217e84ebb
runtime: mark getfp as nosplit When compiling with -l, we can't take a stack split here. Fixes #76702 Change-Id: Ieab1225c6259c7f16bb5188aa84bff615d9db2e5 Reviewed-on: https://go-review.googlesource.com/c/go/+/728060 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Auto-Submi...
[ { "path": "src/runtime/os_wasm.go", "patch": "@@ -142,6 +142,8 @@ func preemptM(mp *m) {\n \n // getfp returns the frame pointer register of its caller or 0 if not implemented.\n // TODO: Make this a compiler intrinsic\n+//\n+//go:nosplit\n func getfp() uintptr { return 0 }\n \n func setProcessCPUProfiler(h...
2025-12-08T14:21:39
tensorflow/tensorflow
4de39f69e48fde5aee2a6e4dc18946308bf742c7
86ed0c491ac8bc5ac26dee392f266c9ef217e595
PR #37854: [ROCm] Fix TritonAMDGPUSinkLayoutConversions pass nesting in compilat… Imported from GitHub PR https://github.com/openxla/xla/pull/37854 📝 Summary of Changes ``` The commit that breaks the test is `210c56693c` - "Integrate Triton up to 17b5d481" ...
[ { "path": "third_party/xla/xla/backends/gpu/codegen/triton/compilation_pipeline_rocm.cc", "patch": "@@ -84,7 +84,8 @@ static void MakeTTGIR(mlir::OpPassManager* pm,\n {rocm_cc.gfx_version()}));\n pm->addNestedPass<mlir::triton::FuncOp>(\n mlir::createTritonAMDGPUHoistLayoutConversions());\n- ...
2026-02-16T09:44:26
mrdoob/three.js
a3fe811aa493ca75d11f451f954f664f627d9c88
df905b3bcb2922089a0db0139c5df7b7b0821aef
Examples: Fix shadows in physics instancing demos. (#30988) * Examples: Fix shadows in physics instancing demos. * Clean up.
[ { "path": "examples/physics_ammo_instancing.html", "patch": "@@ -60,14 +60,24 @@\n \t\t\t\tdirLight.shadow.camera.zoom = 2;\n \t\t\t\tscene.add( dirLight );\n \n-\t\t\t\tconst floor = new THREE.Mesh(\n+\t\t\t\tconst shadowPlane = new THREE.Mesh(\n+\t\t\t\t\tnew THREE.PlaneGeometry( 10, 10 ),\n+\t\t\t\t\tnew...
2025-04-24T17:11:27
denoland/deno
f4c20db6c9277582963ed441d69f91b532bf6404
fae7b29aacf26a94ef44302f18f0ef652ab6417d
fix(flags): correct zsh completions for script arg (#31994) Closes https://github.com/denoland/deno/issues/31989 Closes https://github.com/denoland/deno/issues/29625 Closes https://github.com/denoland/deno/issues/25710
[ { "path": "Cargo.lock", "patch": "@@ -894,18 +894,18 @@ dependencies = [\n \n [[package]]\n name = \"clap\"\n-version = \"4.5.47\"\n+version = \"4.5.56\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"7eac00902d9d136acd712710d71823fb8ac8004ca445a89e73a41d45aa712931\"\n+c...
2026-01-30T00:03:12
golang/go
c270e7183582600aa54dcc8bb14aeecf61fc4275
745349712e837ef77eb7b5a21c4d4e5c7ca0371a
cmd/go/internal/vet: skip -fix on pkgs from vendor or non-main mod This change causes go fix (and go vet -fix) to skip applying fixes to any package in the vendor/ tree, including the GOROOT vendor packages that are part of std, and to any package from a non-main module (since these usually come from the readonly modu...
[ { "path": "src/cmd/go/internal/vet/vet.go", "patch": "@@ -262,6 +262,15 @@ func run(ctx context.Context, cmd *base.Command, args []string) {\n \t// will only be executed in VetxOnly mode, for facts but not\n \t// diagnostics.\n \tfor _, p := range pkgs {\n+\t\t// Don't apply fixes to vendored packages, incl...
2025-12-05T17:41:21
mrdoob/three.js
6e564589c5bc5a374295f1218fd95b2645e577c6
72df8dad84961480911166d82029d7f5b2f6170d
Examples: Fixed imports.
[ { "path": "examples/webgpu_shadowmap_array.html", "patch": "@@ -14,12 +14,11 @@\n \t\t<script type=\"importmap\">\n \t\t\t{\n \t\t\t\t\"imports\": {\n-\t\t\t\t\t\"three\": \"../build/Three.WebGPU.js\",\n-\t\t\t\t\t\"three/webgpu\": \"../build/Three.WebGPU.js\",\n-\t\t\t\t\t\"three/tsl\": \"../build/Three.TS...
2025-04-23T09:25:40
denoland/deno
fae7b29aacf26a94ef44302f18f0ef652ab6417d
e85807a76fc6eae6200c0c2542803b321e6c9c58
fix(types): correct types for Worker events (#31981) <!-- Before submitting a PR, please read https://docs.deno.com/runtime/manual/references/contributing 1. Give the PR a descriptive title. Examples of good title: - fix(std/http): Fix race condition in server - docs(console): Update docstrings - feat(...
[ { "path": "cli/tsc/dts/lib.deno.shared_globals.d.ts", "patch": "@@ -588,13 +588,13 @@ interface WorkerOptions {\n */\n interface Worker extends EventTarget {\n /** Event handler for error events. Fired when an error occurs in the worker's execution context. */\n- onerror: (this: Worker, e: ErrorEvent) =...
2026-01-29T20:55:58
tensorflow/tensorflow
4c965070cd14e3c0a90f7fd6d08501790a970a8a
01da90a001f65f53f64503650cc0a75ec4df862a
PR #36700: [Rocm] Fix CollectivePipelineParallelismTest: Add missing attribute to pipelined send/recv operations Imported from GitHub PR https://github.com/openxla/xla/pull/36700 The test CollectivePipelineParallelismTest.NaiveBFSMb5Cr2Replica4SendRecvPartiallyPipelined was failing with the error: ``` INTERNAL: durin...
[ { "path": "third_party/xla/xla/tests/collective_pipeline_parallelism_test.cc", "patch": "@@ -1325,8 +1325,8 @@ TEST_P(CollectivePipelineParallelismTest,\n // Shift data to the next stage in the pipeline.\n after_all_fwd = token[] after-all()\n fwd_send = (f32[16], u32[], token[]) send(next_stage...
2026-02-15T18:53:38
golang/go
745349712e837ef77eb7b5a21c4d4e5c7ca0371a
f3d572d96a25d1a0956ef828c0ff510ebf214d22
runtime: don't count nGsyscallNoP for extra Ms in C In #76435, it turns out that the new metric /sched/goroutines/not-in-go:goroutines counts C threads that have called into Go before (on Linux) as not-in-go goroutines. The reason for this is that the M is still attached to the C thread on Linux as an optimization, so...
[ { "path": "src/runtime/metrics_test.go", "patch": "@@ -1584,3 +1584,18 @@ func TestReadMetricsSched(t *testing.T) {\n \t\tt.Fatalf(\"output:\\n%s\\n\\nwanted:\\n%s\", output, want)\n \t}\n }\n+\n+func TestNotInGoMetricCallback(t *testing.T) {\n+\tswitch runtime.GOOS {\n+\tcase \"windows\", \"plan9\":\n+\t\t...
2025-12-04T23:27:03
mrdoob/three.js
7fe67ee3d9fc790adb6d5f7018d9b602535e1dc4
98a7c923df9db67ad3726c52ee2d1677d248389e
webgpu_sandbox: fix commented line
[ { "path": "examples/webgpu_sandbox.html", "patch": "@@ -227,7 +227,9 @@\n \n \t\t\t}\n \n-\t\t\t/** Correct UVs to be compatible with `flipY=false` textures. */\n+\t\t\t/*\n+\t\t\t * Correct UVs to be compatible with `flipY=false` textures.\n+\t\t\t */\n \t\t\tfunction flipY( geometry ) {\n \n \t\t\t\tconst...
2025-04-22T18:20:41
kubernetes/kubernetes
b7bd70192397c5d52c18a5f85e87cec66ccc9a9f
09e1c9fe0ec3d3a61fa71c43610b42e1e3f53612
Add CertificateSigningRequest create log entry for default kubelet debug level V2
[ { "path": "staging/src/k8s.io/client-go/util/certificate/csr/csr.go", "patch": "@@ -78,13 +78,15 @@ func RequestCertificateWithContext(ctx context.Context, client clientset.Interfa\n \t\tcsr.Spec.ExpirationSeconds = DurationToExpirationSeconds(*requestedDuration)\n \t}\n \n+\tlogger := klog.FromContext(ctx)...
2026-02-09T20:12:39
denoland/deno
12a65dffdc8bdddcee97f7258a41b702f2772d5b
1c9048f231a29e3ee92fafe3a8280f3ab38169a4
fix(install): clean up associated config and lock files during uninstall (#31984) This PR fixes an issue where `deno uninstall` would successfully remove the executable but leave behind the associated hidden configuration files (like `.<name>.deno.json`) in the bin directory.
[ { "path": "cli/tools/installer/mod.rs", "patch": "@@ -401,9 +401,28 @@ pub async fn uninstall(\n // There might be some extra files to delete\n // Note: tsconfig.json is legacy. We renamed it to deno.json.\n // Remove cleaning it up after January 2024\n+ // Use the base file path (without extension) ...
2026-01-29T17:19:37
tensorflow/tensorflow
01da90a001f65f53f64503650cc0a75ec4df862a
873ce256fd32b492d41c7950d187851518df1ecb
PR #37789: [xla:gpu] Add a HangWatchdog to detect deadlocks in XLA:GPU execution Imported from GitHub PR https://github.com/openxla/xla/pull/37789 `HangWatchdog` is a safety mechanism to abort deadlocked XLA processes Copybara import of the project: -- 75c9a443241e64fed9f20a56d6eb2a4093c27337 by Eugene Zhulenev <ezh...
[ { "path": "third_party/xla/xla/BUILD", "patch": "@@ -1257,6 +1257,7 @@ cc_library(\n \"@com_google_absl//absl/status:statusor\",\n \"@com_google_absl//absl/strings\",\n \"@com_google_absl//absl/strings:str_format\",\n+ \"@com_google_absl//absl/time\",\n ...
2026-02-15T18:16:14
mrdoob/three.js
0c69d146740e67594d9ffe701588e38cb691f272
0eddad5dd751edcf0b5ca8d833a656ce9a8b46b2
fix: change increment to decrement in documentation (#30978)
[ { "path": "docs/api/en/constants/Materials.html", "patch": "@@ -155,7 +155,7 @@ <h2>Stencil Operations</h2>\n \t\t\tvalue by `1`.<br />\n \t\t\t[page:Materials IncrementWrapStencilOp] will increment the current stencil\n \t\t\tvalue by `1`. If the value increments past `255` it will be set to `0`.<br />\n-\...
2025-04-22T11:55:48
swiftlang/swift
96e7f2587d36cd9d66aab000bb9223d28ca73606
900f6906cd8e97f619566361f0d5c644c3fcbc3d
[Diagnostics] Allow lexically-escalated warning groups to 'escape' the '-suppress-warnings' compiler flag. While '-suppress-warnings' does not fit into the overall model established with command-line controls (-Werror, -Wwarning) and declaration lexical scope controls (@warn), when users specify: ```swift @warn(DiagGr...
[ { "path": "lib/AST/DiagnosticEngine.cpp", "patch": "@@ -1427,10 +1427,15 @@ DiagnosticState::determineBehavior(const Diagnostic &diag,\n // 3) If the user substituted a different behavior for this warning, apply\n // that change\n if (lvl == DiagnosticBehavior::Warning) {\n- if (auto userCon...
2026-03-02T11:59:57
golang/go
f3d572d96a25d1a0956ef828c0ff510ebf214d22
76345533f70e149511b1f50dbee598d0980cf867
cmd/go: fix race applying fixes in fix and vet -fix modes Previously, the cmd/fix tool, which is analogous to a compiler in a "go fix" or "go vet -fix" build, applied its fixes directly to source files during the build. However, this led to races since the edits may in some cases occur concurrently with other build st...
[ { "path": "src/cmd/go/internal/test/test.go", "patch": "@@ -1371,7 +1371,7 @@ func addTestVet(loaderstate *modload.State, b *work.Builder, p *load.Package, ru\n \t\treturn\n \t}\n \n-\tvet := b.VetAction(loaderstate, work.ModeBuild, work.ModeBuild, p)\n+\tvet := b.VetAction(loaderstate, work.ModeBuild, work...
2025-12-04T20:29:49
denoland/deno
1c9048f231a29e3ee92fafe3a8280f3ab38169a4
d155af667f0e57277dc992d1b9609d5e6712908d
tests: enable some node child-process tests (#31972) Enable some tests that seems fixed with previous changes: - parallel/test-child-process-exec-std-encoding.js - parallel/test-child-process-exec-timeout-not-expired.js
[ { "path": "tests/node_compat/config.jsonc", "patch": "@@ -173,7 +173,9 @@\n \"parallel/test-child-process-exec-env.js\": {},\n \"parallel/test-child-process-exec-error.js\": {},\n \"parallel/test-child-process-exec-kill-throws.js\": {},\n+ \"parallel/test-child-process-exec-std-encoding.js\":...
2026-01-29T13:36:43
tensorflow/tensorflow
f2c827e2d25e0ff7f640abf149deb954d5030772
81b941f81b19a0f0cf1dd36c0631658693aa0bea
Fix metadata collection issue for HLO. PiperOrigin-RevId: 869956869
[ { "path": "third_party/xla/xla/backends/profiler/cpu/metadata_collector.cc", "patch": "@@ -58,18 +58,11 @@ class MetadataCollector : public tsl::profiler::ProfilerInterface {\n }\n \n absl::Status CollectData(tsl::profiler::XSpace* space) override {\n- tsl::profiler::XPlane* plane = tsl::profiler::Fi...
2026-02-14T01:46:53
mrdoob/three.js
91476495947035dd18f215ddc1e8102ba08a18cc
bfb46e53d365b3f2d053e285d313bb82db709cc3
TSL: Improve `debug()` callback changing to `( builder, code )` function signature (#30976) * improve debug callback * Update DebugNode.js * Update DebugNode.js * Update DebugNode.js * Update DebugNode.js
[ { "path": "src/nodes/utils/DebugNode.js", "patch": "@@ -52,7 +52,7 @@ class DebugNode extends TempNode {\n \n \t\tif ( callback !== null ) {\n \n-\t\t\tcallback( code );\n+\t\t\tcallback( builder, code );\n \n \t\t} else {\n \n@@ -68,6 +68,15 @@ class DebugNode extends TempNode {\n \n export default DebugNo...
2025-04-22T08:56:44
golang/go
76345533f70e149511b1f50dbee598d0980cf867
b133524c0f661b88fc31db0076a939e1466c8aad
runtime: expand Pinner documentation This change expands the Pinner documentation based on a few points of feedback. - We need a note that the Pinner has a finalizer. - We need a note that the Pinner is safe to reuse. I also added a note that the zero value is ready to use, and expanded upon the use-cases of a Pinner...
[ { "path": "src/runtime/pinner.go", "patch": "@@ -12,7 +12,25 @@ import (\n \n // A Pinner is a set of Go objects each pinned to a fixed location in memory. The\n // [Pinner.Pin] method pins one object, while [Pinner.Unpin] unpins all pinned\n-// objects. See their comments for more information.\n+// objects...
2025-12-03T23:07:26
swiftlang/swift
08231096a797b828d06d176542050edc250337f9
4c1e2c55ccc8fe405ae6e8043821f62bd50f1ab0
[cxx-interop] Fix modularization for `<cmath>` with libstdc++ This fixes compiler errors on Fedora 42 and similar distros. `<cmath>` wasn't correctly listed in the modulemap that Swift injects into libstdc++. rdar://152032606 / resolves https://github.com/swiftlang/swift/issues/81774
[ { "path": "stdlib/public/Cxx/libstdcxx/libstdcxx.modulemap", "patch": "@@ -84,6 +84,12 @@ module std {\n export *\n }\n \n+ module cmath {\n+ header \"cmath\"\n+ requires cplusplus\n+ export *\n+ }\n+\n module cstdlib {\n header \"cstdlib\"\n requires cplusplus...
2026-03-02T16:28:59
denoland/deno
98cde880a97c5d79b4d4769f5e3df8753a29ff7c
812d567c31638cd5a64ced5909be2ba25f08d50e
chore(test): re-enable `parallel/test-util-isDeepStrictEqual.js` (#31968) Closes #31632 as it's fixed by #31821
[ { "path": "tests/node_compat/config.jsonc", "patch": "@@ -1450,12 +1450,7 @@\n \"parallel/test-util-deprecate-invalid-code.js\": {},\n \"parallel/test-util-inherits.js\": {},\n \"parallel/test-util-inspect-getters-accessing-this.js\": {},\n- \"parallel/test-util-isDeepStrictEqual.js\": {\n- ...
2026-01-29T09:46:15
mrdoob/three.js
bfb46e53d365b3f2d053e285d313bb82db709cc3
d79728c5e0e60e785ca6c73f5096e014e6a25fb6
TSL: Fix `denoise()` sampler texture (#30975) * remove layout * rename
[ { "path": "examples/jsm/tsl/display/DenoiseNode.js", "patch": "@@ -1,5 +1,5 @@\n import { DataTexture, RepeatWrapping, Vector2, Vector3, TempNode } from 'three/webgpu';\n-import { texture, getNormalFromDepth, getViewPosition, convertToTexture, nodeObject, Fn, float, NodeUpdateType, uv, uniform, Loop, lumina...
2025-04-22T08:22:54
golang/go
96e142ba2bfe5fe483f5364df91222c19ac13c49
fe4952f1165c43dcd195ab8b024f79ac5beced8a
runtime: skip TestArenaCollision if we run out of hints This seems failure mode seems to have become more common on Windows. I suspect the randomized heap base address has something to do with it, but I'm not 100% sure. What's definitely certain is that we're running out of hints, since we're seeing failures that mhe...
[ { "path": "src/runtime/export_test.go", "patch": "@@ -551,8 +551,11 @@ func MapNextArenaHint() (start, end uintptr, ok bool) {\n \treturn\n }\n \n-func GetNextArenaHint() uintptr {\n-\treturn mheap_.arenaHints.addr\n+func NextArenaHint() (uintptr, bool) {\n+\tif mheap_.arenaHints == nil {\n+\t\treturn 0, fa...
2025-12-03T23:22:18
denoland/deno
812d567c31638cd5a64ced5909be2ba25f08d50e
b715bb8ec9016c009e74d3982ab0b843b961839a
fix: use `locked-tripwire` to prevent unlocked cargo installs (#31973)
[ { "path": "Cargo.lock", "patch": "@@ -1659,6 +1659,7 @@ dependencies = [\n \"libc\",\n \"libsui\",\n \"libz-sys\",\n+ \"locked-tripwire\",\n \"log\",\n \"lol_html\",\n \"lsp-types\",\n@@ -5967,6 +5968,12 @@ dependencies = [\n \"scopeguard\",\n ]\n \n+[[package]]\n+name = \"locked-tripwire\"\n+version...
2026-01-29T02:26:35
swiftlang/swift
4c1e2c55ccc8fe405ae6e8043821f62bd50f1ab0
34b17dd3e44b2a6645bbbf952fdfe0b2bf435e71
[Distributed] distributed accessor fixes against optimization (#87453) WIP, still not enough resolves rdar://168881945
[ { "path": "lib/IRGen/GenDecl.cpp", "patch": "@@ -4898,7 +4898,8 @@ void IRGenModule::emitAccessibleFunctions() {\n llvm_unreachable(\"Don't know how to emit accessible functions for \"\n \"the selected object format.\");\n case llvm::Triple::MachO:\n- fnsSectionName = \"__TEXT,...
2026-03-02T04:46:11
mrdoob/three.js
d79728c5e0e60e785ca6c73f5096e014e6a25fb6
6a74721a5b0ba361ec56df4d8e08930686a425c8
NodeMaterial: Fix alpha of vertex-color (#30974) * fix vertex-color * Update AttributeNode.js * Update NodeMaterial.js
[ { "path": "src/materials/nodes/NodeMaterial.js", "patch": "@@ -2,7 +2,6 @@ import { Material } from '../Material.js';\n import { NormalBlending } from '../../constants.js';\n \n import { getNodeChildren, getCacheKey } from '../../nodes/core/NodeUtils.js';\n-import { attribute } from '../../nodes/core/Attrib...
2025-04-22T07:44:54
golang/go
fe4952f1165c43dcd195ab8b024f79ac5beced8a
8947f092a8427674b7628003b873f57d3b6cdd83
runtime: relax threadsSlack in TestReadMetricsSched runtime.GC is called in the test and may spin up GOMAXPROCS (proportional to the initial count) new threads. We need to be robust to this, and it happens relatively frequently on some platforms. We didn't notice this earlier since the heap is so miniscule that runti...
[ { "path": "src/runtime/testdata/testprog/schedmetrics.go", "patch": "@@ -91,8 +91,10 @@ func SchedMetrics() {\n \t// threads through frequent scheduling, like mayMoreStackPreempt.\n \t// A slack of 5 is arbitrary but appears to be enough to cover\n \t// the leftovers plus any inflation from scheduling-heavy...
2025-12-03T23:13:36
denoland/deno
b715bb8ec9016c009e74d3982ab0b843b961839a
591e9267e6e052d6d7b11a7a5be233b73a27f121
fix: allow reading /dev/tty without requiring --allow-all (#31105)
[ { "path": "runtime/permissions/lib.rs", "patch": "@@ -4025,7 +4025,7 @@ impl PermissionsContainer {\n })\n } else {\n let path = self.descriptor_parser.parse_special_file_descriptor(path)?;\n- self.check_special_file(path, api_name)\n+ self.check_special_file(path, access_kind, api...
2026-01-28T17:21:25
mrdoob/three.js
3bdd4382058a748be339974a147d4705ee87782a
51f4b78bcacff076f52abc828c6adfab12eb94c0
TSL: Fixes the return value of `atomic*` nodes (#30971) * add `parents` properties * TSL: Fixes the return value of `atomic*` nodes
[ { "path": "src/nodes/core/Node.js", "patch": "@@ -87,6 +87,14 @@ class Node extends EventDispatcher {\n \t\t */\n \t\tthis.global = false;\n \n+\t\t/**\n+\t\t * Create a list of parents for this node during the build process.\n+\t\t *\n+\t\t * @type {boolean}\n+\t\t * @default false\n+\t\t */\n+\t\tthis.par...
2025-04-22T03:40:48
swiftlang/swift
34b17dd3e44b2a6645bbbf952fdfe0b2bf435e71
fbad8aaf8f3443f9795f7c98fd932e3fbe617485
[Distributed] Distributed remote ref should be as small as possible (#87449) Because we guaranteed that one cannot access a distribted "remote" instance's state via type system, we can allocate the instance much smaller because we never access those user initialized fields. This way a remote distributed actor referen...
[ { "path": "include/swift/Runtime/Metadata.h", "patch": "@@ -217,6 +217,7 @@ bool swift_compareTypeContextDescriptors(const TypeContextDescriptor *lhs,\n const TypeContextDescriptor *rhs);\n \n /// Compute the bounds of class metadata with a resilient superclass.\n+SW...
2026-03-02T01:08:20
golang/go
44cb82449e7f24530fe0fe0bf8261ba9e0e4e7d8
435e61c80141653c22e29d81447e4c6e4033f768
runtime/race: set missing argument frame for ppc64x atomic And/Or wrappers The ppc64x TSAN wrappers for atomic And/Or did not initialize R6 with the Go argument frame before calling racecallatomic. Since racecallatomic expects R6 to point to the argument list and dereferences it unconditionally, this led to a nil-poin...
[ { "path": "src/runtime/race_ppc64le.s", "patch": "@@ -329,11 +329,13 @@ TEXT\tsync∕atomic·AddUintptr(SB), NOSPLIT, $0-24\n TEXT\tsync∕atomic·AndInt32(SB), NOSPLIT, $0-20\n \tGO_ARGS\n \tMOVD\t$__tsan_go_atomic32_fetch_and(SB), R8\n+\tADD $32, R1, R6\n \tBR\tracecallatomic<>(SB)\n \n TEXT\tsync∕atomic·An...
2025-11-06T19:43:45
kubernetes/kubernetes
5a2578ce0915a7973486c55dd5415026a418f918
ccb70a6577d7c79391e1d1a25335bb87ffff33b8
kubelet: promote the CustomCPUCFSQuotaPeriod to GA Promote the CustomCPUCFSQuotaPeriod gate to GA, turning it enabled by default. Short history of this feature so far: As far as git and github history allows to reconstruct, this feature was introduced without KEP/design doc process (kubernetes 1.12). It was a double-...
[ { "path": "pkg/features/kube_features.go", "patch": "@@ -1126,6 +1126,8 @@ var defaultVersionedKubernetesFeatureGates = map[featuregate.Feature]featuregate\n \n \tCPUCFSQuotaPeriod: {\n \t\t{Version: version.MustParse(\"1.12\"), Default: false, PreRelease: featuregate.Alpha},\n+\t\t// see https://github.com...
2026-01-20T09:44:28
mrdoob/three.js
51f4b78bcacff076f52abc828c6adfab12eb94c0
0ff094ec34706ebfa3fce7ff0cb98b5a271023e6
Examples: Add `webgpu_caustics` and shadow revisions (#30962) * `material.shadowPositionNode` renamed to `material.receivedShadowPositionNode` * add `shadow.mapType` * add `material.castShadowPositionNode` * add `webgpu_caustics` example * update title * add stats * use webgpu * add `webgpu_volumetric_caustics`...
[ { "path": "examples/files.json", "patch": "@@ -307,6 +307,7 @@\n \t\t\"webgpu_camera\",\n \t\t\"webgpu_camera_array\",\n \t\t\"webgpu_camera_logarithmicdepthbuffer\",\n+\t\t\"webgpu_caustics\",\n \t\t\"webgpu_centroid_sampling\",\n \t\t\"webgpu_clearcoat\",\n \t\t\"webgpu_clipping\",\n@@ -453,6 +454,7 @@\n ...
2025-04-22T03:34:54
tensorflow/tensorflow
c9a9fecbeb7fb1c21ead0307b6245aeb1ca64c88
fd56bacf4102afc7369eeb78a8b3cb259b793268
Temporary fix of WGMMA pipeline Current implementation only waited for one of the async dots to complete and moved on to the next loop iteration causing race on register read-writes. See https://github.com/triton-lang/triton/issues/9433 . Now we will issue wgmma wait (0) after all async dots to wait until they are do...
[ { "path": "third_party/xla/third_party/triton/temporary/series.bzl", "patch": "@@ -16,5 +16,6 @@ those to this list.\n temporary_patch_list = [\n \"//third_party/triton:temporary/test_analysis_visibility.patch\",\n \"//third_party/triton:temporary/h100_full_when_needed.patch\",\n+ \"//third_party...
2026-02-13T11:28:06
swiftlang/swift
b9d74ce1a849d57c257cd713a4711315e132710f
af86e04bd74b912ce75ea6fe9e70226f35054885
[utils] make functions public and compile with lifetime support The functions never ended up in the module interface because they weren't public. Fixing this revealed that the swift-frontend -verify invocation didn't enable lifetimes. It also revealed that swift-function-caller-generator emits both an @lifetime and an...
[ { "path": "test/Utils/swift-function-caller-generator/compile.swift", "patch": "@@ -10,24 +10,25 @@\n // RUN: %swift-function-caller-generator Test %t/Test.swiftinterface > %t/out.swift\n // RUN: %diff %t/out.swift %t/out.expected\n \n-// RUN: %target-swift-frontend-verify -typecheck -strict-memory-safety %...
2026-02-28T18:47:52
golang/go
435e61c80141653c22e29d81447e4c6e4033f768
54e5540014f7aa7c85a3a5988259ef40637d541a
runtime: reject any goroutine leak test failure that failed to execute This is far more general than the regexp, which was necessary only because runTestProg doesn't return the error. This change makes runTestProg a wrapper function around a function that *does* return the error. For #76526. Change-Id: Ib3daa75eb0fe...
[ { "path": "src/runtime/crash_test.go", "patch": "@@ -97,6 +97,13 @@ func runTestProg(t *testing.T, binary, name string, env ...string) string {\n func runBuiltTestProg(t *testing.T, exe, name string, env ...string) string {\n \tt.Helper()\n \n+\tout, _ := runBuiltTestProgErr(t, exe, name, env...)\n+\treturn...
2025-12-03T22:29:19
denoland/deno
591e9267e6e052d6d7b11a7a5be233b73a27f121
02c2406524b26f10a70947fcb4ac022fa1bbe2fd
fix(ext/node): use primordials in `_fs_ftruncate.ts` (#31944) Towards #24236 <!-- Before submitting a PR, please read https://docs.deno.com/runtime/manual/references/contributing 1. Give the PR a descriptive title. Examples of good title: - fix(std/http): Fix race condition in server - docs(console): Upda...
[ { "path": "ext/node/polyfills/_fs/_fs_ftruncate.ts", "patch": "@@ -1,10 +1,15 @@\n // Copyright 2018-2026 the Deno authors. MIT license.\n \n-// TODO(petamoriken): enable prefer-primordials for node polyfills\n-// deno-lint-ignore-file prefer-primordials\n-\n-import { CallbackWithError } from \"ext:deno_nod...
2026-01-28T14:45:05
kubernetes/kubernetes
ccb70a6577d7c79391e1d1a25335bb87ffff33b8
d863fbe80b374c886453d23f7dfef60cac0f06e5
kubelet: deprecate DisableCPUQuotaWithExclusiveCPUs We missed the proper process initially, it should have been set to deprecated from the beginning, to convey this is a safety FG for a delicate, long needed fix rather than a FG for a proper feature Signed-off-by: Francesco Romani <fromani@redhat.com>
[ { "path": "pkg/features/kube_features.go", "patch": "@@ -1246,6 +1246,7 @@ var defaultVersionedKubernetesFeatureGates = map[featuregate.Feature]featuregate\n \n \tDisableCPUQuotaWithExclusiveCPUs: {\n \t\t{Version: version.MustParse(\"1.33\"), Default: true, PreRelease: featuregate.Beta},\n+\t\t{Version: ve...
2026-01-20T10:25:51
mrdoob/three.js
2b8b7aa4bb12db5fa8bf7b7ccca971d21e8321d3
b730a2048c220fb8e7776fe1a887248ce0beabc8
BatchedMesh: Fix toJSON, ObjectLoader integration (#30965) * BatchedMesh: fix copy function * BatchedMesh: Update toJSON function * BatchedMesh.toJSON: small cleanup * ObjectLoader: Fix BatchedMesh support * BatchedMesh.copy: Remove redundant field * Object3D, ObjectLoader: adjust serialized definitions * Object...
[ { "path": "src/core/Object3D.js", "patch": "@@ -1294,43 +1294,56 @@ class Object3D extends EventDispatcher {\n \t\t\tobject.drawRanges = this._drawRanges;\n \t\t\tobject.reservedRanges = this._reservedRanges;\n \n-\t\t\tobject.visibility = this._visibility;\n-\t\t\tobject.active = this._active;\n-\t\t\tobje...
2025-04-20T08:07:05
golang/go
54e5540014f7aa7c85a3a5988259ef40637d541a
9616c332956589c86a8366dc42f324108e6b88a4
runtime: print output in case of segfault in goroutine leak tests For #76526. Change-Id: I017e5d4c06e5de23cccc59c4c347599fecdece03 Reviewed-on: https://go-review.googlesource.com/c/go/+/726524 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Michael Pratt <mpratt@...
[ { "path": "src/runtime/goroutineleakprofile_test.go", "patch": "@@ -487,9 +487,9 @@ func TestGoroutineLeakProfile(t *testing.T) {\n \ttestCases = append(testCases, patternTestCases...)\n \n \t// Test cases must not panic or cause fatal exceptions.\n-\tfailStates := regexp.MustCompile(`fatal|panic|DATA RACE`...
2025-12-03T22:21:07
denoland/deno
02c2406524b26f10a70947fcb4ac022fa1bbe2fd
f27a7984cdf23d458b05f2ed54cd6b20e173baae
fix(ext/node): fix usage of new V8 string APIs (#31963) Co-authored-by: Divy Srivastava <me@littledivy.com>
[ { "path": "ext/napi/js_native_api.rs", "patch": "@@ -2129,16 +2129,12 @@ fn napi_get_value_string_latin1(\n *result = value.length();\n }\n } else if bufsize != 0 {\n- let buffer =\n- unsafe { std::slice::from_raw_parts_mut(buf as _, bufsize - 1) };\n- value.write_one_byte_v2(scope, 0...
2026-01-28T12:26:45
swiftlang/swift
81f477e4a77684f919a195bdde6eb0cb130074d8
60bdc75b08800e95375433c5096d7074d97d96d9
[Backtracing] Reorganise thread locals. Reorganise the thread locals for the backtracing code in the `Runtime` module so that there’s only one set of them, with everything else hanging off that. This also reduces code duplication and consumption of thread local variable space. Fix the `DefaultSymbolLocator`’s shared ...
[ { "path": "Runtimes/Supplemental/Runtime/CMakeLists.txt", "patch": "@@ -128,6 +128,7 @@ if(${PROJECT_NAME}_ENABLE_BACKTRACING)\n Backtrace+Codable.swift\n BacktraceFormatter.swift\n BacktraceJSONFormatter.swift\n+ BacktracerThreadLocals.swift\n Base64.swift\n ByteSwapping.swift\n ...
2026-02-28T16:56:05
mrdoob/three.js
74e6eed1858a18bd4322b937743e3c5b7f59d456
92e6962e054c12a6c8a6437559f2d2dcd9f0e397
LineSegments2: Fix typo. (#30953)
[ { "path": "examples/jsm/lines/webgpu/LineSegments2.js", "patch": "@@ -94,9 +94,10 @@ function raycastWorldUnits( lineSegments, intersects ) {\n function raycastScreenSpace( lineSegments, camera, intersects ) {\n \n \tconst projectionMatrix = camera.projectionMatrix;\n-\tconst resolution = lineSegments.resol...
2025-04-18T10:01:58
tensorflow/tensorflow
9034d1bd1a4940291a10df3263fc53eb65af380a
46e017977a6d689486a3f72c8cd84e81c2b33542
Fix stylistic mistake in #include order Move an #include to the right place in a file. This is just a style fix. PiperOrigin-RevId: 869448714
[ { "path": "third_party/xla/xla/tsl/lib/monitoring/sampler.h", "patch": "@@ -18,7 +18,6 @@ limitations under the License.\n \n // clang-format off\n // Required for IS_MOBILE_PLATFORM\n-#include <type_traits>\n #include \"absl/status/status.h\"\n #include \"tsl/platform/platform.h\"\n // clang-format on\n@@ ...
2026-02-13T01:01:33
golang/go
f84f8d86beb08631217e77d725a4b6528ed91dc2
a70addd3b31ccb685f48867e24c6c2b4dc364a11
cmd/compile: fix mis-infer bounds in slice len/cap calculations CL 704875 enhanced prove to infer bounds when index have a relationship with len(A) - K. However, the change incorrectly infer "K - len(A)" case, causing wrong bounds information. Fixing this by matching exactly "len(A) - K" case. Fixes #76709 Change-I...
[ { "path": "src/cmd/compile/internal/ssa/prove.go", "patch": "@@ -2119,7 +2119,10 @@ func (ft *factsTable) detectSliceLenRelation(v *Value) {\n \t\tif bound := ow.Args[0]; (bound.Op == OpSliceLen || bound.Op == OpStringLen) && bound.Args[0] == slice {\n \t\t\tlenOffset = ow.Args[1]\n \t\t} else if bound := o...
2025-12-05T14:49:53
denoland/deno
0864b5442d25d7ac8580c8b9b9adb3629c07667a
a1fb6b6d0a3e9910f9a9915ee300b5be429f6cb7
fix(ext/node): read NODE_OPTIONS for --require and --inspect-publish-uid (#31949)
[ { "path": "Cargo.lock", "patch": "@@ -1667,6 +1667,7 @@ dependencies = [\n \"memchr\",\n \"nix 0.27.1\",\n \"node_resolver\",\n+ \"node_shim\",\n \"notify\",\n \"once_cell\",\n \"open\",", "additions": 1, "deletions": 0, "language": "Unknown" }, { "path": "cli/Cargo.toml", "pat...
2026-01-28T03:10:28
mrdoob/three.js
5b83e73a7cf8b738ff96a78368df22c771cc20a1
55e9cc201e6d965375986b21533704a8c0c9a60e
IFFParser: Fix missing Debbuger attribute declarations (#30946) Co-authored-by: Samuel Rigaud <rigaud@gmail.com>
[ { "path": "examples/jsm/loaders/lwo/IFFParser.js", "patch": "@@ -86,7 +86,7 @@ class IFFParser {\n \n \t\tthis.debugger.offset = this.reader.offset;\n \n-\t\tvar topForm = this.reader.getIDTag();\n+\t\tconst topForm = this.reader.getIDTag();\n \n \t\tif ( topForm !== 'FORM' ) {\n \n@@ -95,12 +95,12 @@ class...
2025-04-18T09:40:24
kubernetes/kubernetes
92fc98de6fd1ff8f467eda508675e0f7266b08d0
918b5ac90ba2e111b899257965a62d2ab19cb105
DRA: Fix missing GetSharedDeviceIDs bug in GatherAllocatedState with consumable capacity Signed-off-by: Sunyanan Choochotkaew <sunyanan.choochotkaew1@ibm.com>
[ { "path": "pkg/scheduler/framework/plugins/dynamicresources/allocateddevices.go", "patch": "@@ -120,6 +120,13 @@ func (a *allocatedDevices) Get() (sets.Set[structured.DeviceID], int64) {\n \treturn a.ids.Clone(), a.revision\n }\n \n+func (a *allocatedDevices) GetSharedDeviceIDs() (sets.Set[structured.Shared...
2026-02-04T04:46:39
tensorflow/tensorflow
5dc99f4251df0b7ccd1f59a9f9a0d903ddf7fd19
9b2272d687696ac95f771cfaea58dc382ffd60a0
PR #37764: [xla:ffi] Do not swallow type registration errors Imported from GitHub PR https://github.com/openxla/xla/pull/37764 Ignoring type registration errors leads to hard to debug crashes at run time. Prefer to crash early and log the error. Fixing https://github.com/openxla/xla/issues/37752, requires: https://g...
[ { "path": "third_party/xla/xla/ffi/api/ffi.h", "patch": "@@ -1522,11 +1522,18 @@ constexpr XLA_FFI_TypeInfo MakeTypeInfo() {\n XLA_FFI_REGISTER_TYPE_(API, NAME, TYPE_ID, TYPE_INFO, __COUNTER__)\n #define XLA_FFI_REGISTER_TYPE_(API, NAME, TYPE_ID, TYPE_INFO, N) \\\n XLA_FFI_REGISTER_TYPE__(API, NAME, TYP...
2026-02-12T20:29:34
golang/go
a70addd3b31ccb685f48867e24c6c2b4dc364a11
93b49f773d1a4b706f5352dffb912c259c15dc4f
all: fix some comment issues Change-Id: I5dec35b1432705b3a52859c38e758220282226af Reviewed-on: https://go-review.googlesource.com/c/go/+/726700 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Sean Liao <sean@liao.dev> Auto-Submit: Dmitri Shuralyov <dmitshur@golang...
[ { "path": "src/crypto/md5/gen.go", "patch": "@@ -153,7 +153,7 @@ var data = Data{\n \t\t0x8d2a4c8a,\n \t},\n \tTable3: []uint32{\n-\t\t// round3\n+\t\t// round 3\n \t\t0xfffa3942,\n \t\t0x8771f681,\n \t\t0x6d9d6122,", "additions": 1, "deletions": 1, "language": "Go" }, { "path": "src/cry...
2025-12-04T03:39:53
denoland/deno
a1fb6b6d0a3e9910f9a9915ee300b5be429f6cb7
7768451f225482d05b072289feffa12d5ba9a978
fix(ext/node): pass test-child-process-bad-stdio node compat test (#31851) Added shell command transformation logic, which handles executable path detection (including shell variable references like "${VAR}"), argument splitting, and translation. Enable test-child-process-bad-stdio.js node compat test.
[ { "path": "ext/node/polyfills/internal/child_process.ts", "patch": "@@ -970,7 +970,7 @@ export function normalizeSpawnArguments(\n if (options.shell) {\n let command = ArrayPrototypeJoin([file, ...args], \" \");\n // Transform Node.js flags to Deno equivalents in shell commands that invoke Deno\n-...
2026-01-28T03:07:38
mrdoob/three.js
55e9cc201e6d965375986b21533704a8c0c9a60e
b2e0b0ce5cd1aee526a93c60b08ea5510e33eda0
Fix using with BatchedMesh (#30952)
[ { "path": "examples/jsm/postprocessing/OutlinePass.js", "patch": "@@ -558,7 +558,8 @@ class OutlinePass extends Pass {\n \t\t\t},\n \n \t\t\tvertexShader:\n-\t\t\t\t`#include <morphtarget_pars_vertex>\n+\t\t\t\t`#include <batching_pars_vertex>\n+\t\t\t\t#include <morphtarget_pars_vertex>\n \t\t\t\t#include ...
2025-04-18T09:39:18
kubernetes/kubernetes
077dfc6175e95d6b653580823a6125d1610f5b6e
275adf8b047da379724c91a9163f8138159ea8e8
Fix TestAPIServerTracing: update rpc.system to rpc.system.name otelgrpc v0.65.0 upgraded to semconv v1.39.0, which renamed the attribute key from "rpc.system" to "rpc.system.name". Update the tracing integration test expectations to match. Signed-off-by: Davanum Srinivas <davanum@gmail.com>
[ { "path": "test/integration/apiserver/tracing/tracing_test.go", "patch": "@@ -460,7 +460,7 @@ endpoint: %s`, listener.Addr().String())), os.FileMode(0755)); err != nil {\n \t\t\t\t{\n \t\t\t\t\tname: \"etcdserverpb.KV/Txn\",\n \t\t\t\t\tattributes: map[string]func(*commonv1.AnyValue) bool{\n-\t\t\t\t\t\t\"r...
2026-02-08T04:45:55
golang/go
91267f0a709191d8f1e3f4fa805c9d88856f9957
a753a9ed54c7ead93e56e5b183b743877b7695a6
all: update vendored x/tools Pull in the following x/tools changes: - CL 726000: go/analysis/passes/modernize: omitzero: suppress on kubebuilder - CL 726621: internal/refactor/inline: built-ins may affect inference - CL 727041: go/analysis/passes/modernize: fix stringscut false positives - CL 727040: go/analysis/unit...
[ { "path": "src/cmd/go.mod", "patch": "@@ -11,7 +11,7 @@ require (\n \tgolang.org/x/sys v0.38.1-0.20251125153526-08e54827f670\n \tgolang.org/x/telemetry v0.0.0-20251128220624-abf20d0e57ec\n \tgolang.org/x/term v0.37.0\n-\tgolang.org/x/tools v0.39.1-0.20251130212600-1ad6f3d02713\n+\tgolang.org/x/tools v0.39.1...
2025-12-04T22:57:40
tensorflow/tensorflow
eee7b18819223065df854ad61f8934729f4cde94
2653b00410d3241f957d92da7beb6a91e55cdb87
PR #37370: [ROCm] add missing clang flag for hipcc Imported from GitHub PR https://github.com/openxla/xla/pull/37370 📝 Summary of Changes Adding `--offload-compress` via HIPCC_COMPILE_FLAGS_APPEND directs the [Clang offload bundler](https://rocm.docs.amd.com/projects/llvm-project/en/latest/LLVM/clang/html/ClangOffl...
[ { "path": "third_party/xla/tensorflow.bazelrc", "patch": "@@ -281,6 +281,7 @@ common:rocm_base --repo_env TF_NEED_ROCM=1\n \n common:rocm_clang_official --config=rocm_base\n common:rocm_clang_official --action_env=CLANG_COMPILER_PATH=\"/usr/lib/llvm-18/bin/clang\"\n+common:rocm_clang_official --action_env=H...
2026-02-12T19:23:31
mrdoob/three.js
f35e49416e29467db7752024a460486fc8e22d85
bc7aedd0261c2c745c1bb1516c47a47bcc069077
ShadowNode: Inherit camera.layers only if shadow.camera.layers is not set (#30877) * ShadowNode: Inherit camera.layers only if shadow.layers is not set * Fix layers check * invert condition * restore after render * move array creation to module scope
[ { "path": "examples/jsm/tsl/shadows/TileShadowNode.js", "patch": "@@ -19,6 +19,7 @@ import { min, Fn, shadow, NodeUpdateType, getShadowMaterial, getShadowRenderObje\n const { resetRendererAndSceneState, restoreRendererAndSceneState } = RendererUtils;\n let _rendererState;\n \n+const _cameraLayers = [];\n co...
2025-04-17T07:14:21
denoland/deno
824b30c99682377b567b12a73b5ef21d376c17af
3ae0124062ab3340ef13d69e36d5644d7f32d65d
fix: graceful server shutdown with open, un-upgraded connections (#31959)
[ { "path": "ext/http/http_next.rs", "patch": "@@ -874,7 +874,8 @@ async fn serve_http2_autodetect(\n options: Options,\n ) -> Result<(), HttpNextError> {\n let prefix = NetworkStreamPrefixCheck::new(io, HTTP2_PREFIX);\n- let (matches, io) = prefix.match_prefix().await?;\n+ let (matches, io) =\n+ pre...
2026-01-27T15:30:27
golang/go
1681c3b67fe5f95377fd33b98dc1f7007cf28acf
7b67b68a0da091be2d7dc3e69c4df9a1a080d0de
crypto: use rand.IsDefaultReader instead of comparing to boring.RandReader Several crypto functions accepting a rand parameter skip calling boringcrypto when the rand is not boring.RandReader. The new crypto/internal/rand package currently defines its own Reader that wraps boring.RandReader. That will unintentionally...
[ { "path": "src/crypto/ecdh/nist.go", "patch": "@@ -27,7 +27,7 @@ func (c *nistCurve) String() string {\n }\n \n func (c *nistCurve) GenerateKey(r io.Reader) (*PrivateKey, error) {\n-\tif boring.Enabled && r == boring.RandReader {\n+\tif boring.Enabled && rand.IsDefaultReader(r) {\n \t\tkey, bytes, err := bo...
2025-12-03T10:20:41
kubernetes/kubernetes
af5741da5fcc29dc32c88ee576d0ef59b95ce9f3
669b1de008629245f4437db37573b385b24519c4
Fix cases of nilness under pkg/controller.
[ { "path": "pkg/controller/statefulset/stateful_set_control_test.go", "patch": "@@ -886,7 +886,7 @@ func TestStatefulSetControl_getSetRevisions(t *testing.T) {\n \t\tif len(revisions) != test.expectedCount {\n \t\t\tt.Errorf(\"%s: want %d revisions got %d\", test.name, test.expectedCount, len(revisions))\n \...
2026-01-31T08:13:26
mrdoob/three.js
bc7aedd0261c2c745c1bb1516c47a47bcc069077
09826c0ba8abbb8c2587e6a733ca4cdf3b5cfede
TSL: Fix `debug()` changes the compiled code (#30944) * fix `build()` return value * add `webgpu_postprocessing_fxaa` unknown problem * update description
[ { "path": "src/nodes/core/Node.js", "patch": "@@ -586,12 +586,14 @@ class Node extends EventDispatcher {\n \t}\n \n \t/**\n-\t * This method performs the build of a node. The behavior of this method as well as its return value depend\n-\t * on the current build stage (setup, analyze or generate).\n+\t * Thi...
2025-04-17T02:51:27
tensorflow/tensorflow
8de23d473b06a529f5601fc44f158d42ecf547c9
c6f474034c0fffa837cc868a1fff4262da6a2dd4
PR #37520: Bump github/codeql-action from 4.32.0 to 4.32.2 Imported from GitHub PR https://github.com/openxla/xla/pull/37520 Bumps [github/codeql-action](https://github.com/github/codeql-action) from 4.32.0 to 4.32.2. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/github/co...
[ { "path": "third_party/xla/.github/workflows/scorecards-analysis.yml", "patch": "@@ -67,6 +67,6 @@ jobs:\n # Upload the results to GitHub's code scanning dashboard (optional).\n # Commenting out will disable upload of results to your repo's Code Scanning dashboard\n - name: \"Upload to cod...
2026-02-12T18:53:24
denoland/deno
3ae0124062ab3340ef13d69e36d5644d7f32d65d
1b5ba4c0e0e188351d470883115f5ddca0ea47f8
fix(unstable): lint ast comments from first file showing in others (#31956) This issue was caused by capturing the first ever invoked `ctx` variable instead of accessing the `ctx` of the file that is currently being linted. Fixes #31896
[ { "path": "cli/js/40_lint.js", "patch": "@@ -631,8 +631,8 @@ function setNodeGetters(ctx) {\n hasCommenstGetter = true;\n Object.defineProperty(FacadeNode.prototype, \"comments\", {\n get() {\n- materializeComments(ctx);\n- return ctx.comments;\n+ materializeComments(this[...
2026-01-27T13:17:31
golang/go
7b67b68a0da091be2d7dc3e69c4df9a1a080d0de
2b62144069a130cc469f33009c0c392cc6de8810
cmd/compile: use isUnsignedPowerOfTwo rather than isPowerOfTwo for unsigneds Fixes #76688 Change-Id: Icb8dab54a5ce7d83b656d50d5ea605d2a62b96f8 Reviewed-on: https://go-review.googlesource.com/c/go/+/726680 Auto-Submit: Jorropo <jorropo.pgm@gmail.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam...
[ { "path": "src/cmd/compile/internal/ssa/prove.go", "patch": "@@ -2885,9 +2885,9 @@ func simplifyBlock(sdom SparseTree, ft *factsTable, b *Block) {\n \t\t\txl := ft.limits[x.ID]\n \t\t\ty := v.Args[1]\n \t\t\tyl := ft.limits[y.ID]\n-\t\t\tif xl.umin == xl.umax && isPowerOfTwo(int64(xl.umin)) ||\n+\t\t\tif xl...
2025-12-04T03:17:58
mrdoob/three.js
ecd120d3ae030a1cc28acca47042fb948bbf8ee8
f6f01836e0ffd18138de6661aea1ed6353835df2
TSL: Fix and improve `bvec` operators (#30922) * fix bvec operators * Update OperatorNode.js * revision * rev * rev
[ { "path": "src/nodes/core/NodeBuilder.js", "patch": "@@ -2670,7 +2670,9 @@ class NodeBuilder {\n \n \t\tif ( fromTypeLength > toTypeLength ) {\n \n-\t\t\treturn this.format( `${ snippet }.${ 'xyz'.slice( 0, toTypeLength ) }`, this.getTypeFromLength( toTypeLength, this.getComponentType( fromType ) ), toType ...
2025-04-16T03:40:00
denoland/deno
9bd69275af53dd32bc55422b96bb9efae81fba6b
6b4468a841a55ffdc5c447a53b9a97bbdf4a2cc1
fix(ext/net): remove socket file when dropping unix listener (#31947)
[ { "path": "ext/net/ops_unix.rs", "patch": "@@ -47,6 +47,34 @@ impl Resource for UnixDatagramResource {\n }\n }\n \n+/// A wrapper around `UnixListener` that holds the socket path and removes it on drop.\n+pub struct UnixListenerWithPath {\n+ listener: UnixListener,\n+ path: PathBuf,\n+}\n+\n+impl UnixLi...
2026-01-27T02:30:11
tensorflow/tensorflow
7e078b68a50167131963c9a122210d532c11e6d7
586635a0c2a2bcd87274057f6b565a3546d96870
Update rules_python to latest 1.8.3 for tensorflow and xla. Doing so would enable us to use latest feature which includes a venv layout. This latest version also introduce stricter hermeticity which was first introduce in 1.7.0 as seen in logs: https://rules-python.readthedocs.io/en/latest/changelog.html#v1-7.0 (see s...
[ { "path": "tensorflow/tools/pip_package/BUILD", "patch": "@@ -248,8 +248,8 @@ py_binary(\n main = \"build_pip_package.py\",\n deps = [\n \"//tensorflow/tools/pip_package/utils:py_utils\",\n- \"@pypi_setuptools//:pkg\",\n- \"@pypi_wheel//:pkg\",\n+ \"@pypi//setuptools\",\...
2026-02-12T07:56:14
mrdoob/three.js
173a496abad65e545b132ce838b8546f95a25831
84eb1933a113abc5a7cbcd73e508f8aae3d32566
ReflectorNode: Fix `dispose()`. (#30933)
[ { "path": "src/nodes/utils/ReflectorNode.js", "patch": "@@ -161,6 +161,17 @@ class ReflectorNode extends TextureNode {\n \n \t}\n \n+\t/**\n+\t * Frees internal resources. Should be called when the node is no longer in use.\n+\t */\n+\tdispose() {\n+\n+\t\tsuper.dispose();\n+\n+\t\tthis._reflectorBaseNode.d...
2025-04-15T13:24:17
denoland/deno
6b4468a841a55ffdc5c447a53b9a97bbdf4a2cc1
a9b7c7d6d0c452a6697e8b8bbab89f427656c238
fix(ext/http): use serve address override only once (#31935)
[ { "path": "ext/http/00_serve.ts", "patch": "@@ -698,6 +698,9 @@ function formatHostName(hostname: string): string {\n return StringPrototypeIncludes(hostname, \":\") ? `[${hostname}]` : hostname;\n }\n \n+// Flag to track if DENO_SERVE_ADDRESS override has been consumed\n+let serveAddressOverrideConsumed ...
2026-01-27T00:42:27
kubernetes/kubernetes
275adf8b047da379724c91a9163f8138159ea8e8
d863fbe80b374c886453d23f7dfef60cac0f06e5
Update OpenTelemetry dependencies to latest versions Bump OpenTelemetry dependencies: - go.opentelemetry.io/otel v1.39.0 → v1.40.0 - go.opentelemetry.io/otel/metric v1.39.0 → v1.40.0 - go.opentelemetry.io/otel/sdk v1.39.0 → v1.40.0 - go.opentelemetry.io/otel/trace v1.39.0 → v1.40.0 - go.opentelemetry.io/otel/exporters...
[ { "path": "go.mod", "patch": "@@ -56,13 +56,13 @@ require (\n \tgo.etcd.io/etcd/api/v3 v3.6.7\n \tgo.etcd.io/etcd/client/pkg/v3 v3.6.7\n \tgo.etcd.io/etcd/client/v3 v3.6.7\n-\tgo.opentelemetry.io/contrib/instrumentation/github.com/emicklei/go-restful/otelrestful v0.64.0\n-\tgo.opentelemetry.io/contrib/instr...
2026-02-07T13:26:25
tensorflow/tensorflow
479d1141a403627114f9f2d0285b00d886be18ee
d68304aa74e1d004f7698ce4336029d510e1fe95
[XLA:GPU] Don't use RunAndCompare for a regression test. The regression test was added for a crash bug in the triton pipeline. It takes the longest time by far, mostly due to comparing results with HloEvaluator. Strictly speaking to prevent this crash from happening again, we don't need to actually run and compare res...
[ { "path": "third_party/xla/xla/backends/gpu/codegen/triton/fusion_emitter_device_test.cc", "patch": "@@ -2678,7 +2678,8 @@ CHECK: xtile.insert\n \n TEST_F(TritonEmitterTest,\n BitcastInBetweenReductionAndSlicedBroadcastIsLoweredCorrectly) {\n- // Regression test for b/392099316\n+ // Regression...
2026-02-12T06:37:26
mrdoob/three.js
4fdc4dca20d6ab6d35f05e4456d629e8a0506f0c
6137a62bba2ae302f1e9b8d188c9273edf4b0aa8
fixed typo in the description (#30927)
[ { "path": "docs/examples/en/controls/ArcballControls.html", "patch": "@@ -16,7 +16,7 @@ <h1>[name]</h1>\n \t\tCursor/finger positions and movements are mapped over a virtual trackball surface\n \t\trepresented by a gizmo and mapped in intuitive and consistent camera movements.\n \t\tDragging cursor/fingers ...
2025-04-15T08:31:08
denoland/deno
a9b7c7d6d0c452a6697e8b8bbab89f427656c238
a02d2201797d5e3436a251ff39e4cde6b2d4a13b
fix: enable edns for Deno.resolveDns (#31951) Currently when using `Deno.resolveDns` on a domain with many (large) records **and** using a DNS server that allows large replies over UDP, deno times out with the following error: ```ts > await Deno.resolveDns('large-txt-records.0x76.dev', 'TXT') dropped malformed messag...
[ { "path": "ext/net/01_net.js", "patch": "@@ -87,7 +87,7 @@ async function resolveDns(query, recordType, options) {\n query,\n recordType,\n options,\n- });\n+ }, /* useEdns0 */ true);\n return ArrayPrototypeMap(res, (recordWithTtl) => recordWithTtl.data);\n } finally {\n if...
2026-01-26T17:40:56
golang/go
32a9804c7ba3f4a0e0bd26cc24b9204860a49ec8
509ddf38689c10643d89c464e8386f53364635e8
cmd/link: don't update offset of existing ELF section name Fixes #76656 Change-Id: If2e823ba1577700af00f5883e4ea5c139e4749c1 Reviewed-on: https://go-review.googlesource.com/c/go/+/726100 Reviewed-by: Keith Randall <khr@golang.org> Reviewed-by: Keith Randall <khr@google.com> Reviewed-by: Michael Stapelberg <stapelberg...
[ { "path": "src/cmd/link/elf_test.go", "patch": "@@ -11,6 +11,7 @@ import (\n \t\"cmd/internal/hash\"\n \t\"cmd/link/internal/ld\"\n \t\"debug/elf\"\n+\t\"encoding/binary\"\n \t\"fmt\"\n \t\"internal/platform\"\n \t\"internal/testenv\"\n@@ -22,6 +23,7 @@ import (\n \t\"sync\"\n \t\"testing\"\n \t\"text/templ...
2025-12-03T01:01:57
swiftlang/swift
75876bfb43c6a536bbd7127f1c2f02d698659739
17da8285e39f218a0b1df6ca202eb7a7a72ad5c8
fix whitespace
[ { "path": "test/Utils/swift-function-caller-generator/method.swift", "patch": "@@ -22,6 +22,7 @@ func call_nonMutating(_ self: Foo) -> Int {\n func call_mutatingMethod(_ self: inout Foo, x: Int) {\n return self.mutatingMethod(x: x)\n }\n-func call_unsafeMethod(_ self: inout Foo, p: UnsafeMutablePointer<In...
2026-02-27T22:49:21
kubernetes/kubernetes
5e9056fe3507d1f4ec28c431c64b0cf5db67122a
8751dab9dfd8457f08ccf90c25c78366d2b3258d
k8s.io/cloud-provider: add missing --webhook-tls-* --webhook-disable-http2-serving options The webhook server was missing several TLS configuration flags that the main secure serving endpoint exposes. Add the following flags and wire them through ApplyTo: --webhook-disable-http2-serving --webhook-tls-cipher-suite...
[ { "path": "staging/src/k8s.io/cloud-provider/options/options_test.go", "patch": "@@ -33,6 +33,7 @@ import (\n \tcpconfig \"k8s.io/cloud-provider/config\"\n \tnodeconfig \"k8s.io/cloud-provider/controllers/node/config\"\n \tserviceconfig \"k8s.io/cloud-provider/controllers/service/config\"\n+\tcliflag \"k8s....
2026-02-07T11:00:51
tensorflow/tensorflow
f1e83f22e1fd4f5e4b571c5696add938a2185118
a67cb29c520592884133931085bb726eb2610a7a
Fix "No GPU detected" error when clock frequency is zero Refines the GPU device selection logic in CreateDefaultGPUDevice to handle cases where clGetDeviceIDs returns a CL_DEVICE_MAX_CLOCK_FREQUENCY of 0. PiperOrigin-RevId: 868943702
[ { "path": "tensorflow/lite/delegates/gpu/cl/cl_device.cc", "patch": "@@ -475,10 +475,10 @@ absl::Status CreateDefaultGPUDevice(CLDevice* result) {\n status = clGetDeviceInfo(devices[d], CL_DEVICE_MAX_COMPUTE_UNITS,\n sizeof(max_comp_units), &max_comp_units, NULL);\n ...
2026-02-12T02:53:41
mrdoob/three.js
1497215b4ae35fe3bbc29896226447c757e20feb
47206c5658430f45853f8406c6cdcbafb7b057df
Multiview support for webgpu renderer (#30920) * Add support for multiview * support multi-pass with webxr multiview * update fragment shader for multiview * Clean up. * Update XRManager.js * address review comment for multiview rendering * more cleanup + fixes for multiview * fix webxr layers bug + enabled mul...
[ { "path": "examples/webgpu_xr_cubes.html", "patch": "@@ -96,7 +96,7 @@\n \n \t\t\t\traycaster = new THREE.Raycaster();\n \n-\t\t\t\trenderer = new THREE.WebGPURenderer( { antialias: true, forceWebGL: true, colorBufferType: THREE.UnsignedByteType } );\n+\t\t\t\trenderer = new THREE.WebGPURenderer( { antialia...
2025-04-14T21:04:37
denoland/deno
a02d2201797d5e3436a251ff39e4cde6b2d4a13b
11f255c8813bb2463aa33447a5995f82a23ecbcf
feat(node): implement `FileHandle.readv()` method (#31943) Implements `filehandle.readv(buffers[, position])` method for the `FileHandle` class in `node:fs/promises`. This is part of #25554 tracking `FileHandle` missing methods. References: Node.js docs: https://nodejs.org/api/fs.html#filehandlereadvbuffers-position ...
[ { "path": "ext/node/polyfills/_fs/_fs_readv.ts", "patch": "@@ -18,6 +18,7 @@ import { customPromisifyArgs } from \"ext:deno_node/internal/util.mjs\";\n \n const {\n ObjectDefineProperty,\n+ Promise,\n PromisePrototypeThen,\n TypedArrayPrototypeGetByteLength,\n } = primordials;\n@@ -98,6 +99,11 @@ Obj...
2026-01-24T14:56:45
golang/go
509ddf38689c10643d89c464e8386f53364635e8
7cab1b1b26e49512a1ae56916ee39a6cc10dab46
cmd/compile: ensure bloop only kept alive addressable nodes Fixes #76636 Change-Id: I881f88dbf62a901452c1d77e6ffca651451c7790 Reviewed-on: https://go-review.googlesource.com/c/go/+/725420 Auto-Submit: Cuong Manh Le <cuong.manhle.vn@gmail.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gservi...
[ { "path": "src/cmd/compile/internal/bloop/bloop.go", "patch": "@@ -73,6 +73,14 @@ func getNameFromNode(n ir.Node) *ir.Name {\n \treturn nil\n }\n \n+// getAddressableNameFromNode is like getNameFromNode but returns nil if the node is not addressable.\n+func getAddressableNameFromNode(n ir.Node) *ir.Name {\n...
2025-12-01T09:54:54
mrdoob/three.js
8a812ee228b288527e4e90e556a3501826f0eba8
8da96d094f7e987d8304bfed07020b9e36ee919e
Fix a small bug in RenderTarget.js. I corrected the usage of depthTexture assignment in the RenderTarget constructor. Now using the setter function again like in r174 and before to ensure renderTarget is properly linked to the texture (#30921) Co-authored-by: Attila Schroeder <attila-schroeder.79@gmail.com>
[ { "path": "src/core/RenderTarget.js", "patch": "@@ -177,7 +177,8 @@ class RenderTarget extends EventDispatcher {\n \t\t */\n \t\tthis.resolveStencilBuffer = options.resolveStencilBuffer;\n \n-\t\tthis._depthTexture = options.depthTexture;\n+\t\tthis._depthTexture = null;\n+\t\tthis.depthTexture = options.de...
2025-04-13T08:30:27
tensorflow/tensorflow
4d940ce6b1d85c9ecfa7e8dc0a53bbe4dacc73e0
97bc15d983f92093e488c4650b834d134dcfc8f3
Add logic in UpdateSchedule to fix illegal schedules introduced by control dependencies. PiperOrigin-RevId: 868893559
[ { "path": "third_party/xla/xla/hlo/ir/hlo_schedule.cc", "patch": "@@ -162,9 +162,32 @@ absl::Status HloSchedule::UpdateComputationSchedule(\n InsertOrDie(&id_to_instruction, instruction->unique_id(), instruction);\n }\n \n+ // Invalidate the schedule of instructions that conflict with control\n+ // ...
2026-02-12T00:24:42
kubernetes/kubernetes
8751dab9dfd8457f08ccf90c25c78366d2b3258d
d863fbe80b374c886453d23f7dfef60cac0f06e5
k8s.io/cloud-provider: fix webhook flags description previously the webhook flags descriptions were still referencing the old flag names.
[ { "path": "staging/src/k8s.io/cloud-provider/options/webhook.go", "patch": "@@ -126,16 +126,16 @@ func (o *WebhookServingOptions) AddFlags(fs *pflag.FlagSet) {\n \n \tfs.StringVar(&o.ServerCert.CertDirectory, \"webhook-cert-dir\", o.ServerCert.CertDirectory, \"\"+\n \t\t\"The directory where the TLS certs a...
2026-02-07T10:46:53
golang/go
7cab1b1b26e49512a1ae56916ee39a6cc10dab46
1a64db3a4b3fc328f945d8271c0b98923526255d
doc: pre-announce removal of gotypesalias and asynctimerchan GODEBUG flags This announcement follows the policy outlined in #76163. For #76472. Change-Id: I4299e7f474e314810883dc4f50be6afba8c3e3e7 Reviewed-on: https://go-review.googlesource.com/c/go/+/726020 Auto-Submit: Robert Griesemer <gri@google.com> Reviewed-by...
[ { "path": "doc/godebug.md", "patch": "@@ -306,7 +306,7 @@ Go 1.23 changed the channels created by package time to be unbuffered\n and [`Timer.Reset`](/pkg/time/#Timer.Reset) method results much easier.\n The [`asynctimerchan` setting](/pkg/time/#NewTimer) disables this change.\n There are no runtime metrics...
2025-12-02T19:58:29
denoland/deno
11f255c8813bb2463aa33447a5995f82a23ecbcf
a2e3b452504cd1c925b68fae8401103ff0ea0fb2
feat: add --inspect-publish-uid flag for VSCode debugging (#31927) This commit adds `--inspect-publish-uid` flag. This flag is hidden in the help output at the moment. This flag is getting added because it allows us to properly implement certain debugging workflows in VSCode. More concretely, the --inspect-publish-ui...
[ { "path": "cli/args/flags.rs", "patch": "@@ -53,6 +53,7 @@ use deno_path_util::normalize_path;\n use deno_path_util::resolve_url_or_path;\n use deno_path_util::url_to_file_path;\n use deno_runtime::UnstableFeatureKind;\n+pub use deno_runtime::deno_inspector_server::InspectPublishUid;\n use deno_runtime::den...
2026-01-24T11:30:46
mrdoob/three.js
2edea69e6e6bb213198a9864034824b856aa9c09
bd9ac7da732e696fb2df8243c413dd877c11ad3a
TSLEncoder: Fix typo
[ { "path": "examples/jsm/transpiler/TSLEncoder.js", "patch": "@@ -61,7 +61,7 @@ class TSLEncoder {\n \t\tthis.uniqueNames = false;\n \t\tthis.reference = false;\n \n-\t\tthis._currentVarible = null;\n+\t\tthis._currentVariable = null;\n \n \t\tthis._currentProperties = {};\n \t\tthis._lastStatement = null;\n...
2025-04-13T04:32:26
swiftlang/swift
cceccf508da29a4d6104dc3cc597c7d7af8173c1
eb7d285971fc2317361c17b4f2d9e0b48f7c0e6a
Suggest 'isolated' for deinit when accessing a relevant actor Fixes rdar://154409893 by adding a function maybeAddIsolatedDeinitFixIt to emit a note about the isolation domain and a fix-it for inserting 'isolated'. Call this function after emitting any relevant errors about accessing actor isolated state. Also scatter...
[ { "path": "include/swift/AST/DiagnosticsSema.def", "patch": "@@ -5835,6 +5835,12 @@ GROUPED_ERROR(actor_isolated_call,ActorIsolatedCall,none,\n GROUPED_ERROR(actor_isolated_call_decl,ActorIsolatedCall,none,\n \"call to %0 %kind1 in a synchronous %2 context\",\n (ActorIsolation, const ValueDecl *...
2026-02-27T03:03:49
kubernetes/kubernetes
efe3667b6b0893e5575d0bdd2bdb195bd4fea287
17810c62495a4ac94656cdfeb38c950d45b4c09f
Add 404 handling for the statefulset controller pod deletion codepath The daemonset controller already has handling for NotFound errors. Right now if the statefulset controller is attempting to scale down a statefulset and its informer cache is stale, it can get hard-blocked on a missing pod. This issue will eventua...
[ { "path": "pkg/controller/statefulset/stateful_pod_control.go", "patch": "@@ -194,9 +194,12 @@ func (spc *StatefulPodControl) UpdateStatefulPod(ctx context.Context, set *apps.\n }\n \n func (spc *StatefulPodControl) DeleteStatefulPod(set *apps.StatefulSet, pod *v1.Pod) error {\n-\terr := spc.objectMgr.Delet...
2026-02-06T18:03:42
tensorflow/tensorflow
c95e05b96a06acd1544d533118d18d488acfcf16
0afeef0c555a9b6378d3d52ce00846d56b4f19b0
avoid CHECK_OK Better to propagate absl::Status in this case. This will preserve "stacktrace" in case of error. PiperOrigin-RevId: 868837994
[ { "path": "third_party/xla/xla/backends/autotuner/autotuner.cc", "patch": "@@ -349,10 +349,11 @@ tsl::Future<Autotuner::Config> Autotuner::GetConfig(HloInstruction* instr) {\n }\n \n VLOG(1) << \"Autotuning the HLO instruction to find best config.\";\n- return TuneBestConfig(instr).Map([&, instr](Autot...
2026-02-11T22:11:26
golang/go
1a64db3a4b3fc328f945d8271c0b98923526255d
2e06fa6b68bf5fff7f2dd1ba55dba6fc1d206ebf
spec: remove restriction on channel element types for close built-in (bug fix) The spec states that if the argument type for close is a type parameter, it's type set must only contain channels and they must all have the same element type. This latter requirement (all must have the same element type) was never enforced...
[ { "path": "doc/go_spec.html", "patch": "@@ -7496,7 +7496,7 @@ <h3 id=\"Close\">Close</h3>\n <p>\n If the type of the argument to <code>close</code> is a\n <a href=\"#Type_parameter_declarations\">type parameter</a>,\n-all types in its type set must be channels with the same element type.\n+all types in its ...
2025-12-02T22:32:13
denoland/deno
a2e3b452504cd1c925b68fae8401103ff0ea0fb2
bbc02e4d6ea99049c1c9cee1e0717f042c6fd71c
fix(x): use local npm package even if npm specifier is used, forward unstable flags (#31942) Fixes #31933. parts of the changes + tests written by claude, investigation and idea for the fix + tests by myself
[ { "path": "cli/args/mod.rs", "patch": "@@ -1320,6 +1320,16 @@ impl CliOptions {\n unstable_features\n }\n \n+ /// Returns unstable feature flags as CLI arguments (e.g., \"--unstable-unsafe-proto\").\n+ /// This includes features from both CLI flags and config file.\n+ pub fn unstable_args(&self) ->...
2026-01-24T11:30:15
mrdoob/three.js
bd9ac7da732e696fb2df8243c413dd877c11ad3a
6ff21e0942e15845f0fbffc309bba51270ae4063
TSL: Add `increment` and `decrement` and fix unsual `for()` expression syntax for transpiler (#30912) * TSLEncoder: Remove `While` usage. * Revert "TSLEncoder: Remove `While` usage." This reverts commit 28957ed87bd0de2057cd5807f6af7f4827420ab0. * fix afterthought for operators * fix While -> Loop * fix `++` opera...
[ { "path": "examples/jsm/transpiler/GLSLDecoder.js", "patch": "@@ -414,7 +414,6 @@ class GLSLDecoder {\n \n \t\t}\n \n-\n \t\t// unary operators (after)\n \n \t\tif ( lastToken.isOperator ) {\n@@ -894,7 +893,7 @@ class GLSLDecoder {\n \n \t\t\t//\n \n-\t\t\tif ( token.isLiteral ) {\n+\t\t\tif ( token.isLiter...
2025-04-13T03:17:54
golang/go
043b9de65825abef6d8946affda075a777dfb322
e432b4f3a1e067ac8fe7b8e0edbe60ca1f52475d
net: parse addresses without separators in ParseMac IEEE EUI guidelines states that "an EUI-48 can be represented in the IEEE RA hexadecimal (hex) form with the octets separated by hyphens, or as a pure base-16 numerical representation without hyphens" (https://standards.ieee.org/wp-content/uploads/import/documents/tu...
[ { "path": "src/net/mac.go", "patch": "@@ -36,8 +36,9 @@ func (a HardwareAddr) String() string {\n //\t0000.5e00.5301\n //\t0200.5e10.0000.0001\n //\t0000.0000.fe80.0000.0000.0000.0200.5e10.0000.0001\n+//\t00005e005301\n func ParseMAC(s string) (hw HardwareAddr, err error) {\n-\tif len(s) < 14 {\n+\tif len(s...
2025-11-25T07:38:09
swiftlang/swift
694a9bef2a9f8ee53fa0b00e63087648aca4a19f
21dc148496a39536c6124f1967e9e9205d6b230e
[test] fix for backdeployment testing These were using the wrong availability macro for the purpose of limiting backdeployment testing.
[ { "path": "test/stdlib/subString.swift", "patch": "@@ -318,12 +318,8 @@ SubstringTests.test(\"Substring.base\") {\n }\n \n SubstringTests.test(\"isTriviallyIdentical(to:) small ascii\")\n-.skip(.custom(\n- { if #available(StdlibDeploymentTarget 6.4, *) { false } else { true } },\n- reason: \"Requires Swif...
2026-02-27T19:33:17