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
kubernetes/kubernetes
b0ec5682490215a2cfae84cf4517da9549d13e7e
fe943aff0ce4be7f2fc93c3e8c1e2b34e5044513
Fix path in Pod status resourceClaimName validation
[ { "path": "pkg/apis/core/validation/validation.go", "patch": "@@ -6128,7 +6128,7 @@ func validatePodResourceClaimStatuses(statuses []core.PodResourceClaimStatus, po\n \t\t}\n \t\tif status.ResourceClaimName != nil {\n \t\t\tfor _, detail := range ValidateResourceClaimName(*status.ResourceClaimName, false) {...
2026-02-28T23:48:50
mrdoob/three.js
105a9940bde9b8a6ee9f3fb1210cbd448143ab18
a480a68b0c863841355796a1e37eab4187de8ac7
TSL: Show an error message if no stack defined for assign operation (#31756)
[ { "path": "src/nodes/tsl/TSLCore.js", "patch": "@@ -59,7 +59,15 @@ Node.prototype.assign = function ( ...params ) {\n \n \tif ( this.isStackNode !== true ) {\n \n-\t\tcurrentStack.assign( this, ...params );\n+\t\tif ( currentStack !== null ) {\n+\n+\t\t\tcurrentStack.assign( this, ...params );\n+\n+\t\t} el...
2025-08-26T20:36:38
swiftlang/swift
d1859fcda62627d05fbd4dae1ce92e4f74b8b76f
b6699a235168fbecac772efe9ef754fb616ee015
[Backtracing] [Testing] Fix the close fds functionality on Amazon Linux (#87815) On older versions of Linux (e.g. Amazon) needs a fix. The close_range system call doesn't exist on CrashHandlerLinux.cpp uses SYS_close_range which is not defined in Amazon Linux 2 kernel headers (pre-Linux 5.9). Introduced by commit e7a...
[ { "path": "stdlib/public/runtime/CrashHandlerLinux.cpp", "patch": "@@ -29,6 +29,7 @@\n \n #include <sys/mman.h>\n #include <sys/prctl.h>\n+#include <sys/resource.h>\n #include <sys/socket.h>\n #include <sys/stat.h>\n #include <sys/syscall.h>\n@@ -126,6 +127,7 @@ ssize_t safe_write(int fd, const void *buf, s...
2026-03-13T17:48:19
denoland/deno
8c7409882b13fa20ca1a9739d6e4605c2d464241
9a246baac9cb8c2bb4422e18fcea8b1fd880d7ef
fix(test): dedupe discovered workspace test modules (#32380) This PR should address #25949. I fixed duplicate test module execution caused by overlapping discovery entries (e.g., workspace + `deno test .`). IMHO this is a suboptimal but safer fix. The cleaner solution would be to make discovery non-overlapping at me...
[ { "path": "cli/tools/test/mod.rs", "patch": "@@ -129,6 +129,10 @@ pub enum TestMode {\n }\n \n impl TestMode {\n+ fn union(self, other: Self) -> Self {\n+ if self == other { self } else { Self::Both }\n+ }\n+\n /// Returns `true` if the test mode indicates that code snippet extraction is\n /// need...
2026-03-02T14:36:29
tensorflow/tensorflow
580555a25e64b3c5fd7c617694b9fa52e32297f4
6a61c6784fe78c34034f7a1b8078f6892eb6b9ff
Ensure that tests use initialized DebugOptions PiperOrigin-RevId: 881961368
[ { "path": "third_party/xla/xla/service/gpu/BUILD", "patch": "@@ -3511,6 +3511,7 @@ xla_cc_test(\n srcs = [\"ptx_compile_options_from_debug_options_test.cc\"],\n deps = [\n \":ptx_compile_options_from_debug_options\",\n+ \"//xla:debug_options_flags\",\n \"//xla:xla_proto_cc\",\...
2026-03-11T12:37:40
golang/go
491da55fdba438284656c370f6d2f3e0b0971a83
bd7b8a52c847afcfc15b21741ec8972275a79c34
cmd/compile/internal/ssagen: fix typo GrtCallerSP -> GetCallerSP Fix a typo in findIntrinsic function where "GrtCallerSP" should be "GetCallerSP". This typo was in the condition checking for runtime intrinsic functions that don't have definitions. Fixes #77432 Change-Id: I8667a42456b4b2c4533dfcbca198b46793f71c89 Git...
[ { "path": "src/cmd/compile/internal/ssagen/intrinsics.go", "patch": "@@ -2170,7 +2170,7 @@ func findIntrinsic(sym *types.Sym) intrinsicBuilder {\n \n \tfn := sym.Name\n \tif ssa.IntrinsicsDisable {\n-\t\tif pkg == \"internal/runtime/sys\" && (fn == \"GetCallerPC\" || fn == \"GrtCallerSP\" || fn == \"GetClos...
2026-02-06T08:48:19
mrdoob/three.js
a480a68b0c863841355796a1e37eab4187de8ac7
9c5ca9b0e36b11dddc96b3c094cb5dd86361745a
Bindings: Fix caching of bindings. (#31755)
[ { "path": "src/renderers/common/Bindings.js", "patch": "@@ -267,6 +267,8 @@ class Bindings extends DataMap {\n \n \t\t\t\t\t\tneedsBindingsUpdate = true;\n \n+\t\t\t\t\t\tcacheBindings = false;\n+\n \t\t\t\t\t}\n \n \t\t\t\t}", "additions": 2, "deletions": 0, "language": "JavaScript" } ]
2025-08-26T20:11:55
kubernetes/kubernetes
5c88906dcabe36518e196767f10d5ddaea101820
7ae9c0d83a91bc9c7e35665665e662152fa39d13
Rename volume_operation_total_errors to volume_operation_errors_total Raname this because facing lint error, counter metrics should have "_total" suffix. Add the test `volume_operation_errors_total` Marked `volume_operation_total_errors` as deprecated Signed-off-by: ChengHao Yang <17496418+tico88612@users.noreply.git...
[ { "path": "pkg/controller/volume/persistentvolume/metrics/metrics.go", "patch": "@@ -68,6 +68,7 @@ func Register(pvLister PVLister, pvcLister PVCLister, pluginMgr *volume.VolumePl\n \tregisterMetrics.Do(func() {\n \t\tlegacyregistry.CustomMustRegister(newPVAndPVCCountCollector(pvLister, pvcLister, pluginMgr...
2026-01-21T15:31:57
denoland/deno
9a246baac9cb8c2bb4422e18fcea8b1fd880d7ef
e7269534ae4fe4d08258d562738d0cb1aa275733
fix: fix some stack frame dimming, and make the console log more aligned with cli formatting (#32399)
[ { "path": "ext/web/01_console.js", "patch": "@@ -369,6 +369,12 @@ const kArrayExtrasType = 2;\n const coreModuleRegExp = new SafeRegExp(\n /^ {4}at (?:[^/\\\\(]+ \\(|)node:(.+):\\d+:\\d+\\)?$/,\n );\n+const extModuleRegExp = new SafeRegExp(\n+ /^ {4}at (?:[^/\\\\(]+ \\(|)ext:.+:\\d+:\\d+\\)?$/,\n+);\n+co...
2026-03-02T14:21:46
swiftlang/swift
99f8c37aa6e5de1b86210aead43b4e7d2fe63b04
fd89db506e2666f576549cb39d3e6070d9027a5d
Fix debug_type
[ { "path": "include/swift/SILOptimizer/Utils/PartitionUtils.h", "patch": "@@ -31,8 +31,6 @@\n #include <algorithm>\n #include <variant>\n \n-#define DEBUG_TYPE \"send-non-sendable\"\n-\n namespace swift {\n \n namespace PartitionPrimitives {", "additions": 0, "deletions": 2, "language": "C/C++ He...
2026-03-13T16:44:55
golang/go
5f51b092846ae43d03092d866449d9933a8bf42b
b152d9a11808c278d2ccb193d7c82938078007ce
cmd/link: ignore GCC generated .wm4/.wm8 symbols with no type Fixes #77436 Change-Id: I37d852a89678c929156c4765e774c819eb515e6f Reviewed-on: https://go-review.googlesource.com/c/go/+/742220 Reviewed-by: Michael Knyszek <mknyszek@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gservice...
[ { "path": "src/cmd/go/testdata/script/cgo_g3.txt", "patch": "@@ -0,0 +1,18 @@\n+[!cgo] skip\n+\n+# Test that -g3 works with cgo.\n+env CGO_CFLAGS=-g3\n+go build\n+\n+-- go.mod --\n+module cgog3\n+\n+go 1.25\n+-- m.go --\n+package main\n+\n+import \"os/user\"\n+\n+func main() {\n+\tuser.Current()\n+}", "...
2026-02-05T04:58:51
mrdoob/three.js
168635098a722adb83b2e89a12e75c291f7e78f8
bcbf0311db1971066062e93d7743045cd55442cb
Sampler: Fix dispose. (#31751)
[ { "path": "src/renderers/common/Sampler.js", "patch": "@@ -18,17 +18,6 @@ class Sampler extends Binding {\n \n \t\tsuper( name );\n \n-\t\t/**\n-\t\t * This function is called when the texture is disposed.\n-\t\t * @type {function}\n-\t\t * @private\n-\t\t */\n-\t\tthis._onDisposeTexture = () => {\n-\n-\t\t...
2025-08-26T19:09:02
tensorflow/tensorflow
d98aa426512e64f07d03f7a726e6f7dc0a7de2d4
18fe9cb45900ced3e3644101d3fba305914ca671
PR #38672: Review of Error Codes documentation pages Imported from GitHub PR https://github.com/openxla/xla/pull/38672 📝 Summary of Changes This PR includes: - A review of the "Error Code: E1000" page according to user research results; - Changes to other pages in the Error Codes section of the documentation to ensu...
[ { "path": "third_party/xla/docs/errors/error_0100.md", "patch": "@@ -1,11 +1,11 @@\n-# Error code: 0100\n+# Error code: E0100\n \n **Category:** Runtime: Buffer Allocation Failure\n \n This error indicates that XLA:TPU runtime’s memory allocator failed to find a\n suitable block of memory on the accelerator...
2026-03-11T12:13:06
kubernetes/kubernetes
6fee34d9f32cb52eb75d7850af5202e6359f595f
cf876463cdf5571d2051096859779d9d210074b3
default readonly_pkgs in kube_codegen.sh These readonly packages are the same as in hack/update-codegen.sh. Without users of kube_codegen.sh will get an error from validation-gen if they use e.g. metav1.TypeMeta in their types. Signed-off-by: Lukas Hoehl <lukas.hoehl@stackit.cloud>
[ { "path": "staging/src/k8s.io/code-generator/kube_codegen.sh", "patch": "@@ -179,6 +179,22 @@ function kube::codegen::gen_helpers() {\n | LC_ALL=C sort -u\n )\n \n+\n+ # This list needs to cover all of the types used transitively from the\n+ # main API types. Validations defined on types...
2026-02-27T18:29:44
denoland/deno
e7269534ae4fe4d08258d562738d0cb1aa275733
70497bbf6a7e673b7f9f89b7a112c488fd20e11d
fix(ext/node): make `execPath` named export a real string (#32396) ## Summary - The named ESM export `execPath` from `node:process` was a frozen object with `String.prototype` that pretended to be a string but had `typeof === "object"`. This broke libraries like execa that check `typeof execPath === "string"`, causin...
[ { "path": "ext/node/polyfills/process.ts", "patch": "@@ -480,20 +480,7 @@ function uncaughtExceptionHandler(err: any, origin: string) {\n process.emit(\"uncaughtException\", err, origin);\n }\n \n-export let execPath: string = Object.freeze({\n- __proto__: String.prototype,\n- toString() {\n- execPat...
2026-03-02T14:15:58
swiftlang/swift
ee0dc646181847be83389a5f6e1cb2fdc0aa28c3
d4f4551fc7c577cc073c2482de5418c1164df77d
[Dependency Scanning] Fix duplicate queries of *optional* Swift dependencies We are seeing a huge slowdown in dependency scanning actions due to much more time spend parsing textual interfaces. I have narrowed this down to a large amount of duplicate interface parsing actions stemming from a lack of checking whether o...
[ { "path": "lib/DependencyScan/ModuleDependencyScanner.cpp", "patch": "@@ -1494,29 +1494,32 @@ void ModuleDependencyScanner::resolveSwiftImportsForModule(\n }\n };\n \n- // Enque asynchronous lookup tasks\n- for (const auto &dependsOn : moduleDependencyInfo.getModuleImports()) {\n- // Avoi...
2026-03-13T12:58:17
golang/go
b152d9a11808c278d2ccb193d7c82938078007ce
fc9f22134a870528a7a6d110fa6172431f73cccf
cmd/link: correct error message in loadelf.Load The message said we were ignoring the symbols, but we aren't. We are treating them as an error. For #77436 Change-Id: I5492d81717c539b09f6956b591178f1f3a42893d Reviewed-on: https://go-review.googlesource.com/c/go/+/742060 Reviewed-by: Michael Knyszek <mknyszek@google.c...
[ { "path": "src/cmd/link/internal/loadelf/ldelf.go", "patch": "@@ -627,7 +627,7 @@ func Load(l *loader.Loader, arch *sys.Arch, localSymVersion int, f *bio.Reader,\n \t\t\t\tcontinue\n \t\t\t}\n \n-\t\t\treturn errorf(\"%v: sym#%d (%q): ignoring symbol in section %d (%q) (type %d)\", elfsym.sym, i, elfsym.nam...
2026-02-04T20:42:44
mrdoob/three.js
d47d1d8d4e58e5e2b737ba2ea61777dee178de13
4fdb25f556538b5997d61950040f078741b77e7b
Docs: fix null params (#31742) * docs: fix null params * fix all nullable unions --------- Co-authored-by: Samuel Rigaud <rigaud@gmail.com>
[ { "path": "examples/jsm/controls/ArcballControls.js", "patch": "@@ -1315,7 +1315,7 @@ class ArcballControls extends Controls {\n \t *\n \t * @param {'PAN'|'ROTATE'|'ZOOM'|'FOV'} operation - The operation to be performed ('PAN', 'ROTATE', 'ZOOM', 'FOV').\n \t * @param {0|1|2|'WHEEL'} mouse - A mouse button (...
2025-08-25T20:33:45
tensorflow/tensorflow
00624fa567fe6738336d2c917d6d2f84f28b1b88
0693a0d94097e907034bf51cb653f56cfdfe9f95
Ensure that tests use initialized DebugOptions It turns out that one of the tests relied on initialization to 0 and does not work with the default flag value. Set xla_gpu_graph_min_graph_size flag to 1 to make the test still work. PiperOrigin-RevId: 881932325
[ { "path": "third_party/xla/xla/backends/gpu/runtime/BUILD", "patch": "@@ -4115,6 +4115,7 @@ xla_test(\n \":thunk\",\n \":thunk_pass_pipeline\",\n \":while_thunk\",\n+ \"//xla:debug_options_flags\",\n \"//xla:shape_util\",\n \"//xla:xla_data_proto_cc\",\n ...
2026-03-11T11:17:21
denoland/deno
70497bbf6a7e673b7f9f89b7a112c488fd20e11d
fd9def342d39cb660de815f760745ea0aacda4e5
fix(ext/node): make `setAutoPadding(false)` a no-op for GCM ciphers (#32290) ## Summary - GCM is a stream cipher mode that doesn't use block padding. In Node.js, `setAutoPadding()` is a no-op for GCM modes, but Deno was throwing `setAutoPadding(false) not supported for Aes128Gcm/Aes256Gcm yet` when called on GCM deci...
[ { "path": "ext/node_crypto/cipher.rs", "patch": "@@ -505,12 +505,6 @@ pub enum DecipherError {\n #[error(\"Failed to authenticate data\")]\n DataAuthenticationFailed,\n #[class(type)]\n- #[error(\"setAutoPadding(false) not supported for Aes128Gcm yet\")]\n- SetAutoPaddingFalseAes128GcmUnsupported,\n...
2026-03-02T13:54:58
kubernetes/kubernetes
c215164395fb9b929b1e195418ed8ac76c0e0c45
cc9731f2911ee987ad9677e0b4ba365e1a659141
fix test/integration/scheduler/batch
[ { "path": "pkg/scheduler/framework/plugins/noderesources/balanced_allocation.go", "patch": "@@ -123,9 +123,18 @@ func (pl *BalancedAllocation) SignPod(ctx context.Context, pod *v1.Pod) ([]fwk.S\n \t\tEnablePodLevelResources: pl.enablePodLevelResources,\n \t\tEnableDRAExtendedResource: pl.enableDRAExtended...
2026-02-02T19:08:17
golang/go
fc9f22134a870528a7a6d110fa6172431f73cccf
a72a4295edf694395ba9d3b5e7c5393ebf6a415d
net/http: remove hasPort and simplify logic Fixes #76651 Change-Id: I306e127375095bc0caedb01ac458107cfec5f085 Reviewed-on: https://go-review.googlesource.com/c/go/+/725740 Auto-Submit: Sean Liao <sean@liao.dev> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Mich...
[ { "path": "src/net/http/http.go", "patch": "@@ -106,15 +106,15 @@ type contextKey struct {\n \n func (k *contextKey) String() string { return \"net/http context value \" + k.name }\n \n-// Given a string of the form \"host\", \"host:port\", or \"[ipv6::address]:port\",\n-// return true if the string include...
2025-12-02T04:06:09
mrdoob/three.js
4fdb25f556538b5997d61950040f078741b77e7b
65bfbd8e51db937ecd5d4be7f2d93319f6e5ee97
hashBlur: fix repeats arg (#31741) Co-authored-by: Samuel Rigaud <rigaud@gmail.com>
[ { "path": "examples/jsm/tsl/display/hashBlur.js", "patch": "@@ -24,7 +24,7 @@ export const hashBlur = /*#__PURE__*/ Fn( ( [ textureNode, bluramount = float( 0\n \n \ttextureNode = convertToTexture( textureNode );\n \n-\tconst repeats = nodeObject( options.size ) || float( 45 );\n+\tconst repeats = nodeObjec...
2025-08-25T17:28:38
denoland/deno
fd9def342d39cb660de815f760745ea0aacda4e5
84f7a15a880d296faa7a71b108579159952197f8
fix(node): support ECDSA with secp256k1 in `node:crypto` (#32390) ## Summary - Adds secp256k1 ECDSA support to `node:crypto` key generation, signing, verification, and key import/export (DER, PEM, JWK) - Adds `Secp256k1` variant to `EcPrivateKey`/`EcPublicKey` enums using the existing `k256` crate - Enables `ecdh`, `...
[ { "path": "Cargo.toml", "patch": "@@ -391,7 +391,7 @@ ed25519-dalek = \"2.1.1\"\n ed448-goldilocks = \"0.8.3\"\n elliptic-curve = { version = \"0.13.4\", features = [\"alloc\", \"arithmetic\", \"ecdh\", \"std\", \"pem\", \"jwk\"] }\n hkdf = \"0.12.3\"\n-k256 = \"0.13.1\"\n+k256 = { version = \"0.13.1\", fea...
2026-03-02T13:21:03
tensorflow/tensorflow
52ca756ae363ecbf528f1f8a77e2b0fbb007cba0
b82ba09486b55f1edf3f14dd27e06e8034f277e0
[XLA:GPU] Avoid that DebugOptions is constructed without flag parsing. While there, also migrate the test to HloPjRtTestBase PiperOrigin-RevId: 881903111
[ { "path": "third_party/xla/xla/service/gpu/tests/BUILD", "patch": "@@ -855,10 +855,9 @@ xla_test(\n name = \"mock_custom_call_test\",\n srcs = [\"mock_custom_call_test.cc\"],\n backends = [\"gpu\"],\n- use_legacy_runtime = True,\n deps = [\n- \":gpu_codegen_test\",\n \"//xl...
2026-03-11T10:03:02
golang/go
a72a4295edf694395ba9d3b5e7c5393ebf6a415d
38ed6147485232f9562e87970c56f4491c082998
simd/archsimd: remove BUG note about type parameter After CL 742320, using vector type as type parameter now works. Updates #77444 Change-Id: I4f8cd2c9c18e04efbc884cb57dfcf9f2b48306d8 Reviewed-on: https://go-review.googlesource.com/c/go/+/742400 Reviewed-by: Michael Knyszek <mknyszek@google.com> Reviewed-by: Cherry ...
[ { "path": "src/simd/archsimd/doc.go", "patch": "@@ -58,6 +58,4 @@\n // allocate it in the heap, or put it in an aggregate type.\n package archsimd\n \n-// BUG(cherry): Using a vector type as a type parameter may not work.\n-\n // BUG(cherry): Using reflect Call to call a vector function/method may not w...
2026-02-05T16:45:22
kubernetes/kubernetes
0ce498ff21296f44dfa980d8679c0b7697e2d6b8
761638907a5ebe7fc2e85b2e1a5a43d7356e2cec
Fix deadlock when listeners get added before processing starts
[ { "path": "staging/src/k8s.io/client-go/tools/cache/shared_informer.go", "patch": "@@ -907,7 +907,8 @@ func (s *sharedIndexInformer) AddEventHandlerWithOptions(handler ResourceEventHa\n \tlistener := newProcessListener(logger, handler, resyncPeriod, determineResyncPeriod(logger, resyncPeriod, s.resyncCheckP...
2026-02-27T18:55:39
mrdoob/three.js
65bfbd8e51db937ecd5d4be7f2d93319f6e5ee97
a22c52faee0cb74f77eb277d1be27a7b4bdc83ef
fix-lint-issues (#31738) Co-authored-by: Samuel Rigaud <rigaud@gmail.com>
[ { "path": "examples/jsm/loaders/EXRLoader.js", "patch": "@@ -2515,7 +2515,7 @@ class EXRLoader extends DataTextureLoader {\n \t\t\t\t\t\tEXRDecoder.outputChannels = 1;\n \t\t\t\t\t\tEXRDecoder.decodeChannels = { R: 0 };\n \n-\t\t\t\t\t} else {\n+\t\t\t\t\t} else {\n \n \t\t\t\t\t\tinvalidOutput = true;\n \...
2025-08-25T12:29:15
swiftlang/swift
b7723845275562ff0b0e76d45c28e387ece36ab6
1bd2a8a982d4d6474f3a16ff19c1e9d4570182f8
[DebugInfo] No longer assign non-fixed-size types the size of a pointer `CompletedDebugTypeInfo::getFromTypeInfo` currently uses the storage type as the preferred source of size information. For address-only types (and any other type that has no fixed size at compile time), the storage type is always changed to a poin...
[ { "path": "lib/IRGen/DebugTypeInfo.cpp", "patch": "@@ -197,9 +197,14 @@ CompletedDebugTypeInfo::getFromTypeInfo(swift::Type Ty, const TypeInfo &Info,\n std::optional<Size::int_type> Size) {\n if (!Ty || Ty->hasTypeParameter())\n return {};\n- auto *StorageType ...
2026-02-27T09:09:57
denoland/deno
84f7a15a880d296faa7a71b108579159952197f8
4f22dcc1a0fbbd38474bd3774202ec3b7d47b3b2
fix(coverage): warn instead of erroring when source files are missing (#32398) When a source file is deleted after coverage was collected (e.g. a build artifact cleaned up before the report runs), `deno coverage` now prints a warning and skips the file instead of failing the entire report. Closes https://github.com/d...
[ { "path": "cli/tools/coverage/mod.rs", "patch": "@@ -620,7 +620,7 @@ pub fn cover_files(\n };\n let get_message = |specifier: &ModuleSpecifier| -> String {\n format!(\n- \"Failed to fetch \\\"{}\\\" from cache. Before generating coverage report, run `deno test --coverage` to ensure consistent s...
2026-03-02T13:20:28
mrdoob/three.js
112421f54d149d50674a4d684c8b7369a86b816f
503b410f3998ed2ab9f629e5df2ef08c973d04a7
fix types (#31733) Co-authored-by: Samuel Rigaud <rigaud@gmail.com>
[ { "path": "examples/jsm/loaders/HDRCubeTextureLoader.js", "patch": "@@ -148,7 +148,7 @@ class HDRCubeTextureLoader extends Loader {\n \t * Sets the texture type.\n \t *\n * @param {(HalfFloatType|FloatType)} value - The texture type to set.\n- * @return {HDRLoader} A reference to this loader.\n+ ...
2025-08-25T08:19:49
tensorflow/tensorflow
5c52a29593d4c1fa14b766e5089f3ef167adaa88
e315a4aea2629b528a5124a79ea357249e5d48c7
[XLA:GPU] Add flag validation for xla_gpu_experimental_max_unroll_factor. Also guard against bad flag values in gpu_fusible. Even if flag parsing has the validation logic, we can still have the case that the DebugOptions object was created without flag parsing. Fix one such case where DebugOptions was not initialized ...
[ { "path": "third_party/xla/xla/debug_options_flags.cc", "patch": "@@ -995,6 +995,17 @@ void MakeDebugOptionsFlags(std::vector<tsl::Flag>* flag_list,\n return true;\n };\n \n+ auto setter_for_unroll_factor =\n+ [debug_options](void (DebugOptions::*member_setter)(int32_t)) {\n+ retu...
2026-03-11T09:35:03
golang/go
38ed6147485232f9562e87970c56f4491c082998
ae842f71461ad178eff7283bc36e150fe284b9aa
cmd/compile: fix SIMD type parameter instantiation When a SIMD type is used to instantiate a type parameter, the SIMD's underlying type is its shape. This shape type must be marked as a SIMD type, otherwise, the backend will confuse and does not know how to put this SIMD type to proper registers. Fixing this by marki...
[ { "path": "src/cmd/compile/internal/types/type.go", "patch": "@@ -1683,6 +1683,9 @@ func (t *Type) SetUnderlying(underlying *Type) {\n \tif underlying.HasShape() {\n \t\tt.SetHasShape(true)\n \t}\n+\tif underlying.isSIMD {\n+\t\tsimdify(t, underlying.isSIMDTag)\n+\t}\n \n \t// spec: \"The declared type does...
2026-02-05T14:16:55
denoland/deno
4f22dcc1a0fbbd38474bd3774202ec3b7d47b3b2
b9f68895173ac6722006b38ab72268068cd4f284
fix(ext/node): use internal compileFunction binding in CJS wrap (#32373) Closes #32372 This PR replaces wrapping a CJS module into a function [here](https://github.com/denoland/deno/blob/0d2ef7c3b608350bda07279e845d8cabdedfac9e/ext/node/polyfills/01_require.js#L965-L968) with V8's [CompileFunction](https://v8.github....
[ { "path": "ext/node/lib.rs", "patch": "@@ -173,7 +173,6 @@ deno_core::extension!(deno_node,\n deps = [ deno_io, deno_fs ],\n parameters = [TInNpmPackageChecker: InNpmPackageChecker, TNpmPackageFolderResolver: NpmPackageFolderResolver, TSys: ExtNodeSys],\n ops = [\n- ops::assert::op_node_get_error_s...
2026-03-02T11:38:24
mrdoob/three.js
6b1b60284f364b681c3a8f5bd2215bc728fd4f5a
fd6a1bea903c1f86d4b04f8adac5468595f38397
Fix typo in textureHeight property (#31725)
[ { "path": "examples/webgl_mirror.html", "patch": "@@ -91,7 +91,7 @@\n \t\t\t\tgroundMirror = new Reflector( geometry, {\n \t\t\t\t\tclipBias: 0.003,\n \t\t\t\t\ttextureWidth: size.width,\n-\t\t\t\t\ttextureHeight: size.heignt,\n+\t\t\t\t\ttextureHeight: size.height,\n \t\t\t\t\tcolor: 0xb5b5b5\n \t\t\t\t} )...
2025-08-23T23:57:06
golang/go
ae842f71461ad178eff7283bc36e150fe284b9aa
824befbca0e862571dc1a449b1c8df1218e6c4b6
log/slog: correct method names in MultiHandler docs Fixes #77428 Change-Id: I02d76ac9220fb2e0df404e4a446953bc0b56475f Reviewed-on: https://go-review.googlesource.com/c/go/+/741560 Auto-Submit: Rhys Hiltner <rhys.hiltner@gmail.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.co...
[ { "path": "src/log/slog/multi_handler.go", "patch": "@@ -17,8 +17,8 @@ func NewMultiHandler(handlers ...Handler) *MultiHandler {\n }\n \n // MultiHandler is a [Handler] that invokes all the given Handlers.\n-// Its Enable method reports whether any of the handlers' Enabled methods return true.\n-// Its Hand...
2026-02-03T17:23:33
denoland/deno
759546d4bcd3c7c4ff298825eb01c6c79845422a
610143913437ee07c935821c365e4feaff875228
test: add regression test for catching error in require(esm) (#32352) Another test case for https://github.com/denoland/deno/issues/32279
[ { "path": "tests/specs/run/npm_pkg_requires_esm_js/__test__.jsonc", "patch": "@@ -1,5 +1,14 @@\n {\n- \"args\": \"run -A main.js\",\n- \"output\": \"output.out\",\n- \"exitCode\": 1\n+ \"tests\": {\n+ \"esm_file_loaded_via_require\": {\n+ \"args\": \"run -A main.js\",\n+ \"output\": \"outpu...
2026-03-02T11:22:14
mrdoob/three.js
fd6a1bea903c1f86d4b04f8adac5468595f38397
c0625c41bd47996d124dbf75ecd13515dbbccfa8
Examples: Add `webgpu_multiple_elements` (#31724) * fix/improve limits check * add `webgpu_multiple_elements` * Update webgpu_multiple_elements.html * Update webgpu_multiple_elements.jpg
[ { "path": "examples/files.json", "patch": "@@ -381,6 +381,7 @@\n \t\t\"webgpu_morphtargets\",\n \t\t\"webgpu_morphtargets_face\",\n \t\t\"webgpu_mrt\",\n+\t\t\"webgpu_multiple_elements\",\n \t\t\"webgpu_mrt_mask\",\n \t\t\"webgpu_multiple_rendertargets\",\n \t\t\"webgpu_multiple_rendertargets_readback\",", ...
2025-08-23T19:19:22
tensorflow/tensorflow
6272f91e47c51a8d4d9bf70b3249a6a3ea45e5ae
dbb21bcd9f5061aaf862e7f3554fc0f66ab7da00
[XLA:GPU] Avoid that DebugOptions is constructed without flag parsing. Re-enable the test on B200, it seems to work now. PiperOrigin-RevId: 881874126
[ { "path": "third_party/xla/xla/backends/gpu/codegen/BUILD", "patch": "@@ -210,7 +210,7 @@ xla_test(\n \"no_oss\",\n ],\n \"b200\": [\n- \"broken\",\n+ \"multi_gpu\",\n \"no_oss\",\n ],\n },", "additions": 1, "deletions": 1, ...
2026-03-11T08:51:50
kubernetes/kubernetes
1470f0ee076ccbb4d5351d8966b6c232a0b2d1c6
af7946ee238554b89992359bf01114a9e88f1bf9
fix: sort component names for deterministic output
[ { "path": "test/instrumentation/endpoint_mapping.go", "patch": "@@ -91,7 +91,15 @@ func (c *endpointMappingConfig) isSharedPath(filePath string) bool {\n }\n \n func (c *endpointMappingConfig) inferComponent(filePath string, components map[string][]string) string {\n-\tfor component, patterns := range compo...
2026-01-30T15:13:52
golang/go
824befbca0e862571dc1a449b1c8df1218e6c4b6
b8be5de81ee78f51fbd600498093b542e75a710e
bufio: fix doc link to Reset method On https://pkg.go.dev/bufio#Reader, the reference to the Reset method is rendered as [Reset]. Fix it by referring to the method via its type. Change-Id: I4256ca80ebef7b850e6a97b96503dd7178cb361b Reviewed-on: https://go-review.googlesource.com/c/go/+/736320 LUCI-TryBot-Result: Go LU...
[ { "path": "src/bufio/bufio.go", "patch": "@@ -30,7 +30,7 @@ var (\n \n // Reader implements buffering for an io.Reader object.\n // A new Reader is created by calling [NewReader] or [NewReaderSize];\n-// alternatively the zero value of a Reader may be used after calling [Reset]\n+// alternatively the zero v...
2026-01-14T11:54:22
denoland/deno
610143913437ee07c935821c365e4feaff875228
64a1d86cb06dcdba20b8b95b75b7fd00b0a40649
fix(ci): fix ordering of platforms in ecosystem_compat_slack (#32393) Results for macOS and linux were swapped
[ { "path": "tools/ecosystem_compat_slack.ts", "patch": "@@ -135,7 +135,7 @@ function createMessage(ecosystemReports: Record<string, EcosystemReport>) {\n },\n ];\n \n- for (const os of [\"darwin\", \"linux\", \"windows\"]) {\n+ for (const os of [\"linux\", \"darwin\", \"windows\"]) {\n ...
2026-03-02T11:15:05
mrdoob/three.js
c0625c41bd47996d124dbf75ecd13515dbbccfa8
36c9890a51885da017ee0dfea3052f09c108f9ba
KTX2Loader: Fix WebGPU feature detection. (#31721)
[ { "path": "examples/jsm/loaders/KTX2Loader.js", "patch": "@@ -191,10 +191,10 @@ class KTX2Loader extends Loader {\n \t\tthis.workerConfig = {\n \t\t\tastcSupported: await renderer.hasFeatureAsync( 'texture-compression-astc' ),\n \t\t\tastcHDRSupported: false, // https://github.com/gpuweb/gpuweb/issues/3856\...
2025-08-23T17:45:11
swiftlang/swift
d46a86e5b16e6b351a7a6b8b53f69bc182fb90e0
68768aeac321e67313a44e336750e3bff3a2642c
Sema: fix effects checking in witness matching A requirement defines the maximal effects that a witness can have. In some cases, we'd fail to properly reject such a witness with more effects, when that witness is valid for another requirement within that protocol. Thus, we'd hit an assertion failure in that case rath...
[ { "path": "include/swift/AST/Effects.h", "patch": "@@ -42,7 +42,18 @@ enum class EffectKind : uint8_t {\n Throws = 1 << 0,\n Async = 1 << 1,\n Unsafe = 1 << 2,\n+ LAST_EFFECT = Unsafe,\n };\n+namespace EffectKinds {\n+constexpr std::array<EffectKind, 3> all() {\n+ return {\n+ EffectKind::Throw...
2026-03-12T21:48:51
tensorflow/tensorflow
44389f3bcf563f80d097530a0ce549288004d73e
4d9aceb8b9821c65a08d2f467a3d9d2599ea7e06
Fix TFLite TopK V2 kernel handling of non-positive k. This CL addresses issues found by libc++ hardening when the input `k` to the TopK V2 operator is zero or negative. 1. **Corrected Output Sizing:** In `topk_v2.cc`, the `ResizeOutput` function now clamps the last dimension of the output tensors to be at least 0, u...
[ { "path": "tensorflow/lite/kernels/test_util.h", "patch": "@@ -800,8 +800,18 @@ class SingleOpModel {\n // Return a vector with the flattened contents of a tensor.\n template <typename T>\n std::vector<T> ExtractVector(int index) const {\n- const T* v = interpreter_->typed_tensor<T>(index);\n c...
2026-03-11T02:36:13
kubernetes/kubernetes
af7946ee238554b89992359bf01114a9e88f1bf9
b200cfc5de79d90b7fd45968e6aa1757bd039cbf
fix: path staging/src/k8s.io/component-base/metrics/prometheus/slis
[ { "path": "test/instrumentation/documentation/documentation-list.yaml", "patch": "@@ -7747,17 +7747,17 @@\n - type\n componentEndpoints:\n - component: cloud-controller-manager\n- endpoint: /metrics\n+ endpoint: /metrics/slis\n - component: kube-apiserver\n- endpoint: /metrics\n+ endpoin...
2026-01-30T14:03:52
golang/go
b8be5de81ee78f51fbd600498093b542e75a710e
d4febb45179fa99ee1d5783bcb693ed7ba14115c
runtime: clarify g object vs stack memory lifetime in HACKING.md The documentation states that g objects are "never freed" but does not clarify that goroutine stack memory is managed separately. This can be confusing as it might imply that all goroutine memory (including stacks) is retained indefinitely. Add a paragr...
[ { "path": "src/runtime/HACKING.md", "patch": "@@ -60,6 +60,14 @@ Every non-dead G has a *user stack* associated with it, which is what\n user Go code executes on. User stacks start small (e.g., 2K) and grow\n or shrink dynamically.\n \n+When a goroutine exits, its stack memory may be freed immediately or\n+...
2026-02-03T15:07:55
denoland/deno
64a1d86cb06dcdba20b8b95b75b7fd00b0a40649
cc8c488d03e2fe97fb6f90d2c13fc561a221a363
fix(coverage): correct line and branch counts in coverage reports (#32312) ## Summary Fixes three bugs in `deno coverage` that caused incorrect LCOV output (closes #9865): - **Line counts were inflated** due to summing all covering V8 ranges instead of using the innermost (most specific) range. V8 coverage ranges ar...
[ { "path": "cli/args/flags.rs", "patch": "@@ -1459,6 +1459,11 @@ static ENV_VARS: &[EnvVar] = &[\n description: \"Enable Node.js compatibility mode - extensionless imports, built-in\\nNode.js modules, CommonJS detection and more.\",\n example: None,\n },\n+ EnvVar {\n+ name: \"DENO_COVERAGE_DIR...
2026-03-02T11:09:31
mrdoob/three.js
36c9890a51885da017ee0dfea3052f09c108f9ba
5011da1ae6b2d4fc9f024d40b447ee150a86dc53
TSL: Refine `pow2/3/4` implementation and remove the polyfill for `pow` on Windows (#31720) * Change pow2, pow3, pow4 implementations, remove polyfill * Address non-integer powers of negative bases * E2E: Fix screenshot
[ { "path": "examples/webgpu_tsl_galaxy.html", "patch": "@@ -68,7 +68,7 @@\n \t\t\t\t\tsin( angle )\n \t\t\t\t).mul( radius );\n \n-\t\t\t\tconst randomOffset = range( vec3( - 1 ), vec3( 1 ) ).pow( 3 ).mul( radiusRatio ).add( 0.2 );\n+\t\t\t\tconst randomOffset = range( vec3( - 1 ), vec3( 1 ) ).pow3().mul( ra...
2025-08-23T14:23:18
tensorflow/tensorflow
4d9aceb8b9821c65a08d2f467a3d9d2599ea7e06
8d1d61bb3b9bb642d8f0ff632934c1dc915a6f86
Add test that exposes use-after-free on LocalRendezvous The receive cancellation callback does not preserve LocalRendezvous alive. thus it can access LocalRendezvous after it's being freed. A concrete scenario is: 1. Cancellation callback is starting/started, but have not yet acquired bucket.mu. 2. Send operation com...
[ { "path": "tensorflow/core/local_rendezvous_test.cc", "patch": "@@ -15,47 +15,90 @@ limitations under the License.\n \n #include \"tensorflow/core/framework/local_rendezvous.h\"\n \n+#include <atomic>\n #include <cstddef>\n+#include <memory>\n #include <thread> // NOLINT(build/c++11)\n #include <vector>\n ...
2026-03-11T02:35:06
golang/go
d4febb45179fa99ee1d5783bcb693ed7ba14115c
e2a34c7e9b04564ddad50bd7ec7b52fabde74192
crypto/tls: avoid data race when canceling a QUICConn's Context Methods on QUICConn are synchronous: The connection state is expected to change only in reaction to a user calling a QUICConn method, and the state change should finish completely before the method returns. The connection context provided to QUICConn.Sta...
[ { "path": "src/crypto/tls/conn.go", "patch": "@@ -1531,7 +1531,7 @@ func (c *Conn) handshakeContext(ctx context.Context) (ret error) {\n \tdefer cancel()\n \n \tif c.quic != nil {\n-\t\tc.quic.cancelc = handshakeCtx.Done()\n+\t\tc.quic.ctx = handshakeCtx\n \t\tc.quic.cancel = cancel\n \t} else if ctx.Done()...
2026-02-05T23:56:13
kubernetes/kubernetes
400743bdc3b68994f01e93708c5cd834bff698b0
0ed06f9d346326cb60f9e867e470ddb18fd764ea
field/errors: add TooLongCharacters error utility Signed-off-by: Bryce Palmer <bpalmer@redhat.com>
[ { "path": "staging/src/k8s.io/apimachinery/pkg/util/validation/field/errors.go", "patch": "@@ -346,6 +346,29 @@ func TooLong(field *Path, _ interface{}, maxLength int) *Error {\n \t}\n }\n \n+// TooLongCharacters returns a *Error indicating \"too long\". This is used to report that\n+// the given value is ...
2026-02-27T14:46:58
mrdoob/three.js
d40e7529cb2b45808b7caca6cce6a8f61b5cebd1
a3c3c2646af6271b06e5e0535bbdd52eb4d77114
TSL: Add texture offset feature (#31715) * TextureNode: Add offset node * E2E: Fix screenshot * Revert "E2E: Fix screenshot" This reverts commit bdf37a2f3d52275218371f05aead38b8db054a1d.
[ { "path": "src/nodes/accessors/Texture3DNode.js", "patch": "@@ -157,6 +157,19 @@ class Texture3DNode extends TextureNode {\n \n \t}\n \n+\t/**\n+\t * Generates the offset code snippet.\n+\t *\n+\t * @param {NodeBuilder} builder - The current node builder.\n+\t * @param {Node} offsetNode - The offset node to...
2025-08-23T04:01:47
denoland/deno
cc8c488d03e2fe97fb6f90d2c13fc561a221a363
59bec9b83ebe0241b813c8b93a280e879cc114a5
fix(node): implement process.umask properly (#32385) ## Summary - `process.umask()` was a stub that always returned `0o22` — now it actually gets/sets the process umask via `op_fs_umask` - Validates input with `parseFileMode` (supports numeric and octal string masks) - Masks off bits above `0o777` - Throws `ERR_WORKER...
[ { "path": "ext/fs/std_fs.rs", "patch": "@@ -43,12 +43,23 @@ impl FileSystem for RealFs {\n std::env::set_current_dir(path).map_err(Into::into)\n }\n \n- #[cfg(not(unix))]\n- fn umask(&self, _mask: Option<u32>) -> FsResult<u32> {\n- // TODO implement umask for Windows\n- // see https://github.c...
2026-03-02T11:00:05
swiftlang/swift
7476208b0b8cb65fc809d3ede9eb461021cf908e
d16105147790885aa1b2a8367328b284b2d5ec12
[flow-isolation] Split tests into actor, basic, class, enum, struct variants. The tests are getting big and this makes it a bit easier to work with. I also reflowed the error messages to make sure everything matches.
[ { "path": "test/Concurrency/flow_isolation_actor.swift", "patch": "@@ -0,0 +1,266 @@\n+// RUN: %target-swift-frontend -strict-concurrency=complete -swift-version 5 -parse-as-library -emit-sil -verify %s -o /dev/null\n+\n+////////////////////////\n+// MARK: Declarations //\n+////////////////////////\n+\n+@gl...
2026-03-11T20:15:52
golang/go
99d7121934a9cfa7963d3a9bfd840779fd2869f6
b8bccb97982a7dc340f64d0ad522843418db8810
cmd/link: add more clang driver flags when testing flag This changes does 2 things: - Move `-L` to `prefixesToKeep` since it allows providing a custom default libs search path. - Allow various flags that impact the behaviour of the clang driver. The latter allows for LLVM only toolchains to be compatible with linke...
[ { "path": "src/cmd/link/internal/ld/lib.go", "patch": "@@ -2208,20 +2208,30 @@ func trimLinkerArgv(argv []string) []string {\n \tflagsWithNextArgSkip := []string{\n \t\t\"-F\",\n \t\t\"-l\",\n-\t\t\"-L\",\n \t\t\"-framework\",\n \t\t\"-Wl,-framework\",\n \t\t\"-Wl,-rpath\",\n \t\t\"-Wl,-undefined\",\n \t}\n...
2025-12-16T23:53:01
tensorflow/tensorflow
3d7e5eeb537ee5e93c3aa98b98e8c78cd59def5e
f3e864d0b68ac07cfe3ad55634d76dd9e4998abc
[IFRT IR] Update ShardingParam docs to show valid ShardingParam examples. Simplify ShardingParam validation logic. This removes incorrect validation logic for unreduced_axes. Validation of unreduced_axes will be restored in a subsequent change. PiperOrigin-RevId: 881554741
[ { "path": "third_party/xla/xla/python/ifrt/ir/sharding_param.cc", "patch": "@@ -243,32 +243,13 @@ absl::Status ShardingParam::verify() const {\n axis_size, \"). Saw: \", unreduced));\n }\n }\n- int dim_index = 0;\n- int cum_size = 1;\n- for (int i = 0; i < minor_to_major().pe...
2026-03-10T19:01:53
mrdoob/three.js
a3c3c2646af6271b06e5e0535bbdd52eb4d77114
a656cbd8021ce1ce8670b7964c4962dccd01ede8
TSL: Fixed persistent reference of the first stack (#31717)
[ { "path": "src/nodes/core/NodeBuilder.js", "patch": "@@ -1575,7 +1575,9 @@ class NodeBuilder {\n \n \t\tthis.stack = stack( this.stack );\n \n-\t\tthis.stacks.push( getCurrentStack() || this.stack );\n+\t\tconst previousStack = getCurrentStack();\n+\n+\t\tthis.stacks.push( previousStack );\n \t\tsetCurrentS...
2025-08-23T03:23:31
denoland/deno
59bec9b83ebe0241b813c8b93a280e879cc114a5
77653251082b5b3d4aea2f62757a4b25155c3a31
fix(ext/node): make fsPromises.watch() a proper AsyncIterable with close() (#32378) ## Summary - The watcher returned by `node:fs/promises` `watch()` was a plain object with only `[Symbol.asyncIterator]`, missing `next()` and `return()` methods - The returned object now properly implements the `AsyncIterator` protocol...
[ { "path": "ext/node/polyfills/_fs/_fs_watch.ts", "patch": "@@ -171,26 +171,44 @@ export function watchPromise(\n });\n \n if (options?.signal) {\n- options?.signal.addEventListener(\"abort\", () => watcher.close());\n+ if (options.signal.aborted) {\n+ watcher.close();\n+ } else {\n+ o...
2026-03-02T10:48:08
kubernetes/kubernetes
f7bd739f225688833435fe295d17f2619f11bf55
d863fbe80b374c886453d23f7dfef60cac0f06e5
e2e: node: cpumanager: create helper creation function consolidate the pattern ``` pod = e2epod.NewPodClient(f).CreateSync(ctx, pod) podMap[string(pod.UID)] = pod ``` into a new helper function. More than reducing code duplication, this is to avoid bugs and leaks. Signed-off-by: Francesco Romani <fromani@redhat.com>
[ { "path": "test/e2e_node/cpu_manager_test.go", "patch": "@@ -132,6 +132,8 @@ var _ = SIGDescribe(\"CPU Manager\", ginkgo.Ordered, ginkgo.ContinueOnFailure, fra\n \t// closure just and only to not carry around awkwardly `f` and `onlineCPUs` only for logging purposes\n \tvar skipIfAllocatableCPUsLessThan func...
2026-02-27T13:46:37
swiftlang/swift
083029a112f09ed9115b2cb60042b899f2e5a8ca
ab7667d217e858fce74fa2ee5ef5476df0139f6a
[DebugInfo][Caching] Using CASID for bridging header PCH Fix the debug info emitted for bridging header PCH when compilation caching is used. This includes: * Bridging header should have the correct dwo_name that uses CASID * The search_path for PCH should be the cache key that can load the PCH just like other modul...
[ { "path": "include/swift/AST/IRGenOptions.h", "patch": "@@ -284,6 +284,9 @@ class IRGenOptions {\n /// Use self key as swift module cacke key\n bool DebugModuleSelfKey = false;\n \n+ /// The cache key for PCH.\n+ std::string BridgingPCHCacheKey;\n+\n /// The compilation directory for the debug info....
2026-03-03T16:43:11
mrdoob/three.js
3e184cdd14494f4cea1d0faeab1046438cc5a06d
0806d8d3732039c4716f3ff76dceee79ead3f5c8
Examples: Add WebGPU KTX2 test demo. (#31714) * Examples: Add WebGPU KTX2 test demo. * E2E: Fix screenshot.
[ { "path": "examples/files.json", "patch": "@@ -358,6 +358,7 @@\n \t\t\"webgpu_loader_gltf_sheen\",\n \t\t\"webgpu_loader_gltf_transmission\",\n \t\t\"webgpu_loader_materialx\",\n+\t\t\"webgpu_loader_texture_ktx2\",\n \t\t\"webgpu_materials\",\n \t\t\"webgpu_materials_alphahash\",\n \t\t\"webgpu_materials_ar...
2025-08-22T09:25:46
golang/go
b8bccb97982a7dc340f64d0ad522843418db8810
513bb875bc77b2a516ac56f7710d8fbcd6ba6359
cmd/compile: don't double-walk the map argument of clear mkcallstmt1 already walks the map argument of clear. mapClear then walks it again, which can cause problems if it is some syntax that is non-idempotent under walk. That is the case for the new way map lookups are being lowered in CL 736020. Fixes #77435 Chang...
[ { "path": "src/cmd/compile/internal/walk/range.go", "patch": "@@ -477,7 +477,7 @@ func mapClear(m, rtyp ir.Node) ir.Node {\n \t// instantiate mapclear(typ *type, hmap map[any]any)\n \tfn := typecheck.LookupRuntime(\"mapclear\", t.Key(), t.Elem())\n \tn := mkcallstmt1(fn, rtyp, m)\n-\treturn walkStmt(typeche...
2026-02-04T23:29:40
denoland/deno
77653251082b5b3d4aea2f62757a4b25155c3a31
63ff522af860629fed247062c6157dd776af649b
fix(ext/node): return first created path from recursive "node:fs" mkdir call (#32300) ## Summary - Fix `fs.mkdir()`, `fs.mkdirSync()`, and `fs/promises.mkdir()` with `{ recursive: true }` to return the first directory path created, matching Node.js behavior - When all directories already exist, correctly returns `und...
[ { "path": "ext/node/polyfills/_fs/_fs_mkdir.ts", "patch": "@@ -5,12 +5,83 @@\n \n import type { CallbackWithError } from \"ext:deno_node/_fs/_fs_common.ts\";\n import { promisify } from \"ext:deno_node/internal/util.mjs\";\n-import { denoErrorToNodeError } from \"ext:deno_node/internal/errors.ts\";\n+import...
2026-03-02T10:39:11
tensorflow/tensorflow
7c7e9b31a5bb8ab3165b7a4ea93895a282257f92
90ae937e8f660e6b0b8e91117c53187cede77cf0
Expose Megascale error handling and aggregation via pjrt extension. PiperOrigin-RevId: 881478898
[ { "path": "third_party/xla/xla/megascale/BUILD", "patch": "@@ -29,3 +29,10 @@ tf_proto_library(\n create_grpc_library = True,\n make_default_target_header_only = True,\n )\n+\n+tf_proto_library(\n+ name = \"megascale_runtime_error_overlay_proto\",\n+ srcs = [\"megascale_runtime_error_overlay.p...
2026-03-10T16:39:22
kubernetes/kubernetes
404f0f9b6d7e392fb4b6ffa8461b52bb852a9fa2
d863fbe80b374c886453d23f7dfef60cac0f06e5
OWNERS: propose ffromani as podresources API approver Add ffromani to podresources API approvers. ffromani was active in pretty much all the API fixes and enhancements since 2022, so it can help sig-node leads here. Signed-off-by: Francesco Romani <fromani@redhat.com>
[ { "path": "pkg/kubelet/apis/podresources/OWNERS", "patch": "@@ -0,0 +1,10 @@\n+# See the OWNERS docs at https://go.k8s.io/owners\n+\n+approvers:\n+ - sig-node-approvers # https://github.com/kubernetes/kubernetes/blob/master/OWNERS_ALIASES#LC220:~:text=sig%2Dnode%2Dapprovers\n+ - ffromani\n+reviewers:\n+ ...
2026-02-27T13:28:32
mrdoob/three.js
8c8479d48b62fc86329975591eb5966fd0b13221
7f848acd7dc54062c50fca749211ecea0af8742b
WebGLBackend: Fix manual clear with MSAA render targets. (#31705)
[ { "path": "src/renderers/webgl-fallback/WebGLBackend.js", "patch": "@@ -540,107 +540,8 @@ class WebGLBackend extends Backend {\n \t\t}\n \n \t\tthis._currentContext = previousContext;\n-\t\tconst renderTarget = renderContext.renderTarget;\n-\n-\t\tif ( renderContext.textures !== null && renderTarget ) {\n-\...
2025-08-22T08:25:11
swiftlang/swift
c72eab6be57c582bfc6f90884e8441640bce1990
f3f782d65c24ed453bd25ef45a34016558ebff21
Introduce performance hints for untyped throws Untyped throws requires a heap allocation and reference counting for thrown errors, which can be unacceptable in very performancce-constrained environments. Introduce a new subgroup of performance hints, UntypedThrows, to report uses of untyped throws. This resurrects th...
[ { "path": "include/swift/AST/DiagnosticGroups.def", "patch": "@@ -89,10 +89,12 @@ GROUP(StringInterpolationConformance,none,\"string-interpolation-conformance\")\n GROUP(TemporaryPointers,none,\"temporary-pointers\")\n GROUP(TrailingClosureMatching,none,\"trailing-closure-matching\")\n GROUP(UnknownWarningG...
2026-03-12T20:07:00
golang/go
997215446134152d8c3c53b3d052032475ef7cfa
f2e7fa6d31143b2d9fbb94df7aa05b3a0919d112
go/build: don't invoke go command when setting UseAllFiles Fixes #68556 Change-Id: I36b08577243a6b3a13b3adef116411d73a2d3428 Reviewed-on: https://go-review.googlesource.com/c/go/+/700337 Reviewed-by: Carlos Amedee <carlos@golang.org> Reviewed-by: Cherry Mui <cherryyz@google.com> Reviewed-by: Emmanuel Odeke <emmanuel@...
[ { "path": "src/go/build/build.go", "patch": "@@ -1139,7 +1139,7 @@ func (ctxt *Context) importGo(p *Package, path, srcDir string, mode ImportMode)\n \t// we must not being doing special things like AllowBinary or IgnoreVendor,\n \t// and all the file system callbacks must be nil (we're meant to use the loca...
2025-09-01T14:00:45
tensorflow/tensorflow
991f1c23596c7b25555daf64333d40c3d5237c06
7ca9c0f35518ebb156994b52446c0c9733edb554
Fix bug in AnalyzeDynamicUpdateSlice handler PiperOrigin-RevId: 881449491
[ { "path": "third_party/xla/xla/service/spmd/spmd_partitioner_test.cc", "patch": "@@ -15181,6 +15181,62 @@ TEST_P(SpmdPartitioningTest, DusOfBroadcastWithEnzymeOpt) {\n op::Shape(\"f32[20,40,50]\")));\n }\n \n+TEST_P(SpmdPartitioningTest, DusOfBroadcastWithEnzymeOptNotSinglePartitio...
2026-03-10T15:35:52
denoland/deno
63ff522af860629fed247062c6157dd776af649b
d428817aa77df5dfbcb9e62c6f9240c8b2086ce4
fix(node): preserve AsyncLocalStorage context in stream.finished callback (#32389) ## Summary - Snapshots the async context when `eos()` (the implementation behind `stream.finished`) is called and restores it around the callback invocation - In Node.js this context propagation happens automatically through the native ...
[ { "path": "ext/node/polyfills/internal/streams/end-of-stream.js", "patch": "@@ -3,6 +3,7 @@\n \n import process from \"node:process\";\n import { primordials } from \"ext:core/mod.js\";\n+import { core } from \"ext:core/mod.js\";\n import imported1 from \"ext:deno_node/internal/errors.ts\";\n import { kEmpt...
2026-03-02T10:26:23
kubernetes/kubernetes
c77b52f8657e3548683a38041649051372681b82
b55862975c3e40475cb65eb7d0a10693ba934366
dependencies: bump cadvisor to v0.56.2 Update github.com/google/cadvisor from v0.56.0 to v0.56.2. v0.56.2 fixes a nil pointer dereference when Docker GraphDriver is nil (https://github.com/google/cadvisor/pull/3816). Signed-off-by: Humble Devassy Chirammal <humble.devassy@gmail.com>
[ { "path": "go.mod", "patch": "@@ -29,7 +29,7 @@ require (\n \tgithub.com/go-logr/logr v1.4.3\n \tgithub.com/go-openapi/jsonreference v0.20.2\n \tgithub.com/godbus/dbus/v5 v5.2.2\n-\tgithub.com/google/cadvisor v0.56.0\n+\tgithub.com/google/cadvisor v0.56.2\n \tgithub.com/google/cel-go v0.26.0\n \tgithub.com/...
2026-02-27T07:22:37
mrdoob/three.js
3b15b35d26fe1b78c6191312aecd9008cb41d29b
43d3d5e56dd26ccf310a6df84a647ff8f3cadf87
ScreenNode: Fix update type of DPR. (#31706)
[ { "path": "src/nodes/display/ScreenNode.js", "patch": "@@ -26,7 +26,7 @@ class ScreenNode extends Node {\n \t/**\n \t * Constructs a new screen node.\n \t *\n-\t * @param {('coordinate'|'viewport'|'size'|'uv')} scope - The node's scope.\n+\t * @param {('coordinate'|'viewport'|'size'|'uv'|'dpr')} scope - The...
2025-08-21T15:51:44
golang/go
044fe174d7a45ab0c7872500de63e6c61b01bf27
f766b8da6c6e78bfbd549931ad44e0a2386a32ba
internal/stringslite: remove duplicate code in Index Merge two nearly identical loops into one by selecting the fallback method (IndexString vs IndexRabinKarp) inside the loop based on whether n <= bytealg.MaxLen. Fixes #77364# Change-Id: Iefbef60922ca24e4dda3016127f54290096bcfed Reviewed-on: https://go-review.googl...
[ { "path": "src/internal/stringslite/strings.go", "patch": "@@ -28,52 +28,15 @@ func IndexByte(s string, c byte) int {\n func Index(s, substr string) int {\n \tn := len(substr)\n \tswitch {\n-\tcase n == 0:\n+\tcase n == 0 || substr == s:\n \t\treturn 0\n \tcase n == 1:\n \t\treturn IndexByte(s, substr[0])\n...
2026-02-03T08:02:27
swiftlang/swift
8631532bd2b465ba1d2e7fcd94afdbdd4db578e2
f3f782d65c24ed453bd25ef45a34016558ebff21
Revert incorrect `@_alwaysEmitIntoClient` in #87495 (#87794) Removes incorrect and uncaught `@_alwaysEmitIntoClient` from a fileprivate function.
[ { "path": "stdlib/public/core/SmallString.swift", "patch": "@@ -267,7 +267,7 @@ extension _SmallString {\n // Overwrite stored code units, including uninitialized. `f` should return the\n // new count. This will re-establish the invariant after `f` that all bits\n // between the last code unit and the...
2026-03-12T17:54:17
denoland/deno
d428817aa77df5dfbcb9e62c6f9240c8b2086ce4
b4d4a5bc2192e4dcb3ae16319273d9ffa883c7d1
fix(jupyter): handle shutdown and interrupt requests per protocol (#32359) ## Summary - Send `shutdown_reply` on the control channel before exiting, with the `restart` field echoed back from the request - Handle `interrupt_request` by calling `v8::IsolateHandle::terminate_execution()` to actually interrupt running JS...
[ { "path": "cli/tools/jupyter/mod.rs", "patch": "@@ -180,12 +180,20 @@ pub async fn kernel(\n };\n let repl_session_proxy_channels = JupyterReplProxy { tx: tx1, rx: rx2 };\n \n+ let isolate_handle = repl_session_proxy\n+ .repl_session\n+ .worker\n+ .js_runtime\n+ .v8_isolate()\n+ .thread_...
2026-03-02T10:05:00
mrdoob/three.js
43d3d5e56dd26ccf310a6df84a647ff8f3cadf87
cd0540763a35c504a58740bbec67f51d5f9ac478
TSL: Fix type propagation in members (#31699)
[ { "path": "src/nodes/core/StructNode.js", "patch": "@@ -30,11 +30,11 @@ class StructNode extends Node {\n \n \t}\n \n-\tconstructor( structLayoutNode, values ) {\n+\tconstructor( structTypeNode, values ) {\n \n \t\tsuper( 'vec3' );\n \n-\t\tthis.structLayoutNode = structLayoutNode;\n+\t\tthis.structTypeNode...
2025-08-21T15:16:09
kubernetes/kubernetes
7d7b4c3dcbcee5dd9faba084df8326619ef5d63f
75626bcf3f3fa7dc898c67ade1dc440388b37253
DRA device taint tests: remove List+Watch workaround This was fixed in client-go itself, no workaround needed anymore.
[ { "path": "pkg/controller/devicetainteviction/device_taint_eviction_test.go", "patch": "@@ -25,7 +25,6 @@ import (\n \t\"slices\"\n \t\"strings\"\n \t\"sync\"\n-\t\"sync/atomic\"\n \t\"testing\"\n \t\"time\"\n \n@@ -44,7 +43,6 @@ import (\n \tmetav1 \"k8s.io/apimachinery/pkg/apis/meta/v1\"\n \t\"k8s.io/apim...
2026-02-17T15:32:31
golang/go
28fbdf7acb4146b5bc3d88128e407d1344691839
045d1270a7c299c6e40cccf3776860749abfe18e
cmd/go: fix pkg-config flag sanitization Implement a new pkg-config safe flag list (containing everything except for --log-file) and use that when checking flags passed to pkg-config, instead of using checkCompilerFlags. Fixes #77387 Change-Id: Id6141d0a2934053aa43e3aa8ce402bd499c4c028 Reviewed-on: https://go-review...
[ { "path": "src/cmd/go/internal/work/exec.go", "patch": "@@ -1797,10 +1797,7 @@ func (b *Builder) getPkgConfigFlags(a *Action, p *load.Package) (cflags, ldflags\n \t\t\t}\n \t\t}\n \n-\t\t// Running 'pkg-config' can cause execution of\n-\t\t// arbitrary code using flags that are not in\n-\t\t// the safelist....
2026-02-03T02:29:51
swiftlang/swift
569ec1c06f57b396cd06bf0b5a317e834586d660
7c1b4802c80e939fa7fb899b6776f659911aa009
Sema: Custom note with fixit for required init in classes
[ { "path": "include/swift/AST/DiagnosticsSema.def", "patch": "@@ -3941,6 +3941,12 @@ ERROR(unexportable_clang_function_type,none,\n \"it may use anonymous types or types defined outside of a module\",\n (Type))\n \n+NOTE(embedded_classes_require_export_interface_deinit,none,\n+ \"add a '@expo...
2026-02-27T20:45:54
denoland/deno
b4d4a5bc2192e4dcb3ae16319273d9ffa883c7d1
9c81a2306081a63be4cdbb94b24a2437d0956945
fix:(ext/node): escape simple quotes in node:child_process (#32336)
[ { "path": "ext/node/polyfills/internal/child_process.ts", "patch": "@@ -1284,13 +1284,15 @@ function transformDenoShellCommand(\n return a;\n })\n : result.deno_args.map((a) => {\n- // POSIX: args with shell variable refs use double quotes to\n- // preserve variable expansi...
2026-03-02T09:34:45
mrdoob/three.js
e1ea0a0cd74982d325a82b30cf5d3f9e89c7244b
7b2d917042221cb7be8e42bbcafff2f62c9f08aa
PointsNodeMaterial: Fix broken point rendering. (#31702) * PointsNodeMaterial: Fix broken point rendering. * E2E: Update screenshot.
[ { "path": "src/materials/nodes/PointsNodeMaterial.js", "patch": "@@ -1,14 +1,16 @@\n import SpriteNodeMaterial from './SpriteNodeMaterial.js';\n-import { viewportSize, screenSize } from '../../nodes/display/ScreenNode.js';\n+import { viewportSize, screenDPR } from '../../nodes/display/ScreenNode.js';\n impo...
2025-08-21T11:56:01
kubernetes/kubernetes
10f7c34c1642512d02995cd3b03635e356c003cd
1c6365cda0f2511bdfa5d7d939e171ce056d5761
added exceptions for StorageVersion.Spec , StorageVersion.Status , StorageVersionCondition.LastTransitionTime to be a pointer and StorageVersion.Spec and StorageVersion.Status to have omitempty tag
[ { "path": "hack/golangci-hints.yaml", "patch": "@@ -167,7 +167,16 @@ linters:\n path: \"staging/src/k8s.io/api/(admission|admissionregistration|apps|authentication|authorization|autoscaling|batch|certificates|coordination|core|discovery|events|extensions|flowcontrol|imagepolicy|networking|node|polic...
2026-02-27T03:30:07
golang/go
bd1b41eb8131a503a1a8d2fc41d3e79bce159468
01299a31c26b730785ac497da2ef7c593947d5d7
reflect, runtime: adjust user-created GCData on AIX On AIX the runtime adjusts the GCData field in getGCMaskOnDemand to account for the AIX dynamic loader moving the data section. That works fine for statically generated types, but it breaks user generated types. The user generated type will have a normal, correct, po...
[ { "path": "src/reflect/type.go", "patch": "@@ -2580,6 +2580,9 @@ func StructOf(fields []StructField) Type {\n \t\t// space to store it.\n \t\ttyp.TFlag |= abi.TFlagGCMaskOnDemand\n \t\ttyp.GCData = (*byte)(unsafe.Pointer(new(uintptr)))\n+\t\tif runtime.GOOS == \"aix\" {\n+\t\t\ttyp.GCData = adjustAIXGCData(...
2026-01-31T02:42:27
swiftlang/swift
74f82aadbaaa2a6046c5e0d0f99bbbcb4ec2b8ba
8d91bfb21daf4e1ee704b2d9db6184f995c94d27
Sema: Custom text for error on references to IOI from open classes in NLE
[ { "path": "include/swift/AST/DiagnosticsSema.def", "patch": "@@ -3893,6 +3893,7 @@ NOTE(construct_raw_representable_from_unwrapped_value,none,\n \"in an '@available' attribute here|\" \\\n \"in a property declaration marked public or in a '@frozen' or '@usableFromInline' context|\" \\\n \"...
2026-02-27T19:57:28
denoland/deno
9c81a2306081a63be4cdbb94b24a2437d0956945
16b2029c7bc723d81115e48a7f362cb680c7659b
fix(ext/console): support iterators in console.table (#32379) ## Summary - Fix `console.table` to properly display data when given iterator objects (e.g., `map.entries()`, `map.values()`, `set.values()`) - Previously iterators rendered as empty tables because `ObjectKeys` returns nothing useful for iterator objects - ...
[ { "path": "ext/web/01_console.js", "patch": "@@ -3741,8 +3741,12 @@ class Console {\n let resultData;\n const isSetObject = isSet(data);\n const isMapObject = isMap(data);\n+ const isIteratorObject = !isSetObject && !isMapObject &&\n+ !ArrayIsArray(data) && typeof data[SymbolIterator] ==...
2026-03-02T08:34:03
mrdoob/three.js
955946ef3bedb5a575a14e9dc90f601165bbce96
18128b8088a0f33cc3a0649bf411d1fe68edd9c7
WebGPUTextureUtils: Fix `rgb9e5ufloat ` usage and `rg11b10ufloat` constant value. (#31698) * WebGPUTextureUtils: Fix `RGB9E5UFloat` usage. * Fix `rg11b10ufloat` constant value.
[ { "path": "src/renderers/webgpu/utils/WebGPUConstants.js", "patch": "@@ -113,7 +113,7 @@ export const GPUTextureFormat = {\n \t// Packed 32-bit formats\n \tRGB9E5UFloat: 'rgb9e5ufloat',\n \tRGB10A2Unorm: 'rgb10a2unorm',\n-\tRG11B10UFloat: 'rgb10a2unorm',\n+\tRG11B10UFloat: 'rg11b10ufloat',\n \n \t// 64-bit ...
2025-08-20T21:39:24
tensorflow/tensorflow
9a3a7ac836058b7fb3c778b2f2ec74d6cb6aa2b8
0fb299289f22fe32c9aea1a274f5a78c28ed4f91
Remove deprecated DebugString on xla::ifrt::{Index,DomainIndex,Shape,DType,Sharding,ShardingSpec,ArraySpec}. PiperOrigin-RevId: 879209651
[ { "path": "third_party/xla/xla/backends/cpu/nanort/ifrt_client.cc", "patch": "@@ -395,8 +395,7 @@ class NanoArray final : public NanoValue<NanoArray, ifrt::Array> {\n }\n \n std::string DebugString() const override {\n- return absl::StrCat(\"NanoArray(\", dtype_.DebugString(), \", \",\n- ...
2026-03-05T21:04:58
golang/go
01299a31c26b730785ac497da2ef7c593947d5d7
1bbb78e7772e7530338e9f154936dc2479adafac
cmd/cgo: use objdir consistently, create it as needed Previously we added a slash to the end of objdir only after processing input files. The effect was that the temporary gcc output files were placed in /tmp, using objdir as a prefix. Those output files were not removed by anything. Now we consistently use objdir as...
[ { "path": "src/cmd/cgo/gcc.go", "patch": "@@ -24,6 +24,7 @@ import (\n \t\"math\"\n \t\"os\"\n \t\"os/exec\"\n+\t\"path/filepath\"\n \t\"slices\"\n \t\"strconv\"\n \t\"strings\"\n@@ -1795,7 +1796,7 @@ var n atomic.Int64\n \n func gccTmp() string {\n \tc := strconv.Itoa(int(n.Add(1)))\n-\treturn *objDir + \"...
2026-01-30T23:33:49
kubernetes/kubernetes
1c6365cda0f2511bdfa5d7d939e171ce056d5761
c0c06c9ac6c51c17b96739a7fcd4a19be6e2cf0e
lint: add granular exception for apiserverinternal Demonstrates the 1:1 migration strategy by enabling the 'apiserverinternal' API group and adding a specific exception for StorageVersionCondition.
[ { "path": "hack/golangci-hints.yaml", "patch": "@@ -164,7 +164,9 @@ linters:\n # optionalfields - Ignore optionalfields issues for existing API group\n # TODO: For each existing API group, we aim to remove it over time.\n - text: \"optionalfields: field .* should (?:be a pointer|have the o...
2025-12-22T17:27:03
mrdoob/three.js
18128b8088a0f33cc3a0649bf411d1fe68edd9c7
7c64dcfb1cc55df86fec09b50b200c1c9249f317
ShadowMapViewerGPU: Fix DepthTexture usage (#31673) * fix shadowmap viewer * cleanup * Update ShadowMapViewerGPU.js Flip the UVs and render with near white, far black. * revert demo --------- Co-authored-by: WestLangley <WestLangley@users.noreply.github.com>
[ { "path": "examples/jsm/utils/ShadowMapViewerGPU.js", "patch": "@@ -7,9 +7,10 @@ import {\n \tOrthographicCamera,\n \tPlaneGeometry,\n \tScene,\n-\tTexture\n+\tDepthTexture,\n+\tVector2\n } from 'three';\n-import { texture } from 'three/tsl';\n+import { uv, uniform, textureLoad } from 'three/tsl';\n \n /**\...
2025-08-20T15:40:51
denoland/deno
16b2029c7bc723d81115e48a7f362cb680c7659b
9cf58520ee80dd88777d3a97e59800163697d1d2
fix(ext/node): handle emoji width correctly in readline (#32383) ## Summary - Characters with the Unicode `Emoji_Presentation` property (like ⚡ U+26A1) are rendered as width 2 in terminals, but `getStringWidth` was returning 1 since they aren't classified as East Asian Wide. This caused cursor positioning issues in `n...
[ { "path": "ext/node/polyfills/internal/util/inspect.mjs", "patch": "@@ -286,6 +286,8 @@ const ansiPattern = \"[\\\\u001B\\\\u009B][[\\\\]()#;?]*\" +\n \"|(?:(?:\\\\d{1,4}(?:;\\\\d{0,4})*)?[\\\\dA-PR-TZcf-ntqry=><~]))\";\n const ansi = new SafeRegExp(ansiPattern, \"g\");\n \n+const reEmojiPresentation = ne...
2026-03-02T08:33:38
swiftlang/swift
b8459a8dbc2e0f8b4bb1003e638d0b8edc80fa6b
31417bba4c46ee6334d69b1d05d9de0c33fdb048
Merge pull request #86773 from aeu/61733-error-message-improvement-ii [Sema] Improve error message when attempting to pass `(some T)?` to `(any T)?`
[ { "path": "lib/Sema/CSSimplify.cpp", "patch": "@@ -1734,28 +1734,65 @@ static ConstraintSystem::TypeMatchResult matchCallArguments(\n }\n }\n \n- // If the argument is an existential type and the parameter is generic,\n- // consider opening the existential type.\n- if (auto type...
2026-03-12T16:21:10
tensorflow/tensorflow
667a185269ad85628eac7f79bb422b5eda0a9288
6d7c3d05c44ce1a4c36e5c89a8caeacaef4a0bf0
filewrapper: Replace custom FatalError with LOG(QFATAL) and absl::StrFormat. We don't need to do C shenanigans here anymore, so let's modernize a little. PiperOrigin-RevId: 879199065
[ { "path": "third_party/xla/xla/tsl/util/filewrapper.cc", "patch": "@@ -56,7 +56,6 @@ limitations under the License.\n #include <algorithm>\n #include <cassert>\n #include <cctype>\n-#include <cstdarg>\n #include <cstdlib>\n #include <cstring>\n #include <fstream>\n@@ -108,16 +107,6 @@ ABSL_FLAG(std::string,...
2026-03-05T20:39:48
golang/go
1bbb78e7772e7530338e9f154936dc2479adafac
a3688ab13e76762a168f43e91ca9422c847ee896
cmd/go: rewrite cgo names to "C." in compiler error messages We used to do this but it broke in Go 1.10. This restores the rewrite, but only applied to compiler output for packages that use cgo. That is all that the original rewrite applied to anyhow. Fixes #76339 Change-Id: Ife8ee858ddd0ff7bcc7423455b2eabf8381b7bde...
[ { "path": "src/cmd/cgo/internal/testerrors/errors_test.go", "patch": "@@ -72,7 +72,7 @@ func expect(t *testing.T, errors []*regexp.Regexp, files ...string) {\n \tdefer os.RemoveAll(dir)\n \n \tdst := filepath.Join(dir, strings.TrimSuffix(files[0], \".go\"))\n-\targs := []string{\"build\", \"-gcflags=-L -e\"...
2025-11-19T00:24:04
mrdoob/three.js
f163bfaec4a7e897edda9bc11db5d179c17cfdf4
ca3194a347118ff7b4fdd1414b6c7dd947df78b1
Examples: Add WebGPU check to some compute demos. (#31685) * Example: Add WebGPU check to some compute demos. * Examples: Clean up. * E2E: Add `webgpu_compute_birds` to exception list.
[ { "path": "examples/webgpu_compute_birds.html", "patch": "@@ -43,6 +43,7 @@\n \n \t\t\timport Stats from 'stats-gl';\n \t\t\timport { GUI } from 'three/addons/libs/lil-gui.module.min.js';\n+\t\t\timport WebGPU from 'three/addons/capabilities/WebGPU.js';\n \n \t\t\tlet container, stats;\n \t\t\tlet camera, s...
2025-08-20T08:10:57
denoland/deno
9cf58520ee80dd88777d3a97e59800163697d1d2
0d2ef7c3b608350bda07279e845d8cabdedfac9e
fix(node): implement `resolveObjectURL` for `node:buffer` (#32382) ## Summary - Implement missing `resolveObjectURL` export from `node:buffer` (#30950) - Fix `blobFromObjectUrl` to use `new Blob()` instead of `webidl.createBranded(Blob)` so that returned blobs can call `arrayBuffer()`/`text()`/`bytes()` without hittin...
[ { "path": "ext/node/polyfills/buffer.ts", "patch": "@@ -13,6 +13,7 @@ export {\n isUtf8,\n kMaxLength,\n kStringMaxLength,\n+ resolveObjectURL,\n SlowBuffer,\n transcode,\n } from \"ext:deno_node/internal/buffer.mjs\";", "additions": 1, "deletions": 0, "language": "Unknown" }, { ...
2026-03-02T08:12:03
kubernetes/kubernetes
71a7aeaff0f57dc53067c32f418f06c98cbbe7ee
e3642120630421d3d0756908fa4661a7d13c3aa4
Fix Deprecation message in doc comment Signed-off-by: Peter Engelbert <pmengelbert@gmail.com>
[ { "path": "pkg/generated/openapi/zz_generated.openapi.go", "patch": "@@ -69096,7 +69096,7 @@ func schema_kubectl_pkg_config_v1beta1_AllowlistEntry(ref common.ReferenceCallba\n \t\t\t\tProperties: map[string]spec.Schema{\n \t\t\t\t\t\"name\": {\n \t\t\t\t\t\tSchemaProps: spec.SchemaProps{\n-\t\t\t\t\t\t\tDes...
2026-02-26T21:30:03
swiftlang/swift
4493089aebc3f4d7ba515ca9e33cae226889f672
e11a5a9f61b65a57f7f1a65567cf243a9c7520df
[Caching] Support Profile build Fix build using profile data by setting up profiling data correctly through the VFS layer. rdar://172295490
[ { "path": "include/swift/Subsystems.h", "patch": "@@ -42,6 +42,7 @@ namespace llvm {\n class ObjectRef;\n }\n namespace vfs {\n+ class FileSystem;\n class OutputBackend;\n }\n }\n@@ -291,6 +292,7 @@ namespace swift {\n llvm::sys::Mutex *DiagMutex,\n ...
2026-03-11T17:37:07
golang/go
ae7b257f24736ec13100870c4dee59c5eb57f062
835d6d42c478a711708968cf0916d734940f88ee
cmd/compile: enhance astdump flag to also generate HTML AI-generated code, 3 merged commits, plus a LOT of hand cleanups and tweaks, including removing cargo-culted dead code from the SSA example, reorganizing CSS and JS out of a single giant comment, using defer appropriately to ensure balanced open/close tags, runni...
[ { "path": "src/cmd/compile/internal/gc/main.go", "patch": "@@ -47,6 +47,7 @@ import (\n // already been some compiler errors). It may also be invoked from the explicit panic in\n // hcrash(), in which case, we pass the panic on through.\n func handlePanic() {\n+\tir.CloseHTMLWriters()\n \tif err := recover(...
2026-01-30T06:46:05