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 | 4ade335fc8a028281f4ae8efca23d9cce3872c42 | 228574b04210ad54baf04126810e2c113a462bcc | fix: support cjs, cts, mjs, and mts for the `--ext` flag (#30398) | [
{
"path": "cli/args/flags.rs",
"patch": "@@ -2661,7 +2661,7 @@ Ignore formatting a file by adding an ignore comment at the top of the file:\n .long(\"ext\")\n .help(\"Set content type of the supplied file\")\n .value_parser([\n- \"ts\", \"tsx\", \"js\", \"jsx\", \"md... | 2025-08-14T16:02:49 |
golang/go | dc960d0bfeb6ce6abd0cfa2c096476d98e9ec7cd | 7acb0d044695ca0fbedf94dca7abfdfd991bc69a | cmd/compile, reflect: further allow inlining of TypeFor
Previous CLs optimized direct use of abi.Type, but reflect.Type is
indirected, so was not benefiting.
For TypeFor, we can use toRType directly without a nil check because the
types are statically known.
Normally, I'd think SSA would remove the nil check, but du... | [
{
"path": "src/cmd/compile/internal/reflectdata/reflect.go",
"patch": "@@ -717,6 +717,10 @@ func writeType(t *types.Type) *obj.LSym {\n \t}\n \ts.SetSiggen(true)\n \n+\tif !tbase.HasShape() {\n+\t\tTypeLinksym(t) // ensure lsym.Extra is set\n+\t}\n+\n \tif !NeedEmit(tbase) {\n \t\tif i := typecheck.BaseType... | 2025-09-06T03:04:58 |
kubernetes/kubernetes | 8d4237fde8ab58e1bdfecbae52146336cbde259d | ff9971ec7fa857d6e5f1182b656434a74b25df0f | kubelet: Fix nil panic in podcertificatemanager
If the the PCR that kubelet created gets deleted before it is issued, a
nil panic will be thrown while composing the error message. | [
{
"path": "pkg/kubelet/podcertificate/podcertificatemanager.go",
"patch": "@@ -481,7 +481,7 @@ func (m *IssuingManager) handleProjection(ctx context.Context, key projectionKey\n \t\t\t// remember creating the PCR, then we must be in case 2. Return to\n \t\t\t// credStateInitial so we create a new PCR.\n \t... | 2025-12-05T22:23:45 |
mrdoob/three.js | 8dfb87164d48aad4ddfa05d530cc7d329e132fdf | 152609d668a757e64681787b855d6911312e473d | Playground: Fix imports. (#28987) | [
{
"path": "playground/NodeEditor.js",
"patch": "@@ -1,5 +1,5 @@\n import * as THREE from 'three';\n-import * as Nodes from 'three/nodes';\n+import * as Nodes from 'three/tsl';\n import { Canvas, CircleMenu, ButtonInput, StringInput, ContextMenu, Tips, Search, Loader, Node, TreeViewNode, TreeViewInput, Eleme... | 2024-07-26T12:28:24 |
denoland/deno | 228574b04210ad54baf04126810e2c113a462bcc | 3b0cd8261abffb0f4e1c2310784dea7783451b76 | chore: fix lint warnings (#30399) | [
{
"path": "cli/clippy.toml",
"patch": "@@ -3,23 +3,23 @@ disallowed-methods = [\n { path = \"std::process::exit\", reason = \"use deno_runtime::exit instead\" },\n { path = \"clap::Arg::env\", reason = \"ensure environment variables are resolved after loading the .env file instead\" },\n { path = \"to... | 2025-08-14T00:25:57 |
tensorflow/tensorflow | c660aef0d5c2b73f3e97684a335c8ab94a629825 | 7e784e899a791ba931889078b6dea9a6c3d41978 | [XLA:GPU] Run DotMerger after the simplification fix-point pass pipeline.
The simplification passes alg-simplifier, constant_folding, cse, and dot-strength-reduction are cheap compared to dot-merger. Running these passes to a fix-point first can greatly reduce the number of merge candidates that dot-merger needs to co... | [
{
"path": "third_party/xla/xla/hlo/transforms/simplifiers/dot_merger.cc",
"patch": "@@ -17,6 +17,7 @@ limitations under the License.\n \n #include <cstdint>\n #include <functional>\n+#include <numeric>\n #include <set>\n #include <string>\n #include <utility>\n@@ -478,7 +479,14 @@ absl::StatusOr<bool> Merge... | 2025-12-17T13:58:16 |
swiftlang/swift | 7f57385be47b5ff057348f55aaed38edd691d1f7 | d13988bd5f821767e08f4eacc9de09b011cbb2ee | [Backtracing][Windows] Add PE file parsing and DWARF-in-PE support.
This should allow us to get symbolicated backtraces for Swift code
that is built with DWARF debug information.
rdar://181623384 | [
{
"path": "stdlib/public/RuntimeModule/CMakeLists.txt",
"patch": "@@ -62,6 +62,8 @@ set(RUNTIME_SOURCES\n Mangling.swift\n MemoryReader.swift\n OSReleaseScanner.swift\n+ PeCoff.swift\n+ PeImageCache.swift\n ProcMapsScanner.swift\n Registers.swift\n Runtime.swift",
"additions": 2,
"dele... | 2025-09-25T15:01:29 |
mrdoob/three.js | 76920df0a8cf95147e3ee90fcbc1bbb3ba8ad116 | bfe65cdca7073fc4cbc391c2cb4ae27aebc55d27 | Nodes: Add SepiaNode (#28961)
* add SepiaNode
* add node to export
* fix
* condense sepia into tslFn
* remove SepiaNode from Node.js
* Update SepiaNode.js
---------
Co-authored-by: Michael Herzog <michael.herzog@human-interactive.org> | [
{
"path": "src/nodes/Nodes.js",
"patch": "@@ -141,6 +141,7 @@ export { default as BloomNode, bloom } from './display/BloomNode.js';\n export { default as TransitionNode, transition } from './display/TransitionNode.js';\n export { default as RenderOutputNode, renderOutput } from './display/RenderOutputNode.j... | 2024-07-26T09:03:24 |
denoland/deno | 3b0cd8261abffb0f4e1c2310784dea7783451b76 | 5129d036ebd51b229adb7579e2c805859e3f95c0 | fix: add missing cargo feature to 'deno_npm_cache' crate (#30397) | [
{
"path": "libs/npm_cache/Cargo.toml",
"patch": "@@ -24,7 +24,7 @@ deno_path_util.workspace = true\n deno_semver.workspace = true\n deno_unsync.workspace = true\n faster-hex.workspace = true\n-flate2.workspace = true\n+flate2 = { workspace = true, features = [\"default\"] }\n futures.workspace = true\n log.... | 2025-08-13T21:50:49 |
kubernetes/kubernetes | 05c4e3febeb9ee8dc8e1b0c75bc341954eb1a8a3 | 03e14cc9432975dec161de1e52d7010f9711a913 | kubeadm: revert to using a static list of etcd versions
The introduction of dynamic keys in the etcd version
map in constants.go introduced a couple of problems:
1. The size of the map could no longer be unit tested
because at UT runtime there was only one key "0".
2. Once a new k8s release branch is cut the version... | [
{
"path": "cmd/kubeadm/app/constants/constants.go",
"patch": "@@ -496,16 +496,27 @@ var (\n \t// CurrentKubernetesVersion specifies current Kubernetes version supported by kubeadm\n \tCurrentKubernetesVersion = getSkewedKubernetesVersion(0)\n \n-\t// SupportedEtcdVersion lists officially supported etcd vers... | 2025-12-08T12:40:11 |
golang/go | 7acb0d044695ca0fbedf94dca7abfdfd991bc69a | 60c1ee91834d6c9701c5058830645da6eaa0cee9 | runtime: fix syscall9 on darwin/arm64
The aarch64 ABI says that only the first 8 arguments should be
passed as registers, subsequent arguments should be put on
the stack.
Syscall9 is not putting the 9th argument on the stack, and it should.
The standard library hasn't hit this issue because it uses Syscall9
for fun... | [
{
"path": "src/runtime/sys_darwin_arm64.s",
"patch": "@@ -724,13 +724,9 @@ TEXT runtime·syscall9(SB),NOSPLIT,$0\n \tMOVD\t56(R0), R6\t// a7\n \tMOVD\t64(R0), R7\t// a8\n \tMOVD\t72(R0), R8\t// a9\n+\tMOVD\tR8, 0(RSP)\t// the 9th arg and onwards must be passed on the stack\n \tMOVD\t8(R0), R0\t// a1\n \n-\t/... | 2025-09-10T14:34:22 |
mrdoob/three.js | 11a5e52b6dfececea4e8c497f61ed1bb1be2f7e2 | 387c9b0857e6007997b33b233cb129a9c9460564 | Examples: Add coffee smoke (#28967)
* Examples > Add coffee smoke
* Examples > Update coffee smoke screenshot
* Examples: Add coffee smoke screenshot to test exceptions | [
{
"path": "examples/files.json",
"patch": "@@ -401,6 +401,7 @@\n \t\t\"webgpu_textures_2d-array\",\n \t\t\"webgpu_textures_anisotropy\",\n \t\t\"webgpu_textures_partialupdate\",\n+\t\t\"webgpu_tsl_coffee_smoke\",\n \t\t\"webgpu_tsl_editor\",\n \t\t\"webgpu_tsl_galaxy\",\n \t\t\"webgpu_tsl_transpiler\",",
... | 2024-07-26T03:00:35 |
denoland/deno | a8cde960ce626c77416edd4b58a8e502bcb0bacc | ca06312ac7695c331ad86a141bd54d986ae0a27e | fix(unstable): lint node properties should be enumerable (#30391)
This makes npm libraries that traverse the ESTree format like `zimmerframe` or `periscopic` work with our lint ast. | [
{
"path": "cli/js/40_lint.js",
"patch": "@@ -607,6 +607,9 @@ function setNodeGetters(ctx) {\n const name = getString(ctx.strTable, id);\n \n Object.defineProperty(FacadeNode.prototype, name, {\n+ // The `parent` key is expected to be non-enumerable.\n+ // See the npm `zimmerframe` library.... | 2025-08-13T13:46:51 |
kubernetes/kubernetes | daa2e07f08c197c5078aa2f609f98034b0a9e4ea | dd4d9fad24828f54ad48b5c6c413a6d073b19e90 | Fix: Use Get-Volume for Windows snapshot size verification
Implement the robust, multi-stage PowerShell Get-Volume logic to accurately
determine the filesystem size of volumes mounted in Windows E2E tests. This
solution replaces the unreliable fsutil utility and resolves persistent
failures (including in CAPZ) caused ... | [
{
"path": "test/e2e/storage/testsuites/provisioning.go",
"patch": "@@ -19,13 +19,14 @@ package testsuites\n import (\n \t\"context\"\n \t\"fmt\"\n-\tapiextensionsv1 \"k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1\"\n-\tcrdclientset \"k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset\"... | 2025-11-26T13:22:42 |
golang/go | a4e25c3d657cf7c3f3a921cc99ea60ad5a337b82 | dd8276657f2244193d399f01941ee1d76a79529d | net,internal/poll: skip TestAllocs when race is enabled on Windows
The Windows implementation of several network protocols make use of
sync.Pool, which randomly drops cached items when race is enabled.
While here, zero out the control buffer to allow it to be garbage
collected.
Fixes #75341
Change-Id: Ie20e21adef2e... | [
{
"path": "src/internal/poll/fd_windows.go",
"patch": "@@ -196,6 +196,8 @@ func freeWSAMsg(msg *windows.WSAMsg) {\n \t// Clear pointers to buffers so they can be released by garbage collector.\n \tmsg.Buffers.Len = 0\n \tmsg.Buffers.Buf = nil\n+\tmsg.Control.Len = 0\n+\tmsg.Control.Buf = nil\n \twsaMsgPool.... | 2025-09-12T08:13:15 |
mrdoob/three.js | 75d969948ebbd1e6f827935076c5e6f1ccce7f14 | f8a6f724c9910c93e6b30c1227427dcd95d61849 | WGSLNodeBuilder: Fix `pow()` with negative base on Windows (#28971)
* WGSLNodeBuilder: Fix pow() with negative base on Windows
* restore tsl galaxy example
* Update webgpu_tsl_galaxy.jpg
* puppeteer: add webgpu_tsl_galaxy | [
{
"path": "examples/webgpu_tsl_galaxy.html",
"patch": "@@ -27,7 +27,7 @@\n \t\t<script type=\"module\">\n \n \t\t\timport * as THREE from 'three';\n-\t\t\timport { color, cos, float, mix, range, sin, timerLocal, uniform, uv, vec3, vec4, PI, PI2, tslFn } from 'three/tsl';\n+\t\t\timport { color, cos, float, ... | 2024-07-25T20:42:10 |
swiftlang/swift | 4838c578d6b1b17e04a12c07921092300354c700 | 389be8d92797fc4b4bedef76d85eac04bfc3cec3 | [windows] lower the number of parallel link jobs when building with DebugInfo | [
{
"path": "utils/build.ps1",
"patch": "@@ -2164,7 +2164,14 @@ function Get-CompilersDefines([Hashtable] $Platform, [string] $Variant, [switch]\n }\n \n # If DebugInfo is enabled limit the number of parallel links to avoid OOM.\n- $DebugDefines = if ($DebugInfo) { @{ SWIFT_PARALLEL_LINK_JOBS = \"4\"; } ... | 2026-02-03T17:25:30 |
tensorflow/tensorflow | 145b45691c3cb0fce088187872c3852ba0a9247b | d536c1c3fb09a60ed721ff2770bdb3ce37328678 | PR #35330: Respect print_metadata option when dumping HLO
Imported from GitHub PR https://github.com/openxla/xla/pull/35330
📝 Summary of Changes
https://github.com/openxla/xla/pull/34060 caused more stack trace metadata to be included in the text representation that is used when calculating HLO module fingerprints. ... | [
{
"path": "third_party/xla/xla/service/gpu/gpu_hlo_schedule_test.cc",
"patch": "@@ -124,12 +124,19 @@ class GpuHloScheduleTest : public HloTestBase {\n GetModuleConfig(test_config));\n }\n \n- static bool HasValidFingerprint(HloModule* module) {\n+ static std::opti... | 2025-12-17T10:41:12 |
denoland/deno | b2fd724c46ccb3ecdd9600f7623728aa083400c9 | e421451a70891254d78b2f0b15c33f46a2c8c26a | feat(kv): implement custom inspect for AtomicOperation (#30077)
## Summary
Adds a custom inspect method to `AtomicOperation` to provide a readable
string representation of the queued operations (checks, mutations,
enqueues). This improves developer experience when debugging atomic
operations by showing the internal s... | [
{
"path": "ext/kv/01_db.ts",
"patch": "@@ -16,6 +16,7 @@ import {\n } from \"ext:core/ops\";\n const {\n ArrayFrom,\n+ ArrayPrototypeJoin,\n ArrayPrototypeMap,\n ArrayPrototypePush,\n ArrayPrototypeReverse,\n@@ -567,6 +568,122 @@ class AtomicOperation {\n \"'Deno.AtomicOperation' is not a pro... | 2025-08-13T08:09:22 |
golang/go | 73676e322396f6d49b4328456023233a2fe5693e | 0e1b98993ea6574819813cfad89d7fd1d1c47552 | cmd/go: run cgo and cgo compiles in their own actions
This change splits package builds further into even more actions.
Between the cache action (and cover action, if present) and the actual
build action we insert three layers of actions:
Check Cache Action
| |
| V... | [
{
"path": "src/cmd/go/internal/work/action.go",
"patch": "@@ -19,6 +19,7 @@ import (\n \t\"internal/platform\"\n \t\"os\"\n \t\"path/filepath\"\n+\t\"slices\"\n \t\"strings\"\n \t\"sync\"\n \t\"time\"\n@@ -578,6 +579,47 @@ func (ca *coverActor) Act(b *Builder, ctx context.Context, a *Action) error {\n \tret... | 2025-08-08T21:35:43 |
mrdoob/three.js | 95f114226fa343bb967e18c5949732aaed79206a | a46d6761c9510bf1fb2c126fc560f2cc11e6edb2 | Background: Fix update when changing env map. (#28966) | [
{
"path": "src/renderers/common/Background.js",
"patch": "@@ -90,6 +90,7 @@ class Background extends DataMap {\n \t\t\tif ( sceneData.backgroundCacheKey !== backgroundCacheKey ) {\n \n \t\t\t\tsceneData.backgroundMeshNode.node = vec4( backgroundNode ).mul( backgroundIntensity );\n+\t\t\t\tsceneData.backgrou... | 2024-07-25T15:34:22 |
denoland/deno | e421451a70891254d78b2f0b15c33f46a2c8c26a | ebfd3c3d7c196340a90189f8be5cd104c625ee4f | fix(tests): use correct path separator on unix for code_cache cleanup.ts (#30378)
This has been causing failures on multiple PRs. | [
{
"path": "tests/specs/compile/code_cache/cleanup.ts",
"patch": "@@ -5,7 +5,7 @@ try {\n if (Deno.build.os === \"windows\") {\n Deno.removeSync(tmpdir() + \"\\\\deno-compile-using_code_cache.exe.cache\");\n } else {\n- Deno.removeSync(tmpdir() + \"\\\\deno-compile-using_code_cache.cache\");\n+ ... | 2025-08-12T16:20:52 |
swiftlang/swift | 192344076f15478fe31f7b6e02e162a1a5ca5401 | 33f2172761d1ad7f0f5d0e389f0fbb93a2918bef | [rbi] Use translateSILAssignIndirect for stores to no-alias destinations
For stores to unaliased, non-aggregate-projected destinations, switch from
translateSILAssignDirect(destValue, src) to translateSILAssignIndirect(dest, src).
This passes the Operand* rather than just the SILValue, enabling proper tracking
of the ... | [
{
"path": "include/swift/SILOptimizer/Utils/PartitionUtils.h",
"patch": "@@ -148,7 +148,8 @@ class RepresentativeValue {\n }\n \n if (auto *op = value.dyn_cast<Operand *>()) {\n- os << \"Value from Overwritten Memory : \" << *op;\n+ os << \"Value from Overwritten Memory. Op Num: \" << op->... | 2026-01-29T20:57:52 |
kubernetes/kubernetes | 7ce879d16f7dab7d79b9957e979316be3fdf9a93 | c70011cf108c8af63c5b4af3c2f8ff88b333a698 | Document x-kubernetes-list-map-keys into OpenAPI extensions
This PR adds missing OpenAPI vendor extension documentation for the following:
x-kubernetes-list-map-keys
The provided documentation includes simple additions to api/openapi-spec/README.md with similar format to present documentation.
Fixes issue #131724 | [
{
"path": "api/openapi-spec/README.md",
"patch": "@@ -54,6 +54,34 @@ For example:\n }\n ```\n \n+### `x-kubernetes-list-map-keys`\n+\n+Operations and Definitions may have `x-kubernetes-list-maps-keys` if they\n+are associated with a [kubernetes resource](https://git.k8s.io/community/contributors/devel/sig-a... | 2025-12-06T07:37:35 |
tensorflow/tensorflow | 6c69aa0e0de1498ce1510e7e7a99082fc7f4bde3 | 8b4daac3472992cbb34e2bf97a56b0a1f06ecc75 | PR #35269: Bump actions/upload-artifact from 5.0.0 to 6.0.0
Imported from GitHub PR https://github.com/openxla/xla/pull/35269
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 5.0.0 to 6.0.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/acti... | [
{
"path": "third_party/xla/.github/workflows/benchmark_postsubmit.yml",
"patch": "@@ -235,7 +235,7 @@ jobs:\n gsutil cp \"$OUTPUT_FILE\" \"$GCS_BUCKET/$GCS_OBJECT_NAME\"\n \n - name: Upload XSpace artifacts\n- uses: actions/upload-artifact@v5.0.0\n+ uses: actions/upload-artifac... | 2025-12-17T10:19:15 |
mrdoob/three.js | 60a1f064e37fd3cc225c168b594fc13ba5d060d9 | e241101b5f88102ce31ce87ed5f3d8ea2fbad057 | ScriptableNode: Fix getCacheKey() (#28964) | [
{
"path": "src/nodes/code/ScriptableNode.js",
"patch": "@@ -437,6 +437,20 @@ class ScriptableNode extends Node {\n \n \t}\n \n+\tgetCacheKey( force ) {\n+\n+\t\tconst cacheKey = [ this.source, this.getDefaultOutputNode().getCacheKey( force ) ];\n+\n+\t\tfor ( const param in this.parameters ) {\n+\n+\t\t\tca... | 2024-07-25T05:35:24 |
denoland/deno | ebfd3c3d7c196340a90189f8be5cd104c625ee4f | c69a8fa4145164d53b5bc04bd3355c3be9e758c5 | fix: android build (#30360)
Fix build error on Android.
Patches from https://github.com/cions/termux-deno | [
{
"path": "cli/Cargo.toml",
"patch": "@@ -195,7 +195,7 @@ deno_subprocess_windows.workspace = true\n [target.'cfg(unix)'.dependencies]\n nix.workspace = true\n shell-escape = \"=0.1.5\"\n-[target.'cfg(any(target_os = \"linux\", target_os = \"macos\"))'.dependencies]\n+[target.'cfg(any(target_os = \"android\... | 2025-08-12T13:47:18 |
swiftlang/swift | 744764f8043d05f09202521ffede93ddf3b2f691 | 706c3c0632b967a991e95bee476906099d3b67a9 | Sema: Fix logic error in BindingStep::take()
We would always consider a partition if the first choice was skipped. | [
{
"path": "lib/Sema/CSStep.h",
"patch": "@@ -455,12 +455,16 @@ template <typename P> class BindingStep : public SolverStep {\n return done(/*isSuccess=*/false);\n \n while (auto choice = Producer()) {\n- if (shouldSkip(*choice))\n- continue;\n-\n+ // Note: we must check if we need... | 2026-02-02T23:46:20 |
golang/go | 0e1b98993ea6574819813cfad89d7fd1d1c47552 | 84e9ab398438bc728683ca68485c6e89526b0441 | testing: exit B.Loop early upon saturation
There's a cap of 1 billion benchmark iterations because more than that
is usually not going to give more useful data. Unfortunately, the
existing implementation neglected to check whether the 1e9 cap had
already been exceeded when it adjusted the number of iterations in the
B... | [
{
"path": "src/testing/benchmark.go",
"patch": "@@ -298,6 +298,9 @@ func (b *B) doBench() BenchmarkResult {\n \treturn b.result\n }\n \n+// Don't run more than 1e9 times. (This also keeps n in int range on 32 bit platforms.)\n+const maxBenchPredictIters = 1_000_000_000\n+\n func predictN(goalns int64, prevI... | 2025-08-31T17:34:47 |
mrdoob/three.js | e241101b5f88102ce31ce87ed5f3d8ea2fbad057 | 573ddd736eacc2af490ffbcca5d2d883d976aad9 | Examples: Add galaxy (#28955)
* Examples: Add galaxy
* update screenshot
* Examples: Rename TSL Galaxy and use THREE core materials
* Examples: TSL Galaxy fix screenshot
* update screenshot
* Examples: TSL Galaxy fix pow on negative
--------- | [
{
"path": "examples/files.json",
"patch": "@@ -401,6 +401,7 @@\n \t\t\"webgpu_textures_anisotropy\",\n \t\t\"webgpu_textures_partialupdate\",\n \t\t\"webgpu_tsl_editor\",\n+\t\t\"webgpu_tsl_galaxy\",\n \t\t\"webgpu_tsl_transpiler\",\n \t\t\"webgpu_video_panorama\",\n \t\t\"webgpu_volume_cloud\",",
"addi... | 2024-07-24T19:19:46 |
kubernetes/kubernetes | 7bacc1e036502f932031e0163fbacabe0bdf00b6 | c70011cf108c8af63c5b4af3c2f8ff88b333a698 | fix DeepEqualWithNilDifferentFromEmpty comparison
refactor tests to add missing test cases | [
{
"path": "staging/src/k8s.io/apimachinery/third_party/forked/golang/reflect/deep_equal.go",
"patch": "@@ -178,7 +178,7 @@ func (e Equalities) deepValueEqual(v1, v2 reflect.Value, visited map[visit]bool,\n \t\t\t}\n \n \t\t\t// Two lists that are both empty and both non nil are equal\n-\t\t\tif v1.Len() == ... | 2025-11-11T01:27:43 |
tensorflow/tensorflow | d0cf19c0fa1f9044d0bd5b5fccdf875c38a21753 | 42652a45990e3c5be8a8a56936dd0b265b7ff3d2 | PR #34734: [XLA:GPU] make DYNAMIC_SLICE_COPY_FUSION command default lowered to cuda-graph
Imported from GitHub PR https://github.com/openxla/xla/pull/34734
📝 Summary of Changes
* Added `DebugOptions::DYNAMIC_SLICE_COPY_FUSION` to the list of enabled GPU command buffers in the default debug options.
🚀 Kind of Cont... | [
{
"path": "third_party/xla/xla/debug_options_flags.cc",
"patch": "@@ -244,6 +244,8 @@ DebugOptions DefaultDebugOptionsIgnoringFlags() {\n opts.add_xla_gpu_enable_command_buffer(DebugOptions::CUSTOM_CALL);\n opts.add_xla_gpu_enable_command_buffer(DebugOptions::CUDNN);\n opts.add_xla_gpu_enable_command_... | 2025-12-17T09:52:48 |
denoland/deno | c69a8fa4145164d53b5bc04bd3355c3be9e758c5 | 6344dcffad919381b2d5ad77c906ce555ae75ed1 | fix(unstable): update deno_tunnel for better reconnect errors (#30381) | [
{
"path": "Cargo.lock",
"patch": "@@ -2952,9 +2952,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_tunnel\"\n-version = \"0.7.0\"\n+version = \"0.8.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"386488c23cda3d6f44d4fa5593a45346032902bbd5bf058e48077b85fb550f99\... | 2025-08-12T09:45:37 |
mrdoob/three.js | f5eaae88a09fce661a814d2bd3526f1690302bb6 | 0e51aa02932fbf6f94efa13f74230cec563d3c55 | Nodes: Cache linear depth and viewZ of depth textures in PassNode (#28922)
* add arguments to getLinearDepthNode and getViewZ
* only assign to _viewZ and _linearDepth of renderTarget when name is 'depth'
* remove error check
* adjust functions to use cache system
* fix cache access typo
* restore commen... | [
{
"path": "src/nodes/display/PassNode.js",
"patch": "@@ -100,10 +100,10 @@ class PassNode extends TempNode {\n \t\t\tdepth: depthTexture\n \t\t};\n \n-\t\tthis._nodes = {};\n+\t\tthis._textureNodes = {};\n+\t\tthis._linearDepthNodes = {};\n+\t\tthis._viewZNodes = {};\n \n-\t\tthis._linearDepthNode = null;\n... | 2024-07-24T02:39:28 |
swiftlang/swift | 1184646abb9080cefd332e8be5640247dd45fde8 | 9b0c8e6f60c699c42202c78f7d21cec4d6420a19 | Sema: Add test case where declaration order determines expression complexity
This is a reduction of the problem from rdar://168618780 which is
independent of the workaround https://github.com/swiftlang/swift/pull/86745.
Once this is fixed, the workaround PR can be reverted. | [
{
"path": "validation-test/Sema/type_checker_perf/slow/rdar168618780.swift",
"patch": "@@ -0,0 +1,47 @@\n+// RUN: %target-typecheck-verify-swift -solver-scope-threshold=500\n+\n+struct C {\n+ let c: [C] = []\n+}\n+\n+// The overloads of f() and g() are the same, except they are ordered differently.\n+\n+ex... | 2026-02-03T05:55:40 |
kubernetes/kubernetes | b2151b1f51e6c88d36094aaf66c48a0d5cb4cf19 | 5bcb7599736327cd8c6d23e398002354a6e40f68 | DRA device taints: fix and simplify unit tests
Using `t` instead of `tCtx` is subtly wrong: the failure is attributed to the
parent test, not the sub-test. Using a separate function with tCtx as
parameter ensures that t is not in scope of the code and thus this mistake
cannot happen. The number of lines is the same, i... | [
{
"path": "pkg/controller/devicetainteviction/device_taint_eviction_test.go",
"patch": "@@ -760,7 +760,8 @@ func inProgress(rule *resourcealpha.DeviceTaintRule, status bool, reason, messag\n //\n // Then pending work gets handled, potentially multiple times after\n // advancing time to reach \"later\" work ... | 2025-12-01T17:08:30 |
tensorflow/tensorflow | 55a073938815c44dca4289be0b5ff3f0d1f1b964 | 9804d21251e7143b91d1fabfb40815b8de848008 | PR #35191: [ROCm] Fix jax build with rocm
Imported from GitHub PR https://github.com/openxla/xla/pull/35191
📝 Summary of Changes
While building jax and running its test it complaints about missing hipsolver_potrf_ffi
FFI handler. This change ensures that libs located in data are linked against the targets
where they... | [
{
"path": "third_party/xla/third_party/gpus/rocm/BUILD.tpl",
"patch": "@@ -105,6 +105,7 @@ cc_library(\n \":hip\",\n \":hipblas\",\n \":hipblaslt\",\n+ \":hipfft\",\n \":hiprand\",\n \":hipsolver\",\n \":hipsparse\",\n@@ -116,7 +117,6 @@ cc_library(\n ... | 2025-12-17T07:21:44 |
denoland/deno | 6344dcffad919381b2d5ad77c906ce555ae75ed1 | e2889e01f07161b92c4be81e5c0115d3790bd3be | fix(ext/node): make some `os` exported properties read only (#30374)
These only occurs when importing using `require('os')`, since ES module
imports already make it non-writeable. Changes are based on Node.js
original implementation
[here](https://github.com/nodejs/node/blob/591ba692bfe30408e6a67397e7d18bfa1b9c3561/li... | [
{
"path": "ext/node/polyfills/os.ts",
"patch": "@@ -38,7 +38,12 @@ import { os } from \"ext:deno_node/internal_binding/constants.ts\";\n import { osUptime } from \"ext:deno_os/30_os.js\";\n import { Buffer } from \"ext:deno_node/internal/buffer.mjs\";\n import { primordials } from \"ext:core/mod.js\";\n-con... | 2025-08-12T08:21:31 |
swiftlang/swift | 9b0c8e6f60c699c42202c78f7d21cec4d6420a19 | 389be8d92797fc4b4bedef76d85eac04bfc3cec3 | Sema: Add test case that was incorrectly rejected in 6.2 | [
{
"path": "test/Constraints/old_hack_related_ambiguities.swift",
"patch": "@@ -472,3 +472,8 @@ do {\n let _: Int = res3\n }\n }\n+\n+// 6.2 would reject this expression, even though it is valid\n+func tooAggressiveShrink() {\n+ let _ = [1 / 1].map { $0 / 1.0 }\n+}\n\\ No newline at end of file",
... | 2026-02-03T05:22:05 |
kubernetes/kubernetes | feffdbbcf20c661b4b29c3bb7461ac00d29124f0 | 4e94e70dcad423e9f59f12ac5a048d2137d20e86 | mark QuotaMonitor as not running and invalidate monitors list
to prevent close of closed channel panic | [
{
"path": "pkg/controller/garbagecollector/graph_builder.go",
"patch": "@@ -94,8 +94,9 @@ type GraphBuilder struct {\n \t// This channel is also protected by monitorLock.\n \tstopCh <-chan struct{}\n \n-\t// running tracks whether Run() has been called.\n-\t// it is protected by monitorLock.\n+\t// running ... | 2025-12-05T14:50:32 |
denoland/deno | e2889e01f07161b92c4be81e5c0115d3790bd3be | 93d0cff559217be75023b3cb900bc91533a9872c | fix: upgrade deno_core to 0.355.0 (#30352) | [
{
"path": "Cargo.lock",
"patch": "@@ -1848,9 +1848,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_core\"\n-version = \"0.354.0\"\n+version = \"0.355.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"0cfe32c94bf6e813fc2ca43297f4b889f4e48936ca19a13e3b44035831afc2b... | 2025-08-11T09:12:43 |
mrdoob/three.js | 0e51aa02932fbf6f94efa13f74230cec563d3c55 | 28636b09ca1d0c4bb31dc34ca2d3f73d12865352 | WebGPURenderer: Add `PCFSoftShadowMap` support. (#28951)
* WebGPURenderer: Add `PCFSoftShadowMap` support.
* fix use of .reference before setup
* use reference instead of uniform
---------
Co-authored-by: sunag <sunagbrasil@gmail.com> | [
{
"path": "src/nodes/accessors/ReferenceNode.js",
"patch": "@@ -49,7 +49,7 @@ class ReferenceNode extends Node {\n \t\tthis.count = count;\n \n \t\tthis.properties = property.split( '.' );\n-\t\tthis.reference = null;\n+\t\tthis.reference = object;\n \t\tthis.node = null;\n \n \t\tthis.updateType = NodeUpda... | 2024-07-24T02:36:09 |
tensorflow/tensorflow | 9804d21251e7143b91d1fabfb40815b8de848008 | 4c7b99b876eb7a7b73552511b49daafb368dc3f2 | [xla:cpu] hlo_benchmark_runner: NFC: drop TF_ prefix from RETURN_IF_ERROR/ASSIGN_OR_RETURN
PiperOrigin-RevId: 845604102 | [
{
"path": "third_party/xla/xla/backends/cpu/benchmarks/BUILD",
"patch": "@@ -68,6 +68,7 @@ cc_library(\n \"//xla/tools:run_hlo_module_proto_cc\",\n \"//xla/tsl/platform:env\",\n \"//xla/tsl/platform:errors\",\n+ \"//xla/tsl/platform:status_macros\",\n \"//xla/tsl/platf... | 2025-12-17T07:00:30 |
mrdoob/three.js | e275bcf2f38df1708c3733c6e10f925f75a84563 | be065aec0ea035d28bb64c1d4e7c74c4ae830233 | WebGPURenderer: Support to dynamic `light.castShadow` (#28945)
* fix name
* support to dynamic light.castShadow | [
{
"path": "src/nodes/lighting/AnalyticLightNode.js",
"patch": "@@ -158,15 +158,15 @@ class AnalyticLightNode extends LightingNode {\n \n \t\t\t//\n \n-\t\t\tconst filterFuncion = shadow.filterNode || shadowFilterLib[ renderer.shadowMap.type ] || null;\n+\t\t\tconst filterFn = shadow.filterNode || shadowFilt... | 2024-07-23T16:34:29 |
denoland/deno | 62bb429cbf0d02b9cd1d50cedbaa031587df74e4 | 9371d7bcf32cc0915876bf816f3c425df9810708 | fix(ext/node): accept `base64url` encoding on StringDecoder (#30366)
Also remove a duplicated `normalizedEncoding` function. These node
compatibility tests are now passing:
-
[test-string-decoder-end.js](https://github.com/nodejs/node/blob/v24.2.0/test/parallel/test-string-decoder-end.js)
-
[test-string-decoder-fuzz.j... | [
{
"path": "ext/node/lib.rs",
"patch": "@@ -619,7 +619,7 @@ deno_core::extension!(deno_node,\n \"internal/http2/util.ts\",\n \"internal/idna.ts\",\n \"internal/net.ts\",\n- \"internal/normalize_encoding.mjs\",\n+ \"internal/normalize_encoding.ts\",\n \"internal/options.ts\",\n \"int... | 2025-08-10T13:19:14 |
kubernetes/kubernetes | 618bec889d04b712f6b6fa98fc195918e1fff832 | 4e94e70dcad423e9f59f12ac5a048d2137d20e86 | Fix the preemption test
It needs to run as [Serial], so it accidentally does not evict other Pods.
Consider this scenario on a busy clusters, with all nodes at their attachment limit.
1. pod1 of the preemption test runs, pod2 is created.
2. The scheduler evicts pod1. That frees the RWOP volume and it also frees the ... | [
{
"path": "test/e2e/storage/testsuites/readwriteoncepod.go",
"patch": "@@ -130,7 +130,7 @@ func (t *readWriteOncePodTestSuite) DefineTests(driver storageframework.TestDriv\n \t\tginkgo.DeferCleanup(cleanup)\n \t})\n \n-\tginkgo.It(\"should preempt lower priority pods using ReadWriteOncePod volumes\", func(c... | 2025-12-05T13:28:22 |
golang/go | 5a0446d4498fb59853c81300ec387374a98f23bd | c39b2fdd1ec86f68668141a0901d5f3fc634854e | [dev.simd] simd/_gen/simdgen, cmd/compile: add memory op machine ops
This CL adds the machine ops for memory-op and also their prog writing
logic.
This CL also fixes a bug in the XED parser. Previously the
merge of machine ops is not checking the CPU feature, so some AVX
instruction might have their "memFeatures" fie... | [
{
"path": "src/cmd/compile/internal/amd64/simdssa.go",
"patch": "@@ -1353,6 +1353,514 @@ func ssaGenSIMDValue(s *ssagen.State, v *ssa.Value) bool {\n \t\tssa.OpAMD64VPSHRDQMasked512:\n \t\tp = simdV2kvImm8(s, v)\n \n+\tcase ssa.OpAMD64VPABSDMasked128load,\n+\t\tssa.OpAMD64VPABSDMasked256load,\n+\t\tssa.OpAM... | 2025-09-04T18:20:59 |
tensorflow/tensorflow | b73ff25f8ce5de512391e07858bd982e5a68d9b6 | 22b9f488a6a43a815152fdda05510b8046147f38 | PR #35132: [XLA:GPU] Update HLO cublas workspace size after autotuner select the algorithm
Imported from GitHub PR https://github.com/openxla/xla/pull/35132
📝 Summary of Changes
This PR introduces a pass that updates the workspace size for cuBLAS/cuBLASLt GEMM operations after autotuning has selected a specific alg... | [
{
"path": "third_party/xla/xla/autotuning.proto",
"patch": "@@ -64,6 +64,7 @@ message AutotuneResult {\n \n message GemmKey {\n int64 algorithm = 1;\n+ int64 autotune_workspace_size = 2;\n }\n \n // Legacy and unused in new data; superseded by AlgorithmProto.",
"additions": 1,
"deletion... | 2025-12-17T06:49:54 |
mrdoob/three.js | ebc60a53a38325656cf2c9c70529cdb9aefb6f85 | 6b4af05d405486bb3a0c39f51f0d651d19013836 | Nodes: More serialization/deserialization fixes. (#28946)
* Nodes: More serialization/deserialization fixes.
* Examples: Fix lighting. | [
{
"path": "examples/webgpu_materials.html",
"patch": "@@ -333,7 +333,7 @@\n \n \t\t\t\tmaterial = new THREE.MeshBasicNodeMaterial();\n \t\t\t\tmaterial.colorNode = scriptableNode;\n-\t\t\t\t//materials.push( material );\n+\t\t\t\tmaterials.push( material );\n \n \t\t\t\tscriptableNode.setLocal( 'material', ... | 2024-07-23T16:31:25 |
kubernetes/kubernetes | 897adb7b48cb79d5c48dcbd98f05c0499d0303c4 | 5bcb7599736327cd8c6d23e398002354a6e40f68 | DRA: adding tag to node module
move DRA to a update method
fix boilerplate code
apply node normalize code at fuzz logic
adding normalization fix
fix nit | [
{
"path": "pkg/api/testing/validation_test.go",
"patch": "@@ -23,7 +23,9 @@ import (\n \t\"k8s.io/apimachinery/pkg/api/apitesting/fuzzer\"\n \t\"k8s.io/apimachinery/pkg/api/apitesting/roundtrip\"\n \t\"k8s.io/apimachinery/pkg/runtime/schema\"\n+\t\"k8s.io/apimachinery/pkg/util/validation/field\"\n \t\"k8s.i... | 2025-11-24T19:30:28 |
denoland/deno | 9371d7bcf32cc0915876bf816f3c425df9810708 | 68297b5f10f8dd2df0fcc5c21dd2513292d0f74b | fix(ext/node): handle large buffer correctly (#30369)
Previously, Deno throws error when creating `Buffer.allocUnsafe` or
`Buffer.allocUnsafeSlow` with size of `2**31` where that's not the case
with Node.js.
The changes allow these tests to pass:
-
[test-buffer-large-size-buffer-alloc-unsafe-slow.js](https://github.c... | [
{
"path": "ext/node/ops/buffer.rs",
"patch": "@@ -156,7 +156,10 @@ pub fn op_node_decode_utf8<'a>(\n \n #[derive(Debug, thiserror::Error, deno_error::JsError)]\n enum BufferError {\n- #[error(\"String too long\")]\n+ #[error(\n+ \"Cannot create a string longer than 0x{:x} characters\",\n+ v8::String... | 2025-08-10T12:02:43 |
golang/go | cf5e993177dac0d9fd30e961416a391c37da1815 | cdb3d467fa2df80611cc7576ce3b3806aa715fa3 | cmd/link: allow one to specify the data section in the internal linker
Fixes #74945
Change-Id: Ia73a8dcdf707222e822522daaa7f31a38b1c31e6
GitHub-Last-Rev: da1526ad8cebd5cfa2f979d49d86f3424d192ce0
GitHub-Pull-Request: golang/go#75117
Reviewed-on: https://go-review.googlesource.com/c/go/+/698355
Reviewed-by: Mark Freema... | [
{
"path": "src/cmd/link/elf_test.go",
"patch": "@@ -59,6 +59,12 @@ package main\n func main() {}\n `\n \n+var goSourceWithData = `\n+package main\n+var globalVar = 42\n+func main() { println(&globalVar) }\n+`\n+\n // The linker used to crash if an ELF input file had multiple text sections\n // with the same... | 2025-09-10T19:25:49 |
tensorflow/tensorflow | 4f5e199a87e11ef4bb44992a3ccb22ea7e9fe983 | dc6314fc0eee658b39f74e85418c3a8dc762315a | Fix cmakes build of tflite when TFLITE_WITH_XNNPACK=OFF and tflite is a dependency
PiperOrigin-RevId: 845504524 | [
{
"path": "tensorflow/lite/CMakeLists.txt",
"patch": "@@ -749,9 +749,11 @@ add_library(tensorflow-lite\n set(_ALL_TFLITE_HDRS ${_ALL_TFLITE_SRCS})\n list(FILTER _ALL_TFLITE_HDRS INCLUDE REGEX \".*\\\\.h$\")\n target_include_directories(tensorflow-lite\n- PUBLIC $<BUILD_INTERFACE:${TENSORFLOW_SOURCE_DIR}> $... | 2025-12-17T01:48:33 |
denoland/deno | 56d6a7489422dcd8e93cad7ddc2d8556d2260981 | a17c53cfe4f22ed3996714e66f66ba27060c44d9 | fix: upgrade @node/types to 24 (#30343)
Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com> | [
{
"path": "cli/tsc/97_ts_host.js",
"patch": "@@ -891,8 +891,10 @@ const setTypesNodeIgnorableNames = new Set([\n \"BroadcastChannel\",\n \"btoa\",\n \"ByteLengthQueuingStrategy\",\n+ \"CloseEvent\",\n \"CompressionStream\",\n \"CountQueuingStrategy\",\n+ \"CustomEvent\",\n \"DecompressionStrea... | 2025-08-07T16:08:47 |
golang/go | fef360964c85d47406bdfbf7333591686720663b | 7d562b8460a210ad9d0b65a44fbfb71d2ea81789 | archive/tar: fix typo in benchmark name
This was accidentally introduced in CL 662835.
Change-Id: I5c7ac67337e33e82037414377912b57d2a45be91
Reviewed-on: https://go-review.googlesource.com/c/go/+/702275
Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org>
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
Auto-Submit:... | [
{
"path": "src/archive/tar/strconv_test.go",
"patch": "@@ -440,7 +440,7 @@ func TestFormatPAXRecord(t *testing.T) {\n \t}\n }\n \n-func BenchmarkParsePAXTIme(b *testing.B) {\n+func BenchmarkParsePAXTime(b *testing.B) {\n \ttests := []struct {\n \t\tname string\n \t\tin string",
"additions": 1,
"de... | 2025-09-10T00:24:20 |
tensorflow/tensorflow | c744da664cbc3d319688e1d760e4020e2ec27266 | 91e0e5c4e0934182e61ed5c3484b3c11b6a9c5e8 | Make miscellaneous clang-suggested fixes to coordination service.
PiperOrigin-RevId: 845493331 | [
{
"path": "third_party/xla/xla/pjrt/distributed/coordination/coordination_service.cc",
"patch": "@@ -98,7 +98,9 @@ absl::Status MakeShutdownBarrierError(const absl::Status& error) {\n \n void CoordinationService::ErrorPollingState::SetError(\n const absl::Status& error) {\n- if (responded_) return;\n+ ... | 2025-12-17T01:10:44 |
denoland/deno | a17c53cfe4f22ed3996714e66f66ba27060c44d9 | e282367f6762ef56804f4593aa668ea7f7e1f2c3 | fix: reduce progress bar flickering (#30349)
Also goes back to showing a single line instead of 3 lines. | [
{
"path": "cli/factory.rs",
"patch": "@@ -736,6 +736,7 @@ impl CliFactory {\n self.npm_installer_if_managed().await?.cloned(),\n self.npm_resolver().await?.clone(),\n self.resolver_factory()?.parsed_source_cache().clone(),\n+ self.text_only_progress_bar().clone... | 2025-08-07T15:13:29 |
golang/go | c34958234414a6ec8512967b3681d45314b50d3a | 253dd08f5df3a45eafc97eec388636fcabfe0174 | crypto/rsa: don't test CL 687836 against v1.0.0 FIPS 140-3 module
Fixes #75343 (again)
Updates #74115
Change-Id: I6a6a696431d12e45ec9e302e63ed18990c5ee9d9
Reviewed-on: https://go-review.googlesource.com/c/go/+/702615
Auto-Submit: Filippo Valsorda <filippo@golang.org>
Reviewed-by: Michael Pratt <mpratt@google.com>
Rev... | [
{
"path": "src/crypto/rsa/rsa_test.go",
"patch": "@@ -10,6 +10,7 @@ import (\n \t\"crypto\"\n \t\"crypto/internal/boring\"\n \t\"crypto/internal/cryptotest\"\n+\t\"crypto/internal/fips140\"\n \t\"crypto/rand\"\n \t. \"crypto/rsa\"\n \t\"crypto/sha1\"\n@@ -1245,6 +1246,9 @@ func TestModifiedPrivateKey(t *tes... | 2025-09-10T21:06:39 |
kubernetes/kubernetes | b255410b4f6197418b18293b55e663ac820e8518 | aa38aeaca288996e2b29ca0642a663c27afbe45f | Remove duplicate connection management in DRA plugin Fixes | [
{
"path": "pkg/kubelet/cm/dra/plugin/dra_plugin.go",
"patch": "@@ -18,15 +18,11 @@ package plugin\n \n import (\n \t\"context\"\n-\t\"errors\"\n \t\"fmt\"\n-\t\"net\"\n \t\"sync\"\n \t\"time\"\n \n \t\"google.golang.org/grpc\"\n-\t\"google.golang.org/grpc/connectivity\"\n-\t\"google.golang.org/grpc/credenti... | 2025-09-09T12:16:44 |
tensorflow/tensorflow | 7d2b8cb49c16734e5c3d9a73be48aefd4e697fe0 | 002edd9267f35db699885c644d7445e883d59c83 | Suppress LocalRendezvous abort warning for OUT_OF_RANGE errors.
Change the log level for LocalRendezvous aborts from INFO to WARNING. Additionally, do not log a warning when the status is OUT_OF_RANGE, as this typically indicates a normal end of sequence (e.g., in tf.data), reducing log spam.
PiperOrigin-RevId: 84539... | [
{
"path": "tensorflow/core/framework/local_rendezvous.cc",
"patch": "@@ -19,6 +19,7 @@ limitations under the License.\n #include <string>\n #include <utility>\n \n+#include \"absl/status/status.h\"\n #include \"absl/strings/str_format.h\"\n #include \"xla/tsl/platform/logging.h\"\n #include \"tensorflow/cor... | 2025-12-16T20:50:28 |
denoland/deno | 53510f874c3e6450528dc5a02ca00525e9ac4ab5 | e27d025dc85bdabfdbcec7649cc8cca86b2def2d | fix(io): do not autoClose stdin readable stream (#30345)
Fixes https://github.com/denoland/deno/issues/28867 | [
{
"path": "ext/io/12_io.js",
"patch": "@@ -167,7 +167,7 @@ class Stdin {\n \n get readable() {\n if (this.#readable === undefined) {\n- this.#readable = readableStreamForRid(this.#rid);\n+ this.#readable = readableStreamForRid(this.#rid, false);\n }\n return this.#readable;\n }",
... | 2025-08-07T12:57:56 |
golang/go | 253dd08f5df3a45eafc97eec388636fcabfe0174 | 2009e6c596551673ebb12050daa30171171cb432 | debug/macho: filter non-external symbols when reading imported symbols without LC_DYSYMTAB
File.ImportedSymbols will return symbols with a type that has one of the
N_STAB (0xe0) bits set and no section. That's not the expected behavior,
as those symbols might not be external.
We should expand the type check to also a... | [
{
"path": "src/debug/macho/file.go",
"patch": "@@ -735,9 +735,10 @@ func (f *File) ImportedSymbols() ([]string, error) {\n \t\tconst (\n \t\t\tN_TYPE = 0x0e\n \t\t\tN_UNDF = 0x0\n+\t\t\tN_EXT = 0x01\n \t\t)\n \t\tfor _, s := range st.Syms {\n-\t\t\tif s.Type&N_TYPE == N_UNDF && s.Sect == 0 {\n+\t\t\tif s.T... | 2025-09-10T11:16:00 |
mrdoob/three.js | 6b4af05d405486bb3a0c39f51f0d651d19013836 | 5e4214dc7b49141de34b49728b152a0026acfdb6 | AttributeNode: Fix serialization/deserialization. (#28944) | [
{
"path": "src/nodes/core/AttributeNode.js",
"patch": "@@ -107,6 +107,24 @@ class AttributeNode extends Node {\n \n \t}\n \n+\tserialize( data ) {\n+\n+\t\tsuper.serialize( data );\n+\n+\t\tdata.global = this.global;\n+\t\tdata._attributeName = this._attributeName;\n+\n+\t}\n+\n+\tdeserialize( data ) {\n+\n... | 2024-07-23T15:54:45 |
kubernetes/kubernetes | bc8aa8c0675f9c536b46944ca2de6c952ca18665 | 3025b0a7b4b9fba6110759e905346ead5c9c0720 | Remove incorrect special-case when Endpoints move between EndpointSlices
The code was assuming that if an Endpoint got moved from one slice to
another, and one is "local" but the other isn't, then we should prefer
the local one. But this doesn't make sense; if it's actually the same
Endpoint (i.e., same targetRef) the... | [
{
"path": "pkg/proxy/endpointschangetracker_test.go",
"patch": "@@ -1321,8 +1321,8 @@ func TestEndpointSliceUpdate(t *testing.T) {\n \t\t// test additions to existing state with partially overlapping slices and ports\n \t\t\"add a slice that overlaps with existing state and partial ports\": {\n \t\t\tstarti... | 2025-12-04T15:30:00 |
tensorflow/tensorflow | 002edd9267f35db699885c644d7445e883d59c83 | d740c6a294c07ed6cf462ccc09dded01b7e433d7 | Fix `IsCompatibleCacheFile()`
- Change the overload signature to take a `FileDescriptorView` instead of a `FileDescriptor`.
- Move to the beginning of the file before attempting to read it.
PiperOrigin-RevId: 845393565 | [
{
"path": "tensorflow/lite/delegates/xnnpack/weight_cache.cc",
"patch": "@@ -672,12 +672,14 @@ bool IsCompatibleCacheFile(const char* path) {\n return IsCompatibleCacheFile(std::move(fd));\n }\n \n-bool IsCompatibleCacheFile(const FileDescriptor& fd) {\n+bool IsCompatibleCacheFile(FileDescriptorView fd) {... | 2025-12-16T20:42:10 |
denoland/deno | 0f865b474b79d27ec88007943dbc6f0b22bb2708 | 2b5097034798d071fe075e785f7ef7c87befd55c | fix(publish): remove incorrect `relative-package-import` diagnostic when root of workspace is package (#30333) | [
{
"path": "cli/tools/publish/mod.rs",
"patch": "@@ -1123,7 +1123,6 @@ fn collect_excluded_module_diagnostics(\n }\n \n if !had_excluded_specifier {\n- let mut found_outside_specifier = false;\n // ensure no path being published references another package\n // via a relative import\n for p... | 2025-08-07T08:25:57 |
golang/go | de5d7eccb99088e3ab42c0d907da6852d8f9cebe | 8098b99547e2bb802c976a424e486ba94d3222a8 | runtime/internal/maps: only conditionally clear groups when sparse
We only want to do the work of clearing slots
if they are full. But we also don't want to do too
much work to figure out whether a slot is full or not,
especially if clearing a slot is cheap.
1) We decide group-by-group instead of slot-by-slot.
If... | [
{
"path": "src/internal/runtime/maps/table.go",
"patch": "@@ -604,12 +604,37 @@ func (t *table) Clear(typ *abi.MapType) {\n \tif t.used == 0 && t.growthLeft == mgl { // no current entries and no tombstones\n \t\treturn\n \t}\n-\tfor i := uint64(0); i <= t.groups.lengthMask; i++ {\n-\t\tg := t.groups.group(t... | 2025-08-21T00:33:14 |
mrdoob/three.js | 5e4214dc7b49141de34b49728b152a0026acfdb6 | fa7574eb7dd76e6dd9b6b2f768927428c03f80b4 | NodeMaterial: Add `setupOutgoingLight()`. (#28941)
* NodeMaterial: Add `setupOutgoingLight()`.
* NodeMaterial: Set `lights` to `false` by default.
* Examples: Fix lighting.
* E2E: Update screenshots.
* add builder as parameter for optional usage
---------
Co-authored-by: sunag <sunagbrasil@gmail.com> | [
{
"path": "examples/webgpu_backdrop_area.html",
"patch": "@@ -49,6 +49,13 @@\n \n \t\t\t\tclock = new THREE.Clock();\n \n+\t\t\t\tconst light = new THREE.PointLight( 0xffffff, 50 );\n+\t\t\t\tcamera.add( light );\n+\t\t\t\tscene.add( camera );\n+\n+\t\t\t\tconst ambient = new THREE.AmbientLight( 0x4466ff, 1... | 2024-07-23T15:29:53 |
golang/go | 8098b99547e2bb802c976a424e486ba94d3222a8 | fe5420b054a091f59f5adbd78f4716d20c7f484c | internal/runtime/maps: speed up Clear
We don't need to know the actual full slots, just whether there
are any or not.
The test for any full slots is simpler on amd64. We don't have to
use PMOVMSKB and do the intreg->floatreg transfer.
Fixes #75097
Change-Id: Iace1c100618d7fc2ac5ddd5fe9e8fe5c9595243f
Reviewed-on: ht... | [
{
"path": "src/internal/runtime/maps/group.go",
"patch": "@@ -215,6 +215,12 @@ func (g ctrlGroup) matchFull() bitset {\n \treturn ctrlGroupMatchFull(g)\n }\n \n+// anyFull reports whether any slots in the group are full.\n+func (g ctrlGroup) anyFull() bool {\n+\t// A slot is full iff bit 7 is unset. Test wh... | 2025-08-20T23:53:09 |
denoland/deno | ff8bdcd987cdc484c19d4b1fb611dbb4986b88d8 | 038d5a5331abbbdb1c951dc7c6e8e7400671f4e2 | fix(compile): ensure `Deno.build.standalone` is set in workers (#30335)
Closes https://github.com/denoland/deno/issues/30318 | [
{
"path": "runtime/js/99_main.js",
"patch": "@@ -1025,7 +1025,11 @@ function bootstrapWorkerRuntime(\n 6: argv0,\n 7: nodeDebug,\n 13: otelConfig,\n+ 15: standalone,\n } = runtimeOptions;\n+\n+ denoNs.build.standalone = standalone;\n+\n closeOnIdle = runtimeOptions[14];\n \... | 2025-08-06T14:12:57 |
tensorflow/tensorflow | 190d2db8d813e9e8a120852ab9ad7ba34a130d6f | be000a7efe7349a5454e740322d048efd186afdf | Enable CublasLt via GemmRewriter configuration. Moves DebugOptions flag `xla_gpu_enable_cublas_lt` out of GemmRewriter pass.
This change is required to enable autotuning both: Cublas and CublasLt kernels.
PiperOrigin-RevId: 845232642 | [
{
"path": "third_party/xla/xla/backends/gpu/runtime/gpublas_lt_matmul_thunk_test.cc",
"patch": "@@ -191,12 +191,14 @@ void GpuBlasLtMatmulThunkTest::CreateExecuteThunksFromHLO(\n TF_ASSERT_OK_AND_ASSIGN(auto module,\n this->ParseAndReturnVerifiedModule(hlo_string));\n \n+ GemmRe... | 2025-12-16T14:06:23 |
mrdoob/three.js | 83d7f9478dd2fdeffc5ff4e58d1dcf194f9de190 | a00f79b32274975d5bd5c0f3d83ac8c31efec64d | WebGPURenderer: Add `PCFShadowMap` support. (#28926)
* WebGPURenderer: Add `PCFShadowMap` support.
* E2E: Update screenshots.
* AnalyticLightNode: Revert cache key change.
* AnalyticLightNode: Fix `object.receiveShadow` toggle.
* Revert "AnalyticLightNode: Fix `object.receiveShadow` toggle."
This revert... | [
{
"path": "examples/webgpu_postprocessing_pixel.html",
"patch": "@@ -69,7 +69,7 @@\n \n \t\t\t\tconst mesh = new THREE.Mesh( new THREE.BoxGeometry( boxSideLength, boxSideLength, boxSideLength ), boxMaterial );\n \t\t\t\tmesh.castShadow = true;\n-\t\t\t\t//mesh.receiveShadow = true;\n+\t\t\t\tmesh.receiveSha... | 2024-07-23T15:25:57 |
swiftlang/swift | 142ab3d017eb3e3056ec7dbef1f9a6b96ac64470 | 5fa2942948f88794f55cb75673f760e8330c718e | [CSBindings] Filter leading-dot base types based on member lookup
If the transitively inferred protocol base type doesn't have a member
that was referenced via leading-dot syntax, let's filter it out from
the binding set during normal type-checking.
This helps to make sure that we don't attempt more than necessary
du... | [
{
"path": "lib/Sema/CSBindings.cpp",
"patch": "@@ -732,6 +732,22 @@ void BindingSet::inferTransitiveUnresolvedMemberRefBindings() {\n if (ProtocolDecl *decl = p->getDecl())\n if (decl->getKnownProtocolKind() && decl->isMarkerProtocol())\n continue;\n+\n+ ... | 2026-02-02T19:08:41 |
golang/go | fad1dc608d178bf2527c249ded24ca22948269b8 | b1f3e38e4153de19b1964068d79e7da6eac7b5d8 | runtime: don't artificially limit TestReadMetricsSched
TestReadMetricsSched/running can take some time to enter in steady state
on busy systems. We currently only allow 1 second for that, we should
let it run unlimitedly until success or the test time's out.
Fixes #75049
Change-Id: I452059e1837caf12a2d2d9cae1f70a0ef... | [
{
"path": "src/runtime/metrics_test.go",
"patch": "@@ -1632,15 +1632,13 @@ func TestReadMetricsSched(t *testing.T) {\n \tcheckEq := func(t *testing.T, s *metrics.Sample, value uint64) {\n \t\tcheck(t, s, value, value)\n \t}\n-\tspinUntil := func(f func() bool, timeout time.Duration) bool {\n-\t\tstart := ti... | 2025-09-10T06:23:42 |
denoland/deno | 038d5a5331abbbdb1c951dc7c6e8e7400671f4e2 | 01710669785be537554d753c8a1bb1afa9d95758 | fix(ext/node): avoid panic when `crypto.randomInt` has no arguments (#30314)
Closes https://github.com/denoland/deno/issues/30313 | [
{
"path": "ext/node/polyfills/internal/crypto/_randomInt.ts",
"patch": "@@ -2,6 +2,7 @@\n \n import { op_node_random_int } from \"ext:core/ops\";\n import { primordials } from \"ext:core/mod.js\";\n+import { ERR_INVALID_ARG_TYPE } from \"ext:deno_node/internal/errors.ts\";\n const {\n Error,\n MathCeil,... | 2025-08-05T15:09:39 |
mrdoob/three.js | 5c5f02d0959929f31358ba0b2145248fdf4aad58 | 4755144205124b9b113224eaf4e1bb1662b030cb | RenderObject: Fix material cache key regression. (#28935) | [
{
"path": "src/renderers/common/RenderObject.js",
"patch": "@@ -199,10 +199,15 @@ export default class RenderObject {\n \n \t\t\tif ( value !== null ) {\n \n+\t\t\t\t// some material values require a formatting\n+\n \t\t\t\tconst type = typeof value;\n \n-\t\t\t\tif ( type === 'number' ) valueKey = value !=... | 2024-07-22T09:33:15 |
kubernetes/kubernetes | 116ada9a35bd6b1205a330d125e9fc7bf296fd88 | 76b76c2d523f29f3d57896309aba0422c736d93d | Fix TestTerminationOrderingSidecarStopAfterMain flake under stress | [
{
"path": "pkg/kubelet/kuberuntime/kuberuntime_termination_order_test.go",
"patch": "@@ -55,16 +55,19 @@ func TestTerminationOrderingSidecarStopAfterMain(t *testing.T) {\n \n \tvar wg sync.WaitGroup\n \twg.Add(1)\n-\tvar sidecarWaitDelay int64\n-\tvar mainWaitDelay int64\n+\tvar sidecarWaitDelay, mainWaitDe... | 2025-12-03T14:04:05 |
swiftlang/swift | 6dde4c942e2fa6ae3d5704ca894cab302347239c | ef9f4893349e3a2cc3c85f30178602b21c722154 | MandatoryPerformanceOptimizations: force de-virtualizing value-type deinits
Do this even if the function then contains references to other functions with wrong linkage.
MandatoryPerformanceOptimization fixes the linkage afterwards.
This is similar to what we already do with de-virtualizing class and witness methods: h... | [
{
"path": "SwiftCompilerSources/Sources/Optimizer/FunctionPasses/DeinitDevirtualizer.swift",
"patch": "@@ -24,11 +24,11 @@ let deinitDevirtualizer = FunctionPass(name: \"deinit-devirtualizer\") {\n for inst in function.instructions {\n switch inst {\n case let destroyValue as DestroyValueInst:\n- ... | 2026-02-02T18:31:11 |
golang/go | b1f3e38e4153de19b1964068d79e7da6eac7b5d8 | 00824f5ff5913712710e449de8b7bbae51182197 | cmd/compile: when CSEing two values, prefer the statement marked one
Fixes #75249
Change-Id: Ifd61bf5341f23ce2c9735e607e00d987489caacf
Reviewed-on: https://go-review.googlesource.com/c/go/+/701295
Reviewed-by: Keith Randall <khr@google.com>
Reviewed-by: David Chase <drchase@google.com>
Reviewed-by: Alexander Musman <... | [
{
"path": "src/cmd/compile/internal/dwarfgen/linenum_test.go",
"patch": "@@ -0,0 +1,105 @@\n+// Copyright 2025 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 dwarfgen\n+\n+import (\n+\t\"debug/dwar... | 2025-09-05T17:19:17 |
denoland/deno | 01710669785be537554d753c8a1bb1afa9d95758 | 678d118bdcbad26a5bea5fdad09b40e0ada8e128 | fix(lsp): use referrer compiler options for node_modules files (#30275) | [
{
"path": "cli/lsp/completions.rs",
"patch": "@@ -864,6 +864,7 @@ mod tests {\n use std::collections::HashMap;\n \n use deno_core::resolve_url;\n+ use deno_resolver::deno_json::CompilerOptionsKey;\n use pretty_assertions::assert_eq;\n use test_util::TempDir;\n \n@@ -907,7 +908,11 @@ mod tests {\n ... | 2025-08-05T14:33:53 |
mrdoob/three.js | 4755144205124b9b113224eaf4e1bb1662b030cb | b47c7e7bcb1af2cc83efe93cf8beeeae92df12f6 | Examples: Fix UltraHDRLoader callbacks (#28932) | [
{
"path": "examples/jsm/loaders/UltraHDRLoader.js",
"patch": "@@ -262,7 +262,7 @@ class UltraHDRLoader extends Loader {\n \n \t}\n \n-\tload( url, onLoad, onError ) {\n+\tload( url, onLoad, onProgress, onError ) {\n \n \t\tconst texture = new DataTexture(\n \t\t\tthis.type === HalfFloatType ? new Uint16Arra... | 2024-07-21T22:03:29 |
tensorflow/tensorflow | f46e0c47d3ae99a7a5859521d19db1593c4bc76c | 3bff94579443c830b19fe0a176fb4b1d8b12a4ce | Check a weight cache file size before trying to load it.
This avoid an error message when trying to load a file that is empty because it
needs to be built.
This also adds a `Size()` member to `tflite::xnnpack::FileDescriptorView`
PiperOrigin-RevId: 845209923 | [
{
"path": "tensorflow/lite/delegates/xnnpack/file_util.cc",
"patch": "@@ -57,7 +57,7 @@ FileDescriptor FileDescriptor::Duplicate() const {\n if (!IsValid()) {\n return FileDescriptor(-1);\n }\n- return FileDescriptor(dup(fd_));\n+ return FileDescriptor::Duplicate(fd_);\n }\n \n void FileDescriptor... | 2025-12-16T12:52:37 |
kubernetes/kubernetes | aa54ffa485a6bf38b8c40b27b491152d6b613d0b | 4a944d1a3fab9aa0bc8c985dfa7ad607ecf28531 | fix etcd versions after rotation
Signed-off-by: Angelos Kolaitis <neoaggelos@gmail.com> | [
{
"path": "cmd/kubeadm/app/constants/constants.go",
"patch": "@@ -504,7 +504,7 @@ var (\n \t// with the control plane version.\n \tSupportedEtcdVersion = map[uint8]string{\n \t\tuint8(getSkewedKubernetesVersion(-2).Minor()): \"3.5.24-0\",\n-\t\tuint8(getSkewedKubernetesVersion(-1).Minor()): \"3.5.24-0\",\n+... | 2025-12-03T11:15:49 |
mrdoob/three.js | d8621e868e3a6b00cd64c4ab66a3ec62b203edad | 0ff75bd280ba4ab0f2b4a8dab3e8552ddfce2141 | WebGPURenderer: instance mesh use binding group instead of attribute (#28726)
* feat: make instanceMatrixNode a binding group
* feat: make instance color binding group
* fix: fix deepscan check
* fix: fix exmaple error
* chore: revert instance color | [
{
"path": "src/nodes/accessors/InstanceNode.js",
"patch": "@@ -5,6 +5,8 @@ import { normalLocal } from './NormalNode.js';\n import { positionLocal } from './PositionNode.js';\n import { nodeProxy, vec3, mat3, mat4 } from '../shadernode/ShaderNode.js';\n import { NodeUpdateType } from '../core/constants.js';... | 2024-07-19T22:20:28 |
denoland/deno | 678d118bdcbad26a5bea5fdad09b40e0ada8e128 | 9a1ab9849ce449b77a3dae57384347e5e0be954a | feat(ext/kv): allow specifying default path and path prefix (#30320)
The `Deno.openKv()` API now checks these env vars:
- `DENO_KV_DEFAULT_PATH` - if set, when no database path is specified,
use the provided path.
- `DENO_KV_PATH_PREFIX` - if set, prepend this to the provided database
path - e.g. if `DENO_KV_PATH_PRE... | [
{
"path": "ext/kv/dynamic.rs",
"patch": "@@ -61,8 +61,22 @@ impl DatabaseHandler for MultiBackendDbHandler {\n async fn open(\n &self,\n state: Rc<RefCell<OpState>>,\n- path: Option<String>,\n+ mut path: Option<String>,\n ) -> Result<Self::DB, JsErrorBox> {\n+ if path.is_none() {\n+ ... | 2025-08-05T14:20:08 |
golang/go | 9650c97d0fad719b372159a6ca59e722a6e487ce | f1c4b860d4cf5d3164fbb5a26bafc36f109d9bdc | syscall: remove unreachable code
Reported by go vet:
$ go vet syscall
# syscall_test
# [syscall_test]
syscall/env_unix_test.go:100:4: unreachable code
The TestVetStdlib test in golang.org/x/tools/go/analysis/unitchecker
also ran into this.
Fixes #73998.
Change-Id: I7f2842a42835a38163433a09a3311be9c30f8a14
Cq-I... | [
{
"path": "src/syscall/env_unix_test.go",
"patch": "@@ -96,7 +96,9 @@ func TestClearenv(t *testing.T) {\n \t\t\tdefer func() {\n \t\t\t\tret = recover()\n \t\t\t}()\n-\t\t\tpanic(nil)\n+\t\t\tif true {\n+\t\t\t\tpanic(nil)\n+\t\t\t}\n \t\t\treturn \"should not return\"\n \t\t}\n ",
"additions": 3,
"... | 2025-09-10T14:41:04 |
mrdoob/three.js | b09742f5fecdd95e4b0f4d9f6adc72051e3b4e52 | 98341133faa4ebfebb71fbc870099f7c99b9ce34 | WebGPURenderer: Align integer attribute check of WebGL backend. (#28918)
* WebGLAttributeUtils: Fix integer check.
* GLSLNodeBuilder: Fix `getTypeFromAttribute()` check. | [
{
"path": "src/renderers/webgl-fallback/nodes/GLSLNodeBuilder.js",
"patch": "@@ -476,7 +476,7 @@ ${ flowData.code }\n \n \t\t\tconst array = dataAttribute.array;\n \n-\t\t\tif ( ( array instanceof Uint32Array || array instanceof Int32Array || array instanceof Uint16Array || array instanceof Int16Array ) ===... | 2024-07-19T16:32:49 |
golang/go | f1c4b860d4cf5d3164fbb5a26bafc36f109d9bdc | 30686c4cc89e6952ec00846e34016f37d53f31dd | Revert "crypto/internal/fips140: update frozen module version to "v1.0.0""
This reverts CL 701518. This should land just before CL 701520 to avoid
breaking the builders for long.
Fixes #75343
Change-Id: If1ae1fe933fe443ca9776888967d80875b02f41a
Reviewed-on: https://go-review.googlesource.com/c/go/+/702255
Reviewed-b... | [
{
"path": "src/crypto/internal/cryptotest/hash.go",
"patch": "@@ -20,7 +20,7 @@ type MakeHash func() hash.Hash\n // TestHash performs a set of tests on hash.Hash implementations, checking the\n // documented requirements of Write, Sum, Reset, Size, and BlockSize.\n func TestHash(t *testing.T, mh MakeHash) {... | 2025-09-09T22:05:22 |
denoland/deno | 9a1ab9849ce449b77a3dae57384347e5e0be954a | 3cba20f254076479eaa721f11e028066152178b0 | fix(ext/node): use primordials in `ext/node/polyfills/internal_binding/buffer.ts` (#30287)
Towards #24236. Replaces JS builtins with equivalent primordials. | [
{
"path": "ext/node/polyfills/internal_binding/buffer.ts",
"patch": "@@ -1,16 +1,25 @@\n // Copyright 2018-2025 the Deno authors. MIT license.\n \n-// TODO(petamoriken): enable prefer-primordials for node polyfills\n-// deno-lint-ignore-file prefer-primordials\n-\n import { Encodings } from \"ext:deno_node/... | 2025-08-05T13:10:45 |
kubernetes/kubernetes | 51f614a15622441457ace729999ad024c652057a | 61c629cc57649bf0ce2378903027c83939d84109 | ipallocator: handle errors correctly
The ipallocator was blindly assuming that all errors are retryable, that
causes that the allocator tries to exhaust all the possibilities to
allocate an IP address.
If the error is not retryable this means the allocator will generate as
many API calls as existing available IPs are... | [
{
"path": "pkg/registry/core/service/ipallocator/cidrallocator.go",
"patch": "@@ -17,6 +17,7 @@ limitations under the License.\n package ipallocator\n \n import (\n+\t\"errors\"\n \t\"fmt\"\n \t\"net\"\n \t\"net/netip\"\n@@ -392,6 +393,10 @@ func (c *MetaAllocator) AllocateNextService(service *api.Service) ... | 2025-11-28T13:27:06 |
swiftlang/swift | ecaa1011cad03a6e5be538fd1325dad8e9af8fb0 | 1e00daa140adf86b3666281375c1e1f6439b8f23 | [IRGenSIL][DebugInfo] Extend lifetime of variables in coroutines
Just like in async functions, coroutines will go through the CoroSplit
flow. As such, variables in O0 need to go through the same treatment
they undergo for async functions: an `asm` directive is emitted so to
create a use of the variable after each spli... | [
{
"path": "include/swift/SIL/SILFunction.h",
"patch": "@@ -791,6 +791,8 @@ class SILFunction\n return LoweredType->isCalleeAllocatedCoroutine();\n }\n \n+ bool isCoroutine() const { return LoweredType->isCoroutine(); }\n+\n /// Returns the calling convention used by this entry point.\n SILFunctio... | 2026-01-30T12:07:17 |
mrdoob/three.js | 460efde132f8d8f1917376a629ac8f857990e2bb | 34889d038e9313ee7368d7d435d46905e01088fc | WebGPURenderer: Add bloom emissive/selective examples (#28913)
* Add background names
* Fix RenderTarget dispose and MRT
* add emissive bloom
* update
* remove support to `array` and added `getNode()`
* added bloom selective | [
{
"path": "examples/files.json",
"patch": "@@ -375,6 +375,8 @@\n \t\t\"webgpu_postprocessing_anamorphic\",\n \t\t\"webgpu_postprocessing_ao\",\n \t\t\"webgpu_postprocessing_bloom\",\n+\t\t\"webgpu_postprocessing_bloom_emissive\",\n+\t\t\"webgpu_postprocessing_bloom_selective\",\n \t\t\"webgpu_postprocessing... | 2024-07-18T22:36:42 |
golang/go | 30686c4cc89e6952ec00846e34016f37d53f31dd | c5737dc21bbac9fbefc35ac9313e66291d66b382 | encoding/json/v2: document context annotation with SemanticError
When the json package calls
Marshaler, MarshalerTo, Unmarshaler, or UnmarshalerFrom methods
and a SemanticError is returned, it will automatically
annotate the error with context.
Document this behavior.
Change-Id: Id8e775a7c1c2a6ffc29ea518913591915e8a... | [
{
"path": "src/encoding/json/v2/arshal_methods.go",
"patch": "@@ -41,6 +41,10 @@ var (\n //\n // It is recommended that implementations return a buffer that is safe\n // for the caller to retain and potentially mutate.\n+//\n+// If the returned error is a [SemanticError], then unpopulated fields\n+// of the... | 2025-09-09T00:33:47 |
denoland/deno | 5b5141056b49269d5a4d0e3ea8fd0ade066234f1 | fc8622032b6c23008c1de2f3a61d9bbb049ee175 | fix(ext/node): use custom allocator for brotli (#30277)
Fixes https://github.com/denoland/deno/issues/30259
Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com> | [
{
"path": "ext/node/ops/zlib/alloc.rs",
"patch": "@@ -62,3 +62,49 @@ pub extern \"C\" fn zfree(_ptr: *mut c_void, address: *mut c_void) {\n alloc::dealloc(ptr as *mut u8, layout)\n }\n }\n+\n+pub extern \"C\" fn brotli_alloc(\n+ _opaque: *mut brotli::ffi::broccoli::c_void,\n+ size: usize,\n+) -> *mu... | 2025-08-05T09:33:56 |
swiftlang/swift | 9ebb656b276414fc760a083017981568f9977d9f | 1e00daa140adf86b3666281375c1e1f6439b8f23 | [cxx-interop] Fix crash trying to expose Swift existentials to C++
Confusingly, isObjC on an existential does not check if the super class
is actually ObjC. Make the check stricter to avoid a crash down the
line.
rdar://169210092 | [
{
"path": "lib/PrintAsClang/PrintClangFunction.cpp",
"patch": "@@ -21,6 +21,7 @@\n #include \"swift/ABI/MetadataValues.h\"\n #include \"swift/AST/ASTContext.h\"\n #include \"swift/AST/Decl.h\"\n+#include \"swift/AST/ExistentialLayout.h\"\n #include \"swift/AST/GenericParamList.h\"\n #include \"swift/AST/Mod... | 2026-02-02T16:07:52 |
mrdoob/three.js | 379dddda6e59f42831113f5677524338a9531b24 | 1c3add1276f4ab5b0cd264ac5863e2bf91163f77 | WebGPURenderer: Fix RenderTarget dispose and MRT (#28912) | [
{
"path": "src/renderers/common/RenderContexts.js",
"patch": "@@ -22,7 +22,7 @@ class RenderContexts {\n \t\t} else {\n \n \t\t\tconst format = renderTarget.texture.format;\n-\t\t\tconst count = renderTarget.count;\n+\t\t\tconst count = renderTarget.textures.length;\n \n \t\t\tattachmentState = `${ count }:... | 2024-07-18T20:18:29 |
golang/go | c5737dc21bbac9fbefc35ac9313e66291d66b382 | b9a4a09b0fbb54b533f847c784c807db95f68d3b | runtime: when using cgo on 386, call C sigaction function
On 386 the C sigaction function assumes that the caller does not set
the SA_RESTORER flag. It does not copy the C sa_restorer field to
the kernel sa_restorer field. The effect is that the kernel sees
the SA_RESTORER flag but a NULL sa_restorer field, and the pr... | [
{
"path": "src/runtime/cgo/gcc_sigaction.c",
"patch": "@@ -2,7 +2,7 @@\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 linux && (amd64 || arm64 || loong64 || ppc64le)\n+//go:build linux && (386 || amd64 || arm64 || loong64 || ppc64l... | 2025-09-06T05:24:37 |
denoland/deno | fc8622032b6c23008c1de2f3a61d9bbb049ee175 | 55f74e809b13194f84b32a6e40cc0867f998368f | fix: make unmet peer dep error message less verbose (#30312) | [
{
"path": "libs/npm_installer/resolution.rs",
"patch": "@@ -1,5 +1,8 @@\n // Copyright 2018-2025 the Deno authors. MIT license.\n \n+use std::cell::RefCell;\n+use std::collections::BTreeMap;\n+use std::rc::Rc;\n use std::sync::Arc;\n \n use capacity_builder::StringBuilder;\n@@ -14,6 +17,7 @@ use deno_npm::r... | 2025-08-05T09:31:31 |
mrdoob/three.js | 3237189319e778e70ff66bdb8e74228ffec940f0 | ffef51075d125234079aaa494f9da1066f3d3e77 | WebGPURenderer: Add Enable Directive/Enable-Extension Support (#28615)
* Added directive support to WGSLNodeBuilder
* fix mr doob style issues
* fix compatibility with r166, add dual source blending
* Change function name and add enableDualSourceBlending function
* minor | [
{
"path": "src/renderers/webgpu/nodes/WGSLNodeBuilder.js",
"patch": "@@ -163,6 +163,8 @@ class WGSLNodeBuilder extends NodeBuilder {\n \n \t\tthis.builtins = {};\n \n+\t\tthis.directives = {};\n+\n \t}\n \n \tneedsColorSpaceToLinear( texture ) {\n@@ -655,6 +657,50 @@ ${ flowData.code }\n \n \t}\n \n+\tenabl... | 2024-07-18T19:00:49 |
tensorflow/tensorflow | 96ed126a594735c8106699b4f9c2ac8f74798242 | a3de89535cf7f0bf9562864c05b59569ae9638b2 | PR #32297: [XLA:GPU] Add host offloading support to collective pipeliner
Imported from GitHub PR https://github.com/openxla/xla/pull/32297
📝 Summary of Changes
1. Add host offloading support to collective pipeliner to enable memory optimization for collective operations by offloading intermediate results to host mem... | [
{
"path": "third_party/xla/docs/flags_guidance.md",
"patch": "@@ -81,19 +81,20 @@ data-parallel collectives (`xla_gpu_enable_pipelined_all_gather`,\n Hopper/Blackwell (`xla_gpu_enable_analytical_sol_latency_estimator`). See\n [GPU Effort Levels](https://openxla.org/xla/effort_levels) for details.\n \n-| Fla... | 2025-12-16T10:02:34 |
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.