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 |
|---|---|---|---|---|---|
swiftlang/swift | 5b565428fbda32c5da090dd908e93e6266c320d0 | 7c5b0f760cb55c2016b60e18473d96f346e91379 | [Backtracing] Make Win32 C++ name demangling in backtraces work.
We need to specify memory allocation/release routines.
Fixes #87899 | [
{
"path": "stdlib/public/runtime/Backtrace.cpp",
"patch": "@@ -1130,8 +1130,8 @@ _swift_backtrace_demangle(const char *mangledName,\n char *result = __unDNameEx(outputBuffer,\n mangledName,\n *outputBufferSize,\n- ... | 2026-03-17T11:57:14 |
golang/go | eaa6475dbbf73c0efe6ba2b5e28ea126c22b7286 | 2eb890bde31495cdd90423fcfbc789351ca56ec6 | internal/poll: readWriteLock should destroy the fd when there are no more references to it
The read lock in readWriteLock might be holding the last reference to
the fd. If the fd is closed while the read lock is still held, then the
fd will not be destroyed until the read lock is released and fd.destroy
is called.
Th... | [
{
"path": "src/internal/poll/fd_mutex.go",
"patch": "@@ -269,7 +269,9 @@ func (fd *FD) readWriteLock() error {\n \t\treturn errClosing(fd.isFile)\n \t}\n \tif !fd.fdmu.rwlock(writeLock, waitLock) {\n-\t\tfd.fdmu.rwunlock(readlock) // unlock read lock acquired above\n+\t\tif fd.fdmu.rwunlock(readlock) {\n+\t... | 2026-02-17T12:59:51 |
denoland/deno | ff1d9b69087b33bbda97130c14bd5b5a245022a6 | d26e5c48f5d58a4dc077f92ff477c205dc3aabdf | test: add expected failure support to node_compat test harness (#32451)
## Summary
Extends the node_compat test harness to support **expected failures** —
tests that are known to fail with a specific exit code and/or output
pattern. This avoids disabling tests entirely when we know they fail in
a predictable way.
##... | [
{
"path": "tests/node_compat/config.jsonc",
"patch": "@@ -1,4 +1,5 @@\n {\n+ \"$schema\": \"./schema.json\",\n \"tests\": {\n \"abort/test-addon-register-signal-handler.js\": {},\n \"abort/test-addon-uv-handle-leak.js\": {},\n@@ -1646,10 +1647,9 @@\n \"parallel/test-zlib-brotli-from-brotli.js... | 2026-03-06T07:47:46 |
kubernetes/kubernetes | 54a9cc836a74967fa837ee59f09a4111d7b49437 | 2973c86091d7d65b54bf95c07ec048d7e28fe2ab | fixup! add tests that verify delete handler with unsafe delete | [
{
"path": "staging/src/k8s.io/apiserver/pkg/endpoints/handlers/delete_test.go",
"patch": "@@ -917,7 +917,7 @@ func TestDeleteResourceWithUnsafeDeletionFlow(t *testing.T) {\n \t\t\t}\n \t\t\t// this is an invariant; when invoked, the unsafe deletion flow should always see the option enabled\n \t\t\tif got :=... | 2026-03-05T14:05:41 |
mrdoob/three.js | 3ecd1c38720d5f95ca2a74f961d003b02e4ce258 | 1d4d2a7e1f35283d062a7ab5fafc4f9c08b61c0e | Playground: Fix usage of `timerLocal`. (#31889) | [
{
"path": "playground/editors/TimerEditor.js",
"patch": "@@ -1,12 +1,12 @@\n import { NumberInput, LabelElement, Element, ButtonInput } from 'flow';\n import { BaseNodeEditor } from '../BaseNodeEditor.js';\n-import { timerLocal } from 'three/tsl';\n+import { time } from 'three/tsl';\n \n export class TimerE... | 2025-09-11T20:16:28 |
golang/go | f75c7ccaefe16a13be7ccc08731478976a6cc645 | 845b7b0e493c86dc2c97d157c931f8b6254e24b0 | cmd/covdata: update test expectations after coverage position change
CL 726800 changed cmd/cover to exclude brace tokens from coverage
ranges, shifting where coverage spans start (from the opening
brace to the first executable token inside the block).
Update the hardcoded position expectations in TestCovTool subtests... | [
{
"path": "src/cmd/covdata/tool_test.go",
"patch": "@@ -414,7 +414,7 @@ func testTextfmt(t *testing.T, s state) {\n \t\tdumplines(lines[0:10])\n \t\tt.Errorf(\"textfmt: want %s got %s\", want0, lines[0])\n \t}\n-\twant1 := mainPkgPath + \"/prog1.go:13.14,15.2 1 1\"\n+\twant1 := mainPkgPath + \"/prog1.go:14.... | 2026-02-16T08:16:46 |
tensorflow/tensorflow | f0a8cd5734a374ff6bf19891ac4ef31424f667a3 | 727d163236030c6f263cd47cb9b1d8f8915a82c3 | Fix multi_rotate defn
PiperOrigin-RevId: 883412937 | [
{
"path": "third_party/xla/xla/service/spmd/custom_call_handler.cc",
"patch": "@@ -463,27 +463,27 @@ absl::Status SpmdPartitioningVisitor::HandleCustomCallSPMDInternal_MultiRotate(\n \n const int64_t participating_shards = CeilOfRatio(full_size, shard_size);\n \n- TF_RET_CHECK(left_amount < shard_size)\n... | 2026-03-14T00:24:08 |
swiftlang/swift | 0c2fa1f2c24649c315d9f32b2ac622a54702e98f | ae8922417e94725a4307e08df50e5288eac57832 | DesugarForEachStmt: custom error for unavailable sequence conformance | [
{
"path": "include/swift/AST/DiagnosticsSema.def",
"patch": "@@ -8457,6 +8457,11 @@ ERROR(borrowingsequence_experimental,none,\n \"'%0' requires -enable-experimental-feature BorrowingSequence\",\n (StringRef))\n \n+ERROR(for_loop_sequence_conformance_unavailable,none,\n+ \"for-in loop requi... | 2026-03-13T16:16:19 |
denoland/deno | d26e5c48f5d58a4dc077f92ff477c205dc3aabdf | 8e31633863a0da4b545a0f48e8e226599527e3fe | fix(ext/node): implement proper `resourceLimits` for `node:worker_threads` (#32430)
## Summary
Implements proper `resourceLimits` support for `node:worker_threads`,
matching Node.js behavior:
- **Individual V8 ResourceConstraints**: Uses
`set_max_old_generation_size_in_bytes`,
`set_max_young_generation_size_in_bytes... | [
{
"path": "cli/lib/worker.rs",
"patch": "@@ -369,6 +369,54 @@ impl<TSys: DenoLibSys> LibWorkerFactorySharedState<TSys> {\n bundle_provider: shared.bundle_provider.clone(),\n };\n let maybe_initial_cwd = shared.options.maybe_initial_cwd.clone();\n+ // Apply resource limits to v8::Cre... | 2026-03-06T07:33:05 |
mrdoob/three.js | c2ce3dd65fb71133b8e57228ee522d4309bf2529 | c604c09f5e9e9bf8bb622657c0b25338c2ae882e | SSGINode: Improve GI Blending (#31882)
* Improve GI Blending
Consider if SSRT3's Blending is necessary
* Also fix the TRAA Toggle
* Add missing semi-colon
* Fix Radius Changing with Step Count
This bug is also present here:
https://github.com/cdrinmatane/SSRT3/blob/main/HDRP/Shaders/Resources/SSRTCS.compute#L239-... | [
{
"path": "examples/jsm/tsl/display/SSGINode.js",
"patch": "@@ -471,7 +471,7 @@ class SSGINode extends TempNode {\n \n \t\t\tIf( this.useScreenSpaceSampling.equal( true ), () => {\n \n-\t\t\t\tstepRadius.assign( RADIUS.mul( this._resolution.x.div( 2 ) ).div( float( STEP_COUNT ) ) );\n+\t\t\t\tstepRadius.ass... | 2025-09-11T17:09:32 |
golang/go | 845b7b0e493c86dc2c97d157c931f8b6254e24b0 | f827b854254bec05b3a11d30886c1331a68efd7b | cmd/internal/obj: remove ARM64 prefix from encoding helpers
Remove the ARM64 prefix from encoding helper functions that were moved to
cmd/internal/obj to be used by both cmd/asm and cmd/compile. These
functions now use the package prefix and look like:
arm64.EncodeRegisterExtension and arm64.RegisterListOffset.
Chang... | [
{
"path": "src/cmd/asm/internal/asm/parse.go",
"patch": "@@ -775,7 +775,7 @@ func (p *Parser) registerExtension(a *obj.Addr, name string, prefix rune) {\n \n \tswitch p.arch.Family {\n \tcase sys.ARM64:\n-\t\terr := arm64.ARM64RegisterExtension(a, ext, reg, num, isAmount, isIndex)\n+\t\terr := arm64.EncodeR... | 2025-10-23T16:23:43 |
tensorflow/tensorflow | 727d163236030c6f263cd47cb9b1d8f8915a82c3 | f718d6ba2ed4c4e5934719b92593a44b4b54370b | Fix CheckpointOptions.__copy__ for Python 3.14
PiperOrigin-RevId: 883405725 | [
{
"path": "tensorflow/python/checkpoint/checkpoint_options.py",
"patch": "@@ -121,7 +121,11 @@ def __init__(\n def __copy__(self):\n # Only `experimental_write_callbacks` needs special treatment to Ensure that\n # the list is deep-copied, but the callbacks are not deep-copied.\n- result = copy.... | 2026-03-14T00:03:58 |
denoland/deno | f19102c59100b1bb719e28c5187f57b4695b5c16 | f02065564c1d86362167888431ba6c3262689e72 | fix(core): switch to V8 Explicit microtask policy for correct nextTick ordering (#32466)
## Summary
- Switches deno_core from V8's **Auto** microtask policy to **Explicit**
so that `process.nextTick` callbacks run before `Promise.then`
callbacks, matching Node.js behavior
- Guards pre-drain `perform_microtask_checkpoi... | [
{
"path": "ext/ffi/callback.rs",
"patch": "@@ -190,6 +190,10 @@ unsafe extern \"C\" fn deno_ffi_callback(\n if tc_scope.exception().is_some() {\n log::error!(\"Illegal unhandled exception in nonblocking callback\");\n }\n+ // Flush microtasks queued by the callback b... | 2026-03-05T15:19:21 |
swiftlang/swift | 5f5b9112621056ed90302cfa282d6286f8d86bf7 | 7a6b8e4313e78fed5b3f65d9c1dab86fe80a5903 | [DebugInfo] Disable SILMem2Reg debug info salvaging temporarily
This currently exposes invalid debug info generated by a previous pass.
This patch disables this specific transformation until we have a fix for the
other issue (see rdar://171023691 ). | [
{
"path": "lib/SILOptimizer/Transforms/SILMem2Reg.cpp",
"patch": "@@ -1981,10 +1981,13 @@ void MemoryToRegisters::removeSingleBlockAllocation(AllocStackInst *asi) {\n LiveValues::toReplace(asi,\n /*replacement=*/initialValue),\n /*isStorageValid=*/!d... | 2026-03-17T10:04:00 |
mrdoob/three.js | ad556420d43cc1170a7b3febf09926e5e71ef3b5 | 4ff594b8705db967a22141f14cc2eb20d889d42c | SSGINode: Fix clear color. (#31881) | [
{
"path": "examples/jsm/tsl/display/SSGINode.js",
"patch": "@@ -354,7 +354,7 @@ class SSGINode extends TempNode {\n \n \t\t// clear\n \n-\t\trenderer.setClearColor( 0xffffff, 1 );\n+\t\trenderer.setClearColor( 0x000000, 1 );\n \n \t\t// gi\n ",
"additions": 1,
"deletions": 1,
"language": "JavaSc... | 2025-09-10T20:58:53 |
golang/go | f65692ea562bf24c21ae46854e98584dd4bcc201 | 3c8b5e673816c733f13a38b1ed1f53d7d49ea084 | cmd/compile: don't drop same register twice
For instructions that clobber both of their input registers, make
sure we don't clobber the same register twice when both input
registers are the same.
This is rare, but it can happen.
Fixes #77604
Change-Id: I794249cf43a8cc4ab3262055daef9193e2442f73
Reviewed-on: https://... | [
{
"path": "src/cmd/compile/internal/ssa/regalloc.go",
"patch": "@@ -1810,7 +1810,7 @@ func (s *regAllocState) regalloc(f *Func) {\n \t\t\tif regspec.clobbersArg0 {\n \t\t\t\ts.freeReg(register(s.f.getHome(args[0].ID).(*Register).num))\n \t\t\t}\n-\t\t\tif regspec.clobbersArg1 {\n+\t\t\tif regspec.clobbersAr... | 2026-02-14T18:04:13 |
denoland/deno | f02065564c1d86362167888431ba6c3262689e72 | 0c8469433a80aa3b2513c9c462c55b0b6804319c | test: modernize "node_compat" test runner (#32482)
## Summary
Modernizes the node compat test runner (`tests/node_compat/mod.rs`) with
three
improvements:
### 1. Simplified test filtering
Any test from the Node.js suite can now be run directly with a filter,
**regardless of whether it's listed in `config.jsonc`**:
... | [
{
"path": "tests/node_compat/mod.rs",
"patch": "@@ -13,16 +13,19 @@ use file_test_runner::collection::CollectedCategoryOrTest;\n use file_test_runner::collection::CollectedTest;\n use file_test_runner::collection::CollectedTestCategory;\n use regex::Regex;\n+use report::CollectedResult;\n+use report::ErrorI... | 2026-03-05T14:50:17 |
mrdoob/three.js | 47c6359dcf6a4dbe0d9f9f4fff71090ad15d32b2 | 832291bdf04c2c38bb6778a90dcc1dc4d6bb0c1e | WebGPU: Fix `Renderer` not being garbage collected (#31798)
* Fix leak
* Revert "Fix leak"
This reverts commit a70d4864b672d030edc9e6e55c59727b03b9df1f.
* Fix leak on Geometries
* Change to map, remove redundant conditional, add comment
* Rename to be more specific | [
{
"path": "src/renderers/common/Geometries.js",
"patch": "@@ -117,6 +117,14 @@ class Geometries extends DataMap {\n \t\t */\n \t\tthis.attributeCall = new WeakMap();\n \n+\t\t/**\n+\t\t * Stores the event listeners attached to geometries.\n+\t\t *\n+\t\t * @private\n+\t\t * @type {Map<BufferGeometry,Functio... | 2025-09-10T13:40:44 |
tensorflow/tensorflow | 0f3e522a79e10fe6def933a72fe5e8704f1ae0e4 | 74194bafed7f0e3a53516ab381a8d08b5fc5d4ed | Fix an unsafe early return in `CommonAsyncHostToDeviceTransferManager`
When `LinearizeInto` or `CopyRawHostToDeviceAndReturnEvent` called from `TransferLiteralToBuffer` or `TransferRawDataToSubBuffer` return an error, we still need to decrement the transfer counters. Also, we should not move out the definition event u... | [
{
"path": "third_party/xla/xla/pjrt/BUILD",
"patch": "@@ -165,6 +165,7 @@ cc_library(\n \"//xla/tsl/platform:errors\",\n \"//xla/tsl/platform:statusor\",\n \"@com_google_absl//absl/base:core_headers\",\n+ \"@com_google_absl//absl/cleanup\",\n \"@com_google_absl//absl/c... | 2026-03-13T21:29:27 |
golang/go | 3c8b5e673816c733f13a38b1ed1f53d7d49ea084 | 6837583eec31bf197a8f16bcb431e3beb73b2aa5 | cmd/compile: avoid folding 64-bit integers into 32-bit constants
Folding a 64-bit integer into a 32-bit constant may result in a negative
integer if the value exceeds math.MaxInt32 (the maximum value of a 32-
bit signed integer). This negative value will be sign-extended to 64
bits at runtime, leading to unexpected re... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/AMD64.rules",
"patch": "@@ -1578,7 +1578,8 @@\n \n (MOVBload [off] {sym} (SB) _) && symIsRO(sym) => (MOVLconst [int32(read8(sym, int64(off)))])\n (MOVWload [off] {sym} (SB) _) && symIsRO(sym) => (MOVLconst [int32(read16(sym, int64(off), config.ctxt.Arch.ByteOrder... | 2026-02-14T10:55:34 |
denoland/deno | 0c8469433a80aa3b2513c9c462c55b0b6804319c | f1d7d0c2a75e1754920048f65a2c1526ff6d5ddf | fix(ext/node): implement `node:v8` heap APIs (#32483)
Implements `v8.getHeapSpaceStatistics()`,
`v8.getHeapCodeStatistics()`, `v8.getHeapSnapshot()`, and
`v8.writeHeapSnapshot()` from the `node:v8` module
Enabled node compat tests: `test-heapdump.js`,
`test-v8-getheapsnapshot-twice.js`, `test-v8-stats.js`
---------
... | [
{
"path": "Cargo.lock",
"patch": "@@ -10864,9 +10864,9 @@ dependencies = [\n \n [[package]]\n name = \"v8\"\n-version = \"146.1.0\"\n+version = \"146.3.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"70bb6bcbb6a406fd720dad66d85337bd401d8276c7276f6a86164af6e1c57118\"\n... | 2026-03-05T14:20:13 |
mrdoob/three.js | 77cc69802330ac10015c871ec111b4ec53e4db7d | bface43c1da1bb4c3f14b8353b8cee8a62cf8b1f | SSGINode: Fix wrong bitfield typecast. (#31873) | [
{
"path": "examples/jsm/tsl/display/SSGINode.js",
"patch": "@@ -1,5 +1,5 @@\n import { RenderTarget, Vector2, TempNode, QuadMesh, NodeMaterial, RendererUtils, MathUtils } from 'three/webgpu';\n-import { clamp, normalize, reference, nodeObject, Fn, NodeUpdateType, uniform, vec4, passTexture, uv, logarithmicD... | 2025-09-10T12:04:34 |
tensorflow/tensorflow | 20a87517f5871e477b642a68469237ca5f091202 | a3121a5841ee6941b0d16785ea533a8ed441368d | assert IsOkAndHolds rather than blindly calling value.
This is clearer in what it's trying to do and error messages make more sense and clang tidy is happy.
PiperOrigin-RevId: 883302388 | [
{
"path": "third_party/xla/xla/backends/gpu/transforms/BUILD",
"patch": "@@ -1558,6 +1558,7 @@ xla_cc_test(\n \":gemm_fusion_swap_operands\",\n \"//xla/hlo/testlib:filecheck\",\n \"//xla/hlo/testlib:hlo_hardware_independent_test_base\",\n+ \"@com_google_absl//absl/status:statu... | 2026-03-13T20:04:39 |
swiftlang/swift | b32b74af7c5121aa78b360592cc2881c21272e9f | 3d4f61c3047ae52e66c5a6a83d6f64507622722e | [Debug] Print only description of value types that conform to CustomStringConvertible (#84677)
This is for lldb, where the `po` command for Swift is implemented in `_DebuggerSupport.stringForPrintObject`.
Up to now, a Swift struct which conforms to `CustomStringConvertible` will print both its `description`, and al... | [
{
"path": "stdlib/public/core/DebuggerSupport.swift",
"patch": "@@ -214,18 +214,22 @@ public enum _DebuggerSupport {\n \n print(String(repeating: \" \", count: indent), terminator: \"\", to: &target)\n \n- // do not expand classes with no custom Mirror\n- // yes, a type can lie and say it's a cl... | 2026-03-17T01:47:59 |
golang/go | 6837583eec31bf197a8f16bcb431e3beb73b2aa5 | c01d1f095bd8897b7bf4d9e07bd588134952e047 | cmd/internal/obj/loong64: improve ARNG type register name conversion
When resolving ARNG type names, the base value was not subtracted
when calculating the variable simd_type, causing its actual value
to not match the expected meaning after the base value adjustment.
Fixes #77414
Change-Id: I713bab849ecdb5610d2593ba... | [
{
"path": "src/cmd/asm/internal/arch/loong64.go",
"patch": "@@ -75,48 +75,51 @@ var loong64LasxArngExtMap = map[string]int16{\n // Loong64RegisterExtension constructs an Loong64 register with extension or arrangement.\n func Loong64RegisterExtension(a *obj.Addr, ext string, reg, num int16, isAmount, isIndex... | 2026-02-06T02:09:10 |
mrdoob/three.js | f1688d0c89f068631fb1f084a142d8abc28dd459 | 65abfad2f26a8271919223f99817030f54f9c438 | Change npm install to npm ci in contributing guide (#31859)
`ci` installs exactly what's in `package-lock.json` where as `install` installs compatible versions.
Given today's [issue](https://www.aikido.dev/blog/npm-debug-and-chalk-packages-compromised) it's probably best to tell uses to use `ci` and not `install` | [
{
"path": ".github/CONTRIBUTING.md",
"patch": "@@ -18,7 +18,7 @@ It is assumed that you know a little about Node.js and Git. If not, [here's some\n \n * Install the dependencies\n \n- npm install\n+ npm ci\n \n ## Next Steps\n ",
"additions": 1,
"deletions": 1,
"language": "Markdown"
... | 2025-09-10T09:01:31 |
denoland/deno | f1d7d0c2a75e1754920048f65a2c1526ff6d5ddf | fb44def9e21e113ad2a679a44e54cd8f3a022665 | fix: prevent panic on dynamic import with non-string error name (#32498)
Fixes a panic where a dynamic import rejecting
with an Error whose `name` property is a non-string type (Number,
Object, Symbol) would panic and terminate the Deno process.
---------
Co-authored-by: kaju <kajukitli@users.noreply.github.com> | [
{
"path": "libs/core/error.rs",
"patch": "@@ -996,10 +996,14 @@ impl JsError {\n let mut out = Vec::with_capacity(arr.length() as usize);\n \n for i in 0..arr.length() {\n- let key = arr.get_index(scope, i).unwrap();\n+ let Some(key) = arr.get_index(scope, i) else {\n+ ... | 2026-03-05T14:16:36 |
tensorflow/tensorflow | 12911fcab5cb8125f80599bd90c396377c33be70 | fe2773b3460746773fd6c733ff2fca6e17e113e0 | Add missing include and fix typos in GPU collectives.
This change adds a missing include for reduction_kind.h in gpu_communicator.h, removes an unused dependency from the nccl_communicator BUILD rule, and corrects several typos in comments within gpu_communicator.h, nccl_communicator.h, and rccl_communicator.h. Additi... | [
{
"path": "third_party/xla/xla/backends/gpu/collectives/BUILD",
"patch": "@@ -309,6 +309,7 @@ cc_library(\n \"//xla:util\",\n \"//xla/core/collectives:communicator\",\n \"//xla/core/collectives:rank_id\",\n+ \"//xla/core/collectives:reduction_kind\",\n \"//xla/core/col... | 2026-03-13T19:45:14 |
swiftlang/swift | 71a4f93594dbd861e84d8c2db14294a0dcd944bd | 3d4f61c3047ae52e66c5a6a83d6f64507622722e | [Sema] Fix unclaimed iteration ignoring attrs after claimed attr
Fixes rdar://152866923. This logic bug in iteration lead us to
accept Sendable on aliases without actually applying it in some cases.
diagnoseUnclaimed was only incrementing i when the attr was not
claimed. This led to a bug where a claimed attr followed... | [
{
"path": "lib/Sema/TypeCheckType.cpp",
"patch": "@@ -3475,10 +3475,10 @@ void TypeAttrSet::diagnoseUnclaimed(const TypeResolution &resolution,\n }\n \n // Type attributes\n- size_t i = 0;\n- for (auto const &attrVector : typeAttrs) {\n- if (claimedTypeAttrs.contains(i)) continue;\n- i++;\n+ fo... | 2026-03-10T23:32:18 |
golang/go | c01d1f095bd8897b7bf4d9e07bd588134952e047 | c186fe87686819cdf4dea49e1c556e9bc6e12e23 | cmd/go: validate inferred module path for go mod init
Ensure `go mod init` validates the module path even when it is inferred from GOPATH.
Fixes #73121
Change-Id: I8b7785ff57eec17bba432f48c8e3a18a2f92aab5
GitHub-Last-Rev: 8ff1ca2d71bee2b948f114ad1f0a4706a4c0b152
GitHub-Pull-Request: golang/go#76432
Reviewed-on: http... | [
{
"path": "src/cmd/go/internal/modload/init.go",
"patch": "@@ -1187,26 +1187,8 @@ func CreateModFile(loaderstate *State, ctx context.Context, modPath string) {\n \t\tif err != nil {\n \t\t\tbase.Fatal(err)\n \t\t}\n-\t} else if err := module.CheckImportPath(modPath); err != nil {\n-\t\tif pathErr, ok := err... | 2025-11-24T10:16:11 |
mrdoob/three.js | 8c698fb9e4c9574ec4fc47ab651cc4e531541d4d | 253163650b905d41fe5c7e4d2fbff5b7028d4bfb | TSL: Fix `onDispose` listener not being removed in `Sampler` (#31868)
* Move onDispose to class field
* Rename method to be more specific
* Change listener to arrow function
* Fix undefined callback and it points to a wrong sampler | [
{
"path": "src/renderers/common/Sampler.js",
"patch": "@@ -21,8 +21,24 @@ class Sampler extends Binding {\n \t\t/**\n \t\t * The texture the sampler is referring to.\n \t\t *\n+\t\t * @private\n \t\t * @type {?Texture}\n \t\t */\n+\t\tthis._texture = null;\n+\n+\t\t/**\n+\t\t * An event listener which is ad... | 2025-09-09T21:57:17 |
denoland/deno | ffdbefb7331321dd8bc21272ea1631165e310b73 | 576871afb297c36af300bcb6009bb59a53d8ace4 | fix(deploy): correctly handle version lookup (#32489) | [
{
"path": "cli/tools/deploy.rs",
"patch": "@@ -47,7 +47,7 @@ pub async fn deploy(\n let file = factory\n .file_fetcher()?\n .fetch_bypass_permissions(\n- ®istry_url.join(\"@deploy/deno/meta.json\").unwrap(),\n+ ®istry_url.join(\"@deno/deploy/meta.json\").unwrap(... | 2026-03-05T11:12:30 |
tensorflow/tensorflow | efa96b36efff410641a8f4880a3e7178840deacd | f9707008e192cf0278f822ae5cb3815000a8c99f | Fix deadlock in LocalRendezvous
Currently LocalRendezvous receives can deadlock on abort.
The scenario is:
1. RecvAsync checks status, and proceeds.
2. StartAbort sets status to an error.
3. Send checks status, and returns early.
4. StartAbort drains table.
5. RecvAsync adds itself to the table.
6. Deadlock: RecvAsync... | [
{
"path": "tensorflow/core/framework/local_rendezvous.cc",
"patch": "@@ -163,12 +163,15 @@ absl::Status LocalRendezvous::Send(const Rendezvous::ParsedKey& key,\n ->IncrementBy(1);\n }\n \n- TF_RETURN_IF_ERROR(status());\n-\n int bucket_index = key_hash % num_buckets_;\n auto& bucket = table_b... | 2026-03-13T14:20:39 |
kubernetes/kubernetes | 8af985c4fa052abf24bbadd03dba3619959413cd | 8275484dcfe90fb9b16c89975f8c34736807265c | fix: Remove GuaranteedQoSPodCPUResize declared feature | [
{
"path": "pkg/kubelet/kubelet_node_declared_features.go",
"patch": "@@ -36,11 +36,9 @@ func (a FeatureGateAdapter) Enabled(key string) bool {\n \n // discoverNodeDeclaredFeatures determines the final set of node features to be declared by using the discovery library.\n func (kl *Kubelet) discoverNodeDeclar... | 2026-02-04T20:54:07 |
golang/go | c186fe87686819cdf4dea49e1c556e9bc6e12e23 | 9c9412cbad09ed7fc253de3ccfeea9ca18d22943 | encoding/json/v2: allow streaming JSON methods to return errors.ErrUnsupported
Allow the MarshalJSONTo and UnmarshalJSONFrom methods
to return errors.ErrUnsupported to be skipped in a similar manner
to how the caller-specified functions can be skipped as well.
Note that the v1 MarshalJSON and UnmarshalJSON methods ma... | [
{
"path": "src/encoding/json/v2/arshal.go",
"patch": "@@ -55,6 +55,8 @@ var export = jsontext.Internal.Export(&internal.AllowInternalUse)\n //\n // - If the value type implements [MarshalerTo],\n // then the MarshalJSONTo method is called to encode the value.\n+// If the method returns [errors.Err... | 2026-02-13T00:54:32 |
mrdoob/three.js | 253163650b905d41fe5c7e4d2fbff5b7028d4bfb | 9f3ff3cff81b244a9af790d1a445c4acd57d2606 | SSGINode: Fix Sampling Asymmetry (#31867)
* SSGINode: Fix Sampling Asymmetry
Make the SSGI pass work closer to the way it was intended to...
Also enables panning in the demo scene (to better examine the GI).
* Undo erroneous change
* Fix duplicate import | [
{
"path": "examples/jsm/tsl/display/SSGINode.js",
"patch": "@@ -1,5 +1,5 @@\n import { RenderTarget, Vector2, TempNode, QuadMesh, NodeMaterial, RendererUtils, MathUtils } from 'three/webgpu';\n-import { clamp, normalize, reference, nodeObject, Fn, NodeUpdateType, uniform, vec4, passTexture, uv, logarithmicD... | 2025-09-09T20:00:31 |
denoland/deno | 576871afb297c36af300bcb6009bb59a53d8ace4 | cc53b5ff396a1d40f3f88712a506395356fb57bc | ci: maybe fix spec test timeout (#32487) | [
{
"path": "tests/util/lib/builders.rs",
"patch": "@@ -385,9 +385,16 @@ impl TestContext {\n \n fn kill_process(pid: u32) {\n #[cfg(unix)]\n- // SAFETY: We're sending SIGKILL to a process we spawned.\n- unsafe {\n- libc::kill(pid as i32, libc::SIGKILL);\n+ {\n+ // kill the process tree by first ki... | 2026-03-05T10:47:07 |
golang/go | 770864f3b452dbd83e33e42b9659c387d03425b9 | 1a6c5448a7004fb7073494ffdbd9bac5f1b8be9e | encoding/json/v2: remove SkipFunc sentinel error
WARNING: This commit contains breaking changes
for those already using GOEXPERIMENT=jsonv2.
Existing users of SkipFunc should migrate to errors.ErrUnsupported,
for which support was added in at least one prior commit.
Updates #74324
Change-Id: Ifbdee39165a134a33ea000... | [
{
"path": "src/encoding/json/v2/arshal_funcs.go",
"patch": "@@ -19,17 +19,6 @@ import (\n \t\"encoding/json/jsontext\"\n )\n \n-// SkipFunc may be returned by [MarshalToFunc] and [UnmarshalFromFunc] functions.\n-//\n-// Any function that returns SkipFunc must not cause observable side effects\n-// on the pr... | 2026-02-12T18:42:52 |
tensorflow/tensorflow | 88c5a21a0a1bc330e86bd1ef8e771fdf34e29db3 | 429368eb33fa5fcac8180f7cc492c851a4da4e88 | PR #39073: [xla:gpu] Migrate all thunks with nested sequences to ThunkSequenceProto
Imported from GitHub PR https://github.com/openxla/xla/pull/39073
- Migrate `ConditionalThunkProto`, `WhileThunkProto`, and `DynamicSliceThunkProto` from `SequentialThunkProto` to `ThunkSequenceProto` for nested thunk serialization. `... | [
{
"path": "third_party/xla/xla/backends/gpu/codegen/BUILD",
"patch": "@@ -224,7 +224,6 @@ xla_test(\n \"//xla:xla_proto_cc\",\n \"//xla/backends/gpu:ffi\",\n \"//xla/backends/gpu/runtime:dynamic_slice_thunk\",\n- \"//xla/backends/gpu/runtime:sequential_thunk\",\n \"//x... | 2026-03-13T12:41:48 |
mrdoob/three.js | b4e22070373b1dc8155109a8a269313ab7d7899b | bd256a8382ee08bb7a3d2bec411ba42760f5cd10 | SSGINode: Fix linear thickness computation. (#31863) | [
{
"path": "examples/jsm/tsl/display/SSGINode.js",
"patch": "@@ -493,7 +493,7 @@ class SSGINode extends TempNode {\n \n \t\t\t\tconst sampleViewPosition = getViewPosition( sampleUV, sampleDepth( sampleUV ), this._cameraProjectionMatrixInverse ).toConst();\n \t\t\t\tconst pixelToSample = sampleViewPosition.su... | 2025-09-09T15:20:11 |
kubernetes/kubernetes | 3caaccc0d991e2f0cd70e1e0f53a4f0f551819f9 | b56d289e2a96e3a76879a735b87c24e5291d2f2a | DRA: Fix incorrect behavior when using AllocationModeAll with PrioritizedList | [
{
"path": "staging/src/k8s.io/dynamic-resource-allocation/structured/internal/allocatortesting/allocator_testing.go",
"patch": "@@ -3836,6 +3836,198 @@ func TestAllocator(t *testing.T,\n \t\t\t\tdeviceAllocationResult(req0SubReq1, driverA, pool1, device1, false),\n \t\t\t)},\n \t\t},\n+\t\t\"prioritized-lis... | 2026-02-25T18:43:52 |
swiftlang/swift | c351e626e4fa5194d536b1d8620061b8244128f9 | 5814658f72de49030515b1ecda05635a52659f4e | [test] Add an additional crasher test case | [
{
"path": "validation-test/compiler_crashers/RequirementMachine-isConcreteType-865216.swift",
"patch": "@@ -0,0 +1,9 @@\n+// {\"kind\":\"typecheck\",\"original\":\"7d066aab\",\"signature\":\"swift::rewriting::RequirementMachine::isConcreteType(swift::Type, swift::ProtocolDecl const*) const\",\"signatureNext... | 2026-03-16T10:52:04 |
denoland/deno | cc53b5ff396a1d40f3f88712a506395356fb57bc | 9d90318a53cce7657d31e28814f5ab5d68f00d68 | fix(test): restart all tests on env file change (#32461)
Closes https://github.com/denoland/deno/issues/32222 | [
{
"path": "cli/args/mod.rs",
"patch": "@@ -640,8 +640,16 @@ impl CliOptions {\n self.flags.no_legacy_abort()\n }\n \n- pub fn env_file_name(&self) -> Option<&Vec<String>> {\n- self.flags.env_file.as_ref()\n+ pub fn env_file_paths(\n+ &self,\n+ ) -> impl DoubleEndedIterator<Item = PathBuf> + '... | 2026-03-05T10:46:42 |
golang/go | 1a6c5448a7004fb7073494ffdbd9bac5f1b8be9e | 58bc91a9671f3aec46a7e3c1e55d1d0e303dfe4e | cmd/go: document PATH behavior for `go run` and `go tool`
Fixes #77509
Change-Id: I1b6b38f86e4c8b18dd7638b4dd8246e2993e8307
Reviewed-on: https://go-review.googlesource.com/c/go/+/745100
Reviewed-by: Sean Liao <sean@liao.dev>
Reviewed-by: Junyang Shao <shaojunyang@google.com>
Reviewed-by: Michael Matloob <matloob@gola... | [
{
"path": "src/cmd/go/alldocs.go",
"patch": "@@ -1792,6 +1792,10 @@\n // used by debuggers, to reduce build time. To include debugger information in\n // the binary, use 'go build'.\n //\n+// The go command places $GOROOT/bin at the beginning of $PATH in the\n+// subprocess environment, so that subprocesses... | 2026-02-12T21:40:01 |
mrdoob/three.js | 8683d9657d3d9b83e9055025c95edcff71281be9 | 8e2c9b0e1f73ac19fa8c530cb0b4670e391c5b63 | RenderTarget: Fix resize of 3D textures. (#31854) | [
{
"path": "src/core/RenderTarget.js",
"patch": "@@ -294,7 +294,16 @@ class RenderTarget extends EventDispatcher {\n \t\t\t\tthis.textures[ i ].image.width = width;\n \t\t\t\tthis.textures[ i ].image.height = height;\n \t\t\t\tthis.textures[ i ].image.depth = depth;\n-\t\t\t\tthis.textures[ i ].isArrayTextur... | 2025-09-08T16:09:17 |
denoland/deno | 9d90318a53cce7657d31e28814f5ab5d68f00d68 | 888568c66267ed957423937764e22081d526cc08 | fix(ext/node): use sync writes for TTY stdout/stderr WriteStream (#32488)
## Summary
- After #32343 switched `process.stdout`/`process.stderr` to
`tty.WriteStream` (extending `net.Socket`), writes became asynchronous
through the `LibuvStreamWrap` handle
- Since `console.log` in Deno writes synchronously via
`Deno.cor... | [
{
"path": "ext/node/polyfills/internal/tty.js",
"patch": "@@ -10,6 +10,7 @@ const {\n Error,\n ObjectEntries,\n ObjectPrototypeHasOwnProperty,\n+ ObjectPrototypeIsPrototypeOf,\n ObjectValues,\n RegExpPrototypeExec,\n SafeMap,\n@@ -22,6 +23,8 @@ const {\n SetPrototypeGetSize,\n StringPrototy... | 2026-03-05T10:44:46 |
tensorflow/tensorflow | 631a3d766175d386a251cc1ab5e570522dae8aa1 | e0f9469e7c7e09817e9e1ea48d1ce253248d274b | Fix use-after-free in LocalRendezvous cancellation callback.
The cancellation callback registered with CancellationManager could be invoked after LocalRendezvous was destroyed. This change adds a reference count to the Rendezvous object to keep it alive until the cancellation callback is either executed or successfull... | [
{
"path": "tensorflow/core/framework/local_rendezvous.cc",
"patch": "@@ -254,9 +254,17 @@ void LocalRendezvous::RecvAsync(const Rendezvous::ParsedKey& key,\n CancellationToken token = CancellationManager::kInvalidToken;\n bool already_cancelled = false;\n if (cm != nullptr) {\n+ // Take a r... | 2026-03-13T12:14:19 |
kubernetes/kubernetes | d37765936d2b29beede5c9a8872ccd63e2811b00 | 4c2036030a1580c24149f18c36d9ec34e7a4caca | kubectl wait: Support multiple conditions (#136855)
* kubectl wait: Support multiple conditions
* Error out when --for is not passed
* Add examples for AND'ing and OR'ing multiple conditions | [
{
"path": "staging/src/k8s.io/kubectl/pkg/cmd/delete/delete.go",
"patch": "@@ -464,7 +464,7 @@ func (o *DeleteOptions) DeleteResult(r *resource.Result) error {\n \t\tTimeout: effectiveTimeout,\n \n \t\tPrinter: printers.NewDiscardingPrinter(),\n-\t\tConditionFn: cmdwait.IsDeleted,\n+\t\tCondition... | 2026-03-04T18:00:27 |
swiftlang/swift | 1ba113e33efd0b140ea2713c1fd7138f1308a2cb | b595e463d4d867668451e002d49bedcbed56be01 | Runtime: Set "addressable for dependencies" flag correctly for `Builtin.FixedArray` metadata.
This fixes a discrepancy in runtime and compile-time `Borrow` layout when the target of the
borrow is an `InlineArray`. | [
{
"path": "stdlib/public/runtime/Metadata.cpp",
"patch": "@@ -1695,10 +1695,12 @@ swift::swift_getFixedArrayTypeMetadata(MetadataRequest request,\n MetadataState::Complete};\n }\n \n- // If the element type has no tail padding, then its metadata is good enough\n+ // If the ... | 2026-03-16T20:54:02 |
golang/go | 58bc91a9671f3aec46a7e3c1e55d1d0e303dfe4e | 4dca8b3e619a321de36b99b6b514d9c01ef76e5e | cmd/link: support PIE on linux/s390x without cgo
Enable PIE builds on linux/s390x when CGO is disabled by teaching
the linker to handle dynamic relocations against SDYNIMPORT
symbols.
This adds support for TLS_IE and handles R_CALL, R_PCRELDBL, and
R_ADDR relocations by generating the appropriate PLT/GOT entries
inst... | [
{
"path": "src/cmd/dist/test.go",
"patch": "@@ -1243,7 +1243,7 @@ func (t *tester) internalLinkPIE() bool {\n \t}\n \tswitch goos + \"-\" + goarch {\n \tcase \"darwin-amd64\", \"darwin-arm64\",\n-\t\t\"linux-amd64\", \"linux-arm64\", \"linux-loong64\", \"linux-ppc64le\",\n+\t\t\"linux-amd64\", \"linux-arm64... | 2026-02-05T15:05:23 |
mrdoob/three.js | 8e2c9b0e1f73ac19fa8c530cb0b4670e391c5b63 | 440ea54253666daaa918e0c7cbd38fddb1b20130 | Docs: Modifying TextGeometry URL document error. (#31856) | [
{
"path": "manual/en/align-html-elements-to-3d.html",
"patch": "@@ -33,7 +33,7 @@ <h1>Aligning HTML Elements to 3D</h1>\n each with pluses and minuses.</p>\n <ul>\n <li><p>Use 3D text</p>\n-<p>If you look at the <a href=\"primitives.html\">primitives article</a> you'll see <a href=\"/docs/#api/en/geometries... | 2025-09-08T16:07:01 |
denoland/deno | d143d7c16110debcf069fbd2b53e9287e1a495d3 | be569cf522240bf1b0ec4ebc906ca69415723891 | fix(ext/node): deep `assert` compatibility (#32434) | [
{
"path": "ext/crypto/00_crypto.js",
"patch": "@@ -90,6 +90,7 @@ const {\n import * as webidl from \"ext:deno_webidl/00_webidl.js\";\n import { createFilteredInspectProxy } from \"ext:deno_web/01_console.js\";\n import { DOMException } from \"ext:deno_web/01_dom_exception.js\";\n+import { kKeyObject } from ... | 2026-03-04T23:08:56 |
tensorflow/tensorflow | 4eb715c17858cfa7658a6ffc49d1c4ebacb48823 | 375203f0b73478e3e8c88ea34238b160aad9d781 | PR #39048: [ROCm] Fix ROCm accuracy budget for intrinsic_accuracy_test
Imported from GitHub PR https://github.com/openxla/xla/pull/39048
Introduce ROCm-specific accuracy budgets to fix `intrinsic_accuracy_test`. Values based on https://github.com/ROCm/llvm-project/blob/amd-staging/amd/device-libs/doc/OCML.md as well ... | [
{
"path": "third_party/xla/xla/codegen/intrinsic/accuracy/accuracy_budget.h",
"patch": "@@ -17,6 +17,7 @@ limitations under the License.\n #define XLA_CODEGEN_INTRINSIC_ACCURACY_ACCURACY_BUDGET_H_\n \n #include <cstdint>\n+#include <optional>\n \n namespace xla::codegen::intrinsic::accuracy {\n \n@@ -33,6 +... | 2026-03-13T10:50:50 |
kubernetes/kubernetes | 7ea5b88209020a07cc96717c6e8cb622feebdd4a | 6ebcc611d23b7385f3a702ab909750c359edfe62 | cleanup: remove suggestfor from wait command (#137266)
* feature: remove suggestfor from wait command
* fix test case | [
{
"path": "staging/src/k8s.io/kubectl/pkg/cmd/wait/wait.go",
"patch": "@@ -134,7 +134,6 @@ func NewCmdWait(restClientGetter genericclioptions.RESTClientGetter, streams gen\n \t\t\tcmdutil.CheckErr(err)\n \t\t\tcmdutil.CheckErr(o.RunWaitContext(cmd.Context()))\n \t\t},\n-\t\tSuggestFor: []string{\"list\", \"... | 2026-03-04T14:38:27 |
mrdoob/three.js | 440ea54253666daaa918e0c7cbd38fddb1b20130 | eeec0f48f4e696a2fbbba90bdeddcfc99fe7ee4d | Examples: fix instancedArray call in WebGPU compute reduce (#31855)
Co-authored-by: Samuel Rigaud <rigaud@gmail.com> | [
{
"path": "examples/webgpu_compute_reduce.html",
"patch": "@@ -936,7 +936,7 @@ <h3 id=\"panel-title\" style=\"flex: 0 0 auto;\">Subgroup Reduction Explanation</h3>\n \t\t\t\t} ) );\n \n \t\t\t\t// Represents array of data as uints in compute shader.\n-\t\t\t\tconst inputStorage = instancedArray( array, 'uin... | 2025-09-08T12:51:03 |
golang/go | 4dca8b3e619a321de36b99b6b514d9c01ef76e5e | 4f5d5ddf7c79305cc49c777efa3c365dd58f34df | encoding/json/v2: dual support errors.ErrUnsupported and SkipFunc
This change supports both errors.ErrUnsupported and SkipFunc.
In a future change, we will remove SkipFunc entirely in favor
of using errors.ErrUnsupported, which exists for a similar pupose.
Updates #74324
Change-Id: I5f1ada8e3914513d7d23c504f5965ca8d... | [
{
"path": "src/encoding/json/v2/arshal.go",
"patch": "@@ -50,7 +50,7 @@ var export = jsontext.Internal.Export(&internal.AllowInternalUse)\n //\n // - If any type-specific functions in a [WithMarshalers] option match\n // the value type, then those functions are called to encode the value.\n-// If ... | 2026-02-10T19:34:35 |
tensorflow/tensorflow | 375203f0b73478e3e8c88ea34238b160aad9d781 | 85326f49103d6488288503af2f2d2b488c640bf1 | Fix memory leak in LocalRendezvous
LocalRendezvous code is very careful about removing empty key lists from buckets,
so presumably this is important. There are 2 cases where it does not remove empty
lists, which may presumably lead to memory leaks.
Both cases are related to cancellation callback which adds a new list... | [
{
"path": "tensorflow/core/framework/local_rendezvous.cc",
"patch": "@@ -260,33 +260,36 @@ void LocalRendezvous::RecvAsync(const Rendezvous::ParsedKey& key,\n Item* item = nullptr;\n {\n mutex_lock l(bucket.mu);\n- auto it = bucket.table.insert({key_hash, ItemQueue()}).fir... | 2026-03-13T10:39:17 |
denoland/deno | be569cf522240bf1b0ec4ebc906ca69415723891 | 1e7a295613519a1f9aa87c0a3f0566039df944eb | fix(core): uv_compat cleanup and fixes (#32458)
- split uv_compat into multiple files
- move logic out of run_io into helpers
- avoid holding references across callbacks to prevent violating
aliasing
- add a test suite, this goes through the same JsRuntime event loop
infra as deno
- fix shutdown not waiting for write ... | [
{
"path": "libs/core/runtime/jsruntime.rs",
"patch": "@@ -2164,7 +2164,18 @@ impl JsRuntime {\n Self::dispatch_rejections(scope, context_state, exception_state)?;\n scope.perform_microtask_checkpoint();\n \n- // ===== Phase 3: I/O =====\n+ // ===== Phase 3: Idle / Prepare =====\n+ // In lib... | 2026-03-04T17:36:20 |
mrdoob/three.js | 22e1b94bebb5b182c65da687abf1d91ea30d9d97 | 642dd50630c3867638c87812d4034f481aa5f201 | SSGINode: New node for screen-space global illumination. (#31839)
* SSGINode: New node for screen-space global illumination.
* E2E: Add example to exception list.
* Example: Improve presets. | [
{
"path": "examples/files.json",
"patch": "@@ -418,6 +418,7 @@\n \t\t\"webgpu_postprocessing_smaa\",\n \t\t\"webgpu_postprocessing_sobel\",\n \t\t\"webgpu_postprocessing_ssaa\",\n+\t\t\"webgpu_postprocessing_ssgi\",\n \t\t\"webgpu_postprocessing_ssr\",\n \t\t\"webgpu_postprocessing_traa\",\n \t\t\"webgpu_po... | 2025-09-08T07:39:31 |
golang/go | 1915ea0f1e5965f982fcc9efd79076f707623c27 | cba008453e9535840ebfcf6a038a4172008ef1fc | net/netip: optimize Prefix.String
goos: linux
goarch: amd64
pkg: net/netip
cpu: Intel(R) Core(TM) Ultra 9 285K
│ /tmp/BenchmarkPrefixString_before.txt │ /tmp/BenchmarkPrefixString_after.txt │
│ sec/op │ sec/op vs base │
PrefixString-2... | [
{
"path": "src/net/netip/netip.go",
"patch": "@@ -1592,5 +1592,23 @@ func (p Prefix) String() string {\n \tif !p.IsValid() {\n \t\treturn \"invalid Prefix\"\n \t}\n-\treturn p.ip.String() + \"/\" + strconv.Itoa(p.Bits())\n+\tvar b []byte\n+\tswitch {\n+\tcase p.ip.z == z4:\n+\t\tconst maxCap = len(\"255.255... | 2026-02-11T10:33:35 |
swiftlang/swift | 4bbfa8bff1f980ebc8e13c4c82c9f9f2ac7b5ccb | 4e36390d058ec75dfdc2c8f6fa87346965c26eea | Fix a test | [
{
"path": "unittests/SILOptimizer/PartitionUtilsTest.cpp",
"patch": "@@ -31,6 +31,9 @@ struct Partition::PartitionTester {\n unsigned getRegion(unsigned elt) const {\n return unsigned(p.elementToRegionMap.at(Element(elt)));\n }\n+\n+ auto begin() const { return p.elementToRegionMap.begin(); }\n+ a... | 2026-03-16T20:00:29 |
tensorflow/tensorflow | 76f9f18b4d3ba78f8e74a26d591d1dc5afd56ad4 | ec8a244194a04f4286db77034609722831035c69 | Fix grammar and formatting in README installation section
Corrected minor grammatical issues and formatting in installation instructions. | [
{
"path": "README.md",
"patch": "@@ -52,20 +52,19 @@ To install the current release, which includes support for\n Windows)*:\n \n ```\n-$ pip install tensorflow\n+ pip install tensorflow\n ```\n \n Other devices (DirectX and MacOS-metal) are supported using\n [Device Plugins](https://www.tensorflow.org/inst... | 2026-03-13T07:57:36 |
mrdoob/three.js | b6eab2d3f9dfc53f48f50c8bd9e994b9e7c81f71 | f653c76f4b300bb58462b42442d1d0ae8f156f68 | Fix url (#31844) | [
{
"path": "examples/css3d_mixed.html",
"patch": "@@ -86,7 +86,7 @@\n \t\t\t\tiframe.style.width = '1028px';\n \t\t\t\tiframe.style.height = '768px';\n \t\t\t\tiframe.style.border = '0px';\n-\t\t\t\tiframe.src = '/examples/#webgl_animation_keyframes';\n+\t\t\t\tiframe.src = './#webgl_animation_keyframes';\n ... | 2025-09-07T20:55:56 |
denoland/deno | 92ed54bba86a5e1fc6ee3c4d7eaa668a00978edd | 8426078dae05b031c13f37495dd78acb105c5583 | Reland refactor(core): move nextTick/immediate queues into core, replace ops with shared buffers (#32440) (#32465)
## Summary
- The nextTick rewrite (#32440) moved unhandled rejection processing
into `processTicksAndRejections` (JS-side `processPromiseRejections`),
but `rejectionhandled` events were still only dispatc... | [
{
"path": "ext/node/lib.rs",
"patch": "@@ -493,7 +493,6 @@ deno_core::extension!(deno_node,\n \"internal/errors/error_source.ts\",\n \"internal/event_target.mjs\",\n \"internal/events/abort_listener.mjs\",\n- \"internal/fixed_queue.ts\",\n \"internal/fs/streams.mjs\",\n \"internal/fs/... | 2026-03-04T16:46:52 |
golang/go | cba008453e9535840ebfcf6a038a4172008ef1fc | 3e4143dd440ac2621ef03d394cdc2cc0ac34acd5 | cmd/cover: exclude commented-out code from coverage instrumentation
Add logic to exclude purely commented lines from coverage instrumentation.
When instrumenting Go code for coverage, the cover tool now identifies
and excludes lines that contain only comments from coverage blocks.
This prevents commented-out code fro... | [
{
"path": "src/cmd/cover/cover.go",
"patch": "@@ -13,6 +13,7 @@ import (\n \t\"fmt\"\n \t\"go/ast\"\n \t\"go/parser\"\n+\t\"go/scanner\"\n \t\"go/token\"\n \t\"internal/coverage\"\n \t\"internal/coverage/encodemeta\"\n@@ -266,6 +267,142 @@ type File struct {\n \tpkg *Package\n }\n \n+// Range represents... | 2026-02-13T09:00:43 |
swiftlang/swift | 4e36390d058ec75dfdc2c8f6fa87346965c26eea | cd50b52b79647cba8dea740f703fb60c9c9153b4 | [rbi] Detect incompatible actor isolation merges during direct assignment
Previously, `assignDirect` did not verify that the destination element's actor
isolation was compatible with the source element's region isolation before
performing the assignment. This meant that assigning between fields isolated to
different a... | [
{
"path": "include/swift/SILOptimizer/Utils/PartitionUtils.h",
"patch": "@@ -1891,6 +1891,33 @@ struct PartitionOpEvaluator {\n // a sending result.\n handleAssignNonDisconnectedIntoSendingResult(op);\n \n+ // Check if our actual destElement is directly actor isolated in a way\n+ // th... | 2026-03-16T17:44:24 |
tensorflow/tensorflow | 57c2f6e44a4f7484c2d8c73c07b75fabc503d063 | 0dad8c402e43d22050af7e98a10f43891325b396 | Avoid using DebugOptions without initialization.
Calling GetDebugOptionsFromFlags makes sure that all flag values are set to
their default if no flag is specified to override the default.
PiperOrigin-RevId: 882994250 | [
{
"path": "third_party/xla/xla/hlo/translate/hlo_to_mhlo/BUILD",
"patch": "@@ -138,6 +138,7 @@ cc_library(\n deps = [\n \":hlo_function_importer\",\n \":module_attributes_importer\",\n+ \"//xla:debug_options_flags\",\n \"//xla:xla_data_proto_cc\",\n \"//xla:xla_pro... | 2026-03-13T07:15:44 |
mrdoob/three.js | 3c023f2a131dac159c986d7637279d2419205ebf | 981732c6917af7e8164389e9e863646be9881f96 | Examples: fix bugs (#31842)
Co-authored-by: Samuel Rigaud <rigaud@gmail.com> | [
{
"path": "examples/physics_ammo_break.html",
"patch": "@@ -538,7 +538,7 @@\n \n \t\t\t\tif ( breakable0 && ! collided0 && maxImpulse > fractureImpulse ) {\n \n-\t\t\t\t\tconst debris = convexBreaker.subdivideByImpact( threeObject0, impactPoint, impactNormal, 1, 2, 1.5 );\n+\t\t\t\t\tconst debris = convexBr... | 2025-09-07T17:41:08 |
golang/go | 3e4143dd440ac2621ef03d394cdc2cc0ac34acd5 | 8a0bc29bedd45324c52cfdc7717fabfc82673e4d | doc: document GODEBUG carve out for security releases
Fixes #63741
Change-Id: I9c40fff7d3ad67565205657c5d89934a3f1f576c
Reviewed-on: https://go-review.googlesource.com/c/go/+/723102
Auto-Submit: Roland Shoemaker <roland@golang.org>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.c... | [
{
"path": "doc/godebug.md",
"patch": "@@ -85,6 +85,9 @@ if the work module's `go.mod` or the workspace's `go.work`\n says `go` `1.20`, then the program defaults to `panicnil=1`,\n matching Go 1.20 instead of Go 1.21.\n \n+As an exception, GODEBUGs introduced for security releases\n+will have the new behavio... | 2025-11-21T22:40:52 |
kubernetes/kubernetes | b895ce734fb9569b5696863c9b24ff6b7b11ed88 | dd0958fece5c08e7438f4ce4f91678f1555a3b83 | golangci-lint: bump to logtools v0.10.1
This fixes a bug that caused log calls involving `klog.Logger` to not be
checked.
As a result we have to fix some code that is now considered faulty:
ERROR: pkg/controller/serviceaccount/tokens_controller.go:382:1: A function should accept either a context or a logger, but... | [
{
"path": "hack/golangci-hints.yaml",
"patch": "@@ -352,12 +352,6 @@ linters:\n -contextual k8s.io/kubernetes/pkg/kubelet/kubelet_volumes.go\n -contextual k8s.io/kubernetes/pkg/kubelet/pod_container_deletor.go\n -contextual k8s.io/kubernetes/pkg/kubelet/volume_host.go\n- ... | 2026-02-18T11:40:46 |
denoland/deno | 8426078dae05b031c13f37495dd78acb105c5583 | 9f02e0019c3741ebf295b5a9e062b0b66a6ef18c | ci: fix deno_core changes check in shallow clones (#32464)
## Summary
- The previous shell one-liner used `git diff` against the PR base SHA,
which often isn't available in the shallow clone (`fetch-depth: 5`).
When the base SHA is missing, `git diff` fails silently, `grep` gets no
input, and deno_core tests are incor... | [
{
"path": ".github/workflows/ci.generate.ts",
"patch": "@@ -480,11 +480,9 @@ const preBuildCheckStep = step({\n const denoCoreChangesCheckStep = step({\n id: \"deno_core_changes\",\n run: [\n- `DENO_CORE_CHANGED=$(git diff --name-only \\${{ github.event.pull_request.base.sha }}..HEAD | grep -qE '^(${... | 2026-03-04T16:43:58 |
mrdoob/three.js | 839287d88275b085c06963d0b745eae84c29a8e5 | 852895046ac9f83f14911b88cdcbb3e46beaa011 | fix depth sensing (#31831) | [
{
"path": "src/renderers/webgl/WebGLTextures.js",
"patch": "@@ -554,6 +554,10 @@ function WebGLTextures( _gl, extensions, state, properties, capabilities, utils,\n \t\t\tuploadTexture( textureProperties, texture, slot );\n \t\t\treturn;\n \n+\t\t} else if ( texture.isExternalTexture ) {\n+\n+\t\t\ttexturePr... | 2025-09-05T20:48:35 |
tensorflow/tensorflow | 0dad8c402e43d22050af7e98a10f43891325b396 | 989db02d61327e999e3786683e4492d810647a2f | Fix logic to support top-down scheduling in latency hiding scheduler.
PiperOrigin-RevId: 882979776 | [
{
"path": "third_party/xla/xla/service/BUILD",
"patch": "@@ -1377,6 +1377,7 @@ cc_library(\n \":hlo_buffer\",\n \":hlo_cost_analysis\",\n \":hlo_value\",\n+ \":scheduling_annotations_util\",\n \"//xla:shape_util\",\n \"//xla:side_effect_util\",\n \"//xl... | 2026-03-13T06:32:39 |
golang/go | c9cbeb0a1b08a9830a3d2d4abe0c2108e52f7647 | 92c7fcf137848ad74f88f75fc21bcb159eb08104 | encoding/json/v2: remove `unknown` tag option and DiscardUnknownMembers
WARNING: This commit contains breaking changes
for those already using GOEXPERIMENT=jsonv2.
This removes support for the `unknown` tag option and
the DiscardUnknownMembers marshal option.
The `unknown` tag option semantics are a bit too subtle
e... | [
{
"path": "src/encoding/json/internal/jsonflags/flags.go",
"patch": "@@ -120,7 +120,6 @@ const (\n \tFormatNilSliceAsNull // marshal only\n \tOmitZeroStructFields // marshal only\n \tMatchCaseInsensitiveNames // marshal or unmarshal\n-\tDiscardUnknownMembers // marshal only\n \tRejectUnknownMe... | 2026-02-03T01:52:37 |
denoland/deno | 91e84aeffcf4e3cd00ec90c93cdef1a4810da3c4 | e78a7fa8d86848a759e6743537cf90013c7160b1 | refactor(core): move nextTick/immediate queues into core, replace ops with shared buffers (#32440)
## Summary
Major refactoring of the nextTick/immediate queue infrastructure, moving
it from Node polyfills into deno_core and replacing op-based
communication with shared memory buffers.
### Move nextTick queue into co... | [
{
"path": "ext/node/lib.rs",
"patch": "@@ -493,7 +493,6 @@ deno_core::extension!(deno_node,\n \"internal/errors/error_source.ts\",\n \"internal/event_target.mjs\",\n \"internal/events/abort_listener.mjs\",\n- \"internal/fixed_queue.ts\",\n \"internal/fs/streams.mjs\",\n \"internal/fs/... | 2026-03-04T15:23:24 |
mrdoob/three.js | 7668c5b8a97d396fec01f463e2905f4a1ba45431 | 2a9049ff431cf08eb539a4a3abd597e316395ccb | Examples: Fixed css3d_mixed recursion. | [
{
"path": "examples/css3d_mixed.html",
"patch": "@@ -86,7 +86,7 @@\n \t\t\t\tiframe.style.width = '1028px';\n \t\t\t\tiframe.style.height = '768px';\n \t\t\t\tiframe.style.border = '0px';\n-\t\t\t\tiframe.src = 'https://threejs.org/examples/#webgl_animation_keyframes';\n+\t\t\t\tiframe.src = '/examples/#web... | 2025-09-05T04:51:10 |
golang/go | 92c7fcf137848ad74f88f75fc21bcb159eb08104 | e5df06bc55f18ff92fb1c2fce2af69e80d9b3194 | time: document that Parse does not support leap seconds
Fixes #50888
Change-Id: I2691442d7fccd716cd19939cf3931317e21ee4ed
Reviewed-on: https://go-review.googlesource.com/c/go/+/743060
Reviewed-by: Michael Pratt <mpratt@google.com>
Reviewed-by: Junyang Shao <shaojunyang@google.com>
LUCI-TryBot-Result: Go LUCI <golang-... | [
{
"path": "src/time/format.go",
"patch": "@@ -1002,6 +1002,9 @@ func skip(value, prefix string) (string, error) {\n // For layouts specifying the two-digit year 06, a value NN >= 69 will be treated\n // as 19NN and a value NN < 69 will be treated as 20NN.\n //\n+// Timestamps representing leap seconds (seco... | 2026-02-07T14:45:46 |
swiftlang/swift | cd50b52b79647cba8dea740f703fb60c9c9153b4 | 15d30c9c52fb6b3463dfa958e138f281fbd1d00d | [rbi] Canonicalize before touching any maps from element <-> region.
I was looking at some test cases and I noticed that we were getting the wrong
isolation when performing certain operations. It came down to us not being
careful enough about canonicalizing before we attempted to map from element <->
region. This is b... | [
{
"path": "include/swift/SILOptimizer/Utils/PartitionUtils.h",
"patch": "@@ -908,10 +908,14 @@ class Partition {\n /// multi map here. The implication of this is that when we are performing\n /// dataflow we use a union operation to combine CFG elements and just take\n /// the first instruction that w... | 2026-02-04T22:41:21 |
denoland/deno | f85c0caafaa7f44c1b14d10babdfa4daaab8738f | 739f9ae0056dd4f3e6e1fec81ed75cc55c77b7f1 | fix(deploy): dont use jsr api for deploy subcommand (#32441) | [
{
"path": "cli/registry.rs",
"patch": "@@ -53,12 +53,6 @@ pub struct PublishingTask {\n pub error: Option<PublishingTaskError>,\n }\n \n-#[derive(serde::Deserialize)]\n-#[serde(rename_all = \"camelCase\")]\n-pub struct Package {\n- pub latest_version: Option<String>,\n-}\n-\n #[derive(serde::Deserialize)... | 2026-03-04T12:33:37 |
tensorflow/tensorflow | f13c92547136c8aba383f30d615a5549d84a55c3 | 53f1f93f679b88d02a7afe4cb065bd2e93849728 | Add PJRT_Error_ForEachPayload to the PJRT C API.
This change introduces a new function, `PJRT_Error_ForEachPayload`, to the PJRT C API, allowing plugins to expose payloads attached to `absl::Status` objects. The `PjrtErrorToStatus` helper function is updated to use this new API to transfer payloads from a `PJRT_Error`... | [
{
"path": "third_party/xla/xla/pjrt/c/BUILD",
"patch": "@@ -418,6 +418,7 @@ cc_library(\n \"@com_google_absl//absl/status\",\n \"@com_google_absl//absl/status:statusor\",\n \"@com_google_absl//absl/strings\",\n+ \"@com_google_absl//absl/strings:cord\",\n \"@com_google_... | 2026-03-13T02:48:04 |
kubernetes/kubernetes | 8cd55303b1fc5fa00c8ef25b046d2dedf498a7af | 028015267e30a5f4f975c9a57f91f53ddd79eca5 | fix the misleading error msg when updating job.status.startTime
Signed-off-by: zhzhuang-zju <m17799853869@163.com> | [
{
"path": "pkg/apis/batch/validation/validation.go",
"patch": "@@ -741,7 +741,7 @@ func ValidateJobStatusUpdate(job, oldJob *batch.Job, opts JobStatusValidationOpt\n \t\t// Note that we check `oldJob.Status.StartTime != nil` to allow transitioning from\n \t\t// startTime = nil to startTime != nil for unsusp... | 2026-03-04T02:52:59 |
golang/go | e5df06bc55f18ff92fb1c2fce2af69e80d9b3194 | b464a924a9bdd00627cbc3baca86a0e042fccb8a | time: document that LoadLocation creates new Location instances
Fixes #77385
Change-Id: I7e7ddb1c71f0aebd893f640d476b273e229b059a
Reviewed-on: https://go-review.googlesource.com/c/go/+/743040
Reviewed-by: Ian Lance Taylor <iant@golang.org>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gservicea... | [
{
"path": "src/time/zoneinfo.go",
"patch": "@@ -645,12 +645,13 @@ var errLocation = errors.New(\"time: invalid location name\")\n var zoneinfo *string\n var zoneinfoOnce sync.Once\n \n-// LoadLocation returns the Location with the given name.\n+// LoadLocation returns a [Location] with the given name.\n //\... | 2026-02-07T14:38:05 |
denoland/deno | 739f9ae0056dd4f3e6e1fec81ed75cc55c77b7f1 | 7a5efce39115c24c652f1ffa74aca055352f3abd | fix(npm): don't panic when peer dep is not in snapshot (#32454)
Instead of panicking, create the missing node gracefully. | [
{
"path": "libs/npm/resolution/graph.rs",
"patch": "@@ -428,10 +428,10 @@ impl Graph {\n // package-b@1.0.0_package-c@1.0.0__package-b@1.0.0\n // ^ attempting to resolve this\n // In this case, we go up the ancestors to see if we can find a ... | 2026-03-04T11:51:56 |
tensorflow/tensorflow | 53f1f93f679b88d02a7afe4cb065bd2e93849728 | 7f66b2c5b6598ce8a48590b131c62341832f56a2 | [Partioner][Cleanup] fix typo in partitioner.
PiperOrigin-RevId: 882906425 | [
{
"path": "third_party/xla/xla/service/spmd/spmd_partitioner.cc",
"patch": "@@ -3899,7 +3899,7 @@ SpmdPartitioningVisitor::HandleDUSAllPartitionedSliceDimsHaveConstantIndices(\n newOperand->set_sharding(hlo->sharding());\n }\n } else if (update_tensor->opcode() == HloOpcode::kSlice) {\n- bool... | 2026-03-13T02:41:06 |
golang/go | b464a924a9bdd00627cbc3baca86a0e042fccb8a | 30d5c1b0572f7d021def277097df6a21f300995e | cmd/go: do not collect build information for test packages when not needed
When build information is not needed for go list output (when -export=false and Stale and StaleReason fields are not printed), the "SuppressBuildInfo" option is set to true, so that cmd/go/internal/load does not collect it (in particular VCS in... | [
{
"path": "src/cmd/go/internal/load/test.go",
"patch": "@@ -294,7 +294,7 @@ func TestPackagesAndErrors(loaderstate *modload.State, ctx context.Context, done\n \n \tpb := p.Internal.Build\n \tpmain.DefaultGODEBUG = defaultGODEBUG(loaderstate, pmain, pb.Directives, pb.TestDirectives, pb.XTestDirectives)\n-\ti... | 2026-02-03T13:25:23 |
denoland/deno | 7a5efce39115c24c652f1ffa74aca055352f3abd | fce52fa2e9adcb236c4f01072e423601ec33b2f3 | fix(npm): regression where resolution was missing dependencies (#32453) | [
{
"path": "libs/npm/resolution/graph.rs",
"patch": "@@ -3225,7 +3225,9 @@ impl<'a, TNpmRegistryApi: NpmRegistryApi>\n .peer_dep_version_req\n .as_ref()\n .unwrap_or(&dep.version_req);\n- if versions.contains_key(effective_req) {\n+ if let Some(target_version) = ve... | 2026-03-04T11:48:20 |
tensorflow/tensorflow | 12ab60fc7ee2be9a5b31e7fb8ac3c7f39546cecc | c931f42cbfb69de46aa65f89e07dd4eee84715d2 | Add IsTpuPredeterminedError() to PJRT TPU executable extension.
PiperOrigin-RevId: 882847878 | [
{
"path": "third_party/xla/xla/pjrt/c/pjrt_c_api_tpu_executable_extension.h",
"patch": "@@ -183,6 +183,18 @@ PJRT_DEFINE_STRUCT_TRAITS(\n typedef PJRT_Error* PJRT_TpuExecutable_GetTpuCompilationEnvFieldAsString(\n PJRT_TpuExecutable_GetTpuCompilationEnvFieldAsString_Args* args);\n \n+struct PJRT_TpuExec... | 2026-03-12T23:47:40 |
golang/go | 30d5c1b0572f7d021def277097df6a21f300995e | a44ed023f600de1b8fbeb2be514ec20c964b3330 | net: always set the servers field to defaultNS
When the field is parsed from a file, it would never
have len(servers) == 0, lets enforce that and update
test cases where we had it wrong.
Change-Id: I7fa6ebcf63b9fe20fbbf791113ca948d6a6a6964
Reviewed-on: https://go-review.googlesource.com/c/go/+/743020
Auto-Submit: Mic... | [
{
"path": "src/net/conf_test.go",
"patch": "@@ -142,7 +142,7 @@ func TestConfHostLookupOrder(t *testing.T) {\n \t\t\tc: &conf{\n \t\t\t\tgoos: \"openbsd\",\n \t\t\t},\n-\t\t\tresolv: &dnsConfig{lookup: []string{\"bind\", \"file\"}},\n+\t\t\tresolv: &dnsConfig{servers: defaultNS, lookup: []string{\"bind\", \... | 2026-02-07T10:03:17 |
denoland/deno | fce52fa2e9adcb236c4f01072e423601ec33b2f3 | 148e8a0b1c773b0fb219bf834d004be62120ae20 | fix(ext/node): support HTTP over Windows named pipes in node:http (#32414)
Add Windows Named Pipe support to Deno's Node.js HTTP compatibility
layer, enabling libraries like `dockerode`/`docker-modem` that use
`http.request({socketPath: "//./pipe/docker_engine"})` to work on
Windows.
Add `WindowsPipe` variant to `Net... | [
{
"path": "ext/http/http_next.rs",
"patch": "@@ -1007,6 +1007,10 @@ where\n NetworkStream::Tunnel(conn) => {\n serve_http(conn, connection_properties, lifetime, tx, options)\n }\n+ #[cfg(windows)]\n+ NetworkStream::WindowsPipe(conn) => {\n+ serve_http(conn, connection_properties, li... | 2026-03-04T10:11:29 |
mrdoob/three.js | 1041321baf8eba68bda0ea63f52c45187d3fafe4 | b19bffdfdfbf4d8a3738d9e1212d61a2d767bead | fix-types (#31819)
Co-authored-by: Samuel Rigaud <rigaud@gmail.com> | [
{
"path": "examples/jsm/controls/ArcballControls.js",
"patch": "@@ -115,7 +115,7 @@ class ArcballControls extends Controls {\n \t * Constructs a new controls instance.\n \t *\n \t * @param {Camera} camera - The camera to be controlled. The camera must not be a child of another object, unless that object is ... | 2025-09-04T18:52:17 |
tensorflow/tensorflow | 06e98e9236e84d8d55daf9f52f3480e51828e878 | 2819766a38da1a2b98f39a2c999f393731d37c2c | Make `PjRtStreamExecutorClient::WaitForAllocation` return an error instead of crashing
This allows us to gracefully handle failures while recording CUDA events, e.g., due to the driver being in the process of shutdown at the end of a test.
PiperOrigin-RevId: 882834871 | [
{
"path": "third_party/xla/xla/pjrt/gpu/se_gpu_pjrt_client.cc",
"patch": "@@ -1068,7 +1068,8 @@ StreamExecutorGpuClient::CrossHostReceiveBuffers(\n se::Stream* stream) -> absl::Status {\n for (PreparedReceive& prepared_receive : prepared_receives) {\n // Wait unti... | 2026-03-12T23:21:29 |
golang/go | a44ed023f600de1b8fbeb2be514ec20c964b3330 | 31768104cbe710d2358d5da34b4c223ad3ff2c6f | cmd/go: fix panic in 'go run -C'
Fixes #77483
Change-Id: Ie772ce1619beadc1a6db87aaf28a8d9c31f7d1b8
Reviewed-on: https://go-review.googlesource.com/c/go/+/742860
Reviewed-by: Junyang Shao <shaojunyang@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Auto-Submit: Ian... | [
{
"path": "src/cmd/go/internal/toolchain/select.go",
"patch": "@@ -658,6 +658,9 @@ func maybeSwitchForGoInstallVersion(loaderstate *modload.State, minVers string)\n \t\t}\n \n \t\tif bf, ok := f.Value.(interface{ IsBoolFlag() bool }); !ok || !bf.IsBoolFlag() {\n+\t\t\tif len(args) == 0 {\n+\t\t\t\treturn\n+... | 2026-02-06T18:52:22 |
denoland/deno | 2334e53e96613878baaeac8ae4847e84e7c2ec36 | 86a97b288d337e30ece2739a571e1a0c26f1664e | ci: fix npm publish (#32437) | [
{
"path": ".github/workflows/npm_publish.yml",
"patch": "@@ -36,10 +36,8 @@ jobs:\n - name: Install Node\n uses: actions/setup-node@v6\n with:\n- node-version: '22.x'\n+ node-version: '24.x'\n registry-url: 'https://registry.npmjs.org'\n \n - name: Pub... | 2026-03-03T16:41:49 |
swiftlang/swift | f07ff10a50c5a88f171687e1af67eb367b592601 | a7bf1920830382e7172297799e487d3367b3f18b | [rbi] When we emit an "unknown error" error, set the bit that says we emitted it so we do not emit it also in the destructor.
Just discovered this while working on some other code. | [
{
"path": "lib/SILOptimizer/Mandatory/SendNonSendable.cpp",
"patch": "@@ -1566,6 +1566,7 @@ class SendNeverSentDiagnosticEmitterHelper {\n }\n \n void emitUnknownPatternError() {\n+ emittedErrorDiagnostic = true;\n EMIT_UNKNOWN_PATTERN_ERROR(SendNeverSentDiagnosticEmitter,\n ... | 2026-02-28T21:04:06 |
mrdoob/three.js | b19bffdfdfbf4d8a3738d9e1212d61a2d767bead | 61f467b53d26e24ca36918e6bdc27f0f3db3f697 | fix-ts-ref (#31822)
Co-authored-by: Samuel Rigaud <rigaud@gmail.com> | [
{
"path": "examples/jsm/objects/ReflectorForSSRPass.js",
"patch": "@@ -387,6 +387,7 @@ ReflectorForSSRPass.ReflectorShader = {\n * @property {number} [clipBias=0] - The clip bias.\n * @property {Object} [shader] - Can be used to pass in a custom shader that defines how the reflective view is projected ont... | 2025-09-04T18:51:11 |
golang/go | 71232268768eab3002d2ae473b49f74b74e89cdf | a6c48f2ca9efdf6c45d434767a30b9d25824497d | cmd/go/internal/bug: sync go bug headings with GitHub form
Keep the issue body generated by go bug in the same order as the
GitHub bug form: what happened first, then what was expected.
This updates the footer headings and replaces the old
"What did you see instead?" wording.
Fixes #77488.
Change-Id: Id20d68c1e109a... | [
{
"path": "src/cmd/go/internal/bug/bug.go",
"patch": "@@ -76,11 +76,11 @@ A link on go.dev/play is best.\n \n \n \n-### What did you expect to see?\n+### What did you see happen?\n \n \n \n-### What did you see instead?\n+### What did you expect to see?\n \n `\n ",
"additions": 2,
"deletions": 2,
... | 2026-02-09T05:01:56 |
tensorflow/tensorflow | 2819766a38da1a2b98f39a2c999f393731d37c2c | 72ce5b574a34fe532b23a4287202d088ce13ad93 | [VHLO] Update splat unpacking to be 0x01 to match in-memory format before bytecoding
Fixes jax-ml/jax#35762
PiperOrigin-RevId: 882833077 | [
{
"path": "third_party/xla/third_party/stablehlo/temporary.patch",
"patch": "@@ -22,6 +22,34 @@ diff --ruN a/stablehlo/stablehlo/dialect/StablehloOps.h b/stablehlo/stablehlo/di\n };\n \n } // end namespace side_effects\n+diff --ruN a/stablehlo/stablehlo/dialect/VhloBytecode.cpp b/stablehlo/stablehlo/dia... | 2026-03-12T23:17:43 |
denoland/deno | 86a97b288d337e30ece2739a571e1a0c26f1664e | 3fe843d26be8060735b067954f9686a818362173 | test: dgram.addMembership EINVAL error regression test (#32256)
Actually fixed in #32381
Closes #31059
---------
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com> | [
{
"path": "tests/unit_node/dgram_test.ts",
"patch": "@@ -58,6 +58,20 @@ Deno.test(\"[node/dgram] udp unref\", {\n assertEquals(statusCode, 0);\n });\n \n+Deno.test(\"[node/dgram] addMembership works\", async () => {\n+ const { promise, resolve } = Promise.withResolvers<void>();\n+ const socket = createS... | 2026-03-03T16:06:31 |
mrdoob/three.js | 61f467b53d26e24ca36918e6bdc27f0f3db3f697 | 787ba7ed0720de19d98fdcbd7a795bff05e3baef | WebGPURenderer: Fix shadow's `alphaTest` if used `material.map` (#31803)
* fix alphaTest using map
* improve names | [
{
"path": "src/renderers/common/Renderer.js",
"patch": "@@ -30,6 +30,8 @@ import { Vector4 } from '../../math/Vector4.js';\n import { RenderTarget } from '../../core/RenderTarget.js';\n import { DoubleSide, BackSide, FrontSide, SRGBColorSpace, NoToneMapping, LinearFilter, HalfFloatType, RGBAFormat, PCFShado... | 2025-09-04T16:03:00 |
swiftlang/swift | 707b44e34fd0ed48236fef8f123a29f58df9a6af | b595e463d4d867668451e002d49bedcbed56be01 | update-checkout: Update wasmkit version to 0.2.1 (#87845)
[This release](https://github.com/swiftwasm/WasmKit/releases/tag/0.2.1)
contains important bug fixes for Wasm guest modules debugging
functionality. | [
{
"path": "utils/update_checkout/update-checkout-config.json",
"patch": "@@ -191,7 +191,7 @@\n \"swift-experimental-string-processing\": \"main\",\n \"swift-sdk-generator\": \"main\",\n \"wasi-libc\": \"wasi-sdk-27\",\n- \"wasmkit\": \"0.2.0\",\... | 2026-03-16T16:48:17 |
Subsets and Splits
Assembly Language GitHub Issues
Retrieves a sample of assembly-language related commits with their details, but doesn't provide meaningful analysis or patterns beyond basic filtering.
Swift Compiler Issues Analysis
Retrieves all training data for the Swift programming language repository, providing basic filtering but offering limited analytical insight beyond identifying relevant code examples.