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 |
|---|---|---|---|---|---|
mrdoob/three.js | 23e68107bc64c6ee0dd39fc2d6839b4df94f8738 | d29a6ac4ac809c9255405333c55a70fa6dcfec08 | TSL: Fix Math/Operators fail generate cache with same node (#28502) | [
{
"path": "examples/jsm/nodes/core/Node.js",
"patch": "@@ -199,9 +199,11 @@ class Node extends EventDispatcher {\n \n \t\tconst nodeProperties = builder.getNodeProperties( this );\n \n+\t\tlet index = 0;\n+\n \t\tfor ( const childNode of this.getChildren() ) {\n \n-\t\t\tnodeProperties[ '_node' + childNode.... | 2024-05-27T18:26:54 |
tensorflow/tensorflow | 54f78c5142930de6813dcdd7d56f51f811a1362d | 40476df1a872a7c40ff35abf264a5026be321486 | #HLODiff Continue doing hlo diff when value tracing errors.
PiperOrigin-RevId: 840347255 | [
{
"path": "third_party/xla/xla/hlo/tools/hlo_diff/graph/hlo_gumgraph.cc",
"patch": "@@ -321,6 +321,11 @@ absl::Status HloGumgraph::PrecomputeComputationFingerprint() {\n \n void HloGumgraph::PrecomputeInstructionDependencies() {\n LOG(INFO) << \"Precomputing instruction dependencies\";\n+ if (hlo_value_t... | 2025-12-04T20:12:52 |
kubernetes/kubernetes | f86a456ea3d05af7a32e9f439e0afa8d6fa54ba6 | 5c7325dbda1e5328c876d3ebb79a7a2cb38274cb | Switch kube-proxy/server.go to context-aware logging APIs (HandleErrorWithContext, UntilWithContext) | [
{
"path": "cmd/kube-proxy/app/server.go",
"patch": "@@ -440,7 +440,7 @@ func serveHealthz(ctx context.Context, hz *healthcheck.ProxyHealthServer, errCh\n \t\treturn\n \t}\n \n-\tfn := func() {\n+\tfn := func(ctx context.Context) {\n \t\terr := hz.Run(ctx)\n \t\tif err != nil {\n \t\t\tlogger.Error(err, \"He... | 2025-10-31T15:11:46 |
denoland/deno | 4150ef401899a41dc83fe40f272aa069440d3a2b | f033cc116dfdbfd3735a6194de7e46cb4923d2d4 | docs: fix link in contribution guide (#29943)
Signed-off-by: ikkz <ylei.mk@gmail.com> | [
{
"path": ".github/CONTRIBUTING.md",
"patch": "@@ -65,7 +65,7 @@ To use a development version of the LSP in VSCode:\n In addition to the above make sure that:\n \n > To use the commands below, you need to first install the necessary tools on\n-> your system as described [here](building_from_source).\n+> you... | 2025-06-30T06:17:43 |
golang/go | ca66f907dd44d57c93b2dc5ecafcb8addf2b23c3 | 4b1800e47632d52006e3080580e4e60792389759 | cmd/compile: use generated loops instead of DUFFCOPY on amd64
This reverts commit 4e182db5fc876564a4f87a0602c58ea0ddc6e37c (CL 695196),
which is itself a revert of
ec9e1176c3209cf92e73e3deb2d8073fab5ea4d6 (CL 678620).
So this CL is exactly the same as CL 678620, but with a regalloc fix
(CL 696035) submitted first.
C... | [
{
"path": "src/cmd/compile/internal/amd64/ssa.go",
"patch": "@@ -142,45 +142,6 @@ func memIdx(a *obj.Addr, v *ssa.Value) {\n \ta.Index = i\n }\n \n-// DUFFZERO consists of repeated blocks of 4 MOVUPSs + LEAQ,\n-// See runtime/mkduff.go.\n-const (\n-\tdzBlocks = 16 // number of MOV/ADD blocks\n-\tdzBlockL... | 2025-08-13T16:41:17 |
mrdoob/three.js | f75fb41bb09d0abb9d440e83cde3c256ef292e4e | 2ffcccad017b9d3f9b376534a2425a49f7e728be | Editor: Fixed bouncy view in sidebar caused by `scrollIntoView()` (#28485)
* use scrollTo, not scrollIntoView
* cleanup | [
{
"path": "editor/js/Sidebar.Properties.js",
"patch": "@@ -49,17 +49,14 @@ function SidebarProperties( editor ) {\n \t\tif ( container.selected === 'geometryTab' ) {\n \n \t\t\tcontainer.select( geometryTab.isHidden() ? 'objectTab' : 'geometryTab' );\n-\t\t\tgeometryTab.dom.scrollIntoView( { inline: 'center... | 2024-05-27T05:24:06 |
denoland/deno | a70f1cfab41a883e7fca711a3025e52d337d9f36 | 8fcbb0fa4370e11a09f72f4546cdb592476e9714 | fix(node): use primordials more consistently in `_events.mjs` (#29930)
Fixes #29929
---------
Signed-off-by: Nicholas Berlette <11234104+nberlette@users.noreply.github.com>
Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com> | [
{
"path": "ext/node/polyfills/_events.mjs",
"patch": "@@ -29,13 +29,27 @@ import { primordials } from \"ext:core/mod.js\";\n const {\n ArrayPrototypeMap,\n ArrayPrototypeFilter,\n+ ArrayPrototypePush,\n+ ArrayPrototypeShift,\n+ ArrayPrototypeUnshift,\n+ Error,\n+ ErrorCaptureStackTrace,\n+ Functio... | 2025-06-28T17:03:21 |
tensorflow/tensorflow | 8cc92e6c7cddec9aae31ae9552241e973934dd8c | 7c532a903812d408cdaf2a67b5c2e92f8bac9761 | Improve `IfrtMergeReshardsPass` to allow for more efficient merging
The current implementation can only handle copy operations whose source operations are the same, but there can be many parallel copies that have the same source and destination devices but with arguments produced by different ops. See the added test f... | [
{
"path": "third_party/xla/xla/python/ifrt/ir/tests/ifrt_merge_reshards.mlir",
"patch": "@@ -3,6 +3,8 @@\n #sharding = #ifrt.sharding_param<2 to [0] on 2>\n !array0 = !ifrt.array<tensor<2xi32>, #sharding, [0,1]>\n !array1 = !ifrt.array<tensor<2xi32>, #sharding, [2,3]>\n+!array2 = !ifrt.array<tensor<2xi32>, ... | 2025-12-04T20:01:25 |
golang/go | 4b1800e47632d52006e3080580e4e60792389759 | af8870708bbaf15956a27cbab15582b4c666855e | encoding/json/v2: cleanup error constructors
There is no need to explicitly pass in the options
since this contained within the Encoder or Decoder struct
ever since https://github.com/go-json-experiment/json/pull/163.
Thus, remove it as an argument and fetch it from the coder.
This only modifies code that is compile... | [
{
"path": "src/encoding/json/v2/arshal_default.go",
"patch": "@@ -128,7 +128,7 @@ func makeBoolArshaler(t reflect.Type) *arshaler {\n \tfncs.marshal = func(enc *jsontext.Encoder, va addressableValue, mo *jsonopts.Struct) error {\n \t\txe := export.Encoder(enc)\n \t\tif mo.Format != \"\" && mo.FormatDepth ==... | 2025-07-24T22:07:39 |
mrdoob/three.js | 3b639a0cc9aadc2a0da34a1aaf278d9ea4cd6bf5 | 6557739eadb843648f1d04e21e7c681764b2eba4 | fix webgpu custom blending and align with webgl (#28490) | [
{
"path": "examples/jsm/renderers/webgpu/utils/WebGPUPipelineUtils.js",
"patch": "@@ -225,17 +225,21 @@ class WebGPUPipelineUtils {\n \t\tlet color, alpha;\n \n \t\tconst blending = material.blending;\n+\t\tconst blendSrc = material.blendSrc;\n+\t\tconst blendDst = material.blendDst;\n+\t\tconst blendEquati... | 2024-05-26T07:15:43 |
mrdoob/three.js | 629f8a068d006c84835a54583e4ac2d32ba64e1f | bd1103168c4dad8934645a7ab38f509f1b890e58 | WebGLRenderer: Remove deprecated WebGLRenderer.useLegacyLights (#28482)
* remove legacy lights support
* fix example
---------
Co-authored-by: aardgoose <angus.sawyer@email.com> | [
{
"path": "examples/jsm/environments/RoomEnvironment.js",
"patch": "@@ -24,11 +24,7 @@ class RoomEnvironment extends Scene {\n \t\tconst roomMaterial = new MeshStandardMaterial( { side: BackSide } );\n \t\tconst boxMaterial = new MeshStandardMaterial();\n \n-\t\tlet intensity = 5;\n-\n-\t\tif ( renderer !==... | 2024-05-24T09:22:37 |
golang/go | af8870708bbaf15956a27cbab15582b4c666855e | 0a75e5a07b858cbe6216c99fa12d582d063499d9 | encoding/json/v2: fix incorrect marshaling of NaN in float64 any
There is a fast-path optimization for marshaling an any type
that should be semantically identical to when the optimization
is not active (i.e., optimizeCommon is false).
Unfortunately, the optimization accidentally allows NaN,
which this change fixes.
... | [
{
"path": "src/encoding/json/v2/arshal_any.go",
"patch": "@@ -8,6 +8,7 @@ package json\n \n import (\n \t\"cmp\"\n+\t\"math\"\n \t\"reflect\"\n \t\"strconv\"\n \n@@ -35,20 +36,23 @@ func marshalValueAny(enc *jsontext.Encoder, val any, mo *jsonopts.Struct) error\n \tcase string:\n \t\treturn enc.WriteToken(j... | 2025-08-12T08:56:43 |
denoland/deno | c36a20f6bb6ff45d11b9720b65d8c9d90ce7dc84 | 8019d9db95e014166a55f789b5dfa46992b1a5a5 | feat(run): resolve main module with workspace resolver (#29928)
Closes https://github.com/denoland/deno/issues/29897.
Closes https://github.com/denoland/deno/issues/14066.
Closes https://github.com/denoland/deno/issues/19955.
With this PR we'll attempt to resolve bare specifiers passed to `run` or
`serve` with the wo... | [
{
"path": "cli/args/mod.rs",
"patch": "@@ -353,6 +353,110 @@ fn resolve_lint_rules_options(\n }\n }\n \n+pub struct WorkspaceMainModuleResolver {\n+ workspace_resolver: Arc<deno_resolver::workspace::WorkspaceResolver<CliSys>>,\n+ node_resolver: Arc<crate::node::CliNodeResolver>,\n+}\n+\n+impl WorkspaceM... | 2025-06-28T02:14:30 |
tensorflow/tensorflow | 7c532a903812d408cdaf2a67b5c2e92f8bac9761 | df6d943388dea7c285a097644f3e75b7c7cea27a | Small fixes to copy of coordination service and preemption.
PiperOrigin-RevId: 840328991 | [
{
"path": "third_party/xla/xla/pjrt/distributed/coordination/BUILD",
"patch": "@@ -56,6 +56,7 @@ cc_library(\n \":coordination_client\",\n \":coordination_service_error_util\",\n \":key_value_store\",\n+ \"//xla/service:global_device_id\",\n \"//xla/tsl/distributed_run... | 2025-12-04T19:28:31 |
kubernetes/kubernetes | d25c5251f945d26e42400ed55ab204f3c290e248 | f41e30e7e0af52b1ddfd2e6a0c7423cbddb91f4b | Fix the DRA extended quota test | [
{
"path": "test/e2e/dra/dra.go",
"patch": "@@ -2223,11 +2223,33 @@ var _ = framework.SIGDescribe(\"node\")(framework.WithLabel(\"DRA\"), func() {\n \t\t\tb.Create(ctx, claim, pod2)\n \t\t\tb.TestPod(ctx, f, pod2)\n \n+\t\t\t// Expect 5 extended and implicit devices / requests resources to be consumed:\n+\t\... | 2025-11-06T14:13:04 |
swiftlang/swift | 4a1950d292ae40c1643d9b2c158abe1df48829f2 | 7df75c8b80787b4652b2d186aae438a070bf2716 | SIL: fix a complexity problem in the ownership verifier
Computing dominance relation between instructions in the same block was done with linear search, e.g. when checking if a value-use is before its lifetime ending instruction.
This resulted in quadratic complexity and very long compile times for very large basic bl... | [
{
"path": "include/swift/SIL/LinearLifetimeChecker.h",
"patch": "@@ -15,6 +15,7 @@\n \n #include \"swift/Basic/Debug.h\"\n #include \"swift/Basic/LLVM.h\"\n+#include \"swift/SIL/InstructionUtils.h\"\n #include \"swift/SIL/SILArgument.h\"\n #include \"swift/SIL/SILInstruction.h\"\n #include \"swift/SIL/SILBa... | 2026-01-27T07:52:29 |
golang/go | 0a75e5a07b858cbe6216c99fa12d582d063499d9 | de9b6f98759f718fb48ecef22c2275ac98f1871d | encoding/json/v2: fix wrong type with cyclic marshal error in map[string]any
The type reported in a ErrCycle is the wrong type due to a typo.
This discrepency was detected by setting optimizeCommon to false
and running the tests.
This only modifies code that is compiled in under goexperiment.jsonv2.
Change-Id: I6826... | [
{
"path": "src/encoding/json/v2/arshal_any.go",
"patch": "@@ -104,7 +104,7 @@ func marshalObjectAny(enc *jsontext.Encoder, obj map[string]any, mo *jsonopts.St\n \tif xe.Tokens.Depth() > startDetectingCyclesAfter {\n \t\tv := reflect.ValueOf(obj)\n \t\tif err := visitPointer(&xe.SeenPointers, v); err != nil ... | 2025-08-12T08:45:44 |
mrdoob/three.js | 9e0001029fe69277221d4758a49a13bcee554bd5 | 66afee927b89e6a90b0e2a1575599258f19223b8 | #28440 Fixed BufferGeometryUtils.mergeVertices to handle morphAttributes (#28441)
* #28440 Fixed BufferGeometryUtils.mergeVertices to handle morphAttributes
* #28440 updated unit test location for mergeVertices
* #28440 removed empty line
* renamed morphAttributes local variable | [
{
"path": "examples/jsm/utils/BufferGeometryUtils.js",
"patch": "@@ -623,20 +623,22 @@ function mergeVertices( geometry, tolerance = 1e-4 ) {\n \t\tconst name = attributeNames[ i ];\n \t\tconst attr = geometry.attributes[ name ];\n \n-\t\ttmpAttributes[ name ] = new BufferAttribute(\n+\t\ttmpAttributes[ nam... | 2024-05-24T09:08:51 |
denoland/deno | 8019d9db95e014166a55f789b5dfa46992b1a5a5 | 3b8df8fde68b8565e0c5c33765ff2721b63ef873 | fix(check): don't detect tsconfigs with no deno.json/package.json or --no-config (#29925) | [
{
"path": "cli/tools/publish/module_content.rs",
"patch": "@@ -284,6 +284,7 @@ mod test {\n \n use deno_config::workspace::WorkspaceDiscoverStart;\n use deno_path_util::url_from_file_path;\n+ use deno_resolver::factory::ConfigDiscoveryOption;\n use deno_resolver::factory::WorkspaceDirectoryProvider;\... | 2025-06-27T22:09:55 |
tensorflow/tensorflow | c1379853376b08819162e1fc2da499227f9e90cb | 20260e4d35b8dd5a5e4d258c10a9ac1fbcb6d0e2 | Fix equality comparison of literals on the slow path.
Literal equality comparisons have a fast path and a slow path. The fast path
involves using memcmp to compare the raw bytes in the underlying buffers. We
take the fast path when we know that the underlying data is structured the same
way, i.e. the shape and layout ... | [
{
"path": "third_party/xla/xla/literal.cc",
"patch": "@@ -1916,7 +1916,21 @@ template <typename NativeT>\n bool LiteralBase::Piece::EqualElementsInternal(\n const LiteralBase::Piece& other, std::vector<int64_t>* multi_index) const {\n if (multi_index->size() == subshape().dimensions().size()) {\n- ... | 2025-12-04T19:04:59 |
kubernetes/kubernetes | a9dcc8e2c94f768c1b2ddf4fd4e1e9057b086678 | 0c2aa7fee2eff82dd5e44ae30c8bcfef7a2140db | Fix sending OnFinish to in-flight async API calls in scheduler | [
{
"path": "pkg/scheduler/backend/api_dispatcher/call_queue.go",
"patch": "@@ -122,12 +122,14 @@ func (cq *callQueue) merge(oldAPICall, apiCall *queuedAPICall) error {\n \t\treturn err\n \t}\n \tif oldAPICall.CallType() != apiCall.CallType() {\n+\t\tif cq.inFlightEntities.Has(oldAPICall.UID()) {\n+\t\t\t// O... | 2025-11-06T12:00:37 |
mrdoob/three.js | 610cf0bbb6835e4240b30d40b60e92dba5298330 | b846f12132b722420c13bb2ff88004a35371e945 | Editor: Fixed sidebar glitch via h scrollable (#28467)
* tabs with hscroll
* simplify
* cleanup
* polish
* hover on tabs not scrollbar
* thin | [
{
"path": "editor/css/main.css",
"patch": "@@ -76,17 +76,38 @@ textarea, input { outline: none; } /* osx */\n \n .TabbedPanel .Tabs {\n \tposition: relative;\n+\tz-index: 1; /** Above .Panels **/\n \tdisplay: block;\n \twidth: 100%;\n+\twhite-space: pre;\n+\toverflow: hidden;\n+\toverflow-x: auto;\n }\n \n+... | 2024-05-24T06:20:23 |
golang/go | 674c5f0edd82b5d1dd5cb44eb4b85830245c151e | 9bbea0f21a4539ea365d4804131b17d3b963c4f7 | os/exec: fix incorrect expansion of ".." in LookPath on plan9
The correction in CL 685755 is incomplete for plan9, where path
search is performed even on file strings containing "/". By
applying filepath.Clean to the argument of validateLookPath,
we can check for bogus file strings containing ".." where the
later call... | [
{
"path": "src/os/exec/lp_plan9.go",
"patch": "@@ -36,7 +36,7 @@ func findExecutable(file string) error {\n // As of Go 1.19, LookPath will instead return that path along with an error satisfying\n // [errors.Is](err, [ErrDot]). See the package documentation for more details.\n func LookPath(file string) (s... | 2025-08-07T10:15:23 |
denoland/deno | 3b8df8fde68b8565e0c5c33765ff2721b63ef873 | c73b91318beb2575e1166d455aeb76996c513fcd | fix(ext/node): don't show deprecation warnings for dependencies (#29909)
Note: We found a case where the v8::StackTrace::current_stack_trace(scope, 20) returns the stack trace which only contains ext: entries in op_node_call_is_from_dependency.
Steps to reproduce:
```
touch package.json
deno i npm:vitest
```
```
// ... | [
{
"path": "ext/node/ops/util.rs",
"patch": "@@ -106,6 +106,7 @@ pub fn op_node_call_is_from_dependency<\n let Some(stack_trace) = v8::StackTrace::current_stack_trace(scope, 20) else {\n return false;\n };\n+ let mut only_internal = true;\n for i in 0..stack_trace.get_frame_count() {\n let Som... | 2025-06-27T13:27:45 |
mrdoob/three.js | 82b78e710c3b507f90e63ebf0527299187d87f25 | 2f55b3553be988ca7666896e300557957b534a45 | WebGPURenderer: RenderBundle (#28347)
* wip
* add demo
* add gpu metrics
* fix bundeType condition
* cleanup
* refactor and cleanup
* support postprocess and multisample
* update
* cache and pbr on bundle example
* wip static mode
* update
* update
* revert shared
* ci
* circu... | [
{
"path": "examples/files.json",
"patch": "@@ -386,7 +386,8 @@\n \t\t\"webgpu_instancing_morph\",\n \t\t\"webgpu_texturegrad\",\n \t\t\"webgpu_volume_cloud\",\n-\t\t\"webgpu_volume_perlin\"\n+\t\t\"webgpu_volume_perlin\",\n+\t\t\"webgpu_renderbundle\"\n \t],\n \t\"webaudio\": [\n \t\t\"webaudio_orientation\... | 2024-05-23T23:32:38 |
golang/go | 9bbea0f21a4539ea365d4804131b17d3b963c4f7 | 08eef97500bd814a1dc83596a45837e6c7a7d43c | cmd/compile: during regalloc, fixedreg values are always available
It is ok to clobber registers that have a copy of a fixedreg value,
as that value is always available in its original location later
if we need it. (See 14 lines below the change.)
This CL will fix the regalloc infinite loop that CL 678620 introduced.... | [
{
"path": "src/cmd/compile/internal/ssa/regalloc.go",
"patch": "@@ -2476,7 +2476,7 @@ func (e *edgeState) processDest(loc Location, vid ID, splice **Value, pos src.XP\n \t}\n \n \t// Check if we're allowed to clobber the destination location.\n-\tif len(e.cache[occupant.vid]) == 1 && !e.s.values[occupant.vi... | 2025-08-13T21:01:30 |
denoland/deno | 9026234a2347ad8741a4fa032dd11b22c94e5750 | 7d36d8e8ff7ff39727c8b325d132ad047541ca1f | fix(ext/node): keep BOM in buffer.toString('utf8') (#29896) | [
{
"path": "ext/node/polyfills/internal/buffer.mjs",
"patch": "@@ -1154,7 +1154,7 @@ function _base64Slice(buf, start, end) {\n return forgivingBase64Encode(buf.slice(start, end));\n }\n }\n-const decoder = new TextDecoder();\n+const decoder = new TextDecoder(\"utf-8\", { ignoreBOM: true });\n \n funct... | 2025-06-27T03:41:27 |
tensorflow/tensorflow | 20260e4d35b8dd5a5e4d258c10a9ac1fbcb6d0e2 | f305abaa31d4eb4a8a31b495771e93bd358807c2 | [XLA] Replace TF_ASSIGN_OR_RETURN and TF_RETURN_IF_ERROR with standard macros.
This change migrates from the TensorFlow-specific `TF_ASSIGN_OR_RETURN` and `TF_RETURN_IF_ERROR` macros to the more standard `ASSIGN_OR_RETURN` and `RETURN_IF_ERROR`. A new `tsl/platform/status_macros.h` is introduced to provide these macro... | [
{
"path": "third_party/xla/xla/hlo/ir/BUILD",
"patch": "@@ -102,6 +102,7 @@ cc_library(\n \"//xla/tsl/platform:errors\",\n \"//xla/tsl/platform:logging\",\n \"//xla/tsl/platform:status\",\n+ \"//xla/tsl/platform:status_macros\",\n \"//xla/tsl/platform:statusor\",\n ... | 2025-12-04T19:02:37 |
mrdoob/three.js | b4ac236fa8dd322dd3030aac20970268cb01c51c | 6c8b877c0dd161388a30f0418eea26709244476b | Editor: Added translation for script title (#28471)
* adds translation for script title
* fix shaders title in fr | [
{
"path": "editor/js/Script.js",
"patch": "@@ -6,6 +6,7 @@ import { SetMaterialValueCommand } from './commands/SetMaterialValueCommand.js';\n function Script( editor ) {\n \n \tconst signals = editor.signals;\n+\tconst strings = editor.strings;\n \n \tconst container = new UIPanel();\n \tcontainer.setId( 's... | 2024-05-23T14:16:31 |
golang/go | e001300cf21bad54afb5052e9ff823f8c1cbd407 | d5dea86993e1bc07bb9a49d2930655050da006d7 | [dev.simd] cmd/compile: fix LoadReg so it is aware of register target
SIMD code generation created interesting new type/register
combintations.
Change-Id: I9c9a73bf51f6cb54551db1fdc88f9dd1eef7ab26
Reviewed-on: https://go-review.googlesource.com/c/go/+/695895
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-acc... | [
{
"path": "src/cmd/compile/internal/amd64/ssa.go",
"patch": "@@ -47,8 +47,8 @@ func isFPReg(r int16) bool {\n \treturn x86.REG_X0 <= r && r <= x86.REG_Z31\n }\n \n-// loadByType returns the load instruction of the given type.\n-func loadByType(t *types.Type) obj.As {\n+// loadByTypeAndReg returns the load i... | 2025-08-13T16:44:01 |
kubernetes/kubernetes | 6b764d555f19732844fb2023a0fc1b21628cc1ec | da1981248e31927c3bee59be918e60b40622e5af | test: update MutableCSINodeAllocatableCount tests for the new attacher
The new external-attacher already sets (or clears) VolumeAttachment
Status.Status.AttachError.ErrorCode, based on its feature gate.
Stop patching the VolumeAttachment in an e2e test, but pass the right
feature gate to the external-attacher instead... | [
{
"path": "test/e2e/storage/csimock/mutable_csinode_allocatable.go",
"patch": "@@ -18,7 +18,6 @@ package csimock\n \n import (\n \t\"context\"\n-\t\"encoding/json\"\n \t\"fmt\"\n \t\"strings\"\n \t\"sync/atomic\"\n@@ -30,17 +29,12 @@ import (\n \n \t\"github.com/onsi/ginkgo/v2\"\n \n-\tjsonpatch \"gopkg.in/... | 2025-11-05T12:56:56 |
denoland/deno | 7d36d8e8ff7ff39727c8b325d132ad047541ca1f | 65e1aaefba8180365db2433c72cbf7361a1b8fdb | fix(ext/node): fix reference error in node:stream (#29894) | [
{
"path": "ext/node/polyfills/internal/errors.ts",
"patch": "@@ -1460,6 +1460,11 @@ export class ERR_HTTP_TRAILER_INVALID extends NodeError {\n );\n }\n }\n+export class ERR_ILLEGAL_CONSTRUCTOR extends NodeTypeError {\n+ constructor() {\n+ super(\"ERR_ILLEGAL_CONSTRUCTOR\", \"Illegal constructor\"... | 2025-06-27T00:45:52 |
swiftlang/swift | 623f36b472b1319e759d58d74bb30f5d737de746 | 7d125239bf136b1fcad90ff4a4302150bbb521df | Fix test/Generics/Inputs/conditional_conformances_invisible_witness_other.swift
- Fixes rdar://168942655 | [
{
"path": "test/Generics/Inputs/conditional_conformances_invisible_witness_other.swift",
"patch": "@@ -6,10 +6,8 @@ internal protocol Q {}\n \n extension Q {\n public var foo: String { \"\" }\n- // expected-note@-1 {{mark the property as 'public' to satisfy the requirement}}\n }\n \n extension Optional: ... | 2026-01-27T00:07:41 |
mrdoob/three.js | bb47c32c89184671b6a87c217309b6d4c44e6d8b | 496acf988a7a7694d2215d1fc858e081247f9135 | DepthTexture: Update depth + stencil textures to work with multi sample RTT, make formats consistent (#28460)
* update rendertarget setup logic
* rearrange
* simplification
* More variable sharing
* More simplification
* Support other depth attachment types
* Updates
* fix internal depth buffer ta... | [
{
"path": "docs/api/en/textures/DepthTexture.html",
"patch": "@@ -33,10 +33,7 @@ <h3>\n \n \t\t\t[page:Number height] -- height of the texture.<br />\n \n-\t\t\t[page:Constant type] -- Default is [page:Textures THREE.UnsignedIntType]\n-\t\t\twhen using [page:Textures DepthFormat] and [page:Textures THREE.Un... | 2024-05-22T13:53:40 |
tensorflow/tensorflow | 176d40b5dbc2211653ba93ffdc4ce454b963ad81 | 239e1bbe60e36c238e5e388c11120f39cd40a26d | PR #34707: Preserve existing backend config in WhileLoopTripCountAnnotator
Imported from GitHub PR https://github.com/openxla/xla/pull/34707
📝 Summary of Changes
This PR fixes a bug in WhileLoopTripCountAnnotator where it would overwrite the entire WhileLoopBackendConfig, causing loss of data set by previous passes.... | [
{
"path": "third_party/xla/xla/hlo/transforms/while_loop_trip_count_annotator.cc",
"patch": "@@ -44,6 +44,13 @@ absl::StatusOr<bool> WhileLoopTripCountAnnotator::RunImpl(\n // The following analyses all need the induction variable index.\n WhileLoopBackendConfig config;\n \n+ // Prese... | 2025-12-04T18:05:57 |
golang/go | d5dea86993e1bc07bb9a49d2930655050da006d7 | 08ab8e24a310944768717356e188a14c46c7447b | [dev.simd] cmd/compile: fix isIntrinsic for methods; fix fp <-> gp moves
also includes a handy debugging hook for the inliner.
Change-Id: I23d0619506219d21db78c6c801612ff058562142
Reviewed-on: https://go-review.googlesource.com/c/go/+/694118
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gservic... | [
{
"path": "src/cmd/compile/internal/amd64/ssa.go",
"patch": "@@ -43,6 +43,10 @@ func ssaMarkMoves(s *ssagen.State, b *ssa.Block) {\n \t}\n }\n \n+func isFPReg(r int16) bool {\n+\treturn x86.REG_X0 <= r && r <= x86.REG_Z31\n+}\n+\n // loadByType returns the load instruction of the given type.\n func loadByTy... | 2025-08-07T20:44:50 |
kubernetes/kubernetes | 5d1f9107ef87292e0c18dd3a1820a209882c642d | a3093a95f261c16ff31e649b0580b21f1487f991 | test: fix sed in update-hostpath.sh
`sed -i ''` does not work on Fedora:
> sed: can't read : No such file or directory | [
{
"path": "test/e2e/testing-manifests/storage-csi/update-hostpath.sh",
"patch": "@@ -141,5 +141,12 @@ done\n grep -r image: hostpath/hostpath/csi-hostpath-plugin.yaml | while read -r image; do\n version=$(echo \"$image\" | sed -e 's/.*:\\(.*\\)/\\1/')\n image=$(echo \"$image\" | sed -e 's/.*image: \... | 2025-11-05T09:59:00 |
denoland/deno | 65e1aaefba8180365db2433c72cbf7361a1b8fdb | de02d99a17321a843dd6cd3bb060d78a5eb6c241 | fix(ext/node): add type check to LibuvStreamWrap.writeBuffer (#29879) | [
{
"path": "ext/node/polyfills/internal_binding/stream_wrap.ts",
"patch": "@@ -37,6 +37,7 @@ const {\n Symbol,\n TypedArrayPrototypeSlice,\n Uint8Array,\n+ Uint8ArrayPrototype,\n } = primordials;\n import { op_can_write_vectored, op_raw_write_vectored } from \"ext:core/ops\";\n \n@@ -51,6 +52,7 @@ imp... | 2025-06-26T23:48:57 |
mrdoob/three.js | 02ed248659a4787aaae25cd18e246e02baa9b47c | 687a4caf8c5d633df691a90369c9c185a4acb0fc | BatchedMesh: Add support for Instanced rendering with sorting, frustum culling (#28404)
* Get the instanced batching working
* re add color support
* fix extension use
* update function name
* small fixes
* fix array initialization
* fix raycast
* missed variable usage
* Add logic for the batch... | [
{
"path": "examples/webgl_mesh_batch.html",
"patch": "@@ -179,8 +179,8 @@\n \t\tfunction initBatchedMesh() {\n \n \t\t\tconst geometryCount = api.count;\n-\t\t\tconst vertexCount = api.count * 512;\n-\t\t\tconst indexCount = api.count * 1024;\n+\t\t\tconst vertexCount = geometries.length * 512;\n+\t\t\tcons... | 2024-05-22T09:13:22 |
swiftlang/swift | 76224e687401d699344e54ec9caa670d23765559 | afc9f974510627d54f2f9bec363b0c2e34244424 | Added -disable-experimental-parser-round-trip to RUN and removed an expected error | [
{
"path": "test/Constraints/issue-85942.swift",
"patch": "@@ -1,11 +1,9 @@\n-// expected-error@1 {{new Swift parser generated errors for code that C++ parser accepted}}\n-// RUN: %target-typecheck-verify-swift\n+// RUN: %target-typecheck-verify-swift -disable-experimental-parser-round-trip\n \n // https://g... | 2026-01-26T22:42:39 |
golang/go | 08eef97500bd814a1dc83596a45837e6c7a7d43c | 2fe5d51d0494d3241a8006d797d02510b030c0e3 | runtime/trace: fix documentation typo
Change-Id: I3d8dc20536c7a1fb4b1d895fcf989f86bf45f499
GitHub-Last-Rev: 234aea60e25b01e84abdf485cebbd0da5f392fed
GitHub-Pull-Request: golang/go#74991
Reviewed-on: https://go-review.googlesource.com/c/go/+/695535
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gs... | [
{
"path": "src/runtime/trace/flightrecorder.go",
"patch": "@@ -158,7 +158,7 @@ type FlightRecorderConfig struct {\n \t//\n \t// The flight recorder will strive to promptly discard events older than the minimum age,\n \t// but older events may appear in the window snapshot. The age setting will always be\n-\... | 2025-08-13T06:37:55 |
tensorflow/tensorflow | 239e1bbe60e36c238e5e388c11120f39cd40a26d | 59c9edde5e2ffeae883b805bb83739c9dc223830 | [xla:gpu] Move MulticastMemory to se::gpu namespace
Also fix couple of clang warnings in cuda_executor.
PiperOrigin-RevId: 840291167 | [
{
"path": "third_party/xla/xla/backends/gpu/runtime/BUILD",
"patch": "@@ -1996,6 +1996,7 @@ cc_library(\n \"//xla/stream_executor:stream_executor_h\",\n \"//xla/stream_executor/gpu:collective_kernel_metadata\",\n \"//xla/stream_executor/gpu:gpu_executor_header\",\n+ \"//xla/st... | 2025-12-04T18:02:23 |
kubernetes/kubernetes | 8be985d4fabaa4f0064639f8300d057afc250f3f | b07d0f852df1d93251aa5450e4f9aafa5c3cb103 | kubelet: fix concurrent map write error when creating a pod with empty volumes when the LocalStorageCapacityIsolationFSQuotaMonitoring feature-gate is enabled | [
{
"path": "pkg/volume/util/fsquota/quota_linux.go",
"patch": "@@ -158,6 +158,12 @@ func clearMountpoint(path string) {\n \tdelete(mountpointMap, path)\n }\n \n+func clearSupportsQuotas(path string) {\n+\tsupportsQuotasLock.Lock()\n+\tdefer supportsQuotasLock.Unlock()\n+\tdelete(supportsQuotasMap, path)\n+}\... | 2025-11-06T08:23:04 |
denoland/deno | 7a9ab843bd4e33c12ee4e092a87b93ae23735a6d | 9913311860bc7479d0cc52c72f45eadc5adf2609 | feat(check): tsconfig "references", "extends", "files", "include" and "exclude" (#29843)
- Each workspace directory is probed for a `tsconfig.json`.
- These and any that are included by their `references` are put into a
list ordered by priority.
- A tsconfig has lower priority than its `references`.
- An earlier lis... | [
{
"path": "Cargo.lock",
"patch": "@@ -2698,6 +2698,7 @@ dependencies = [\n \"http 1.1.0\",\n \"import_map\",\n \"indexmap 2.9.0\",\n+ \"jsonc-parser\",\n \"log\",\n \"node_resolver\",\n \"once_cell\",",
"additions": 1,
"deletions": 0,
"language": "Unknown"
},
{
"path": "cli/args/mo... | 2025-06-26T21:17:07 |
mrdoob/three.js | 687a4caf8c5d633df691a90369c9c185a4acb0fc | 1164bf1c5029d99d48fa9002342fd7ed4122ba94 | fix: Make the render background get the correct Alpha (#28459) | [
{
"path": "examples/jsm/postprocessing/RenderPass.js",
"patch": "@@ -42,7 +42,7 @@ class RenderPass extends Pass {\n \t\tif ( this.clearColor !== null ) {\n \n \t\t\trenderer.getClearColor( this._oldClearColor );\n-\t\t\trenderer.setClearColor( this.clearColor );\n+\t\t\trenderer.setClearColor( this.clearCo... | 2024-05-22T09:07:27 |
golang/go | 2fe5d51d0494d3241a8006d797d02510b030c0e3 | 9fcb87c352b398aa650310160346c8d9bfcdcc45 | internal/trace: fix wrong scope for Event.Range or EvGCSweepActive
Change-Id: I6a6a69643e804c75914e6eedd32463cb825ab69f
Reviewed-on: https://go-review.googlesource.com/c/go/+/694695
Reviewed-by: Michael Knyszek <mknyszek@google.com>
Reviewed-by: David Chase <drchase@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scop... | [
{
"path": "src/internal/trace/event.go",
"patch": "@@ -489,7 +489,6 @@ func (e Event) Range() Range {\n \t\t} else {\n \t\t\tr.Scope.id = int64(e.Proc())\n \t\t}\n-\t\tr.Scope.id = int64(e.Proc())\n \tcase tracev2.EvGCMarkAssistBegin, tracev2.EvGCMarkAssistActive, tracev2.EvGCMarkAssistEnd:\n \t\tr.Name = \... | 2025-07-02T19:49:45 |
swiftlang/swift | 911f9d66d5823a857073615eb638bd9bf147a520 | 5e70d2df026b7a7dbd642b1e701192e604b01192 | [PrintAsClang] ensure search paths have trailing /
When emitting ObjC textual imports for Swift headers, we need to
carefully handle any trailing / for prefixing to work correctly. We
add a single trailing / to header search paths when normalizing so
that they correctly prefix match against header paths. | [
{
"path": "lib/PrintAsClang/PrintAsClang.cpp",
"patch": "@@ -318,9 +318,7 @@ static void collectClangModuleHeaderIncludes(\n }\n \n if (!containingSearchDirPath.empty()) {\n- llvm::SmallString<128> prefixToRemove =\n- llvm::formatv(\"{0}/\", containingSearchDirPath);\n- llvm::sys:... | 2026-01-15T21:54:40 |
tensorflow/tensorflow | e9ecf7336129ccc6468f1f5a5506233c8e050ae3 | d72c2916ba15fd8bbd984a6486cc449cde1d66b0 | PR #34499: Fix cublasLT bug when swap operands
Imported from GitHub PR https://github.com/openxla/xla/pull/34499
🎯 Justification
This pull request introduces support for FP8 matmul operations with swapped operands in the GPU autotuner and ensures correct handling of scaling factors when operands are swapped. The mai... | [
{
"path": "third_party/xla/xla/backends/gpu/autotuner/BUILD",
"patch": "@@ -257,6 +257,7 @@ xla_test(\n \"//xla/hlo/testlib:filecheck\",\n \"//xla/hlo/testlib:hlo_hardware_independent_test_base\",\n \"//xla/service:compiler\",\n+ \"//xla/service:executable\",\n \"//xla... | 2025-12-04T14:18:00 |
mrdoob/three.js | 1164bf1c5029d99d48fa9002342fd7ed4122ba94 | b38ef166c7ed9efa1cac71b4fd16d0e168079ad7 | WebGPURenderer: Fix shadow layers (#28451)
* Fix shadow layers
* cleanup | [
{
"path": "examples/jsm/nodes/lighting/AnalyticLightNode.js",
"patch": "@@ -182,7 +182,7 @@ class AnalyticLightNode extends LightingNode {\n \tupdateShadow( frame ) {\n \n \t\tconst { rtt, light } = this;\n-\t\tconst { renderer, scene } = frame;\n+\t\tconst { renderer, scene, camera } = frame;\n \n \t\tcons... | 2024-05-22T01:42:40 |
denoland/deno | 7554b28a04ac149ff0d5ff84cf2490add30a4f5f | 3cefece2dad65f6876041e5a27909e7bc26878a1 | fix: support `Deno.permissions.query({name:"import"})` (#29610)
Closes #27050 | [
{
"path": "cli/tsc/dts/lib.deno.ns.d.ts",
"patch": "@@ -4069,6 +4069,21 @@ declare namespace Deno {\n path?: string | URL;\n }\n \n+ /** The permission descriptor for the `allow-import` and `deny-import` permissions, which controls\n+ * access to importing from remote hosts via the network. The opt... | 2025-06-26T20:13:56 |
golang/go | 08ab8e24a310944768717356e188a14c46c7447b | 702ee2d51ed0522e3942d0dd2819e2c8cb8a10f2 | [dev.simd] cmd/compile: generated code from 'fix generated rules for shifts'
this code is generated by simdgen CL 695455
Change-Id: I5afdc209a50b49d68e120130e0578e4666bf8749
Reviewed-on: https://go-review.googlesource.com/c/go/+/695475
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccou... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/simdAMD64.rules",
"patch": "@@ -1444,42 +1444,33 @@\n (SetLoUint32x16 x y) => (VINSERTI64X4512 [0] x y)\n (SetLoUint64x4 x y) => (VINSERTI128256 [0] x y)\n (SetLoUint64x8 x y) => (VINSERTI64X4512 [0] x y)\n-(ShiftAllLeftInt16x8 x (MOVQconst [c])) => (VPSLLW128con... | 2025-08-12T21:01:55 |
swiftlang/swift | 95a54ce82a764e71e1b5e0d892c880626dc9c346 | 0a6c34325aae51a10bc539664828ed4c17ed490a | Sema: Yet another constraint optimization pass
- Fixes https://github.com/swiftlang/swift/issues/55762
- Fixes rdar://32034560 | [
{
"path": "include/swift/Sema/ConstraintSystem.h",
"patch": "@@ -5249,6 +5249,9 @@ class ConstraintSystem {\n std::optional<std::pair<Constraint *, llvm::TinyPtrVector<Constraint *>>>\n selectDisjunction();\n \n+ void pruneDisjunction(Constraint *disjunction,\n+ Constraint *appli... | 2026-01-24T19:42:12 |
mrdoob/three.js | b38ef166c7ed9efa1cac71b4fd16d0e168079ad7 | 989e89face47c891032f3355b35bcc0b8da5a2d9 | WebGPURenderer: support using 3d textures in shaders with texture3d() and add VolumeNodeMaterial() and examples. (#28418)
* support 3d textures
* remove unused import
* whitespace fixes
* export texture3D
* use new tsl
* replacing to updateValue()
---------
Co-authored-by: aardgoose <angus.sawyer@... | [
{
"path": "examples/files.json",
"patch": "@@ -384,7 +384,9 @@\n \t\t\"webgpu_storage_buffer\",\n \t\t\"webgpu_mesh_batch\",\n \t\t\"webgpu_instancing_morph\",\n-\t\t\"webgpu_texturegrad\"\n+\t\t\"webgpu_texturegrad\",\n+\t\t\"webgpu_volume_cloud\",\n+\t\t\"webgpu_volume_perlin\"\n \t],\n \t\"webaudio\": [\... | 2024-05-21T15:57:39 |
denoland/deno | 3cefece2dad65f6876041e5a27909e7bc26878a1 | d2a6958f14e7bb84b90b13c5c177f06ba2986888 | feat: --allow-net supports CIDR ranges (#29704)
This commit adds support for specifying CIDR ranges in
`--allow-net` and `--deny-net` flag:
Eg: trying to run `deno run --allow-net --deny-net=192.168.0.0/16`
and `fetch` from `http://127.0.0.1:4545/` will raise `NotCapable`
error. | [
{
"path": "Cargo.lock",
"patch": "@@ -2624,6 +2624,7 @@ dependencies = [\n \"deno_terminal 0.2.2\",\n \"deno_unsync\",\n \"fqdn\",\n+ \"ipnetwork\",\n \"libc\",\n \"log\",\n \"nix 0.27.1\",",
"additions": 1,
"deletions": 0,
"language": "Unknown"
},
{
"path": "cli/args/flags_net.rs"... | 2025-06-26T20:13:04 |
tensorflow/tensorflow | b498e2a05321496466688d1c6ec967aafb1d94d6 | 77ed5759500b8b6d39911b9753385f3cf627cada | Need this cost analysis fix for tuple tensor results, which is very basic for many perf analysis.
PiperOrigin-RevId: 840195683 | [
{
"path": "third_party/xla/xla/service/hlo_cost_analysis.cc",
"patch": "@@ -62,8 +62,12 @@ absl::Status HloCostAnalysis::Preprocess(const HloInstruction* hlo) {\n // The default number of bytes accessed for an instruction is the sum of the\n // sizes of the inputs and outputs. The default ShapeUtil::Byt... | 2025-12-04T13:12:58 |
golang/go | f10a82b76ff92b3c506203485b158191de4b3090 | 3bea95b2778312dd733c0f13fe9ec20bd2bf2d13 | all: update vendored dependencies [generated]
The tree has opened for Go 1.26 development. This is a time to update
all golang.org/x/... module versions that contribute packages to the
std and cmd modules in the standard library to latest master versions.
For #36905.
[git-generate]
go install golang.org/x/build/cmd/... | [
{
"path": "src/cmd/go.mod",
"patch": "@@ -1,21 +1,21 @@\n module cmd\n \n-go 1.25\n+go 1.26\n \n require (\n \tgithub.com/google/pprof v0.0.0-20250208200701-d0013a598941\n-\tgolang.org/x/arch v0.18.1-0.20250605182141-b2f4e2807dec\n-\tgolang.org/x/build v0.0.0-20250606033421-8c8ff6f34a83\n-\tgolang.org/x/mod... | 2025-08-09T02:06:27 |
mrdoob/three.js | 8d1ea27478d8ce86167f14349996e64e38efaf27 | 7a2ccef35998273f4cb99d20ffaea08c7d44ef52 | Editor: Fix viewport camera resize. (#28443) | [
{
"path": "editor/js/Viewport.js",
"patch": "@@ -156,14 +156,24 @@ function Viewport( editor ) {\n \n \t\t\tconst camera = editor.cameras[ uuid ];\n \n+\t\t\tconst aspect = container.dom.offsetWidth / container.dom.offsetHeight;\n+\n \t\t\tif ( camera.isPerspectiveCamera ) {\n \n-\t\t\t\tcamera.aspect = con... | 2024-05-20T18:13:52 |
swiftlang/swift | dfbce49ff71235f2a9987ef7385054a301926db9 | c30ff009d37da539ff4423a6e783f73ee5a218c0 | Sema: Better -debug-constraints output in determineBestBindings() | [
{
"path": "include/swift/Sema/ConstraintSystem.h",
"patch": "@@ -5164,8 +5164,7 @@ class ConstraintSystem {\n \n /// Determine whether given type variable with its set of bindings is viable\n /// to be attempted on the next step of the solver.\n- const BindingSet *determineBestBindings(\n- llvm::f... | 2026-01-24T18:50:44 |
denoland/deno | 8cefe97b09ef76727509ffad088ec04fd61cba7c | 0a4f946fd90b322600dd8956fe2b3d99ca402669 | fix(bundle): only replace require shim in js files, spruce up output (#29892)
We were trying to do the hack of replacing the esbuild require shim on
every output file, regardless of whether it was js/ts.
This fixes that.
In addition, this spruces up the output of deno bundle a bit.
before:
![Screenshot 2025-06-25 at... | [
{
"path": "cli/tools/bundle/mod.rs",
"patch": "@@ -4,12 +4,14 @@ mod esbuild;\n mod externals;\n mod transform;\n \n+use std::borrow::Cow;\n use std::cell::RefCell;\n use std::path::Path;\n use std::path::PathBuf;\n use std::rc::Rc;\n use std::sync::Arc;\n use std::sync::LazyLock;\n+use std::time::Duration;... | 2025-06-26T18:35:19 |
kubernetes/kubernetes | 1499524e8e97c0fbb8d9315eb8c16ff7ae2dbbae | 26a2945d5de6c1dc0426aebe1ad36a32963aeb39 | E2E node: temporarily disable flaky "pull from private registry"
This considerably impacts the ability to merge PRs right now because it fails
in the merge-blocking pull-kubernetes-node-e2e-containerd. Attempts to fix
it seem to be incomplete and need further
discussion (https://github.com/kubernetes/kubernetes/pull/1... | [
{
"path": "test/e2e_node/runtime_conformance_test.go",
"patch": "@@ -76,7 +76,7 @@ var _ = SIGDescribe(\"Container Runtime Conformance Test\", func() {\n \t\t\t\t\t})\n \t\t\t\t})\n \n-\t\t\t\tf.It(testCase.description+\"\", f.WithNodeConformance(), func(ctx context.Context) {\n+\t\t\t\tf.It(testCase.descri... | 2025-11-06T06:48:42 |
tensorflow/tensorflow | f87682fd101b463da05fcb1a4002096753192222 | fbe4e624b07263172d23c328bd378169cc7c0f26 | [XLA:CPU] Rollback of report compilation features mismatch as errors as opposed to warnings
Reverts 31d72c9fabdb5fd6219aeb79822cb7725dc94f6d
PiperOrigin-RevId: 840189019 | [
{
"path": "third_party/xla/xla/service/cpu/BUILD",
"patch": "@@ -1845,7 +1845,6 @@ 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-04T12:50:16 |
mrdoob/three.js | 6208714a329119e031d298885d700f5a39041691 | aa65ec20ed3403bfccc6ca6fa2469cb91181f126 | WebGLRenderer: Fix incorrect background color space when setting scene.background to color (#28434)
* ensure the transmission buffer is assigned a color space, render scene background color
* Update screenshot
* Reuse "renderBackground" flag
* Update WebGLRenderer.js
Clean up.
---------
Co-authored-b... | [
{
"path": "src/renderers/WebGLRenderer.js",
"patch": "@@ -206,6 +206,8 @@ class WebGLRenderer {\n \n \t\tconst _emptyScene = { background: null, fog: null, environment: null, overrideMaterial: null, isScene: true };\n \n+\t\tlet _renderBackground = false;\n+\n \t\tfunction getTargetPixelRatio() {\n \n \t\t\... | 2024-05-20T10:10:56 |
swiftlang/swift | c30ff009d37da539ff4423a6e783f73ee5a218c0 | 6f81699db281995a0d8cb774d90e16f3b46be076 | Sema: Better -debug-constraints output in selectDisjunction() | [
{
"path": "lib/Sema/CSOptimizer.cpp",
"patch": "@@ -1790,14 +1790,6 @@ static DisjunctionInfo computeDisjunctionInfo(\n }\n });\n \n- if (cs.isDebugMode()) {\n- llvm::errs().indent(cs.solverState->getCurrentIndent())\n- << \"<<< Disjunction \"\n- << disjunction->getNestedCons... | 2026-01-24T04:17:32 |
denoland/deno | e69a668e1f3d12f7b5f7f9022c79cfc23b831fee | ec32c6e5ba509533295ba955275e6cf539ee7b3f | fix(ext/node): export promise based `lchown` and `lutimes` from `node:fs/promises` (#29870)
The promised based `lchown` and `lutimes` were implemented in #24418 and
#23172 , but haven't been exported through the `node:fs/promises`
namespace.
Signed-off-by: Daniel Osvaldo R <daniel.rahmanto@gmail.com> | [
{
"path": "ext/node/polyfills/fs/promises.ts",
"patch": "@@ -21,10 +21,10 @@ export const link = fsPromises.link;\n export const unlink = fsPromises.unlink;\n export const chmod = fsPromises.chmod;\n export const lchmod = fsPromises.lchmod;\n-// export const lchown = fs.lchown;\n+export const lchown = fsPro... | 2025-06-26T16:55:47 |
kubernetes/kubernetes | ee481b97e0b2f458f814d329789cf14339d8556c | 9a5193796bff2910dd00efe2539b318936f49ec3 | fix sorting logic after after normalizing errors | [
{
"path": "pkg/api/testing/validation.go",
"patch": "@@ -66,17 +66,17 @@ func VerifyVersionedValidationEquivalence(t *testing.T, obj, old runtime.Object,\n \t\t\t\t\tbreak\n \t\t\t\t}\n \t\t\t}\n-\t\t\t// Re-sort the error list based primarily on the normalized field paths\n-\t\t\t// to ensure errors align ... | 2025-11-06T06:17:49 |
tensorflow/tensorflow | fac179173efae666451da464d7c902da561519bd | 9b6c582ff0cd3b7d75a9f0fa3ec8ac8262881e68 | PR #34520: [ROCm] Use rocminfo instead of lspci as it will report all connected gpus ev…
Imported from GitHub PR https://github.com/openxla/xla/pull/34520
…en inside docker container
📝 Summary of Changes
Use rocminfo to detect number of gpus visible to xla
🎯 Justification
lspci will report all the gpus connected ... | [
{
"path": "third_party/xla/build_tools/rocm/BUILD",
"patch": "@@ -77,6 +77,9 @@ sh_binary(\n sh_binary(\n name = \"parallel_gpu_execute\",\n srcs = [\"parallel_gpu_execute.sh\"],\n- data = [\":sanitizer_ignore_lists\"],\n+ data = [\n+ \":sanitizer_ignore_lists\",\n+ \"@local_conf... | 2025-12-04T12:25:01 |
mrdoob/three.js | ad0e26e4ed2e6e3494ea2c6357943f62b7e73ead | 114f0ad78fcc21460a0f197b26f59cfef8aeb679 | FBXLoader: Fixed morph attributes to match base geometry length (#28397)
* 28378 fixed morph attributes to match base geometry length
* added fbx morph example
* Update webgl_loader_fbx.html
Remove nurbs asset since it already has its own example.
* Update webgl_loader_fbx.html
The Stanford bunny is alr... | [
{
"path": "examples/jsm/loaders/FBXLoader.js",
"patch": "@@ -2051,14 +2051,18 @@ class GeometryParser {\n \t\t\t// Triangulate n-gon using earcut\n \n \t\t\tconst vertices = [];\n-\n+\t\t\t// in morphing scenario vertexPositions represent morphPositions\n+\t\t\t// while baseVertexPositions represent the ori... | 2024-05-20T07:29:51 |
denoland/deno | 880ed76b999a8796ae9f6a6687d3a0d8e7c19e68 | e8d9d59b837a1f26da74d6cb3954b9d7cba104e9 | fix(lsp): don't show no-export diagnostics for type-only npm imports (#29888) | [
{
"path": "cli/lsp/diagnostics.rs",
"patch": "@@ -25,7 +25,6 @@ use deno_core::unsync::spawn_blocking;\n use deno_core::unsync::JoinHandle;\n use deno_core::url::Url;\n use deno_core::ModuleSpecifier;\n-use deno_graph::source::ResolutionKind;\n use deno_graph::source::ResolveError;\n use deno_graph::Resolut... | 2025-06-26T14:53:05 |
swiftlang/swift | 9bda9c73a0bbead01196cafd25087cdad8b3f21f | c9c0834a2e87bb47a0ca7c6be37b38ee481ad544 | [CoroutineAccessors] [SILGen] Fix emitBackDeployForwardApplyAndReturnOrThrow for yield_once_2 coroutines
They have an stack allocation result and the token result is at a different index.
rdar://168937038 | [
{
"path": "lib/SILGen/SILGenAvailability.cpp",
"patch": "@@ -199,23 +199,32 @@ static void emitBackDeployForwardApplyAndReturnOrThrow(\n SILBasicBlock *unwindBB = SGF.createBasicBlock();\n \n auto *apply = SGF.B.createBeginApply(loc, functionRef, subs, params);\n- SmallVector<SILValue, 4> rawResu... | 2026-01-26T19:14:38 |
tensorflow/tensorflow | 2aacfdbdcb08a336f3d94d0ae565c6061a6f4cfd | 0e6499ebb7c80aeaef817a72e3d1bf0b305f2431 | PR #34657: [XLA:GPU] Fix the command_buffer_cmd vlog debug message to profile the memory allocation types.
Imported from GitHub PR https://github.com/openxla/xla/pull/34657
📝 Summary of Changes
Fix the command_buffer_cmd vlog debug message to profile the memory allocation types.
🚀 Kind of Contribution
📚 Document... | [
{
"path": "third_party/xla/xla/backends/gpu/runtime/command_buffer_cmd.cc",
"patch": "@@ -496,65 +496,96 @@ absl::Status CommandBufferCmdExecutor::Record(\n command_buffer->mode() == se::CommandBuffer::Mode::kPrimary) {\n int64_t input_count = 0;\n int64_t output_count = 0;\n+ int64... | 2025-12-04T08:06:34 |
mrdoob/three.js | 114f0ad78fcc21460a0f197b26f59cfef8aeb679 | 6651acfd874920bd282095aeee250773d1488c15 | TSL: Node - Introduce `getElementType()` (#28437)
* Fix Array Element Type
* revision | [
{
"path": "examples/jsm/nodes/accessors/BufferNode.js",
"patch": "@@ -15,6 +15,12 @@ class BufferNode extends UniformNode {\n \n \t}\n \n+\tgetElementType( builder ) {\n+\n+\t\treturn this.getNodeType( builder );\n+\n+\t}\n+\n \tgetInputType( /*builder*/ ) {\n \n \t\treturn 'buffer';",
"additions": 6,
... | 2024-05-20T07:24:35 |
golang/go | adbf59525c06ae7e037ad0e9a7709ebed2528d66 | 4e182db5fc876564a4f87a0602c58ea0ddc6e37c | internal/runtime/gc/scan: avoid -1 index when cache sizes unavailable
Fixes #74984.
Fixes #74983.
Change-Id: I011c66c2005bc4d92f1d17f1f8ce88158634f71f
Reviewed-on: https://go-review.googlesource.com/c/go/+/695476
Auto-Submit: Michael Knyszek <mknyszek@google.com>
Reviewed-by: Michael Pratt <mpratt@google.com>
LUCI-Tr... | [
{
"path": "src/internal/runtime/gc/scan/scan_test.go",
"patch": "@@ -100,6 +100,9 @@ func benchmarkCacheSizes(b *testing.B, fn func(b *testing.B, heapPages int)) {\n \t\t\tfn(b, pages)\n \t\t})\n \t}\n+\tif len(cacheSizes) == 0 {\n+\t\treturn\n+\t}\n \tramPages := int(cacheSizes[len(cacheSizes)-1]*3/2) / gc... | 2025-08-12T21:57:23 |
denoland/deno | 9bcd4366ee39662d8db0b5b0502701d475d6035f | 4a0cd18a6b6b18b924084341b1df71f569053302 | fix(ext/node): add `lchmod`, `lchmod` promise, `lchmodSync` to `node:fs` (#29833) | [
{
"path": "cli/rt/file_system.rs",
"patch": "@@ -195,6 +195,16 @@ impl FileSystem for DenoRtSys {\n RealFs.chown_async(path, uid, gid).await\n }\n \n+ fn lchmod_sync(&self, path: &Path, mode: u32) -> FsResult<()> {\n+ self.error_if_in_vfs(path)?;\n+ RealFs.lchmod_sync(path, mode)\n+ }\n+\n+ a... | 2025-06-26T06:46:07 |
swiftlang/swift | afc9f974510627d54f2f9bec363b0c2e34244424 | 0ff6cf000a7319e2b3f32bfd72c1d7c66ba30823 | The fix for the callee locator now produces specific no exact matches errors and candidate notes instead of the generic failed to produce diagnostic fallback. This updates the test to match the new behavior. | [
{
"path": "test/expr/unary/keypath/keypath.swift",
"patch": "@@ -839,8 +839,8 @@ func test_keypath_with_method_refs() {\n init(val value: Int = 2024) { year = value }\n \n var add: (Int, Int) -> Int { return { $0 + $1 } }\n- func add(this: Int) -> Int { this + this}\n- func add(that: Int) ... | 2026-01-26T16:44:12 |
mrdoob/three.js | 016bdb5fe1cf9f99dbb1d1c6c47b4119982a8906 | a49326c7f14ac961714df94a9117c04042978447 | SortUtils: fix termination condition & enforce unsigned value (#28411) | [
{
"path": "examples/jsm/utils/SortUtils.js",
"patch": "@@ -1,6 +1,9 @@\n // Hybrid radix sort from\n // - https://gist.github.com/sciecode/93ed864dd77c5c8803c6a86698d68dab\n // - https://github.com/mrdoob/three.js/pull/27202#issuecomment-1817640271\n+//\n+// expects unsigned 32b integer values\n+\n const PO... | 2024-05-19T08:31:43 |
golang/go | f63e12d0e0f4533af54550d6d049a836fb738147 | 8e317da77d151f180b6e006a0e84154576a4a295 | internal/trace: fix Sync.ClockSnapshot comment
The old comment said "clocks take in close in time" which was probably
due to rewording this a few times.
Replace the comment with the one of the ClockSnapshot type as there
doesn't seem to be a good reason for using a different wording here.
Change-Id: I6a6a69648c8470c... | [
{
"path": "src/internal/trace/event.go",
"patch": "@@ -690,9 +690,11 @@ type Sync struct {\n \t// N indicates that this is the Nth sync event in the trace.\n \tN int\n \n-\t// ClockSnapshot is a snapshot of different clocks taken in close in time\n-\t// that can be used to correlate trace events with data c... | 2025-08-11T06:33:05 |
denoland/deno | 4a0cd18a6b6b18b924084341b1df71f569053302 | f7817964023975aade9fdad31ca6df98ac0ccc8a | fix(install/global): resolve bin name from npm packument (#29884) | [
{
"path": "cli/factory.rs",
"patch": "@@ -107,6 +107,7 @@ use crate::resolver::CliResolver;\n use crate::standalone::binary::DenoCompileBinaryWriter;\n use crate::sys::CliSys;\n use crate::tools::coverage::CoverageCollector;\n+use crate::tools::installer::BinNameResolver;\n use crate::tools::lint::LintRuleP... | 2025-06-25T19:10:26 |
mrdoob/three.js | a49326c7f14ac961714df94a9117c04042978447 | b3538a3e01b7f1d2b036ee6aaa74f5d18a7f5a9a | Examples: Fix argument passed to copyTextureToTexture (#28419) | [
{
"path": "examples/webgpu_materials_texture_partialupdate.html",
"patch": "@@ -110,7 +110,7 @@\n \n \t\t\t\t\t// perform copy from src to dest texture to a random position\n \n-\t\t\t\t\trenderer.copyTextureToTexture( dataTexture, diffuseMap, new THREE.Vector2(), position );\n+\t\t\t\t\trenderer.copyTextur... | 2024-05-19T08:30:13 |
swiftlang/swift | d614ef9acc6610310fa50f9ab9fa15fecd0b3b48 | e6c4d85c972eae71506f485fcd0412daf3376576 | Fix verify-swift-feature-testing.test-sh -- the second attempt | [
{
"path": "test/Misc/verify-swift-feature-testing.test-sh",
"patch": "@@ -29,6 +29,8 @@ EXCEPTIONAL_FILES = [\n pathlib.Path(\"test/IDE/complete_decl_attribute_feature_requirement.swift\"),\n # Uses the pseudo-feature ApproachableConcurrency\n pathlib.Path(\"test/Concurrency/approachable_concurr... | 2026-01-26T14:35:23 |
golang/go | fe4d445c36d69c1b238399e2f13b04bedd65ad7b | 750789fab7f9cccc0756c5ec0d0952c917a4546f | internal/trace/tracev2: fix EvSTWBegin comment to include stack ID
Change-Id: I6a6a69644fb9a6e765933384cdb17c63458be69a
Reviewed-on: https://go-review.googlesource.com/c/go/+/694617
Auto-Submit: Michael Knyszek <mknyszek@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.c... | [
{
"path": "src/internal/trace/tracev2/events.go",
"patch": "@@ -48,7 +48,7 @@ const (\n \tEvGoStatus // goroutine status at the start of a generation [timestamp, goroutine ID, thread ID, status]\n \n \t// STW.\n-\tEvSTWBegin // STW start [timestamp, kind]\n+\tEvSTWBegin // STW start [timestamp, k... | 2025-06-22T13:29:34 |
denoland/deno | 864a6f57746bcf637704b8a95c577c78228e4131 | 507e103ad332edfd7bcfdf92f6b6c21a8b7aba26 | fix(ext/node): improve input validations of stream/consumers (#29880) | [
{
"path": "ext/node/polyfills/stream/consumers.js",
"patch": "@@ -1,16 +1,32 @@\n // deno-lint-ignore-file\n // Copyright 2018-2025 the Deno authors. MIT license.\n \n-import { primordials } from \"ext:core/mod.js\";\n+import { core, primordials } from \"ext:core/mod.js\";\n import { TextDecoder } from \"ex... | 2025-06-25T07:10:57 |
kubernetes/kubernetes | 71c02338df3922f03ada7cc63c764517c37c8bd2 | 4ffafaea9cc040bdfa2dfa5f06df30b489a40ae3 | Fix the failing e2e test case in Standalone mode. | [
{
"path": "test/e2e_node/standalone_test.go",
"patch": "@@ -378,11 +378,8 @@ var _ = SIGDescribe(feature.StandaloneMode, framework.WithSerial(), func() {\n \t\t\t\treturn nil\n \t\t\t}, f.Timeouts.PodStart, time.Second*5).Should(gomega.Succeed())\n \n-\t\t\tginkgo.By(\"stopping the kubelet\")\n-\t\t\trestar... | 2025-11-06T05:10:46 |
golang/go | 750789fab7f9cccc0756c5ec0d0952c917a4546f | 889ab74169db2c8758f51c1a199a90266b16669b | internal/trace/internal/testgen: fix missing stacks nframes arg
Change-Id: I6a6a6964c9c1322bfe289394d5d3937d1f7097bb
Reviewed-on: https://go-review.googlesource.com/c/go/+/694616
Reviewed-by: Michael Knyszek <mknyszek@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>... | [
{
"path": "src/internal/trace/internal/testgen/trace.go",
"patch": "@@ -295,7 +295,7 @@ func (g *Generation) writeEventsTo(tw *raw.TextWriter) {\n \tb.RawEvent(tracev2.EvStacks, nil)\n \tfor stk, id := range g.stacks {\n \t\tstk := stk.stk[:stk.len]\n-\t\targs := []uint64{id}\n+\t\targs := []uint64{id, uint... | 2025-06-22T13:29:34 |
tensorflow/tensorflow | 0353fd05279a8356d1b6bf47ab6e35611a53ac84 | 7f1dfef033e432ea7f02411356ce64c6b5382e36 | Fix MKL Conv1D crash with dynamic batch size | [
{
"path": "tensorflow/core/kernels/mkl/mkl_conv_grad_input_ops.cc",
"patch": "@@ -572,9 +572,33 @@ class MklConvCustomBackpropInputOp\n const Tensor& input_tensor) {\n TensorShape input_tf_shape;\n CHECK_EQ(TensorShapeUtils::IsVector(input_tensor.shape()), true);\n- ... | 2025-12-03T17:30:16 |
denoland/deno | be3e7f4ae925cda2f24a4e15059e6b94981e17a2 | b6d09f65b1f3dfb7c0decf11545a234f2fca3650 | fix(ext/node): improve assert.fail (#29850) | [
{
"path": "ext/node/polyfills/assert.ts",
"patch": "@@ -420,17 +420,56 @@ function notDeepStrictEqual(\n );\n }\n \n-function fail(message?: string | Error): never {\n- if (typeof message === \"string\" || message == null) {\n- throw createAssertionError({\n- message: message ?? \"Failed\",\n- ... | 2025-06-25T01:26:33 |
golang/go | 182336bf05c8e833f433510ba62205d8ce40299a | f04421ea9adc634fc24133ddc59aa24e323ceec9 | net/http: fix data race in client
Fixes #73522
Co-authored-by: Damien Neil <dneil@google.com>
Change-Id: I6fb408a0b03bc387f443e17e6f9d0bac32eff31e
Reviewed-on: https://go-review.googlesource.com/c/go/+/694815
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Auto-Submit: Damien... | [
{
"path": "src/net/http/transport.go",
"patch": "@@ -722,7 +722,7 @@ func (t *Transport) roundTrip(req *Request) (_ *Response, err error) {\n \t\t\tif e, ok := err.(transportReadFromServerError); ok {\n \t\t\t\terr = e.err\n \t\t\t}\n-\t\t\tif b, ok := req.Body.(*readTrackingBody); ok && !b.didClose {\n+\t\... | 2025-08-11T17:21:50 |
tensorflow/tensorflow | e4a38716ee6b30155f8924563b572c51127e32e3 | da4ada60e5126eb9a6a99089b1f07ad04a6ed5d4 | [XLA:GPU] Disable debug thunk passes in autotuning
There's no point in running them, but they propagate from DebugOptions
right now.
PiperOrigin-RevId: 839761670 | [
{
"path": "third_party/xla/xla/backends/gpu/autotuner/gpu_codegen_backend.h",
"patch": "@@ -107,6 +107,9 @@ class GpuCodegenBackend : public CodegenBackend {\n debug_options.set_xla_gpu_async_dot(false);\n debug_options.set_xla_embed_ir_in_executable(false);\n debug_options.set_xla_gpu_kernel_ca... | 2025-12-03T16:08:41 |
denoland/deno | 68bfb7a9f647f258ef9443ee6e18d0458e9fc8b4 | 695df5735824d5eed64180de865baff55b4bc757 | fix(ext/node): remove duplicated stream classes (#29860) | [
{
"path": "ext/node/lib.rs",
"patch": "@@ -670,21 +670,16 @@ deno_core::extension!(deno_node,\n \"internal/streams/add-abort-signal.js\",\n \"internal/streams/compose.js\",\n \"internal/streams/destroy.js\",\n- \"internal/streams/duplex.js\",\n \"internal/streams/duplexify.js\",\n \"i... | 2025-06-25T01:21:03 |
golang/go | ce3f3e2ae73dcc0c270bc73a59ea5e7be6cf6a8d | 3dbef65bf37f1b7ccd1f884761341a5a15456ffa | cmd/link/internal/ld, internal/syscall/unix: use posix_fallocate on netbsd
The posix_fallocate system call is available since NetBSD 7.0, see
https://man.netbsd.org/posix_fallocate.2
Re-use the syscall wrappers already in place for freebsd. Note that
posix_fallocate on netbsd also returns the result in r1 rather than... | [
{
"path": "src/cmd/link/internal/ld/fallocate_test.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 darwin || (freebsd && go1.21) || linux\n+//go:build darwin || (freebsd && go1.21) || linux || (netbsd ... | 2025-08-06T15:50:14 |
mrdoob/three.js | a379e9a3b368b02e0a85b749535f9b95a9b818ee | 695574601a65432bc1621ee34a2caa935a45880f | Editor: Fixed script editor title out-of-sync (#28413)
* sync script editor title
* no dispatching editScript, setValue is enough | [
{
"path": "editor/js/Script.js",
"patch": "@@ -429,6 +429,26 @@ function Script( editor ) {\n \n \t} );\n \n+\tsignals.objectChanged.add( function ( object ) {\n+\n+\t\tif ( object === currentObject ) {\n+\n+\t\t\ttitle.setValue( currentObject.name + ' / ' + currentScript.name );\n+\n+\t\t}\n+\n+\t} );\n+\n... | 2024-05-18T09:01:07 |
denoland/deno | 695df5735824d5eed64180de865baff55b4bc757 | 4e23d9b5f0a8b7407c5afe273d928d2f4349a792 | fix(fmt/css): prefer collapsing font-family values (#29864)
Closes https://github.com/denoland/deno/issues/29336 | [
{
"path": "Cargo.lock",
"patch": "@@ -5534,9 +5534,9 @@ dependencies = [\n \n [[package]]\n name = \"malva\"\n-version = \"0.11.2\"\n+version = \"0.12.1\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"6a952f521471c6c8302a17fc0c64a512221a9d4ff268af4d43a02bc2be48c712\"\n+... | 2025-06-24T20:28:53 |
tensorflow/tensorflow | 7131b895aefff694900cdb321465cefcb90ab1f2 | 7f1dfef033e432ea7f02411356ce64c6b5382e36 | PR #32378: [XLA:CPU][oneDNN][BugFix] Fix unsafe subtraction from unsigned values
Imported from GitHub PR https://github.com/openxla/xla/pull/32378
A recent change updated the method used to get the size of the dimensions of a `Shape` (from `dimensions_size()` to `dimensions().size()`) in `onednn_contraction_rewriter.... | [
{
"path": "third_party/xla/xla/service/cpu/onednn_contraction_rewriter.cc",
"patch": "@@ -401,8 +401,14 @@ absl::StatusOr<Shape> AdjustAddendShape(const HloInstruction* contraction,\n // If rank(new_shape) > rank(instr), extra dimensions with value = 1 can be\n // deleted from the new_shape.\n auto in... | 2025-12-03T15:52:48 |
golang/go | 3dbef65bf37f1b7ccd1f884761341a5a15456ffa | 2b804abf0712d45801671232585e0011902a5c48 | database/sql: allow drivers to override Scan behavior
Implementing RowsColumnScanner allows the driver
to completely control how values are scanned.
Fixes #67546
Change-Id: Id8e7c3a973479c9665e4476fe2d29e1255aee687
GitHub-Last-Rev: ed0cacaec4a4feead56b09c0d6eee86ed58fe1ee
GitHub-Pull-Request: golang/go#67648
Reviewe... | [
{
"path": "api/next/67546.txt",
"patch": "@@ -0,0 +1,5 @@\n+pkg database/sql/driver, type RowsColumnScanner interface { Close, Columns, Next, ScanColumn } #67546\n+pkg database/sql/driver, type RowsColumnScanner interface, Close() error #67546\n+pkg database/sql/driver, type RowsColumnScanner interface, Col... | 2025-05-31T15:27:15 |
mrdoob/three.js | bac3cc70d3c7c387098e2713d512a8a4303e021c | cb24e42a65172ec475ff23a4abe520b724076a24 | BatchedMesh: fix radix sort stability (#28401)
* return z based on the the camera forward z value
* Fix sort in example
* Remove unused argument | [
{
"path": "examples/webgl_mesh_batch.html",
"patch": "@@ -282,7 +282,7 @@\n \n \t\t//\n \n-\t\tfunction sortFunction( list, camera ) {\n+\t\tfunction sortFunction( list ) {\n \n \t\t\t// initialize options\n \t\t\tthis._options = this._options || {\n@@ -293,10 +293,22 @@\n \t\t\tconst options = this._option... | 2024-05-18T07:57:04 |
kubernetes/kubernetes | a2dfa0fd7314e5c0c42a64c1855c78c74daeb4b8 | 326b7eaa52676b781740c2f332e85985ec6f6045 | run gofmt to fix formatting issue | [
{
"path": "test/e2e/storage/csimock/csi_volume_expansion.go",
"patch": "@@ -584,7 +584,7 @@ var _ = utils.SIGDescribe(\"CSI Mock volume expansion\", func() {\n \t\t\t\t}\n \n \t\t\t\tif test.expectedQuotaUsage != nil {\n- // Use uncached client to avoid watch/cache lag when validating quota u... | 2025-11-06T02:53:23 |
denoland/deno | c50b37c2340fefa28d2420cdf9ec627e3671cb56 | ef6ff554b0d55b84e697ce835b2f7f36461dba62 | test: fix specs::coverage::data_url test (#29865) | [
{
"path": "tests/specs/coverage/data_url/main.out",
"patch": "@@ -4,12 +4,9 @@ test ... ok ([WILDLINE])\n \n ok | 1 passed | 0 failed ([WILDLINE])\n \n---------------------------------\n-File | Branch % | Line % |\n---------------------------------\n- main.ts | 100.0 | 100.0 |\n-----------------... | 2025-06-24T10:52:28 |
golang/go | 2b804abf0712d45801671232585e0011902a5c48 | 6abfe7b0deaeb62d9f8d4bf09475efec68db9a1b | net: context aware Dialer.Dial functions
Add context aware dial functions for TCP, UDP, IP and Unix networks.
Fixes #49097
Updates #59897
Change-Id: I7523452e8e463a587a852e0555cec822d8dcb3dd
Reviewed-on: https://go-review.googlesource.com/c/go/+/490975
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts... | [
{
"path": "api/next/49097.txt",
"patch": "@@ -0,0 +1,4 @@\n+pkg net, method (*Dialer) DialIP(context.Context, string, netip.Addr, netip.Addr) (*IPConn, error) #49097\n+pkg net, method (*Dialer) DialTCP(context.Context, string, netip.AddrPort, netip.AddrPort) (*TCPConn, error) #49097\n+pkg net, method (*Dial... | 2023-04-30T15:12:27 |
tensorflow/tensorflow | 16f017d5d0ba27796ac423827d3a4be8c3522da4 | daaf047d90ab7fc50e6890a961e22efbdb517307 | [XLA] Remove TF_ prefix from TF_{ASSERT,EXPECT}_OK
PiperOrigin-RevId: 839751744 | [
{
"path": "third_party/xla/xla/service/gpu/transforms/BUILD",
"patch": "@@ -916,19 +916,14 @@ xla_cc_test(\n name = \"cudnn_simplify_padding_test\",\n srcs = [\"cudnn_simplify_padding_test.cc\"],\n deps = [\n- \":cudnn_pad_for_convolutions\",\n \":cudnn_simplify_padding\",\n ... | 2025-12-03T15:37:58 |
mrdoob/three.js | b392786007245148206faf142c75dda5c6886306 | 013e93d5b572ea28d59056798954fccdbd53d24f | Editor: Fix serialization of commands. (#28405)
* Editor: Fix serialization of commands.
* Editor: Restore order in `fromJSON()`.
* Editor: Fix regression when adding/removing scripts. | [
{
"path": "editor/js/Sidebar.Scene.js",
"patch": "@@ -522,13 +522,13 @@ function SidebarScene( editor ) {\n \n \tsignals.scriptAdded.add( function () {\n \n-\t\tsignals.objectChanged.dispatch( editor.selected );\n+\t\tif ( editor.selected !== null ) signals.objectChanged.dispatch( editor.selected );\n \n \t... | 2024-05-17T17:10:32 |
denoland/deno | ef6ff554b0d55b84e697ce835b2f7f36461dba62 | 5b65313d48d6ac422e7ed39fbca5e2d032c59b34 | fix(bench): Make output table markdown compatible (#29532)
This changes the format of the table outputted by `deno bench` to be
markdown compatible.
Related #29533
Closes #29466 | [
{
"path": "cli/tools/bench/mitata.rs",
"patch": "@@ -221,19 +221,21 @@ pub mod reporter {\n pub fn br(options: &Options) -> String {\n let mut s = String::new();\n \n- s.push_str(&\"-\".repeat(options.size));\n+ s.push_str(&format!(\"| {} |\", \"-\".repeat(options.size)));\n \n if options.av... | 2025-06-24T09:27:42 |
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.