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 |
|---|---|---|---|---|---|
golang/go | 691af6ca28dad9c72e51346fe10c6aaadc3f940b | 925149da2009589f6f2567564e1c7370e9f93b1b | encoding/json: fix Indent trailing whitespace regression in goexperiment.jsonv2
The Indent function preserves trailing whitespace,
while the v1 emulation under v2 implementation accidentally dropped it.
There was prior logic that attempted to preserve it,
but it did not work correctly since it ran in a defer and
acci... | [
{
"path": "src/encoding/json/scanner_test.go",
"patch": "@@ -74,6 +74,7 @@ func TestCompactAndIndent(t *testing.T) {\n \t-5e+2\n ]`},\n \t\t{Name(\"\"), \"{\\\"\\\":\\\"<>&\\u2028\\u2029\\\"}\", \"{\\n\\t\\\"\\\": \\\"<>&\\u2028\\u2029\\\"\\n}\"}, // See golang.org/issue/34070\n+\t\t{Name(\"\"), `null`, \"n... | 2025-07-31T23:21:41 |
mrdoob/three.js | 013e93d5b572ea28d59056798954fccdbd53d24f | 5f21c50af209937a22d25ef991316f783c18a8bd | TSL: Fix `tslFn()` output type called before build (#28409) | [
{
"path": "examples/jsm/nodes/shadernode/ShaderNode.js",
"patch": "@@ -251,9 +251,15 @@ class ShaderCallNodeInternal extends Node {\n \n \tgetNodeType( builder ) {\n \n-\t\tconst { outputNode } = builder.getNodeProperties( this );\n+\t\tconst properties = builder.getNodeProperties( this );\n+\n+\t\tif ( pro... | 2024-05-17T17:01:21 |
tensorflow/tensorflow | b0ad467df5f5cdb1a6d396f4e2d05eadf5fff54d | d9ed979ea7beea09e6473b01878c2e3800040c5e | [XLA] Remove TF_ prefix from TF_{ASSERT,EXPECT}_OK
PiperOrigin-RevId: 839441600 | [
{
"path": "third_party/xla/xla/hlo/experimental/auto_sharding/auto_sharding_test.cc",
"patch": "@@ -2001,7 +2001,7 @@ ENTRY %entry {\n op::Sharding(\"{{devices=[1,4]0,1,2,3}, \"\n \"{devices=[1,4]0,1,2,3}}\")));\n const HloSharding& sharding = reduce->sharding();\n- T... | 2025-12-02T23:03:50 |
denoland/deno | 5b65313d48d6ac422e7ed39fbca5e2d032c59b34 | fd352537ce5e0295d9f9fa9478ae762bc488aaad | fix(coverage): Make output table markdown compatible (#29533)
This changes the format of the table outputted by `deno coverage` to be
markdown compatible.
Related #29532
Closes #29465 | [
{
"path": "cli/tools/coverage/reporter.rs",
"patch": "@@ -161,7 +161,7 @@ impl SummaryCoverageReporter {\n };\n \n println!(\n- \" {file_name} | {branch_percent} | {line_percent} |\",\n+ \"| {file_name} | {branch_percent} | {line_percent} |\",\n file_name = file_name,\n branch_... | 2025-06-24T09:27:07 |
golang/go | 925149da2009589f6f2567564e1c7370e9f93b1b | cf4af0b2f30f27b6273fa9b9f295dbdaf9cdb7bb | net/http: add example for CrossOriginProtection
It's not immediately appaerent that a method must
be used to wrap the handler, so add a basic
example to guide users to the right API.
Fixes #74121
Change-Id: I23fc3dff6fff9bf4eb29c099bc77da8c99620671
Reviewed-on: https://go-review.googlesource.com/c/go/+/681256
LUCI-T... | [
{
"path": "src/net/http/example_test.go",
"patch": "@@ -12,6 +12,7 @@ import (\n \t\"net/http\"\n \t\"os\"\n \t\"os/signal\"\n+\t\"time\"\n )\n \n func ExampleHijacker() {\n@@ -221,3 +222,22 @@ func ExampleProtocols_http1or2() {\n \t}\n \tres.Body.Close()\n }\n+\n+func ExampleCrossOriginProtection() {\n+\tm... | 2025-06-12T08:30:28 |
kubernetes/kubernetes | a5a2cfdb3535f65579aad6bbbbbe344fcce85bf3 | 030d72959e8911acfebc37a365d31d367ebc5e9b | fix(validation-gen): Correct ratcheting for uncorrelated old values
The validation ratcheting logic failed to distinguish between a field that was explicitly nil and a field that was absent in the old object (uncorrelated). safe.Field() returns nil in both scenarios.
This caused validation to be incorrectly skipped f... | [
{
"path": "staging/src/k8s.io/code-generator/cmd/validation-gen/output_tests/ratcheting/default_behavior/doc_test.go",
"patch": "@@ -176,11 +176,11 @@ func Test_StructEmbedded(t *testing.T) {\n \tst.Value(mkTest()).OldValue(mkTest()).ExpectValid()\n }\n \n-// This test is to prove the bug of ratcheting beha... | 2025-11-05T01:57:08 |
mrdoob/three.js | 5f21c50af209937a22d25ef991316f783c18a8bd | f127bdd31190658e762d6456b366f8a6528b6eda | Nodes: NormalNode - Improve tree shaking using TSL (#28408)
* NormalNode: Improve tree shaking using TSL
* fix attribute default value | [
{
"path": "examples/jsm/nodes/Nodes.js",
"patch": "@@ -92,7 +92,7 @@ export { default as MorphNode, morphReference } from './accessors/MorphNode.js';\n export { default as TextureBicubicNode, textureBicubic } from './accessors/TextureBicubicNode.js';\n export { default as ModelNode, modelDirection, modelVie... | 2024-05-17T16:39:27 |
tensorflow/tensorflow | 664c8d4830699de175fddb6d3164c47d26bf1f5f | 6934a1f98bc2c0b62c36df294f1b8ff3f8273f9e | Update Maven package name in error messages from TF Lite to LiteRT.
PiperOrigin-RevId: 839392708 | [
{
"path": "tensorflow/lite/java/src/main/java/org/tensorflow/lite/TensorFlowLite.java",
"patch": "@@ -281,7 +281,7 @@ private static InterpreterFactoryApi getFactory(\n case FROM_APPLICATION_ONLY:\n message =\n String.format(\n- \"You should declare a build dependenc... | 2025-12-02T20:58:30 |
denoland/deno | 19d08d12d37229981467a9b0b65e882c3aa3a822 | ef938a8cd50d235db17e45d47080eb9f60391595 | fix(bundle): transform import.meta.main (#29830)
For entrypoints, it remains untouched. For non-entrypoints it becomes
`false`. | [
{
"path": "cli/tools/bundle/mod.rs",
"patch": "@@ -2,6 +2,7 @@\n \n mod esbuild;\n mod externals;\n+mod transform;\n \n use std::cell::RefCell;\n use std::path::Path;\n@@ -10,6 +11,8 @@ use std::rc::Rc;\n use std::sync::Arc;\n use std::sync::LazyLock;\n \n+use deno_ast::EmitOptions;\n+use deno_ast::MediaTyp... | 2025-06-23T20:51:24 |
golang/go | cf4af0b2f30f27b6273fa9b9f295dbdaf9cdb7bb | b096ddb9ea84efa28eafd7850b8f8a8b3e76e49f | encoding/json/v2: fix UnmarshalDecode regression with EOF
When EOF is encountered within jsontext.Decoder stream without
starting to parse any token, UnmarshalDecode should report EOF,
rather than converting it into ErrUnexpectedEOF.
This fixes a regression introduced by https://go.dev/cl/689919.
This change only af... | [
{
"path": "src/encoding/json/v2/arshal.go",
"patch": "@@ -470,7 +470,7 @@ func unmarshalDecode(in *jsontext.Decoder, out any, uo *jsonopts.Struct, last bo\n \t// was validated before attempting to unmarshal it.\n \tif uo.Flags.Get(jsonflags.ReportErrorsWithLegacySemantics) {\n \t\tif err := export.Decoder(i... | 2025-07-31T22:01:47 |
mrdoob/three.js | 3b28707d40be3cc77274ff76c1a81414a96644a7 | de367cb2e866d4ffc9bd4b23dddd137a93ee65ba | BatchedMesh: add getColorAt and setColorAt (#28255)
* BatchedMesh: add getColorAt and setColorAt
* pr fixes and suggestions
* bring back previous condition to recompile shader
* add colorSpace to DataTexture
* change instance to geometry in docs | [
{
"path": "docs/api/en/objects/BatchedMesh.html",
"patch": "@@ -129,6 +129,19 @@ <h3>[method:this setCustomSort]( [param:Function sortFunction] )</h3>\n \t\t\tin the list include a \"z\" field to perform a depth-ordered sort with.\n \t\t</p>\n \n+\t\t<h3>\n+\t\t\t[method:undefined getColorAt]( [param:Intege... | 2024-05-17T08:33:14 |
tensorflow/tensorflow | f11ff021c2cab908e723d18e4789ad731c9f0ec2 | 2b76e0e65cccf37dc108d100b4f91c94e8b1fe18 | Fix comment placement.
PiperOrigin-RevId: 839354949 | [
{
"path": "tensorflow/lite/core/async/interop/BUILD",
"patch": "@@ -1,8 +1,8 @@\n load(\"@rules_cc//cc:cc_library.bzl\", \"cc_library\")\n load(\"@rules_cc//cc:cc_test.bzl\", \"cc_test\")\n+load(\"//tensorflow:tensorflow.default.bzl\", \"get_compatible_with_portable\")\n \n # Libraries to support TfLite buf... | 2025-12-02T19:25:02 |
kubernetes/kubernetes | 66769823160fed2a1965e7ca8b3f6ea8ede2795c | 11787f5c93353a83db83f243a4c122e7c28b3794 | fixed non-sidecar init container device requests and mappings | [
{
"path": "pkg/apis/core/validation/validation.go",
"patch": "@@ -6020,6 +6020,7 @@ func validatePodExtendedResourceClaimStatus(status *core.PodExtendedResourceClai\n \ttype key struct {\n \t\tcontainer string\n \t\tresource string\n+\t\trequest string\n \t}\n \tseen := map[key]struct{}{}\n \tfor i, rm :... | 2025-11-05T22:32:40 |
denoland/deno | b5c59ed2150cde2b7182224d7b0101f5cc11cdd3 | d15581fb19629c5560b09bf2893c8f1f90494c77 | fix(ext/node): improve assert.ifError (#29846) | [
{
"path": "ext/node/polyfills/assert.ts",
"patch": "@@ -21,7 +21,15 @@ import { primordials } from \"ext:core/mod.js\";\n import { CallTracker } from \"ext:deno_node/internal/assert/calltracker.js\";\n import { deprecate } from \"node:util\";\n \n-const { ObjectPrototypeIsPrototypeOf } = primordials;\n+cons... | 2025-06-23T12:16:53 |
golang/go | ce0e803ab9fcee7e5adc99d262dde6f6c1f41842 | 38b76bf2a3b4a2e1bd512f32907d7f2d3de3b71a | [dev.simd] cmd/compile: keep track of multiple rule file names in ssa/_gen
This was a long-standing "we need to fix this"
for simd work, this fixes it. I expect that
simd peephole rule files will be coming soon
and there will be more errors and we will be
happier to have this.
Change-Id: Iefffc43e3e2110939f8d406f6e5... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/multiscanner.go",
"patch": "@@ -0,0 +1,117 @@\n+// Copyright 2025 The Go Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style\n+// license that can be found in the LICENSE file.\n+\n+package main\n+\n+import (\n+\t\"bufio\"\n+\t\"... | 2025-08-08T20:49:17 |
mrdoob/three.js | 097d95940fa48c19bd6370934265bf68d64d2891 | b3e3724eb0b77111da689a585601b156185b2d83 | E2E: Adding `webgpu_texturegrad` to exception list. (#28385) | [
{
"path": "test/e2e/puppeteer.js",
"patch": "@@ -144,6 +144,7 @@ const exceptionList = [\n \t'webgpu_custom_fog',\n \t'webgpu_instancing_morph',\n \t'webgpu_mesh_batch',\n+\t'webgpu_texturegrad',\n \n \t// WebGPU idleTime and parseTime too low\n \t'webgpu_compute_particles',",
"additions": 1,
"delet... | 2024-05-15T09:39:44 |
swiftlang/swift | dd2493998d9b0fb99e353678aced7283e9ff3bc1 | d8605239445bc6bd7361176589511c8f65a83516 | [utils] Introduce crash-reduce
This is the tool I've been using to add the fuzzer crasher test cases
to the repo. | [
{
"path": "utils/crash-reduce",
"patch": "@@ -0,0 +1 @@\n+swift-dev-utils/crash-reduce\n\\ No newline at end of file",
"additions": 1,
"deletions": 0,
"language": "Unknown"
},
{
"path": "utils/swift-dev-utils/Package.resolved",
"patch": "@@ -1,4 +1,5 @@\n {\n+ \"originHash\" : \"34a... | 2025-12-17T21:40:40 |
mrdoob/three.js | b3e3724eb0b77111da689a585601b156185b2d83 | ce4536ab00e94f49d8c94dbc1bcd73d27b85f813 | Editor: Avoid `SetSceneCommnd` when importing file (#28339)
* avoid SetSceneCommand when importing
* Update Loader.js
Fix formatting.
---------
Co-authored-by: Michael Herzog <michael.herzog@human-interactive.org> | [
{
"path": "editor/js/Loader.js",
"patch": "@@ -3,7 +3,6 @@ import * as THREE from 'three';\n import { TGALoader } from 'three/addons/loaders/TGALoader.js';\n \n import { AddObjectCommand } from './commands/AddObjectCommand.js';\n-import { SetSceneCommand } from './commands/SetSceneCommand.js';\n \n import {... | 2024-05-15T09:23:11 |
tensorflow/tensorflow | 0a95c8a62f3c1545339050faff76da71ed1f9cf3 | d51d84048204ea825caee48a9780bd4244bb0628 | [XLA:GPU] Migrate from tsl::errors to absl::Status error creation functions.
This change replaces calls to `tsl::errors::FailedPrecondition`, `tsl::errors::Unavailable`, `tsl::errors::Internal`, and `tsl::errors::Aborted` with their equivalent `absl::FailedPreconditionError`, `absl::UnavailableError`, `absl::InternalE... | [
{
"path": "third_party/xla/xla/hlo/evaluator/hlo_evaluator.cc",
"patch": "@@ -3675,7 +3675,7 @@ absl::StatusOr<Literal> TryParseAndEvaluateWhileInductionVar(\n std::optional<ParsedWhileLoop> parsed_while_loop =\n PatternMatchParseWhileLoop(while_hlo, /*precomputed_analyses=*/{});\n if (!parsed_whi... | 2025-12-02T14:36:46 |
golang/go | 38b76bf2a3b4a2e1bd512f32907d7f2d3de3b71a | 94d72355f662a1c8229db661cc068ea8e901641c | [dev.simd] cmd/compile, simd: jump table for imm ops
This CL fixes some errors in prog generation for imm operations, please
see the changes in ssa.go for details.
This CL also implements the jump table for non-const immediate arg. The
current implementation exhaust 0-255, the bound-checked version will be
in the nex... | [
{
"path": "src/cmd/compile/internal/amd64/ssa.go",
"patch": "@@ -1837,11 +1837,7 @@ func simdVkv(s *ssagen.State, v *ssa.Value) *obj.Prog {\n // Example instruction: VROUNDPD $7, X2, X2\n func simdV11Imm8(s *ssagen.State, v *ssa.Value) *obj.Prog {\n \tp := s.Prog(v.Op.Asm())\n-\timm := v.AuxInt\n-\tif imm <... | 2025-08-08T17:31:45 |
denoland/deno | d15581fb19629c5560b09bf2893c8f1f90494c77 | 0f08eb076b6fcab9c290ee3c6d85d72a2961d18b | fix(ext/node): implement Certificate API (#29828) | [
{
"path": "Cargo.lock",
"patch": "@@ -1900,6 +1900,14 @@ dependencies = [\n \"x25519-dalek\",\n ]\n \n+[[package]]\n+name = \"deno_crypto_provider\"\n+version = \"0.1.0\"\n+dependencies = [\n+ \"aws-lc-rs\",\n+ \"aws-lc-sys\",\n+]\n+\n [[package]]\n name = \"deno_doc\"\n version = \"0.178.0\"\n@@ -2345,6 +... | 2025-06-23T09:34:44 |
mrdoob/three.js | 362e4dc73fd296287fe3a9862461ff1bbb46622a | 148f9b139a19e5ea2000ab411ee2339bdf86e042 | propagate onerror (#28383) | [
{
"path": "examples/jsm/loaders/DRACOLoader.js",
"patch": "@@ -85,7 +85,7 @@ class DRACOLoader extends Loader {\n \n \tparse( buffer, onLoad, onError = ()=>{} ) {\n \n-\t\tthis.decodeDracoFile( buffer, onLoad, null, null, SRGBColorSpace ).catch( onError );\n+\t\tthis.decodeDracoFile( buffer, onLoad, null, n... | 2024-05-14T21:14:28 |
swiftlang/swift | ee0f6dd68119f700b3fca2d7beb1cbfd55cbd450 | 6f81699db281995a0d8cb774d90e16f3b46be076 | Sema: Narrow down the skipProtocolSelfConstraint hack
We actually have to check this constraint, otherwise we accept invalid
code where we're referencing a protocol requirement with a concrete
base type which conditionally conforms to the protocol, but the
conditional requirements are unsatisfied.
However, we still n... | [
{
"path": "include/swift/Sema/ConstraintSystem.h",
"patch": "@@ -4199,8 +4199,7 @@ class ConstraintSystem {\n void openGenericRequirement(DeclContext *outerDC,\n GenericSignature signature,\n unsigned index,\n- const ... | 2026-01-14T16:59:36 |
golang/go | 1718828c81f2bad44b51b13fb4b34540a9c2c096 | 084c0f849467d5e45b7242cda3dd957352e86b8f | internal/sync: warn about incorrect unsafe usage in HashTrieMap
When the HashTrieMap expand method runs out of bits, it can be because
the user mutated a key after insertion using unsafe or similar
in violation of the HashTrieMap invariants.
Adjust the panic message to help triage and debugging by
more directly sugge... | [
{
"path": "src/internal/sync/hashtriemap.go",
"patch": "@@ -178,7 +178,7 @@ func (ht *HashTrieMap[K, V]) expand(oldEntry, newEntry *entry[K, V], newHash uin\n \ttop := newIndirect\n \tfor {\n \t\tif hashShift == 0 {\n-\t\t\tpanic(\"internal/sync.HashTrieMap: ran out of hash bits while inserting\")\n+\t\t\tp... | 2025-08-09T21:25:14 |
tensorflow/tensorflow | a4c507f48b887d118213e9e9b4dc7c6abe427037 | decf51cf90802801073904153dbbc3c019f39b44 | PR #34247: [ROCM] Grid-stride loops for buffer comparator and redzone checker 2nd attempt !
Imported from GitHub PR https://github.com/openxla/xla/pull/34247
📝 Summary of Changes
Added grid-stride loops to buffer_comparator and redzone checker kernels,
extended gpu_kernel_tiling test and buffer_comparator_test, remo... | [
{
"path": "third_party/xla/xla/backends/gpu/runtime/BUILD",
"patch": "@@ -2461,6 +2461,7 @@ xla_test(\n \"//xla/stream_executor:platform\",\n \"//xla/stream_executor:platform_manager\",\n \"//xla/stream_executor:stream\",\n+ \"@com_google_absl//absl/cleanup\",\n \"@com... | 2025-12-02T13:49:37 |
kubernetes/kubernetes | da6d15adf6b3ee7c1e226be3e1dafc01e9bdce2e | 53df4f9be696180df04fe9a34b3ac13c04695cb0 | Fix NPE in CEl accessors of additionalProperties=true objects | [
{
"path": "staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/typechecking_test.go",
"patch": "@@ -297,6 +297,26 @@ func TestTypeCheck(t *testing.T) {\n \t\t\t},\n \t\t}},\n \t}}\n+\n+\treproducerPolicy := &v1.ValidatingAdmissionPolicy{Spec: v1.ValidatingAdmissionPolicySpec{\n+\t\tValidatio... | 2025-11-05T20:08:15 |
denoland/deno | 0f08eb076b6fcab9c290ee3c6d85d72a2961d18b | 2205ca5e4a088c3c2738c1ae510ddbd181a63cec | fix(jsr): allow using `import.meta.resolve` to resolve non-jsr remote urls (#29831)
This was too restrictive.
Closes https://github.com/denoland/deno/issues/25579 | [
{
"path": "cli/module_loader.rs",
"patch": "@@ -1005,7 +1005,11 @@ impl<TGraphContainer: ModuleGraphContainer>\n }\n };\n \n- ensure_not_jsr_non_jsr_remote_import(&specifier, &referrer)?;\n+ // only verify this for an import and not import.meta.resolve\n+ if !is_import_meta {\n+ ensu... | 2025-06-20T22:05:38 |
mrdoob/three.js | 148f9b139a19e5ea2000ab411ee2339bdf86e042 | f682d5b5eb3a230ce4d0885e0d0e0f1a2c3410a6 | Examples: Remove need for manually assigning Line2 material resolution (#28343)
* Remove need for assigning line2 material resolution
* Move use to `Line2` object
* Fix wireframe mesh
* Move callback from `Line2` to `LineSegments2`
* Remove another use of "resolution"
* Remove comments
* Multiply out... | [
{
"path": "examples/jsm/lines/LineMaterial.js",
"patch": "@@ -1,25 +1,11 @@\n-/**\n- * parameters = {\n- * color: <hex>,\n- * linewidth: <float>,\n- * dashed: <boolean>,\n- * dashScale: <float>,\n- * dashSize: <float>,\n- * dashOffset: <float>,\n- * gapSize: <float>,\n- * resolution: <Vector2>, // t... | 2024-05-14T21:11:15 |
golang/go | 084c0f849467d5e45b7242cda3dd957352e86b8f | a62f72f7a7ee606c803d1c68cadd24e45eea5e83 | cmd/compile: allow InlMark operations to be speculatively executed
Although InlMark takes a memory argument it ultimately becomes a
NOP and therefore is safe to speculatively execute.
Fixes #74915
Change-Id: I64317dd433e300ac28de2bcf201845083ec2ac82
Reviewed-on: https://go-review.googlesource.com/c/go/+/693795
LUCI-... | [
{
"path": "src/cmd/compile/internal/ssa/branchelim.go",
"patch": "@@ -436,8 +436,15 @@ func canSpeculativelyExecute(b *Block) bool {\n \t// don't fuse memory ops, Phi ops, divides (can panic),\n \t// or anything else with side-effects\n \tfor _, v := range b.Values {\n-\t\tif v.Op == OpPhi || isDivMod(v.Op)... | 2025-08-06T21:43:05 |
swiftlang/swift | 0f1dce4d1b27cb370d9968a3544f08ba0eb99375 | d7829cd181368fcde16005d4e6c5de7c2f988bdc | test/DebugInfo/LoadableByAddress.swift: require `PTRSIZE=64` (#86774)
This test in its current form does not pass on 32-bit platforms. | [
{
"path": "test/DebugInfo/LoadableByAddress.swift",
"patch": "@@ -1,4 +1,5 @@\n // RUN: %target-swift-frontend %s -module-name A -emit-ir -g -o - | %FileCheck %s\n+// REQUIRES: PTRSIZE=64\n \n public struct Continuation<A> {\n private let magicToken = \"Hello World\"",
"additions": 1,
"deletions"... | 2026-01-25T16:47:34 |
tensorflow/tensorflow | df4f70ea69c99efd57b6ad088fd1243af23b546b | a9732391861093f36043be75dd06a1f352603e38 | Remove `debug_info_` from xla::Executable.
Executable::debug_info_ is written from multiple compiler implementations but not read anywhere. Let's remove all of that.
PiperOrigin-RevId: 839218697 | [
{
"path": "third_party/xla/xla/service/cpu/cpu_compiler.cc",
"patch": "@@ -2102,10 +2102,6 @@ absl::StatusOr<std::unique_ptr<Executable>> CpuCompiler::RunBackend(\n CompileCpuExecutable(std::move(module), thunk_emitter_options,\n std::move(ir_compiler)));\n \n- AliasInfo al... | 2025-12-02T13:15:07 |
denoland/deno | c538f44fa005ac3742d68ff6c6fbfd86b2692cd8 | 1e9415cda8d8a1b5a6afa29c999db5887d74015f | fix(ext/node): improve comparison of faked objects in `deepStrictEqual` (#29819)
This commit improves the handling of objects with faked prototypes in
`deepStrictEqual`. This enables `parallel/test-assert-checktag.js`
- `Date` objects are checked by `core.isDate`
- In object comparison, now it checks `obj.toString()`... | [
{
"path": ".github/workflows/ci.generate.ts",
"patch": "@@ -5,7 +5,7 @@ import { stringify } from \"jsr:@std/yaml@^0.221/stringify\";\n // Bump this number when you want to purge the cache.\n // Note: the tools/release/01_bump_crate_versions.ts script will update this version\n // automatically via regex, s... | 2025-06-20T14:33:18 |
kubernetes/kubernetes | 030d72959e8911acfebc37a365d31d367ebc5e9b | dd6f46856dc365688b515d7a17a4410582457c7d | feat(validation-gen): Refactor testscheme and add ratcheting bug tests
Refactors the ValidationTester in testscheme to make update validation implicit. Calling .OldValue() now automatically triggers update validation, removing the need to pass an explicit operation type and simplifying the test-writing API.
This is a... | [
{
"path": "staging/src/k8s.io/code-generator/cmd/validation-gen/output_tests/ratcheting/default_behavior/doc.go",
"patch": "@@ -142,3 +142,12 @@ type NestedNonDirectComparableStruct struct {\n \t// +k8s:validateFalse=\"field nonDirectComparableStructField\"\n \tNonDirectComparableStructField NonDirectCompar... | 2025-11-05T01:55:52 |
mrdoob/three.js | f682d5b5eb3a230ce4d0885e0d0e0f1a2c3410a6 | c5a62895b9eefd1680bfaf082ecb97213685eeb2 | accepts onerror callback when parse (#28382) | [
{
"path": "examples/jsm/loaders/LDrawLoader.js",
"patch": "@@ -1974,7 +1974,7 @@ class LDrawLoader extends Loader {\n \n \t}\n \n-\tparse( text, onLoad ) {\n+\tparse( text, onLoad, onError ) {\n \n \t\tthis.partsCache\n \t\t\t.parseModel( text, this.materialLibrary )\n@@ -1985,7 +1985,8 @@ class LDrawLoader... | 2024-05-14T21:07:34 |
golang/go | bce5601cbbb1a3a33ecdb13b796033e44931a3da | 777d76c4f2392b782418a867172e7e951c0278f8 | cmd/go: fix fips doc link
Change-Id: I8f06ebd65ba9961e19274c1e5fec251b18395d1c
Reviewed-on: https://go-review.googlesource.com/c/go/+/691435
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
Reviewed-by: Sean Liao <sean@liao.dev>
Auto-Submit: Roland Shoemaker <roland@golang.org>
LUCI-TryBot-Result: Go LUCI <golang-s... | [
{
"path": "src/cmd/go/alldocs.go",
"patch": "@@ -2527,7 +2527,7 @@\n //\t\tThe default is GOFIPS140=off, which makes no FIPS-140 changes at all.\n //\t\tOther values enable FIPS-140 compliance measures and select alternate\n //\t\tversions of the cryptography source code.\n-//\t\tSee https://go.dev/security... | 2025-07-29T16:19:51 |
swiftlang/swift | e6c4d85c972eae71506f485fcd0412daf3376576 | 83b3bfe19b9e76f953c50e6d5d611438a917e657 | Fix/disable test on certain platforms | [
{
"path": "test/SILGen/coroutine_accessors_back_deployment_abi.swift",
"patch": "@@ -16,6 +16,10 @@\n // RUN: -target %target-future-triple \\\n // RUN: | %FileCheck %s --check-prefixes=CHECK\n \n+// REQUIRES: swift_feature_CoroutineAccessors\n+\n+// UNSUPPORTED: OS=windows-msvc\n+\n /... | 2026-01-25T00:23:49 |
denoland/deno | 284f652ea8911d851a8356fe1bdfa3b1bf523bf4 | 36ed70fffee944eccbf77d5e49f83e6350c542a9 | fix(ext/node): fix assertion error message of assert.ok (#29803) | [
{
"path": "ext/node/polyfills/assert.ts",
"patch": "@@ -65,9 +65,10 @@ function toNode(\n expected: unknown;\n message?: string | Error;\n operator?: string;\n+ stackStartFn?: Function;\n },\n ) {\n- const { operator, message, actual, expected } = opts || {};\n+ const { operator, message,... | 2025-06-19T12:35:26 |
mrdoob/three.js | c5a62895b9eefd1680bfaf082ecb97213685eeb2 | 01aa489a7b15438003316b9c9fd7ade745f74909 | fix typo: project, not porject (#28384) | [
{
"path": "editor/js/Menubar.File.js",
"patch": "@@ -27,20 +27,20 @@ function MenubarFile( editor ) {\n \n \t\tconst { top, right } = this.dom.getBoundingClientRect();\n \t\tconst { paddingTop } = getComputedStyle( this.dom );\n-\t\tnewPorjectSubmenu.setLeft( right + 'px' );\n-\t\tnewPorjectSubmenu.setTop( ... | 2024-05-14T21:01:19 |
tensorflow/tensorflow | 8a5943b1b9d8946231904c391f4d8154e07525cc | 31d72c9fabdb5fd6219aeb79822cb7725dc94f6d | PR #34118: Add helper functions to host_offload_utils
Imported from GitHub PR https://github.com/openxla/xla/pull/34118
📝 Summary of Changes
This PR adds two new utility functions to `host_offload_utils` for detecting dynamic slice operations in host offload patterns. New Functions:
- IsMoveToHostWithDynamicUpdateSl... | [
{
"path": "third_party/xla/xla/service/BUILD",
"patch": "@@ -4643,8 +4643,9 @@ xla_cc_test(\n \"//xla:util\",\n \"//xla/hlo/testlib:hlo_hardware_independent_test_base\",\n \"//xla/tests:xla_internal_test_main\",\n+ \"//xla/tsl/platform:statusor\",\n+ \"@com_google_absl/... | 2025-12-02T11:29:50 |
golang/go | dcc77f9e3c7097b497e99800a7a4ed80c7a430d8 | c7b85e9ddc1e23f84ccb3c5de8fdb55e80a9dd69 | cmd/go: fix get -tool when multiple packages are provided
Fixes #74035
Change-Id: I51865f4f753aade9a8be62ed6f9bc2d298742bf1
Reviewed-on: https://go-review.googlesource.com/c/go/+/679975
Reviewed-by: Ian Alexander <jitsu@google.com>
Reviewed-by: Michael Matloob <matloob@google.com>
Reviewed-by: Michael Matloob <matloo... | [
{
"path": "src/cmd/go/internal/modget/get.go",
"patch": "@@ -453,7 +453,7 @@ func updateTools(ctx context.Context, queries []*query, opts *modload.WriteOpts)\n \t\tif queries[i].version == \"none\" {\n \t\t\topts.DropTools = append(opts.DropTools, m.Pkgs...)\n \t\t} else {\n-\t\t\topts.AddTools = append(opt... | 2025-06-07T19:28:20 |
mrdoob/three.js | a13bb0504102aeeb39c961da3a02590f0ef5b20d | a2f0682268790cbd5ed09e29c640b13b9d5afafa | CSS2DRenderer: Just traverse visible object (#28330)
* add cache empty check and set a default value
* Update CSS2DRenderer.js
* Update CSS2DRenderer.js
Fix code style.
---------
Co-authored-by: Michael Herzog <michael.herzog@human-interactive.org> | [
{
"path": "examples/jsm/renderers/CSS2DRenderer.js",
"patch": "@@ -124,6 +124,7 @@ class CSS2DRenderer {\n \t\t\t\thideObject( object.children[ i ] );\n \n \t\t\t}\n+\n \t\t}\n \n \t\tfunction renderObject( object, scene, camera ) {\n@@ -186,7 +187,7 @@ class CSS2DRenderer {\n \n \t\t\tconst result = [];\n ... | 2024-05-10T10:38:11 |
denoland/deno | e99b1c1f86d0095c5969f4dd61969e1a762424c0 | d84866e93355bce0098827255f0164969bada6a7 | feat: allow base64 ca cert in args (#29814)
This allows loading a base64 encoded cert directly from arg/env by
prefixing it with `base64:` | [
{
"path": "Cargo.lock",
"patch": "@@ -2190,6 +2190,7 @@ name = \"deno_lib\"\n version = \"0.25.0\"\n dependencies = [\n \"aws-lc-rs\",\n+ \"base64 0.22.1\",\n \"capacity_builder\",\n \"deno_error\",\n \"deno_fs\",",
"additions": 1,
"deletions": 0,
"language": "Unknown"
},
{
"path": "... | 2025-06-19T11:04:16 |
tensorflow/tensorflow | 31d72c9fabdb5fd6219aeb79822cb7725dc94f6d | a3e9e774068a7b8c0428c3f66f7825a8980d4fea | [XLA:CPU] Report compilation features mismatch as errors as opposed to warnings
PiperOrigin-RevId: 839180701 | [
{
"path": "third_party/xla/xla/service/cpu/BUILD",
"patch": "@@ -1867,6 +1867,7 @@ cc_library(\n \"//xla/service/llvm_ir:llvm_command_line_options\",\n \"//xla/tsl/platform:errors\",\n \"//xla/tsl/platform:statusor\",\n+ \"@com_google_absl//absl/algorithm:container\",\n ... | 2025-12-02T11:06:41 |
golang/go | a8dd771e132beb8e4b2354f209cbb29b9f4fc815 | bdb2d50fdf40706e7d7411f33ade80edac726707 | crypto/tls: check if quic conn can send session ticket
On SendSessionTicket, returns nil if SessionTicketsDisabled is disabled in config.
Fixes #62032
Change-Id: Id0c89e2e6fb0805bbf108bb0cafdabdfbaf3897f
Reviewed-on: https://go-review.googlesource.com/c/go/+/528755
Reviewed-by: Roland Shoemaker <roland@golang.org>
R... | [
{
"path": "src/crypto/tls/quic.go",
"patch": "@@ -302,6 +302,9 @@ type QUICSessionTicketOptions struct {\n // Currently, it can only be called once.\n func (q *QUICConn) SendSessionTicket(opts QUICSessionTicketOptions) error {\n \tc := q.conn\n+\tif c.config.SessionTicketsDisabled {\n+\t\treturn nil\n+\t}\n... | 2023-09-15T18:23:51 |
kubernetes/kubernetes | eaee6b6bce0155bce1b7be00e704a23dd2ace54e | dd6f46856dc365688b515d7a17a4410582457c7d | DRA device taints: add separate feature gate for rules
Support for DeviceTaintRules depends on a significant amount of
additional code:
- ResourceSlice tracker is a NOP without it.
- Additional informers and corresponding permissions in scheduler and controller.
- Controller code for handling status.
Not all users ne... | [
{
"path": "pkg/controller/devicetainteviction/device_taint_eviction.go",
"patch": "@@ -39,6 +39,7 @@ import (\n \t\"k8s.io/apimachinery/pkg/util/diff\"\n \tutilruntime \"k8s.io/apimachinery/pkg/util/runtime\"\n \t\"k8s.io/apimachinery/pkg/util/sets\"\n+\tutilfeature \"k8s.io/apiserver/pkg/util/feature\"\n \... | 2025-11-03T15:41:23 |
mrdoob/three.js | fc2b4a476b96e2d2ae2168000a799813953a0a4d | 94da2af3f0f545e8b8a1ba2a6144dfdec3c67fe2 | CI: Next try fixing E2E. (#28323)
* CI: Next try fixing E2E.
* Examples: Update screenshots.
* CI: Go back to actions/upload-artifact@v4. | [
{
"path": ".github/workflows/ci.yml",
"patch": "@@ -69,7 +69,7 @@ jobs:\n strategy:\n fail-fast: false\n matrix:\n- os: [ macos-latest ]\n+ os: [ windows-latest ]\n CI: [ 0, 1, 2, 3 ]\n env:\n CI: ${{ matrix.CI }}\n@@ -104,7 +104,7 @@ jobs:\n uses: act... | 2024-05-09T10:03:20 |
denoland/deno | 538f8870dc6250ea0ed3ea610d1ee84880427dfd | a334610faf9aee531c204e22a1474295460d56e1 | fix(ext/node): support KeyObject in publicEncrypt/privateDecrypt (#29798) | [
{
"path": "ext/node/polyfills/internal/crypto/cipher.ts",
"patch": "@@ -35,6 +35,7 @@ import {\n getArrayBufferOrView,\n KeyObject,\n } from \"ext:deno_node/internal/crypto/keys.ts\";\n+import { isKeyObject } from \"ext:deno_node/internal/crypto/_keys.ts\";\n import type { BufferEncoding } from \"ext:de... | 2025-06-19T00:48:29 |
swiftlang/swift | 6f81699db281995a0d8cb774d90e16f3b46be076 | d8605239445bc6bd7361176589511c8f65a83516 | [test] Fix a test for 32-bit Android armv7 and enable another one for 64-bit (#86732)
noncopyable-irgen is simply missing the armv7 triple, while the new
std::optional test only fails on Android armv7. | [
{
"path": "test/Interop/Cxx/class/noncopyable-irgen.swift",
"patch": "@@ -8,8 +8,6 @@\n // RUN: %target-swift-frontend -cxx-interoperability-mode=default -emit-ir -I %swift_src_root/lib/ClangImporter/SwiftBridging -I %t%{fs-sep}Inputs %t%{fs-sep}test.swift -Xcc -fignore-exceptions -verify -verify-additional... | 2026-01-24T19:30:33 |
golang/go | bdb2d50fdf40706e7d7411f33ade80edac726707 | 768c51e368e05739854c1413fdf7fd129d01e482 | net: fix WriteMsgUDPAddrPort addr handling on IPv4 sockets
Accept IPv4-mapped IPv6 destination addresses on IPv4 UDP sockets.
Fixes #74737.
Change-Id: I4624b9b8f861aedcae29e51d5298d23ce1c0f2c7
Reviewed-on: https://go-review.googlesource.com/c/go/+/689976
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accoun... | [
{
"path": "src/net/ipsock_posix.go",
"patch": "@@ -237,8 +237,12 @@ func ipToSockaddr(family int, ip IP, port int, zone string) (syscall.Sockaddr, e\n func addrPortToSockaddrInet4(ap netip.AddrPort) (syscall.SockaddrInet4, error) {\n \t// ipToSockaddrInet4 has special handling here for zero length slices.\n... | 2025-07-25T07:14:16 |
tensorflow/tensorflow | a3e9e774068a7b8c0428c3f66f7825a8980d4fea | 455247163f0fc1f0141ddb3a6d556933d5753ebb | PR #33910: Implement cross host transfer optimizations in StreamExecutorGpuClient
Imported from GitHub PR https://github.com/openxla/xla/pull/33910
📝 Summary of Changes
This PR adds three optimizations to the `CrossHost{Send,Receive}Buffers` methods in `StreamExecutorGpuClient`:
1. Communicators are cached for re-us... | [
{
"path": "third_party/xla/xla/pjrt/gpu/BUILD",
"patch": "@@ -68,9 +68,11 @@ cc_library(\n \"//xla:util\",\n \"//xla:xla_data_proto_cc\",\n \"//xla:xla_proto_cc\",\n+ \"//xla/backends/gpu/collectives:gpu_clique\",\n \"//xla/backends/gpu/collectives:gpu_clique_key\",\n ... | 2025-12-02T11:03:09 |
kubernetes/kubernetes | e5665154f79ca320255b8b6bedd5dcce69848345 | 26a2945d5de6c1dc0426aebe1ad36a32963aeb39 | kubeadm: add --allow-deprecated-api to 'config validate'
The command can have this additional flag so that a warning
is printed or not printed when a deprecated API is validated.
Additionally, this commit fixes missing UpgradeConfiguration
validation and strict errors. By default we call:
documentMapToUpgradeConfig... | [
{
"path": "cmd/kubeadm/app/cmd/config.go",
"patch": "@@ -311,7 +311,7 @@ func newCmdConfigMigrate(out io.Writer) *cobra.Command {\n // newCmdConfigValidate returns cobra.Command for the \"kubeadm config validate\" command\n func newCmdConfigValidate(out io.Writer) *cobra.Command {\n \tvar cfgPath string\n-\... | 2025-11-05T17:04:38 |
mrdoob/three.js | 2ab4c8875862d2f7651d540841fad900a991f784 | a6fba0fc3d5e3146600e3c5fb615003a5227f87a | WebGPURenderer: Fix SampledTexture not correctly bound (#28289)
* Update texture when binding is updated
* better fix
* fix
* needsBinding cleanup | [
{
"path": "examples/jsm/renderers/common/Bindings.js",
"patch": "@@ -128,18 +128,18 @@ class Bindings extends DataMap {\n \n \t\t\t} else if ( binding.isSampledTexture ) {\n \n-\t\t\t\tconst texture = binding.texture;\n-\n-\t\t\t\tif ( binding.needsBindingsUpdate ) needsBindingsUpdate = true;\n-\n \t\t\t\tc... | 2024-05-08T16:21:25 |
denoland/deno | a334610faf9aee531c204e22a1474295460d56e1 | b383433708bac190de8b193387f042c93be935e4 | fix(ext/node): add validation to Cipheriv methods (#29800) | [
{
"path": "ext/node/polyfills/internal/crypto/cipher.ts",
"patch": "@@ -41,7 +41,10 @@ import type {\n Encoding,\n } from \"ext:deno_node/internal/crypto/types.ts\";\n import { getDefaultEncoding } from \"ext:deno_node/internal/crypto/util.ts\";\n-import { ERR_INVALID_ARG_VALUE } from \"ext:deno_node/inte... | 2025-06-19T00:40:50 |
golang/go | 94d72355f662a1c8229db661cc068ea8e901641c | 8eb5f6020e707672a846f0f83011b87e48039550 | [dev.simd] simd: add emulations for bitwise ops and for mask/merge methods
This CL adds the emulations under a "wrong name"; subsequent CLs
will move the AVX512 versions of these operations out of the way,
and then will rename these to their better names.
Change-Id: I49e7a73e4fea74fb7bd26cb8062014568d7999ca
Reviewed-... | [
{
"path": "src/simd/genfiles.go",
"patch": "@@ -50,13 +50,20 @@ var convert32Shapes = &shapes{\n \tfloats: []int{32},\n }\n \n-var avx512MaskedLoadShapes = &shapes{\n+var avx512Shapes = &shapes{\n \tvecs: []int{512},\n \tints: []int{8, 16, 32, 64},\n \tuints: []int{8, 16, 32, 64},\n \tfloats: []int{32,... | 2025-07-30T21:42:10 |
mrdoob/three.js | 885c2dbab575e6528464e096784680d19914c3f3 | db4f94bd97494faf59d91fc9b6791a6ef1767de0 | Editor: Fixed assets lost when importing zipped OBJ/MTL (#28292)
* imports OBJ with textures
* set map.name to filename
* no filename needed in UITexture | [
{
"path": "editor/js/Loader.js",
"patch": "@@ -858,16 +858,36 @@ function Loader( editor ) {\n \n \t\tconst zip = unzipSync( new Uint8Array( contents ) );\n \n+\t\tconst manager = new THREE.LoadingManager();\n+\t\tmanager.setURLModifier( function ( url ) {\n+\n+\t\t\tconst file = zip[ url ];\n+\n+\t\t\tif (... | 2024-05-08T10:55:20 |
tensorflow/tensorflow | 5186ef0daabde2ff31bf3fd00d472679183fbe66 | 72d13ec6ef9bdef46f4a716762dd152eee4a79f0 | [XLA:CPU/GPU][XTile] Split out the tiled emitter specific constraints.
This fixes the issue with us getting invalid tiling results on CPU for reshape / bitcasts.
PiperOrigin-RevId: 839170888 | [
{
"path": "third_party/xla/xla/backends/cpu/codegen/tiled/BUILD",
"patch": "@@ -39,6 +39,7 @@ cc_library(\n \"//xla:shape_util\",\n \"//xla:util\",\n \"//xla/backends/cpu/codegen:kernel_api_ir_builder\",\n+ \"//xla/backends/gpu/codegen/triton:tiled_emitter_constraints\",\n ... | 2025-12-02T10:35:10 |
kubernetes/kubernetes | a49bc6f2fbbd9b1a634d9224dac9828e2012b4ab | 9a192aa1c3e8a7c1d03d626d6acb68f0fc328027 | kube-proxy/winkernel: fix stale RemoteEndpoints due to premature clearing of terminatedEndpoints map. | [
{
"path": "pkg/proxy/winkernel/proxier.go",
"patch": "@@ -405,7 +405,7 @@ func (proxier *Proxier) updateTerminatedEndpoints(eps []proxy.Endpoint, isOldEnd\n func (proxier *Proxier) endpointsMapChange(oldEndpointsMap, newEndpointsMap proxy.EndpointsMap) {\n \t// This will optimize remote endpoint and loadbal... | 2025-11-05T16:23:43 |
denoland/deno | b383433708bac190de8b193387f042c93be935e4 | 400a9565c335b51d78c8909f4dbf1dbd4fb5e5d8 | fix(install): ignore unknown JSR export errors on top level install (#29807)
Couldn't write a test, but it happens in some edge cases. | [
{
"path": "cli/graph_util.rs",
"patch": "@@ -77,6 +77,7 @@ pub struct GraphValidOptions<'a> {\n pub exit_integrity_errors: bool,\n pub allow_unknown_media_types: bool,\n pub ignore_graph_errors: bool,\n+ pub allow_unknown_jsr_exports: bool,\n }\n \n /// Check if `roots` and their deps are available. ... | 2025-06-18T18:37:14 |
golang/go | b3388569a187ea6be48caa41265f2b4dbc2fdfd3 | d83b16fcb8de765f25cabbea63284406ea6dd091 | reflect: handle zero-sized fields of directly-stored structures correctly
type W struct {
E struct{}
X *byte
}
type W is a "direct" type. That is, it is a pointer-ish type that can
be stored directly as the second word of an interface.
But if we ask reflect for W's first field, that value must *not* be
direct, as ... | [
{
"path": "src/reflect/value.go",
"patch": "@@ -1277,6 +1277,17 @@ func (v Value) Field(i int) Value {\n \t\t\tfl |= flagStickyRO\n \t\t}\n \t}\n+\tif fl&flagIndir == 0 && typ.Size() == 0 {\n+\t\t// Special case for picking a field out of a direct struct.\n+\t\t// A direct struct must have a pointer field a... | 2025-08-07T22:30:54 |
kubernetes/kubernetes | 79dc7908ff34217e6d2f8cc0031e81dda70069fa | c7b6dfb144aa24adaf443f9a3682f971e4f21140 | Fix potential dryrun failure when NodeLocalCRISocket reaches GA | [
{
"path": "cmd/kubeadm/app/util/apiclient/dryrun.go",
"patch": "@@ -567,9 +567,6 @@ func getNode(name string) *corev1.Node {\n \t\t\tLabels: map[string]string{\n \t\t\t\t\"kubernetes.io/hostname\": name,\n \t\t\t},\n-\t\t\tAnnotations: map[string]string{\n-\t\t\t\tconstants.AnnotationKubeadmCRISocket: \"dry... | 2025-11-04T15:25:13 |
denoland/deno | 0f0220e461b0845431cdfcf8d01d2721fe9ad0de | a6a61e66e9cd4216c8063b617c5fdc306e341954 | fix(ext/node): add `fchmod` and `fchmodSync` (#29791)
This PR implements `node:fs` `fchmod` and `fchmodSync`.
Towards https://github.com/denoland/deno/issues/27664 . | [
{
"path": "ext/fs/lib.rs",
"patch": "@@ -305,6 +305,8 @@ deno_core::extension!(deno_fs,\n op_fs_file_sync_async,\n op_fs_file_stat_sync,\n op_fs_file_stat_async,\n+ op_fs_fchmod_async,\n+ op_fs_fchmod_sync,\n op_fs_fchown_async,\n op_fs_fchown_sync,\n op_fs_flock_async,",
"... | 2025-06-18T10:48:14 |
tensorflow/tensorflow | 72d13ec6ef9bdef46f4a716762dd152eee4a79f0 | a15ea3651edaeda127980d0864446b0c9767b4a5 | PR #33819: [ROCM][NFC] gemm regression fp8 and bf16 tests, improved logging in rocm_executor
Imported from GitHub PR https://github.com/openxla/xla/pull/33819
📝 Summary of Changes
This PR adds a functional test checking for a particular failed gemm config on rocm platform. But this might also be useful on cuda. To d... | [
{
"path": "third_party/xla/xla/service/gpu/tests/BUILD",
"patch": "@@ -605,6 +605,22 @@ xla_test(\n ],\n )\n \n+xla_test(\n+ name = \"regression_dot_test\",\n+ srcs = [\"regression_dot_test.cc\"],\n+ backends = [\"gpu\"],\n+ tags = [\"test_migrated_to_hlo_runner_pjrt\"],\n+ deps = [\n+ ... | 2025-12-02T10:32:32 |
mrdoob/three.js | 65c4c2704ad9382f4788d771595ec6446cad28f9 | 346814524d163119af2473a399c9b7f864c9f604 | Editor: Fixed menubar/add/light japanese. | [
{
"path": "editor/js/Strings.js",
"patch": "@@ -1222,12 +1222,12 @@ function Strings( config ) {\n \t\t\t'menubar/add/mesh/lathe': '旋盤形',\n \t\t\t'menubar/add/mesh/sprite': 'スプライト',\n \n-\t\t\t'menubar/add/light': 'Light',\n-\t\t\t'menubar/add/light/ambient': 'アンビエントライト',\n-\t\t\t'menubar/add/light/directio... | 2024-05-08T00:03:03 |
golang/go | f3606b0825c20e3f3ccdae00bb8d5d7d8dfd745e | ee7bb8969a62b12f466f818e4e3d836a2e126940 | cmd/compile/internal/ssa: fix typo in LOONG64Ops.go comment
Change-Id: I680bae7fc1a26c1f249ab833fa8d41e9387b2d50
Reviewed-on: https://go-review.googlesource.com/c/go/+/693456
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Re... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/LOONG64Ops.go",
"patch": "@@ -589,7 +589,7 @@ func init() {\n \t\t{name: \"FPT\", controls: 1}, // FP flag is true\n \t\t{name: \"FPF\", controls: 1}, // FP flag is false\n \t\t{name: \"BEQ\", controls: 2}, // controls[0] == controls[1]\n-\t\t{name: \"BNE\", c... | 2025-08-06T02:31:59 |
denoland/deno | a6a61e66e9cd4216c8063b617c5fdc306e341954 | 94e26a90ea2f04d2fcf30c3a6229e4e8050cb9ec | fix(ext/node): deprecate Hash and Hmac constructors (#29774) | [
{
"path": "ext/node/polyfills/crypto.ts",
"patch": "@@ -143,8 +143,8 @@ import type {\n import {\n createHash,\n getHashes,\n- Hash,\n- Hmac,\n+ Hash as Hash_,\n+ Hmac as Hmac_,\n } from \"ext:deno_node/internal/crypto/hash.ts\";\n import { X509Certificate } from \"ext:deno_node/internal/crypto/x509... | 2025-06-18T01:37:03 |
mrdoob/three.js | 241a542e902988955a0ecad91925feacb29b5887 | 0e01940a39fab5d8d1fac0e8b10f0397fd665082 | Editor: Fixed camera name is always 'Camera' when recovering from indexedDB (#28309)
* recover camera name from IDB
* update | [
{
"path": "editor/js/Viewport.Controls.js",
"patch": "@@ -77,6 +77,8 @@ function ViewportControls( editor ) {\n \n \t} );\n \n+\tsignals.cameraResetted.add( update );\n+\n \tupdate();\n \n \t//",
"additions": 2,
"deletions": 0,
"language": "JavaScript"
}
] | 2024-05-07T21:20:55 |
kubernetes/kubernetes | 949be1d132ba05cb3ad9833a3d7de30a1959f642 | b3222498fdbe7b9927ae80ba7a88d5e243cbd8db | fixed comments due to switch from class name to class for GetDeviceClass | [
{
"path": "pkg/scheduler/framework/plugins/dynamicresources/dra_manager.go",
"patch": "@@ -90,7 +90,7 @@ func (s *DefaultDRAManager) DeviceClasses() fwk.DeviceClassLister {\n // disabled.\n //\n // That's okay, extendedresourcecache.ExtendedResourceCache.GetDeviceClass\n-// returns the empty string if calle... | 2025-11-05T15:07:21 |
tensorflow/tensorflow | 523cab83fd49bc2de197f70b4eab21538213bdac | abd1d2ac663f4640124f9926356736298cf518d9 | Add a constraint to ConvertRangeVariablesToDimensions test
The added constraint verifies that `ConvertRangeVariablesToDimensions` correctly preserves existing constraints.
This would have caught a precision bug in reshape and convolutions (b/464190225) during the migration.
PiperOrigin-RevId: 839150067 | [
{
"path": "third_party/xla/xla/hlo/analysis/indexing_map_test.cc",
"patch": "@@ -1554,7 +1554,8 @@ TEST_F(IndexingMapTest, ConvertRangeVariablesToDimensions) {\n d1 in [0, 3],\n to_convert_0 in [0, 2],\n range in [0, 1],\n- to_convert_1 in [0, 3]\n+ to_convert_1 in [0, 3],\n+ d0 +... | 2025-12-02T09:37:21 |
golang/go | 1f7ffca171cd8c50fe6a10eb77a84a95c5b37c61 | 8282b72d627269ed2c2f7db7ea744e109667d7b1 | time: skip TestLongAdjustTimers on plan9 (too slow)
The TestLongAdjustTimers test has been consistently timing out
after 60 seconds on plan9-arm. Skip the test for plan9, as it
is already skipped for being too slow on android and ios.
Fixes #74921
Change-Id: Icc32e902cecd2e98971a898373fe8346b179437d
Reviewed-on: htt... | [
{
"path": "src/time/tick_test.go",
"patch": "@@ -151,7 +151,7 @@ func TestTickerResetLtZeroDuration(t *testing.T) {\n }\n \n func TestLongAdjustTimers(t *testing.T) {\n-\tif runtime.GOOS == \"android\" || runtime.GOOS == \"ios\" {\n+\tif runtime.GOOS == \"android\" || runtime.GOOS == \"ios\" || runtime.GOOS... | 2025-08-07T10:58:20 |
denoland/deno | 94e26a90ea2f04d2fcf30c3a6229e4e8050cb9ec | 9dd0e9aa15dfab867c16155aa719a2ed38b23308 | fix(ext/node): improve scrypt support (#29773) | [
{
"path": "ext/node/ops/crypto/mod.rs",
"patch": "@@ -644,7 +644,7 @@ fn scrypt(\n parallelization,\n keylen as usize,\n )\n- .map_err(|_| JsErrorBox::generic(\"scrypt params construction failed\"))?;\n+ .map_err(|_| JsErrorBox::generic(\"Invalid scrypt param\"))?;\n \n // Call into scrypt\n ... | 2025-06-18T00:50:37 |
swiftlang/swift | 0ff6cf000a7319e2b3f32bfd72c1d7c66ba30823 | bf0e8835b63674ca6cb91123b78482b8e2e1c215 | Fixed expected error | [
{
"path": "test/Constraints/issue-85942.swift",
"patch": "@@ -7,6 +7,6 @@\n func f(buttonsStr: [Substring]) {\n // expected-error@+3 {{unexpected code '(separator: \",\").compactMap(Int.init)' in function call}}\n // expected-error@+2 {{key path cannot refer to instance method 'compactMap'}}\n- /... | 2026-01-24T13:34:12 |
mrdoob/three.js | 0e01940a39fab5d8d1fac0e8b10f0397fd665082 | 6d53d239bd9e2e669949f8ed58a86356b959546f | Update WebGLRenderer.js
Fix comment. | [
{
"path": "src/renderers/WebGLRenderer.js",
"patch": "@@ -2452,7 +2452,7 @@ class WebGLRenderer {\n \n \t\tthis.copyTextureToTexture = function ( srcTexture, dstTexture, srcRegion = null, dstPosition = null, level = 0 ) {\n \n-\t\t\t// support previous signature with source box first\n+\t\t\t// support prev... | 2024-05-07T14:23:17 |
tensorflow/tensorflow | b68422e7feda811a75ae9e2941bc48e91715bec5 | 2f27e757de377e99ce8d197014c82f4d6988c5c1 | Remove num_dims in SymbolicExpr::ReplaceDimsAndSymbols
I needed this to be consistent to AffineMap::replaceDimsAndSymbols that allows Dimensions to be empty. This is easier to be handled there because Dimensions and Symbols are treated differently. In SymbolicMap we treat both of them as kVariable.
Sadly this made me... | [
{
"path": "third_party/xla/xla/hlo/analysis/symbolic_expr.cc",
"patch": "@@ -764,19 +764,19 @@ SymbolicExpr SymbolicExpr::ReplaceVariables(\n \n SymbolicExpr SymbolicExpr::ReplaceSymbols(\n absl::Span<const SymbolicExpr> sym_replacements, int64_t num_dims) const {\n- return ReplaceDimsAndSymbols({}, sy... | 2025-12-02T08:52:55 |
golang/go | 8eb5f6020e707672a846f0f83011b87e48039550 | b226bcc4a9ae71dd75effbd020220590a29a68a9 | [dev.simd] cmd/compile, simd: API interface fixes
- Absolute -> Abs
- ApproximateReciprocal -> Reciprocal
- Other derived apis also changed.
- Round -> RoundToEven
- Other derived apis also changed.
- Drop DotProdBroadcast
- Fused(Mul|Add)(Mul|Add)? -> remove the "Fused"
- MulEvenWi... | [
{
"path": "src/cmd/compile/internal/amd64/simdssa.go",
"patch": "@@ -24,18 +24,6 @@ func ssaGenSIMDValue(s *ssagen.State, v *ssa.Value) bool {\n \t\tssa.OpAMD64VPABSQ128,\n \t\tssa.OpAMD64VPABSQ256,\n \t\tssa.OpAMD64VPABSQ512,\n-\t\tssa.OpAMD64VRCPPS128,\n-\t\tssa.OpAMD64VRCPPS256,\n-\t\tssa.OpAMD64VRCP14PS... | 2025-08-07T17:05:50 |
mrdoob/three.js | c3741d2f5d0acdfb747328b068d1cf082d8d9189 | 3bc0cc71548aad53c1b6c3450c7fe657d2f799f5 | WebGLRenderer: Add initRenderTarget function (#28285)
* align WebGLRenderer.copyTextureToTexture with copyTextureToTexture3D
* Make the function backwards compatible
* Add import statement
* Fix example
* Update init texture to support render target, support copy to render target
* Add initRenderTarget | [
{
"path": "src/renderers/WebGLRenderer.js",
"patch": "@@ -2672,6 +2672,16 @@ class WebGLRenderer {\n \n \t\t};\n \n+\t\tthis.initRenderTarget = function ( target ) {\n+\n+\t\t\tif ( properties.get( target ).__webglFramebuffer === undefined ) {\n+\n+\t\t\t\ttextures.setupRenderTarget( target );\n+\n+\t\t\t}\... | 2024-05-07T10:51:40 |
denoland/deno | 9dd0e9aa15dfab867c16155aa719a2ed38b23308 | 2572b8398b4f9011523a896c1f974b6132a22408 | test(lib): fix SIGSEGV on x86_64-unknown-linux-gnu targets (#29794)
Fixes #29793.
This PR reapplies https://github.com/denoland/deno/pull/22152 (see issue
for further details).
Changes `deno_core` in tests to be built with the
`unsafe_use_unprotected_platform` feature.
The issue is caused by two or more threads (in... | [
{
"path": "Cargo.lock",
"patch": "@@ -892,6 +892,7 @@ dependencies = [\n \"chrono\",\n \"deno_bench_util\",\n \"deno_cache_dir\",\n+ \"deno_core\",\n \"deno_lockfile 0.30.1\",\n \"deno_semver\",\n \"deno_terminal 0.2.2\",",
"additions": 1,
"deletions": 0,
"language": "Unknown"
},
{
... | 2025-06-18T00:49:25 |
swiftlang/swift | 96bc9aa90ce4f1fad41efccf71c3ce834d7c4c76 | 25a4744d55a491c7cdab3bbd684e33e40deb6038 | Fix the OSSA RAUW utility for unowned phis
The OwnershipRAUW utility is called by CSE, SILCombine, etc. whenever OSSA
values are substituted or combined. It handles ownership corner cases by
creating new copies. Destroys need to be insert for those new copies after all
original uses. It is impossible to do that when p... | [
{
"path": "include/swift/SILOptimizer/Utils/ValueLifetime.h",
"patch": "@@ -55,6 +55,10 @@ struct ValueLifetimeBoundary {\n /// excluding dead-end blocks. This is only useful when it is known that none\n /// of the lastUsers ends the lifetime, for example when creating a new borrow\n /// scope to encl... | 2026-01-24T05:46:04 |
kubernetes/kubernetes | c77a39c06fe245bce36a81e587f0951325367b7b | 336a3e927579c34af60c030eaf39a68a77d47054 | Address review comments and fix failing tests | [
{
"path": "pkg/scheduler/framework/plugins/nodevolumelimits/csi.go",
"patch": "@@ -360,7 +360,7 @@ func (pl *CSILimits) checkCSIDriverOnNode(pluginName string, csiNode *storagev1.\n \t\tif apierrors.IsNotFound(err) {\n \t\t\treturn true, nil\n \t\t}\n-\t\treturn false, err\n+\t\treturn false, fmt.Errorf(\"e... | 2025-11-04T18:42:08 |
tensorflow/tensorflow | 2f27e757de377e99ce8d197014c82f4d6988c5c1 | 46eaca3e1b281759541a07be0eb14a48eadea713 | Refactor: Use XLA_LOG_DEVICE and XLA_VLOG_DEVICE macros for logging with the device number prefix message.
PiperOrigin-RevId: 839116078 | [
{
"path": "third_party/xla/xla/stream_executor/cuda/cuda_executor.cc",
"patch": "@@ -175,15 +175,15 @@ absl::StatusOr<CUmodule> LoadPtx(Context* context, const char* ptx_contents) {\n CHECK_LE(info_log_buffer_bytes, kLogBufferBytesLimit);\n \n if (!status.ok()) {\n- LOG(ERROR) << \"... | 2025-12-02T07:57:42 |
golang/go | 8282b72d627269ed2c2f7db7ea744e109667d7b1 | dc54d7b607488e71776ba0fa3d09398d65daf033 | runtime/race: update darwin race syso
On macOS, the script in LLVM TSAN building the race syso files
produces the Mach-O object with a malformed dynamic symbol table,
which new Apple linker doesn't like and emits an annoying warning
(https://github.com/golang/go/issues/61229#issuecomment-1988965927).
The dynamic symbo... | [
{
"path": "src/runtime/race/README",
"patch": "@@ -4,14 +4,14 @@ the LLVM project (https://github.com/llvm/llvm-project/tree/main/compiler-rt).\n \n To update the .syso files use golang.org/x/build/cmd/racebuild.\n \n-internal/amd64v1/race_darwin.syso built with LLVM 51bfeff0e4b0757ff773da6882f4d538996c9b04... | 2025-03-25T19:21:04 |
mrdoob/three.js | 3bc0cc71548aad53c1b6c3450c7fe657d2f799f5 | 7a02475928a0f6e0b7f37c5db6bc6de48f358d2d | WebGLRenderer: Enable subframe upload in copyTextureToTexture, align API to 3d version (#28281)
* align WebGLRenderer.copyTextureToTexture with copyTextureToTexture3D
* Make the function backwards compatible
* Add import statement
* Fix example
* rename local state variables
* Add deprecation comment
... | [
{
"path": "docs/api/en/renderers/WebGLRenderer.html",
"patch": "@@ -376,19 +376,20 @@ <h3>\n \t\t</p>\n \n \t\t<h3>\n-\t\t\t[method:undefined copyTextureToTexture]( [param:Vector2 position], [param:Texture srcTexture], [param:Texture dstTexture], [param:Number level] )\n+\t\t\t[method:undefined copyTextureT... | 2024-05-07T10:17:22 |
denoland/deno | 2572b8398b4f9011523a896c1f974b6132a22408 | 59c416662b4b52e37731893f89012a86c8447555 | fix(ext/node): fix input validation of crypto hkdf (#29775) | [
{
"path": "ext/node/lib.rs",
"patch": "@@ -292,6 +292,7 @@ deno_core::extension!(deno_node,\n ops::crypto::op_node_fill_random,\n ops::crypto::op_node_gen_prime_async,\n ops::crypto::op_node_gen_prime,\n+ ops::crypto::op_node_get_hash_size,\n ops::crypto::op_node_get_hashes,\n ops::cr... | 2025-06-18T00:49:14 |
swiftlang/swift | 9e19558d597264f9b8623a2b83977e7a0dfe6181 | e7e9da0e59d66b26d335c8d0d710cf4a99676f67 | [ClangImporter] allow otherwise empty version info for "unavailable"
We don't want to import empty availability attributes, but the check
previously considered __attribute__((availability(ios,unavailable))) as
empty. This fixes failures in the following test cases:
- test/SourceKit/InterfaceGen/gen_clang_module.swift... | [
{
"path": "lib/ClangImporter/ImportDecl.cpp",
"patch": "@@ -9554,7 +9554,8 @@ void ClangImporter::Implementation::importAttributes(\n const auto &replacement = avail->getReplacement();\n \n if (introduced.empty() && deprecated.empty() && obsoleted.empty() &&\n- message.empty() && replac... | 2026-01-24T04:35:37 |
golang/go | e0a1ea431c960c3ed740f9b32754e7c31737035c | 2747f925dd1f08f9b9a1ef23170ee601519d70c2 | cmd/compile: make panicBounds stack frame smaller on ppc64
We're running into nosplit limits when compiled with all=-N -l.
Fixes #74910
Change-Id: I156263ae9b54ded240000001719512af86af70ee
Reviewed-on: https://go-review.googlesource.com/c/go/+/693557
Reviewed-by: Paul Murphy <paumurph@redhat.com>
Auto-Submit: Keith ... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/PPC64Ops.go",
"patch": "@@ -171,7 +171,7 @@ func init() {\n \t\tfpstore = regInfo{inputs: []regMask{gp | sp | sb, fp}}\n \t\tfpstoreidx = regInfo{inputs: []regMask{gp | sp | sb, gp | sp | sb, fp}}\n \t\tcallerSave = regMask(gp | fp | gr | xer)\n-\t\tfirst8 ... | 2025-08-06T16:59:12 |
mrdoob/three.js | 7a02475928a0f6e0b7f37c5db6bc6de48f358d2d | bff37d74e68039c721dafc6ecb1caee763625f7b | WebGLRenderer: Add "readRenderTargetPixelsAsync" function (#28291)
* Copy to async implementation from #24466
* probeSync cleanup
* More simplification
* Simplification
* Remove tangential functions
* More simplification
* Convert to thrown errors
* Remove comma
* Update docs, probe frequency | [
{
"path": "docs/api/en/renderers/WebGLRenderer.html",
"patch": "@@ -511,16 +511,23 @@ <h3>\n \t\t\tThis is a wrapper around\n \t\t\t[link:https://developer.mozilla.org/en-US/docs/Web/API/WebGLRenderingContext/readPixels WebGLRenderingContext.readPixels]().\n \t\t</p>\n-\t\t<p>\n-\t\t\tSee the [example:webgl... | 2024-05-07T09:02:48 |
denoland/deno | 59c416662b4b52e37731893f89012a86c8447555 | bc74fadac57f7b690e6088296c8d2ded316b9dec | fix(fmt): handle TS as syntax in Svelte each block (#29789)
Closes #29768 | [
{
"path": "Cargo.lock",
"patch": "@@ -5459,9 +5459,9 @@ dependencies = [\n \n [[package]]\n name = \"markup_fmt\"\n-version = \"0.19.1\"\n+version = \"0.21.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"ff37c5cadfdf4d91c0f140d516755c055a184a4e37757ff4a071272635b9f546... | 2025-06-17T18:10:06 |
golang/go | 2747f925dd1f08f9b9a1ef23170ee601519d70c2 | 025d36917c8f56baede2f477131bbf08bf1382ca | debug/macho: support reading imported symbols without LC_DYSYMTAB
Currently, the ImportedSymbols method requires an LC_DYSYMTAB load
command to exist. However, a Mach-O object file may not have an
LC_DYSYMTAB load command, e.g. the one produced by "ld -r".
Support this case by just reading the symbol table and gathers... | [
{
"path": "src/debug/macho/file.go",
"patch": "@@ -719,15 +719,28 @@ func (f *File) DWARF() (*dwarf.Data, error) {\n // referred to by the binary f that are expected to be\n // satisfied by other libraries at dynamic load time.\n func (f *File) ImportedSymbols() ([]string, error) {\n-\tif f.Dysymtab == nil ... | 2025-08-04T14:30:26 |
swiftlang/swift | 22e68a3aff995abb2707e4b3e1ac8b41943081e7 | dc8fdb271b4dd0a5fba262684ef3dfb23137efd6 | test/DebugInfo: enable all available tests for Wasm (#86742)
Wasm is the only 32-bit platform regularly tested on Swift CI, let's enable existing `DebugInfo` tests for it. | [
{
"path": "test/DebugInfo/advanced.swift",
"patch": "@@ -63,7 +63,7 @@ func foo(_ a: Int64, _ b: Int64) -> Int64 {\n \n // CHECK-DAG: ![[MAINFILE:[0-9]+]] = !DIFile(filename: \"{{.*}}DebugInfo/advanced.swift\", directory: \"{{.*}}\")\n // CHECK-DAG: !DICompileUnit(language: DW_LANG_Swift, file: ![[MAINFILE]... | 2026-01-24T01:36:20 |
mrdoob/three.js | 37e1cb53c2e6abbd603539263eadb21483c51366 | 153cc13f76b856ed9895458dd531a82c94cf2938 | Update ci.yml
Try fix. | [
{
"path": ".github/workflows/ci.yml",
"patch": "@@ -89,13 +89,23 @@ jobs:\n - name: === E2E testing ===\n run: npm run test-e2e\n - name: Upload output screenshots\n- uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # v4\n+ uses: actions/upload-artifac... | 2024-05-07T08:38:23 |
kubernetes/kubernetes | 902c2e0c1509ba51d2c703a0de66a838c38dc972 | c5b14939253a4763a2827d2ee184cf74149a56ad | Fix lint errors in dynamicresources_test.go
Signed-off-by: Ayato Tokubi <atokubi@redhat.com> | [
{
"path": "pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go",
"patch": "@@ -45,9 +45,9 @@ import (\n \tcgotesting \"k8s.io/client-go/testing\"\n \t\"k8s.io/client-go/tools/cache\"\n \t\"k8s.io/client-go/tools/events\"\n+\tfeaturegatetesting \"k8s.io/component-base/featuregate/testin... | 2025-10-13T11:54:49 |
denoland/deno | bc74fadac57f7b690e6088296c8d2ded316b9dec | b979c886e67e3cc6cb623493c62b566d2dceddfa | fix(ext/node): use primordials in `ext/node/polyfills/internal/event_target.mjs` (#29772) | [
{
"path": "ext/node/polyfills/internal/event_target.mjs",
"patch": "@@ -1,15 +1,37 @@\n // Copyright 2018-2025 the Deno authors. MIT license.\n // Copyright Node.js contributors. All rights reserved. MIT License.\n \n-// TODO(petamoriken): enable prefer-primordials for node polyfills\n-// deno-lint-ignore-f... | 2025-06-17T02:56:12 |
golang/go | f53dcb6280a66acb7f6a66d39eaf51e5f0f5698b | a3895fe9f18682d5055cb68283eba21d7255a67f | cmd/internal/testdir: unify link command
There are three places where we manually construct a "go tool link"
command. Unify them.
Test binaries don't need the symbol table or debug info, so pass
-s -w always.
Change-Id: I40143894172877738e250f291d7e7ef8dce62488
Reviewed-on: https://go-review.googlesource.com/c/go/+/... | [
{
"path": "src/cmd/internal/testdir/testdir_test.go",
"patch": "@@ -233,19 +233,23 @@ var stdlibImportcfgFile = sync.OnceValue(func() string {\n \treturn filename\n })\n \n-func linkFile(runcmd runCmd, goname string, importcfg string, ldflags []string) (err error) {\n+// linkFile links infile with the given... | 2025-08-02T22:06:57 |
mrdoob/three.js | a638cdc0163b70564fcd98771c552db81fcdadfc | f17e2622e64178cb408558ef54c84d0de6169f83 | Update ci.yml
Try upload-artifact fix. | [
{
"path": ".github/workflows/ci.yml",
"patch": "@@ -61,3 +61,54 @@ jobs:\n \n - name: === Circular dependencies testing ===\n run: npm run test-circular-deps\n+\n+ e2e:\n+ name: E2E testing\n+ runs-on: ${{ matrix.os }}\n+ timeout-minutes: 20\n+ strategy:\n+ fail-fast: false\n... | 2024-05-06T14:17:21 |
swiftlang/swift | 30f1b0187a98276315c3ed9145a2121adb3638e0 | 09c68d5c14c444f9af98dbbdcee45a0ef6faa2d5 | Sema: Add -solver-shuffle-disjunctions= and -solver-shuffle-choices= flags for debugging | [
{
"path": "include/swift/Basic/LangOptions.h",
"patch": "@@ -982,6 +982,13 @@ namespace swift {\n /// Should be stored sorted.\n llvm::SmallVector<unsigned, 4> DebugConstraintSolverOnLines;\n \n+ /// If non-zero, randomly shuffle disjunctions using this seed. For debugging.\n+ unsigned Shuffle... | 2026-01-23T18:28:42 |
denoland/deno | b979c886e67e3cc6cb623493c62b566d2dceddfa | e5b96243acd716eba06e257b29d1655557792e34 | fix(ext/node): fix error type in DiffieHellman constructor (#29721) | [
{
"path": "ext/node/polyfills/internal/crypto/diffiehellman.ts",
"patch": "@@ -117,7 +117,10 @@ export class DiffieHellmanImpl {\n // The supplied parameter is our primeLength, generate a suitable prime.\n this.#primeLength = sizeOrKey as number;\n if (this.#primeLength < 2) {\n- th... | 2025-06-17T02:43:26 |
tensorflow/tensorflow | 9c7e1932d0ef37f11da4a134abed77a4c602c1de | dbdaf3cfaf8546b1c5e8a55b2889a900802d9987 | [XLA] Add googletest wrapper that adds status asserts to gmock.h
And replace @com_google_googletest for internal uses. The only
exceptions that still need to rely on upstream googletest (renamed to
@com_google_googletest_upstream) is the wrapper itself.
This makes it possible to use the same assert macros internally ... | [
{
"path": "third_party/xla/MODULE.bazel",
"patch": "@@ -10,7 +10,8 @@ bazel_dep(name = \"bazel_skylib\", version = \"1.8.1\")\n bazel_dep(name = \"boringssl\", version = \"0.20250818.0\")\n bazel_dep(name = \"curl\", version = \"8.11.0\")\n bazel_dep(name = \"google_benchmark\", version = \"1.8.5\", repo_na... | 2025-12-01T18:37:16 |
golang/go | a3895fe9f18682d5055cb68283eba21d7255a67f | 608e9fac9055aa188c513f4dd53f12e692bc3c0c | database/sql: avoid closing Rows while scan is in progress
A database/sql/driver.Rows can return database-owned data
from Rows.Next. The driver.Rows documentation doesn't explicitly
document the lifetime guarantees for this data, but a reasonable
expectation is that the caller of Next should only access it
until the n... | [
{
"path": "src/database/sql/convert.go",
"patch": "@@ -335,7 +335,6 @@ func convertAssignRows(dest, src any, rows *Rows) error {\n \t\t\tif rows == nil {\n \t\t\t\treturn errors.New(\"invalid context to convert cursor rows, missing parent *Rows\")\n \t\t\t}\n-\t\t\trows.closemu.Lock()\n \t\t\t*d = Rows{\n \... | 2025-07-23T21:26:54 |
mrdoob/three.js | f17e2622e64178cb408558ef54c84d0de6169f83 | 79c34909e6af9250c38182665e3bd4896149f0ea | Editor: Fixed ghost viewport camera (#28277)
* fixed viewport camera selector
* set viewport camera to editor.camera
* uses editor.camera as default camera | [
{
"path": "editor/js/Viewport.Controls.js",
"patch": "@@ -61,6 +61,8 @@ function ViewportControls( editor ) {\n \n \tsignals.editorCleared.add( function () {\n \n+\t\teditor.setViewportCamera( editor.camera.uuid );\n+\n \t\tshadingSelect.setValue( 'solid' );\n \t\teditor.setViewportShading( shadingSelect.ge... | 2024-05-06T12:46:38 |
swiftlang/swift | 09c68d5c14c444f9af98dbbdcee45a0ef6faa2d5 | b36e17685c851a8ba0a39cefd55fe7b4164a3e2c | Sema: Fix oversight in unit test | [
{
"path": "unittests/Sema/KeypathFunctionConversionTests.cpp",
"patch": "@@ -60,6 +60,7 @@ TEST_F(SemaTest, TestKeypathFunctionConversionPrefersNarrowConversion) {\n llvm::SmallVector<GenericTypeParamType *, 2> genericTypeParams = {\n genericType1, genericType2};\n auto genericSig = GenericSignatu... | 2026-01-23T05:08:45 |
denoland/deno | e5b96243acd716eba06e257b29d1655557792e34 | 27ea4ef930fec56267a3e3b7dc257c6202e07c91 | test: fix flakiness of specs::coverage::data_url (#29760) | [
{
"path": "tests/specs/coverage/data_url/main_test.ts",
"patch": "@@ -1,5 +1,5 @@\n import { foo } from \"./main.ts\";\n \n-Deno.test(\"test\", () => {\n- foo();\n+Deno.test(\"test\", async () => {\n+ await foo();\n });",
"additions": 2,
"deletions": 2,
"language": "Unknown"
}
] | 2025-06-17T01:54:44 |
Subsets and Splits
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.