repo stringclasses 15
values | fix_commit stringlengths 40 40 | buggy_commit stringlengths 40 40 | message stringlengths 3 64.3k | files listlengths 1 300 | timestamp timestamp[s]date 2013-03-13 20:45:00 2026-04-11 07:48:46 |
|---|---|---|---|---|---|
golang/go | 46b5839231381e8b36eab10ba9b2c37ba579a75d | 98f301cf687b7a3aaab62c9d28999136117f9589 | test/codegen: fix failing condmove wasm tests
These recently added tests failed when using the -all_codgen flag.
Fixes #74770
Change-Id: Idea1ea02af2bd9f45c7d0a28d633c7442328e6df
Reviewed-on: https://go-review.googlesource.com/c/go/+/690715
Reviewed-by: Jorropo <jorropo.pgm@gmail.com>
Run-TryBot: Michael Munday <mik... | [
{
"path": "test/codegen/condmove.go",
"patch": "@@ -459,7 +459,7 @@ func cmovmathadd(a uint, b bool) uint {\n \t// amd64:\"ADDQ\", -\"CMOV\"\n \t// arm64:\"CSINC\", -\"CSEL\"\n \t// ppc64x:\"ADD\", -\"ISEL\"\n-\t// wasm:\"Add\", \"-Select\"\n+\t// wasm:\"I64Add\", -\"Select\"\n \treturn a\n }\n \n@@ -470,7 ... | 2025-07-26T23:17:49 |
denoland/deno | 1f579ba89ed929d8b60acf9c48dcb529da97438b | cb810ab664f0eb5a0892d9ea6cbaa7084a5c8ab1 | fix(bundle): pass requested module type to load (#29683)
Fixes #29663. | [
{
"path": "cli/tools/bundle/mod.rs",
"patch": "@@ -12,6 +12,7 @@ use deno_core::error::AnyError;\n use deno_core::resolve_url_or_path;\n use deno_core::url::Url;\n use deno_core::ModuleLoader;\n+use deno_core::RequestedModuleType;\n use deno_error::JsError;\n use deno_graph::Position;\n use deno_lib::worker... | 2025-06-10T15:44:32 |
swiftlang/swift | 5dbc8c25f91713db159eac8984f561b1409d014a | 12348bc86f11893059cedac9594a7c13c630fdb2 | [cxx-interop] Support ownership annotations on FRT constructors
We were previously marking synthesized FRT initializers as
"returns_retained" unconditionally (for non-immortal types), which can
cause memory errors and also suppresses diagnostics about the lack of
such annotations.
This patch fixes that behavior, and ... | [
{
"path": "include/swift/ClangImporter/ClangImporter.h",
"patch": "@@ -733,7 +733,6 @@ struct ReturnOwnershipInfo {\n return hasReturnsRetained && hasReturnsUnretained;\n }\n \n-private:\n bool hasReturnsRetained = false;\n bool hasReturnsUnretained = false;\n };",
"additions": 0,
"deletio... | 2026-01-21T02:58:23 |
kubernetes/kubernetes | 3156c2a2efb8a16dd1c9704b995ba7568ed7b604 | 5e2ad84f6701a89fb9598fbcef46738f09fac386 | pluginmanager: fix handling registration failures
Updated the pluginmanager to handle registration failures better
by removing the plugin from the actual state of the world and
deregistering when registration or notification fails.
Added a new e2e test to verify that the kubelet plugin manager retries
plugin registrat... | [
{
"path": "pkg/kubelet/pluginmanager/operationexecutor/operation_generator.go",
"patch": "@@ -130,11 +130,14 @@ func (og *operationGenerator) GenerateRegisterPluginFunc(\n \t\t\tlogger.Error(err, \"RegisterPlugin error -- failed to add plugin\", \"path\", socketPath)\n \t\t}\n \t\tif err := handler.Register... | 2025-07-31T10:27:35 |
golang/go | e81eac19d30f373496cd1d08ce2f89c0469a21fd | 6fbad4be75e7746512bbe55794694ed788ea5c5b | hash/crc32: fix incorrect checksums with avx512+race
CRC value loaded from incorrect register, which happened
to line up with actual register on default compile.
Therefore failures would only show up with -race.
Add regression test with longer payloads.
Fix regression from CL 689435.
Fixes #74767.
Change-Id: Ib63d... | [
{
"path": "src/hash/crc32/crc32_amd64.s",
"patch": "@@ -173,11 +173,11 @@ TEXT ·ieeeCLMUL(SB),NOSPLIT,$0\n \tCMPQ CX, $1024\n \tJL useSSE42\n \n-\t// Use AVX512\n-\tVPXORQ Z0, Z0, Z0\n-\tVMOVQ AX, X0\n+\t// Use AVX512. Zero upper and Z10 and load initial CRC into lower part of Z10.\n+\tVPXORQ Z1... | 2025-07-28T15:26:52 |
tensorflow/tensorflow | 9358e89d92c212c2e8291d34433b46987295c9f7 | d1d2d9890a4a65e9f4a2f1b626bfcae545d33418 | [XLA] Fix zstd.patch
PiperOrigin-RevId: 837148226 | [
{
"path": "third_party/xla/third_party/llvm/zstd.patch",
"patch": "@@ -9,7 +9,7 @@ index 37e79db376b4..058788948f94 100644\n - # We unconditionally depend on the custom LLVM zlib wrapper. This will\n - # be an empty library unless zlib is enabled, in which case it will\n - # both provid... | 2025-11-26T17:03:04 |
swiftlang/swift | 867bd732b2c54046cfa88c7edc19db652aaf9eae | 001885c02d1a511700f6fb65eda752b3c80eb729 | Fix swift tests for Windows ARM64 (#86558) | [
{
"path": "test/ClangImporter/availability_returns_twice-msvc-aarch64.swift",
"patch": "@@ -12,6 +12,6 @@ func test_unavailable_returns_twice_function() {\n // CHECK: availability_returns_twice-msvc-aarch64.swift:{{[0-9]+}}:{{[0-9]+}}: error: unexpected error produced: cannot find type '_JBTYPE' in scope\n ... | 2026-01-22T00:08:58 |
kubernetes/kubernetes | 36510ccf56ff0b9e9b4065a8aa3c4ace22679356 | 5e2ad84f6701a89fb9598fbcef46738f09fac386 | devicemanager: fix cleanup of healthy and unhealthy devices
Correctly removed the resource from both healthy and unhealthy device
maps when resource endpoint expires.
This makes resource endpoint and devices maps consistent. | [
{
"path": "pkg/kubelet/cm/devicemanager/manager.go",
"patch": "@@ -445,7 +445,6 @@ func (m *ManagerImpl) GetCapacity() (v1.ResourceList, v1.ResourceList, []string)\n \t// Use logger.TODO() because we currently do not have a proper logger to pass in.\n \t// Replace this with an appropriate logger when refact... | 2025-08-26T17:38:12 |
denoland/deno | cb810ab664f0eb5a0892d9ea6cbaa7084a5c8ab1 | 9730b97dfbdd3dff1e0b7f333dc5734e42a05a9e | fix(fmt): allow omission of semicolon in certain cases in css template (#29687) | [
{
"path": "Cargo.lock",
"patch": "@@ -6560,7 +6560,7 @@ source = \"registry+https://github.com/rust-lang/crates.io-index\"\n checksum = \"0c1318b19085f08681016926435853bbf7858f9c082d0999b80550ff5d9abe15\"\n dependencies = [\n \"bytes\",\n- \"heck 0.5.0\",\n+ \"heck 0.4.1\",\n \"itertools 0.13.0\",\n \"lo... | 2025-06-10T14:19:40 |
golang/go | 6fbad4be75e7746512bbe55794694ed788ea5c5b | 5045fdd8ff8769c34e837fbfb0894a72dfa73b4d | cmd/compile: remove no-longer-necessary call to calculateDepths
We now calculate depths by default, no need to ask.
All calls were removed in CL 680775 when that CL was written, but an
additional call appeared between then and submitting the CL. Oops.
Another case for which a presubmit check would help.
Fixes #74762... | [
{
"path": "src/cmd/compile/internal/ssa/likelyadjust.go",
"patch": "@@ -15,7 +15,7 @@ type loop struct {\n \t// Next three fields used by regalloc and/or\n \t// aid in computation of inner-ness and list of blocks.\n \tnBlocks int32 // Number of blocks in this loop but not within inner loops\n-\tdepth int1... | 2025-07-25T21:15:50 |
tensorflow/tensorflow | 6185a6b9ab9f84b95a9a94e55d6d16afa433b91a | 689b02eb0a4966f894bf637674ea7b8f0fce2084 | [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-26T16:10:51 |
mrdoob/three.js | 99259ffd7e5798533101b8c67293c620c9437d24 | 2309d42e7d0f2dea9b5903adac378c4764d547e5 | WebGPURenderer: Fix 16-bit normalized attributes (#28009)
* fix 16-bit normalized attributes
* cleanup | [
{
"path": "examples/jsm/renderers/webgpu/utils/WebGPUAttributeUtils.js",
"patch": "@@ -47,7 +47,7 @@ class WebGPUAttributeUtils {\n \t\t\tlet array = bufferAttribute.array;\n \n \t\t\t// patch for INT16 and UINT16\n-\t\t\tif ( array.constructor === Int16Array || array.constructor === Uint16Array ) {\n+\t\t\... | 2024-03-27T05:40:55 |
denoland/deno | baa52bf323834c09e550eaff89c8d305b7b46566 | e8dc88790e38d03ed517948fc7779fb5ea057f63 | fix(test): handle snippet containing `Deno.test` in doc test (#29631) | [
{
"path": "cli/util/extract.rs",
"patch": "@@ -48,6 +48,11 @@ enum WrapKind {\n NoWrap,\n }\n \n+struct TestOrSnippet {\n+ file: File,\n+ has_deno_test: bool,\n+}\n+\n fn extract_inner(\n file: File,\n wrap_kind: WrapKind,\n@@ -86,8 +91,13 @@ fn extract_inner(\n \n extracted_files\n .into_iter... | 2025-06-10T05:40:59 |
swiftlang/swift | a8b1dd713660237f3ef47cb0a822ca3bd0c217b5 | 2a653338c60052af23cf4eeee162bfaa8e70fa02 | DependencyScan: avoid re-tokenising the command line in the scanner
We would concatenate and re-tokenise the command line even though we
receive the command line pre-tokenised. This behaviour was introduced in
cfde1fb693bb71f107ec09dfe92bb87ca15e990a in order to deal with paths
which may be escaped. Rather than joinin... | [
{
"path": "lib/DependencyScan/DependencyScanningTool.cpp",
"patch": "@@ -26,6 +26,40 @@\n \n #include <sstream>\n \n+namespace {\n+llvm::ErrorOr<swift::CompilerInvocation>\n+ConstructInvocation(llvm::ArrayRef<const char *> CommandArgs,\n+ llvm::StringRef executable, llvm::StringRef pwd,\n... | 2026-01-13T00:07:16 |
golang/go | 5045fdd8ff8769c34e837fbfb0894a72dfa73b4d | d28b27cd8e612f3e3e6ffcfb7444a4e8829dbb48 | cmd/compile: fix containsUnavoidableCall computation
The previous algorithm was incorrect, as it reused the dominatedByCall
slice without resetting it. It also used the depth fields even though
they were not yet calculated.
Also, clean up a lot of the loop detector code that we never use.
Always compute depths. It i... | [
{
"path": "src/cmd/compile/internal/ssa/likelyadjust.go",
"patch": "@@ -12,18 +12,15 @@ type loop struct {\n \theader *Block // The header node of this (reducible) loop\n \touter *loop // loop containing this loop\n \n-\t// By default, children, exits, and depth are not initialized.\n-\tchildren []*loop ... | 2025-06-10T21:37:47 |
tensorflow/tensorflow | 689b02eb0a4966f894bf637674ea7b8f0fce2084 | 9e662ca5a1faa78d0aeaeb08c16c8f690de57cb6 | Fix protobuf dependencies in OSS
Since the builtin proto targets that come with the protobuf package are now supported in OSS, we can get rid of the `if_google` guards.
Also we will need these explicit dependencies in OSS for the layering check.
PiperOrigin-RevId: 837119260 | [
{
"path": "third_party/xla/xla/service/gpu/transforms/BUILD",
"patch": "@@ -6,7 +6,7 @@ load(\n \"if_gpu_is_configured\",\n )\n load(\"//xla/tests:build_defs.bzl\", \"xla_test\")\n-load(\"//xla/tsl:tsl.bzl\", \"if_google\", \"if_oss\")\n+load(\"//xla/tsl:tsl.bzl\", \"if_oss\")\n load(\n \"//xla/tsl/... | 2025-11-26T15:50:55 |
mrdoob/three.js | 2309d42e7d0f2dea9b5903adac378c4764d547e5 | ca14c9eb194848bc277a5592956be57c14641877 | WebGPURenderer: Add (u)int16 Support (#28008)
* add int16 support
* fix examples
* fix | [
{
"path": "examples/jsm/nodes/accessors/BatchNode.js",
"patch": "@@ -4,8 +4,7 @@ import { positionLocal } from './PositionNode.js';\n import { nodeProxy, vec3, mat3, mat4, int, ivec2, float } from '../shadernode/ShaderNode.js';\n import { textureLoad } from './TextureNode.js';\n import { textureSize } from ... | 2024-03-27T02:52:11 |
denoland/deno | e8dc88790e38d03ed517948fc7779fb5ea057f63 | 9494ba317c790e11eeed80568fced9cc90e36a2f | fix(ext/node): fix inspect of CustomEvent of Node.js (#29668) | [
{
"path": "ext/node/polyfills/internal/event_target.mjs",
"patch": "@@ -4,6 +4,13 @@\n // TODO(petamoriken): enable prefer-primordials for node polyfills\n // deno-lint-ignore-file prefer-primordials\n \n+import { primordials } from \"ext:core/mod.js\";\n+const {\n+ NumberIsInteger,\n+ ObjectAssign,\n+ S... | 2025-06-10T03:57:19 |
golang/go | d28b27cd8e612f3e3e6ffcfb7444a4e8829dbb48 | 7b53d8d06ec432b1434b675b96a11526de6e6abe | go/types, types2: use nil to represent incomplete explicit aliases
Using Invalid to represent an incomplete alias is problematic since
it implies that an error has been reported somewhere. This causes
confusion for observers of invalid aliases trying not to emit
follow-on errors.
This change uses nil instead to repre... | [
{
"path": "src/cmd/compile/internal/types2/alias.go",
"patch": "@@ -6,7 +6,6 @@ package types2\n \n import (\n \t\"cmd/compile/internal/syntax\"\n-\t\"fmt\"\n )\n \n // An Alias represents an alias type.\n@@ -50,7 +49,7 @@ type Alias struct {\n }\n \n // NewAlias creates a new Alias type with the given type... | 2025-06-24T21:16:24 |
mrdoob/three.js | d4101cb34c1f28af6d45c3b24ca10d665e6f4f03 | 6f7541e2c6e872111f0041136f46f45cb1ea3620 | Fix split node not working, dynamically change output length of join node (#27998) | [
{
"path": "playground/editors/JoinEditor.js",
"patch": "@@ -40,6 +40,8 @@ export class JoinEditor extends BaseNodeEditor {\n \n \t\t\tthis.invalidate();\n \n+\t\t\tthis.title.setOutput( length );\n+\n \t\t};\n \n \t\tconst xElement = setInputAestheticsFromType( new LabelElement( 'x | r' ), 'Number' ).onConn... | 2024-03-26T11:45:54 |
tensorflow/tensorflow | 9e662ca5a1faa78d0aeaeb08c16c8f690de57cb6 | 9b0e9e9f97c5c0ed4cea1276a3d00cfa904baaee | [xla:ffi] Add execution stage to all error messages when checking FFI signature
PiperOrigin-RevId: 837117056 | [
{
"path": "third_party/xla/xla/ffi/api/api.h",
"patch": "@@ -1690,23 +1690,26 @@ class Handler : public Ffi {\n if (XLA_FFI_PREDICT_FALSE(call_frame->args.size < kNumArgs)) {\n return InvalidArgument(\n call_frame->api,\n- StrCat(\"Wrong number of arguments: expected at ... | 2025-11-26T15:43:16 |
denoland/deno | 9494ba317c790e11eeed80568fced9cc90e36a2f | cb9245c69a8f11c8a90d488fae1325b49b82ea5f | fix(ext/node): support 2nd arg of `EventEmitter.prototype.listenerCount` (#29664) | [
{
"path": "ext/node/polyfills/_events.mjs",
"patch": "@@ -739,17 +739,36 @@ EventEmitter.prototype.rawListeners = function rawListeners(type) {\n * Returns the number of listeners listening to event name\n * specified as `type`.\n * @param {string | symbol} type\n+ * @param {Function} listener\n * @retu... | 2025-06-10T02:03:41 |
golang/go | 7b53d8d06ec432b1434b675b96a11526de6e6abe | 374e3be2eb9b546ef1340f750e343c15a8f87dde | cmd/compile/internal/types2: add loaded state between loader calls and constraint expansion
There is a deadlock issue when calling SetConstraint from a lazy loader
because the loader is called from resolve(), which is holding a lock on
the loaded type.
If the loaded type has a generic constraint which refers back to ... | [
{
"path": "src/cmd/compile/internal/importer/gcimporter_test.go",
"patch": "@@ -673,3 +673,50 @@ type S struct {\n \t}\n \twg.Wait()\n }\n+\n+func TestIssue63285(t *testing.T) {\n+\ttestenv.MustHaveGoBuild(t)\n+\n+\t// This package only handles gc export data.\n+\tif runtime.Compiler != \"gc\" {\n+\t\tt.Ski... | 2025-06-13T15:47:57 |
kubernetes/kubernetes | 12a0c8ce17f8031cba43860ca3b5338d931598ac | d8c66ffb63c220435241fb27604307263b50d091 | DRA extended resource: chain event handlers
The cache and scheduler event handlers cannot be registered separately in the
informer, that leads to a race (scheduler might schedule based on event before
cache is updated). Chaining event handlers (cache first, then scheduler) avoids
this.
This also ensures that the cach... | [
{
"path": "pkg/scheduler/eventhandlers.go",
"patch": "@@ -33,6 +33,7 @@ import (\n \t\"k8s.io/client-go/tools/cache\"\n \tcorev1helpers \"k8s.io/component-helpers/scheduling/corev1\"\n \tcorev1nodeaffinity \"k8s.io/component-helpers/scheduling/corev1/nodeaffinity\"\n+\t\"k8s.io/dynamic-resource-allocation/d... | 2025-10-31T09:29:11 |
mrdoob/three.js | 85196a9ce67a5ddd3f45d7be7927b5d78140a0d2 | f7911ef5bc2e94d4b8d24fd9d0c80d5644304880 | fix typo error (#28005) | [
{
"path": "src/objects/BatchedMesh.js",
"patch": "@@ -222,7 +222,7 @@ class BatchedMesh extends Mesh {\n \n \t}\n \n-\t// Make sure the geometry is compatible with the existing combined geometry atributes\n+\t// Make sure the geometry is compatible with the existing combined geometry attributes\n \t_validat... | 2024-03-26T09:05:01 |
tensorflow/tensorflow | c2d4e93a55c7ed489903c3c58c654aef0694e945 | 3a4a157d5b0fad310458438b29a52f4b689f4244 | [XLA:GPU] Fix lowering of triton atomic passes.
- Registers need to be scoped in inline PTX to prevent naming clashes.
- Cross GPU block barrier needs a single GPU block barrier (__syncthreads) to
prevent races.
PiperOrigin-RevId: 837066209 | [
{
"path": "third_party/xla/xla/backends/gpu/codegen/triton/ir/triton_xla_dialect.td",
"patch": "@@ -28,6 +28,10 @@ def XlaTritonDialect : Dialect {\n \n let cppNamespace = \"::mlir::triton::xla\";\n let useDefaultAttributePrinterParser = 1;\n+ let dependentDialects = [\n+ \"mlir::triton::TritonDiale... | 2025-11-26T12:42:24 |
denoland/deno | ccc30edcb5bb40e574d5c3631a16dd1e3697247e | d5f0dd7ca29a89049b83ea9fc5037cc03d00f56c | fix(ext/node): make conditional exports work in `require()` (#29640)
This commit fixes passing conditional exports specified with
`--unstable-node-conditions` flag to `require()` calls.
Fixes scenario from
https://github.com/denoland/deno/issues/23757#issuecomment-2949344042
---------
Co-authored-by: Nayeem Rahman ... | [
{
"path": "ext/node/ops/require.rs",
"patch": "@@ -26,7 +26,6 @@ use node_resolver::NpmPackageFolderResolver;\n use node_resolver::ResolutionMode;\n use node_resolver::UrlOrPath;\n use node_resolver::UrlOrPathRef;\n-use node_resolver::REQUIRE_CONDITIONS;\n use sys_traits::FsCanonicalize;\n use sys_traits::F... | 2025-06-10T00:09:46 |
golang/go | 374e3be2eb9b546ef1340f750e343c15a8f87dde | 1aa154621d414c0d9886e581ae058187f5277e60 | os/user: user random name for the test user account
TestImpersonated and TestGroupIdsTestUser are flaky due to sporadic
failures when creating the test user account when running the tests
from different processes at the same time.
This flakiness can be fixed by using a random name for the test user
account.
Fixes #7... | [
{
"path": "src/os/user/user_windows_test.go",
"patch": "@@ -7,6 +7,7 @@ package user\n import (\n \t\"crypto/rand\"\n \t\"encoding/base64\"\n+\t\"encoding/binary\"\n \t\"errors\"\n \t\"fmt\"\n \t\"internal/syscall/windows\"\n@@ -16,11 +17,92 @@ import (\n \t\"runtime\"\n \t\"slices\"\n \t\"strconv\"\n+\t\"s... | 2025-07-24T13:38:35 |
mrdoob/three.js | a94c577d8bebac8d4f40c110484936a64cb00b85 | bb81642ef35a6bac6a4ddcd92deffd8fe67030ce | Examples: Fix webgpu_storage_buffer (#27994)
* fix webgpu_storage_buffer example
* more cleanup | [
{
"path": "examples/webgpu_storage_buffer.html",
"patch": "@@ -68,7 +68,7 @@\n \t\t\t// WebGL Backend\n \t\t\tinit( true );\n \n-\t\t\tfunction init( forceWebGL = false ) {\n+\t\t\tasync function init( forceWebGL = false ) {\n \n \t\t\t\tconst aspect = ( window.innerWidth / 2 ) / window.innerHeight;\n \t\t\... | 2024-03-25T12:27:31 |
kubernetes/kubernetes | 34021d451d351259d3c51ffcdd31e5f28898fb8f | afb2b97425317948e9e59b2a7871fca5bbb2ab08 | Revert "E2E framework: start slow tests first"
This reverts commit cff07e75519cbf09e3499976adb1d90b2f890db7.
The commit caused several kubeadm jobs to fail while executing all conformance
tests (including slow ones) in parallel. Sometimes execution took longer and
ran into the overall timeout, sometimes there was:
... | [
{
"path": "test/e2e/framework/ginkgowrapper.go",
"patch": "@@ -221,14 +221,8 @@ func registerInSuite(ginkgoCall func(string, ...interface{}) bool, args []interf\n \t\t\t\t\tginkgoArgs = append(ginkgoArgs, ginkgo.Label(\"BetaOffByDefault\"))\n \t\t\t\t}\n \t\t\t}\n-\t\t\tswitch fullLabel {\n-\t\t\tcase \"Ser... | 2025-11-02T19:09:28 |
denoland/deno | d5f0dd7ca29a89049b83ea9fc5037cc03d00f56c | 64a95cb5fb26ad86f26f6923b17f1726cdd4bc02 | fix(install): bust packument cache on version not found when loading extra info from lockfile (#29679)
Co-authored-by: nathanwhit <nathanwhit@users.noreply.github.com> | [
{
"path": "resolvers/npm_cache/registry_info.rs",
"patch": "@@ -226,7 +226,7 @@ impl<THttpClient: NpmCacheHttpClient, TSys: NpmCacheSys>\n self: &Arc<Self>,\n name: &str,\n ) -> Result<Option<Arc<NpmPackageInfo>>, LoadPackageInfoInnerError> {\n- let (cache_item, clear_id) = {\n+ let (value_c... | 2025-06-09T23:22:12 |
mrdoob/three.js | bb81642ef35a6bac6a4ddcd92deffd8fe67030ce | b5d53e5dc4e9161643f0fdfb1b9db36e546be2d4 | Manual: Improve Chinese translation. (#27991)
* Manual: Fix shadows.html
* Manual: Improve Chinese translation. | [
{
"path": "manual/list.json",
"patch": "@@ -331,7 +331,7 @@\n \t\t\"优化\": {\n \t\t\t\"大量对象的优化\": \"zh/optimize-lots-of-objects\",\n \t\t\t\"优化对象的同时保持动画效果\": \"zh/optimize-lots-of-objects-animated\",\n-\t\t\t\"Using OffscreenCanvas in a Web Worker\": \"zh/offscreencanvas\"\n+\t\t\t\"在Web Worker中使用离屏渲染\": \"z... | 2024-03-25T09:36:01 |
tensorflow/tensorflow | a35f4c116ddf46a02d633e3346ada5d48ffe0a12 | 3ecc9762ae21bc1697a66ef98251f10b14c712a4 | PR #34372: [ROCm] Fix missing sys deps lib in hermetic builds
Imported from GitHub PR https://github.com/openxla/xla/pull/34372
📝 Summary of Changes
Fix buildbreak on hermetic build pipeline
🎯 Justification
rocm clang++ missing syslibs when building kernels.
Providing sys deps target to the toolchain files fixes t... | [
{
"path": "third_party/xla/third_party/gpus/rocm/BUILD.tpl",
"patch": "@@ -601,6 +601,9 @@ filegroup(\n \"%{rocm_root}/lib/llvm/**\",\n \"%{rocm_root}/share/hip/**\",\n \"%{rocm_root}/amdgcn/**\",\n+ \"%{rocm_root}/lib/rocm_sysdeps/lib/*.so*\",\n+ \"%{rocm_root}/lib/lib... | 2025-11-26T11:43:42 |
swiftlang/swift | 9d4ed921558043b8032983c82917f0d718719143 | 974e61d45ad1deea0e7d638d10fc1142e970dc49 | AST: Only check availability of explicitly exported decls
Extending type-checking to non-public decls triggered new errors when
`-target-min-inlining-version min` is enabled. Ensure these checks are only
applied to explicitly exported decls.
Affected test: test/Concurrency/deinit_isolation_availability.swift | [
{
"path": "lib/AST/AvailabilityScopeBuilder.cpp",
"patch": "@@ -479,7 +479,7 @@ class AvailabilityScopeBuilder : private ASTWalker {\n if (decl->isSPI())\n return true;\n \n- return isExported(decl) == ExportedLevel::None;\n+ return isExported(decl) != ExportedLevel::Exported;\n }\n \n /... | 2026-01-07T20:27:54 |
golang/go | aeb256e98ac479e2b590d79f6237174343934d10 | 08376e1a9c57d4b07a77d156810d3fec46caba79 | cmd/compile: remove unused arg from gorecover
We don't need this argument anymore to match up
a recover with its corresponding panic.
Change-Id: I5d3646cdd766259ee9d3d995a2f215f02e17abc6
Reviewed-on: https://go-review.googlesource.com/c/go/+/685555
Reviewed-by: Michael Knyszek <mknyszek@google.com>
LUCI-TryBot-Result... | [
{
"path": "src/cmd/compile/internal/escape/call.go",
"patch": "@@ -192,7 +192,7 @@ func (e *escape) call(ks []hole, call ir.Node) {\n \t\te.discard(call.X)\n \t\te.discard(call.Y)\n \n-\tcase ir.ODELETE, ir.OPRINT, ir.OPRINTLN, ir.ORECOVERFP:\n+\tcase ir.ODELETE, ir.OPRINT, ir.OPRINTLN, ir.ORECOVER:\n \t\tc... | 2025-07-02T17:00:42 |
kubernetes/kubernetes | 7c47b91ed2c493991ede62b3a941e03c05423f9c | afb2b97425317948e9e59b2a7871fca5bbb2ab08 | Limit CONNECT proxy response header size
As described in https://go.dev/issue/74633 a misbehaving proxy server
can cause memory exhaustion in the client. The fix in https://go.dev/cl/698915
only covers http.Transport users. Apply the same limit here.
Limit the size of the response headers the proxy server can send us... | [
{
"path": "staging/src/k8s.io/apiserver/pkg/server/egressselector/egress_selector.go",
"patch": "@@ -22,6 +22,7 @@ import (\n \t\"crypto/tls\"\n \t\"crypto/x509\"\n \t\"fmt\"\n+\t\"io\"\n \t\"net\"\n \t\"net/http\"\n \t\"net/url\"\n@@ -110,7 +111,14 @@ func lookupServiceName(name string) (EgressType, error)... | 2025-11-02T03:47:40 |
mrdoob/three.js | b5d53e5dc4e9161643f0fdfb1b9db36e546be2d4 | e0d2ddf07dafa6d8d29208f5fc0cf8ade9900ba6 | WebGPURenderer: Reuse Meshes in PMREMGenerator and pmremVersion logic (#27988)
* PMREMGenerator: Reuse Meshes
* TextureNode: Introduce `referenceNode`
* PMREMNode: Added pmremVersion logic
* update screenshot
* fix webgl backend
* cleanup example
* fix webgl pmrem node
* PMREMGenerator: Reuse Pers... | [
{
"path": "examples/jsm/nodes/pmrem/PMREMNode.js",
"patch": "@@ -4,7 +4,8 @@ import { texture } from '../accessors/TextureNode.js';\n import { textureCubeUV } from './PMREMUtils.js';\n import { uniform } from '../core/UniformNode.js';\n import { NodeUpdateType } from '../core/constants.js';\n-import { nodeP... | 2024-03-25T00:55:39 |
denoland/deno | 64a95cb5fb26ad86f26f6923b17f1726cdd4bc02 | a83b543bc7e70a7263285373b04ef60fd0adb899 | fix(bundle): fix handling of multiple entrypoints (#29651)
Fixes #29648. | [
{
"path": "cli/tools/bundle/mod.rs",
"patch": "@@ -121,7 +121,6 @@ pub async fn bundle(\n \n let entrypoint = bundle_flags\n .entrypoints\n- .first()\n .iter()\n .map(|e| resolve_url_or_path(e, &init_cwd).unwrap())\n .collect::<Vec<_>>();",
"additions": 0,
"deletions": 1,
"l... | 2025-06-09T20:15:13 |
tensorflow/tensorflow | 3ecc9762ae21bc1697a66ef98251f10b14c712a4 | f3cd043a52590efff0e9525208f44b3f4a70729e | [XLA:GPU] Fix collective_ops_e2e_test timeout and enable it in OSS presubmits.
PiperOrigin-RevId: 837038901 | [
{
"path": "third_party/xla/xla/tests/BUILD",
"patch": "@@ -2906,6 +2906,9 @@ xla_test(\n backend_tags = {\n \"gpu\": [\n \"multi_gpu\",\n+ ],\n+ \"nvgpu_any\": [\n+ \"broken\",\n \"no_oss\",\n ],\n },",
"additions": 3,
"deletio... | 2025-11-26T10:59:03 |
golang/go | 08376e1a9c57d4b07a77d156810d3fec46caba79 | c76c3abc5426ab3d183514c834bcd7d6a653ae89 | runtime: iterate through inlinings when processing recover()
We care about the wrapper-ness of logical frames, not physical frames.
Fixes #73916
Fixes #73917
Fixex #73920
Change-Id: Ia17c8390e71e6c0e13e23dcbb7bc7273ef25da90
Reviewed-on: https://go-review.googlesource.com/c/go/+/685375
Reviewed-by: Keith Randall <khr... | [
{
"path": "src/runtime/panic.go",
"patch": "@@ -1142,18 +1142,21 @@ func gorecover(_ uintptr) any {\n \t\tnonWrapperFrames := 0\n \tloop:\n \t\tfor ; u.valid(); u.next() {\n-\t\t\tswitch u.frame.fn.funcID {\n-\t\t\tcase abi.FuncIDWrapper:\n-\t\t\t\tcontinue\n-\t\t\tcase abi.FuncID_gopanic:\n-\t\t\t\tif u.fr... | 2025-07-01T22:29:12 |
swiftlang/swift | 974e61d45ad1deea0e7d638d10fc1142e970dc49 | 8ab9047cbf32813339811209474d460a536b48c6 | Sema: Loosen exportability checking for non-publicly imported types
This one is specific. Allow extensions to define public members to
package types implicitly exporting their memory layout when imported
non-publicly.
Enabling exportability checks for non-library-evolution by default as a
warning triggered marking su... | [
{
"path": "lib/AST/Availability.cpp",
"patch": "@@ -1062,5 +1062,5 @@ ExportedLevel swift::isExported(const ExtensionDecl *ED) {\n for (const Decl *D : ED->getMembers())\n membersExported = std::max(membersExported, isExported(D));\n \n- return membersExported;\n+ return std::min(exported, membersEx... | 2026-01-12T18:32:08 |
mrdoob/three.js | 751abcd443cde4b554fa318250db9dd8aac0f0c2 | 1a09fbe3f1679b2f602924d5226e715661746b1c | Editor: use more `three/addons/*` alias (#27967)
* Editor: use `three/addons/*` alias
Follow #23406, use more alias in editor
* fix: fix failed imports in last commit | [
{
"path": "editor/js/Loader.js",
"patch": "@@ -506,7 +506,7 @@ function Loader( editor ) {\n \n \t\t\t\t\tconst contents = event.target.result;\n \n-\t\t\t\t\tconst { PCDLoader } = await import( '../../examples/jsm/loaders/PCDLoader.js' );\n+\t\t\t\t\tconst { PCDLoader } = await import( 'three/addons/loader... | 2024-03-22T15:17:14 |
golang/go | c76c3abc5426ab3d183514c834bcd7d6a653ae89 | ebdbfccd989b07a8aef75af5fbe7448f035ee239 | encoding/json: fix truncated Token error regression in goexperiment.jsonv2
The jsontext.Decoder.ReadToken method reports a non-EOF error,
if the token stream is truncated and does not form a valid JSON value.
In contrast, the v1 json.Decoder.Token method would report EOF
so long as the input was a prefix of some valid... | [
{
"path": "src/encoding/json/stream_test.go",
"patch": "@@ -522,3 +522,38 @@ func TestHTTPDecoding(t *testing.T) {\n \t\tt.Errorf(\"Decode error:\\n\\tgot: %v\\n\\twant: io.EOF\", err)\n \t}\n }\n+\n+func TestTokenTruncation(t *testing.T) {\n+\ttests := []struct {\n+\t\tin string\n+\t\terr error\n+\t}{\n+... | 2025-07-25T00:10:54 |
tensorflow/tensorflow | f3cd043a52590efff0e9525208f44b3f4a70729e | 90ec4bcc25b04913310bfa58fc273768869023db | fix heap overflow for dynamic dimension buffers
PiperOrigin-RevId: 837023744 | [
{
"path": "third_party/xla/xla/pjrt/gpu/tfrt/tfrt_gpu_buffer.cc",
"patch": "@@ -528,7 +528,7 @@ Future<> TfrtGpuBuffer::ToLiteralHelper(Future<MutableLiteralBase*> literal) {\n }\n if (on_device_shape.IsArray() && !should_unpack &&\n transpose == nullptr) {\n- st... | 2025-11-26T10:13:15 |
swiftlang/swift | 9f35fdecbb0457af9f4b7e805327d66e25b74bc8 | 4c18d2ebdc2cf6669f5f18799bc061ea628e6f2e | update-checkout-config.json: bump WasmKit to 0.2.0 (#86440)
WasmKit 0.2.0 contains new functionality that allows enabling Wasm debugging tests in LLDB.
The version bump is not planned for 6.3, as Swift bootstrapping version for `release/6.3` CI jobs is too low: 5.9 as opposed to newly required Swift 6.0 in latest Swi... | [
{
"path": "utils/swift_build_support/swift_build_support/products/wasmkit.py",
"patch": "@@ -101,6 +101,7 @@ def run_swift_build(host_target, product, swiftpm_package_product_name, set_inst\n '--package-path', os.path.join(product.source_dir),\n '--build-path', product.build_dir,\n '... | 2026-01-21T18:14:12 |
mrdoob/three.js | cde048c252aac8c6ef5daffc671cae5bdbfea63f | a49dde26910b3beb6a9785efc74b9dea3de3b763 | 3MFLoader: Throw error on missing rels. (#27955)
* THREE.ThreeMFLoader: Throw error on missing rels
This throws an error in case the 3MF file is malformed and is missing
the `rels` object. Otherwise, the error is a bit cryptic.
* Move rels check to loadDocument | [
{
"path": "examples/jsm/loaders/3MFLoader.js",
"patch": "@@ -144,6 +144,8 @@ class ThreeMFLoader extends Loader {\n \n \t\t\t}\n \n+\t\t\tif ( relsName === undefined ) throw new Error( 'THREE.ThreeMFLoader: Cannot find relationship file `rels` in 3MF archive.' );\n+\n \t\t\t//\n \n \t\t\tconst relsView = zi... | 2024-03-21T12:13:54 |
denoland/deno | a83b543bc7e70a7263285373b04ef60fd0adb899 | ebbe435f301bc5c923325ed1c3f5472c4cfa29e7 | fix(compile): skip over read_dir errors when finding node_modules directories (#29672)
Not sure a good way to test this.
Closes https://github.com/denoland/deno/issues/29604 | [
{
"path": "cli/standalone/binary.rs",
"patch": "@@ -794,11 +794,12 @@ impl<'a> DenoCompileBinaryWriter<'a> {\n .unwrap(),\n );\n while let Some(pending_dir) = pending_dirs.pop_front() {\n- let mut entries = fs::read_dir(&pending_dir)\n- .with_context(|| {\n- ... | 2025-06-09T18:59:49 |
kubernetes/kubernetes | 2be8c36dba5dcd5e63270dc1ae23837397322433 | ecbda22ea54c58c7155207d96892d821a65069c3 | fix: additional nil check for workqueue shutdown | [
{
"path": "staging/src/k8s.io/cloud-provider/controllers/route/route_controller.go",
"patch": "@@ -163,7 +163,7 @@ func (rc *RouteController) handleNodeUpdate(oldObj, newObj interface{}) {\n func (rc *RouteController) Run(ctx context.Context, syncPeriod time.Duration, controllerManagerMetrics *controllersme... | 2025-10-30T16:18:44 |
golang/go | 91c4f0ccd542a505f72ad0db952f55688851e49e | 3636ced112d89da03739fa7d5468c0270addaa28 | reflect: avoid a bounds check in stack-constrained code
Since CL 682496 we need more stack space to handle bounds checks.
The code modified here normally has no bounds checks, but in -N
builds it still does and thus uses too much stack.
Use unsafe arithmetic to avoid the bounds check.
This will hopefully fix some of... | [
{
"path": "src/reflect/makefunc.go",
"patch": "@@ -8,6 +8,7 @@ package reflect\n \n import (\n \t\"internal/abi\"\n+\t\"internal/goarch\"\n \t\"unsafe\"\n )\n \n@@ -164,13 +165,18 @@ func moveMakeFuncArgPtrs(ctxt *makeFuncCtxt, args *abi.RegArgs) {\n \tfor i, arg := range args.Ints {\n \t\t// Avoid write ba... | 2025-07-24T23:41:23 |
mrdoob/three.js | 55ff783d55421c8853ed0ddec7795d49dcdf06b7 | 2ac92c82f0ac2c836ddba0cc0d7c6f4b8dc1c2f9 | TransformControls: Fix `updateMatrixWorld()` override. (#27960) | [
{
"path": "examples/jsm/controls/TransformControls.js",
"patch": "@@ -178,8 +178,8 @@ class TransformControls extends Object3D {\n \n \t}\n \n-\t// updateMatrixWorld updates key transformation variables\n-\tupdateMatrixWorld() {\n+\t// updateMatrixWorld updates key transformation variables\n+\tupdateMatrix... | 2024-03-21T11:31:41 |
swiftlang/swift | 8e97334dab3f0abe3074d11e1a665abd47e3bdfe | 8d4ded8a203b849d3e2e39eda659f2befdbad1f5 | Refactors access check diagnostic to automatically downgrade errors to
warnings based on feature flag and/or swift version | [
{
"path": "lib/Sema/ResilienceDiagnostics.cpp",
"patch": "@@ -90,14 +90,11 @@ bool TypeChecker::diagnoseInlinableDeclRefAccess(SourceLoc loc,\n auto storage = accessor->getStorage();\n if (accessor->getFormalAccess() < storage->getFormalAccess()) {\n auto diagID = diag::resilience_... | 2026-01-20T17:43:18 |
denoland/deno | ebbe435f301bc5c923325ed1c3f5472c4cfa29e7 | b575a6bfb147d18f33288c977ec38a2143138c28 | fix(ext/node): Fix missing core_import_map node internal file path for http2 (#29644) | [
{
"path": "tools/core_import_map.json",
"patch": "@@ -142,6 +142,7 @@\n \"ext:deno_node/internal/fs/utils.mjs\": \"../ext/node/polyfills/internal/fs/utils.mjs\",\n \"ext:deno_node/internal/hide_stack_frames.ts\": \"../ext/node/polyfills/internal/hide_stack_frames.ts\",\n \"ext:deno_node/internal... | 2025-06-09T15:58:25 |
tensorflow/tensorflow | f6b6d4d83426a5ee6e6385d7b85b0d9bd3f97941 | b92cfe4304ec83e61aa5e7a71b0eb9fe0d61f1b1 | [XLA:GPU] Fix usages of deprecated tsl::errors::InvalidArgument in xla
This change replaces usages of tsl::errors::InvalidArgument with absl::InvalidArgumentError,
wrapping arguments in absl::StrCat where necessary. This addresses deprecation
warnings and moves towards standard Abseil error handling.
The deprecated t... | [
{
"path": "third_party/xla/xla/backends/interpreter/BUILD",
"patch": "@@ -33,7 +33,6 @@ cc_library(\n \"//xla:util\",\n \"//xla/hlo/evaluator:hlo_evaluator\",\n \"//xla/hlo/ir:hlo\",\n- \"//xla/hlo/ir:hlo_module_group\",\n \"//xla/hlo/pass:hlo_pass_pipeline\",\n ... | 2025-11-26T09:44:12 |
kubernetes/kubernetes | 956964d6e582661ef9c0a53a3501f5a9364ebac2 | 36e6b9075e5bb8cbf96724cf65987e2cb23f4438 | fix: register feature gate dependencies | [
{
"path": "pkg/features/kube_features.go",
"patch": "@@ -2392,6 +2392,8 @@ var defaultKubernetesFeatureGateDependencies = map[featuregate.Feature][]feature\n \n \tgenericfeatures.WatchList: {},\n \n+\tkcmfeatures.CloudControllerManagerWatchBasedRoutesReconciliation: {},\n+\n \tkcmfeatures.CloudControllerMan... | 2025-10-22T12:04:00 |
golang/go | 3636ced112d89da03739fa7d5468c0270addaa28 | a6eec8bdc79a89f6001d7788d280b8910c5f1b13 | encoding/json: fix extra data regression under goexperiment.jsonv2
When operating under v1 semantics in the v2 implementation,
a extra data error should take precedence over any semantic error
that could theoretically occur within the value itself.
This change only affects code compiled under goexperiment.jsonv2.
Fi... | [
{
"path": "src/encoding/json/jsontext/decode.go",
"patch": "@@ -776,7 +776,8 @@ func (d *decoderState) ReadValue(flags *jsonwire.ValueFlags) (Value, error) {\n \n // CheckNextValue checks whether the next value is syntactically valid,\n // but does not advance the read offset.\n-func (d *decoderState) Check... | 2025-07-24T19:16:35 |
mrdoob/three.js | 2ac92c82f0ac2c836ddba0cc0d7c6f4b8dc1c2f9 | 7295b72b2b98cc0ca13a1880ed023324c538a5dc | Examples: Fix translation snap unit. (#27959) | [
{
"path": "examples/misc_controls_transform.html",
"patch": "@@ -100,7 +100,7 @@\n \t\t\t\t\t\t\tbreak;\n \n \t\t\t\t\t\tcase 16: // Shift\n-\t\t\t\t\t\t\tcontrol.setTranslationSnap( 100 );\n+\t\t\t\t\t\t\tcontrol.setTranslationSnap( 1 );\n \t\t\t\t\t\t\tcontrol.setRotationSnap( THREE.MathUtils.degToRad( 15... | 2024-03-21T10:52:47 |
denoland/deno | b575a6bfb147d18f33288c977ec38a2143138c28 | 9ce1a60d4c7b8b59126db8ee5a81606f492907fa | fix(ext/node): use primordials in `ext/node/polyfills/internal/fs/streams.mjs` (#29643)
Towards #24236. Replaces JS builtins with equivalent primordials. | [
{
"path": "ext/node/polyfills/internal/fs/streams.mjs",
"patch": "@@ -1,9 +1,19 @@\n // Copyright 2018-2025 the Deno authors. MIT license.\n // Copyright Joyent, Inc. and Node.js contributors. All rights reserved. MIT license.\n \n-// TODO(petamoriken): enable prefer-primordials for node polyfills\n-// deno... | 2025-06-09T13:06:28 |
tensorflow/tensorflow | 99b31d160d05f7e7c4f5a9c41060f069623a466f | eb66b39e164b7ab4fa66067ccf10d708c33efd28 | [XLA:GPU]: Fix function arguments for metadata construction
PiperOrigin-RevId: 837007785 | [
{
"path": "third_party/xla/xla/backends/gpu/runtime/collective_kernel_thunk.cc",
"patch": "@@ -155,7 +155,8 @@ absl::Status CollectiveKernelThunk::ExchangeStateMetadata(\n sizeof(CollectiveKernelMetadata) + param_to_peers_ptrs_size_bytes, 0);\n return CollectiveMetadataThunk::ConstructCollectiveMeta... | 2025-11-26T09:24:07 |
golang/go | a6eec8bdc79a89f6001d7788d280b8910c5f1b13 | 0fa88dec1e23ceeef9f5719e0f9ccb94766e53e7 | encoding/json: reduce error text regressions under goexperiment.jsonv2
There were minor and unnecessary error text changes
when v1 was implemented using v2.
Reduce divergences if possible.
Of the cases reported in #74713, there are no more differences for:
v1: json: cannot unmarshal number into Go value of type cha... | [
{
"path": "src/encoding/json/decode_test.go",
"patch": "@@ -416,6 +416,8 @@ type DoublePtr struct {\n \tJ **int\n }\n \n+type NestedUnamed struct{ F struct{ V int } }\n+\n var unmarshalTests = []struct {\n \tCaseName\n \tin string\n@@ -1213,6 +1215,28 @@ var unmarshalTests = []struct {\n ... | 2025-07-24T18:34:18 |
kubernetes/kubernetes | c2044c8d390447cf6addff4ed636574e5e48f244 | 0c775eec7cedf3ff7d37d3d1dc95eb501ef95646 | fix: feature gate min version | [
{
"path": "staging/src/k8s.io/controller-manager/pkg/features/kube_features.go",
"patch": "@@ -60,7 +60,7 @@ func SetupCurrentKubernetesSpecificFeatureGates(featuregates featuregate.Mutable\n var versionedCloudPublicFeatureGates = map[featuregate.Feature]featuregate.VersionedSpecs{\n \tCloudControllerManage... | 2025-10-22T11:06:10 |
mrdoob/three.js | bd2845f30695aa1b87124e7b6117a32095f87109 | 027b25f35d512a77b373334d92e7c3820f6d5255 | WebGPURenderer: Prevent PMREM to break when missing textures (#27951)
* fix texture missing from env cubemap
* fix examples/webgpu_parallax_uv.html too | [
{
"path": "examples/jsm/loaders/RGBMLoader.js",
"patch": "@@ -36,6 +36,12 @@ class RGBMLoader extends DataTextureLoader {\n \n \t\tconst texture = new CubeTexture();\n \n+\t\tfor ( let i = 0; i < 6; i ++ ) {\n+\n+\t\t\ttexture.images[ i ] = undefined;\n+\n+\t\t}\n+\n \t\tlet loaded = 0;\n \n \t\tconst scope... | 2024-03-20T10:56:26 |
denoland/deno | 9ce1a60d4c7b8b59126db8ee5a81606f492907fa | fca2c56df38f163bb74b8f73a9b659352a2a3d25 | fix(ext/node): validate prime bigint candidate (#29653) | [
{
"path": "ext/node/polyfills/internal/crypto/random.ts",
"patch": "@@ -96,6 +96,9 @@ export function checkPrime(\n \n let op = op_node_check_prime_bytes_async;\n if (typeof candidate === \"bigint\") {\n+ if (candidate < 0) {\n+ throw new ERR_OUT_OF_RANGE(\"candidate\", \">= 0\", candidate);\n+ ... | 2025-06-09T05:45:20 |
swiftlang/swift | 25dd98191139de52343a481ba67307b04bd16ce2 | 37e89902a32162c5beab475e805b47ee5ad097b6 | [embedded] [existentials] Fix the on-heap storage paths
Call swift_releaseBox on all the copy-on-write paths of existentials. | [
{
"path": "lib/IRGen/GenExistential.cpp",
"patch": "@@ -2708,7 +2708,10 @@ static llvm::Function *getAssignBoxedOpaqueExistentialBufferFunction(\n Address(srcReferenceAddr, IGM.RefCountedPtrTy,\n srcBuffer.getAlignment()));\n IGF.emitNativeStrongRetain(src... | 2026-01-20T17:58:22 |
tensorflow/tensorflow | d39b0524b7c2d205bf362b8cb9fff953030973a3 | 53d6f2a4fdf70a40856719288abca3a673f6eb9c | [XLA:GPU] add xla_enable_scoped_logging_timers debug option
It will control whether we start timers in the backend instead of
is_autotuning_compilation that is being depricated.
I have opted for positive ("..enabled..") option for readability even though it will not
be set true by proto by default.
PiperOrigin-RevId... | [
{
"path": "third_party/xla/xla/backends/gpu/autotuner/gpu_codegen_backend.h",
"patch": "@@ -106,6 +106,7 @@ 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-11-26T08:44:39 |
mrdoob/three.js | 70aed3da4c51ee2ef5053631e3604cd813ab5876 | 10d16220d16e0e838175943b8c2723f90a222015 | fix batching before instancing and add multidraw instance support (#27950) | [
{
"path": "examples/jsm/nodes/materials/NodeMaterial.js",
"patch": "@@ -205,15 +205,15 @@ class NodeMaterial extends ShaderMaterial {\n \n \t\t}\n \n-\t\tif ( ( object.instanceMatrix && object.instanceMatrix.isInstancedBufferAttribute === true ) && builder.isAvailable( 'instance' ) === true ) {\n+\t\tif ( o... | 2024-03-20T09:16:56 |
kubernetes/kubernetes | 0c775eec7cedf3ff7d37d3d1dc95eb501ef95646 | 9af329151a490573bfef1fa4ef890ce5253ee51b | fix: rate limit route reconciles | [
{
"path": "staging/src/k8s.io/cloud-provider/controllers/route/route_controller.go",
"patch": "@@ -54,8 +54,10 @@ import (\n const (\n \t// Maximal number of concurrent route operation API calls.\n \t// TODO: This should be per-provider.\n-\tmaxConcurrentRouteOperations int = 200\n-\tminRouteResyn... | 2025-10-22T10:42:50 |
denoland/deno | fca2c56df38f163bb74b8f73a9b659352a2a3d25 | 795c904322e8b12d86822c7d5202588a39d12046 | fix(ext/node): disable `parallel/test-crypto-secure-heap.js` test (#29658) | [
{
"path": "tests/node_compat/run_all_test_unmodified.ts",
"patch": "@@ -72,6 +72,7 @@ const NODE_IGNORED_TEST_CASES = new Set([\n \"parallel/test-benchmark-cli.js\", // testing private benchmark utility\n \"parallel/test-buffer-backing-arraybuffer.js\", // Deno does not allow heap-allocated ArrayBuffer,... | 2025-06-09T05:45:06 |
mrdoob/three.js | 8fc447fb16aee3540fd64b5cf5dc09b506639b1e | f2876ce8dc14bb310e20c255d519127bf00db94d | Docs: fix setMorphAt() description (#27946) | [
{
"path": "docs/api/en/objects/InstancedMesh.html",
"patch": "@@ -189,7 +189,7 @@ <h3>\n \t\t\trange [0, count].\n \t\t</p>\n \t\t<p>\n-\t\t\t[page:Matrix4 matrix]: A mesh with [page:Mesh.morphTargetInfluences .morphTargetInfluences] property containing the morph target weights\n+\t\t\t[page:Mesh mesh]: A m... | 2024-03-19T21:02:59 |
swiftlang/swift | 4e39c0e694fbaaf9d532b9001d7c9fd8b2d8506c | f74d94e4bf5ad347c6c0d369fd98118710b384fc | Sema: Fix over-eager early return from determineBestChoicesInContext() | [
{
"path": "lib/Sema/CSOptimizer.cpp",
"patch": "@@ -1316,17 +1316,21 @@ static void determineBestChoicesInContext(\n \n auto argumentList = cs.getArgumentList(applicableFn.get()->getLocator());\n if (!argumentList)\n- return;\n+ continue;\n \n+ bool inCodeCompletion = false;\n for (... | 2026-01-21T14:23:52 |
kubernetes/kubernetes | 0b41218ed4fe68b332e5ecb9fa4399ed961c9ddc | be7e0ddb74baac9059398a40b9a603ecb2b322ce | fix: missing update of feature gates | [
{
"path": "test/compatibility_lifecycle/reference/versioned_feature_list.yaml",
"patch": "@@ -181,6 +181,12 @@\n lockToDefault: false\n preRelease: Alpha\n version: \"1.34\"\n+- name: CloudControllerManagerWatchBasedRoutesReconciliation\n+ versionedSpecs:\n+ - default: false\n+ lockToDefaul... | 2025-04-10T13:17:06 |
denoland/deno | 795c904322e8b12d86822c7d5202588a39d12046 | 9c28cb5d66517b135a10f4d59de1746153f76a65 | fix(ext/web): fix property configuration of event phase fields (#29635)
The properties like `Event.NONE` should have property configuration of
`writable: false, enumerable: true, configurable: false`, but they
currently have `enumerable: false, configurable: true, getter, setter:
undefined`.
This commit fixes it. Thi... | [
{
"path": "ext/web/02_event.js",
"patch": "@@ -308,22 +308,6 @@ class Event {\n return Event.BUBBLING_PHASE;\n }\n \n- static get NONE() {\n- return 0;\n- }\n-\n- static get CAPTURING_PHASE() {\n- return 1;\n- }\n-\n- static get AT_TARGET() {\n- return 2;\n- }\n-\n- static get BUBBLING... | 2025-06-09T04:52:35 |
mrdoob/three.js | c66eb6196ae2c06bde63c6e2ade172d902ee850a | 47c95083e05f65f10bcec9b157980d161d6122dc | Editor: Fix center command. (#27940) | [
{
"path": "editor/js/Menubar.Edit.js",
"patch": "@@ -87,9 +87,9 @@ function MenubarEdit( editor ) {\n \t\tconst center = aabb.getCenter( new Vector3() );\n \t\tconst newPosition = new Vector3();\n \n-\t\tnewPosition.x = object.position.x + ( object.position.x - center.x );\n-\t\tnewPosition.y = object.posit... | 2024-03-19T09:20:26 |
swiftlang/swift | e20a8fa0e6031c0fb25b5577530b35a7594df71f | 4d65c89ca64909b42b01f1ad9d5d3fbdc650b307 | Sema: Add new variant of operators_inside_closure.swift
Suggested by Pavel while debugging another issue. Don't want this one to
regress either. | [
{
"path": "validation-test/Sema/type_checker_perf/fast/operators_inside_closure_2.swift",
"patch": "@@ -0,0 +1,9 @@\n+// RUN: %target-swift-frontend -typecheck %s -solver-scope-threshold=10000\n+// REQUIRES: tools-release,no_asan\n+\n+// Selecting operators from the closure before arguments to `zip` makes t... | 2026-01-21T04:52:08 |
golang/go | 7b5002433026cd1b0d99859bb76af12ec7ced54b | 7b9de668bd68f366d87ba50e9aeb1ba1d0bdb8e5 | runtime: detect successful recovers differently
Use stack unwinding instead of keeping incremental track of the argp
of defers that are allowed to recover.
It's much simpler, and it lets us get rid of the incremental tracking
by wrapper code. (Ripped out in a subsequent CL.)
We only need to stack unwind a few frames... | [
{
"path": "src/runtime/panic.go",
"patch": "@@ -864,6 +864,7 @@ func gopanic(e any) {\n \n \tvar p _panic\n \tp.arg = e\n+\tp.gopanicFP = unsafe.Pointer(sys.GetCallerSP())\n \n \trunningPanicDefers.Add(1)\n \n@@ -1086,27 +1087,86 @@ func (p *_panic) initOpenCodedDefers(fn funcInfo, varp unsafe.Pointer) bool... | 2025-07-01T21:45:45 |
tensorflow/tensorflow | dcf61a605a325be9e02c15da5b2417324474b3d4 | 5cd81be8a77f634ae20ff9266e5639520040ba48 | Implement `CreateErrorBuffer` in pjrt c api
PiperOrigin-RevId: 836881069 | [
{
"path": "third_party/xla/xla/pjrt/c/CHANGELOG.md",
"patch": "@@ -1,5 +1,9 @@\n # PJRT C API changelog\n \n+## 0.82\n+\n+* Add `PJRT_Client_CreateErrorBuffer`.\n+\n ## 0.81\n \n * Added `PJRT_Layouts_PJRT_Executable_GetOutputLayouts`.",
"additions": 4,
"deletions": 0,
"language": "Markdown"
}... | 2025-11-26T02:21:45 |
kubernetes/kubernetes | be7e0ddb74baac9059398a40b9a603ecb2b322ce | 8ef9e53ce5dd82b396b675d1b8ae6f8339cd6546 | fix: spelling | [
{
"path": "staging/src/k8s.io/controller-manager/pkg/features/kube_features.go",
"patch": "@@ -42,7 +42,7 @@ const (\n \t// across the file.\n \n \t// owner: @lukasmetzner\n-\t// Use watch based route controller reconcilation instead of frequent periodic reconciliation.\n+\t// Use watch based route controll... | 2025-04-10T12:30:50 |
mrdoob/three.js | a7712cc3a0902f2c45e919a811622ed72ad5f5de | 1d370a476afacb660159076728974a71910ba8da | GLTFExporter: Fix alignment of integer vertex attributes (#27064)
---------
Co-authored-by: Takahiro <hogehoge@gachapin.jp> | [
{
"path": "examples/jsm/exporters/GLTFExporter.js",
"patch": "@@ -982,7 +982,17 @@ class GLTFWriter {\n \n \t\t}\n \n-\t\tconst byteLength = getPaddedBufferSize( count * attribute.itemSize * componentSize );\n+\t\tlet byteStride = attribute.itemSize * componentSize;\n+\n+\t\tif ( target === WEBGL_CONSTANTS.... | 2024-03-19T02:33:07 |
denoland/deno | 9c28cb5d66517b135a10f4d59de1746153f76a65 | b8edafd44688fe602ffb0c8572da0957678c80d3 | fix(ext/node): update interaction between event emitters and domains (#29632) | [
{
"path": "ext/node/polyfills/domain.ts",
"patch": "@@ -1,25 +1,30 @@\n // Copyright 2018-2025 the Deno authors. MIT license.\n // Copyright Joyent and Node contributors. All rights reserved. MIT license.\n // This code has been inspired by https://github.com/bevry/domain-browser/commit/8bce7f4a093966ca850d... | 2025-06-09T03:06:43 |
swiftlang/swift | 8e00755a0715b42eb5dd7ba3bf21e5b3d278a51a | 9a9cd92ac81df1595a4fb3a3ea795b5cfb292d68 | [SILGen]: fix thunk emission for nothrow to throws(Never)
Previously attempting to emit a thunk to wrap a throws(Never) function
within a non-throwing function would crash during SILGen because it was
unconditionally assumed the outer function had an error result. Change
this so that such cases instead create a try_ap... | [
{
"path": "lib/SILGen/SILGenApply.cpp",
"patch": "@@ -6356,8 +6356,15 @@ SILValue SILGenFunction::emitApplyWithRethrow(SILLocation loc, SILValue fn,\n SILBasicBlock *normalBB = createBasicBlock();\n B.createTryApply(loc, fn, subs, args, normalBB, errorBB);\n \n- // Emit the rethrow logic.\n- {\n+ if ... | 2026-01-17T21:19:38 |
golang/go | 3024785b929cd8a740da87e1c24aef2c9b30e019 | 741a19ab4197fb528f8d7f7d8a73d3db3ef99355 | cmd/compile,runtime: remember idx+len for bounds check failure with less code
Currently we must put the index and length into specific registers so
we can call into the runtime to report a bounds check failure.
So a typical bounds check call is something like:
MOVD R3, R0
MOVD R7, R1
CALL runtime.panicIndex
or, ... | [
{
"path": "src/cmd/compile/internal/ir/symtab.go",
"patch": "@@ -37,6 +37,8 @@ type symsStruct struct {\n \tMsanmove *obj.LSym\n \tNewobject *obj.LSym\n \tNewproc *obj.LSym\n+\tPanicBounds *obj.LSym\n+\tPanicExtend *obj.LSym\n \tPanicdivide *obj.LSym\n \tPanicshi... | 2025-06-18T21:50:23 |
tensorflow/tensorflow | 36cde4be9c1c7ab8a6bed00f1b0ef5abdb994489 | ce7fc22af368065d61daafde10332dff275f53fe | [xla:ffi] Add correct error handling to internal FFI APIs
Previously we could reinterpret cast XLA_FFI_Error* as a return type and it would lead to UB and crashes.
PiperOrigin-RevId: 836832350 | [
{
"path": "third_party/xla/xla/ffi/api/api.h",
"patch": "@@ -470,6 +470,32 @@ inline XLA_FFI_Error* Ffi::StructSizeIsGreaterOrEqual(\n return nullptr;\n }\n \n+//===----------------------------------------------------------------------===//\n+// XLA_FFI_Error helpers\n+//===-------------------------------... | 2025-11-25T23:28:44 |
mrdoob/three.js | 1d370a476afacb660159076728974a71910ba8da | 7059b85ca36d4e0950b8358dd8c7c9356841a12d | Renderer: Move await method to `renderAsync` (#27939)
* init batch and fixes
* smaller example
* pup
* fix dynamic example
* fix demo
* add async render
* move async method to renderAsync | [
{
"path": "examples/jsm/renderers/common/Renderer.js",
"patch": "@@ -312,7 +312,9 @@ class Renderer {\n \n \t\tif ( this._initialized === false ) await this.init();\n \n-\t\tawait this._renderScene( scene, camera );\n+\t\tconst renderContext = this._renderScene( scene, camera );\n+\n+\t\tawait this.backend.... | 2024-03-19T01:45:44 |
kubernetes/kubernetes | 8ef9e53ce5dd82b396b675d1b8ae6f8339cd6546 | a5055cc407b721440685d017865ac982de6a470b | fix: check error of AddEventHandler | [
{
"path": "staging/src/k8s.io/cloud-provider/app/core.go",
"patch": "@@ -128,13 +128,16 @@ func startRouteController(ctx context.Context, initContext ControllerInitContext\n \t\treturn nil, false, fmt.Errorf(\"length of clusterCIDRs is:%v more than max allowed of 2\", len(clusterCIDRs))\n \t}\n \n-\trouteCo... | 2025-04-10T12:09:09 |
denoland/deno | b8edafd44688fe602ffb0c8572da0957678c80d3 | dfe56f8b4524f2e2f80d80cd0753f886822e0a90 | fix(ext/node): match WebCrypto tag too small error msg with Node (#29654)
Enables `parallel/test-crypto-webcrypto-aes-decrypt-tag-too-small.js`
Ref https://github.com/denoland/deno/issues/29637 | [
{
"path": "ext/crypto/00_crypto.js",
"patch": "@@ -734,7 +734,7 @@ class SubtleCrypto {\n normalizedAlgorithm.tagLength / 8\n ) {\n throw new DOMException(\n- \"Tag length overflows ciphertext\",\n+ \"The provided data is too small\",\n \"Opera... | 2025-06-08T15:37:31 |
golang/go | c641900f72a595ff2e826367b64e3e418c265409 | d71d8aeafd7aa5c2ff3da6a782acdd573a0409af | cmd/compile: prefer base.Fatalf to panic in dwarfgen
Updates a few spots which call `panic` to instead call `base.Fatalf`.
Change-Id: I30b73c7994caa647245b0e253f20e0b88185e644
GitHub-Last-Rev: b3839bbe424294f92a1f9448e5e0ac074e722e4d
GitHub-Pull-Request: golang/go#74616
Reviewed-on: https://go-review.googlesource.com... | [
{
"path": "src/cmd/compile/internal/dwarfgen/dwarf.go",
"patch": "@@ -203,7 +203,7 @@ func createDwarfVars(fnsym *obj.LSym, complexOK bool, fn *ir.Func, apDecls []*ir\n \t\t\t\tcontinue\n \t\t\t}\n \t\t\tif n.Class != ir.PPARAMOUT || !n.IsOutputParamInRegisters() {\n-\t\t\t\tpanic(\"invalid ir.Name on debug... | 2025-07-14T22:28:59 |
swiftlang/swift | 8e8e5c4aaed5410d434d09fdc7f25476b1442448 | 412f8ca59a83722acbbc361a0b214f5d6668934e | [cxx-interop] Support rvalue-ref qualified methods
We already imported methods that have && as qualifiers but did not
support them properly. When in the C++ code there is overloading based
on the reference qualifiers the imported Swift functions are ambiguous.
This patch append "Consuming" to the && qualified methods'... | [
{
"path": "lib/ClangImporter/ClangImporter.cpp",
"patch": "@@ -5732,6 +5732,10 @@ const clang::CXXMethodDecl *getCalledBaseCxxMethod(FuncDecl *baseMember) {\n if (!callExpr)\n return nullptr;\n auto *cv = callExpr->getCalledValue();\n+ if (auto orig = baseMember->getASTContext()\n+ ... | 2025-12-01T16:01:13 |
mrdoob/three.js | 7059b85ca36d4e0950b8358dd8c7c9356841a12d | e6ec29855fb963a82083aee260b6e1143ea0378d | WebGPURenderer: Support BatchMesh (#27937)
* init batch and fixes
* smaller example
* pup
* fix dynamic example
* fix demo | [
{
"path": "examples/files.json",
"patch": "@@ -383,6 +383,7 @@\n \t\t\"webgpu_multisampled_renderbuffers\",\n \t\t\"webgpu_materials_texture_anisotropy\",\n \t\t\"webgpu_storage_buffer\",\n+\t\t\"webgpu_mesh_batch\",\n \t\t\"webgpu_instancing_morph\"\n \t],\n \t\"webaudio\": [",
"additions": 1,
"del... | 2024-03-19T01:31:39 |
kubernetes/kubernetes | 902c652ccb0a25908973091dfb46f816a1af0b8d | d2e1e3b6bc9fd5330bb9e2671c026634b18106bb | Record proper orphaned pod cleanup error based on the system call
The code actually calls os.Remove(), not rmdir(). The error message
should accurately reflect the operation being performed.
os.Remove() can remove both files and directories, while rmdir()
only removes directories
Signed-off-by: Humble Devassy Chiramm... | [
{
"path": "pkg/kubelet/kubelet_volumes.go",
"patch": "@@ -145,7 +145,7 @@ func (kl *Kubelet) removeOrphanedPodVolumeDirs(uid types.UID) []error {\n \t\tfor _, subpathVolumePath := range subpathVolumePaths {\n \t\t\t// Remove both files and empty directories here, as the subpath may have been a bind-mount of... | 2025-10-06T10:14:48 |
denoland/deno | dfe56f8b4524f2e2f80d80cd0753f886822e0a90 | f3920ef2ecca1bbb229fb075a87d61ea41418d4e | fix(ext/node): internal getOpenSSLSecLevel() for tests (#29657)
Enables `parallel/test-crypto-sec-level.js`
Ref https://github.com/denoland/deno/issues/29637 | [
{
"path": "ext/node/polyfills/internal/crypto/util.ts",
"patch": "@@ -228,6 +228,10 @@ export function setEngine(_engine: string, _flags: typeof constants) {\n notImplemented(\"crypto.setEngine\");\n }\n \n+export function getOpenSSLSecLevel(): number {\n+ return 5; // highest sec level, used in tests.\n... | 2025-06-08T15:37:14 |
golang/go | bd04f65511791860276f2f3f982133f7be007448 | 5c8624a396d1c0aa4f436d17044330bc931d5fbd | internal/runtime/exithook: fix a typo
That is the say -> That is to say
Change-Id: I4a19d4c500103e16e6ae55f41a9fbdddd4bb84a8
GitHub-Last-Rev: 571d49ab8e6d81ac9db8b47d89118fb74bd3f2f6
GitHub-Pull-Request: golang/go#74741
Reviewed-on: https://go-review.googlesource.com/c/go/+/690195
Reviewed-by: Michael Knyszek <mknysz... | [
{
"path": "src/internal/runtime/exithook/hooks.go",
"patch": "@@ -8,7 +8,7 @@\n // from a safe context (e.g. not an error/panic path or signal\n // handler, preemption enabled, allocation allowed, write barriers\n // allowed, etc), and that the exit function F will be invoked under\n-// similar circumstance... | 2025-07-24T13:58:50 |
mrdoob/three.js | b0a6ea1271a1f22393eb8b6b9d573c288998fd9e | 83f758042019690b434cb8994267b780163584a3 | WebGPURenderer: InstancedMesh Supports Instance Color and Morph Target (#27928)
* add instancing and some fix/feat
* update example for webgpu
* add example to files.json
* fix skinning webgpu
* cleanup example and pup
* up shadow
* add default normal instead | [
{
"path": "examples/files.json",
"patch": "@@ -382,7 +382,8 @@\n \t\t\"webgpu_mirror\",\n \t\t\"webgpu_multisampled_renderbuffers\",\n \t\t\"webgpu_materials_texture_anisotropy\",\n-\t\t\"webgpu_storage_buffer\"\n+\t\t\"webgpu_storage_buffer\",\n+\t\t\"webgpu_instancing_morph\"\n \t],\n \t\"webaudio\": [\n ... | 2024-03-18T16:21:43 |
swiftlang/swift | 4d65c89ca64909b42b01f1ad9d5d3fbdc650b307 | b633bd37acf58cc5b875253ffa1c6ca42c6c444e | update-checkout-config.json: bump SwiftNIO to 2.92.2 (#86460)
This version bump is required to update WasmKit to 0.2.0 in a separate PR (https://github.com/swiftlang/swift/pull/86440), which itself is required to enable Wasm debugging tests in LLDB.
The version bump is not planned for 6.3, as Swift bootstrapping vers... | [
{
"path": "utils/update_checkout/update-checkout-config.json",
"patch": "@@ -181,7 +181,7 @@\n \"swift-docc-render-artifact\": \"main\",\n \"swift-docc-symbolkit\": \"main\",\n \"swift-markdown\": \"main\",\n- \"swift-nio\": \"2.65.0\",\n+ ... | 2026-01-21T09:12:46 |
denoland/deno | f3920ef2ecca1bbb229fb075a87d61ea41418d4e | 635e3744bde6194d571654c5037fa6e16f852555 | fix(ext/node): validate randomUUID() options (#29656)
Enables `parallel/test-crypto-randomuuid.js`
Ref https://github.com/denoland/deno/issues/29637 | [
{
"path": "ext/node/polyfills/internal/crypto/random.ts",
"patch": "@@ -298,7 +298,18 @@ function unsignedBigIntToBuffer(bigint: bigint, name: string) {\n return Buffer.from(padded, \"hex\");\n }\n \n-export const randomUUID = () => globalThis.crypto.randomUUID();\n+export function randomUUID(options) {\n... | 2025-06-08T15:36:52 |
golang/go | 5c8624a396d1c0aa4f436d17044330bc931d5fbd | 44d73dfb4e5f80998dc0276e239e3e860c8d9e91 | cmd/internal/goobj: make error output clear
Change-Id: Ic8510037e5d745f3c9f1b9c203439d3fe2e2d5a5
GitHub-Last-Rev: 4101a1595bd542bec8c20e4332c884125ee57aff
GitHub-Pull-Request: golang/go#74703
Reviewed-on: https://go-review.googlesource.com/c/go/+/689515
Reviewed-by: Michael Knyszek <mknyszek@google.com>
Reviewed-by: K... | [
{
"path": "src/cmd/internal/goobj/mkbuiltin.go",
"patch": "@@ -78,7 +78,7 @@ func mkbuiltin(w io.Writer) {\n \t\t\t\tcontinue\n \t\t\t}\n \t\t\tif decl.Tok != token.VAR {\n-\t\t\t\tlog.Fatal(\"unhandled declaration kind\", decl.Tok)\n+\t\t\t\tlog.Fatal(\"unhandled declaration kind: \", decl.Tok)\n \t\t\t}\n... | 2025-07-22T15:12:58 |
mrdoob/three.js | 7f7533d3583ff6469dec0627c67188364eff477f | 9347c2eda9a759f282e61fc3ac8d7331bf252933 | PMREMGenerator: Fix usage in XR. (#27924) | [
{
"path": "src/extras/PMREMGenerator.js",
"patch": "@@ -40,6 +40,7 @@ const _clearColor = /*@__PURE__*/ new Color();\n let _oldTarget = null;\n let _oldActiveCubeFace = 0;\n let _oldActiveMipmapLevel = 0;\n+let _oldXrEnabled = false;\n \n // Golden Ratio\n const PHI = ( 1 + Math.sqrt( 5 ) ) / 2;\n@@ -107,6 ... | 2024-03-16T00:54:32 |
denoland/deno | 635e3744bde6194d571654c5037fa6e16f852555 | 7a837f9fdbeca808aa39aa6a46dcb190cdc8672b | fix(ext/node): add events `getMaxListeners` (#29636)
Enables `parallel/test-events-getmaxlisteners.js`
Towards #29595 | [
{
"path": "ext/node/polyfills/_events.mjs",
"patch": "@@ -76,6 +76,7 @@ EventEmitter.on = on;\n EventEmitter.once = once;\n EventEmitter.getEventListeners = getEventListeners;\n EventEmitter.setMaxListeners = setMaxListeners;\n+EventEmitter.getMaxListeners = getMaxListeners;\n EventEmitter.listenerCount = l... | 2025-06-08T04:07:03 |
kubernetes/kubernetes | c99145805f12398c63e4f1304df8c7aaae327c12 | d2e1e3b6bc9fd5330bb9e2671c026634b18106bb | [DRA] Fix DistinctAttributeConstraint match comparision with value
Signed-off-by: Sunyanan Choochotkaew <sunyanan.choochotkaew1@ibm.com> | [
{
"path": "staging/src/k8s.io/dynamic-resource-allocation/structured/internal/allocatortesting/allocator_testing.go",
"patch": "@@ -83,6 +83,7 @@ const (\n \treq0SubReq1 = \"req-0/subReq-1\"\n \treq1SubReq0 = \"req-1/subReq-0\"\n \treq1SubReq1 = \"req-1/subReq-1\"\n+\treq2SubReq0 = \"req-2/subReq-0\"\n \tcl... | 2025-10-31T23:43:57 |
tensorflow/tensorflow | 36ec9c8e97cad0be4fe8eb4e4732a815648c6d21 | e27e420f5294df581c5441828b03abf9ef87c468 | PR #34306: Bump numpy from 1.24.3 to 2.3.5
Imported from GitHub PR https://github.com/openxla/xla/pull/34306
Bumps [numpy](https://github.com/numpy/numpy) from 1.24.3 to 2.3.5.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/numpy/numpy/releases">numpy's releases</a>.</em></... | [
{
"path": "third_party/xla/requirements_lock_3_11.txt",
"patch": "@@ -1,32 +1,78 @@\n-numpy==1.24.3 \\\n- --hash=sha256:0ec87a7084caa559c36e0a2309e4ecb1baa03b687201d0a847c8b0ed476a7187 \\\n- --hash=sha256:1a7d6acc2e7524c9955e5c903160aa4ea083736fde7e91276b0e5d98e6332812 \\\n- --hash=sha256:202de8f38... | 2025-11-25T22:59:55 |
golang/go | da8b50c83087897e2a8abef2d8909253f1fb4f23 | 6669aa3b14d98d90929ca860421e5308374b0f46 | cmd/doc: delete
Users should not invoke "go tool doc" directly, but should instead run
"go doc". Remove "cmd/doc" because it no longer invokes the "doc" tool
but incorporates its logic directly.
Fixes #74667
Change-Id: I357a3d7e0ca075f028df66e34951a41354c08941
Reviewed-on: https://go-review.googlesource.com/c/go/+/6... | [
{
"path": "doc/next/3-tools.md",
"patch": "@@ -2,5 +2,10 @@\n \n ### Go command {#go-command}\n \n+<!-- go.dev/issue/74667 -->\n+`cmd/doc`, and `go tool doc` have been deleted. `go doc` can be used as\n+a replacement for `go tool doc`: it takes the same flags and arguments and\n+has the same behavior.\n+\n ... | 2025-07-23T15:25:14 |
mrdoob/three.js | 9d6152717609405023ad8cb22918def20b790a2b | 74252e6e951aa33ffe9d7d67f2ff415e2baa090e | Playground: Fix connection lengths and let them be based on node input/output types (#27891)
* Test proper input and output coloring
* Add Type library for colors and in/output lengths
* Overwrite node nodetype with predefined nodetype if necessary
* Add DataType entries for matrices
* Calculate output len... | [
{
"path": "playground/BaseNodeEditor.js",
"patch": "@@ -1,5 +1,6 @@\n import { Node, ButtonInput, TitleElement, ContextMenu } from 'flow';\n-import { exportJSON, onValidNode, getColorFromValue, getTypeFromValue, getColorFromType } from './NodeEditorUtils.js';\n+import { exportJSON, onValidNode } from './Nod... | 2024-03-15T01:32:24 |
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.