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
denoland/deno
1ef6746a77e5cdee0c5ca9c5a15fe4b1006fc0d1
4072c2c62774ef96bd3418dc529be7df3e886074
fix: do not panic when logging from outside a tokio runtime (#29728)
[ { "path": "cli/util/draw_thread.rs", "patch": "@@ -114,9 +114,18 @@ impl DrawThread {\n pub fn hide() {\n let internal_state = &*INTERNAL_STATE;\n let mut internal_state = internal_state.lock();\n+ let is_showing =\n+ internal_state.has_draw_thread && internal_state.hide_count == 0;\n ...
2025-06-12T19:09:23
kubernetes/kubernetes
9b95eaf593732dee4678667cc9eeeaa08f68c9b0
3ec72e2e973664a0690bc7122c9cd291702b5f36
Fix pod resize validation when adding non-resizable resources
[ { "path": "pkg/apis/core/validation/validation.go", "patch": "@@ -6222,11 +6222,11 @@ func validatePodResizeContainerOrdering(newPod, oldPod *core.Pod, specPath *fiel\n // dropCPUMemoryResourcesFromContainer deletes the cpu and memory resources from the container, and copies them from the old pod container ...
2025-11-03T23:52:02
golang/go
88568519b416190d264f5e5f02c41b5a139498b2
6f7a1164e797f694c535ebf5f2c9722845a732cd
[dev.simd] simd: move test generation into Go repo This pairs with CL 689275 which removes test generation from simdgen This uses generics and attempts to encode the tests as compactly as possible. Some files, *_helpers_test.go, are generated. Use t.Helper() to get the line number right for a failure. Adds helper ...
[ { "path": "src/simd/binary_helpers_test.go", "patch": "@@ -0,0 +1,464 @@\n+// Code generated by 'go run genfiles.go'; DO NOT EDIT.\n+\n+//go:build goexperiment.simd\n+\n+// This file contains functions testing binary simd methods.\n+// Each function in this file is specialized for a\n+// particular simd typ...
2025-07-07T21:48:24
mrdoob/three.js
4314fa71dc72d54291ae120b588a7733eaae9f5f
0dbbf04964634d5eaaf698c3e3b8bf9c17a2fcbe
WebGPURenderer: `transmission` and `clearcoat` shouldn't be ignored in `getMaterialCacheKey` (#28135) * WebGPURenderer: `transmission` and `clearcoat` shouldn't be ignored in `getMaterialCacheKey` * fix: use `getKeys` to get all properties
[ { "path": "examples/jsm/renderers/common/RenderObject.js", "patch": "@@ -2,6 +2,40 @@ import ClippingContext from './ClippingContext.js';\n \n let id = 0;\n \n+function getKeys( obj ) {\n+\n+\tconst keys = Object.keys( obj );\n+\n+\tlet proto = Object.getPrototypeOf( obj );\n+\n+\twhile ( proto ) {\n+\n+\t\...
2024-04-17T21:36:29
tensorflow/tensorflow
dbdb3eb591d6297ef5da269886d3c8e266e1fd03
07f4a92aacedac0e7c8f262d469fbb8e3a26d6eb
[xla:gpu] Fix clangtidy warnings (except `misc-include-cleaner`). PiperOrigin-RevId: 837800257
[ { "path": "third_party/xla/xla/backends/gpu/autotuner/block_level_emitter.h", "patch": "@@ -67,7 +67,7 @@ class BlockLevelEmitterBackend : public GpuCodegenBackend {\n const BackendConfig& config) override;\n \n // Determines whether the given HLO instruction is supported by thi...
2025-11-28T12:23:11
denoland/deno
4072c2c62774ef96bd3418dc529be7df3e886074
f54afe03bd5902576a1e8e71d0473a63279a663a
fix(install,outdated): try to avoid building graph with incorrect exports (#29713) Fixes https://github.com/denoland/deno/issues/29707. Not particularly happy with this one, but the only other idea I had was to just ignore errors about non-existent exports when we build the graph for a top level install. That might e...
[ { "path": "cli/tools/pm/cache_deps.rs", "patch": "@@ -95,6 +95,24 @@ pub async fn cache_top_level_deps(\n continue;\n }\n let resolved_req = graph.packages.mappings().get(req.req());\n+ let resolved_req = resolved_req.and_then(|nv| {\n+ // the ve...
2025-06-12T16:23:05
golang/go
eef5f8d93016147718afba8a05282d2ba7332c51
e071617222e373f59db8995ce171bae708e0dcef
cmd/compile: enforce that locals are always accessed with SP base register After CL 678937, we could have a situation where the value of the stack pointer is in both SP and another register. We need to make sure that regalloc picks SP when issuing a reference to local variables; the assembler expects that. Fixes #748...
[ { "path": "src/cmd/compile/internal/ssa/regalloc.go", "patch": "@@ -1583,6 +1583,12 @@ func (s *regAllocState) regalloc(f *Func) {\n \t\t\t\t\t\tmask &^= desired.avoid\n \t\t\t\t\t}\n \t\t\t\t}\n+\t\t\t\tif mask&s.values[v.Args[i.idx].ID].regs&(1<<s.SPReg) != 0 {\n+\t\t\t\t\t// Prefer SP register. This ensu...
2025-08-01T14:38:55
mrdoob/three.js
0dbbf04964634d5eaaf698c3e3b8bf9c17a2fcbe
70e7f55e971d9aafc1c8ad12e2ed4845a4dd1927
Allow specifying sphere size in CCDIKSolver.createHelper (#28147) * Allow specifying sphere size in CCDIKSolver.createHelper * Fix whitespace * Update CCDIKSolver.js Clean up. --------- Co-authored-by: Michael Herzog <michael.herzog@human-interactive.org>
[ { "path": "examples/jsm/animation/CCDIKSolver.js", "patch": "@@ -213,11 +213,12 @@ class CCDIKSolver {\n \t/**\n \t * Creates Helper\n \t *\n+\t * @param {number} sphereSize\n \t * @return {CCDIKHelper}\n \t */\n-\tcreateHelper() {\n+\tcreateHelper( sphereSize ) {\n \n-\t\treturn new CCDIKHelper( this.mesh,...
2024-04-17T08:39:08
denoland/deno
9ef98862eb549b90cc3c481543ff468440b4f5e3
3c3af1011a582398e4e9cadf705f06b4e9cfa69b
fix(install): infer name from @scope/cli pattern (#29694)
[ { "path": "cli/tools/installer.rs", "patch": "@@ -190,6 +190,14 @@ pub async fn infer_name_from_url(\n if !npm_ref.req.name.contains('/') {\n return Some(npm_ref.req.name.into_string());\n }\n+ if let Some(scope_and_pkg) = npm_ref.req.name.strip_prefix('@') {\n+ if let Some((scope, pac...
2025-06-12T14:37:34
golang/go
c0ee2fd4e309ef0b8f4ab6f4860e2626c8e00802
a4d99770c0e5f340d6d11d6353110413dc109138
cmd/go: explicitly reject module paths "go" and "toolchain" The module paths "go" and "toolchain" are reserved for the dependency on the go and toolchain versions. Check for those paths in go mod init to create modules, go mod edit, and in the module loader and return an error when attempting to use those paths for a ...
[ { "path": "src/cmd/go/internal/modcmd/edit.go", "patch": "@@ -234,7 +234,11 @@ func runEdit(ctx context.Context, cmd *base.Command, args []string) {\n \t}\n \n \tif *editModule != \"\" {\n-\t\tif err := module.CheckImportPath(*editModule); err != nil {\n+\t\terr := module.CheckImportPath(*editModule)\n+\t\t...
2025-07-29T18:17:33
swiftlang/swift
0ec2762f962918188683930ee450eaa3715f2519
6f60adf009c078183e418698baa52acae45b941b
[driver] Implement -debug-module-path in the legacy driver Not having suport for this option causes confusing and non-obvious failures in the LLDB testsuite, and some people build LLDB without also compiling the driver. rdar://168107340
[ { "path": "lib/Driver/ToolChains.cpp", "patch": "@@ -696,6 +696,21 @@ ToolChain::constructInvocation(const CompileJobAction &job,\n Arguments.push_back(\"-debug-info-store-invocation\");\n }\n \n+ if (context.Args.hasArg(options::OPT_g))\n+ for (auto Output : context.Output.getAdditionalOutputsFor...
2026-01-15T22:25:39
tensorflow/tensorflow
5af893b16390d6f2860b0a9df66fbdac8092c32e
f3903471f0612b136ec4e1881704d9e9a953dddc
Fix dependencies in TSL This fixes OSS dependencies in TSL such that they comply with Bazel's layering_check. PiperOrigin-RevId: 837796957
[ { "path": "third_party/xla/xla/tsl/cuda/BUILD.bazel", "patch": "@@ -43,10 +43,11 @@ cc_library(\n textual_hdrs = [\"cublas.inc\"],\n visibility = [\"//visibility:public\"],\n deps = if_cuda_is_configured([\n+ # keep sorted\n+ \"//xla/tsl/platform:logging\",\n \"@com_google_...
2025-11-28T12:07:43
kubernetes/kubernetes
1e8fc543cc7db8433ae0a5e5d48b5198b8cf7b91
3ef02627669c71a7597d58fcb4eaa1a3ded9d711
Fix report health for templated and renamed DRA claims The Kubelet's DRA manager was failing to report device health status in a pod's status for certain types of resource claims. The logic incorrectly assumed that the claim name used within the container's spec (`container.resources.claims[*].name`) was the same as t...
[ { "path": "pkg/kubelet/cm/dra/manager.go", "patch": "@@ -778,116 +778,116 @@ func (m *Manager) GetContainerClaimInfos(pod *v1.Pod, container *v1.Container) (\n // UpdateAllocatedResourcesStatus updates the health status of allocated DRA resources in the pod's container statuses.\n func (m *Manager) UpdateAl...
2025-10-25T01:14:11
mrdoob/three.js
34cfc4d11cf0a0fd83dc66a75acfc181df9bc972
cbb480b5ae7e7a3af5f3a5fffa6c5dbc098b4873
WebGPURenderer: Fix 'receiveShadow' and introduce `shadowPositionNode` (#28146) * fix receive shadow and introduce shadowPositionNode * fix receive only and example * better fix * update example * add color noise to example
[ { "path": "examples/jsm/nodes/lighting/AnalyticLightNode.js", "patch": "@@ -50,6 +50,10 @@ class AnalyticLightNode extends LightingNode {\n \n \tsetupShadow( builder ) {\n \n+\t\tconst { object } = builder;\n+\n+\t\tif ( object.receiveShadow === false ) return;\n+\n \t\tlet shadowNode = this.shadowNode;\n \...
2024-04-17T02:48:51
denoland/deno
3c3af1011a582398e4e9cadf705f06b4e9cfa69b
d2d8d3775fe0fbb34de08421f612ded43dea4473
fix(ext/napi): ensure the finalizer callback will be called (#29710) See https://github.com/napi-rs/napi-rs/issues/2708#issuecomment-2963957944 for the context. In current implementation, the Weak `Reference` is created with `v8::Weak::with_finalizer`, but there is no guarantee as to *when* or even *if* the finalizat...
[ { "path": "ext/napi/js_native_api.rs", "patch": "@@ -111,12 +111,11 @@ impl Reference {\n fn set_weak(&mut self) {\n let reference = self as *mut Reference;\n if let ReferenceState::Strong(g) = &self.state {\n- let cb = Box::new(move |_: &mut v8::Isolate| {\n- Reference::weak_callback(...
2025-06-12T13:05:08
golang/go
a4d99770c0e5f340d6d11d6353110413dc109138
70a2ff76485477211397ae6399bee06101bc5935
runtime/metrics: add cleanup and finalizer queue metrics These metrics are useful for identifying finalizer and cleanup problems, namely slow finalizers and/or cleanups holding up the queue, which can lead to a memory leak. Fixes #72948. Change-Id: I1bb64a9ca751fcb462c96d986d0346e0c2894c95 Reviewed-on: https://go-re...
[ { "path": "src/runtime/metrics.go", "patch": "@@ -169,6 +169,20 @@ func initMetrics() {\n \t\t\t\tout.scalar = float64bits(nsToSec(in.cpuStats.UserTime))\n \t\t\t},\n \t\t},\n+\t\t\"/gc/cleanups/executed:cleanups\": {\n+\t\t\tdeps: makeStatDepSet(finalStatsDep),\n+\t\t\tcompute: func(in *statAggregate, out ...
2025-07-23T03:09:27
tensorflow/tensorflow
f3903471f0612b136ec4e1881704d9e9a953dddc
4ba94b04bc6b88eed24a8548e6bef31947b7bbca
This change replaces the deprecated tsl::errors::Internal function with absl::InternalError, as part of the XLA/TSL cleanup. It also adds the necessary absl/strings/str_cat.h include and dependency. PiperOrigin-RevId: 837776932
[ { "path": "tensorflow/core/framework/BUILD", "patch": "@@ -712,6 +712,8 @@ cc_library(\n \"//tensorflow/core/platform:status\",\n \"//tensorflow/core/platform:statusor\",\n \"//tensorflow/core/util:overflow\",\n+ \"@com_google_absl//absl/status\",\n+ \"@com_google_absl/...
2025-11-28T10:44:31
mrdoob/three.js
8c55e3e14f1e82a83a56a09a2705eb77d0ff0535
44556ab610958976f4f90de90faa5b82d419ee47
WebGLTextures: Fix `gl.invalidateFramebuffer()` call. (#28139)
[ { "path": "src/renderers/webgl/WebGLTextures.js", "patch": "@@ -1892,7 +1892,7 @@ function WebGLTextures( _gl, extensions, state, properties, capabilities, utils,\n \n \t\t\t\t\t}\n \n-\t\t\t\t\tif ( ignoreDepthValues === true ) {\n+\t\t\t\t\tif ( ignoreDepthValues === true && supportsInvalidateFramebuffer ...
2024-04-15T08:54:55
kubernetes/kubernetes
fa31a593b9f64f01be8fb2acfbfe56923b0f3dc7
462c8693540b5715a1c32c590fac29736004d341
Clean up event messages for errors in Portworx in-tree driver
[ { "path": "pkg/volume/portworx/portworx.go", "patch": "@@ -308,8 +308,9 @@ func (b *portworxVolumeMounter) SetUpAt(dir string, mounterArgs volume.MounterAr\n \tnotMnt, err := b.mounter.IsLikelyNotMountPoint(dir)\n \tklog.Infof(\"Portworx Volume set up. Dir: %s %v %v\", dir, !notMnt, err)\n \tif err != nil &...
2025-11-03T22:38:58
denoland/deno
28c62ff31b2d5e114ca0b83e36ab007ef8faeb48
9602e13d53c9c4ccaae0d5827d22104b6c40dd92
fix(ext/node): `process.loadEnvFile` returns `undefined` (#29717)
[ { "path": "ext/node/lib.rs", "patch": "@@ -223,6 +223,7 @@ enum DotEnvLoadErr {\n }\n \n #[op2(fast)]\n+#[undefined]\n fn op_node_load_env_file(\n state: &mut OpState,\n #[string] path: &str,", "additions": 1, "deletions": 0, "language": "Rust" } ]
2025-06-12T05:00:59
golang/go
69338a335ada5882b888fb7eabe0ad6f0e12c986
cedf63616a00c8a6a69f6bbe4bc93b6865cec842
cmd/go/internal/gover: fix ModIsPrerelease for toolchain versions We forgot to call the IsPrerelease function on FromToolchain(vers) rather than on vers itself. IsPrerelase expects a version without the "go" prefix. See the corresponding code in ModIsValid and ModIsPrefix that call FromToolchain before passing the ver...
[ { "path": "src/cmd/go/internal/gover/mod.go", "patch": "@@ -109,6 +109,9 @@ func ModIsPrefix(path, vers string) bool {\n // The caller is assumed to have checked that ModIsValid(path, vers) is true.\n func ModIsPrerelease(path, vers string) bool {\n \tif IsToolchain(path) {\n+\t\tif path == \"toolchain\" {\...
2025-07-29T21:12:24
mrdoob/three.js
44556ab610958976f4f90de90faa5b82d419ee47
361f301cccd17f1c9d6858604cf13700164a22ca
WebGPURenderer: Fix `specularF90` of `MeshStandardMaterial` (#28138) * MeshStandardNodeMaterial: fix specularF90 * update screenshot * update screenshots
[ { "path": "examples/jsm/nodes/functions/PhysicalLightingModel.js", "patch": "@@ -383,7 +383,7 @@ class PhysicalLightingModel extends LightingModel {\n \t// Approximates multiscattering in order to preserve energy.\n \t// http://www.jcgt.org/published/0008/01/03/\n \n-\tcomputeMultiscattering( singleScatter,...
2024-04-15T05:15:30
swiftlang/swift
bf0e8835b63674ca6cb91123b78482b8e2e1c215
56cc7aeff19105779d7e8d2f68445716f019767a
[ConstraintSystem] Fix callee locator for KeyPath application components Previously, `getCalleeLocator` handled `ComponentKind::Apply` by returning a locator for the current component index. This was incorrect because the callee for an application is the member being applied (the previous component), not the applicati...
[ { "path": "lib/Sema/ConstraintSystem.cpp", "patch": "@@ -4238,7 +4238,6 @@ Solution::getFunctionArgApplyInfo(ConstraintLocator *locator) const {\n std::optional<OverloadChoice> choice;\n Type rawFnType;\n auto *calleeLocator = getCalleeLocator(argLocator);\n-\n if (auto overload = getOverloadChoiceI...
2026-01-22T20:57:53
kubernetes/kubernetes
979c44277498fefabd0b1031a11e3e85351c74b8
7d186d870f91462eee22d828a470fe17b906294e
Fix spurious workload rollout due to null creationTimestamp in controller revisions
[ { "path": "pkg/controller/statefulset/stateful_set_control.go", "patch": "@@ -22,13 +22,16 @@ import (\n \t\"sync\"\n \n \t\"k8s.io/klog/v2\"\n+\t\"k8s.io/utils/lru\"\n \n \tapps \"k8s.io/api/apps/v1\"\n \tv1 \"k8s.io/api/core/v1\"\n \t\"k8s.io/apimachinery/pkg/api/errors\"\n \tmetav1 \"k8s.io/apimachinery/...
2025-10-31T20:24:13
golang/go
cedf63616a00c8a6a69f6bbe4bc93b6865cec842
82a1921c3b6b493c4ff358f063c2ffffabba9fd5
cmd/compile: add floating point min/max intrinsics on s390x Add the VECTOR FP (MINIMUM|MAXIMUM) instructions to the assembler and use them in the compiler to implement min and max. Note: I've allowed floating point registers to be used with the single element instructions (those with the W instead of V prefix) to all...
[ { "path": "src/cmd/asm/internal/asm/testdata/s390x.s", "patch": "@@ -540,6 +540,18 @@ TEXT main·foo(SB),DUPOK|NOSPLIT,$16-0 // TEXT main.foo(SB), DUPOK|NOSPLIT, $16-\n \tVSTRCZBS V18, V20, V22, V24\t// e78240306f8a\n \tVSTRCZHS V18, V20, V22, V24\t// e78241306f8a\n \tVSTRCZFS V18, V20, V22, V24\t// e7824230...
2025-06-27T20:05:38
tensorflow/tensorflow
5d7332c4c01970851e5a1d34e17f2a2a81d76903
ae0bcfbed65c9f3cf97c7714efdf69deff6507e0
Remove EmitterLocOpBuilder and xla_gpu_unsupported_annotate_with_emitter_loc. This change removes the custom EmitterLocOpBuilder and the associated debug option `xla_gpu_unsupported_annotate_with_emitter_loc`. The functionality provided by EmitterLocOpBuilder is no longer functional. All instances of EmitterLocOpBuild...
[ { "path": "third_party/xla/xla/backends/gpu/codegen/triton/BUILD", "patch": "@@ -111,7 +111,6 @@ cc_library(\n \"//xla:util\",\n \"//xla:xla_data_proto_cc\",\n \"//xla:xla_proto_cc\",\n- \"//xla/codegen:emitter_loc_op_builder\",\n \"//xla/codegen/emitters:elemental_hlo...
2025-11-28T10:04:25
mrdoob/three.js
500f452242b2df2b0af1913625d23bd0b3a00b28
454ada917e9b11ac99bdc9ac4f937adeb015bd77
WebGPURenderer: Transmission - Backdrop 3/3 (#27880) * WebGPURenderer: Apply fog before tonemapping and encoding * TSL: Add `rendererReference` * PassNode: Add `getViewZNode()` * FogNode: Add `.getViewZNode()`, removed `mixAssign()` * TSL: Add `toneMappingExposure` * PostProcessing: Add `.renderAsync()`...
[ { "path": "examples/files.json", "patch": "@@ -351,9 +351,11 @@\n \t\t\"webgpu_loader_gltf_compressed\",\n \t\t\"webgpu_loader_gltf_iridescence\",\n \t\t\"webgpu_loader_gltf_sheen\",\n+\t\t\"webgpu_loader_gltf_transmission\",\n \t\t\"webgpu_loader_materialx\",\n \t\t\"webgpu_materials\",\n \t\t\"webgpu_mate...
2024-04-12T16:22:18
denoland/deno
9602e13d53c9c4ccaae0d5827d22104b6c40dd92
dd91908fabb91fa3c454c579a3c842cd514d9b89
fix(process,node): roll our own process spawning on windows (#29609) Fixes #16899. Fixes https://github.com/denoland/deno/issues/23524. Fixes https://github.com/denoland/deno/issues/23938. Fixes https://github.com/denoland/deno/issues/27869. Unblocks #5501. This PR adds support for additional stdio pipes to windows,...
[ { "path": "Cargo.lock", "patch": "@@ -1481,6 +1481,7 @@ dependencies = [\n \"deno_runtime\",\n \"deno_semver\",\n \"deno_snapshots\",\n+ \"deno_subprocess_windows\",\n \"deno_task_shell\",\n \"deno_telemetry\",\n \"deno_terminal 0.2.2\",\n@@ -2083,6 +2084,7 @@ dependencies = [\n \"async-trait\",\n \...
2025-06-12T02:56:13
swiftlang/swift
6a518100ae57cb78dee892245d63bb587d83e24a
97f9052fbf7c003e5192fd34b830d0371027872d
Fix REQUIRES lines
[ { "path": "test/Parse/coroutine_accessors_2.swift", "patch": "@@ -4,7 +4,8 @@\n // RUN: %target-codesign %t/a.out\n // RUN: %target-run %t/a.out | %FileCheck %s\n \n-// REQUIRES: swift_feature_CoroutineAccessors'\n+// REQUIRES: swift_feature_CoroutineAccessors\n+// REQUIRES: executable_test\n \n public clas...
2026-01-22T19:24:26
mrdoob/three.js
454ada917e9b11ac99bdc9ac4f937adeb015bd77
a3499193e531229004c469a0ba89861b20f3e641
docs: Fix typo (#28123) Fix typo in Korean docs
[ { "path": "docs/manual/ko/introduction/Creating-a-scene.html", "patch": "@@ -63,7 +63,7 @@ <h2>Scene 만들기</h2>\n \n \t\t<p>다음은 renderer입니다. 마법이 일어나는 곳입니다. 같이 사용하는 WebGLRenderer와 더불어, three.js는 다른 몇가지 renderer를 사용하는데, 오래된 브라우저 혹은 모종의 사유로 WebGL을 지원 안할때의 대비용으로 사용하는 것입니다.</p>\n \n-\t\t<p>renderer 인스턴스를 생섬함과 동시에,...
2024-04-12T07:19:02
tensorflow/tensorflow
b73afa349af0145cf4b496d8c4ec58f653b52a5d
8dc1e0c341cf839afe6e2716d6b4728b461f62c6
[XLA:GPU] remove is_autotuning_compilation arg from PtxCompileOptionsFromDebugOptions PiperOrigin-RevId: 837560227
[ { "path": "third_party/xla/xla/service/gpu/nvptx_compiler.cc", "patch": "@@ -684,9 +684,7 @@ NVPTXCompiler::CompileTargetBinary(\n GetCompilationProvider(module_config.debug_options()));\n \n se::cuda::CompilationOptions compilation_options =\n- PtxCompileOptionsFromDebugOptions...
2025-11-27T17:51:50
denoland/deno
dd91908fabb91fa3c454c579a3c842cd514d9b89
a3ede3e68f4e6fd17018390f11bb4d907724004b
fix(ext/node): fix `EventEmitter.on` (#29682) This fixes `EventEmitter.on` behaviors and enables `parallel/test-events-on-async-iterator.js` test case. Details: - Removing of AbortListener in `EventEmitter.on` wasn't working. This commit fixes it. - patches `signal[kEvents]` field if AbortSignal is passed to `EventEm...
[ { "path": "ext/node/polyfills/_events.mjs", "patch": "@@ -25,15 +25,24 @@\n \n \"use strict\";\n \n+import { primordials } from \"ext:core/mod.js\";\n+const {\n+ ArrayPrototypeMap,\n+ ObjectDefineProperty,\n+ ObjectEntries,\n+ SafeMap,\n+ SafeSet,\n+} = primordials;\n+\n const kRejection = Symbol.for(\...
2025-06-12T01:11:26
kubernetes/kubernetes
b9118183cf13fdc0a566c1f8104f9928aca763c3
a1ce4bb46869983e861d6187f852b56e4a0170e3
Fix the boilet plate
[ { "path": "pkg/scheduler/framework/plugins/nodevolumelimits/csi_manager.go", "patch": "@@ -1,3 +1,19 @@\n+/*\n+Copyright 2025 The Kubernetes Authors.\n+\n+Licensed under the Apache License, Version 2.0 (the \"License\");\n+you may not use this file except in compliance with the License.\n+You may obtain a c...
2025-11-03T02:35:06
swiftlang/swift
7af1e1ffd1b59e57fcc4d73890bf3852120b4a6a
411d396eb89a4fd804beddd55975f1056811e6e0
TempRValueElimination: fix a problem with `load`-`store` copy elimination If a value is "copied" to the stack location via a `load` and `store` instruction pair and the source location is written or de-allocated between both instructions, the optimization generated wrong SIL. The fix is to make sure that writes to the...
[ { "path": "SwiftCompilerSources/Sources/Optimizer/FunctionPasses/TempRValueElimination.swift", "patch": "@@ -426,10 +426,15 @@ private func getLastUseWhileSourceIsNotModified(of copy: CopyLikeInstruction,\n uses: InstructionSetWithCount,\n ...
2026-01-22T17:02:46
mrdoob/three.js
c8eb9e6213b97c6aff5e3dc2901d95e471244dff
fa03a0180c7ee5fb93a0b8bdb874beb02dd320f0
WebGLRenderer: Fix global clipping planes with nested render calls. (#28120)
[ { "path": "src/renderers/WebGLRenderer.js", "patch": "@@ -906,7 +906,7 @@ class WebGLRenderer {\n \t\t\tif ( targetScene === null ) targetScene = scene;\n \n \t\t\tcurrentRenderState = renderStates.get( targetScene );\n-\t\t\tcurrentRenderState.init();\n+\t\t\tcurrentRenderState.init( camera );\n \n \t\t\tr...
2024-04-11T18:30:42
golang/go
82a1921c3b6b493c4ff358f063c2ffffabba9fd5
2ae059ccaf982c3304fae0b48c1d78ad7192cbdd
all: remove redundant Swiss prefixes Now that there is only one map implementation we can simplify names. For #54766. Change-Id: I6a6a636cc6a8fc5e7712c27782fc0ced7467b939 Reviewed-on: https://go-review.googlesource.com/c/go/+/691596 Reviewed-by: Keith Randall <khr@google.com> Auto-Submit: Michael Pratt <mpratt@googl...
[ { "path": "src/cmd/compile/internal/reflectdata/map.go", "patch": "@@ -15,10 +15,10 @@ import (\n \t\"internal/abi\"\n )\n \n-// SwissMapGroupType makes the map slot group type given the type of the map.\n-func SwissMapGroupType(t *types.Type) *types.Type {\n-\tif t.MapType().SwissGroup != nil {\n-\t\tretur...
2025-07-29T17:58:35
tensorflow/tensorflow
8dc1e0c341cf839afe6e2716d6b4728b461f62c6
be9aa172b9679f090dc7331b1fc290618ef10e1a
`element_type` of tuple shape is TUPLE, which is not a sub-byte type itself, so we would not normalize all-to-all with tuple output and crash later in the thunk emitter. PiperOrigin-RevId: 837558691
[ { "path": "third_party/xla/xla/service/gpu/gpu_float_support.cc", "patch": "@@ -16,18 +16,18 @@ limitations under the License.\n #include \"xla/service/gpu/gpu_float_support.h\"\n \n #include <utility>\n-#include <variant>\n \n #include \"absl/algorithm/container.h\"\n #include \"absl/log/check.h\"\n #inclu...
2025-11-27T17:43:29
denoland/deno
a3ede3e68f4e6fd17018390f11bb4d907724004b
76c95b9c44a69e5744c97ff823155760bd54db8f
fix(unstable): continue to deserialize patches field from lockfile (#29714) Co-authored-by: nathanwhit <nathanwhit@users.noreply.github.com>
[ { "path": "Cargo.lock", "patch": "@@ -892,7 +892,7 @@ dependencies = [\n \"chrono\",\n \"deno_bench_util\",\n \"deno_cache_dir\",\n- \"deno_lockfile 0.30.0\",\n+ \"deno_lockfile 0.30.1\",\n \"deno_semver\",\n \"deno_terminal 0.2.2\",\n \"deno_tower_lsp\",\n@@ -1469,7 +1469,7 @@ dependencies = [\n \"d...
2025-06-12T00:11:08
mrdoob/three.js
645ff11b6e08ea0f845940a4ba13491c40198af2
7690b5090676101c5c3818eeadbf92f8fa7c60e1
WebGLRenderer: Track camera per render state. (#28113) * WebGLRenderer: Track camera per render state. * WebGLRenderer: Fix render state restore. * Examples: Clean up.
[ { "path": "examples/jsm/objects/Reflector.js", "patch": "@@ -161,16 +161,6 @@ class Reflector extends Mesh {\n \n \t\t\trenderer.setRenderTarget( currentRenderTarget );\n \n-\t\t\t// Restore viewport\n-\n-\t\t\tconst viewport = camera.viewport;\n-\n-\t\t\tif ( viewport !== undefined ) {\n-\n-\t\t\t\trendere...
2024-04-11T15:09:24
kubernetes/kubernetes
bdb2e37781aec3bfec477a7beddd9fa5ac4eab1b
34988e758dbfa43a6c1264ea6ed5063bcecb084a
Fix queue to gracefully shutdown
[ { "path": "staging/src/k8s.io/client-go/util/workqueue/queue.go", "patch": "@@ -169,12 +169,13 @@ func newQueue[T comparable](c clock.WithTicker, queue Queue[T], metrics queueMet\n \t\tcond: sync.NewCond(&sync.Mutex{}),\n \t\tmetrics: metrics,\n \t\tunfinishedWorkUpd...
2025-11-03T19:04:11
golang/go
cc571dab91e73413cf2ba1546a4ba485038cf2d1
2174a7936c9e6109e2786369072f5b9dc5d631f5
cmd/compile: deduplicate instructions when rewrite func results After CL 628075, do not rely on the memory arg of an OpLocalAddr. Fixes #74788 Change-Id: I4e893241e3949bb8f2d93c8b88cc102e155b725d Reviewed-on: https://go-review.googlesource.com/c/go/+/691275 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-acc...
[ { "path": "src/cmd/compile/internal/ssa/expand_calls.go", "patch": "@@ -243,11 +243,8 @@ func (x *expandState) rewriteFuncResults(v *Value, b *Block, aux *AuxCall) {\n \t\tif len(aRegs) > 0 {\n \t\t\tresult = &allResults\n \t\t} else {\n-\t\t\tif a.Op == OpLoad && a.Args[0].Op == OpLocalAddr {\n-\t\t\t\tadd...
2025-07-29T10:53:29
swiftlang/swift
0f0aa0c17b7376dc6b03335aaea5cee3aa3c2ab2
e3e8c2420146a51395e2c3f1ba5e83ebd2bb4203
Optimizer: require that there are no unreachable blocks and infinite loops in OSSA These two new invariants eliminate corner cases which caused bugs if optimization didn't handle them. Also, it will significantly simplify lifetime completion. The implementation basically consists of these changes: * add a flag in SIL...
[ { "path": "SwiftCompilerSources/Sources/Optimizer/FunctionPasses/BooleanLiteralFolding.swift", "patch": "@@ -54,6 +54,7 @@ let booleanLiteralFolding = FunctionPass(name: \"boolean-literal-folding\") {\n }\n if changed {\n _ = context.removeDeadBlocks(in: function)\n+ breakInfiniteLoops(in: functi...
2026-01-19T11:19:09
denoland/deno
76c95b9c44a69e5744c97ff823155760bd54db8f
d107e169ff3b8ea60ab4a6859ef82a5201472f59
fix(fmt): fix line number in error message when syntax error thrown from external formatter (#29698) The line number in error message is off by one when external formatter raised syntax error. This commit fixes it by upgrading `dprint-plugin-typescript` (The issue was fixed in upstream https://github.com/dprint/dprint...
[ { "path": "Cargo.lock", "patch": "@@ -3353,9 +3353,9 @@ dependencies = [\n \n [[package]]\n name = \"dprint-plugin-typescript\"\n-version = \"0.95.5\"\n+version = \"0.95.6\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"a1120849c597c9196726c0e9df7032ed20eb0844289f0e81e9...
2025-06-11T23:58:44
mrdoob/three.js
5e371cc01da255e6c32d108617594fd6bd262acf
bbb6b50660b6b61bee2876b829944dfdbfbf5a53
docs: remove `THREE.` prefix from several addon uses (#28105) * docs: `THREE.KTX2Loader` -> `KTX2Loader` We no longer use the prefix `THREE.` for addons * docs: `THREE.GLTFLoader` -> `GLTFLoader` We no longer use the prefix `THREE.` for addons * docs: `THREE.OBJLoader` -> `OBJLoader` We no longer use th...
[ { "path": "docs/api/ar/loaders/managers/LoadingManager.html", "patch": "@@ -44,7 +44,7 @@ <h2>مثال للكود</h2>\n \t\t\tconsole.log( 'There was an error loading ' + url );\n \t\t};\n \t\n-\t\tconst loader = new THREE.OBJLoader( manager );\n+\t\tconst loader = new OBJLoader( manager );\n \t\tloader.load( 'file...
2024-04-10T08:18:53
kubernetes/kubernetes
96edaa43d2eabeaef6961dd4e17fab1fda461da1
67c3cb2228f3d1dc22c28d463765eced0664bf36
Set KubeletCrashLoopBackOffMax feature gate to default enabled for beta.
[ { "path": "pkg/features/kube_features.go", "patch": "@@ -435,8 +435,8 @@ const (\n \t// fallback to using it's cgroupDriver option.\n \tKubeletCgroupDriverFromCRI featuregate.Feature = \"KubeletCgroupDriverFromCRI\"\n \n-\t// owner: @lauralorenz\n-\t// kep: https://kep.k8s.io/4603\n+\t// owner: @lauralorenz...
2025-11-02T13:15:52
golang/go
2174a7936c9e6109e2786369072f5b9dc5d631f5
8330fb48a645a29a79dd5c58ad3d9c54d7e6537c
crypto/tls: use standard chacha20-poly1305 cipher suite names The different chacha20-poly1305 cipher suites were renamed to include the _SHA256 suffix, which is the canonical naming convention. The occurrences of the old names were still not updated, which can lead to confusion when searching for the canonical names ...
[ { "path": "src/crypto/tls/cipher_suites.go", "patch": "@@ -149,8 +149,8 @@ type cipherSuite struct {\n }\n \n var cipherSuites = []*cipherSuite{ // TODO: replace with a map, since the order doesn't matter.\n-\t{TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305, 32, 0, 12, ecdheRSAKA, suiteECDHE | suiteTLS12, nil, nil, a...
2025-07-21T07:34:13
swiftlang/swift
34aa3c00d3e781aa04cee6f1db48483e0fd32329
16cb80b60d8caac9ffd623b3d049e04007f9040f
Optimizer: move `var needFixStackNesting` from `MutatingContext` to `FunctionPassContext`
[ { "path": "SwiftCompilerSources/Sources/Optimizer/PassManager/ContextCommon.swift", "patch": "@@ -49,7 +49,6 @@ extension Context {\n \n extension MutatingContext {\n func notifyInvalidatedStackNesting() { bridgedPassContext.notifyInvalidatedStackNesting() }\n- var needFixStackNesting: Bool { bridgedPass...
2026-01-19T09:47:20
denoland/deno
b9b49090b01ede51d3cb0f824003bf4f6ababdb9
b64d4cb125167e43283ab12ec8a2dc80359ad9b0
fix: support virtio vsock only on systems on which it is available (remainder) (#29709) See https://github.com/denoland/deno/issues/29268 for the related discussion. @devsnek @marvinhagemeister These are two patches I missed with the initial PR (https://github.com/denoland/deno/pull/29354)
[ { "path": "ext/http/http_next.rs", "patch": "@@ -1054,7 +1054,7 @@ where\n NetworkStream::Unix(conn) => {\n serve_http(conn, connection_properties, lifetime, tx, options)\n }\n- #[cfg(unix)]\n+ #[cfg(any(target_os = \"linux\", target_os = \"macos\"))]\n NetworkStream::Vsock(conn) => ...
2025-06-11T21:00:07
mrdoob/three.js
bbb6b50660b6b61bee2876b829944dfdbfbf5a53
7182185f1d4f17bafc4dc4dc9b3ec5b4a492fa0b
GLTFExporter: Fix missing clearcoat normal map scale. (#28099)
[ { "path": "examples/jsm/exporters/GLTFExporter.js", "patch": "@@ -2639,6 +2639,9 @@ class GLTFMaterialsClearcoatExtension {\n \t\t\t\tindex: writer.processTexture( material.clearcoatNormalMap ),\n \t\t\t\ttexCoord: material.clearcoatNormalMap.channel\n \t\t\t};\n+\n+\t\t\tif ( material.clearcoatNormalScale....
2024-04-10T05:24:50
golang/go
89a0af86b819ceb8095c686fc5109b40082bc8c5
5e94d72158077411547287fc36f24b3121cca645
cmd/compile: allow ops to specify clobbering input registers Same as clobbering fixed registers, but which register is clobbered depends on which register was assigned to the input. Add code similar to resultInArg0 processing that makes a register copy before allowing the op to clobber the last available copy of a va...
[ { "path": "src/cmd/compile/internal/ssa/_gen/main.go", "patch": "@@ -87,6 +87,10 @@ type regInfo struct {\n \t// clobbers encodes the set of registers that are overwritten by\n \t// the instruction (other than the output registers).\n \tclobbers regMask\n+\t// Instruction clobbers the register containing in...
2025-06-09T23:44:46
mrdoob/three.js
c9576b8412aded8ef0a7deb159c8da617ef4d8b2
7a87e2231cd91dd4532aa4c049f83adcfd892f72
Playground: Revision mat*/bool color and json matrix* types (#28094) * fix node type * differentiates the color of a boolean from the material
[ { "path": "playground/DataTypeLib.js", "patch": "@@ -36,7 +36,7 @@ export function getLengthFromType( type ) {\n \n export function getLengthFromNode( value ) {\n \n-\tlet type = getTypeFromNode( value );\n+\tconst type = getTypeFromNode( value );\n \n \treturn getLengthFromType( type );\n \n@@ -46,10 +46,1...
2024-04-08T21:44:21
denoland/deno
b64d4cb125167e43283ab12ec8a2dc80359ad9b0
1a8e5edd0fa288e2164fcebf029cd87975938c99
fix(bundle): don't panic on broken pipe (#29706) `deno bundle main.js | less` and then `Ctrl + C` caused a panic because of `Broken pipe` error.
[ { "path": "cli/tools/bundle/mod.rs", "patch": "@@ -233,10 +233,7 @@ pub async fn bundle(\n \n if let Some(stdout) = response.write_to_stdout {\n let stdout = replace_require_shim(&String::from_utf8_lossy(&stdout));\n- #[allow(clippy::print_stdout)]\n- {\n- println!(\"{}\", stdout);\n- }\...
2025-06-11T19:05:28
swiftlang/swift
2d27cba734ba20a96e17a4d0dd537eb5d5f0f2aa
1a4eb8ca7e73b48a0e50741ca224aa983753a293
Optimier: add an assert to check if a basic block has a dominator node Previously the compiler just crashed
[ { "path": "include/swift/SILOptimizer/OptimizerBridgingImpl.h", "patch": "@@ -81,16 +81,22 @@ bool BridgedDeadEndBlocksAnalysis::isDeadEnd(BridgedBasicBlock block) const {\n // BridgedDomTree, BridgedPostDomTree\n //===--------------------------------------------------------------------...
2026-01-19T08:20:55
golang/go
8cd85e602a90cb97051fe95d5243557b566630e6
cefaed0de0b86ea67588546d2e18f850e7b7d41d
cmd/compile: check domination of loop return in both controls Fixes #74473 Change-Id: I72ff6b95955ae9407271508aa80f230dcf1b6c74 Reviewed-on: https://go-review.googlesource.com/c/go/+/685816 Reviewed-by: Mark Freeman <mark@golang.org> Auto-Submit: Jorropo <jorropo.pgm@gmail.com> LUCI-TryBot-Result: Go LUCI <golang-sco...
[ { "path": "src/cmd/compile/internal/ssa/loopbce.go", "patch": "@@ -37,19 +37,20 @@ type indVar struct {\n // - the minimum bound\n // - the increment value\n // - the \"next\" value (SSA value that is Phi'd into the induction variable every loop)\n+// - the header's edge returning from the body\n //...
2025-07-04T06:54:14
tensorflow/tensorflow
d52a6e81269ed80656627ab4cd4d6048452b33c7
7ef3adf1a73259404c52845db255e8b8c3b1a067
[XLA] Replace deprecated tsl::errors::Internal with absl::InternalError in example_proto_fast_parsing.cc This change replaces the deprecated tsl::errors::Internal function with absl::InternalError, as part of the XLA/TSL cleanup. PiperOrigin-RevId: 837531517
[ { "path": "tensorflow/core/util/example_proto_fast_parsing.cc", "patch": "@@ -1177,7 +1177,7 @@ absl::Status FastParseExample(const Config& config,\n ok = true;\n }\n if (!ok) {\n- return errors::Internal(\n+ return absl::InternalError(\n \"Could not avoid collision. This should not ha...
2025-11-27T15:47:52
mrdoob/three.js
7a87e2231cd91dd4532aa4c049f83adcfd892f72
6ca8024b11074c2646624418158616cc998a608e
Playground: Fix NodePrototypes being available across load/save-cycles (#28030)
[ { "path": "playground/editors/NodePrototypeEditor.js", "patch": "@@ -87,6 +87,12 @@ export class NodePrototypeEditor extends JavaScriptEditor {\n \n \tsetEditor( editor ) {\n \n+\t\tif ( editor === null && this.editor ) {\n+\n+\t\t\tthis.editor.removeClass( this._prototype );\n+\n+\t\t}\n+\n \t\tsuper.setEd...
2024-04-08T21:40:08
denoland/deno
1a8e5edd0fa288e2164fcebf029cd87975938c99
9812163db27f6bf348a5d6010d186a7809332482
fix: remove WorkerGlobalScope from global middleware (#29543) This commit removes "WorkerGlobalScope" global from the "global middleware" that we use to provide different set of globals to user code and npm packages. This is done, by renaming "WebWorkerType" to "WorkerThreadType" and introducing a "Node" variant - th...
[ { "path": "ext/node/global.rs", "patch": "@@ -64,9 +64,8 @@ const fn str_to_utf16<const N: usize>(s: &str) -> [u16; N] {\n \n // UTF-16 encodings of the managed globals. THIS LIST MUST BE SORTED.\n #[rustfmt::skip]\n-const MANAGED_GLOBALS: [&[u16]; 12] = [\n+const MANAGED_GLOBALS: [&[u16]; 11] = [\n &str_...
2025-06-11T15:19:15
swiftlang/swift
e2ddbf79f0a33a7a4cc4e7cf8d43ec2d7f3205d0
4755aa828ebd1e4b66570d51b30765c2f7f10e93
SIL: fix the corner case of an empty BasicBlockRange If no block was ever inserted in a BasicBlockRange, the "inclusive" range should be empty and not contain the "begin" block.
[ { "path": "SwiftCompilerSources/Sources/SIL/DataStructures/BasicBlockRange.swift", "patch": "@@ -71,7 +71,6 @@ public struct BasicBlockRange : CustomStringConvertible, NoReflectionChildren {\n self.wasInserted = BasicBlockSet(context)\n self.inExclusiveRange = BasicBlockSet(context)\n self.workl...
2026-01-14T15:10:51
golang/go
cefaed0de0b86ea67588546d2e18f850e7b7d41d
3aa1b0008169cea3ed79a4a19b66f64479be4402
reflect: fix noswiss builder Missed this change in CL 681936 Fixes #74808 Change-Id: I30f6402177c5f8efe9bd11d50fad1770a22762c5 Reviewed-on: https://go-review.googlesource.com/c/go/+/691675 Reviewed-by: Cuong Manh Le <cuong.manhle.vn@gmail.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gser...
[ { "path": "src/reflect/map_noswiss.go", "patch": "@@ -69,7 +69,7 @@ func MapOf(key, elem Type) Type {\n \tvar imap any = (map[unsafe.Pointer]unsafe.Pointer)(nil)\n \tmt := **(**mapType)(unsafe.Pointer(&imap))\n \tmt.Str = resolveReflectName(newName(s, \"\", false, false))\n-\tmt.TFlag = 0\n+\tmt.TFlag = abi...
2025-07-29T22:31:09
mrdoob/three.js
6ca8024b11074c2646624418158616cc998a608e
6421f3a49ebed3d07de781776f47624e6d26e896
Playground: Fix animation loop reference (#28093)
[ { "path": "playground/index.html", "patch": "@@ -125,7 +125,7 @@\n \n \t\t\t\t//\n \n-\t\t\t\trenderer.setAnimationLoop( render );\n+\t\t\t\trenderer.setAnimationLoop( animate );\n \t\t\t\trenderer.toneMapping = THREE.LinearToneMapping;\n \t\t\t\trenderer.toneMappingExposure = 1;\n \t\t\t\tdocument.body.app...
2024-04-08T21:29:40
tensorflow/tensorflow
1ffcd1c05d57e5acf512a54964b26e52a13eea94
1904ec96e3d739e2d4731add3e683d0db1ec9da2
[XLA:GPU] Fix usages of deprecated tsl::errors::Cancelled in xla This change replaces usages of tsl::errors::Cancelled with absl::CancelledError, wrapping arguments in absl::StrCat where necessary. This addresses deprecation warnings and moves towards standard Abseil error handling. Changes: - Replaced errors::Cancel...
[ { "path": "third_party/xla/xla/tsl/distributed_runtime/preemption/BUILD", "patch": "@@ -19,8 +19,10 @@ cc_library(\n compatible_with = get_compatible_with_portable(),\n deps = [\n \"//xla/tsl/platform:env\",\n- \"//xla/tsl/platform:errors\",\n \"//xla/tsl/platform:statusor\",\...
2025-11-27T14:02:58
denoland/deno
6367a54b61cde553d482fc1ed64436da6e2e7dcc
b49523780de5c3985f73490b9358459353ac291d
fix(ext/node): use primordials in `ext/node/polyfills/internal_binding/stream_wrap.ts` (#29542)
[ { "path": "ext/node/polyfills/internal_binding/stream_wrap.ts", "patch": "@@ -27,11 +27,17 @@\n // - https://github.com/nodejs/node/blob/master/src/stream_wrap.h\n // - https://github.com/nodejs/node/blob/master/src/stream_wrap.cc\n \n-// TODO(petamoriken): enable prefer-primordials for node polyfills\n-// ...
2025-06-11T06:40:09
golang/go
3aa1b0008169cea3ed79a4a19b66f64479be4402
b1e933d95518a7978efb29772bd6129acf0af452
regexp: fix compiling alternate patterns of different fold case literals Fixing Equal method in regexp/syntax package fixes compilation of some alternate patterns like "0A|0[aA]". Fixes #59007 Change-Id: Idd519c6841167f932899b0ada347fb90a38a765e GitHub-Last-Rev: 6f43cbca6361c0d084a12abeec65d7c659a4fe61 GitHub-Pull-R...
[ { "path": "src/regexp/find_test.go", "patch": "@@ -98,6 +98,8 @@ var findTests = []FindTest{\n \t{`\\B`, \"x y\", nil},\n \t{`\\B`, \"xx yy\", build(2, 1, 1, 4, 4)},\n \t{`(|a)*`, \"aa\", build(3, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2)},\n+\t{`0A|0[aA]`, \"0a\", build(1, 0, 2)},\n+\t{`0[aA]|0A`, \"0a\", build(...
2025-07-04T22:59:25
mrdoob/three.js
958eddf941eae644b41df7229a5801737d1a2d7e
c3b2fb018a8b4872b64013f36c989dfaba43b9d0
fix typos in korean docs (#28090)
[ { "path": "docs/manual/ko/introduction/Creating-a-scene.html", "patch": "@@ -63,7 +63,7 @@ <h2>Scene 만들기</h2>\n \n \t\t<p>다음은 renderer입니다. 마법이 일어나는 곳입니다. 같이 사용하는 WebGLRenderer와 더불어, three.js는 다른 몇가지 renderer를 사용하는데, 오래된 브라우저 혹은 모종의 사유로 WebGL을 지원 안할때의 대비용으로 사용하는 것입니다.</p>\n \n-\t\t<p>renderer 인스턴스를 생섬함과 동시에,...
2024-04-08T13:49:05
denoland/deno
b49523780de5c3985f73490b9358459353ac291d
7bde4d09e29d64b71c32d924855959a9b6fc6dea
fix(ext/node): update decipherIv error properties (#29652) Enables `parallel/test-crypto-stream.js` test Ref https://github.com/denoland/deno/issues/29637
[ { "path": "ext/node/ops/crypto/cipher.rs", "patch": "@@ -176,7 +176,7 @@ pub enum CipherError {\n #[error(\"Invalid initialization vector\")]\n InvalidInitializationVector,\n #[class(type)]\n- #[error(\"Cannot pad the input data\")]\n+ #[error(\"bad decrypt\")]\n CannotPadInputData,\n #[class(ty...
2025-06-11T04:15:45
tensorflow/tensorflow
565285802a88713b2c156a90d0e435bc96f32db4
1b3a4c2053bae4bf8d6a6eefc3792ebb1de0dba1
PR #34467: [ROCm] Fix ExtractThreadDims for AMD targets Imported from GitHub PR https://github.com/openxla/xla/pull/34467 📝 Summary of Changes AMD/ROCm Triton backend does not support warp specialization. `ThreadDims` are therefore calculated from module attributes and not retrieved from `nvvm.reqntid`. 🎯 Justific...
[ { "path": "third_party/xla/xla/backends/gpu/codegen/triton/compilation_pipeline_rocm.cc", "patch": "@@ -123,10 +123,6 @@ static void MakeLLIR(mlir::OpPassManager* pm,\n const stream_executor::RocmComputeCapability& rocm_cc,\n int num_stages) {\n const int custom_l...
2025-11-27T13:42:14
golang/go
f3582fc80e19050d915ac9621bbeecef78c0548e
f7d167fe710501f687fad006125f4ec60be42c35
cmd/compile: add unsigned power-of-two detector Fixes #74485 Change-Id: Ia22a58ac43bdc36c8414d555672a3a3eafc749ca Reviewed-on: https://go-review.googlesource.com/c/go/+/689815 Reviewed-by: Keith Randall <khr@golang.org> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed...
[ { "path": "src/cmd/compile/internal/ssa/_gen/generic.rules", "patch": "@@ -1014,11 +1014,10 @@\n // See ../magic.go for a detailed description of these algorithms.\n \n // Unsigned divide by power of 2. Strength reduce to a shift.\n-(Div8u n (Const8 [c])) && isPowerOfTwo(c) => (Rsh8Ux64 n (Const64 <typ....
2025-07-23T11:48:18
swiftlang/swift
16b31b8292a020e606e9abe2d8b2614e8f8ccffd
25dd98191139de52343a481ba67307b04bd16ce2
Fix wasi test
[ { "path": "test/embedded/dependencies-random.swift", "patch": "@@ -35,10 +35,9 @@ __memory_base\n __stack_chk_fail\n __stack_chk_guard\n __stack_pointer\n+__table_base\n arc4random_buf\n free\n-memmove\n-memset\n posix_memalign\n putchar\n //--- test.swift", "additions": 1, "deletions": 2, "lang...
2026-01-22T15:18:27
denoland/deno
7bde4d09e29d64b71c32d924855959a9b6fc6dea
e27447943bf1ee7d984bac9a631ac9f2e8377eaa
fix(ext/node): use primordials in `ext/node/polyfills/internal/util/inspect.mjs` (#29691)
[ { "path": "ext/node/polyfills/internal/util/inspect.mjs", "patch": "@@ -20,9 +20,38 @@\n // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n // USE OR OTHER DEALINGS IN THE SOFTWARE.\n \n-// TODO(petamoriken): enable prefer-primordials for node polyfills\n-// deno-lint-ignore-file...
2025-06-11T04:07:52
tensorflow/tensorflow
6799bb89714c339170e8e1fc2f943abe1c8580f0
b903afee23f0084a8e0457b0139b146e38c4e1de
[XLA:GPU] Fix usages of deprecated tsl::errors::ResourceExhausted in xla This change replaces usages of tsl::errors::ResourceExhausted with absl::ResourceExhaustedError, wrapping arguments in absl::StrCat where necessary. This addresses deprecation warnings and moves towards standard Abseil error handling. Changes: -...
[ { "path": "third_party/xla/xla/backends/profiler/gpu/device_tracer_cuda.cc", "patch": "@@ -78,7 +78,7 @@ class GpuTracer : public tsl::profiler::ProfilerInterface {\n \n absl::Status GpuTracer::DoStart() {\n if (!cupti_tracer_->IsAvailable()) {\n- return tsl::errors::Unavailable(\"Another profile sessi...
2025-11-27T13:00:56
mrdoob/three.js
a84ff89421d6e6ad27293f4adcf58c61fd8be8cb
cf5db53401f02de87efa23ad7d27e13a7aad0189
WebGPURenderer: Fix `faceDirection` in `WebGLBackend` if used `BackSide` (#28064) * Fix faceDirection in WebGLBackend if used BackSide * Added frontFaceCW
[ { "path": "examples/jsm/nodes/display/FrontFacingNode.js", "patch": "@@ -1,5 +1,6 @@\n import Node, { addNodeClass } from '../core/Node.js';\n import { nodeImmutable, float } from '../shadernode/ShaderNode.js';\n+import { BackSide, WebGLCoordinateSystem } from 'three';\n \n class FrontFacingNode extends Nod...
2024-04-03T19:23:30
golang/go
e0b07dc22eaab1b003d98ad6d63cdfacc76c5c70
25816d401c459a9dfedded3b42315a8bd2d32802
os/exec: fix incorrect expansion of "", "." and ".." in LookPath Fix incorrect expansion of "" and "." when $PATH contains an executable file or, on Windows, a parent directory of a %PATH% element contains an file with the same name as the %PATH% element but with one of the %PATHEXT% extension (ex: C:\utils\bin is in ...
[ { "path": "src/os/exec/dot_test.go", "patch": "@@ -177,4 +177,48 @@ func TestLookPath(t *testing.T) {\n \t\t\t}\n \t\t}\n \t})\n+\n+\tchecker := func(test string) func(t *testing.T) {\n+\t\treturn func(t *testing.T) {\n+\t\t\tt.Helper()\n+\t\t\tt.Logf(\"PATH=%s\", os.Getenv(\"PATH\"))\n+\t\t\tp, err := Look...
2025-06-30T14:58:59
swiftlang/swift
9db72540fb7e4ceee303bb05f1208e042fa5f0e1
85cc3fe80e65ae0596f515e7e06afeb8f904bf54
[rbi] Fix incorrect implementation of begin_dealloc_ref, begin_dealloc_ref is only lookthrough its first parameter. We want to treat the other parameter as just a require. This hit an assert in the SIL test cases in the next commit.
[ { "path": "lib/SILOptimizer/Analysis/RegionAnalysis.cpp", "patch": "@@ -3520,7 +3520,6 @@ CONSTANT_TRANSLATION(TupleInst, Assign)\n // underlying region.\n CONSTANT_TRANSLATION(BeginAccessInst, LookThrough)\n CONSTANT_TRANSLATION(BorrowedFromInst, LookThrough)\n-CONSTANT_TRANSLATION(BeginDeallocRefInst, Loo...
2026-01-21T22:56:16
denoland/deno
e27447943bf1ee7d984bac9a631ac9f2e8377eaa
e5c9168f8685eb6997f9fb013adeffc0fda8afe6
fix(ext/node): fix fs.watchFile trigger (#29659) Co-authored-by: Yoshiya Hinosawa <stibium121@gmail.com>
[ { "path": "ext/node/polyfills/_fs/_fs_watch.ts", "patch": "@@ -298,7 +298,7 @@ class StatWatcher extends EventEmitter {\n while (true) {\n await delay(interval, { signal: this.#abortController.signal });\n const curr = await statAsync(filename);\n- if (curr?.mtime !== pr...
2025-06-11T03:37:59
mrdoob/three.js
08fbd476f88cf14fd7871998eb2c80863f1a3f7c
cd385372374f5513f5815d693dc264140788e574
[Loader] Fix for LWOLoader geometry correction (#28029) * [Loader] Fix for LWOLoader geometry correction fix: IFFParser.js now reads x as -x instead of z to -z. This now sets the geometry and pivot points in the correct location. This fixes #26733 * fix: webgl_loader_lwo updated with corrected coordinates for...
[ { "path": "examples/jsm/loaders/lwo/IFFParser.js", "patch": "@@ -651,10 +651,13 @@ class IFFParser {\n \t// LAYR: number[U2], flags[U2], pivot[VEC12], name[S0], parent[U2]\n \tparseLayer( length ) {\n \n+\t\tvar number = this.reader.getUint16();\n+\t\tvar flags = this.reader.getUint16(); // If the least sig...
2024-04-02T09:01:27
tensorflow/tensorflow
b903afee23f0084a8e0457b0139b146e38c4e1de
6861f26f3c2193455bf97e919d9e987e74e6bb32
[XLA:GPU] Fix usages of deprecated tsl::errors::AlreadyExists in xla This change replaces usages of tsl::errors::AlreadyExists with absl::AlreadyExistsError, wrapping arguments in absl::StrCat where necessary. This addresses deprecation warnings and moves towards standard Abseil error handling. Changes: - Replaced er...
[ { "path": "third_party/xla/xla/tsl/framework/device_id_manager.cc", "patch": "@@ -55,16 +55,17 @@ class TfToPlatformDeviceIdMap {\n {tf_device_id.value(), platform_device_id.value()});\n }\n if (!result.second && platform_device_id.value() != result.first->second) {\n- return errors::...
2025-11-27T11:53:53
golang/go
aa95ab8215760dfd6e1b8bb02aa2211021108512
4c854b7a3e5fc3e84a06511bce71ce01cbb4bb33
image: fix formatting of godoc link Change-Id: I8fa8741e0db174f0c32af0a393ee1b037d5b7e51 Reviewed-on: https://go-review.googlesource.com/c/go/+/680455 Auto-Submit: Michael Knyszek <mknyszek@google.com> Reviewed-by: Mark Freeman <mark@golang.org> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gser...
[ { "path": "src/image/image.go", "patch": "@@ -34,7 +34,9 @@\n // regardless of whether the image is itself malformed or not. A call to\n // [DecodeConfig] which returns a header which does not match the image returned\n // by [Decode] may be considered a security issue, and should be reported per the\n-// [...
2025-06-10T14:56:45
denoland/deno
e5c9168f8685eb6997f9fb013adeffc0fda8afe6
b3242183f32c4aedfffcadad68251709a0913232
fix(ext/node): fix events.getEventListeners (#29685)
[ { "path": "ext/node/polyfills/_events.mjs", "patch": "@@ -844,7 +844,9 @@ export function getEventListeners(emitterOrTarget, type) {\n return emitterOrTarget.listeners(type);\n }\n if (emitterOrTarget instanceof EventTarget) {\n- return emitterOrTarget[eventTargetData]?.listeners?.[type] || [];\n...
2025-06-11T00:40:53
swiftlang/swift
5f24b1541d73ed7576f8af34939538901eedc9e1
dcf9c37e5c453da552f4033d6eaa7729102004a7
[rbi] Sync a variable to its use. Small fix.
[ { "path": "lib/SILOptimizer/Analysis/RegionAnalysis.cpp", "patch": "@@ -2226,8 +2226,6 @@ class PartitionOpTranslator {\n \n // Perform our lookup result.\n if (auto lookupResult = tryToTrackValue(src)) {\n- auto value = lookupResult->value;\n-\n // If our value is non-Sendable re...
2026-01-21T16:10:24
kubernetes/kubernetes
3eab698884a4abd3b14173eef68e3225e49140b0
12a0c8ce17f8031cba43860ca3b5338d931598ac
fixed unit test and integration test failures Fix minor nits Signed-off-by: Sai Ramesh Vanka <svanka@redhat.com>
[ { "path": "pkg/scheduler/eventhandlers_test.go", "patch": "@@ -54,6 +54,7 @@ import (\n \t\"k8s.io/kubernetes/pkg/scheduler/framework\"\n \tapicalls \"k8s.io/kubernetes/pkg/scheduler/framework/api_calls\"\n \t\"k8s.io/kubernetes/pkg/scheduler/framework/plugins/defaultbinder\"\n+\t\"k8s.io/kubernetes/pkg/sch...
2025-11-02T02:11:32
mrdoob/three.js
0dd43bd6fe4c8a72ed6882cfc5b06a6018cb210c
1ff0d56b1897d326f061178eb71c767beee99070
fix viewZToPerspectiveDepth calculation (#28045)
[ { "path": "examples/jsm/nodes/display/ViewportDepthNode.js", "patch": "@@ -75,7 +75,7 @@ export const orthographicDepthToViewZ = ( depth, near, far ) => near.sub( far ).\n // NOTE: https://twitter.com/gonnavis/status/1377183786949959682\n \n // -near maps to 0; -far maps to 1\n-export const viewZToPerspecti...
2024-04-02T03:42:55
golang/go
f8eae7a3c33fcf9d31117b1a1a49a47b0343f811
098426447182a216991923d5bf95cdd3ae836e2c
os/user: fix tests to pass on non-english Windows Tests on Windows are dependent on the english names of system accounts and groups. But on a french install of Windows the system accounts are: - AUTORITE NT\Système - AUTORITE NT\SERVICE LOCAL - AUTORITE NT\SERVICE RÉSEAU To allow the tests to pass on non-english Win...
[ { "path": "src/os/user/user_windows_test.go", "patch": "@@ -18,6 +18,7 @@ import (\n \t\"slices\"\n \t\"strconv\"\n \t\"strings\"\n+\t\"sync\"\n \t\"syscall\"\n \t\"testing\"\n \t\"unicode\"\n@@ -261,9 +262,21 @@ func TestGroupIdsTestUser(t *testing.T) {\n \t}\n }\n \n+var isSystemDefaultLCIDEnglish = sync....
2025-07-18T10:36:00
tensorflow/tensorflow
a3ce88c9316dbfe69d242de2e956d7a59fa013f6
5f62e5acb31fda7ee25d7d16c9ed71899a8b4457
[XLA:GPU] respect only fail_ptx_compilation_on_register_spilling in ptx backend Instead of relying on is_autotuning_compilation boolean it's now up to backend runner to properly set --fail_ptx_compilation_on_register_spilling based on --xla_gpu_filter_kernels_spilling_registers_on_autotuning. Note the change in Autot...
[ { "path": "third_party/xla/xla/backends/gpu/autotuner/gpu_codegen_backend.h", "patch": "@@ -86,11 +86,11 @@ class GpuCodegenBackend : public CodegenBackend {\n }\n \n bool CanProduceWrongResults() const override { return false; }\n+ // When called, the backend will not set\n+ // `xla_gpu_fail_ptx_comp...
2025-11-27T07:43:10
denoland/deno
147b067db52b57cfc9acde71994112e7d3108ac3
56ce3352d2281bacf1339b21eaeb89f225149893
fix(ext/os): silently ignore invalid utf-8 characters in os vars (#29571)
[ { "path": "ext/os/lib.rs", "patch": "@@ -183,7 +183,17 @@ fn op_env(\n state: &mut OpState,\n ) -> Result<HashMap<String, String>, PermissionCheckError> {\n state.borrow_mut::<PermissionsContainer>().check_env_all()?;\n- Ok(env::vars().collect())\n+\n+ Ok(\n+ env::vars_os()\n+ .filter_map(|(ke...
2025-06-10T21:52:38
mrdoob/three.js
a03a74a1bec9bf6302f6b8b95c37a41ff6a6571e
fa5b00945343c2a294403c1ece92076d7893fb7c
DataUtils: Add `toRGB9E5()` and `fromRGB9E5()`. (#28012) * DataUtils: Add `toRGB9E5()` and `fromRGB9E5()`. * DataUtils: Fix defines.
[ { "path": "docs/api/en/extras/DataUtils.html", "patch": "@@ -29,6 +29,25 @@ <h3>[method:Number fromHalfFloat]( [param:Number val] )</h3>\n \t\t\tprecision floating point value.\n \t\t</p>\n \n+\n+\t\t<h3>[method:Uint32Array toRGB9E5]( [param:Number r], [param:Number g], [param:Number b], [param:Uint32Array ...
2024-03-28T09:47:12
swiftlang/swift
eedab7031a1810894aa5953e5de38574a52d152e
e6669db10a989220c2eb3aec4f7c966e5dba2d1d
[DEBUGINFO] Tests the same things across architectures
[ { "path": "test/DebugInfo/LoadableByAddress.swift", "patch": "@@ -1,6 +1,5 @@\n // RUN: %target-swift-frontend %s -module-name A -emit-ir -g -o - | %FileCheck %s\n \n-// REQUIRES: CPU=x86_64\n public struct Continuation<A> {\n private let magicToken = \"Hello World\"\n fileprivate let f: (() -> A)?", ...
2026-01-14T18:00:06
kubernetes/kubernetes
5e0d06082d6e8e431f32960a77bcf1fd49e6bd2c
a0e500ace39ec06de58279a3ca877899d5512709
DRA allocator: partial support transition between nodes, fix "is incomplete" The main reason for the change is to fix the detection of incomplete pools. On contrast to the previous attempt to fix this, now additional work only gets done when the current pool is not already known to be complete. In other words, most o...
[ { "path": "staging/src/k8s.io/dynamic-resource-allocation/structured/internal/allocatortesting/allocator_testing.go", "patch": "@@ -5240,6 +5240,267 @@ func TestAllocator(t *testing.T,\n \t\t\t\t),\n \t\t\t},\n \t\t},\n+\n+\t\t\"allocation-mode-all-with-multi-host-resource-pool\": {\n+\t\t\tclaimsToAllocate...
2025-11-03T07:21:10
golang/go
cd3655a8243b5f52b6a274a0aba5e01d998906c0
d5dc36af455ebd3e613780136766fba0cef7b0c4
internal/runtime/maps: fix spelling errors in comments Change-Id: I289d26f75bb556b46699159f06ce7eb03d34656d GitHub-Last-Rev: 10ce76df1d4951e021d460808c9d477cfbcf7c5c GitHub-Pull-Request: golang/go#74733 Reviewed-on: https://go-review.googlesource.com/c/go/+/690095 Reviewed-by: Keith Randall <khr@google.com> LUCI-TryBo...
[ { "path": "src/internal/runtime/maps/group.go", "patch": "@@ -39,7 +39,7 @@ const (\n // On other architectures, bitset uses one byte per slot, where each byte is\n // either 0x80 if the slot is part of the set or 0x00 otherwise. This makes it\n // convenient to calculate for an entire group at once using s...
2025-07-24T02:36:26
tensorflow/tensorflow
27a94f628b0d4c57a841fda3f89e06c10941fe21
ad91213fbf5c4c4e28d059de6aad585762f14efc
[XLA] Add gutil dependency We're going to replace TF_-prefixed asserts with nonprefixed ones provided by the library. PiperOrigin-RevId: 837270135
[ { "path": "third_party/xla/MODULE.bazel", "patch": "@@ -12,6 +12,7 @@ bazel_dep(name = \"curl\", version = \"8.11.0\")\n bazel_dep(name = \"google_benchmark\", version = \"1.8.5\", repo_name = \"com_google_benchmark\")\n bazel_dep(name = \"googletest\", version = \"1.17.0\", repo_name = \"com_google_googlet...
2025-11-26T23:05:55
mrdoob/three.js
fa5b00945343c2a294403c1ece92076d7893fb7c
156cb35aa2b9bd75a638ba9aa188bf937ce4f278
Examples: Fix webgpu_multiple_rendertargets warning (#28015)
[ { "path": "examples/webgpu_multiple_rendertargets.html", "patch": "@@ -49,7 +49,6 @@\n \t\t\tconst gui = new GUI();\n \t\t\tgui.add( parameters, 'samples', 0, 4 ).step( 1 );\n \t\t\tgui.add( parameters, 'wireframe' );\n-\t\t\tgui.onChange( render );\n \n \t\t\t*/\n \n@@ -142,7 +141,7 @@\n \n \t\t\t\tconst l...
2024-03-28T00:22:03
swiftlang/swift
31f7cc99fdefcd592383b2caa37041c56ec5dc4f
e33029b0055e9548f91adbb217a534d530e8295b
[test] Fix noncopyable-irgen.swift failure on Android (#86692) Android uses libc++, just like Darwin, so it has the same error message for the constructor, not the one linux has with libstdc++, so check the specific OS also. Otherwise, we see this error on the Android CI: ``` 15:49:14 // expected-TEST7-LINUX-err...
[ { "path": "test/Interop/Cxx/class/noncopyable-irgen.swift", "patch": "@@ -6,7 +6,7 @@\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-22T07:16:07
denoland/deno
56ce3352d2281bacf1339b21eaeb89f225149893
4438f8762f23dd83b9d9feb458d0f58d4051dc7d
fix(unstable): rename "patch" property to "links" (#29677) This is to help make this feature less ambiguous with `npm patch`, which it's not like. Note: the "patch" property will continue to work for the time being, but the lockfile will have a bit of churn for this unstable property. We're going to merge this in a p...
[ { "path": "Cargo.lock", "patch": "@@ -892,7 +892,7 @@ dependencies = [\n \"chrono\",\n \"deno_bench_util\",\n \"deno_cache_dir\",\n- \"deno_lockfile\",\n+ \"deno_lockfile 0.30.0\",\n \"deno_semver\",\n \"deno_terminal 0.2.2\",\n \"deno_tower_lsp\",\n@@ -1469,9 +1469,9 @@ dependencies = [\n \"deno_gra...
2025-06-10T21:51:23
golang/go
64ba72474d9a637fc8152c3bbd8cdec3ffde2940
e151db3e065eea8a13fd2bc83aafb6959edd6fca
errors: omit redundant nil check in type assertion for Join When ok is true, err can't be nil. Make it behave more like the Unwrap function. Change-Id: Ieba5de57d60f5ff4d6a3468d703e6f72be02a97d GitHub-Last-Rev: 6df9365a1d586bba64df57be11f9ca7b772cc773 GitHub-Pull-Request: golang/go#74764 Reviewed-on: https://go-revi...
[ { "path": "src/errors/join.go", "patch": "@@ -28,12 +28,10 @@ func Join(errs ...error) error {\n \t}\n \tif n == 1 {\n \t\tfor _, err := range errs {\n-\t\t\tif err != nil {\n-\t\t\t\tif _, ok := err.(interface {\n-\t\t\t\t\tUnwrap() []error\n-\t\t\t\t}); ok {\n-\t\t\t\t\treturn err\n-\t\t\t\t}\n+\t\t\tif _...
2025-07-26T02:49:42
kubernetes/kubernetes
a0e500ace39ec06de58279a3ca877899d5512709
afb2b97425317948e9e59b2a7871fca5bbb2ab08
Revert "DRA: Allow AllocationMode: All from multi-node resource pools" This reverts commit 2e534d6da100ef20a048ed44f9ec9997f64676a7. It caused a performance regression, a different fix is needed.
[ { "path": "staging/src/k8s.io/dynamic-resource-allocation/structured/internal/allocatortesting/allocator_testing.go", "patch": "@@ -5240,40 +5240,6 @@ func TestAllocator(t *testing.T,\n \t\t\t\t),\n \t\t\t},\n \t\t},\n-\t\t\"allocation-mode-all-with-multi-host-resource-pool\": {\n-\t\t\tclaimsToAllocate: ob...
2025-11-03T12:10:43
tensorflow/tensorflow
2b46af2e337b9b3a92f1541bed49baff76e1cba6
691416446e6db6d9d3f6f925aa4f311e6efc5784
Fix types and comments in replica groups V2. PiperOrigin-RevId: 837229986
[ { "path": "third_party/xla/xla/service/spmd/spmd_partitioner_util.cc", "patch": "@@ -2950,8 +2950,9 @@ std::optional<IotaReplicaGroupList> GetIotaPartitionGroupsAcrossTargetDims(\n // We perform the following steps on the original tile assignment:\n // 1. Expand target dims: [8,8,16]->[2,4,2,4,16]\n /...
2025-11-26T21:02:35
mrdoob/three.js
66f7aa81379d0d3b31b7e58c9ecc42e08a16d724
5eea9d79e40c202970971f0515a6fa54c565109a
Node: Rename `.setReference()` -> `.updateReference()` and use reference in `renderMap`/`frameMap` (#28010) * NodeFrame: Use reference in renderMap/frameMap * Node: Rename `.setReference()` -> `.updateReference()` * ViewportSharedTextureNode: Fix reference
[ { "path": "examples/jsm/nodes/accessors/MaterialReferenceNode.js", "patch": "@@ -24,7 +24,7 @@ class MaterialReferenceNode extends ReferenceNode {\n \n \t}*/\n \n-\tsetReference( state ) {\n+\tupdateReference( state ) {\n \n \t\tthis.reference = this.material !== null ? this.material : state.material;\n ", ...
2024-03-27T07:19:07
golang/go
10c5cf68d40e2b26336e4b4e59d4c2f3fc3f03b9
46b5839231381e8b36eab10ba9b2c37ba579a75d
net/http: add proper panic message Change-Id: Ibfb330eaf24e004ddec60a5ca08cdc780235ad8c Reviewed-on: https://go-review.googlesource.com/c/go/+/688315 Reviewed-by: Damien Neil <dneil@google.com> Auto-Submit: Damien Neil <dneil@google.com> Reviewed-by: Mark Freeman <mark@golang.org> LUCI-TryBot-Result: Go LUCI <golang-s...
[ { "path": "src/net/http/server.go", "patch": "@@ -1614,7 +1614,7 @@ func writeStatusLine(bw *bufio.Writer, is11 bool, code int, scratch []byte) {\n // It's illegal to call this before the header has been flushed.\n func (w *response) bodyAllowed() bool {\n \tif !w.wroteHeader {\n-\t\tpanic(\"\")\n+\t\tpanic...
2025-07-16T08:12:54
denoland/deno
4438f8762f23dd83b9d9feb458d0f58d4051dc7d
1f579ba89ed929d8b60acf9c48dcb529da97438b
fix(bundle): rework how patterns for externals are handled (#29680) Now aligns with esbuild's behavior
[ { "path": "cli/tools/bundle/esbuild.rs", "patch": "@@ -61,8 +61,15 @@ pub async fn ensure_esbuild(\n let nv =\n PackageNv::from_str(&format!(\"{}@{}\", pkg_name, ESBUILD_VERSION)).unwrap();\n let api = npm_registry_info.as_npm_registry_api();\n- let info = api.package_info(&pkg_name).await?;\n- le...
2025-06-10T16:58:55
swiftlang/swift
e1b1abafcf0ca98cfc54bf7025dafa8acbcb2b27
56f11c1dbd4ab2bff76c1652cc8d291f04cbd4bb
End-to-end test of yielding accessors via protocols Two simple tests that access yielding accessors through a protocol. (And a fix for the bug they revealed.)
[ { "path": "lib/Parse/ParseDecl.cpp", "patch": "@@ -7984,6 +7984,7 @@ static bool isAllowedWhenParsingLimitedSyntax(AccessorKind kind, bool forSIL) {\n case AccessorKind::DistributedGet:\n case AccessorKind::Set:\n case AccessorKind::YieldingBorrow:\n+ case AccessorKind::YieldingMutate:\n return t...
2026-01-21T18:56:24
tensorflow/tensorflow
2570e65f25cd5aa93959030e011313a3f573718b
d39e0ed48e324e4bb7c52a5440a2e82e2a838cde
[XLA] Update build_bazel_apple_support to 1.24.5 This matches the change in TensorFlow https://github.com/tensorflow/tensorflow/pull/104948 Fixes https://github.com/jax-ml/jax/issues/33112 PiperOrigin-RevId: 837196882
[ { "path": "third_party/xla/workspace2.bzl", "patch": "@@ -583,8 +583,8 @@ def _tf_repositories():\n # https://github.com/bazelbuild/apple_support/releases\n tf_http_archive(\n name = \"build_bazel_apple_support\",\n- sha256 = \"d71b02d6df0500f43279e22400db6680024c1c439115c57a9a82e9eff...
2025-11-26T19:24:59