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 | 2a1d605e7f5a0f8870abb9cc26edf27db3ad5452 | f745645e58d8c2da47da402871d92eab4c498187 | cmd/compile: fix slice bounds check elimination after function inlining
When creating a dynamically-sized slice, the compiler attempts to use a
stack-allocated buffer if the slice does not escape and its buffer size
is ≤ 32 bytes.
In this case, the SSA will contain a (OpPhi (OpSliceMake) (OpSliceMake))
value: one OpS... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/generic.rules",
"patch": "@@ -1017,6 +1017,8 @@\n (ConstNil <v.Type.Elem().PtrTo()>)\n (Const64 <typ.Int> [0])\n (Const64 <typ.Int> [0]))\n+(SliceLen (Phi (SliceMake _ x _) (SliceMake _ x _))) => x\n+(SliceCap (Phi (SliceMake _ _ x) (SliceMake _ _ x))... | 2026-01-31T03:23:41 |
tensorflow/tensorflow | 6401e042d0e1c5ba2a88a8d60eff9a817026c8cd | 1a8324e9100df20237d0449354450cf9381cbcae | Avoid crashing inside `CudaContext::SetActive()` if it failed due to the driver being in the process of shutdown
PiperOrigin-RevId: 882828776 | [
{
"path": "third_party/xla/xla/stream_executor/cuda/cuda_context.cc",
"patch": "@@ -182,7 +182,12 @@ absl::StatusOr<CudaContext*> CudaContext::Create(int device_ordinal,\n }\n \n void CudaContext::SetActive() {\n- CHECK_OK(cuda::ToStatus(cuCtxSetCurrent(context_), \"Failed setting context\"));\n+ CUresult... | 2026-03-12T23:10:20 |
mrdoob/three.js | 27255fe9cb7631fc41e7f5ad6677d653a3104fc9 | 1e6ed3fd250b26f58d8474098925f3c05fd977ff | Renderers: Use internal `log`, `warn` and `error` functions instead of the system ones (#31790)
* use internal `log`, `warn` and `error` functions instead of the system
* automatic addition of the `THREE.` prefix
* automatic addition of the `THREE.` prefix (2)
* cleanup
* cleanup
* cleanup
* Update WebGPUPipelin... | [
{
"path": "src/Three.Core.js",
"patch": "@@ -1,4 +1,5 @@\n import { REVISION } from './constants.js';\n+import { warn } from './utils.js';\n \n export { WebGLArrayRenderTarget } from './renderers/WebGLArrayRenderTarget.js';\n export { WebGL3DRenderTarget } from './renderers/WebGL3DRenderTarget.js';\n@@ -157... | 2025-09-04T01:20:32 |
swiftlang/swift | fd992cc836e9c343ce022bf46c50f2b689699ba1 | d13cbbfd336f246d29e6bfdfe74568fab93ac8af | [Dependency Scanner] Speculatively fix diagnostic consumer use-after-destroy in compiler sub-instances
In `runInSubCompilerInstance`, the `CompilerInstance` was declared before its diagnostic consumers (`ForwardingDiagnosticConsumer` and `NullDiagnosticConsumer`). C++ destroys local variables in reverse declaration or... | [
{
"path": "lib/Frontend/ModuleInterfaceLoader.cpp",
"patch": "@@ -2151,9 +2151,11 @@ InterfaceSubContextDelegateImpl::runInSubCompilerInstance(StringRef moduleName,\n subInvocation.getFrontendOptions().InputsAndOutputs\n .setMainAndSupplementaryOutputs(outputFiles, ModuleOutputPaths);\n \n- CompilerI... | 2026-03-16T15:15:02 |
golang/go | f745645e58d8c2da47da402871d92eab4c498187 | b45c59c443a0aac0abed3f35e8e307ec5e1c587b | cmd/compile/internal/bitvec: remove 2GB allocation limit in NewBulk
Remove the "NewBulk too big" check that prevented bulk bit vector
allocations exceeding ~2GB. This limit was overly restrictive and
caused compilation failures for large generated code.
The actual constraint is in the runtime's stackmap reader, which... | [
{
"path": "src/cmd/compile/internal/bitvec/bv.go",
"patch": "@@ -8,7 +8,6 @@ import (\n \t\"math/bits\"\n \n \t\"cmd/compile/internal/base\"\n-\t\"cmd/internal/src\"\n )\n \n const (\n@@ -34,12 +33,9 @@ type Bulk struct {\n \tnword int32\n }\n \n-func NewBulk(nbit int32, count int32, pos src.XPos) Bulk {\n+... | 2026-01-13T22:27:32 |
kubernetes/kubernetes | e74b4063d825a88136d40c539a50a0367aeb7d1e | 7be3d29f0d624c582a55ff6e41da74158d478bb6 | chore: reorganize `component-base/metrics`
This commit reorganizes component-base's metrics package to bring about
the following changes:
* migrate all related functions and methods to options.go (from
registry.go)
* inline v1.MetricsConfiguration in Options and expose it in api/v1,
also re-generate deepcopy asset... | [
{
"path": "hack/verify-prometheus-imports.sh",
"patch": "@@ -58,6 +58,7 @@ allowed_prometheus_importers=(\n ./staging/src/k8s.io/component-base/metrics/legacyregistry/registry.go\n ./staging/src/k8s.io/component-base/metrics/metric.go\n ./staging/src/k8s.io/component-base/metrics/opts.go\n+ ./staging... | 2025-08-20T22:00:27 |
tensorflow/tensorflow | 83f2ae4d3201a0db94e6c2d80dd9879b7d022589 | 14d761e17ba39be3fbee04a5a07827b7e836dd2c | Add rules_python patch to XLA compute_library to fix %interpreter% error
PiperOrigin-RevId: 882712618 | [
{
"path": "third_party/xla/third_party/compute_library/workspace.bzl",
"patch": "@@ -11,6 +11,7 @@ def repo():\n \"//third_party/compute_library:compute_library.patch\",\n \"//third_party/compute_library:exclude_omp_scheduler.patch\",\n \"//third_party/compute_library:inc... | 2026-03-12T19:10:23 |
mrdoob/three.js | 1e6ed3fd250b26f58d8474098925f3c05fd977ff | bc8f19db71539c2e623b72fcf96b49cad371c3f4 | TSL: Fix coordinate types for `load()` on 3D texture nodes (#31775)
* Fix incorrect coordinate types for load()
* Fix null level, align the order of parameters with generateTexture | [
{
"path": "src/nodes/accessors/CubeTextureNode.js",
"patch": "@@ -123,7 +123,7 @@ class CubeTextureNode extends TextureNode {\n \t */\n \tgenerateUV( builder, cubeUV ) {\n \n-\t\treturn cubeUV.build( builder, 'vec3' );\n+\t\treturn cubeUV.build( builder, this.sampler === true ? 'vec3' : 'ivec3' );\n \n \t}\... | 2025-09-03T15:45:15 |
golang/go | b45c59c443a0aac0abed3f35e8e307ec5e1c587b | 174c92bd7428b41b9b5b59274a83f387a12261c9 | crypto/tls: fix CurvePreferences comment
SecP256r1MLKEM768 appeared twice while the second should have been
SecP384r1MLKEM1024.
Change-Id: I0587b53248d2948fe7a33313871c39fe76251e9c
GitHub-Last-Rev: de535819a33347feacfaa32d984ce58d206613d0
GitHub-Pull-Request: golang/go#77551
Reviewed-on: https://go-review.googlesourc... | [
{
"path": "src/crypto/tls/common.go",
"patch": "@@ -807,7 +807,7 @@ type Config struct {\n \t// or use the GODEBUG=tlsmlkem=0 environment variable.\n \t//\n \t// From Go 1.26, the default includes the [SecP256r1MLKEM768] and\n-\t// [SecP256r1MLKEM768] hybrid post-quantum key exchanges, too. To disable\n+\t/... | 2026-02-11T21:00:12 |
kubernetes/kubernetes | df9ee166f53b6c766cb254aaa9feecbd704955e1 | 77b45524d9c79f7d823a3aa46cdf97e04b8cf8f4 | kep-3926: add bit-flip corruption test for Secrets decoder error path
Add TestBitFlipCorruptObjectDeletion to exercise the decoder error path
for KEP-3926 using Secrets (protobuf encoding). Unlike the existing
TestAllowUnsafeMalformedObjectDeletionFeature which tests transformer
errors (wrong encryption key), this tes... | [
{
"path": "test/integration/controlplane/transformation/bitflip_transformation_test.go",
"patch": "@@ -0,0 +1,288 @@\n+/*\n+Copyright The Kubernetes Authors.\n+\n+Licensed under the Apache License, Version 2.0 (the \"License\");\n+you may not use this file except in compliance with the License.\n+You may ob... | 2026-03-02T11:18:06 |
mrdoob/three.js | bc8f19db71539c2e623b72fcf96b49cad371c3f4 | 197f8d98fee17e6e042fcbe889a35be6bccd4adc | fix: use the same hand model clearing as used in OculusHandModel to prevent the hand models from looking inside out (#31634)
Co-authored-by: jorodi <jorodi@mpb16> | [
{
"path": "examples/jsm/webxr/XRHandModelFactory.js",
"patch": "@@ -179,16 +179,12 @@ class XRHandModelFactory {\n \n \t\t\t}\n \n-\t\t\tcontroller.visible = true;\n-\n \t\t} );\n \n \t\tcontroller.addEventListener( 'disconnected', () => {\n \n-\t\t\tcontroller.visible = false;\n-\t\t\t// handModel.motionCo... | 2025-09-03T15:24:55 |
swiftlang/swift | a21b400fca00f2e7a65c8903b1bafb901c8d2d68 | d13cbbfd336f246d29e6bfdfe74568fab93ac8af | [NFC][Dependency Scanning] Small linter fixes
- Remove unused headers
- Sort headers
- Extend anonymous namespace in DependencyScanJSON.cpp | [
{
"path": "include/swift/AST/ModuleDependencies.h",
"patch": "@@ -20,7 +20,6 @@\n \n #include \"swift/AST/Import.h\"\n #include \"swift/AST/LinkLibrary.h\"\n-#include \"swift/Basic/Assertions.h\"\n #include \"swift/Basic/CXXStdlibKind.h\"\n #include \"swift/Basic/LLVM.h\"\n #include \"swift/Serialization/Va... | 2026-03-16T12:07:07 |
denoland/deno | 5d6b10607a0512f5bcac2158cefd110b259a9aac | 75c96382a90f7de074766d66112f17838aea7a6b | fix(ext/node): handle partial writes to process.stdout/stderr (#32433)
## Summary
- Fix silent data truncation when piping >64KB through `process.stdout`
in Node compat mode
- The `_write` handler in `createWritableStdioStream` discarded the
return value of `writer.writeSync()`, assuming all bytes were always
written... | [
{
"path": "ext/node/polyfills/_process/streams.mjs",
"patch": "@@ -47,11 +47,18 @@ export function createWritableStdioStream(writer, name, warmup = false) {\n // being created from a raw fd (new Socket({ fd: 1 })), process.stdout/stderr\n // should be switched to net.Socket for non-TTY cases and... | 2026-03-03T15:56:51 |
golang/go | fbe55325ddce51a7fc099e1efb0d326e7a2e1ed8 | 20bc1949722c1fd66de5d568f1422845332d18f3 | cmd/compile: replace conditions to CCMP instructions on ARM64
This change introduces a new SSA pass that converts conditionals
with logical AND into CMP/CCMP instruction sequences on ARM64.
Fixes #71268
Change-Id: I3eba9c05b88ed6eb70350d30f6e805e6a4dddbf1
Reviewed-on: https://go-review.googlesource.com/c/go/+/698099... | [
{
"path": "src/cmd/compile/internal/ssa/compile.go",
"patch": "@@ -501,7 +501,8 @@ var passes = [...]pass{\n \t{name: \"lowered deadcode\", fn: deadcode, required: true},\n \t{name: \"checkLower\", fn: checkLower, required: true},\n \t{name: \"late phielim and copyelim\", fn: copyelim},\n-\t{name: \"tighten... | 2025-08-21T17:09:59 |
mrdoob/three.js | 1194f3ae20343ce4803aa8efe027ca3a8d4cea6a | b8cfbe28e137c5a302597a52058e62851eb18b70 | TSL: Minor fixes. (#31808)
* TSL: Minor fixes.
* TSL: Rename `PI` constants. | [
{
"path": "examples/webgpu_tsl_angular_slicing.html",
"patch": "@@ -28,7 +28,7 @@\n \t\t<script type=\"module\">\n \n \t\t\timport * as THREE from 'three/webgpu';\n-\t\t\timport { If, PI2, atan, color, frontFacing, output, positionLocal, Fn, uniform, vec4 } from 'three/tsl';\n+\t\t\timport { If, TWO_PI, ata... | 2025-09-03T15:00:45 |
denoland/deno | d45142b6d82b26945a6b43e0e57355a3a8631888 | 83e374686079a2f067115e60ad91ec38f4f6118b | fix(ext/node): make UDP socket ops synchronous, implement missing dgram methods (#32381)
## Summary
- Creates a new `NodeUdpSocketResource` in `ext/node` that stores
`tokio::net::UdpSocket` directly (no `AsyncRefCell`), making all socket
config operations synchronous
- Replaces `udp_wrap.ts`'s dependency on `ext:deno... | [
{
"path": "ext/node/lib.rs",
"patch": "@@ -337,6 +337,20 @@ deno_core::extension!(deno_node,\n ops::inspector::op_inspector_disconnect,\n ops::inspector::op_inspector_emit_protocol_event,\n ops::inspector::op_inspector_enabled,\n+ ops::udp::op_node_udp_bind,\n+ ops::udp::op_node_udp_join_m... | 2026-03-03T14:55:23 |
golang/go | 20bc1949722c1fd66de5d568f1422845332d18f3 | b40f0b118014f8dbc25e8ef4de82ccf78410903f | cmd/link: handle runtime.type based on size, not GOOS
When handling type descriptors, we add some space at the start
to ensure that offset 0 does not refer to a valid type descriptor.
AIX has an initial runtime.types symbol with a non-zero size,
so we used that instead of adding some space.
In some cases Darwin also ... | [
{
"path": "src/cmd/link/internal/ld/data.go",
"patch": "@@ -1498,7 +1498,7 @@ func fixZeroSizedSymbols(ctxt *Link) {\n \tdefineRuntimeTypes := func() {\n \t\ttypes := ldr.CreateSymForUpdate(\"runtime.types\", 0)\n \t\ttypes.SetType(sym.STYPE)\n-\t\ttypes.SetSize(8)\n+\t\ttypes.SetSize(int64(ctxt.Arch.PtrSiz... | 2026-02-12T05:23:49 |
mrdoob/three.js | b8cfbe28e137c5a302597a52058e62851eb18b70 | 34fb7479e4e13e73b7b7457237abba290fc89d52 | WebGLBackend: Align `copyTextureToTexture` with `WebGLRenderer` (#31810)
* Align copyTextureToTexture with WebGLRenderer
* Rollback unintentional removal of isArrayTexture conditional
* Declare scratch framebuffers in constructor, delete them on disposal
* Fix formatting | [
{
"path": "src/renderers/webgl-fallback/WebGLBackend.js",
"patch": "@@ -2619,6 +2619,8 @@ class WebGLBackend extends Backend {\n \t */\n \tdispose() {\n \n+\t\tif ( this.textureUtils !== null ) this.textureUtils.dispose();\n+\n \t\tconst extension = this.extensions.get( 'WEBGL_lose_context' );\n \t\tif ( ex... | 2025-09-03T14:56:01 |
kubernetes/kubernetes | dd6f4d3a16306c9cc8dbc6a210c0b7a38fa1eb68 | 6be0185960058cbde6ba5265bc1679837806c179 | DRA scheduler: avoid panic during PreBind
It can happen that a claim gets deallocated in parallel to adding a new pod to
ReservedFor. Without binding conditions, that was caught by the apiserver
validation. With binding conditions, the code which checks and sets
AllocationTimestamp panics with a nil pointer access.
T... | [
{
"path": "pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go",
"patch": "@@ -1244,8 +1244,17 @@ func (pl *DynamicResources) bindClaim(ctx context.Context, state *stateData, ind\n \t\t// preconditions. The apiserver will tell us with a\n \t\t// non-conflict error if this isn't possible.\n ... | 2026-03-03T15:21:38 |
tensorflow/tensorflow | 8f729866a2b4e4a3739a0b3faaba9c0051d7b772 | e4cd1cf2e36847f232a2f55e5e0d4013edebcd5b | PR #39082: [XLA:GPU][oneAPI][Bug Fix] Add minimal oneAPI support to ExecutableAbiVersion
Imported from GitHub PR https://github.com/openxla/xla/pull/39082
📝 Summary of Changes
Hot-Fix for breaking changes in https://github.com/openxla/xla/commit/5150bfd950537354a9517654df71efbf91fd876b
This is in line with the simi... | [
{
"path": "third_party/xla/xla/stream_executor/abi/BUILD",
"patch": "@@ -42,6 +42,7 @@ xla_cc_test(\n \"//xla/stream_executor:semantic_version\",\n \"//xla/stream_executor/cuda:cuda_compute_capability\",\n \"//xla/stream_executor/rocm:rocm_compute_capability\",\n+ \"//xla/stre... | 2026-03-12T15:10:18 |
swiftlang/swift | 040bb30e612148cf94280742c67c10adc4a31c45 | d0e0329f952696186eaa4e0cf808b48cc4eecb16 | [test] Add some more known crashers | [
{
"path": "validation-test/IDE/crashers/ASTMangler-appendConstrainedExistential-9fd558.swift",
"patch": "@@ -0,0 +1,15 @@\n+// {\"kind\":\"complete\",\"original\":\"ea03c605\",\"signature\":\"swift::Mangle::ASTMangler::appendConstrainedExistential(swift::Type, swift::GenericSignature, swift::ValueDecl const... | 2026-03-16T10:52:04 |
denoland/deno | c15deead44dcc7208a045ba0503e2bf8e9cf05cf | 3f459413b2d18458268024d1ce0dad715240c2ce | fix(npm): NPM_CONFIG_REGISTRY correctly overrides .npmrc (#32394)
Co-authored-by: David Sherret <dsherret@gmail.com> | [
{
"path": "Cargo.lock",
"patch": "@@ -2779,6 +2779,7 @@ dependencies = [\n \"serde\",\n \"serde_json\",\n \"sha2\",\n+ \"sys_traits\",\n \"thiserror 2.0.12\",\n \"tokio\",\n \"url\",",
"additions": 1,
"deletions": 0,
"language": "Unknown"
},
{
"path": "cli/lsp/npm.rs",
"patch":... | 2026-03-03T12:13:11 |
golang/go | 54c46328ccb9d559fa21c09fd8e2dff22a99c72c | 683aa8893a5e2e99ef48fa4502b507a0fe92acc8 | internal/poll: avoid race between execIO and DisassociateIOCP
This is a step towards deferring adding the handle to IOCP until the
first IO operation.
There is a small race windows between execIO and DisassociateIOCP where
execIO checks if the fd is disassociated before passing the operation to
the OS. DisassociateIO... | [
{
"path": "src/internal/poll/export_test.go",
"patch": "@@ -27,7 +27,7 @@ func (mu *XFDMutex) Decref() bool {\n }\n \n func (mu *XFDMutex) RWLock(read bool) bool {\n-\treturn mu.rwlock(read)\n+\treturn mu.rwlock(read, waitLock)\n }\n \n func (mu *XFDMutex) RWUnlock(read bool) bool {",
"additions": 1,
... | 2026-02-02T09:42:28 |
mrdoob/three.js | b83d9abed47408346ae1c8113360f818b0f0d084 | 43849031e1e521b18c76a061ab681db45a2b212d | Add FastHDR environment example page (#31749)
* add fasthdr example
* Remove unused variables
* Fix grey sphere
* add missing target blank
* add to tags.json
* add controls for FOV, hdri, backgroundBlurriness
* rename "hdri" to "image" | [
{
"path": "examples/files.json",
"patch": "@@ -142,6 +142,7 @@\n \t\t\"webgl_materials_envmaps_exr\",\n \t\t\"webgl_materials_envmaps_groundprojected\",\n \t\t\"webgl_materials_envmaps_hdr\",\n+\t\t\"webgl_materials_envmaps_fasthdr\",\n \t\t\"webgl_materials_matcap\",\n \t\t\"webgl_materials_normalmap\",\n ... | 2025-09-03T11:32:40 |
kubernetes/kubernetes | 6be0185960058cbde6ba5265bc1679837806c179 | 90e75ac8cf0be4d12c4f4e493911e0cbe08f6ee4 | DRA integration: fix goroutine leak in ControllerManagerMetrics test
The goroutine did not keep running for long, but waiting for the controller to
stop is better. Noticed because of:
E0303 07:43:20.154262 39037 runtime.go:221] "Work item failed" err="Operation cannot be fulfilled on resourceclaims.resource.k8s.... | [
{
"path": "test/integration/dra/dra_test.go",
"patch": "@@ -1514,7 +1514,12 @@ func testControllerManagerMetrics(tCtx ktesting.TContext) {\n \t)\n \n \t// Start the controller (this will run in background and stop when tCtx is cancelled)\n-\trunResourceClaimController()\n+\tvar wg sync.WaitGroup\n+\ttCtx.Cl... | 2026-03-03T14:51:52 |
tensorflow/tensorflow | 31d19f0687f6fee549da1087b3488dc202aa6bcf | 0a54eb585a20e4acc723394354b51db5117db1de | PR #37992: [ROCm] Fix invalid split_k/block_k configs in autotune search space
Imported from GitHub PR https://github.com/openxla/xla/pull/37992
📝 Summary of Changes
The autotune search space could generate split_k and block_k combinations that fail MakeSplitKOperand validation. Correct the max split_k calculation a... | [
{
"path": "third_party/xla/xla/backends/gpu/autotuner/triton/dot_search_space.cc",
"patch": "@@ -428,11 +428,19 @@ int TritonDotFusionSearchSpace::GetMaxContractingSplit(\n VLOG(5) << \"Computing split_k: Want split_k of up to \" << split_for_occupancy\n << \" for sufficient occupancy.\";\n \n+ ... | 2026-03-12T14:52:45 |
denoland/deno | 74cc882fe924caeaea9abc7604dca76e4e83b980 | 0cfe40a82c91b3dfb8a3b4a818dbf190156bbbf7 | fix(ext/node): gracefully exit on invalid NODE_CHANNEL_FD instead of panicking (#32421)
## Summary
- When process managers like PM2 set `NODE_CHANNEL_FD` to a file
descriptor that isn't a valid IPC pipe, Deno would panic during
bootstrap with "Bootstrap exception"
- Now it prints a clear error message and exits with c... | [
{
"path": "ext/node/ops/ipc.rs",
"patch": "@@ -186,18 +186,28 @@ mod impl_ {\n log::debug!(\"op_node_child_ipc_pipe: {:?}, {:?}\", fd, serialization);\n let ref_tracker = IpcRefTracker::new(state.external_ops_tracker.clone());\n match serialization {\n- ChildIpcSerialization::Json => Ok(Som... | 2026-03-03T10:46:09 |
swiftlang/swift | d0e0329f952696186eaa4e0cf808b48cc4eecb16 | 42b0cfc6af80611cb9d19bb65d9687b2ccfd2ede | [test] Add a couple of fixed crashers | [
{
"path": "validation-test/compiler_crashers_fixed/RequirementMatch-a82a08.swift",
"patch": "@@ -0,0 +1,11 @@\n+// {\"kind\":\"typecheck\",\"original\":\"a8054c26\",\"signature\":\"swift::RequirementMatch llvm::function_ref<swift::RequirementMatch (bool, llvm::ArrayRef<swift::OptionalAdjustment>)>::callback... | 2026-03-16T10:52:04 |
golang/go | 456d0fe4092cb794a02027e178486bc31f05a8e0 | a430bc1bd73ab9a7d4a0c740add9760914588396 | cmd/link: correct libc dynamic linker path
Ref: https://github.com/riscv-non-isa/riscv-elf-psabi-doc/issues/114
Fixes #77209
Change-Id: I8b575a95ad4e6a7e792514d7fcf9497599c1e404
Reviewed-on: https://go-review.googlesource.com/c/go/+/737180
Reviewed-by: Pengcheng Wang <wangpengcheng.pp@bytedance.com>
Reviewed-by: Qui... | [
{
"path": "src/cmd/link/internal/riscv64/obj.go",
"patch": "@@ -38,7 +38,8 @@ func Init() (*sys.Arch, ld.Arch) {\n \t\tMachoreloc1: machoreloc1,\n \n \t\tELF: ld.ELFArch{\n-\t\t\tLinuxdynld: \"/lib/ld.so.1\",\n+\t\t\tLinuxdynld: \"/lib/ld-linux-riscv64-lp64d.so.1\",\n+\t\t\tLinuxdynldMusl: \"/lib/ld-mus... | 2026-01-17T04:19:13 |
mrdoob/three.js | 43849031e1e521b18c76a061ab681db45a2b212d | 3655e9fa2644df36a07ab4f6aa42f28fd4ce1137 | Added CSS3D + WebGL example. (#31572)
* Added CSS3D + WebGL example.
* Potential fix for code scanning alert no. 3617: Semicolon insertion
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
---------
Co-authored-by: Copilot Autofix powered by AI <6231081... | [
{
"path": "examples/css3d_mixed.html",
"patch": "@@ -0,0 +1,201 @@\n+<!DOCTYPE html>\n+<html>\n+\t<head>\n+\t\t<title>three.js css3d - mixed</title>\n+\t\t<meta charset=\"utf-8\">\n+\t\t<meta name=\"viewport\" content=\"width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0\">\n+\t\t<lin... | 2025-09-03T10:56:59 |
kubernetes/kubernetes | 532cc47d710249928e9ae10fab6d4bd01eef6f4b | b9e0f9d10ae94665d6fc1817f7310672a905ffd0 | Fix incorrect error message in container restart policy validation | [
{
"path": "pkg/apis/core/validation/validation.go",
"patch": "@@ -3703,7 +3703,7 @@ func validateContainerRestartPolicy(policy *core.ContainerRestartPolicy, rules [\n \t\t\tallowedActions = supportedContainerRestartRuleActionsWithRestartAllContainers\n \t\t}\n \t\tif !allowedActions.Has(rule.Action) {\n-\t\... | 2026-03-03T13:17:56 |
tensorflow/tensorflow | 0a54eb585a20e4acc723394354b51db5117db1de | f85a4191710a582d0175755560db8b535b6294e4 | PR #37773: [XLA:GPU][oneAPI] Adding sycl all_runtime dependency to codegen tools
Imported from GitHub PR https://github.com/openxla/xla/pull/37773
This PR fixes
`"Failed to create PjRt client. NOT_FOUND: Could not find registered platform with name: "sycl". Available platform names are: Interprete"`
Following test s... | [
{
"path": "third_party/xla/xla/backends/gpu/codegen/tools/BUILD",
"patch": "@@ -2,6 +2,10 @@ load(\n \"@local_config_rocm//rocm:build_defs.bzl\",\n \"if_rocm_is_configured\",\n )\n+load(\n+ \"@local_config_sycl//sycl:build_defs.bzl\",\n+ \"if_sycl_is_configured\",\n+)\n load(\"@rules_cc//cc:cc... | 2026-03-12T14:39:22 |
golang/go | 97c48fd93db95f56849395cf8c7447232d56607a | d3ddc4854429185e6e06ca1f7628bb790404abb5 | cmd/compile: move likely used values into registers before entering loop
When we are about to enter a loop, we try to put values that will
be used soon into registers, so we put them into registers once outside
the loop instead of N times inside the loop.
But we currently don't kick out values we won't use for a whil... | [
{
"path": "src/cmd/compile/internal/ssa/func_test.go",
"patch": "@@ -260,6 +260,11 @@ func Eq(cond, sub, alt string) ctrl {\n \treturn ctrl{BlockAMD64EQ, cond, []string{sub, alt}}\n }\n \n+// Lt specifies a BlockAMD64LT.\n+func Lt(cond, yes, no string) ctrl {\n+\treturn ctrl{BlockAMD64LT, cond, []string{yes... | 2026-02-09T23:38:55 |
denoland/deno | 25dbe4c8b95a1c7bc6cee5880d63f6e73c117a78 | 28ec7c0ecdaf2648a8796f8766adac9ab09231e6 | fix(ext/node): support SEC1 EC private key import/export in `node:crypto` (#32401)
## Summary
- Fix SEC1 EC private key import failing with "malformed or missing
named curve in ec parameters" when the optional `parameters` field is
absent
- Fix SEC1 EC private key export to include the curve OID in the
`parameters` f... | [
{
"path": "ext/node_crypto/keys.rs",
"patch": "@@ -719,6 +719,50 @@ pub enum AsymmetricPublicKeyError {\n UnsupportedPrivateKeyOid,\n }\n \n+/// Parse an EC private key from SEC1 DER bytes using the named curve OID.\n+/// The curve OID is required — inferring from key length is unreliable\n+/// (e.g. P-25... | 2026-03-03T10:01:35 |
mrdoob/three.js | 8e16eaf1c2a06264e4b9edc798ffd6031d53c822 | f28712f27acbeed8ab6cb78d825948f93381e51b | TSL: Add bitcast functions and transpiler support (#31781)
* add bitcast to wgsl/tsl encoders
* alias GLSL functions
* glsl aliasing, change outputType based on inputType
* fix bracket spacing ah-gain
* add js-doc
---------
Co-authored-by: sunag <sunagbrasil@gmail.com> | [
{
"path": "examples/jsm/transpiler/WGSLEncoder.js",
"patch": "@@ -80,6 +80,10 @@ const wgslLib = {\n \t'textureLod': 'textureSampleLevel',\n \t'texelFetch': 'textureLoad',\n \t'textureGrad': 'textureSampleGrad',\n+\t'floatBitsToInt': 'bitcast<i32>',\n+\t'floatBitsToUint': 'bitcast<u32>',\n+\t'intBitsToFloat... | 2025-09-02T23:01:55 |
kubernetes/kubernetes | 0659a346eac54ef62029e439c5b01a971e868282 | b9e0f9d10ae94665d6fc1817f7310672a905ffd0 | fix(kube-proxy): fix health check binding failure in case of dual-stack
In case of dual-stack, kube-proxy tries to bind both IPv4 and IPv6
health check instances to the same address and port pair which causes
the following error message in the log: 'bind: address already in use'.
Fix the issue by binding IPv4 instanc... | [
{
"path": "pkg/proxy/healthcheck/common.go",
"patch": "@@ -26,9 +26,8 @@ import (\n \n // listener allows for testing of ServiceHealthServer and ProxyHealthServer.\n type listener interface {\n-\t// Listen is very much like netutils.MultiListen, except the second arg (network) is\n-\t// fixed to be \"tcp\".... | 2026-02-26T14:48:19 |
golang/go | 86f7959aa6e4cb9a0ac67ccd84c5586701583ca4 | 0f550bcfc3ad8525331d535d1f1e844d86472cbe | runtime/pprof: fix missing Profile docs
CL 688335 accidentally introduced a blank line between the Profile doc
comment and the type definition, causing the entire doc to get dropped.
Change-Id: I97b1c0e57d142d7caea6e543a0138ed6dcd1c3fe
Reviewed-on: https://go-review.googlesource.com/c/go/+/743660
LUCI-TryBot-Result: ... | [
{
"path": "src/runtime/pprof/pprof.go",
"patch": "@@ -171,7 +171,6 @@ import (\n // holds a lock for 1s while 5 other goroutines are waiting for the entire\n // second to acquire the lock, its unlock call stack will report 5s of\n // contention.\n-\n type Profile struct {\n \tname string\n \tmu sync.Mut... | 2026-02-10T00:17:12 |
denoland/deno | 5b5f84c8488dab766e8687c649c0a11b89b4006a | 01f99e8133a4efd351e65cbaa8a6b7eb1e5b49eb | fix(ext/crypto): fix P-521 EC key export for all formats (#32412)
## Summary
- **Fixed P-521 key generation** to output PKCS8 DER (matching
P-256/P-384 behavior) instead of raw scalar bytes, which broke JWK
private, JWK public (from private handle), and SPKI exports
- **Added P-521 JWK private export arm** in the `ex... | [
{
"path": "ext/crypto/export_key.rs",
"patch": "@@ -410,7 +410,23 @@ fn export_key_ec(\n Err(SharedError::ExpectedValidPublicECKey.into())\n }\n }\n- _ => Err(ExportKeyError::UnsupportedNamedCurve),\n+ EcNamedCurve::P521 => {\n+ let ec_key = p521::SecretK... | 2026-03-03T09:50:53 |
mrdoob/three.js | f28712f27acbeed8ab6cb78d825948f93381e51b | fecefb5ef6b9f19ea2413d36c67a836213fbc517 | Types: fix missing properties (#31772)
* Types: fix missing properties
* Update SkeletonUtils.js
Revert changes to `getHelperFromSkeleton()`.
---------
Co-authored-by: Samuel Rigaud <rigaud@gmail.com>
Co-authored-by: Michael Herzog <michael.herzog@human-interactive.org> | [
{
"path": "examples/jsm/loaders/lwo/IFFParser.js",
"patch": "@@ -1013,7 +1013,7 @@ class DataViewReader {\n \n \tgetFloat64() {\n \n-\t\tconst value = this.dv.getFloat64( this.offset, this.littleEndian );\n+\t\tconst value = this.dv.getFloat64( this.offset );\n \t\tthis.offset += 8;\n \t\treturn value;\n ",... | 2025-09-02T13:00:54 |
tensorflow/tensorflow | c7c0dcb3c310ba8cb96aacdbcb8e36b8e64170a6 | 532fd7a1b0499741183239f68c2f974c6fbd8cd1 | Ensure that tests use initialized DebugOptions
PiperOrigin-RevId: 882581007 | [
{
"path": "third_party/xla/xla/backends/cpu/BUILD",
"patch": "@@ -209,6 +209,7 @@ xla_cc_test(\n srcs = [\"target_machine_options_test.cc\"],\n deps = [\n \":target_machine_options\",\n+ \"//xla:debug_options_flags\",\n \"//xla:xla_proto_cc\",\n \"//xla/service/cpu:exe... | 2026-03-12T14:33:13 |
swiftlang/swift | a4c5d2db3be9b182ba870cad1c0ceb03107cfec9 | c5948a735023042af426f4a888e6746867f504d8 | New exhaustive test for Float16.debugDescription | [
{
"path": "test/stdlib/PrintFloat16_Comparison.swift",
"patch": "@@ -0,0 +1,206 @@\n+// RUN: %target-run-simple-swift -Onone -g\n+// REQUIRES: executable_test\n+\n+// rdar://77087867\n+// UNSUPPORTED: CPU=arm64_32 && OS=watchos\n+\n+// rdar://104232602\n+// UNSUPPORTED: CPU=x86_64 && (DARWIN_SIMULATOR=ios |... | 2026-03-14T20:21:09 |
denoland/deno | 01f99e8133a4efd351e65cbaa8a6b7eb1e5b49eb | 88bd1bc158d4e9860afc16429ceeee6bd4440eb6 | fix: validate cron schedule when using cron socket (#32406) | [
{
"path": "ext/cron/socket.rs",
"patch": "@@ -490,6 +490,11 @@ impl CronHandler for SocketCronHandler {\n return Err(CronError::RejectedError(reason.clone()));\n }\n \n+ spec\n+ .cron_schedule\n+ .parse::<saffron::Cron>()\n+ .map_err(|_| CronError::InvalidCron)?;\n+\n let (in... | 2026-03-03T09:50:33 |
golang/go | 3048de9d6e5693e09c9885ec8b4673dbcf72c1e6 | 65ac2afd4b22fb29aa8cbd6a1d26ad7bb2ceeca4 | io/fs: document that Sub does not check for existence
Also recommend os.Root for constraining access.
Fixes #77447
Change-Id: Id8d178163438e9264fe19ed37ba03e1ee5d0bd35
Reviewed-on: https://go-review.googlesource.com/c/go/+/742284
Reviewed-by: Damien Neil <dneil@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@... | [
{
"path": "src/io/fs/sub.go",
"patch": "@@ -24,14 +24,16 @@ type SubFS interface {\n // Otherwise, Sub returns a new [FS] implementation sub that,\n // in effect, implements sub.Open(name) as fsys.Open(path.Join(dir, name)).\n // The implementation also translates calls to ReadDir, ReadFile,\n-// ReadLink, ... | 2026-02-06T21:06:09 |
mrdoob/three.js | 27151c8325d1dba520d4abfb5a2e1077dd59de22 | 6c7d8077a36efe80e1bb4b42fa5c2846fcd965a4 | Docs: translation Line2 in zh (#31795)
* Docs: translation Line2 in zh
* Docs:Fixed translation of line2 for consistency.
---------
Co-authored-by: zhangjl23 <zhangjl23@asiainfo.com> | [
{
"path": "docs/examples/zh/lines/Line2.html",
"patch": "@@ -0,0 +1,65 @@\n+<!DOCTYPE html>\n+<html lang=\"zh\">\n+\t<head>\n+\t\t<meta charset=\"utf-8\" />\n+\t\t<base href=\"../../../\" />\n+\t\t<script src=\"page.js\"></script>\n+\t\t<link type=\"text/css\" rel=\"stylesheet\" href=\"page.css\" />\n+\t</h... | 2025-09-01T08:36:21 |
tensorflow/tensorflow | 532fd7a1b0499741183239f68c2f974c6fbd8cd1 | 749d269a750360848f7ec25b10314a393fedb048 | Refactor SymbolicExpr::ReplaceDims to handle changes in the number of dimensions.
In GetAffineMap() migration (cl/868672131), we have a crash in ComputeExpressionRange.
After investigating it turned to be that the issue is in the difference between AffineExpr::ReplaceDims() and SymbolicExpr::ReplaceDims(). We took a ... | [
{
"path": "third_party/xla/xla/hlo/analysis/symbolic_expr.cc",
"patch": "@@ -654,8 +654,26 @@ SymbolicExpr SymbolicExpr::ReplaceVariables(\n }\n \n SymbolicExpr SymbolicExpr::ReplaceDims(\n- absl::Span<const SymbolicExpr> dim_replacements) const {\n- return ReplaceVariables(dim_replacements);\n+ absl... | 2026-03-12T14:30:59 |
denoland/deno | 291532f0e5723c2498afc50e19a906ba9a5e0ee2 | f6d5b957cb5d5ad398bd580e44c963588c5b36e3 | fix(ext/node): support RSA PSS padding option in crypto sign/verify (#32269)
## Summary
- Pass the `padding` option from `crypto.createSign().sign()` /
`crypto.createVerify().verify()` through to the Rust signing ops
- Handle `RSA_PKCS1_PSS_PADDING` (6) for regular RSA keys by using PSS
signing/verification instead of... | [
{
"path": "ext/node/polyfills/internal/crypto/sig.ts",
"patch": "@@ -66,6 +66,10 @@ export interface VerifyKeyObjectInput extends SigningOptions {\n key: KeyObject;\n }\n \n+function getPadding(options) {\n+ return getIntOption(\"padding\", options);\n+}\n+\n function getSaltLength(options) {\n return ... | 2026-03-03T09:28:52 |
mrdoob/three.js | 049e5425e6b3c8913122f66eb8f38aebfa6ee39e | 47aaa5385ee9524bb6ab5a88e22206839da956bb | TSL: Fix primitive vector conversion, `vec*` with `ivec*` (#31793) | [
{
"path": "src/nodes/utils/JoinNode.js",
"patch": "@@ -95,7 +95,9 @@ class JoinNode extends TempNode {\n \n \t\t\tif ( inputPrimitiveType !== primitiveType ) {\n \n-\t\t\t\tinputSnippet = builder.format( inputSnippet, inputPrimitiveType, primitiveType );\n+\t\t\t\tconst targetType = builder.getTypeFromLengt... | 2025-08-31T12:52:15 |
mrdoob/three.js | 47aaa5385ee9524bb6ab5a88e22206839da956bb | 28b0bf1b1b67c8f9dd3b017cfbedf79d0cafb695 | WebGPURenderer: Reaaply align of `frontFace` and fix `FrontFacingNode` (#31784)
* Reapply https://github.com/mrdoob/three.js/pull/31769
* fix frontFace webgpu backend
* cleanup | [
{
"path": "src/nodes/display/FrontFacingNode.js",
"patch": "@@ -1,7 +1,7 @@\n import Node from '../core/Node.js';\n import { nodeImmutable, float, Fn } from '../tsl/TSLBase.js';\n \n-import { BackSide, DoubleSide, WebGLCoordinateSystem } from '../../constants.js';\n+import { BackSide, DoubleSide } from '../... | 2025-08-31T12:49:10 |
denoland/deno | f6d5b957cb5d5ad398bd580e44c963588c5b36e3 | 984300a647b6a6f663c3c14708fa60b818205e82 | perf(install): split tarball extraction into decompress + write, limit write concurrency (#32408)
Split tarball extraction into a CPU-bound decompression phase and an
I/O-bound filesystem write phase. Gate the write phase with a semaphore
to reduce fs contention.
This is on a create-next-app project.
```
❯ hyperfine ... | [
{
"path": "Cargo.lock",
"patch": "@@ -2812,6 +2812,7 @@ dependencies = [\n \"tar\",\n \"tempfile\",\n \"thiserror 2.0.12\",\n+ \"tokio\",\n \"url\",\n ]\n ",
"additions": 1,
"deletions": 0,
"language": "Unknown"
},
{
"path": "libs/npm_cache/Cargo.toml",
"patch": "@@ -40,6 +40,7 @... | 2026-03-03T09:23:38 |
tensorflow/tensorflow | 749d269a750360848f7ec25b10314a393fedb048 | cd0e2e16c2aff6e3b589a768f7ae6553ae5002bd | Fix crash in RangeEvaluation::ComputeExpressionRange in migration
In the process of migrating GetAffineMap() to GetSymbolicMap() in IndexingMap we were having this strange crash.
After a lot of debugging, I found the issue happened because the weird use or ReplaceDimAndSymbols with an empty list of Symbols. I had iss... | [
{
"path": "third_party/xla/xla/hlo/analysis/symbolic_map.cc",
"patch": "@@ -154,7 +154,7 @@ SymbolicMap SymbolicMap::ReplaceDimsAndSymbols(\n } else {\n for (int i = 0; i < num_symbols_; ++i) {\n all_replacements.push_back(\n- CreateSymbolicVariable(num_dimensions_ + i, ctx_));\n+ ... | 2026-03-12T14:30:53 |
golang/go | ad170e18540be19bd6db012ff221c01e8c9745e9 | 9fd5a5fa7d9d629ded8d4685dcc5984268258edb | cmd/link: make TestTypePlacement work on AIX
The existing code was just wrong. On AIX the go.type section is
folded into the .text section (when internally linking),
or the .data section (when externally linking).
It follows that the data section adjustment is useless when
internally linking, which is currently what h... | [
{
"path": "src/cmd/link/link_test.go",
"patch": "@@ -2416,20 +2416,37 @@ func TestTypePlacement(t *testing.T) {\n \tcase xf != nil:\n \t\tdefer xf.Close()\n \n-\t\tfor _, sec := range xf.Sections {\n-\t\t\tif sec.Name == \".go.type\" {\n-\t\t\t\ttypeStart = sec.VirtualAddress\n-\t\t\t\ttypeEnd = sec.Virtual... | 2026-01-31T03:15:31 |
mrdoob/three.js | c08ca65326d25c7fcbe93cfe392096d525c52e0d | efc8d3aabfd875abcf2260569db547ae344b34e6 | RenderObject: Fix cache key for instanced meshes. (#31783) | [
{
"path": "src/renderers/common/RenderObject.js",
"patch": "@@ -770,7 +770,7 @@ class RenderObject {\n \n \t\t}\n \n-\t\tif ( object.count > 1 ) {\n+\t\tif ( object.isInstancedMesh || object.count > 1 ) {\n \n \t\t\t// TODO: https://github.com/mrdoob/three.js/pull/29066#issuecomment-2269400850\n ",
"add... | 2025-08-29T20:31:34 |
denoland/deno | 984300a647b6a6f663c3c14708fa60b818205e82 | f5f84cd58b7ae4602d82016a0e58cfeff010564e | fix(ext/node): CBC decipher setAutoPadding(false) incorrectly strips bytes (#32403)
## Summary
- `Decipheriv.final()` unconditionally stripped PKCS7 padding from
decrypted output regardless of the `#autoPadding` flag, corrupting data
when `setAutoPadding(false)` was used
- Made the PKCS7 padding stripping conditional... | [
{
"path": "ext/node/polyfills/internal/crypto/cipher.ts",
"patch": "@@ -485,7 +485,13 @@ export class Decipheriv extends Transform implements Cipher {\n throw new Error(\"Invalid final block size\");\n }\n \n- buf = buf.subarray(0, 16 - buf.at(-1)); // Padded in Pkcs7 mode\n+ if (this.#autoP... | 2026-03-03T09:09:00 |
tensorflow/tensorflow | 95aacc5fcf6db45957abb420ea6ee1146a9a3914 | 606f352326366871bc390dd780ac4c7df3d96ea5 | Try to avoid namespace ambiguity (mlir::detail vs mlir::triton::detail).
After the last LLVM integrate, we hit a compile error on Windows where it fails
to distinguish between something in mlir::detail namespace and
mlir::triton::detail namespace. This error is triggered when compiling
Utility.cpp. So as a fix, attemp... | [
{
"path": "third_party/xla/third_party/triton/common/series.bzl",
"patch": "@@ -30,5 +30,6 @@ common_patch_list = [\n \"//third_party/triton:common/nvdisasm_bin_path.patch\",\n \"//third_party/triton:common/llvm_cl880654778.patch\",\n \"//third_party/triton:common/llvm_cl881791206.patch\",\n+ ... | 2026-03-12T13:57:26 |
mrdoob/three.js | 9eaea731fd9197ef4c74751a45eff6afc6e6032b | cde2d20d6277d3e3426b76959b808a8b122fdcd7 | Maunal: Fix double open hyperlink by open in new tab (#31780)
* Add target blank to open new tab
* Add back zh and fix ru link | [
{
"path": "manual/en/lights.html",
"patch": "@@ -42,14 +42,14 @@ <h1>Lights</h1>\n const camera = new THREE.PerspectiveCamera(fov, aspect, near, far);\n +camera.position.set(0, 10, 20);\n </pre>\n-<p>Next let's add <a href=\"/docs/#examples/en/controls/OrbitControls\"><code class=\"notranslate\" translate=\... | 2025-08-29T08:19:46 |
kubernetes/kubernetes | 48eecb36703fca9de411f01f59f26798b4f2bf7d | 330950ca52bfc99297b73f4a70199f82c0705342 | Replace cpuset.CPUSet{} with cpuset.New()
This patch replaces direct struct initialization cpuset.CPUSet{} with
cpuset.New() to ensure the internal map is properly initialized.
While most CPUSet methods work correctly without this change, the Equals
method uses reflect.DeepEqual which returns false when comparing CPU... | [
{
"path": "pkg/kubelet/cm/cpumanager/cpu_manager.go",
"patch": "@@ -536,8 +536,7 @@ func (m *manager) GetExclusiveCPUs(podUID, containerName string) cpuset.CPUSet {\n \tif result, ok := m.state.GetCPUSet(podUID, containerName); ok {\n \t\treturn result\n \t}\n-\n-\treturn cpuset.CPUSet{}\n+\treturn cpuset.N... | 2026-03-02T23:57:26 |
golang/go | 9fd5a5fa7d9d629ded8d4685dcc5984268258edb | 4fe1203111eeda8a38af4f2a4208e4d4de720c0d | cmd/link: use correct alignment for type descriptors on AIX
CL 724261 changed the linker to put all type descriptors that
are used for typelinks in a single list. This caused trouble on AIX when
linking externally, because the AIX linker aligns symbols individually,
rather than honoring the layout of the object file g... | [
{
"path": "src/cmd/link/internal/ld/data.go",
"patch": "@@ -1469,6 +1469,8 @@ func checkSectSize(sect *sym.Section) {\n \n // fixZeroSizedSymbols gives a few special symbols with zero size some space.\n func fixZeroSizedSymbols(ctxt *Link) {\n+\tldr := ctxt.loader\n+\n \t// The values in moduledata are fill... | 2026-01-31T03:06:19 |
swiftlang/swift | cd7ca397e3a3386e571a4974ec7e58398e0908b8 | 39521e18c2f53e4890a4e7e6905434a20b801d32 | [test] Update crashers for second frame signature | [
{
"path": "validation-test/IDE/crashers/ASTMangler-appendBoundGenericArgs-6361b3.swift",
"patch": "@@ -1,4 +1,4 @@\n-// {\"kind\":\"complete\",\"original\":\"48e2c440\",\"signature\":\"swift::Mangle::ASTMangler::appendBoundGenericArgs(swift::DeclContext*, swift::GenericSignature, swift::SubstitutionMap, boo... | 2026-03-14T11:54:02 |
denoland/deno | f5f84cd58b7ae4602d82016a0e58cfeff010564e | 507336286804bbbc2b76e421e346563af9875253 | fix: process level environment variables should take precedence over env files (#32407) | [
{
"path": "cli/util/watch_env_tracker.rs",
"patch": "@@ -114,6 +114,20 @@ impl WatchEnvTracker {\n let key_os = OsString::from(key);\n let value_os = OsString::from(value);\n \n+ // Process-level env vars should always take precedence over env files.\n+ ... | 2026-03-03T09:05:49 |
mrdoob/three.js | cde2d20d6277d3e3426b76959b808a8b122fdcd7 | 5271d639618eb5b8d791132b679e7832cb3006b1 | WebGPURenderer: Fix scissor value bound check (#31782) | [
{
"path": "src/renderers/common/Renderer.js",
"patch": "@@ -1399,20 +1399,6 @@ class Renderer {\n \t\trenderContext.scissorValue.width >>= activeMipmapLevel;\n \t\trenderContext.scissorValue.height >>= activeMipmapLevel;\n \n-\t\trenderContext.scissorValue.max( _vector4.set( 0, 0, 0, 0 ) );\n-\n-\t\tif ( re... | 2025-08-29T05:24:30 |
golang/go | 4fe1203111eeda8a38af4f2a4208e4d4de720c0d | cbb37e310e2edd7148c8501567e190746e6d98d2 | cmd/link: align covctrs symbol
If we start the covctrs blob at an odd alignment, then covctrs will
not be correctly aligned. Each individual entry is aligned properly,
but the start marker may be before any padding inserted to enforce
that alignment.
Fixes #58936
Change-Id: I802fbe40eacfa5a3c8c4864e078b0e078da956d5
... | [
{
"path": "src/cmd/cover/cover_test.go",
"patch": "@@ -638,3 +638,12 @@ func main() {\n \t\tt.Errorf(\"unexpected success; want failure due to newline in file path\")\n \t}\n }\n+\n+func TestAlignment(t *testing.T) {\n+\t// Test that cover data structures are aligned appropriately. See issue 58936.\n+\ttest... | 2026-01-02T21:42:00 |
tensorflow/tensorflow | 71291baa94f3419f41f855f845b43309e236fe1d | 3b3ee7265dd57cc3b067157783fffa37a25adb7c | PR #38544: [GPU] Implement Programmatic Dependent Launch (PDL).
Imported from GitHub PR https://github.com/openxla/xla/pull/38544
📝 Summary of Changes
This is an initial simple implementation of PDL which only adds `griddepcontrol.wait` instruction at starts of all XLA-generated MLIR kernels (emitters and Triton). I... | [
{
"path": "third_party/xla/xla/backends/gpu/codegen/emitters/emitter_base.cc",
"patch": "@@ -133,6 +133,14 @@ using mlir::Value;\n using mlir::ValueRange;\n using mlir::func::FuncOp;\n \n+bool EnablePDL(const HloModule& module, const se::DeviceDescription& device) {\n+ return module.config().debug_options(... | 2026-03-12T10:13:59 |
swiftlang/swift | 39521e18c2f53e4890a4e7e6905434a20b801d32 | de3f8d874c3311e7ed57d5dc9bc5e11bf2331197 | [crash-reduce] Record second interesting frame for crashers
Include the next frame for a crasher in the crash signature. | [
{
"path": "utils/swift-dev-utils/Sources/CrashReduce/CrashLog.swift",
"patch": "@@ -69,13 +69,13 @@ public struct CrashLog: Sendable {\n \n /// Given a set of stack frames, find the deepest one that should be considered\n /// the signature of the crash.\n- private static func findFrameSignature(\n+ pr... | 2026-03-14T11:54:02 |
denoland/deno | 507336286804bbbc2b76e421e346563af9875253 | df9c814ffad815fb22f3be5565c6c70bdbb90385 | fix(ext/node): implement KeyObject.equals, fix createCipheriv with KeyObject/null IV (#32409)
## Summary
Builds on top of #32267 (must be merged first). Implements
`KeyObject.prototype.equals()` and fixes
`createCipheriv`/`createDecipheriv` to accept `KeyObject` keys and
`null` IVs.
Closes #27211
Closes #27295
Close... | [
{
"path": "ext/node/polyfills/internal/crypto/cipher.ts",
"patch": "@@ -22,6 +22,7 @@ import {\n op_node_decipheriv_decrypt,\n op_node_decipheriv_final,\n op_node_decipheriv_set_aad,\n+ op_node_export_secret_key,\n op_node_private_decrypt,\n op_node_private_encrypt,\n op_node_public_encrypt,\n@... | 2026-03-03T09:00:38 |
mrdoob/three.js | 5271d639618eb5b8d791132b679e7832cb3006b1 | b59b2d6d0a0850e6de88ce89fbb68206bf3c9d98 | Examples: Add TSL Procedural Wood Material (#31640)
* Added webgpu_procedural_wood
(cherry picked from commit fb0d8832c2e703e01998e235b8604504e909dd3c)
* Robustness
(cherry picked from commit 5711d8f977e8d737a0c5c17f3c6dc74b4548c979)
* Fixed Cedar
(cherry picked from commit d1813a26467f64a5bb4340e20f2d24823648b41... | [
{
"path": "examples/files.json",
"patch": "@@ -461,6 +461,7 @@\n \t\t\"webgpu_tsl_vfx_flames\",\n \t\t\"webgpu_tsl_vfx_linkedparticles\",\n \t\t\"webgpu_tsl_vfx_tornado\",\n+\t\t\"webgpu_tsl_wood\",\n \t\t\"webgpu_video_frame\",\n \t\t\"webgpu_video_panorama\",\n \t\t\"webgpu_volume_caustics\",",
"addit... | 2025-08-29T03:11:04 |
golang/go | cbb37e310e2edd7148c8501567e190746e6d98d2 | d1ec0ecec956eb10c3daf40160193daf407c7614 | net/http: fix WaitGroup race in TestTransportNoReuseAfterEarlyResponse
The remaining race reported in go.dev/issue/66519 is that it's possible
for copying.Wait to start running before all copying.Add calls complete.
It happens infrequently as is, but padding both Wait and Add calls with
a 100 ms sleep makes it highly ... | [
{
"path": "src/net/http/client_test.go",
"patch": "@@ -438,7 +438,6 @@ func testRedirectsByMethod(t *testing.T, mode testMode, method string, table []r\n \t\treq, _ := NewRequest(method, ts.URL+tt.suffix, strings.NewReader(content))\n \t\treq.GetBody = func() (io.ReadCloser, error) { return io.NopCloser(str... | 2026-01-24T18:03:14 |
tensorflow/tensorflow | 3b3ee7265dd57cc3b067157783fffa37a25adb7c | 600866992b76af06bf99cee3565e22fac09c28f1 | Partial revert to py_strict_library and py_strict_test.
The test xla_test_test started failing, This is a speculative partial revert
to see whether it fixes the failing test.
PiperOrigin-RevId: 882478214 | [
{
"path": "tensorflow/compiler/tests/BUILD",
"patch": "@@ -1,5 +1,5 @@\n load(\"@xla//third_party/rules_python/python:py_library.bzl\", \"py_library\")\n-load(\"@xla//third_party/rules_python/python:py_test.bzl\", \"py_test\")\n+load(\"//tensorflow:strict.default.bzl\", \"py_strict_library\", \"py_strict_te... | 2026-03-12T09:57:39 |
swiftlang/swift | de3f8d874c3311e7ed57d5dc9bc5e11bf2331197 | b24724b7b543b9392bf5c7d7ea40e2ff80a2fa70 | [test] Update a couple of crasher signatures | [
{
"path": "validation-test/IDE/crashers/BindingSet-addBinding-2039a1.swift",
"patch": "@@ -1,4 +1,4 @@\n-// {\"kind\":\"complete\",\"original\":\"747a5bcd\",\"signature\":\"swift::TypeTransform<(anonymous namespace)::TypeSimplifier>::doIt(swift::Type, swift::TypePosition)\",\"signatureAssert\":\"Assertion f... | 2026-03-14T11:54:02 |
mrdoob/three.js | 5b6f5ebb44853f252a860094f737942895d6b05f | 4ac4e3ee9799457163a58566d35240cbe27e91b4 | Types: fix generic types (#31773)
Co-authored-by: Samuel Rigaud <rigaud@gmail.com> | [
{
"path": "examples/jsm/math/Lut.js",
"patch": "@@ -45,7 +45,7 @@ class Lut {\n \t\t/**\n \t\t * The currently selected color map.\n \t\t *\n-\t\t * @type {Array}\n+\t\t * @type {Array<Array<number>>}\n \t\t */\n \t\tthis.map = [];\n \n@@ -219,7 +219,7 @@ class Lut {\n \t * Adds a color map to this Lut inst... | 2025-08-29T02:57:36 |
golang/go | 228c0468d5a0eefddbfd890565ee8253bd70346e | f58a6a8e34d7db14871f2cf9bfd657e44a5c8b7b | internal/poll: optimize socket completion modes
FILE_SKIP_SET_EVENT_ON_HANDLE is always safe to use.
FILE_SKIP_COMPLETION_PORT_ON_SUCCESS is safe as long as the socket
is provided by an IFS provider.
While here, stop using the kindFileNet type, it doesn't provide any
value.
Fixes #77448
Change-Id: Ib3dc0d68c7ff57b6... | [
{
"path": "src/internal/poll/export_windows_test.go",
"patch": "@@ -0,0 +1,11 @@\n+// Copyright 2026 The Go Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style\n+// license that can be found in the LICENSE file.\n+\n+// Export guts for testing on windows.\n+\n+package poll\... | 2026-02-05T12:37:08 |
kubernetes/kubernetes | b9cebe2a6b0344150e87137882d8e895cb417316 | 91893a392933434356b8a3c049344b74acf36590 | validation-gen/tests/maxlength: use TooLongCharacters error utility for assertions
Signed-off-by: Bryce Palmer <bpalmer@redhat.com> | [
{
"path": "staging/src/k8s.io/code-generator/cmd/validation-gen/output_tests/tags/maxlength/doc_test.go",
"patch": "@@ -73,18 +73,18 @@ func Test(t *testing.T) {\n \t\tMax10ValidatedTypedefPtrField: ptr.To(Max10Type(strings.Repeat(\"x\", 11))),\n \t}\n \tst.Value(testVal).ExpectMatches(field.ErrorMatcher{... | 2026-02-27T15:00:54 |
denoland/deno | df9c814ffad815fb22f3be5565c6c70bdbb90385 | 7f6915423cd8b642ffc8d4fecf4f64ff0b6dd7f3 | fix(compile): store self extracting dir in hidden dir beside executable (#32329) | [
{
"path": "cli/rt/binary.rs",
"patch": "@@ -179,7 +179,7 @@ fn choose_and_create_extraction_dir(\n \n // try next to the executable first\n if let Some(exe_dir) = current_exe.parent() {\n- let dir = exe_dir.join(format!(\"{}.fs\", exe_name)).join(hash_str);\n+ let dir = exe_dir.join(format!(\".{}\... | 2026-03-03T08:50:08 |
tensorflow/tensorflow | 1ece765b8589acddef8ad59f8095af943a775aad | fbe1ca3b86cee828ab9a615804a35be5fdf427e1 | Improve debuggabality for partial failure in module autotuning.
- Earlier other threads were crashing with SIGSEGV.
PiperOrigin-RevId: 882083467 | [
{
"path": "third_party/xla/xla/backends/autotuner/autotuner.cc",
"patch": "@@ -35,6 +35,7 @@ limitations under the License.\n #include \"absl/status/status.h\"\n #include \"absl/strings/str_cat.h\"\n #include \"absl/strings/str_format.h\"\n+#include \"absl/strings/str_join.h\"\n #include \"absl/strings/str_... | 2026-03-11T17:25:18 |
mrdoob/three.js | 4d69cdce0a02c7996171389ea0979f8fe238cb96 | cf60b969c46b0b27e1262b1e24dff908480a89cf | GLSLNodeBuilder: Fix `texture()` code generation for depth texture (#31770)
* Fix texture() code generation
* Simplify conditionals | [
{
"path": "src/renderers/webgl-fallback/nodes/GLSLNodeBuilder.js",
"patch": "@@ -457,31 +457,19 @@ ${ flowData.code }\n \t */\n \tgenerateTexture( texture, textureProperty, uvSnippet, depthSnippet, offsetSnippet ) {\n \n-\t\tif ( texture.isDepthTexture ) {\n-\n-\t\t\tif ( depthSnippet ) uvSnippet = `vec4( $... | 2025-08-28T19:50:41 |
golang/go | f58a6a8e34d7db14871f2cf9bfd657e44a5c8b7b | 9263a71b92e84aa34d0e35887d5c23f5a0a21537 | internal/poll: make waitIO more idempontent
This is a step towards deferring adding the handle to IOCP until the
first IO operation.
waitIO should use the overlapped event if it is provided, regardless of
whether FD is pollable or not. This simplifies reasoning about the code
and makes it more robust to race conditio... | [
{
"path": "src/internal/poll/fd_windows.go",
"patch": "@@ -201,10 +201,7 @@ var operationPool = sync.Pool{\n // waitIO waits for the IO operation to complete,\n // handling cancellation if necessary.\n func (fd *FD) waitIO(o *operation) error {\n-\tif fd.isBlocking {\n-\t\tpanic(\"can't wait on blocking ope... | 2026-02-05T12:16:12 |
kubernetes/kubernetes | 91893a392933434356b8a3c049344b74acf36590 | fff6e5950d7f66012d13b699ef70b5190ed12f57 | validators/limits: minor fixes to MaxLength validator
for strict canonical integer parsing
and deterministic valid scope list output
Signed-off-by: Bryce Palmer <bpalmer@redhat.com> | [
{
"path": "staging/src/k8s.io/code-generator/cmd/validation-gen/validators/limits.go",
"patch": "@@ -65,7 +65,7 @@ func (maxLengthTagValidator) GetValidations(context Context, tag codetags.Tag) (\n \t\treturn Validations{}, fmt.Errorf(\"can only be used on string types (%s)\", rootTypeString(context.Type, t... | 2026-02-27T14:51:58 |
denoland/deno | 7f6915423cd8b642ffc8d4fecf4f64ff0b6dd7f3 | f7bcc9694483e4869d39c318aa25dfdb90ddd912 | fix(ext/crypto): handle wrong algorithm in subtle.importKey without panicking (#32410)
## Summary
- Fixes #30243. Passing a valid PKCS#8 DER key with the wrong algorithm
(e.g., an RSA key imported as ECDSA) to `crypto.subtle.importKey` caused
a panic due to an `.unwrap()` on a `try_into()` conversion in
`import_key_ec... | [
{
"path": "ext/crypto/import_key.rs",
"patch": "@@ -686,7 +686,7 @@ fn import_key_ec(\n .parameters\n .ok_or(ImportKeyError::MalformedParameters)?\n .try_into()\n- .unwrap();\n+ .map_err(|_| ImportKeyError::MalformedParameters)?;\n \n let pk_named_curve = match na... | 2026-03-03T08:33:14 |
mrdoob/three.js | cf60b969c46b0b27e1262b1e24dff908480a89cf | 3714bd11e6dd956b062a111a7d4de1dba382daf3 | WebGPUTextureUtils: Fix readback buffer size. (#31765) | [
{
"path": "src/renderers/webgpu/utils/WebGPUTextureUtils.js",
"patch": "@@ -540,7 +540,7 @@ class WebGPUTextureUtils {\n \n \t\tconst readBuffer = device.createBuffer(\n \t\t\t{\n-\t\t\t\tsize: width * height * bytesPerTexel,\n+\t\t\t\tsize: ( height - 1 ) * bytesPerRow + width * bytesPerTexel, // see https... | 2025-08-28T08:50:39 |
swiftlang/swift | 2dd35df202f1379c2ee00bcc0086e18a8c19e698 | bff72d60c96734f35b2043ef8b7e1692a4164956 | Fix a couple of compile errors | [
{
"path": "stdlib/public/core/FloatingPointToString.swift",
"patch": "@@ -1828,7 +1828,7 @@ fileprivate func _powerOf10_Binary128(\n low: powersOf10_Binary128_Medium[mediumIndex + 0])\n significand.multiplyRoundingDown(by: medium)\n \n- let fine = UInt128(\n+ let fine = _UInt128(\n _low: powersO... | 2026-03-14T05:31:22 |
golang/go | 9263a71b92e84aa34d0e35887d5c23f5a0a21537 | 0430fa977573866f93e66aa61a66b37ff0738aba | database/sql: ensure Null* types have Valid=false when Scan returns error
The Scan methods for NullString, NullInt64, NullInt32, NullFloat64,
NullBool, and NullTime set Valid=true before calling convertAssign.
If convertAssign returns an error, Valid remains true, which creates
an inconsistent state where Valid=true b... | [
{
"path": "src/database/sql/sql.go",
"patch": "@@ -202,8 +202,9 @@ func (ns *NullString) Scan(value any) error {\n \t\tns.String, ns.Valid = \"\", false\n \t\treturn nil\n \t}\n-\tns.Valid = true\n-\treturn convertAssign(&ns.String, value)\n+\terr := convertAssign(&ns.String, value)\n+\tns.Valid = err == ni... | 2026-01-26T02:29:30 |
denoland/deno | f7bcc9694483e4869d39c318aa25dfdb90ddd912 | 9becb837c6a425124d4423985a415c5c7404e706 | fix(ext/node): support Ed25519, X25519, and P-521 keys in X509Certificate.publicKey (#32267)
## Summary
- Fixes `X509Certificate.prototype.publicKey` throwing "unsupported x509
public key type" for **Ed25519** and **X25519** certificates
- Fixes `X509Certificate.prototype.publicKey` throwing "unsupported ec
named cur... | [
{
"path": "Cargo.lock",
"patch": "@@ -2724,6 +2724,7 @@ dependencies = [\n \"p224\",\n \"p256\",\n \"p384\",\n+ \"p521\",\n \"pbkdf2\",\n \"pkcs8\",\n \"rand 0.8.5\",",
"additions": 1,
"deletions": 0,
"language": "Unknown"
},
{
"path": "Cargo.toml",
"patch": "@@ -398,7 +398,7 @... | 2026-03-02T16:37:47 |
tensorflow/tensorflow | 223de3c0394fdfd68b60a51b7bd6ec1fbf8ed0bf | 10ac0fb304878592720f58c8c2fc513e009d9d4c | Add CUB prefix sum support via XLA FFI and HLO rewrite.
This change introduces a new `CubScanThunk` that leverages XLA FFI to call into CUB's `DeviceScan::InclusiveSum` for efficient prefix sum computations on CUDA.
A new HLO pass, `ScanRewriter`, is added to transform specific `HloScanInstruction`s (those representi... | [
{
"path": "third_party/xla/xla/backends/gpu/runtime/BUILD",
"patch": "@@ -1022,6 +1022,34 @@ xla_cc_test(\n ],\n )\n \n+cc_library(\n+ name = \"cub_scan_thunk\",\n+ srcs = [\"cub_scan_thunk.cc\"],\n+ hdrs = [\"cub_scan_thunk.h\"],\n+ deps = [\n+ \":thunk\",\n+ \":thunk_proto_cc... | 2026-03-11T14:43:04 |
mrdoob/three.js | 3714bd11e6dd956b062a111a7d4de1dba382daf3 | 0cd49e34da71c480b7864ac260b2661601244971 | WebGPURenderer: Fix timestamp query conflict (#31762)
* fix timestamp conflict
* cleanup
* cleanup | [
{
"path": "src/renderers/common/Backend.js",
"patch": "@@ -439,6 +439,24 @@ class Backend {\n \n \t// utils\n \n+\t/**\n+\t * Returns a unique identifier for the given render context that can be used\n+\t * to allocate resources like occlusion queries or timestamp queries.\n+\t *\n+\t * @param {RenderContex... | 2025-08-27T19:44:13 |
kubernetes/kubernetes | 910a4ca69690a7ddc048183c37f3041e5b4cd16b | ea70974a0899b977087e183d5fb5f55bbf893e55 | Fix missing field conversions in v1beta1 DRA API
Fix missing fields in the v1beta1 hand-written conversion code:
- Device: BindsToNode, BindingConditions, BindingFailureConditions,
AllowMultipleAllocations were not copied when converting between
v1beta1.BasicDevice (nested) and v1.Device (flat).
- DeviceRequest: ... | [
{
"path": "staging/src/k8s.io/dynamic-resource-allocation/api/v1beta1/conversion.go",
"patch": "@@ -58,6 +58,7 @@ func Convert_v1beta1_DeviceRequest_To_v1_DeviceRequest(in *resourcev1beta1.Devic\n \t\t\ttolerations = append(tolerations, toleration)\n \t\t}\n \t\texactDeviceRequest.Tolerations = tolerations\... | 2026-03-02T13:58:12 |
swiftlang/swift | d45af1c0219536ebc428aac54881a8b4b08241ac | 24ff4ed941047515b3b536b160f0f07f714b1261 | Allow alloc_ref and alloc_ref_dynamic to be marked [non_nested]
This hopefully unblocks fixing the stack nesting of the
concellation and priority escalation handler builtins. | [
{
"path": "SwiftCompilerSources/Sources/Optimizer/InstructionSimplification/SimplifyAllocRefDynamic.swift",
"patch": "@@ -39,7 +39,7 @@ extension AllocRefDynamicInst : OnoneSimplifiable {\n }\n \n let builder = Builder(before: self, context)\n- let newAlloc = builder.createAllocRef(type, isObjC: ... | 2026-03-13T23:39:04 |
golang/go | 0430fa977573866f93e66aa61a66b37ff0738aba | 045ceb72406ee725fd0ea9b8267e8bcd4d2afd5b | simd/archsimd: correct algorithm name in SHA256 ops documentation
The three SHA256 ops (SHA256Message1, SHA256Message2 and SHA256TwoRounds)
all incorrectly referred to the SHA1 algorithm in their documentation
rather than SHA256.
Change-Id: Id6c1bfe4fee4517c0e498fb063cc9112464bc1e7
Reviewed-on: https://go-review.goog... | [
{
"path": "src/simd/archsimd/_gen/simdgen/ops/Others/categories.yaml",
"patch": "@@ -83,7 +83,7 @@\n - go: SHA256TwoRounds\n commutative: false\n documentation: !string |-\n- // NAME does 2 rounds of B loop to calculate updated state variables in SHA1 algorithm defined in FIPS 180-4.\n+ // NAME do... | 2026-01-11T07:00:06 |
mrdoob/three.js | 0cd49e34da71c480b7864ac260b2661601244971 | b261c86ba5c6a31603c15ddbcf091e5bb339629f | Manual: Fix missed href parameters for manual/#xx/lights (#31763)
* Fix missed url parameters
* Assign en for non-exist OrbitControls | [
{
"path": "manual/en/lights.html",
"patch": "@@ -42,14 +42,14 @@ <h1>Lights</h1>\n const camera = new THREE.PerspectiveCamera(fov, aspect, near, far);\n +camera.position.set(0, 10, 20);\n </pre>\n-<p>Next let's add <a href=\"/docs/#examples/controls/OrbitControls\"><code class=\"notranslate\" translate=\"no... | 2025-08-27T18:31:39 |
denoland/deno | 9becb837c6a425124d4423985a415c5c7404e706 | 5fb8a4d498c07e0bccef1f5fcfade14501ba45a3 | fix(node/crypto): handle empty input in decipher final with auto_pad=false (#31958)
## Summary
Fixes a panic in `node:crypto` when using `createDecipheriv` with
`setAutoPadding(false)` (denoland/deno#31957).
Two cases caused panics in `DecipherContext::final`:
1. **Empty input** — `GenericArray::from_slice` panicked... | [
{
"path": "ext/node_crypto/cipher.rs",
"patch": "@@ -752,10 +752,13 @@ impl Decipher {\n Ok(())\n }\n (Aes128Cbc(mut decryptor), false) => {\n- decryptor.decrypt_block_b2b_mut(\n- GenericArray::from_slice(input),\n- GenericArray::from_mut_slice(output),\n- ... | 2026-03-02T16:33:46 |
tensorflow/tensorflow | eb5b9f39a98ee99a483d82377f39d8acef55675a | 5eda182ee4aaf824dde29e6b13f6e16542b8e9f4 | PR #37430: [ROCm] Treat warnings as errors by default
Imported from GitHub PR https://github.com/openxla/xla/pull/37430
📝 Summary of Changes
This PR enables `--config=warnings` as a default build option, so we can treat warnings as errors and avoid potential bugs early
Copybara import of the project:
--
e6cb89c24f... | [
{
"path": "third_party/xla/.bazelrc",
"patch": "@@ -14,4 +14,7 @@ common:clang_local --repo_env USE_HERMETIC_CC_TOOLCHAIN=0\n import %workspace%/tensorflow.bazelrc\n import %workspace%/warnings.bazelrc\n \n+# Treat warnings as errors\n+build --config=warnings \n+\n try-import %workspace%/xla_configure.bazel... | 2026-03-11T12:43:56 |
golang/go | 045ceb72406ee725fd0ea9b8267e8bcd4d2afd5b | db5882ea9bf63849d554910f486c4c5cfea08852 | cmd/compile: allow equal functions to perform unaligned load on loong64
The Go compiler always generates Loong64 binaries, which can execute any
processor of LA364, LA464, LA664 or higher core. And these processors
support unaligned memory access [1].
goos: linux
goarch: loong64
pkg: strings
cpu: Loongson-3A6000 @ 25... | [
{
"path": "src/cmd/internal/sys/arch.go",
"patch": "@@ -143,7 +143,7 @@ var ArchLoong64 = &Arch{\n \tPtrSize: 8,\n \tRegSize: 8,\n \tMinLC: 4,\n-\tAlignment: 8, // Unaligned accesses are not guaranteed to be fast\n+\tAlignment: 1,\n \tCanMergeLoads: true,\n \tCanJumpTable: ... | 2026-02-04T07:25:07 |
swiftlang/swift | 8c9e04ed3f73ee3b52447379d2b997c2f3a24604 | c72eab6be57c582bfc6f90884e8441640bce1990 | Split out the Fix-It for the untyped throws performance hint | [
{
"path": "include/swift/AST/DiagnosticsSema.def",
"patch": "@@ -9159,7 +9159,9 @@ GROUPED_WARNING(perf_hint_typealias_uses_existential,ExistentialType,none,\n \n GROUPED_WARNING(perf_hint_untyped_throws, UntypedThrows,\n none,\n- \"untyped throws performs heap allocation on e... | 2026-03-13T20:33:57 |
mrdoob/three.js | b261c86ba5c6a31603c15ddbcf091e5bb339629f | 4047f2e8bfe92ed947eebdb532dc38d22b0c3a0e | TSL: Fix `bitcast` type resolver (#31746)
* fix bitcast on WebGPU
* remove comments
* simpler method
* remove extraneous conditional
* allow for possibility of future MathNode operations whose b and ctypes are not necessarily of type node
* fix spacing
* add bitcast node
* add bitcastNode
* use NodeProxyIntent... | [
{
"path": "src/nodes/Nodes.js",
"patch": "@@ -57,6 +57,9 @@ export { default as MemberNode } from './utils/MemberNode.js';\n export { default as DebugNode } from './utils/DebugNode.js';\n export { default as EventNode } from './utils/EventNode.js';\n \n+// math\n+export { default as BitcastNode } from './ma... | 2025-08-27T17:43:02 |
denoland/deno | 5fb8a4d498c07e0bccef1f5fcfade14501ba45a3 | 968baf725a6d28cd739fd61b1f447fe3de89b622 | fix(npm): peerDependency resolution leading to multiple versions being installed + hanging (#32358)
Essentially, this PR rewrites our dependency resolution code to use a
two-phase approach, which fixes duplicate peer dependencies or hanging
installation.
Peer deps were resolved inline during BFS traversal, making res... | [
{
"path": "tests/specs/npm/info_peer_deps/main_info.out",
"patch": "@@ -4,11 +4,11 @@ dependencies: 6 unique\n size: [WILDCARD]\n \n file:///[WILDCARD]/main.ts (171B)\n-├─┬ npm:/@denotest/peer-dep-test-child@1.0.0_@denotest+peer-dep-test-peer@1.0.0 ([WILDCARD])\n+├─┬ npm:/@denotest/peer-dep-test-child@1.0.0... | 2026-03-02T15:33:10 |
kubernetes/kubernetes | e5920df4dae91e6548108a572d6efe9c1e7a0bf4 | dbe44e35849f2e466c223fa98e97407330966c11 | bug: Fix link file ownership of projected serviceAccountToken
Signed-off-by: Gavin Lam <gavin.oss@tutamail.com> | [
{
"path": "pkg/volume/util/atomic_writer.go",
"patch": "@@ -445,7 +445,7 @@ func (w *AtomicWriter) writePayloadToDir(payload map[string]FileProjection, dir\n \t\t\tcontinue\n \t\t}\n \n-\t\tif err := w.chown(fullPath, int(*fileProjection.FsUser), -1); err != nil {\n+\t\tif err := w.lchown(fullPath, int(*fil... | 2026-03-01T19:25:30 |
golang/go | db5882ea9bf63849d554910f486c4c5cfea08852 | f8f87129646ca3821b3926e649c856a960d6bc9e | os: support deleting inaccessible files in RemoveAll
windows: retry file open with DELETE access after access denied
Additional access rights when opening files, including SYNCHRONIZE,
break deletion when the caller has FILE_DELETE_CHILD on the parent
directory but not the file. Retry with DELETE only restores correc... | [
{
"path": "src/internal/syscall/windows/at_windows.go",
"patch": "@@ -246,14 +246,31 @@ func Deleteat(dirfd syscall.Handle, name string, options uint32) error {\n \tvar h syscall.Handle\n \terr := NtOpenFile(\n \t\t&h,\n-\t\tSYNCHRONIZE|FILE_READ_ATTRIBUTES|DELETE,\n+\t\tFILE_READ_ATTRIBUTES|DELETE,\n \t\to... | 2026-02-04T09:36:59 |
mrdoob/three.js | 4047f2e8bfe92ed947eebdb532dc38d22b0c3a0e | 105a9940bde9b8a6ee9f3fb1210cbd448143ab18 | GLSLNodeBuilder: Fix `texelFetch*()` code generation with depth textures. (#31760)
* Add a swizzle when sampling a depth texture
* Texture parameter can be null
* Rollback to using vec4 for depth texture UV | [
{
"path": "src/renderers/webgl-fallback/nodes/GLSLNodeBuilder.js",
"patch": "@@ -380,7 +380,7 @@ ${ flowData.code }\n \t/**\n \t * Generates the GLSL snippet that reads a single texel from a texture without sampling or filtering.\n \t *\n-\t * @param {Texture} texture - The texture.\n+\t * @param {?Texture}... | 2025-08-27T13:13:53 |
swiftlang/swift | 3c8b97d463c019d00672f1b7b97243fb24fd366d | 799d4e94a38d803217229f5ddd770b1b2079145a | Disable device testing: Interpreter/bitwise_borrowable_layout.swift
Workaround for rdar://169663198: test crashes when running on device | [
{
"path": "test/Interpreter/bitwise_borrowable_layout.swift",
"patch": "@@ -18,6 +18,9 @@\n // UNSUPPORTED: use_os_stdlib\n // UNSUPPORTED: back_deployment_runtime\n \n+// rdar://169663198: test crashes when running on device\n+// UNSUPPORTED: remote_run || device_run\n+\n import BitwiseBorrowableLayoutResi... | 2026-03-13T18:36:15 |
denoland/deno | 968baf725a6d28cd739fd61b1f447fe3de89b622 | 826878191feedbf83147bbf6726a8e2984704545 | fix(ext/node): support DER-encoded keys in publicEncrypt/privateDecrypt (#32291)
## Summary
- `publicEncrypt`, `privateDecrypt`, and `privateEncrypt` only accepted
PEM-encoded (text) keys. When passed DER (binary) encoded keys, they
failed with `invalid utf-8 sequence of 1 bytes from index 1` because the
code tried t... | [
{
"path": "ext/node_crypto/lib.rs",
"patch": "@@ -33,6 +33,8 @@ use rsa::Oaep;\n use rsa::Pkcs1v15Encrypt;\n use rsa::RsaPrivateKey;\n use rsa::RsaPublicKey;\n+use rsa::pkcs1::DecodeRsaPrivateKey;\n+use rsa::pkcs1::DecodeRsaPublicKey;\n use rsa::pkcs8::DecodePrivateKey;\n use rsa::pkcs8::DecodePublicKey;\n ... | 2026-03-02T15:17:41 |
tensorflow/tensorflow | 5eda182ee4aaf824dde29e6b13f6e16542b8e9f4 | 580555a25e64b3c5fd7c617694b9fa52e32297f4 | PR #38681: [ROCm] Use f16 versions of functions from libdevice.
Imported from GitHub PR https://github.com/openxla/xla/pull/38681
Fix fusion_emitter_parametrized_test.
📝 Summary of Changes
Use f16 versions of functions from libdevice in order to avoid unnecessary conversions
🎯 Justification
Precision loss ... | [
{
"path": "third_party/xla/xla/backends/gpu/codegen/triton/fusion_emitter_parametrized_test.cc",
"patch": "@@ -1032,7 +1032,9 @@ ENTRY main {\n \n const std::string hlo_ref = R\"(\n ; CHECK: %[[P0_FUSION:.*]] = bf16[127,125]{1,0} parameter(0)\n-; CHECK: %[[REDUCE:.*]] = bf16[127]{0} reduce(%[[P0... | 2026-03-11T12:38:56 |
golang/go | f8f87129646ca3821b3926e649c856a960d6bc9e | 491da55fdba438284656c370f6d2f3e0b0971a83 | crypto/tls: fix broken link in KeyLogWriter documentation
The Mozilla developer documentation link for the NSS key log format
has been broken since early 2022. Update the documentation to point
to the IETF TLS working group draft which is currently in the RFC
publication queue.
Fixes #63331
Co-Authored-By: Claude Op... | [
{
"path": "src/crypto/tls/common.go",
"patch": "@@ -825,7 +825,7 @@ type Config struct {\n \t// KeyLogWriter optionally specifies a destination for TLS master secrets\n \t// in NSS key log format that can be used to allow external programs\n \t// such as Wireshark to decrypt TLS connections.\n-\t// See http... | 2026-02-03T15:10:47 |
Subsets and Splits
Assembly Language GitHub Issues
Retrieves a sample of assembly-language related commits with their details, but doesn't provide meaningful analysis or patterns beyond basic filtering.
Swift Compiler Issues Analysis
Retrieves all training data for the Swift programming language repository, providing basic filtering but offering limited analytical insight beyond identifying relevant code examples.