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
denoland/deno
2186d72c3068f0beaab1cad662cf7c1c9ebef2f5
6a9d927ee364250839e250827f224d74f71662b6
fix(npm): use box-drawing style for deprecated package warnings (#32979) Matches the box used in "ignored build scripts". Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
[ { "path": "libs/npm_installer/local.rs", "patch": "@@ -869,27 +869,25 @@ impl<\n let mut output = String::new();\n let _ = writeln!(\n &mut output,\n- \"{} The following packages are deprecated:\",\n- colors::yellow(\"Warning\")\n+ \"{} {}\",\n+ ...
2026-03-25T10:32:44
golang/go
47c0cd9929b82a0d95a8d0dffda47604081565ea
e7e45d770c4d46617dd17b0f5c7dd58bd448f47b
test/codegen: remove noop Ands from test cases Theses test cases search for an AND that gets optimized away after CL 760307. Should help to fix riscv64 (coudn't check as builders don't appear on https://build.golang.org/ ) and loong64 CI on master. Change-Id: I57e4e5ab7d3003f239355137472585e46493d8dc Reviewed-on: ht...
[ { "path": "test/codegen/bits.go", "patch": "@@ -40,8 +40,8 @@ func bitsCheckConstLeftShiftU64(a uint64) (n int) {\n func bitsCheckConstRightShiftU64(a [8]uint64) (n int) {\n \t// amd64:\"BTQ [$]63,\"\n \t// arm64:\"TBNZ [$]63,\" -\"LSR\"\n-\t// loong64:\"SRLV [$]63,\" \"AND [$]1,\" \"BNE\"\n-\t// riscv64:\"...
2026-03-28T01:31:48
swiftlang/swift
c92ce32839e66620672e76e79703ff62f639a7cd
b866471e8c03512f81ff71abc97729130f035a25
utils: hardcode installer file name for staging This is used to generate the path to the binlogs which are required for debugging. Update the filename to the hardcoded constant for the time being. THis should repair the Windows builds.
[ { "path": "utils/build.ps1", "patch": "@@ -4159,7 +4159,7 @@ function Build-Installer([Hashtable] $Platform) {\n \n function Copy-BuildArtifactsToStage([Hashtable] $Platform) {\n # Save the installer binary log\n- Copy-File \"$BinaryCache\\$($Platform.Triple)\\msi\\$($Platform.Architecture.VSName)-$([Sys...
2026-03-31T12:38:31
kubernetes/kubernetes
0ce4a7003b82428c9f9a3905a6b15cfb79487931
45ab2fc31eb32f646381c8c515db58222b5508c0
fixed merge conflicts; prev msg: ran hack/update-featuregates.sh
[ { "path": "test/compatibility_lifecycle/reference/feature_list.md", "patch": "@@ -104,7 +104,7 @@\n | KubeletEnsureSecretPulledImages | :ballot_box_with_check:&nbsp;1.35+ | | 1.33–1.34 | 1.35– | | | | [code](https://cs.k8s.io/?q=%5CbKubeletEnsureSecretPulledImages%5Cb&i=nope&files=&excludeFiles=CHANGELO...
2026-01-26T23:33:13
mrdoob/three.js
686e56ad37d9b585ccf1fa4b474b98ca2234d2c6
f2beb96f5e75a6d755e4caa1d8770fa53a9d38a4
NodeBuilder: Fix shared group detection. (#32913)
[ { "path": "src/nodes/core/NodeBuilder.js", "patch": "@@ -584,7 +584,7 @@ class NodeBuilder {\n \n \t\t\tbindingsArray.push( binding );\n \n-\t\t\tsharedGroup = sharedGroup && binding.groupNode.shared !== true;\n+\t\t\tsharedGroup = sharedGroup && binding.groupNode.shared;\n \n \t\t}\n ", "additions": 1,...
2026-01-31T15:25:21
tensorflow/tensorflow
c6d844d439cf17d3173f4d557646d55b895298ba
f2c55883b428c84e45f63400665c4eaa9c45edf0
PR #39854: [ROCm] Use hermetic clang for rocm Imported from GitHub PR https://github.com/openxla/xla/pull/39854 📝 Summary of Changes Use hermetic llvm dependency to compile xla under rocm 🎯 Justification Get rid of the dependency of the installed llvm, instead use hermetic llvm and provided with it clang to compil...
[ { "path": "third_party/xla/.github/workflows/rocm_jax_ut.yml", "patch": "@@ -84,4 +84,5 @@ jobs:\n --override_repository=xla=${GITHUB_WORKSPACE} \\\n --config=single_gpu \\\n --local_test_jobs=4 \\\n- --repo_env=TF_ROCM_RBE_DOCKER_IMAGE=${DOCKER_IMAGE}\n+ ...
2026-04-01T10:52:29
denoland/deno
6a9d927ee364250839e250827f224d74f71662b6
460cca9458ebd26cf599327bea145c5bd7561ab6
fix(ext/node): support http2 createConnection sockets (#32733) Fixes the regression reported in https://github.com/denoland/deno/issues/26907#issuecomment-4039469375 ### Problem The HTTP/2 rewrite (#32418) broke `@grpc/grpc-js` for all plaintext connections. grpc-js uses `http2.connect()` with `createConnection`, wh...
[ { "path": "ext/net/io.rs", "patch": "@@ -122,6 +122,21 @@ impl Resource for TcpStreamResource {\n }\n \n impl TcpStreamResource {\n+ pub fn dup_raw_fd(self: &Rc<Self>) -> Option<i32> {\n+ let wr = RcRef::map(self, |r| &r.wr).try_borrow()?;\n+ let sock = SockRef::from(wr.as_ref().as_ref()).try_clone()...
2026-03-25T10:25:10
golang/go
880f126233a377ee656612e68710eefe7964f646
c7238e81ca45af755a2c7770950eb163efa3495f
test/codegen: fix ppc64x rldicl bit test The prove pass removes superfluous bit masking. This was meant to test the edge cases of the ppc64 folding rules which are exactly the cases the prove pass now removes. Fixes #78403 Change-Id: I45eeac58e01b42e19b8a06bb0d7af96c616ccbff Reviewed-on: https://go-review.googlesour...
[ { "path": "test/codegen/bits.go", "patch": "@@ -606,8 +606,8 @@ func bitsRotateAndMask(io64 [8]uint64, io32 [4]uint32, io16 [4]uint16, io8 [4]ui\n \tio64[1] = io64[1] & 0x0000FFFFFFFFFFFF\n \t// ppc64x: -\"SRD\", -\"AND\", \"RLDICL [$]60, R[0-9]*, [$]16, R\"\n \tio64[2] = (io64[2] >> 4) & 0x0000FFFFFFFFFFFF...
2026-03-27T19:56:25
mrdoob/three.js
3ea832dc534cf7d33582efb861203de359aa059a
792ef3a4d6bfc6988a92d9a006c15473d606d85d
Examples: Various fixes for WebGPU compatibility mode. (#32907)
[ { "path": "examples/webgpu_compute_birds.html", "patch": "@@ -158,7 +158,7 @@\n \n \t\t\t\t//\n \n-\t\t\t\trenderer = new THREE.WebGPURenderer( { antialias: true, forceWebGL: false } );\n+\t\t\t\trenderer = new THREE.WebGPURenderer( { antialias: true, forceWebGL: false, requiredLimits: { maxStorageBuffersIn...
2026-01-31T11:30:10
denoland/deno
460cca9458ebd26cf599327bea145c5bd7561ab6
b6f73d5b3806d990d98887719eb3dbf74ceb9784
fix: include Temporal types in deno types output (#32952) ## Summary Add `"esnext.temporal"` to the `lib_names` list in `get_types_declaration_file_text()` so that `deno types` emits the Temporal namespace declarations from TypeScript's `lib.esnext.temporal.d.ts`. This was accidentally removed in #32656 (typescript-...
[ { "path": "cli/tsc/mod.rs", "patch": "@@ -73,6 +73,7 @@ pub fn get_types_declaration_file_text() -> String {\n \"deno.net\",\n \"deno.shared_globals\",\n \"deno.cache\",\n+ \"esnext.temporal\",\n \"deno.window\",\n \"deno.unstable\",\n ];", "additions": 1, "deletions": 0, ...
2026-03-25T10:24:14
tensorflow/tensorflow
7cbbb19641ae7025276269eb2ead8e7b160d7011
4c8cdd00a503b86261282b349bcfe387432933b0
Fix scan rewriter to handle broadcasted initial values and correct layout calculation. The scan rewriter now correctly identifies zero initial values even when they are wrapped in a broadcast. Additionally, the logic for calculating `vector_length` and `column_length` based on the minor-to-major layout has been correc...
[ { "path": "third_party/xla/xla/backends/gpu/transforms/scan_rewriter.cc", "patch": "@@ -59,11 +59,14 @@ absl::StatusOr<bool> ScanRewriter::RunOnComputation(\n })) {\n continue;\n }\n- HloInstruction* init = scan->inits().front();\n+ const HloInstruction* init = scan->inits().front();...
2026-04-01T09:41:30
golang/go
5a0e0838232d7aa7c82b5a33d89458c01ccd4ffc
90adad7b2565d456bf5e120a59a07ff31f3ada45
crypto: disallow RegisterHash with hash value 0 We already prevent registering hash values larger than the number of hashes we actually have, but for some reason we don't prevent registering hash value 0, which is the sentinel value we typically use for "no hash". This change adds a check to prevent registering hash v...
[ { "path": "src/crypto/crypto.go", "patch": "@@ -143,7 +143,7 @@ func (h Hash) Available() bool {\n // hash function. This is intended to be called from the init function in\n // packages that implement hash functions.\n func RegisterHash(h Hash, f func() hash.Hash) {\n-\tif h >= maxHash {\n+\tif h == 0 || h...
2026-03-27T15:40:08
mrdoob/three.js
f8464f9569b7e545b81ff0bebc99664ec3541f9e
7f71a050c8ae0facbed1312f8bd1f1814740061a
KTX2Loader. Fix typo in `TYPE_MAP`. (#32899)
[ { "path": "examples/jsm/loaders/KTX2Loader.js", "patch": "@@ -1035,9 +1035,9 @@ const TYPE_MAP = {\n \t[ VK_FORMAT_ETC2_R8G8B8A8_SRGB_BLOCK ]: UnsignedByteType,\n \t[ VK_FORMAT_ETC2_R8G8B8_SRGB_BLOCK ]: UnsignedByteType,\n \t[ VK_FORMAT_EAC_R11_UNORM_BLOCK ]: UnsignedByteType,\n-\t[ VK_FORMAT_EAC_R11_UNORM_...
2026-01-30T12:10:54
kubernetes/kubernetes
ab5335d780eb561b8c8e5668d484014f17a5005b
f266fe4118e52605ba9cf02e1ab2ed68988d56e9
Add a linter exception for using maps.
[ { "path": "hack/golangci-hints.yaml", "patch": "@@ -209,11 +209,14 @@ linters:\n path: \"staging/src/k8s.io/api/core/v1/types.go\"\n - text: \"type ResourceList should not use a map type, use a list type with a unique name/identifier instead\"\n path: \"staging/src/k8s.io/api/core/v1/t...
2026-03-09T16:15:18
golang/go
90adad7b2565d456bf5e120a59a07ff31f3ada45
eeefb11776b91e4c758306d00094dccddffc8ce8
cmd/go: specify full path to go command when running go tool covdata Otherwise the GOROOT will be a post-1.25 GOROOT, while we try to run "go tool covdata" with a go command that's 1.24 or earlier from the post 1.25 toolchain. The 1.24 go command won't be able to find covdata in the 1.25 goroot because go 1.25 and lat...
[ { "path": "src/cmd/go/internal/work/cover.go", "patch": "@@ -24,7 +24,7 @@ import (\n func (b *Builder) CovData(a *Action, cmdargs ...any) ([]byte, error) {\n \tcmdline := str.StringList(cmdargs...)\n \targs := append([]string{}, cfg.BuildToolexec...)\n-\targs = append(args, \"go\", \"tool\", \"covdata\")\n...
2026-03-17T21:07:02
denoland/deno
b6f73d5b3806d990d98887719eb3dbf74ceb9784
5a97b626ced7988bd5981deb57bd2e2763fde640
fix(resolver): prefer exact version match in BYONM npm resolution (#32977) ## Summary Fixes #32972 When resolving npm packages in BYONM (`nodeModulesDir: "manual"`) mode, the resolver scans `node_modules/.deno/` for matching versions and returns the highest one that satisfies the version requirement. This causes `de...
[ { "path": "libs/resolver/npm/byonm.rs", "patch": "@@ -368,6 +368,16 @@ impl<TSys: ByonmNpmResolverSys> ByonmNpmResolver<TSys> {\n }\n }\n } else if req.version_req.matches(&version) {\n+ // Prefer an exact version match over the highest matching version.\n+ // When a us...
2026-03-25T09:48:06
mrdoob/three.js
7f71a050c8ae0facbed1312f8bd1f1814740061a
f6185d16f4b5b042e7bb6c5af43b9a942231f4f0
Editor: fix app publishing for project using WebGPURenderer (#32897)
[ { "path": "editor/js/Sidebar.Project.App.js", "patch": "@@ -85,6 +85,8 @@ function SidebarProjectApp( editor ) {\n \n \t\tconst toZip = {};\n \n+\t\tconst rendererType = config.getKey( 'project/renderer/type' );\n+\n \t\t//\n \n \t\tlet output = editor.toJSON();\n@@ -115,6 +117,26 @@ function SidebarProject...
2026-01-30T11:48:34
golang/go
4d6a40923b7b55d48e9e7abfc3514e607d58fe40
703bb60bf19f5410402fed4c736b31f2f8ec9fba
debug/buildinfo: remove macho/elf DataStart fallback code The go version code can't read pre-1.13 go versions, but in 1.13 we always write the go version info to the .go.buildinfo section. Remove the fallback code because it won't be used. See https://github.com/rsc/goversion/blob/v1.2.0/version/read.go for the origi...
[ { "path": "src/debug/buildinfo/buildinfo.go", "patch": "@@ -458,11 +458,6 @@ func (x *elfExe) DataStart() (uint64, uint64) {\n \t\t\treturn s.Addr, s.Size\n \t\t}\n \t}\n-\tfor _, p := range x.f.Progs {\n-\t\tif p.Type == elf.PT_LOAD && p.Flags&(elf.PF_X|elf.PF_W) == elf.PF_W {\n-\t\t\treturn p.Vaddr, p.Mem...
2026-03-18T17:34:44
denoland/deno
5a97b626ced7988bd5981deb57bd2e2763fde640
ffbe236845c5451874c3a906ca515a7768a50059
fix(cli): fix arrow keys in interactive picker on Windows (#32978) ## Summary - Arrow keys, Enter, and Ctrl+C didn't work in `deno approve-scripts` and `deno outdated --interactive` on Windows (only j/k worked) - Root cause: Windows Terminal enables `ENABLE_VIRTUAL_TERMINAL_INPUT` by default, which makes Windows deli...
[ { "path": "cli/Cargo.toml", "patch": "@@ -191,7 +191,7 @@ zip = { workspace = true, features = [\"deflate-flate2\"] }\n zstd.workspace = true\n \n [target.'cfg(windows)'.dependencies]\n-winapi = { workspace = true, features = [\"knownfolders\", \"mswsock\", \"objbase\", \"shlobj\", \"tlhelp32\", \"winbase\"...
2026-03-25T09:10:02
kubernetes/kubernetes
be5c4d70185da841e798023801c42246a5a785e7
a212f52fbab25ce8b96710c0c075b9052512c80a
kubelet/imageManager: fix allowlisting absolute path images When an image absolute path was specified in the allowlist, credential reverification would have always been required regardless. Signed-off-by: Stanislav Láznička <slznika@microsoft.com>
[ { "path": "pkg/kubelet/images/pullmanager/image_pull_policies.go", "patch": "@@ -20,7 +20,7 @@ import (\n \t\"fmt\"\n \t\"strings\"\n \n-\tdockerref \"github.com/distribution/reference\"\n+\timageref \"github.com/distribution/reference\"\n \n \t\"k8s.io/apimachinery/pkg/util/sets\"\n \tkubeletconfiginternal...
2026-03-09T09:42:12
mrdoob/three.js
f6185d16f4b5b042e7bb6c5af43b9a942231f4f0
d167b69e3c0b7157ac96ca9eda3c5a0c351cfa2b
WebGPURenderer: Fix `overrideMaterial` node assignments. (#32896)
[ { "path": "src/renderers/common/Renderer.js", "patch": "@@ -3195,9 +3195,9 @@ class Renderer {\n \t\t\tmaterialOverride = true;\n \n \t\t\t// store original nodes\n-\t\t\tmaterialColorNode = scene.overrideMaterial.colorNode;\n-\t\t\tmaterialDepthNode = scene.overrideMaterial.depthNode;\n-\t\t\tmaterialPosit...
2026-01-30T10:46:17
golang/go
703bb60bf19f5410402fed4c736b31f2f8ec9fba
2d72c268ea10db520b7dd99802cf2aa40b18c1af
database/sql: don't try to synctest.Wait in benchmarks Benchmarks shouldn't use synctest. Avoid a synctest.Wait in database shutdown when in benchmarks. Fixes #78373 Change-Id: I14755f8eefb3ab5c69cc660b1e884bbf6a6a6964 Reviewed-on: https://go-review.googlesource.com/c/go/+/760400 Auto-Submit: Damien Neil <dneil@goog...
[ { "path": "src/database/sql/sql_test.go", "patch": "@@ -184,8 +184,21 @@ func closeDB(t testing.TB, db *DB) {\n \t}\n \n \t// Connections close asynchronously; wait for them to finish doing so.\n-\tsynctest.Wait()\n-\tif numOpen := db.numOpenConns(); numOpen != 0 {\n+\tnumOpenConns := func() int {\n+\t\tdb....
2026-03-27T17:04:29
denoland/deno
ffbe236845c5451874c3a906ca515a7768a50059
4fc7ee2af737a1719931a62af1541be2ccb03730
fix(ext/node): support numeric FDs in child_process stdio array (#32959) ## Summary - Node.js allows passing raw file descriptors as numbers in the `stdio` array for `child_process.spawn()`, e.g. `spawn('cmd', { stdio: ['ignore', 'pipe', 'pipe', fd] })`. This previously failed with `serde_v8 error: invalid type; expe...
[ { "path": "ext/process/lib.rs", "patch": "@@ -7,6 +7,8 @@ use std::collections::HashMap;\n use std::ffi::OsString;\n use std::io::Write;\n #[cfg(unix)]\n+use std::os::fd::FromRawFd;\n+#[cfg(unix)]\n use std::os::unix::prelude::ExitStatusExt;\n #[cfg(unix)]\n use std::os::unix::process::CommandExt;\n@@ -79,1...
2026-03-25T08:59:36
tensorflow/tensorflow
e79d58cd458f3c38ac902364fae7d53a8a03db24
e288b6046ce28287def18ebdf02c3a0dc25eb7a9
Remove ptxas regression test. It looks like it was run by mistake on all platforms, although it should serve as regression test for a PTXAS bug (so relevant to GPU backend only). By now, the bug is long fixed and we don't need this test anymore. PiperOrigin-RevId: 892746106
[ { "path": "third_party/xla/xla/tests/BUILD", "patch": "@@ -3266,26 +3266,6 @@ xla_cc_test(\n ],\n )\n \n-xla_test(\n- name = \"ptxas_bug_120501638_test\",\n- srcs = [\"ptxas_bug_120501638.cc\"],\n- tags = [\n- # Disabled in OSS until nvidia publicly releases a fixed ptxas.\n- \"no...
2026-04-01T06:49:17
mrdoob/three.js
9d40465f25fc2450f19d1eafff11988d5ad0a0fd
167f5f1aa68c391a699d99091ec06477d07e20cd
Fix: WebGL viewport / scissors not working correctly with PostProcessing in WebGPURenderer (#32883)
[ { "path": "src/renderers/webgl-fallback/WebGLBackend.js", "patch": "@@ -446,9 +446,12 @@ class WebGLBackend extends Backend {\n \n \t\tif ( renderContext.scissor ) {\n \n-\t\t\tconst { x, y, width, height } = renderContext.scissorValue;\n+\t\t\tthis.updateScissor( renderContext );\n \n-\t\t\tstate.scissor( ...
2026-01-29T18:32:41
swiftlang/swift
ed743259c5c57f2b0a30309b151ccbfed5c95676
cdd4049fb644a9505e1731843382dfc9d077e119
[DebugInfo] [SILGen] Consider a SILLocation created from an implicit conversion of an explicit node as explicit
[ { "path": "lib/SIL/IR/SILLocation.cpp", "patch": "@@ -32,8 +32,16 @@ SILLocation::SILLocation(Stmt *S) : SILLocation(ASTNodeTy(S), RegularKind) {\n }\n \n SILLocation::SILLocation(Expr *E) : SILLocation(ASTNodeTy(E), RegularKind) {\n- if (E->isImplicit())\n- kindAndFlags.fields.implicit = true;\n+ if (...
2026-03-27T18:51:28
kubernetes/kubernetes
467ce9c6cd357d9c24159579eea3608173c1493b
4e859569e5b60b874c0fe3fc5721a3749a0ee02a
Fix TestGetConntrackMax to align with capped conntrack max values
[ { "path": "pkg/proxy/conntrack/sysctls_test.go", "patch": "@@ -37,6 +37,7 @@ import (\n \n func TestGetConntrackMax(t *testing.T) {\n \tncores := runtime.NumCPU()\n+\tconst maxLimit = 1048576\n \ttestCases := []struct {\n \t\tmin int32\n \t\tmaxPerCore int32\n@@ -49,7 +50,7 @@ func TestGetConntrackMa...
2026-03-18T09:55:21
golang/go
2d72c268ea10db520b7dd99802cf2aa40b18c1af
7f2e2fd71f0b25fde6031b8317f525f1a2739e9b
cmd/fix: change -diff to exit 1 if diffs exist Currently "go fix -diff" and "go vet -fix -diff" always exit with status 0 even when they print diffs, which is inconsistent with "gofmt -d" (#46289) and "go mod tidy -diff" (#27005) that exit non-zero when diffs are present. The root cause is that the default VetHandleS...
[ { "path": "src/cmd/go/alldocs.go", "patch": "@@ -511,7 +511,8 @@\n // It supports these flags:\n //\n //\t -diff\n-//\t\tinstead of applying each fix, print the patch as a unified diff\n+//\t\tinstead of applying each fix, print the patch as a unified diff;\n+//\t\texit with a non-zero status if the diff i...
2026-03-03T06:22:28
denoland/deno
4fc7ee2af737a1719931a62af1541be2ccb03730
d54097a278462818162cf61111e74e94abd8e4f0
fix(cli): parse --frozen flag for deno update and deno outdated (#32975) ## Summary - `outdated_parse()` was missing a call to `lock_args_parse()`, so `--frozen`, `--lock`, and `--no-lock` flags were never parsed for `deno update` and `deno outdated` - This caused `deno update --frozen=false` to fail with "The lockfi...
[ { "path": "cli/args/flags.rs", "patch": "@@ -6064,6 +6064,7 @@ fn outdated_parse(\n recursive,\n kind,\n });\n+ lock_args_parse(flags, matches);\n min_dep_age_arg_parse(flags, matches);\n Ok(())\n }\n@@ -14668,6 +14669,22 @@ Usage: deno repl [OPTIONS] [-- [ARGS]...]\\n\"\n }\n }\n \n+ ...
2026-03-25T08:07:26
mrdoob/three.js
b43e7641e2c6583b7e6eb43fe7b9be53d0b9aef6
819cb9b2368aa86c0a29594c8ded29c69a017516
Line3: Fix closest point in `distanceSqToLine3()`. (#32878)
[ { "path": "src/math/Line3.js", "patch": "@@ -284,12 +284,10 @@ class Line3 {\n \n \t\t}\n \n-\t\tc1.copy( p1 ).add( _d1.multiplyScalar( s ) );\n-\t\tc2.copy( p2 ).add( _d2.multiplyScalar( t ) );\n+\t\tc1.copy( p1 ).addScaledVector( _d1, s );\n+\t\tc2.copy( p2 ).addScaledVector( _d2, t );\n \n-\t\tc1.sub( c2...
2026-01-28T19:37:44
tensorflow/tensorflow
aae4fe08ee87b5a78ccbad6de387dbba862ca455
5b54a93f9011b8b35b5de1ec5e3ff5bbafccd9fd
Fix aligned_alloc usage for older Android APIs Fallback to posix_memalign on Android API levels below 28 where ::aligned_alloc is not available. PiperOrigin-RevId: 892572837
[ { "path": "tensorflow/compiler/mlir/lite/allocation.cc", "patch": "@@ -107,7 +107,27 @@ MemoryAllocation::MemoryAllocation(const void* ptr, size_t num_bytes,\n // TODO: b/356413060 - Remove the workaround once b/356640509 is fixed.\n #if defined(__x86_64__) && defined(UNDEFINED_BEHAVIOR_SANITIZER)\n if ((...
2026-03-31T22:33:49
swiftlang/swift
6e2eaee27a31b75abaade4f69a576ab83191297b
57b773b27c3a7f86f3db08638696139b3111988e
Consistently classify "-" as a Swift input file Fixes rdar://171657301
[ { "path": "include/swift/Frontend/InputFile.h", "patch": "@@ -57,8 +57,7 @@ class InputFile final {\n InputFile(StringRef name, bool isPrimary,\n llvm::MemoryBuffer *buffer = nullptr)\n : InputFile(name, isPrimary, buffer,\n- file_types::lookupTypeForExtension(\n- ...
2026-03-30T16:35:52
golang/go
7f2e2fd71f0b25fde6031b8317f525f1a2739e9b
31a839621976f968a997fd8578b6c5fd074bbc0c
cmd/go: add example support to go doc output The go doc command now includes a -ex flag to list executable examples. It will also print the code and expected output of an example when passed its name. Fixes #26715 Change-Id: I34b09403cc3cb45655939bd4fe27accec0e141f5 Reviewed-on: https://go-review.googlesource.com/c/...
[ { "path": "src/cmd/go/alldocs.go", "patch": "@@ -452,6 +452,8 @@\n //\t\t\tTreat a command (package main) like a regular package.\n //\t\t\tOtherwise package main's exported symbols are hidden\n //\t\t\twhen showing the package's top-level documentation.\n+//\t\t-ex\n+//\t\t\tInclude executable examples.\n ...
2026-02-10T08:26:25
mrdoob/three.js
625541ebbc4514b5ac4d59353d7737840dfd498c
f67c8e4c34d8eb0484f920ee599f711b074d42c4
Editor: Fix canvas reference for video rendering. (#32864)
[ { "path": "editor/js/Menubar.Render.js", "patch": "@@ -497,7 +497,7 @@ class RenderVideoDialog {\n \n \t\t\tconst qualityToBitrate = {\n \t\t\t\t'low': 2e6,\n-\t\t\t\t'medium': 5e6, \n+\t\t\t\t'medium': 5e6,\n \t\t\t\t'high': 10e6,\n \t\t\t\t'ultra': 20e6\n \t\t\t};\n@@ -526,7 +526,7 @@ class RenderVideoDia...
2026-01-27T10:07:50
denoland/deno
d54097a278462818162cf61111e74e94abd8e4f0
ea9214cbdd7fba78894bf426963aa9278ed82c1f
fix(lockfile): truncate frozen lockfile error diff to 50 lines (#32976) ## Summary - The frozen lockfile error message includes a diff that can be 1000+ lines long, filling the entire console and making the actual error invisible - Truncate the diff to 50 lines with a "... N more lines omitted ..." footer Fixes #329...
[ { "path": "libs/resolver/lockfile.rs", "patch": "@@ -515,8 +515,19 @@ impl<TSys: LockfileSys> LockfileLock<TSys> {\n let diff = crate::display::diff(&contents, &new_contents);\n // has an extra newline at the end\n let diff = diff.trim_end();\n+ const MAX_DIFF_LINES: usize = 50;\n+ ...
2026-03-25T07:56:38
tensorflow/tensorflow
5b54a93f9011b8b35b5de1ec5e3ff5bbafccd9fd
cd1b7e65cf249c7edde6b506768a29acf126cd9e
Fix use of deprecated `xnn_define_static_constant_pad` PiperOrigin-RevId: 892569892
[ { "path": "tensorflow/lite/delegates/xnnpack/xnnpack_delegate.cc", "patch": "@@ -5241,9 +5241,11 @@ class Subgraph {\n logging_context, output_tensor, 1, XNN_MAX_TENSOR_DIMS,\n node->outputs->data[0], BuiltinOperator_PAD, node_index));\n \n+ const int num_padding_dims = SizeOfDimension(&p...
2026-03-31T22:27:58
swiftlang/swift
d7826bcc75e83419946a683fd89a254168754e1f
4755f79e17205878ed3d15b15c4ee5b796180b95
PrintAsClang: Avoid a -Wsometimes-uninitialized warning. Use `report_fatal_error()` instead of `ASSERT(0)` so that the compiler realizes code after the case block is unreachable.
[ { "path": "lib/PrintAsClang/DeclAndTypePrinter.cpp", "patch": "@@ -1893,7 +1893,7 @@ class DeclAndTypePrinter::Implementation\n break;\n case PlatformKind::Swift:\n // FIXME: [runtime availability] Figure out how to support this.\n- ASSERT(0);\n+ llvm::report_fatal_error(...
2026-03-27T16:19:37
mrdoob/three.js
f67c8e4c34d8eb0484f920ee599f711b074d42c4
cd9bc6f7bdaba9c182025ea3a63297158fa1a70c
GLSLNodeBuilder: Fix `CubeDepthTexture` sampler. (#32857)
[ { "path": "src/renderers/webgl-fallback/nodes/GLSLNodeBuilder.js", "patch": "@@ -752,7 +752,17 @@ ${ flowData.code }\n \n \t\t\t} else if ( uniform.type === 'cubeDepthTexture' ) {\n \n-\t\t\t\tsnippet = `samplerCubeShadow ${ uniform.name };`;\n+\t\t\t\tconst texture = uniform.node.value;\n+\n+\t\t\t\tif ( t...
2026-01-27T08:52:39
denoland/deno
ea9214cbdd7fba78894bf426963aa9278ed82c1f
6fba21692ed5e5a65f1ea77482a292dc1a8ee420
fix: handle inner quotes in double-quoted env values in .env file (#32930) ## Summary - Fix `--env-file` parsing of double-quoted values containing inner (unescaped) quotes, e.g. `KEY="foo'bar"baz`qux"` - Fix `\n` escape expansion in double-quoted values with inner quotes, e.g. `KEY="foo\ni am "on" newline"` **R...
[ { "path": "libs/dotenv/lib.rs", "patch": "@@ -292,7 +292,7 @@ fn parse_env_content_hook_impl(\n // Expand new line if \\n it's inside double quotes\n // Example: EXPAND_NEWLINES = 'expand\\nnew\\nlines'\n if text[0] == CHAR_DQUOTE\n- && let Some(closing) = find_char(text, CHAR_DQUOTE, 1)\n+...
2026-03-25T07:37:39
golang/go
31a839621976f968a997fd8578b6c5fd074bbc0c
faeffecf8666bde8cbb3383c3fdf4a4d92ee421c
all: remove openbsd/mips64 port The openbsd/mips64 port is dead, remove the remaining code specific to that port and clean up build tags. Fixes #61546 Change-Id: I0328b7b76ce1ddacd3a526b3f4ae29eaa1254c3f Reviewed-on: https://go-review.googlesource.com/c/go/+/746480 Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>...
[ { "path": "src/cmd/dist/build.go", "patch": "@@ -1819,7 +1819,6 @@ var cgoEnabled = map[string]bool{\n \t\"openbsd/amd64\": true,\n \t\"openbsd/arm\": true,\n \t\"openbsd/arm64\": true,\n-\t\"openbsd/mips64\": true,\n \t\"openbsd/ppc64\": false,\n \t\"openbsd/riscv64\": true,\n \t\"plan9/386\": ...
2026-03-25T22:45:38
tensorflow/tensorflow
cd1b7e65cf249c7edde6b506768a29acf126cd9e
7283bf830d04b9f2479fae14e67b7b7ba798e082
Fix WinDefFileParse on Linux in pywrap_library by disabling evaluation of generated rules This conditionally targets the generated win_def definition files to `@platforms//os:windows`, meaning they won't even be analyzed on Linux, macOS, etc. This circumvents execution failures in downstream/OSS users testing on non-W...
[ { "path": "third_party/xla/third_party/py/rules_pywrap/pywrap.impl.bzl", "patch": "@@ -220,6 +220,7 @@ def pywrap_library(\n name = win_def_name,\n dep = \":%s\" % common_split_name,\n filter = def_file_or_filter,\n+ target_compatible_with = [\"@platforms//os:w...
2026-03-31T22:25:17
mrdoob/three.js
cd9bc6f7bdaba9c182025ea3a63297158fa1a70c
367d779305281524009371b2d1ad541a1bcfd689
LDrawConditionalLineNodeMaterial: fix import (#32861)
[ { "path": "examples/jsm/materials/LDrawConditionalLineNodeMaterial.js", "patch": "@@ -1,5 +1,5 @@\n-import { Color } from 'three/webgpu';\n-import { attribute, cameraProjectionMatrix, dot, float, Fn, modelViewMatrix, modelViewProjection, NodeMaterial, normalize, positionGeometry, sign, uniform, varyingPrope...
2026-01-27T08:52:28
kubernetes/kubernetes
5e07560178b67b763f77a6da9755e305b30c3235
6aeb784eda21810def1df206c15806aeddd5d251
Fix race in TestActivatePods testing code
[ { "path": "pkg/scheduler/backend/cache/podgroupstate.go", "patch": "@@ -269,11 +269,11 @@ func (pgs *podGroupState) deletePod(podUID types.UID) {\n \n // assumePod marks a pod as assumed within the pod group state.\n // It must be called under the cache lock.\n-func (pgs *podGroupState) assumePod(podUID typ...
2026-03-17T10:35:16
denoland/deno
dd5c9cbee79c4676763251acf635274c0023eeb6
d1e7f67a173f9d622084efe50356a8509b4d26f5
fix(napi): add test coverage and fix escape_handle/throw bugs (#32960) ### Bug fixes **`napi_escape_handle` double-call panic**: The escapable handle scope was a complete no-op with no state tracking. Calling `napi_escape_handle` twice would silently succeed instead of returning `napi_escape_called_twice`. Fixed by t...
[ { "path": "ext/napi/js_native_api.rs", "patch": "@@ -1988,10 +1988,14 @@ fn napi_throw(env: *mut Env, error: napi_value) -> napi_status {\n return napi_pending_exception;\n }\n \n+ // Store in last_exception only. Do NOT call throw_exception() here.\n+ // The NAPI callback wrapper (call_fn) checks l...
2026-03-24T21:20:45
golang/go
91d1a883768b8b38fe79eefd820063b2b593f23a
87fae3622dacca9cfa5026c712df40af694a4e6a
cmd/internal/obj/riscv: add assembly support of Zbc extension The Zbc extension adds carry-less multiplication instructions for polynomial arithmetic over GF(2), which is used in cryptographic algorithms and error-correcting codes. The instructions included are: clmul, clmulh, and clmulr. Change-Id: I77a40add1a795c7b...
[ { "path": "src/cmd/asm/internal/asm/testdata/riscv64.s", "patch": "@@ -509,6 +509,14 @@ start:\n \tORCB\tX5, X6\t\t\t\t\t// 13d37228\n \tREV8\tX7, X8\t\t\t\t\t// 13d4836b\n \n+\t// 28.4.3: Carry-less multiplication (Zbc)\n+\tCLMUL\tX5, X6, X7 \t\t\t\t// b313530a\n+\tCLMUL\tX5, X6\t \t\t\t\t// 3313530a\n+\tC...
2025-11-27T06:37:04
mrdoob/three.js
08e56bb0cd3b5282b636742df1bf354599bc9674
809a2a2be54c4838be7750309f4c0534a0905e1b
Editor: Fix camera move error (#32843)
[ { "path": "editor/js/Viewport.Controls.js", "patch": "@@ -26,7 +26,7 @@ function ViewportControls( editor ) {\n \n \t\tif ( object.isCamera ) {\n \n-\t\t\tupdate();\n+\t\t\tupdate( false );\n \n \t\t}\n \n@@ -59,7 +59,7 @@ function ViewportControls( editor ) {\n \n \t//\n \n-\tfunction update() {\n+\tfuncti...
2026-01-24T22:45:18
tensorflow/tensorflow
595a92738ac426e62b534050752e4442570f3858
32859ccf2a3539bdaf36f77e61e60ee80a233c27
Add GetOrCreateRuntimeError to PJRT Megascale Extension PiperOrigin-RevId: 892498853
[ { "path": "third_party/xla/xla/megascale/c_api_client/BUILD", "patch": "@@ -122,6 +122,8 @@ xla_cc_test(\n \"//xla/pjrt/plugin/xla_tpu:xla_tpu_pjrt_client\",\n \"//xla/tests:xla_internal_test_main\",\n \"//xla/tsl/platform:statusor\",\n+ \"@com_google_absl//absl/status\",\n+ ...
2026-03-31T20:02:55
swiftlang/swift
c2dbef1da6b723f5bca10cbd4ab5e1b1ae6f0b4a
bf2f15f3f929a4a897c41751cc279b90becf4b61
[test] Add some more known crashers
[ { "path": "validation-test/IDE/crashers/ConstraintSystem-getType-4e0dd1.swift", "patch": "@@ -0,0 +1,7 @@\n+// {\"kind\":\"complete\",\"original\":\"cd83a4da\",\"signature\":\"swift::constraints::ConstraintSystem::getType(swift::ASTNode) const\",\"signatureAssert\":\"Assertion failed: (found != NodeTypes.en...
2026-03-30T10:15:17
denoland/deno
d1e7f67a173f9d622084efe50356a8509b4d26f5
802a788d7d6c0af94aab355cab9a768875ced5ee
fix(ext/node): close libuv handle on HandleWrap.close() for new-style handles (#32958) ## Summary - Fix file descriptor leak when closing TTY handles (e.g. from node-pty) - `HandleWrap.close()` was only calling the JS-side `_onClose()` callback for new-style `uv_compat` handles, but never calling `uv_compat::uv_close...
[ { "path": "ext/node/ops/handle_wrap.rs", "patch": "@@ -317,6 +317,18 @@ impl HandleWrap {\n }\n };\n \n+ // For new-style handles (uv_compat), call uv_compat::uv_close to\n+ // properly shut down the libuv handle (e.g. close FDs for TTY).\n+ // Without this, the libuv handle cleanup never...
2026-03-24T21:19:23
golang/go
7c1806932fb91c7f8f8d17be7c1a63aa3d6cf175
1cfd0dc9a3416c1077acfcd44ad0084dd508116a
cmd/go: default to Go 1.20 GODEBUGs in GOPATH mode We used MainModules.GoVersion to get the Go version to use for godebugs in GOPATH mode. That returned Go 1.16 which is the default version for modules to use when they don't have a go directive, but is modules specific and doesn't make sense for GOPATH mode. Set the v...
[ { "path": "src/cmd/go/alldocs.go", "patch": "@@ -2878,11 +2878,11 @@\n // GOPATH mode import path checking (see 'go help importpath').\n //\n // In GOPATH mode, the default GODEBUG values built into a binary\n-// will be those used in Go 1.20, setting the same GODEBUG values\n-// as when a module specifies ...
2026-03-25T18:05:36
kubernetes/kubernetes
6aeb784eda21810def1df206c15806aeddd5d251
7d56731021ecb86428eea2cd910f0406372c897f
Fix race in podGroupState locking
[ { "path": "pkg/scheduler/backend/cache/podgroupstate.go", "patch": "@@ -232,12 +232,56 @@ func (pgs *podGroupState) snapshot() *podGroupStateSnapshot {\n // empty returns true when the group contains no pods.\n // It must be called under the cache lock.\n func (pgs *podGroupState) empty() bool {\n+\tpgs.loc...
2026-03-17T10:35:01
mrdoob/three.js
c2b9e237663af69fbae09a9da66bb605b60f517b
dcb73dd35b4dd30c4065816df37388c327705068
ShadowFilterNode: Fix TSL warning in `VSMShadowFilter`. (#32836)
[ { "path": "src/nodes/lighting/ShadowFilterNode.js", "patch": "@@ -190,23 +190,23 @@ export const VSMShadowFilter = /*@__PURE__*/ Fn( ( { depthTexture, shadowCoord,\n \n \tconst hardShadow = step( shadowCoord.z, mean );\n \n-\t// Early return if fully lit\n-\tIf( hardShadow.equal( 1.0 ), () => {\n+\tconst ou...
2026-01-23T12:44:26
tensorflow/tensorflow
32859ccf2a3539bdaf36f77e61e60ee80a233c27
4037c75bf56ef50b0572ca179782d3833b11d46c
Fix an integer overflow in symbolic_tile_analysis. Fixes https://github.com/jax-ml/jax/issues/35929 PiperOrigin-RevId: 892483793
[ { "path": "third_party/xla/xla/codegen/tiling/symbolic_tile_analysis.cc", "patch": "@@ -2154,7 +2154,7 @@ absl::StatusOr<std::vector<FlatTiling>> GetFlatTilingsForInputSpace(\n absl::Span<const int64_t> input_space) {\n std::vector<FlatTiling> flat_tilings;\n flat_tilings.push_back({});\n- for (int...
2026-03-31T19:31:15
golang/go
1cfd0dc9a3416c1077acfcd44ad0084dd508116a
5e17860e1b177b146c965f4ab1cb7d7ea51b91ed
runtime: truncate trace strings before inserting into trace map traceStringTable.put inserted the full user-supplied string into the trace map, then only truncated it to MaxEventTrailerDataSize (1024 bytes) when writing to the trace buffer. If the string exceeded the traceRegionAlloc block size (~64KB), this caused a ...
[ { "path": "src/runtime/trace/annotation_test.go", "patch": "@@ -8,9 +8,22 @@ import (\n \t\"context\"\n \t\"io\"\n \t. \"runtime/trace\"\n+\t\"strings\"\n \t\"testing\"\n )\n \n+func TestStartRegionLongString(t *testing.T) {\n+\t// Regression test: a region name longer than the trace region\n+\t// allocator...
2026-03-26T07:47:30
swiftlang/swift
bf2f15f3f929a4a897c41751cc279b90becf4b61
2ee44c60cc368d09ab54a3a438df46034bec88d4
[test] Add a fixed crasher
[ { "path": "validation-test/compiler_crashers_fixed/LinearLifetimeChecker-checkValueImpl-c66d1c.swift", "patch": "@@ -0,0 +1,14 @@\n+// {\"kind\":\"emit-silgen\",\"original\":\"5d49df12\",\"signature\":\"swift::LinearLifetimeChecker::checkValueImpl(swift::SILValue, llvm::ArrayRef<swift::Operand*>, llvm::Arra...
2026-03-30T10:15:17
mrdoob/three.js
e5d3e4e26390936acabf3191f255d1a057c4726f
d89cd73280a16218e9364c0b0ff172fcda81ec5e
WebGLState: Fix polygon offset with reversed depth buffer. (#32832)
[ { "path": "src/renderers/webgl/WebGLState.js", "patch": "@@ -876,11 +876,17 @@ function WebGLState( gl, extensions ) {\n \n \t\t\tif ( currentPolygonOffsetFactor !== factor || currentPolygonOffsetUnits !== units ) {\n \n-\t\t\t\tgl.polygonOffset( factor, units );\n-\n \t\t\t\tcurrentPolygonOffsetFactor = fa...
2026-01-23T09:51:36
denoland/deno
802a788d7d6c0af94aab355cab9a768875ced5ee
d736de8eee4995f26fb782d263ee6267313285fa
fix(ext/napi): pass valid env to tsfn call_js_cb after close race (#32957) ## Summary - Fix SIGSEGV crash in native addons (e.g. node-pty) caused by a race condition in NAPI threadsafe function teardown - When a tsfn is released while calls are still pending, `TsFn::drop` can run before a queued call is processed. Pr...
[ { "path": "ext/napi/node_api.rs", "patch": "@@ -824,15 +824,24 @@ impl TsFn {\n let data = SendPtr(data);\n let context = SendPtr(self.context);\n let call_js_cb = self.call_js_cb;\n+ // Capture env so we can pass it even after the tsfn is freed. The env\n+ // pointer is always valid here ...
2026-03-24T21:17:51
tensorflow/tensorflow
de8d7f65b6eb670e4dad0225d0d6f99bebaab559
ce2d46e3b98e70aa714c2fbde9b4569efcee4bc7
PR #39567: [ROCm] Fix fp8 on ROCm when xla_gpu_enable_cublaslt=false Imported from GitHub PR https://github.com/openxla/xla/pull/39567 Fixes a bug introduced in https://github.com/openxla/xla/pull/38792 where the hipBLASLt autotuner backend is fully disabled when `xla_gpu_enable_cublaslt=false`. However, on ROCm we a...
[ { "path": "third_party/xla/xla/backends/gpu/autotuner/factory_rocm.cc", "patch": "@@ -17,6 +17,7 @@ limitations under the License.\n #define TENSORFLOW_COMPILER_XLA_BACKENDS_GPU_AUTOTUNER_ROCM_FACTORY_H_\n \n #include <algorithm>\n+#include <array>\n #include <memory>\n #include <utility>\n #include <vector...
2026-03-31T18:24:00
mrdoob/three.js
d89cd73280a16218e9364c0b0ff172fcda81ec5e
7f6b25e503567e234b3c82f1151bff8e9b5ef427
WGSLNodeBuilder: Fix out-of-bounds access with `textureLoad()`. (#32826)
[ { "path": "src/renderers/webgpu/nodes/WGSLNodeBuilder.js", "patch": "@@ -518,14 +518,18 @@ class WGSLNodeBuilder extends NodeBuilder {\n \t\tconst textureDimension = this.generateTextureDimension( texture, textureProperty, levelSnippet );\n \n \t\tconst vecType = texture.is3DTexture || texture.isData3DTextu...
2026-01-23T08:20:32
swiftlang/swift
2ee44c60cc368d09ab54a3a438df46034bec88d4
b2091e4d618c6dec930d89730df2656aa5d03c04
[test] Update a couple of crasher signatures
[ { "path": "validation-test/IDE/crashers/Assertion-ee253a.swift", "patch": "@@ -0,0 +1,4 @@\n+// {\"kind\":\"complete\",\"original\":\"aa09349c\",\"signature\":\"Assertion failed: (isa<To>(Val) && \\\"cast<Ty>() argument of incompatible type!\\\"), function cast\",\"signatureAssert\":\"Assertion failed: (isa...
2026-03-30T10:15:17
kubernetes/kubernetes
67deec3bfae701dc5ddcea6c79be4b8c1abd43fc
77403e5940e6d8ea91b38e76818a1bcb55ab7c13
DRA: include node name in timeout error and rework FilterTimeout test setup
[ { "path": "pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go", "patch": "@@ -721,10 +721,13 @@ 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(er...
2026-03-17T23:55:58
denoland/deno
d736de8eee4995f26fb782d263ee6267313285fa
473900450b19d5cc8659c949f1cc15609deca702
fix(node/http): stop leaking TCP wrappers on HTTPS upgrade with createConnection TLSSocket (#32961) Fixes a Node-compat HTTP/TLS bug where `https.request()` could leak native `TCP` wrappers when `createConnection` returns a pre-created `TLSSocket` and the request upgrades the connection. This is the same pattern used...
[ { "path": "ext/node/polyfills/_tls_wrap.js", "patch": "@@ -226,6 +226,7 @@ export class TLSSocket extends net.Socket {\n \n // Assign the TLS connection to the handle and resume reading.\n this[kStreamBaseField] = conn;\n+ tlssock._tlsUpgraded = true;\n this.upgrading ...
2026-03-24T21:14:56
mrdoob/three.js
43c8ff7e8966b1a359b104915290b8d4619e80cc
17529114983185f1266b40e36933d306badfd5f5
USDLoader: Fix material binding lookup for variants. Material bindings stored inside USD variant paths were not being found. Added variant-aware lookup that searches through active variant paths when resolving material:binding relationships. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
[ { "path": "examples/jsm/loaders/usd/USDComposer.js", "patch": "@@ -1202,15 +1202,8 @@ class USDComposer {\n \t\t\tconst indices = attrs[ 'indices' ];\n \t\t\tif ( ! indices || indices.length === 0 ) continue;\n \n-\t\t\t// Get material binding\n-\t\t\tconst bindingPath = p + '.material:binding';\n-\t\t\tcon...
2026-01-23T07:36:02
tensorflow/tensorflow
7fc14e3629eb69f86fb5e6912431ac993f5b4478
a9cd5eb2b4536b6c185ed882e0f41d9c10ada5f5
Fix RunHandler::ScheduleIntraOpClosure to call the correct impl method. PiperOrigin-RevId: 892439714
[ { "path": "tensorflow/core/tfrt/run_handler_thread_pool/BUILD", "patch": "@@ -84,6 +84,7 @@ tf_cc_test(\n \"//tensorflow/core/kernels:matmul_op\",\n \"@com_google_absl//absl/strings\",\n \"@com_google_absl//absl/synchronization\",\n+ \"@com_google_absl//absl/time\",\n ...
2026-03-31T18:03:46
swiftlang/swift
dee4c591362d8c89c4a7f4889887333861eedb51
b2091e4d618c6dec930d89730df2656aa5d03c04
[Concurrency] Fix missing trailing space in 'final' fix-it for non-final Sendable class The fixItInsert for adding 'final' to a non-final class conforming to Sendable was missing a trailing space, causing the fix-it to produce 'finalclass' instead of 'final class' when applied. Also fix the grammar in the correspondi...
[ { "path": "lib/Sema/TypeCheckConcurrency.cpp", "patch": "@@ -7448,10 +7448,10 @@ bool swift::checkSendableConformance(\n if (classDecl && classDecl->getParentSourceFile()) {\n bool isInherited = isa<InheritedProtocolConformance>(conformance);\n \n- // An non-final class cannot conform to `Sendable`...
2026-03-30T08:37:13
golang/go
b77fdc333aecc4691a0f637bd8a2600c879e342a
5edb5d729d14f0e036669e505548c899592a4d7c
cmd/compile: skip incomplete types in needWrapper A recursive pointer type *T may still be a TFORW when the compiler determines if method wrappers are needed. This leads to an incorrect decision and triggers an internal compiler error. Fix this by skipping incomplete types during the method wrapper generation check. ...
[ { "path": "src/cmd/compile/internal/noder/reader.go", "patch": "@@ -3827,7 +3827,7 @@ type methodValueWrapper struct {\n // needWrapper records that wrapper methods may be needed at link\n // time.\n func (r *reader) needWrapper(typ *types.Type) {\n-\tif typ.IsPtr() {\n+\tif typ.IsPtr() || typ.IsKind(types....
2026-03-25T09:36:34
denoland/deno
473900450b19d5cc8659c949f1cc15609deca702
1c5048596ebd8a74c0e490d6ed5f8aaa2a0692d2
feat(ext/telemetry): add console exporter for OpenTelemetry (#32717) - Add a built-in console exporter that writes OTel spans, logs, and metrics to stderr in human-readable text format - Activated via `OTEL_EXPORTER_OTLP_PROTOCOL=console` — no collector stack needed - Generalize `DenoPeriodicReader::new` to accept any...
[ { "path": "Cargo.lock", "patch": "@@ -3318,6 +3318,7 @@ dependencies = [\n \"deno_error\",\n \"deno_net\",\n \"deno_signals\",\n+ \"deno_terminal\",\n \"deno_tls\",\n \"http-body-util\",\n \"hyper 1.6.0\",", "additions": 1, "deletions": 0, "language": "Unknown" }, { "path": "ext/te...
2026-03-24T18:39:25
tensorflow/tensorflow
fd41dbae64036a131f82c82804534855ab172e5e
fc6ae74b8381d791290373e1508ef07114999aaa
PR #39929: [ROCm] Fix parse empty rocm distro links Imported from GitHub PR https://github.com/openxla/xla/pull/39929 📝 Summary of Changes Fix parsing of rocm symlink if the value is empty 🎯 Justification rocm_configure will fail if the symlinks are not required for a particular distro of therock 🚀 Kind of Contr...
[ { "path": "third_party/xla/third_party/gpus/rocm/rocm_redist.bzl", "patch": "@@ -42,6 +42,9 @@ rocm_redist = {\n \n def _parse_rocm_distro_links(distro_links):\n result = []\n+ if distro_links == \"\":\n+ return result\n+\n for pair in distro_links.split(\",\"):\n link = pair.split...
2026-03-31T16:17:11
golang/go
5edb5d729d14f0e036669e505548c899592a4d7c
e4fcdc6c55bfdc90f4f42eefc4e97998de3ef4e7
cmd/compile: do not invert loops that would overflow or underflow On the final iteration we need space below start (which becomes end) such that i-step does not overflow or underflow. In other words the code used to assume that the last time the loop header execute `start < i - step` (or `<=`, `>` `>=` based on the l...
[ { "path": "src/cmd/compile/internal/ssa/downward_counting_loop.go", "patch": "@@ -4,6 +4,8 @@\n \n package ssa\n \n+import \"fmt\"\n+\n // maybeRewriteLoopToDownwardCountingLoop tries to rewrite the loop to a\n // downward counting loop checking against start if the loop body does\n // not depend on ind or ...
2026-03-24T19:42:41
swiftlang/swift
f7ff9c72c5c2c3da3e543f0bcb653ced798b4ddf
0bf253232eabdc1a2a8ae926aa462d86f1ae1941
ObjectOutliner: don't outline objects in external functions because this would "duplicate" singletons Fixes a miscompile rdar://172766879
[ { "path": "SwiftCompilerSources/Sources/Optimizer/FunctionPasses/ObjectOutliner.swift", "patch": "@@ -60,6 +60,11 @@ let objectOutliner = FunctionPass(name: \"object-outliner\") {\n return\n }\n \n+ if function.linkage.isExternal {\n+ // Don't outline objects in external functions because this wou...
2026-03-29T11:01:45
kubernetes/kubernetes
0d2c2cf5b2e8a088f1f8d84852c20256ef477125
bf0d191a15a7795602ff8435f0f7f984cc7fbb5f
UPDATE_COMPATIBILITY_FIXTURE_DATA=true go test k8s.io/api -count=1
[ { "path": "staging/src/k8s.io/api/testdata/v1.35.0/apps.v1.DaemonSet.after_roundtrip.json", "patch": "@@ -0,0 +1,1882 @@\n+{\n+ \"kind\": \"DaemonSet\",\n+ \"apiVersion\": \"apps/v1\",\n+ \"metadata\": {\n+ \"name\": \"nameValue\",\n+ \"generateName\": \"generateNameValue\",\n+ \"namespace\": \"...
2026-03-18T03:29:53
mrdoob/three.js
1afb95601680662310716e6baec9cd1320063d2f
abea2ceaeed3545189091f2b49b742a2bb0b56c1
Fix missing iorNode in MeshPhysicalNodeMaterial copy method (#32821)
[ { "path": "src/materials/nodes/MeshPhysicalNodeMaterial.js", "patch": "@@ -502,6 +502,8 @@ class MeshPhysicalNodeMaterial extends MeshStandardNodeMaterial {\n \t\tthis.specularIntensityNode = source.specularIntensityNode;\n \t\tthis.specularColorNode = source.specularColorNode;\n \n+\t\tthis.iorNode = sourc...
2026-01-22T15:17:19
tensorflow/tensorflow
a516a5e13fe6f61291db06508586ca80fa85d5aa
0dc35153051c33bba75dd402104dfcac0ef14f94
PR #39744: [ROCm] Porting CUB sort FFI handler consolidation to ROCm. Imported from GitHub PR https://github.com/openxla/xla/pull/39744 📝 Summary of Changes The CUB sort FFI handler was recently refactored and consolidated in two commits: - https://github.com/openxla/xla/commit/878c52525f1a72856e5c5fd42775211f192665...
[ { "path": "third_party/xla/xla/stream_executor/rocm/BUILD", "patch": "@@ -828,6 +828,8 @@ cc_library(\n \":amdhipblaslt_plugin\",\n \":buffer_comparator_kernel_rocm\",\n \":collective_signal_rocm\",\n+ \":cub_scan_kernel_rocm\",\n+ \":cub_sort_kernel_rocm\",\n \...
2026-03-31T12:47:02
golang/go
286a79658efbe6dcbea53aaf8112abeb8e9f2cc3
09dadce4fee15148a9f3a6969d15a0db8afe75bc
cmd/compile: fix missing walk for OAS2RECV node When channel receive operator is used in the context that requires conversion to destination type, there's an implicit conversion operator inserted by typecheck. This typecheck-ed node is un-walked, then passing to the backend as-is, causing the ICE. Fixes #78313 Chang...
[ { "path": "src/cmd/compile/internal/walk/assign.go", "patch": "@@ -220,7 +220,7 @@ func walkAssignRecv(init *ir.Nodes, n *ir.AssignListStmt) ir.Node {\n \tfn := chanfn(\"chanrecv2\", 2, r.X.Type())\n \tok := n.Lhs[1]\n \tcall := mkcall1(fn, types.Types[types.TBOOL], init, r.X, n1)\n-\treturn typecheck.Stmt(...
2026-03-24T14:14:30
denoland/deno
1c5048596ebd8a74c0e490d6ed5f8aaa2a0692d2
637b7583e48505395663738944ea78f66b8244a0
fix(fmt): delegate component expression formatting to markup_fmt (#29763) Closes #26999 This PR now solves component expression formatting by delegating parsing/formatting to `markup_fmt` instead of using Deno-side regex placeholder preprocessing. ## What changed - upgraded `markup_fmt` and aligned Deno formatter co...
[ { "path": "cli/schemas/config-file.v1.json", "patch": "@@ -772,6 +772,16 @@\n \"default\": true,\n \"type\": \"boolean\"\n },\n+ \"vueComponentCase\": {\n+ \"description\": \"Case style for Vue component tags.\",\n+ \"default\": \"ignore\",\n+ \"...
2026-03-24T18:08:44
mrdoob/three.js
2de6f3e018d8a7b52da151e5e16df0f3990983ce
6e4cc1ed26697f4f74e1a346e0394a7a40d58ce5
Revert "WGSLNodeBuilder: Fix out-of-bounds access with `textureLoad()`." (#32820)
[ { "path": "src/math/MathUtils.js", "patch": "@@ -177,7 +177,7 @@ function smoothstep( x, min, max ) {\n \n /**\n * A [variation on smoothstep](https://en.wikipedia.org/wiki/Smoothstep#Variations)\n- * that has zero 1st and 2nd order derivatives at `x=0` and `x=1`.\n+ * that has zero 1st and 2nd order deriv...
2026-01-22T14:51:40
swiftlang/swift
591a11026d380d574ecd6aed9a251334edeec057
63da75155e9c8f10a35d11e2482a8934d327398a
[sil] Use VarDecl's initializer isolation for stored property initializer SILFunctions. Previously (0a60c93ca51), we fixed an issue where variable initializer expressions would inherit isolation from their containing type rather than from their property declaration. For example, in: @MainActor struct S { @C...
[ { "path": "lib/SIL/IR/SILDeclRef.cpp", "patch": "@@ -2070,9 +2070,7 @@ ActorIsolation SILDeclRef::getActorIsolation() const {\n // If we have a stored property initializer for a VarDecl with an explicit\n // isolation, match that explicit isolation.\n if (isStoredPropertyInitializer()) {\n- if (aut...
2026-03-28T00:08:44
golang/go
a6500456f3dff5a8b69e5961ee58fe341ae8b30a
c173b531342b05d14877a95a4186cc234edc9b9c
cmd/link: fix host object's .pdata entries order Host objects are expected to have their .pdata entries in the correct order, but the Go internal linker might reorder some of the functions associated with the .pdata entries. This causes the .pdata section in the final binary to have entries in the wrong order, and the...
[ { "path": "src/cmd/link/internal/ld/data.go", "patch": "@@ -1689,6 +1689,20 @@ func (ctxt *Link) dodata(symGroupType []sym.SymKind) {\n \t\tldr.SetAttrOnList(s, true)\n \t}\n \n+\t// SEH symbols are tracked in side lists (sehp.pdata/xdata), so make\n+\t// them follow the same reachability decision used for ...
2026-03-11T12:14:41
denoland/deno
637b7583e48505395663738944ea78f66b8244a0
98ae95fe34e6b16ed674ec1a73b3b7a7ced97fda
fix(ext/node): `fs.cp` across allowed dirs with ignored read permissions (#32927) ## Summary - Fix `node:fs.cp` failing with `ENOENT` when copying between allowed directories while read permissions outside those directories are ignored (`"ignore": true` in deno.json permissions config) - The `check_parent_paths` wa...
[ { "path": "ext/node/ops/fs.rs", "patch": "@@ -1561,7 +1561,17 @@ async fn check_parent_paths_impl(\n \n let current_str = current.to_string_lossy();\n let checked_path =\n- check_cp_path(state, &current_str, OpenAccessKind::Read)?;\n+ match check_cp_path(state, &current_str, OpenAccessKind...
2026-03-24T13:47:20
mrdoob/three.js
e1c93eecd5b5946e15431a928d932712d9454944
0768730baf6069ae342893f23a7196c98eb7d942
WGSLNodeBuilder: Fix out-of-bounds access with `textureLoad()`. (#32817)
[ { "path": "src/math/MathUtils.js", "patch": "@@ -177,7 +177,7 @@ function smoothstep( x, min, max ) {\n \n /**\n * A [variation on smoothstep](https://en.wikipedia.org/wiki/Smoothstep#Variations)\n- * that has zero 1st and 2nd order derivatives at `x=0` and `x=1`. \n+ * that has zero 1st and 2nd order deri...
2026-01-22T09:06:06
tensorflow/tensorflow
2bb2829f35d382b719347cd058c409f1bee05022
92ed57c53b318b12fd4d39266f4a346718c639d2
Fully serialize stream_executor::DeviceDescription to/from proto. This change ensures that the hardcoded GPU target configs are identical to dynamically determined target configs. This is important for AOT compilation where we rely on these configs to be accurate. So, this change expands the GpuDeviceInfoProto to inc...
[ { "path": "third_party/xla/xla/backends/gpu/target_config/specs/a100_pcie_80.txtpb", "patch": "@@ -34,6 +34,9 @@ gpu_device_info {\n }\n registers_per_core_limit: 65536\n registers_per_block_limit: 65536\n+ thread_dim_limit_x: 1024\n+ thread_dim_limit_y: 1024\n+ thread_dim_limit_z: 64\n }\n platfor...
2026-03-31T11:46:19
golang/go
c173b531342b05d14877a95a4186cc234edc9b9c
bfe4cc85e8f0187f3cdb7c80b9ff5a52be66e08b
cmd/dist: try to use jj commit info for devel version Fixes #78369 Change-Id: Icb8bb9822eac78934efc313f50221de56a6a6964 Reviewed-on: https://go-review.googlesource.com/c/go/+/759320 Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org> Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> Auto-Submit: Michael Matloob <ma...
[ { "path": "src/cmd/dist/build.go", "patch": "@@ -418,12 +418,7 @@ func findgoversion() string {\n \t\treturn chomp(readfile(path))\n \t}\n \n-\t// Show a nicer error message if this isn't a Git repo.\n-\tif !isGitRepo() {\n-\t\tfatalf(\"FAILED: not a Git repo; must put a VERSION file in $GOROOT\")\n-\t}\n-\...
2026-03-25T18:17:41
denoland/deno
98ae95fe34e6b16ed674ec1a73b3b7a7ced97fda
bad6eaeb506718d3ff990ba88821f6c3fcd1f2ab
fix(fmt): update markup_fmt to 0.27.0 and malva to 0.15.2 (#32949) ## Summary - Update `markup_fmt` from 0.22.0 to 0.27.0 (HTML/Vue/Svelte/Astro/Angular formatter) - Update `malva` from 0.12.1 to 0.15.2 (CSS/SCSS/Sass/Less formatter) - Also pulls in `raffia` 0.9.2 -> 0.12.2 (CSS parser used by malva) - Add Jinja/Nunj...
[ { "path": "Cargo.lock", "patch": "@@ -6718,9 +6718,9 @@ dependencies = [\n \n [[package]]\n name = \"malva\"\n-version = \"0.12.1\"\n+version = \"0.15.2\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"aa8f6005fe3f2348f1fc59d647ee6945d5832fd080178e6d034bab1bf7976348\"\n+...
2026-03-24T13:09:16
tensorflow/tensorflow
e41f77fe91a3d1d81ac3b6f43bd0fcc7eb12ce3f
bab67d925582719a0fb92e623a0b73a690dc69ab
PR #40118: Fix tensor memory size check to use tcgen05 capability instead of IsBlackwell() Imported from GitHub PR https://github.com/openxla/xla/pull/40118 📝 Summary of Changes - Add `HasTcgen05()` to `CudaComputeCapability` that returns true for SM 10.x and SM 11.x (architectures with tcgen05 support) and fals...
[ { "path": "third_party/xla/xla/backends/gpu/codegen/triton/xtile_compiler.cc", "patch": "@@ -492,7 +492,7 @@ absl::StatusOr<TritonWrapperResult> CompileTritonToLLVM(\n }\n \n if (auto* cuda_cc = gpu_cc.cuda_compute_capability();\n- cuda_cc != nullptr && cuda_cc->IsBlackwell()) {\n+ cuda_cc != ...
2026-03-31T10:35:20
golang/go
cdfc8c771301c8c1f32e50e773d620a6b8767078
670038a5a53c19ab299179e62d72956a92248877
database/sql: avoid deadlock from reentrant RLock RWMutex.RLock blocks until any pending Lock operations are satisfied. This prohibits recursive read-locking. Replace various RWMutexes used to synchronize between reads and closes with a variant where the reader side takes priority. Reads can starve out Close, but wil...
[ { "path": "src/database/sql/closemu.go", "patch": "@@ -0,0 +1,111 @@\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+package sql\n+\n+import (\n+\t\"sync\"\n+\t\"sync/atomic\"\n+)\n+\n+/...
2026-03-15T02:54:47
denoland/deno
bad6eaeb506718d3ff990ba88821f6c3fcd1f2ab
92d7ec6caec4fc0d8b63bc820411c048594eade4
fix(ext/node): drain all ready connections in poll_tcp_handle to prevent accept starvation (#32943) ## Summary - Fix `node:net` accept starvation under high concurrency when mixed with Deno-native APIs (`Deno.listenTls()`, `Deno.connect()`) - `poll_tcp_handle` now drains all ready connections from `poll_accept` in a ...
[ { "path": "libs/core/uv_compat/tcp.rs", "patch": "@@ -606,34 +606,41 @@ pub(crate) unsafe fn poll_tcp_handle(\n }\n \n // 2. Poll listener for new connections.\n- // Match libuv: accept one connection at a time. Only poll when the\n- // backlog is empty. If the user doesn't call uv_accept in the...
2026-03-24T12:12:19
swiftlang/swift
24d61f7da229b1d50688840848d7ba2c983450a8
def9ee7464996aa5b84ef05bd17081cf86a7724f
[Diagnostics] Refactor handling of multiple missing arguments Prepare to diagnose missing patterns by refactoring how diagnostic arguments and fix-its are formed whne there are multiple missing arguments.
[ { "path": "lib/Sema/CSDiagnostics.cpp", "patch": "@@ -5264,6 +5264,48 @@ bool MissingArgumentsFailure::diagnoseAsError() {\n return true;\n }\n \n+ auto formatNewArgumentsForDiagnostic = [&]() -> StringRef {\n+ auto &ctx = getASTContext();\n+\n+ SmallString<32> diagnosticScratch;\n+ llvm::ra...
2026-03-27T22:23:13
tensorflow/tensorflow
bab67d925582719a0fb92e623a0b73a690dc69ab
5d6dc92a6dea521a205298cde1d3b82386ac6818
PR #40111: Bump pygments from 2.18.0 to 2.20.0 in /xla/backends/cpu/benchmarks/e2e/gemma2/flax_2b Imported from GitHub PR https://github.com/openxla/xla/pull/40111 Bumps [pygments](https://github.com/pygments/pygments) from 2.18.0 to 2.20.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="http...
[ { "path": "third_party/xla/xla/backends/cpu/benchmarks/e2e/gemma2/flax_2b/requirements.txt", "patch": "@@ -18,7 +18,7 @@ opt_einsum==3.4.0\n optax==0.2.4\n orbax-checkpoint==0.10.2\n protobuf==6.33.5\n-Pygments==2.18.0\n+Pygments==2.20.0\n PyYAML==6.0.2\n rich==13.9.4\n scipy==1.14.1", "additions": 1, ...
2026-03-31T10:34:56
kubernetes/kubernetes
593c6deea55440bb68b10a20aa8ddcea467d3e90
93c755bc33e63c020873b385f957c846062f76b4
fix mirror pod starttime failing message
[ { "path": "test/e2e_node/standalone_test.go", "patch": "@@ -394,7 +394,7 @@ var _ = SIGDescribe(feature.StandaloneMode, func() {\n \t\t\t\tginkgo.By(\"wait for the mirror pod to be updated\")\n \t\t\t\tgomega.Eventually(ctx, func(g gomega.Gomega) {\n \t\t\t\t\tpod, err := getPodFromStandaloneKubelet(ctx, st...
2026-03-18T02:06:59
golang/go
670038a5a53c19ab299179e62d72956a92248877
26d8a902002a2b41bc4c302044110f2eae8d597f
cmd/compile: preserve variadic signature on range-over-func When rewriting range-over-func loops, copy the variadic bit from the original function type into the synthesized body closure's type info. This keeps the generated closure signature aligned with the source function and avoids losing variadic-ness during rewri...
[ { "path": "src/cmd/compile/internal/rangefunc/rewrite.go", "patch": "@@ -1175,7 +1175,7 @@ func (r *rewriter) bodyFunc(body []syntax.Stmt, lhs []syntax.Expr, def bool, fty\n \t\tType: types2.NewSignatureType(nil, nil, nil,\n \t\t\ttypes2.NewTuple(params...),\n \t\t\ttypes2.NewTuple(results...),\n-\t\t\tfals...
2026-03-24T13:42:23
denoland/deno
c09b7f4511abe8b156839ecfc5941178db8aa5a1
71ac11e15ad5ea5088458e1a0b4a8c6109a18f07
fix(ext/web): handle null options in removeEventListener (#32605) Fixes #20101 `normalizeEventHandlerOptions` (used by `removeEventListener`) throws `TypeError: Cannot read properties of null` when `null` is passed as the options parameter. Per the DOM spec, `null` should flatten to `capture: false`. --------- Co-a...
[ { "path": "ext/web/02_event.js", "patch": "@@ -834,7 +834,10 @@ function invokeEventListeners(tuple, eventImpl) {\n function normalizeEventHandlerOptions(\n options,\n ) {\n- if (typeof options === \"boolean\" || typeof options === \"undefined\") {\n+ if (\n+ typeof options === \"boolean\" || typeof ...
2026-03-24T07:49:59
tensorflow/tensorflow
5d6dc92a6dea521a205298cde1d3b82386ac6818
6e8c95ee6e463e66b951802bbde0ca684b83af91
PR #39991: Add test coverage for BatchNormExpander untested code paths Imported from GitHub PR https://github.com/openxla/xla/pull/39991 ## Summary Fixes #39930 - Add test for `BatchNormInference` expansion (previously had zero test coverage) - Add test for `BatchNormInference` with sharding propagation - Add test f...
[ { "path": "third_party/xla/xla/service/BUILD", "patch": "@@ -2510,7 +2510,9 @@ xla_test(\n \"//xla/tests:hlo_pjrt_interpreter_reference_mixin\",\n \"//xla/tests:hlo_pjrt_test_base\",\n \"//xla/tests:xla_internal_test_main\",\n+ \"//xla/tsl/platform:status_macros\",\n \...
2026-03-31T10:30:24
kubernetes/kubernetes
1a49c37b77acb7179e455009e7cf2a9fd8641f5f
83d2b7f7e0e147e6d581eae66f4422dc44195124
kubelet: add terminated_containers_total metric Add a new ALPHA stability metric terminated_containers_total to track container terminations (both successful and failed). This metric provides aggregate visibility into container exit patterns across the node, supporting detection of abnormal exits (e.g., SIGSEG...
[ { "path": "pkg/kubelet/metrics/metrics.go", "patch": "@@ -100,6 +100,7 @@ const (\n \tStartedPodsTotalKey = \"started_pods_total\"\n \tStartedPodsErrorsTotalKey = \"started_pods_errors_total\"\n \tStartedContainersTotalKey = \"started_containers_total\"\n+\tTerminatedContainersTotalK...
2026-03-05T16:32:07
mrdoob/three.js
176519fd04c1cdf31322bebf185c2fab96b4cb2d
41b6d17a94fa0748b80c09f017ba0b311a4be279
WebGLRenderer: More fixes for reversed depth buffer. (#32799)
[ { "path": "examples/jsm/shaders/GTAOShader.js", "patch": "@@ -91,8 +91,12 @@ const GTAOShader = {\n \t\t#define FRAGMENT_OUTPUT vec4(vec3(ao), 1.)\n \t\t#endif\n \n-\t\tvec3 getViewPosition(const in vec2 screenPosition, const in float depth) {\n-\t\t\tvec4 clipSpacePosition = vec4(vec3(screenPosition, depth...
2026-01-19T14:05:18
golang/go
26d8a902002a2b41bc4c302044110f2eae8d597f
312541b783ceae00471573da83367cae26ca255b
crypto/x509: fix signature checking limit We added the "is this cert already in the chain" check (alreadyInChain) to considerCandidates before the signature limit. considerCandidates bails out when we exceed the signature check, but buildChains keeps calling considerCandidates until it exhausts all potential parents. ...
[ { "path": "src/crypto/x509/verify.go", "patch": "@@ -720,23 +720,25 @@ func alreadyInChain(candidate *Certificate, chain []*Certificate) bool {\n // for failed checks due to different intermediates having the same Subject.\n const maxChainSignatureChecks = 100\n \n+var errSignatureLimit = errors.New(\"x509:...
2026-03-05T22:28:44
denoland/deno
71ac11e15ad5ea5088458e1a0b4a8c6109a18f07
099320204ddaad99adf11b72a6bfe30788135719
docs: fix duplicated wording in LSP symbol comments (#32368)
[ { "path": "cli/lsp/tsc.rs", "patch": "@@ -2311,7 +2311,7 @@ impl NavigateToItem {\n }\n \n // The field `deprecated` is deprecated but SymbolInformation does not have\n- // a default, therefore we have to supply the deprecated deprecated\n+ // a default, therefore we have to supply the depreca...
2026-03-24T07:47:59
swiftlang/swift
696d20863a9b7064bf9bfc12a8021fb333633810
e6671ea1695a95f78c6ba21c72b451686e4c6ee0
SIL: fix a wrong assert in SILBuilder::createTuple A tuple in a global initializer is allowed to have non-loadable operands, e.g. an `Optional<Any>` with a nil value Fixes a compiler crash https://github.com/swiftlang/swift/issues/88154 rdar://173474061
[ { "path": "include/swift/SIL/SILBuilder.h", "patch": "@@ -1719,7 +1719,8 @@ class SILBuilder {\n TupleInst *createTuple(SILLocation Loc, SILType Ty,\n ArrayRef<SILValue> Elements,\n ValueOwnershipKind forwardingOwnershipKind) {\n- ASSERT(isLoadableOrOpa...
2026-03-27T18:23:44
mrdoob/three.js
1b7857ec6020acc9cdf7128729058ab6ae8e6cc3
bdf33457c85270557eb5924af19513f0ac5b88db
WebGLShadowMap: Fix wrong camera state. (#32777)
[ { "path": "src/renderers/shaders/ShaderChunk/shadowmap_pars_fragment.glsl.js", "patch": "@@ -155,7 +155,16 @@ export default /* glsl */`\n \t\t\tfloat shadow = 1.0;\n \n \t\t\tshadowCoord.xyz /= shadowCoord.w;\n-\t\t\tshadowCoord.z += shadowBias;\n+\n+\t\t\t#ifdef USE_REVERSED_DEPTH_BUFFER\n+\n+\t\t\t\tshad...
2026-01-17T18:11:59
tensorflow/tensorflow
6e8c95ee6e463e66b951802bbde0ca684b83af91
fb29b4de3d2524850e67c4a4a39a725857ec752a
PR #39309: [ROCm] Add scope_range_id support to ROCm profiler Imported from GitHub PR https://github.com/openxla/xla/pull/39309 📝 Summary of Changes - Capture scope_range_id from AnnotationStack during HIP API correlation callbacks and propagate it through AnnotationMap to GPU kernel events in the profiler trace - B...
[ { "path": "third_party/xla/xla/backends/profiler/gpu/BUILD", "patch": "@@ -156,6 +156,7 @@ cc_library(\n ],\n deps = [\n \":cupti_interface\",\n+ \"//xla/tsl/platform:test\",\n \"@local_config_cuda//cuda:cuda_headers\",\n \"@tsl//tsl/platform:test\",\n ],\n@@ -420,...
2026-03-31T09:53:46
golang/go
312541b783ceae00471573da83367cae26ca255b
04dc12c1a17d3fa4ff49af84de5641099716e234
crypto/x509: hoist policy pruning out of loop We only need to do this once, not once per mapping. Thanks to Jakub Ciolek for reporting this issue. Fixes #78281 Fixes CVE-2026-32281 Change-Id: Ic26f5f14d2a5e42ca8c24b8ae47bc3c5cc601863 Reviewed-on: https://go-review.googlesource.com/c/go/+/758061 Reviewed-by: Damien ...
[ { "path": "src/crypto/x509/verify.go", "patch": "@@ -1284,12 +1284,12 @@ func policiesValid(chain []*Certificate, opts VerifyOptions) bool {\n \t\t\t\t\t\t} else {\n \t\t\t\t\t\t\t// 6.1.4 (b) (3) (i) -- as updated by RFC 9618\n \t\t\t\t\t\t\tpg.deleteLeaf(mapping.IssuerDomainPolicy)\n-\n-\t\t\t\t\t\t\t// 6...
2026-03-23T19:09:47