repo
stringclasses
15 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
64.3k
files
listlengths
1
300
timestamp
timestamp[s]date
2013-03-13 20:45:00
2026-04-11 07:48:46
denoland/deno
9e7fb63fe12f68e8e268756b14abce99dda0ae75
38f3ffe3630c2f796fb7e9d9e1de58da21047f60
fix(ext/node): implement timeout and killSignal for spawn() (#32283) Fixes the `timeout` and `killSignal` options for `child_process.spawn()` (and `fork()`, which delegates to `spawn()`). Previously these options were accepted but silently ignored. The fix sets a `setTimeout` after spawning that kills the child with ...
[ { "path": "ext/node/polyfills/child_process.ts", "patch": "@@ -222,9 +222,27 @@ export function spawn(\n options = normalizeSpawnArguments(command, args, options);\n \n validateAbortSignal(options?.signal, \"options.signal\");\n+ validateTimeout(options?.timeout);\n \n const child = new ChildProcess(...
2026-02-23T14:37:46
swiftlang/swift
bf125742aa7930fe79b6ae6a9af0dbdd5fd42c91
227b3cb813996cdb8aea19b77c42a9590a58be4f
Sema: A bit of extra debug info
[ { "path": "include/swift/Sema/TypeVariableType.h", "patch": "@@ -418,7 +418,7 @@ class TypeVariableType::Implementation {\n ENTRY(TVO_CanBindToInOut, \"inout\");\n ENTRY(TVO_CanBindToNoEscape, \"noescape\");\n ENTRY(TVO_CanBindToHole, \"hole\");\n- ENTRY(TVO_PrefersSubtypeBinding, \"\");\n+ ...
2026-02-26T19:44:41
mrdoob/three.js
cc8051edfd370bc4514ebd9e560e5b24b5f2532c
0d9c7b86d6febeba22df2848b854f69cd3a83567
Improved webgpu reflection example (#31409) * Improved webgpu reflection example. * Clean up. * Added normalMap to floor. * Updated screenshot. * Potential fix for code scanning alert no. 3582: Unused variable, import, function or class Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-secur...
[ { "path": "examples/webgpu_reflection.html", "patch": "@@ -10,7 +10,7 @@\n \n \t\t<div id=\"info\">\n \t\t\t<a href=\"https://threejs.org\" target=\"_blank\" rel=\"noopener\">three.js</a> webgpu - reflection<br/>\n-\t\t\tBased on <a href=\"https://web.archive.org/web/20210101053442/http://oos.moxiecode.com/...
2025-07-23T11:21:05
tensorflow/tensorflow
1900833d1ed6c09a8043c30ce9d098748785ffda
d71c456a3451cb3a7fe131934ca9c337d1021fdc
[XLA:GPU] Fix failing test due to an empty replica group PiperOrigin-RevId: 877257263
[ { "path": "third_party/xla/xla/tests/BUILD", "patch": "@@ -2944,6 +2944,7 @@ xla_test(\n \"//xla/ffi\",\n \"//xla/ffi:ffi_api\",\n \"//xla/ffi/api:c_api\",\n+ \"//xla/runtime:device_id\",\n \"//xla/service:collective_ops_utils\",\n \"//xla/service:rendezvous\",...
2026-03-02T08:59:41
golang/go
6edb9f9c51f4f9042563f6fcf68701d1fed33c8f
819c53c25f2992113c202644045b93bd3a578f54
go/types, types2: remove support for gotypesalias GODEBUG flag For #76472. Change-Id: Ia51b41639637b1de916625e73c26f625382be305 Reviewed-on: https://go-review.googlesource.com/c/go/+/736441 Reviewed-by: Alan Donovan <adonovan@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceacc...
[ { "path": "src/cmd/compile/internal/noder/irgen.go", "patch": "@@ -56,7 +56,6 @@ func checkFiles(m posMap, noders []*noder) (*types2.Package, *types2.Info, map[*\n \t\tIgnoreBranchErrors: true, // parser already checked via syntax.CheckBranches mode\n \t\tImporter: &importer,\n \t\tSizes: ...
2026-01-15T00:10:00
denoland/deno
1c5a7189e57cd1d3d0cc3ce7a2f6725ac5ede3ea
5ebbfc4a83fff688222857629af8942bccc3b18b
fix(audit): gracefully handle malformed response (#32234) Fixes an issue where `deno audit` fails to deserialize npm registry responses when the `actions` field is missing. ## Changes Made - Added `#[serde(default)]` attribute to the `actions` field in `AuditResponse` struct in `cli/tools/pm/audit.rs` - this makes t...
[ { "path": "cli/tools/pm/audit.rs", "patch": "@@ -603,6 +603,7 @@ mod npm {\n \n #[derive(Debug, Deserialize)]\n pub struct AuditResponse {\n+ #[serde(default)]\n pub actions: Vec<AuditAction>,\n pub advisories: HashMap<i32, AuditAdvisory>,\n pub metadata: AuditMetadata,\n@@ -920,3 +921,30...
2026-02-22T02:32:21
golang/go
819c53c25f2992113c202644045b93bd3a578f54
c7258178cda55e3903ad8e4b6cc51861fb689457
cmd/compile: ensure ops have the expected argument widths The generic SSA representation uses explicit extension and truncation operations to change widths of values. The map intrinsics were playing somewhat fast and loose with this requirement. Fix that, and add a check to make sure we don't regress. I don't think t...
[ { "path": "src/cmd/compile/internal/ssa/_gen/divmod.rules", "patch": "@@ -223,7 +223,7 @@\n (Rsh64Ux64 <typ.UInt64>\n (Avg64u\n (Lsh64x64 <typ.UInt64> (ZeroExt32to64 x) (Const64 <typ.UInt64> [32]))\n- (Mul64 <typ.UInt64> (ZeroExt32to64 x) (Const64 <typ.UInt32> [int64(umagic32(c).m)]...
2025-12-18T20:29:39
denoland/deno
5ebbfc4a83fff688222857629af8942bccc3b18b
28d94f497698d9ad36ce2a49119d96466c9a59d1
fix(lsp): qualify diagnostic source and message from tsgo (#32251)
[ { "path": "cli/lsp/tsgo.rs", "patch": "@@ -886,6 +886,16 @@ impl TsGoServerInner {\n }\n }\n \n+fn qualify_tsgo_diagnostic(diagnostic: &mut lsp::Diagnostic) {\n+ diagnostic.source = Some(\"deno-ts\".to_string());\n+ if let Some(lsp::NumberOrString::Number(code)) = &diagnostic.code {\n+ diagnostic.mes...
2026-02-21T17:38:33
tensorflow/tensorflow
a61033a50239d4b72aa7eafe3baafa7d66dac4a0
468e47a05df8254f05c2ebf19534d0ae5cfb9a54
Rely on IFRT types implementing AbslStringify rather than call the deprecated DebugString PiperOrigin-RevId: 877225653
[ { "path": "tensorflow/core/tfrt/ifrt/sharding_utils.cc", "patch": "@@ -287,9 +287,9 @@ absl::StatusOr<int> VerifyIndexDomainsAndGetReplicas(\n for (auto index_domain = index_domains.begin() + 1;\n index_domain < index_domains.end(); ++index_domain) {\n if (first_index_domain->shape() != index_d...
2026-03-02T07:31:22
kubernetes/kubernetes
a4c074d1902994cb13ca232e726825da3c84ae5e
5e8ae74b8b3129ab79d24aea6ef6ca9a76fbd668
Address review feedback: replace HandleError and HandleCrash with contextual variants
[ { "path": "staging/src/k8s.io/apiserver/pkg/endpoints/handlers/watch.go", "patch": "@@ -17,6 +17,7 @@ limitations under the License.\n package handlers\n \n import (\n+\t\"context\"\n \t\"fmt\"\n \t\"io\"\n \t\"net/http\"\n@@ -241,7 +242,7 @@ func (s *WatchServer) HandleHTTP(w http.ResponseWriter, req *http...
2026-02-23T08:57:31
mrdoob/three.js
62e89317f55921a24b63dc41f0c6672741203818
868515ff410eb2ca4bb153f949d456e08076203a
Fix parameters description for `Spherical#setFromCartesianCoords` (#31475)
[ { "path": "src/math/Spherical.js", "patch": "@@ -107,8 +107,8 @@ class Spherical {\n \t * Sets the spherical components from the given Cartesian coordinates.\n \t *\n \t * @param {number} x - The x value.\n-\t * @param {number} y - The x value.\n-\t * @param {number} z - The x value.\n+\t * @param {number} ...
2025-07-22T10:07:03
golang/go
a006e17162ddf70b7ee23a8ec2e3e064d0102bd5
858d4bf8511a7741cf5c21f1d51b23ed180fd450
syscall: document Sendfile semantics syscall.Sendfile behavior differs significantly between operating systems. Document the platform-specific behavior for the offset argument and partial write reporting on Linux versus BSD-derived systems. Fixes #64044 Change-Id: I93f740c3e2df911a10bf0884ffab218d4bb4e5fc GitHub-La...
[ { "path": "src/syscall/syscall_unix.go", "patch": "@@ -525,6 +525,22 @@ func Socketpair(domain, typ, proto int) (fd [2]int, err error) {\n \treturn\n }\n \n+// Sendfile copies up to count bytes from file descriptor infd to file descriptor outfd.\n+//\n+// It wraps the sendfile system call. The behavior vari...
2026-01-18T14:11:05
denoland/deno
28d94f497698d9ad36ce2a49119d96466c9a59d1
a29b955a86990be8795778a456b38cc09086575b
fix(install): support `--allow-scripts` with `deno install -g --compile ...` (#32249)
[ { "path": "cli/args/flags.rs", "patch": "@@ -6587,6 +6587,7 @@ fn install_parse(\n \n if compile {\n flags.type_check_mode = TypeCheckMode::Local;\n+ allow_scripts_arg_parse(flags, matches)?;\n }\n \n flags.subcommand =", "additions": 1, "deletions": 0, "language": "Rust" ...
2026-02-20T22:17:15
mrdoob/three.js
a880e764539fdb7e33ec224f86e7f2537f0ba2f8
1388d164873663bfca604a71a77f4a3899d47278
ProjectorLightNode: Fix back-projection. (#31473) * ProjectorLightNode: Fix back-projection. * ProjectorLightNode: Clean up.
[ { "path": "src/nodes/lighting/ProjectorLightNode.js", "patch": "@@ -1,8 +1,10 @@\n import SpotLightNode from './SpotLightNode.js';\n \n-import { Fn, vec2 } from '../tsl/TSLCore.js';\n+import { float, Fn, If, vec2 } from '../tsl/TSLCore.js';\n import { length, min, max, saturate, acos } from '../math/MathNod...
2025-07-22T09:32:52
tensorflow/tensorflow
91723a671ab3c54b214d39871e766fa879868d69
5d8b07ad0571b0253a4251496ff42b6510d05858
Create directory for Megascale debugging playbook. PiperOrigin-RevId: 877203436
[ { "path": "third_party/xla/docs/_toc.yaml", "patch": "@@ -39,6 +39,8 @@ toc:\n path: /xla/indexing\n - title: LHS Cost Model\n path: /xla/lhs_cost_model\n+ - title: Megascale\n+ path: /xla/megascale/overview\n - title: Multi-host HLO runner\n path: /xla/tools_multihost_hlo_runner\n - t...
2026-03-02T06:26:49
golang/go
858d4bf8511a7741cf5c21f1d51b23ed180fd450
8e3104dc269b959083f7e7133841e3366a477ef1
debug/elf: return FormatError when reading short files NewFile returns the raw error from ReadAt when failing to read the ELF identifier, typically io.EOF for empty or short files. This breaks the API contract that all parsing failures should return *FormatError. Wrap the error in FormatError for consistency with oth...
[ { "path": "src/debug/elf/file.go", "patch": "@@ -290,7 +290,7 @@ func NewFile(r io.ReaderAt) (*File, error) {\n \t// Read and decode ELF identifier\n \tvar ident [16]uint8\n \tif _, err := r.ReadAt(ident[0:], 0); err != nil {\n-\t\treturn nil, err\n+\t\treturn nil, &FormatError{0, \"cannot read ELF identifi...
2026-01-15T12:19:10
mrdoob/three.js
1388d164873663bfca604a71a77f4a3899d47278
a681a5f9b2f6c0c63b58b385d14a7c6e00df5443
TSL: Introduce automatic use of `.toVar()` to `assign()` (#31459) * introduce automatic use of `.toVar()` to `assign()` * fix nodeObj return * move `builder.getArrayCount()` -> `node.getArrayCount()` * Update NodeBuilder.js * add `builder.flowBuildStage()` * add docs and rename `intention` -> `intent` * rename `...
[ { "path": "src/Three.TSL.js", "patch": "@@ -519,6 +519,7 @@ export const uvec2 = TSL.uvec2;\n export const uvec3 = TSL.uvec3;\n export const uvec4 = TSL.uvec4;\n export const Var = TSL.Var;\n+export const VarIntent = TSL.VarIntent;\n export const varying = TSL.varying;\n export const varyingProperty = TSL.v...
2025-07-22T01:33:32
denoland/deno
a29b955a86990be8795778a456b38cc09086575b
cb0c6d565c0d16916d292914d24237362c712013
fix(ext/node): enable test-stdio-closed tests (#32237) - Fix `child_process` shell command translation to handle shell redirections (`1>&-`, `< file`), piped commands (`cmd1 | cmd2`), and shell variable prefixes (`"$NODE"`, `${NODE}`). Previously shell operators were passed to the CLI arg translator, causing parse fai...
[ { "path": "ext/node/ops/node_cli_parser.rs", "patch": "@@ -51,8 +51,13 @@ pub struct TranslatedArgs {\n fn translate_to_deno_args(\n parsed_args: ParseResult,\n script_in_npm_package: bool,\n+ wrap_eval: bool,\n ) -> TranslatedArgs {\n- let options = TranslateOptions::for_child_process();\n+ let opti...
2026-02-20T21:36:26
kubernetes/kubernetes
1a1d4f60a8b7f69c11f3c291c33bbe8833d8e9f5
c05d4b30ffc125c6bc44576f184c6d050c704dfd
Fix nil pointer dereference in submitPodGroupAlgorithmResult
[ { "path": "pkg/scheduler/schedule_one_podgroup.go", "patch": "@@ -439,7 +439,7 @@ func (sched *Scheduler) submitPodGroupAlgorithmResult(ctx context.Context, sched\n \t\t} else {\n \t\t\t// TBD: Add a message to status if the pod used features for which finding a placement cannot be guaranteed,\n \t\t\t// su...
2026-02-23T08:03:41
golang/go
8e3104dc269b959083f7e7133841e3366a477ef1
eaf6650c2bff2fe466621f8fa23844dcbbdbcee8
simd/archsimd/_gen/simdgen: fix typos in error messages simdgen: fix typos in error messages Change-Id: I921eea63c4847b2af43a1d5a1ea075e86f58aa77 GitHub-Last-Rev: 8c9dae51fd906aee04f52a5d44c6d4c923fc52d0 GitHub-Pull-Request: golang/go#77012 Reviewed-on: https://go-review.googlesource.com/c/go/+/732880 Reviewed-by: Ke...
[ { "path": "src/simd/archsimd/_gen/simdgen/gen_utility.go", "patch": "@@ -157,7 +157,7 @@ func (op *Operation) shape() (shapeIn inShape, shapeOut outShape, maskType maskS\n \t\t\tif shapeOut != OneVregOutAtIn && in.AsmPos == 0 && in.Class == \"vreg\" {\n \t\t\t\tshapeOut = OneVregOutAtIn\n \t\t\t} else {\n-\...
2025-12-27T14:09:40
tensorflow/tensorflow
35ff0196ec4b0aed28e6ee5f227a13d8ffb5a995
93418a139fd021b06cd6b0c84e5a90f37dbc404c
Enable export of UINT4 tensor type to TFLite flatbuffers. This change allows unsigned 4-bit integer types to be exported as tflite::TensorType_UINT4 instead of raising an error. PiperOrigin-RevId: 876526384
[ { "path": "tensorflow/compiler/mlir/lite/flatbuffer_export.cc", "patch": "@@ -232,12 +232,8 @@ static StatusOr<tflite::TensorType> GetTFLiteType(Type type,\n return tflite::TensorType_INT2;\n }\n case 4:\n- if (itype.isUnsigned()) {\n- return Status(absl::StatusCode::...
2026-02-28T04:31:25
mrdoob/three.js
74efc689abd19b40fed44c4d199358837d8e444e
04a597cce2417f44e2a4f2545e5616fd7fcd895f
NodeMaterial: Fix fog. (#31463) * NodeMaterial: Fix fog. * NodeBuilder: Clean up. * E2E: Update screenshots. * E2E: Update screenshot.
[ { "path": "src/materials/nodes/NodeMaterial.js", "patch": "@@ -1071,7 +1071,7 @@ class NodeMaterial extends Material {\n \n \t\t\toutput.assign( outputNode );\n \n-\t\t\toutputNode = vec4( fogNode );\n+\t\t\toutputNode = vec4( fogNode.toStack() );\n \n \t\t}\n ", "additions": 1, "deletions": 1, ...
2025-07-21T15:28:34
denoland/deno
2e293c82032011d78c4ed8c17f405b0fd84c543b
fa9d25ab6682f8f9fe843451c23cd5edaf3b2a71
fix: deno install --force --compile (#32242)
[ { "path": "cli/tools/installer/mod.rs", "patch": "@@ -972,10 +972,28 @@ async fn install_global_compiled(\n };\n \n let output_path = PathBuf::from(&output);\n- if output_path.is_file() && !install_flags_global.force {\n- return Err(anyhow!(\n- \"Existing installation found. Aborting (Use -f to...
2026-02-20T20:38:26
golang/go
eaf6650c2bff2fe466621f8fa23844dcbbdbcee8
1b7e5836ad2ae6bc5466e3b1916294d20403386c
test: use lower-case error message in heapsampling.go According to Go style guidelines, error strings should not be capitalized. Change-Id: Iacfb3f5192b7be40da99b6b7e4801f1ae1169efc GitHub-Last-Rev: 440396e0946edb18c422442ea235b5c57c2899af GitHub-Pull-Request: golang/go#76999 Reviewed-on: https://go-review.googlesour...
[ { "path": "test/heapsampling.go", "patch": "@@ -205,7 +205,7 @@ func checkAllocations(records []runtime.MemProfileRecord, leafFrame string, fram\n // consistently far from the expected value.\n func checkValue(fname string, ln int, testName string, want int64, got []int64) error {\n \tif got == nil {\n-\t\t...
2025-12-26T14:48:24
mrdoob/three.js
7ff0f18c4f63976ee75c51970f2f5b77cc4517c6
35ad995297592c90946c5d3df4b876b1d2563daa
Docs: fix types (#31450) * Docs: fix types * Update Backend.js --------- Co-authored-by: Samuel Rigaud <rigaud@gmail.com> Co-authored-by: Michael Herzog <michael.herzog@human-interactive.org>
[ { "path": "examples/jsm/capabilities/WebGPU.js", "patch": "@@ -2,7 +2,7 @@ let isAvailable = ( typeof navigator !== 'undefined' && navigator.gpu !== undefi\n \n if ( typeof window !== 'undefined' && isAvailable ) {\n \n-\tisAvailable = await navigator.gpu.requestAdapter();\n+\tisAvailable = Boolean( await n...
2025-07-21T08:37:17
tensorflow/tensorflow
5807b47480a6cd71923ef8f74e70b25bdaf75e11
a9b45aeb50ddf1283f434e879f76a39512046184
Fix `enableHloShardingV3` flag propagation in `MlirToHlo` PiperOrigin-RevId: 876345187
[ { "path": "third_party/xla/xla/pjrt/mlir_to_hlo.cc", "patch": "@@ -121,7 +121,8 @@ absl::Status MlirToXlaComputation(\n bool enable_hlo_sharding_v3 =\n exec_build_options && exec_build_options->has_debug_options() &&\n exec_build_options->debug_options().xla_enable_hlo_sharding_v3();\n- ...
2026-02-27T19:27:14
denoland/deno
fa9d25ab6682f8f9fe843451c23cd5edaf3b2a71
498d6efc6c6564fa68be273d6b403f7ccc881f41
feat(fmt): add --fail-fast flag to deno fmt --check (#31438) Adds a `--fail-fast` flag to `deno fmt --check` that stops checking files immediately after finding the first formatting error, matching the behavior of `deno test --fail-fast`.
[ { "path": "cli/args/flags.rs", "patch": "@@ -269,6 +269,7 @@ pub struct EvalFlags {\n #[derive(Clone, Default, Debug, Eq, PartialEq)]\n pub struct FmtFlags {\n pub check: bool,\n+ pub fail_fast: bool,\n pub files: FileFlags,\n pub permit_no_files: bool,\n pub use_tabs: Option<bool>,\n@@ -3142,6 +31...
2026-02-20T16:55:14
golang/go
1b7e5836ad2ae6bc5466e3b1916294d20403386c
e9e05687dee08ba0f0fb07b076f1c3f47bb57f34
cmd/compile: speedup large init function compile time Fixes #77153 Change-Id: Ia3906e4d686281be78b65daf7a7a4fd1b2b2483d Reviewed-on: https://go-review.googlesource.com/c/go/+/737880 Reviewed-by: Keith Randall <khr@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Re...
[ { "path": "src/cmd/compile/internal/noder/reader.go", "patch": "@@ -3342,6 +3342,9 @@ func (r *reader) pkgInitOrder(target *ir.Package) {\n \t// Outline (if legal/profitable) global map inits.\n \tstaticinit.OutlineMapInits(fn)\n \n+\t// Split large init function.\n+\tstaticinit.SplitLargeInit(fn)\n+\n \tta...
2026-01-21T11:11:29
mrdoob/three.js
6a0dab07a302c2cd1a508aad80e6b22721d0a5e1
250c5f6d93b946f18103feb5a8b3dce70d1f4acd
BatchedMesh: Fix `setInstanceCount()`. (#31458) * fix BatchedMesh.setInstanceCount * Cleanup
[ { "path": "src/objects/BatchedMesh.js", "patch": "@@ -1251,7 +1251,7 @@ class BatchedMesh extends Mesh {\n \t\tconst availableInstanceIds = this._availableInstanceIds;\n \t\tconst instanceInfo = this._instanceInfo;\n \t\tavailableInstanceIds.sort( ascIdSort );\n-\t\twhile ( availableInstanceIds[ availableIn...
2025-07-21T08:21:26
tensorflow/tensorflow
a9b45aeb50ddf1283f434e879f76a39512046184
99edbf167e80876d06b4739476af647eda71015b
PR #38290: [xla:gpu] Add optional progress tracking for executed thunks Imported from GitHub PR https://github.com/openxla/xla/pull/38290 Add a way to track from XLA side what kernels got stuck when XLA execution hangs. We rely on installing progress tracker that records events after each executed thunks. Hang watchd...
[ { "path": "third_party/xla/xla/backends/gpu/runtime/BUILD", "patch": "@@ -2722,18 +2722,27 @@ cc_library(\n hdrs = [\"sequential_thunk.h\"],\n deps = [\n \":annotation\",\n+ \":collective_thunk\",\n \":thunk\",\n \":thunk_proto_cc\",\n \"//xla:util\",\n+ ...
2026-02-27T19:21:32
swiftlang/swift
f5419c009557c429e82f038af7b763677bed34d0
7491ac8240ca829558e0cfb80565c5b47b028c92
Sema: Fix problem in isConformanceTransitiveForSubtype() This was wrong for classes. Because it was only used from one place previously, the bug didn't come up, but I'm adding a new caller in CSBindings shortly.
[ { "path": "lib/Sema/Subtyping.cpp", "patch": "@@ -180,16 +180,19 @@ bool ConstraintSystem::isConformanceTransitiveForSubtype(\n case ConversionBehavior::Array:\n case ConversionBehavior::Dictionary:\n case ConversionBehavior::Set:\n- // All subtypes of these have the same nominal type.\n+ // All...
2026-02-23T03:26:52
golang/go
1996c22f0a58a32f5f415e1a6c84bcb305f04c36
c61a48619ff2d26543d0f4874ab495bbbfdc701f
syscall: return early on error in Recvmsg Currently, Recvmsg may access the rsa buffer even if the underlying syscall returns an error. Following the same change done for x/sys/unix.Recvmsg in CL 734740. For golang/go#76848 Change-Id: I2a145d822442a2033a76f4717317a39010b17bd5 Reviewed-on: https://go-review.googleso...
[ { "path": "src/syscall/syscall_unix.go", "patch": "@@ -385,6 +385,9 @@ func recvmsgInet6(fd int, p, oob []byte, flags int, from *SockaddrInet6) (n, oob\n func Recvmsg(fd int, p, oob []byte, flags int) (n, oobn int, recvflags int, from Sockaddr, err error) {\n \tvar rsa RawSockaddrAny\n \tn, oobn, recvflags,...
2026-01-10T14:56:01
denoland/deno
498d6efc6c6564fa68be273d6b403f7ccc881f41
dde0741dc94351724169250acbc3901fed71b0ae
fix(ext/node): `util.parseEnv` and `process.loadEnvFile` compatibility (#32183)
[ { "path": ".github/workflows/ci.yml", "patch": "@@ -1347,7 +1347,7 @@ jobs:\n if: '!startsWith(github.ref, ''refs/tags/'')'\n env:\n CARGO_PROFILE_DEV_DEBUG: 0\n- run: cargo test --locked --lib -p deno -p denort -p node_shim -p deno_lib -p deno_snapshots -p deno_bundle_runti...
2026-02-20T15:44:02
mrdoob/three.js
cf58904c83428d4745535faaafeb9711eec1f7fc
4870f070c717d6c0afad0c58e39ba33fbc7fdd86
Upgrade meshopt_decoder.module.js to 0.22 (#31449) This brings in fixes and latency optimizations for WebWorkers, and minor optimizations in the WebAssembly code. The file is taken as is from GH zeux/meshoptimizer@v0.22
[ { "path": "examples/jsm/libs/meshopt_decoder.module.js", "patch": "@@ -1,32 +1,36 @@\n // This file is part of meshoptimizer library and is distributed under the terms of MIT License.\n-// Copyright (C) 2016-2022, by Arseny Kapoulkine (arseny.kapoulkine@gmail.com)\n-var MeshoptDecoder = (function() {\n-\t\"...
2025-07-20T08:08:57
kubernetes/kubernetes
9e29a74c6ff3246e2de64560d3d47c5ea09faf7a
54241eea4dbdf1ac4bce83748f748a49488a70c1
commentstart lint fixes for apiserverinternal API group
[ { "path": "hack/golangci-hints.yaml", "patch": "@@ -147,7 +147,7 @@ linters:\n # Commentstart - Ignore commentstart issues for existing API group\n # TODO: For each existing API group, we aim to remove it over time.\n - text: \"godoc for field .* should start with '.* ...'\"\n- path...
2026-02-10T20:02:02
tensorflow/tensorflow
badeb0357f7752c26cd23587452784d9339dd31d
3bf6ca1c50fa21fdf793e1ad79c00d1be22373da
Fix SIGSEGV in SplitInputTask when priority-aware batch scheduler evicts split subtasks PiperOrigin-RevId: 876314593
[ { "path": "tensorflow/core/kernels/batching_util/batch_resource_base.cc", "patch": "@@ -878,8 +878,17 @@ absl::Status BatchResourceBase::ConcatInputTensors(\n // complete.\n std::function<void()> split_task_done_callback = [input_task]() mutable {\n OpKernelContext* context = input_task->context;\n-...
2026-02-27T18:20:54
golang/go
d2aad0df601df3a48ee4823309872cd224d91aa3
bfb851c31eaf385649263e42e1a8620e2df01158
runtime: guard unexpected return pc gp.m dereference If stack scanning reaches here while scanning a waiting goroutine, gp.m will be nil. We are going to crash anyway because the stack is corrupt, but we still want to reach the print below for context rather than dying with a SIGSEGV here. For #64030. Change-Id: I6a...
[ { "path": "src/runtime/traceback.go", "patch": "@@ -456,7 +456,7 @@ func (u *unwinder) next() {\n \t\t// get everything, so crash loudly.\n \t\tfail := u.flags&(unwindPrintErrors|unwindSilentErrors) == 0\n \t\tdoPrint := u.flags&unwindSilentErrors == 0\n-\t\tif doPrint && gp.m.incgo && f.funcID == abi.FuncI...
2025-12-03T20:42:03
swiftlang/swift
2554ecc8a894b44b1f661bc336205e70b4d82a0f
0efc9a92fa6562359b7aa76429c4628481360053
SimplifyDestroyValue: support `fix_lifetime` when optimizing forwarding instructions ``` %3 = struct $S (%1, %2) fix_lifetime %3 destroy_value %3 // the only use of %3, except `fix_lifetime` ``` -> ``` fix_lifetime %1 fix_lifetime %2 destroy_value %1 destroy_value %2 ```
[ { "path": "SwiftCompilerSources/Sources/Optimizer/InstructionSimplification/SimplifyDestroyValue.swift", "patch": "@@ -45,26 +45,13 @@ extension DestroyValueInst : OnoneSimplifiable, SILCombineSimplifiable {\n /// The benefit of this transformation is that the forwarding instruction can be removed.\n //...
2026-02-18T15:55:14
mrdoob/three.js
4870f070c717d6c0afad0c58e39ba33fbc7fdd86
849b524a213daf0b2bfb1916c94f439af0ea8267
fix typos (#31447) Co-authored-by: Samuel Rigaud <rigaud@gmail.com>
[ { "path": "examples/jsm/transpiler/GLSLDecoder.js", "patch": "@@ -861,7 +861,7 @@ class GLSLDecoder {\n \n \t\tconst switchDeterminantTokens = this.readTokensUntil( ')' );\n \n-\t\t// Parse expresison between parentheses. Index 1: char after '('. Index -1: char before ')'\n+\t\t// Parse expression between p...
2025-07-19T16:03:02
denoland/deno
08d2450c90cef5ca8abe52e389fee6e5221ca159
ff153750f2b240b910b56cf36aea8c94cc603c00
fix(ci): use noble apt repo for LLVM 21 packages (#32241) The CI was configured to install LLVM 21 from the jammy (Ubuntu 22.04) apt repository, but the runners use Ubuntu 24.04 (Noble). The mismatched distro codename caused 404 errors when downloading packages.
[ { "path": ".github/workflows/ci.generate.ts", "patch": "@@ -117,8 +117,8 @@ sudo apt-get -qq remove \\\n 'clang-12*' 'clang-13*' 'clang-14*' 'clang-15*' 'clang-16*' 'clang-17*' 'clang-18*' 'clang-19*' 'llvm-12*' 'llvm-13*' 'llvm-14*' 'llvm-15*' 'llvm-16*' 'llvm-17*' 'llvm-18*' 'llvm-19*' 'lld-12*' 'lld-13...
2026-02-20T04:20:28
golang/go
0152075d5aba0f198ac67fb426a0fc4c16e2b363
a53589662719d0186e3ce3b965c082b829d0ce4c
encoding/json/v2: remove issue reference in Duration formatting error The json/v2 working group decided to commit to no default representation for time.Duration for the foreseeable future. Thus, we can remove the issue reference in the error message. If JavaScript (TC39) formally adopts the Temporal.Duration type, wh...
[ { "path": "src/encoding/json/v2/arshal_time.go", "patch": "@@ -54,7 +54,7 @@ func makeTimeArshaler(fncs *arshaler, t reflect.Type) *arshaler {\n \t\t\t\treturn marshalNano(enc, va, mo)\n \t\t\t} else {\n \t\t\t\t// TODO(https://go.dev/issue/71631): Decide on default duration representation.\n-\t\t\t\treturn...
2026-01-09T01:27:59
tensorflow/tensorflow
45357ca4341647beeecd9ea38c8717d4221f3458
9aa1ef4fca1593171537163ef2d5e86fb215a512
Clean up dependencies and includes for some HLO helper types This change applies all suggestions from include-cleaner and adjusts the Bazel dependencies accordingly.o The main benefit is the removal of hlo_graph_dumper (a debugging component) from the (transitive) dependencies of hlo_module. PiperOrigin-RevId: 87622...
[ { "path": "third_party/xla/xla/service/BUILD", "patch": "@@ -4213,10 +4213,16 @@ cc_library(\n hdrs = [\"hlo_domain_verifier.h\"],\n deps = [\n \":hlo_domain_map\",\n- \":hlo_graph_dumper\",\n- \"//xla:types\",\n+ \"//xla:status_macros\",\n \"//xla/hlo/ir:hlo\",\...
2026-02-27T14:44:16
mrdoob/three.js
849b524a213daf0b2bfb1916c94f439af0ea8267
8a318e456d2c788040c5671ec6e3c78394d2130e
USDZExporter: object names fix (#31444)
[ { "path": "examples/jsm/exporters/USDZExporter.js", "patch": "@@ -381,7 +381,12 @@ class USDZExporter {\n function getName( object, namesSet ) {\n \n \tlet name = object.name;\n-\tname = name.replace( /[^A-Za-z0-9-_]/g, '' );\n+\tname = name.replace( /[^A-Za-z0-9_]/g, '' );\n+\tif ( /^[0-9]/.test( name ) ) ...
2025-07-19T08:21:42
swiftlang/swift
0efc9a92fa6562359b7aa76429c4628481360053
55e1266255d018e689a8ec5005fe98b9396a89d8
SIL: add `Builder.createFixLifetime`
[ { "path": "SwiftCompilerSources/Sources/SIL/Builder.swift", "patch": "@@ -860,8 +860,13 @@ public struct Builder {\n let makeAddrBorrow = bridged.createMakeAddrBorrow(referent.bridged)\n return notifyNew(makeAddrBorrow.getAs(MakeAddrBorrowInst.self))\n }\n-}\n \n+ @discardableResult\n+ public fu...
2026-02-18T15:48:20
denoland/deno
ff153750f2b240b910b56cf36aea8c94cc603c00
964288509b72a5f4217f61bb85e104f41ef09c24
fix(lsp): typescript-go basic resolution (#32016)
[ { "path": "cli/lsp/documents.rs", "patch": "@@ -1296,6 +1296,49 @@ impl DocumentModules {\n module\n }\n \n+ pub fn module_for_tsgo_referrer(\n+ &self,\n+ uri: &Uri,\n+ compiler_options_key: &CompilerOptionsKey,\n+ ) -> Option<Arc<DocumentModule>> {\n+ let document = self.documents.get(u...
2026-02-19T17:50:21
golang/go
dae71067ce7ee41ebe752a4ee3c544506e74f824
adb64adfd74470a0653dde9214a1acb0ddf72268
cmd/compile: fix mis-compilation for static array initialization The bug was first introduced when the compiler is still written in C, with CL 2254041. The static array was laid out with the wrong context, causing a stack pointer will be stored in global object. Fixes #61730 Fixes #77193 Change-Id: I22c8393314d251be...
[ { "path": "src/cmd/compile/internal/walk/complit.go", "patch": "@@ -567,11 +567,7 @@ func anylit(n ir.Node, var_ ir.Node, init *ir.Nodes) {\n \t\t\t// lay out static data\n \t\t\tvstat := readonlystaticname(t)\n \n-\t\t\tctxt := inInitFunction\n-\t\t\tif n.Op() == ir.OARRAYLIT {\n-\t\t\t\tctxt = inNonInitFu...
2026-01-21T07:39:20
kubernetes/kubernetes
cc9731f2911ee987ad9677e0b4ba365e1a659141
80b9ee1abc9b6123773a011927c203b4c35377a9
fix quota integration test
[ { "path": "test/integration/quota/quota_test.go", "patch": "@@ -90,7 +90,7 @@ func TestQuota(t *testing.T) {\n \n \tdiscoveryFunc := clientset.Discovery().ServerPreferredNamespacedResources\n \tlisterFuncForResource := generic.ListerFuncForResourceFunc(informers.ForResource)\n-\tqc, err := quotainstall.NewQ...
2026-01-29T20:55:19
mrdoob/three.js
0fbaef05876088bb25ba0affdfcdfce199ef2a86
1bac6346777cd45e1d4ab5071f9527c86be62b81
TSL: Fix `pass()` build during `sample()` call using `Mesh` (#31431)
[ { "path": "src/nodes/display/PassNode.js", "patch": "@@ -49,7 +49,7 @@ class PassTextureNode extends TextureNode {\n \n \tsetup( builder ) {\n \n-\t\tif ( builder.object.isQuadMesh ) this.passNode.build( builder );\n+\t\tthis.passNode.build( builder );\n \n \t\treturn super.setup( builder );\n ", "addit...
2025-07-16T16:11:17
tensorflow/tensorflow
7ec4a7323d6449636469a04214f44afec92158cb
f79258002b4266ddfd53934d02caa6b8969925ec
PR #38360: [ROCm] Fix triton integration failures Imported from GitHub PR https://github.com/openxla/xla/pull/38360 📝 Summary of Changes Fix ROCm test failures after triton integration: //xla/hlo/builder/lib:self_adjoint_eig_test_amdgpu_any //xla/hlo/builder/lib:svd_test_amdgpu_any //xla/tests:conditional_test_amdgp...
[ { "path": "third_party/xla/xla/backends/gpu/codegen/triton/compilation_pipeline_rocm.cc", "patch": "@@ -120,7 +120,8 @@ static void MakeTTGIR(mlir::OpPassManager* pm,\n mlir::createTritonAMDGPUInThreadTranspose());\n pm->addPass(mt::gpu::createTritonGPURemoveLayoutConversions());\n }\n- pm->a...
2026-02-27T14:13:13
denoland/deno
964288509b72a5f4217f61bb85e104f41ef09c24
e64ffe6a4f61e0ddeaaff6fb5b4cea6b0264c45f
fix(ext/node): handle shell redirections in child_process exec (#32087) When child_process.exec() runs a shell command like "deno" "script.js" < "input.txt", transformDenoShellCommand failed to add run -A because shell redirections (<, >, |) were included in the args passed to the CLI parser, triggering the metacharac...
[ { "path": "ext/node/lib.rs", "patch": "@@ -291,6 +291,7 @@ deno_core::extension!(deno_node,\n ops::process::op_process_abort,\n ops::process::op_node_process_constrained_memory<TSys>,\n ops::node_cli_parser::op_node_translate_cli_args,\n+ ops::shell::op_node_parse_shell_args,\n ops::tls::...
2026-02-19T17:48:40
golang/go
2d37c2077854e225204a7c4c26c10453a20de6d1
455282911aba7512e2ba045ffd9244eb97756247
go/types, types2: better error when selecting field on type rather than value Fixes #6814. Change-Id: I659670998f8e89400d03d40189e8c54f7e705cdc Reviewed-on: https://go-review.googlesource.com/c/go/+/738040 Reviewed-by: Alan Donovan <adonovan@google.com> Auto-Submit: Robert Griesemer <gri@google.com> LUCI-TryBot-Resul...
[ { "path": "src/cmd/compile/internal/types2/call.go", "patch": "@@ -835,6 +835,7 @@ func (check *Checker) selector(x *operand, e *syntax.SelectorExpr, wantType bool\n \t\tcheck.errorf(e.Sel, MissingFieldOrMethod, \"%s.%s undefined (%s)\", x.expr, sel, why)\n \t\tgoto Error\n \t}\n+\t// obj != nil\n \n \t// m...
2026-01-21T22:40:04
mrdoob/three.js
71f36f2080c1b984b2fd321ef84786ae7c973de0
d7e1cc79270424ac73f328b3949c02cb6ae57a0a
TRAANode: New TRAA implementation. (#31421) * TRAANode: New TRAA implementation. * TRAANode: Fix first frame. * introduce post-processing context * add for renderAsync * TRAANode: Fix resize darkening bug. * TRAANode: Fix render target selection. --------- Co-authored-by: sunag <sunagbrasil@gmail.com>
[ { "path": "examples/jsm/tsl/display/TRAANode.js", "patch": "@@ -1,5 +1,5 @@\n-import { Color, Vector2, NearestFilter, Matrix4, RendererUtils, PassNode, QuadMesh, NodeMaterial } from 'three/webgpu';\n-import { add, float, If, Loop, int, Fn, min, max, clamp, nodeObject, texture, uniform, uv, vec2, vec4, lumin...
2025-07-16T09:09:39
kubernetes/kubernetes
80b9ee1abc9b6123773a011927c203b4c35377a9
58da2e682f1ecba5d848da4810c49ad6baf886a1
fix unit test
[ { "path": "plugin/pkg/admission/resourcequota/admission_test.go", "patch": "@@ -107,7 +107,7 @@ func createHandlerWithConfig(kubeClient kubernetes.Interface, informerFactory in\n \tif config == nil {\n \t\tconfig = &resourcequotaapi.Configuration{}\n \t}\n-\tquotaConfiguration, err := install.NewQuotaConfig...
2026-01-29T19:09:14
denoland/deno
8e15a1f450b91aa44a6f6b9881c9be717575e750
3239a3fe2d1da2cd93df4cbd099c8d0973699fa0
feat: add `navigator.platform` (#30795) Fixes https://github.com/denoland/deno/issues/24117 --------- Signed-off-by: Bedis Nbiba <bedisnbiba@gmail.com> Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
[ { "path": "cli/tsc/dts/lib.deno.window.d.ts", "patch": "@@ -362,6 +362,7 @@ interface Navigator {\n readonly userAgent: string;\n readonly language: string;\n readonly languages: string[];\n+ readonly platform: string;\n }\n \n /**", "additions": 1, "deletions": 0, "language": "Unknown" ...
2026-02-19T08:19:17
tensorflow/tensorflow
48113f368f608db0da018257ff4b31f9e4e4d86a
d9bc620d5cfa0010bd5ea8321522a4bbe9d0f007
[XLA:GPU] Sort sizes and strides in descending order of stride. Currently we sort size and stride expression by stride in ascending and then descending order, but that's not strictly necessary. We still have two calls to `SortByStrideInDescendingOrder`, so we're doing extra work, but I'll fix that in the following cha...
[ { "path": "third_party/xla/xla/codegen/tiling/BUILD", "patch": "@@ -227,6 +227,7 @@ cc_library(\n deps = [\n \":constraint_expression\",\n \"//xla/hlo/analysis:indexing_analysis\",\n+ \"//xla/hlo/analysis:interval\",\n \"@com_google_absl//absl/algorithm:container\",\n ...
2026-02-27T12:20:29
mrdoob/three.js
96662caece43868dbf029768757be7222b2fb721
e3853edf2e66d30b748f6c0bd3b86a7d6af34ad2
Textures: Fix dimensions of video frames. (#31425) * Textures: Fix dimensions of video frames. * Source: Fix `getSize()`. * Source: Fix z coordinate for video-like sources.
[ { "path": "src/renderers/common/Textures.js", "patch": "@@ -372,6 +372,12 @@ class Textures extends DataMap {\n \t\t\t\ttarget.height = image.videoHeight || 1;\n \t\t\t\ttarget.depth = 1;\n \n+\t\t\t} else if ( image instanceof VideoFrame ) {\n+\n+\t\t\t\ttarget.width = image.displayWidth || 1;\n+\t\t\t\tta...
2025-07-15T22:47:53
golang/go
a8291eb61402d4549b69803fc8f834ded45b1f6c
4edaaf2b529219ff219798914f730ca5a0ab018b
cmd/compile/internal/staticinit: fix bug in global new(expr) The StaticInit pass asserts that the operand of &v is a global, but this is not so for the &autotemp desugaring of new(expr). (The variable has by that point escaped to the heap, so the object code calls runtime.newobject. A future optimization would be to ...
[ { "path": "src/cmd/compile/internal/staticinit/sched.go", "patch": "@@ -228,6 +228,9 @@ func (s *Schedule) staticcopy(l *ir.Name, loff int64, rn *ir.Name, typ *types.Ty\n \tcase ir.OADDR:\n \t\tr := r.(*ir.AddrExpr)\n \t\tif a, ok := r.X.(*ir.Name); ok && a.Op() == ir.ONAME {\n+\t\t\tif a.Class != ir.PEXTER...
2026-01-20T21:18:59
denoland/deno
e945e5c74ada0a249d26d89dc0a71dd024333b7f
cad67da32d917bf1437b0f66ebdaee07f815a384
ci: fix saving wpt cache (#32228)
[ { "path": ".github/workflows/ci.generate.ts", "patch": "@@ -1171,6 +1171,15 @@ const buildJobs = buildItems.map((rawBuildItem) => {\n }\n \n if (buildItem.wpt.isPossiblyTrue()) {\n+ const buildCacheSteps = createRestoreAndSaveCacheSteps({\n+ name: \"wpt and autobahn test run hashes\",\n+ pa...
2026-02-19T00:41:18
tensorflow/tensorflow
d9bc620d5cfa0010bd5ea8321522a4bbe9d0f007
9fa31b62875d443e025d53feca53ef5d677e17a1
[XLA:GPU]: Add debug traces in case of llvm fatal errors for triton compilation In the case of compiling a larger model its hard to figure out which operation or computation caused a fatal llvm error. This change adds a failure handler to the compilation pipeline that allows logging some context by using an error_hand...
[ { "path": "third_party/xla/xla/backends/gpu/codegen/triton/BUILD", "patch": "@@ -212,7 +212,6 @@ cc_library(\n \":collective_emitter\",\n \":compilation_pipeline\",\n \":lowering_util\",\n- \":support\",\n \"//xla:autotuning_proto_cc\",\n \"//xla:util\",\n ...
2026-02-27T12:20:25
golang/go
7251c9e0f00a6d7d37bb441f3e823c160131e9b5
532e3203492ebcac67b2f3aa2a52115f49d51997
doc: fix urlmaxqueryparams typos Updates #77101. Change-Id: I6a6a636cd58e1bd01943066368cb1424db6c6a92 Reviewed-on: https://go-review.googlesource.com/c/go/+/737040 Reviewed-by: Damien Neil <dneil@google.com> Auto-Submit: Michael Pratt <mpratt@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-account...
[ { "path": "doc/godebug.md", "patch": "@@ -167,8 +167,8 @@ Go 1.26 added a new `urlmaxqueryparams` setting that controls the maximum number\n of query parameters that net/url will accept when parsing a URL-encoded query string.\n If the number of parameters exceeds the number set in `urlmaxqueryparams`,\n pa...
2026-01-16T17:20:39
swiftlang/swift
44009a2b7ae55a1f768cb72e1a295ba2e26c017e
0accd4b368537352c37db051a8a2b12d941ac7be
[Parser] Fix buffer overrun in `rangeContainsPlaceholderEnd` The loop condition `SubStr != End - 1` caused a buffer overrun when `CurPtr` starts at or past `End`. Use '<' instead.
[ { "path": "lib/Parse/Lexer.cpp", "patch": "@@ -857,7 +857,7 @@ static bool isRightBound(const char *tokEnd, bool isLeftBound,\n \n static bool rangeContainsPlaceholderEnd(const char *CurPtr,\n const char *End) {\n- for (auto SubStr = CurPtr; SubStr != End - 1; ++SubS...
2026-03-10T01:33:16
denoland/deno
ec11e5416eaca5c3b3db3ff836a6398c427eb83a
409b1d4ffadcca8f67f2b424f49f8b67c4c0cfae
fix(ext/node): preserve streaming body on stale keepalive retry (#32215) Streaming writes (e.g. pipeline, node-fetch) bypass outputData and go directly to _bodyWriter, so they were lost when a stale keepalive connection triggered a retry. This caused timeouts for libraries like node-fetch and gaxios that use pipeline(...
[ { "path": "ext/node/polyfills/_http_outgoing.ts", "patch": "@@ -530,7 +530,13 @@ Object.defineProperties(\n }\n \n const { data, encoding, callback } = this.outputData.shift();\n- const ret = this._writeRaw(data, encoding, callback);\n+ this._flushingBuffer = true;\n+ let ret;\n+ ...
2026-02-18T13:03:10
golang/go
532e3203492ebcac67b2f3aa2a52115f49d51997
bb7c0c717c8b3517210dce8f38cb2c91694af4e2
go/types,cmd/compile/internal/types2: better diagnostic for type shadowing This change causes the "x is not a type" diagnostic to describe x's actual kind, helping to reveal when shadowing is at work. (The kind description could improve other errors too.) Fixes #76877 Change-Id: Ia3484998bb384ff570c20b6792cf8461c60...
[ { "path": "src/cmd/compile/internal/types2/object.go", "patch": "@@ -671,3 +671,52 @@ func writeFuncName(buf *bytes.Buffer, f *Func, qf Qualifier) {\n \t}\n \tbuf.WriteString(f.name)\n }\n+\n+// objectKind returns a description of the object's kind.\n+func objectKind(obj Object) string {\n+\tswitch obj := o...
2025-12-18T17:27:11
tensorflow/tensorflow
8cbc5adb8888c9053ac6c77df607582ee0c9d188
7278d07c06e4b05d06a5a6a45ab4e2f749c9bd81
Migrate deprecated tsl::errors to absl equivalents. PiperOrigin-RevId: 876169207
[ { "path": "third_party/xla/third_party/tsl/tsl/profiler/lib/BUILD", "patch": "@@ -152,6 +152,7 @@ cc_library(\n \"@xla//xla/tsl/profiler:xla_internal\",\n ]),\n deps = [\n+ \"@com_google_absl//absl/status\",\n \"@com_google_absl//absl/status:statusor\",\n \"@com_google...
2026-02-27T11:42:05
swiftlang/swift
11fbfd5da55cef63da1a71eb46ac072e95aad8ee
e7adede0645158bc59528ea2f62b730fe6dc15d6
[Concurrency] SE-0434: Member types should get `@Sendable` together with global-actor isolation Previously an inner type only got the isolation but not `@Sendable` when `GlobalActorIsolatedTypesUsability` is enabled, this is incorrect because with the feature enabled global-actor isolation always implies `@Sendable` f...
[ { "path": "lib/SILGen/SILGenApply.cpp", "patch": "@@ -1715,6 +1715,12 @@ class SILGenApply : public Lowering::ExprVisitor<SILGenApply> {\n auto globalActor = newFnTy->getGlobalActor();\n auto addedActor = oldFnTy->getExtInfo().withGlobalActor(globalActor);\n \n+ // With `GlobalActorIs...
2026-03-10T00:21:29
mrdoob/three.js
8cd01795a0b8dfcd55332fd1dae5775cf4a84dd7
f2e958a35276d86a24b455b00b7ef3e4d325651e
Update GTAOPass.js Fix code style.
[ { "path": "examples/jsm/postprocessing/GTAOPass.js", "patch": "@@ -657,7 +657,7 @@ class GTAOPass extends Pass {\n \n \t\t\tcache.set( object, object.visible );\n \n-\t\t\tif ( object.isPoints || object.isLine || object.isLine2) object.visible = false;\n+\t\t\tif ( object.isPoints || object.isLine || object...
2025-07-15T18:23:19
golang/go
bb7c0c717c8b3517210dce8f38cb2c91694af4e2
2dcaaa751295597e1f603b7488c4624db6a84d2b
archive/zip: reduce CPU usage in index construction Constructing the zip index (which is done once when first opening a file in an archive) can consume large amounts of CPU when processing deeply-nested directory paths. Switch to a less inefficient algorithm. Thanks to Jakub Ciolek for reporting this issue. goos: ...
[ { "path": "src/archive/zip/reader.go", "patch": "@@ -834,7 +834,16 @@ func (r *Reader) initFileList() {\n \t\t\t\tcontinue\n \t\t\t}\n \n-\t\t\tfor dir := path.Dir(name); dir != \".\"; dir = path.Dir(dir) {\n+\t\t\tdir := name\n+\t\t\tfor {\n+\t\t\t\tif idx := strings.LastIndex(dir, \"/\"); idx < 0 {\n+\t\t...
2025-11-05T01:00:33
denoland/deno
409b1d4ffadcca8f67f2b424f49f8b67c4c0cfae
d590fb60f6e1f1069c392bf69ec55faaf9da160e
fix(audit): properly handle npm registries in subpaths (#32164) Fixes #32106
[ { "path": "cli/tools/pm/audit.rs", "patch": "@@ -149,7 +149,7 @@ mod npm {\n npm_url: Url,\n body: serde_json::Value,\n ) -> Result<AuditResponse, AnyError> {\n- let url = npm_url.join(\"/-/npm/v1/security/audits\").unwrap();\n+ let url = npm_url.join(\"-/npm/v1/security/audits\").unwrap();\...
2026-02-18T13:01:11
mrdoob/three.js
f2e958a35276d86a24b455b00b7ef3e4d325651e
b38ac17fe20266251647c6082d08a4acda06cad5
fix(GTAOPass): exclude Line2 objects from AO calculation (#31422)
[ { "path": "examples/jsm/postprocessing/GTAOPass.js", "patch": "@@ -657,7 +657,7 @@ class GTAOPass extends Pass {\n \n \t\t\tcache.set( object, object.visible );\n \n-\t\t\tif ( object.isPoints || object.isLine ) object.visible = false;\n+\t\t\tif ( object.isPoints || object.isLine || object.isLine2) object....
2025-07-15T18:22:47
kubernetes/kubernetes
ea8bad22e6adb3d757ddcafca1ed5b9c55e3f31c
9c607c36573d90140b878bb63789c7ed965ca585
Revert "pkg/proxy/nftables: fix kube-proxy crash with newer nftables versions" This reverts commit 72ef5b34a8a9fe0350072e2b53d838272f97ed2f.
[ { "path": "pkg/proxy/nftables/proxier.go", "patch": "@@ -1109,20 +1109,24 @@ 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-20T13:28:25
denoland/deno
d590fb60f6e1f1069c392bf69ec55faaf9da160e
476f0d9e93f0abea761c95e92eda908abb85d802
fix(ext/node): add missing `process.constrainedMemory()` API (#32209) ## Summary - Extracts the cgroup v1/v2 parsing logic used by `process.constrainedMemory()` into a shared public `cgroup` module in `ext/node/ops/process.rs` - Reuses the shared parser from `cli/lib/worker.rs` (V8 heap limit configuration) instead o...
[ { "path": "cli/lib/worker.rs", "patch": "@@ -155,6 +155,9 @@ pub fn create_isolate_create_params<TSys: DenoLibSys>(\n \n #[cfg(any(target_os = \"android\", target_os = \"linux\"))]\n mod linux {\n+ use deno_runtime::deno_node::ops::process::cgroup::CgroupVersion;\n+ use deno_runtime::deno_node::ops::proce...
2026-02-18T11:50:11
golang/go
2dcaaa751295597e1f603b7488c4624db6a84d2b
5e1ad12db93611b13d2be176fdc276330dc52b98
net/url: add urlmaxqueryparams GODEBUG to limit the number of query parameters net/url does not currently limit the number of query parameters parsed by url.ParseQuery or URL.Query. When parsing a application/x-www-form-urlencoded form, net/http.Request.ParseForm will parse up to 10 MB of query parameters. An input c...
[ { "path": "doc/godebug.md", "patch": "@@ -163,6 +163,13 @@ will fail early. The default value is `httpcookiemaxnum=3000`. Setting\n number of cookies. To avoid denial of service attacks, this setting and default\n was backported to Go 1.25.2 and Go 1.24.8.\n \n+Go 1.26 added a new `urlmaxqueryparams` settin...
2025-11-03T22:28:47
tensorflow/tensorflow
66deacf51a06574e3f75e0ed9e5dc4a75f50b70c
6b1862f26876f6b0ca823dfc9a8653246d0943d8
Remove a bug reference in flatbuffer_conversions.cc. When we load a model, we call op->buitin_options_as_MulOptions() for this op. And the function buitin_options_as_MulOptions is a typed cast, it could return nullptr if op->builtin_options_type is not the expected type or op->builtin_options is not present at all. Th...
[ { "path": "tensorflow/compiler/mlir/lite/core/api/flatbuffer_conversions.cc", "patch": "@@ -2146,9 +2146,7 @@ absl::Status ParseMul(const Operator* op, BuiltinDataAllocator* allocator,\n params->activation =\n ConvertActivation(schema_params->fused_activation_function());\n } else {\n- // T...
2026-02-26T23:29:06
mrdoob/three.js
f2e0aed17ff888dc53286bde56e17be4021d6777
1d91bc3827e88c3666a11a7965711f5135097da8
FBXLoader: Fix vertex color check. (#31420)
[ { "path": "examples/jsm/loaders/FBXLoader.js", "patch": "@@ -1784,7 +1784,7 @@ class GeometryParser {\n \t\tgeoInfo.vertexPositions = ( geoNode.Vertices !== undefined ) ? geoNode.Vertices.a : [];\n \t\tgeoInfo.vertexIndices = ( geoNode.PolygonVertexIndex !== undefined ) ? geoNode.PolygonVertexIndex.a : [];\...
2025-07-15T09:34:12
denoland/deno
951455ed1774e275b20e223e4bf3e649f6fb76a2
f01347e771191b0aa486e9a057c981d933c3f861
fix(bundle): let esbuild handle data urls (#32213) Fixes #32206. Instead of resolving them (which forces us to load them), just let esbuild handle them
[ { "path": "cli/tools/bundle/mod.rs", "patch": "@@ -1235,6 +1235,9 @@ impl DenoPluginHandler {\n kind,\n with\n );\n+ if path.starts_with(\"data:\") {\n+ return Ok(None);\n+ }\n let mut resolve_dir = resolve_dir.unwrap_or(\"\").to_string();\n let resolver = self.resolver.cl...
2026-02-17T23:23:19
golang/go
5e1ad12db93611b13d2be176fdc276330dc52b98
94a1296a457387d1fd6eca1a9bcd44e89bdd9d55
cmd/go/internal/work: sanitize flags before invoking 'pkg-config' The addition of CgoPkgConfig allowed execution with flags not matching the safelist. In order to prevent potential arbitrary code execution at build time, ensure that flags are validated prior to invoking the 'pkg-config' binary. Thank you to RyotaK (h...
[ { "path": "src/cmd/go/internal/work/exec.go", "patch": "@@ -1788,6 +1788,14 @@ func (b *Builder) getPkgConfigFlags(a *Action, p *load.Package) (cflags, ldflags\n \t\t\t\treturn nil, nil, fmt.Errorf(\"invalid pkg-config package name: %s\", pkg)\n \t\t\t}\n \t\t}\n+\n+\t\t// Running 'pkg-config' can cause exe...
2025-12-04T17:30:39
kubernetes/kubernetes
05ca65743419c4a56a6552b0c48db00d12231405
755a7261ee0281376a69096357141371e1c49866
Rewrite an incorrect dual-stack e2e test The test was previously asserting that in a dual-stack cluster, every node had exactly 2 InternalIPs, where 1 was IPv4 and 1 was IPv6. Even ignoring the possibility of having some single-stack nodes in a dual-stack cluster, this test was wrong since (a) it didn't allow nodes to...
[ { "path": "test/e2e/network/dual_stack.go", "patch": "@@ -58,21 +58,36 @@ var _ = common.SIGDescribe(feature.IPv6DualStack, func() {\n \t\tpodClient = e2epod.NewPodClient(f)\n \t})\n \n-\tginkgo.It(\"should have ipv4 and ipv6 internal node ip\", func(ctx context.Context) {\n-\t\t// TODO (aramase) can switch...
2026-02-18T17:37:27
swiftlang/swift
a88069435c599365a0a8b4970a4a18fb34f96c73
18db1e8ba1d9e53f3ae2728539842484c1f71d89
[Test] Fix nonisolated_nonsending_metadata.swift on older runtimes The test was hardcoding the expected metadata string as `() async throws -> Int`, but the reflected type description varies by OS/runtime version: - macOS 15+ (Swift 6 runtime): `nonisolated(nonsending) () async throws -> Int` - macOS 12–14 (Swift 5.5...
[ { "path": "test/Interpreter/nonisolated_nonsending_metadata.swift", "patch": "@@ -8,7 +8,32 @@ func testNonisolatedNonsendingMetadata() {\n \n let nonisolatedType = NonisolatedNonsendingFn.self\n \n- // CHECK: nonisolated(nonsending) type: {{.*}}() async throws -> Int\n+ // We are just testing that we d...
2026-03-09T20:35:13
tensorflow/tensorflow
e041a2bbd835eb32f28a819125b2bcf06d684030
5a47beed94cbce9d2e341e51c1517e941510f578
PR #38308: [xla:gpu] Add a stress test for HangWatchdog + a delay before abort Imported from GitHub PR https://github.com/openxla/xla/pull/38308 Add a stress test for multi-threaded hang watchdog to make sure it doesn't have any asan errors. Copybara import of the project: -- 603c999b64b3740861f66d38b63ef597173d40c7...
[ { "path": "third_party/xla/xla/runtime/BUILD", "patch": "@@ -107,7 +107,9 @@ cc_library(\n hdrs = [\"hang_watchdog.h\"],\n deps = [\n \"//xla/tsl/platform:env\",\n+ \"@com_google_absl//absl/base\",\n \"@com_google_absl//absl/base:core_headers\",\n+ \"@com_google_absl//a...
2026-02-26T20:37:20
mrdoob/three.js
7d3562fc04ee6fc501e9924ff3f48839d2122a97
e5a695b3db89ea1deff5c0f304ff61e38a29ef7a
fix test
[ { "path": "src/renderers/WebGLRenderer.js", "patch": "@@ -2382,8 +2382,7 @@ class WebGLRenderer {\n \n \t\t\t\tconst reverseDepthBuffer = state.buffers.depth.getReversed();\n \n-\t\t\t\tif ( reverseDepthBuffer && camera.reversedDepth === false ) {\n-\n+\t\t\t\tif ( reverseDepthBuffer && camera.reversedDepth...
2025-07-13T02:04:16
golang/go
94a1296a457387d1fd6eca1a9bcd44e89bdd9d55
bba24719a4cad5cc8d771fc9cfff5a38019d554a
cmd/go: update VCS commands to use safer flag/argument syntax In various situations, the toolchain invokes VCS commands. Some of these commands take arbitrary input, either provided by users or fetched from external sources. To prevent potential command injection vulnerabilities or misinterpretation of arguments as fl...
[ { "path": "src/cmd/go/internal/modcmd/edit.go", "patch": "@@ -328,7 +328,10 @@ func runEdit(ctx context.Context, cmd *base.Command, args []string) {\n \n // parsePathVersion parses -flag=arg expecting arg to be path@version.\n func parsePathVersion(flag, arg string) (path, version string) {\n-\tbefore, afte...
2025-12-10T13:13:07
denoland/deno
f01347e771191b0aa486e9a057c981d933c3f861
3550a052e718bac916576fb91ec83d559cf915b7
ci: fix release rebuilding on prs (#32210)
[ { "path": ".github/workflows/ci.generate.ts", "patch": "@@ -769,8 +769,8 @@ const buildJobs = buildItems.map((rawBuildItem) => {\n sysRootStep,\n )(\n {\n+ // do this on PRs as well as main so that PRs can use the cargo build cache from main\n nam...
2026-02-17T21:10:17
swiftlang/swift
a4b36645372948c757a84b2d83b121690da2dac4
e7adede0645158bc59528ea2f62b730fe6dc15d6
[LoadedModuleTrace] Fix a fatal error that can be triggered Fix a bug that fatal error can be triggered from valid inputs when emiting loaded_module_trace from dependency scanner. The reason is that it is currently untrue that querying `getAllSwiftDependencies` will return only swift dependencies, which is a separate ...
[ { "path": "lib/FrontendTool/LoadedModuleTrace.cpp", "patch": "@@ -914,6 +914,9 @@ bool swift::emitLoadedModuleTraceIfNeeded(const ModuleDependencyID &mainModule,\n if (!allLoadedModules.insert(mod).second)\n continue; // already visited.\n \n+ if (mod.Kind == ModuleDependencyKind::Clang)\n+ ...
2026-03-09T17:33:10
mrdoob/three.js
e5a695b3db89ea1deff5c0f304ff61e38a29ef7a
2f1c6c03e6b4a1bd8c08fa44ba6baf8f60c6809d
Update WebGLRenderer.js Fix warning.
[ { "path": "src/renderers/WebGLRenderer.js", "patch": "@@ -2385,7 +2385,7 @@ class WebGLRenderer {\n \t\t\t\tif ( reverseDepthBuffer && camera.reversedDepth === false ) {\n \n \t\t\t\t\t// @deprecated, r179\n-\t\t\t\t\twarnOnce( 'THREE.WebGLRenderer: reverseDepthBuffer must be used with `camera.reversedDepth...
2025-07-12T21:33:23
kubernetes/kubernetes
1b258b0de7501dca4b4427295a480efc7e9bb34f
4edf082c406416b170d923e8f2c2cee69d933ae6
e2e: DRA: refactor device class creation API Replace numeric index-based extended resource naming with descriptive string-based naming in DRA E2E tests for improved readability and maintainability. Changes: - Replaced ExtendedResourceName(int) with ExtendedResourceName(string) to use descriptive suffixes instead of...
[ { "path": "test/e2e/dra/dra.go", "patch": "@@ -21,6 +21,7 @@ import (\n \t_ \"embed\"\n \t\"errors\"\n \t\"fmt\"\n+\t\"strconv\"\n \t\"strings\"\n \t\"sync\"\n \t\"time\"\n@@ -53,6 +54,7 @@ import (\n \te2econformance \"k8s.io/kubernetes/test/e2e/framework/conformance\"\n \te2edaemonset \"k8s.io/kubernetes/...
2026-02-16T09:41:03
golang/go
bba24719a4cad5cc8d771fc9cfff5a38019d554a
9ef26e96e3ae1e3a3d5e01a9b7fd1fa4dc5d6dd5
crypto/tls: don't copy auto-rotated session ticket keys in Config.Clone Once a tls.Config is used, it is not safe to mutate. We provide the Clone method in order to allow users to copy and modify a Config that is in use. If Config.SessionTicketKey is not populated, and if Config.SetSessionTicketKeys has not been call...
[ { "path": "src/crypto/tls/common.go", "patch": "@@ -980,6 +980,10 @@ const maxSessionTicketLifetime = 7 * 24 * time.Hour\n \n // Clone returns a shallow clone of c or nil if c is nil. It is safe to clone a [Config] that is\n // being used concurrently by a TLS client or server.\n+//\n+// If Config.SessionTi...
2026-01-06T22:36:01
denoland/deno
3550a052e718bac916576fb91ec83d559cf915b7
ac8f443b94a288fb6d0ea6503d9135933ff50644
fix(ext/node): improve process event handling and add missing APIs (#32200) ## Summary - Freeze `process.config` and its nested objects for Node.js compatibility (immutability) - Add `process.availableMemory()` using `Deno.systemMemoryInfo().available` - Fix `process.on/off/emit/prependListener` to handle Symbol even...
[ { "path": "ext/node/polyfills/process.ts", "patch": "@@ -346,6 +346,10 @@ memoryUsage.rss = function (): number {\n return memoryUsage().rss;\n };\n \n+export function availableMemory(): number {\n+ return Deno.systemMemoryInfo().available;\n+}\n+\n // Returns a negative error code than can be recognized...
2026-02-17T19:30:22
mrdoob/three.js
300b0fa760832d62391007a8cf1aab0c0b58c11f
ea7b0ce25104af6a5789103d1c9cd67fdb08090f
Update Line3.js Fix JSDoc.
[ { "path": "src/math/Line3.js", "patch": "@@ -176,8 +176,8 @@ class Line3 {\n \t * Returns the closest squared distance between this line segment and the given one.\n \t *\n \t * @param {Line3} line - The line segment to compute the closest squared distance to.\n-\t * @param {?Vector3} c1 - The closest point...
2025-07-10T10:50:24
swiftlang/swift
e7adede0645158bc59528ea2f62b730fe6dc15d6
1bd2a8a982d4d6474f3a16ff19c1e9d4570182f8
[Backtracing] Add an option to close all file handles (#87382) Add an option so that when the backtracer starts in a crashing process it will close all unnecessary file descriptors before it tries to start gathering the backtrace as that may take time. rdar://144402533
[ { "path": "docs/Backtracing.rst", "patch": "@@ -118,6 +118,10 @@ follows:\n | | | related to the state of the backtracer. This is |\n | | | sometimes useful for testing. |\n +-----------------+---------+-------------------------------------...
2026-03-09T17:08:46
denoland/deno
7659f3c7d7e06220cf835865fa7e96558dfa4927
a8f201f9e8552bd5ea0823ec6454ce251fedb48f
fix(ext/node): normalize trailing dot in TLS servername (#32166) Fixes #30170 Node.js strips trailing dots from FQDN server names before TLS certificate verification, but Deno was passing the servername with the trailing dot directly to rustls. This caused certificate validation failures when connecting with a traili...
[ { "path": "ext/node/polyfills/_tls_wrap.js", "patch": "@@ -86,8 +86,14 @@ export class TLSSocket extends net.Socket {\n constructor(socket, opts = kEmptyObject) {\n const tlsOptions = { ...opts };\n \n- const hostname = opts.servername ?? opts.host ?? socket?._host ??\n+ let hostname = opts.serv...
2026-02-17T12:22:50
golang/go
e2429619605951b137e25f6a51fbc39d9f0f1e9b
9ef1692c93bf96328bcaf7a5c8a46094748da7f3
simd/archsimd: 128- and 256-bit FMA operations do not require AVX-512 Currently, all FMA operations are marked as requiring AVX512, even on smaller vector widths. This is happening because the narrower FMA operations are marked as extension "FMA" in the XED. Since this extension doesn't start with "AVX", we filter the...
[ { "path": "src/cmd/compile/internal/amd64/simdssa.go", "patch": "@@ -1959,23 +1959,11 @@ func ssaGenSIMDValue(s *ssagen.State, v *ssa.Value) bool {\n \t\tssa.OpAMD64VPERMI2Q256load,\n \t\tssa.OpAMD64VPERMI2PD512load,\n \t\tssa.OpAMD64VPERMI2Q512load,\n-\t\tssa.OpAMD64VFMADD213PS128load,\n-\t\tssa.OpAMD64VFM...
2026-01-13T19:18:14
kubernetes/kubernetes
2b18086a25a875ed6acc5b12ea45d5458d85e96a
e6d9cbf729edc4eae5f177366be7d591cd0519b1
DRA scheduler: update logging The assume cache logs adding assumed claims at V(4) but there wasn't anything about in-flight claims in the log for a scheduling failure where the same device was allocated twice (https://github.com/kubernetes/kubernetes/issues/133602). Debugging that issue depends on seeing all changes ...
[ { "path": "pkg/scheduler/framework/plugins/dynamicresources/dra_manager.go", "patch": "@@ -20,8 +20,11 @@ import (\n \t\"context\"\n \t\"errors\"\n \t\"fmt\"\n+\t\"slices\"\n \t\"sync\"\n \n+\t\"github.com/go-logr/logr\"\n+\n \tresourceapi \"k8s.io/api/resource/v1\"\n \t\"k8s.io/apimachinery/pkg/labels\"\n ...
2026-01-14T15:59:35
mrdoob/three.js
ea7b0ce25104af6a5789103d1c9cd67fdb08090f
963882db975141c84533c24902e8d8469c44b409
WebGPUBackend: Fix manual `clear()` regression. (#31388)
[ { "path": "src/renderers/webgpu/WebGPUBackend.js", "patch": "@@ -1236,7 +1236,7 @@ class WebGPUBackend extends Backend {\n \n \t\t}\n \n-\t\tif ( supportsDepth && depthStencilAttachment && depthStencilAttachment.depthLoadOp === undefined ) {\n+\t\tif ( supportsDepth && depthStencilAttachment ) {\n \n \t\t\t...
2025-07-10T09:18:23
tensorflow/tensorflow
5a47beed94cbce9d2e341e51c1517e941510f578
d6f2f543500719f32c3d0f0bc8ba59765cb909f9
Migrate deprecated tsl::errors to absl equivalents. PiperOrigin-RevId: 875826333
[ { "path": "tensorflow/core/BUILD", "patch": "@@ -1736,6 +1736,7 @@ tf_cuda_library(\n \"@com_google_absl//absl/container:flat_hash_set\",\n \"@com_google_absl//absl/functional:any_invocable\",\n \"@com_google_absl//absl/memory\",\n+ \"@com_google_absl//absl/status\",\n ...
2026-02-26T19:59:09
swiftlang/swift
b449b8c7a1cf0475b2bf726267c9bb837ebd581c
1bd2a8a982d4d6474f3a16ff19c1e9d4570182f8
SIL: fix `PartialApplyInst.isNested` * All SIL modifications must go through a `MutatingContext`. Therefore replace the simple setter for `isNested` with `set(isNested:, context)` * It's better to add a `isNested` parameter for `Builder.createPartialApply` than to set it after each construction of a `partial_apply`, w...
[ { "path": "SwiftCompilerSources/Sources/Optimizer/FunctionPasses/ConstantCapturePropagation.swift", "patch": "@@ -232,8 +232,8 @@ private func rewritePartialApply(_ partialApply: PartialApplyInst, withSpecializ\n function: fri,\n substitutionMap: specialized.genericSignature.isEmpty ? Substituti...
2026-03-09T17:04:10
golang/go
9ef1692c93bf96328bcaf7a5c8a46094748da7f3
e2fef50def98b87107ab963f657d43d7869b8463
simd/archsimd/_gen/simdgen: feature implications This simplifies our handling of XED features, adds a table of which features imply which other features, and adds this information to the documentation of the CPU features APIs. As part of this we fix an issue around the "AVXAES" feature. AVXAES is defined as the combi...
[ { "path": "src/simd/archsimd/_gen/simdgen/gen_simdTypes.go", "patch": "@@ -189,6 +189,7 @@ type X86Features struct {}\n var X86 X86Features\n \n {{range .}}\n+{{$f := .}}\n {{- if eq .Feature \"AVX512\"}}\n // {{.Feature}} returns whether the CPU supports the AVX512F+CD+BW+DQ+VL features.\n //\n@@ -199,11 +...
2026-01-13T14:34:53
denoland/deno
a8f201f9e8552bd5ea0823ec6454ce251fedb48f
cd14853b7f67821df990eec8d43a4c772b5019bb
fix(ext/node): use primordials in ext/node/polyfills/_fs/_fs_lchown.ts (#32195) Towards #24236 Use primordials in `ext/node/polyfills/_fs/_fs_lchown.ts`. Changes: - Remove `prefer-primordials` lint ignore directive - Use `getValidatedPathToString` instead of `getValidatedPath().toString()` - Use `PromisePrototypeThe...
[ { "path": "ext/node/polyfills/_fs/_fs_lchown.ts", "patch": "@@ -1,20 +1,20 @@\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 makeCallba...
2026-02-17T10:39:50
mrdoob/three.js
963882db975141c84533c24902e8d8469c44b409
b9ce407722a91c1a47336a25744846af3cc5c229
Line3: Add method for computing closest squared distance between line segments. (#31384) * Add implementation of closestDistanceToLine from RTCD. Add simple tests covering corner cases * Support clampToLine parameter. Add tests for not clamped version * Extact function that returns shortest segment * Extract shorte...
[ { "path": "src/math/Line3.js", "patch": "@@ -4,6 +4,12 @@ import { clamp } from './MathUtils.js';\n const _startP = /*@__PURE__*/ new Vector3();\n const _startEnd = /*@__PURE__*/ new Vector3();\n \n+const _d1 = /*@__PURE__*/ new Vector3();\n+const _d2 = /*@__PURE__*/ new Vector3();\n+const _r = /*@__PURE__*...
2025-07-10T07:47:23
tensorflow/tensorflow
a3e513d24d0c1db3903df1a6aa27e154afc11579
8a3b6d707cc223e8ee26dbb1fe416eb58c6630ec
[JAX] Bound tracebacks up to the enclosing `jit`. We currently attach the entire Python traceback to every operation we emit, but this behavior is incompatible with getting correct tracebacks if the same function is called from two call sites. By including the traceback of the caller in the callee and we "contaminate"...
[ { "path": "third_party/xla/xla/hlo/ir/hlo_module.h", "patch": "@@ -825,6 +825,7 @@ class HloModule {\n \n // Getter for the stack frame DAG.\n const StackFrames& stack_frames() const { return stack_frames_; }\n+ StackFrames& mutable_stack_frames() { return stack_frames_; }\n \n // Finalizes this modu...
2026-02-26T18:40:19
swiftlang/swift
3d7c7c5d9202054f5f1d8d8066fa111bab429798
2faa72d7e464fb2a48f96b241576a10e397de456
[rbi] Make inferred isolation of non-Sendable metatypes be the function in which they are used Previously, non-Sendable MetatypeInst instructions were always inferred to be task isolated or task isolated nonisolated(nonsending). This is incorrect in the case where the metatype is used in an actor-isolated function. Th...
[ { "path": "lib/SILOptimizer/Utils/SILIsolationInfo.cpp", "patch": "@@ -902,13 +902,26 @@ SILIsolationInfo SILIsolationInfo::get(SILInstruction *inst) {\n }\n }\n \n- /// Consider non-Sendable metatypes to be task-isolated, so they cannot cross\n- /// into another isolation domain.\n+ /// Consider n...
2026-03-05T21:55:39