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
tensorflow/tensorflow
6d086c3727e39f0702016791c81386b93b4d7b2f
bc8051a5acc04989082c47867a4aebf3a920abc1
Further optimize the `ifrt_merge_reshards` pass The current implementation of reshard merging requires reshard ops to share the same "first user" since this is used as a proxy to dominance order. However, this algorithm cannot merge two completely parallel chains of transfers that do not have the common first-user op,...
[ { "path": "third_party/xla/xla/python/ifrt/ir/tests/ifrt_merge_reshards.mlir", "patch": "@@ -101,6 +101,25 @@ func.func @merge_reshards_interleaved_with_calls(\n func.return %3#1, %5#1, %7#1, %9#1 : !array0, !array1, !array2, !array3\n }\n \n+// CHECK-LABEL: @merge_parallel_reshards\n+func.func @merge_par...
2026-03-16T17:24:35
golang/go
370513491ab89fe25afb8a4864c409a3dff836b1
0bd25dc875a3157974c06ba8d4fb33f95ac2dfdd
internal/profile: fix error message casing for function ID not found Go convention: error messages should not be capitalized Change-Id: I021f54791b7c12ffffa7106532a33cd0ee2e9377 GitHub-Last-Rev: dfa6e0ff5212deb105c747ed80041eff5efc4447 GitHub-Pull-Request: golang/go#77013 Reviewed-on: https://go-review.googlesource.c...
[ { "path": "src/internal/profile/encode.go", "patch": "@@ -232,7 +232,7 @@ func (p *Profile) postDecode() error {\n \t\t\tif id := ln.functionIDX; id != 0 {\n \t\t\t\tl.Line[i].Function = functions[id]\n \t\t\t\tif l.Line[i].Function == nil {\n-\t\t\t\t\treturn fmt.Errorf(\"Function ID %d not found\", id)\n+...
2025-12-27T14:26:09
kubernetes/kubernetes
a8c551e627aa55ae602d7c98fcd3316a652b882f
9c99d5f6c06a2a9f1441b268948fab3e6c665058
Fix test
[ { "path": "pkg/scheduler/scheduler_test.go", "patch": "@@ -1467,26 +1467,29 @@ var _ fwk.PermitPlugin = &fakePermitPlugin{}\n \n func TestNewInformerFactoryTrim(t *testing.T) {\n \tcs := fake.NewClientset()\n-\tinformerFactory := NewInformerFactory(cs, 0)\n+\n \tpd := &v1.Pod{ObjectMeta: metav1.ObjectMeta{\...
2026-03-06T01:49:00
denoland/deno
881f8c0e0f0f3431185247a0e28fa41a0c079cfb
d0c9173d9e0e92a40b74e03096d2fdec0bd00193
fix(ext/node): use max salt length as default for RSA-PSS signing (#32534) ## Summary - When no `saltLength` is specified for RSA-PSS signing, Node.js defaults to `RSA_PSS_SALTLEN_MAX_SIGN` (max possible salt = `key_bytes - hash_len - 2`) - Deno was defaulting to the digest length instead (via `rsa::pss::Pss::new::<D>...
[ { "path": "ext/node_crypto/sign.rs", "patch": "@@ -8,6 +8,7 @@ use elliptic_curve::generic_array::ArrayLength;\n use rand::rngs::OsRng;\n use rsa::signature::hazmat::PrehashSigner as _;\n use rsa::signature::hazmat::PrehashVerifier as _;\n+use rsa::traits::PublicKeyParts as _;\n use rsa::traits::SignatureSc...
2026-03-09T22:06:55
swiftlang/swift
7cf54e3d49bbf2e6cabbc614daa31264ed34e8da
a0451cc33af093709a1d9c64d0f2c98ba6ab903d
update_checkout: bump brotli to 1.2.0 This updates the brotli checkout to 1.2.0 which includes fixes from upstream and allows us to trim the build a slight bit.
[ { "path": "utils/update_checkout/update-checkout-config.json", "patch": "@@ -195,7 +195,7 @@\n \"curl\": \"curl-8_9_1\",\n \"libxml2\": \"v2.11.5\",\n \"zlib\": \"v1.3.1\",\n- \"brotli\": \"v1.1.0\",\n+ \"brotli\": \"v1.2.0\",\n ...
2026-03-17T17:40:31
tensorflow/tensorflow
9dcb20809e6a845344ed8e81287d214d60bc3fbf
deec275705a219067ed58ebf1ea77ef5289ef5bf
[XLA:GPU] Fix the scatter_slice_simplifier pass. The check for the update_dimensions was incorrect and worked out of luck, mostly, because there was almost always a transpose inserted between scatter and the following slice. This pattern should be moved to the GpuAlgebraicSimplfier or some pass that bubbles-up the sl...
[ { "path": "third_party/xla/xla/backends/gpu/transforms/BUILD", "patch": "@@ -2477,6 +2477,7 @@ cc_library(\n \"//xla/hlo/ir:hlo\",\n \"//xla/hlo/pass:hlo_pass\",\n \"//xla/service:hlo_creation_utils\",\n+ \"//xla/service:scatter_simplifier\",\n \"//xla/tsl/platform:err...
2026-03-16T16:45:13
golang/go
bdd4c38ce3c568efaf274281c40ecc6288c655a6
5e6a6840ae64c60a14d4c027720af5d82710e39f
runtime/cgo: fix setg_gcc call on aix/ppc64 aix/ppc64 uses function descriptors instead of function pointers. CL 708235 assumed the latter, which caused a crash when calling setg_gcc. Fix the call by dereferencing the function descriptor to get the entry point and TOC. Tested using gomote, as LUCI builders still don...
[ { "path": "src/runtime/cgo/gcc_aix_ppc64.S", "patch": "@@ -40,8 +40,11 @@ crosscall1:\n \tmr\t30, 5\n \n \t// Call setg_gcc(g)\n+\t// Function pointers are function descriptors.\n+\t// Dereference setg_gcc to get the entry point and TOC.\n \tmr\t3, 5 // arg g\n-\tmr\t12, 4 // setg_gcc\n+\tld\t12, 0...
2026-02-23T09:56:29
denoland/deno
d0c9173d9e0e92a40b74e03096d2fdec0bd00193
0ee75392669d26bc1e051ecd5bdc90b1997ad963
fix(ext/node): initialize debuglog testEnabled with safe default (#32598) ## Summary - Initialize `testEnabled` and `debugImpls` in `debuglog.ts` with safe defaults (`() => false` and empty object) instead of leaving them deliberately uninitialized - Fixes bootstrap crash `TypeError: testEnabled is not a function` th...
[ { "path": "ext/node/polyfills/internal/util/debuglog.ts", "patch": "@@ -4,10 +4,15 @@\n // TODO(petamoriken): enable prefer-primordials for node polyfills\n // deno-lint-ignore-file prefer-primordials\n \n-// `debugImpls` and `testEnabled` are deliberately not initialized so any call\n-// to `debuglog()` be...
2026-03-09T20:45:41
kubernetes/kubernetes
c0addb352e284feda34667f0a36c06da9f1cf2a6
fae7198b73f7a418373891079447878a0c37fd6a
Fix informer factory generation and add test
[ { "path": "staging/src/k8s.io/client-go/informers/factory.go", "patch": "@@ -256,7 +256,9 @@ func (f *sharedInformerFactory) InformerFor(obj runtime.Object, newFunc internal\n \t}\n \n \tinformer = newFunc(f.client, resyncPeriod)\n-\tinformer.SetTransform(f.transform)\n+\tif f.transform != nil {\n+\t\tinfor...
2026-03-06T01:06:01
tensorflow/tensorflow
855a55821abc6478f5fd0c5d34ce0a7a7066fa0d
7f6da9d14ab89d071562952aea17b8d54c6f27e9
PR #39155: Fix UB in FFI State Get/Set Backwards Compatibility Case Imported from GitHub PR https://github.com/openxla/xla/pull/39155 📝 Summary of Changes Replaces `reinterpret_cast` with `std::memcpy` to avoid U.B. Implementation of Get_State was not setting state pointer when using the backward compatibility path ...
[ { "path": "third_party/xla/xla/ffi/ffi_api.cc", "patch": "@@ -349,13 +349,15 @@ static XLA_FFI_Error* XLA_FFI_State_Set(XLA_FFI_State_Set_Args* args) {\n // If struct size matches the legacy struct layout, always assume that we set\n // the state for instantiation stage.\n if (args->struct_size == XLA...
2026-03-16T14:33:32
golang/go
e1e73b316c6b67ebbd55542b01f5581db62046d5
ca94cf12479f2a2c065215218f6a3f5fc7bfe1f4
runtime: printquoted: fix decoderune call go.dev/cl/742305 had a stale signature for decoderune, which was updated in go.dev/cl/725101 (converting an argument and return value from int to uint). Add appropriate conversions. Change-Id: Ia4e5bcbab4275d5a988c9dce552cd7590474b995 Reviewed-on: https://go-review.googlesou...
[ { "path": "src/runtime/print.go", "patch": "@@ -217,7 +217,7 @@ func printquoted(s string) {\n \t\t\tcontinue\n \t\tcase runeError:\n \t\t\t// Distinguish errors from a valid encoding of U+FFFD.\n-\t\t\tif _, j := decoderune(s, i); j == i+1 {\n+\t\t\tif _, j := decoderune(s, uint(i)); j == uint(i+1) {\n \t\...
2026-02-24T00:42:32
denoland/deno
0ee75392669d26bc1e051ecd5bdc90b1997ad963
d3e9c917261adc24cbadd1e904988036be069ce5
fix(ext/websocket): handle non-ASCII bytes in WebSocket response headers (#32594) ## Summary - Replace `.to_str().unwrap()` with graceful fallbacks when parsing `Sec-WebSocket-Protocol` and `Sec-WebSocket-Extensions` response headers in `op_ws_create` - Non-ASCII header values are now silently skipped instead of caus...
[ { "path": "ext/websocket/lib.rs", "patch": "@@ -451,14 +451,14 @@ pub async fn op_ws_create(\n let mut state = state.borrow_mut();\n let rid = state.resource_table.add(ServerWebSocket::new(stream));\n \n- let protocol = match response.get(\"Sec-WebSocket-Protocol\") {\n- Some(header) => header.to_st...
2026-03-09T18:45:19
mrdoob/three.js
dd4a1378a06c826e19ae0ed1b2b609a76cdb930a
3f86d3246b78efe81f63210717c09145cbacfaa0
Corrected issue that causes scaling error on Safari on complex canvas objects (#31931) Co-authored-by: Adam Roberts <adambant@yahoo.com>
[ { "path": "examples/jsm/interactive/HTMLMesh.js", "patch": "@@ -295,17 +295,12 @@ function html2canvas( element ) {\n \t\t} else if ( element instanceof HTMLCanvasElement ) {\n \n \t\t\t// Canvas element\n-\n \t\t\tconst rect = element.getBoundingClientRect();\n-\n \t\t\tx = rect.left - offset.left - 0.5;\n...
2025-09-27T11:01:36
golang/go
215a070a049ce449480ca6948e7fafdeb7b16920
54ebdf61517436a15f3119d1c117cf367a483ad2
net/smtp: prevent test failures due to expired test certificate The current localhostCert used for testing seems to have its expiry date mistakenly set to Mar 18 19:27:54 2026 GMT. To prevent test failures, use fixed time in tests. Also, regenerate the certificate so we can fix the time to UNIX epoch (the current cer...
[ { "path": "src/net/smtp/smtp_test.go", "patch": "@@ -1125,6 +1125,7 @@ func init() {\n \ttestRootCAs.AppendCertsFromPEM(localhostCert)\n \ttestHookStartTLS = func(config *tls.Config) {\n \t\tconfig.RootCAs = testRootCAs\n+\t\tconfig.Time = func() time.Time { return time.Unix(0, 0) }\n \t}\n }\n \n@@ -1138,5...
2026-02-10T22:17:19
denoland/deno
d3e9c917261adc24cbadd1e904988036be069ce5
6048a0d9f7ad3ff02712dbefd16ae07aaf685785
fix(ext/node): fix multiple DiffieHellman crypto bugs (#32531) ## Summary - Fix DH group key generation endianness bug (`BigUint::from_slice` treating big-endian u32 MODULUS words as little-endian limbs) - Fix panic when deriving DH public key from private key (implement modular exponentiation `g^x mod p`) - Fix PKCS...
[ { "path": "Cargo.lock", "patch": "@@ -35,7 +35,7 @@ version = \"0.5.2\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n checksum = \"d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0\"\n dependencies = [\n- \"crypto-common\",\n+ \"crypto-common 0.1.6\",\n \"generic-arr...
2026-03-09T18:41:42
tensorflow/tensorflow
7f6da9d14ab89d071562952aea17b8d54c6f27e9
13b4683d82de60aad171eb372de29b53eebbd58e
PR #38333: [ROCm] dev scaled dot for rocm Imported from GitHub PR https://github.com/openxla/xla/pull/38333 In this PR, we implemented scaled dot (`kScaledDot`) for the ROCm platform via hipBLASLt. ### Key Changes - `HipblasLtBackend` in `Autotuner` recognizes `kScaledDot` and rewrites the fusion into a `__cublas$lt...
[ { "path": "third_party/xla/xla/backends/gpu/autotuner/BUILD", "patch": "@@ -707,13 +707,16 @@ cc_library(\n \"//xla:shape_layout\",\n \"//xla:shape_util\",\n \"//xla:util\",\n+ \"//xla:xla_data_proto_cc\",\n \"//xla:xla_proto_cc\",\n \"//xla/backends/autotuner:...
2026-03-16T14:16:09
swiftlang/swift
d15376a0a380e5262c735d92d28cb631c811ed35
71b9db09a847670245a99b0845b8470686c38330
[cxx-interop] Fixup ownership mismatch between ObjC and Swift in thunks The ObjC thunk already attempted to do fixup for ownership mismatches but it derived the wrong parameter convention for the ObjC thunk itself so this fixup did not happen. This PR makes sure we have the correct ownership convention for the ObjC th...
[ { "path": "lib/SIL/IR/SILFunctionType.cpp", "patch": "@@ -1519,6 +1519,12 @@ class Conventions {\n case ValueOwnership::Shared:\n return ParameterConvention::Direct_Guaranteed;\n case ValueOwnership::Owned:\n+ if (kind == ConventionsKind::ObjCSelectorFamily ||\n+ kind == Conventi...
2026-03-18T15:12:27
mrdoob/three.js
3f86d3246b78efe81f63210717c09145cbacfaa0
5baffdb7b5e156bf7850c87c58f6094bea9ac321
Inspector: Fix panel buttons on mobile (#31958)
[ { "path": "examples/jsm/inspector/ui/Profiler.js", "patch": "@@ -44,7 +44,7 @@ export class Profiler {\n \t\tthis.tabsContainer.className = 'profiler-tabs';\n \n \t\tconst controls = document.createElement( 'div' );\n-\t\tcontrols.style.display = 'flex';\n+\t\tcontrols.className = 'profiler-controls';\n \n ...
2025-09-26T18:12:05
denoland/deno
6048a0d9f7ad3ff02712dbefd16ae07aaf685785
77a23c56ab194226768573f689bb6b01154a653c
fix(napi): remove unimplemented Node-API symbols from napi_sys (#32593) ## Summary - Removes 4 unimplemented Node-API functions from `libs/napi_sys/src/functions.rs`: `node_api_create_property_key_latin1`, `node_api_create_property_key_utf8`, `node_api_create_object_with_properties`, `node_api_create_object_with_name...
[ { "path": "libs/napi_sys/src/functions.rs", "patch": "@@ -815,31 +815,10 @@ generate!(\n length: usize,\n result: *mut napi_value,\n ) -> napi_status;\n- fn node_api_create_property_key_latin1(\n- env: napi_env,\n- str_: *const c_char,\n- length: usize,\n- result: *mut...
2026-03-09T17:57:48
tensorflow/tensorflow
1a54a1aa529a47f8aaff2fe2e49e32b415436238
1fb85c84bf346015d54b2d05ca33ec924a310afd
Fix AOT compiler to allow for deterministic serialization. PiperOrigin-RevId: 884376900
[ { "path": "tensorflow/compiler/aot/BUILD", "patch": "@@ -357,6 +357,7 @@ cc_library(\n visibility = [\"//visibility:public\"],\n deps = [\n \"//tensorflow/core:lib\",\n+ \"@com_google_absl//absl/log:check\",\n \"@com_google_absl//absl/memory\",\n \"@com_google_absl//ab...
2026-03-16T12:14:00
mrdoob/three.js
6ba3cbef700a179b3f7df627b9e719b1876cb69e
e43225c675a5d84a2f71611f971a56fa6135213f
Earcut: Updated to latest version. (#31956) * merge latest earcut changes fix hashed earcut not taking the first point into account * updated version headers
[ { "path": "src/extras/lib/earcut.js", "patch": "@@ -1,6 +1,6 @@\n /* eslint-disable */\n-// copy of mapbox/earcut version 3.0.1\n-// https://github.com/mapbox/earcut/tree/v3.0.1\n+// copy of mapbox/earcut version 3.0.2\n+// https://github.com/mapbox/earcut/tree/v3.0.2\n \n export default function earcut(dat...
2025-09-26T17:56:08
golang/go
54ebdf61517436a15f3119d1c117cf367a483ad2
04772f022a1cb19f2596fa241ecc24bcb7f4dce5
cmd/compile: fix a typo in startRegs drop condition Fix startRegs drop condition: it used `== 1` instead of `!= 0`, causing the startRegs optimization to only work for register R0. This left unnecessary register bits in startRegs, resulting in extra shuffle-generated OpLoadReg operations on merge edges. The practical...
[ { "path": "src/cmd/compile/internal/ssa/regalloc.go", "patch": "@@ -507,7 +507,7 @@ func (s *regAllocState) allocReg(mask regMask, v *Value) register {\n \t// and now then there is no reason to even request it on entry. We can\n \t// drop from startRegs in that case.\n \tif s.usedSinceBlockStart&(regMask(1)...
2026-02-14T07:38:17
denoland/deno
98ca4505b31683a9bbf4d28418c0c7359b1c7d2c
e0b19336112b9576817a0501b73bbf8f452ea9c3
fix(ext/node): emit DEP0198 warning for SHAKE digests without outputLength (#32521) ## Summary - Emit `DeprecationWarning` (DEP0198) when creating SHAKE128/256 digests without an explicit `options.outputLength`, matching Node.js behavior with `--pending-deprecation` - Enables `test-crypto-default-shake-lengths.js` an...
[ { "path": "ext/node/polyfills/internal/crypto/hash.ts", "patch": "@@ -43,6 +43,7 @@ import {\n NodeError,\n } from \"ext:deno_node/internal/errors.ts\";\n import LazyTransform from \"ext:deno_node/internal/streams/lazy_transform.js\";\n+import process from \"node:process\";\n import {\n getDefaultEncodi...
2026-03-09T16:26:24
kubernetes/kubernetes
426bb7cded93b84e57bef19fa1517306ac77f05e
5bc6d200a25326f5f4b64eb1ae78759a2740b9b3
Fix auth registration for statusz and flagz Co-authored-by: Jordan Liggitt <jordan@liggitt.net>
[ { "path": "pkg/kubelet/server/server.go", "patch": "@@ -312,18 +312,17 @@ func NewServer(\n \tserver.InstallAuthNotRequiredHandlers(ctx)\n \tif kubeCfg != nil && kubeCfg.EnableDebuggingHandlers {\n \t\tlogger.Info(\"Adding debug handlers to kubelet server\")\n-\t\tserver.InstallAuthRequiredHandlers(ctx)\n \...
2026-03-04T22:47:05
mrdoob/three.js
e43225c675a5d84a2f71611f971a56fa6135213f
b5eb474704dff9954a9cd75c88a08c69d1920a83
WebGPURenderer: Fix tone mapping mode detect (#31957) * fix tone mapping mode detect * cleanup
[ { "path": "src/renderers/webgpu/WebGPUBackend.js", "patch": "@@ -13,10 +13,9 @@ import WebGPUBindingUtils from './utils/WebGPUBindingUtils.js';\n import WebGPUPipelineUtils from './utils/WebGPUPipelineUtils.js';\n import WebGPUTextureUtils from './utils/WebGPUTextureUtils.js';\n \n-import { WebGPUCoordinate...
2025-09-26T17:37:05
tensorflow/tensorflow
1fb85c84bf346015d54b2d05ca33ec924a310afd
0dfbd5921a415140ee29a44bdee33230f4cd2f3c
PR #39083: [xla:gpu] Remove CubSortThunk and invoke FFI custom calls directly Imported from GitHub PR https://github.com/openxla/xla/pull/39083 Remove `CubSortThunk;` emit CUB sort as generic FFI custom call Simplify CUB sort infrastructure by removing the specialized `CubSortThunk` and instead emitting `CUB` sort o...
[ { "path": "third_party/xla/xla/backends/gpu/runtime/BUILD", "patch": "@@ -1,8 +1,4 @@\n load(\"@local_config_cuda//cuda:build_defs.bzl\", \"cuda_library\")\n-load(\n- \"@local_config_rocm//rocm:build_defs.bzl\",\n- \"if_rocm_is_configured\",\n-)\n load(\"@rules_cc//cc:cc_library.bzl\", \"cc_library\")...
2026-03-16T11:45:33
golang/go
4e693d1ec52c86b262ac23f0d6cee6b60fef4fb0
9697bd96bcc98cbe201d0f57033d9f2dab66b9f6
go/token: add File.String method It returns a brief, unspecified, human-readable description of the File. + test, doc, relnote Fixes #76285 Change-Id: I8b0705cf20eaac095bc9dfba7f1181774544f02c Reviewed-on: https://go-review.googlesource.com/c/go/+/743280 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accou...
[ { "path": "api/next/76285.txt", "patch": "@@ -0,0 +1 @@\n+pkg go/token, method (*File) String() string #76285", "additions": 1, "deletions": 0, "language": "Plain Text" }, { "path": "doc/next/6-stdlib/99-minor/go/token/76285.md", "patch": "@@ -0,0 +1 @@\n+[File] now has a String meth...
2026-02-09T15:33:22
swiftlang/swift
791f0796e2a71b63955e61591356c7ec63d0693e
d08cb8d9dee1365ce9d4b1eb7dfb1ba674eedfa0
[Distributed] Prevent dead code elimination of distributed funcs, thunks, witnesses (#87901) Dead code elimination is not aware of the fact that distributed function accessors and witnesses are actually used by the runtime, and therefore may remove them. 🧟 This seems to have flown under the radar however when whole ...
[ { "path": "include/swift/SIL/SILFunction.h", "patch": "@@ -59,6 +59,7 @@ enum IsThunk_t {\n IsReabstractionThunk,\n IsSignatureOptimizedThunk,\n IsBackDeployedThunk,\n+ IsDistributedThunk,\n };\n enum IsDynamicallyReplaceable_t {\n IsNotDynamic,\n@@ -498,6 +499,7 @@ class SILFunction\n case IsT...
2026-03-18T13:20:24
denoland/deno
059640555276854bc38567b5678df26dfe42ad97
7cf4753c4835fcd43ecf1e167d08433b48e2d32b
fix(ext/node): improve getCipherInfo and allow repeated Hmac digest() (#32522) ## Summary - **getCipherInfo**: Add proper cipher info table with OpenSSL NIDs, `blockSize`, and full metadata. Support NID-based lookup. Import missing `validateInt32`/`validateObject` for argument validation. - **Hmac.digest()**: Allow r...
[ { "path": "ext/node/polyfills/internal/crypto/hash.ts", "patch": "@@ -259,7 +259,19 @@ class HmacImpl extends Transform {\n digest(): Buffer;\n digest(encoding: BinaryToTextEncoding): string;\n digest(encoding?: BinaryToTextEncoding): Buffer | string {\n- const result = this.#hash.digest();\n+ l...
2026-03-09T15:11:52
mrdoob/three.js
dbdaced1f9fcddab13a4734af243b76d6674c759
e0b01bc3dfd596db2e3e0e182749b8cd49acd0f0
Update SSGINode.js Fix JSDoc.
[ { "path": "examples/jsm/tsl/display/SSGINode.js", "patch": "@@ -218,7 +218,7 @@ class SSGINode extends TempNode {\n \t\t/**\n \t\t * Temporal offset added to the initial ray step.\n \t\t *\n-\t\t * @type {UniformNode<vec2>}\n+\t\t * @type {UniformNode<float>}\n \t\t */\n \t\tthis._temporalOffset = uniform( ...
2025-09-26T11:54:21
golang/go
6435bf46c17dccb2eb5f7bab7dd8aa4972252b21
439a82ad25e9549d0cc330075ae160f7a9ba69f8
cmd/compile: pointer-shaped types are SSAable even if lots of 0-sized fields Normally we don't SSA-ify variables with types that have more than 4 fields. But we really do want to SSA-ify them if they are pointer shaped. An odd case, but the compiler shouldn't barf on them. Failure probably started with CL 714421. F...
[ { "path": "src/cmd/compile/internal/ssa/decompose.go", "patch": "@@ -363,20 +363,20 @@ func decomposeUserPhi(v *Value) {\n func decomposeStructPhi(v *Value) {\n \tt := v.Type\n \tn := t.NumFields()\n-\tvar fields [MaxStruct]*Value\n+\tfields := make([]*Value, 0, MaxStruct)\n \tfor i := 0; i < n; i++ {\n-\t\...
2026-02-11T01:44:08
tensorflow/tensorflow
0dfbd5921a415140ee29a44bdee33230f4cd2f3c
26f987fb1da486e91375df5e2093ed72c80d1306
Handle cross compilation in StreamExecutorGpuPjRtCompiler This change adds support for what we call cross compilation to XLA:GPU's implementation of PjRtCompiler. Cross compilation means we were asked to compile for a given GPU target config while also having a sample GPU available for autotuning. So the logic is the...
[ { "path": "third_party/xla/xla/pjrt/BUILD", "patch": "@@ -355,6 +355,23 @@ cc_library(\n ],\n )\n \n+cc_library(\n+ name = \"mock_pjrt_client\",\n+ testonly = 1,\n+ hdrs = [\"mock_pjrt_client.h\"],\n+ visibility = internal_visibility([\"//xla:friends\"]),\n+ deps = [\n+ \":pjrt_cli...
2026-03-16T11:31:18
mrdoob/three.js
e0b01bc3dfd596db2e3e0e182749b8cd49acd0f0
1d9cbaec3df7986f5abf223d725ca095a3f3a240
Update SSGINode.js Fix JSDoc.
[ { "path": "examples/jsm/tsl/display/SSGINode.js", "patch": "@@ -96,7 +96,7 @@ class SSGINode extends TempNode {\n \t\t * Number of per-pixel hemisphere slices. This has a big performance cost and should be kept as low as possible.\n \t\t * Should be in the range `[1, 4]`.\n \t\t *\n-\t\t * @type {UniformNod...
2025-09-26T08:42:51
denoland/deno
7cf4753c4835fcd43ecf1e167d08433b48e2d32b
f123d84e7d6e8036c3c38ecec6e25deb87a8829b
fix(ext/node): implement ECDH.convertKey and fix related ECDH bugs (#32532) ## Summary - Implement `ECDH.convertKey()` static method supporting compressed, uncompressed, and hybrid point formats - Fix `setPrivateKey()` not decoding string keys with encoding parameter - Fix `getPublicKey()` not supporting hybrid format...
[ { "path": "ext/node/polyfills/internal/crypto/diffiehellman.ts", "patch": "@@ -15,12 +15,12 @@ import {\n op_node_gen_prime,\n } from \"ext:core/ops\";\n \n-import { notImplemented } from \"ext:deno_node/_utils.ts\";\n import {\n isAnyArrayBuffer,\n isArrayBufferView,\n } from \"ext:deno_node/internal...
2026-03-09T12:13:56
kubernetes/kubernetes
37257404a56bfe609b43d9969933a2d9d478a5d7
b50a6aa7cf61fc14a3558259b25ab4f805b6bedf
Check wait condition type cast to avoid potential panic
[ { "path": "staging/src/k8s.io/kubectl/pkg/cmd/wait/condition.go", "patch": "@@ -59,7 +59,10 @@ func (w ConditionalWait) checkCondition(obj *unstructured.Unstructured) (bool, e\n \t\treturn false, nil\n \t}\n \tfor _, conditionUncast := range conditions {\n-\t\tcondition := conditionUncast.(map[string]interf...
2026-03-05T23:41:52
golang/go
439a82ad25e9549d0cc330075ae160f7a9ba69f8
841fafcd583b37ba316a66fc388f966a5be8de80
cmd/compile: add flag for emitting diagnostics unsorted The prove pass uses warnings with locations that are sorted before they are emitted. When debugging on level 3, this sorting can obscure which log lines happened before each other, obscuring the flow of control. This gets doubly confusing when debugging issues th...
[ { "path": "src/cmd/compile/internal/base/flag.go", "patch": "@@ -78,6 +78,7 @@ type CmdFlags struct {\n \tLowerR CountFlag \"help:\\\"debug generated wrappers\\\"\"\n \tLowerT bool \"help:\\\"enable tracing for debugging the compiler\\\"\"\n \tLowerW CountFlag \"help:\\\"debug type checking\\\"\"\n+...
2026-02-05T13:42:00
mrdoob/three.js
4df22284241a32f72d153abdc88b4f53a6313951
48328154c987575b29cfe7e7085863ef260cf27a
TSL: Use GlobalID in Compute Water, Update IndexNode Comments (#31941) * init branch, add comments and warnings to various index node related code * adjust comments * remove comments * fix error * remove invocationGlobalIndex references * remove comment * remove extra IndexNode parameter, unify documentation bet...
[ { "path": "examples/webgpu_compute_water.html", "patch": "@@ -27,7 +27,7 @@\n \t\t<script type=\"module\">\n \n \t\t\timport * as THREE from 'three/webgpu';\n-\t\t\timport { instanceIndex, struct, If, uint, int, floor, float, length, clamp, vec2, cos, vec3, vertexIndex, Fn, uniform, instancedArray, min, max...
2025-09-26T04:18:26
tensorflow/tensorflow
26f987fb1da486e91375df5e2093ed72c80d1306
bfd5a1b19ca97d792336968f9701ff8eea4414e2
Refactor SymbolicMap variable replacement and dimension adjustments We have some failing tests in IndexingMap::GetAffineMap() migration to GetSymbolicMap(). After some debugging, I found out the issue relies in SymbolicMap::Replace() method. Similar to AffineMap similar one, it allowed to change the number of dimensio...
[ { "path": "third_party/xla/xla/hlo/analysis/symbolic_map.cc", "patch": "@@ -221,14 +221,36 @@ SymbolicMap SymbolicMap::Replace(SymbolicExpr expr,\n }\n \n SymbolicMap SymbolicMap::Replace(\n- const llvm::DenseMap<SymbolicExpr, SymbolicExpr>& map,\n- int64_t numResultDims, int64_t numResultSyms) const ...
2026-03-16T10:26:23
denoland/deno
f123d84e7d6e8036c3c38ecec6e25deb87a8829b
0d1c07eb545a0dd4456131eb510018bd3d4c06c3
fix(ext/otel): remove panicking unwraps in telemetry code (#32557) ## Summary - Replace `.unwrap()` calls on `OTEL_GLOBALS.get()` and isolate slot accesses with graceful error handling throughout `ext/telemetry/lib.rs` - GC prologue/epilogue callbacks now return early if the isolate slot is missing (can happen du...
[ { "path": "ext/telemetry/lib.rs", "patch": "@@ -1433,12 +1433,14 @@ impl OtelTracer {\n \n #[static_method]\n #[cppgc]\n- fn builtin() -> OtelTracer {\n+ fn builtin() -> Result<OtelTracer, JsErrorBox> {\n let OtelGlobals {\n builtin_instrumentation_scope,\n ..\n- } = OTEL_GLOBALS.ge...
2026-03-09T12:10:10
golang/go
841fafcd583b37ba316a66fc388f966a5be8de80
34b9742c817d1c689f09af71364f52711524cc09
runtime/secret: run crash tests under memory validating modes The crashing test for runtime/secret does not run afoul of the memory validators like the standard tests does. Pass through to the crashing binary to shake out as many problems as possible. Cq-Include-Trybots: luci.golang.try:gotip-linux-amd64-asan-clang15...
[ { "path": "src/runtime/secret/crash_test.go", "patch": "@@ -10,6 +10,9 @@ import (\n \t\"bytes\"\n \t\"debug/elf\"\n \t\"fmt\"\n+\t\"internal/asan\"\n+\t\"internal/msan\"\n+\t\"internal/race\"\n \t\"internal/testenv\"\n \t\"io\"\n \t\"os\"\n@@ -120,7 +123,18 @@ func TestCore(t *testing.T) {\n \t\tt.Fatalf(\...
2025-12-01T15:13:08
mrdoob/three.js
48ecb7835c6a483793768ffe968ba35304fd7304
d78c8d9a9dc478f710bba4f60adc560294f8c974
Addons: Bitonic Sort (#31852) * change bitonic sort examplke * bitonic sort * fix swap local set algo * fix local sort * strip out timestamp and unecessary buffers * fix left side display, remove timestamps * slow down sort * add additional comments to bitonicSort class * lint * lint
[ { "path": "examples/jsm/gpgpu/BitonicSort.js", "patch": "@@ -0,0 +1,662 @@\n+import { Fn, uvec2, If, instancedArray, instanceIndex, invocationLocalIndex, Loop, workgroupArray, workgroupBarrier, workgroupId, uint, select, min, max } from 'three/tsl';\n+\n+const StepType = {\n+\tNONE: 0,\n+\t// Swap all value...
2025-09-23T13:18:42
swiftlang/swift
7afebc1804fe20c89473a072cb35c18c99ee429d
3de8b7ddc161cbfa4c0354d5146794c25345f4d5
Fix ConditionForwarding OSSA violation with guaranteed forwarding results from local borrow scopes ConditionForwarding moves a condition terminator down to a switch_enum. The existing OSSA check only verified if the condition's operand was directly a BorrowedValue with a local scope, but missed cases where the operand...
[ { "path": "lib/SILOptimizer/Transforms/ConditionForwarding.cpp", "patch": "@@ -256,12 +256,20 @@ bool ConditionForwarding::tryOptimize(SwitchEnumInst *SEI) {\n return false;\n \n if (getFunction()->hasOwnership()) {\n- // TODO: Currently disabled because this case may need lifetime extension\n- ...
2026-03-17T17:49:39
kubernetes/kubernetes
45900a1debee388738f299c0a001ed01e8b25208
f291ae40b03afaaf49cca43b650bfbd05f4babee
Fix vet error
[ { "path": "pkg/controller/daemon/daemon_controller.go", "patch": "@@ -886,13 +886,13 @@ func (dsc *DaemonSetsController) podsShouldBeOnNode(\n \t\t\t\tmsg := fmt.Sprintf(\"Found failed daemon pod %s/%s on node %s, will try to kill it\", pod.Namespace, pod.Name, node.Name)\n \t\t\t\tlogger.V(2).Info(\"Found ...
2026-02-17T21:42:55
denoland/deno
0d1c07eb545a0dd4456131eb510018bd3d4c06c3
22258fb3f01f25376890de292339fcab290b21d4
fix: ensure binaries distributed in `@deno/...` npm packages are exectuable (#32581) Bit of a cleanup more than anything.
[ { "path": ".github/workflows/npm_publish.yml", "patch": "@@ -38,11 +38,14 @@ jobs:\n - name: Build npm packages\n run: ./tools/release/npm/build.ts ${{ inputs.version || '' }}\n \n+ - name: Tar npm dist (preserves permissions)\n+ run: tar cf tools/release/npm/dist.tar -C tools/rele...
2026-03-09T12:08:49
tensorflow/tensorflow
bfd5a1b19ca97d792336968f9701ff8eea4414e2
8eda13976247ddfbd9b8981e223057d6e0d323a7
PR #38802: [ROCM] improving RunAndCompareThreeIterations in command_buffer_test Imported from GitHub PR https://github.com/openxla/xla/pull/38802 📝 Summary of Changes Rewirting RunAndCompareThreeIterations function 🎯 Justification The above function clones input literals with the idea that this will cause command ...
[ { "path": "third_party/xla/xla/service/gpu/tests/BUILD", "patch": "@@ -249,6 +249,7 @@ xla_test(\n \"//xla/hlo/ir:hlo\",\n \"//xla/service:hlo_module_config\",\n \"//xla/service:hlo_runner_interface\",\n+ \"//xla/service:hlo_runner_pjrt\",\n \"//xla/service:platform_ut...
2026-03-16T10:22:08
golang/go
34b9742c817d1c689f09af71364f52711524cc09
0bf3f64c6b91df0b7665ecf0875757985b5b2bee
net: convert wildcard address to local on freebsd Starting in FreeBSD 15, connecting to INADDR_ANY no longer works as an alias for localhost. From the release notes [1]: "Making a connection to INADDR_ANY, i.e., using it as an alias for localhost, is now disabled by default. This functionality can be re-enabled by se...
[ { "path": "src/net/ipsock_posix.go", "patch": "@@ -158,7 +158,7 @@ func favoriteAddrFamily(network string, laddr, raddr sockaddr, mode string) (fam\n \n func internetSocket(ctx context.Context, net string, laddr, raddr sockaddr, sotype, proto int, mode string, ctrlCtxFn func(context.Context, string, string,...
2026-02-19T15:43:45
mrdoob/three.js
5a1c63ccee020fbd9583e2218ed27bba018af43e
ffbce3a688a52f3a6c048afe73c2e6b74ac9b2ec
NodeMaterial: Fix alpha discard. (#31927)
[ { "path": "src/materials/nodes/NodeMaterial.js", "patch": "@@ -12,7 +12,7 @@ import { materialReference } from '../../nodes/accessors/MaterialReferenceNode.j\n import { positionLocal, positionView } from '../../nodes/accessors/Position.js';\n import { skinning } from '../../nodes/accessors/SkinningNode.js';...
2025-09-22T15:32:03
denoland/deno
22258fb3f01f25376890de292339fcab290b21d4
25f1c99f712304b1697d9b6d8c4259085f816c5b
feat: --cpu-prof flags for CPU profiles (#31909) This PR adds `--cpu-prof`, `--cpu-prof-dir`, `--cpu-prof-md`, `--cpu-prof-name` and `--cpu-prof-interval` Example usage: ```sh > target/debug/deno -A --cpu-prof --cpu-prof-md getrandom.js > cat CPU.1769017882255.25986.md # CPU Profile | Duration | Samples | Interval ...
[ { "path": "cli/args/flags.rs", "patch": "@@ -263,6 +263,14 @@ pub struct DocFlags {\n pub filter: Option<String>,\n }\n \n+#[derive(Clone, Debug, Eq, PartialEq, Default)]\n+pub struct CpuProfFlags {\n+ pub dir: Option<String>,\n+ pub name: Option<String>,\n+ pub interval: Option<u32>,\n+ pub md: bool,...
2026-03-09T08:07:44
kubernetes/kubernetes
a0dee17c1dcb38c64e0cde782f5f0e4f79c74bb8
3799fc9942a4df017e2c4f30524816fcf89045e4
statefulset: wrap errors with %w in StatefulPodControl Signed-off-by: ahmedharabi <harabiahmed88@gmail.com>
[ { "path": "pkg/controller/statefulset/stateful_pod_control.go", "patch": "@@ -260,7 +260,8 @@ func (spc *StatefulPodControl) ClaimsMatchRetentionPolicy(ctx context.Context, s\n \t\tcase apierrors.IsNotFound(err):\n \t\t\tklog.FromContext(ctx).V(4).Info(\"Expected claim missing, continuing to pick up in next...
2026-03-05T22:02:16
swiftlang/swift
96a58d748a785afd96b795fb6c7ed1b948e18d18
e7adede0645158bc59528ea2f62b730fe6dc15d6
Add diagnostic group, note to explain mutating async function issues Fixes rdar://145127274 by adding a note that hints at why this cannot be accepted, and a diagnostic group that spells out the correctness problem created by the implicit inout self from mutating async methods.
[ { "path": "include/swift/AST/DiagnosticGroups.def", "patch": "@@ -41,6 +41,7 @@\n GROUP(no_group,none,\"\")\n \n GROUP(ActorIsolatedCall,none,\"actor-isolated-call\")\n+GROUP(ActorIsolatedMutatingAsync,none,\"actor-isolated-mutating-async\")\n GROUP(AlwaysAvailableDomain,none,\"always-available-domain\")\n ...
2026-03-09T22:25:17
tensorflow/tensorflow
b51b01dd4b00a8340e955a1ce0d63414ab8d17fc
4a94365a521c8f77a4b718b91cecbd7049c0e3fe
PR #38792: [ROCm] Enable rocBLAS/hipBLASLt fission backends in autotuner Imported from GitHub PR https://github.com/openxla/xla/pull/38792 Enable FissionBackend autotuning for ROCm (rocBLAS + hipBLASLt) - Added HIPBLASLT_FISSION to backend proto - Updated factory_rocm.cc to register the backends - xla_gpu_experiment...
[ { "path": "third_party/xla/xla/backends/autotuner/autotuner.cc", "patch": "@@ -536,7 +536,9 @@ std::optional<std::unique_ptr<Executable>> Autotuner::Compile(\n HloInstruction* instr, const Config& config) {\n if (autotune_config_.exclude_cublas_config &&\n (config.codegen_backend->name() == \"CU...
2026-03-16T09:43:17
golang/go
0bf3f64c6b91df0b7665ecf0875757985b5b2bee
f3755d9eba1147eb2cc3257689764f0cd8aac77b
mime: make TypeByExtension follow Chrome+Firefox's precedence for webm->video and weba->audio This CL updates TypeByExtension to correctly follow the precedence rules that Chrome and Firefox use, whereby "webm" maps to "video/webm" and "weba" maps to "audio/webm" per: https://chromium.googlesource.com/chromium/src.gi...
[ { "path": "src/mime/type.go", "patch": "@@ -115,7 +115,8 @@ var builtinTypesLower = map[string]string{\n \t\".vtt\": \"text/vtt; charset=utf-8\",\n \t\".wasm\": \"application/wasm\",\n \t\".wav\": \"audio/wav\",\n-\t\".webm\": \"audio/webm\",\n+\t\".weba\": \"audio/webm\",\n+\t\".webm\": \"video/web...
2026-02-19T22:41:07
mrdoob/three.js
bbaee482da542486fbb8865fd20c940e219b68d9
6dff7ce5a8dcb3678fc1a91fffed49546a88ba03
WebGPURenderer: Fix change the current canvas samples (#31924)
[ { "path": "src/renderers/webgpu/WebGPUBackend.js", "patch": "@@ -328,15 +328,16 @@ class WebGPUBackend extends Backend {\n \t\tconst renderer = this.renderer;\n \t\tconst canvasTarget = renderer.getCanvasTarget();\n \t\tconst canvasData = this.get( canvasTarget );\n+\t\tconst samples = renderer.currentSampl...
2025-09-21T02:14:50
denoland/deno
25f1c99f712304b1697d9b6d8c4259085f816c5b
f7d492de83bbeed74dc3734b4cba53a459e151bb
refactor(ext/node): consolidate node:fs modules (part 5) (#32573) ## Summary Follow-up to #32555. Consolidates four more `node:fs` polyfill modules into `fs.ts` and `internal/fs/promises.ts`: - `_fs/_fs_mkdir.ts` → inlined `mkdir`, `mkdirSync` + helpers (`fixMkdirError`, `findFirstNonExistent`) - `_fs/_fs_mkdtemp.ts...
[ { "path": "ext/node/lib.rs", "patch": "@@ -387,10 +387,6 @@ deno_core::extension!(deno_node,\n \"_fs/_fs_glob.ts\",\n \"_fs/_fs_lstat.ts\",\n \"_fs/_fs_lutimes.ts\",\n- \"_fs/_fs_mkdir.ts\",\n- \"_fs/_fs_mkdtemp.ts\",\n- \"_fs/_fs_open.ts\",\n- \"_fs/_fs_opendir.ts\",\n \"_fs/_fs...
2026-03-09T07:31:31
golang/go
839cd82fa53ec481ffcd02e139b3d77c2724892e
06dc5db75d4c2548c0187f34ce79389678be7ca0
cmd/cgo/internal/test: add a test for C calling into Go before init done Test that C code can call back into Go (on a separate thread) before init is done. The callback should wait for the init done. And this should not cause a false race. This corresponds to the runtime fix in CL 746581. Change-Id: I10e6a9d5fe056be...
[ { "path": "src/cmd/cgo/internal/test/cgo_test.go", "patch": "@@ -78,6 +78,7 @@ func TestBoolAlign(t *testing.T) { testBoolAlign(t) }\n func TestCallGoWithString(t *testing.T) { testCallGoWithString(t) }\n func TestCallback(t *testing.T) { testCallback(t) }\n func TestC...
2026-02-18T20:25:22
mrdoob/three.js
8d43f7a9912d7b6c6ea64ed8e3581a4a32956748
cb8a1dad54da66b85f9f178538a645c127b03045
Examples: Add WebGPU HDR Example (#31893) * Examples: Add WebGPU HDR Example * fix lint issue * fix: prevent mobile scrolling during touch interactions in WebGPU HDR example * fix * update aa example * Update param type * removed unused import * Update AfterImageNode.js Wrap `damp` into `nodeObject()`. * Upda...
[ { "path": "examples/files.json", "patch": "@@ -329,6 +329,7 @@\n \t\t\"webgpu_depth_texture\",\n \t\t\"webgpu_display_stereo\",\n \t\t\"webgpu_equirectangular\",\n+\t\t\"webgpu_hdr\",\n \t\t\"webgpu_instance_mesh\",\n \t\t\"webgpu_instance_path\",\n \t\t\"webgpu_instance_points\",", "additions": 1, ...
2025-09-18T09:21:23
swiftlang/swift
21c0dadbf734a339bcca0db428b198d95f575ebc
2f58b7c57a57b0e84e35bc9441e79fbbe8ea7382
[Sema] Tailor diagnostic for attributes on aliases Tailor a diagnostic and fix for attributes on aliases, to suggest moving them to the definition and adding preconcurrency if necessary or inlining the alias so attribute can be applied.
[ { "path": "include/swift/AST/DiagnosticsSema.def", "patch": "@@ -1801,6 +1801,18 @@ ERROR(attribute_requires_experimental_feature,none,\n ERROR(nominal_type_not_attribute,none,\n \"%kind0 cannot be used as an attribute\", (const ValueDecl *))\n \n+ERROR(attribute_part_of_type,none,\n+ \"attribute...
2026-03-11T21:34:55
tensorflow/tensorflow
4a94365a521c8f77a4b718b91cecbd7049c0e3fe
45c56fdeb51680441034e4e278db399ffc12c2bc
PR #34420: [XLA:CPU][oneDNN] Add weight prepacking for oneDNN convolutions Imported from GitHub PR https://github.com/openxla/xla/pull/34420 This PR introduces weight prepacking for oneDNN convolutions. With this PR, oneDNN convolutions have full functional feature parity with oneDNN matmuls. Copybara import of the p...
[ { "path": "third_party/xla/xla/service/cpu/onednn_contraction_rewriter.cc", "patch": "@@ -463,6 +463,12 @@ inline bool IsOperandFusible(HloInstruction* operand, HloInstruction* instr) {\n return true;\n }\n \n+inline bool CanPrepackWeights(HloInstruction* custom_call) {\n+ return (custom_call->operand(1)...
2026-03-16T09:40:52
mrdoob/three.js
eac5acce91a6d91fc256cbd99fbbdf2d392b7652
f25b5a6778005169171d0608c54d292ea3dd92f9
KTX2Loader: Fix ETC1S/UASTC prioritization (#31871) Due to a historical accident, the list of formats for ETC1S was sorted using UASTC priority. This change fixes that. However, this exposes a problem that already exists for UASTC to ETC1S as well: on Linux, Mesa drivers for various Intel and AMD GPUs expose support ...
[ { "path": "examples/jsm/loaders/KTX2Loader.js", "patch": "@@ -194,7 +194,7 @@ class KTX2Loader extends Loader {\n \t * Async version of {@link KTX2Loader#detectSupport}.\n \t *\n \t * @async\n-\t * @param {WebGPURenderer|WebGLRenderer} renderer - The renderer.\n+\t * @param {WebGPURenderer} renderer - The r...
2025-09-17T08:05:02
golang/go
06dc5db75d4c2548c0187f34ce79389678be7ca0
a8032d4c781f14fa0bd561d96e719492aee08c23
cmd/compile, go/*: move method type parameter checks from parsers to type checkers The parsers (cmd/compile/internal/syntax and go/parser) always accepted type parameters on methods for parser robustness but reported an error. With this change, the parsers accept the type parameters on methods, and then the type chec...
[ { "path": "src/cmd/compile/internal/syntax/parser.go", "patch": "@@ -797,9 +797,9 @@ func (p *parser) funcDeclOrNil() *FuncDecl {\n \tf.pos = p.pos()\n \tf.Pragma = p.takePragma()\n \n-\tvar context string\n+\thasRecv := false\n \tif p.got(_Lparen) {\n-\t\tcontext = \"method\"\n+\t\thasRecv = true\n \t\trcv...
2026-01-23T00:16:17
denoland/deno
55b7691d798e71895321e4ce57a1edc93789042c
574272ded08b82c7dec64da2120be8442a1f7636
fix(lsp): properly sync root files with tsgo (#32455)
[ { "path": "cli/lsp/analysis.rs", "patch": "@@ -904,17 +904,17 @@ pub fn ts_changes_to_edit(\n module: &DocumentModule,\n language_server: &language_server::Inner,\n ) -> Result<Option<lsp::WorkspaceEdit>, AnyError> {\n- let mut text_document_edits = Vec::new();\n+ let mut edits_by_uri = HashMap::with_...
2026-03-08T14:13:49
swiftlang/swift
2f58b7c57a57b0e84e35bc9441e79fbbe8ea7382
71a4f93594dbd861e84d8c2db14294a0dcd944bd
[Sema] Preserve type alias sugar when removing escaping This change fixes rdar://172417385 and #45125 by using transformRec to set no escape, instead of casting which drops sugar. This affects how interfaces are printed, and could theoretically cause issues with printing private aliases into public interfaces. Motivat...
[ { "path": "lib/Sema/TypeCheckType.cpp", "patch": "@@ -43,11 +43,13 @@\n #include \"swift/AST/ProtocolConformance.h\"\n #include \"swift/AST/SILLayout.h\"\n #include \"swift/AST/SourceFile.h\"\n+#include \"swift/AST/Type.h\"\n #include \"swift/AST/TypeCheckRequests.h\"\n #include \"swift/AST/TypeLoc.h\"\n #i...
2026-03-11T21:30:35
mrdoob/three.js
7ac88e41cdfda7c22719c1e9bca250c745ac9db7
b641d6d5b316fa184e1df0d622fd8c97e5e8de49
Examples: Update with the new style and inspector (#31907) * PassNode: Rename `setResolution()` to `setResolutionScale()` * PassNode: Improve name in inspector * Parameters: Add `.addFolder()` and `addColor()`, fix slider default value * BloomNode: Improve name in inspector * Examples: update with the new style an...
[ { "path": "examples/jsm/inspector/Inspector.js", "patch": "@@ -155,25 +155,31 @@ class Inspector extends RendererInspector {\n \n \tsetRenderer( renderer ) {\n \n+\t\tsuper.setRenderer( renderer );\n+\n \t\tif ( renderer !== null ) {\n \n \t\t\tsetConsoleFunction( this.resolveConsole.bind( this ) );\n \n-\t...
2025-09-15T19:16:22
tensorflow/tensorflow
96520e6d27dcef1793945b3ea164278cafe4e3d6
a5b08966e37c9cd92f045c4bdd0d121b2269ad29
Refactor GPU sum scan to use FFI custom calls This change replaces CubScanThunk with an XLA FFI custom call xla.gpu.ext.cub_scan, which lowers to cub::DeviceScan::InclusiveSum. The ScanRewriter pass is updated to detect compatible HloScanInstruction sum operations and rewrites them into xla.gpu.ext.cub_scan custom ca...
[ { "path": "third_party/xla/xla/backends/gpu/runtime/BUILD", "patch": "@@ -1017,34 +1017,6 @@ xla_cc_test(\n ],\n )\n \n-cc_library(\n- name = \"cub_scan_thunk\",\n- srcs = [\"cub_scan_thunk.cc\"],\n- hdrs = [\"cub_scan_thunk.h\"],\n- deps = [\n- \":thunk\",\n- \":thunk_proto_cc...
2026-03-16T08:58:39
golang/go
a8032d4c781f14fa0bd561d96e719492aee08c23
87a956bf8cdf9004108942247af8ae0243c5609a
cmd/link: use bfd ld 2.36+ on linux/arm64 instead of gold The bfd linker has been fixed for a while. In the mean time gold got deprecated and has stopped receiving new features. Add runtime version checking and only use gold, if bfd ld 2.35 and lower is detected. This enables using `-buildmode=shared` on arm64 withou...
[ { "path": "src/cmd/link/internal/ld/lib.go", "patch": "@@ -1700,22 +1700,48 @@ func (ctxt *Link) hostlink() {\n \t\t}\n \n \t\tif ctxt.Arch.InFamily(sys.ARM64) && buildcfg.GOOS == \"linux\" {\n-\t\t\t// On ARM64, the GNU linker will fail with\n-\t\t\t// -znocopyreloc if it thinks a COPY relocation is\n-\t\t...
2026-01-29T04:30:42
denoland/deno
524b86411c11d293e0fd3a0eafe0cd8df2812c14
6b73c27c8d6a786456041017fa7d8eae0b5d4037
refactor: use sys_traits deno_dotenv (#32542) Will fix flaky tests on main.
[ { "path": "Cargo.lock", "patch": "@@ -2173,6 +2173,9 @@ dependencies = [\n [[package]]\n name = \"deno_dotenv\"\n version = \"0.6.0\"\n+dependencies = [\n+ \"sys_traits\",\n+]\n \n [[package]]\n name = \"deno_error\"", "additions": 3, "deletions": 0, "language": "Unknown" }, { "path": "c...
2026-03-06T17:37:56
kubernetes/kubernetes
ab732b2d6d1f67f0e5d64712260be13629407753
4e8c8ffacdd47de2bf5d1773b19dc4cee1b510f5
e2e_dra: fix ExtendedResource upgrade/downgrade tests Passed correct expected environment variables to the b.TestPod to fix this test failure: extendedresources_test.go:164: FATAL ERROR: I0305 10:51:12.998519] container write-pod env variables Expected HOSTNAME=explicit-before-upgrade ... ...
[ { "path": "test/e2e_dra/extendedresources_test.go", "patch": "@@ -158,7 +158,7 @@ func createPodWithExtendedResource(tCtx ktesting.TContext, b *drautils.Builder,\n // verifyPodRunningWithClaim verifies a pod is running and has a valid ResourceClaim.\n func verifyPodRunningWithClaim(tCtx ktesting.TContext, b...
2026-03-05T09:15:46
swiftlang/swift
b7e5b9e42338c5927d0e79504f393c6e7beb5e7a
d91f19199300755d7fb44a426a86906a2ec25305
SimplifyApply: insert the correct cast instruction when propagating the concrete type of an existential When propagating a concrete type of an existential to an apply/try_apply instruction, we need to insert either an `unchecked_addr_cast` for address-only (= general) existentials or an `unchecked_ref_cast` for class ...
[ { "path": "SwiftCompilerSources/Sources/Optimizer/InstructionSimplification/SimplifyApply.swift", "patch": "@@ -173,12 +173,14 @@ private func tryReplaceExistentialArchetype(of apply: ApplyInst, _ context: Simp\n if let concreteType = apply.concreteTypeOfDependentExistentialArchetype,\n apply.canRepl...
2026-03-17T17:49:40
golang/go
a01a4f98026f834311f9029573030c3e1799646b
fb0c8e16c329da6f0caafa2d5ae48e625a00b652
runtime/cgo: rename and update ppc64x and s390x croscall1 functions crosscall1 has the same signature and behavior on all platforms except for ppc64x and s390x, fix that. Cq-Include-Trybots: luci.golang.try:gotip-linux-ppc64le_power9,gotip-linux-ppc64_power8,gotip-linux-s390x Change-Id: Iead8b578a45787bb1fb2dd2dcfcb1...
[ { "path": "src/runtime/asm_ppc64x.s", "patch": "@@ -197,9 +197,9 @@ TEXT runtime·breakpoint(SB),NOSPLIT|NOFRAME,$0-0\n TEXT runtime·asminit(SB),NOSPLIT|NOFRAME,$0-0\n \tRET\n \n-// Any changes must be reflected to runtime/cgo/gcc_aix_ppc64.S:.crosscall_ppc64\n+// Any changes must be reflected to runtime/cgo...
2025-10-01T08:33:17
tensorflow/tensorflow
70efae3a67faf5e9e4405b1d7f316d4da4e5c2d2
514c54e04e9d8a6605959224ea5cf303a614cc7a
Ensure that tests use initialized DebugOptions PiperOrigin-RevId: 884253693
[ { "path": "third_party/xla/xla/hlo/ir/BUILD", "patch": "@@ -281,6 +281,7 @@ xla_cc_test(\n srcs = [\"hlo_module_test.cc\"],\n deps = [\n \":hlo\",\n+ \"//xla:debug_options_flags\",\n \"//xla:shape_util\",\n \"//xla:util\",\n \"//xla:xla_data_proto_cc\",", "...
2026-03-16T07:05:25
denoland/deno
e99c9b99ee7768752ce732e3ab0055b2ea6ea912
3a4ece2ed446448e63baee8ded7d2c660a444495
fix: support value substitution when loading environment variable files (#32495)
[ { "path": "cli/standalone/binary.rs", "patch": "@@ -1266,7 +1266,9 @@ fn get_file_env_vars(\n file_path: &Path,\n ) -> Result<IndexMap<String, String>, deno_dotenv::Error> {\n let mut file_env_vars = IndexMap::new();\n- for item in deno_dotenv::from_path_sanitized_iter(file_path)? {\n+ for item in\n+ ...
2026-03-06T16:04:02
mrdoob/three.js
b641d6d5b316fa184e1df0d622fd8c97e5e8de49
d9eec4fcc4da100dce2b0c16c8f9cbf27803837c
WebGPURenderer: Fix rendering morphed meshes. (#31904)
[ { "path": "src/materials/nodes/manager/NodeMaterialObserver.js", "patch": "@@ -465,13 +465,14 @@ class NodeMaterialObserver {\n \n \t\t\t\tif ( renderObjectData.morphTargetInfluences[ i ] !== object.morphTargetInfluences[ i ] ) {\n \n+\t\t\t\t\trenderObjectData.morphTargetInfluences[ i ] = object.morphTarge...
2025-09-15T15:44:27
kubernetes/kubernetes
4e8c8ffacdd47de2bf5d1773b19dc4cee1b510f5
c38abeb4ffeab8d736376f7a9d0fe5f8c5b0af10
e2e_dra: fix ImplicitExtendedResource upgrade/downgrade Don't create default DeviceClass as it's already created. This should fix this test failure: create *v1.DeviceClass: deviceclasses.resource.k8s.io "default-class" already exists
[ { "path": "test/e2e_dra/extendedresources_test.go", "patch": "@@ -119,33 +119,28 @@ func testExtendedResource(tCtx ktesting.TContext, b *drautils.Builder, resourceT\n \t}\n }\n \n-// createDeviceClassForExtendedResource creates a DeviceClass for testing extended resources.\n-// It creates the DeviceClass wi...
2026-03-05T08:55:25
swiftlang/swift
3a1918dffb6d799cb5f7b282dad092632121ee25
1837c371773bef7fd0b717e55d028462f5c54ae0
Fix support for result builder synthesized inits in non-generic structs
[ { "path": "lib/SILGen/SILGenConstructor.cpp", "patch": "@@ -578,6 +578,20 @@ static void emitImplicitValueConstructor(SILGenFunction &SGF,\n (void)eltEnd;\n value = std::move(*elti);\n ++elti;\n+\n+ // If the stored property has an attached result builder and its\n+ // type is no...
2026-01-03T04:44:20
mrdoob/three.js
3e8df0a1ce9eaace0ba2bb1b2ebf8a482fc9438c
fc8fc0d5154675c5bcc818956d4c9bf16ed090bd
*TimestampQueryPool: Fix `frame` property reference - https://github.com/mrdoob/three.js/issues/31869
[ { "path": "src/renderers/webgl-fallback/utils/WebGLTimestampQueryPool.js", "patch": "@@ -244,7 +244,7 @@ class WebGLTimestampQueryPool extends TimestampQueryPool {\n \t\t\t}\n \n \t\t\t// Return the total duration of the last frame\n-\t\t\tconst totalDuration = framesDuration[ this.frames[ this.frames.lengt...
2025-09-14T22:47:33
golang/go
50b63f6cb90a1437ca6756ede016f1918e721da6
45929774c3d5c084cc478afba63c77cf67a68bd7
cmd/link: don't pass -Wl,-S on illumos The change in CL 707096 to exclude GOOS=solaris needs to also be applied for GOOS=illumos, which shares the same linker lineage. Fixes #77530 Change-Id: Ifc2047595af2db52870f9fb0a9faf646666d9e61 Reviewed-on: https://go-review.googlesource.com/c/go/+/746560 LUCI-TryBot-Result: G...
[ { "path": "src/cmd/link/dwarf_test.go", "patch": "@@ -426,7 +426,7 @@ func TestFlagW(t *testing.T) {\n \t\t{\"-s\", false}, // -s implies -w\n \t\t{\"-s -w=0\", true}, // -w=0 negates the implied -w\n \t}\n-\tif testenv.HasCGO() && runtime.GOOS != \"solaris\" { // Solaris linker doesn't support the -S f...
2026-02-18T14:24:18
denoland/deno
a6e66a80b1c8b5e33cc87df01e31542d75c1d8fe
7fee0367f524253963979a61a421061c9d8b065d
fix(ext/node): make TTY stdout/stderr indestructible (#32530) ## Summary - Libraries like `mute-stream` (used by `@inquirer/prompts`) call `destroy()` or `end()` on `process.stdout`, which previously closed the underlying Deno resource (rid 1/2). This broke subsequent `console.log` calls with `BadResource: Bad resour...
[ { "path": "ext/node/polyfills/internal/tty.js", "patch": "@@ -338,6 +338,28 @@ export class WriteStream extends Socket {\n }\n cb();\n };\n+\n+ // Prevent actually closing stdout/stderr. Libraries like mute-stream\n+ // (used by @inquirer/prompts) call destroy()/end() on the ...
2026-03-06T11:22:40
mrdoob/three.js
147ad8a72d9481985c06df6157ec0e3b8d0b0b7b
f8b2cba09091c6ef1de96e0c31472281f761fc7a
TRAANode: Reduce Ghosting/Smearing (#31895) * Solve for world position * Make basic movement rejection a thing * Fix the issue with edges * Update TRAANode.js * Adjust comment formatting * Resolve unused vars, formatting, and debug nitpicks * Update TRAANode.js Clean up. * Update TRAANode.js - Store previous ...
[ { "path": "examples/jsm/tsl/display/TRAANode.js", "patch": "@@ -1,5 +1,5 @@\n-import { HalfFloatType, Vector2, RenderTarget, RendererUtils, QuadMesh, NodeMaterial, TempNode, NodeUpdateType, Matrix4 } from 'three/webgpu';\n-import { add, float, If, Loop, int, Fn, min, max, clamp, nodeObject, texture, uniform...
2025-09-13T16:36:24
golang/go
45929774c3d5c084cc478afba63c77cf67a68bd7
93b6475e1de0f055139bd0926048ee8e36aa7c42
internal/runtime/gc/scan: require popcnt for x86 The GOAMD64=v1 test disables popcnt instructions, which is a feature this package's amd64 assembly uses. Fixes #77674 Change-Id: I7be9bb665838f5da50275f96ef3df398412bb44a Reviewed-on: https://go-review.googlesource.com/c/go/+/746640 LUCI-TryBot-Result: Go LUCI <golang...
[ { "path": "src/internal/runtime/gc/scan/scan_amd64.go", "patch": "@@ -38,4 +38,5 @@ var avx512ScanPackedReqsMet = cpu.X86.HasAVX512VL &&\n \tcpu.X86.HasAVX512BW &&\n \tcpu.X86.HasGFNI &&\n \tcpu.X86.HasAVX512BITALG &&\n-\tcpu.X86.HasAVX512VBMI\n+\tcpu.X86.HasAVX512VBMI &&\n+\tcpu.X86.HasPOPCNT", "additi...
2026-02-18T17:09:57
denoland/deno
6d084821ca18bdb3e6cc58586fa8daff5a4e6889
885ad240ecd08040f5419d2cc51db87bcebf0a3d
fix(ext/node): support des-ede3-cbc cipher and allow Cipheriv/Decipheriv without new (#32519) ## Summary - Add `des` crate and implement `des-ede3-cbc` (Triple DES CBC) cipher for both encrypt and decrypt paths in `ext/node_crypto` - Convert `Cipheriv`/`Decipheriv` from ES6 classes to function constructors so they ca...
[ { "path": "Cargo.lock", "patch": "@@ -2685,6 +2685,7 @@ dependencies = [\n \"deno_crypto_provider\",\n \"deno_error\",\n \"der\",\n+ \"des\",\n \"digest\",\n \"dsa\",\n \"ecb\",\n@@ -3644,6 +3645,15 @@ dependencies = [\n \"syn 2.0.117\",\n ]\n \n+[[package]]\n+name = \"des\"\n+version = \"0.8.1\"\n+s...
2026-03-06T10:39:01
swiftlang/swift
52b22a00090bd476e93ceb62e2071a0465a90b81
42b0cfc6af80611cb9d19bb65d9687b2ccfd2ede
[cxx-interop] Emit more info why functions cannot be exported to C++ We already emitted some information but that was often a generic message without any detail. This PR adds more context to these comments. This can be helpful for users to work around some limitations and for us to debug some issues. There are still ...
[ { "path": "lib/PrintAsClang/DeclAndTypePrinter.cpp", "patch": "@@ -51,6 +51,7 @@\n #include \"clang/AST/DeclObjC.h\"\n #include \"clang/Basic/CharInfo.h\"\n #include \"clang/Basic/SourceManager.h\"\n+#include \"llvm/ADT/STLExtras.h\"\n #include \"llvm/Support/Casting.h\"\n #include \"llvm/Support/raw_ostrea...
2026-03-16T14:45:42
mrdoob/three.js
2c8c13719d1c5c1adbb9d5cafc744206751dc53b
ecaced55b80978c09151869aad51cfb177b4d408
SSGIExample: Add Cornell Box-Inspired Scene (#31897) * SSGIExample: Add Cornell Box Inspired Scene * Improve the naming of everything * Fix some minor shadow biasing artifacts
[ { "path": "examples/webgpu_postprocessing_ssgi.html", "patch": "@@ -10,8 +10,6 @@\n \n \t\t<div id=\"info\">\n \t\t\t<a href=\"https://threejs.org\" target=\"_blank\" rel=\"noopener\">three.js</a> WebGPU - Post-Processing - SSGI<br />\n-\t\t\t<a href=\"https://skfb.ly/YZoC\" target=\"_blank\" rel=\"noopener...
2025-09-13T07:58:56
kubernetes/kubernetes
80cc27ae50f4eabb7728f731f738f1c2ca275167
df9ee166f53b6c766cb254aaa9feecbd704955e1
kep-3926: fix 60s shutdown timeout in transformation tests Cancel informer watch connections before tearing down the test apiserver to avoid hitting the 60s http.Server.Shutdown drain timeout. Each subtest was blocking on open watch connections, adding ~300s to the total suite runtime. Decouple the informer lifecycle...
[ { "path": "test/integration/controlplane/transformation/bitflip_transformation_test.go", "patch": "@@ -171,7 +171,9 @@ func TestBitFlipCorruptObjectDeletion(t *testing.T) {\n \t\t\t\tt.Fatalf(\"unexpected error from AddEventHandler: %v\", err)\n \t\t\t}\n \n-\t\t\tfactory.Start(test.Done())\n+\t\t\tinformer...
2026-03-04T19:03:17
golang/go
a09c908cc6e63a89a6206eadb12f8e2800326465
6fd52a57f8f88e18247b9741278a126ab65cdb47
internal/syscall/windows: correct some enums and syscall signatures This CL corrects code submitted in CL 741040. Fixes #77402 Change-Id: I1c22c1a9f77028f3c2a8e3905f2ec5b071b5445e GitHub-Last-Rev: 2bfb07310b4707484b5bdce96ad367db567741c4 GitHub-Pull-Request: golang/go#77525 Reviewed-on: https://go-review.googlesourc...
[ { "path": "src/internal/syscall/windows/at_windows_test.go", "patch": "@@ -131,7 +131,7 @@ func makeFileNotReadable(t *testing.T, name string) {\n \t\t\tInheritance: windows.SUB_CONTAINERS_AND_OBJECTS_INHERIT,\n \t\t\tTrustee: windows.TRUSTEE{\n \t\t\t\tTrusteeForm: windows.TRUSTEE_IS_SID,\n-\t\t\t\tN...
2026-02-13T18:19:04
denoland/deno
b05f53cb6e9613e3a58c8e9c59c5d0a5ea51fff4
dd0728d4cfeb39f8b4fd42d7f0f64ee3c1123537
fix: normalize `capture` to boolean in `removeEventListener` options (#32508) Fixes #29681 --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: bartlomieju <13602871+bartlomieju@users.noreply.github.com>
[ { "path": "ext/web/02_event.js", "patch": "@@ -830,6 +830,7 @@ function invokeEventListeners(tuple, eventImpl) {\n }\n }\n \n+// https://dom.spec.whatwg.org/#dom-eventtarget-removeeventlistener\n function normalizeEventHandlerOptions(\n options,\n ) {\n@@ -838,7 +839,9 @@ function normalizeEventHandlerO...
2026-03-06T08:33:49
tensorflow/tensorflow
44a652a7ef6ff88e6524b7770a3deb1556f16add
b0c32382779c50b36891fab6997c6395a7fc51a7
[XLA:GPU] Fix argument misalignment and remove default values in StreamExecutorGpuDevice constructor This PR fixes a bug in BuildLocalDevices where device metadata was being incorrectly assigned due to positional argument misalignment. It also hardens the StreamExecutorGpuDevice constructor by removing default values ...
[ { "path": "third_party/xla/xla/pjrt/gpu/se_gpu_pjrt_client.cc", "patch": "@@ -1953,13 +1953,20 @@ std::vector<std::unique_ptr<PjRtStreamExecutorDevice>> BuildLocalDevices(\n for (auto& ordinal_and_device : local_device_states) {\n const se::DeviceDescription& desc =\n ordinal_and_device.second...
2026-03-14T23:59:43
mrdoob/three.js
ecaced55b80978c09151869aad51cfb177b4d408
aa3e118a674f4972cbf0d06d0b90c3563945f401
Node Frame - Simplify Caching (#31896) * simplify nodeFrame * fix comment spacing
[ { "path": "src/nodes/core/NodeFrame.js", "patch": "@@ -124,8 +124,8 @@ class NodeFrame {\n \t\tif ( maps === undefined ) {\n \n \t\t\tmaps = {\n-\t\t\t\trenderMap: new WeakMap(),\n-\t\t\t\tframeMap: new WeakMap()\n+\t\t\t\trenderId: 0,\n+\t\t\t\tframeId: 0,\n \t\t\t};\n \n \t\t\treferenceMap.set( nodeRef, m...
2025-09-13T00:53:21
swiftlang/swift
cd275f3cebe222864c7f311631a6aacad4c90366
0573048faabe67141cb1f3440b09741dce718ecb
SIL: Fix a wrong assert in `ValueOwnershipKind::forwardToInit` The assert implies that non-copyable struct instructions must not have "guaranteed" ownership. However, this is not enforced in the SIL verifier are anywhere else. SemanticARCOpt converts this owned struct into a guaranteed struct, which is a legal transfo...
[ { "path": "include/swift/SIL/SILValue.h", "patch": "@@ -372,7 +372,7 @@ struct ValueOwnershipKind {\n return OwnershipKind::Owned;\n case OwnershipKind::Guaranteed:\n case OwnershipKind::Unowned:\n- ABORT(\"Cannot initialize a nonCopyable type with a guaranteed value\");\n+ ...
2026-03-17T14:06:00
golang/go
6fd52a57f8f88e18247b9741278a126ab65cdb47
a00f0ed521f32c704b9a5bf8886848829dd13415
crypto: don't overwrite existing GODEBUG settings Some tests set GODEBUG by calling t.Setenv("GODEBUG", "foo=bar"). This overwrites any existing GODEBUG settings, which is undesirable. Instead, append the new setting to any existing GODEBUG settings. As this operation is quite common, add a helper function testenv.Se...
[ { "path": "src/crypto/fips140/fips140_test.go", "patch": "@@ -6,46 +6,30 @@ package fips140\n \n import (\n \t\"internal/godebug\"\n-\t\"os\"\n+\t\"internal/testenv\"\n \t\"testing\"\n )\n \n func TestImmutableGODEBUG(t *testing.T) {\n-\tdefer func(v string) { os.Setenv(\"GODEBUG\", v) }(os.Getenv(\"GODEBUG...
2026-01-07T09:14:43
kubernetes/kubernetes
c8826e0d235fde75d02643bd700179ed79897ad6
3799fc9942a4df017e2c4f30524816fcf89045e4
Update google.golang.org/protobuf to v1.36.12-0.20260120151049-f2248ac996af Pins google.golang.org/protobuf to HEAD commit f2248ac996afc39b3df0777cdcc269f6ade50b07 (v1.36.12-0.20260120151049-f2248ac996af) which includes fixes for dead code elimination issues surfaced by Go 1.26's reflect changes. Xref: https://github...
[ { "path": "go.mod", "patch": "@@ -78,7 +78,7 @@ require (\n \tgolang.org/x/tools v0.41.0\n \tgoogle.golang.org/genproto/googleapis/rpc v0.0.0-20260128011058-8636f8732409\n \tgoogle.golang.org/grpc v1.78.0\n-\tgoogle.golang.org/protobuf v1.36.11\n+\tgoogle.golang.org/protobuf v1.36.12-0.20260120151049-f2248a...
2026-03-05T14:36:13
mrdoob/three.js
5a4d5a8f8fb24b5660212fd8d5558c4910767b9a
df8b3e1ae9d21235815d0b01f98b5c05c12bbfe7
Update webgpu_reflection.html Fix deprecation warning.
[ { "path": "examples/webgpu_reflection.html", "patch": "@@ -98,7 +98,7 @@\n \t\t\t\tconst floorUV = uv().mul( 15 );\n \t\t\t\tconst floorNormalOffset = texture( floorNormal, floorUV ).xy.mul( 2 ).sub( 1 ).mul( .02 );\n \n-\t\t\t\tconst reflection = reflector( { resolution: 0.2 } );\n+\t\t\t\tconst reflection...
2025-09-12T20:38:21
denoland/deno
98d269319c52d723ae5679c55f1506c86bbc8374
c826feeaad1865db233085c0164a92f0b32766d0
chore: better structured Slack output for issue_pr_insights (#32503) ## Summary - Truncate long titles (55 chars) with ellipsis to prevent Slack line wrapping - Add age indicator per item (e.g. `2h`, `1d`) for at-a-glance urgency - Add 🔥 **Hot issues** section — surfaces issues with 3+ recent comments (e.g. bugs repr...
[ { "path": "tools/issue_pr_insights.ts", "patch": "@@ -45,6 +45,16 @@ interface GitHubItem {\n pull_request?: unknown;\n }\n \n+interface GitHubComment {\n+ created_at: string;\n+ user?: { login: string };\n+}\n+\n+interface HotIssue {\n+ item: GitHubItem;\n+ recentComments: number;\n+}\n+\n async func...
2026-03-06T08:07:12
tensorflow/tensorflow
b0c32382779c50b36891fab6997c6395a7fc51a7
1227012892c217fe5a00a985e31cbcef31f12767
PR #37063: [ROCM] Invalidate cached subset cliques to fix NCCL comm split dea… Imported from GitHub PR https://github.com/openxla/xla/pull/37063 …dlock When `xla_gpu_enable_nccl_comm_splitting` is enabled (default), it is possible for a deadlock to occur if a subset clique was already created and cached, and those d...
[ { "path": "third_party/xla/xla/backends/gpu/collectives/gpu_clique_key_test.cc", "patch": "@@ -174,4 +174,42 @@ TEST(GpuCliqueIdStringTest, ToString) {\n }\n }\n \n+// Test that IsSubsetOf correctly identifies subset relationships for clique\n+// invalidation. This is important for preventing deadlocks wh...
2026-03-14T18:23:47
swiftlang/swift
c1b82e418e0e900eab4d6898f9830350e0349498
0573048faabe67141cb1f3440b09741dce718ecb
[Backtracing][Linux] Fix fault address for `SIGABRT`/`SIGQUIT`. POSIX says the `si_addr` field is valid for `SIGILL`, `SIGFPE`, `SIGSEGV`, `SIGBUS` and `SIGTRAP`; it doesn't say it's invalid otherwise, but in practice Linux doesn't always fill it out in other cases. For `SIGABRT` and `SIGQUIT` it makes sense to use t...
[ { "path": "stdlib/public/runtime/CrashHandlerLinux.cpp", "patch": "@@ -264,15 +264,7 @@ handle_fatal_signal(int signum,\n for (unsigned n = 0; n < lengthof(signalsToHandle); ++n)\n reset_signal(signalsToHandle[n]);\n \n- // Fill in crash info\n- crashInfo.crashing_thread = self.tid;\n- crashInfo.si...
2026-03-17T12:23:04
golang/go
a00f0ed521f32c704b9a5bf8886848829dd13415
eaa6475dbbf73c0efe6ba2b5e28ea126c22b7286
runtime/cgo: remove clang mmap bug workaround Clang 3.8 was released in 2016, that is 10 years ago. The issue that the workaround was addressing (a bug in the memory sanitizer) is no longer relevant. Change-Id: I277ea94cf1bfbc6a9da63841be8ac990c839d7b7 Reviewed-on: https://go-review.googlesource.com/c/go/+/745662 LUC...
[ { "path": "src/runtime/cgo/gcc_unix.c", "patch": "@@ -4,9 +4,6 @@\n \n //go:build unix && !solaris\n \n-#include <signal.h>\n-#include <string.h>\n-#include <errno.h>\n #include \"libcgo.h\"\n #include \"libcgo_unix.h\"\n \n@@ -37,37 +34,9 @@ _cgo_set_stacklo(G *g)\n \t}\n }\n \n-static void\n-clang_init()\...
2026-02-15T07:43:56
mrdoob/three.js
df8b3e1ae9d21235815d0b01f98b5c05c12bbfe7
1c02d876d0fcd6f0c545e9b70df511b6ba7c0932
Update AnimationMixer.js Fix typo.
[ { "path": "src/animation/AnimationMixer.js", "patch": "@@ -641,7 +641,7 @@ class AnimationMixer extends EventDispatcher {\n \t/**\n \t * Deactivates all previously scheduled actions on this mixer.\n \t *\n-\t * @return {AnimationMixer} A reference to thi animation mixer.\n+\t * @return {AnimationMixer} A re...
2025-09-12T20:30:16
kubernetes/kubernetes
c0d8649668ffbaa29cb2a843d2ce86886416114f
3799fc9942a4df017e2c4f30524816fcf89045e4
test: fix WaitForNamespacedGVRDeletion parameter order Signed-off-by: Penghao <pewang@redhat.com>
[ { "path": "test/e2e/storage/framework/snapshot_resource.go", "patch": "@@ -125,7 +125,7 @@ func CreateSnapshotResource(ctx context.Context, sDriver SnapshottableTestDriver\n \t\tframework.ExpectNoError(err)\n \n \t\tginkgo.By(\"checking the Snapshot has been deleted\")\n-\t\terr = utils.WaitForNamespacedGVR...
2026-03-05T14:56:29
denoland/deno
c826feeaad1865db233085c0164a92f0b32766d0
ff1d9b69087b33bbda97130c14bd5b5a245022a6
fix: set `process.features.openssl_is_boringssl` to `true` (#32512) Enables `test-crypto-certificate.js` Node compat test. --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: bartlomieju <13602871+bartlomieju@users.noreply.github.com>
[ { "path": "ext/node/polyfills/process.ts", "patch": "@@ -959,8 +959,9 @@ const features = {\n // deno-lint-ignore camelcase\n tls_ocsp: true,\n tls: true,\n+ // Deno uses aws-lc, which is BoringSSL-based.\n // deno-lint-ignore camelcase\n- openssl_is_boringssl: false,\n+ openssl_is_boringssl: tru...
2026-03-06T08:02:47
tensorflow/tensorflow
57321d7752f0a9eaf68eeaabd68ad6c34e3ed65b
e359a4be53d8ac08a3dcf0251257581766ec6a77
Replace empty test fixture classes inheriting from HloTestBase with using aliases. This change simplifies the test fixture definitions by using `using` aliases instead of empty class declarations when no additional functionality is added to the `HloTestBase`. PiperOrigin-RevId: 883459772
[ { "path": "third_party/xla/xla/backends/gpu/runtime/collective_broadcast_thunk_test.cc", "patch": "@@ -61,7 +61,7 @@ using ::testing::ElementsAre;\n using Kind = Thunk::Kind;\n using ::tsl::proto_testing::EqualsProto;\n \n-class GpuCollectiveBroadcastTest : public HloTestBase {};\n+using GpuCollectiveBroadc...
2026-03-14T03:05:30
mrdoob/three.js
1c02d876d0fcd6f0c545e9b70df511b6ba7c0932
3ecd1c38720d5f95ca2a74f961d003b02e4ce258
Improve SSGI Temporal Noise (#31890) * Improve SSGI Temporal Noise * Fix bug toggling temporal filtering in AO/GI Mode * Update SSGINode.js * Make it mathematically equivalent to using frameId * Update SSGINode.js Add PR number. --------- Co-authored-by: Michael Herzog <michael.herzog@human-interactive.org>
[ { "path": "examples/jsm/tsl/display/SSGINode.js", "patch": "@@ -576,7 +576,8 @@ class SSGINode extends TempNode {\n \n \t\t\tconst noiseOffset = spatialOffsets( screenCoordinate );\n \t\t\tconst noiseDirection = gradientNoise( screenCoordinate );\n-\t\t\tconst initialRayStep = fract( noiseOffset.add( this._...
2025-09-12T08:11:30