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 | 7d7f42087f1a3965e9c73386e3c0524973a0e524 | 697c49073223560d329a6802e7603304bbf2d34d | Update multiple-scenes.html
Fix markup. | [
{
"path": "manual/en/multiple-scenes.html",
"patch": "@@ -622,7 +622,7 @@ <h2 id=\"adding-controls-to-each-element\">Adding Controls to each element</h2>\n <p></p>\n <p>One other advantage to this solution is you could potentially use\n <a href=\"https://developer.mozilla.org/en-US/docs/Web/API/OffscreenCan... | 2025-11-04T16:27:13 |
denoland/deno | 7cc24643bf450dca030af3ddbc65f2fbd9130060 | ea7f0790f91d389995d2db97bf953da58c2c2205 | fix(ext/node): accept all TypedArrays in spawnSync input option (#32712)
`normalizeInput` only accepted `Uint8Array` and `DataView`, rejecting
other TypedArrays like `Int8Array`. Node.js accepts any TypedArray.
Replaced the separate `instanceof Uint8Array` and `instanceof DataView`
checks with a single `ArrayBuffer.i... | [
{
"path": "ext/node/polyfills/internal/child_process.ts",
"patch": "@@ -1584,10 +1584,7 @@ function normalizeInput(input: unknown) {\n if (typeof input === \"string\") {\n return Buffer.from(input);\n }\n- if (input instanceof Uint8Array) {\n- return input;\n- }\n- if (input instanceof DataVie... | 2026-03-14T17:51:13 |
swiftlang/swift | 0da3a9a60ab4c7cbb50306dd59bbbd371409e02f | 951d6a09cbbe973409f0ef7c142e8858fb6210e4 | [crash-reduce] Prefer non-assertion signatures | [
{
"path": "utils/swift-dev-utils/Sources/CrashReduce/CrashInfo.swift",
"patch": "@@ -41,8 +41,8 @@ struct CrashInfo {\n \n /// A set of known signatures for a given crasher.\n struct KnownSignatures: Hashable {\n- let primary: Signature\n- var sigs: Set<Signature> = []\n+ private(set) var primary: Signat... | 2026-03-23T10:49:33 |
tensorflow/tensorflow | f5b8246dd79bd77f8544e7f97129ca16ca91617a | 0e5277a64e5135fc1a6027cecd0b2a79b337400a | PR #39530: [XLA:GPU][oneAPI][Bug fix] Add autotune cache key for oneapi device description
Imported from GitHub PR https://github.com/openxla/xla/pull/39530
This PR fixes `nullptr` issue of `gpu_compute_capability` for oneAPI device description in the `AutotuneCacheKey::DeviceDescriptionToCacheKey`.
Copybara import o... | [
{
"path": "third_party/xla/xla/service/gpu/autotuning/autotune_cache_key.cc",
"patch": "@@ -57,11 +57,14 @@ std::string AutotuneCacheKey::DeviceDescriptionToCacheKey(\n if (auto* ccc = device_description.gpu_compute_capability()\n .cuda_compute_capability()) {\n compute_capabilit... | 2026-03-23T13:47:31 |
denoland/deno | ea7f0790f91d389995d2db97bf953da58c2c2205 | 749270fd5d08f52f3015dd3ac8f3f66d1378cb42 | fix(ext/node): enable 8 already-passing child_process compat tests (#32710)
These tests already pass but were not enabled in the node compat config.
Adding them to prevent regressions.
Newly enabled:
- test-child-process-exec-maxbuf.js
- test-child-process-execsync-maxbuf.js
- test-child-process-fork-url.mjs
- test-c... | [
{
"path": "tests/node_compat/config.jsonc",
"patch": "@@ -210,6 +210,7 @@\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-maxbuf.js\": {},\n... | 2026-03-14T17:50:53 |
swiftlang/swift | b4d0f12e0a2ac89a5517b145349385bda8f327b3 | 951d6a09cbbe973409f0ef7c142e8858fb6210e4 | [Sema] NFC: Rename `TypeResolutionFlags::SilenceErrors` -> `SilenceDiagnostics`
This better describes the intention for the flag. | [
{
"path": "docs/Generics/chapters/type-resolution.tex",
"patch": "@@ -894,7 +894,7 @@ \\section{Source Code Reference}\\label{src:type resolution}\n \\item \\texttt{TypeResolutionFlags::SILMode}: used when resolving a position where ordinary AST types appear, but in textual SIL, which enables special syntax... | 2026-03-22T19:01:50 |
mrdoob/three.js | fb578069cd53ee3cf5ef1fa2650c87e90f1171dc | e50123a039a2146845563066273b75186688930d | TSL: Add `texture3DLoad` and `texture3DLevel` (#32171)
* Examples: Fix compute_texture_pingpong example
* TSL: Add texture3DLoad and texture3DLevel | [
{
"path": "src/nodes/accessors/Texture3DNode.js",
"patch": "@@ -192,8 +192,33 @@ export default Texture3DNode;\n * @tsl\n * @function\n * @param {Data3DTexture} value - The 3D texture.\n- * @param {?Node<vec2|vec3>} [uvNode=null] - The uv node.\n+ * @param {?Node<vec3>} [uvNode=null] - The uv node.\n * ... | 2025-11-04T02:15:54 |
golang/go | 9e0b5684e1f7166d6427635673001c80218ac9f4 | b7d1c5887561ee5502b6c04baaa27ead13b63971 | net: correctly handle non-nil empty cmsg buffer on windows
Fixes #77875.
Change-Id: I0ed91be7ed10c04ddea3af55548a8dbf0be5f3a8
Reviewed-on: https://go-review.googlesource.com/c/go/+/750420
Reviewed-by: Quim Muntal <quimmuntal@gmail.com>
Reviewed-by: Damien Neil <dneil@google.com>
Reviewed-by: David Chase <drchase@goog... | [
{
"path": "src/internal/poll/fd_windows.go",
"patch": "@@ -167,9 +167,11 @@ func newWSAMsg(p []byte, oob []byte, flags int, unconnected bool) *windows.WSAMs\n \tmsg := wsaMsgPool.Get().(*windows.WSAMsg)\n \tmsg.Buffers.Len = uint32(len(p))\n \tmsg.Buffers.Buf = unsafe.SliceData(p)\n-\tmsg.Control = syscall.... | 2026-03-01T16:43:57 |
tensorflow/tensorflow | 0e5277a64e5135fc1a6027cecd0b2a79b337400a | 71f522e308aa85a2857f320c266c0ea33e545656 | PR #39607: [ROCm] Handle cancellation in multi_gpu step of rocm xla pipeline
Imported from GitHub PR https://github.com/openxla/xla/pull/39607
📝 Summary of Changes
Cancel multigpu tests if cancel is requested. Fixes jax-ut rocm pipeline by
removal of a redundant timeout field.
🎯 Justification
add is not canceled c... | [
{
"path": "third_party/xla/.github/workflows/rocm_jax_ut.yml",
"patch": "@@ -79,7 +79,6 @@ jobs:\n JAXCI_BUILD_JAX: \"true\"\n JAXCI_BUILD_JAXLIB: wheel\n working-directory: jax\n- timeout-minutes: 120\n run: |\n ./ci/run_bazel_test_rocm_rbe.sh \\\n ... | 2026-03-23T13:38:37 |
kubernetes/kubernetes | 3a561263475bbaf79246a4df860212d048609727 | 4ddb7d81661fbefe73904eda7c20220e82173dc6 | fix: remove GetReplicas multiplication and dead sendConsumeCPURequestPerPod function | [
{
"path": "test/e2e/framework/autoscaling/autoscaling_utils.go",
"patch": "@@ -666,15 +666,8 @@ func (rc *ResourceConsumer) makeConsumeCPUPerPodRequests(ctx context.Context) {\n \t\t\t}\n \t\tcase <-tick:\n \t\t\tif milliCoresPerPod != 0 {\n-\t\t\t\treplicas, err := rc.GetReplicas(ctx)\n-\t\t\t\tif err != n... | 2026-03-11T14:58:06 |
denoland/deno | 749270fd5d08f52f3015dd3ac8f3f66d1378cb42 | b177ff637e5f1ee9258e366030541c2b1c17fd62 | fix(ext/node): include prototype env vars in child_process spawn (#32699)
The env key collection loop had `Object.hasOwn()` filtering despite the
comment saying "Prototype values are intentionally included". This made
`for...in` pointless since it only kept own properties.
Node.js includes prototype-chain env vars wh... | [
{
"path": "ext/node/polyfills/internal/child_process.ts",
"patch": "@@ -1148,10 +1148,9 @@ export function normalizeSpawnArguments(\n \n let envKeys: string[] = [];\n // Prototype values are intentionally included.\n+ // deno-lint-ignore guard-for-in\n for (const key in env) {\n- if (Object.hasOwn... | 2026-03-14T17:50:45 |
mrdoob/three.js | e50123a039a2146845563066273b75186688930d | 21ee45044ea3ff3fcfa920cd044c0c8a9fa8b5c1 | Inspector: Fix slider dimensions. (#32177) | [
{
"path": "examples/jsm/inspector/ui/Values.js",
"patch": "@@ -216,7 +216,7 @@ class ValueSlider extends Value {\n \n \t\tconst numberValue = new ValueNumber( { value, min, max, step } );\n \t\tthis.numberInput = numberValue.input;\n-\t\tthis.numberInput.style.width = '60px';\n+\t\tthis.numberInput.style.fl... | 2025-11-04T02:15:05 |
golang/go | b7d1c5887561ee5502b6c04baaa27ead13b63971 | 383000da24e9b32dbe3cae4c48cbb233d7c62253 | cmd/go: disallow go env -w GOROOT=...
The go command determines GOROOT from where the binary is.
It is an error to try to run a go command with a mismatched Go tree.
The only possible use for 'go env -w GOROOT=...' would be if you
copied the go executable to a new place (say, $HOME/bin) and needed
to set the default G... | [
{
"path": "src/cmd/go/internal/envcmd/env.go",
"patch": "@@ -604,7 +604,17 @@ func getOrigEnv(key string) string {\n \n func checkEnvWrite(key, val string) error {\n \tswitch key {\n-\tcase \"GOEXE\", \"GOGCCFLAGS\", \"GOHOSTARCH\", \"GOHOSTOS\", \"GOMOD\", \"GOWORK\", \"GOTOOLDIR\", \"GOVERSION\", \"GOTELE... | 2026-02-26T17:39:48 |
kubernetes/kubernetes | 117df3de4ded942b098574de04f2dd4ca71b1614 | 93de6acf5cb84186efda3cecb8710367d4529b3b | pkg/proxy/nftables: fix kube-proxy crash with newer nftables versions
Fixes kube-proxy's nftables mode to work on systems with nft 1.1.3. | [
{
"path": "pkg/proxy/nftables/proxier.go",
"patch": "@@ -1153,24 +1153,20 @@ func (proxier *Proxier) syncProxyRules() (retryError error) {\n \t\tipvX_addr = \"ipv6_addr\"\n \t}\n \n+\tvar err error\n+\n \tvar existingChains sets.Set[string]\n-\texistingChainsList, err := proxier.nftables.List(context.TODO()... | 2026-02-11T19:00:48 |
denoland/deno | b177ff637e5f1ee9258e366030541c2b1c17fd62 | f00f798dc85ffd53802e5d127dfe9bb04ac1554e | fix(ext/node): fix perm checks in TCPWrap (#32721) | [
{
"path": "ext/node/ops/libuv_stream.rs",
"patch": "@@ -20,6 +20,7 @@ use deno_core::uv_compat::UvStream;\n use deno_core::uv_compat::UvTcp;\n use deno_core::uv_compat::UvWrite;\n use deno_core::v8;\n+use deno_permissions::PermissionsContainer;\n use socket2::SockAddr as Socket2SockAddr;\n \n use super::han... | 2026-03-14T16:46:47 |
mrdoob/three.js | 3507b2b86242079ed5efb276c46dd3e3811689bc | aa9532172142ba7d3d5f86a5846e1085343724a5 | Examples: Fix chromatic aberration type usage of caustics example (#32169) | [
{
"path": "examples/webgpu_caustics.html",
"patch": "@@ -122,9 +122,9 @@\n \t\t\t\t\tconst chromaticAberrationOffset = normalView.z.pow( - .9 ).mul( .004 );\n \n \t\t\t\t\tconst causticProjection = vec3(\n-\t\t\t\t\t\ttexture( causticMap, textureUV.add( vec2( chromaticAberrationOffset.x.negate(), 0 ) ) ).r,... | 2025-11-02T03:05:09 |
golang/go | 383000da24e9b32dbe3cae4c48cbb233d7c62253 | b9545da71c2f5e93355d82a1f9b5ead02f2bc617 | cmd/internal/obj: fix indirect tail call code
The assembler isn't handling this correctly for most architectures.
Of course, the two I tried first, arm64 and amd64, worked, so I assumed
other archs could handle it also. Apparently not.
Should fix dashboard failures introduced by CL 751465.
Change-Id: I9fc4f123d11acf... | [
{
"path": "src/cmd/internal/obj/arm/obj5.go",
"patch": "@@ -352,16 +352,25 @@ func preprocess(ctxt *obj.Link, cursym *obj.LSym, newprog obj.ProgAlloc) {\n \n \t\tcase obj.ARET:\n \t\t\tnocache(p)\n+\n+\t\t\tretSym, retReg := p.To.Sym, p.To.Reg\n+\t\t\tif retReg == obj.REG_NONE {\n+\t\t\t\tretReg = REGLINK\n... | 2026-03-06T23:44:41 |
kubernetes/kubernetes | 9fcdecad9feff782ca80f925974231ca81ef3935 | e0dedfbc230b420ed42106196ef5b44a60bd2a54 | Fix TestBasic timeout caused by continuous re-enqueue | [
{
"path": "staging/src/k8s.io/kube-aggregator/pkg/apiserver/handler_discovery_test.go",
"patch": "@@ -1102,7 +1102,9 @@ func (q *completerWorkqueue) Add(item string) {\n }\n \n func (q *completerWorkqueue) AddAfter(item string, duration time.Duration) {\n-\tq.Add(item)\n+\t// Normally apiservices are contin... | 2026-03-11T13:58:41 |
mrdoob/three.js | 42fe8c567e54d492b903b09c52d58cd89a451efe | b3b830129671a7f763ea59e6df85e9de96451f8b | Docs: Fix ShadowNode JSDoc. (#32166) | [
{
"path": "src/nodes/lighting/ShadowNode.js",
"patch": "@@ -36,16 +36,7 @@ const _shadowRenderObjectKeys = [];\n * @param {LightShadow} shadow - The light shadow object containing shadow properties.\n * @param {number} shadowType - The type of shadow map (e.g., BasicShadowMap).\n * @param {boolean} useVe... | 2025-11-01T10:01:44 |
golang/go | 90b428ebf565f61a8ef13d2b6a59c55704923c74 | ec3373e379696c5d9ba6874caed34a309a76181b | net: skip TestListenIPv6WildcardAddr on platforms w/o IPv4-mapped IPv6
On these platforms, Listen and friends default to IPv4 for wildcard
addresses (unless network is "tcp6" or "udp6") due to lack of support
for dual-stack IPv6 sockets (IPV6_V6ONLY=0).
Fixes #77945.
Change-Id: I50c4be1d4fd620dd997d4d0f02bd74e8e41e4... | [
{
"path": "src/net/ipsock_test.go",
"patch": "@@ -283,19 +283,15 @@ func TestAddrListPartition(t *testing.T) {\n }\n \n func TestListenIPv6WildcardAddr(t *testing.T) {\n-\tswitch runtime.GOOS {\n-\tcase \"js\", \"wasip1\":\n+\tif runtime.GOOS == \"js\" || runtime.GOOS == \"wasip1\" {\n \t\tt.Skip(\"fake net... | 2026-03-04T18:11:01 |
denoland/deno | f00f798dc85ffd53802e5d127dfe9bb04ac1554e | 2c3b295e2e78c095d1cda9761a8510af8940cfab | fix(runtime): use XML-valid entity in flamegraph SVG (#32716)
- Replace ` ` with ` ` in the CPU flamegraph SVG template
- ` ` is an HTML entity not recognized by XML parsers, causing `XML
Parsing Error: undefined entity` when opening the SVG standalone
Fixes #32708
Co-authored-by: Claude Opus 4.6 (1M ... | [
{
"path": "runtime/cpu_profiler/flamegraph.rs",
"patch": "@@ -153,10 +153,10 @@ pub(crate) fn generate_flamegraph_svg(\n ]]></script>\n <rect x=\"0\" y=\"0\" width=\"100%\" height=\"100%\" fill=\"url(#background)\"/>\n <text id=\"title\" x=\"50%\" y=\"24\" text-anchor=\"middle\" style=\"font-size:17px\">CPU... | 2026-03-14T14:30:42 |
swiftlang/swift | 9b4dd2add23ccd304b3fd2a4623fe46522fa8fea | 538b363e8cc47f05c4cee05e9cd052d870eda420 | [SILGen]: some fixes for throws(Never) properties & subscripts | [
{
"path": "lib/SILGen/SILGenApply.cpp",
"patch": "@@ -2106,10 +2106,18 @@ static void emitRawApply(SILGenFunction &SGF,\n else\n errorAddrOrType = substFnConv.getSILErrorType(SGF.getTypeExpansionContext());\n \n- SILBasicBlock *errorBB =\n- SGF.getTryApplyErrorDest(loc, substFnType, prevEx... | 2026-01-26T15:38:36 |
kubernetes/kubernetes | 0e001ab1a5f1522c2d73ffcab35bf851405379fe | 508b50caa2d646223d0a32da82d2976a7b4f3ced | Fix e2e tests to handle explicit driver opt-in for scheduling | [
{
"path": "test/e2e/storage/csimock/csi_volume_limit_scaling.go",
"patch": "@@ -44,20 +44,27 @@ var _ = utils.SIGDescribe(\"CSI Mock VolumeLimitScaling scheduling\", framework.Wi\n \n \tf.Context(\"VolumeLimitScaling scheduling\", func() {\n \t\ttests := []struct {\n-\t\t\tname string\n-\t\t\tc... | 2026-03-11T12:34:29 |
golang/go | bbed50aaa3033c9be6a5268268a7faf226be9de0 | de5c138eef88685442dc71e36dd98d66b885a605 | cmd/link: sort .pdata by function start address
Loosely based on CL 678795.
The PE/COFF spec requires RUNTIME_FUNCTION entries in the .pdata
section to be ordered by their function start address. Previously
the linker emitted them in symbol order.
An unsorted table triggers the MSVC linker error:
fatal error LN... | [
{
"path": "src/cmd/cgo/internal/test/seh_internal_windows_test.go",
"patch": "@@ -1,16 +0,0 @@\n-// Copyright 2024 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-//go:build cgo && windows && internal\n-\n-... | 2026-02-10T13:21:15 |
tensorflow/tensorflow | 12fbaa8183a6a97cc726a0552864e96bf140fbf8 | 3e1ea55ac148baa0efea85c068610cd3098fa95b | PR #38613: [ROCM] amdgpu_backend refactoring and new HSACO cache
Imported from GitHub PR https://github.com/openxla/xla/pull/38613
This PR implements new HSACO cache (in-memory and persistent) based on SHA256 hash keys. Now, hash keys are generated directly from IR bitcode without the need for IR text dump.
Mainly c... | [
{
"path": "third_party/xla/xla/pjrt/BUILD",
"patch": "@@ -1336,6 +1336,7 @@ cc_library(\n \"//xla/service/gpu/llvm_gpu_backend:amdgpu_backend\",\n \"//xla/stream_executor:device_description\",\n \"//xla/stream_executor/rocm:rocm_compute_capability\",\n+ \"//xla/tsl/platform:en... | 2026-03-23T11:57:40 |
denoland/deno | 2c3b295e2e78c095d1cda9761a8510af8940cfab | 7ab15ad5d32cc5cd31d5dd579eec2ae54b5cd2fe | fix(ext/node): support encrypted PEM export and deprecated hash option in crypto keygen (#32703)
## Summary
- Fix `generateKeyPair` for `rsa-pss` to fall back to deprecated `hash`
option when `hashAlgorithm` is not provided, matching Node.js behavior
- Implement encrypted PEM private key export with legacy OpenSSL fo... | [
{
"path": "ext/node/polyfills/internal/crypto/keygen.ts",
"patch": "@@ -1093,15 +1093,15 @@ function createJob(mode, type, options) {\n return op_node_generate_rsa_pss_key(\n modulusLength,\n publicExponent,\n- hashAlgorithm,\n+ hashAlgorithm ?? hash,\n ... | 2026-03-14T13:55:41 |
swiftlang/swift | 54c0870a253c684e1deb10fa471437e7489a3d23 | c065d18d6f2587f41161f975d4b573a872e29f8f | [CS] Better handle rewriting implicit `callAsFunction` call splitting
The previous logic was relying on doing `coerceCallArguments` with the
full argument list instead of only the non-trailing args, and wasn't
handling the non-shorthand-init case. Update the logic to fix-up the
apply during the pre-walk, ensuring it g... | [
{
"path": "include/swift/Sema/CSTrail.def",
"patch": "@@ -78,7 +78,7 @@ LOCATOR_CHANGE(RecordedOpenedExistentialType, OpenedExistentialTypes)\n LOCATOR_CHANGE(RecordedDefaultedConstraint, DefaultedConstraints)\n LOCATOR_CHANGE(ResolvedOverload, ResolvedOverloads)\n LOCATOR_CHANGE(RecordedArgumentList, Argum... | 2026-03-21T13:45:27 |
mrdoob/three.js | 836ceeb5b361046ad0ff3560ed0a740e419943b1 | 3c2dc9dfa337cc4a3d358d558433a97642fa5bf2 | Docs: Fix external links (#32161)
* Docs: Fix external links.
* Removed "hardcoded" target="_blank"s.
* Updated docs. | [
{
"path": "docs/pages/AMFLoader.html",
"patch": "@@ -24,7 +24,7 @@ <h2>Code Example</h2>\n \t\t\t</header>\n \t\t\t<article>\n \t\t\t\t<h2 class=\"subsection-title\">Import</h2>\n-\t\t\t\t<p><span translate=\"no\">AMFLoader</span> is an addon, and must be imported explicitly, see <a href=\"https://threejs.o... | 2025-11-01T00:06:36 |
golang/go | de5c138eef88685442dc71e36dd98d66b885a605 | 8933fb98f309443a5ca3aeda2163017737dbe795 | encoding/json: unwrap IO errors from SyntacticError in transformSyntacticError
When GOEXPERIMENT=jsonv2 is enabled, transformSyntacticError has a
case for bare IO errors (export.IsIOError), but this case is never
reached when the IO error is wrapped inside a *jsontext.SyntacticError.
This happens because consumeObjec... | [
{
"path": "src/encoding/json/v2_scanner.go",
"patch": "@@ -56,6 +56,11 @@ var errUnexpectedEnd = errors.New(\"unexpected end of JSON input\")\n func transformSyntacticError(err error) error {\n \tswitch serr, ok := err.(*jsontext.SyntacticError); {\n \tcase serr != nil:\n+\t\t// If the SyntacticError wraps ... | 2026-02-25T11:07:25 |
tensorflow/tensorflow | 25cf6546b44bdb3d3f17277a4b49b027dcdc0ae7 | c6b57b4d135e963361df5c3bac6644c84387fcf9 | Fix uninitialized bool use_async_dispatch in GetStreamExecutorGpuClient.
The variable use_async_dispatch was declared without initialization.
When neither options.use_async_dispatch has a value nor the environment
variable PJRT_GPU_ENABLE_ASYNC_DISPATCH is set, the variable remains
uninitialized, causing undefined beh... | [
{
"path": "third_party/xla/xla/pjrt/gpu/se_gpu_pjrt_client.cc",
"patch": "@@ -1862,7 +1862,7 @@ absl::StatusOr<std::unique_ptr<PjRtClient>> GetStreamExecutorGpuClient(\n auto pjrt_platform_name = xla::CudaName();\n #endif // TENSORFLOW_USE_ROCM\n \n- bool use_async_dispatch;\n+ bool use_async_dispatch ... | 2026-03-23T03:36:17 |
denoland/deno | 7ab15ad5d32cc5cd31d5dd579eec2ae54b5cd2fe | bfd96854f2f2060e57f1b472bc6fad5a86b25c2d | fix(ext/napi): keep event loop alive while uv_async_t handle is active (#32702)
## Summary
- Add `ref_op()` in `uv_async_init` and `unref_op()` in `uv_close` to
match libuv semantics where an active `uv_async_t` handle keeps the
event loop alive until closed
- Fix `libuv_sys_lite::setup()` to run on all platforms in ... | [
{
"path": "ext/napi/uv.rs",
"patch": "@@ -175,6 +175,12 @@ unsafe extern \"C\" fn _napi_uv_async_init(\n r#async.cast(),\n addr_of_mut!((*r#async).work),\n );\n+\n+ // In libuv, uv_async_init starts the handle and keeps the event loop\n+ // alive until uv_close is called. Ref the event... | 2026-03-14T13:55:18 |
mrdoob/three.js | 3c2dc9dfa337cc4a3d358d558433a97642fa5bf2 | 71349adfc233aac76e10ce1e8ba3ac2070661865 | WGSLNodeBuilder: Improve `StorageTexture3D` support (#32150)
* Examples: Fix compute_texture_pingpong example
* WGSLNodeBuilder: Improve StorageTexture3D support | [
{
"path": "src/renderers/webgpu/nodes/WGSLNodeBuilder.js",
"patch": "@@ -286,7 +286,7 @@ class WGSLNodeBuilder extends NodeBuilder {\n \t */\n \tgenerateWrapFunction( texture ) {\n \n-\t\tconst functionName = `tsl_coord_${ wrapNames[ texture.wrapS ] }S_${ wrapNames[ texture.wrapT ] }_${ texture.isData3DText... | 2025-10-31T23:12:25 |
swiftlang/swift | 00a6ebf101cae33a47fb9b035bff34885dfc7c0f | ce2de43ecbb5c9d51e92a2441a65ecc8366c64f7 | Embedded: Fix typos in EmbeddedRuntime.swift.
Fixes build failure introduced by https://github.com/swiftlang/swift/pull/86831. | [
{
"path": "stdlib/public/core/EmbeddedRuntime.swift",
"patch": "@@ -223,8 +223,8 @@ func swift_allocObject(metadata: UnsafeMutablePointer<ClassMetadata>, requiredSi\n public func swift_allocObjectTyped(metadata: Builtin.RawPointer, requiredSize: Int, requiredAlignmentMask: Int, typeId: UInt64) -> Builtin.Ra... | 2026-03-21T12:40:34 |
tensorflow/tensorflow | 63901efdc80a3bd96338632067e1664854840036 | 9fa41091a0789066142bcd12da2fbba15ccbffe8 | docs: Fix typo 'occured' to 'occurred' in metrics | [
{
"path": "tensorflow/core/framework/metrics.cc",
"patch": "@@ -332,7 +332,7 @@ auto* tf_data_autotune_stopping_criteria_counter =\n \n auto* tf_data_debug = tsl::monitoring::Counter<1>::New(\n \"/tensorflow/data/debug\",\n- \"The number of times this event occured, for debugging.\", \"event\");\n+ ... | 2026-03-21T05:08:02 |
mrdoob/three.js | 94f32836d0fc72316ffe99cab926ec8e7f69af99 | f265b19cceb299184bcc26653ad53452c4349e70 | PixelationPassNode: Fix zero normal processing. (#32159) | [
{
"path": "examples/jsm/tsl/display/PixelationPassNode.js",
"patch": "@@ -193,7 +193,7 @@ class PixelationNode extends TempNode {\n \n \t\t\tconst nei = property( 'float', 'nei' );\n \n-\t\t\tIf( this.normalEdgeStrength.greaterThan( 0.0 ), () => {\n+\t\t\tIf( this.normalEdgeStrength.greaterThan( 0.0 ).and( ... | 2025-10-31T14:59:39 |
denoland/deno | bfd96854f2f2060e57f1b472bc6fad5a86b25c2d | 4d45fe5b7ad2830d8ef2a3cc8bddd259531e7522 | fix(tsc): move more node resolution errors to typescript diagnostics (#32697) | [
{
"path": "cli/graph_util.rs",
"patch": "@@ -286,23 +286,6 @@ pub struct ResolutionErrorRef<'a> {\n pub fn resolution_error_for_tsc_diagnostic(\n error: &ResolutionError,\n ) -> Option<ResolutionErrorRef<'_>> {\n- fn is_module_not_found_code(code: NodeJsErrorCode) -> bool {\n- match code {\n- Nod... | 2026-03-14T13:19:37 |
tensorflow/tensorflow | c57c2513f4b6781c9d5266c2c9cc6c1c6eb18731 | 57f5c7b6d52e6761151f1e9ffbcc465032d7cfc5 | PR #39562: [ROCm] Set jobs timeout, preventing blocking nodes
Imported from GitHub PR https://github.com/openxla/xla/pull/39562
📝 Summary of Changes
Set ci jobs timeouts
🎯 Justification
Timeout job if the test execution takes way too long time,
this is required to not block the consequent ci jobs from execution
if... | [
{
"path": "third_party/xla/.github/workflows/rocm_jax_ut.yml",
"patch": "@@ -79,6 +79,7 @@ jobs:\n JAXCI_BUILD_JAX: \"true\"\n JAXCI_BUILD_JAXLIB: wheel\n working-directory: jax\n+ timeout-minutes: 120\n run: |\n ./ci/run_bazel_test_rocm_rbe.sh \\\n ... | 2026-03-20T17:57:32 |
kubernetes/kubernetes | 71fd4b19e3e97ef2b3cbc5ca1e80c76969f0dbe7 | fbe282098364806aed50a44fa69bcd2a0fc2ad8b | Rework podGroupAlgorithmResult to use fwk.Status and capture errors correctly | [
{
"path": "pkg/scheduler/metrics/profile_metrics.go",
"patch": "@@ -66,6 +66,12 @@ func PodGroupWaitingOnPreemption(profile string, duration float64) {\n \tobservePodGroupScheduleAttemptAndLatency(WaitingOnPreemptionResult, profile, duration)\n }\n \n+// PodGroupScheduleError records a pod group scheduling ... | 2026-03-05T13:35:44 |
golang/go | ef160abf2dc24fbf8d8c34a7ca18b2c1d2f60e7f | 07e487bc5ceb05d5fdbbec3c66f75a8a36460038 | cmd/go: avoid repetitive "invalid version" error on go get
When go get encounters an invalid version string like "branch/with/slash",
the error message redundantly repeats the version information:
go get: pkg@branch/with/slash: invalid version: version "branch/with/slash" invalid: disallowed version string
This ha... | [
{
"path": "src/cmd/go/internal/modfetch/proxy.go",
"patch": "@@ -238,13 +238,17 @@ func (p *proxyRepo) CheckReuse(ctx context.Context, old *codehost.Origin) error\n // versionError returns err wrapped in a ModuleError for p.path.\n func (p *proxyRepo) versionError(version string, err error) error {\n \tif v... | 2026-02-12T11:32:16 |
mrdoob/three.js | 9e6165f265cdc39b5e84f5db9ea4585c164833a8 | fb7d41840766135f6fa9664e5a73968569d84247 | Docs: Fixed properties layout. (#32156)
* Docs: Fixed properties layout.
* Design tweaks.
* Fixed #WebGLRenderer.~Options link.
* Ignore empty returns.
* Design tweaks.
* Clean up, | [
{
"path": "utils/docs/template/publish.js",
"patch": "@@ -113,7 +113,7 @@ function addParamAttributes( params ) {\n \n \t\tif ( param.type && param.type.names && param.type.names.length ) {\n \n-\t\t\tconst escapedTypes = param.type.names.map( name => htmlsafe( name ) );\n+\t\t\tconst escapedTypes = param.t... | 2025-10-31T10:29:17 |
denoland/deno | 4d45fe5b7ad2830d8ef2a3cc8bddd259531e7522 | cae85170b9e5297a5b49e6d1de0b1e9e36419bd4 | fix(ext/node): set up stdio streams on failed child_process spawn (#32698)
In Node.js, stdio pipes are created before the OS spawn call, so
child.stdout/stderr/stdin are valid stream objects even when spawn fails
(e.g. ENOENT). Deno's implementation only created these after a
successful Deno.Command().spawn(), leaving... | [
{
"path": "ext/node/polyfills/internal/child_process.ts",
"patch": "@@ -564,7 +564,51 @@ export class ChildProcess extends EventEmitter {\n // args.slice(1) to exclude argv0 (prepended by normalizeSpawnArguments)\n e = _createSpawnError(\"ENOENT\", command, args.slice(1));\n }\n+\n+ ... | 2026-03-14T11:38:47 |
golang/go | 07e487bc5ceb05d5fdbbec3c66f75a8a36460038 | e36ae89c186a5220075ef3ee0b7e2a41470fa6dc | cmd/go: exclude vendor directories in go work use -r
When using "go work use -r" to recursively add modules, vendor
directories are incorrectly included. Modules under vendor/ are
managed by "go mod vendor" and should not be added to go.work.
The WalkDir callback in workUse did not skip directories named
"vendor", un... | [
{
"path": "src/cmd/go/internal/workcmd/use.go",
"patch": "@@ -163,6 +163,9 @@ func workUse(ctx context.Context, s *modload.State, gowork string, wf *modfile.W\n \t\t\t\t}\n \t\t\t\treturn nil\n \t\t\t}\n+\t\t\tif d.Name() == \"vendor\" {\n+\t\t\t\treturn filepath.SkipDir\n+\t\t\t}\n \t\t\tlookDir(path)\n \t... | 2026-02-12T10:50:43 |
tensorflow/tensorflow | cae286f6033d5a1ba54a044d00511d4bd0e94b67 | 63b9d48fee08c3c7d92823db737eaa1d28c65f14 | PR #39287: [ROCm] Add CUB support for scan (prefix sum) op
Imported from GitHub PR https://github.com/openxla/xla/pull/39287
📝 Summary of Changes
- Add hybrid scan kernel using rocPRIM primitives:
* `rocprim::inclusive_scan` (device-wide) for 1D scans
* Custom `BlockScanKernel` using `block_scan`, `block_load`, ... | [
{
"path": "third_party/xla/xla/stream_executor/rocm/BUILD",
"patch": "@@ -393,6 +393,7 @@ cc_library(\n \"//xla/tsl/platform:logging\",\n \"//xla/tsl/platform:macros\",\n \"//xla/tsl/platform:statusor\",\n+ \"//xla/tsl/util:determinism\",\n \"//xla/tsl/util:determinism... | 2026-03-20T17:36:46 |
kubernetes/kubernetes | 4ddb7d81661fbefe73904eda7c20220e82173dc6 | a142b22c38efe76423f3123ea2f46dbca943fdc3 | test: fix flaky HPAConfigurableTolerance e2e by deterministic per-pod CPU load
Signed-off-by: bishal7679 <bishalhnj127@gmail.com> | [
{
"path": "test/e2e/autoscaling/horizontal_pod_autoscaling_behavior.go",
"patch": "@@ -552,12 +552,15 @@ var _ = SIGDescribe(feature.HPA, framework.WithSlow(), framework.WithFeatureGate\n \t\t\t\tinitPods := 10\n \t\t\t\tpodCPURequest := 500\n \t\t\t\ttargetCPUUtilizationPercent := 60\n+\t\t\t\t// Compute i... | 2026-03-10T16:21:18 |
denoland/deno | e88d18a79db233f8563826f0b6adac383ed0e192 | 081e2e8476415c2e3ba0da3e6327da407f2f1be5 | feat: add --cpu-prof-flamegraph to generate interactive SVG flamegraphs (#32572)
## Summary
Builds on top of #31909 to add interactive SVG flamegraph generation for
CPU profiles, plus improvements to the existing `--cpu-prof`
functionality.
### New: `--cpu-prof-flamegraph` flag
Generates a self-contained, interacti... | [
{
"path": "cli/args/flags.rs",
"patch": "@@ -269,9 +269,10 @@ pub struct CpuProfFlags {\n pub name: Option<String>,\n pub interval: Option<u32>,\n pub md: bool,\n+ pub flamegraph: bool,\n }\n \n-#[derive(Clone, Debug, Eq, PartialEq)]\n+#[derive(Clone, Default, Debug, Eq, PartialEq)]\n pub struct Eval... | 2026-03-14T07:25:58 |
golang/go | 0359353574980629e42c73f7ed54397f7fdff321 | 6c083034f82ddb2a91d3fbe0f96e39f1ecd194d8 | net/url: add Values.Clone
This change implements a method Clone on Values
that creates a deep copy of all of the subject's
consistent values.
CL 746800 added URL.Clone and this one therefore closes
out the feature.
Fixes #73450
Change-Id: I6fb95091c856e43063ab641c03034e1faaff8ed6
Reviewed-on: https://go-review.goog... | [
{
"path": "api/next/73450.txt",
"patch": "@@ -1 +1,2 @@\n pkg net/url, method (*URL) Clone() *URL #73450\n+pkg net/url, method (Values) Clone() Values #73450",
"additions": 1,
"deletions": 0,
"language": "Plain Text"
},
{
"path": "doc/next/6-stdlib/99-minor/net/url/73450.md",
"patch"... | 2026-02-18T23:12:01 |
kubernetes/kubernetes | e0dedfbc230b420ed42106196ef5b44a60bd2a54 | ad854f3495557e8e8a1d430f77e4102c65df759f | Fix aggregated discovery retry on fetch failure | [
{
"path": "staging/src/k8s.io/kube-aggregator/pkg/apiserver/handler_discovery.go",
"patch": "@@ -33,7 +33,6 @@ import (\n \t\"k8s.io/apimachinery/pkg/runtime/serializer\"\n \tutilruntime \"k8s.io/apimachinery/pkg/util/runtime\"\n \t\"k8s.io/apimachinery/pkg/util/sets\"\n-\t\"k8s.io/apimachinery/pkg/util/wai... | 2026-03-11T04:40:59 |
tensorflow/tensorflow | 01c77353903eabd368148e0987d138c26b582ae5 | 2b736a64ac14e771f3011fe9a41a7aac1249e8cb | PR #39405: Bump numpy from 2.4.2 to 2.4.3
Imported from GitHub PR https://github.com/openxla/xla/pull/39405
Bumps [numpy](https://github.com/numpy/numpy) from 2.4.2 to 2.4.3.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/numpy/numpy/releases">numpy's releases</a>.</em></p>... | [
{
"path": "third_party/xla/requirements_lock_3_11.txt",
"patch": "@@ -1,76 +1,76 @@\n-numpy==2.4.2 \\\n- --hash=sha256:00ab83c56211a1d7c07c25e3217ea6695e50a3e2f255053686b081dc0b091a82 \\\n- --hash=sha256:068cdb2d0d644cdb45670810894f6a0600797a69c05f1ac478e8d31670b8ee75 \\\n- --hash=sha256:0f01dcf33e... | 2026-03-20T16:48:21 |
denoland/deno | 7607cb2053fc0c41ebf55e40e40ea26f151383e5 | 8ac8de128a1db7e71c37063dd101369f9abb4a3d | fix(ext/napi): prevent spurious TypeError from napi_coerce_to_object on null/undefined (#32695)
Fixes #31306
Fixes #28682
- `napi_coerce_to_object(null/undefined)` was letting V8's `ToObject()`
throw a TypeError, which got stored in `env.last_exception` by the
`napi_wrap!` try-catch, then re-thrown by `call_fn` as a ... | [
{
"path": "ext/napi/js_native_api.rs",
"patch": "@@ -2447,7 +2447,15 @@ fn napi_coerce_to_object<'s>(\n check_arg!(env, result);\n \n v8::callback_scope!(unsafe scope, env.context());\n- let Some(coerced) = value.unwrap().to_object(scope) else {\n+ let val = value.unwrap();\n+ // Check for null/undef... | 2026-03-13T21:24:09 |
golang/go | 6c083034f82ddb2a91d3fbe0f96e39f1ecd194d8 | 73db2f85aab25c06f47c832364600d2c5e243ffa | testing: fix construction of the testing artifacts path
The existing implementation had a few problems:
- It constructs a path which starts with a forward slash, which is
then immediately rejected by filepath.Localize() as invalid.
- It did not correctly remove the module path from the import path if
the test was in t... | [
{
"path": "src/testing/testing.go",
"patch": "@@ -1363,6 +1363,21 @@ func (c *common) makeArtifactDir() (string, error) {\n \t\treturn c.makeTempDir()\n \t}\n \n+\tartifactBase := filepath.Join(artifactDir, c.relativeArtifactBase())\n+\tif err := os.MkdirAll(artifactBase, 0o777); err != nil {\n+\t\treturn \... | 2026-03-05T00:46:20 |
tensorflow/tensorflow | 77f11e9e8b6720c0e3066c69f34f5f2b538dcc49 | ce0add13112e93955d335b1077cf7a3214e28b31 | Fix crash when decoding "upside down" .bmp files
PiperOrigin-RevId: 886810229 | [
{
"path": "tensorflow/core/kernels/image/decode_image_op.cc",
"patch": "@@ -711,11 +711,11 @@ class DecodeImageV2Op : public OpKernel {\n abs_height, requested_channels, img_channels, top_down);\n } else {\n std::unique_ptr<uint8_t[]> buffer(\n- new uint8_t[height * width ... | 2026-03-20T15:39:04 |
kubernetes/kubernetes | 0680960e5e8da5a0ef97c8baf81c1a9b01931e2c | f98d9271051244b5a1690c56a322b4917007e5a9 | Return Error from DRA filter on timeout to enable automatic retry | [
{
"path": "pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go",
"patch": "@@ -721,7 +721,10 @@ func (pl *DynamicResources) Filter(ctx context.Context, cs fwk.CycleState, pod *\n \t\ta, err := state.allocator.Allocate(allocCtx, node, claimsToAllocate)\n \t\tswitch {\n \t\tcase errors.Is(err... | 2026-03-11T01:20:30 |
mrdoob/three.js | ec097899e338da8c1c3341a35080b6af62715a7a | 5727e0cdb7f3dd622c60b3b0b3f36eadd0757788 | Add exceptions for long-running tests in puppeteer | [
{
"path": "test/e2e/puppeteer.js",
"patch": "@@ -7,6 +7,18 @@ import * as fs from 'fs/promises';\n \n const exceptionList = [\n \n+\t// Take too long\n+\t'webgpu_parallax_uv', \t\t\t\t// 11 min\n+\t'webgpu_cubemap_adjustments', \t\t// 9 min\n+\t'webgl_loader_lwo', \t\t\t\t// 8 min\n+\t'webgpu_cubemap_mix', ... | 2025-10-30T01:36:21 |
denoland/deno | 8ac8de128a1db7e71c37063dd101369f9abb4a3d | 975db92d8dd33ba9fe1f45f42baad9eba3e0d51d | fix: restore --env-file parent directory traversal and do not error in `deno compile` for not found env file (#32686)
Co-authored-by: David Sherret <dsherret@gmail.com> | [
{
"path": "Cargo.lock",
"patch": "@@ -2274,7 +2274,9 @@ dependencies = [\n name = \"deno_dotenv\"\n version = \"0.7.0\"\n dependencies = [\n+ \"deno_path_util\",\n \"sys_traits\",\n+ \"thiserror 2.0.12\",\n ]\n \n [[package]]",
"additions": 2,
"deletions": 0,
"language": "Unknown"
},
{
... | 2026-03-13T18:01:23 |
golang/go | bf1b0973db38346afae460e80d18020fa7de4e8c | 252a8adbc08f5b8ae97d2a857bf12810da54a11c | cmd/compile/internal/typecheck: simplify tcSliceHeader
types2 handles all constant-related bounds checks in user Go code now,
so it's safe to remove all constants checking in tcSliceHeader function.
Fixed #77919
Change-Id: Ibc137c84792d4898eb073cdeabac175684f73746
Reviewed-on: https://go-review.googlesource.com/c/go... | [
{
"path": "src/cmd/compile/internal/typecheck/expr.go",
"patch": "@@ -7,7 +7,6 @@ package typecheck\n import (\n \t\"fmt\"\n \t\"go/constant\"\n-\t\"go/token\"\n \t\"internal/types/errors\"\n \t\"strings\"\n \n@@ -826,18 +825,6 @@ func tcSliceHeader(n *ir.SliceHeaderExpr) ir.Node {\n \tn.Len = DefaultLit(Ex... | 2026-03-03T16:10:05 |
tensorflow/tensorflow | 6e09708d8524d1299074da1d371d568b483356a5 | 98b0544fe6235881ae8e69c9b18081e027623862 | [XLA:GPU] FusionPipeline: remove HloPassFix<>
This is a no-op that makes it appear as if we're going to running the
pass multiple times.
PiperOrigin-RevId: 886723114 | [
{
"path": "third_party/xla/xla/service/gpu/fusion_pipeline.cc",
"patch": "@@ -49,7 +49,7 @@ HloPassPipeline FusionPipeline(\n const GpuAliasInfo* alias_info, tsl::thread::ThreadPool* thread_pool,\n const se::DeviceDescription& gpu_device_info,\n mlir::MLIRContext* mlir_context) {\n- HloPassFix<... | 2026-03-20T12:12:35 |
swiftlang/swift | 33f75151bddc3d7ca1489656bcec0b5332ab127c | 3fbc3bf66ca2d07035d1c1ab85df05e457f5ca44 | [cxx-interop] Add FRT regression tests (NFC)
PR #87423 fixed a few issues. Add related regression tests:
- Issue #84557
- rdar://161425595 | [
{
"path": "test/Interop/Cxx/foreign-reference/frts-as-fields.swift",
"patch": "@@ -50,3 +50,44 @@ takesLargeStructWithRefCountedFieldNested(getNestedStruct())\n // CHECK-NEXT: RefCount: 1, message: release\n // CHECK-NEXT: RefCount: 0, message: release\n // CHECK-NEXT: RefCount: 0, message: Dtor\n+\n+struct... | 2026-03-21T03:11:28 |
mrdoob/three.js | 3e8b26e00f6d75d56108e09003437ddbf95c0996 | 30fdd5c87eb9a09803dbf4edb5814b993ec3365e | TSL: Fix get element through an output `Fn` value (#32143)
* Fix get element through a return function
* Update puppeteer.js | [
{
"path": "src/nodes/core/StackNode.js",
"patch": "@@ -79,6 +79,12 @@ class StackNode extends Node {\n \n \t}\n \n+\tgetElementType( builder ) {\n+\n+\t\treturn this.hasOutput ? this.outputNode.getElementType( builder ) : 'void';\n+\n+\t}\n+\n \tgetNodeType( builder ) {\n \n \t\treturn this.hasOutput ? this... | 2025-10-30T00:43:36 |
denoland/deno | 975db92d8dd33ba9fe1f45f42baad9eba3e0d51d | d3aaa2420a957d73641cef024c9929e23899e4dc | fix(ext/node): improve X509Certificate Node.js compatibility (#32671)
## Summary
- Fixes multiple compatibility issues with `crypto.X509Certificate` to
pass the Node.js `test-crypto-x509.js` test suite
- Adds `isX509Certificate()`, `signatureAlgorithm`,
`signatureAlgorithmOid` getters
- Fixes `emailAddress` label, dat... | [
{
"path": "ext/node/polyfills/internal/crypto/x509.ts",
"patch": "@@ -18,6 +18,8 @@ import {\n op_node_x509_get_issuer,\n op_node_x509_get_raw,\n op_node_x509_get_serial_number,\n+ op_node_x509_get_signature_algorithm_name,\n+ op_node_x509_get_signature_algorithm_oid,\n op_node_x509_get_subject,\n... | 2026-03-13T13:28:27 |
golang/go | 252a8adbc08f5b8ae97d2a857bf12810da54a11c | e7a09d1ffb8745350cb9b5ba9c495b5e066e09ab | internal/runtime/maps/: devirtualize hashing for specialized maps
This change improves performance of specialized maps and opens opportunity for further improvement by inlining hashing calls in the future (right now we can't inline functions from GOASM).
MapAccessBenchmarks
goos: linux
goarch: amd64
pkg: runtime
cpu:... | [
{
"path": "src/internal/runtime/maps/runtime.go",
"patch": "@@ -14,6 +14,18 @@ import (\n )\n \n // Functions below pushed from runtime.\n+//\n+//go:noescape\n+//go:linkname memhash32 runtime.memhash32\n+func memhash32(p unsafe.Pointer, h uintptr) uintptr\n+\n+//go:noescape\n+//go:linkname memhash64 runtime... | 2026-02-24T12:16:35 |
mrdoob/three.js | 7b65617a215774edffc1acea9d59a9a500e5eb15 | 30c1ac4fc195cbbabe4fc405e08275d52d20f8dd | Examples: Visualize normal as color in inspector `webgpu_postprocessing_ao` (#32141)
* fix debug view: normal
* move inspector AO to `aoPass.r`
---------
Co-authored-by: sunag <sunagbrasil@gmail.com> | [
{
"path": "examples/webgpu_postprocessing_ao.html",
"patch": "@@ -36,7 +36,7 @@\n \t\t<script type=\"module\">\n \n \t\t\timport * as THREE from 'three/webgpu';\n-\t\t\timport { pass, mrt, output, normalView, velocity, vec3, vec4 } from 'three/tsl';\n+\t\t\timport { pass, mrt, output, normalView, velocity, ... | 2025-10-29T15:23:57 |
tensorflow/tensorflow | ca84584ef13045f765c1c38fce2e4ceb5f97abb3 | 6900fab2bdc5b2d72f23be135930e91f53769342 | Add support for GB300, B300 and fix bug for GB200.
PiperOrigin-RevId: 886535172 | [
{
"path": "third_party/xla/xla/backends/gpu/target_config/target_config.h",
"patch": "@@ -40,6 +40,7 @@ enum class GpuModel {\n P100,\n V100,\n GB200,\n+ GB300,\n };\n \n // Description of a target device for compilation.",
"additions": 1,
"deletions": 0,
"language": "C/C++ Header"
},
... | 2026-03-20T03:56:29 |
denoland/deno | d3aaa2420a957d73641cef024c9929e23899e4dc | 9ab5c0ce6fef7ef4e40002d09058cecb4e87a6b9 | fix(lsp): align organize imports output with tsgo (#32677) | [
{
"path": "cli/lsp/code_lens.rs",
"patch": "@@ -3,7 +3,6 @@\n use std::cell::RefCell;\n use std::collections::HashSet;\n use std::rc::Rc;\n-use std::sync::Arc;\n \n use deno_ast::ParsedSource;\n use deno_ast::SourceRange;\n@@ -399,7 +398,7 @@ pub fn collect_test(\n pub fn collect_tsc(\n uri: &Uri,\n cod... | 2026-03-13T13:21:53 |
swiftlang/swift | b3fbc4cf75b9563e281cb46950117eceba6f6c79 | 1d059b94d8a55a3cdb0a37d943d0e7e66a354002 | ASCII fast paths for unicode scalar distance (#79886)
Fixes rdar://172958474 | [
{
"path": "stdlib/public/core/StringUnicodeScalarView.swift",
"patch": "@@ -176,6 +176,10 @@ extension String.UnicodeScalarView: BidirectionalCollection {\n let start = _guts.validateInclusiveScalarIndex(start)\n let end = _guts.validateInclusiveScalarIndex(end)\n \n+ if _guts.isASCII {\n+ r... | 2026-03-21T02:40:41 |
golang/go | e7a09d1ffb8745350cb9b5ba9c495b5e066e09ab | 50d988e4e037d9d41ac223a62706dfea47a100e4 | cmd/compile: use tail calls for wrappers for embedded interfaces
type I interface {
foo()
}
type S struct {
I
}
Because I is embedded in S, S needs a foo method. We generate a
wrapper function to implement (*S).foo. It just loads the embedded
field I out of S and calls foo on it.
When the thing in S.I its... | [
{
"path": "src/cmd/compile/internal/amd64/ssa.go",
"patch": "@@ -1306,14 +1306,14 @@ func ssaGenValue(s *ssagen.State, v *ssa.Value) {\n \t\t}\n \t\tr := v.Reg()\n \t\tgetgFromTLS(s, r)\n-\tcase ssa.OpAMD64CALLstatic, ssa.OpAMD64CALLtail:\n+\tcase ssa.OpAMD64CALLstatic, ssa.OpAMD64CALLtail, ssa.OpAMD64CALLt... | 2026-03-05T00:07:30 |
mrdoob/three.js | 30c1ac4fc195cbbabe4fc405e08275d52d20f8dd | 4342d10ea73aa3cea3dcddd4973a6521dda8d5e8 | AfterImageNode: Fix swap. (#32140) | [
{
"path": "examples/jsm/tsl/display/AfterImageNode.js",
"patch": "@@ -37,13 +37,6 @@ class AfterImageNode extends TempNode {\n \t\t */\n \t\tthis.textureNode = textureNode;\n \n-\t\t/**\n-\t\t * The texture represents the pervious frame.\n-\t\t *\n-\t\t * @type {TextureNode}\n-\t\t */\n-\t\tthis.textureNode... | 2025-10-29T15:03:11 |
golang/go | 50d988e4e037d9d41ac223a62706dfea47a100e4 | bf84b002d64d0b150818268e520fee0172a5c462 | runtime: when panicking, skip ahead to previous panic
While looking up the stack for a defer to run, if we come across
a panic frame we can skip ahead (up) to where the previous panic
was looking for a defer to run.
Switch from keeping LR (the caller's pc) to PC (the frame's PC).
Seems easier to reason about.
Fixes ... | [
{
"path": "src/runtime/panic.go",
"patch": "@@ -920,7 +920,7 @@ func (p *_panic) start(pc uintptr, sp unsafe.Pointer) {\n \t// caller instead, we avoid needing to unwind through an extra\n \t// frame. It also somewhat simplifies the terminating condition for\n \t// deferreturn.\n-\tp.lr, p.fp = pc, sp\n+\tp... | 2026-01-12T23:05:24 |
tensorflow/tensorflow | c9c832fea83fff781dc7d969000a594565f66b68 | 8ea661247f17f05467efd77110a63206d725df8a | Add overwrite option for TSL file rename.
To make this change a no-op, we default to overwriting (i.e. `overwrite=true`). Passing `overwrite=false` will result in an `UnimplementedError` unless specifically overrriden by a subclass.
PiperOrigin-RevId: 886377670 | [
{
"path": "third_party/xla/xla/tsl/platform/BUILD",
"patch": "@@ -423,6 +423,7 @@ tsl_cc_test(\n deps = [\n \":env\",\n \"//xla/tsl/testing:temporary_directory\",\n+ \"@com_google_absl//absl/status\",\n \"@com_google_absl//absl/status:status_matchers\",\n \"@com_go... | 2026-03-19T21:30:49 |
denoland/deno | 9ab5c0ce6fef7ef4e40002d09058cecb4e87a6b9 | 6c5ef85de45ecde1db3f4c9951dc47bdb824f798 | fix(npm): resolve bundled npm deps in packages properly when not using a `node_modules` directory (#32679)
We now attempt to find bundled dependencies at the start instead of on
error. Previously we were doing it only on error... and sometimes it
wouldn't error leading to bad resolution. | [
{
"path": "cli/lsp/resolver.rs",
"patch": "@@ -220,19 +220,19 @@ impl LspScopedResolver {\n }\n CliNpmResolver::Managed(managed_npm_resolver) => {\n CliNpmResolverCreateOptions::Managed({\n- let sys = CliSys::default();\n+ let sys = &factory.sys;\n ... | 2026-03-13T11:44:13 |
mrdoob/three.js | 465de053461571562e258814a304f242fde51989 | 8a74698aee922c39afe6c82b1e83f67e3c00a43a | Inspector: Fix `NaN` value | [
{
"path": "examples/jsm/inspector/Inspector.js",
"patch": "@@ -346,7 +346,7 @@ class Inspector extends RendererInspector {\n \n \t\t}\n \n-\t\treturn sum / count;\n+\t\treturn count > 0 ? sum / count : 0;\n \n \t}\n ",
"additions": 1,
"deletions": 1,
"language": "JavaScript"
}
] | 2025-10-28T15:04:10 |
golang/go | bf84b002d64d0b150818268e520fee0172a5c462 | 51a8f213cdedcf2a6368437c136897d6b09a442d | crypto/x509: add more test cases for name constraints.
This version of the code passes the tests, however, Go 1.25 currently
fails.
See I747e51edc16c1111f6a114de33af35f618793c90 for a backport of the test
cases to Go 1.25 and a fix for the issue discovered there.
Found as part of https://issues.chromium.org/issues/4... | [
{
"path": "src/crypto/x509/name_constraints_test.go",
"patch": "@@ -1656,6 +1656,174 @@ var nameConstraintsTests = []nameConstraintsTest{\n \t\t\tsans: []string{\"dns:\"},\n \t\t},\n \t},\n+\n+\t{\n+\t\tname: \"subdomain excluded constraints preclude outer wildcard names\",\n+\t\troots: []constraintsSpec{\n... | 2026-03-02T09:48:29 |
mrdoob/three.js | 8a74698aee922c39afe6c82b1e83f67e3c00a43a | ca2f49e9dde0f603913bcf3f802e95c1d0739098 | TSL: Add active stack and improve "node block" support (#32109)
* add active stack and improve "node block" support
* VarNode: Use `intent` for non-stack
* update
* fix sync set context value
* simplification
* simplification
* Update RangeNode.js | [
{
"path": "src/nodes/core/NodeBuilder.js",
"patch": "@@ -435,13 +435,13 @@ class NodeBuilder {\n \t\t */\n \t\tthis.subBuildLayers = [];\n \n+\n \t\t/**\n-\t\t * The current stack of nodes.\n+\t\t * The active stack nodes.\n \t\t *\n-\t\t * @type {?StackNode}\n-\t\t * @default null\n+\t\t * @type {Array<Sta... | 2025-10-28T14:01:32 |
denoland/deno | 6c5ef85de45ecde1db3f4c9951dc47bdb824f798 | ae8a10d220641061b725ce9d3a6f4d960a4ec7f8 | fix(ext/web): support %j JSON format specifier in console.log (#32684)
## Summary
- Add support for the `%j` format specifier in `console.log` and related
methods, which JSON-stringifies the argument (matching Node.js behavior)
- Circular references output `[Circular]` instead of throwing
Closes #32680
---------
Co... | [
{
"path": "ext/web/01_console.js",
"patch": "@@ -195,6 +195,7 @@ const {\n Uint32Array,\n WeakMap,\n WeakMapPrototype,\n+ JSONStringify,\n WeakSet,\n WeakSetPrototype,\n } = primordials;\n@@ -250,6 +251,34 @@ function assert(cond, msg = \"Assertion failed\") {\n }\n }\n \n+// Attempt to JSON.st... | 2026-03-13T11:36:19 |
tensorflow/tensorflow | 8ea661247f17f05467efd77110a63206d725df8a | a337e2006d49f44930a1ffc04de93f81b82a2abe | [xla:cpu:ynn] Make LibraryRewriter support `LIBRARY_FUSION_TYPE_INDIVIDUAL_DOT` mode.
XLA:CPU calls YNNPACK in two ways:
1) Graph rewrite:
Run LibraryRewriter pass to put HLO subgraph in a custom "__ynn_fusion" fusion op. This is for `LIBRARY_FUSION_TYPE_{DOT,REDUCE,ELTWISE}`.
2) Quick hatch:
Make XLA:CPU's standard... | [
{
"path": "third_party/xla/xla/backends/cpu/transforms/library_matcher.h",
"patch": "@@ -43,8 +43,11 @@ class LibraryMatcher {\n case DebugOptions::LIBRARY_FUSION_TYPE_ELTWISE:\n fuse_eltwise_ = true;\n break;\n- // Not intended to be used by LibraryMatcher.\n case... | 2026-03-19T21:22:50 |
swiftlang/swift | 7d84de24c2316fef1238633089a4738ad98be78d | ce2de43ecbb5c9d51e92a2441a65ecc8366c64f7 | [LLDB] Avoid an IRGen crash in LLDB's expression evaluator
when accessing private resilient accessors. The compiler may have elided
dispatch thunks for resilient methods. To make them available in the expression
evaluator there is a special case to directly calls the virtualmethod. However,
this causes a crash in IRG... | [
{
"path": "lib/IRGen/IRGenSIL.cpp",
"patch": "@@ -8584,13 +8584,23 @@ bool IRGenSILFunction::shouldUseDispatchThunk(SILDeclRef method) {\n AccessLevel methodAccess = method.getDecl()->getEffectiveAccess();\n auto *classDecl = cast<ClassDecl>(method.getDecl()->getDeclContext());\n bool shouldUseDispatc... | 2026-03-20T23:47:11 |
golang/go | cbab448de1c562e417b179d29f99758f4680630b | 2ebb15729599c71c4bb9ea83849315e214c81b78 | crypto/x509: fix name constraint checking panic
Apparently we allow empty dNSName SANs (e.g. a domain name of ""), which
causes the excluded domain name wildcard checking to panic, because we
assume names are always non-empty. RFC 5280 appears to say the empty
string should not be accepted, although confusingly refers... | [
{
"path": "src/crypto/x509/constraints.go",
"patch": "@@ -375,7 +375,7 @@ func (dnc *dnsConstraints) query(s string) (string, bool) {\n \t\treturn constraint, true\n \t}\n \n-\tif !dnc.permitted && s[0] == '*' {\n+\tif !dnc.permitted && len(s) > 0 && s[0] == '*' {\n \t\ttrimmed := trimFirstLabel(s)\n \t\tif... | 2026-02-11T22:49:13 |
mrdoob/three.js | ca2f49e9dde0f603913bcf3f802e95c1d0739098 | 1dcf17505d4f443c8c3ce53bfd229deeac6a3583 | WebGPURenderer: Fix types for indirect compute and modify example to show usage (#32129)
* Fix type annotations, handle IndirectStorageBufferAttribute in webgl fallback renderer.
* Modify webgpu_compute_particles example to utilize indirect compute dispatch
* Respect dispatchSize when backend is not initialized
* R... | [
{
"path": "src/renderers/common/Renderer.js",
"patch": "@@ -2420,10 +2420,10 @@ class Renderer {\n \t * if the renderer has been initialized.\n \t *\n \t * @param {Node|Array<Node>} computeNodes - The compute node(s).\n-\t * @param {number|Array<number>|GPUBuffer} [dispatchSize=null]\n+\t * @param {number|A... | 2025-10-28T13:19:13 |
denoland/deno | ae8a10d220641061b725ce9d3a6f4d960a4ec7f8 | 4da9f0b34805b146d3d965946e904d6c335c187a | fix(watch): dispatch unload and process exit events on restart (#32664)
## Summary
- Fix `unload` event not firing when watch mode restarts a script
blocked on a top-level await
- Fix Node.js `process.on("exit")` handlers not firing on watch restart
### What changed
In `FileWatcherModuleExecutor::execute()`, `pendi... | [
{
"path": "cli/worker.rs",
"patch": "@@ -194,9 +194,16 @@ impl CliMainWorker {\n /// Execute the given main module emitting load and unload events before and after execution\n /// respectively.\n pub async fn execute(&mut self) -> Result<(), CoreError> {\n- self.inner.execute_main_m... | 2026-03-13T11:32:25 |
tensorflow/tensorflow | 341172200935fead7bcb6c3e6c6956c319da924b | edee9ba0a9014cb7835e7fbb57db9952d90c975e | PR #39105: [GPU] Fix autotuning of GEMM fusions with cuDNN backend.
Imported from GitHub PR https://github.com/openxla/xla/pull/39105
📝 Summary of Changes
Fix autotuning of GEMM fusions with cuDNN backend that became disabled after a few iterations of refactoring.
🎯 Justification
🐛 Bug Fix
🚀 Kind of Contributio... | [
{
"path": "third_party/xla/xla/backends/gpu/autotuner/BUILD",
"patch": "@@ -351,6 +351,7 @@ xla_test(\n \"//xla/service:compiler\",\n \"//xla/service:platform_util\",\n \"//xla/service/gpu:backend_configs_cc\",\n+ \"//xla/service/gpu:ir_emission_utils\",\n \"//xla/serv... | 2026-03-19T15:33:22 |
kubernetes/kubernetes | 8ed40e7ae71a3484b969f5de5d83e44594606b32 | 4810a2aae7b352559194f6ff19aa908de4df99c2 | test: add unit tests for deleteObject NotFound handling in garbage collector
When deleteObject returns a NotFound error (the object was externally deleted
between the GET and the DELETE), attemptToDeleteItem should enqueue a virtual
delete event and return enqueuedVirtualDeleteEventErr.
Cover both code paths:
- defau... | [
{
"path": "pkg/controller/garbagecollector/garbagecollector.go",
"patch": "@@ -627,7 +627,6 @@ func (gc *GarbageCollector) attemptToDeleteItem(ctx context.Context, item *node)\n \t\tpolicy := metav1.DeletePropagationForeground\n \t\terr := gc.deleteObject(item.identity, latest.ResourceVersion, latest.OwnerR... | 2026-03-10T18:11:31 |
swiftlang/swift | ff0557ab92d9764ee328ffebb7ba6f4f4deb48ff | c3e35843a9bfbd3aef0e51c6a4ab3ca2c75f2274 | Bailout cloning indexes for non-trivial ossa instructions
In cloneFixedStorageIndex, bail out when an instruction to be cloned has
a lifetime-ending operand. Cloning such an instruction (e.g.
destructure_struct/destructure_tuple with an @owned operand, end_borrow of a begin_borrow)
may create a second consume, violati... | [
{
"path": "lib/SILOptimizer/LoopTransforms/BoundsCheckOpts.cpp",
"patch": "@@ -1882,6 +1882,16 @@ BoundsCheckOpts::cloneFixedStorageIndex(SILValue indexValue,\n while (auto value = worklist.pop()) {\n auto *inst = value->getDefiningInstruction();\n \n+ // In ossa, bailout when we have an instructio... | 2026-03-20T20:43:32 |
golang/go | 2ebb15729599c71c4bb9ea83849315e214c81b78 | fb16297ae571a232e46a67e6e40027f1f82ef6ec | crypto/x509: fix full email constraint matching
For full email addresses (local@domain), we stored a map between the
case sensitive local portion to the case insensitive domain portion, and
used that to check if a email SAN matched the constraint. This could be
abused, because it was a map[string]string, meaning if an... | [
{
"path": "src/crypto/x509/constraints.go",
"patch": "@@ -58,11 +58,11 @@ import (\n // of nameConstraintsSet, to handle constraints which define full email\n // addresses (i.e. 'test@example.com'). For bare domain constraints, we use the\n // dnsConstraints type described above, querying the domain portion... | 2026-02-11T23:16:38 |
mrdoob/three.js | a55dcde5dd25d6d3e8a2d5967becb6234b8b7bf4 | e87bd6551b20c69efb2ca15e34976d5836fb0137 | Selective Bloom Example: Add bloomStrength uniform to enhance bloom effect control (#32125)
* Add bloomStrength uniform to enhance bloom effect control
* Minor fix
* Review comment: https://github.com/mrdoob/three.js/pull/32125#discussion_r2465078024 | [
{
"path": "examples/webgl_postprocessing_unreal_bloom_selective.html",
"patch": "@@ -30,12 +30,13 @@\n \n \t\t\tuniform sampler2D baseTexture;\n \t\t\tuniform sampler2D bloomTexture;\n+\t\t\tuniform float bloomStrength;\n \n \t\t\tvarying vec2 vUv;\n \n \t\t\tvoid main() {\n \n-\t\t\t\tgl_FragColor = ( text... | 2025-10-28T09:04:15 |
denoland/deno | 5b7680fc07e69ba7d065c1aad59038e74a6b94a0 | 653c3c5ed04d818b733a65003d9566dcb3b9e365 | fix(web): support structuredClone for DOMException (#32675)
## Summary
- Enables `structuredClone()` and `postMessage()` for `DOMException`
objects using the cloneable resource registry from #32672
- Serializes `message`, `name`, and `stack`; `code` is derived from
`name` on deserialization
- Supersedes #31156
Ref #3... | [
{
"path": "ext/web/01_dom_exception.js",
"patch": "@@ -7,7 +7,7 @@\n /// <reference path=\"../web/internal.d.ts\" />\n /// <reference path=\"../../cli/tsc/dts/lib.deno_web.d.ts\" />\n \n-import { primordials } from \"ext:core/mod.js\";\n+import { core, primordials } from \"ext:core/mod.js\";\n const {\n E... | 2026-03-13T10:23:15 |
kubernetes/kubernetes | 20f95d2f2be48014fafec9d88ef1e5759289b87a | f8b277b2b8aea984f56fb284bce50eea89f9fd06 | apimachinery: clarify ErrorHandler and provide helper for formatting
It turned out that some downstream consumers converted their code after the API
change in 1.32 (5a130d2b71e5d70cfff15087f4d521c6b68fb01e) by simply taking the
error from the parameters, ignoring the rest. Not only is this capturing the
problem incomp... | [
{
"path": "staging/src/k8s.io/apimachinery/pkg/util/runtime/runtime.go",
"patch": "@@ -17,14 +17,17 @@ limitations under the License.\n package runtime\n \n import (\n+\t\"bytes\"\n \t\"context\"\n \t\"fmt\"\n \t\"net/http\"\n \t\"runtime\"\n+\t\"strings\"\n \t\"sync\"\n \t\"time\"\n \n \t\"k8s.io/klog/v2\"... | 2025-11-24T09:53:24 |
tensorflow/tensorflow | 5c41afe010259837f78369e30a9e51e5a9e9b1f5 | 601075b4b8b720d4aba717f508b8ae586457d9d4 | PR #39386: Fix use-after-free of temporary Literal in LinearizeInto
Imported from GitHub PR https://github.com/openxla/xla/pull/39386
LinearizeInto captured a LiteralSlice (non-owning view) by value in an async H2D transfer closure scheduled on a thread pool. When the caller passed a temporary Literal (e.g. via Buff... | [
{
"path": "third_party/xla/xla/pjrt/common_pjrt_client.cc",
"patch": "@@ -155,11 +155,20 @@ CommonPjRtClient::BufferFromHostLiteral(const LiteralSlice& literal,\n AllocateRawBuffer(memory_space, on_device_bytes_count,\n /*retry_on_oom=*/true,\n ... | 2026-03-19T15:00:10 |
swiftlang/swift | c3e35843a9bfbd3aef0e51c6a4ab3ca2c75f2274 | 80f582348e5b8fc6f84c49f9ab7dbb505cfc190c | Hoist bounds checks annotated with fixed storage semantics of the same self to appear together in a block
This change introduces an optimization that hoists bounds checks with fixed storage semantics when they operate on the same self value,
grouping them together within a basic block to enable downstream optimization... | [
{
"path": "include/swift/SIL/InstWrappers.h",
"patch": "@@ -396,10 +396,19 @@ struct FixedStorageSemanticsCall {\n }\n }\n \n+ bool hasSelf() const { return apply->hasSelfArgument(); }\n+\n+ SILValue getSelf() const { return apply->getSelfArgument(); }\n+\n+ SILValue getIndex() const { return apply... | 2026-03-06T18:59:30 |
mrdoob/three.js | e87bd6551b20c69efb2ca15e34976d5836fb0137 | 158c1c47f2191a1b0b0687ba0022139731a71090 | WebGPURenderer: Fix dispose `RenderTarget` textures (#32131) | [
{
"path": "src/renderers/common/Textures.js",
"patch": "@@ -164,28 +164,13 @@ class Textures extends DataMap {\n \n \t\t\t// dispose\n \n-\t\t\tconst onDispose = () => {\n+\t\t\trenderTargetData.onDispose = () => {\n \n-\t\t\t\trenderTarget.removeEventListener( 'dispose', onDispose );\n-\n-\t\t\t\tfor ( let... | 2025-10-27T20:14:28 |
denoland/deno | 653c3c5ed04d818b733a65003d9566dcb3b9e365 | 7fa991eba96e14bc35429c223e3d009afa5191aa | fix(ext/node): implement safe, add, rem options for crypto.generatePrime (#32618)
## Summary
- Implements the previously stubbed `safe`, `add`, and `rem` options for
`crypto.generatePrime()` / `crypto.generatePrimeSync()`, matching
Node.js/OpenSSL behavior
- Fixes `checkPrime` / `checkPrimeSync` bigint truncation bug... | [
{
"path": "ext/node/polyfills/internal/crypto/diffiehellman.ts",
"patch": "@@ -136,7 +136,7 @@ export class DiffieHellmanImpl {\n }\n \n this.#prime = Buffer.from(\n- op_node_gen_prime(this.#primeLength).buffer,\n+ op_node_gen_prime(this.#primeLength, false, null, null).buffer,\n ... | 2026-03-13T09:51:07 |
golang/go | fb16297ae571a232e46a67e6e40027f1f82ef6ec | 36d8b15842748194c4a2ce7e9cf46c65a958283c | html/template: properly escape URLs in meta content attributes
The meta tag can include a content attribute that contains URLs, which
we currently don't escape if they are inserted via a template action.
This can plausibly lead to XSS vulnerabilities if untrusted data is
inserted there, the http-equiv attribute is set... | [
{
"path": "doc/godebug.md",
"patch": "@@ -160,6 +160,13 @@ and the [go command documentation](/cmd/go#hdr-Build_and_test_caching).\n \n Go 1.27 removed the `gotypesalias` setting, as noted in the [Go 1.22][#go-122] section.\n \n+Go 1.27 added a new `htmlmetacontenturlescape` setting that controls whether\n+... | 2026-01-09T19:12:01 |
kubernetes/kubernetes | f33176fc009070ff7b6c57544fe085876c78800f | dd6f4d3a16306c9cc8dbc6a210c0b7a38fa1eb68 | DRA scheduler: add unit tests for AllocationTimestamp
The code paths for adding AllocationTimestamp were not tested well. None of
the test cases verified that an AllocationTimestamp gets added at all because
go-cmp was instructed to ignore the unpredictable field.
We can do better than that and at least check for exi... | [
{
"path": "pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go",
"patch": "@@ -770,6 +770,7 @@ var (\n \t}()\n \n \tallocationResultWithBindingConditions = &resourceapi.AllocationResult{\n+\t\tAllocationTimestamp: new(metav1.Time), // Non-nil, actual value not checked.\n \t\tDevices: r... | 2026-03-10T15:06:16 |
tensorflow/tensorflow | 601075b4b8b720d4aba717f508b8ae586457d9d4 | 1d1d28139796d3c2c41864649fc59103fc19b616 | PR #39413: Add fusion debug logging
Imported from GitHub PR https://github.com/openxla/xla/pull/39413
📝 Summary of Changes
Added `VLOG(2)` debugging statements to `xla/service/instruction_fusion.cc`. The logs explicitly output fusion rejections as well as the specific reason for rejection. The logs now surface the e... | [
{
"path": "third_party/xla/xla/service/instruction_fusion.cc",
"patch": "@@ -1104,9 +1104,13 @@ FusionDecision InstructionFusion::ShouldFuse(\n inplace_op_fusion_decider,\n bool legality_check_only /*=false*/) {\n HloInstruction* producer = consumer->mutable_operand(operand_index);\n-\n+ VLOG... | 2026-03-19T14:46:39 |
mrdoob/three.js | f957f0b2adada81cb7c1de6fe34a79ead0026a93 | ca94c690d327b3da24736e7ec0e64877dd06c90e | Update ViewHelper.js
Fix typo. | [
{
"path": "examples/jsm/helpers/ViewHelper.js",
"patch": "@@ -368,7 +368,7 @@ class ViewHelper extends Object3D {\n \n \t\t}\n \n-\t\tfunction useOffscreenCavnas() {\n+\t\tfunction useOffscreenCanvas() {\n \n \t\t\tlet useOffscreenCanvas = false;\n \n@@ -392,7 +392,7 @@ class ViewHelper extends Object3D {\n... | 2025-10-27T15:36:44 |
swiftlang/swift | c197635ad944b890e192211fa9a6332a9ade49a3 | 9ea7587a3f577b967ee1ebb24b0a932fd817c3f1 | AST: Factor out ASTContext::get{CGFloat,Double}InitDecl() from CSApply.cpp
Also, since the mock SDK's implementation of CGFloat is wrong,
update some existing tests to use the real SDK instead. This
exposed a few instances where the behavior was not as intended;
I added FIXME comments explaining what's going on. | [
{
"path": "include/swift/AST/ASTContext.h",
"patch": "@@ -761,6 +761,12 @@ class ASTContext final {\n /// promises to return non-null.\n bool hasArrayLiteralIntrinsics() const;\n \n+ /// Retrieve the declaration of Swift.CGFloat.init(_: Double).\n+ ConcreteDeclRef getCGFloatInitDecl() const;\n+\n+ //... | 2026-03-12T20:02:24 |
denoland/deno | 7fa991eba96e14bc35429c223e3d009afa5191aa | 7e58228ebde1f2813ae6537ddbe7aa323e5fb3eb | fix(ext/crypto): support structuredClone for CryptoKey (#32674)
## Summary
- Enables `structuredClone()` and `postMessage()` for `CryptoKey`
objects using the cloneable resource registry from #32672
- Works for all key types (AES, RSA, HMAC, EC, Ed25519, X25519, X448)
including **non-extractable** keys
- Clones intern... | [
{
"path": "ext/crypto/00_crypto.js",
"patch": "@@ -65,6 +65,7 @@ const {\n JSONStringify,\n MathCeil,\n ObjectAssign,\n+ ObjectDefineProperty,\n ObjectHasOwn,\n ObjectPrototypeIsPrototypeOf,\n SafeArrayIterator,\n@@ -438,9 +439,35 @@ function constructKey(type, extractable, usages, algorithm, h... | 2026-03-13T09:50:19 |
golang/go | 36d8b15842748194c4a2ce7e9cf46c65a958283c | 4270a44ed749c581457eed30239ad79195ff39c9 | net/url: reject IPv6 literal not at start of host
This change rejects IPv6 literals that do not appear at the start of the
host subcomponent of a URL.
For example:
http://example.com[::1] -> rejects
http://[::1] -> accepts
Thanks to Masaki Hara (https://github.com/qnighy) of Wantedly.
Fixes #77578.
F... | [
{
"path": "src/net/url/url.go",
"patch": "@@ -547,7 +547,9 @@ func parseAuthority(scheme, authority string) (user *Userinfo, host string, err\n // parseHost parses host as an authority without user\n // information. That is, as host[:port].\n func parseHost(scheme, host string) (string, error) {\n-\tif open... | 2026-01-28T20:29:52 |
mrdoob/three.js | be24f9de78a62e3a1a452cb752f22ad4bf7426d8 | 1dd9ba536feae14e2dba4ef1d6d92ab2e9bf81f4 | TSL: Fix `overloadingFn` return type (#32112) | [
{
"path": "src/nodes/utils/FunctionOverloadingNode.js",
"patch": "@@ -46,7 +46,7 @@ class FunctionOverloadingNode extends Node {\n \t\t * @private\n \t\t * @type {ShaderCallNodeInternal}\n \t\t */\n-\t\tthis._candidateFnCall = null;\n+\t\tthis._candidateFn = null;\n \n \t\t/**\n \t\t * This node is marked a... | 2025-10-23T22:26:31 |
denoland/deno | 7e58228ebde1f2813ae6537ddbe7aa323e5fb3eb | 92ca1fe1bf13032703b419314d6ddc2ab442318f | perf(fmt): speed up file diffing (#30644)
This swaps out dissimilar for imara which is substantially faster at
diffing strings.
Note that this is a proof of concept and I did not have enough time to
make the output pretty. I just shows that the diff is fast. Applying
colors should be doable without changing much abou... | [
{
"path": "Cargo.lock",
"patch": "@@ -3119,9 +3119,9 @@ dependencies = [\n \"deno_semver\",\n \"deno_terminal\",\n \"deno_unsync\",\n- \"dissimilar\",\n \"futures\",\n \"http 1.4.0\",\n+ \"imara-diff\",\n \"import_map\",\n \"indexmap 2.12.0\",\n \"jsonc-parser 0.28.0\",\n@@ -5917,14 +5917,24 @@ depe... | 2026-03-13T08:30:01 |
kubernetes/kubernetes | 765891cc0f3daa6bc091e4ea182535961f6e89c0 | 47d830f3cd69fee435cf3b00d686681cf551fe4d | Condense optionalfields exceptions for apiserverinternal group | [
{
"path": "hack/golangci-hints.yaml",
"patch": "@@ -161,22 +161,19 @@ linters:\n path: \"staging/src/k8s.io/api/events/(v1|v1beta1)/types.go\"\n - text: 'notimestamp: naming convention \"notimestamp\": field AllocationResult.AllocationTimestamp: prefer use of the term ''time'' over ''timestamp... | 2026-03-10T15:06:03 |
swiftlang/swift | 9ea7587a3f577b967ee1ebb24b0a932fd817c3f1 | 157709a41cbedd438fc5c10c8eb19b637fccd855 | SILGen: Workaround for mismatch in expected level of opaque archetype erasure when emitting function conversions
The TypeExpansionContext of a function that emits a reabstraction thunk
might differ from the TypeExpansionContext of the thunk itself.
This seems to cause a problem in one case at least, when emitting a
f... | [
{
"path": "lib/SILGen/SILGenPoly.cpp",
"patch": "@@ -705,9 +705,22 @@ ManagedValue Transform::transform(ManagedValue v,\n \n // - existentials\n if (outputSubstType->isAnyExistentialType()) {\n- // We have to re-abstract payload if its a metatype or a function\n- v = SGF.emitSubstToOrigValue(Loc,... | 2026-03-20T18:39:14 |
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.