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 | e2f2ebd1c4da42fd0ba9496d5730d2d1b87544db | d11bcc23b897982391339462d9054f8e105b1be8 | [utils] remove use of litConfig.quiet
https://github.com/swiftlang/llvm-project/pull/12338 removes the `quiet`
member of `LitConfig`, and instead calls to `note()` automatically
silence themselves if the diagnostic level is not verbose enough. Land
this first to prevent errors when the llvm-project PR lands. | [
{
"path": "test/lit.cfg",
"patch": "@@ -323,8 +323,7 @@ def inferSwiftBinary(binaryName):\n execPath = lit.util.which(binaryName, PATH)\n \n if execPath:\n- if not lit_config.quiet:\n- lit_config.note('using %s: %s' % (binaryName, execPath))\n+ lit_config.note('using %s: %s'... | 2026-02-12T19:46:47 |
mrdoob/three.js | 9d40e23976288b423aea678379b86aaa8fd56ebd | 241e8752a3cae918aeafdc6dc9ac8aa3141b86f1 | Update AssignNode.js
Fix typo. | [
{
"path": "src/nodes/core/AssignNode.js",
"patch": "@@ -3,7 +3,7 @@ import { addMethodChaining, nodeProxy } from '../tsl/TSLCore.js';\n import { vectorComponents } from '../core/constants.js';\n \n /**\n- * These node represents an assing operation. Meaning a node is assigned\n+ * These node represents an a... | 2024-12-01T22:31:07 |
denoland/deno | 6188ecc08d682592b585ab06d2fe560985c60dd9 | d21201e2a0c022db4d370c447ec44e224a8808ed | ci: remove wpt_epoch job (#31171)
This workflow is not useful anymore. It crashes constantly and requires
manual intervention with every change. Gonna switch to manual updates. | [
{
"path": ".github/workflows/wpt_epoch.yml",
"patch": "@@ -1,80 +0,0 @@\n-# This CI job runs every night and tests all versions of Deno (canary and latest\n-# stable) across all OSes we support against the `epochs/daily` branch of WPT.\n-\n-name: wpt_epoch\n-\n-on:\n- schedule:\n- # Every night at 0:30 ... | 2025-11-03T15:40:19 |
golang/go | bd4dc413cd80d3c160e875686e1be1eae5d48d4b | 30c047d0d06cdbc2983e86daaa3b0bc1afb86706 | cmd/compile: don't optimize away a panicing interface comparison
We can't do direct pointer comparisons if the type is not a
comparable type.
Fixes #76008
Change-Id: I1687acff21832d2c2e8f3b875e7b5ec125702ef3
Reviewed-on: https://go-review.googlesource.com/c/go/+/713840
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci... | [
{
"path": "src/cmd/compile/internal/ssa/rewrite.go",
"patch": "@@ -2626,7 +2626,7 @@ func rewriteStructStore(v *Value) *Value {\n \n // isDirectType reports whether v represents a type\n // (a *runtime._type) whose value is stored directly in an\n-// interface (i.e., is pointer or pointer-like).\n+// interf... | 2025-10-22T17:13:44 |
tensorflow/tensorflow | dc0840b72117fcd877dae10b4131b5f0876ee4c7 | ac373d39b5be4fd0a2a40a6af734069ba72d8797 | PR #34853: [xla:emitters][oneAPI] Enable math.log1p in MathToLLVMConversionPatterns
Imported from GitHub PR https://github.com/openxla/xla/pull/34853
📝 Summary of Changes
This PR fixes lowering `mlir::math::Log1pOp` on Intel GPU targets. The NVVM and ROCDL lower math.log1p directly via their GPU pattern sets, but he... | [
{
"path": "third_party/xla/xla/backends/gpu/codegen/emitters/transforms/tests/lower_math_oneapi.mlir",
"patch": "@@ -0,0 +1,15 @@\n+// RUN: emitters_opt %s --split-input-file \\\n+// RUN: --xla-lower-to-llvm-gpu=\"gpu_device_info='oneapi_compute_capability { architecture: \\\"bmg\\\"}'\" \\\n+// RUN: | Fi... | 2026-01-14T14:17:20 |
mrdoob/three.js | e0e5370367ec3debc526892b8da681d854754155 | 8ec7166ffefc8915e4d4f7a7de47b60a0922518c | Node: Document more modules. (#30001)
* Node: Document more modules.
* Docs: Fix typo.
* Docs: More clean up. | [
{
"path": "src/nodes/code/CodeNode.js",
"patch": "@@ -1,6 +1,13 @@\n import Node from '../core/Node.js';\n import { nodeProxy } from '../tsl/TSLBase.js';\n \n+/**\n+ * This class represents native code sections. It is the base\n+ * class for modules like {@link FunctionNode} which allows to implement\n+ * f... | 2024-12-01T11:46:21 |
denoland/deno | d21201e2a0c022db4d370c447ec44e224a8808ed | 361c83ea35b7f78b79b358e4458d8e0f68529f0d | fix(ext/node): implement `process:seteuid()` (#31160)
Closes #31144 | [
{
"path": "ext/node/lib.rs",
"patch": "@@ -458,6 +458,7 @@ deno_core::extension!(deno_node,\n ops::ipc::op_node_ipc_unref,\n ops::process::op_node_process_kill,\n ops::process::op_node_process_setegid<P>,\n+ ops::process::op_node_process_seteuid<P>,\n ops::process::op_process_abort,\n ... | 2025-11-03T14:30:21 |
golang/go | 30c047d0d06cdbc2983e86daaa3b0bc1afb86706 | 46e5e2b09a6df80a3b6472c5f7ca5739365b6676 | cmd/compile: extend loong MOV*idx rules to match ADDshiftLLV
Fixes #76085
I was focused on restoring the old behavior and fixing the failing
test/codegen/floats.go:index* tests.
It is probable this same bug hides elsewhere in this file.
Change-Id: Ibb2cb2be5c7bbeb5eafa9705d998a67380f2b04c
Reviewed-on: https://go-re... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/LOONG64.rules",
"patch": "@@ -611,15 +611,24 @@\n (MOVWstore [off] {sym} ptr (MOVWUreg x) mem) => (MOVWstore [off] {sym} ptr x mem)\n \n // register indexed load\n-(MOVVload [off] {sym} (ADDV ptr idx) mem) && off == 0 && sym == nil => (MOVVloadidx ptr idx mem)\n-... | 2025-10-28T09:48:18 |
kubernetes/kubernetes | 3532789fdb7c94f867a786326120749fc632774b | 9f6977db54084d766c1fec19f383bf509d7e8610 | Fix data race in kubelet pod allocated resources | [
{
"path": "pkg/kubelet/kubelet_pods.go",
"patch": "@@ -2151,7 +2151,7 @@ func (kl *Kubelet) convertStatusToAPIStatus(pod *v1.Pod, podStatus *kubecontaine\n }\n \n func getEffectiveAllocatedResources(allocatedPod *v1.Pod) *v1.ResourceRequirements {\n-\tallocatedResources := allocatedPod.Spec.Resources\n+\tal... | 2026-01-14T13:05:28 |
mrdoob/three.js | f81793c461b06e1667f1624a804802c84f0010ec | c9e64a1945e9b5e9b9fe7693e66edebe584eccb2 | Node: Document more modules. (#30000)
* Node: Document more modules.
* Node: More docs.
* Node: More docs.
* Docs: Minor fix.
* Docs: More fixes.
* Docs: Fix TODOs.
* Update AssignNode.js | [
{
"path": "src/nodes/core/AssignNode.js",
"patch": "@@ -2,6 +2,12 @@ import TempNode from '../core/TempNode.js';\n import { addMethodChaining, nodeProxy } from '../tsl/TSLCore.js';\n import { vectorComponents } from '../core/constants.js';\n \n+/**\n+ * These node represents an assing operation. Meaning a n... | 2024-11-30T17:47:47 |
tensorflow/tensorflow | ac373d39b5be4fd0a2a40a6af734069ba72d8797 | 1ba3e8d37c4ffca395c650015b602e4a6b388090 | [XLA:GPU] Refactor HloModuleConfig and DebugOptions usage in collective_ops_e2e_test.
The config should always be created with `GetModuleConfigForTest` and DebugOptions modified directly in the module config.
PiperOrigin-RevId: 856177701 | [
{
"path": "third_party/xla/xla/tests/collective_ops_e2e_test.cc",
"patch": "@@ -98,10 +98,9 @@ class CollectiveOpsTestE2E : public CollectiveOpsE2ETestBase {\n const int64_t kNumReplicas = 1;\n const int64_t kNumPartitions = 4;\n \n- HloModuleConfig config =\n- GetModuleConfigForTest(/*rep... | 2026-01-14T14:01:35 |
swiftlang/swift | fc8c2d43fc585642868e1ed0f26e9f016cd26ecf | b124eb9cb196d5100232e3ce9b79a064d15cbfb1 | Test Case Fix | [
{
"path": "lib/Sema/TypeCheckType.cpp",
"patch": "@@ -222,16 +222,6 @@ Type TypeResolution::resolveDependentMemberType(\n if (!genericSig)\n return ErrorType::get(baseTy);\n \n- if (baseTy->is<OpaqueTypeArchetypeType>()) {\n- if (!options.contains(TypeResolutionFlags::SilenceErrors)) {\n- ctx... | 2026-02-12T18:39:14 |
denoland/deno | 361c83ea35b7f78b79b358e4458d8e0f68529f0d | b04d451d48198370ff8a5e95ca31f587a8bae935 | fix(ext/node): implement `process.setegid()` (#31155)
Closes #31116 | [
{
"path": "Cargo.lock",
"patch": "@@ -2523,6 +2523,7 @@ dependencies = [\n \"libz-sys\",\n \"md-5\",\n \"md4\",\n+ \"nix 0.27.1\",\n \"node_resolver\",\n \"num-bigint\",\n \"num-bigint-dig\",",
"additions": 1,
"deletions": 0,
"language": "Unknown"
},
{
"path": "ext/node/Cargo.toml"... | 2025-11-03T13:27:53 |
golang/go | 46e5e2b09a6df80a3b6472c5f7ca5739365b6676 | 3da03566858a1676b7d928366db11e301c511b94 | runtime: define PanicBounds in funcdata.h
The comment in funcdata.h says that the constants must agree
with those in internal/abi/symtab.go. Make that so.
Change-Id: Ib64146bfb31fdecfc1cc6ae03ae746a1b4a4d22e
Reviewed-on: https://go-review.googlesource.com/c/go/+/715521
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-... | [
{
"path": "src/runtime/funcdata.h",
"patch": "@@ -12,6 +12,7 @@\n #define PCDATA_StackMapIndex 1\n #define PCDATA_InlTreeIndex 2\n #define PCDATA_ArgLiveIndex 3\n+#define PCDATA_PanicBounds 4\n \n #define FUNCDATA_ArgsPointerMaps 0 /* garbage collector blocks */\n #define FUNCDATA_LocalsPointerMaps 1",
... | 2025-10-27T23:51:01 |
mrdoob/three.js | a77056b4d067f4f0fdf23a9b44fe628c8f2487de | 20b97a426672146c9d5ead3c81a85e7a8b532fa6 | fix: minor grammar correction (#29999)
Signed-off-by: Saikat Dey <saikatdey2100@gmail.com> | [
{
"path": "docs/api/en/loaders/Loader.html",
"patch": "@@ -63,7 +63,7 @@ <h2>Methods</h2>\n \n \t\t<h3>[method:undefined load]()</h3>\n \t\t<p>\n-\t\t\tThis method needs to be implement by all concrete loaders. It holds the\n+\t\t\tThis method needs to be implemented by all concrete loaders. It holds the\n ... | 2024-11-30T11:50:49 |
kubernetes/kubernetes | a03ca7aa5a8e2f3d73a55f97b39e5d80a3b12eb5 | 9f6977db54084d766c1fec19f383bf509d7e8610 | Fix data race in kubelet status manager | [
{
"path": "pkg/kubelet/status/status_manager.go",
"patch": "@@ -823,7 +823,7 @@ func (m *manager) updateStatusInternal(logger klog.Logger, pod *v1.Pod, status v\n \n \t// ensure that the start time does not change across updates.\n \tif oldStatus.StartTime != nil && !oldStatus.StartTime.IsZero() {\n-\t\tsta... | 2026-01-13T15:12:12 |
tensorflow/tensorflow | 150e3d325a4f9ad03ae773e86ca4daea63c5bad6 | 6ae81d00c2763aeeb9bbeaea9762381d6fc0c102 | Enable scaled-dot for F4 inputs with F8 scales.
This change adds support for scaled-dot operations where the input operands are of type F4E2M1FN and the scales are of type F8E8M0FNU. It includes:
- Adding a test case in JAX's scaled_dot_test.py for F4 types.
- Adding a device test in Triton's fusion_emitter_device... | [
{
"path": "third_party/xla/xla/backends/gpu/codegen/triton/dot_algorithms.cc",
"patch": "@@ -120,9 +120,15 @@ absl::StatusOr<Value> ScaledDot(mlir::ImplicitLocOpBuilder& b,\n b, rhs_scale, b.getDenseI64ArrayAttr({1, 0}));\n }\n \n+ // When operand type is subbyte size then it is packed along mino... | 2026-01-14T10:44:19 |
swiftlang/swift | a8c5a0cc92a7d9e68ac363b7b0398a2594a2bc39 | e2f35d79cdbb06dd0f2837af919222ab0bdf2dad | LifetimeDependence: Fix mutable borrow printing
Use the '&' specifier for inout scoped dependence sources, since this is the
only kind of borrowed dependence they can have. | [
{
"path": "lib/AST/ASTPrinter.cpp",
"patch": "@@ -513,15 +513,32 @@ bool TypeTransformContext::isPrintingSynthesizedExtension() const {\n static std::string\n getLifetimeDependenceIdentifier(unsigned index,\n ArrayRef<AnyFunctionType::Param> params) {\n- // TODO: Print \"sel... | 2026-02-12T17:18:27 |
golang/go | 12c8d14d947ba922e19e3360ce5decd2bb848257 | 1f4d14e493516af6017ed9b467e7daf772752f98 | errors: document that the target of Is must be comparable
If target is not comparable, then errors.Is(err, target) can panic.
(Put another way, if target == target panics, then Is can panic.)
Document that the target must be comparable.
For #74488
Change-Id: I694dc4c91a608b80f044f06dd1c6ac32b8e77c9c
Reviewed-on: ht... | [
{
"path": "src/errors/wrap.go",
"patch": "@@ -25,6 +25,7 @@ func Unwrap(err error) error {\n }\n \n // Is reports whether any error in err's tree matches target.\n+// The target must be comparable.\n //\n // The tree consists of err itself, followed by the errors obtained by repeatedly\n // calling its Unwr... | 2025-10-27T19:27:12 |
denoland/deno | b04d451d48198370ff8a5e95ca31f587a8bae935 | d607e0b01c225fc7ae54e6fb18ce61dcbd70effd | fix(cli): make --eval-file flag work without equals sign (#31151) | [
{
"path": "cli/args/flags.rs",
"patch": "@@ -3434,7 +3434,7 @@ TypeScript is supported, however it is not type-checked, only transpiled.\"\n .long(\"eval-file\")\n .num_args(1..)\n .action(ArgAction::Append)\n- .require_equals(true)\n+ .use_value_delimiter(tru... | 2025-11-03T10:45:37 |
mrdoob/three.js | ffa7aa79d89ab860c7fc7e3714f369c46272bdbc | 3e54130c1d40595c544ff33308de8c6a9311b130 | Eslint: run fix with new rules (#29997)
Co-authored-by: Samuel Rigaud <srigaud@duodisplay.com> | [
{
"path": "editor/js/Loader.js",
"patch": "@@ -984,4 +984,4 @@ function Loader( editor ) {\n \n }\n \n-export { Loader };\n\\ No newline at end of file\n+export { Loader };",
"additions": 1,
"deletions": 1,
"language": "JavaScript"
},
{
"path": "editor/js/Sidebar.Material.js",
"patch... | 2024-11-29T22:19:56 |
golang/go | 2c91c33e88c68a5f6cc2f10296698faa305f6267 | 73d7635fae502f63a3774e1265f739bff8778113 | crypto/subtle,cmd/compile: add intrinsics for ConstantTimeSelect and *Eq
Targeting crypto/subtle rather than
crypto/internal/fips140/subtle after discussion with Filippo.
goos: linux
goarch: amd64
pkg: crypto/subtle
cpu: AMD Ryzen 5 3600 6-Core Processor
│ /tmp/old.logs │ /tmp/new.l... | [
{
"path": "src/cmd/compile/internal/ssagen/intrinsics.go",
"patch": "@@ -1602,6 +1602,36 @@ func initIntrinsics(cfg *intrinsicBuildConfig) {\n \t\t\treturn s.newValue1(ssa.OpZeroExt8to64, types.Types[types.TUINT64], out)\n \t\t},\n \t\tsys.AMD64)\n+\n+\t/******** crypto/subtle ********/\n+\t// We implement ... | 2025-10-26T21:19:30 |
tensorflow/tensorflow | 6a7d8800cb9496aa7f4aab7ef092973d60399d70 | d36752ce23acfae428ee4fd3c294c52ad2a4c7aa | [XLA:GPU] Improve error messages and test diagnostics in Triton support.
The CL enhances the error reporting in Triton support checks by providing more specific messages when a conversion or operation is not supported. This includes detailing the types involved and the reasons for the unsupported decision. Additionall... | [
{
"path": "third_party/xla/xla/backends/gpu/codegen/triton/support.cc",
"patch": "@@ -49,8 +49,8 @@ namespace gpu {\n \n namespace {\n \n-bool IsTritonSupportedDataType(PrimitiveType type,\n- const se::GpuComputeCapability& gpu_version) {\n+CodegenDecision IsTritonSupportedData... | 2026-01-14T10:06:28 |
denoland/deno | d607e0b01c225fc7ae54e6fb18ce61dcbd70effd | be1ede505bf138b65d45ecbaa1b46bbce1812af1 | fix(compile): support --preload flag in deno compile (#31152) | [
{
"path": "cli/lib/standalone/binary.rs",
"patch": "@@ -86,6 +86,7 @@ pub struct Metadata {\n pub env_vars_from_env_file: IndexMap<String, String>,\n pub workspace_resolver: SerializedWorkspaceResolver,\n pub entrypoint_key: String,\n+ pub preload_modules: Vec<String>,\n pub node_modules: Option<No... | 2025-11-03T10:41:27 |
mrdoob/three.js | d9c9920c285d724249f345c5dba4f06c158de4c4 | 17c59b2c3caa54a991f7b3b6319838da19cf5eb6 | OrbitControls: Add `keyRotateSpeed`. (#29988)
* feat: Add keyRotateSpeed to OrbitControls
This allows for setting a different speed of rotation when using the
keyboard vs when using a mouse. Similar in approach to the existing
keyPanSpeed.
* fix: reduce keyRotateSpeed down to 1 | [
{
"path": "docs/examples/en/controls/OrbitControls.html",
"patch": "@@ -141,6 +141,11 @@ <h3>[property:Float keyPanSpeed]</h3>\n \t\t\tHow fast to pan the camera when the keyboard is used. Default is 7.0 pixels per keypress.\n \t\t</p>\n \n+\t\t<h3>[property:Float keyRotateSpeed]</h3>\n+\t\t<p>\n+\t\t\tHow ... | 2024-11-29T17:11:24 |
golang/go | 9a77aa4f083f7458a29c7c13adfe3d2ca8c864ea | 77dc1380308f5129952c16b6940dea7ddd4e17b9 | cmd/compile: add position info to sccp debug messages
Change-Id: Ic568dd3b2e3ebebb1b6aaa41ee78a12d4e8d3f06
Reviewed-on: https://go-review.googlesource.com/c/go/+/714221
Reviewed-by: Michael Knyszek <mknyszek@google.com>
Auto-Submit: Jorropo <jorropo.pgm@gmail.com>
Reviewed-by: Keith Randall <khr@golang.org>
LUCI-TryBo... | [
{
"path": "src/cmd/compile/internal/ssa/sccp.go",
"patch": "@@ -4,10 +4,6 @@\n \n package ssa\n \n-import (\n-\t\"fmt\"\n-)\n-\n // ----------------------------------------------------------------------------\n // Sparse Conditional Constant Propagation\n //\n@@ -118,7 +114,7 @@ func sccp(f *Func) {\n \tcon... | 2025-10-25T20:08:59 |
tensorflow/tensorflow | d36752ce23acfae428ee4fd3c294c52ad2a4c7aa | b827cd9f3abee70dc9967265c204b6fbcec07280 | Fix a bug in the handling of DynamicSlice fusions.
The code was assuming that if the output shape is a tuple, there will be users
and those users will be GetTupleElement ops. However all that is needed is to
determine the buffer slices, and we can do that via the tuple by passing the
right ShapeIndex.
This bug was fou... | [
{
"path": "third_party/xla/xla/backends/gpu/codegen/custom.cc",
"patch": "@@ -1147,20 +1147,20 @@ CollectSliceArgumentMetadataForCollectives(\n }\n \n // Collect slice information for outputs.\n- PtrVec<const HloInstruction*> collective_results;\n+ std::vector<ShapeIndex> output_shape_indices;\n if ... | 2026-01-14T10:01:17 |
denoland/deno | be1ede505bf138b65d45ecbaa1b46bbce1812af1 | c31e3071b88bf2bf7c172f8f936c594239b37b72 | fix(ext/node): implement util.getSystemErrorMessage() (#31147)
Solution for https://github.com/denoland/deno/issues/31132 | [
{
"path": "ext/node/polyfills/_utils.ts",
"patch": "@@ -17,6 +17,7 @@ import { TextDecoder, TextEncoder } from \"ext:deno_web/08_text_encoding.js\";\n import { errorMap } from \"ext:deno_node/internal_binding/uv.ts\";\n import { codes } from \"ext:deno_node/internal/error_codes.ts\";\n import { ERR_NOT_IMPL... | 2025-11-03T10:24:06 |
kubernetes/kubernetes | c825d80bbf2c82666192c329478a686fa3a1d5dc | ce793bf4d66d3070f93a623d612745feefe368d9 | Update security-critical authentication and protobuf dependencies
This PR updates security-critical dependencies addressing authentication
and data parsing vulnerabilities.
**Authentication Security:**
- github.com/coreos/go-oidc: v2.3.0 -> v2.5.0
- Security fix: Now verifies token signature BEFORE validating paylo... | [
{
"path": "go.mod",
"patch": "@@ -18,10 +18,10 @@ require (\n \tgithub.com/blang/semver/v4 v4.0.0\n \tgithub.com/container-storage-interface/spec v1.9.0\n \tgithub.com/coredns/corefile-migration v1.0.29\n-\tgithub.com/coreos/go-oidc v2.3.0+incompatible\n+\tgithub.com/coreos/go-oidc v2.5.0+incompatible\n \tg... | 2026-01-11T21:50:37 |
mrdoob/three.js | 17c59b2c3caa54a991f7b3b6319838da19cf5eb6 | 2898f5b1ba10b1e94174c0a62d072f5f7b80442c | Update bug_report.yml
Update imports in WebGPU fiddles. | [
{
"path": ".github/ISSUE_TEMPLATE/bug_report.yml",
"patch": "@@ -36,8 +36,8 @@ body:\n value: |\n * [jsfiddle-latest-release WebGLRenderer](https://jsfiddle.net/3mrkqyea/)\n * [jsfiddle-dev WebGLRenderer](https://jsfiddle.net/gcqx26jv/)\n- * [jsfiddle-latest-release WebGPURender... | 2024-11-29T17:04:42 |
golang/go | 53be78630a25cfe53a1bf3e97e000bbe97848286 | dec2b4c83dd8b86b56e901f832819e76ff6969df | cmd/compile: use topo-sort in prove to correctly learn facts while walking once
Fixes #68857
Change-Id: Ideb359cc6f1550afb4c79f02d25a00d0ae5e5c50
Reviewed-on: https://go-review.googlesource.com/c/go/+/714920
Reviewed-by: Michael Knyszek <mknyszek@google.com>
Reviewed-by: Keith Randall <khr@golang.org>
Auto-Submit: Jo... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/allocators.go",
"patch": "@@ -122,6 +122,11 @@ func genAllocators() {\n \t\t\ttyp: \"[]ID\",\n \t\t\tbase: \"LimitSlice\",\n \t\t},\n+\t\t{\n+\t\t\tname: \"UintSlice\",\n+\t\t\ttyp: \"[]uint\",\n+\t\t\tbase: \"LimitSlice\",\n+\t\t},\n \t}\n \n \tw := new(bytes.... | 2025-10-25T15:00:18 |
denoland/deno | c31e3071b88bf2bf7c172f8f936c594239b37b72 | 552cb3df0562fe724da8a7b61d6b5d0ac1230796 | fix(ext/node): export ppid (#31137)
Fix #31135 | [
{
"path": "ext/node/polyfills/process.ts",
"patch": "@@ -75,6 +75,7 @@ export let arch = \"\";\n export let platform = isWindows ? \"win32\" : \"\"; // initialized during bootstrap\n \n export let pid = 0;\n+export let ppid = 0;\n \n let stdin, stdout, stderr;\n \n@@ -1027,7 +1028,7 @@ internals.__bootstrap... | 2025-10-31T08:58:53 |
tensorflow/tensorflow | af79ec85c3cdf4f10d3dfb33d3669d2e6f1fb8b3 | 6f525b84cd324a557c49df21310bf3411ae02384 | Re-landing the original change:
Have autotuner control the register spilling strategy rather than the ptx compiler
This is a continuation of the previous work to add register spilling information into Executable to be accessed by the caller. This CL now uses this information in order to discard (or keep) executable c... | [
{
"path": "third_party/xla/xla/backends/autotuner/BUILD",
"patch": "@@ -43,11 +43,13 @@ cc_library(\n \"//xla/service:dump\",\n \"//xla/service:executable\",\n \"//xla/service:shaped_buffer\",\n+ \"//xla/stream_executor:kernel_stats\",\n \"//xla/tools:hlo_decomposer_li... | 2026-01-14T08:51:32 |
mrdoob/three.js | 4f3e46246d4a8c3a24527136c7ab948447894c82 | f91fbc3db2d2f8f28882799bd2c340ac1414ea8d | WebGPURenderer: Add Missing Export `NodeAccess` (#29993)
* Examples: Fix webgpu_compute_texture_pingpong
* revert example and fix TSL export instead | [
{
"path": "src/Three.TSL.js",
"patch": "@@ -17,6 +17,7 @@ export const Loop = TSL.Loop;\n export const NodeShaderStage = TSL.NodeShaderStage;\n export const NodeType = TSL.NodeType;\n export const NodeUpdateType = TSL.NodeUpdateType;\n+export const NodeAccess = TSL.NodeAccess;\n export const PCFShadowFilter... | 2024-11-29T05:27:05 |
kubernetes/kubernetes | 6264b559c9d974de6fbb9abe5189c025840d13c7 | 76b76c2d523f29f3d57896309aba0422c736d93d | Fix flaky TestApplyCRDuringCRDFinalization test
This PR fixes the flaky TestApplyCRDuringCRDFinalization test that was failing
intermittently on slower systems (s390x architecture, race detector builds).
The root cause was a race condition where the test would attempt to apply a CR
immediately after requesting CRD de... | [
{
"path": "staging/src/k8s.io/apiextensions-apiserver/test/integration/finalization_test.go",
"patch": "@@ -23,13 +23,19 @@ import (\n \n \t\"github.com/stretchr/testify/require\"\n \n+\tapiextensionshelpers \"k8s.io/apiextensions-apiserver/pkg/apihelpers\"\n \tapiextensionsv1 \"k8s.io/apiextensions-apiserv... | 2026-01-13T19:08:50 |
golang/go | dec2b4c83dd8b86b56e901f832819e76ff6969df | 916e682d5167faad1bb961ec28cac74f05f145f7 | runtime: avoid bound check in freebsd binuptime
Fixes #76062
Change-Id: I683c1232aaeac12b0b3688472bb277adb95ad542
Reviewed-on: https://go-review.googlesource.com/c/go/+/715180
Reviewed-by: Keith Randall <khr@golang.org>
Auto-Submit: Cuong Manh Le <cuong.manhle.vn@gmail.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@... | [
{
"path": "src/runtime/vdso_freebsd.go",
"patch": "@@ -54,6 +54,9 @@ func binuptime(abs bool) (bt bintime) {\n \t\t}\n \n \t\tcurr := atomic.Load(&timekeepSharedPage.current) // atomic_load_acq_32\n+\t\tif curr >= uint32(len(timehands)) {\n+\t\t\treturn zeroBintime\n+\t\t}\n \t\tth := &timehands[curr]\n \t\... | 2025-10-27T09:47:20 |
denoland/deno | 552cb3df0562fe724da8a7b61d6b5d0ac1230796 | e83574015bbf09b4f6a3877ddb892637b3c09653 | fix(ext/node): respects `flag` option on `fs.readfile` and `fs.readfilesync` (#31129)
Closes #31099 | [
{
"path": "cli/rt/file_system.rs",
"patch": "@@ -546,6 +546,7 @@ impl sys_traits::BaseFsRead for DenoRtSys {\n // we should flip this so that the `deno_fs::FileSystem` implementation uses `sys_traits`\n // rather than this calling into `deno_fs::FileSystem`\n &CheckedPath::unsafe_new... | 2025-10-31T08:32:36 |
mrdoob/three.js | f91fbc3db2d2f8f28882799bd2c340ac1414ea8d | e2e04d3e93b9a7548c5361871bd7e088c4b0beef | WebGPURenderer: Shadow fixes (#29991)
* shadow revision
* cleanup
* cleanup
* rev | [
{
"path": "src/nodes/lighting/PointShadowNode.js",
"patch": "@@ -127,8 +127,8 @@ const pointShadowFilter = /*@__PURE__*/ Fn( ( { filterFn, depthTexture, shadowCo\n \tconst lightToPosition = shadowCoord.xyz.toVar();\n \tconst lightToPositionLength = lightToPosition.length();\n \n-\tconst cameraNearLocal = un... | 2024-11-29T04:15:16 |
tensorflow/tensorflow | 6f525b84cd324a557c49df21310bf3411ae02384 | 2bf160038801afc64b60ec591dcfd8e146202dcb | PR #34715: [onednn] Update onednn custom call name
Imported from GitHub PR https://github.com/openxla/xla/pull/34715
📝 Summary of Changes
Update custom_call op_name with target to easily differentiate diff onednn custom ops.
🎯 Justification
This will help debugging and viewing the ops in profile traceview. So, ins... | [
{
"path": "third_party/xla/xla/backends/cpu/runtime/onednn/onednn_op_thunk.cc",
"patch": "@@ -126,6 +126,8 @@ OneDnnOpThunk::OneDnnRuntime::Invoke(\n absl::StatusOr<std::unique_ptr<OneDnnOpThunk>> OneDnnOpThunk::Create(\n const std::string& custom_call_target, Info info, OpBuffers buffers,\n OneDnnO... | 2026-01-14T08:34:28 |
kubernetes/kubernetes | d576a57620bdbd87b1e254f4cc8215cb37dd51cb | 7e5c081339b21fa1a94e7529983cab3d17d1c414 | Fix staticcheck lint error in validation-gen
Remove unnecessary assignment to blank identifier. | [
{
"path": "staging/src/k8s.io/code-generator/cmd/validation-gen/validation.go",
"patch": "@@ -398,7 +398,7 @@ func (td *typeDiscoverer) discoverType(t *types.Type, fldPath *field.Path) (*typ\n \t\tif fldPath.String() != t.String() {\n \t\t\tpanic(fmt.Sprintf(\"path for type != the type name: %s, %s\", t.Str... | 2026-01-08T21:08:45 |
golang/go | 916e682d5167faad1bb961ec28cac74f05f145f7 | 2835b994fb8c7125180d912a457308d64a30542f | cmd/internal/obj, cmd/asm: reclassify the offset of memory access operations on loong64
This CL also fixes the encoding error of LL/SC[V] instruction and
adds the handling of offset greater than 16 bits in MOV{W/V}P instructions.
Change-Id: I7a8fab4b68a6839da81c5e59af1f42289d00ef61
Reviewed-on: https://go-review.goog... | [
{
"path": "src/cmd/asm/internal/asm/endtoend_test.go",
"patch": "@@ -467,6 +467,7 @@ func TestLOONG64Encoder(t *testing.T) {\n \ttestEndToEnd(t, \"loong64\", \"loong64enc3\")\n \ttestEndToEnd(t, \"loong64\", \"loong64enc4\")\n \ttestEndToEnd(t, \"loong64\", \"loong64enc5\")\n+\ttestEndToEnd(t, \"loong64\", ... | 2025-09-24T09:21:40 |
mrdoob/three.js | 65885027b7d22e03c2035f7af1c09fca5630621d | ada8ab47c79a2a494c69b9d4b33614df3cecc311 | Fix: webgl_renderer_pathtracer requiring lines (#29987)
* Added line material to path example
* Update webgl_renderer_pathtracer.html
Clean up.
---------
Co-authored-by: Michael Herzog <michael.herzog@human-interactive.org> | [
{
"path": "examples/webgl_renderer_pathtracer.html",
"patch": "@@ -60,7 +60,7 @@\n \t\t\timport { RGBELoader } from 'three/addons/loaders/RGBELoader.js';\n \t\t\timport { LDrawLoader } from 'three/addons/loaders/LDrawLoader.js';\n \t\t\timport { LDrawUtils } from 'three/addons/utils/LDrawUtils.js';\n-\n+\t\... | 2024-11-28T14:28:09 |
denoland/deno | 40de911154f38417a74eff7eb94c408b2a3f914d | 1b5f3112af364a3327b26f720746819c4f20f20d | fix(ext/net): support IPv6 zone indices in Deno.connect() (#31123)
Fixes https://github.com/denoland/deno/issues/30956 | [
{
"path": "runtime/permissions/lib.rs",
"patch": "@@ -9,6 +9,7 @@ use std::hash::Hash;\n use std::io::Write;\n use std::net::IpAddr;\n use std::net::Ipv6Addr;\n+use std::net::SocketAddr;\n use std::ops::Deref;\n use std::path::Path;\n use std::path::PathBuf;\n@@ -1443,6 +1444,16 @@ pub enum HostParseError {... | 2025-10-30T14:55:52 |
tensorflow/tensorflow | 9d37da58718b19fbc6f81fb1e96759c0a95c7525 | 66efacf2a1017e14c8000f2132695c6620066770 | Change proto fields from string to bytes to support non-UTF8 data.
This change updates the `opaque` field in `CustomCallThunkProto` and the `str` fields in XLA FFI attribute protos from `string` to `bytes`. This allows these fields to contain arbitrary byte sequences, including non-UTF8 data, without causing proto par... | [
{
"path": "third_party/xla/xla/backends/gpu/runtime/BUILD",
"patch": "@@ -848,7 +848,7 @@ xla_test(\n \"//xla/stream_executor:platform\",\n \"//xla/stream_executor:platform_manager\",\n \"//xla/stream_executor:stream\",\n- \"//xla/stream_executor:stream_executor_memory_allocat... | 2026-01-14T08:00:59 |
golang/go | d8a32f3d4b093d6a0d2235bf729bbef1d0b489d2 | b2af92270f5e19c759b94912470a32b5e44a5b2e | go/types, types2: wrap Named.fromRHS into Named.rhs
In debug mode, the Named.rhs method asserts that Named is in a state
with Named.fromRHS populated.
This caught a missing call to Named.unpack in validtype, which has been
added.
Change-Id: Id3f95f78f03d98a6efe87af6ac24f2ac2e285f96
Reviewed-on: https://go-review.goo... | [
{
"path": "src/cmd/compile/internal/types2/named.go",
"patch": "@@ -562,6 +562,16 @@ func (t *Named) methodIndex(name string, foldCase bool) int {\n \treturn -1\n }\n \n+// rhs returns [Named.fromRHS].\n+//\n+// In debug mode, it also asserts that n is in an appropriate state.\n+func (n *Named) rhs() Type {... | 2025-10-23T16:15:21 |
kubernetes/kubernetes | 7632fe7a9b557821b6e85faa9718c01a2ad9e18a | 9f6977db54084d766c1fec19f383bf509d7e8610 | Fix data race in kubelet container manager | [
{
"path": "pkg/kubelet/cm/container_manager_linux.go",
"patch": "@@ -652,9 +652,11 @@ func (cm *containerManagerImpl) Start(ctx context.Context, node *v1.Node,\n \t\tif err != nil {\n \t\t\treturn fmt.Errorf(\"failed to get rootfs info: %v\", err)\n \t\t}\n+\t\tcm.Lock()\n \t\tfor rName, rCap := range cadvi... | 2026-01-13T15:52:51 |
denoland/deno | 12a6585c663d91c68d5215abf1607dd30c12c320 | e770db547a0f08f297f7d1622e1c71d8cbcdb6b3 | fix(windows): strip periods and trailing slashes when normalizing paths (#31131)
This is specifically for the application code. Not for any JS APIs. | [
{
"path": "Cargo.lock",
"patch": "@@ -2720,9 +2720,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_path_util\"\n-version = \"0.6.3\"\n+version = \"0.6.4\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"a4f70f7cbc884556f08781aaa75aef177d15bfee99e4fc40c25fa74514c678... | 2025-10-29T19:29:44 |
golang/go | b2af92270f5e19c759b94912470a32b5e44a5b2e | 92decdcbaaef89e93163bb54885aa52fb5a13881 | go/types, types2: verify stateMask transitions in debug mode
Recently, we've changed the representation of Named type state from
an integer to a bit mask, which is a bit more complicated. To make
sure we uphold state invariants, we are adding a verification step
on each state transition.
This uncovered a few places w... | [
{
"path": "src/cmd/compile/internal/types2/named.go",
"patch": "@@ -215,7 +215,7 @@ func NewNamed(obj *TypeName, underlying Type, methods []*Func) *Named {\n // All others:\n // Effectively, nothing happens.\n func (n *Named) unpack() *Named {\n-\tif n.stateHas(unpacked | lazyLoaded) { // avoid locking belo... | 2025-10-22T18:04:09 |
tensorflow/tensorflow | 4ed8b56aa89ad992859e88a669e4aba4b669e4b8 | 6a2752a288664bbd2f3feaa7933d04dab399c8bd | [XLA] Fix stack frame metadata propagation in Shardy.
Reverts 68f1213e360d9336db73f64ee0e88843172aff70
PiperOrigin-RevId: 856065178 | [
{
"path": "third_party/xla/xla/hlo/translate/mhlo_to_hlo/location_exporter.cc",
"patch": "@@ -143,11 +143,6 @@ xla::OpMetadata CreateOpMetadataFromLocation(\n auto result = frame_index_builder->AddCallStackAndGetFirstFrameId(loc);\n if (result.last_frame_id != mlir::StackFrameIndexBuilder::kInvalidI... | 2026-01-14T07:46:14 |
mrdoob/three.js | 5855564118add18f405d0ca76fc55db4fd918e5f | 269e8920960d8c8974dcac6de892c86b47246748 | WebGPURenderer: Fix viewport/scissor after `copyFramebufferToTexture()` (#29978) | [
{
"path": "src/renderers/webgpu/WebGPUBackend.js",
"patch": "@@ -1539,7 +1539,7 @@ class WebGPUBackend extends Backend {\n \t\tencoder.copyTextureToTexture(\n \t\t\t{\n \t\t\t\ttexture: sourceGPU,\n-\t\t\t\torigin: { x: rectangle.x, y: rectangle.y, z: 0 }\n+\t\t\t\torigin: [ rectangle.x, rectangle.y, 0 ],\n... | 2024-11-27T06:12:38 |
kubernetes/kubernetes | 1abe2c4860a11469790464adfe7b8e775c34462c | 6b541e0b58950879975eecf58171c1d50cab93a9 | Fix credential test by setting AlwaysVerify policy
The test expects unauthorized pods to be blocked from accessing cached
private images, but the default policy (NeverVerifyPreloadedImages)
allows access to any image previously pulled by the kubelet.
Configure the kubelet to use AlwaysVerify policy for this test, whi... | [
{
"path": "test/e2e_node/image_credential_pulls.go",
"patch": "@@ -28,6 +28,7 @@ import (\n \tinternalapi \"k8s.io/cri-api/pkg/apis\"\n \truntimeapi \"k8s.io/cri-api/pkg/apis/runtime/v1\"\n \t\"k8s.io/kubernetes/pkg/features\"\n+\tkubeletconfig \"k8s.io/kubernetes/pkg/kubelet/apis/config\"\n \tadmissionapi ... | 2026-01-13T12:52:43 |
denoland/deno | e770db547a0f08f297f7d1622e1c71d8cbcdb6b3 | e39df87fabecc745bc12102c949f5f7dc95a3808 | fix(ext/node): implement StatementSync#columns() method (#31119)
Fixes https://github.com/denoland/deno/issues/31110 | [
{
"path": "ext/node/ops/sqlite/statement.rs",
"patch": "@@ -804,4 +804,130 @@ impl StatementSync {\n Ok(sql)\n }\n }\n+\n+ fn columns<'a>(\n+ &self,\n+ scope: &mut v8::PinScope<'a, '_>,\n+ ) -> Result<v8::Local<'a, v8::Array>, SqliteError> {\n+ v8_static_strings! {\n+ NAME = \"na... | 2025-10-29T10:22:29 |
golang/go | 189f2c08cc769fdc98d28ec536010b6f119e645f | f619b4a00d6a7ce2fbb84729cdfe764697cb2171 | time: rewrite IsZero method to use wall and ext fields
Using wall and ext fields will be more efficient.
Fixes #76001
Change-Id: If2b9f597562e0d0d3f8ab300556fa559926480a0
GitHub-Last-Rev: 4a91948413079047cb6c382ed29844f456f3064d
GitHub-Pull-Request: golang/go#76006
Reviewed-on: https://go-review.googlesource.com/c/g... | [
{
"path": "src/time/time.go",
"patch": "@@ -260,7 +260,11 @@ func (t *Time) mono() int64 {\n // IsZero reports whether t represents the zero time instant,\n // January 1, year 1, 00:00:00 UTC.\n func (t Time) IsZero() bool {\n-\treturn t.sec() == 0 && t.nsec() == 0\n+\t// If hasMonotonic is set in t.wall, t... | 2025-10-27T04:43:32 |
mrdoob/three.js | 269e8920960d8c8974dcac6de892c86b47246748 | 92e60c28b2a7aa0fd7024f09b74318017837ef2c | NodeMaterial: Fix `getAlphaHashThreshold()` properties conflict (#29977)
* Fix `getAlphaHashThreshold()` properties conflict
* cleanup | [
{
"path": "src/nodes/functions/material/getAlphaHashThreshold.js",
"patch": "@@ -24,41 +24,47 @@ const getAlphaHashThreshold = /*@__PURE__*/ Fn( ( [ position ] ) => {\n \tconst maxDeriv = max(\n \t\tlength( dFdx( position.xyz ) ),\n \t\tlength( dFdy( position.xyz ) )\n-\t).toVar( 'maxDeriv' );\n+\t);\n \n \... | 2024-11-27T06:01:23 |
tensorflow/tensorflow | 6ab7c15751b8cea3430f932af53006b814a8510e | 8e1584e8d6d30759ab2319ef3829ed4783bff38b | [PJRT:Transpose] Fix some use of uninitialized values in the tests.
Some of the unit tests weren't setting these values, yet the code being tested inspected their values. This was a test-only problem; the non-test entry points cannot hit this case.
PiperOrigin-RevId: 855958446 | [
{
"path": "third_party/xla/xla/pjrt/transpose.h",
"patch": "@@ -302,10 +302,10 @@ class TransposePlan {\n int num_chunks_requested_ = 1;\n \n // Size of each element in bytes.\n- int64_t elem_size_in_bytes_;\n+ int64_t elem_size_in_bytes_ = 0;\n \n // Number of elements in the input array.\n- int64... | 2026-01-14T02:04:22 |
swiftlang/swift | 29c262644838999741866dd0bcae562448dc7352 | 3212a913c9445bcd9ecdac0190686314994c54a4 | attempt to fix test failure on Ubuntun LTS 22.x (supected no glibc frame pointers) | [
{
"path": "test/Backtracing/CrashWithThreadsLinux.swift",
"patch": "@@ -45,7 +45,7 @@ func lockMutex() {\n \n func unlockMutex() {\n guard unsafe pthread_mutex_unlock(mutex) == 0 else {\n- fatalError(\"pthread_mutex_lock failed\")\n+ fatalError(\"pthread_mutex_unlock failed\")\n }\n }\n \n@@ -91,9... | 2026-02-12T13:27:16 |
denoland/deno | 1b07f0295dd91f393966f953099ee90505a97e50 | e90b29375a7aff541892c22214eebb6e95d2c6be | fix(windows): re-allow spawning bat and cmd files (#31118) | [
{
"path": "ext/process/lib.rs",
"patch": "@@ -752,26 +752,6 @@ 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-28T20:39:35 |
mrdoob/three.js | 92e60c28b2a7aa0fd7024f09b74318017837ef2c | 96e51490862588919f17aa2960e929ee1176f6ed | WebGPURenderer: Fix integer uniforms (#29976)
* WebGPU: Fix integer uniforms (#29952)
* Update WebGPU Compute Attractors Particles Demo to use uint uniform for number of attractors | [
{
"path": "examples/webgpu_tsl_compute_attractors_particles.html",
"patch": "@@ -82,7 +82,7 @@\n \t\t\t\t\tnew THREE.Vector3( 0, 1, 0 ),\n \t\t\t\t\tnew THREE.Vector3( 1, 0, - 0.5 ).normalize()\n \t\t\t\t] );\n-\t\t\t\tconst attractorsLength = uniform( attractorsPositions.array.length );\n+\t\t\t\tconst att... | 2024-11-26T15:24:53 |
golang/go | ca379b1c562c22889b73a17915688e35cbb5ceb9 | 83a44bde645eb56495504a2d3845fa1c1ccf7aa5 | cmd/go: remove loaderstate dependency
This change removes the dependency on the module loader state from the
`QueryMatchesMainModulesError.Error()` method.
This commit is part of the overall effort to eliminate global
modloader state.
Change-Id: I47241587a0bf9b578931628f35ed3b936a0cb04a
Reviewed-on: https://go-revie... | [
{
"path": "src/cmd/go/internal/modget/get.go",
"patch": "@@ -735,7 +735,12 @@ func (r *resolver) queryNone(loaderstate *modload.State, ctx context.Context, q\n \t\t\t\t// However, neither of those behaviors would be consistent with the\n \t\t\t\t// plain meaning of the query. To try to reduce confusion, rej... | 2025-10-24T16:52:37 |
denoland/deno | 58f21ae59765c40e99dcb6d94d0b449cc6601abd | ee6c66b9e9b8277327811564a34124b109927bd3 | fix(ext/node): inconsistent error message thrown by AssertionError (#31089)
Closes #31082 | [
{
"path": "ext/node/lib.rs",
"patch": "@@ -551,8 +551,6 @@ deno_core::extension!(deno_node,\n \"_util/async.ts\",\n \"_util/os.ts\",\n \"_util/std_asserts.ts\",\n- \"_util/std_fmt_colors.ts\",\n- \"_util/std_testing_diff.ts\",\n \"_utils.ts\",\n \"_zlib_binding.mjs\",\n \"asser... | 2025-10-28T08:51:09 |
tensorflow/tensorflow | a6db3e995244f129dc8ba49e37ccbd04731b0347 | 052c13f918e6884297577a369fe284c2e86dafc8 | Google-internal flake fix: Spin up and tear down proxy once per `RUN_ALL_TESTS()`.
PiperOrigin-RevId: 855942342 | [
{
"path": "third_party/xla/xla/python/ifrt_proxy/integration_tests/BUILD",
"patch": "@@ -20,46 +20,21 @@ package(\n default_visibility = [\"//visibility:private\"],\n )\n \n-cc_library(\n- name = \"register_pjrt_cpu_for_ifrt_api_tests\",\n- testonly = True,\n- srcs = [\"register_pjrt_cpu_for_if... | 2026-01-14T01:02:21 |
golang/go | 0afbeb510269dc4aaaff733166085eba42144712 | 7b506d106fce234b165ea6322e5ee1356490220e | runtime: add ppc and s390 to linux 32 bits syscall build constraints for gccgo
Theses are not supported by the go compiler but it may helps porting to gccgo.
This is similar to reverting CL 712740 however unlike reverting:
- it fixes the build tags so that 32 & 64 bits
constraints are complement of each other
- it ... | [
{
"path": "src/runtime/os_linux_futex32.go",
"patch": "@@ -2,7 +2,7 @@\n // Use of this source code is governed by a BSD-style\n // license that can be found in the LICENSE file.\n \n-//go:build linux && (386 || arm || mips || mipsle)\n+//go:build linux && (386 || arm || mips || mipsle || (gccgo && (ppc || ... | 2025-10-23T08:47:58 |
denoland/deno | ee6c66b9e9b8277327811564a34124b109927bd3 | ec9de01efdc65b3b04b8fe42ba7444d668ae9eb0 | fix(ext/node): handle empty writes in chunked HTTP requests (#31066) | [
{
"path": "ext/node/polyfills/_http_outgoing.ts",
"patch": "@@ -561,6 +561,10 @@ Object.defineProperties(\n });\n }\n });\n+ } else {\n+ // For empty writes, call callback and emit drain to maintain flow control\n+ callback?.();\n+ this.emit(\"drain\")... | 2025-10-28T01:38:49 |
tensorflow/tensorflow | 1ff922748cc6d4dc8ba5d934d35e61aea6742da7 | 846a34bd18b4e6f1e92dc95f119f62d6e6862d69 | Introduce and instrument the E1200 error code for Compile Time Host Offload Output location mismatch errors.
PiperOrigin-RevId: 855934942 | [
{
"path": "third_party/xla/xla/error/error_codes.h",
"patch": "@@ -86,6 +86,8 @@ namespace xla::error {\n X(\"E0103\", RuntimeUnexpectedCoreHalt, absl::StatusCode::kInternal) \\\n X(\"E1000\", CompileTimeHbmOom, absl::StatusCode::kResourceExhausted) \\\n X(\"E1001\", CompileTimeScoped... | 2026-01-14T00:38:46 |
mrdoob/three.js | de7c7c82a8f195c0d1280a4c4a50bd5845f12ef6 | a0a25ea032029951ba50622be4277af87170feaa | Audio: Override copy and clone methods to include missing properties (#29960)
* fix: override Audio's clone and copy methods to avoid missing listener
Co-Authored-By: Jian-Nam <jeeahn2929@gmail.com>
* fix: include filters property in copy method
---------
Co-authored-by: Jian-Nam <jeeahn2929@gmail.com> | [
{
"path": "src/audio/Audio.js",
"patch": "@@ -396,6 +396,44 @@ class Audio extends Object3D {\n \n \t}\n \n+\tcopy( source, recursive ) {\n+\n+\t\tsuper.copy( source, recursive );\n+\n+\t\tthis.autoplay = source.autoplay;\n+\n+\t\tthis.buffer = source.buffer;\n+\t\tthis.detune = source.detune;\n+\t\tthis.lo... | 2024-11-26T09:08:04 |
swiftlang/swift | 5c37f6d44e0afe776c08c7d89af5c089598563c1 | 981e357baa70f9203aae3dd363c1ffcd100dd4dd | [stdlib] Fix typo in Task+TaskExecutor doc comment | [
{
"path": "stdlib/public/Concurrency/Task+TaskExecutor.swift",
"patch": "@@ -25,7 +25,7 @@ import Swift\n /// For an in depth discussion of this topic, see ``TaskExecutor``.\n ///\n /// ### Disabling task executor preference\n-/// Passing `nil` as executor means disabling any preference preference (if it wa... | 2026-02-12T12:28:29 |
kubernetes/kubernetes | 900a8030f33ad997471d2fdf1d8eae7093988951 | 477b99a8d880847938c141239bafdfc35eee45bb | test: fix kind local registry config for kms ci jobs
Signed-off-by: Anish Ramasekar <anish.ramasekar@gmail.com> | [
{
"path": "test/e2e/testing-manifests/auth/encrypt/kind.yaml",
"patch": "@@ -3,11 +3,14 @@ apiVersion: kind.x-k8s.io/v1alpha4\n # this containerd config patch sets the registry to the local registry where we push mock kms provider\n containerdConfigPatches:\n - |-\n- [plugins.\"io.containerd.grpc.v1.cri\".... | 2026-01-12T20:58:43 |
golang/go | 9926e1124e5dd6397f16f36456aedbee101bc6f3 | 2c4fd7b2cd08234fe13c0e9de8d42dba33086a81 | cmd/go: use local state object in `bug.runBug`
This commit modifies `bug.runBug` to construct a new modload.State
object using the new constructor instead of the current global
`modload.LoaderState` variable.
This commit is part of the overall effort to eliminate global
modloader state.
[git-generate]
cd src/cmd/go/... | [
{
"path": "src/cmd/go/internal/bug/bug.go",
"patch": "@@ -42,16 +42,17 @@ func init() {\n }\n \n func runBug(ctx context.Context, cmd *base.Command, args []string) {\n+\tmoduleLoaderState := modload.NewState()\n \tif len(args) > 0 {\n \t\tbase.Fatalf(\"go: bug takes no arguments\")\n \t}\n-\twork.BuildInit(... | 2025-10-08T23:56:51 |
denoland/deno | ec9de01efdc65b3b04b8fe42ba7444d668ae9eb0 | 202a8c054b99507a0dd0f1bfc61b81f002f84320 | fix(ext/http): display localhost url once on windows (#31088) | [
{
"path": "ext/http/00_serve.ts",
"patch": "@@ -933,7 +933,8 @@ function serveInner(options, handler) {\n const host = formatHostName(addr.hostname);\n \n const url = `${scheme}${host}:${addr.port}/`;\n- const helper = addr.hostname === \"0.0.0.0\" || addr.hostname === \"::\"\n+ const ... | 2025-10-27T19:22:23 |
mrdoob/three.js | a0a25ea032029951ba50622be4277af87170feaa | c19aa1956e4c77d245c79fe54a25a244dd188f3f | WebGPUAttributeUtils: fix updateAttribute() when using range (#29966) (#29967)
* WebGPUAttributeUtils: fix updateAttribute() when using range (#29966)
* WebGPUAttributeUtils: handle ArrayBuffer and DataView
---------
Co-authored-by: Niklas Niehus <nni@demodern.de>
Co-authored-by: Renaud Rohlinger <renaud.roh... | [
{
"path": "src/renderers/webgpu/utils/WebGPUAttributeUtils.js",
"patch": "@@ -108,6 +108,7 @@ class WebGPUAttributeUtils {\n \t\tconst buffer = backend.get( bufferAttribute ).buffer;\n \n \t\tconst array = bufferAttribute.array;\n+\t\tconst isTypedArray = this._isTypedArray( array );\n \t\tconst updateRange... | 2024-11-26T03:30:42 |
tensorflow/tensorflow | ae5398e26546d4b26e33132026c9caddd89c861c | 3a5f47126f55b25e5ae1e8f2265471b66125067e | style: fix all pylint line-too-long and indentation issues | [
{
"path": "tensorflow/python/ops/array_ops.py",
"patch": "@@ -5572,8 +5572,8 @@ def tensor_scatter_nd_update(tensor, indices, updates, name=None):\n the index vectors each point to scalars in `tensor` and each update is a\n scalar.\n * If the length of the index vectors is less than the rank of `t... | 2026-01-13T23:02:52 |
swiftlang/swift | 021ece1c3efc466f045d89595f93b88394ca20e1 | 0f62d49b31217108f0fabbbbc73cd049f14cdaa2 | [CS] Replace errors with holes in requirements
Substitution failure may produce an ErrorType, replace with a hole to
avoid letting ErrorTypes into the constraint system. | [
{
"path": "lib/Sema/CSSimplify.cpp",
"patch": "@@ -9025,7 +9025,12 @@ ConstraintSystem::SolutionKind ConstraintSystem::simplifyConformsToConstraint(\n loc,\n LocatorPathElt::ConformanceRequirement(conformance.getConcrete()));\n \n- for (const auto &req : conformance.getConditionalRe... | 2026-02-08T15:58:30 |
golang/go | ccf4192a313ec46380c70369537085eacaa17fa8 | f5403f15f021521ed82d91e8f28a6865d9aeab34 | cmd/go: make ImportMissingError work with local state
This change adds fields to the type `ImportMissingError` so
that the `Error()` method can be called without accessing the global
`LoaderState` variable.
This commit is part of the overall effort to eliminate global
modloader state.
Change-Id: Ib313faeb27ae44e9ac6... | [
{
"path": "src/cmd/go/internal/modload/import.go",
"patch": "@@ -29,10 +29,14 @@ import (\n )\n \n type ImportMissingError struct {\n-\tPath string\n-\tModule module.Version\n-\tQueryErr error\n-\n+\tPath string\n+\tModule module.Version\n+\tQueryErr error\n+\tmodContaini... | 2025-10-03T04:50:03 |
denoland/deno | 202a8c054b99507a0dd0f1bfc61b81f002f84320 | 2bf5c78666d7cc03fd7b820d48e7787c0804d09a | Revert "fix(ext/node): fileHandle compatibility" (#31103)
Reverts denoland/deno#31094
This has caused node compat tests to fail on main. | [
{
"path": "ext/node/polyfills/_fs/_fs_fchmod.ts",
"patch": "@@ -10,7 +10,6 @@ import {\n } from \"ext:deno_node/internal/validators.mjs\";\n import { op_fs_fchmod_async, op_fs_fchmod_sync } from \"ext:core/ops\";\n import { primordials } from \"ext:core/mod.js\";\n-import { promisify } from \"ext:deno_node/... | 2025-10-27T16:27:50 |
mrdoob/three.js | c19aa1956e4c77d245c79fe54a25a244dd188f3f | 4749f998ca6127bd49f98ccfc773b50de02274b5 | WebGPU: Fix `navigator` usage. (#29965) | [
{
"path": "examples/jsm/capabilities/WebGPU.js",
"patch": "@@ -1,5 +1,4 @@\n-let isAvailable = navigator.gpu !== undefined;\n-\n+let isAvailable = ( typeof navigator !== 'undefined' && navigator.gpu !== undefined );\n \n if ( typeof window !== 'undefined' && isAvailable ) {\n ",
"additions": 1,
"de... | 2024-11-25T15:40:23 |
tensorflow/tensorflow | 3a5f47126f55b25e5ae1e8f2265471b66125067e | b3abc2cb5d71aef3ffc7323414f75ee9d8eeeb91 | Fix XLA compilation for extract_patches by folding tensor constants in V1 and V2 APIs (#108143) | [
{
"path": "tensorflow/python/ops/array_ops.py",
"patch": "@@ -6311,8 +6311,14 @@ def extract_image_patches_v2(images, sizes, strides, rates, padding, name=None):\n Returns:\n A 4-D Tensor of the same type as the input.\n \"\"\"\n- return gen_array_ops.extract_image_patches(images, sizes, strides, r... | 2026-01-13T21:48:41 |
swiftlang/swift | 4912cd52a77d33b9e5f57ab2d1cfd2337a29b276 | 905e8a04c30aac969cb80cc5cc2f0790ada1f43c | [CS] Refuse to match error types
We ought to consider making this an assert, but for now let's bail
out of solving. | [
{
"path": "lib/Sema/CSSimplify.cpp",
"patch": "@@ -7183,6 +7183,12 @@ ConstraintSystem::matchTypes(Type type1, Type type2, ConstraintKind kind,\n auto desugar1 = type1->getDesugaredType();\n auto desugar2 = type2->getDesugaredType();\n \n+ // Refuse to match types with errors. We ought to consider maki... | 2026-02-08T15:58:30 |
mrdoob/three.js | add7f9ba79a7f23732cf6e9e25ebcd4987550d45 | 4cc2eb5f5cde14e844266521e8b3b1daf6767ae9 | Fix: prevent crash when calling BufferGeometry.setFromPoints with too few points (#29956)
* Fix: prevent crash when calling BufferGeometry.setFromPoints with too few points
* lint
* Update BufferGeometry.js
Clean up.
* Update BufferGeometry.js
Clean up.
---------
Co-authored-by: Michael Herzog <mi... | [
{
"path": "src/core/BufferGeometry.js",
"patch": "@@ -304,7 +304,9 @@ class BufferGeometry extends EventDispatcher {\n \n \t\t} else {\n \n-\t\t\tfor ( let i = 0, l = positionAttribute.count; i < l; i ++ ) {\n+\t\t\tconst l = Math.min( points.length, positionAttribute.count ); // make sure data do not excee... | 2024-11-25T09:51:27 |
denoland/deno | 2bf5c78666d7cc03fd7b820d48e7787c0804d09a | 20fb456be521f958b889fa3465e75a501fcfd7c5 | fix(audit): handle 'review' actions (#31100)
Closes https://github.com/denoland/deno/issues/31098 | [
{
"path": "cli/tools/pm/audit.rs",
"patch": "@@ -393,13 +393,13 @@ mod npm {\n if actions.len() == 1 {\n _ =\n writeln!(stdout, \"╰ {} {}\", colors::gray(\"Actions:\"), actions[0]);\n- } else {\n+ } else if actions.len() > 1 {\n _ =\n writeln!(stdout, \... | 2025-10-27T11:44:02 |
mrdoob/three.js | 4cc2eb5f5cde14e844266521e8b3b1daf6767ae9 | 54ce779ad9c1eb43d2f81510e72926867e1f342d | TSL Transpiler: Fixes (#29958) | [
{
"path": "examples/jsm/transpiler/AST.js",
"patch": "@@ -242,9 +242,9 @@ export class DynamicElement {\n \n export class AccessorElements {\n \n-\tconstructor( property, elements = [] ) {\n+\tconstructor( object, elements = [] ) {\n \n-\t\tthis.property = property;\n+\t\tthis.object = object;\n \t\tthis.el... | 2024-11-25T03:43:29 |
swiftlang/swift | 905e8a04c30aac969cb80cc5cc2f0790ada1f43c | af7069a10ef621814d6a0bd329a5e8227dba9a37 | [IDE] Avoid erasing opaque replacement types
The erasing we're doing here is only for printing purposes, that
doesn't really matter for the replacement types and avoids running into
a crash where we incorrectly grab the wrong generic signature. | [
{
"path": "lib/IDE/CodeCompletionStringBuilder.cpp",
"patch": "@@ -48,7 +48,7 @@ Type ide::eraseArchetypes(Type type, GenericSignature genericSig) {\n // Don't erase opaque archetype.\n if (isa<OpaqueTypeArchetypeType>(archetypeType) &&\n archetypeType->isRoot())\n- return std::... | 2026-02-08T21:52:44 |
denoland/deno | 20fb456be521f958b889fa3465e75a501fcfd7c5 | 3a1ae29327061c5a26b0ca9d50cb0c3181868544 | fix(ext/node): cpus() should not error when there's no cpu info (#31097)
os.cpus() in Node returns an empty array if there is no cpu info. This
is also specified in [its
documentation](https://nodejs.org/api/os.html#oscpus:~:text=The%20array%20will%20be%20empty%20if%20no%20CPU%20information%20is%20available):
"The arr... | [
{
"path": "ext/node/ops/os/mod.rs",
"patch": "@@ -24,9 +24,6 @@ pub enum OsError {\n #[inherit]\n PermissionCheckError,\n ),\n- #[class(type)]\n- #[error(\"Failed to get cpu info\")]\n- FailedToGetCpuInfo,\n #[class(inherit)]\n #[error(\"Failed to get user info\")]\n FailedToGetUserInfo(\... | 2025-10-27T11:29:08 |
golang/go | f5403f15f021521ed82d91e8f28a6865d9aeab34 | a26f860fa4fee16f77e0ed13eb8286168b3bf097 | debug/pe: check for zdebug_gdb_scripts section in testDWARF
The debug_gdb_scripts sectino may or may not be compressed. Check
for both.
For #76022.
Change-Id: I7541e0aa2b90f6b3b694e02d3dfa99f9019a9e5a
Reviewed-on: https://go-review.googlesource.com/c/go/+/714461
Reviewed-by: David Chase <drchase@google.com>
LUCI-Try... | [
{
"path": "src/debug/pe/file_test.go",
"patch": "@@ -413,7 +413,7 @@ func testDWARF(t *testing.T, linktype int) {\n \n \tvar foundDebugGDBScriptsSection bool\n \tfor _, sect := range f.Sections {\n-\t\tif sect.Name == \".debug_gdb_scripts\" {\n+\t\tif sect.Name == \".debug_gdb_scripts\" || sect.Name == \".z... | 2025-10-24T20:27:15 |
mrdoob/three.js | 927c20c396c179c4a82b19acbe66ef9730a5b1d1 | 34ba5129de62d538c17616f50cd00e36fdb98398 | WebGPURenderer: Fix global references in Node.js (#29919)
* Fix compilation in react
* Cleanup fixes
* Fix space
* Fix space
* Update WebGPUBackend.js
Use `null` as fallback when navigator isn't available.
* Update WebGPUUtils.js
Revert.
---------
Co-authored-by: Michael Herzog <michael.herz... | [
{
"path": "src/renderers/webgpu/WebGPUBackend.js",
"patch": "@@ -64,7 +64,7 @@ class WebGPUBackend extends Backend {\n \t\t\t\tpowerPreference: parameters.powerPreference\n \t\t\t};\n \n-\t\t\tconst adapter = await navigator.gpu.requestAdapter( adapterOptions );\n+\t\t\tconst adapter = ( typeof navigator !=... | 2024-11-24T09:52:40 |
tensorflow/tensorflow | b2fa1a08544cb13fa11fb0a78126e7f4ea286ff0 | 72fcd3f03cdf56adebb05e435fa8a08768cebe9b | [XLA:GPU] Fix out-of-bounds access in float checks
BuffersDebugFloatCheckThunk incorrectly passed input size as bytes
instead of elements. Add test that reproduces the bug and fix it.
PiperOrigin-RevId: 855706170 | [
{
"path": "third_party/xla/xla/backends/gpu/runtime/buffers_float_check_thunk.cc",
"patch": "@@ -165,18 +165,18 @@ absl::Status BuffersDebugFloatCheckThunk::ExecuteOnStream(\n se::DeviceAddress<float> f32_buffer(device_buffer);\n const se::BlockDim block_dim = GetBlockDimForBuffer<float>(\n ... | 2026-01-13T14:58:33 |
denoland/deno | 3a1ae29327061c5a26b0ca9d50cb0c3181868544 | c0ebacba75138789ccd6dc93c1b5bec04f4e6d63 | fix(ext/node): fileHandle compatibility (#31094)
Towards #29972
Notable changes:
- Omits `path` from the `FileHandle` constructor. This includes
replacing `utimes` and `chown` with `futimes` and `fchown`.
- Handles closing resource ID gracefully to follow node's
implementation. Closed resource IDs are marked as `-1`.... | [
{
"path": "ext/node/polyfills/_fs/_fs_fchmod.ts",
"patch": "@@ -10,6 +10,7 @@ import {\n } from \"ext:deno_node/internal/validators.mjs\";\n import { op_fs_fchmod_async, op_fs_fchmod_sync } from \"ext:core/ops\";\n import { primordials } from \"ext:core/mod.js\";\n+import { promisify } from \"ext:deno_node/... | 2025-10-27T11:28:23 |
golang/go | 747fe2efedfdc43f797b4fc1672e29ff7a01ec6a | 94f47fc03f4c916decb7f1387fcf56eae388f7cf | encoding/json/v2: fix typo in documentation about errors.AsType
CL 708495 mass migrated the stdlib to use errors.AsType.
It rewrote the documentation, but uses the non-pointer type
of SemanticError or SyntacticError, which is invalid since
the Error method is declared on the pointer receiver.
Also, call errors.AsType... | [
{
"path": "src/encoding/json/jsontext/state.go",
"patch": "@@ -24,7 +24,8 @@ import (\n // The name of a duplicate JSON object member can be extracted as:\n //\n //\terr := ...\n-//\tif serr, ok := errors.AsType[jsontext.SyntacticError](err); ok && serr.Err == jsontext.ErrDuplicateName {\n+//\tserr, ok := e... | 2025-10-24T17:55:48 |
mrdoob/three.js | 05cfdd9da842c208edb1fe055d439d70d1008493 | 89d1a06fad4173937fe1e67e4016aadaca0dad1a | GLSLNodeBuilder: Fix varying `color` type (#29950) | [
{
"path": "src/renderers/webgl-fallback/nodes/GLSLNodeBuilder.js",
"patch": "@@ -570,7 +570,7 @@ ${ flowData.code }\n \t\t\tfor ( const varying of varyings ) {\n \n \t\t\t\tif ( shaderStage === 'compute' ) varying.needsInterpolation = true;\n-\t\t\t\tconst type = varying.type;\n+\t\t\t\tconst type = this.ge... | 2024-11-23T18:27:29 |
denoland/deno | c0ebacba75138789ccd6dc93c1b5bec04f4e6d63 | 5cee3a317d1c9e64a7d6c09763921fe854ad086c | fix(ext/node): handle multiple calls in inspector.Session.post() (#31067)
Fixes a panic that occurred when using nested session.post() calls in
the node:inspector module. The issue manifested when callbacks from
inspector commands (like Profiler.enable) called session.post() again,
causing a re-entrant invocation of o... | [
{
"path": "ext/node/ops/inspector.rs",
"patch": "@@ -167,17 +167,17 @@ where\n })\n }\n \n-#[op2(fast)]\n+#[op2(fast, reentrant)]\n pub fn op_inspector_dispatch(\n- #[cppgc] session: &JSInspectorSession,\n+ #[cppgc] inspector: &JSInspectorSession,\n #[string] message: String,\n ) {\n- if let Some(ses... | 2025-10-27T09:46:55 |
tensorflow/tensorflow | bcb6435e6231aa8f689229e641b694d1ea0cf8b0 | e8367a7b9311ac16f7bc252b64405fbcce99f829 | PR #35744: [ROCm] Fix TopK algorithm for RDNA
Imported from GitHub PR https://github.com/openxla/xla/pull/35744
📝 Summary of Changes
xla/stream_executor/rocm/topk_kernel_rocm_common.cu.h now implements proper handling of WAVEFRONT_SIZE based on the architecture. __AMDGCN_WAVEFRONT_SIZE is removed as it is deprecated... | [
{
"path": "third_party/xla/xla/backends/gpu/runtime/topk_test.cc",
"patch": "@@ -111,8 +111,10 @@ TEST_P(TopKKernelTest, TopKFloat) {\n TF_ASSERT_OK(\n stream->MemZero(&output_indices, k * batch_size * sizeof(uint32_t)));\n \n- auto custom_kernel = GetTopKKernel(\"topk\", PrimitiveType::F32, n, k,\... | 2026-01-13T14:09:46 |
kubernetes/kubernetes | 8da5d8906943a00ea0a8d8e0d23f30f1e4f8eed3 | 68fec4eec095c8037c201cd61eca77f2c9a5ce93 | e2e podlogs: support routing log output to some other destination
This enables callers to either do their own file handling or capture the log
output by implementing io.Writer.
While at it, some context handling gets fixed. | [
{
"path": "test/e2e/storage/podlogs/podlogs.go",
"patch": "@@ -41,20 +41,36 @@ import (\n )\n \n // LogOutput determines where output from CopyAllLogs goes.\n+//\n+// Error messages about receiving log output is kept\n+// separate from the log output and optionally goes to StatusWriter\n+//\n+// The log out... | 2025-12-16T13:48:19 |
mrdoob/three.js | ca5af63b0d5cb7f44dd024e01d1e712acf5722e9 | 0826376168553474fc2e3c01560d6e6524c0bcf4 | GLSLNodeBuilder: Fix color space regression. (#29945) | [
{
"path": "src/renderers/webgl-fallback/nodes/GLSLNodeBuilder.js",
"patch": "@@ -61,7 +61,7 @@ class GLSLNodeBuilder extends NodeBuilder {\n \n \t}\n \n-\tneedsColorSpaceToLinearSRGB( texture ) {\n+\tneedsToWorkingColorSpace( texture ) {\n \n \t\treturn texture.isVideoTexture === true && texture.colorSpace ... | 2024-11-22T10:51:23 |
golang/go | cf7c1a4cbb917b6c5d80d1d9443a40cb7720db75 | 2b8eded4f4fd3d421d1fb9af68c774142abcf208 | [dev.simd] cmd/compile, simd: add SHA features
This CL also fixed some bugs left in CL 712181.
Change-Id: I9cb6cd9fbaef307f352809bf21b8fec3eb62721a
Reviewed-on: https://go-review.googlesource.com/c/go/+/712361
Reviewed-by: David Chase <drchase@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accoun... | [
{
"path": "src/cmd/compile/internal/amd64/simdssa.go",
"patch": "@@ -1955,6 +1955,18 @@ func ssaGenSIMDValue(s *ssagen.State, v *ssa.Value) bool {\n \t\tssa.OpAMD64VPTERNLOGQ512load:\n \t\tp = simdV31loadResultInArg0Imm8(s, v)\n \n+\tcase ssa.OpAMD64SHA1MSG1128,\n+\t\tssa.OpAMD64SHA1MSG2128,\n+\t\tssa.OpAMD... | 2025-10-16T16:07:32 |
denoland/deno | 5cee3a317d1c9e64a7d6c09763921fe854ad086c | c20ef4ce8ccca02e25496d94b19fb6f5dc535374 | fix(check): support text and bytes imports with --unstable-tsgo (#31084)
Fixes https://github.com/denoland/deno/issues/31034. | [
{
"path": "cli/tsc/go.rs",
"patch": "@@ -60,6 +60,7 @@ fn synthetic_config(\n {\n obj.insert(\"jsx\".to_string(), json!(\"react-jsx\"));\n }\n+ obj.insert(\"allowArbitraryExtensions\".to_string(), json!(true));\n let config = serde_json::to_string(&json!({\n \"compilerOptions\": config,\n ... | 2025-10-24T23:41:20 |
tensorflow/tensorflow | e8367a7b9311ac16f7bc252b64405fbcce99f829 | 35a866c7e2cde0ee76fb7a2dfa47a0e1ee68a82a | Fix TFL to TOSA constant truncation to i48 that broke tosa.greater legalization (#106645) | [
{
"path": "tensorflow/compiler/mlir/tosa/tests/tfl-to-tosa-pipeline.mlir",
"patch": "@@ -4202,8 +4202,8 @@ func.func @test_broadcast_to_qi8(%arg0: tensor<13x1x!quant.uniform<i16:f32, 1.0:\n // -----\n \n // CHECK-LABEL: test_broadcast_to_smaller_rank\n-// CHECK: %[[VAL_0:.*]] = \"tosa.const\"() <{values = d... | 2026-01-13T14:27:02 |
mrdoob/three.js | 0826376168553474fc2e3c01560d6e6524c0bcf4 | c2909f20d82e75f6aef1766fa079134d146460b8 | WebGPUTextureUtils: Fix `dispose()` of `VideoTexture`. (#29944) | [
{
"path": "src/renderers/webgpu/utils/WebGPUTextureUtils.js",
"patch": "@@ -230,7 +230,7 @@ class WebGPUTextureUtils {\n \t\tconst backend = this.backend;\n \t\tconst textureData = backend.get( texture );\n \n-\t\ttextureData.texture.destroy();\n+\t\tif ( textureData.texture !== undefined ) textureData.text... | 2024-11-22T10:20:45 |
golang/go | 2b8eded4f4fd3d421d1fb9af68c774142abcf208 | c75965b666edf8399fc0c56ba0b94c2a4f5e7070 | [dev.simd] simd/_gen: parse SHA features from XED
To parse SHA feature instructions from XED, this CL added some utility
to decode fixed reg operands.
SHA512 parsing will be in next CL as we don't have SHA512 cpu features
in src/internal/cpu/cpu.go yet.
Change-Id: Id14cced57eab2ca9e75693a201f4ce7c04981587
Reviewed-o... | [
{
"path": "src/simd/_gen/simdgen/xed.go",
"patch": "@@ -22,9 +22,10 @@ import (\n )\n \n const (\n-\tNOT_REG_CLASS = 0 // not a register\n-\tVREG_CLASS = 1 // classify as a vector register; see\n-\tGREG_CLASS = 2 // classify as a general register\n+\tNOT_REG_CLASS = iota // not a register\n+\tVREG_CLA... | 2025-10-15T19:17:35 |
denoland/deno | eaebf88418dea6c4c454e51b197e396c76863c62 | fc7ae0e4282fbd66ee03a26fcd81187b846b0fa6 | fix(ext/node): make `kReinitializeHandle` work for TLS wrap (#31079) | [
{
"path": "ext/node/polyfills/net.ts",
"patch": "@@ -1809,6 +1809,9 @@ Object.defineProperty(Socket.prototype, \"_handle\", {\n Socket.prototype[kReinitializeHandle] = function (handle) {\n this._handle?.close();\n \n+ // Make sure TLS wrap works after reinitialize.\n+ handle.afterConnectTls = this._han... | 2025-10-24T08:05:59 |
tensorflow/tensorflow | e3ab1712f096c97a686bf1927a119721559babae | c1ac21d769b552f67cd0d0c09abe5eef46da98d1 | [XLA:GPU] Add ostream operators for TritonWrapperResult.
This change introduces `operator<<` overloads for `TritonWrapperResult` in Triton-related code. This improves debuggability by providing human-readable representations of these objects in logs and test failures.
Example:
Actual
OK:
TritonWrapperResult:
shmem_... | [
{
"path": "third_party/xla/xla/backends/gpu/codegen/triton/xtile_compiler.cc",
"patch": "@@ -17,6 +17,7 @@ limitations under the License.\n \n #include <cstdint>\n #include <memory>\n+#include <ostream>\n #include <string>\n #include <utility>\n #include <vector>\n@@ -324,6 +325,22 @@ absl::Status CheckAtLe... | 2026-01-13T13:37:02 |
kubernetes/kubernetes | 172a65c71d95a73a5b984481d0dc10b7fbb74ce4 | 9998041e0ffe0dd3f2abab3b9f95505c4402bf14 | Fix device plugin admission failure after container restart
When a container restarts before kubelet restarts, containerMap has
multiple entries (old exited + new running). GetContainerID() may
return the exited container, causing the running check to fail. Fixed
by checking if ANY container for the pod/name is runnin... | [
{
"path": "pkg/kubelet/apis/podresources/server_v1.go",
"patch": "@@ -64,9 +64,20 @@ func (p *v1PodResourcesServer) List(ctx context.Context, req *podresourcesv1.Lis\n \n \tvar pods []*v1.Pod\n \tif p.useActivePods {\n+\t\t// GetActivePods already filters out terminal pods, so no need for additional filteri... | 2025-11-27T13:46:38 |
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.