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
1323aca15e1a588327f400f7da782d9becd533df
74b73b3c9f7233d8afcd21281ace30c709dfb817
refactor(npm_cache): fix Wasm build to not use tokio code (#29641)
[ { "path": "Cargo.lock", "patch": "@@ -8400,9 +8400,9 @@ dependencies = [\n \n [[package]]\n name = \"sys_traits\"\n-version = \"0.1.15\"\n+version = \"0.1.16\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"110a9308163844c6ce51149737dbcea372f101bffbc0ef05d5de06acb4a4128f...
2025-06-07T03:17:03
mrdoob/three.js
74252e6e951aa33ffe9d7d67f2ff415e2baa090e
d26eecd6470fb7c9810c074e46a217c718c672e6
Object3D: Fix `added` event in `attach()`. (#27917)
[ { "path": "src/core/Object3D.js", "patch": "@@ -333,12 +333,7 @@ class Object3D extends EventDispatcher {\n \n \t\tif ( object && object.isObject3D ) {\n \n-\t\t\tif ( object.parent !== null ) {\n-\n-\t\t\t\tobject.parent.remove( object );\n-\n-\t\t\t}\n-\n+\t\t\tobject.removeFromParent();\n \t\t\tobject.pa...
2024-03-14T11:42:23
golang/go
6669aa3b14d98d90929ca860421e5308374b0f46
26338a7f691b45017168b6523c95d4578a2cfd4d
runtime: randomize heap base address During initialization, allow randomizing the heap base address by generating a random uint64 and using its bits to randomize various portions of the heap base address. We use the following method to randomize the base address: * We first generate a random heapArenaBytes aligned a...
[ { "path": "src/internal/goexperiment/exp_randomizedheapbase64_off.go", "patch": "@@ -0,0 +1,8 @@\n+// Code generated by mkconsts.go. DO NOT EDIT.\n+\n+//go:build !goexperiment.randomizedheapbase64\n+\n+package goexperiment\n+\n+const RandomizedHeapBase64 = false\n+const RandomizedHeapBase64Int = 0", "ad...
2025-05-21T02:03:44
tensorflow/tensorflow
6b91a2a6e2bed8dae4ba4b822583f13902afc092
191445381148a62e3784a9b19724bc994fd19b99
Introduce new AOT compilation support in `GpuCompiler` When the new `xla_gpu_experimental_aot_compiled_thunks` flag is enabled (off by default), `GpuCompiler::Export` and `GpuCompiler::CompileAheadOfTime` will use the new OAT compilation path. Additional changes: * Add parametrized tests to test both flows. * Fixed t...
[ { "path": "third_party/xla/xla/debug_options_flags.cc", "patch": "@@ -1780,6 +1780,15 @@ void MakeDebugOptionsFlags(std::vector<tsl::Flag>* flag_list,\n set_xla_gpu_experimental_enable_nccl_symmetric_buffers),\n debug_options->xla_gpu_experimental_enable_nccl_symmetric_buffers(),\n ...
2025-11-25T15:12:52
swiftlang/swift
b27bb64b03755f8c4e8b28aba3d06b1d240fd42a
0a17ac48da9c1da8061989815de63b1fa6f2eaa1
[cxx-interop] [test] Disable failing executable test for protected special members (#86679) This test fails on Linux and some simulator platforms as well. This test was added in a35a0ad696533bc456ffdba5acc6202d181e7bf6 to test the work there but is known to be broken prior to that (see PR testing in #86389). Disable ...
[ { "path": "test/Interop/Cxx/class/inheritance/protected-special-member-executable.swift", "patch": "@@ -2,9 +2,9 @@\n //\n // REQUIRES: executable_test\n //\n-// REQUIRES: OS=macosx\n-// Fails on Linux: https://github.com/swiftlang/swift/issues/86426\n-// Fails on Windows:https://github.com/swiftlang/swif...
2026-01-21T07:59:50
denoland/deno
dff5d73cd9b65a20288d9c8ed8dcc1dd1cb9fb69
fb0241388ebda7d4faff8db882f2e0d071cf15c0
fix: revert back to prefering highest previously resolved version for a req (#29642) This is a revert * https://github.com/denoland/deno_graph/pull/589
[ { "path": "Cargo.lock", "patch": "@@ -1999,9 +1999,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_graph\"\n-version = \"0.95.0\"\n+version = \"0.95.1\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"af557eab0d8abf2c6e7c890d510eccaebe52388924ae4a3e15c8a818c1bbbb90...
2025-06-06T20:09:50
mrdoob/three.js
d26eecd6470fb7c9810c074e46a217c718c672e6
a9c5a7dbb6f59d4f35df2fb4ca584c8b7b84fc25
FBXLoader: Fixed invalid QuaternionKeyframeTracks.
[ { "path": "examples/jsm/loaders/FBXLoader.js", "patch": "@@ -2845,7 +2845,7 @@ class AnimationParser {\n \n \t\tconst quaternionValues = [];\n \n-\t\tif ( ! values || ! times ) return new QuaternionKeyframeTrack( modelName + '.quaternion', [], [] );\n+\t\tif ( ! values || ! times ) return new QuaternionKeyf...
2024-03-14T05:04:39
golang/go
26338a7f691b45017168b6523c95d4578a2cfd4d
8587ba272ede9b6607ec06822e743db71f3ba563
cmd/compile: use better fatal message for staticValue1 So the position of the wrong assignment statement will be reported, instead of using incorrect base.Pos one. Notice while fixing issue #73823. Change-Id: I53f240bf99d11b5f5082ee4ca0903d9f099881b6 Reviewed-on: https://go-review.googlesource.com/c/go/+/675495 LUCI...
[ { "path": "src/cmd/compile/internal/ir/expr.go", "patch": "@@ -912,12 +912,12 @@ FindRHS:\n \t\t\t\tbreak FindRHS\n \t\t\t}\n \t\t}\n-\t\tbase.Fatalf(\"%v missing from LHS of %v\", n, defn)\n+\t\tbase.FatalfAt(defn.Pos(), \"%v missing from LHS of %v\", n, defn)\n \tdefault:\n \t\treturn nil\n \t}\n \tif rhs...
2025-05-22T13:57:33
kubernetes/kubernetes
97587e951b015e6935001091748029471c2b4566
1b6d0c7c03e3d572d148e97cc93f74c905306195
oidc: fix jwks metric name in comment Signed-off-by: Anish Ramasekar <anish.ramasekar@gmail.com>
[ { "path": "staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc.go", "patch": "@@ -87,7 +87,7 @@ type Options struct {\n \t//\n \t// The following API server metrics for fetching JWKS and provider status will not be recorded if this is set.\n \t// - apiserver_authentication_jwt_authenticat...
2025-10-31T21:28:07
tensorflow/tensorflow
191445381148a62e3784a9b19724bc994fd19b99
489c77747c4b4377b6ed1aa463897fc2c2559d96
[XLA:GPU] Fix usages of deprecated tsl::errors::NotFound in xla This change replaces usages of tsl::errors::NotFound with absl::NotFoundError, wrapping arguments in absl::StrCat where necessary. This addresses deprecation warnings and moves towards standard Abseil error handling. The deprecated tsl::errors::NotFound ...
[ { "path": "third_party/xla/xla/tsl/framework/device_id_manager.cc", "patch": "@@ -15,13 +15,17 @@ limitations under the License.\n \n #include \"xla/tsl/framework/device_id_manager.h\"\n \n+#include <cstdint>\n+#include <string>\n #include <unordered_map>\n+#include <utility>\n #include <vector>\n \n #inclu...
2025-11-25T14:55:14
denoland/deno
fb0241388ebda7d4faff8db882f2e0d071cf15c0
d0910c463d02a11a0c8a0a3ac720f265eb774f57
fix(install): clean-up lock poll file for a more deterministic `node_modules` folder output (#29623) Closes https://github.com/denoland/deno/issues/29619
[ { "path": "resolvers/npm_installer/flag.rs", "patch": "@@ -9,7 +9,7 @@ mod inner {\n use std::sync::Arc;\n use std::time::Duration;\n \n- use deno_unsync::sync::AtomicFlag;\n+ use parking_lot::Mutex;\n use sys_traits::FsFileLock;\n use sys_traits::FsMetadataValue;\n \n@@ -19,6 +19,7 @@ mod inner {...
2025-06-06T16:58:10
swiftlang/swift
5d1f72f5d101daf78e3e74c517f90bea7c501f4d
cbf752e4824a4d8fe9877757e22ae021a15bc36f
[rbi] Treat `alloc_box { let TYPE }` where TYPE is Sendable as Sendable This is safe because: 1. The box can never be written to after initialization due to definite initialization, and that initialization must occur before the box escapes to another isolation domain. 2. We restrict this to immutable boxes containin...
[ { "path": "include/swift/SILOptimizer/Utils/SILIsolationInfo.h", "patch": "@@ -569,21 +569,28 @@ class SILIsolationInfo {\n static SILIsolationInfo getFunctionIsolation(SILFunction *fn);\n \n private:\n- /// A helper that is used to ensure that we treat certain builtin values as\n- /// non-Sendable that...
2025-12-11T21:11:02
mrdoob/three.js
f4a695c408227de4a003a104307703bdc34b14fe
93be1831f04edf38d600c487d962a4777277e86c
WebGPURenderer: Improve Infos logic (#27889) * improve info system on threejs * cleanup and add stats-gl in example external * fix bot warning * remove unused dom
[ { "path": "examples/jsm/renderers/common/Animation.js", "patch": "@@ -18,6 +18,8 @@ class Animation {\n \n \t\t\tthis.requestId = self.requestAnimationFrame( update );\n \n+\t\t\tif ( this.info.autoReset === true ) this.info.reset();\n+\n \t\t\tthis.nodes.nodeFrame.update();\n \n \t\t\tthis.info.frame = thi...
2024-03-13T15:12:25
golang/go
8587ba272ede9b6607ec06822e743db71f3ba563
cae45167b79ec3838f0cabb19394bcd99810f79a
cmd/cgo: compare malloc return value to NULL instead of literal 0 Follow the pattern used in the other _cgoPREFIX_Cfunc* functions. This also avoids a -Wzero-as-null-pointer-constant warning when compiling with g++. Change-Id: I95ac8842df048105f4c738f3603136d9cfa2dfdc Reviewed-on: https://go-review.googlesource.com/c...
[ { "path": "src/cmd/cgo/out.go", "patch": "@@ -1812,7 +1812,7 @@ void _cgoPREFIX_Cfunc__Cmalloc(void *v) {\n \tvoid *ret;\n \t_cgo_tsan_acquire();\n \tret = malloc(a->p0);\n-\tif (ret == 0 && a->p0 == 0) {\n+\tif (ret == NULL && a->p0 == 0) {\n \t\tret = malloc(1);\n \t}\n \ta->r1 = ret;", "additions": 1...
2025-05-28T09:26:17
tensorflow/tensorflow
489c77747c4b4377b6ed1aa463897fc2c2559d96
5aa10c9306a310d0250e9485379d882b57051594
[XLA] Fix UndefinedBehaviorSanitizer `null-pointer-use` issue in `xla_host_send_recv_device_context_test`. PiperOrigin-RevId: 836639198
[ { "path": "tensorflow/compiler/jit/xla_host_send_recv_device_context_test.cc", "patch": "@@ -34,8 +34,12 @@ namespace {\n \n class XlaHostSendRecvDeviceContextTest : public ::testing::Test {\n public:\n- void SetDevice(const string& device_type) {\n+ absl::Status SetDevice(const string& device_type) {\n ...
2025-11-25T14:14:11
mrdoob/three.js
93be1831f04edf38d600c487d962a4777277e86c
f763181aca32b483e50d418228dbc0a93dfaf61e
ShaderNode: Fix cacheMaps.int -> cacheMaps.ints (#27911)
[ { "path": "examples/jsm/nodes/shadernode/ShaderNode.js", "patch": "@@ -555,7 +555,7 @@ addNodeElement( 'append', append );\n export const color = new ConvertType( 'color' );\n \n export const float = new ConvertType( 'float', cacheMaps.float );\n-export const int = new ConvertType( 'int', cacheMaps.int );\n...
2024-03-13T14:26:47
denoland/deno
a2faf237b5c95375f071dd2ba65234f4fe1e99a4
2f5dbe1c87516a81e26aad2658ea9356a49d315c
fix(ext/node): fix addAbortListener (#29634)
[ { "path": "ext/node/polyfills/internal/events/abort_listener.mjs", "patch": "@@ -1,7 +1,7 @@\n // Copyright 2018-2025 the Deno authors. MIT license.\n // Copyright Joyent, Inc. and Node.js contributors. All rights reserved. MIT license.\n \n-import { primordials } from \"ext:deno_node/internal/test/binding....
2025-06-06T12:31:41
swiftlang/swift
8ab9047cbf32813339811209474d460a536b48c6
2d5b4bb3e93f7b501c507337313327dd4a6840bc
Sema: Downgrade more exportability diags to warning by default Centralize the logic downgrading diagnostics to warning for newly introduced exportability checks along with the one silencing the errors. Update client sites to the new API and to uniformly apply the downgrade to warning behavior. Diagnostics about typea...
[ { "path": "lib/Sema/ResilienceDiagnostics.cpp", "patch": "@@ -175,7 +175,8 @@ static bool diagnoseTypeAliasDeclRefExportability(SourceLoc loc,\n auto ignoredDowngradeToWarning = DowngradeToWarning::No;\n auto originKind =\n getDisallowedOriginKind(D, where, ignoredDowngradeToWarning);\n- if (wher...
2026-01-08T22:05:41
golang/go
cae45167b79ec3838f0cabb19394bcd99810f79a
2ddf542e4c30b2d4886482c44b57259f5b461158
go/types, types2: better error messages for certain type mismatches When an untyped operand of a (typically binary) operation does not match the type of the operand and an implicit conversion is not possible, the error message should report a "type mismatch". The type-checkers mostly did so, but not for untyped numer...
[ { "path": "src/cmd/compile/internal/types2/expr.go", "patch": "@@ -895,6 +895,10 @@ func (check *Checker) matchTypes(x, y *operand) {\n \t\tif isTyped(x.typ) && isTyped(y.typ) {\n \t\t\treturn false\n \t\t}\n+\t\t// A numeric type can only convert to another numeric type.\n+\t\tif allNumeric(x.typ) != allNu...
2025-06-18T00:09:27
mrdoob/three.js
4736375b488050dcdef9ba8fc9a3e73e181611df
5ed5417d63e4eeba5087437cc27ab1e3d0813aea
Nodes: Introduce `Node.needsUpdate=true` (#27904) * Background: Fix backgroundNode changed after first renderer * RenderObject: cleanup clippingNeedsUpdate * Nodes: Add `.needsUpdate=true` * Rename _version -> _cacheKeyVersion
[ { "path": "examples/jsm/nodes/core/Node.js", "patch": "@@ -20,12 +20,27 @@ class Node extends EventDispatcher {\n \n \t\tthis.uuid = MathUtils.generateUUID();\n \n+\t\tthis.version = 0;\n+\n+\t\tthis._cacheKey = null;\n+\t\tthis._cacheKeyVersion = 0;\n+\n \t\tthis.isNode = true;\n \n \t\tObject.defineProper...
2024-03-12T15:28:47
denoland/deno
2f5dbe1c87516a81e26aad2658ea9356a49d315c
8e69075889c0569c0736cd856d182c7c26bcecac
fix(ext/node): fix validation of input in setMaxListeners (#29630)
[ { "path": "ext/node/polyfills/_events.mjs", "patch": "@@ -42,6 +42,7 @@ import {\n validateAbortSignal,\n validateBoolean,\n validateFunction,\n+ validateNumber,\n validateString,\n } from \"ext:deno_node/internal/validators.mjs\";\n import { spliceOne } from \"ext:deno_node/_utils.ts\";\n@@ -123,1...
2025-06-06T05:39:03
tensorflow/tensorflow
5aa10c9306a310d0250e9485379d882b57051594
a14f729030cf5f11bb2abbc340c1f8e6c9951578
[XLA:GPU] Return MLIR pipeline status error instead of silently ignoring. PiperOrigin-RevId: 836633403
[ { "path": "third_party/xla/xla/backends/gpu/codegen/emitters/emitter_base.cc", "patch": "@@ -339,8 +339,8 @@ absl::StatusOr<std::unique_ptr<llvm::Module>> EmitterBase::CreateLLVMModule(\n AddLoopTransformationPasses(pm, device);\n AddLoweringPasses(pm, device);\n \n- auto pipeline_status = RunPassPipel...
2025-11-25T13:55:46
golang/go
52b6d7f67af28a4df6665a595e3f35b9875be2b5
1ebebf1cc1c91faa6e7c32bc987dd42f4f3da2e5
runtime: drop NetBSD kernel bug sysmon workaround fixed in NetBSD 9.2 The NetBSD releases supported by the NetBSD project as off today are 9.4 and 10.1. The Go project's NetBSD builders are on 9.3. Thus, it is fine to drop the workaround which was only needed for NetBSD before 9.2. Fixes #46495 Cq-Include-Trybots: l...
[ { "path": "src/runtime/os_netbsd.go", "patch": "@@ -101,9 +101,6 @@ var sigset_all = sigset{[4]uint32{^uint32(0), ^uint32(0), ^uint32(0), ^uint32(0)\n \n // From NetBSD's <sys/sysctl.h>\n const (\n-\t_CTL_KERN = 1\n-\t_KERN_OSREV = 3\n-\n \t_CTL_HW = 6\n \t_HW_NCPU = 3\n \t_HW_PAGESIZE = 7\...
2025-07-11T20:59:10
mrdoob/three.js
22a285ad1339a83356432456293a04ee907b617d
73762aff0488262f18176cd750e455f65a9f0cc5
WebGPURenderer: Add `copyTextureToTexture` support (#27888) * webgpu: add copytexturetotexture support * fix dst texture not update on the gpu
[ { "path": "examples/files.json", "patch": "@@ -361,6 +361,7 @@\n \t\t\"webgpu_portal\",\n \t\t\"webgpu_reflection\",\n \t\t\"webgpu_rtt\",\n+\t\t\"webgpu_materials_texture_partialupdate\",\n \t\t\"webgpu_sandbox\",\n \t\t\"webgpu_shadertoy\",\n \t\t\"webgpu_shadowmap\",", "additions": 1, "deletions"...
2024-03-10T02:22:54
kubernetes/kubernetes
8b2babcbff64ef7368d3187e83029f8100c661c4
d9ddd5c59b0b45a3259ae92826e2167cd1e2760d
PSA: fix lint with older policies Signed-off-by: Peter Hunt <pehunt@redhat.com>
[ { "path": "staging/src/k8s.io/pod-security-admission/policy/check_runAsNonRoot.go", "patch": "@@ -54,7 +54,7 @@ func CheckRunAsNonRoot() Check {\n \t\tVersions: []VersionedCheck{\n \t\t\t{\n \t\t\t\tMinimumVersion: api.MajorMinorVersion(1, 0),\n-\t\t\t\tCheckPod: runAsNonRoot_1_0,\n+\t\t\t\tCheckPod: ...
2025-09-18T20:55:52
denoland/deno
8e69075889c0569c0736cd856d182c7c26bcecac
15beca3f6663dcb7ab1697b6327076df127585f8
fix(ext/node): handle -p flag in spawn, fix "from dependency" check in windows (#29611) This PR updates `op_node_call_is_from_dependency` op, which now detects node_modules path on windows correctly. This PR also updates the handling of `child_process.spawn(process.execPath, ["-p", souceCode])`. It runs the given str...
[ { "path": "ext/node/ops/util.rs", "patch": "@@ -119,7 +119,10 @@ pub fn op_node_call_is_from_dependency<\n let name = script.to_rust_string_lossy(scope);\n if name.starts_with(\"node:\") || name.starts_with(\"ext:\") {\n continue;\n- } else if name.starts_with(\"https:\") || name.contains(\...
2025-06-06T02:53:04
tensorflow/tensorflow
88819fc4bc8d1e02145c781891493a69b7750c42
70f6172dd675e513f50aa8c10adb1641ea9fb55f
PR #34307: Bump ml-dtypes from 0.5.3 to 0.5.4 Imported from GitHub PR https://github.com/openxla/xla/pull/34307 Bumps [ml-dtypes](https://github.com/jax-ml/ml_dtypes) from 0.5.3 to 0.5.4. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/jax-ml/ml_dtypes/releases">ml-dtypes's ...
[ { "path": "third_party/xla/requirements_lock_3_11.txt", "patch": "@@ -29,39 +29,43 @@ numpy==1.24.3 \\\n --hash=sha256:f21c442fdd2805e91799fbe044a7b999b8571bb0ab0f7850d0cb9641a687092b\n lit==17.0.6 \\\n --hash=sha256:dfa9af9b55fc4509a56be7bf2346f079d7f4a242d583b9f2e0b078fd0abae31b\n-ml-dtypes==0.5.3...
2025-11-25T11:13:44
golang/go
1ebebf1cc1c91faa6e7c32bc987dd42f4f3da2e5
6536a9354728523f7ac3627f558ba3f51163e72c
cmd/go: clean should respect workspaces The existing implementation doesn't invoke modload.InitWorkfile during runClean which in turn causes go clean to ignore workspaces and consequentially workspace vendoring. Fixes #74337 Change-Id: I295a1fcc5e81d096971c8cee9c9baa840c7725e7 Reviewed-on: https://go-review.googleso...
[ { "path": "src/cmd/go/internal/clean/clean.go", "patch": "@@ -120,6 +120,7 @@ func init() {\n }\n \n func runClean(ctx context.Context, cmd *base.Command, args []string) {\n+\tmodload.InitWorkfile()\n \tif len(args) > 0 {\n \t\tcacheFlag := \"\"\n \t\tswitch {", "additions": 1, "deletions": 0, "...
2025-06-23T10:39:20
swiftlang/swift
58e514b908f298b5adab02788a98e3d4d07a28c3
0f4790ac7d33f8221c66db64596b192ed0b4345b
Remove incorrect checks while querying opaque access strategy
[ { "path": "lib/AST/Decl.cpp", "patch": "@@ -3314,10 +3314,6 @@ static AccessStrategy getOpaqueReadAccessStrategy(\n return AccessStrategy::getAccessor(AccessorKind::YieldingBorrow, dispatch);\n if (storage->requiresOpaqueReadCoroutine())\n return AccessStrategy::getAccessor(AccessorKind::Read, dis...
2025-12-10T01:14:38
mrdoob/three.js
73762aff0488262f18176cd750e455f65a9f0cc5
1ca587a11a84496bef28a88608e5752b59328536
WebGLRenderer: Fix transmission with nested render calls. (#27886) * WebGLRenderer: Fix transmission with nested render calls. * Update screenshot.
[ { "path": "examples/webxr_vr_sandbox.html", "patch": "@@ -102,15 +102,14 @@\n \t\t\t\t//\n \n \t\t\t\treflector = new Reflector( new THREE.PlaneGeometry( 2, 2 ), {\n-\t\t\t\t\ttextureWidth: window.innerWidth * window.devicePixelRatio,\n-\t\t\t\t\ttextureHeight: window.innerHeight * window.devicePixelRatio\n...
2024-03-09T12:15:12
denoland/deno
15beca3f6663dcb7ab1697b6327076df127585f8
512a0072b187ff9af4fa68d65364391db4bfbbdf
fix(ext/node): update message for `MaxListenersExceededWarning` (#29613)
[ { "path": "ext/node/polyfills/_events.mjs", "patch": "@@ -469,8 +469,8 @@ function _addListener(target, type, listener, prepend) {\n const w = new Error(\n \"Possible EventEmitter memory leak detected. \" +\n `${existing.length} ${String(type)} listeners ` +\n- `added to ${i...
2025-06-06T00:38:26
kubernetes/kubernetes
d9ddd5c59b0b45a3259ae92826e2167cd1e2760d
e8bd3f629d435797c586726d3b76fd90d7b5bf08
Allow PSA pass scenarios to be informed by the policy level As well as fix procMount restricted test
[ { "path": "staging/src/k8s.io/pod-security-admission/test/fixtures.go", "patch": "@@ -183,9 +183,9 @@ type fixtureGenerator struct {\n \t// Pass cases are not allowed to be feature-gated (pass cases must only depend on data existing in GA fields).\n \tfailRequiresFeatures []featuregate.Feature\n \n-\t// gen...
2025-09-18T15:36:17
golang/go
6536a9354728523f7ac3627f558ba3f51163e72c
efc37e97c0f358f3cffe7ca2b78c743470345189
encoding/json/jsontext: preserve buffer capacity in Decoder.Reset The Decoder.Reset method is not preserving the internal buffer between resets, causing buffer capacity to be lost and resulting in unnecessary allocations when reusing decoders. This is particularly problematic when decoding many small messages. This c...
[ { "path": "src/encoding/json/jsontext/decode.go", "patch": "@@ -138,7 +138,14 @@ func (d *Decoder) Reset(r io.Reader, opts ...Options) {\n \tcase d.s.Flags.Get(jsonflags.WithinArshalCall):\n \t\tpanic(\"jsontext: cannot reset Decoder passed to json.UnmarshalerFrom\")\n \t}\n-\td.s.reset(nil, r, opts...)\n+\...
2025-06-23T11:47:21
mrdoob/three.js
1dd2f398e1660506a6aef5ed8eb5af73cca8b6f8
f9e584866cc0bb8d5c4da9167e75111c34b043ab
Examples: Correction to texture colorspace in webgpu parallax example (#27874) * fix(examples): Correction to texture colorspace in webgpu parallax example * update screenshot ---------
[ { "path": "examples/webgpu_parallax_uv.html", "patch": "@@ -68,13 +68,13 @@\n \t\t\t\ttopTexture.colorSpace = THREE.SRGBColorSpace;\n \n \t\t\t\tconst roughnessTexture = loader.load( 'textures/ambientcg/Ice002_1K-JPG_Roughness.jpg' );\n-\t\t\t\troughnessTexture.colorSpace = THREE.SRGBColorSpace;\n+\t\t\t\tr...
2024-03-06T00:18:36
tensorflow/tensorflow
6422a9f8b634e34f3f8fa5609395d33d1fac6d9e
90d9f71319e908ffc9aef290ff2e7c4ad520b7b1
Remove kTritonScaledDotFusionKind. This change removes the `kTritonScaledDotFusionKind` and replaces it with `kTritonNestedGemmFusionKind`. Also fixes lint issues and compilation errors in symbolic_tile_analysis.cc and fusion_emitter.cc related to nested fusion support. PiperOrigin-RevId: 836581986
[ { "path": "third_party/xla/xla/backends/gpu/codegen/triton/fusion.cc", "patch": "@@ -102,7 +102,6 @@ TritonFusion::GenerateTritonKernelAndWrapper(\n \n if (fusion_kind == kTritonFusionKind ||\n fusion_kind == kTritonNestedGemmFusionKind ||\n- fusion_kind == kTritonScaledDotFusionKind ||\n ...
2025-11-25T10:46:31
swiftlang/swift
b99b2ee2b233955c4b3b174a1e22021bd49ee68a
2b5f941930d8b2d68edbadb830cab5386efd5214
Remove assert that isn't fully established Fixes rdar://164495210
[ { "path": "lib/SIL/IR/SILFunction.cpp", "patch": "@@ -443,7 +443,6 @@ bool SILFunction::hasForeignBody() const {\n }\n \n void SILFunction::setAsmName(StringRef value) {\n- ASSERT((AsmName.empty() || value == AsmName) && \"Cannot change asmname\");\n AsmName = value;\n \n if (!value.empty()) {", "a...
2026-01-20T18:07:21
denoland/deno
22a615c7eb3dc2410783bb4991431102f7f5e15a
cc6baf4446acaaf64cf62422252376e655616055
fix(ext/node): ignore `parallel/test-eventsource-disabled.js` test (#29618) EventSource web API is always available in Deno Towards https://github.com/denoland/deno/issues/29595
[ { "path": "tests/node_compat/run_all_test_unmodified.ts", "patch": "@@ -71,6 +71,7 @@ const NODE_IGNORED_TEST_DIRS = [\n 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 no...
2025-06-05T12:06:59
kubernetes/kubernetes
c69259cb7134d4e4ce7521c052ce5ff1729e2eca
e5fcd20a26452a465f22967679f9068d13d5f9ff
DRA device taints: switch to workqueue in controller The approach copied from node taint eviction was to fire off one goroutine per pod the intended time. This leads to the "thundering herd" problem: when a single taint causes eviction of several pods and those all have no or the same toleration grace period, then the...
[ { "path": "pkg/controller/devicetainteviction/device_taint_eviction.go", "patch": "@@ -48,6 +48,7 @@ import (\n \tresourcealphalisters \"k8s.io/client-go/listers/resource/v1alpha3\"\n \t\"k8s.io/client-go/tools/cache\"\n \t\"k8s.io/client-go/tools/record\"\n+\t\"k8s.io/client-go/util/workqueue\"\n \t\"k8s.i...
2025-10-24T08:09:24
mrdoob/three.js
50f7daa58201317970f72abc33234c0c022afc3e
7e74e4cc6458005ea9a4c3176f933c33bde17e72
Update WebGLRenderer.js Fix typo.
[ { "path": "src/renderers/WebGLRenderer.js", "patch": "@@ -1419,7 +1419,7 @@ class WebGLRenderer {\n \t\t\t\t\ttype: ( extensions.has( 'EXT_color_buffer_half_float' ) || extensions.has( 'EXT_color_buffer_float' ) ) ? HalfFloatType : UnsignedByteType,\n \t\t\t\t\tminFilter: LinearMipmapLinearFilter,\n \t\t\t\...
2024-03-05T08:48:54
tensorflow/tensorflow
df427e4f26ad7631f54ee46a896c720e90ad2a75
44292ab9cc81e39a04b7dee416209c969cf532a9
PR #34156: [ROCm] Add missing dependencies to header file Imported from GitHub PR https://github.com/openxla/xla/pull/34156 📝 Summary of Changes The `rocm_config` bazel target has been included in the `rocm_headers` targets to avoid having to manage the dependency to `rocm_config` target independently when `rocm/roc...
[ { "path": "third_party/xla/third_party/gpus/rocm/BUILD.tpl", "patch": "@@ -94,6 +94,7 @@ cc_library(\n deps = [\n \":rocm_headers_includes\",\n \":rocm_rpath\",\n+ \":rocm_config\",\n ],\n )\n ", "additions": 1, "deletions": 0, "language": "Unknown" }, { "p...
2025-11-25T10:08:41
swiftlang/swift
6047de172f018a063791e65deb02cf80db440d68
f670da8cd8e9e7db3a60b97674b9f1dc4274d5e3
Sema: Add a pair of scale-tests not1 is only fast on accident -- no disjunction scores are assigned, because we do not consider result type matching when scoring non-operator disjunctions. We should fix this! not2 is fast because we do consider parameter types, so we score disjunctions and solve the innermost one fir...
[ { "path": "validation-test/Sema/type_checker_perf/fast/not1.swift.gyb", "patch": "@@ -0,0 +1,20 @@\n+// RUN: %scale-test --begin 1 --end 10 --step 1 --select NumLeafScopes %s\n+// REQUIRES: tools-release,no_asan,asserts\n+\n+struct T {}\n+struct F {}\n+\n+func not(_: T) -> F { fatalError() }\n+func not(_: F...
2026-01-20T17:24:12
denoland/deno
cc6baf4446acaaf64cf62422252376e655616055
ea4506c6576c01c1a17942a6249a80076764b485
fix(lsp): use canonicalized fallback filesystem root (#29566)
[ { "path": "cli/lsp/config.rs", "patch": "@@ -2026,11 +2026,14 @@ impl ConfigTree {\n let pkg_json_cache = PackageJsonMemCache::default();\n let workspace_cache = WorkspaceMemCache::default();\n let mut scopes = BTreeMap::new();\n- for (folder_url, ws_settings) in\n- settings.by_workspace...
2025-06-05T10:41:26
mrdoob/three.js
3941fd4b53e9724cc2a73d91b9be6d625e6c7c4b
b09f60e837888ae4595a527078d77530ae8e50d2
WebGLRenderer: Check for `EXT_color_buffer_float` for transmission. (#27761) * fix: some feature need webgl extension * chore: revert code * chore: revert code * chore: remove webgl1 * chore: remove webgl1
[ { "path": "src/renderers/WebGLRenderer.js", "patch": "@@ -1416,7 +1416,7 @@ class WebGLRenderer {\n \n \t\t\t\t_transmissionRenderTarget = new WebGLRenderTarget( 1, 1, {\n \t\t\t\t\tgenerateMipmaps: true,\n-\t\t\t\t\ttype: extensions.has( 'EXT_color_buffer_half_float' ) ? HalfFloatType : UnsignedByteType,\n...
2024-03-04T10:11:51
golang/go
efc37e97c0f358f3cffe7ca2b78c743470345189
98a031193b93d7b0e8353810351c9544250e7bcd
cmd/go: always return the cached path from go tool -n If we're running go tool -n always return the cached path of the tool. We can't always use the cached path when running the tool because if we copied the tool to the cached location in the same process and then try to run it we'll run into #22315, producing spuriou...
[ { "path": "src/cmd/go/internal/tool/tool.go", "patch": "@@ -277,6 +277,29 @@ func loadModTool(ctx context.Context, name string) string {\n \treturn \"\"\n }\n \n+func builtTool(runAction *work.Action) string {\n+\tlinkAction := runAction.Deps[0]\n+\tif toolN {\n+\t\t// #72824: If -n is set, use the cached p...
2025-07-18T18:14:16
tensorflow/tensorflow
48deb1360ca74278b7605310bbee4a49b2f5197a
e891556cd5941c6cdf68d4bef18cfb383482492a
PR #34303: Bump github/codeql-action from 4.31.2 to 4.31.5 Imported from GitHub PR https://github.com/openxla/xla/pull/34303 Bumps [github/codeql-action](https://github.com/github/codeql-action) from 4.31.2 to 4.31.5. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/github/co...
[ { "path": "third_party/xla/.github/workflows/scorecards-analysis.yml", "patch": "@@ -67,6 +67,6 @@ jobs:\n # Upload the results to GitHub's code scanning dashboard (optional).\n # Commenting out will disable upload of results to your repo's Code Scanning dashboard\n - name: \"Upload to cod...
2025-11-25T09:50:10
kubernetes/kubernetes
e4dda7b282e7bb781e43d17fb9e690d5bab39570
fee14ffca2099b2d7a0bfc5761691b363eac4de1
DRA device taints: fix DeviceTaintRule + missing slice case When the ResourceSlice no longer exists, the ResourceSlice tracker didn't and couldn't report the tainted devices even if they are allocated and in use. The controller must keep track of DeviceTaintRules itself and handle this scenario. In this scenario it i...
[ { "path": "pkg/apis/resource/types.go", "patch": "@@ -1918,13 +1918,6 @@ type DeviceTaintRuleSpec struct {\n // The empty selector matches all devices. Without a selector, no devices\n // are matched.\n type DeviceTaintSelector struct {\n-\t// If DeviceClassName is set, the selectors defined there must be\n...
2025-10-23T16:05:38
denoland/deno
5039ce8e3272bc681ca43ebc5dffa2c2e7fa7509
eb97f51dada4872db6885ad01b1fa64b3cc21362
fix(ext/node): fix `Buffer.inspect` compatiblity (#29617) Enables `parallel/test-buffer-inspect.js` Towards #29589
[ { "path": "ext/node/polyfills/internal/buffer.mjs", "patch": "@@ -15,6 +15,7 @@ const {\n ArrayBufferPrototypeGetDetached,\n ArrayIsArray,\n ArrayPrototypeSlice,\n+ ArrayPrototypeForEach,\n BigInt,\n DataViewPrototypeGetByteLength,\n Float32Array,\n@@ -36,6 +37,7 @@ const {\n String,\n Stri...
2025-06-05T09:14:06
mrdoob/three.js
b09f60e837888ae4595a527078d77530ae8e50d2
1f5454f983da3b632fbc9a7373930e0dfe6dddb7
Manual: Fix GPU picking demo. (#27866) * Manual: Fix GPU picking demo. * Update picking-gpu.html
[ { "path": "manual/en/picking.html", "patch": "@@ -279,7 +279,7 @@ <h1>Picking</h1>\n cube.scale.set(rand(3, 6), rand(3, 6), rand(3, 6));\n \n + const pickingMaterial = new THREE.MeshPhongMaterial({\n-+ emissive: new THREE.Color(id),\n++ emissive: new THREE.Color().setHex(id, THREE.NoColorSpace),\n ...
2024-03-04T09:06:56
golang/go
98a031193b93d7b0e8353810351c9544250e7bcd
6bb42997c8741f301f2655175abe2b6bdc943ed8
runtime: check TestUsingVDSO ExitError type assertion Currently this test panics if the error is not an ExitError. We aren't expecting other errors, but we want to continue to the t.Fatal so the error contents actually get logged. For #74672. Change-Id: I6a6a636cee5ddac500ed7ec549340b02944101ab Reviewed-on: https://...
[ { "path": "src/runtime/vdso_test.go", "patch": "@@ -62,7 +62,7 @@ func TestUsingVDSO(t *testing.T) {\n \t\tt.Logf(\"%s\", out)\n \t}\n \tif err != nil {\n-\t\tif err := err.(*exec.ExitError); err != nil && err.Sys().(syscall.WaitStatus).Signaled() {\n+\t\tif err, ok := err.(*exec.ExitError); ok && err.Sys()...
2025-07-23T20:56:50
denoland/deno
426e3e72281e56b8969045200db46a7496a2d3ff
104084876c49136ab41e70187f503539dd4d55f3
fix(ext/node): Buffer.fill compatibility fixes (#29525) Enables `parallel/test-buffer-fill.js` Towards https://github.com/denoland/deno/issues/29589
[ { "path": "ext/node/polyfills/internal/buffer.mjs", "patch": "@@ -85,7 +85,10 @@ import {\n validateBuffer,\n validateInteger,\n } from \"ext:deno_node/internal/validators.mjs\";\n-import { isUint8Array } from \"ext:deno_node/internal/util/types.ts\";\n+import {\n+ isArrayBufferView,\n+ isUint8Array,\...
2025-06-05T07:59:44
tensorflow/tensorflow
256c4fa3a60dd729bb9885ada28a693a21de17cd
59e2d85458f590888cd627392eb8eaf88f6ed113
[XLA:LHS] Fix minor issues: - `computed_memory_increases` should be initialized to false. - `ready_chosen_orig` and `ready_candidate_orig` do not have `has_pressure_change` set, because `MaybeUpdate` will modify `ready_chosen` and `ready_candidate`. We should use those instead. No need to save the originals. - Remove `...
[ { "path": "third_party/xla/xla/service/latency_hiding_scheduler.cc", "patch": "@@ -1307,7 +1307,7 @@ class ReadySetLt {\n \n std::pair<int64_t, int64_t> a_increase = {0, 0};\n std::pair<int64_t, int64_t> b_increase = {0, 0};\n- bool computed_memory_increases = true;\n+ bool computed_memory_inc...
2025-11-24T19:25:09
golang/go
71c2bf551303930faa32886446910fa5bd0a701a
c74399e7f5e763e6c25978d090122a0a73a695ee
cmd/compile: fix loclist for heap return vars without optimizations When compiling without optimizations certain variables such as return params end up missing location lists. Fixes #65405 Change-Id: Id4ec6b1ab6681fd77b8fefb47a4ec05060c128ef GitHub-Last-Rev: 5ab6a5398162119dd0cd5325f4239b4559b030bd GitHub-Pull-Reque...
[ { "path": "src/cmd/compile/internal/dwarfgen/dwarf.go", "patch": "@@ -248,11 +248,6 @@ func createDwarfVars(fnsym *obj.LSym, complexOK bool, fn *ir.Func, apDecls []*ir\n \t\tif n.Class == ir.PPARAM || n.Class == ir.PPARAMOUT {\n \t\t\ttag = dwarf.DW_TAG_formal_parameter\n \t\t}\n-\t\tif n.Esc() == ir.EscHea...
2025-07-22T22:05:06
denoland/deno
104084876c49136ab41e70187f503539dd4d55f3
97a38fa584891d8a9f913e59a591708be7de21a9
fix(ext/node): mark pool `ArrayBuffer` as untransferable (#29612) Enables `parallel/test-buffer-pool-untransferable.js` Towards https://github.com/denoland/deno/issues/29589
[ { "path": "ext/node/polyfills/internal/buffer.mjs", "patch": "@@ -99,6 +99,7 @@ import {\n } from \"ext:deno_web/00_infra.js\";\n import { atob, btoa } from \"ext:deno_web/05_base64.js\";\n import { Blob } from \"ext:deno_web/09_file.js\";\n+import { untransferableSymbol } from \"ext:deno_node/internal_bind...
2025-06-05T06:14:48
golang/go
c74399e7f5e763e6c25978d090122a0a73a695ee
4ed9943b264170b11af375f9cc82807516578c77
net: correct comment for ListenConfig.ListenPacket Fixes #74634 Change-Id: I21196c4aef1b717bfda0b54e61b35e83cfa9dc1b Reviewed-on: https://go-review.googlesource.com/c/go/+/689075 Reviewed-by: Sean Liao <sean@liao.dev> Auto-Submit: Sean Liao <sean@liao.dev> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accou...
[ { "path": "src/net/dial.go", "patch": "@@ -837,7 +837,7 @@ func (lc *ListenConfig) Listen(ctx context.Context, network, address string) (Li\n // parameters.\n //\n // The ctx argument is used while resolving the address on which to listen;\n-// it does not affect the returned Listener.\n+// it does not affe...
2025-07-20T23:20:11
swiftlang/swift
9dc8205aa93609836a9cacfe73436c2f0e6f6a4d
e0db5152d4d4d0fd06cf2855331c4666372b6933
[Concurrency] Turn off custom executors for 6.2 targets. While I'd already updated the availability of the APIs, I hadn't fixed the feature availability, so the compiler might have tried to use the custom executors entry point when building async main. rdar://168507128
[ { "path": "include/swift/AST/FeatureAvailability.def", "patch": "@@ -80,10 +80,10 @@ FEATURE(IsolatedDeinit, (6, 1))\n \n FEATURE(ValueGenericType, (6, 2))\n FEATURE(InitRawStructMetadata2, (6, 2))\n-FEATURE(CustomGlobalEx...
2026-01-20T16:55:39
tensorflow/tensorflow
59e2d85458f590888cd627392eb8eaf88f6ed113
2e00293113d1d5b9359d2a4c8d874c8095626a13
PR #34049: [ROCm] Add support for rocm tar/wheels in hermetic builds Imported from GitHub PR https://github.com/openxla/xla/pull/34049 📝 Summary of Changes Add support for python wheels as a hermetic rocm dependency 🎯 Justification Jax requires python wheels as a hermetic dependency so it can match the wheels when...
[ { "path": "third_party/xla/tensorflow.bazelrc", "patch": "@@ -287,9 +287,9 @@ common:rocm_clang_official --host_linkopt=\"-fuse-ld=lld\"\n common:rocm --config=rocm_clang_official\n common:rocm_ci --config=rocm\n \n+common:rocm_ci_hermetic --dynamic_mode=off\n common:rocm_ci_hermetic --config=rocm_clang_off...
2025-11-24T18:54:37
denoland/deno
97a38fa584891d8a9f913e59a591708be7de21a9
8b81644b59d78cb655b07eb09d6355eb69d1b04b
fix(coverage): `deno test --coverage` fails when importing modules from `data:` urls (#29607)
[ { "path": "cli/tools/coverage/mod.rs", "patch": "@@ -576,6 +576,7 @@ fn filter_coverages(\n .into_iter()\n .filter(|e| {\n let is_internal = e.url.starts_with(\"ext:\")\n+ || e.url.starts_with(\"data:\")\n || e.url.ends_with(\"__anonymous__\")\n || e.url.ends_with(\"$den...
2025-06-05T04:42:10
golang/go
d5ec0815e69175d93bb741e9bb0a55b919facc6d
f7cc61e7d7f77521e073137c6045ba73f66ef902
runtime: relax TestMemoryLimitNoGCPercent a bit It seems to be pretty flaky. I've seen: retained=289438024 limit=268435456 bound=285212672 Which is ~4MB over the bound. Not sure why this tends to be darwin-specific, but we'll fix just darwin for now. (It isn't quite darwin-only, as it appeared in #66893. But ...
[ { "path": "src/runtime/testdata/testprog/gc.go", "patch": "@@ -395,6 +395,9 @@ func gcMemoryLimit(gcPercent int) {\n \t\t// somewhat heavily here) this bound is kept loose. In practice the Go runtime\n \t\t// should do considerably better than this bound.\n \t\tbound := int64(myLimit + 16<<20)\n+\t\tif runt...
2025-07-21T20:37:27
mrdoob/three.js
12664a6daad59804250d29d5819f7afd8b5ea808
a70ef1ffd8b9b6a447a3a8c7ce7e6b49416b0a2d
WebGLProgram: Fix `sampler2DArray` precision. (#27854)
[ { "path": "src/renderers/webgl/WebGLProgram.js", "patch": "@@ -870,14 +870,12 @@ function WebGLProgram( renderer, cacheKey, parameters, bindingStates ) {\n \n \t\tprefixVertex = [\n \t\t\tcustomVertexExtensions,\n-\t\t\t'precision mediump sampler2DArray;',\n \t\t\t'#define attribute in',\n \t\t\t'#define va...
2024-03-01T10:07:32
denoland/deno
8b81644b59d78cb655b07eb09d6355eb69d1b04b
1e6aca57e8e596dc62571607761885ab2fc356ee
fix(ext/node): enable `Buffer` pool for strings (#29592) Part 1 towards enabling `parallel/test-buffer-pool-untransferable.js`
[ { "path": "ext/node/polyfills/_http_outgoing.ts", "patch": "@@ -550,7 +550,7 @@ Object.defineProperties(\n if (data instanceof Buffer) {\n data = new Uint8Array(data.buffer, data.byteOffset, data.byteLength);\n }\n- if (data.buffer.byteLength > 0) {\n+ if (data.byteLength > 0) ...
2025-06-05T03:04:32
golang/go
f7cc61e7d7f77521e073137c6045ba73f66ef902
5dac42363ba8281a3f4f08e03af2292b763adc38
cmd/compile: for arm64 epilog, do SP increment with a single instruction That way, the frame is atomically popped. Previously, for big frames the SP was unwound in two steps (because arm64 can only add constants up to 1<<12 in a single instruction). Fixes #73259 Change-Id: I382c249194ad7bc9fc19607c27487c58d90d49e5 R...
[ { "path": "src/cmd/internal/obj/arm64/obj7.go", "patch": "@@ -907,18 +907,49 @@ func preprocess(ctxt *obj.Link, cursym *obj.LSym, newprog obj.ProgAlloc) {\n \t\t\t\tp.To.Reg = REGFP\n \t\t\t\tp.To.Offset = REGLINK\n \n-\t\t\t\t// ADD $aoffset, RSP, RSP\n-\t\t\t\tq = newprog()\n-\t\t\t\tq.As = AADD\n-\t\t\t\...
2025-07-21T17:09:35
tensorflow/tensorflow
75f7de78fa7984503f9f3ed715e1878cb473aad2
3a12588ef9d47c8cf89b2470837cc7e61fb9e2c7
PR #34316: [XLA:GPU] Add debug code to profile command buffer's memory types Imported from GitHub PR https://github.com/openxla/xla/pull/34316 📝 Summary of Changes This PR add debug code to profile command buffer's memory allocation types. 🎯 Justification We want to profile the memory allocations types for a comma...
[ { "path": "third_party/xla/xla/backends/gpu/runtime/command_buffer_cmd.cc", "patch": "@@ -491,6 +491,60 @@ absl::Status CommandBufferCmdExecutor::Record(\n } else {\n auto* create = std::get_if<CommandBufferCmd::RecordCreate>(&record_action);\n CHECK(create);\n+\n+ if (VLOG_IS_ON(5) &&\n+ ...
2025-11-24T18:42:58
mrdoob/three.js
6f0ad3625bfd75a41364bed48f0273a6984efdb5
c3fb29db61c4d6d1560b84f02f467a5e265d93df
Editor: Fixed pathtracer background blurriness. (#27852)
[ { "path": "editor/js/Viewport.Pathtracer.js", "patch": "@@ -49,7 +49,6 @@ function ViewportPathtracer( renderer ) {\n \n \t\t}\n \n-\t\tpathtracer.material.backgroundBlur = scene.backgroundBlurriness;\n \t\tpathtracer.reset();\n \n \t\tconst { bvh, textures, materials, lights } = generator.generate( scene )...
2024-03-01T07:00:37
swiftlang/swift
50a803583bc6c841a9b161b120fb5d621829d0b4
2f39e58b77e585fbd6522e1c529adc52366f510a
Cleanup debug logging
[ { "path": "lib/SILGen/SILGenExpr.cpp", "patch": "@@ -1620,34 +1620,9 @@ needsCustomConversion(CollectionUpcastConversionExpr::ConversionPair const & pai\n case ExprKind::DestructureTuple: {\n return false;\n }\n- case ExprKind::Load:\n- case ExprKind::ABISafeConversio...
2026-01-06T10:04:17
golang/go
f0e9dc09752cc2f03fcedff458660ab2276bcf8d
03a3887f31264e778c9aaf62247a478eedd3633d
[dev.simd] cmd/compile: fix opLen(2|3)Imm8_2I intrinsic function This function reads the const from the wrong arg, this CL fixes it. Change-Id: Icd38977a35f0df9064efb290fa6390453d6b9e5b Reviewed-on: https://go-review.googlesource.com/c/go/+/688595 Reviewed-by: David Chase <drchase@google.com> LUCI-TryBot-Result: Go L...
[ { "path": "src/cmd/compile/internal/ssagen/intrinsics.go", "patch": "@@ -1722,7 +1722,7 @@ func opLen3Imm8(op ssa.Op, t *types.Type, offset int) func(s *state, n *ir.CallE\n \n func opLen2Imm8_2I(op ssa.Op, t *types.Type, offset int) func(s *state, n *ir.CallExpr, args []*ssa.Value) *ssa.Value {\n \treturn ...
2025-07-17T22:23:15
kubernetes/kubernetes
05f5051be3a6da3c9d0f21014c0746112f0d8b71
279f214cc5a2f29ec8bcadb2b0706f25fa8fdd92
kubelet/userns: Print podUID on errors We recently received this bug report: #132966. The issue seems to be that the new range configured doesn't work for existing pods on the node, and therefore the kubelet fails to start. While I'll also improve the documentation to mention you need to drain the node, let's also im...
[ { "path": "pkg/kubelet/userns/userns_manager.go", "patch": "@@ -186,7 +186,7 @@ func MakeUserNsManager(logger klog.Logger, kl userNsPodsManager, idsPerPod *int6\n \tfor _, podUID := range found {\n \t\tlogger.V(5).Info(\"reading pod from disk for user namespace\", \"podUID\", podUID)\n \t\tif err := m.recor...
2025-07-18T08:43:56
denoland/deno
1e6aca57e8e596dc62571607761885ab2fc356ee
5bd9a337c1da8c7cad22c7760c02f80314021eea
fix(ext/node): pass node.js specific flags via NODE_OPTIONS env var in spawn (#29600) This commit changes the interpretation of command line args when `child_process.spawn` is called with `Deno.execPath()` executable. We modify cli args for `spawn(process.execPath, ...)` call to simulate Node.js cli. This commit adds...
[ { "path": "ext/node/polyfills/internal/child_process.ts", "patch": "@@ -259,6 +259,7 @@ export class ChildProcess extends EventEmitter {\n command,\n args || [],\n shell,\n+ env,\n );\n this.spawnfile = cmd;\n this.spawnargs = [cmd, ...cmdArgs];\n@@ -881,10 +882,22 @@ func...
2025-06-05T01:38:34
tensorflow/tensorflow
782b3a3f11b87680b13ce574fecec864dbc9c6ea
1656bc237f1fe077f7e08df4b03cb4651ba0c950
PR #34163: [GPU] Make cuDNN GEMM backend aware of dot algorithms. Imported from GitHub PR https://github.com/openxla/xla/pull/34163 📝 Summary of Changes Makes the cuDNN backend respect dot algorithms - for now failing on any non-default one requested. 🚀 Kind of Contribution 🐛 Bug Fix 🧪 Unit Tests: yes 🧪 Execu...
[ { "path": "third_party/xla/xla/backends/gpu/codegen/cudnn_test.cc", "patch": "@@ -559,6 +559,24 @@ ENTRY e {\n })\"));\n }\n \n+TEST_F(CuDnnFusionExecutionTest, NonDefaultDotAlgorithmIsNotSupported) {\n+ EXPECT_FALSE(Run(R\"(\n+fusion1 {\n+ a = bf16[32,96] parameter(0)\n+ b = bf16[96,64] parameter(1)\n+ ...
2025-11-24T17:26:54
golang/go
5dac42363ba8281a3f4f08e03af2292b763adc38
e5502e0959bb54ec70ca500e8d2b6f5ac5efbc53
runtime: fix asan wrapper for riscv64 Make sure we keep the M in X21. The instruction at line 87 needs to be loading from the M, not from the gsignal. Fixes #73979, maybe? Change-Id: I3aba1c35454636138b305bca26e20dbc8e6b1d6e Reviewed-on: https://go-review.googlesource.com/c/go/+/688975 Reviewed-by: Joel Sing <joel@s...
[ { "path": "src/runtime/asan_riscv64.s", "patch": "@@ -81,13 +81,13 @@ TEXT\tasancall<>(SB), NOSPLIT, $0-0\n \tMOV\tg_m(g), X21\n \n \t// Switch to g0 stack if we aren't already on g0 or gsignal.\n-\tMOV\tm_gsignal(X21), X21\n-\tBEQ\tX21, g, call\n+\tMOV\tm_gsignal(X21), X22\n+\tBEQ\tX22, g, call\n \n-\tMOV\...
2025-07-19T16:34:04
mrdoob/three.js
12b08b230c36c5fc4b03aed61dc5b8bc6be5f328
ef80ac74e6716a50104a57d8add6c8a950bff8d7
WebGPURenderer: PMREM (#27829) * WebGPURenderer: PMREM (WIP) * add temporary example * Added fromCubemap() * added pmrem and examples * cleanup * fix circular dependency * Revert "fix circular dependency" This reverts commit 83d68820b4a4b615124cc8292498f8929875083c. * update pmrem examples *...
[ { "path": "examples/files.json", "patch": "@@ -372,6 +372,9 @@\n \t\t\"webgpu_tsl_editor\",\n \t\t\"webgpu_tsl_transpiler\",\n \t\t\"webgpu_video_panorama\",\n+\t\t\"webgpu_pmrem_cubemap\",\n+\t\t\"webgpu_pmrem_equirectangular\",\n+\t\t\"webgpu_pmrem_scene\",\n \t\t\"webgpu_postprocessing_afterimage\",\n \t...
2024-02-29T21:00:53
denoland/deno
5bd9a337c1da8c7cad22c7760c02f80314021eea
cdd09fff20991283fb848c07a76791e0af45f1d4
fix(ext/node): use primordials in `ext/node/polyfills/internal/console/constructor.mjs` (#29605) Towards #24236. Replaces JS builtins with equivalent primordials.
[ { "path": "ext/node/polyfills/internal/console/constructor.mjs", "patch": "@@ -1,10 +1,53 @@\n // Copyright 2018-2025 the Deno authors. MIT license.\n // Copyright Joyent and Node contributors. All rights reserved. MIT license.\n \n-// TODO(petamoriken): enable prefer-primordials for node polyfills\n-// den...
2025-06-04T23:12:58
swiftlang/swift
e9ddb3f945ec7e0464f70de3e905398030f5cfaf
e861e712079b0892ebb21bc7171a52cd537bf766
Fixed overly optimistic optimization of checked cast into unchecked one for function types
[ { "path": "lib/SIL/Utils/DynamicCasts.cpp", "patch": "@@ -656,6 +656,9 @@ swift::classifyDynamicCast(SILFunction *function,\n // Function casts.\n if (auto sourceFunction = dyn_cast<FunctionType>(source)) {\n if (auto targetFunction = dyn_cast<FunctionType>(target)) {\n+ // Note that this logic...
2025-10-24T07:09:23
tensorflow/tensorflow
5fd26009dc7b3c809df4b8bb508fdc92b111e843
1b4c8a955619f4b85f6eed7eb6f24e2e182e3403
PR #34309: [XLA:GPU] Bump cuDNN version for block scaled dot support to 9.10 Imported from GitHub PR https://github.com/openxla/xla/pull/34309 📝 Summary of Changes Fixes CUDNN_STATUS_EXECUTION_FAILED_CUBLAS issue in multithreaded environment (multi-GPU) The `collective_ops_e2e_test` on multi-GPU Blackwell fails wit...
[ { "path": "third_party/xla/xla/service/gpu/transforms/block_scaling_rewriter.h", "patch": "@@ -25,7 +25,7 @@ limitations under the License.\n \n namespace xla::gpu {\n \n-const se::dnn::VersionInfo kCudnnSupportsBlockScaledDot(9, 7);\n+const se::dnn::VersionInfo kCudnnSupportsBlockScaledDot(9, 10);\n const ...
2025-11-24T15:50:23
mrdoob/three.js
bafd714420b6c84e1453aec2a9eec4a9d60d92a2
ae1475f6b14ab3ea6d83ada67b162c90837cf13b
TSL: Fix tslFn generate in isolated cache (#27844)
[ { "path": "examples/jsm/nodes/code/CodeNode.js", "patch": "@@ -16,6 +16,12 @@ class CodeNode extends Node {\n \n \t}\n \n+\tisGlobal() {\n+\n+\t\treturn true;\n+\n+\t}\n+\n \tsetIncludes( includes ) {\n \n \t\tthis.includes = includes;", "additions": 6, "deletions": 0, "language": "JavaScript" ...
2024-02-29T05:58:11
golang/go
e5502e0959bb54ec70ca500e8d2b6f5ac5efbc53
2363897932cfb279dd8810d2c92438f7ddcfd951
cmd/go: check subcommand properties This change corrects the properties checked by Lookup. We were inspecting the properties of the Command receiver; now we are inspecting the properties of the subcommand. Fixes #73864. Change-Id: Ieb462e489fc4f8f0568aa3a2d404b322d627166c Reviewed-on: https://go-review.googlesource...
[ { "path": "src/cmd/go/internal/base/base.go", "patch": "@@ -62,11 +62,11 @@ var Go = &Command{\n // Lookup returns the subcommand with the given name, if any.\n // Otherwise it returns nil.\n //\n-// Lookup ignores subcommands that have len(c.Commands) == 0 and c.Run == nil.\n+// Lookup ignores any subcomma...
2025-05-30T21:59:34
swiftlang/swift
cb33d6da475ac6c4c9a8b80d69a379b49f978662
f82cf1ebfb522ea8de3b6e871c4950fad378d683
[swift] Fix DebugInfo tests to account for CoroSplit changes After 9ff29a89020e in llmv-project, the async frame ptr is stored in an alloca in entry funclets.
[ { "path": "test/DebugInfo/async-args.swift", "patch": "@@ -10,9 +10,15 @@ func forceSplit() async {\n func withGenericArg<T>(_ msg: T) async {\n // This odd debug info is part of a contract with CoroSplit/CoroFrame to fix\n // this up after coroutine splitting.\n- // CHECK-LABEL: {{^define .*}} @\"$s1M...
2026-01-20T12:20:14
tensorflow/tensorflow
8e66401e3fa5cae0ef9790ad7d2276167a22dee5
247b0cf254fbbf3d326feed3820ec24503a353a5
Fix OSS build failure. Internally we build with C++20 but C++17 is used for OSS. It seems that `PayloadSizeAndAlign(size, align)` is not legal under C++17 but `PayloadSizeAndAlign{size, align}` is. PiperOrigin-RevId: 836219487
[ { "path": "third_party/xla/xla/backends/profiler/gpu/cupti_nvtx_ext_payload.cc", "patch": "@@ -281,8 +281,10 @@ const std::vector<PayloadSizeAndAlign>& PredefinedPayloadTypes() {\n // The first element in fact defines the length of the info array.\n global_data->reserve(payload_type_info->size);\n ...
2025-11-24T15:33:12
mrdoob/three.js
4800ed8f2e8e122fbc2d6661d0a6628d4186fd88
c4c01c3c86cc676306e1f32cb2cf8f6d48735b0d
VRMLLoader: Fix transparency settings for lines and points. (#27841)
[ { "path": "examples/jsm/loaders/VRMLLoader.js", "patch": "@@ -1012,7 +1012,9 @@ class VRMLLoader extends Loader {\n \n \t\t\t\t\tconst pointsMaterial = new PointsMaterial( {\n \t\t\t\t\t\tname: Loader.DEFAULT_MATERIAL_NAME,\n-\t\t\t\t\t\tcolor: 0xffffff\n+\t\t\t\t\t\tcolor: 0xffffff,\n+\t\t\t\t\t\topacity: ...
2024-02-28T19:34:42
golang/go
2363897932cfb279dd8810d2c92438f7ddcfd951
e32255fcc0861727243fca4e94766c0a322954fb
cmd/internal/obj: enable got pcrel itype in fips140 for riscv64 This CL enable R_RISCV_GOT_PCREL_ITYPE in fips140 Fixes #74662 Change-Id: Ic189c4e352517ae74034f207a5f944b610f2eb73 Reviewed-on: https://go-review.googlesource.com/c/go/+/688635 Reviewed-by: Mark Ryan <markdryan@rivosinc.com> Reviewed-by: Cherry Mui <che...
[ { "path": "src/cmd/internal/obj/fips140.go", "patch": "@@ -384,6 +384,7 @@ func (s *LSym) checkFIPSReloc(ctxt *Link, rel Reloc) {\n \t\tobjabi.R_RISCV_TLS_IE,\n \t\tobjabi.R_RISCV_TLS_LE,\n \t\tobjabi.R_RISCV_GOT_HI20,\n+\t\tobjabi.R_RISCV_GOT_PCREL_ITYPE,\n \t\tobjabi.R_RISCV_PCREL_HI20,\n \t\tobjabi.R_RIS...
2025-07-18T03:06:24
swiftlang/swift
546260321e3c300bd6fff2d1b5c35bfcc796908d
e1e99e896f38325a81a516ba7ac0be6c1ba59597
[cxx-interop] Reenable use-std-span test This test was failing due to APINotes not getting applied to MSVC's STL implementation properly. I fixed this in upstream LLVM now so let's reenable this test. rdar://144384453
[ { "path": "test/Interop/Cxx/stdlib/use-std-span.swift", "patch": "@@ -1,9 +1,6 @@\n // RUN: %target-run-simple-swift(-I %S/Inputs -Xfrontend -enable-experimental-cxx-interop -Xcc -std=c++20)\n // RUN: %target-run-simple-swift(-I %S/Inputs -Xfrontend -enable-experimental-cxx-interop -Xcc -std=c++20 -Xcc -D_L...
2026-01-20T12:07:17
kubernetes/kubernetes
f2257059d7a813b661d41ee80c38a55131ba5984
67280d4df993e1bd2af703dbd5e2389f63b657a7
node: cm: fix linter failures Signed-off-by: Swati Sehgal <swsehgal@redhat.com>
[ { "path": "pkg/kubelet/cm/pod_container_manager_stub.go", "patch": "@@ -71,6 +71,6 @@ func (m *podContainerManagerStub) SetPodCgroupMemoryLimit(_ *v1.Pod, _ int64) er\n \treturn nil\n }\n \n-func (m *podContainerManagerStub) SetPodCgroupCpuLimit(_ klog.Logger, _ *v1.Pod, _ *int64, _, _ *uint64) error {\n+fu...
2025-10-31T08:12:01
mrdoob/three.js
e29ce31828e85a3ecf533984417911e2304f4320
89aa843cea57aa42d8d163a92313cba8a0a2e3d4
WebGPURenderer: Fix call clear() before rendering (#27835) * WebGPURenderer: Fix call clear() before rendering * cleanup * trying to make it clearer to the dev
[ { "path": "examples/jsm/renderers/common/RenderContext.js", "patch": "@@ -34,6 +34,8 @@ class RenderContext {\n \t\tthis.width = 0;\n \t\tthis.height = 0;\n \n+\t\tthis.isRenderContext = true;\n+\n \t}\n \n }", "additions": 2, "deletions": 0, "language": "JavaScript" }, { "path": "exampl...
2024-02-28T02:09:40
tensorflow/tensorflow
297973b6da3264a881450501d5a1fc32a1da4ca5
484c657f45104a146250384d4998314e77f48d30
Fix a layout bug in HloEvaluator. We should not use linear indexing if the operand layout differs from the result layout. PiperOrigin-RevId: 836170200
[ { "path": "third_party/xla/xla/hlo/evaluator/hlo_evaluator.cc", "patch": "@@ -111,7 +111,8 @@ absl::StatusOr<Literal> Compare(const Shape& shape, Comparison comparison,\n // If layout is the same, we can use linear indexing into the literals.\n const Layout& lhs_layout = lhs_literal.shape().layout()...
2025-11-24T12:36:25
golang/go
e32255fcc0861727243fca4e94766c0a322954fb
0451816430486a25966dd76aa92735ac0588b8e5
cmd/compile/internal/ssa: restrict architectures for TestDebugLines_74576 CL 687815 recently added TestDebugLines_74576. The pre-existing debug_lines_test.go file generally restricts the tested architectures and contains multiple warnings that the testing approach is useful but fragile, such as: "These files must ...
[ { "path": "src/cmd/compile/internal/ssa/debug_lines_test.go", "patch": "@@ -116,20 +116,30 @@ func TestDebugLines_53456(t *testing.T) {\n }\n \n func TestDebugLines_74576(t *testing.T) {\n-\ttests := []struct {\n-\t\tfile string\n-\t\twantStmts []int\n-\t}{\n-\t\t{\"i74576a.go\", []int{12, 13, 13, 14}}...
2025-07-18T22:25:08
mrdoob/three.js
89aa843cea57aa42d8d163a92313cba8a0a2e3d4
c66f9d6f3e38f2947ea862a9528125c12004d73a
OrbitControls: fix zoom-changed detection (#27834) * OrbitControls: fix zoom-changed detection * OrbitControls: clean-up
[ { "path": "examples/jsm/controls/OrbitControls.js", "patch": "@@ -261,6 +261,7 @@ class OrbitControls extends EventDispatcher {\n \t\t\t\tscope.target.clampLength( scope.minTargetRadius, scope.maxTargetRadius );\n \t\t\t\tscope.target.add( scope.cursor );\n \n+\t\t\t\tlet zoomChanged = false;\n \t\t\t\t// a...
2024-02-27T17:04:16
kubernetes/kubernetes
1055d8541e62322dab37858fb8798a1881acdd2f
6eee830d4fa0cdb7d75dac4b3b4d22d639dce54b
k8s.io/client-go/testing/fixture: does not support WatchList semantics
[ { "path": "staging/src/k8s.io/client-go/testing/fixture.go", "patch": "@@ -511,6 +511,17 @@ func (t *tracker) Apply(gvr schema.GroupVersionResource, applyConfiguration runt\n \treturn t.add(gvr, obj, ns, true)\n }\n \n+// IsWatchListSemanticsUnSupported informs the reflector that this client\n+// doesn't su...
2025-10-30T14:05:45
denoland/deno
d39343373c2410e6d0e7e576d825429eb438e590
0f6d515c91a486cc30acd34d1237f7fdaf95df8c
fix(ext/node): fix buffer.indexOf for ucs2 encoding (#29593)
[ { "path": "ext/node/polyfills/internal_binding/buffer.ts", "patch": "@@ -9,6 +9,7 @@ export function indexOfNeedle(\n source: Uint8Array,\n needle: Uint8Array,\n start = 0,\n+ step = 1,\n ): number {\n if (start >= source.length) {\n return -1;\n@@ -17,7 +18,7 @@ export function indexOfNeedle(\...
2025-06-04T12:34:10
golang/go
34b70684ba2fc8c5cba900e9abdfb874c1bd8c0e
66536242fce34787230c42078a7bbd373ef8dcb0
go/types: infer correct type for y in append(bytes, y...) The type-checking logic for append has a special case for append(bytes, s...) where the typeset for s contains string. However, this case was triggering even when the typeset contained only []byte, causing the creation of Signature types of the form func([]byte...
[ { "path": "src/cmd/compile/internal/types2/builtins.go", "patch": "@@ -91,22 +91,25 @@ func (check *Checker) builtin(x *operand, call *syntax.CallExpr, id builtinId) (\n \t\t// to type []byte with a second argument of string type followed by ... .\n \t\t// This form appends the bytes of the string.\"\n \n-\...
2025-07-18T17:16:21
tensorflow/tensorflow
5c048a29469588510d0cb9e95bb153ab2deca193
63efa210a91359c40cb72a04b5e51de0a70db850
PR #34296: [ROCm] Fix buildbreak due to missing __builtin_amdgcn_lerp Imported from GitHub PR https://github.com/openxla/xla/pull/34296 📝 Summary of Changes Fix buildbreak due to a missing symbol 🎯 Justification Switch to a newer version of rocm_device_libs where the missing symbol is present 🚀 Kind of Contribut...
[ { "path": "third_party/xla/third_party/rocm_device_libs/workspace.bzl", "patch": "@@ -4,8 +4,8 @@ load(\"//third_party:repo.bzl\", \"tf_http_archive\", \"tf_mirror_urls\")\n \n def repo():\n \"\"\"Imports Rocm-Device-Libs.\"\"\"\n- LLVM_COMMIT = \"fcc50fb091b7c75d8f6c9a6554d0b004bc0cd474\"\n- LLVM...
2025-11-24T11:16:08
mrdoob/three.js
c66f9d6f3e38f2947ea862a9528125c12004d73a
6b50ba4a4559277ed8da98baec7c56c35180a752
3dmLoader: Updating to 8.4.0 (#27833) * Fixed eslint errors for examples * first RDK additions to 3dmLoader * updated PBR material properties conversion * compromises for glass * extractProperties now recursive * update table count to properties * update 3dmLoader * update 3dmLoader * Added mat...
[ { "path": "docs/examples/en/loaders/3DMLoader.html", "patch": "@@ -14,7 +14,7 @@ <h1>[name]</h1>\n \t\t\tA loader for Rhinoceros 3d files and objects. <br /><br />\n \t\t\tRhinoceros is a 3D modeler used to create, edit, analyze, document, render, animate, and translate NURBS curves, surfaces, breps, extrus...
2024-02-27T15:18:52
denoland/deno
0f6d515c91a486cc30acd34d1237f7fdaf95df8c
ff8160b594dbce3680f8139bad3783f52a08ce85
fix(ext/node): fix buffer.includes edge cases (#29591)
[ { "path": "ext/node/polyfills/internal_binding/buffer.ts", "patch": "@@ -36,18 +36,6 @@ export function indexOfNeedle(\n return -1;\n }\n \n-export function numberToBytes(n: number): Uint8Array {\n- if (n === 0) return new Uint8Array([0]);\n-\n- const bytes = [];\n- bytes.unshift(n & 255);\n- while (n...
2025-06-04T05:39:27
golang/go
66536242fce34787230c42078a7bbd373ef8dcb0
385000b004616d5c42c868a2a072432cb65ca692
cmd/compile/internal/escape: improve DWARF .debug_line numbering for literal rewriting optimizations The literal rewriting optimizations to reduce user allocations that were implemented in CL 649079 and related CLs like CL 684116 could produce .debug_line tables such that the line numbers sometimes jumped back to a va...
[ { "path": "src/cmd/compile/internal/escape/escape.go", "patch": "@@ -539,9 +539,8 @@ func (b *batch) rewriteWithLiterals(n ir.Node, fn *ir.Func) {\n \t\treturn\n \t}\n \n-\tassignTemp := func(n ir.Node, init *ir.Nodes) {\n+\tassignTemp := func(pos src.XPos, n ir.Node, init *ir.Nodes) {\n \t\t// Preserve any...
2025-07-12T21:01:44
kubernetes/kubernetes
040516a6e762d435ebb68c91a1de60c1519023a7
fcef697a45a9d77c1648f508ec6bffb37ab0ca6f
fix linter changes
[ { "path": "pkg/kubelet/kuberuntime/kuberuntime_manager.go", "patch": "@@ -45,8 +45,8 @@ import (\n \t\"k8s.io/component-base/logs/logreduction\"\n \tinternalapi \"k8s.io/cri-api/pkg/apis\"\n \truntimeapi \"k8s.io/cri-api/pkg/apis/runtime/v1\"\n-\tremote \"k8s.io/cri-client/pkg\"\t\n \tcrierror \"k8s.io/cri-...
2025-10-31T07:42:06
tensorflow/tensorflow
66dc287c65baa324f7337a0a348962f0d4b7256e
0f18c1cdd00464a38c23d6c3fe3a32623d1d3750
Fix missing LC_UUID
[ { "path": "tensorflow/workspace2.bzl", "patch": "@@ -753,8 +753,8 @@ def _tf_repositories():\n # https://github.com/bazelbuild/apple_support/releases\n tf_http_archive(\n name = \"build_bazel_apple_support\",\n- sha256 = \"d71b02d6df0500f43279e22400db6680024c1c439115c57a9a82e9effe199d...
2025-11-23T13:16:42
mrdoob/three.js
f67234d1e0693335ae46bc7e7588bf21207dd627
5838c86d58a4de584ed9ee1972677bb11e8cbb13
docs: fix GridHelper hierarchy (#27817)
[ { "path": "docs/api/en/helpers/GridHelper.html", "patch": "@@ -7,7 +7,7 @@\n \t\t<link type=\"text/css\" rel=\"stylesheet\" href=\"page.css\" />\n \t</head>\n \t<body>\n-\t\t[page:Object3D] &rarr; [page:Line] &rarr;\n+\t\t[page:Object3D] &rarr; [page:Line] &rarr; [page:LineSegments] &rarr;\n \n \t\t<h1>[nam...
2024-02-27T08:42:55
denoland/deno
ff8160b594dbce3680f8139bad3783f52a08ce85
6bb3f6fad6157dedefb350565494d3c66ddb74b7
fix(ext/node): support DEP0005 deprecation warning (#29530) This commit adds support of `DEP0005` warning which is emitted when the user calls `Buffer` as constructor.
[ { "path": "ext/node/lib.rs", "patch": "@@ -478,6 +478,7 @@ deno_core::extension!(deno_node,\n ops::require::op_require_break_on_next_statement,\n ops::util::op_node_guess_handle_type,\n ops::util::op_node_view_has_buffer,\n+ ops::util::op_node_call_is_from_dependency<TInNpmPackageChecker, TNp...
2025-06-04T03:25:32
golang/go
385000b004616d5c42c868a2a072432cb65ca692
f506ad2644ff9c76d7e9fa00710248009d449cac
runtime: fix idle time double-counting bug This change fixes a bug in the accounting of sched.idleTime. In just the case where the GC CPU limiter needs up-to-date data, sched.idleTime is incremented in both the P-idle-time and idle-mark-work paths, but it should only be incremented in the former case. Fixes #74627. ...
[ { "path": "src/runtime/mgclimit.go", "patch": "@@ -209,14 +209,12 @@ func (l *gcCPULimiterState) updateLocked(now int64) {\n \t\tfor _, pp := range allp {\n \t\t\ttyp, duration := pp.limiterEvent.consume(now)\n \t\t\tswitch typ {\n-\t\t\tcase limiterEventIdleMarkWork:\n-\t\t\t\tfallthrough\n \t\t\tcase limi...
2025-07-15T17:11:18
mrdoob/three.js
3d07bacfe8c5cc1b1f7d7a1c8a1c9da5f168da99
d0b43f2fb25275216bcc0d2760681136cda76457
CondNode: Fix duplicate conditional (#27828)
[ { "path": "examples/jsm/nodes/math/CondNode.js", "patch": "@@ -41,11 +41,21 @@ class CondNode extends Node {\n \t\tconst type = this.getNodeType( builder );\n \t\tconst context = { tempWrite: false };\n \n+\t\tconst nodeData = builder.getDataFromNode( this );\n+\n+\t\tif ( nodeData.nodeProperty !== undefine...
2024-02-26T20:23:41
tensorflow/tensorflow
2927021c6ceb68a13639b9107fba227f69c3fca3
ffb80bae8a3d6dfcde1bd2646e7b1a07113b3e5d
[PJRT C API] Fix ASAN bug in cross-host transfer extension tests. PiperOrigin-RevId: 835632632
[ { "path": "third_party/xla/xla/pjrt/extensions/cross_host_transfers/pjrt_c_api_cross_host_transfers_extension_gpu_test.cc", "patch": "@@ -211,6 +211,9 @@ absl::Status SuccessfulCrossHostTransferTestBody(bool is_sender,\n std::vector<PJRT_Buffer*> raw_buffers;\n std::vector<xla::PjRtGlobalDeviceId> d...
2025-11-22T18:41:01
kubernetes/kubernetes
05f67d834aba4ba2b4a11839e4a24df28b4d57da
150b4dc15ecc217010939e36ac3ed72279b46e31
node: cm: migrate container manager to contextual logging This commit migrates the container manager package to use contextual logging. This follows the contextual logging migration pattern where: - Logger is passed from the boundary down to implementations - klog.TODO() is used at call sites where context is not yet...
[ { "path": "cmd/kubelet/app/server.go", "patch": "@@ -747,7 +747,7 @@ func run(ctx context.Context, s *options.KubeletServer, kubeDeps *kubelet.Depend\n \tvar cgroupRoots []string\n \tnodeAllocatableRoot := cm.NodeAllocatableRoot(s.CgroupRoot, s.CgroupsPerQOS, s.CgroupDriver)\n \tcgroupRoots = append(cgroupR...
2025-10-30T13:13:29