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 |
|---|---|---|---|---|---|
swiftlang/swift | ab547505acde51bf811cbe22c847c6afcc449151 | 9e8cf5c3e2e2a5100efa930258419e3685dc61d8 | Update stdlib ABI fixture | [
{
"path": "test/abi/macOS/arm64/stdlib.swift",
"patch": "@@ -1185,3 +1185,27 @@ Added: __swift_exclusivityAccessSetNext\n Added: _swift_dereferenceBorrow\n Added: _swift_getBorrowTypeMetadata\n Added: _swift_initBorrow\n+\n+// BorrowingSequence + supporting symbols\n+Added: _$s18_BorrowingIterators01_A8Sequ... | 2026-02-06T18:24:48 |
mrdoob/three.js | 665679ab9b57b3af514fbff34c2c2db6c19ac926 | 9ca91145520e99deeffbfe7164a07782aad499a5 | Revert "fix: Spaces cause path parsing errors (#29819)" (#29821)
This reverts commit bb4eacd5e21e6da0317e4c62c77dffccf48214ef. | [
{
"path": "manual/examples/background-cubemap.html",
"patch": "@@ -88,14 +88,14 @@\n \t{\n \n \t\tconst loader = new THREE.CubeTextureLoader();\n-\t\tconst texture = loader.load([\n+\t\tconst texture = loader.load( [\n \t\t\t'resources/images/cubemaps/computer-history-museum/pos-x.jpg',\n \t\t\t'resources/i... | 2024-11-06T11:06:17 |
golang/go | f838faffe21afd2d5c177c04df8836c93e273b4b | ee4d2c312de90296a6b6f687f6a7ea8b9916af54 | runtime: wrap procyield assembly and check for 0
procyield will currently loop infinitely if passed 0 on several
platforms. This change sidesteps this bug by renaming procyield to
procyieldAsm, and adding a wrapper named procyield that checks for
cycles == 0. The benefit of this structure is that procyield called
with... | [
{
"path": "src/runtime/asm_386.s",
"patch": "@@ -597,7 +597,7 @@ CALLFN(·call268435456, 268435456)\n CALLFN(·call536870912, 536870912)\n CALLFN(·call1073741824, 1073741824)\n \n-TEXT runtime·procyield(SB),NOSPLIT,$0-0\n+TEXT runtime·procyieldAsm(SB),NOSPLIT,$0-0\n \tMOVL\tcycles+0(FP), AX\n again:\n \tPAUSE... | 2025-10-17T19:53:36 |
tensorflow/tensorflow | f26555418c94e4223dd51549758c45e4a9e5d876 | 9298f0e5e43625115025a7f6be7a98e6ae36cff0 | Remove DebugMeContext integration from XLA error code macros.
This change removes the automatic attachment of DebugMeContext payloads to absl::Status objects created via XLA error code factory functions.
We haven't added support for propagation of a substantial number of debug-context through the XLA stack yet. Remov... | [
{
"path": "third_party/xla/xla/error/BUILD",
"patch": "@@ -12,7 +12,6 @@ cc_library(\n name = \"error_codes\",\n hdrs = [\"error_codes.h\"],\n deps = [\n- \":debug_me_context_util\",\n \"@com_google_absl//absl/status\",\n \"@com_google_absl//absl/strings\",\n \"@co... | 2026-01-13T00:22:07 |
mrdoob/three.js | 9ca91145520e99deeffbfe7164a07782aad499a5 | 99a02104494593777bf13b22a1cb9e83ba6a3ccf | Fix loaderArrayLoadRE regex to allow spaces before square bracket (#29820) | [
{
"path": "manual/examples/resources/editor-settings.js",
"patch": "@@ -70,7 +70,7 @@\n \t\tconst linkRE = /(href=)(\")(.*?)(\")()/g;\n \t\tconst imageSrcRE = /((?:image|img)\\.src = )(\")(.*?)(\")()/g;\n \t\tconst loaderLoadRE = /(loader\\.load[a-z]*\\s*\\(\\s*)('|\")(.*?)('|\")/ig;\n-\t\tconst loaderArray... | 2024-11-06T11:04:59 |
denoland/deno | 98f62cee78e85bfc47c62ed703777c6bc8794f1c | 6edef5c7c718917338283db70ee9b56272bb2db6 | fix(rt): prevent `Event` to be overwritten on bootstrap (#30971)
Closes #30953
Ensures that the `Event` class always use the imported one from
`ext:deno_web/02_event.js`. | [
{
"path": "runtime/js/99_main.js",
"patch": "@@ -459,17 +459,17 @@ function processRejectionHandled(promise, reason) {\n }\n \n function dispatchLoadEvent() {\n- globalThis_.dispatchEvent(new Event(\"load\"));\n+ globalThis_.dispatchEvent(new event.Event(\"load\"));\n }\n \n function dispatchBeforeUnloadE... | 2025-10-15T13:41:20 |
golang/go | e4251768439bbd0a6fe4c472aa57bb5257f20b56 | dc9a3e2a658176fe1884d65d5a0e7516145404eb | cmd/asm: fix typo in comment
Change-Id: I1a7933bce70bcae1f93a45c6810da60d269f48f3
Reviewed-on: https://go-review.googlesource.com/c/go/+/713000
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Michael Pratt <mpratt@google.com>
Reviewed-by: Keith Randall <khr@google... | [
{
"path": "src/cmd/asm/main.go",
"patch": "@@ -58,7 +58,7 @@ func main() {\n \t\t// nothing\n \tcase \"index\":\n \t\t// known to compiler; ignore here so people can use\n-\t\t// the same list with -gcflags=-spectre=LIST and -asmflags=-spectrre=LIST\n+\t\t// the same list with -gcflags=-spectre=LIST and -as... | 2025-10-20T04:33:50 |
tensorflow/tensorflow | 9298f0e5e43625115025a7f6be7a98e6ae36cff0 | 11311f063b8aee158d4a40c2bbb9a7013d4d9bd3 | Add comment for PJRT_Client_CreateErrorBuffer.
PiperOrigin-RevId: 855425999 | [
{
"path": "third_party/xla/xla/pjrt/c/pjrt_c_api.h",
"patch": "@@ -1069,6 +1069,9 @@ struct PJRT_Client_CreateErrorBuffer_Args {\n };\n PJRT_DEFINE_STRUCT_TRAITS(PJRT_Client_CreateErrorBuffer_Args, buffer);\n \n+// Creates a buffer in the given memory space that carries an error future\n+// without allocati... | 2026-01-13T00:12:20 |
mrdoob/three.js | bb4eacd5e21e6da0317e4c62c77dffccf48214ef | b54d4660408cc868757a56c301e5d1b617f663ed | fix: Spaces cause path parsing errors (#29819) | [
{
"path": "manual/examples/background-cubemap.html",
"patch": "@@ -88,14 +88,14 @@\n \t{\n \n \t\tconst loader = new THREE.CubeTextureLoader();\n-\t\tconst texture = loader.load( [\n+\t\tconst texture = loader.load([\n \t\t\t'resources/images/cubemaps/computer-history-museum/pos-x.jpg',\n \t\t\t'resources/i... | 2024-11-06T09:13:09 |
denoland/deno | 6edef5c7c718917338283db70ee9b56272bb2db6 | 395ed78151600d6b71bbb3390e667017d00aa8df | fix(docs): documented allowed subdomain should be gist and not user for githubusercontent.com (#30913)
https://github.com/denoland/deno/blob/415acdd462dcfc1c6fd8098273a9d4d269c15e4d/cli/args/mod.rs#L1111-L1112
Closes https://github.com/denoland/deno/issues/30908 | [
{
"path": "cli/args/flags.rs",
"patch": "@@ -3869,7 +3869,7 @@ fn permission_args(app: Command, requires: Option<&'static str>) -> Command {\n <g>-W, --allow-write[=<<PATH>...]</> Allow file system write access. Optionally specify allowed paths.\n <p... | 2025-10-14T20:59:35 |
golang/go | dc9a3e2a658176fe1884d65d5a0e7516145404eb | df33c170919faca6ea849ee23fb0af6971fddc5b | runtime: fix generation skew with trace reentrancy
Currently when performing multiple nested traceAcquires, we re-read
trace.gen on subsequent reads. But this is invalid, since a generation
transition may happen in between a traceAcquire and a nested
traceAcquire. The first one will produce a traceLocker with a gen fr... | [
{
"path": "src/runtime/traceruntime.go",
"patch": "@@ -29,6 +29,7 @@ type mTraceState struct {\n \tbuf [2][tracev2.NumExperiments]*traceBuf // Per-M traceBuf for writing. Indexed by trace.gen%2.\n \tlink *m // Snapshot of alllink or freelink.\n \treentere... | 2025-09-30T23:54:07 |
kubernetes/kubernetes | c280c22ea49d99921f50b19d1d45bb970ae1fa85 | 26fd963327e4c15ab22a07bfccafdebc444d3e5a | Fix kyaml output of watch events | [
{
"path": "staging/src/k8s.io/cli-runtime/pkg/printers/kyaml.go",
"patch": "@@ -54,6 +54,8 @@ func (p *KYAMLPrinter) PrintObj(obj runtime.Object, w io.Writer) error {\n \t\tif InternalObjectPreventer.IsForbidden(reflect.Indirect(reflect.ValueOf(obj.Object.Object)).Type().PkgPath()) {\n \t\t\treturn errors.N... | 2026-01-08T17:14:41 |
mrdoob/three.js | f421bffab53ef94b0c44066f7afa51563384ceea | 693341461ff80fca30f5f8269bdc4470e3c1760a | BatchedMesh - better error handling 2 (#29790)
* BatchedMesh - better error handling 2
* Update BatchedMesh.js
Add `THREE` namespace to messages.
---------
Co-authored-by: Michael Herzog <michael.herzog@human-interactive.org> | [
{
"path": "src/objects/BatchedMesh.js",
"patch": "@@ -306,30 +306,53 @@ class BatchedMesh extends Mesh {\n \t\tconst batchGeometry = this.geometry;\n \t\tif ( Boolean( geometry.getIndex() ) !== Boolean( batchGeometry.getIndex() ) ) {\n \n-\t\t\tthrow new Error( 'BatchedMesh: All geometries must consistently... | 2024-11-05T08:59:31 |
denoland/deno | 395ed78151600d6b71bbb3390e667017d00aa8df | 5cfc4cfd7fc343fe9e27a12979d31d123d3a2984 | fix(check): respect "compilerOptions.skipLibCheck" for graph errors (#30989) | [
{
"path": "cli/lsp/compiler_options.rs",
"patch": "@@ -23,6 +23,7 @@ pub struct LspCompilerOptionsData {\n pub workspace_dir_or_source_url: Option<Arc<Url>>,\n pub compiler_options: Arc<CompilerOptions>,\n pub compiler_options_types: Arc<Vec<(Url, Vec<String>)>>,\n+ pub skip_lib_check: bool,\n pub ... | 2025-10-14T19:32:41 |
tensorflow/tensorflow | 09988e6edd0db7df870a7c71b73491b5add9bd7c | 4344f7a84bd454e9e5f1d9ee2fa812050a57dc48 | Fix typo in error code number.
PiperOrigin-RevId: 855416857 | [
{
"path": "third_party/xla/docs/errors/error_2001.md",
"patch": "@@ -1,4 +1,4 @@\n-# Error code: E201\n+# Error code: E2001\n \n **Category:** Unsupported RHS DataType on Hardware\n ",
"additions": 1,
"deletions": 1,
"language": "Markdown"
}
] | 2026-01-12T23:49:39 |
golang/go | 58a8fdb6cf4a905fd3de44bf2dd87d14fbd38dfe | 8d0bef7ffe5c471684f6a46f579fc7b87a46adb8 | cmd/go: inject State parameter into `bug.runBug`
This command modifies the call tree starting at `bug.runBug` to inject
a `State` parameter to every function that is currently using the
global `modload.LoaderState` variable. By explicilty passing a
`State` parameter, we can begin to eliminate the usage of the global
... | [
{
"path": "src/cmd/go/internal/bug/bug.go",
"patch": "@@ -51,7 +51,7 @@ func runBug(ctx context.Context, cmd *base.Command, args []string) {\n \tbuf.WriteString(bugHeader)\n \tprintGoVersion(&buf)\n \tbuf.WriteString(\"### Does this issue reproduce with the latest release?\\n\\n\\n\")\n-\tprintEnvDetails(&b... | 2025-10-02T03:01:55 |
mrdoob/three.js | 693341461ff80fca30f5f8269bdc4470e3c1760a | c9bdf266ce583d7349b27d2cfbdbe24ebb497476 | RenderObjects: Force update if geometry has changed. (#29807)
* getParallaxCorrectNormal: fix import
* force update if geometry has changed | [
{
"path": "src/nodes/functions/material/getParallaxCorrectNormal.js",
"patch": "@@ -1,4 +1,4 @@\n-import { positionWorld } from '../../accessors/Position';\n+import { positionWorld } from '../../accessors/Position.js';\n import { float, Fn, min, normalize, sub, vec3 } from '../../tsl/TSLBase.js';\n \n // ht... | 2024-11-05T04:51:38 |
swiftlang/swift | d4495f6a61fe0c05dc6830826aa0da4717f2bd29 | 56bc2b627ede319534271e200313f4d1cdc9e610 | add a unit test for linux with threads backtrace, to capture arm64 fix and prevent regression | [
{
"path": "test/Backtracing/CrashWithThreadsLinux.swift",
"patch": "@@ -9,19 +9,15 @@\n // UNSUPPORTED: asan\n // REQUIRES: executable_test\n // REQUIRES: backtracing\n-// REQUIRES: OS=macosx\n+// REQUIRES: OS=linux-gnu\n \n // This test proved unstable on Linux so we disabled it while focus is elsewhere,\n... | 2026-02-11T13:43:12 |
kubernetes/kubernetes | f8a0c80ed81711f6add7a765d22b56d2d41ac522 | b54554b72d5a7ccff052da0a8b6b462d40d3919f | dependencies: ginkgo v2.27.4, gomega v1.39.0
Latest release of both. The CurrentTreeConstructionNodeReport fix
is needed before being able to use it in the E2E framework. | [
{
"path": "go.mod",
"patch": "@@ -40,8 +40,8 @@ require (\n \tgithub.com/moby/ipvs v1.1.0\n \tgithub.com/moby/sys/userns v0.1.0\n \tgithub.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822\n-\tgithub.com/onsi/ginkgo/v2 v2.27.3\n-\tgithub.com/onsi/gomega v1.38.3\n+\tgithub.com/onsi/ginkgo/v2 v2.27.4\n... | 2026-01-08T15:53:03 |
denoland/deno | 5cfc4cfd7fc343fe9e27a12979d31d123d3a2984 | dd10efa4ef27f4e2700fb4df6dd2066a1e9bb29b | fix(npm): add a deduplication pass and reduce lockfile diffs (#30973)
1. deno_lockfile no longer purges npm deps, but instead just purges the
root specifiers that have changed.
2. deno_npm then reuses more dependencies during dependency resolution.
3. deno_npm now does a final deduplication pass on the graph in order
... | [
{
"path": "Cargo.lock",
"patch": "@@ -2187,9 +2187,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_graph\"\n-version = \"0.102.0\"\n+version = \"0.102.1\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"3ff633db1c343707713aec1f6f95f8c5b6658d2fb544e3f000de678184c2bd... | 2025-10-14T15:58:10 |
tensorflow/tensorflow | 4344f7a84bd454e9e5f1d9ee2fa812050a57dc48 | bd60a6fb8e40f5cdc59a03e109864e20455c4666 | Rollforward with fixes of: Refactor PjRtCpuExecutable::ExecuteHelper into
CpuPjRtRawLoadedExecutable::Execute.
Reverts ddcfbae3b8f87c3dcdd0d8838aaf19a093a85010
PiperOrigin-RevId: 855416289 | [
{
"path": "third_party/xla/xla/pjrt/cpu/cpu_client.cc",
"patch": "@@ -1240,7 +1240,6 @@ struct BufferAllocAndCopy {\n static absl::StatusOr<tsl::AsyncValueRef<CpuDeviceMemory>> MemoryForAllocation(\n const BufferAllocation& allocation,\n absl::Span<const cpu::ConstantAllocation> constants,\n- abs... | 2026-01-12T23:48:05 |
golang/go | 4ad5585c2c2dc3e4387c10c297669c57449156c9 | a5f55a441ef497d8e2a12610f4ec2bd32fdc04b2 | runtime: fix _rt0_ppc64x_lib on aix
CL 706395 refactored the ppc64 library entry point and missed some
important aix-specific characteristics:
- _rt0_ppc64x_lib should account for the function descriptor when
getting the callback pointer.
- _rt0_ppc64x_lib should only call _cgo_sys_thread_create when
built as a c-ar... | [
{
"path": "src/runtime/asm_ppc64x.s",
"patch": "@@ -14,8 +14,14 @@\n // This is called using the host ABI. argc and argv arguments\n // should be in R3 and R4 respectively.\n TEXT _rt0_ppc64x_lib(SB),NOSPLIT|NOFRAME,$0\n-\t// Convert to Go ABI, and Allocate argument storage for call to newosproc0.\n-\tSTACK... | 2025-10-08T14:21:21 |
swiftlang/swift | 56bc2b627ede319534271e200313f4d1cdc9e610 | c85c6726c5cfe3b215a99c86664a59887be0604a | [Backtracing] [Linux] Fix/improve sporadic inability to capture all threads in backtrace.
Sometimes crashing programs on Linux were failing to capture threads with message "swift-runtime: failed to suspend thread."
RCA suggested the issue may be libraries such as glibc masking all signals for the process during pthre... | [
{
"path": "stdlib/public/runtime/CrashHandlerLinux.cpp",
"patch": "@@ -48,6 +48,7 @@\n #include <stdlib.h>\n #include <string.h>\n #include <unistd.h>\n+#include <time.h>\n \n #define DEBUG_MEMSERVER 0\n \n@@ -354,6 +355,12 @@ getdents(int fd, void *buf, size_t bufsiz)\n return syscall(SYS_getdents64, fd,... | 2026-02-06T16:25:06 |
denoland/deno | dd10efa4ef27f4e2700fb4df6dd2066a1e9bb29b | e2b107867ea40395ff7999064fd9494eb09e2153 | fix: show referrer range in deno_core loader errors (#30981) | [
{
"path": "Cargo.lock",
"patch": "@@ -1930,9 +1930,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_core\"\n-version = \"0.362.0\"\n+version = \"0.363.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"be08f717b55b73bbb9a96e8c6854f8693d34f5c4dd41c7284c338d923709473... | 2025-10-14T13:09:12 |
kubernetes/kubernetes | a816a7b1d83970f2fa70fa544f80585a4b44268f | c4881eae3b680ffa527e7927c5f82a641cebf2fc | Make ConcurrentResourceClaimSyncs configurable (#134701)
* DRA resource claim controller: configurable number of workers
It might never be necessary to change the default, but it is hard to be sure.
It's better to have the option, just in case.
* generate files
* resourceclaimcontroller: normalize validation error ... | [
{
"path": "api/api-rules/violation_exceptions.list",
"patch": "@@ -218,6 +218,7 @@ API rule violation: names_match,k8s.io/kube-controller-manager/config/v1alpha1,K\n API rule violation: names_match,k8s.io/kube-controller-manager/config/v1alpha1,KubeControllerManagerConfiguration,PodGCController\n API rule v... | 2026-01-08T14:01:39 |
tensorflow/tensorflow | 351857d0a736702b78bde710faa1e9bfe3a6674c | f36b5a3a41b65c935f967e1a740499bdf7e4b4af | Add disk space freeing step to bazel_query and bazel_tags workflows to fix error "System.IO.IOException: No space left on device".
PiperOrigin-RevId: 855406939 | [
{
"path": "third_party/xla/.github/workflows/bazel_dependency_violations.yml",
"patch": "@@ -38,6 +38,15 @@ jobs:\n timeout-minutes: 10\n continue-on-error: true\n steps:\n+ - name: Free Disk Space (Ubuntu)\n+ uses: jlumbroso/free-disk-space@54081f138730dfa15788a46383842cd2f914a1be ... | 2026-01-12T23:23:21 |
mrdoob/three.js | d7da5e02a09950521fbc9125feedb5ebd9723225 | 60a60d19296bb233933b4b3c04fbb34b3d8548ba | WebGPURenderer: implement ClippingGroup object (#28237)
* clipping groups
Replace renderer and material clipping planes with nestable clipping
groups
* update to upstream
* rework cache key
* use right cache key
* fixup
* fix cache key use
* clean up TSL
* remove unused import
* Update Toon... | [
{
"path": "examples/webgpu_clipping.html",
"patch": "@@ -74,11 +74,23 @@\n \t\t\t\tdirLight.shadow.mapSize.height = 1024;\n \t\t\t\tscene.add( dirLight );\n \n-\t\t\t\t// ***** Clipping planes: *****\n+\t\t\t\t// Clipping planes\n \n-\t\t\t\tconst localPlane = new THREE.Plane( new THREE.Vector3( 0, - 1, 0 )... | 2024-11-04T22:29:37 |
swiftlang/swift | b7e2186f7dc7649292363d204ec42d6f8151c873 | 80eaad786aaf23f778781f9e713ffa97b6e03c22 | Support @_lifetime(immortal) to suppress inout default dependency
Non-Escapable 'inout' arguments have a default self-dependency, regardless of
any other annotations. For example:
@_lifetime(dest: copy source)
/* DEFAULT: @_lifetime(dest: copy dest, copy source) */
func foo<T: ~Escapable>(dest: inout T, ... | [
{
"path": "include/swift/AST/LifetimeDependence.h",
"patch": "@@ -136,7 +136,7 @@ struct LifetimeDescriptor {\n \n SourceLoc getLoc() const { return loc; }\n \n- bool isImmortal() const {\n+ bool isImmortalSpecifier() const {\n if (getDescriptorKind() != LifetimeDescriptor::DescriptorKind::Named) {\... | 2026-02-10T01:42:12 |
denoland/deno | e2b107867ea40395ff7999064fd9494eb09e2153 | 80e54a81e73038bc984acdbfe963084a801a2206 | fix(napi): Fix misused `napi_callback_info` in `CallbackInfo` (#30983) | [
{
"path": "ext/napi/function.rs",
"patch": "@@ -6,7 +6,7 @@ use crate::*;\n pub struct CallbackInfo {\n pub env: *mut Env,\n pub cb: napi_callback,\n- pub cb_info: napi_callback_info,\n+ pub data: *mut c_void,\n pub args: *const c_void,\n }\n \n@@ -15,12 +15,12 @@ impl CallbackInfo {\n pub fn new_... | 2025-10-14T07:57:49 |
kubernetes/kubernetes | 6cbfd72c152f816b1b96ec22e73ab585f9d26986 | 97bd924010a39b71d3fd802e4284418c8b79545c | Update error message expectation in criproxy_test | [
{
"path": "test/e2e_node/criproxy_test.go",
"patch": "@@ -216,7 +216,7 @@ var _ = SIGDescribe(feature.CriProxy, framework.WithSerial(), func() {\n \n \t\t\tginkgo.By(\"Expecting an error when imageSpec.Image is empty\")\n \t\t\tgomega.Eventually(func() error {\n-\t\t\t\treturn verifyErrorInKubeletLogs(\"ima... | 2026-01-08T07:56:14 |
golang/go | a5f55a441ef497d8e2a12610f4ec2bd32fdc04b2 | 80876f4b42c807e0f90eab20a3e8a98ef95f2cb0 | cmd/fix: add modernize and inline analyzers
We ran 'go mod vendor' to pull in the newly used packages.
Also, add a cmd/go script test that minimally
exercises each analyzer, analogous to the cmd/vet test.
For #75266
For #75267
For #71859
Change-Id: I334daea048e3d2f614a1788292a3175acf173932
Reviewed-on: https://go-r... | [
{
"path": "src/cmd/fix/main.go",
"patch": "@@ -22,10 +22,13 @@ package main\n import (\n \t\"cmd/internal/objabi\"\n \t\"cmd/internal/telemetry/counter\"\n+\t\"slices\"\n \n \t\"golang.org/x/tools/go/analysis\"\n \t\"golang.org/x/tools/go/analysis/passes/buildtag\"\n \t\"golang.org/x/tools/go/analysis/passe... | 2025-10-10T19:49:53 |
tensorflow/tensorflow | f36b5a3a41b65c935f967e1a740499bdf7e4b4af | 39facbac99c8901c3546e1e8f820f347f31f50a8 | Add a test verifying that transferring zero-sized buffers preserves the error status
PiperOrigin-RevId: 855391334 | [
{
"path": "third_party/xla/xla/backends/cpu/nanort/ifrt_client_test.cc",
"patch": "@@ -324,6 +324,7 @@ int main(int argc, char** argv) {\n // `MakeErrorArrays` is not supported in NanoIfrtClient.\n \"ArrayImplTest.MakeErrorArrays:\"\n \"ArrayImplTest.CopyPoisonedArray:\"\n+ \"ArrayImp... | 2026-01-12T22:43:13 |
mrdoob/three.js | 60a60d19296bb233933b4b3c04fbb34b3d8548ba | f32e5fcf285838443f08ab69d2d96ced87447ae1 | StereoCompositePassNode: Fix state reset/restore. (#29806) | [
{
"path": "examples/jsm/tsl/display/StereoCompositePassNode.js",
"patch": "@@ -55,7 +55,7 @@ class StereoCompositePassNode extends PassNode {\n \t\tconst { renderer } = frame;\n \t\tconst { scene, stereo, renderTarget } = this;\n \n-\t\t_rendererState = PostProcessingUtils.resetRendererAndSceneState( render... | 2024-11-04T22:27:15 |
swiftlang/swift | b1198104d4a9f62cfc248dab49b9db0926a67b15 | 24f81a9c0d5ef737a6597a099bc398f0b6843a3a | Fix bugs and add usage header to build-modules.py | [
{
"path": "test/TypeRoundTrip/Inputs/build-modules.py",
"patch": "@@ -1,3 +1,7 @@\n+#!/usr/bin/env python3\n+#\n+# Usage: build-modules.py tmp_dir testcases_dir build_cmd lib_pattern\n+\n import sys\n import os\n import subprocess\n@@ -19,7 +23,8 @@\n module_path = os.path.join(tmp, f\"{modname}.swiftmo... | 2026-02-11T11:51:28 |
denoland/deno | 80e54a81e73038bc984acdbfe963084a801a2206 | 24e63b760707b60e02be3767ff2f605f4bc375a4 | fix(ext/node): checking `Symbol` in `env` should not ask for permission (#30965)
Discovered on #30905, though not directly addressing the main issue
Given this code:
```ts
console.log(globalThis.process.env)
```
Deno 2.5.4:
```bash
➜ deno index.ts
✅ Granted env access to "Symbol(Deno.customInspect)".
✅ Granted env... | [
{
"path": "ext/node/polyfills/_process/process.ts",
"patch": "@@ -15,13 +15,19 @@ const {\n Proxy,\n ObjectPrototype,\n ObjectPrototypeIsPrototypeOf,\n+ ReflectDefineProperty,\n+ ReflectHas,\n TypeErrorPrototype,\n } = primordials;\n-const { build } = core;\n+const { build, createLazyLoader } = co... | 2025-10-14T06:25:35 |
kubernetes/kubernetes | ab19ec1bfcb35079944108b0b5df6074675d10f1 | 6af6361e3b6a5eafc8349b05227afff54e0594ed | Fix:globalmount path may be residual while pod creation-deletion | [
{
"path": "pkg/volume/csi/csi_client.go",
"patch": "@@ -703,6 +703,9 @@ func (c *csiDriverClient) nodeGetCapabilities(ctx context.Context) ([]*csipbv1.N\n \treq := &csipbv1.NodeGetCapabilitiesRequest{}\n \tresp, err := nodeClient.NodeGetCapabilities(ctx, req)\n \tif err != nil {\n+\t\tif !isFinalError(err) ... | 2025-12-25T08:24:46 |
tensorflow/tensorflow | 5ad99bda8db9373da32ac90f2f6cf25d0855eab5 | cf19ad4cbabd0dffc09addef2cf7305541f0506e | Increase memory limit for multi_worker_test_base_test
Adds a higher memory limit (16g) for tests run with ASAN to prevent out-of-memory errors.
PiperOrigin-RevId: 855332598 | [
{
"path": "tensorflow/python/distribute/BUILD",
"patch": "@@ -1209,6 +1209,12 @@ py_strict_library(\n tf_py_strict_test(\n name = \"multi_worker_test_base_test\",\n srcs = [\"multi_worker_test_base_test.py\"],\n+ exec_properties = select({\n+ # copybara:uncomment_begin(google-only)\n+ ... | 2026-01-12T20:14:09 |
mrdoob/three.js | 8c56d70441ec6f5a515eed2fd53918197be2c8c5 | 482697c00c2d465f0c1191d71329a54e5d11c6a3 | Docs Renderer: fix typos (#29804)
Co-authored-by: Samuel Rigaud <srigaud@duodisplay.com> | [
{
"path": "docs/api/en/constants/Renderer.html",
"patch": "@@ -11,8 +11,8 @@ <h1>WebGLRenderer Constants</h1>\n \n \t\t<h2>Cull Face Modes</h2>\n \t\t<code>\n-\t\tTHREE.CullFaceNone \n-\t\tTHREE.CullFaceBack \n+\t\tTHREE.CullFaceNone\n+\t\tTHREE.CullFaceBack\n \t\tTHREE.CullFaceFront\n \t\tTHREE.CullFaceFro... | 2024-11-04T19:50:54 |
denoland/deno | 878343e3c89a5361ea07d269be22705bbeaf33c9 | 710418c097b48e17d15a596ef8ddc1633ba674a2 | ci: fix release script to format semver (#30962) | [
{
"path": "tools/release/00_start_release.ts",
"patch": "@@ -18,10 +18,10 @@ if (Deno.args.some((a) => a === \"--dry-run\")) {\n } else {\n const octoKit = createOctoKit();\n const result = await octoKit.request(\"POST /gists\", {\n- description: `Deno CLI v${nextVersion} release checklist`,\n+ de... | 2025-10-13T09:50:40 |
swiftlang/swift | ddea8b392ad69bf1fc06425981c486fbe729b85f | 131073553dc64a31d7c777ff912c77eb1971d72e | [CS] Fix assert in `AddSendableAttribute`
Make sure to simplify the type before querying sendability. | [
{
"path": "include/swift/Sema/CSFix.h",
"patch": "@@ -1011,11 +1011,7 @@ class ForceOptional final : public ContextualMismatch {\n class AddSendableAttribute final : public ContextualMismatch {\n AddSendableAttribute(ConstraintSystem &cs, FunctionType *fromType,\n FunctionType *toTy... | 2026-02-07T22:18:50 |
tensorflow/tensorflow | 484adc596dbaee76a9e79d560691d385eeaec22e | c116131807f0f75cd542b3f4c650c1e64eb6d9c9 | Fix: Rename template parameter to TShape to avoid shadowing class template T | [
{
"path": "tensorflow/core/kernels/mkl/mkl_conv_grad_input_ops.cc",
"patch": "@@ -568,18 +568,19 @@ class MklConvCustomBackpropInputOp\n }\n \n // Handle dynamic shape of input tensor.\n- template <typename T>\n+ template <typename TShape>\n std::vector<int64> HandleDynamicShape(const Tensor& input_... | 2026-01-12T16:43:49 |
mrdoob/three.js | 728ebc1e9d4593713207eccd8c8b19ec0b4a25e8 | c3f685f49d7a747397d44b8f9fedd4fcec792fa7 | PointerLockControls: remove browser prefixes for "MouseEvent.movement" (#29802) | [
{
"path": "examples/jsm/controls/PointerLockControls.js",
"patch": "@@ -127,14 +127,11 @@ function onMouseMove( event ) {\n \n \tif ( this.enabled === false || this.isLocked === false ) return;\n \n-\tconst movementX = event.movementX || event.mozMovementX || event.webkitMovementX || 0;\n-\tconst movementY ... | 2024-11-04T19:47:46 |
denoland/deno | 710418c097b48e17d15a596ef8ddc1633ba674a2 | fd3ae4a1f141d01a39957af090e252318c77243a | fix: Deno.serve correctly passes tcpBacklog option (#30748)
Typo made in https://github.com/denoland/deno/pull/30541 | [
{
"path": "ext/http/00_serve.ts",
"patch": "@@ -893,7 +893,7 @@ function serveInner(options, handler) {\n port: options.port ?? 8000,\n reusePort: options.reusePort ?? false,\n loadBalanced: options[kLoadBalanced] ?? false,\n- backlog: options.backlog,\n+ tcpBacklog: options.tcpBacklog,\n ... | 2025-10-13T09:45:46 |
swiftlang/swift | 9b3d5298ed8ad823b34d97145eaa782cb55168ef | ce2bd15c44192b2d7920fc4272fc8ebec2453181 | fix tests that require a different safe interop mode
This adds -disable-safe-interop to swift-ide-test so that
import-bounds-attributed-function.swift can test invalid bounds
attributes without too much churn.
std-span-transformed-execution.swift requires the legacy lifetimebound
mode, so revert to that. | [
{
"path": "test/Interop/C/bounds-safety/import-bounds-attributed-function.swift",
"patch": "@@ -1,6 +1,6 @@\n-// RUN: %target-swift-ide-test -Xcc -fexperimental-bounds-safety-attributes -print-module -module-to-print=BoundsAttributedFunction -I %S/Inputs -source-filename=x | %FileCheck %s --check-prefixes=C... | 2026-02-11T06:39:48 |
mrdoob/three.js | 3ef244ccf49b5811d104a5f53b8afa45982449a4 | 9e5528d2890de5432c6472bde6702abecc8e1cf7 | Addons: Fix `PostProcessingUtils` import. (#29801) | [
{
"path": "examples/jsm/tsl/display/AfterImageNode.js",
"patch": "@@ -1,5 +1,5 @@\n-import { RenderTarget, Vector2, PostProcessingUtils } from 'three';\n-import { TempNode, nodeObject, Fn, float, vec4, NodeUpdateType, uv, texture, passTexture, uniform, sign, max, convertToTexture, QuadMesh, NodeMaterial } f... | 2024-11-04T13:42:08 |
denoland/deno | fd3ae4a1f141d01a39957af090e252318c77243a | 03a5e4531b1e68574b139bf21cb55afb0f1fc8ce | fix(docs): Deno.args example doesn't work (#30969) | [
{
"path": "cli/tsc/dts/lib.deno.ns.d.ts",
"patch": "@@ -4511,13 +4511,13 @@ declare namespace Deno {\n * Give the following command line invocation of Deno:\n *\n * ```sh\n- * deno run --allow-read https://examples.deno.land/command-line-arguments.ts Sushi\n+ * deno eval \"console.log(Deno.args... | 2025-10-13T09:42:05 |
golang/go | 1099436f1b63560a0587dd4c5814edd13f80e577 | 41f5659347f9498ce81911032bb46537d923bdd7 | go/types, types2: change and enforce lifecycle of Named.fromRHS and Named.underlying fields
A type definition or alias declaration consists of a type name (LHS)
which is bound to a type expression (RHS) by the declaration.
This CL consistently uses the fromRHS fields of Named and Alias types
to represent that RHS typ... | [
{
"path": "src/cmd/compile/internal/types2/decl.go",
"patch": "@@ -476,7 +476,7 @@ func (check *Checker) isImportedConstraint(typ Type) bool {\n \tif named == nil || named.obj.pkg == check.pkg || named.obj.pkg == nil {\n \t\treturn false\n \t}\n-\tu, _ := named.under().(*Interface)\n+\tu, _ := named.Underly... | 2025-08-20T21:30:26 |
mrdoob/three.js | bcf79e4e145cf4b5410f4e9d4d788e15632fc945 | 9853674a64daa9951b08f7605751e97b4d9ca20e | UVsDebug: Clean up. (#29794) | [
{
"path": "examples/jsm/utils/UVsDebug.js",
"patch": "@@ -6,7 +6,7 @@ import {\n * tool for \"unwrapping\" and debugging three.js geometries UV mapping\n *\n * Sample usage:\n- *\tdocument.body.appendChild( UVsDebug( new THREE.SphereGeometry( 10, 10, 10, 10 ) );\n+ *\tdocument.body.appendChild( UVsDebug(... | 2024-11-03T09:58:01 |
tensorflow/tensorflow | c116131807f0f75cd542b3f4c650c1e64eb6d9c9 | 324f9a4f7e9bd57fbea109c2d7c2f62aa1abad17 | Fix: Replace int64_t with int64 to resolve compiler scope error | [
{
"path": "tensorflow/core/kernels/mkl/mkl_conv_grad_input_ops.cc",
"patch": "@@ -551,7 +551,6 @@ class MklConvCustomBackpropInputOp\n }\n \n private:\n-\n const int kInputIdx = 0, kFilterIdx = 1, kOutbpropIdx = 2;\n const int kDilationH = 0, kDilationW = 1;\n \n@@ -570,11 +569,10 @@ class MklConvCus... | 2026-01-12T15:51:59 |
golang/go | 27f9a6705c700d9075d4651cf9cff9cabbe4a47e | b68cebd809f1335b4504837337f5702406720432 | runtime: increase repeat count for alloc test
To make sure a single spurious alloc doesn't flake the test.
Fixes #75858
Change-Id: I055b37ad5668459bfa7ab1dac97025c997c68f1a
Reviewed-on: https://go-review.googlesource.com/c/go/+/712201
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccou... | [
{
"path": "src/runtime/iface_test.go",
"patch": "@@ -60,7 +60,7 @@ func TestCmpIfaceConcreteAlloc(t *testing.T) {\n \t\tt.Skip(\"skipping on non-gc compiler\")\n \t}\n \n-\tn := testing.AllocsPerRun(1, func() {\n+\tn := testing.AllocsPerRun(100, func() {\n \t\t_ = e == ts\n \t\t_ = i1 == ts\n \t\t_ = e == 1... | 2025-10-15T20:28:15 |
mrdoob/three.js | 9853674a64daa9951b08f7605751e97b4d9ca20e | 8b0c9acaef10bf67f82536165861eae12833301b | SceneOptimizer: Introduce `optimizer.toBatchedMesh()` (#29782)
* BatchedMeshUtils: Introduce convertGLTFToBatchedMeshes()
* improve debug
* cleanup and fix wrong instance count
* refactor to optimize original scene instead
* fix
* keep structure of graph, name and update the original scene instead
* ... | [
{
"path": "examples/jsm/utils/SceneOptimizer.js",
"patch": "@@ -0,0 +1,401 @@\n+import * as THREE from 'three';\n+\n+class SceneOptimizer {\n+\n+\tconstructor( scene, options = {} ) {\n+\n+\t\tthis.scene = scene;\n+\t\tthis.debug = options.debug || false;\n+\n+\t}\n+\n+\tbufferToHash( buffer ) {\n+\n+\t\tle... | 2024-11-02T20:25:22 |
golang/go | b68cebd809f1335b4504837337f5702406720432 | f1fed742ebbe781611c9f78398d9fa233ad0a8e6 | net/http/httptest: record failed ResponseWriter writes
CL 709335 changed ResponseWriter.Write to return an error
when trying to write to a response with a status code which
doesn't permit a body, such as 304.
Continue to return an error, but still record the write in
ResponseWriter.Body. This maintains the documented... | [
{
"path": "src/net/http/httptest/recorder.go",
"patch": "@@ -105,28 +105,28 @@ func (rw *ResponseRecorder) writeHeader(b []byte, str string) {\n // Write implements http.ResponseWriter. The data in buf is written to\n // rw.Body, if not nil.\n func (rw *ResponseRecorder) Write(buf []byte) (int, error) {\n-\... | 2025-10-14T18:25:29 |
mrdoob/three.js | ab048e655e4ddd473b40c8fa2dfcd0a5845cc975 | f19ca733aff1316f66e64cddf34e55adf42836ef | WebGPURenderer: Handle Device Lost Event (#29767)
* WebGPURenderer: Handle Device Lost Event
* small typo
* feedbacks
* fix
* not need to bind | [
{
"path": "src/renderers/common/Backend.js",
"patch": "@@ -193,6 +193,8 @@ class Backend {\n \n \t}\n \n+\tdispose() { }\n+\n }\n \n export default Backend;",
"additions": 2,
"deletions": 0,
"language": "JavaScript"
},
{
"path": "src/renderers/common/Renderer.js",
"patch": "@@ -143,6... | 2024-10-31T01:00:44 |
golang/go | f1fed742ebbe781611c9f78398d9fa233ad0a8e6 | 0984dcd7572a90a1bd21bec98bd9c73fdcf983ab | cmd: fix three printf problems reported by newest vet
Change-Id: Id70985d217c940eb022dbc95bfaa20373672512c
Reviewed-on: https://go-review.googlesource.com/c/go/+/712220
Auto-Submit: Alan Donovan <adonovan@google.com>
TryBot-Bypass: Alan Donovan <adonovan@google.com>
Commit-Queue: Alan Donovan <adonovan@google.com>
Rev... | [
{
"path": "src/cmd/go/internal/modload/vendor.go",
"patch": "@@ -188,7 +188,7 @@ func checkVendorConsistency(loaderstate *State, indexes []*modFileIndex, modFile\n \t\t\t\t\t// However, we can at least detect a version mismatch if packages were\n \t\t\t\t\t// vendored from a non-matching version.\n \t\t\t\t... | 2025-10-15T20:28:03 |
mrdoob/three.js | f19ca733aff1316f66e64cddf34e55adf42836ef | 10b2770f4eb6f1e6c1f7d32153a6a748da657499 | Update SECURITY.md
Fix typo. | [
{
"path": "SECURITY.md",
"patch": "@@ -7,7 +7,7 @@ used before a patch is released.\n \n You may submit the report in the following ways:\n \n-- send an email to hello@mrdoob.com;\n+- send an email to hello@mrdoob.com.\n \n Please provide the following information in your report:\n ",
"additions": 1,
... | 2024-10-30T18:27:35 |
swiftlang/swift | fab592539e3921987ab7025ed600ae3704d3c6eb | f53ccd656df09a1ae8b21bb2d5d9f90302836646 | [MiscDiagnostics] MemberImportVisibility: Downgrade errors about `make{Async}Iterator` and `next`
The compiler synthesized references to these members previously weren't
diagnosed at all in closure contexts. With changes to how `for-in` loops
are type-checked, they are now picked up by `MemberImportVisibility` checkin... | [
{
"path": "lib/Sema/MiscDiagnostics.cpp",
"patch": "@@ -6525,8 +6525,27 @@ static void diagnoseMissingMemberImports(const Expr *E, const DeclContext *DC) {\n DiagnoseWalker(const DeclContext *dc) : dc(dc) {}\n \n PreWalkResult<Expr *> walkToExprPre(Expr *E) override {\n- if (auto declRef = E->g... | 2026-02-10T23:36:51 |
tensorflow/tensorflow | 99a308128e90cdba614bba3b614cf557ce55e366 | cd2db61a765781c1d8c9365f74d4b06d94722d87 | PR #36190: [xla:gpu] Extract Command into a separate target
Imported from GitHub PR https://github.com/openxla/xla/pull/36190
Keep splitting `command_buffer_cmd` into more manageable targets. This is an NFC change, simply moving code into separate build target and updating dependencies.
Add `AsyncStartCommand` and `... | [
{
"path": "third_party/xla/xla/backends/gpu/profiler/BUILD",
"patch": "@@ -73,6 +73,7 @@ xla_test(\n ],\n deps = [\n \":kernel_name_tracer\",\n+ \"//xla/backends/gpu/runtime:command\",\n \"//xla/backends/gpu/runtime:command_buffer_cmd\",\n \"//xla/backends/gpu/runtime:... | 2026-01-12T11:59:39 |
mrdoob/three.js | 732bc2a5f970c9f4535b9381f5798ee6d82d9c95 | 83c3f7259f9cf0ae024db8de00470298dd433717 | TSL: Add function for BPCEM. (#29773)
* TSL: Add function for computing BPCEMs.
* E2E: Add example to exception list.
* added on resize
--------- | [
{
"path": "examples/files.json",
"patch": "@@ -354,6 +354,7 @@\n \t\t\"webgpu_materials_arrays\",\n \t\t\"webgpu_materials_basic\",\n \t\t\"webgpu_materials_displacementmap\",\n+\t\t\"webgpu_materials_envmaps_bpcem\",\n \t\t\"webgpu_materials_envmaps\",\n \t\t\"webgpu_materials_lightmap\",\n \t\t\"webgpu_ma... | 2024-10-30T15:12:10 |
golang/go | 0984dcd7572a90a1bd21bec98bd9c73fdcf983ab | 31f82877e85a7e6c70b0104e704abfed622e345f | cmd/compile: fix an error in comments
Remove the redundant only.
Change-Id: I9cf2d84ae080a567ad45a2d0ef002c7c89395479
Reviewed-on: https://go-review.googlesource.com/c/go/+/711960
Auto-Submit: Robert Findley <rfindley@google.com>
Reviewed-by: Robert Griesemer <gri@google.com>
Reviewed-by: Robert Findley <rfindley@goo... | [
{
"path": "src/cmd/compile/internal/types2/instantiate.go",
"patch": "@@ -83,7 +83,7 @@ func Instantiate(ctxt *Context, orig Type, targs []Type, validate bool) (Type, e\n //\n // For Named types the resulting instance may be unexpanded.\n //\n-// check may be nil (when not type-checking syntax); pos is used... | 2025-10-15T02:27:16 |
denoland/deno | 03a5e4531b1e68574b139bf21cb55afb0f1fc8ce | 302b6fc5a5d0ae3eb335208a160eeeda1c07a177 | fix(ext/node): `dns.resolve6` compatibility (#30974)
Closes #30936
The `compressIPv6` function is causing this issue. Maybe it was used in
the past to compress IPv6 address returned from the op function, though
I might be wrong about this.
Both `Deno.resolveDns` and the `resolve6` polyfill use `op_dns_resolve`
op fu... | [
{
"path": "ext/node/polyfills/internal_binding/cares_wrap.ts",
"patch": "@@ -182,23 +182,6 @@ function fqdnToHostname(fqdn: string): string {\n return fqdn.replace(/\\.$/, \"\");\n }\n \n-function compressIPv6(address: string): string {\n- const formatted = address.replace(/\\b(?:0+:){2,}/, \":\");\n- c... | 2025-10-13T09:20:08 |
swiftlang/swift | 442541e23a6a5b86bafdf3251f922414ab4684ec | b39aa89e48058816d2e2eca5f3483a8425a9de0e | fix std-span-interface | [
{
"path": "test/Interop/Cxx/stdlib/std-span-interface.swift",
"patch": "@@ -2,10 +2,17 @@\n // RUN: %target-swift-ide-test -plugin-path %swift-plugin-dir -I %S/Inputs -print-module -module-to-print=StdSpan -source-filename=x -enable-experimental-cxx-interop -Xcc -std=c++20 -module-cache-path %t > %t/interfa... | 2026-02-11T03:04:41 |
tensorflow/tensorflow | 15a8c4887398221a26eecc4fcf5aa07a08abbc11 | db1922a0bcdb09df178f73e4b0a86e21bbbb184e | PR #36135: Fix test CommandBufferTest.DynamicSliceCopyFusionCmd failure
Imported from GitHub PR https://github.com/openxla/xla/pull/36135
There are 3 bugs in XLA which accidently makes test CommandBufferTest.DynamicSliceCopyFusionCmd passed.
1. When lowering the command buffer WhileCmd, the nested body command buff... | [
{
"path": "third_party/xla/xla/backends/gpu/runtime/command_buffer_cmd.cc",
"patch": "@@ -1519,7 +1519,11 @@ absl::Status WhileCmd::Initialize(const Thunk::InitializeParams& params,\n cond_commands_.support_loop_unroll() && trip_count_ != std::nullopt) {\n is_unrolled_loop_ = true;\n }\n- VLOG(... | 2026-01-12T10:41:41 |
mrdoob/three.js | 83c3f7259f9cf0ae024db8de00470298dd433717 | 09c38ab406fc42c8207559df983fb25766b591f6 | RectAreaLightNode: Fix `update()`. (#29771) | [
{
"path": "src/nodes/lighting/RectAreaLightNode.js",
"patch": "@@ -6,6 +6,7 @@ import { renderGroup } from '../core/UniformGroupNode.js';\n \n import { Matrix4 } from '../../math/Matrix4.js';\n import { Vector3 } from '../../math/Vector3.js';\n+import { NodeUpdateType } from '../core/constants.js';\n \n con... | 2024-10-30T10:19:23 |
denoland/deno | 302b6fc5a5d0ae3eb335208a160eeeda1c07a177 | cce15c39b8e5c22694a4d76e0dc355efa32e0dd3 | fix(ext/web): fix promise chain leak of ReadableStream (#30871)
Closes #30298
This problem occurs because promise chain keep growing(like a stack
overflow caused by a recursive function) while the stream is running. To
solve this, used a loop. | [
{
"path": "ext/web/06_streams.js",
"patch": "@@ -787,18 +787,18 @@ class ResourceStreamResourceSink {\n async function readableStreamWriteChunkFn(reader, sink, chunk) {\n // Empty chunk. Re-read.\n if (chunk.length == 0) {\n- await readableStreamReadFn(reader, sink);\n- return;\n+ return true;\... | 2025-10-13T09:12:40 |
golang/go | 31f82877e85a7e6c70b0104e704abfed622e345f | 6346349f5629a5767d2cd132f01092857a570bd2 | go/types, types2: fix misleading internal comment
See also the discussion in #75885.
Change-Id: Ieb964ea6ee51600c0c08ecba0af50a1deb209a4d
Reviewed-on: https://go-review.googlesource.com/c/go/+/712141
Reviewed-by: Mark Freeman <markfreeman@google.com>
Auto-Submit: Robert Griesemer <gri@google.com>
TryBot-Bypass: Rober... | [
{
"path": "src/cmd/compile/internal/types2/decl.go",
"patch": "@@ -575,11 +575,8 @@ func (check *Checker) typeDecl(obj *TypeName, tdecl *syntax.TypeDecl, def *TypeN\n \t\tnamed.underlying = Typ[Invalid]\n \t}\n \n-\t// Disallow a lone type parameter as the RHS of a type declaration (go.dev/issue/45639).\n-\... | 2025-10-15T18:27:17 |
swiftlang/swift | 710e2af8ed4f8a86b26446a5b5149e404a3c9c47 | f53ccd656df09a1ae8b21bb2d5d9f90302836646 | Fix module selector lookup with C++ members
Imported C++ declarations have some complicated special cases relating to module ownership that module selectors did not previously take into account. This meant that members of C++ classes and namespaces would sometimes only allow a module selector of `__ObjC` rather than t... | [
{
"path": "lib/AST/NameLookup.cpp",
"patch": "@@ -391,8 +391,8 @@ bool swift::removeOutOfModuleDecls(SmallVectorImpl<ValueDecl*> &decls,\n decls.erase(\n std::remove_if(decls.begin(), decls.end(), [&](ValueDecl *decl) -> bool {\n bool inScope = llvm::any_of(visibleFrom, [&](ModuleDecl *visibleFr... | 2026-02-11T00:48:25 |
tensorflow/tensorflow | eb071ab3bef53145e6c0dc72eb6f636df27a9e65 | d596722c77ae698eafc6c3f7c3c6aba29262a6ed | Enable XlaDebugInfoManager when deserializing GpuExecutable from proto.
The `enable_debug_info_manager` parameter in `GpuExecutable::Params` is now set based on the `xla_gpu_executable_embed_debug_info` debug option when constructing a `GpuExecutable` from a `GpuExecutableProto`. This allows the `XlaDebugInfoManager` ... | [
{
"path": "third_party/xla/xla/service/gpu/BUILD",
"patch": "@@ -798,6 +798,7 @@ xla_cc_test(\n \"//xla/service:buffer_value\",\n \"//xla/service:hlo_module_config\",\n \"//xla/service:logical_buffer\",\n+ \"//xla/service:xla_debug_info_manager\",\n \"//xla/stream_exec... | 2026-01-12T09:33:54 |
mrdoob/three.js | ff6450a9951ce92af263e361257efbda31c61379 | bbfdeaca8f0d5567b600dfbce2921911a60ed87c | NodeMaterial: Add support for `alphaHash`. (#29757)
* NodeMaterial: Add support for `alphaHash`.
* Clean up.
* E2E: Update exception list.
* Examples: Clean up.
* NodeMaterial: Fix alpha hash check. | [
{
"path": "examples/files.json",
"patch": "@@ -350,6 +350,7 @@\n \t\t\"webgpu_loader_gltf_transmission\",\n \t\t\"webgpu_loader_materialx\",\n \t\t\"webgpu_materials\",\n+\t\t\"webgpu_materials_alphahash\",\n \t\t\"webgpu_materials_arrays\",\n \t\t\"webgpu_materials_basic\",\n \t\t\"webgpu_materials_displac... | 2024-10-29T08:59:35 |
denoland/deno | cce15c39b8e5c22694a4d76e0dc355efa32e0dd3 | 15ef715f20cb0fc204d602029d04ce28ecae5988 | fix(ext/node): `path.matchesGlob` compatibility (#30976) | [
{
"path": "ext/node/polyfills/_fs/_fs_glob.ts",
"patch": "@@ -926,12 +926,15 @@ export class Glob {\n \n /**\n * Check if a path matches a glob pattern\n- * @param {string} path the path to check\n- * @param {string} pattern the glob pattern to match\n- * @param {boolean} windows whether the path is on a W... | 2025-10-11T19:09:27 |
golang/go | 6346349f5629a5767d2cd132f01092857a570bd2 | 284379cdfcbd6971f46616a3c66bf19e467fdf0d | cmd/compile: replace angle brackets with square
Caused Markdown rendering error on https://go.dev/src/cmd/compile/README in macOS (15.6.1) Safari (18.6).
Change-Id: Id71436d9a7bc7e461e522500d66df5dda7cd9f7f
GitHub-Last-Rev: 4e4447e163ac65e6c394807ec4874bc5ca26bb32
GitHub-Pull-Request: golang/go#75549
Reviewed-on: htt... | [
{
"path": "src/cmd/compile/README.md",
"patch": "@@ -289,9 +289,9 @@ dependencies, so is not suitable for distributed build systems.)\n ```\n After that, your edit/compile/test cycle can be similar to:\n ```\n- <... make edits to cmd/compile source ...>\n+ [... make edits to cmd/compile source ...]\... | 2025-09-20T21:36:14 |
mrdoob/three.js | d067dfd7f5861fdb783f6fffdcd92a18a15df46f | 751d9ec135a25c2236c210e45e8d866024043b77 | LDrawLoader: Add WebGPU support. (#29752)
* LDrawLoader: Add WebGPU support.
* LDrawLoader: Improve error handling.
* LDrawLoader: Clean up.
* Update Addons.js | [
{
"path": "examples/jsm/Addons.js",
"patch": "@@ -129,6 +129,8 @@ export * from './loaders/VTKLoader.js';\n export * from './loaders/XYZLoader.js';\n \n export * from './materials/MeshGouraudMaterial.js';\n+export * from './materials/LDrawConditionalLineMaterial.js';\n+export * from './materials/MeshPostPro... | 2024-10-28T08:44:58 |
swiftlang/swift | 31ef4d00e0dd3301567fb76637d6dcf0a8453876 | f53ccd656df09a1ae8b21bb2d5d9f90302836646 | [ModuleInterface] Fix associated type selectors more
Qualification has discovered a complicated test case where the module interface printer incorrectly adds module selectors to nested types that don’t support them. Tweak module interface printing to omit the module selector in more situations.
Fixes rdar://169720990... | [
{
"path": "lib/AST/ASTPrinter.cpp",
"patch": "@@ -6403,14 +6403,15 @@ class TypePrinter : public TypeVisitor<TypePrinter, void, NonRecursivePrintOptio\n }\n \n bool isMemberOfGenericParameter(TypeBase *T) {\n+ if (T->is<DependentMemberType>()) // desugars typealiases\n+ // Parent is always a ... | 2026-02-11T00:43:21 |
tensorflow/tensorflow | cc1e2be0555d29581f34a8d703a31480f8573faf | afc0c05ee876373e716a6d9c7c9c303da5fa977c | PR #35689: [xla:gpu] Add first class SymmetricMemory and DeviceComm support to XLA collectives and implement it for NCCL
Imported from GitHub PR https://github.com/openxla/xla/pull/35689
Add first class `SymmetricMemory` and `DeviceComm` support to XLA collectives and implement it for NCCL
+ add a test for `NcclColl... | [
{
"path": "third_party/xla/xla/backends/gpu/collectives/BUILD",
"patch": "@@ -214,13 +214,15 @@ cc_library(\n hdrs = [\"gpu_communicator.h\"],\n deps = [\n \"//xla:future\",\n+ \"//xla:util\",\n \"//xla/core/collectives:communicator\",\n \"//xla/core/collectives:rank_i... | 2026-01-12T08:39:28 |
golang/go | 519ae514abace4551e0f99bf7da349a894b399b9 | b5a29cca486d26651e249c8395bc2df4a2d92d17 | cmd/compile: eliminate bound check for slices of the same length
If two slices start out with the same length and decrease in length by
the same amount on each round of the loop (or in the if block), then
we think their length are always equal.
For example:
if len(a) != len(b) {
return
}
for len(a) >= 4 {
a = a[4:... | [
{
"path": "src/cmd/compile/internal/ssa/prove.go",
"patch": "@@ -1240,6 +1240,173 @@ func (ft *factsTable) cleanup(f *Func) {\n \tf.Cache.freeBoolSlice(ft.recurseCheck)\n }\n \n+// addSlicesOfSameLen finds the slices that are in the same block and whose Op\n+// is OpPhi and always have the same length, then... | 2025-08-26T10:23:31 |
denoland/deno | 15ef715f20cb0fc204d602029d04ce28ecae5988 | 6fbce91e40cc07fc6da74068e5cc56fdd40f7b4c | fix(process): case insenstive check for disallowing .bat and .cmd (#30967) | [
{
"path": "ext/process/lib.rs",
"patch": "@@ -752,20 +752,25 @@ fn compute_run_cmd_and_check_permissions(\n command: arg_cmd.to_string(),\n error: Box::new(e),\n })?;\n+ // Undocumented feature of CreateProcess API allows spawning batch files directly\n+ // without proper argument escaping... | 2025-10-10T11:43:26 |
mrdoob/three.js | 59100c44cb59a575b062f438b979eb0109b3bcb4 | f827e4585b6df9d40388d0b303bf1c13df2e2173 | Addons: WebGPU CSM shadows - using shadowNode (#29610)
* CSM shadows - using shadowNode
* remove accidentally included file
* remove test logging
* Update CSMShadowNode.js
Fix main frustum with WebGL backend.
* rework
* handle camera changes
* CSMShadowNode: Clean up.
* CMSShadowNode: Fix casca... | [
{
"path": "examples/files.json",
"patch": "@@ -411,6 +411,7 @@\n \t\t\"webgpu_sandbox\",\n \t\t\"webgpu_shadertoy\",\n \t\t\"webgpu_shadowmap\",\n+\t\t\"webgpu_shadowmap_csm\",\n \t\t\"webgpu_shadowmap_opacity\",\n \t\t\"webgpu_shadowmap_progressive\",\n \t\t\"webgpu_shadowmap_vsm\",",
"additions": 1,
... | 2024-10-26T10:18:47 |
golang/go | b5a29cca486d26651e249c8395bc2df4a2d92d17 | bb5eb5171535b9080055fee5996bd55398202124 | cmd/distpack: add fix tool to inventory
(To be consistent with change to build.go in CL 700795.)
For #71859
Change-Id: I8caad28b7e5a2657f21b60a72899daecf0b2c324
Reviewed-on: https://go-review.googlesource.com/c/go/+/712180
Auto-Submit: Alan Donovan <adonovan@google.com>
Reviewed-by: Michael Matloob <matloob@google.c... | [
{
"path": "src/cmd/distpack/pack.go",
"patch": "@@ -172,7 +172,7 @@ func main() {\n \t\t\tdefault:\n \t\t\t\treturn false\n \t\t\t// Keep in sync with toolsIncludedInDistpack in cmd/dist/build.go.\n-\t\t\tcase \"asm\", \"cgo\", \"compile\", \"cover\", \"link\", \"preprofile\", \"vet\":\n+\t\t\tcase \"asm\",... | 2025-10-15T18:39:53 |
swiftlang/swift | 1fda405b2ba1e006cb5186855c5ed00a64cf3a8b | 5f0a09ee2466112d30d507f48af38e5c18881e2c | [Concurrent] Fix ABI break in `Task.value` property
The original getter, unlike `Task.init`, wasn't emitted into client
which means that the original property needs to be preserved for
backward compatibility and new one needs to be `@_alwaysEmitIntoClient`
with the new name.
Resolves: rdar://168273419 | [
{
"path": "stdlib/public/Concurrency/Task.swift",
"patch": "@@ -167,6 +167,10 @@ extension Task {\n ///\n /// - Returns: The task's result.\n public var value: Success {\n+ @_alwaysEmitIntoClient\n+ // This name is slightly different purely to avoid a clash with\n+ // the original property an... | 2026-02-10T05:29:32 |
denoland/deno | aca48143b5293a6658af47f88ad08e5285d64c8d | 6e80d3167c72b7eca0499f23d84f59ae7aed5f53 | fix(cache): don't try to set up node_modules with node_modules_dir manual in deno cache (#30957)
Fixes #30949. Fixes #30938 | [
{
"path": "cli/factory.rs",
"patch": "@@ -1277,7 +1277,6 @@ fn new_workspace_factory_options(\n flags.subcommand,\n DenoSubcommand::Install(_)\n | DenoSubcommand::Uninstall(_)\n- | DenoSubcommand::Cache(_)\n | DenoSubcommand::Add(_)\n | DenoSubcommand::Remove(_)\n ... | 2025-10-09T08:46:54 |
mrdoob/three.js | f827e4585b6df9d40388d0b303bf1c13df2e2173 | 40367cd832510541e4534312605f5eb3c78a3a69 | ProgressiveLightMap: Add WebGPU version. (#29749)
* ProgressiveLightMapGPU: Initial commit.
* ProgressiveLightMap: Apply some fixes.
* ProgressiveLightMapGPU: More fixes.
* ProgressiveLightMap: Finalize implementation.
* E2E: Update screenshot. | [
{
"path": "examples/files.json",
"patch": "@@ -412,6 +412,7 @@\n \t\t\"webgpu_shadertoy\",\n \t\t\"webgpu_shadowmap\",\n \t\t\"webgpu_shadowmap_opacity\",\n+\t\t\"webgpu_shadowmap_progressive\",\n \t\t\"webgpu_shadowmap_vsm\",\n \t\t\"webgpu_skinning\",\n \t\t\"webgpu_skinning_instancing\",",
"additions... | 2024-10-25T17:57:43 |
golang/go | bb5eb5171535b9080055fee5996bd55398202124 | 5c9a26c7f882dba5bfe10036815bcb239dd9b7e8 | runtime/pprof: fix errors in pprof_test
I think the original depth-1 argument to allocDeep was correct.
Reverted that, and also the change to maxSkip in mprof.go, which was
also incorrect. I think before we were usually passing accidentally in
the loop over matched stacks when we really should usually have been
passin... | [
{
"path": "src/runtime/mprof.go",
"patch": "@@ -49,7 +49,7 @@ const (\n \t// desired maximum number of frames after expansion.\n \t// This should be at least as large as the largest skip value\n \t// used for profiling; otherwise stacks may be truncated inconsistently\n-\tmaxSkip = 8\n+\tmaxSkip = 6\n \n \t... | 2025-10-15T16:52:47 |
kubernetes/kubernetes | d733195cfe97d282c8998d92fd4fdba543a3c0f9 | 18663b347efbb2f0a2d02464100411de02ab2b08 | Fix potential goroutine leak in operation_executor_test.go
If the test times out in isOperationRunConcurrently, the receiver channel stops listening. The goroutine spawned in startOperationAndBlock then blocks forever on ch <- nil.
This commit updates startOperationAndBlock to use a select statement. It now waits for... | [
{
"path": "pkg/kubelet/pluginmanager/operationexecutor/operation_executor_test.go",
"patch": "@@ -185,6 +185,9 @@ func setup(t *testing.T) (context.Context, chan interface{}, chan interface{}, O\n // This function starts by writing to ch and blocks on the quit channel\n // until it is closed by the currentl... | 2026-01-05T07:18:27 |
denoland/deno | 6e80d3167c72b7eca0499f23d84f59ae7aed5f53 | f20c8cdb892abaecfe1d6a61bbae3768e44db406 | fix(tunnel): unhide --tunnel flag (#30940) | [
{
"path": "cli/args/flags.rs",
"patch": "@@ -4652,8 +4652,14 @@ fn tunnel_arg() -> Arg {\n .long(\"tunnel\")\n .alias(\"connected\")\n .short('t')\n- .hide(true)\n .num_args(0..=1)\n+ .help(cstr!(\n+ \"Execute tasks with a tunnel to Deno Deploy.\n+\n+ Create a secure connection... | 2025-10-08T19:33:49 |
swiftlang/swift | cbad1d8a1817b6e24fb6cf939e2257d7bb212d79 | 21fbc94a7526dc701384487661e3a4551d9fda2f | Tweak export_as behavior with submodules
In #86859, I modified the way `export_as` names are used in private module interfaces so that the `export_as` name is used when that module has been imported. This turns out to be slightly too aggressive in a specific scenario where a submodule of the export_as module imports a... | [
{
"path": "lib/AST/ASTDumper.cpp",
"patch": "@@ -3173,8 +3173,7 @@ void ValueDecl::dumpRef(raw_ostream &os) const {\n getName().printPretty(os);\n }\n } else {\n- auto moduleName = cast<ModuleDecl>(this)->getRealName();\n- os << moduleName;\n+ cast<ModuleDecl>(this)->getReverseFullModul... | 2026-01-30T23:04:01 |
mrdoob/three.js | 1978cad9fba8027b08a649e90edb919dae97659b | e7e4ceb8901a428e047aaeecef6c79b55115151b | ProgressiveLightMap: Remove usage of `THREE` namespace. (#29747)
* ProgressiveLightMap: Remove usage of `THREE` namespace.
* ProgressiveLightMap: Fix docs. | [
{
"path": "examples/jsm/misc/ProgressiveLightMap.js",
"patch": "@@ -1,4 +1,4 @@\n-import * as THREE from 'three';\n+import { DoubleSide, FloatType, HalfFloatType, Mesh, MeshBasicMaterial, MeshPhongMaterial, PlaneGeometry, Scene, WebGLRenderTarget } from 'three';\n import { potpack } from '../libs/potpack.mo... | 2024-10-25T08:56:35 |
golang/go | 61d1ff61adb3febdbae21da7721b7cd5389efe4a | 5b29875c8eb1002c4509eb9ebd9a4d32cfd7d494 | cmd/compile: use block starting position for phi line number
Fixes #75615
Change-Id: I2c7f0ea1203e8a97749c9f780c29a66050f0159d
Reviewed-on: https://go-review.googlesource.com/c/go/+/710355
Reviewed-by: Keith Randall <khr@google.com>
Reviewed-by: David Chase <drchase@google.com>
LUCI-TryBot-Result: Go LUCI <golang-sco... | [
{
"path": "src/cmd/compile/internal/ssa/stmtlines_test.go",
"patch": "@@ -137,17 +137,17 @@ func TestStmtLines(t *testing.T) {\n \t\t}\n \t}\n \n-\tvar m int\n+\tvar m float64\n \tif runtime.GOARCH == \"amd64\" {\n-\t\tm = 1 // > 99% obtained on amd64, no backsliding\n+\t\tm = 0.011 // > 98.9% obtained on a... | 2025-10-08T22:33:19 |
denoland/deno | f20c8cdb892abaecfe1d6a61bbae3768e44db406 | ee8c4d948390b32062e22503ae7d3c27bfffe859 | fix(update): preserve tilde in version range (#30946)
Fixes https://github.com/denoland/deno/issues/30925 | [
{
"path": "cli/tools/pm/outdated/mod.rs",
"patch": "@@ -305,13 +305,23 @@ fn choose_new_version_req(\n latest_available: false,\n };\n };\n- let exact = if let Some(range) = dep.req.version_req.range() {\n- range.0[0].start == range.0[0].end\n+ // Detect the original operator to... | 2025-10-08T17:50:30 |
kubernetes/kubernetes | 5bba728bb8db637731ee41d67d3685155572460f | 18663b347efbb2f0a2d02464100411de02ab2b08 | Fix context timeout test flake | [
{
"path": "staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/internal/generic/controller_test.go",
"patch": "@@ -370,7 +370,7 @@ func TestIgnoredUpdate(t *testing.T) {\n \n // Shows that an object which fails reconciliation will retry\n func TestReconcileRetry(t *testing.T) {\n-\ttestContext, testCan... | 2026-01-07T14:47:47 |
tensorflow/tensorflow | ff19bd3b55e107d2ea33becd80e3568a716fa3f2 | 43c56d2ed02b88e90d805c8554101152a6c7d0bd | use absl errors instead of TF errors | [
{
"path": "tensorflow/core/kernels/training_ops.cc",
"patch": "@@ -1255,7 +1255,7 @@ class SparseApplyAdadeltaOp : public OpKernel {\n const Tensor& indices = ctx->input(7);\n OP_REQUIRES(ctx, TensorShapeUtils::IsVector(indices.shape()),\n errors::InvalidArgument(\"indices must be on... | 2026-01-12T02:03:07 |
golang/go | 51134968050270a08d6a2456d0ea72c8a99b6e96 | 36086e85f842e8ed2c03be2542a6cc211603abbc | runtime/pprof: skip flaky test TestProfilerStackDepth/heap for now
The test has been causing a lot of flakes on the builders. Skip it while
I'm debugging it.
For #74029
Change-Id: I6a6a696450c23f65bc310a2d0ab61b22dba88f00
Reviewed-on: https://go-review.googlesource.com/c/go/+/712060
TryBot-Bypass: Michael Matloob <m... | [
{
"path": "src/runtime/pprof/pprof_test.go",
"patch": "@@ -2549,6 +2549,9 @@ func TestProfilerStackDepth(t *testing.T) {\n \n \tfor _, test := range tests {\n \t\tt.Run(test.profiler, func(t *testing.T) {\n+\t\t\tif test.profiler == \"heap\" {\n+\t\t\t\ttestenv.SkipFlaky(t, 74029)\n+\t\t\t}\n \t\t\tvar buf ... | 2025-10-15T15:23:59 |
denoland/deno | ee8c4d948390b32062e22503ae7d3c27bfffe859 | b8c133a7e2140810a8f74f0e8d683824b321b706 | feat(internal): support variants of spec tests (#30947)
Adds support for a new key `"variants"` that effectively parameterizes a
test, allowing you to substitute different values for each scenario. For
instance, I'm planning on using this in the tsgo PR, where I'll have
tests like
```json
{
"variants": {
"tsgo"... | [
{
"path": "tests/specs/mod.rs",
"patch": "@@ -5,6 +5,7 @@ use std::collections::BTreeMap;\n use std::collections::HashMap;\n use std::collections::HashSet;\n use std::panic::AssertUnwindSafe;\n+use std::path::Path;\n use std::rc::Rc;\n \n use anyhow::Context;\n@@ -57,13 +58,15 @@ struct MultiTestMetaData {\... | 2025-10-08T17:46:33 |
tensorflow/tensorflow | 882e8c0db8283b617e859384575fcb2f53c92fd1 | e18839cbd31cd6855a7205af200893c07fab5198 | Style: Fix indentation and remove verbose comments | [
{
"path": "tensorflow/core/kernels/mkl/mkl_conv_grad_input_ops.cc",
"patch": "@@ -567,54 +567,48 @@ class MklConvCustomBackpropInputOp\n << \"ConvBackpropInput: input should not be in MKL Layout\";\n }\n \n-// Get TensorFlow shape of input tensor.\n+ // Get TensorFlow shape of input tensor.\n T... | 2026-01-11T19:25:08 |
denoland/deno | 3bd08b21c0de52a0ad01587f971bfb00ed279639 | 9b4c141595466caa925b77f9742c8478498bf26b | test: use `Deno.execPath()` instead of `deno` (#30914)
Currently most TS tests use `Deno.execPath()` to identify where `deno`
lives.
In the event deno is not on the `$PATH` these tests will fail.
If deno is on the `$PATH` you can end up testing the wrong instance of
`deno`. | [
{
"path": "tests/unit/process_test.ts",
"patch": "@@ -623,7 +623,7 @@ Deno.test(\n \n // @ts-ignore `Deno.run()` was soft-removed in Deno 2.\n const p = Deno.run({\n- cmd: [\"deno\", \"run\", \"--watch\", tempFile],\n+ cmd: [Deno.execPath(), \"run\", \"--watch\", tempFile],\n stdout:... | 2025-10-07T20:51:48 |
golang/go | ee5af46172e64eceddb56018de8ea850fe0a6cae | 11d3d2f77d8293fe14638e74cbf52d1241b60e78 | encoding/json: avoid misleading errors under goexperiment.jsonv2
The jsontext package represents the location of JSON errors
using a JSON Pointer (RFC 6901). This uses the JSON type system.
Unfortunately the v1 json.UnmarshalTypeError assumes a Go struct-based
mechanism for reporting the location of errors
(and has h... | [
{
"path": "src/encoding/json/v2_decode.go",
"patch": "@@ -14,6 +14,7 @@ import (\n \t\"fmt\"\n \t\"reflect\"\n \t\"strconv\"\n+\t\"strings\"\n \n \t\"encoding/json/internal/jsonwire\"\n \t\"encoding/json/jsontext\"\n@@ -119,7 +120,20 @@ type UnmarshalTypeError struct {\n func (e *UnmarshalTypeError) Error()... | 2025-10-11T18:57:46 |
swiftlang/swift | 59eb76478088bc920531dffe3344ad8890764558 | e77a8ba8ecaebf70009caa61360cf6cdb0253256 | Improve XMACROS in PartitionOpError.def to eliminate more boilerplate.
I did this by:
1. Standardizing the constructors of diagnostic emitters to take the same
parameters.
2. Changed the names of emitters so that they match the names of errors so I can
use the XMACRO.
3. Changed the various switches that need... | [
{
"path": "include/swift/SILOptimizer/Utils/PartitionOpError.def",
"patch": "@@ -10,63 +10,162 @@\n //\n //===----------------------------------------------------------------------===//\n ///\n-/// This file contains macros for creating PartitionOpErrors for use with\n-/// SendNonSendable. This just makes i... | 2026-02-10T16:20:55 |
mrdoob/three.js | 35adad2d28f722883e9e0ec2fdd0d5408e30bf21 | 4e6f91464054afd31d5b89ce123cc6db695e17d0 | KTX2Loader: Support transcoding UASTC HDR to BC6H and RGBA16 (#29730)
* KTX2Loader: Support transcoding UASTC HDR to BC6H and RGBA16
* GLTFLoader: Fix incorrect texture.generateMipmaps setting | [
{
"path": "examples/jsm/loaders/GLTFLoader.js",
"patch": "@@ -3230,7 +3230,7 @@ class GLTFParser {\n \t\t\ttexture.minFilter = WEBGL_FILTERS[ sampler.minFilter ] || LinearMipmapLinearFilter;\n \t\t\ttexture.wrapS = WEBGL_WRAPPINGS[ sampler.wrapS ] || RepeatWrapping;\n \t\t\ttexture.wrapT = WEBGL_WRAPPINGS[ ... | 2024-10-24T21:27:32 |
denoland/deno | 9b4c141595466caa925b77f9742c8478498bf26b | 386f3b28304674c74c0f26ff28880206671e0414 | fix(cli): jsx pragma-related swc panics (#30935) | [
{
"path": "Cargo.lock",
"patch": "@@ -273,9 +273,9 @@ dependencies = [\n \n [[package]]\n name = \"ast_node\"\n-version = \"3.0.3\"\n+version = \"3.0.4\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"a1e2cddd48eafd883890770673b1971faceaf80a185445671abc3ea0c00593ee\"\n+c... | 2025-10-06T23:25:13 |
tensorflow/tensorflow | 19e30cbb91b2e9f23c28db300cdcb65c376dea2f | 8617d904c2f4c89c54a571aa193c42d203139e74 | fixed indent for merge | [
{
"path": "tensorflow/python/ops/summary_ops_v2.py",
"patch": "@@ -1044,7 +1044,7 @@ def graph_v1(param, step=None, name=None):\n TypeError: If `param` isn't already a `tf.Tensor` in graph mode.\n \"\"\"\n if step is not None:\n- _choose_step(step)\n+ _choose_step(step)\n \n if not context... | 2026-01-11T14:55:56 |
golang/go | 5a9ef44bc05b937cff2394b5880ecca616cb878e | 3765758b96746e202bb52312d4b026085a0f25a1 | cmd/compile/internal/devirtualize: fix OCONVNOP assertion
Fixes #75863
Change-Id: I1e5a0f3880dcd5f820a5b6f4540c49b16a6a6964
Reviewed-on: https://go-review.googlesource.com/c/go/+/711141
Reviewed-by: Keith Randall <khr@google.com>
Reviewed-by: Lasse Folger <lassefolger@google.com>
Auto-Submit: Keith Randall <khr@golan... | [
{
"path": "src/cmd/compile/internal/devirtualize/devirtualize.go",
"patch": "@@ -223,7 +223,7 @@ func concreteType1(s *State, n ir.Node, seen map[*ir.Name]struct{}) (outT *types\n \t\tswitch n1 := n.(type) {\n \t\tcase *ir.ConvExpr:\n \t\t\tif n1.Op() == ir.OCONVNOP {\n-\t\t\t\tif !n1.Type().IsInterface() |... | 2025-10-12T09:15:11 |
mrdoob/three.js | a2befb6457af1cc0efdb5c5e136dd853b9ebafc9 | 226a9ed5059aed0806bb816a17d5e0f8cf4f444a | NodeMaterialObserver: Fix buffer resize when `transmission` is used (#29735) | [
{
"path": "src/materials/nodes/manager/NodeMaterialObserver.js",
"patch": "@@ -1,3 +1,5 @@\n+import { Vector2 } from '../../../math/Vector2.js';\n+\n const refreshUniforms = [\n \t'alphaMap',\n \t'alphaTest',\n@@ -51,6 +53,8 @@ const refreshUniforms = [\n \t'transmissionMap'\n ];\n \n+const _vector2 = /*@__... | 2024-10-23T17:10:46 |
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.