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 | c261a1db0db71e34529ed331efcc74e1c20596c3 | af0855f8fe7d58d302f08b101d4bf63ee829e385 | Minor fixes to deal with the presence of .swiftsourceinfo for the Swift standard library | [
{
"path": "lib/Sema/CSDiagnostics.cpp",
"patch": "@@ -759,7 +759,7 @@ bool MissingConformanceFailure::diagnoseTypeCannotConform(\n auto &req = getRequirement();\n auto *reqDC = getRequirementDC();\n auto *genericCtx = getGenericContext();\n- auto noteLocation = reqDC->getAsDecl()->getLoc();\n+ auto ... | 2025-09-24T18:00:23 |
golang/go | 6aef900af4eeb4a35d3ff1237a41cf3f63c56c24 | 026fa9dc597ea8e5280d7531ce7f193ed157cad0 | runtime/metrics: fix panic in Read with empty slice
Calling Read with a nil or empty slice previously caused a panic with
"index out of range" because the function unconditionally accessed the
first element of the slice (via &m[0]) to pass the pointer to the
runtime.
This change adds a check for len(m) == 0 to return... | [
{
"path": "src/runtime/metrics/description_test.go",
"patch": "@@ -156,3 +156,10 @@ func TestDocs(t *testing.T) {\n \t\tfmt.Fprintf(os.Stderr, \"go test -generate: doc.go already up-to-date\\n\")\n \t}\n }\n+\n+func TestReadEmptySlice(t *testing.T) {\n+\t// Test that Read does not panic when given an empty ... | 2026-01-28T01:14:53 |
tensorflow/tensorflow | 4e870433fdec0f45176e76cb4e864651f9b2909f | a72d5f862f3c23a8b2973c9cbe439998cf2be557 | Migrate deprecated tsl::errors to absl equivalents.
PiperOrigin-RevId: 877916578 | [
{
"path": "tensorflow/core/kernels/data/BUILD",
"patch": "@@ -73,6 +73,7 @@ tf_kernel_library(\n \"//tensorflow/core/util/tensor_bundle\",\n \"//tensorflow/core/util/tensor_bundle:naming\",\n \"@com_google_absl//absl/status\",\n+ \"@com_google_absl//absl/strings\",\n \... | 2026-03-03T14:31:22 |
mrdoob/three.js | 84aa697932c3bf4eda1a0570b7279830c69283ef | 4aa10f4939129bf47f4bc30db369000e085d10e9 | WebGPURenderer: Add HDR Support (#29573)
* WebGPURenderer: Add HDR Support
* cleanup
* Add support for HDR via colorSpace, include Postprocessing support
* cleanup
* Fix, revert ExtendedLinear and use outputType instead
* cleanupg
* feedback | [
{
"path": "examples/jsm/math/ColorSpaces.js",
"patch": "@@ -1,4 +1,4 @@\n-import { LinearTransfer, Matrix3, SRGBTransfer } from 'three';\n+import { LinearTransfer, Matrix3, SRGBTransfer, SRGBColorSpace, ColorManagement } from 'three';\n \n /** @module ColorSpaces */\n \n@@ -114,6 +114,24 @@ export const Lin... | 2025-08-06T01:43:08 |
golang/go | 134035855cbc84e25765c2a4af3d152aaf430c5c | f65fe3216ef67b4318f8da475ec59418dfc4fb5d | cmd/compile: simplify slice/array range loops on loong64
loong64 supports R+R addressing ({st,ld}x.{b,h,w,d} instructions)
and has implemented the relevant lowering rules (only width is 1).
Removes 1616 instructions from the go binary on loong64.
file before after Δ %
asm 575366 5... | [
{
"path": "src/cmd/compile/internal/walk/range.go",
"patch": "@@ -23,7 +23,7 @@ func cheapComputableIndex(width int64) bool {\n \t// MIPS does not have R+R addressing\n \t// Arm64 may lack ability to generate this code in our assembler,\n \t// but the architecture supports it.\n-\tcase sys.PPC64, sys.S390X:... | 2026-01-22T02:44:19 |
swiftlang/swift | af0855f8fe7d58d302f08b101d4bf63ee829e385 | eae5b17315db612e63da165a8a8fb7f7b6f55317 | Build and install .swiftsourceinfo files for the standard library + friends
These are useful for debug backtraces when building against the binary
Swift modules. For Embedded Swift, it's even more important because
everything gets inlined. rdar://159398310 | [
{
"path": "Runtimes/Core/cmake/modules/EmitSwiftInterface.cmake",
"patch": "@@ -39,6 +39,11 @@ function(emit_swift_interface target)\n \"${module_directory}/${SwiftCore_VARIANT_MODULE_TRIPLE}.swiftdoc\"\n \"${module_directory}/${SwiftCore_VARIANT_MODULE_TRIPLE}.swiftsourceinfo\")\n endif()\n+\... | 2025-09-23T22:19:33 |
denoland/deno | 745f7d9d93fa49ca238951ccc93af2e31e5a1300 | 8b8b10dd147929a02f94f276cff7bd1e4e60c861 | fix(ext/node): `createServer().listen().address()` returns port 0 (#32248)
## Summary
- Bind the TCP/TLS port synchronously in `Server.listen()` so that
`address()` immediately returns the OS-assigned port, matching Node.js
behavior
- Previously the port binding was deferred to `nextTick` via
`Deno.serve()`, causing ... | [
{
"path": "ext/node/polyfills/http.ts",
"patch": "@@ -70,7 +70,8 @@ import {\n } from \"ext:deno_node/internal/errors.ts\";\n import { getTimerDuration } from \"ext:deno_node/internal/timers.mjs\";\n import { getIPFamily } from \"ext:deno_node/internal/net.ts\";\n-import { serve, upgradeHttpRaw } from \"ext... | 2026-02-24T13:16:31 |
mrdoob/three.js | b52a72e2b9d4835a98763733c00edc6323103cdb | 7a1f975aca878c0c5c50bc74b051c1e6bb6269d3 | Update TRAANode.js
Fix JSDoc. | [
{
"path": "examples/jsm/tsl/display/TRAANode.js",
"patch": "@@ -79,7 +79,7 @@ class TRAANode extends TempNode {\n \t\t/**\n \t\t * The camera the scene is rendered with.\n \t\t *\n-\t\t * @type {TextureNode}\n+\t\t * @type {Camera}\n \t\t */\n \t\tthis.camera = camera;\n ",
"additions": 1,
"deletio... | 2025-08-05T17:49:12 |
tensorflow/tensorflow | c30099e5c1d3132fbfd357d0443f2aacfbe4d452 | 773dd1123cf09b18856f3a2759dac2fc810c000b | Migrate fusion_emitter_int4_device_test to HloPjRtGpuTestBase.
Note that it is not actually a Codegen test and thus does not need the new
GpuPjRtCodegenTest base class.
Fix one test failure on A100 where the filecheck pattern needs to be adjusted.
Disable another failing test on A100.
Use default test size instead of ... | [
{
"path": "third_party/xla/xla/backends/gpu/codegen/triton/BUILD",
"patch": "@@ -382,7 +382,6 @@ xla_test(\n \n xla_test(\n name = \"fusion_emitter_int4_device_test\",\n- size = \"large\",\n srcs = [\"fusion_emitter_int4_device_test.cc\"],\n backends = [\n \"a100\",\n@@ -391,26 +390,2... | 2026-03-03T14:04:53 |
golang/go | a0796d8af67e147f54e06952272745aa3410c291 | 481ab86aafe0cac177df793c9946c5ef2126137c | reflect: allow conversions between slices of named {byte,rune} and string
So the reflect behavior matches that of the language.
These conversions are allowed:
[]myByte <-> string
[]myRune <-> string
[]myByte <-> myString
[]myRune <-> myString
And even if the left-hand-side is named, e.g.
myBytes([]myByte) <-> stri... | [
{
"path": "src/reflect/all_test.go",
"patch": "@@ -4177,6 +4177,9 @@ type MyBytesArray [4]byte\n type MyRunes []int32\n type MyFunc func()\n type MyByte byte\n+type MyRune rune\n+type MyBytes2 []MyByte\n+type MyRunes2 []MyRune\n \n type IntChan chan int\n type IntChanRecv <-chan int\n@@ -4480,6 +4483,38 @@ ... | 2026-01-27T19:06:18 |
mrdoob/three.js | 610c12677a5a45a180b58dd04c26a40f89df8e2a | 60d89545b82f4c13541ac7d6e271ca0da80019dc | Examples: Fix `webgpu_compute_particles_fluid` GUI (#31570) | [
{
"path": "examples/webgpu_compute_particles_fluid.html",
"patch": "@@ -104,9 +104,6 @@\n \t\t\t\t\tp2g1Kernel.count = value;\n \t\t\t\t\tp2g2Kernel.count = value;\n \t\t\t\t\tg2pKernel.count = value;\n-\t\t\t\t\tp2g1Kernel.updateDispatchCount();\n-\t\t\t\t\tp2g2Kernel.updateDispatchCount();\n-\t\t\t\t\tg2p... | 2025-08-04T20:43:45 |
swiftlang/swift | 38c6ffbf0d2ab608ae98a6fd39c719773bc814b5 | e11a5a9f61b65a57f7f1a65567cf243a9c7520df | [Embedded] Stop diagnosing untyped throws in embedded mode
It is plausible that we will introduce support for untyped throws in
Embedded Swift at some point, so don't diagnose its presence so
eagerly now. Instead, leave it until later in the pipeline when it's
actually used.
Fixes rdar://162071067, where we were gett... | [
{
"path": "include/swift/AST/DiagnosticsSema.def",
"patch": "@@ -8795,9 +8795,6 @@ GROUPED_ERROR(weak_unowned_in_embedded_swift, EmbeddedRestrictions, none,\n \"attribute %0 cannot be used in Embedded Swift\",\n (ReferenceOwnership))\n \n-GROUPED_WARNING(untyped_throws_in_embedde... | 2026-03-11T17:47:43 |
denoland/deno | 8b8b10dd147929a02f94f276cff7bd1e4e60c861 | f817b31ed21ed0ba8cc59f26e5fa3356a430b9db | feat(compile): add `--self-extracting` flag (#32227)
Adds a `--self-extracting` flag to `deno compile`. Instead of serving
files from the in-memory virtual file system, the compiled binary
extracts all embedded files to disk on first run and uses real file
system operations at runtime.
This unlocks full Node API supp... | [
{
"path": "Cargo.lock",
"patch": "@@ -3356,6 +3356,7 @@ dependencies = [\n \"deno_terminal\",\n \"import_map\",\n \"indexmap 2.9.0\",\n+ \"junction\",\n \"libsui\",\n \"log\",\n \"memmap2\",",
"additions": 1,
"deletions": 0,
"language": "Unknown"
},
{
"path": "cli/args/flags.rs",
... | 2026-02-24T13:03:13 |
tensorflow/tensorflow | 773dd1123cf09b18856f3a2759dac2fc810c000b | e9b736495fc42a605278597b4af8b717f63708c8 | PR #38507: [ROCM] Fixed triton_support_test on rocm.
Imported from GitHub PR https://github.com/openxla/xla/pull/38507
📝 Summary of Changes
Updated functions from triton/support.c and triton/support_test to execute
correctly on ROCm.
🎯 Justification
support_test was failing on ROCm.
🚀 Kind of Contribution
Please ... | [
{
"path": "third_party/xla/xla/backends/gpu/codegen/triton/support.cc",
"patch": "@@ -62,26 +62,19 @@ CodegenDecision IsTritonSupportedDataType(\n return CodegenDecision::Allow();\n case F8E5M2:\n case F8E4M3FN:\n- if (gpu_version.IsCuda()) {\n+ if (gpu_version.IsCuda() || gpu_versio... | 2026-03-03T13:48:39 |
golang/go | 251f3aa6ee6fc3925fe8e64cd4b403bfa73b93ab | 5ec5fdc093979c55c9605931d668e209cc1e1b00 | os/exec: document blocking Stdin/Stdout/Stderr
WaitDelay only handles writes to Stdin and reads from Stdout/Stderr.
If Stdin is set to a blocking Reader, or Stdout/Stderr are set to
a blocking Writer, Wait can hang indefinitely. I don't see any way to
fix this with the current API, as there is no general way that the
... | [
{
"path": "src/os/exec/exec.go",
"patch": "@@ -203,6 +203,11 @@ type Cmd struct {\n \t// stops copying, either because it has reached the end of Stdin\n \t// (EOF or a read error), or because writing to the pipe returned an error,\n \t// or because a nonzero WaitDelay was set and expired.\n+\t//\n+\t// Rega... | 2026-01-27T04:03:30 |
mrdoob/three.js | 60d89545b82f4c13541ac7d6e271ca0da80019dc | 13be9fb16b119aadd3c4d734838b6a63c92e55e5 | TSL: Introduce `uniformFlow()` (#31531)
* init branch
* fixes
* move to new approach, adjust existing conditional node flow to take advantage of more existing flow code functionality
* remove forceWebGL checks
* cleanup
* revert requested examples
* fix typo
* try build again
* fix spacing in select statement
... | [
{
"path": "examples/webgpu_compute_cloth.html",
"patch": "@@ -561,4 +561,4 @@\n \n \t\t</script>\n \t</body>\n-</html>\n+</html>\n\\ No newline at end of file",
"additions": 1,
"deletions": 1,
"language": "HTML"
},
{
"path": "examples/webgpu_compute_points.html",
"patch": "@@ -30,7 +... | 2025-08-04T20:38:56 |
swiftlang/swift | 64cad883fde8e3dbab7ae91213519d81a1ebd36c | 42f35187b4c72ad26435773aa357871c487fdebe | [Tests] NFC: Expand Sendable inference tests to cover language mode 6 as well
The test now checks for warnings in 5 + strict-concurrency=complete
mode and for errors in 6 mode.
A few "failed to produce a diagnostic" issues are fixed in Swift 6
language mode too. | [
{
"path": "test/Concurrency/sendable_keypaths.swift",
"patch": "@@ -1,4 +1,5 @@\n-// RUN: %target-typecheck-verify-swift -verify-ignore-unrelated -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency=complete -enable-upcoming-feature GlobalActorIsolatedTypesUsability\n+// RUN: %target-typec... | 2026-03-11T17:29:30 |
denoland/deno | c5919892439aa3a6527ea3e18fa0ae32bbcfd027 | f6a619fe0bcc000f7d161c2e3dacd171cc448de6 | fix(lsp): implement remaining tsgo resolver callbacks (#32303) | [
{
"path": "cli/lsp/documents.rs",
"patch": "@@ -1296,7 +1296,7 @@ impl DocumentModules {\n module\n }\n \n- pub fn module_for_tsgo_referrer(\n+ pub fn module_for_tsgo_document(\n &self,\n uri: &Uri,\n compiler_options_key: &CompilerOptionsKey,\n@@ -1314,7 +1314,7 @@ impl DocumentModules ... | 2026-02-24T07:55:26 |
mrdoob/three.js | 13be9fb16b119aadd3c4d734838b6a63c92e55e5 | 5472220ce670a50ab8e95b59bc32e5e5e75630cd | Update BloomNode.js
Fix code style. | [
{
"path": "examples/jsm/tsl/display/BloomNode.js",
"patch": "@@ -366,7 +366,7 @@ class BloomNode extends TempNode {\n \n \t\t// These sizes have been changed to account for the altered coefficents-calculation to avoid blockiness,\n \t\t// while retaining the same blur-strength. For details see https://githu... | 2025-08-04T08:22:05 |
tensorflow/tensorflow | e9b736495fc42a605278597b4af8b717f63708c8 | b37159b0e3030a03ac821035de305dc36b1b45a4 | [XLA:GPU]: Add a thread safe scoped error handler for llvm
Registering an error handler for llvm across threads causes races or crashes
(in debug builds). This PR adds a scoped handler for usage in this situation.
PiperOrigin-RevId: 877856801 | [
{
"path": "third_party/xla/xla/service/llvm_ir/BUILD",
"patch": "@@ -296,6 +296,36 @@ cc_library(\n ],\n )\n \n+cc_library(\n+ name = \"error_handler\",\n+ srcs = [\"error_handler.cc\"],\n+ hdrs = [\"error_handler.h\"],\n+ deps = [\n+ \"@com_google_absl//absl/base\",\n+ \"@com_... | 2026-03-03T11:35:22 |
kubernetes/kubernetes | 701db6b6a60fcd7c11be7f0876239de5bcbbf2ee | d1f11ee8605c799133dc1e289cd43853df351d3f | validation-gen: Fix all stable api violations by prefixing +k8s:alpha(since:"1.36") and exclude output_tests from linting | [
{
"path": "pkg/apis/admissionregistration/v1/zz_generated.validations.go",
"patch": "@@ -85,7 +85,7 @@ func Validate_ValidatingAdmissionPolicyBindingSpec(ctx context.Context, op opera\n \t\t\t}\n \t\t\t// call field-attached validations\n \t\t\tearlyReturn := false\n-\t\t\tif e := validate.RequiredValue(ctx... | 2026-02-24T22:43:53 |
swiftlang/swift | 321c8690df5e7033677577951d8d38bc7881dab3 | eae5b17315db612e63da165a8a8fb7f7b6f55317 | Only complain about "swift_" symbols defined outside the standard library
Specifically, don't warn about C standard library symbols that the
compiler happens to know about, like "free".
Fixes #87239 / rdar://170390023. | [
{
"path": "lib/Sema/TypeCheckAttr.cpp",
"patch": "@@ -2465,6 +2465,10 @@ static bool canDeclareSymbolName(StringRef symbol, ModuleDecl *fromModule) {\n if (ctx.LangOpts.hasFeature(Feature::AllowRuntimeSymbolDeclarations))\n return true;\n \n+ // Only consider \"swift_\"-containing symbols.\n+ if (!s... | 2026-03-11T17:16:39 |
mrdoob/three.js | ff9b259010be1709ec3194e749c8ecc596040970 | c50e2574d652630bfb428aa594067d5e503e05b8 | TSL: Add `boxBlur()`. (#31556)
* TSL: Add `boxBlur()`.
* TSL: Use `convertToTexture()` in `boxBlur()`.
* Update boxBlur.js
Fix typos. | [
{
"path": "examples/jsm/tsl/display/boxBlur.js",
"patch": "@@ -0,0 +1,62 @@\n+import { Fn, vec2, uv, Loop, vec4, premultiplyAlpha, unpremultiplyAlpha, max, int, textureSize, nodeObject, convertToTexture } from 'three/tsl';\n+\n+/**\n+ * Applies a box blur effect to the given texture node.\n+ *\n+ * Compared... | 2025-08-02T16:15:27 |
tensorflow/tensorflow | 958201cf6ffd9fb8c597f3ac65076ebe76d8ea92 | c01b51d979f9a4d9af3d5a5ecaad8a095f2ffe3f | PR #38269: [ROCm] Add RCCL FP8 support
Imported from GitHub PR https://github.com/openxla/xla/pull/38269
📝 Summary of Changes
Enable FP8 support on RCCL.
🎯 Justification
GPU architecture `gfx9_mi350` and subsequent generations (ROCm 7.0+) support FP8 datatype in RCCL.
This PR enables FP8 support in a similar way t... | [
{
"path": "third_party/xla/xla/backends/gpu/collectives/BUILD",
"patch": "@@ -592,6 +592,7 @@ cc_library(\n \"//xla/stream_executor:device_address\",\n \"//xla/stream_executor:stream\",\n \"//xla/stream_executor:stream_executor_h\",\n+ \"//xla/stream_executor/rocm:rocm_compute... | 2026-03-03T11:06:41 |
denoland/deno | f6a619fe0bcc000f7d161c2e3dacd171cc448de6 | 265cbd8732aea413ce01810e0e0f39df635ca561 | fix(ext/node): add `host_arch` to `process.config.variables` (#32265)
## Summary
- Adds `host_arch` property to `process.config.variables` to match
Node.js behavior
- Changes `process.config` to use a lazy getter so `arch` is available
at access time (not during snapshot creation)
- Fixes packages like `neo4j-driver` ... | [
{
"path": "ext/node/polyfills/process.ts",
"patch": "@@ -676,14 +676,24 @@ Object.defineProperty(process, \"argv0\", {\n process.chdir = chdir;\n \n /** https://nodejs.org/api/process.html#processconfig */\n-process.config = Object.freeze({\n- target_defaults: Object.freeze({\n- default_configuration: \... | 2026-02-24T06:57:04 |
mrdoob/three.js | 3dd226d4a272c195611046b98ec8a97ff2e4db8c | 64df03dfd6bacaade3930fb0314a178ff596841f | WebGPURenderer: Fix MSAA using mipmap levels (#31544)
* WebGPU: Fix MSAA using mipmap levels
* Change comment to link to official specification | [
{
"path": "src/renderers/webgpu/utils/WebGPUTextureUtils.js",
"patch": "@@ -266,6 +266,7 @@ class WebGPUTextureUtils {\n \n \t\t\tmsaaTextureDescriptorGPU.label = msaaTextureDescriptorGPU.label + '-msaa';\n \t\t\tmsaaTextureDescriptorGPU.sampleCount = samples;\n+\t\t\tmsaaTextureDescriptorGPU.mipLevelCount ... | 2025-08-02T12:06:05 |
denoland/deno | 265cbd8732aea413ce01810e0e0f39df635ca561 | 636f697ed3488e8c7d055d554c1ea01f08ae5f3c | fix(node/buffer): fix latin1Slice and hexSlice returning wrong results (#32277)
## Summary
- Fix `Buffer.prototype.latin1Slice` and `Buffer.prototype.hexSlice`
having an extraneous `string` parameter that shifted all arguments
passed to the underlying `_latin1Slice`/`_hexSlice` functions
- Fix `_latin1Slice` not handl... | [
{
"path": "ext/node/polyfills/internal/buffer.mjs",
"patch": "@@ -1011,16 +1011,12 @@ Buffer.prototype.hexWrite = function hexWrite(string, offset, length) {\n );\n };\n \n-Buffer.prototype.hexSlice = function hexSlice(string, offset, length) {\n- return _hexSlice(this, string, offset, length);\n+Buffer.... | 2026-02-24T06:56:13 |
tensorflow/tensorflow | 9973307304f02f1c601a47a596e17c7171004f61 | ca9c6e807f68c95fe1bd73eaca2ccf10e0971244 | Make custom call execution state deserialization handle failures.
When deserializing a CustomCallThunkProto, if the execution state can't be deserialized, log a warning instead of returning an error. This allows the thunk to be created even if the execution state is corrupted (e.g. due to copmiler and runtime versions... | [
{
"path": "third_party/xla/xla/backends/gpu/runtime/custom_call_thunk.cc",
"patch": "@@ -747,9 +747,16 @@ absl::StatusOr<std::unique_ptr<CustomCallThunk>> CustomCallThunk::FromProto(\n }\n std::unique_ptr<ffi::ExecutionState> execution_state;\n if (proto.has_execution_state()) {\n- TF_ASSIGN_OR_RET... | 2026-03-03T06:57:29 |
golang/go | 0f72aff835111bb0e7998bdb6de3f02a1483afe7 | 03a6a2074086e186071fbc362bbb6c630f9bc84b | simd/archsimd: fix typo in the SHA256Message1 documentation string
Change-Id: I8bc5fec0475bfaebc0469d0efb2ba89af4b3f150
Reviewed-on: https://go-review.googlesource.com/c/go/+/738640
Reviewed-by: Junyang Shao <shaojunyang@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.c... | [
{
"path": "src/simd/archsimd/_gen/simdgen/ops/Others/categories.yaml",
"patch": "@@ -95,7 +95,7 @@\n - go: SHA256Message1\n commutative: false\n documentation: !string |-\n- // NAME does the sigma and addtion of 1 in SHA1 algorithm defined in FIPS 180-4.\n+ // NAME does the sigma and addition of 1... | 2026-01-22T22:34:17 |
mrdoob/three.js | 82b03f580ed0fe520939eefe62ab34dd418e9ef2 | 54ac263593c81b669ca9a089491ddd9e240427d2 | DepthOfFieldNode: New implementation. (#31547)
* Manual MRT test.
* DepthOfFieldNode: Fix MRT setup.
* DepthOfFieldNode: Initial approach.
* DepthOfFieldNode: Fix kernel size.
* DepthOfFieldNode: Clean up.
* DepthOfFieldNode: Fix aliased near field edges.
* DepthOfField: Clean up.
* DepthOfFieldNode: Add commen... | [
{
"path": "examples/jsm/tsl/display/DepthOfFieldNode.js",
"patch": "@@ -1,9 +1,17 @@\n-import { TempNode, NodeUpdateType } from 'three/webgpu';\n-import { convertToTexture, nodeObject, Fn, uv, uniform, vec2, vec4, clamp } from 'three/tsl';\n+import { TempNode, NodeMaterial, NodeUpdateType, RenderTarget, Vec... | 2025-08-02T08:37:00 |
kubernetes/kubernetes | 7d08854616fb2814063b315fd24cabd33b333dba | 6910980aad771acc8b07e89224510c1c88f35237 | Fix lint errors | [
{
"path": "hack/update-codegen.sh",
"patch": "@@ -452,7 +452,6 @@ function codegen::validation() {\n time\n )\n \n-\n local lint_tag_pkgs=()\n for pkg in \"${tag_pkgs[@]}\"; do\n if [[ \"${pkg}\" != *\"staging/src/k8s.io/code-generator/cmd/validation-gen/output_tests\"* ]]; then\... | 2026-02-18T18:37:48 |
denoland/deno | 636f697ed3488e8c7d055d554c1ea01f08ae5f3c | 87f304049da7a95941276560942e607d66775c19 | feat(ext/bundle): Add `--keep-names` flag (#32285)
Exposes the esbuild flag `--keep-names` to users of `deno bundle`
Moving forward with this as there has been no response to my questions
in the issue so far. If you want to discuss this further, feel free to
add your feedback.
Fixes #32109 | [
{
"path": "cli/args/flags.rs",
"patch": "@@ -592,6 +592,7 @@ pub struct BundleFlags {\n pub external: Vec<String>,\n pub format: BundleFormat,\n pub minify: bool,\n+ pub keep_names: bool,\n pub code_splitting: bool,\n pub inline_imports: bool,\n pub packages: PackageHandling,\n@@ -2536,6 +2537,... | 2026-02-24T02:01:23 |
tensorflow/tensorflow | bc5cd12cba4fbb91f65f422cec93b9fa248156b9 | 40cfda18f706b1d95df95f3f4fce69a38bab796d | Fix typo: "determenistic" -> "deterministic".
This CL corrects a common typo across several files in the XLA GPU backend.
PiperOrigin-RevId: 877550172 | [
{
"path": "third_party/xla/xla/backends/gpu/collectives/gpu_clique.h",
"patch": "@@ -104,7 +104,7 @@ class GpuClique : public Clique {\n const GpuClique* parent_;\n \n // We keep device communicators in a sorted container to guarantee that they\n- // are destroyed in determenistic order.\n+ // are des... | 2026-03-02T21:25:57 |
mrdoob/three.js | 10a2144d99d2138f475b9da9b268ee1ff6460403 | 5588622dad1efe47fd567813de200ce4e42a0bb0 | WebGPURenderer: Explicitly set `VideoTexture#colorSpace` to `SRGBColorSpace` (#31534)
* fix
* shorten
* lint | [
{
"path": "examples/webgpu_lights_projector.html",
"patch": "@@ -191,6 +191,7 @@\n \t\t\t\t\t\t\tvideo.play();\n \n \t\t\t\t\t\t\tvideoTexture = new THREE.VideoTexture( video );\n+\t\t\t\t\t\t\tvideoTexture.colorSpace = THREE.SRGBColorSpace;\n \n \t\t\t\t\t\t}\n ",
"additions": 1,
"deletions": 0,
... | 2025-07-31T23:39:50 |
golang/go | 03a6a2074086e186071fbc362bbb6c630f9bc84b | ffb50fb7169f93c502e07868724b1f392267f696 | cmd/link: handle SRODATALRELRO in xcoffUpdateOuterSize
This is a followup to CL 723580. This fixes cgo builds on AIX.
For #76038
Change-Id: Idea959615891f3f6e33932fae7a9043778db3366
Reviewed-on: https://go-review.googlesource.com/c/go/+/738920
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gser... | [
{
"path": "src/cmd/link/internal/ld/xcoff.go",
"patch": "@@ -583,7 +583,7 @@ func xcoffUpdateOuterSize(ctxt *Link, size int64, stype sym.SymKind) {\n \tswitch stype {\n \tdefault:\n \t\tErrorf(\"unknown XCOFF outer symbol for type %s\", stype.String())\n-\tcase sym.SRODATA, sym.SFUNCTAB, sym.SSTRING:\n+\tca... | 2026-01-24T00:20:43 |
kubernetes/kubernetes | 826978bf8157ba661fba8c7eb7c74aa625a95935 | 25993ba58b14ffcf128e97bb4796590c590855fb | Add lint rules to enforce optional required, stability and alpha/beta prefix. | [
{
"path": "staging/src/k8s.io/code-generator/cmd/validation-gen/lint.go",
"patch": "@@ -19,8 +19,8 @@ package main\n import (\n \t\"fmt\"\n \t\"sort\"\n-\t\"strings\"\n \n+\t\"k8s.io/gengo/v2/codetags\"\n \t\"k8s.io/gengo/v2/types\"\n \t\"k8s.io/klog/v2\"\n )\n@@ -37,9 +37,12 @@ type linter struct {\n }\n \... | 2026-02-18T18:36:04 |
denoland/deno | 87f304049da7a95941276560942e607d66775c19 | 5122966a00611627e2abd9787acf29889a522300 | fix(node): preserve AsyncLocalStorage context in unhandledRejection handlers (#32264)
## Summary
- Fixes `AsyncLocalStorage.getStore()` returning `undefined` inside
`unhandledRejection` / `unhandledrejection` event handlers
- Now matches Node.js behavior where the async context active at the
time of rejection is pres... | [
{
"path": "tests/specs/node/async_local_storage_unhandled_rejection/__test__.jsonc",
"patch": "@@ -0,0 +1,8 @@\n+{\n+ \"tests\": {\n+ \"async_local_storage_unhandled_rejection\": {\n+ \"args\": \"run main.mjs\",\n+ \"output\": \"rejectionValue => data\\n\"\n+ }\n+ }\n+}",
"additions": ... | 2026-02-23T21:25:50 |
golang/go | 64e8b238a1e5ce4cc47eec561db0ccf904e29e50 | a977717393fd779921ca258988230dbc741f5912 | runtime: rename aeshashbody to runtime.aeshashbody
Currently this is a raw symbol name with no package component, which is
confusing when seen in profilers or similar tools.
This function does not follow a Go ABI, and thus should not have a Go
function declaration. go vet requires declaration for standard assembly
fu... | [
{
"path": "src/runtime/asm_386.s",
"patch": "@@ -954,7 +954,7 @@ TEXT runtime·memhash(SB),NOSPLIT,$0-16\n \tMOVL\tp+0(FP), AX\t// ptr to data\n \tMOVL\ts+8(FP), BX\t// size\n \tLEAL\tret+12(FP), DX\n-\tJMP\taeshashbody<>(SB)\n+\tJMP\truntime·aeshashbody<>(SB)\n noaes:\n \tJMP\truntime·memhashFallback(SB)\n ... | 2026-01-22T16:47:42 |
tensorflow/tensorflow | ee007130a74189faba9a5de5a3c07aa1d86ff353 | 5457246b6c945201ed65f46c147fabb4334659bd | Provide more debug information on backoff timeout errors
PiperOrigin-RevId: 877529548 | [
{
"path": "third_party/xla/xla/pjrt/distributed/coordination/coordination_service_agent.cc",
"patch": "@@ -170,8 +170,10 @@ absl::Status CoordinationServiceAgent::Connect() {\n absl::Milliseconds(backoff) * distribution(generator);\n LOG(INFO) << absl::Substitute(\n \"Coordination ... | 2026-03-02T20:39:20 |
denoland/deno | 5122966a00611627e2abd9787acf29889a522300 | 578cb26ba9ef0b954387bcbb6e2e8b83eeb0236b | test: add timeout support to spec tests (#32292)
## Summary
- Adds a `timeout` field (in seconds) to spec test `__test__.jsonc`
files
- When a test step's process exceeds the timeout, it is killed and the
test fails with a "Test command timed out" panic
- Timeout can be set at the multi-test level (propagates to all
... | [
{
"path": ".github/workflows/ci.generate.ts",
"patch": "@@ -989,7 +989,7 @@ const buildJobs = buildItems.map((rawBuildItem) => {\n `test ${testMatrix.test_crate} ${testMatrix.shard_label}${buildItem.profile} ${buildItem.os}-${buildItem.arch}`,\n needs: [buildJob],\n runsOn: buildIt... | 2026-02-23T20:06:47 |
swiftlang/swift | 42f35187b4c72ad26435773aa357871c487fdebe | e7adede0645158bc59528ea2f62b730fe6dc15d6 | [CSFix] Wait until diagnostic mode if `@Sendable` mismatch is fatal
If no downgrade is required, let's fail the conversion until
diagnostic mode can record a fix. | [
{
"path": "lib/Sema/CSFix.cpp",
"patch": "@@ -31,6 +31,7 @@\n #include \"swift/Sema/ConstraintLocator.h\"\n #include \"swift/Sema/ConstraintSystem.h\"\n #include \"swift/Sema/CSFix.h\"\n+#include \"swift/Sema/FixBehavior.h\"\n #include \"swift/Sema/OverloadChoice.h\"\n #include \"swift/Sema/TypeVariableType... | 2026-03-11T03:24:33 |
golang/go | 2d1f571c6b420757b2a72b9e53d486840a1317f9 | f532f87a9895afc60b6ab17969c67e33d1ed1564 | cmd/compile, runtime: avoid improper control transfer instruction hints on riscv64
On RISC-V the JAL and JALR instructions provide Return Address
Stack(RAS) prediction hints based on the registers used (as per section
2.5.1 of the RISC-V ISA manual). When a JALR instruction uses X1 or X5
as the source register, it hin... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/RISCV64Ops.go",
"patch": "@@ -118,6 +118,7 @@ func init() {\n \tregCtxt := regNamed[\"X26\"]\n \tcallerSave := gpMask | fpMask | regNamed[\"g\"]\n \tr5toR6 := regNamed[\"X5\"] | regNamed[\"X6\"]\n+\tregX5 := regNamed[\"X5\"]\n \n \tvar (\n \t\tgpstore = regInfo{... | 2025-12-04T11:06:20 |
tensorflow/tensorflow | c21c40c048e9b35d032d31ce41809c2cadeb8fca | e6294782936fa1efd0b4be8725a6354e22d97fcd | Fix const-correctness issue in (experimental) minibenchmark C API.
PiperOrigin-RevId: 877442440 | [
{
"path": "tensorflow/lite/core/experimental/acceleration/mini_benchmark/c/c_api.cc",
"patch": "@@ -211,7 +211,7 @@ TfLiteMiniBenchmarkSettingsCustomValidationInfo(\n }\n \n void TfLiteMiniBenchmarkSettingsSetFlatBufferData(\n- TfLiteMiniBenchmarkSettings* settings, uint8_t* flatbuffer_data,\n+ TfLite... | 2026-03-02T17:40:26 |
kubernetes/kubernetes | 39560700da10121501f6d1777a03bee64e388010 | d820c046f5c520aab51ec850b263524b1fa5a4e9 | 1. Optionally Enforce TLS Validation: modified the created
http.Transport to configure CAData. The `Insecure` field is now
conditionally set using apiService spec.
2. Invalidate Bad Connections: when the availability check receives an
unexpected response from the configured endpoints, a timeout, or network
dial/reacha... | [
{
"path": "staging/src/k8s.io/kube-aggregator/pkg/apiserver/handler_proxy.go",
"patch": "@@ -37,6 +37,7 @@ import (\n \t\"k8s.io/klog/v2\"\n \tapiregistrationv1api \"k8s.io/kube-aggregator/pkg/apis/apiregistration/v1\"\n \tapiregistrationv1apihelper \"k8s.io/kube-aggregator/pkg/apis/apiregistration/v1/helpe... | 2026-02-20T00:53:47 |
denoland/deno | 578cb26ba9ef0b954387bcbb6e2e8b83eeb0236b | 4e6470ab22c27064e2a4c0eec6a4006831f58f09 | fix: format wasm stack traces per W3C spec (#32246)
## Summary
- Update wasm stack trace formatting to use the W3C WebAssembly Web API
spec format: `wasm-function[<funcIndex>]:0x<hexOffset>` instead of the
generic `line:col` format
- Update existing `wasm_url` test expectation to match
- Add new integration test (`wa... | [
{
"path": "tests/specs/run/wasm_stack_trace/__test__.jsonc",
"patch": "@@ -0,0 +1,5 @@\n+{\n+ \"args\": \"run --quiet wasm_stack_trace.js\",\n+ \"output\": \"wasm_stack_trace.out\",\n+ \"exitCode\": 0\n+}",
"additions": 5,
"deletions": 0,
"language": "Unknown"
},
{
"path": "tests/spec... | 2026-02-23T20:02:02 |
golang/go | cf0c42c2ca04c3ae9fa20ce9dd4f6bce301bd37b | bb221e8954b639e8790fd1d4a8cd35ff3a9340aa | cmd/compile/internal/reflectdata: fix divide by zero for zero-size array elements
When generating equality signatures for arrays with zero-size ASPECIAL
elements (e.g., [3]struct{_ [0]float64}), the compiler crashed with
a divide by zero error when computing the loop unroll factor.
Skip comparison code generation for... | [
{
"path": "src/cmd/compile/internal/reflectdata/alg.go",
"patch": "@@ -785,6 +785,9 @@ func (e *eqSigBuilder) build(t *types.Type) {\n \t\t\t// The generated loops are kind of inefficient as well,\n \t\t\t// so unroll the loop a bit.\n \t\t\tconst unrollSize = 32 // make loop body compare around this many b... | 2026-01-25T14:59:25 |
swiftlang/swift | 49f4d04703c4ebb334a41d201ef2b53493a30195 | 11070797cf5196d72d63708e1a9a1538a7161aff | [AST] Ensure `Type` diagnostic args are not solver allocated
Replace any type variables or placeholders with ErrorType, which will
just print as `_`. | [
{
"path": "lib/AST/DiagnosticArgument.cpp",
"patch": "@@ -11,6 +11,7 @@\n //===----------------------------------------------------------------------===//\n \n #include \"swift/AST/DiagnosticArgument.h\"\n+#include \"swift/AST/Types.h\"\n #include \"swift/Basic/Assertions.h\"\n \n using namespace swift;\n@@... | 2026-03-10T23:42:20 |
mrdoob/three.js | a0daeb5b9f1d798ac8354b18d4024736fe76a6d4 | 5d4eeb4ca76ae43102429e54c19467fc3f33f911 | Improved MaterialX example (#31541)
* Improved MaterialX example.
* Potential fix for code scanning alert no. 3610: Unused variable, import, function or class
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
* MaterialXLoader: Set transparent/side when ... | [
{
"path": "examples/jsm/loaders/MaterialXLoader.js",
"patch": "@@ -893,21 +893,16 @@ class MaterialXNode {\n \n \t\t}\n \n-\t\t// Auto-enable transparency when opacity or transmission is non-default\n-\t\tconst hasNonDefaultOpacity = opacityNode && opacityNode.value !== undefined && opacityNode.value < 1.0;... | 2025-07-31T18:46:18 |
tensorflow/tensorflow | e6294782936fa1efd0b4be8725a6354e22d97fcd | 153966af5524d2154605c325d806b03b414e7c37 | Add defensive validation to the split_task_done_callback in BatchResourceBase::SplitInputTask to prevent crashes when a split task silently fails before populating its output tensor.
PiperOrigin-RevId: 877442161 | [
{
"path": "tensorflow/core/kernels/batching_util/batch_resource_base.cc",
"patch": "@@ -902,9 +902,30 @@ absl::Status BatchResourceBase::ConcatInputTensors(\n std::vector<Tensor> to_concatenate;\n to_concatenate.reserve(output->size());\n \n+ bool has_invalid_tensor = false;\n for (in... | 2026-03-02T17:39:50 |
denoland/deno | 4e6470ab22c27064e2a4c0eec6a4006831f58f09 | dcc2fe2ff7f96319becfc5586652f0a3da44c0e2 | fix(ext/node): remove fs.promises.fstat, not a public Node.js API (#32289)
Closes https://github.com/denoland/deno/issues/27423
`fs.promises` in Node.js does not expose `fstat` or other `f`-prefixed
APIs. The promise-based equivalent is `FileHandle.stat()`, which is
already supported via `handle.ts`.
This removes th... | [
{
"path": "ext/node/polyfills/fs.ts",
"patch": "@@ -24,7 +24,7 @@ import { exists, existsSync } from \"ext:deno_node/_fs/_fs_exists.ts\";\n import { fchmod, fchmodSync } from \"ext:deno_node/_fs/_fs_fchmod.ts\";\n import { fchown, fchownSync } from \"ext:deno_node/_fs/_fs_fchown.ts\";\n import { fdatasync, ... | 2026-02-23T19:56:04 |
golang/go | cc6923e839ff10581223a600fca805203d56acd5 | f809faeb8e2534da29e980ebd98dfbd4e8a7f4ba | cmd/compile: reduce lock/scheduler contention
During the parallel section of compilation, we limit the amount of
parallelism to prevent scheduler churn. We do this with a worker
scheduler, but it does not have insight on when a compilation is blocked
due to lock contention.
The symbol table was protected with a lock.... | [
{
"path": "src/cmd/compile/internal/gc/compile.go",
"patch": "@@ -142,73 +142,47 @@ func compileFunctions(profile *pgoir.Profile) {\n \t\t// Compile the longest functions first,\n \t\t// since they're most likely to be the slowest.\n \t\t// This helps avoid stragglers.\n+\t\t// Since we remove from the end ... | 2025-12-01T09:40:16 |
mrdoob/three.js | 26750486d6addf8916d83b70e486c5258ab649f9 | ba0568f4f51644ec2b6c81e177bd4a1ad4c1db52 | TSL: Fix blocky gaussian blur (#31528)
* Fix for blocky gaussian blur
Calculate a proper sigma from kernel-size to avoid blocky gaussian blur.
* Remove weightSum
* Remove 'mul' import
* Provide screenshots for checks
* Double kernel-radii for BloomNode
* Add comment to explain change of kernel-sizes
* Change de... | [
{
"path": "examples/jsm/tsl/display/BloomNode.js",
"patch": "@@ -364,7 +364,9 @@ class BloomNode extends TempNode {\n \n \t\t// gaussian blur materials\n \n-\t\tconst kernelSizeArray = [ 3, 5, 7, 9, 11 ];\n+\t\t// These sizes have been changed to account for the altered coefficents-calculation to avoid bloc... | 2025-07-31T16:06:41 |
swiftlang/swift | 11070797cf5196d72d63708e1a9a1538a7161aff | 237e8b231bc029e9b387937cad16e52a7bfe1fb6 | [AST] Factor out `Type::replaceTypeVariablesAndPlaceholdersWithErrors` | [
{
"path": "include/swift/AST/Types.h",
"patch": "@@ -1410,6 +1410,11 @@ class alignas(1 << TypeAlignInBits) TypeBase\n /// Otherwise, it returns the type itself.\n Type getReferenceStorageReferent();\n \n+ /// Replace all type variables and placeholders in the type with ErrorType.\n+ /// This is neces... | 2026-03-10T23:42:20 |
kubernetes/kubernetes | aee4ca0ee8c5ba01b773fccfb033d94e1605c8c4 | ea70974a0899b977087e183d5fb5f55bbf893e55 | Fix the pod startup timeout in the NoSNAT test
It was using a hardcoded timeout of 1 minute, as opposed to
framework.PodStartTimeout, which is 5 minutes, which is likely the
cause of some recent flakes.
Also, use a helper function. | [
{
"path": "test/e2e/network/no_snat.go",
"patch": "@@ -18,15 +18,13 @@ package network\n \n import (\n \t\"context\"\n-\t\"fmt\"\n \t\"net\"\n-\t\"time\"\n \n \t\"github.com/onsi/ginkgo/v2\"\n \t\"github.com/onsi/gomega\"\n \tv1 \"k8s.io/api/core/v1\"\n \tmetav1 \"k8s.io/apimachinery/pkg/apis/meta/v1\"\n-\t... | 2026-02-24T22:32:27 |
denoland/deno | c095dd46fdd994c94b2f8332a68106b976a7fa6e | c25bfa70d1cb05bdfce6b8c0ab48c03344167463 | fix: format wasm stack traces correctly, preserve context in unhandled rejection, improve cppgc inheritance perf (#32293)
Fixes https://github.com/denoland/deno/issues/30135
Fixes https://github.com/denoland/deno/issues/32239 | [
{
"path": "Cargo.lock",
"patch": "@@ -1929,9 +1929,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_core\"\n-version = \"0.385.0\"\n+version = \"0.386.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"e348ea58ad12f6bee5407768b571a8af09756246a45c83dfd27a5aeeb338c5e... | 2026-02-23T19:02:57 |
golang/go | 30dff416e42b0bd44237b7658eafc7063dda6b63 | f8b72802d7a7dd2bcb81bdaead80be802e16351b | cmd/compile: redo how equality functions are generated
Instead of generating an equality function for each type that
needs it, generate one per "signature". A "signature" is a
summary of the comparisons needed to check a type for equality.
For instance, the type
type S struct {
i int32
j uint32
s str... | [
{
"path": "src/cmd/compile/internal/reflectdata/alg.go",
"patch": "@@ -6,6 +6,9 @@ package reflectdata\n \n import (\n \t\"fmt\"\n+\t\"go/constant\"\n+\t\"strconv\"\n+\t\"strings\"\n \n \t\"cmd/compile/internal/base\"\n \t\"cmd/compile/internal/compare\"\n@@ -14,7 +17,6 @@ import (\n \t\"cmd/compile/interna... | 2025-11-29T01:17:24 |
mrdoob/three.js | 95febf473cc326ac2029c51442b2fea3348c5321 | 0f93b6f0a5cff38650452e888305be57306d376d | WebXRManager: Add Raw Camera Access module. (#31487)
* WebXRManager: Add raw camera access module support
* Remove unused test variables
* Raw Texture class
* Improve example
* Flip bool
* Address deleteTexture changes
* Update RawTexture.js
Improve JSDoc.
* Update RawTexture.js
Remove opaque property.
* Upd... | [
{
"path": "examples/files.json",
"patch": "@@ -475,6 +475,7 @@\n \t\t\"webaudio_visualizer\"\n \t],\n \t\"webxr\": [\n+\t\t\"webxr_ar_camera_access\",\n \t\t\"webxr_ar_cones\",\n \t\t\"webxr_ar_hittest\",\n \t\t\"webxr_ar_lighting\",",
"additions": 1,
"deletions": 0,
"language": "JSON"
},
{
... | 2025-07-30T20:40:36 |
golang/go | f8b72802d7a7dd2bcb81bdaead80be802e16351b | b408256be720c51ff1730d7a97389a975744a312 | encoding/json: fix typo in package doc.
Change-Id: Id5520757e4d73e56e533e4de4f5f303105c4339e
Reviewed-on: https://go-review.googlesource.com/c/go/+/738180
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
Auto-Submit: David Symonds <dsymonds@golang.org>
Reviewed-by: Carlos Amedee <carlos@golang.org>
Reviewed-by: Dav... | [
{
"path": "src/encoding/json/encode.go",
"patch": "@@ -26,7 +26,7 @@\n //\n // Due to the Go Backwards Compatibility promise (https://go.dev/doc/go1compat)\n // there are a number of behaviors this package exhibits that may cause\n-// interopability issues, but cannot be changed. In particular the following... | 2026-01-22T00:25:18 |
denoland/deno | 13457aff18e73222a2d39c0aece82825f3956c5f | 6998e65d6866348677e45d5a370361a11c519ed8 | fix(ext/node): enable test-zlib-invalid-input-memory and test-zlib-un… (#32284)
Fixes two previously disabled zlib Node.js compatibility tests.
- **`parallel/test-zlib-invalid-input-memory.js`** — enabled and
passing.
Root cause was a two-layer problem:
1. `AsyncResource` in `async_hooks.ts` did not call `emitIni... | [
{
"path": "ext/node/polyfills/async_hooks.ts",
"patch": "@@ -8,6 +8,8 @@ import { core, primordials } from \"ext:core/mod.js\";\n import { validateFunction } from \"ext:deno_node/internal/validators.mjs\";\n import {\n AsyncHook,\n+ emitDestroy as emitDestroyHook,\n+ emitInit,\n executionAsyncId as in... | 2026-02-23T16:16:52 |
kubernetes/kubernetes | 3b5298f0a4ea3a040dc67212ed776a0db89da608 | 12a6d300c6d6794eea33f764a8c240d281868a4c | Fix resource claim DV | [
{
"path": "pkg/api/testing/validation.go",
"patch": "@@ -399,10 +399,12 @@ func verifyValidationEquivalence(t *testing.T, expectedErrs field.ErrorList, run\n \t\ttestCtx := rest.WithAllDeclarativeEnforcedForTest(ctx)\n \t\tallDeclarativeErrs := runValidations(testCtx)\n \n-\t\t// The matcher here is more sp... | 2026-02-02T18:13:55 |
mrdoob/three.js | 0f93b6f0a5cff38650452e888305be57306d376d | d786e5e1ab9d1787b0373be4dfd484aa9953b670 | PointsNodeMaterial: Clarify docs for `sizeNode`. (#31529)
* PointsNodeMaterial: Clarify docs for `sizeNode`.
* Update PointsNodeMaterial.js
Fix typo.
* Update PointsNodeMaterial.js | [
{
"path": "src/materials/nodes/PointsNodeMaterial.js",
"patch": "@@ -35,6 +35,11 @@ class PointsNodeMaterial extends SpriteNodeMaterial {\n \t\t/**\n \t\t * This node property provides an additional way to set the point size.\n \t\t *\n+\t\t * Note that WebGPU only supports point primitives with 1 pixel siz... | 2025-07-30T08:47:42 |
golang/go | b408256be720c51ff1730d7a97389a975744a312 | 27fcec4d8f3041e845762303d85d868cc3e351e8 | cmd/compile: fix loopvar version detection with line directives
The Go loop variable semantics changed in Go 1.22: loop variables are now
created per-iteration instead of per-loop. The compiler decides which
semantics to use based on the Go version in go.mod.
When go.mod specifies go 1.21 and the code is built with a... | [
{
"path": "src/cmd/compile/internal/loopvar/loopvar_test.go",
"patch": "@@ -6,6 +6,7 @@ package loopvar_test\n \n import (\n \t\"internal/testenv\"\n+\t\"os\"\n \t\"os/exec\"\n \t\"path/filepath\"\n \t\"regexp\"\n@@ -381,3 +382,62 @@ func TestLoopVarVersionDisableGoBuild(t *testing.T) {\n \t\tt.Errorf(\"err... | 2026-01-21T06:57:14 |
swiftlang/swift | 6d8e676583f7d14e4191e951aa629820a842a74d | d1d3691cf6dbc8cd61aad53aff4c375cfe0827c1 | Update features.json and add `debug-info-explicit-dependency`
The new feature added will use new mechanism to pass module
dependencies in the debug info when explicit module build is used. This
allows tools like lldb to load explicit module directly, with the need
to embed all swift modules into dSYM or linked product... | [
{
"path": "lib/Option/features.json",
"patch": "@@ -56,6 +56,9 @@\n },\n {\n \"name\": \"api-digester-Xcc\"\n+ },\n+ {\n+ \"name\": \"debug-info-explicit-dependency\"\n }\n ]\n }",
"additions": 3,
"deletions": 0,
"language": "JSON"
}
] | 2026-03-10T22:03:29 |
denoland/deno | 6998e65d6866348677e45d5a370361a11c519ed8 | 12df8252d604c690a974f8b75d6a3b4ae6ef298d | fix(ext/node): support URL in child_process.fork modulePath (#32268)
## Summary
- Adds support for passing `URL` objects as the `modulePath` argument to
`child_process.fork()`, matching Node.js behavior
- Converts URL to file path using `toPathIfFileURL()` before string
validation
- Adds unit test for `fork()` with a ... | [
{
"path": "ext/node/polyfills/child_process.ts",
"patch": "@@ -45,6 +45,7 @@ import {\n convertToValidSignal,\n kEmptyObject,\n } from \"ext:deno_node/internal/util.mjs\";\n+import { toPathIfFileURL } from \"ext:deno_node/internal/url.ts\";\n import { kNeedsNpmProcessState } from \"ext:deno_process/40_p... | 2026-02-23T16:16:27 |
mrdoob/three.js | 1fffae9003d196023c7441a9ff0ca75514a490d4 | 0eb4c7a14e23351ebdaa67eb5b5090077ba6bfed | Src: Make `camera.reversedDepth` private (#31512)
* Make camera.reversedDepth private
* Update Camera.js
Fix JSDoc.
* Add getter for reversedDepth
* Access reversedDepth via getter
---------
Co-authored-by: Michael Herzog <michael.herzog@human-interactive.org> | [
{
"path": "src/cameras/Camera.js",
"patch": "@@ -29,14 +29,6 @@ class Camera extends Object3D {\n \n \t\tthis.type = 'Camera';\n \n-\t\t/**\n-\t\t * The flag that indicates whether the camera uses a reversed depth buffer.\n-\t\t *\n-\t\t * @type {boolean}\n-\t\t * @default false\n-\t\t */\n-\t\tthis.reverse... | 2025-07-28T09:04:57 |
kubernetes/kubernetes | 12a6d300c6d6794eea33f764a8c240d281868a4c | b8bd945f3e171947665e85f57da2fe177b7a0836 | Change strategy.go utils to mark handwritten validation errors properly | [
{
"path": "pkg/api/testing/validation.go",
"patch": "@@ -399,10 +399,10 @@ func verifyValidationEquivalence(t *testing.T, expectedErrs field.ErrorList, run\n \t\ttestCtx := rest.WithAllDeclarativeEnforcedForTest(ctx)\n \t\tallDeclarativeErrs := runValidations(testCtx)\n \n-\t\t// The matcher here is more sp... | 2026-02-02T18:12:32 |
golang/go | 27fcec4d8f3041e845762303d85d868cc3e351e8 | 478d86446e88dc9e0b46e08914cb564d7c705d1e | runtime: speed up cheaprand and cheaprand64
The current cheaprand performs 128-bit multiplication on 64-bit numbers
and truncate the result to 32 bits, which is inefficient.
A 32-bit specific implementation is more performant because it performs
64-bit multiplication on 32-bit numbers instead.
The current cheaprand6... | [
{
"path": "src/runtime/export_test.go",
"patch": "@@ -273,6 +273,10 @@ func CountPagesInUse() (pagesInUse, counted uintptr) {\n \treturn\n }\n \n+func Blocksampled(cycles, rate int64) bool { return blocksampled(cycles, rate) }\n+\n+func Cheaprand() uint32 { return cheaprand() }\n+func Cheaprand64() ... | 2026-01-23T03:44:50 |
denoland/deno | 12df8252d604c690a974f8b75d6a3b4ae6ef298d | 52a2337fbc6230922576d7d8aeff5d6dd1fc0f3d | fix(ext/node): support ipv6 host in `node:http` (#32258)
Closes #21864. Full reproduction of the bug:
```ts
import { once } from "node:events";
import { request } from "node:http";
await using _server = Deno.serve({ hostname: "::1" }, () => new Response());
const req = request("http://[::1]:8000").end();
const [res]... | [
{
"path": "ext/node/polyfills/http.ts",
"patch": "@@ -98,8 +98,12 @@ import { methods as METHODS } from \"node:_http_common\";\n import { deprecate } from \"node:util\";\n \n const { internalRidSymbol } = core;\n-const { ArrayIsArray, StringPrototypeToLowerCase, SafeArrayIterator } =\n- primordials;\n+cons... | 2026-02-23T15:46:00 |
mrdoob/three.js | fe5f4b298d35e373c95213d36a15dbe145fa3444 | 490c70a527d53891817b9177445ac76369eb28ac | Improved MaterialX import support to align with Blender's MaterialX exporter. (#31439)
* add determinant and inverse TSL nodes.
* add new materialx node support: ln, transform matrix, transpose, determinant, invert matrix, creatematrix, length, crossproduct, floor, place2d, reflect, refract, ifgreater, ifgreatereq, i... | [
{
"path": "examples/jsm/loaders/MaterialXLoader.js",
"patch": "@@ -1,20 +1,26 @@\n-import { FileLoader, Loader, TextureLoader, RepeatWrapping, MeshBasicNodeMaterial, MeshPhysicalNodeMaterial } from 'three/webgpu';\n+import {\n+\tFileLoader, Loader, TextureLoader, RepeatWrapping, MeshBasicNodeMaterial,\n+\tM... | 2025-07-27T22:42:37 |
swiftlang/swift | a2a120daab145cf24bc6fbc85541606cc347304c | eae5b17315db612e63da165a8a8fb7f7b6f55317 | Revert "ModuleInterface: Fix availability attributes on synthesized conformances."
This reverts commit 457debcf4d5e8984e48a39669e41faa6ac322304.
Resolves rdar://172144339. | [
{
"path": "lib/Frontend/ModuleInterfaceSupport.cpp",
"patch": "@@ -453,27 +453,18 @@ class InheritedProtocolCollector {\n return cache.value();\n \n cache.emplace();\n-\n- // Start with the decl itself and add its @available attributes to the list.\n- // Then do the same for each parent decl... | 2026-03-10T21:27:11 |
tensorflow/tensorflow | e11d2ef1991eaa6d5edb1820c1e6e2477b172adb | 4d4a0923dea74debf435a598067c68a5b3cb4648 | PR #38224: [ROCm] Use VLOG(1) for tracer teardown logs
Imported from GitHub PR https://github.com/openxla/xla/pull/38224
📝 Summary of Changes
The ROCm tracer was using LOG(INFO) in toolFinalize(). Those run during tracer teardown, so the messages were always printed and could still appear after logging was turned of... | [
{
"path": "third_party/xla/xla/backends/profiler/gpu/rocm_tracer.cc",
"patch": "@@ -490,7 +490,7 @@ int RocmTracer::toolInit(rocprofiler_client_finalize_t fini_func,\n \n void RocmTracer::toolFinalize(void* tool_data) {\n auto& obj = RocmTracer::GetRocmTracerSingleton();\n- LOG(INFO) << \"Calling toolFin... | 2026-03-02T15:04:03 |
kubernetes/kubernetes | b8bd945f3e171947665e85f57da2fe177b7a0836 | 0d151519f42cffee0b491261c5783d6dda7b0666 | Add logic to match errors according to the error origination | [
{
"path": "staging/src/k8s.io/apimachinery/pkg/util/validation/field/error_matcher.go",
"patch": "@@ -45,6 +45,7 @@ type ErrorMatcher struct {\n \tmatchDetail func(want, got string) bool\n \trequireOriginWhenInvalid bool\n \tmatchValidationStabilityLevel bool\n+\tmatchErrorOrigination... | 2026-02-02T18:06:48 |
mrdoob/three.js | 3bd02e1aaee0f0b3c9bcda5fc31a5da3f9172be7 | 9d7dfe77cc75185e4912331d7b0cca04cdf6e88b | TSL Transpiler: Fix operator precedence of `GLSLDecoder` (#31515) | [
{
"path": "examples/jsm/transpiler/GLSLDecoder.js",
"patch": "@@ -11,7 +11,7 @@ const arithmeticOperators = [\n ];\n \n const precedenceOperators = [\n-\t'*', '/', '%',\n+\t'/', '*', '%',\n \t'-', '+',\n \t'<<', '>>',\n \t'<', '>', '<=', '>=',",
"additions": 1,
"deletions": 1,
"language": "JavaS... | 2025-07-27T20:54:48 |
golang/go | 478d86446e88dc9e0b46e08914cb564d7c705d1e | 8f739162e6479e98b0950ac9dc2f69cd79031be2 | cmd/compile: on amd64 use 32bits copies for 64bits copies of 32bits values
Fixes #76449
This saves a single byte for the REX prefix per OpCopy it triggers on.
Change-Id: I1eab364d07354555ba2f23ffd2f9c522d4a04bd0
Reviewed-on: https://go-review.googlesource.com/c/go/+/731640
Reviewed-by: Michael Pratt <mpratt@google.c... | [
{
"path": "src/cmd/compile/internal/amd64/ssa.go",
"patch": "@@ -43,6 +43,10 @@ func ssaMarkMoves(s *ssagen.State, b *ssa.Block) {\n \t}\n }\n \n+func isGPReg(r int16) bool {\n+\treturn x86.REG_AL <= r && r <= x86.REG_R15\n+}\n+\n func isFPReg(r int16) bool {\n \treturn x86.REG_X0 <= r && r <= x86.REG_Z31\n... | 2025-12-20T13:11:35 |
swiftlang/swift | 116e96264a9b591771b7e477a175795c3a5b5a5c | 59adfcd02b6132bf82ae5b551c8c27a4f6ffdc0a | Sema: Resolve a couple of crashers that were added on main | [
{
"path": "validation-test/compiler_crashers_fixed/BindingSet-inferTransitiveKeyPathBindings-d24a05.swift",
"patch": "@@ -1,5 +1,5 @@\n // {\"kind\":\"typecheck\",\"original\":\"d61ccce6\",\"signature\":\"swift::constraints::inference::BindingSet::inferTransitiveKeyPathBindings()\",\"signatureAssert\":\"Ass... | 2026-03-10T18:40:58 |
tensorflow/tensorflow | 6b956c1939a3f24990b8c64c616dd347de2cfaee | 12e3496489460c791e18f2a16209dea3c77ca063 | Migrate deprecated tsl::errors to absl equivalents.
PiperOrigin-RevId: 877367170 | [
{
"path": "tensorflow/core/kernels/batch_kernels.cc",
"patch": "@@ -855,7 +855,7 @@ class UnbatchResource : public ResourceBase {\n .emplace(batch_key,\n WaitingCallback{deadline_micros, context, done})\n .second) {\n- return errors::AlreadyExists... | 2026-03-02T14:22:53 |
mrdoob/three.js | a1d8dde96682b797db51a0d6d4d2e270e866168d | 206a1383ba4dc090c0640eedecb2a007d60bbe48 | TSL: Introduce `boolean` for `uniform()` (#31507)
* introduce `boolean` for `uniform()`
* fix type | [
{
"path": "src/nodes/core/UniformNode.js",
"patch": "@@ -140,6 +140,20 @@ class UniformNode extends InputNode {\n \n \t}\n \n+\tgetInputType( builder ) {\n+\n+\t\tlet type = super.getInputType( builder );\n+\n+\t\tif ( type === 'bool' ) {\n+\n+\t\t\ttype = 'uint';\n+\n+\t\t}\n+\n+\t\treturn type;\n+\n+\t}\n... | 2025-07-26T03:58:26 |
golang/go | 3443ae086314e8cb7994166a5b63a8ab056b6c44 | ca5ffe0092363f21df2c57b50144ba056f260049 | net: fix some ineffectual assignments reported by ineffassign
Updates #35136
Change-Id: I5422a50dde51c0a57f135c83f4963053285a9bc2
GitHub-Last-Rev: 6db1a88da60fce3e4fd6697d5db75d55d53b2b49
GitHub-Pull-Request: golang/go#76704
Reviewed-on: https://go-review.googlesource.com/c/go/+/727080
Reviewed-by: Florian Lehner <le... | [
{
"path": "src/net/dial_test.go",
"patch": "@@ -1088,14 +1088,16 @@ func TestDialContext(t *testing.T) {\n \t\t\tvar c Conn\n \t\t\tswitch network {\n \t\t\tcase \"tcp\", \"tcp4\", \"tcp6\":\n-\t\t\t\traddr, err := netip.ParseAddrPort(ln.Addr().String())\n+\t\t\t\tvar raddr netip.AddrPort\n+\t\t\t\traddr, e... | 2025-12-06T01:35:22 |
tensorflow/tensorflow | 12e3496489460c791e18f2a16209dea3c77ca063 | 99cefbc8fff364046bcc0c450bf52ba4b4fdcbbe | Migrate deprecated tsl::errors to absl equivalents.
PiperOrigin-RevId: 877366327 | [
{
"path": "tensorflow/core/kernels/BUILD",
"patch": "@@ -3319,6 +3319,7 @@ tf_kernel_library(\n deps = [\n \"//tensorflow/core:framework\",\n \"//tensorflow/core/platform:regexp\",\n+ \"@com_google_absl//absl/status\",\n \"@com_google_absl//absl/strings\",\n ],\n )",
... | 2026-03-02T14:19:51 |
swiftlang/swift | 9d412de2c6c552a4595480075f4204c59311e03d | 6984b204b43800242cbebced10a63ef7ffd168b6 | Sema: Fix leading dot member chains with common result type
If common result type optimization binds the type variable
representing the member chain result before we attempt an
overload from the corresponding disjunction, the
UnresolvedMemberChainBase constraint would fail.
The specific situation this would occur was... | [
{
"path": "lib/Sema/CSSimplify.cpp",
"patch": "@@ -12011,25 +12011,10 @@ ConstraintSystem::simplifyUnresolvedMemberChainBaseConstraint(\n if (shouldAttemptFixes() && hasFixFor(memberLoc))\n return SolutionKind::Solved;\n \n- auto *memberRef = findResolvedMemberRef(memberLoc);\n- if (memberRe... | 2026-03-07T03:37:19 |
mrdoob/three.js | 206a1383ba4dc090c0640eedecb2a007d60bbe48 | e117b283555e0ccc5034fa5193b951bc987280ed | TSL: Double-check on the parents of the `atomic functions` to prevent errors (#31509)
* Double-check on the parents of the atomic functions to prevent errors.
* Update WGSLNodeBuilder.js | [
{
"path": "src/nodes/gpgpu/AtomicFunctionNode.js",
"patch": "@@ -113,7 +113,7 @@ class AtomicFunctionNode extends Node {\n \t\t}\n \n \t\tconst methodSnippet = `${ builder.getMethod( method, type ) }( ${ params.join( ', ' ) } )`;\n-\t\tconst isVoid = parents.length === 1 && parents[ 0 ].isStackNode === true... | 2025-07-26T03:57:55 |
kubernetes/kubernetes | 6256cef06e985d60427662e9b6dc79d15d89812b | ea70974a0899b977087e183d5fb5f55bbf893e55 | fix flaky logs test by retrying logs fetch
Signed-off-by: bishal7679 <bishalhnj127@gmail.com> | [
{
"path": "test/e2e/kubectl/logs.go",
"patch": "@@ -75,13 +75,13 @@ func testingDeployment(name, ns string, numberOfPods int32) appsv1.Deployment {\n \t\t\t\t\t\t\tName: \"container-1\",\n \t\t\t\t\t\t\tImage: imageutils.GetE2EImage(imageutils.Agnhost),\n \t\t\t\t\t\t\tCommand: []string{\"/bin/sh\", \"... | 2026-02-24T12:57:15 |
golang/go | b291c3c35c41ddd2db75c3b3ce8ae476fe11ea7b | d774ced6a97d3e354d92e874861fb24d7527e3cb | cmd/compile: fix typos in types2 api_test.go
Change-Id: Ifee1b0f590ebb6671efd61a289c8884a225f5d6b
GitHub-Last-Rev: 175ae95847b0108949459b881c2cd2144e74353e
GitHub-Pull-Request: golang/go#76782
Reviewed-on: https://go-review.googlesource.com/c/go/+/728980
Reviewed-by: Jorropo <jorropo.pgm@gmail.com>
Auto-Submit: Jorrop... | [
{
"path": "src/cmd/compile/internal/types2/api_test.go",
"patch": "@@ -1015,13 +1015,13 @@ func (r *N[C]) n() { }\n \t\tt.Errorf(`N.Method(...) returns %v for \"m\", but Info.Defs has %v`, gm, dm)\n \t}\n \tif gn != dn {\n-\t\tt.Errorf(`N.Method(...) returns %v for \"m\", but Info.Defs has %v`, gm, dm)\n+\... | 2025-12-10T17:52:23 |
mrdoob/three.js | 76ff87ad2a00cc3a76394be3b224604a20015ca9 | fa035e8814826eb6ef38543b638b7afa506a9e16 | Fix(OutlinePass):Exclude Line2 objects from outline computation (#31503) | [
{
"path": "examples/jsm/postprocessing/OutlinePass.js",
"patch": "@@ -494,37 +494,37 @@ class OutlinePass extends Pass {\n \n \t\tfunction VisibilityChangeCallBack( object ) {\n \n-\t\t\tif ( object.isMesh || object.isSprite ) {\n+\t\t\tif ( object.isPoints || object.isLine || object.isLine2 ) {\n \n-\t\t\t... | 2025-07-25T19:32:23 |
tensorflow/tensorflow | 9cc11539d2421db0499d456c3a57b4509ffb8f6f | ea75b85d5127cf10402bdab1af96d8bb4d8febcf | PR #37074: [ROCm] Reenable miopen autotune when xla_gpu_autotune_level == 0
Imported from GitHub PR https://github.com/openxla/xla/pull/37074
📝 Summary of Changes
Adapt GpuCompiler::AddConvAndGemmAutotuningPass to match pre refactor behavior of AMDGPUCompiler.
🎯 Justification
For ROCm we need to run miopen backend... | [
{
"path": "third_party/xla/xla/backends/gpu/autotuner/miopen.cc",
"patch": "@@ -420,6 +420,14 @@ MIOpenBackend::GetSupportedConfigs(const HloInstruction& instr) {\n return GetFusedConvolutionCustomCallConfigs(\n custom_call_instr, custom_call_instr->GetModule(), stream_executor());\n }\n... | 2026-03-02T14:15:27 |
swiftlang/swift | 247f01c955650ee2561fd2d129614e30b8846f32 | 675d8433fe12adc9b310d6fea2225b2b488cf533 | Sema: Add test case for bug that has since been fixed | [
{
"path": "test/Constraints/old_hack_related_ambiguities.swift",
"patch": "@@ -476,4 +476,20 @@ do {\n // 6.2 would reject this expression, even though it is valid\n func tooAggressiveShrink() {\n let _ = [1 / 1].map { $0 / 1.0 }\n+}\n+\n+// Another example rejected by 6.2 which we now accept as we should... | 2026-03-02T02:21:00 |
golang/go | d774ced6a97d3e354d92e874861fb24d7527e3cb | 6d89ab44cc783abb68d511e88723c2b8ebf4ca3b | cmd/go/internal/vcs: support git worktrees
Fixes golang/go#58218
Change-Id: Ia155b26514557cf822caf37e727e5a410b0a36a6
Reviewed-on: https://go-review.googlesource.com/c/go/+/736260
Reviewed-by: Michael Pratt <mpratt@google.com>
Reviewed-by: Junyang Shao <shaojunyang@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scop... | [
{
"path": "src/cmd/go/internal/vcs/vcs.go",
"patch": "@@ -35,10 +35,10 @@ import (\n // A Cmd describes how to use a version control system\n // like Mercurial, Git, or Subversion.\n type Cmd struct {\n-\tName string\n-\tCmd string // name of binary to invoke command\n-\tEnv []string ... | 2026-01-14T00:45:30 |
kubernetes/kubernetes | 30ce233ff0a9f779f8286b62f09da14b2a9d0642 | b08fa0cdf18610be74d9741cf361446a5f42ff76 | fix container restart rule error message | [
{
"path": "pkg/apis/core/validation/validation.go",
"patch": "@@ -3694,7 +3694,7 @@ func validateContainerRestartPolicy(policy *core.ContainerRestartPolicy, rules [\n \t}\n \n \tif len(rules) > 20 {\n-\t\tallErrs = append(allErrs, field.TooLong(fldPath.Child(\"restartPolicyRules\"), rules, 20))\n+\t\tallErr... | 2026-02-19T15:22:21 |
denoland/deno | 52a2337fbc6230922576d7d8aeff5d6dd1fc0f3d | 8cd0019f5b45b7a7219ae7412dacca5ebf932cae | fix(ext/node): add `openAsBlob` export to `node:fs` (#32261)
## Summary
- Implements `fs.openAsBlob()` which reads a file and returns a
`Promise<Blob>`, matching the Node.js API
- Adds the function to both named and default exports of `node:fs`
- Adds unit tests covering basic usage, the `type` option, and error
handl... | [
{
"path": "ext/node/polyfills/fs.ts",
"patch": "@@ -141,9 +141,19 @@ import {\n } from \"ext:deno_node/internal/fs/streams.mjs\";\n import {\n Dirent,\n+ getValidatedPath,\n toUnixTimestamp as _toUnixTimestamp,\n } from \"ext:deno_node/internal/fs/utils.mjs\";\n import { glob, globPromise, globSync } f... | 2026-02-23T15:38:02 |
mrdoob/three.js | 3752bd2796d0af59df4198c659eda434b0bfda5e | a4d93efe86b5a63995e3dc111c0398069279307f | WebGPURenderer: Improve and fix texture bindings manager (#31497)
* improve texture bindings
* cleanup
* Update webgpu_volume_lighting.jpg
* cleanup | [
{
"path": "src/renderers/common/Bindings.js",
"patch": "@@ -246,18 +246,29 @@ class Bindings extends DataMap {\n \n \t\t\t} else if ( binding.isSampledTexture ) {\n \n-\t\t\t\tconst texturesTextureData = this.textures.get( binding.texture );\n-\n-\t\t\t\tif ( binding.needsBindingsUpdate( texturesTextureData... | 2025-07-25T14:38:38 |
golang/go | 021d5ca042775537d707c6f5ae2f53f57dac243f | c04335e33a6915ae4edc9c9f94a909a46557f99a | cmd/compile: avoid extending when already sufficiently shifted on loong64
This reduces 744 instructions from the go toolchain binary on loong64.
file before after Δ %
asm 599282 599222 -60 -0.0100%
cgo 513606 513534 -72 -0.0140%
compile 2939250 ... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/LOONG64.rules",
"patch": "@@ -843,6 +843,11 @@\n \n (MOVBUreg (ANDconst [c] x)) => (ANDconst [c&0xff] x)\n \n+// Avoid extending when already sufficiently shifted.\n+(MOVBUreg x:(SRLconst [c] y)) && c >= 24 => x\n+(MOVHUreg x:(SRLconst [c] y)) && c >= 16 => x\n+(... | 2025-12-01T06:46:23 |
swiftlang/swift | 9e3d18eb9f37e7bb1453848d2120dfb641e0d123 | 6c211745f6f8873bcbdce54bc76573d333dc05cd | Sema: Recompute BindingSets when we begin salvage
In addition to the generation number, it is important to
recompute bindings when the constraint system transitions
from not doing salvage to salvage.
This fixes diagnostic regressions with an upcoming commit. | [
{
"path": "include/swift/Sema/CSBindings.h",
"patch": "@@ -431,17 +431,29 @@ class BindingSet {\n \n llvm::SmallPtrSet<TypeVariableType *, 4> AdjacentVars;\n \n- /// Set whenever transitive inference changes the binding set\n- /// after the constructor.\n- bool IsDirty = false;\n- /// Generation numbe... | 2026-02-27T19:36:11 |
tensorflow/tensorflow | cebc3ec0684a67cd10b8b31083e50e5c409087c9 | c104c927a05e6d902beb1a0b38d67ec53a84317b | [XLA:GPU] Move symbolic_tiled_hlo and symbolic_tiled_computation together.
Also drop the "symbolic_" prefix, since there is no difference anymore.
PiperOrigin-RevId: 877335602 | [
{
"path": "third_party/xla/xla/codegen/tiling/experimental/BUILD",
"patch": "@@ -16,13 +16,13 @@ package_group(\n )\n \n cc_library(\n- name = \"symbolic_tile\",\n+ name = \"tile\",\n srcs = [\n- \"symbolic_tile.cc\",\n+ \"tile.cc\",\n \"tiling_space.cc\",\n ],\n hdrs... | 2026-03-02T12:40:17 |
denoland/deno | 8cd0019f5b45b7a7219ae7412dacca5ebf932cae | 9e7fb63fe12f68e8e268756b14abce99dda0ae75 | fix: detect bound require reexports in cjs analysis (#32163)
Part of https://github.com/denoland/deno/issues/31347
Fixes https://github.com/denoland/deno/issues/27898
This update solves the module resolution. So the behaviour of stdio
output of `redocly` becomes the same as Node.js.
However, the problem of hanging i... | [
{
"path": "Cargo.lock",
"patch": "@@ -1780,9 +1780,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_ast\"\n-version = \"0.53.0\"\n+version = \"0.53.1\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"8ac5df28715465cff3f03294564f38c9cd3c24c4cfb965a32fd1327efa111b02\"... | 2026-02-23T15:27:18 |
mrdoob/three.js | 173555e053225eaaf3b94ab227d55910a349edea | e4139cf1eb119525616d85912f3710f7ff4815c8 | USDLoader: Fixed USDZ parsing. | [
{
"path": "examples/jsm/loaders/USDLoader.js",
"patch": "@@ -113,7 +113,7 @@ class USDLoader extends Loader {\n \t\t\t\t\t} else {\n \n \t\t\t\t\t\tconst text = fflate.strFromU8( zip[ filename ] );\n-\t\t\t\t\t\tdata[ filename ] = usda.parse( text, data );\n+\t\t\t\t\t\tdata[ filename ] = usda.parseText( te... | 2025-07-24T13:16:32 |
golang/go | a1150b5017b789c6dc22d2c3939f7df10baf3dff | 6b7206feb2df3116bd5c471813353ffec1ff25fe | cmd/compile/internal/pgo: error parsing profile (for pgo) after scaling
If a valid profile is scaled such that the samples/counts become 0,
an empty graph in which the compiler complain that we never saw a start line
since the graph has no nodes which is a misleading error message.
src/cmd/internal/pgo/pprof.go was m... | [
{
"path": "src/cmd/compile/internal/test/pgo_inl_test.go",
"patch": "@@ -365,3 +365,53 @@ func TestPGOHash(t *testing.T) {\n \t\tt.Errorf(\"output contains unexpected source line, out:\\n%s\", out)\n \t}\n }\n+\n+// TestPGOZeroValues tests that a profile with all sample values scaled to zero\n+// is treated... | 2025-11-28T08:27:09 |
swiftlang/swift | 6c211745f6f8873bcbdce54bc76573d333dc05cd | bf125742aa7930fe79b6ae6a9af0dbdd5fd42c91 | Sema: Fix small problem in inferTransitiveKeyPathBindings()
It looks like originally, we would only infer bindings from a
KeyPath type, which has invariant generic arguments. However,
nowadays we can infer a keypath root type from a function
type as well, because we allow keypath to function conversions.
So, if we in... | [
{
"path": "lib/Sema/CSBindings.cpp",
"patch": "@@ -657,6 +657,19 @@ void BindingSet::inferTransitiveProtocolRequirements() {\n } while (!workList.empty());\n }\n \n+static AllowedBindingKind flipBindingKind(AllowedBindingKind kind) {\n+ switch (kind) {\n+ case AllowedBindingKind::Exact:\n+ return All... | 2026-02-27T21:53:37 |
tensorflow/tensorflow | 41e257090eb66ddafeaad85cd76ab6c5f3ed532c | 2edc15b49458c2539edbae74fb4bff5c69180956 | [XLA:GPU] Roll forward concrete tiling propagation with a fix.
Reduction dims were stored in a set, that's why the tests were flaky. Now it is a vector.
Reverts d5d306e1049cec17602ec58378b16b3cba8c5ff7
PiperOrigin-RevId: 877307597 | [
{
"path": "third_party/xla/xla/codegen/tiling/experimental/symbolic_tile.cc",
"patch": "@@ -40,7 +40,6 @@ using ::llvm::SmallVector;\n using ::mlir::AffineExpr;\n using ::mlir::getAffineConstantExpr;\n using ::mlir::getAffineDimExpr;\n-using ::mlir::getAffineSymbolExpr;\n using ::mlir::MLIRContext;\n \n Sma... | 2026-03-02T11:08:40 |
kubernetes/kubernetes | fc53227b9004b1c6a6088603510b954974b4163b | 60433d43cf0bb83a2ac7d5e767137b3d510026ec | Fix FSWatcher goroutine leak by adding ctx to Run()
FSWatcher.Run() spawned a goroutine with no exit mechanism, causing a
goroutine leak. Add a ctx context.Context parameter to Run() so the
goroutine can exit cleanly when the context is canceled, and
defer-close the underlying fsnotify watcher on exit.
For kube-proxy... | [
{
"path": "cmd/kube-controller-manager/app/core.go",
"patch": "@@ -383,7 +383,7 @@ func newPersistentVolumeAttachDetachController(ctx context.Context, controllerCo\n \t\tcsiDriverInformer,\n \t\tcontrollerContext.InformerFactory.Storage().V1().VolumeAttachments(),\n \t\tplugins,\n-\t\tGetDynamicPluginProber... | 2026-02-24T02:30:34 |
mrdoob/three.js | 960880c75c805ca37a400121bef0b7b8ddff41b4 | a9a97866a0ce37faad926c18651260e51402aa5c | TSL: Add `debug()` for the stack when running outside the code flow (#31486) | [
{
"path": "src/nodes/utils/DebugNode.js",
"patch": "@@ -77,6 +77,6 @@ export default DebugNode;\n * @param {?Function} [callback=null] - Optional callback function to handle the debug output.\n * @returns {DebugNode}\n */\n-export const debug = ( node, callback = null ) => nodeObject( new DebugNode( node... | 2025-07-23T15:45:39 |
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.