repo
stringclasses
15 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
64.3k
files
listlengths
1
300
timestamp
timestamp[s]date
2013-03-13 20:45:00
2026-04-11 07:48:46
mrdoob/three.js
3589a128b43677707f6b82c7cabdeef653dcf222
f8959047ab89e53f911b065ca616370f86a80b72
ImageBitmapLoader: Make error handling more robust. (#31088) * ImageBitmapLoader: Make error handling more robust. * ImageBitmapLoader: Simplify code. * ImageBitmapLoader: Improve comment. * ImageBitmapLoader: Improve docs.
[ { "path": "src/loaders/ImageBitmapLoader.js", "patch": "@@ -1,6 +1,8 @@\n import { Cache } from './Cache.js';\n import { Loader } from './Loader.js';\n \n+const _errorMap = new WeakMap();\n+\n /**\n * A loader for loading images as an [ImageBitmap]{@link https://developer.mozilla.org/en-US/docs/Web/API/Ima...
2025-05-12T21:37:16
tensorflow/tensorflow
35ce836c42f5c30eb6e42410bef23561d3d3e4ed
4b8195a646a692406736c3b45866665ff408fcfd
PR #37629: [ROCm] Propagate register spill info for autotuner filtering Imported from GitHub PR https://github.com/openxla/xla/pull/37629 AMD's GPU backend already detected register spilling from HSACO metadata, but this information wasn't being passed through ModuleStats to the autotuner. This caused the autotuner's...
[ { "path": "third_party/xla/xla/pjrt/triton_rocm.cc", "patch": "@@ -110,8 +110,10 @@ absl::StatusOr<std::string> LLVMToHSACO(mlir::ModuleOp module,\n }\n \n xla::DebugOptions debug_opts = xla::DefaultDebugOptionsIgnoringFlags();\n- return xla::gpu::amdgpu::CompileToHsacoAndReturnFilePath(\n- llvm_m...
2026-02-18T09:35:33
denoland/deno
60814fb3995f096bab2713f052e740b2049ef41d
4a9ae62b521f06b57b923e48a15113274cc897a6
fix(node/crypto): randomBytes returns buffer with dedicated ArrayBuffer (#32048) Fixes denoland/deno#32047 --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: bartlomieju <13602871+bartlomieju@users.noreply.github.com> Co-authored-by: littledivy <34997667+lit...
[ { "path": "ext/node/polyfills/internal/crypto/_randomBytes.ts", "patch": "@@ -24,7 +24,7 @@ function generateRandomBytes(size: number) {\n );\n }\n \n- const bytes = Buffer.allocUnsafe(size);\n+ const bytes = Buffer.allocUnsafeSlow(size);\n \n //Work around for getRandomValues max generation\n i...
2026-02-04T16:13:36
swiftlang/swift
73b0d6142c3cbad0055c8adcae7abaa6b4a7926a
b7632c14cbd4989bfa82f781b8af65aeb20694c5
[SILOptimizer] NFC: Add missing flag to `SILIsolationInfo::printOptions` `NonisolatedNonsendingTaskIsolated` wasn't handled which results in a crash on `assert(!opts && "Unhandled flag?!");`
[ { "path": "lib/SILOptimizer/Utils/SILIsolationInfo.cpp", "patch": "@@ -1220,6 +1220,12 @@ void SILIsolationInfo::printOptions(llvm::raw_ostream &os) const {\n opts -= Flag::UnappliedIsolatedAnyParameter;\n }\n \n+ if (opts.contains(Flag::NonisolatedNonsendingTaskIsolated)) {\n+ data.push_back(\n+ ...
2026-03-04T00:39:32
mrdoob/three.js
b9ba3b456f2d2b56a1a56199cc53aa2ab4283139
d011a5dfe5877ffc038319fc173d61d7085c2cf7
ShadowMaskModel: Fix usage with non shadow casting light. (#31081) * ShadowMaskModel: Fix usage with non shadow casting light. * Examples: Move Jolt demo to WebGPU. * E2E: Update screenshot.
[ { "path": "examples/physics_jolt_instancing.html", "patch": "@@ -15,7 +15,9 @@\n \t\t<script type=\"importmap\">\n \t\t\t{\n \t\t\t\t\"imports\": {\n-\t\t\t\t\t\"three\": \"../build/three.module.js\",\n+\t\t\t\t\t\"three\": \"../build/three.webgpu.js\",\n+\t\t\t\t\t\"three/webgpu\": \"../build/three.webgpu....
2025-05-10T14:24:35
tensorflow/tensorflow
0297e6a22161f5ee99eed5d1051e7076c0992586
a8486e8448820fc145c979eff1ca70a71b658ef0
Fix `TfrtGpuBuffer::AcquireExternalReference`: only increment external ref count when there is an extenal ref created PiperOrigin-RevId: 871556924
[ { "path": "third_party/xla/xla/pjrt/gpu/tfrt/tfrt_gpu_buffer.cc", "patch": "@@ -295,12 +295,12 @@ TfrtGpuBuffer::AcquireExternalReference() {\n tsl::MakeConstructedAsyncValueRef<GpuEvent>();\n }\n \n- ++external_reference_counter_;\n \n tsl::BlockUntilReady(tracked_device_buffer_->definition_ev...
2026-02-18T00:47:24
denoland/deno
4a9ae62b521f06b57b923e48a15113274cc897a6
1b424993ce6e2fa5f7c89a691dd5d13f77977103
fix: unstable_cron_socket_serve_reject flakiness caused by control socket coordination (#32053)
[ { "path": "tests/specs/run/unstable_cron_socket_serve_reject/test_runner.js", "patch": "@@ -23,8 +23,21 @@ const mainProcess = new Deno.Command(Deno.execPath(), {\n },\n }).spawn();\n \n-// Give Deno a moment to start and create its control socket\n-await new Promise((resolve) => setTimeout(resolve, 100))...
2026-02-04T15:45:31
mrdoob/three.js
6bcfbf5a7e1541fa04e1df29aebe312df86c5aeb
11ff5590f96aa3b4a148810b64905319b3a42d8a
TSL: Fix auto-cache if using multiple conditionals (#31076) * fix flow * prevent re-update outputNode * Update ContextNode.js
[ { "path": "src/nodes/core/ContextNode.js", "patch": "@@ -80,8 +80,14 @@ class ContextNode extends Node {\n \n \tanalyze( builder ) {\n \n+\t\tconst previousContext = builder.getContext();\n+\n+\t\tbuilder.setContext( { ...builder.context, ...this.value } );\n+\n \t\tthis.node.build( builder );\n \n+\t\tbuil...
2025-05-10T03:33:23
swiftlang/swift
7f1ea1e7089f0c0bd7cc3a338dec20391b67c725
c6e726757cd2692f7e7ddf401d4ad1852b80498a
utils: make `-Clean` more robust We always build the clang builtins and runtime for all known platforms, ensure that we clean them all up when `-Clean` is invoked. This is important as changing certain keys would cause incorrect builds without this.
[ { "path": "utils/build.ps1", "patch": "@@ -4251,6 +4251,17 @@ if ($Clean) {\n Remove-Item -Force -Recurse -Path \"$BinaryCache\\1\" -ErrorAction Ignore\n Remove-Item -Force -Recurse -Path \"$BinaryCache\\5\" -ErrorAction Ignore\n Remove-Item -Force -Recurse -Path (Get-InstallDir $HostPlatform) -ErrorA...
2026-03-04T00:37:11
tensorflow/tensorflow
173c2641966278e422339b290177733d58c3bffc
eba20b76f210ed0ac08acdef1dc1890c1c8087db
memfile_builtin: Log the generated files. It's useful to debug memfile_embed_data by printing out the actual file names, but we don't always need to so VLOG works nicely. PiperOrigin-RevId: 871500736
[ { "path": "third_party/xla/xla/tsl/util/memfile_builtin.cc", "patch": "@@ -50,6 +50,7 @@ absl::Status RegisterBuiltInFiles(const char* absl_nonnull name,\n absl::string_view contents(toc->data, toc->size);\n const std::string path =\n tsl::io::JoinPath(uri_scheme, name, tsl::io::Basename(toc...
2026-02-17T22:35:33
mrdoob/three.js
0e317c0b91654f4f854aac43228ef5365ea96338
8c666732fa26cc5084e9e71997b1e172675caf18
Examples: Fix memory leak in FBX demo. (#31068)
[ { "path": "examples/webgl_loader_fbx.html", "patch": "@@ -128,6 +128,12 @@\n \n \t\t\t\t\t\tobject.traverse( function ( child ) {\n \n+\t\t\t\t\t\t\tif ( child.isSkinnedMesh ) {\n+\n+\t\t\t\t\t\t\t\tchild.skeleton.dispose();\n+\n+\t\t\t\t\t\t\t}\n+\n \t\t\t\t\t\t\tif ( child.material ) {\n \n \t\t\t\t\t\t\t...
2025-05-08T21:26:18
denoland/deno
1b424993ce6e2fa5f7c89a691dd5d13f77977103
12134b0c470607fe4483a6188c2b02b19ca5a2a0
fix(audit): make 'Path' property more readable (#32049) Makes report more readable by adding spaces in `Path` property. Before: ``` ╭ @denotest/with-vuln2 can steal crypto keys │ Severity: critical │ Package: @edenotest/with-vuln2 │ Vulnerable: <2.0.0 │ Patched: >=2.0.0 │ Path: @denotest/using-vuln>@den...
[ { "path": "cli/tools/pm/audit.rs", "patch": "@@ -404,7 +404,11 @@ mod npm {\n if let Some(finding) = adv.findings.first()\n && let Some(path) = finding.paths.first()\n {\n- _ = writeln!(stdout, \"│ {} {}\", colors::gray(\"Path:\"), path);\n+ let path_fmt = path\n+ ...
2026-02-04T13:34:47
golang/go
5818c9d714f1a8abeb76ec5d75ad0e0560e8d780
9de6468701f4def1bbdc737e8ad1327f2cfaecc8
encoding/json/jsontext: add symbolic Kind constants Add constants for each possible Kind value (KindNull, KindTrue, etc.). Leave the values unchanged ('n', 't', etc.). Update documentation to reference the symbols. Fixes #71756 Change-Id: Ib33b2ad9ee55f6f547d9e6a1c5a7f00c8400d3d3 Reviewed-on: https://go-review.googl...
[ { "path": "src/encoding/json/jsontext/decode.go", "patch": "@@ -306,7 +306,7 @@ func (d *decodeBuffer) PreviousTokenOrValue() []byte {\n \n // PeekKind retrieves the next token kind, but does not advance the read offset.\n //\n-// It returns 0 if an error occurs. Any such error is cached until\n+// It retur...
2025-12-08T22:22:12
mrdoob/three.js
3a21dee9cdb9d50e8ba783c9c59c9871a586ca5d
9b25b7c291d087271d3c6b21cf991326f9c06e73
PCDLoader: implement binary PCD data type parsing (#31061) * feat: implement binary PCD data type parsing * chore: code format * chore: add verification file * chore: add file select widget * fix: destroy gui
[ { "path": "examples/jsm/loaders/PCDLoader.js", "patch": "@@ -97,6 +97,71 @@ class PCDLoader extends Loader {\n \n \t}\n \n+\t/**\n+\t * Get dataview value by field type and size.\n+\t *\n+\t * @param {DataView} dataview - The DataView to read from.\n+\t * @param {number} offset - The offset to start reading...
2025-05-08T14:00:00
tensorflow/tensorflow
4c846ea520418425842b91dc2c31779df02a449f
0a4fbd9085ce7ca7a75f59b13d109ae4f35ea0d5
#HLODiff Fix bug where disabling precompute_instruction_dependencies was ignored PiperOrigin-RevId: 871450618
[ { "path": "third_party/xla/xla/hlo/tools/hlo_diff/graph/hlo_gumgraph.cc", "patch": "@@ -375,7 +375,6 @@ absl::StatusOr<std::unique_ptr<const HloGumgraph>> HloGumgraph::Create(\n << \"Expected a non-null entry computation\";\n \n std::unique_ptr<CallGraph> call_graph = CallGraph::Build(hlo_module);\n...
2026-02-17T20:45:19
denoland/deno
12134b0c470607fe4483a6188c2b02b19ca5a2a0
9aca4f6c5331f0ced1ae1071211056608572932a
fix(ext/node): fix multiple node:zlib compatibility issues (#32039) These fixes bring back number of failing `node:zlib` tests down to 8.
[ { "path": "ext/node/ops/zlib/mod.rs", "patch": "@@ -357,6 +357,22 @@ impl Zlib {\n Ok(zlib.err)\n }\n \n+ #[fast]\n+ pub fn params(\n+ &self,\n+ #[smi] level: i32,\n+ #[smi] strategy: i32,\n+ ) -> Result<(), ZlibError> {\n+ let mut zlib = self.inner.borrow_mut();\n+ let zlib = zlib.a...
2026-02-04T11:57:41
golang/go
00642ee23b614d5314604b6b4d25c671f82c26b2
7b60d0673910a6527eb3d401b8a4e90c59cf70bd
encoding/json: report true from v2 Decoder.More when an error is pending Historically, Decoder.More reports true when the next read will return an error. Adjust the v2 Decoder to follow this behavior. Fixes #76467 Change-Id: I03bfa391e4e89ada8ca869db43c1d0bb63cc0413 Reviewed-on: https://go-review.googlesource.com/c/...
[ { "path": "src/encoding/json/stream_test.go", "patch": "@@ -459,6 +459,9 @@ func TestDecodeInStream(t *testing.T) {\n \t\t{CaseName: Name(\"\"), json: ` \\a`, expTokens: []any{\n \t\t\t&SyntaxError{\"invalid character '\\\\\\\\' looking for beginning of value\", 1},\n \t\t}},\n+\t\t{CaseName: Name(\"\"), js...
2025-12-08T21:09:05
kubernetes/kubernetes
72ef5b34a8a9fe0350072e2b53d838272f97ed2f
62c3d8d820bcd8f21f48b511bef2e8c195c5bea2
pkg/proxy/nftables: fix kube-proxy crash with newer nftables versions Fixes kube-proxy's nftables mode to work on systems with nft 1.1.3.
[ { "path": "pkg/proxy/nftables/proxier.go", "patch": "@@ -1109,24 +1109,20 @@ func (proxier *Proxier) syncProxyRules() (retryError error) {\n \t\tipvX_addr = \"ipv6_addr\"\n \t}\n \n+\tvar err error\n+\n \tvar existingChains sets.Set[string]\n-\texistingChainsList, err := proxier.nftables.List(context.TODO()...
2026-02-11T19:00:48
mrdoob/three.js
4b29a47474b994dd72e146c7e037ad94564e4003
6c29a50ffa870b6d6e9fcf410683679a37412810
TSL: Fix `getBitangent()`. (#31059) * TSL: Fix `getBitangent()`. * E2E: Update screenshot.
[ { "path": "src/nodes/accessors/Bitangent.js", "patch": "@@ -19,7 +19,7 @@ const getBitangent = /*@__PURE__*/ Fn( ( [ crossNormalTangent, varyingName ], bu\n \n \tif ( builder.material.flatShading !== true ) {\n \n-\t\tbitangent = varying( crossNormalTangent, varyingName );\n+\t\tbitangent = varying( bitange...
2025-05-08T00:08:04
tensorflow/tensorflow
4c4bdf5e40f0507ebdba7cb742e513a7a2976aec
7bea1220d884b871fe4958b140c0c346dcfea2e0
Migrate deprecated tsl::errors to absl equivalents. PiperOrigin-RevId: 871425701
[ { "path": "tensorflow/core/data/service/snapshot/snapshot_manager.cc", "patch": "@@ -183,8 +183,8 @@ absl::Status SnapshotManager::Start(const SnapshotRequest& request)\n TF_LOCKS_EXCLUDED(mu_) {\n LOG(INFO) << \"Starting to write tf.data snapshot at \" << request.path();\n if (env_->FileExists(requ...
2026-02-17T19:50:46
denoland/deno
9aca4f6c5331f0ced1ae1071211056608572932a
72b9709c7d70ed059d1afc45c68736e930de5266
fix(ext/node): add hasColors() to process.stdout and process.stderr (#31985) ## Summary - Adds `hasColors()` method to `process.stdout` and `process.stderr` - Fixes Node.js compatibility issue where packages like Commander.js check color support Fixes #27278 ## Changes - Modified `ext/node/polyfills/_process/streams...
[ { "path": "ext/node/polyfills/_process/streams.mjs", "patch": "@@ -25,6 +25,7 @@ import { Duplex, Readable, Writable } from \"node:stream\";\n import * as io from \"ext:deno_io/12_io.js\";\n import { guessHandleType } from \"ext:deno_node/internal_binding/util.ts\";\n import { op_bootstrap_color_depth } fro...
2026-02-04T10:48:08
golang/go
1de9585be24aaa11ecc79a5fe976713b8e7fd446
e38c38f0e539f599216247b5293d5c78aa82468b
runtime: prevent calls to GOMAXPROCS while clearing P trace state Currently, between the forEachP that ensures every P has a status in the trace and readying dead Ps for the next generation, there's a big window where GOMAXPROCS could run and change the number of Ps. In such circumstances, P state will not get properl...
[ { "path": "src/runtime/trace.go", "patch": "@@ -440,11 +440,6 @@ func StartTrace() error {\n \n \t// Record the heap goal so we have it at the very beginning of the trace.\n \ttl.HeapGoal()\n-\n-\t// Make sure a ProcStatus is emitted for every P, while we're here.\n-\tfor _, pp := range allp {\n-\t\ttl.writ...
2025-12-11T02:51:27
mrdoob/three.js
7ee2f21b7f369bc396d36504ae3294b5ae243129
c7d733e4587507812c294d9d53d5bf0cb1f12e22
WGSLNodeBuilder: Fix use of sampler for vertex stage (#31052)
[ { "path": "src/renderers/webgpu/nodes/WGSLNodeBuilder.js", "patch": "@@ -248,13 +248,9 @@ class WGSLNodeBuilder extends NodeBuilder {\n \n \t\t\t}\n \n-\t\t} else if ( this.isFilteredTexture( texture ) ) {\n-\n-\t\t\treturn this.generateFilteredTexture( texture, textureProperty, uvSnippet );\n-\n \t\t} else...
2025-05-05T20:56:57
denoland/deno
72b9709c7d70ed059d1afc45c68736e930de5266
b2690b072780c79e3584406f8f9891e201734f00
fix(ext/node): implement Node worker BroadcastChannel ref/unref (#32036) All except one test case in `parallel/test-worker-broadcastchannel-wpt.js` passes. Node.js message dispatch ordering is not same as the Web api as explained in this comment: ```js // Messages are delivered in port creation order. // TODO(@jas...
[ { "path": "ext/node/polyfills/worker_threads.ts", "patch": "@@ -26,7 +26,10 @@ import {\n import * as webidl from \"ext:deno_webidl/00_webidl.js\";\n import { notImplemented } from \"ext:deno_node/_utils.ts\";\n import { EventEmitter } from \"node:events\";\n-import { BroadcastChannel } from \"ext:deno_web/...
2026-02-04T10:43:35
golang/go
e38c38f0e539f599216247b5293d5c78aa82468b
c0ba519764536b8ce7ba2a7fe3748f07672f7b6e
internal/trace: correctly handle GoUndetermined for GoroutineSummary Currently the trace summarization incorrectly handles GoUndetermined by treating it too much like GoNotExist. In particular, it should be accumulating all the time since the start of the trace in a particular bucket, but it doesn't, so that instead g...
[ { "path": "src/internal/trace/summary.go", "patch": "@@ -321,16 +321,47 @@ func (s *Summarizer) Event(ev *Event) {\n \t\t\t// Handle transition out.\n \t\t\tg := s.gs[id]\n \t\t\tswitch old {\n-\t\t\tcase GoUndetermined, GoNotExist:\n+\t\t\tcase GoUndetermined:\n \t\t\t\tg = &GoroutineSummary{ID: id, gorout...
2025-12-10T02:50:56
mrdoob/three.js
c7d733e4587507812c294d9d53d5bf0cb1f12e22
e367e2b6c97a43a31187a196ac6f220b271d2a79
Editor: Fix minor bugs. (#31050)
[ { "path": "editor/js/Menubar.View.js", "patch": "@@ -84,6 +84,16 @@ function MenubarView( editor ) {\n \n \toptions.add( option );\n \n+\t// new helpers are visible by default, the global visibility state\n+\t// of helpers is managed in this component. every time a helper is added,\n+\t// we request a viewp...
2025-05-05T15:12:22
kubernetes/kubernetes
2ac7de24d05d5618a90fce4d99a6e77039fc4cef
d137915f1df2c4273a961728beab41dc8f2f205d
Fix also forvar in cmd/kubeadm
[ { "path": "cmd/kubeadm/app/cmd/certs_test.go", "patch": "@@ -690,7 +690,6 @@ kubernetesVersion: %s`,\n \t}\n \n \tfor _, tc := range testCases {\n-\t\ttc := tc\n \t\tt.Run(tc.name, func(t *testing.T) {\n \t\t\tif tc.brokenCertName != \"\" {\n \t\t\t\t// remove the file to simulate a missing certificate", ...
2026-02-07T08:56:25
denoland/deno
b2690b072780c79e3584406f8f9891e201734f00
929ab331a754c695fb1c2fbb0182a2260f7b0d34
fix(ext/node): implement `DatabaseSync.setAuthorizer()` (#32009)
[ { "path": "ext/node/ops/sqlite/database.rs", "patch": "@@ -516,6 +516,7 @@ pub struct DatabaseSync {\n options: DatabaseSyncOptions,\n location: String,\n ignore_next_sqlite_error: Rc<Cell<bool>>,\n+ authorizer_data: Rc<RefCell<Option<*mut AuthorizerData>>>,\n }\n \n // SAFETY: we're sure this can be...
2026-02-04T10:42:44
golang/go
f105dfd048ce6ca9a8115d7fdd7a4cb60e84ba40
af14f6791108ece9661590cbf922806492954ea6
lib/fips140: freeze v1.1.0-rc1 FIPS 140 module zip file Fixes #76769 Cq-Include-Trybots: luci.golang.try:gotip-linux-amd64-longtest Change-Id: I16b0e9463e2e10ee5a6f20967fb6377b6a6a6964 Reviewed-on: https://go-review.googlesource.com/c/go/+/729180 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gs...
[ { "path": "lib/fips140/fips140.sum", "patch": "@@ -10,3 +10,4 @@\n #\tgo test cmd/go/internal/fips140 -update\n #\n v1.0.0-c2097c7c.zip daf3614e0406f67ae6323c902db3f953a1effb199142362a039e7526dfb9368b\n+v1.1.0-rc1.zip ea94f8c3885294c9efe1bd8f9b6e86daeb25b6aff2aeb20707cd9a5101f6f54e", "additions": 1, ...
2025-12-10T21:49:31
mrdoob/three.js
e367e2b6c97a43a31187a196ac6f220b271d2a79
984ca4a6d02725051dcbaca277a0f4a21774abdd
FBXLoader: Use `getHandler()` for custom texture loaders. (#31032) * add capable of custom texture loader * replace factory to setXXXLoader * Update FBXLoader.js * fix indent * use manager.getHandler * fix loader variable name * fix url * use getHandler for all extensions * Update FBXLoader.js Clean up. ----...
[ { "path": "examples/jsm/loaders/FBXLoader.js", "patch": "@@ -437,21 +437,10 @@ class FBXTreeParser {\n \t// load a texture specified as a blob or data URI, or via an external URL using TextureLoader\n \tloadTexture( textureNode, images ) {\n \n-\t\tconst nonNativeExtensions = new Set( [ 'tga', 'tif', 'tiff'...
2025-05-05T08:23:07
denoland/deno
929ab331a754c695fb1c2fbb0182a2260f7b0d34
d9bd0545a4c01a0b348a70b5dcee3d7cf56e33ce
fix(flags): extra trailing space in zsh directory completions (#32042) Fixes https://github.com/denoland/deno/issues/31809 Ref https://github.com/clap-rs/clap/commit/5571b83c8a322ee2cf4342402d930cf2806fa2f1
[ { "path": "cli/args/flags.rs", "patch": "@@ -6844,7 +6844,25 @@ function _clap_dynamic_completer_NAME() {\n )}\")\n \n if [[ -n $completions ]]; then\n- _describe -V 'values' completions -o nosort\n+ local -a dirs=()\n+ local -a other=()\n+ local completion\n+ for completion in ...
2026-02-04T10:07:53
kubernetes/kubernetes
d137915f1df2c4273a961728beab41dc8f2f205d
90a76aaa9afbe9cdb3df5f0a4356018b6637648b
Use for-range in cmd/{kubelet,kubeadm} Fixed using the modernize tool. These were the only instances under cmd/
[ { "path": "cmd/kubeadm/app/phases/addons/dns/dns_test.go", "patch": "@@ -1679,7 +1679,7 @@ func newMockClientForTest(t *testing.T, replicas int32, deploymentSize int, imag\n \t\timage = \"registry.k8s.io/coredns/coredns:\" + kubeadmconstants.CoreDNSVersion\n \t}\n \tclient := clientsetfake.NewSimpleClientse...
2026-02-07T08:01:59
tensorflow/tensorflow
add1517ee6594c0c1461cd303a17acf81e9eb1c6
3fcae05631c670656c9f47296f8c337678a1e81c
Migrate deprecated tsl::errors to absl equivalents. PiperOrigin-RevId: 871395741
[ { "path": "tensorflow/core/data/service/dispatcher_impl.cc", "patch": "@@ -219,7 +219,7 @@ absl::Status DataServiceDispatcherImpl::Start() {\n }\n if (config_.work_dir().empty()) {\n if (config_.fault_tolerant_mode()) {\n- return errors::InvalidArgument(\n+ return absl::InvalidArgumentErro...
2026-02-17T18:49:58
golang/go
72c83bcc80d0a195269b168423446476808a11e8
b2a697bd06e01abade1d436f01be7186b1c38842
go/types, types2: put Named.finite behind Named.mu This change adds another leaf state to named types which indicates whether the type's size finiteness is known. Without this, writes to Named.finite can result in a clobbered value. While benign in terms of functionality, it triggers the race detector. Fixes #76773 ...
[ { "path": "src/cmd/compile/internal/types2/cycles.go", "patch": "@@ -106,17 +106,13 @@ func (check *Checker) directCycle(tname *TypeName, pathIdx map[*TypeName]int) {\n // TODO(markfreeman): Can the value cached on Named be used in validType / hasVarSize?\n \n // finiteSize returns whether a type has finite...
2025-12-10T18:29:01
mrdoob/three.js
984ca4a6d02725051dcbaca277a0f4a21774abdd
a8536871e792cc9a8329634d4345ea83a07bc235
Add FXAAPass class (#31044) * Added FXAAPass class * Updated JSDocs and indentation * Fixed typo in docs * Update FXAAPass.js * Update FXAAPass.js Fix code style. --------- Co-authored-by: Michael Herzog <michael.herzog@human-interactive.org>
[ { "path": "examples/jsm/postprocessing/FXAAPass.js", "patch": "@@ -0,0 +1,40 @@\n+import { FXAAShader } from '../shaders/FXAAShader.js';\n+import { ShaderPass } from './ShaderPass.js';\n+\n+/**\n+ * A pass for applying FXAA.\n+ *\n+ * ```js\n+ * const fxaaPass = new FXAAPass();\n+ * composer.addPass( fxaaPa...
2025-05-05T07:47:55
denoland/deno
478bc5a905048f3ccafc51369e61b4bdeffe5b5b
cec91f6c0e1e5e3259161e6d33365f6d790e1b8b
fix(ext/node): add stub for ServerResponse.writeEarlyHints (#32029) Ref https://github.com/denoland/deno/issues/31176
[ { "path": "ext/node/polyfills/http.ts", "patch": "@@ -1572,6 +1572,10 @@ export type ServerResponse = {\n end(chunk?: any, encoding?: any, cb?: any): void;\n \n flushHeaders(): void;\n+ writeEarlyHints(\n+ hints: Record<string, string | string[]>,\n+ callback?: () => void,\n+ ): void;\n _impli...
2026-02-03T17:35:08
golang/go
c39fe18fea16d6bdbd5526a7b7d7b59e84ae0144
db0ab834d67131676ab2001ab8e72b197b22ce54
crypto/mlkem/mlkemtest: error out in fips140=only mode Updates #70514 Change-Id: I1d1a0b4a2c7ee4cb6e8e0700dd3463a46a6a6964 Reviewed-on: https://go-review.googlesource.com/c/go/+/728502 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Roland Shoemaker <roland@golan...
[ { "path": "src/crypto/mlkem/mlkemtest/mlkemtest.go", "patch": "@@ -7,6 +7,7 @@ package mlkemtest\n \n import (\n \tfips140mlkem \"crypto/internal/fips140/mlkem\"\n+\t\"crypto/internal/fips140only\"\n \t\"crypto/mlkem\"\n \t\"errors\"\n )\n@@ -20,6 +21,9 @@ func Encapsulate768(ek *mlkem.EncapsulationKey768, ...
2025-12-08T23:39:54
swiftlang/swift
07be0d26cd07767aab27151fd4816ae3b7567ef9
fa0d229c8aefa3b3a7a03de7aa10caf75f24c266
[CMake] Avoid 'swiftc -parse' with stdin to check compiler capability When the host compiler is built with assertions, 'swiftc -parse -' hits an assertion failure, which fails the capability checks. ``` Assertion failed: [&]() -> bool { if (FrontendOptions::shouldActionOnlyParse(Action)) { return llvm::all_of( opts.I...
[ { "path": "cmake/modules/SwiftCompilerCapability.cmake", "patch": "@@ -2,8 +2,7 @@\n function(swift_supports_compiler_arguments out_var)\n file(WRITE \"${CMAKE_BINARY_DIR}/tmp/dummy.swift\" \"\")\n execute_process(\n- COMMAND \"${CMAKE_Swift_COMPILER}\" -parse ${ARGN} -\n- INPUT_FILE \"${CMAKE_BIN...
2026-03-03T20:37:41
kubernetes/kubernetes
019f68be5c40127a8d71b5669e36d543ab19ee7f
90a76aaa9afbe9cdb3df5f0a4356018b6637648b
test: fix the flaking TestWebhookConversion_WhitespaceCABundleEtcdBypass
[ { "path": "staging/src/k8s.io/apiextensions-apiserver/test/integration/conversion/conversion_test.go", "patch": "@@ -1541,11 +1541,10 @@ func servedVersions(versions []apiextensionsv1.CustomResourceDefinitionVersion)\n \n func TestWebhookConversion_WhitespaceCABundleEtcdBypass(t *testing.T) {\n \t// Setup s...
2026-02-10T13:58:03
tensorflow/tensorflow
3fcae05631c670656c9f47296f8c337678a1e81c
18bc3d054bcbae3c927c20b2159ad14cb501d719
PR #36970: [XLA][GPU] Hardcode memory clock and bus width values on Thor when driver returns 0 Imported from GitHub PR https://github.com/openxla/xla/pull/36970 This is a temporary workaround (until the fix in CUDA driver) for a bug on Thor devices (CC 11.0) reporting mem_clock_khz and mem_bus_width_bits as 0. Copyb...
[ { "path": "third_party/xla/xla/stream_executor/cuda/cuda_executor.cc", "patch": "@@ -1812,6 +1812,16 @@ CudaExecutor::CreateDeviceDescription(int device_ordinal) {\n absl::StatusOr<int> mem_bus_width_bits = GetDeviceAttribute(\n CU_DEVICE_ATTRIBUTE_GLOBAL_MEMORY_BUS_WIDTH, device_ordinal);\n if (m...
2026-02-17T18:46:14
mrdoob/three.js
a8536871e792cc9a8329634d4345ea83a07bc235
1d6ae39f9dee179404133e3d1b65d4c7286577be
Docs: Fix typo. (#31046)
[ { "path": "examples/jsm/postprocessing/AfterimagePass.js", "patch": "@@ -91,7 +91,7 @@ class AfterimagePass extends Pass {\n \n \t/**\n \t * The damping intensity, from 0.0 to 1.0. A higher value means a stronger after image effect.\n-\t * \n+\t *\n \t * @type {number}\n \t */\n \tget damp() {\n@@ -154,7 +1...
2025-05-05T07:38:24
denoland/deno
cec91f6c0e1e5e3259161e6d33365f6d790e1b8b
b486c63f282fe6c294097aaea9c809305bf7bea8
fix(cli): pull in tunnel fix for windows (#32033)
[ { "path": "Cargo.lock", "patch": "@@ -3047,14 +3047,15 @@ dependencies = [\n \n [[package]]\n name = \"deno_tunnel\"\n-version = \"0.8.0\"\n+version = \"0.8.1\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"cbe45dacb6e0d2a646b22a12fea81ba2f7128202f9ee91602782b9208da123b...
2026-02-03T16:21:25
golang/go
cd873cf7e98c3fd3e8138e9d97d6a974a1ee0b53
550c0c898b61628aed108aca7d8dbef32458bc09
crypto/internal/fips140/aes/gcm: don't panic on bad nonces out of FIPS 140-3 mode The enforcement is good beyond compliance if it is correct, but I am more nervous about accidental DoS due to mismatches between how the caller calculates a nonce and how the enforcement expects it to be calculated. We need to have this...
[ { "path": "src/crypto/cipher/gcm_fips140v2.0_test.go", "patch": "@@ -8,15 +8,32 @@ package cipher_test\n \n import (\n \t\"crypto/cipher\"\n+\t\"crypto/internal/cryptotest\"\n \t\"crypto/internal/fips140\"\n \tfipsaes \"crypto/internal/fips140/aes\"\n \t\"crypto/internal/fips140/aes/gcm\"\n \t\"encoding/bin...
2025-12-08T23:47:26
mrdoob/three.js
1d6ae39f9dee179404133e3d1b65d4c7286577be
868d7d837dd440725c015a2314c7efbc632fb383
Examples: Make point lights demo more interesting. (#31040) * Examples: Make point lights demo more interesting. * Docs: Fix links. * E2E: Update screenshot.
[ { "path": "docs/api/ar/lights/PointLight.html", "patch": "@@ -30,7 +30,7 @@ <h2>مثال للكود</h2>\n \t\t<h2>أمثلة (Examples)</h2>\n \t\t\t\n \t\t<p>\n-\t\t[example:webgl_lights_pointlights lights / pointlights ]<br />\n+\t\t[example:webgpu_lights_pointlights lights / pointlights ]<br />\n \t\t[example:webgl_e...
2025-05-04T19:54:51
tensorflow/tensorflow
18bc3d054bcbae3c927c20b2159ad14cb501d719
59eb4d26750f46e5817dea85b3fe773ac28251a5
Migrate deprecated tsl::errors to absl equivalents. PiperOrigin-RevId: 871390053
[ { "path": "tensorflow/cc/BUILD", "patch": "@@ -211,6 +211,7 @@ cc_library_with_android_deps(\n \"//tensorflow/core:framework\",\n \"//tensorflow/core:lib\",\n \"//tensorflow/core:protos_all_cc\",\n+ \"@com_google_absl//absl/status\",\n \"@com_google_absl//absl/strings\...
2026-02-17T18:40:38
denoland/deno
b486c63f282fe6c294097aaea9c809305bf7bea8
0aa1fe12be1e3e71934eaf51037db67dcad00f37
fix(ext/node): add zstd compression support to node:zlib (#32025) This commit improves impl of `node:zlib` module by adding zstd compression support. Several Node compat tests were enabled, more will be enabled in a follow up. --------- Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
[ { "path": "Cargo.lock", "patch": "@@ -2552,6 +2552,7 @@ dependencies = [\n \"x25519-dalek\",\n \"x509-parser\",\n \"yoke 0.7.4\",\n+ \"zstd\",\n ]\n \n [[package]]", "additions": 1, "deletions": 0, "language": "Unknown" }, { "path": "ext/node/Cargo.toml", "patch": "@@ -104,6 +104,...
2026-02-03T15:35:17
mrdoob/three.js
0455c67bc796a01fcfe47172d07b32c3bdf9ba0f
f54e8d39084396d06eb83ac5e328c0578fb16510
Update bug_report.yml Shorten name.
[ { "path": ".github/ISSUE_TEMPLATE/bug_report.yml", "patch": "@@ -74,7 +74,7 @@ body:\n - Firefox\n - Safari\n - Edge\n- - Meta Quest Browser\n+ - Quest Browser\n - type: dropdown\n id: os\n attributes:", "additions": 1, "deletions": 1, "language": ...
2025-05-01T09:12:47
golang/go
36bca3166e18db52687a4d91ead3f98ffe6d00b8
b9693a2d9a89168b86cf01033b8420bf8db652d6
cmd: fix some issues in the comments Change-Id: Id2c4152b43c7ee1a687e49da7dda5a690e554231 Reviewed-on: https://go-review.googlesource.com/c/go/+/727900 Reviewed-by: Keith Randall <khr@google.com> Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> Reviewed-by: Keith Randall <khr@golang.org> LUCI-TryBot-Result: Go LUCI...
[ { "path": "src/cmd/compile/internal/inline/inlheur/analyze_func_params.go", "patch": "@@ -122,9 +122,9 @@ func (pa *paramsAnalyzer) findParamIdx(n *ir.Name) int {\n \n type testfType func(x ir.Node, param *ir.Name, idx int) (bool, bool)\n \n-// paramsAnalyzer invokes function 'testf' on the specified expres...
2025-12-08T04:18:59
swiftlang/swift
0a2dd101b1bd6a88035b05ae669d6f565383376d
0a515201db3ae43fba5c6b214722efaa1a3d752f
Fix some IRGen tests on arm64e rdar://171385118
[ { "path": "test/IRGen/coroutine_accessors.swift", "patch": "@@ -23,32 +23,34 @@\n // CHECK-SAME: i32 0\n // CHECK-SAME: }>\n \n-// CHECK-arm64e-LABEL: _swift_coro_malloc.ptrauth = private constant {\n-// CHECK-arm64e-SAME: ptr @_swift_coro_malloc,\n+// CHECK-arm64e-LABEL: _swift_coro_free.ptrauth = p...
2026-03-03T20:03:42
tensorflow/tensorflow
59eb4d26750f46e5817dea85b3fe773ac28251a5
23fd4c3040966a3e2568f524fe4d4bf88d2847ad
Migrate deprecated tsl::errors to absl equivalents. PiperOrigin-RevId: 871388988
[ { "path": "tensorflow/core/common_runtime/eager/context.cc", "patch": "@@ -344,11 +344,11 @@ absl::Status EagerContext::SelectDevice(DeviceNameUtils::ParsedName preferred,\n TF_RETURN_IF_ERROR(SupportedDeviceTypesForNode(\n *device_type_list, ndef, &supported_devs, &HostCPU()->parsed_name()));\n i...
2026-02-17T18:38:37
denoland/deno
0aa1fe12be1e3e71934eaf51037db67dcad00f37
c006bba8061e2d96004823c64287515937b0897d
fix: add raw.esm.sh to default `--allow-import` list (#32030) Closes https://github.com/denoland/deno/issues/31015
[ { "path": "cli/args/flags.rs", "patch": "@@ -4574,7 +4574,7 @@ fn permission_args(app: Command, requires: Option<&'static str>) -> Command {\n <g>-W, --allow-write[=<<PATH>...]</> Allow file system write access. Optionally specify allowed paths.\n <p...
2026-02-03T15:21:29
golang/go
b9693a2d9a89168b86cf01033b8420bf8db652d6
1274d58dacc92204f5bb233b22a93c30a37f34e5
runtime: on AIX check isarchive before calling libpreinit On AIX, all externally linked programs call _rt0_ppc64_aix_lib, as seen in runtime/cgo/gcc_aix_ppc64.c. The idea is that we only do the library initialization is isarchive is set. However, before this CL, AIX programs would call libpreinit before checking isarc...
[ { "path": "src/runtime/asm_ppc64x.s", "patch": "@@ -30,9 +30,6 @@ TEXT _rt0_ppc64x_lib(SB),NOSPLIT|NOFRAME,$0\n \tMOVD\t$runtime·reginit(SB), R12\n \tMOVD\tR12, CTR\n \tBL\t(CTR)\n-\tMOVD\t$runtime·libpreinit(SB), R12\n-\tMOVD\tR12, CTR\n-\tBL\t(CTR)\n \n #ifdef GOOS_aix\n \t// See runtime/cgo/gcc_aix_ppc64...
2025-12-07T06:00:20
swiftlang/swift
fb7e6af60ec825a929c8f405e1441c0b00cb05d8
18db1e8ba1d9e53f3ae2728539842484c1f71d89
[Caching] Fix a module build regression in #86881 Fix a module build regression in PR86881 that causes an increase of swift interface compilation tasks due to including the const-gather-protocol list files into the build dependencies for swiftinterface files. This causes targets cannot sharing module dependencies. Th...
[ { "path": "lib/DependencyScan/ModuleDependencyScanner.cpp", "patch": "@@ -481,11 +481,6 @@ SwiftDependencyTracker::SwiftDependencyTracker(\n StringRef AccessNotePath = CI.getLangOptions().AccessNotesPath;\n if (!AccessNotePath.empty())\n addCommonFile(AccessNotePath);\n-\n- // const-gather-protocol...
2026-03-03T16:54:39
tensorflow/tensorflow
23fd4c3040966a3e2568f524fe4d4bf88d2847ad
e84a32ee027973901202b579da9c8538962bf89b
Migrate deprecated tsl::errors to absl equivalents. PiperOrigin-RevId: 871388855
[ { "path": "tensorflow/core/common_runtime/eager/BUILD", "patch": "@@ -177,7 +177,10 @@ tf_cuda_library(\n \"//tensorflow/core/framework:full_type_proto_cc\",\n \"//tensorflow/core/lib/core:status\",\n ],\n- }),\n+ }) + [\n+ \"@com_google_absl//absl/status\",\n+ ...
2026-02-17T18:38:20
denoland/deno
13a5674462ab9e7d8c532f5a85f2e5b9c2445ce2
0b38d25ba7c1893757e15fbb2a68537b0191321f
fix: flaky cron socket tests (#32023)
[ { "path": "tests/specs/run/unstable_cron_socket_basic/server.js", "patch": "@@ -45,8 +45,8 @@ outer: while (true) {\n setTimeout(async () => {\n const invocation =\n JSON.stringify({ kind: \"invoke\", name: firstCronName }) + \"\\n\";\n+ console.error(\"[CRON SERVER] I...
2026-02-03T11:34:54
golang/go
1274d58dacc92204f5bb233b22a93c30a37f34e5
9e0981230803265f3245193e1d61cc3599c9ca54
go/types, types2: add check for finite size at value observance Each type must be representable by a finite amount of Go source code after replacing all alias type names, value names, and embedded interfaces (per #56103) with the RHS from their respective declarations ("expansion"); otherwise the type is invalid. Fur...
[ { "path": "src/cmd/compile/internal/types2/cycles.go", "patch": "@@ -102,3 +102,43 @@ func (check *Checker) directCycle(tname *TypeName, pathIdx map[*TypeName]int) {\n \t\t}\n \t}\n }\n+\n+// TODO(markfreeman): Can the value cached on Named be used in validType / hasVarSize?\n+\n+// finiteSize returns wheth...
2025-12-03T20:14:22
denoland/deno
0b38d25ba7c1893757e15fbb2a68537b0191321f
cfc0451d9552d374441b73f322e99a0c3518a5e6
fix(ext/node): make `child_process` stdio streams Socket instances (#31975) This PR fixes child process stdio streams (`stdin`, `stdout`, `stderr`) to be instances of `Socket` from `node:net`, matching Node.js behavior.
[ { "path": "ext/node/polyfills/internal/child_process.ts", "patch": "@@ -156,6 +156,8 @@ function flushStdio(subprocess: ChildProcess) {\n // StreamBase, so it can be used with node streams\n class StreamResource implements StreamBase {\n #rid: number;\n+ #isUnref = false;\n+ #pendingPromises: Set<Promis...
2026-02-02T18:25:21
swiftlang/swift
abc0f53e5459af848eecf40ffb883c707745860d
3dce226714a69590e75d408a6b93a01d5f008576
[PrintAsClang] skip header maps when collecting include paths Header map lookup is not handled when doing prefix checks for textual header inclusion. Skip adding them to the list instead of adding invalid paths for each header map.
[ { "path": "lib/PrintAsClang/PrintAsClang.cpp", "patch": "@@ -450,6 +450,11 @@ writeImports(raw_ostream &out, llvm::SmallPtrSetImpl<ImportModuleTy> &imports,\n \n for (auto searchDir = clangHeaderSearchInfo.search_dir_begin();\n searchDir != clangHeaderSearchInfo.search_dir_end(); ++searchDir) {...
2026-02-11T17:52:07
tensorflow/tensorflow
f080a4086bad4631f78fb4907e388c20a0f78832
b65cdcaf96a94a4f3765400b54cc74a0fc4385c9
Fix logic bug in tracking output_instruction in forward pipelining. PiperOrigin-RevId: 871371014
[ { "path": "third_party/xla/xla/service/collective_pipeliner.cc", "patch": "@@ -1728,7 +1728,8 @@ absl::StatusOr<HloInstruction*> TransformLoopForward(\n InstructionMap while_body_to_peeled;\n absl::flat_hash_set<HloInstruction*> to_skip_set;\n absl::flat_hash_map<HloInstruction*, HloInstruction*> form...
2026-02-17T18:02:37
mrdoob/three.js
62244320918e55a9effd0713abab039e783d0bf6
f00d971c7b57aefe36bf4bf8bdf7af5c01da89e1
WebGPURenderer: Introduce `ProjectorLight` (#31022) * Texture: Introduce `width`, `height`, `depth` * Fix `lightShadowMatrix()` if `renderer.shadowMap.enabled` is `false` * Remove `spotLight.attenuationNode` * Introduce `ProjectorLight` * add `webgpu_lights_projector` example * Update webgpu_lights_projector.jpg ...
[ { "path": "examples/files.json", "patch": "@@ -342,6 +342,7 @@\n \t\t\"webgpu_lights_ies_spotlight\",\n \t\t\"webgpu_lights_phong\",\n \t\t\"webgpu_lights_physical\",\n+\t\t\"webgpu_lights_projector\",\n \t\t\"webgpu_lights_rectarealight\",\n \t\t\"webgpu_lights_selective\",\n \t\t\"webgpu_lights_spotlight\...
2025-04-30T16:12:48
mrdoob/three.js
f00d971c7b57aefe36bf4bf8bdf7af5c01da89e1
6b9622144c7ff9400b7baf4c926274170cd7aeb1
Update bug_report.yml
[ { "path": ".github/ISSUE_TEMPLATE/bug_report.yml", "patch": "@@ -74,6 +74,7 @@ body:\n - Firefox\n - Safari\n - Edge\n+ - Meta Quest Browser\n - type: dropdown\n id: os\n attributes:", "additions": 1, "deletions": 0, "language": "YAML" } ]
2025-04-30T09:46:22
denoland/deno
cfc0451d9552d374441b73f322e99a0c3518a5e6
22a5f7109df9c124c14fe90da6e4f054f974dc8a
fix: support DENO_SERVE_ADDRESS not being applied to the first server (#31982)
[ { "path": "ext/http/00_serve.ts", "patch": "@@ -733,7 +733,6 @@ function serve(arg1, arg2) {\n if (serveAddressOverrideConsumed) {\n return serveInner(options, handler);\n }\n- serveAddressOverrideConsumed = true;\n \n const {\n 0: overrideKind,\n@@ -742,6 +741,8 @@ function serve(arg1, arg2)...
2026-02-02T15:42:38
tensorflow/tensorflow
bf7e6beeb96bd070e8c833240b61cfd2952a8924
7252353bf4b3c5cc1ddbc3570d9ec01a241bc32c
Improve error message when creating a temporary file fails Add the temporary file path and the specific system error when `mkstemp` fails. PiperOrigin-RevId: 871317143
[ { "path": "third_party/xla/third_party/tsl/tsl/platform/path.cc", "patch": "@@ -20,6 +20,8 @@ limitations under the License.\n #include <stdlib.h>\n #include <sys/stat.h>\n #include <sys/types.h>\n+\n+#include <cstring>\n #if defined(PLATFORM_WINDOWS)\n #include <windows.h>\n #else\n@@ -338,7 +340,8 @@ stri...
2026-02-17T15:52:41
swiftlang/swift
96618438764628a05659747f78806d3fde8ddae4
9336f9860a98ec3770cab2acbf83a47d51de2439
Schubfach-based Float/Double debugDescription This reimplements debugDescription for Float and Double using a new algorithm based on Raffaello Guilietti's Schubfach paper, carrying over some performance improvements from the previous Grisu-based implementation. In practice, this is about twice as fast as the previous...
[ { "path": "stdlib/public/core/CMakeLists.txt", "patch": "@@ -92,7 +92,9 @@ split_embedded_sources(\n EMBEDDED FlatMap.swift\n EMBEDDED Flatten.swift\n EMBEDDED FloatingPoint.swift\n+ EMBEDDED FloatingPointFromString.swift\n EMBEDDED FloatingPointRandom.swift\n+ EMBEDDED FloatingPointToString.swift...
2026-03-03T15:06:52
mrdoob/three.js
84b6feb7837d02cd445cfe2b17f2e5453c053a80
d088fc1bf1a94474a2edcc64f1386ebb07c26863
WebGPURenderer: Array-Based RenderTarget Refactor (#30959) * ShadowNode: Inherit camera.layers only if shadow.layers is not set * Fix layers check * invert condition * restore after render * move array creation to module scope * WebGPURenderer: Refactor Texture Arrays * fix conflicts * cleanup and fix multiview...
[ { "path": "examples/jsm/helpers/TextureHelperGPU.js", "patch": "@@ -51,7 +51,7 @@ class TextureHelper extends Mesh {\n \n \t\t\tcolorNode = texture3D( texture ).sample( uvw );\n \n-\t\t} else if ( texture.isDataArrayTexture || texture.isCompressedArrayTexture ) {\n+\t\t} else if ( texture.isArrayTexture || ...
2025-04-30T02:44:16
denoland/deno
22a5f7109df9c124c14fe90da6e4f054f974dc8a
7ab62a769be154c0926fe8be640d48674eb79614
fix: run on pre-Windows 10 version 1709 (#32002)
[ { "path": "Cargo.lock", "patch": "@@ -3920,7 +3920,7 @@ source = \"registry+https://github.com/rust-lang/crates.io-index\"\n checksum = \"33d852cb9b869c2a9b3df2f71a3074817f01e1844f839a144f5fcef059a4eb5d\"\n dependencies = [\n \"libc\",\n- \"windows-sys 0.59.0\",\n+ \"windows-sys 0.52.0\",\n ]\n \n [[packag...
2026-02-02T15:40:35
golang/go
a33bbf1988685215cdf300feb47d2e356e459b3e
a88a96330f312d08f5d191c66a463b165ac1b96d
weak: fix weak pointer test to correctly iterate over weak pointers after GC This change fixes a bug in the weak pointer test where the loop was attempting to iterate over a nil slice (bt) instead of the weak pointer slice (wt). After setting bt to nil and running GC, the test should iterate over the weak pointers to...
[ { "path": "src/weak/pointer_test.go", "patch": "@@ -110,7 +110,7 @@ func TestPointerEquality(t *testing.T) {\n \tbt = nil\n \t// bt is no longer referenced.\n \truntime.GC()\n-\tfor i := range bt {\n+\tfor i := range wt {\n \t\tst := wt[i].Value()\n \t\tif st != nil {\n \t\t\tt.Fatalf(\"expected weak pointe...
2025-11-24T06:38:30
tensorflow/tensorflow
0ba6788b0df647a2346c584a08f3ae831b1c2caa
34fef0ccc062104a3daba23192db29eb3c8b8c3b
PR #37887: Bump github/codeql-action from 4.32.2 to 4.32.3 Imported from GitHub PR https://github.com/openxla/xla/pull/37887 Bumps [github/codeql-action](https://github.com/github/codeql-action) from 4.32.2 to 4.32.3. <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...
2026-02-17T09:49:00
mrdoob/three.js
48712b710468cf29cac9775f030c2b8f50f328a9
03e41eaa874d6923cc326bfaa0188d9b88138e5c
TSL: Fix `lightShadowMatrix()` if `renderer.shadowMap.enabled` is `false` (#31024)
[ { "path": "src/nodes/accessors/Lights.js", "patch": "@@ -30,9 +30,9 @@ export function lightShadowMatrix( light ) {\n \n \tconst data = getLightData( light );\n \n-\treturn data.shadowMatrix || ( data.shadowMatrix = uniform( 'mat4' ).setGroup( renderGroup ).onRenderUpdate( () => {\n+\treturn data.shadowMatr...
2025-04-29T01:40:53
denoland/deno
9132ad958c83a0d0b199de12b69b877f63edab4c
b51441cc1bf99a0ccc66ff706a1887ee0a933d46
fix(ext/node): escape more shell args (#31999) Follow up to https://github.com/denoland/deno/pull/31838
[ { "path": "ext/node/polyfills/internal/child_process.ts", "patch": "@@ -968,7 +968,16 @@ export function normalizeSpawnArguments(\n ]);\n \n if (options.shell) {\n- let command = ArrayPrototypeJoin([file, ...args], \" \");\n+ // When args are provided, escape them to prevent shell injection.\n+ ...
2026-02-02T13:17:42
golang/go
276cc4d3dbbf413be008113e6c88ffb3df2de4d6
f2d96272cb1b695dfddcd5b80dfed2ad2ee6db59
cmd/link: fix AIX builds after recent linker changes This updates XCOFF-specific code for the recent addition of funcdata to pclntab. Because XCOFF puts separate symbols into separate csects, each with their own alignment, it's important to tell the external linker the expected alignment of each part of pclntab. Othe...
[ { "path": "src/cmd/link/internal/ld/pcln.go", "patch": "@@ -55,13 +55,20 @@ type pclntab struct {\n \n // addGeneratedSym adds a generator symbol to pclntab, returning the new Sym.\n // It is the caller's responsibility to save the symbol in state.\n-func (state *pclntab) addGeneratedSym(ctxt *Link, name st...
2025-12-02T00:25:56
tensorflow/tensorflow
34fef0ccc062104a3daba23192db29eb3c8b8c3b
38dd09551686ad00bc837f383b3a1db282079498
PR #37893: GPU collectives: increase maximum device comm size Imported from GitHub PR https://github.com/openxla/xla/pull/37893 📝 Summary of Changes XLA hardcodes a buffer size that must be large enough for all platforms. Increase it slightly. 🎯 Justification Future platform-specific implementation versions are fr...
[ { "path": "third_party/xla/xla/backends/gpu/collectives/gpu_communicator.h", "patch": "@@ -91,7 +91,7 @@ class GpuDeviceCommunicator {\n \n // A packed kernel argument type for passing device communicator to device\n // kernels (byte storage appropriately sized to fit platform-specific handle).\n- usin...
2026-02-17T09:36:38
kubernetes/kubernetes
7d68b9b996331564eab75f4ab7ba0e30db6a0a96
2a9b8baab74f268b65ce5abd3cf897606ff43b3b
Update the csi-driver-host-path version to 1.17.1 It fixes one annoying flake, https://github.com/kubernetes-csi/external-snapshotter/issues/1357
[ { "path": "test/e2e/testing-manifests/storage-csi/external-snapshotter/volume-group-snapshots/csi-hostpath-plugin.yaml", "patch": "@@ -219,7 +219,7 @@ spec:\n serviceAccountName: csi-hostpathplugin-sa\n containers:\n - name: hostpath\n- image: registry.k8s.io/sig-storage/hostpat...
2026-02-10T15:32:38
mrdoob/three.js
03e41eaa874d6923cc326bfaa0188d9b88138e5c
8ee79cfe9433485c8e2cdccbef51466c0f110d4a
Add dev builds to speed up dev iteration (#30865) * done * fix promise
[ { "path": "package.json", "patch": "@@ -48,8 +48,10 @@\n \"build\": \"rollup -c utils/build/rollup.config.js\",\n \"build-module\": \"rollup -c utils/build/rollup.config.js --configOnlyModule\",\n \"build-docs\": \"jsdoc -c utils/docs/jsdoc.config.json\",\n- \"dev\": \"concurrently --names \\...
2025-04-28T19:59:37
swiftlang/swift
0f2bb86a0f0b8dd782b1765e7e8bd4f8a3fb21f8
48822370d1aabe4b8b156922b9bcd7c8f75545b9
[cxx-interp] [NFC] Fix CxxRecordSemantics request declaration in TypeIDZone This declaration is inconsistent with what is in ClangImporterRequests.h though that appears to be harmless. Fix it anyway.
[ { "path": "include/swift/ClangImporter/ClangImporterTypeIDZone.def", "patch": "@@ -31,7 +31,7 @@ SWIFT_REQUEST(ClangImporter, ObjCInterfaceAndImplementationRequest,\n ObjCInterfaceAndImplementation(Decl *), SeparatelyCached,\n NoLocationInfo)\n SWIFT_REQUEST(ClangImporter, CxxRec...
2026-02-28T21:38:36
denoland/deno
b51441cc1bf99a0ccc66ff706a1887ee0a933d46
a7ddc6dea129c68250a84ac470d19f8b74d4f672
fix: upgrade deno_core to 0.383.0 (#32014) Closes https://github.com/denoland/deno/issues/32011
[ { "path": "Cargo.lock", "patch": "@@ -1887,9 +1887,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_core\"\n-version = \"0.382.0\"\n+version = \"0.383.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"ff4bdf251dc4597ba3f646e2f007208c475e40b5a412c039b7c75ff277fe7b3...
2026-02-02T12:33:42
mrdoob/three.js
8ee79cfe9433485c8e2cdccbef51466c0f110d4a
817c791b01e050d08473b86437ed42fae5762243
SpotLightShadow: Introduce `aspect` property (#31020) * TSL: Fix convert `.set*()` value to node-object * SpotLightShadow: Introduce `aspect` * improve custom aspect example * cleanup * Update webgpu_lights_spotlight.html * Update webgpu_lights_spotlight.html
[ { "path": "examples/webgpu_lights_spotlight.html", "patch": "@@ -26,7 +26,7 @@\n \t\t<script type=\"module\">\n \n \t\t\timport * as THREE from 'three';\n-\t\t\timport { Fn, vec2, length, abs, max, min, div, mul, clamp, acos } from 'three/tsl';\n+\t\t\timport { Fn, vec2, length, uniform, abs, max, min, sub,...
2025-04-28T18:14:41
tensorflow/tensorflow
42a710872fc0ed90b1546db976c7242c24c7122a
d259ccc7a308f4e526848736525f8c030788deb6
Fix Layout Propagation in GPU AOT Compilation. PiperOrigin-RevId: 871041560
[ { "path": "third_party/xla/xla/pjrt/gpu/BUILD", "patch": "@@ -457,6 +457,7 @@ cc_library(\n \":se_gpu_topology_description\",\n \"//xla:shape_util\",\n \"//xla:status_macros\",\n+ \"//xla/client:executable_build_options\",\n \"//xla/hlo/builder:xla_computation\",\n ...
2026-02-17T01:42:59
kubernetes/kubernetes
0511a756853a6e3f7569cbf1ab96593831c2a77e
59cddedb04dcb2c3c5550e9f508b9771ba99f29c
DRA E2E: fix data race in test driver UnprepareResourceClaims was not locking the mutex and thus raced with GetPreparedResources, as found when data race detection was enabled in kubernetes-kind-dra-all. The locking gets added at the same level as in PrepareResourceClaims, i.e. in the underlying implementation right ...
[ { "path": "test/e2e/dra/test-driver/app/kubeletplugin.go", "patch": "@@ -462,6 +462,8 @@ func (ex *ExamplePlugin) nodeUnprepareResource(ctx context.Context, claimRef kub\n \n \tlogger := klog.FromContext(ctx)\n \n+\tex.mutex.Lock()\n+\tdefer ex.mutex.Unlock()\n \tclaimID := ClaimID{Name: claimRef.Name, UID:...
2026-02-10T14:20:48
golang/go
144cf17d2c444a530d7c08c5870dc8e70bec2c72
3417b48b17d01cf170317d679aef10984cc1a4d0
[dev.simd] simd, cmd/compile: move "simd" to "simd/archsimd" Also removes a few leftover TODOs and scraps of commented-out code from simd development. Updated etetest.sh to make it behave whether amd64 implies the experiment, or not. Fixes #76473. Change-Id: I6d9792214d7f514cb90c21b101dbf7d07c1d0e55 Reviewed-on: ht...
[ { "path": "src/cmd/compile/internal/inline/inl.go", "patch": "@@ -445,7 +445,7 @@ type hairyVisitor struct {\n \n func isDebugFn(fn *ir.Func) bool {\n \t// if n := fn.Nname; n != nil {\n-\t// \tif n.Sym().Name == \"Int32x8.Transpose8\" && n.Sym().Pkg.Path == \"simd\" {\n+\t// \tif n.Sym().Name == \"Int32x8....
2025-12-08T18:24:12
swiftlang/swift
31ad35cc951c07cc3a1f94c67e4864ded148007e
a5831a591ae5eecefbeb7501dc5e966c484f7c39
[Concurrency] Fix noniso/nonsending spelling in task cancel handler (#87616) The isolation attribute should be after public, not before. Introduced in https://github.com/swiftlang/swift/commit/0aac69bd351285e8861d6e7d89955dc28d747b89
[ { "path": "stdlib/public/Concurrency/TaskCancellation.swift", "patch": "@@ -74,8 +74,7 @@ import Swift\n /// not cancel tasks or resume continuations while holding that lock.\n @available(SwiftStdlib 5.1, *)\n @_alwaysEmitIntoClient\n-nonisolated(nonsending)\n-public func withTaskCancellationHandler<Return,...
2026-03-03T07:50:54
mrdoob/three.js
817c791b01e050d08473b86437ed42fae5762243
09fcd038e5a86c26ae40cda5a101e6a38f885704
FBXLoader: Improve error handling. (#31017)
[ { "path": "examples/jsm/loaders/FBXLoader.js", "patch": "@@ -477,6 +477,13 @@ class FBXTreeParser {\n \n \t\t}\n \n+\t\tif ( fileName === undefined ) {\n+\n+\t\t\tconsole.warn( 'FBXLoader: Undefined filename, creating placeholder texture.' );\n+\t\t\treturn new Texture();\n+\n+\t\t}\n+\n \t\tconst texture =...
2025-04-28T09:49:41
denoland/deno
7c5447f08306f777a46dbb209faed3d02d67e64d
c78df6f9888b422e44a26ebb5ae2561d5ac5c752
fix(ext/node): error formatting compatibility (#31970) Towards #29801 Gives better error formating based on [Node's implementation](https://github.com/nodejs/node/blob/70f6b58ac655234435a99d72b857dd7b316d34bf/lib/internal/util/inspect.js#L1661), especially on `AggregateError` instance / nested errors. This in turn al...
[ { "path": "ext/web/01_console.js", "patch": "@@ -35,38 +35,54 @@ import {\n } from \"ext:core/ops\";\n import * as ops from \"ext:core/ops\";\n const {\n+ AggregateError,\n+ AggregateErrorPrototype,\n Array,\n ArrayBufferPrototypeGetByteLength,\n+ ArrayBuffer,\n+ ArrayBufferPrototype,\n+ ArrayFrom,...
2026-02-02T09:45:07
tensorflow/tensorflow
2cd484b4ff5460be1b7a2cd2e138a378582daef2
d23a77161813cb194995012dd227ac732335bfa6
[XLA:GPU] Add --xla_gpu_print_minmax flag For printing the min/max values in thunk output buffers, for extra info during debugging. The values are detected as part of the float checker. Enabling the flag makes float checker log the values for every checked buffer. Unlike NaN/Inf checks, min/max values are reported fo...
[ { "path": "third_party/xla/xla/backends/gpu/runtime/thunk_buffer_debug_float_check.cc", "patch": "@@ -202,6 +202,8 @@ struct EnabledChecks {\n bool check_infs = false;\n // Should crash on found Infs?\n bool check_infs_fatal = false;\n+ // Should log min/max values from buffers?\n+ bool log_minmax =...
2026-02-16T15:33:30
golang/go
4837bcc92c27e72c157e2c7b7e098dd91fa36fd3
b5f6816cea5b195e583c60e97a519d5d4ad5793f
internal/trace: skip tests for alloc/free experiment by default These tests are just too flaky and I don't have the time to fix them right now. I also am thinking to just change how trace experiments work, so it may not be worth taking the time to fix them. For #70838. Change-Id: Ia896215a0cbeccac99b73fefc836088f435...
[ { "path": "src/internal/trace/reader_test.go", "patch": "@@ -20,6 +20,7 @@ import (\n var (\n \tlogEvents = flag.Bool(\"log-events\", false, \"whether to log high-level events; significantly slows down tests\")\n \tdumpTraces = flag.Bool(\"dump-traces\", false, \"dump traces even on success\")\n+\tallocFre...
2025-12-08T17:48:53
mrdoob/three.js
617ed86064333f5254ca1f364d7065fe86470480
68c274e9841d3c3f1b127b4f2dd5a6aeadbecb57
Examples: Fix `webgpu_water` GUI (#31014)
[ { "path": "examples/webgpu_water.html", "patch": "@@ -149,7 +149,7 @@\n \t\t\t\t// gui\n \n \t\t\t\tconst gui = new GUI();\n-\t\t\t\tconst waterNode = water.material.fragmentNode;\n+\t\t\t\tconst waterNode = water.material.colorNode;\n \n \t\t\t\tgui.addColor( params, 'color' ).onChange( function ( value ) ...
2025-04-28T04:02:50
swiftlang/swift
909bee7bdcd1e99f46f30ca8e7d62c1954ab217c
22b79a56640abacc412e7504af0ca5c7707231f1
[CoroutineAccessors] Fix IsFinalRequest for YieldingBorrow/Mutate rdar://171552231
[ { "path": "lib/Sema/TypeCheckDecl.cpp", "patch": "@@ -878,6 +878,8 @@ IsFinalRequest::evaluate(Evaluator &evaluator, ValueDecl *decl) const {\n \n case AccessorKind::Read:\n case AccessorKind::Modify:\n+ case AccessorKind::YieldingBorrow:\n+ case AccessorKind::YieldingM...
2026-03-02T20:57:38
denoland/deno
c78df6f9888b422e44a26ebb5ae2561d5ac5c752
d6fa98554f2e6f693730c1520a7d7d5add4995d0
fix(ext/node): use primordials in `_fs_fchown.ts` (#32007) Ref #24236 It doesn't seem like there's any tests for `fchown`?
[ { "path": "ext/node/polyfills/_fs/_fs_fchown.ts", "patch": "@@ -1,8 +1,5 @@\n // Copyright 2018-2026 the Deno authors. MIT license.\n \n-// TODO(petamoriken): enable prefer-primordials for node polyfills\n-// deno-lint-ignore-file prefer-primordials\n-\n import {\n type CallbackWithError,\n makeCallback...
2026-02-01T11:15:23
golang/go
b5f6816cea5b195e583c60e97a519d5d4ad5793f
44a39c9dacdb3378197b9515add22d292dd71af9
cmd/link: generate DWARF for moduledata Fixes #76731 Change-Id: I5c686c91af8543b57880a89d30393912ef1958ad Reviewed-on: https://go-review.googlesource.com/c/go/+/727760 Auto-Submit: Ian Lance Taylor <iant@golang.org> Reviewed-by: Alessandro Arzilli <alessandro.arzilli@gmail.com> Reviewed-by: Florian Lehner <lehner.flo...
[ { "path": "src/cmd/link/dwarf_test.go", "patch": "@@ -156,10 +156,102 @@ func testDWARF(t *testing.T, buildmode string, expectDWARF bool, env ...string)\n \t\t\tif !strings.HasSuffix(line.File.Name, wantFile) || line.Line != wantLine {\n \t\t\t\tt.Errorf(\"%#x is %s:%d, want %s:%d\", addr, line.File.Name, l...
2025-12-06T23:06:11
tensorflow/tensorflow
d23a77161813cb194995012dd227ac732335bfa6
20334e29ee0ecc0ba00e99a57e8587f9e594b984
PR #37235: [XLA:GPU][oneAPI] Fix platform error in stream executor tests with SYCL backend Imported from GitHub PR https://github.com/openxla/xla/pull/37235 This PR fixes `Could not find registered platform with name: "cuda". Available platform names are: SYCL Host"` error when running the following stream executor t...
[ { "path": "third_party/xla/third_party/gpus/sycl/BUILD.tpl", "patch": "@@ -1,3 +1,5 @@\n+load(\"@bazel_skylib//:bzl_library.bzl\", \"bzl_library\")\n+\n package(default_visibility = [\"//visibility:public\"])\n \n # Intel(R) Software Development Tools Licensed under the Intel End User License Agreement for ...
2026-02-16T15:06:33
kubernetes/kubernetes
45251e5f654e6c052659d110cd721f9fbe185191
59cddedb04dcb2c3c5550e9f508b9771ba99f29c
client-go cache: allow passing name+logger to DeltaFIFO, RealFIFO and Reflector This improves logging and enables more informative waiting for cache sync in a following commit. It addresses one klog.TODO in the Reflector. The RealFIFOOptions and InformerOptions structs get extended the same way as DeltaFIFOOptions be...
[ { "path": "staging/src/k8s.io/client-go/tools/cache/controller.go", "patch": "@@ -27,6 +27,7 @@ import (\n \tutilruntime \"k8s.io/apimachinery/pkg/util/runtime\"\n \t\"k8s.io/apimachinery/pkg/util/wait\"\n \tclientgofeaturegate \"k8s.io/client-go/features\"\n+\t\"k8s.io/klog/v2\"\n \t\"k8s.io/utils/clock\"\...
2025-11-18T17:09:46
mrdoob/three.js
5cadd4f4c2c1f061bdad178358f404c50f04685b
6e737338308332b4a2ed93b47d77ea1bdb46c8b5
Examples: WebGPU Compute Water Adjustment (#30985) * init branch * fix duck material * bounds checks fixed still something off with velocity on height change
[ { "path": "examples/webgpu_compute_water.html", "patch": "@@ -31,28 +31,48 @@\n \t\t\timport { color, instanceIndex, struct, If, varyingProperty, uint, int, negate, floor, float, length, clamp, vec2, cos, vec3, vertexIndex, Fn, uniform, instancedArray, min, max, positionLocal, transformNormalToView } from '...
2025-04-27T17:56:28
swiftlang/swift
ac31e2538654a30dda9b145a52a20b1d2bb9fd1c
546f1536698ac253b1c280da99da3752e6cf81d2
[Sema] Let lazy storage inherit original variable isolation Fixes rdar://156415458 by adding a case to computeActorIsolation to give a lazy storage property the same isolation as the original variable. Also avoids showing the synthetic stored property name.
[ { "path": "include/swift/AST/DiagnosticsSema.def", "patch": "@@ -6086,7 +6086,7 @@ ERROR(non_concurrent_type_member,none,\n (Type, bool, DeclName, const ValueDecl *, bool))\n ERROR(concurrent_value_class_mutable_property,none,\n \"stored property %0 of 'Sendable'-conforming %kind1 is mutable\",\...
2026-02-28T00:57:48
denoland/deno
d6fa98554f2e6f693730c1520a7d7d5add4995d0
51bd0803b8fe56ff20d054b54e9029acd3fb9f04
fix(ext/node): enable defensive option on `DatabaseSync` (#32004) Allows https://github.com/nodejs/node/blob/v24.12.0/test/parallel/test-sqlite-config.js to pass
[ { "path": "ext/node/ops/sqlite/database.rs", "patch": "@@ -23,6 +23,7 @@ use deno_core::v8_static_strings;\n use deno_permissions::OpenAccessKind;\n use deno_permissions::PermissionsContainer;\n use rusqlite::ffi as libsqlite3_sys;\n+use rusqlite::ffi::SQLITE_DBCONFIG_DEFENSIVE;\n use rusqlite::ffi::SQLITE_...
2026-01-31T12:24:18
golang/go
4122d3e9ea55c8d2293e0a0c59cd6e467021c9e0
34397865b1174f4d4b33941877a5906e50965b3b
runtime: use atomic C types with atomic C functions Mark types as _Atomic - fixes breakage introduced in CL 726964 across most LLVM based platforms/builders. Change-Id: I5e64b9ccb0cf5244977a787a52ee124bc03c10de Reviewed-on: https://go-review.googlesource.com/c/go/+/728040 LUCI-TryBot-Result: Go LUCI <golang-scoped@lu...
[ { "path": "src/runtime/testdata/testprogcgo/notingo.go", "patch": "@@ -14,8 +14,8 @@ package main\n \n extern void Ready();\n \n-static int spinning;\n-static int released;\n+static _Atomic int spinning;\n+static _Atomic int released;\n \n static void* enterGoThenSpinTwice(void* arg __attribute__ ((unused))...
2025-12-08T13:11:55
mrdoob/three.js
6e737338308332b4a2ed93b47d77ea1bdb46c8b5
25873ff60e19b24e2cb71a01778363f7b969194a
MaterialNode: Fix `dashOffset` with `LineDashedMaterial`. (#31008) * MaterialNode: Fix `dashOffset` with `LineDashedMaterial`. * Examples: Fix dash scale property.
[ { "path": "examples/webgpu_lines_fat_wireframe.html", "patch": "@@ -220,7 +220,7 @@\n \n \t\t\t\tgui.add( param, 'dash scale', 0.5, 1, 0.1 ).onChange( function ( val ) {\n \n-\t\t\t\t\tmatLine.dashScale = val;\n+\t\t\t\t\tmatLine.scale = val;\n \t\t\t\t\tmatLineDashed.scale = val;\n \n \t\t\t\t} );", "a...
2025-04-27T15:56:28
tensorflow/tensorflow
e64e6490574c407ee7b03a118c6fe4054d2fc91a
ad341325b818a99ef6a59b3430aad5290418f115
[XLA:GPU] Refactor float checker logs Change the format of float checker messages to be more concise: squash nan/inf/zeros reports count into a single log, and include HLO module/ID. This will reduce duplication needed to add min/max loggin. Before: ``` E0211 04:30:42.344570 708 thunk_buffer_debug_float_check.c...
[ { "path": "third_party/xla/xla/backends/gpu/runtime/thunk_buffer_debug_float_check.cc", "patch": "@@ -23,18 +23,18 @@ limitations under the License.\n #include <memory>\n #include <optional>\n #include <string>\n+#include <unordered_set>\n #include <utility>\n #include <vector>\n \n+#include \"absl/algorith...
2026-02-16T12:56:45
swiftlang/swift
272eec14a2a7661dea893e23a4b79b95e175ca48
f7a6cb580a48b7db57ad6592178fc1838eaa419a
Sema: Upgrade missing import diagnostics for key paths. Diagnose missing imports for members referenced by key paths as errors, rather than warnings. This reverts the downgrade that was originally implemented in https://github.com/swiftlang/swift/pull/84160. Resolves rdar://160154529.
[ { "path": "lib/Sema/MiscDiagnostics.cpp", "patch": "@@ -6550,8 +6550,7 @@ static void diagnoseMissingMemberImports(const Expr *E, const DeclContext *DC) {\n if (auto *KPE = dyn_cast<KeyPathExpr>(E)) {\n for (const auto &component : KPE->getComponents()) {\n if (component.hasDeclRef()...
2026-03-02T21:36:00
denoland/deno
51bd0803b8fe56ff20d054b54e9029acd3fb9f04
7e2abb4c3165af017b49b0ef102c9e4691510676
fix: Reload the `CronHandlerImpl` if necessary when the control socket receives new envs (#31996)
[ { "path": "ext/cron/handler_impl.rs", "patch": "@@ -24,6 +24,40 @@ impl CronHandlerImpl {\n Err(_) => Self::Local(LocalCronHandler::new()),\n }\n }\n+\n+ /// Check if the handler needs to be reloaded based on current environment.\n+ /// Returns a new handler if reload is needed, None otherwise...
2026-01-30T21:59:25
golang/go
34397865b1174f4d4b33941877a5906e50965b3b
d4972f6295aede2ddc35bcb1da5f6351623e9e4d
runtime: deflake TestProfBufWakeup If CI infrastructure is oversubscribed, the profile buffer reader can be blocked long enough for the status in the traceback to be something like "[syscall, 3 minutes]", rather than the "[syscall]" we are looking for. Tweak the regexp to look for the expected state at the beginning o...
[ { "path": "src/runtime/profbuf_test.go", "patch": "@@ -232,11 +232,14 @@ func TestProfBufWakeup(t *testing.T) {\n \t// The reader shouldn't wake up for this\n \tb.Write(nil, 1, []uint64{1, 2}, []uintptr{3, 4})\n \n-\t// The reader should still be blocked\n-\t//\n-\t// TODO(nick): this is racy. We could Gosc...
2025-12-06T15:09:38