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 |
|---|---|---|---|---|---|
golang/go | 6a8dbbecbfc32650841e737271384ffaba433292 | bffe7ad9f11b874429d6c2561b0383e931502164 | path/filepath: fix EvalSymlinks to return ENOTDIR on plan9
CL 155597 added a test to check EvalSymlinks returns ENOTDIR
for existing path which ends with a slash.
CL 404954 added a separate evalSymlinks implementation for plan9,
which has a kludge to ensure the ENOTDIR is returned in the above case.
Apparently the a... | [
{
"path": "src/path/filepath/symlink_plan9.go",
"patch": "@@ -16,8 +16,8 @@ func evalSymlinks(path string) (string, error) {\n \t\t// Check validity of path\n \t\t_, err := os.Lstat(path)\n \t\tif err != nil {\n-\t\t\t// Return the same error value as on other operating systems\n-\t\t\tif strings.HasSuffix(... | 2025-09-03T19:48:44 |
denoland/deno | 45d333a1c331926d7df80f63c533293be03b0070 | 2922072dec4816bc9286a6947456424e4400add2 | fix: enable keyring features and dont clear token when config is missing (#30468) | [
{
"path": "Cargo.lock",
"patch": "@@ -1104,6 +1104,16 @@ dependencies = [\n \"libc\",\n ]\n \n+[[package]]\n+name = \"core-foundation\"\n+version = \"0.10.1\"\n+source = \"registry+https://github.com/rust-lang/crates.io-index\"\n+checksum = \"b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6... | 2025-08-20T15:57:13 |
mrdoob/three.js | 6114fcc3fc42c16a71d5c29716a2537a410d8caf | 350d1c577796921e94cf26640d94b6167728958d | Nodes: Rename `remainder()` to `modInt()`. (#29092)
* fix remainder operator when forceWebGL is set to true
* rename remainder to modInt and mod to modFloat
* remove % code in operatorNode
* fix MathNode
* revert modFloat back to mod
* cleanup
* add nodes export
* added deprecated version
-----... | [
{
"path": "examples/webgpu_compute_texture.html",
"patch": "@@ -60,7 +60,7 @@\n \n \t\t\t\tconst computeTexture = Fn( ( { storageTexture } ) => {\n \n-\t\t\t\t\tconst posX = instanceIndex.remainder( width );\n+\t\t\t\t\tconst posX = instanceIndex.modInt( width );\n \t\t\t\t\tconst posY = instanceIndex.div( ... | 2024-08-11T03:21:46 |
tensorflow/tensorflow | 9f210d0ef3c52f314966eac3196747af598a5626 | 57c1006923cf9868201512c0211c7ad1fd409cfd | Use a deterministic device assignment for split compilation.
The big gap in split comp adoption so far has been the inability to run
multi-device tests (ExecuteReplicated). This was in part caused our inconsistent
treatment of device assignments (fixed in #35535). The other reason (addressed
here) is that the default ... | [
{
"path": "third_party/xla/xla/service/hlo_runner_pjrt.cc",
"patch": "@@ -980,6 +980,14 @@ std::string MakeFilename(const HloModule& module, const bool run_hlo_passes) {\n fingerprint_bytes.size());\n return absl::StrCat(absl::BytesToHexString(fingerprint_b... | 2025-12-18T22:54:51 |
golang/go | 594deca981f0dd4a9351569e7c3e6999838148e3 | 9df1a289ac64451042f6f14b7229ae5cd2217352 | cmd/link: simplify PE relocations mapping
The code for mapping Windows PE relocations to Go relocations was
difficult to follow and contains some duplicated code. Also, it was
mapping IMAGE_REL_AMD64_ADDR32 to R_PCREL instead of R_ADDR.
This CL commit simplifies the code and fixes the mapping. I haven't been
able to ... | [
{
"path": "src/cmd/link/internal/loadpe/ldpe.go",
"patch": "@@ -17,6 +17,7 @@ import (\n \t\"errors\"\n \t\"fmt\"\n \t\"io\"\n+\t\"strconv\"\n \t\"strings\"\n )\n \n@@ -348,102 +349,65 @@ func Load(l *loader.Loader, arch *sys.Arch, localSymVersion int, input *bio.Read\n \t\t\t\treturn nil, fmt.Errorf(\"relo... | 2025-05-13T09:24:30 |
denoland/deno | 2922072dec4816bc9286a6947456424e4400add2 | 0849b95ad3e1e3ae5983712be6368d6a414e0bf9 | fix(publish): handle precompile in jsx publishing (#30466) | [
{
"path": "cli/tools/publish/module_content.rs",
"patch": "@@ -206,13 +206,14 @@ impl<TSys: FsMetadata + FsRead> ModuleContentProvider<TSys> {\n import_source\n ));\n }\n- if !leading_comments_has_re(&JSX_FACTORY_RE) {\n+ let is_classic = jsx_options.jsx_runtime == \"classic\";\n+ ... | 2025-08-20T15:42:26 |
mrdoob/three.js | 2d6bf90313d794908eed10f775db451880e55903 | 9b6e790d87cc485b09ae297585d1331af770ced3 | WebGPUPipelineUtils: Fix blending with premultiplied alpha. (#29100)
* WebGPUPipelineUtils: Fix additive blending with premultiplied alpha.
* WebGPUPipelineUtils: Fix normal blending as well. | [
{
"path": "src/renderers/webgpu/utils/WebGPUPipelineUtils.js",
"patch": "@@ -280,11 +280,11 @@ class WebGPUPipelineUtils {\n \t\t\t\tswitch ( blending ) {\n \n \t\t\t\t\tcase NormalBlending:\n-\t\t\t\t\t\tsetBlend( GPUBlendFactor.SrcAlpha, GPUBlendFactor.OneMinusSrcAlpha, GPUBlendFactor.One, GPUBlendFactor.... | 2024-08-09T18:17:29 |
swiftlang/swift | a4bf189a7eb9c55a3d7dae9f22447e89959c3579 | 06f7bea2ba9d39b1b54927b6bd39945acdd98ea1 | [Diagnostics]: add RBI errors to existing diagnostic group | [
{
"path": "include/swift/AST/DiagnosticsSIL.def",
"patch": "@@ -1134,7 +1134,7 @@ NOTE(regionbasedisolation_isolated_conformance_introduced, none,\n \n // Error that is only used when the send non sendable emitter cannot discover any\n // information to give a better diagnostic.\n-ERROR(regionbasedisolation... | 2026-02-04T02:14:48 |
golang/go | cbdad4fc3cecbdfcee4e9d30df04916a151bfc16 | c2d85eb999fcd428a1cd71ed93805cbde0c16eaa | cmd/go: check pattern for utf8 validity before call regexp.MustCompile
Do not panic if the package path or the package version contains
invalid UTF-8 characters.
Fixes #75251
Change-Id: Ib787e74277cf814253857b911d378ea5e53d8824
Reviewed-on: https://go-review.googlesource.com/c/go/+/700815
Reviewed-by: Michael Matloo... | [
{
"path": "src/cmd/go/internal/modget/query.go",
"patch": "@@ -10,6 +10,7 @@ import (\n \t\"regexp\"\n \t\"strings\"\n \t\"sync\"\n+\t\"unicode/utf8\"\n \n \t\"cmd/go/internal/base\"\n \t\"cmd/go/internal/gover\"\n@@ -285,6 +286,11 @@ func reportError(q *query, err error) {\n \t// TODO(bcmills): Use errors.... | 2025-09-04T01:17:26 |
denoland/deno | 0849b95ad3e1e3ae5983712be6368d6a414e0bf9 | 6ca54279de2d05e40f6bfc75ade38d5893677bf0 | fix(ext/node): validate callback on `fs.mkdtemp` and `fs.stat` (#30454)
This allows
[parallel/test-fs-makeStatsCallback.js](https://github.com/nodejs/node/blob/v24.2.0/test/parallel/test-fs-makeStatsCallback.js)
and
[parallel/test-fs-make-callback.js](https://github.com/nodejs/node/blob/v24.2.0/test/parallel/test-fs-m... | [
{
"path": "ext/node/polyfills/_fs/_fs_mkdtemp.ts",
"patch": "@@ -4,12 +4,10 @@\n import { TextDecoder, TextEncoder } from \"ext:deno_web/08_text_encoding.js\";\n import { existsSync } from \"ext:deno_node/_fs/_fs_exists.ts\";\n import { mkdir, mkdirSync } from \"ext:deno_node/_fs/_fs_mkdir.ts\";\n-import {\... | 2025-08-20T13:38:06 |
mrdoob/three.js | 795e25ede307679efd89b3af8873dce405690e43 | ce3a4cdd97b4f6e5e6cfc0ba6eb445bb645d594b | fix getExtension() (#29102) | [
{
"path": "src/renderers/webgl-fallback/nodes/GLSLNodeBuilder.js",
"patch": "@@ -665,7 +665,7 @@ ${ flowData.code }\n \n \t\t\tif ( isBatchedMesh && ext.has( 'WEBGL_multi_draw' ) ) {\n \n-\t\t\t\tthis.enableExtension( 'GL_ANGLE_multi_draw', 'require' );\n+\t\t\t\tthis.enableExtension( 'GL_ANGLE_multi_draw',... | 2024-08-09T18:06:43 |
golang/go | c2d85eb999fcd428a1cd71ed93805cbde0c16eaa | ac82fe68aaec797a9677171b00241fba57f057bc | cmd/go: disable cgo by default if CC unset and DefaultCC doesn't exist
CL 621995 disrupted the behavior
introduced by CL 450739, now restore it.
Fixes #75340
Change-Id: Icd1a0eb970876995f9446e0547ceb9e78990f6ed
Reviewed-on: https://go-review.googlesource.com/c/go/+/703555
LUCI-TryBot-Result: Go LUCI <golang-scoped@... | [
{
"path": "src/cmd/go/internal/cfg/cfg.go",
"patch": "@@ -145,7 +145,8 @@ func defaultContext() build.Context {\n \tif buildcfg.DefaultCGO_ENABLED == \"1\" {\n \t\tdefaultCgoEnabled = true\n \t} else if buildcfg.DefaultCGO_ENABLED == \"0\" {\n-\t} else if runtime.GOARCH == ctxt.GOARCH && runtime.GOOS == ctx... | 2025-09-13T18:32:24 |
denoland/deno | a5d5f478d739af3929218fa057951213bd9e2e34 | efdcdf82c9cdddc9d24a5ebb4b67253ac14f4e6c | fix(unstable): parsing regex in selector with character class (#30462)
Fixes parsing a regex lint selector with a character class like
`[foo=/[a-z]/]`.
The parser just looked for the next `]` character and aborted there. It
didn't account for the regex grammar having this character too.
Fixes https://github.com/deno... | [
{
"path": "cli/js/40_lint_selector.js",
"patch": "@@ -159,6 +159,26 @@ export class Lexer {\n this.value = this.getSlice();\n }\n \n+ readBinAttrValue() {\n+ const s = this.i;\n+ let depth = 0;\n+ while (this.token !== Token.EOF) {\n+ if (this.token === Token.BracketClose) {\n+ i... | 2025-08-20T05:58:09 |
mrdoob/three.js | ce3a4cdd97b4f6e5e6cfc0ba6eb445bb645d594b | 0983a1a9edf4c265a7bbe3eae60ce75c2c5467cc | Docs: Fixed parameters of Audio.getVolume (#29099) | [
{
"path": "docs/api/ar/audio/Audio.html",
"patch": "@@ -136,7 +136,7 @@ <h3>[method:Float getPlaybackRate]()</h3>\n \t\tترجع القيمة الخاصة بـ[page:Audio.playbackRate playbackRate].\n \t\t</p>\n \n-\t\t<h3>[method:Float getVolume]( value )</h3>\n+\t\t<h3>[method:Float getVolume]()</h3>\n \t\t<p>\n \t\tإعادة ... | 2024-08-09T14:04:51 |
tensorflow/tensorflow | f644aa87f76850e916bf50a8eb4f64caf2c6cb77 | fbfba09a1b7a82e920a3f7348cc9b02d367a5f0b | PR #35482: Correctly generate compile_commands.json
Imported from GitHub PR https://github.com/openxla/xla/pull/35482
Sometime json incorrectly parse compile commands from bazel, and we end up passing them as
```
"-isystem path/to/includes"
```
to `clangd`, and these flags parsed incorrectly
Copybara import of the ... | [
{
"path": "third_party/xla/build_tools/lint/generate_compile_commands.py",
"patch": "@@ -67,7 +67,11 @@ def from_args_list(cls, args_list: list[str]) -> \"CompileCommand\":\n if arg.endswith(\".cc\"):\n cc_file = arg\n \n- filtered_args.append(arg)\n+ # Split generated commands, beca... | 2025-12-18T15:57:35 |
kubernetes/kubernetes | d6d863934917c6b0ac9460855f9b8e8ac0b0bd1a | c180d6762d7ac5059d9b50457cafb0d7f4cf74a9 | Fix queue hint for interpod antiaffinity | [
{
"path": "pkg/scheduler/framework/plugins/interpodaffinity/plugin.go",
"patch": "@@ -220,15 +220,27 @@ func (pl *InterPodAffinity) isSchedulableAfterPodChange(logger klog.Logger, pod\n \t\treturn fwk.QueueSkip, nil\n \t}\n \n-\t// Pod is deleted. Return Queue when the deleted pod matching the target pod's ... | 2025-11-17T11:40:58 |
golang/go | ac82fe68aaec797a9677171b00241fba57f057bc | 0b26678db2d042c6273c435df5cb5a37e7e04994 | bytes,strings: remove reference to non-existent SplitFunc
Fixes #75462
Updates #72841
Change-Id: Ie2cbbdb031578a3138ecc6e60c0025807f1990e6
Reviewed-on: https://go-review.googlesource.com/c/go/+/703675
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Auto-Submit: Alan Donovan <... | [
{
"path": "src/bytes/bytes.go",
"patch": "@@ -508,7 +508,7 @@ func Fields(s []byte) [][]byte {\n // It splits the slice s at each run of code points c satisfying f(c) and\n // returns a slice of subslices of s. If all code points in s satisfy f(c), or\n // len(s) == 0, an empty slice is returned. Every elem... | 2025-09-14T15:24:57 |
mrdoob/three.js | 69a853d054ee4c252e45546afb5dc6cc3195d84e | 6b126f1eb50187105cef179f768d5f03f08c2d87 | WebGPURenderer: Avoid using proxy in rendering cycle (#29094)
* fix import path
* avoid using proxy in rendering cycle | [
{
"path": "src/nodes/accessors/ReferenceNode.js",
"patch": "@@ -89,7 +89,7 @@ class ReferenceNode extends Node {\n \n \t\t}\n \n-\t\tthis.node = node;\n+\t\tthis.node = node.getSelf();\n \n \t}\n ",
"additions": 1,
"deletions": 1,
"language": "JavaScript"
},
{
"path": "src/nodes/accessor... | 2024-08-09T03:56:43 |
denoland/deno | efdcdf82c9cdddc9d24a5ebb4b67253ac14f4e6c | dabf9c79b31492ce44f7513e740e6d91ebda287a | fix(lsp): fix import specifiers in file rename changes (#30458) | [
{
"path": "cli/lsp/analysis.rs",
"patch": "@@ -5,6 +5,7 @@ use std::cmp::Ordering;\n use std::collections::HashMap;\n use std::collections::HashSet;\n use std::path::Path;\n+use std::str::FromStr;\n use std::sync::Arc;\n \n use deno_ast::SourceRange;\n@@ -55,6 +56,7 @@ use super::language_server;\n use supe... | 2025-08-19T20:46:59 |
tensorflow/tensorflow | 434dd85854d671c3ca94b16cf428a13d7540e9d4 | 5a0f4aee019fbee9e2b7cb857fae91db2a02aabe | Apply llvm-use-new-mlir-op-builder fixes
This migrates `builder.create<Op>()` => `Op::create()`
PiperOrigin-RevId: 846268375 | [
{
"path": "tensorflow/compiler/mlir/lite/quantization/common/quantization_lib/quantization_utils.h",
"patch": "@@ -645,8 +645,8 @@ class QuantizationPattern : public RewritePattern {\n if (!matchPattern(q.getOperand(), m_Constant(&attr))) {\n continue;\n }\n- ... | 2025-12-18T15:54:31 |
kubernetes/kubernetes | 145adcd522b6962648a3f925a9c6d1a0fcf0369e | c180d6762d7ac5059d9b50457cafb0d7f4cf74a9 | Fix queue hint for interpodaffinity when target pod is updated | [
{
"path": "pkg/scheduler/framework/plugins/interpodaffinity/plugin.go",
"patch": "@@ -173,6 +173,14 @@ func (pl *InterPodAffinity) isSchedulableAfterPodChange(logger klog.Logger, pod\n \tif err != nil {\n \t\treturn fwk.Queue, err\n \t}\n+\tif modifiedPod != nil && originalPod != nil && pod.UID == modifiedP... | 2025-11-21T14:51:49 |
golang/go | 0b26678db2d042c6273c435df5cb5a37e7e04994 | e2cfc1eb3affe8bcdfeca4a9f0a2d7902dbb940f | cmd/compile: fix mips zerorange implementation
A +8 was missed when simplifying this code in CL 700936.
Fixes #75477
Change-Id: Ic7b83322dc1373432b44f0b63607141195220380
Reviewed-on: https://go-review.googlesource.com/c/go/+/703937
Reviewed-by: Keith Randall <khr@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scope... | [
{
"path": "src/cmd/compile/internal/mips/ggen.go",
"patch": "@@ -5,6 +5,7 @@\n package mips\n \n import (\n+\t\"cmd/compile/internal/base\"\n \t\"cmd/compile/internal/objw\"\n \t\"cmd/compile/internal/types\"\n \t\"cmd/internal/obj\"\n@@ -17,7 +18,7 @@ func zerorange(pp *objw.Progs, p *obj.Prog, off, cnt in... | 2025-09-16T02:59:22 |
mrdoob/three.js | 94a841bed7cf1f251d796dd0856caea23f824580 | f71cb7a01c09556783dd25e55463d36fa047e66b | Nodes: Only use PMREM for background when blurriness is configured. (#29089)
* Nodes: Only use PMREM for background when blurriness is used.
* E2E: Update screenshots.
* CubeRenderTarget: Fix MRT support.
* E2E: Update screenshot. | [
{
"path": "src/renderers/common/CubeRenderTarget.js",
"patch": "@@ -54,8 +54,14 @@ class CubeRenderTarget extends WebGLCubeRenderTarget {\n \t\tif ( texture.minFilter === LinearMipmapLinearFilter ) texture.minFilter = LinearFilter;\n \n \t\tconst camera = new CubeCamera( 1, 10, this );\n+\n+\t\tconst curren... | 2024-08-08T22:20:43 |
denoland/deno | dabf9c79b31492ce44f7513e740e6d91ebda287a | 3a491a509a0aa46fb1e24e6091e14ad837bdebfb | fix(fmt): do not remove parens for jsdoc with `@satisfies` (#30453) | [
{
"path": ".dprint.json",
"patch": "@@ -78,11 +78,11 @@\n \"tests/specs/run/error_syntax_empty_trailing_line/error_syntax_empty_trailing_line.mjs\"\n ],\n \"plugins\": [\n- \"https://plugins.dprint.dev/typescript-0.94.0.wasm\",\n+ \"https://plugins.dprint.dev/typescript-0.95.9.wasm\",\n \"... | 2025-08-19T15:24:19 |
swiftlang/swift | c88519a83b58a6b7ae58b6cff8db9ed0351baeae | 389be8d92797fc4b4bedef76d85eac04bfc3cec3 | Reject @isolated(any) when we don't have the concurrency library
IRGen crashes on @isolated(any) functions if the Actor protocol isn't
available. It's safer to reject in the type checker in these cases.
Fixes rdar://165090740. | [
{
"path": "include/swift/AST/DiagnosticsSema.def",
"patch": "@@ -6182,8 +6182,8 @@ NOTE(distributed_actor_synchronous_access_distributed_computed_property,none,\n ERROR(concurrency_lib_missing,none,\n \"missing '%0' declaration, probably because the '_Concurrency' \"\n \"module was not imported\... | 2026-02-04T00:14:38 |
tensorflow/tensorflow | 5a0f4aee019fbee9e2b7cb857fae91db2a02aabe | a59ffc09ddd3bc77cf3dc669d92b691317b67222 | PR #35510: [ROCm] Initialze collectives to nullptr to force its allocation later
Imported from GitHub PR https://github.com/openxla/xla/pull/35510
📝 Summary of Changes
Initialize collectives pointer to nullptr
🎯 Justification
Gpu runtime options are initialized in TF and transferred to XLA to execute thunks. Sinc... | [
{
"path": "third_party/xla/xla/service/gpu/gpu_executable_run_options.h",
"patch": "@@ -92,7 +92,7 @@ class GpuExecutableRunOptions {\n bool enable_mock_collectives_ = false;\n std::optional<DeviceIdMap> gpu_global_device_ids_;\n CliqueIdCallback clique_id_callback_;\n- GpuCollectives* collectives_;\... | 2025-12-18T15:48:53 |
kubernetes/kubernetes | 5d536bfb8e6950233ea658a53c77fff62b26d115 | c180d6762d7ac5059d9b50457cafb0d7f4cf74a9 | DRA: log more information
For debugging double allocation of the same
device (https://github.com/kubernetes/kubernetes/issues/133602) it is necessary
to have information about pools, devices and in-flight claims. Log calls get
extended and the config for DRA CI jobs updated to enable higher verbosity for
relevant sour... | [
{
"path": "pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go",
"patch": "@@ -969,7 +969,7 @@ func (pl *DynamicResources) Reserve(ctx context.Context, cs fwk.CycleState, pod\n \t\t\tif err != nil {\n \t\t\t\treturn statusError(logger, fmt.Errorf(\"internal error, couldn't signal allocation... | 2025-12-15T10:54:19 |
golang/go | 61dc7fe30d16b920888123390c6965614e491a66 | ca0e03560df7279bc307da08db7237beb32b0d99 | iter: document that calling yield after terminated range loop causes runtime panic
The existing documentation isn't clear about the behaviour of when
the iterator function ignores the value returned from the yield function.
The changes here update the documentation, to explicitly explain
that.
Change-Id: I24a8198c3d... | [
{
"path": "src/iter/iter.go",
"patch": "@@ -28,6 +28,8 @@ or index-value pairs.\n Yield returns true if the iterator should continue with the next\n element in the sequence, false if it should stop.\n \n+Yield panics if called after it returns false.\n+\n For instance, [maps.Keys] returns an iterator that p... | 2025-09-15T17:04:04 |
denoland/deno | 3a491a509a0aa46fb1e24e6091e14ad837bdebfb | f0a006ff34e5e545006544b8e08a6db7a0f1dddd | fix(ext/node): TLS emit close event on parent socket (#30451)
Fixes https://github.com/denoland/deno/issues/28543 | [
{
"path": "ext/node/polyfills/_tls_wrap.js",
"patch": "@@ -119,6 +119,7 @@ export class TLSSocket extends net.Socket {\n manualStart: true, // This prevents premature reading from TLS handle\n });\n if (socket) {\n+ this.on(\"close\", () => this._parent?.emit(\"close\"));\n this._pa... | 2025-08-19T13:31:23 |
swiftlang/swift | 7f8398e60b3eb0858e0c3d42383631df7e121d51 | 0682923f45b27813e6ea36258f791bc4076aad6d | [Backtracing] Improve debug option on Windows.
Made the debug option on Windows work better.
rdar://101623384 | [
{
"path": "stdlib/public/libexec/swift-backtrace/TargetLinux.swift",
"patch": "@@ -284,13 +284,20 @@ class Target {\n }\n }\n \n- func withDebugger(_ body: () -> ()) throws {\n+ enum DebuggerResult {\n+ case abort\n+ case handOffToDebugger\n+ }\n+\n+ func withDebugger(_ body: () -> DebuggerR... | 2026-01-13T12:08:56 |
kubernetes/kubernetes | 5be527b78eef632ada5e13c063c03f5810ec6a55 | 76b76c2d523f29f3d57896309aba0422c736d93d | Scheduler: Fix GatedPods metric desync in unschedulable queue
Previously, when a Pod residing in the 'unschedulablePods' queue was updated and subsequently rejected by PreEnqueue plugins (returning 'Wait'), the logic in 'moveToActiveQ' would return early because the Pod was already present in the queue.
This caused t... | [
{
"path": "pkg/scheduler/backend/queue/scheduling_queue.go",
"patch": "@@ -655,11 +655,11 @@ func (p *PriorityQueue) moveToActiveQ(logger klog.Logger, pInfo *framework.Queue\n \t\t\tif p.backoffQ.has(pInfo) {\n \t\t\t\treturn\n \t\t\t}\n-\t\t\tif p.unschedulablePods.get(pInfo.Pod) != nil {\n-\t\t\t\treturn\... | 2025-11-20T11:21:44 |
denoland/deno | ce1d2c8b04633cf1c06bc520675a3f30c0de1b5e | 75f1a9d5de26ba853c870cdd13c6a59820be5bf9 | fix(cache): cache excluded modules explicitly provided on the command line (#30442) | [
{
"path": "cli/graph_container.rs",
"patch": "@@ -55,6 +55,11 @@ pub struct CheckSpecifiersOptions<'a> {\n pub allow_unknown_media_types: bool,\n }\n \n+pub struct CollectSpecifiersOptions {\n+ /// Whether to include paths that are specified even if they're ignored.\n+ pub include_ignored_specified: boo... | 2025-08-18T21:54:44 |
tensorflow/tensorflow | 50c19ba0223294678c289f822db9d4bcaa640428 | 4e34cc6fb7c23a58f5a3b94436ba8b45321bcb0e | Apply llvm-use-new-mlir-op-builder fixes
This migrates `builder.create<Op>()` => `Op::create()`
PiperOrigin-RevId: 846246070 | [
{
"path": "third_party/xla/xla/mlir_hlo/deallocation/transforms/buffer_reuse.cc",
"patch": "@@ -394,8 +394,8 @@ bool hoistAllocs(Block& block) {\n void promoteToStack(memref::DeallocOp dealloc) {\n auto alloc = dealloc.getMemref().getDefiningOp<memref::AllocOp>();\n OpBuilder b(alloc);\n- auto alloca =... | 2025-12-18T14:47:02 |
swiftlang/swift | 0682923f45b27813e6ea36258f791bc4076aad6d | 54f9cee91999cc1b643b252a3d86933f3b35cfd0 | [Backtracing] Make the debug option work on Windows.
Hitting `D` when in the backtracer should do the same on Windows
that it does on macOS, namely launching `lldb` and attaching it to
the crashed program.
rdar://101623384 | [
{
"path": "stdlib/public/libexec/swift-backtrace/TargetWindows.swift",
"patch": "@@ -161,7 +161,6 @@ class Target {\n \n case CREATE_THREAD_DEBUG_EVENT:\n hThreads.append(event.u.CreateThread.hThread)\n- SuspendThread(event.u.CreateThread.hThread)\n \n default:\n ... | 2026-01-12T19:05:03 |
denoland/deno | 75f1a9d5de26ba853c870cdd13c6a59820be5bf9 | 9956a84637a3f7dde4d7322a14194af58ae02616 | fix(resolver): update "with --unstable-sloppy-imports" message to use "--sloppy-imports" (#30421) | [
{
"path": "libs/resolver/graph.rs",
"patch": "@@ -615,8 +615,7 @@ pub fn enhanced_resolution_error_message(error: &ResolutionError) -> String {\n message\n }\n \n-static RUN_WITH_SLOPPY_IMPORTS_MSG: &str =\n- \"or run with --unstable-sloppy-imports\";\n+static RUN_WITH_SLOPPY_IMPORTS_MSG: &str = \"or run... | 2025-08-18T17:59:27 |
kubernetes/kubernetes | 330dcb43d7415922d07b6836d411eb221fb03ed0 | c180d6762d7ac5059d9b50457cafb0d7f4cf74a9 | Fix goroutine leak in pluginmanager test
Use a buffered channel for the operation start signal to prevent
goroutines from blocking indefinitely. When the test receiver times
out before all goroutines send their signal, an unbuffered channel
causes those goroutines to block forever on the send operation.
The buffer siz... | [
{
"path": "pkg/kubelet/pluginmanager/operationexecutor/operation_executor_test.go",
"patch": "@@ -34,6 +34,10 @@ import (\n const (\n \tnumPluginsToRegister = 2\n \tnumPluginsToUnregister = 2\n+\t// maxConcurrentOperations is the buffer size for the ch channel.\n+\t// Must be >= max number of goroutines a... | 2025-12-14T21:45:08 |
mrdoob/three.js | e6edc5c1ae2434afaf53250c9fef8727ef56104d | dbc9b46f847f466ff7a1dfb6ced10ba2cf8ca4c0 | examples: Fix title of webgpu_performance.html (#29086)
Sequel of !29077 | [
{
"path": "examples/webgpu_performance.html",
"patch": "@@ -1,7 +1,7 @@\n <!DOCTYPE html>\n <html lang=\"en\">\n \t<head>\n-\t\t<title>three.js webgl - GLTFloader</title>\n+\t\t<title>three.js webgpu - GLTFloader</title>\n \t\t<meta charset=\"utf-8\">\n \t\t<meta name=\"viewport\" content=\"width=device-wid... | 2024-08-08T12:20:59 |
swiftlang/swift | 54f9cee91999cc1b643b252a3d86933f3b35cfd0 | 22df6cde25683dd19b57e697348b3a253b11587b | [Backtracing] Fix typos, tidy up.
Fix a couple of typos and remove some `print()` statements that
were added for debugging.
rdar://101623384 | [
{
"path": "stdlib/public/RuntimeModule/Dwarf.swift",
"patch": "@@ -598,18 +598,8 @@ class DwarfReader<S: DwarfSource & AnyObject> {\n \n self.source = source\n self.shouldSwap = shouldSwap\n- do {\n- self.lineNumberInfo = try readLineNumberInfo()\n- } catch {\n- print(\"Failed to rea... | 2026-01-12T11:55:14 |
denoland/deno | 9956a84637a3f7dde4d7322a14194af58ae02616 | 9b1d8d5f2b8fd07250a779ce3a16ced18a0f1a71 | fix(ext/node): bad compression caused by invalid brotli params (#30437)
Fixes https://github.com/denoland/deno/issues/30306
Fixes https://github.com/denoland/deno/issues/30430
Fixes https://github.com/denoland/deno/issues/29755 | [
{
"path": "ext/node/ops/zlib/mod.rs",
"patch": "@@ -4,6 +4,10 @@ use std::borrow::Cow;\n use std::cell::RefCell;\n use std::rc::Rc;\n \n+use brotli::enc::StandardAlloc;\n+use brotli::enc::encode::BrotliEncoderDestroyInstance;\n+use brotli::enc::encode::BrotliEncoderOperation;\n+use brotli::enc::encode::Brot... | 2025-08-18T17:19:29 |
mrdoob/three.js | 6697bd1640fa4dd236fa585d53de553f99aea197 | 609ba9c90aba7016e480ff861c2cf1756e5b7292 | WebGPURenderer: Fix instance meshes that shares the same count (#29066)
* WebGPURenderer: Fix instance meshes sharing same count
* cover only instances meshes | [
{
"path": "src/renderers/common/RenderObject.js",
"patch": "@@ -263,7 +263,7 @@ export default class RenderObject {\n \n \t\tif ( object.count > 1 ) {\n \n-\t\t\tcacheKey += object.count + ',';\n+\t\t\tcacheKey += object.count + ',' + object.uuid + ',';\n \n \t\t}\n ",
"additions": 1,
"deletions": 1... | 2024-08-05T15:54:48 |
denoland/deno | 9b1d8d5f2b8fd07250a779ce3a16ced18a0f1a71 | e4a47febcd6331107773f981cfb856007955d7b7 | fix(ext/node): `os.setPriority` and `os.getPriority` compatibility (#30383)
Closes #30405
Changes in this PR:
- Fixes `os.setPriority()` on Windows.
- Validates the function parameters correctly and constructs
`NodeSystemError` on op call error.
- Allows [parallel/test-os-process-priority.js](https://github.com/nodej... | [
{
"path": "ext/node/ops/os/priority.rs",
"patch": "@@ -21,8 +21,6 @@ mod impl_ {\n use libc::PRIO_PROCESS;\n use libc::id_t;\n \n- const PRIORITY_HIGH: i32 = -14;\n-\n // Ref: https://github.com/libuv/libuv/blob/55376b044b74db40772e8a6e24d67a8673998e02/src/unix/core.c#L1533-L1547\n pub fn get_prior... | 2025-08-18T17:07:28 |
mrdoob/three.js | 239b639fbb6af1330c137727c03b571044663b73 | 364f90e7b0207564ab4e163daa968ce06af8ff99 | Fix colorsTexture size (#29061) | [
{
"path": "src/objects/BatchedMesh.js",
"patch": "@@ -206,7 +206,7 @@ class BatchedMesh extends Mesh {\n \n \t_initColorsTexture() {\n \n-\t\tlet size = Math.sqrt( this._maxIndexCount );\n+\t\tlet size = Math.sqrt( this._maxInstanceCount );\n \t\tsize = Math.ceil( size );\n \n \t\t// 4 floats per RGBA pixel... | 2024-08-05T08:14:10 |
kubernetes/kubernetes | 53e5dcec97ca75b8f2265687c7f0b2332e737f5a | 04d87a4b6e72336ee9afb1e5b477223c96a8fcbb | Add stress tests for gRPC, HTTP, and TCP liveness probes
This commit adds e2e stress tests to verify that liveness probes do not cause
unexpected container restarts under load. The tests create many containers
(50 per test) with liveness probes configured to run every 1 second.
Three test cases are included:
- HTTP l... | [
{
"path": "test/e2e_node/probe_stress_test.go",
"patch": "@@ -0,0 +1,232 @@\n+//go:build linux\n+// +build linux\n+\n+/*\n+Copyright 2025 The Kubernetes Authors.\n+\n+Licensed under the Apache License, Version 2.0 (the \"License\");\n+you may not use this file except in compliance with the License.\n+You ma... | 2025-12-10T05:46:48 |
swiftlang/swift | a677131c96ad3ff23abc67d55ba9d81ede38f6a2 | a02fea9c7ac7eac32cc586642a1ffc2002bb4f1f | [Backtracing] Tweak a few things after rebasing.
Fix a couple of issues with the rebase.
Also, add code to handle the debug exceptions (which we don't want
to crash the process).
rdar://101623384 | [
{
"path": "stdlib/public/RuntimeModule/ImageMap+Win32.swift",
"patch": "@@ -87,7 +87,7 @@ let EnumProcessModules = K32EnumProcessModules\n let GetModuleInformation = K32GetModuleInformation\n \n extension ImageMap.Image: Equatable {\n- static func == (lhs: Self, rhs: Self) -> Bool {\n+ public static func ... | 2026-01-12T11:06:05 |
tensorflow/tensorflow | 408bf09796590bc66233afff288bf926e2736a9d | 9024ef1e4ccb9ad859154ca641cf16fe9595162f | [XLA:GPU]Disable TransposeDimensionGrouper pass and replace it with OTF normalization in emitters
0) Fix a bug (?) in normalization util when normalized dim contains a single dimension
1) Perform normalization OTF for Transpose emitter selection
2) Use normalized shape for unrolling decision in kLoop emitter
3) Use no... | [
{
"path": "third_party/xla/xla/backends/gpu/codegen/triton/triton_gemm_fusion_test.cc",
"patch": "@@ -562,7 +562,10 @@ ENTRY e {\n ErrorSpec{/*aabs=*/1e-3, /*arel=*/1e-3}));\n }\n \n-TEST_F(TritonGemmTest, SplitLhsNoncontractingTransposeRhs) {\n+// TODO: b/422676780 - Enable t... | 2025-12-18T11:59:57 |
denoland/deno | e4a47febcd6331107773f981cfb856007955d7b7 | f26bd5e0f20794cc3afd5954b242c547db91313e | fix(std/fs): implement `chmod` on windows (#30436)
Closes #4357
On Windows, `chmod` can only change read and write permissions
(https://learn.microsoft.com/en-us/cpp/c-runtime-library/reference/chmod-wchmod?view=msvc-170).
It doesn't implement distinct permissions among group, owner, or others.
Changes in this PR al... | [
{
"path": "cli/rt/file_system.rs",
"patch": "@@ -166,14 +166,27 @@ impl FileSystem for DenoRtSys {\n RealFs.mkdir_async(path, recursive, mode).await\n }\n \n+ #[cfg(unix)]\n fn chmod_sync(&self, path: &CheckedPath, mode: u32) -> FsResult<()> {\n self.error_if_in_vfs(path)?;\n RealFs.chmod_s... | 2025-08-18T17:06:22 |
mrdoob/three.js | 423f285d5d868dd128d6f143dc8ec31154018f57 | 11993395068d85be2014b8d236908a015162ec32 | NodeMaterial: Use `materialReference()` for env maps. (#28982)
* NodeMaterial: Use `materialReference()` for env maps.
* TSL: Move to TSL approach
* Move to TSL approach *2
* EnvironmentNode: Fix PMREM generation.
---------
Co-authored-by: sunag <sunagbrasil@gmail.com> | [
{
"path": "src/nodes/Nodes.js",
"patch": "@@ -90,6 +90,7 @@ export { default as CubeTextureNode, cubeTexture } from './accessors/CubeTexture\n export { default as InstanceNode, instance } from './accessors/InstanceNode.js';\n export { default as BatchNode, batch } from './accessors/BatchNode.js';\n export {... | 2024-08-01T11:07:29 |
kubernetes/kubernetes | cfa65ceed28a8d660219347ae40fd1417b861913 | 4999d9a9e459ac9e4d43cb578c6750a00015a938 | Fix policy of Pods with unknown SELinux label
Reset SELinuxChangePolicy of Pods that have no SELinux label set to
Recursive. Kubelet cannot mount with `-o context=<label>`, if the label is
not known.
This fixes the e2e test error revealed by the previous commit - it changed the
e2e test to check for events when no ev... | [
{
"path": "pkg/controller/volume/selinuxwarning/selinux_warning_controller.go",
"patch": "@@ -511,8 +511,15 @@ func (c *Controller) syncVolume(logger klog.Logger, pod *v1.Pod, spec *volume.Sp\n \tchangePolicy := v1.SELinuxChangePolicyMountOption\n \tif pod.Spec.SecurityContext != nil && pod.Spec.SecurityCon... | 2025-12-08T11:36:59 |
golang/go | c39abe065886f62791f41240eef6ca03d452a17b | e3ed0fbe6a4c7c5e91a4a82c1bcbc96b9ac37016 | runtime: fix TestSehUnwind
The various TestSehUnwind tests recently started to fail due an
unrelated refactor (in CL 698098) that made the stack frames to
not match the expected pattern. This CL updates the tests to
be more robust to such changes.
Fixes #75467
Change-Id: I7950332bb6ca54e4bf693d13e2490b3d9d901dde
Rev... | [
{
"path": "src/runtime/runtime-seh_windows_test.go",
"patch": "@@ -65,14 +65,20 @@ func TestSehLookupFunctionEntry(t *testing.T) {\n \t}\n }\n \n-func sehCallers() []uintptr {\n-\t// We don't need a real context,\n-\t// RtlVirtualUnwind just needs a context with\n-\t// valid a pc, sp and fp (aka bp).\n+//go... | 2025-09-15T14:02:22 |
swiftlang/swift | a02fea9c7ac7eac32cc586642a1ffc2002bb4f1f | 6d930d39ec205cceab0f132a9bd62f7dc42ea7d8 | [Frontend][Driver] Fix Windows paths for swiftCore.
For testing, we need to make sure that we pick up `libswiftCore.dll`
from the `bin` directory, rather than the copy in `lib`. Otherwise,
when we use the interpreter mode, we'll `LoadLibrary` the one from
`lib`, but Windows found the one in `bin` already, so we end u... | [
{
"path": "lib/Driver/ToolChains.cpp",
"patch": "@@ -1680,6 +1680,17 @@ void ToolChain::getRuntimeLibraryPaths(SmallVectorImpl<std::string> &runtimeLibP\n const llvm::opt::ArgList &args,\n StringRef SDKPath, bool shared) const {\n... | 2026-01-12T11:03:24 |
tensorflow/tensorflow | 90f6a0227660e4cf7997607f71c033ec36a5234c | fe216f0f45b330cd2a9cdb1b59621fd15ba085db | [XLA:GPU] Add method for printing unsatisfied Constraints for ConstraintExpression.
Helps with narrowing down which constraints are unsat. There can be many constraints (e.g. WGMMA in Mosaic), and while debugging it's unclear which one is violated at a glance.
As a follow up, we can also introduce names to each Const... | [
{
"path": "third_party/xla/xla/codegen/tiling/BUILD",
"patch": "@@ -208,7 +208,6 @@ xla_cc_test(\n srcs = [\"constraint_expression_test.cc\"],\n deps = [\n \":constraint_expression\",\n- \"//xla/hlo/analysis:indexing_analysis\",\n \"//xla/hlo/analysis:indexing_test_utils\",\n ... | 2025-12-18T10:48:01 |
mrdoob/three.js | 02c1580799c72da9fd33df77ccf2eaa54aebea7a | 63fb5298a098ef3a78244a21892ec54db2876198 | GLTFExporter: Preventing to write `null` for `attenuationDistance`. (#29035)
* Fix GLTFExporter.js by checking if attenuation distance is set
Having no attenuation distance set in the project/code, defaults to infitity. This property then cannot be set in GLTF file and automatically sets to NULL. NULL property cann... | [
{
"path": "examples/jsm/exporters/GLTFExporter.js",
"patch": "@@ -2837,7 +2837,12 @@ class GLTFMaterialsVolumeExtension {\n \n \t\t}\n \n-\t\textensionDef.attenuationDistance = material.attenuationDistance;\n+\t\tif ( material.attenuationDistance !== Infinity ) {\n+\n+\t\t\textensionDef.attenuationDistance ... | 2024-07-31T19:27:13 |
denoland/deno | a694cae55db010eeeff29b91ffdda185893acca9 | 5c79bc730094332172e2e8c41019e016e0652b36 | fix(ext/node): export `promises` from stream (#30427)
Closes #30423 | [
{
"path": "ext/node/polyfills/stream.ts",
"patch": "@@ -173,6 +173,7 @@ export {\n getDefaultHighWaterMark,\n PassThrough,\n pipeline,\n+ promises,\n Readable,\n setDefaultHighWaterMark,\n Stream,",
"additions": 1,
"deletions": 0,
"language": "Unknown"
},
{
"path": "tests/un... | 2025-08-17T13:26:29 |
golang/go | aa83aee7de1d69b207ab9669bb2b7dcdcbdf9383 | b9e2977f1d62bba2df652a3b57b4fdd15a756601 | net/http: clarify panic conditions in Handle, HandleFunc, AddInsecureBypassPattern
Add explicit mention that these methods panic on both pattern conflict
and invalid syntax.
Fixes #75226
Change-Id: If7dbfc44e1ec4624ab156f0e5d7e66cee2c2fef3
GitHub-Last-Rev: acc9a9c3338373f5a9376ff2eb1decd30bbee04d
GitHub-Pull-Request... | [
{
"path": "src/net/http/csrf.go",
"patch": "@@ -90,6 +90,10 @@ var sentinelHandler Handler = &noopHandler{}\n // would redirect to a pattern (e.g. after cleaning the path or adding a\n // trailing slash) are not.\n //\n+// AddInsecureBypassPattern panics if the pattern conflicts with one already\n+// regist... | 2025-09-13T17:54:40 |
kubernetes/kubernetes | aea05ad180edaffbb1f09b41b62d452779ed1da1 | 61c629cc57649bf0ce2378903027c83939d84109 | kubectl apply: fix --dry-run=client to show merged result
When a resource exists on the server, kubectl apply --dry-run=client
was outputting the unchanged server state instead of showing what
would result from applying the manifest.
Fix by computing the three-way merge patch (same as real apply) and
then applying it... | [
{
"path": "staging/src/k8s.io/kubectl/pkg/cmd/apply/apply.go",
"patch": "@@ -725,36 +725,43 @@ See https://kubernetes.io/docs/reference/using-api/server-side-apply/#conflicts`\n \t\treturn err\n \t}\n \n+\tmetadata, _ := meta.Accessor(info.Object)\n+\tannotationMap := metadata.GetAnnotations()\n+\tif _, ok ... | 2025-11-29T19:15:36 |
mrdoob/three.js | 63fb5298a098ef3a78244a21892ec54db2876198 | 5ffa324577273bd969852bd47efaca2175b6141a | Update bug_report.yml | [
{
"path": ".github/ISSUE_TEMPLATE/bug_report.yml",
"patch": "@@ -34,8 +34,10 @@ body:\n attributes:\n label: Live example\n value: |\n- * [jsfiddle-latest-release](https://jsfiddle.net/0joy93mr/)\n- * [jsfiddle-dev](https://jsfiddle.net/3Lsvf8xp/)\n+ * [jsfiddle-latest-r... | 2024-07-31T12:42:41 |
tensorflow/tensorflow | 3d8a8b3367d27329e37d983c2ce9242b6cfae15d | 5174b1f74c877706498a605e6a6a75244e705dd4 | PR #35353: [WIP ROCm] Fix flaky PersistedAutotuningTest.SingleOperationGetsAutotuned
Imported from GitHub PR https://github.com/openxla/xla/pull/35353
Clear the shared autotune cache in PersistedAutotuningTest::SetUp.
The test was randomly passing or failing depending on test execution order due to a shared global a... | [
{
"path": "third_party/xla/xla/service/gpu/gpu_compiler_test.cc",
"patch": "@@ -395,6 +395,13 @@ ENTRY e {\n \n class PersistedAutotuningTest : public HloTestBase {\n protected:\n+ void SetUp() override {\n+ AutotunerUtil::ClearAutotuneResults();\n+ xla_gpu_dump_autotune_results_to_ = GetUniqueTempF... | 2025-12-18T09:43:15 |
denoland/deno | 5c79bc730094332172e2e8c41019e016e0652b36 | 80c0998a0391ed22f325e0184a119ae17916891e | fix(ext/node): mTLS support for `node:tls` (#30426)
Fixes https://github.com/denoland/deno/issues/28341
- handle `secureContext.key` and `secureContext.cert` in `new
TLSSocket()`
- Fix serialize when `secureContext.ca` is an array
Fixes MQTT connect support:
```
New connection from 127.0.0.1:58119 on port 8883.
1755... | [
{
"path": "ext/net/02_tls.js",
"patch": "@@ -203,6 +203,7 @@ function startTlsInternal(\n hostname = \"127.0.0.1\",\n caCerts = [],\n alpnProtocols = undefined,\n+ keyPair = null,\n rejectUnauthorized,\n },\n ) {\n@@ -212,7 +213,7 @@ function startTlsInternal(\n caCerts,\n alpnP... | 2025-08-17T11:02:15 |
swiftlang/swift | 6d930d39ec205cceab0f132a9bd62f7dc42ea7d8 | 90ac30a78e2d3796948040f2cc93d603771fde8f | [Backtracing] Make tests work, plus various fixes.
Made the tests run, then fixed various issues with them.
rdar://101623384 | [
{
"path": "CMakeLists.txt",
"patch": "@@ -1471,6 +1471,7 @@ if(SWIFT_BUILD_STDLIB OR SWIFT_BUILD_SDK_OVERLAY)\n message(STATUS \"Volatile Support: ${SWIFT_ENABLE_VOLATILE}\")\n message(STATUS \"Pointer Bounds Support: ${SWIFT_ENABLE_EXPERIMENTAL_POINTER_BOUNDS}\")\n messa... | 2025-12-18T18:03:59 |
golang/go | b9e2977f1d62bba2df652a3b57b4fdd15a756601 | 8105d0ccc273afa717ba536f4d42dac3920c017e | crypto/internal/cryptotest: use linux-amd64_avx512 builder for SHA-NI
Updates #74772
Fixes #69592
Change-Id: I6a6a69647ab1785ed953f3ed2dfa04cd55576f2b
Cq-Include-Trybots: luci.golang.try:gotip-linux-amd64_avx512
Reviewed-on: https://go-review.googlesource.com/c/go/+/701315
Reviewed-by: Daniel McCarney <daniel@binaryp... | [
{
"path": "src/crypto/internal/cryptotest/implementations.go",
"patch": "@@ -10,6 +10,7 @@ import (\n \t\"internal/goarch\"\n \t\"internal/goos\"\n \t\"internal/testenv\"\n+\t\"strings\"\n \t\"testing\"\n )\n \n@@ -38,22 +39,33 @@ func TestAllImplementations(t *testing.T, pkg string, f func(t *testing.T)) {... | 2025-08-07T22:16:27 |
mrdoob/three.js | 5ffa324577273bd969852bd47efaca2175b6141a | 076fdf2d3fb6f1200e88fc6a5c639c63b4c642b1 | Update bug_report.yml
Update fiddles. | [
{
"path": ".github/ISSUE_TEMPLATE/bug_report.yml",
"patch": "@@ -34,8 +34,8 @@ body:\n attributes:\n label: Live example\n value: |\n- * [jsfiddle-latest-release](https://jsfiddle.net/g3atw6k5/)\n- * [jsfiddle-dev](https://jsfiddle.net/hjqw94c5/)\n+ * [jsfiddle-latest-re... | 2024-07-31T12:34:59 |
denoland/deno | 80c0998a0391ed22f325e0184a119ae17916891e | 20ed6848e7a249a48cd16525012179d2ebd094ae | fix(node/fs): cp should not create subfolder when both source and target are directories (#30408)
When both source and target paths are a directory, we should do nothing.
Previously, we would create a subdirectory in the target dir and copy
into that.
Fixes https://github.com/denoland/deno/issues/30407 | [
{
"path": "ext/fs/std_fs.rs",
"patch": "@@ -5,6 +5,7 @@\n use std::borrow::Cow;\n use std::fs;\n use std::io;\n+use std::io::ErrorKind;\n use std::io::Read;\n use std::io::Write;\n use std::path::Path;\n@@ -657,7 +658,14 @@ fn cp(from: &Path, to: &Path) -> FsResult<()> {\n use std::os::unix::fs::Per... | 2025-08-16T17:20:58 |
tensorflow/tensorflow | ad2b228d6f9222ce49445d5af86528632c0f47d7 | 07660093c8b57a104784200b3b590f0e43f9fd0f | [XLA:CPU] Add initial support of grouped convolutions with YNNPACK enabled.
There are currently a few limitations:
* Only supports F32xF32->F32 and BF16xBF16->F32. S8xS8->S32 should work too, but there seem to be some rewrite in the middle which changes the op from supported convolution to unsupported -- will track it... | [
{
"path": "third_party/xla/xla/backends/cpu/ynn_emitter.cc",
"patch": "@@ -432,19 +432,87 @@ static ynn_status DefineBatchMatrixMultiply(ynn_subgraph_t subgraph,\n }\n \n static ynn_status DefineConvolution(\n- ynn_subgraph_t subgraph, ynn_type input1_id_type, uint32_t input1_id,\n- uint32_t input2_id... | 2025-12-18T01:13:58 |
swiftlang/swift | 90ac30a78e2d3796948040f2cc93d603771fde8f | 4f90a96640fe4c07e6f4e73df8266c6e24a2cfbf | [Backtracing][Tests] Enable more tests on Windows.
We should run the backtracer's crash tests as well, now that is
supported.
rdar://101623384 | [
{
"path": "test/Backtracing/Crash.test",
"patch": "@@ -18,7 +18,7 @@\n // UNSUPPORTED: asan\n // REQUIRES: executable_test\n // REQUIRES: backtracing\n-// REQUIRES: OS=macosx || OS=linux-gnu\n+// REQUIRES: OS=macosx || OS=linux-gnu || OS=windows-msvc\n \n \n // CHECK: *** Program crashed: Bad pointer derefe... | 2025-12-15T15:47:45 |
mrdoob/three.js | 076fdf2d3fb6f1200e88fc6a5c639c63b4c642b1 | b331d8e6be9de067cdafe7c3b1f2a7631f0b9fef | Addons: Rename `SkyGPU` and `WaterGPU`. (#29029)
* Addons: Rename `SkyGPU` and `WaterGPU`.
* Fix export. | [
{
"path": "examples/jsm/Addons.js",
"patch": "@@ -173,6 +173,9 @@ export * from './objects/ShadowMesh.js';\n export * from './objects/Sky.js';\n export * from './objects/Water.js';\n export { Water as Water2 } from './objects/Water2.js';\n+export * from './objects/SkyMesh.js';\n+export * from './objects/Wat... | 2024-07-31T11:19:35 |
kubernetes/kubernetes | cb011623c845c88c42c7c04242e3bdfb0cd1ffa2 | 4cf195304caa519be476b367267f6c656bce19f7 | test: Fix image credential pulls test for CRI-O digest handling
This commit fixes the image credential pulls test by ensuring GetImageRef
and PullImage return the same digest reference format for credential validation.
The test was failing because:
1. PullImage returns a digest reference (e.g., localhost:5000/pause@s... | [
{
"path": "pkg/kubelet/kuberuntime/kuberuntime_image.go",
"patch": "@@ -70,7 +70,7 @@ func (m *kubeGenericRuntimeManager) PullImage(ctx context.Context, image kubecon\n \treturn \"\", nil, utilerrors.NewAggregate(pullErrs)\n }\n \n-// GetImageRef gets the ID of the image which has already been in\n+// GetIm... | 2025-11-24T08:27:14 |
golang/go | 8ace10dad2774a760b5028140a7d3f8140e6e1c0 | 3573227fe3fe8d141dbf06e257609a59871d5248 | os: add (*Process).WithHandle
Implement (*Process).WithHandle, add tests for all platforms.
Fixes #70352
Change-Id: I7a8012fb4e1e1b4ce1e75a59403ff6e77504fc56
Reviewed-on: https://go-review.googlesource.com/c/go/+/699615
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewe... | [
{
"path": "api/next/70352.txt",
"patch": "@@ -0,0 +1,2 @@\n+pkg os, method (*Process) WithHandle(func(uintptr)) error #70352\n+pkg os, var ErrNoHandle error #70352",
"additions": 2,
"deletions": 0,
"language": "Plain Text"
},
{
"path": "doc/next/6-stdlib/99-minor/os/70352.md",
"patch... | 2025-08-28T05:39:25 |
denoland/deno | 20ed6848e7a249a48cd16525012179d2ebd094ae | 5c30409a42e973a08d75ca6cd3fdaa062101b5a8 | fix(unstable): fix json repl bugs (#30415) | [
{
"path": "Cargo.lock",
"patch": "@@ -5926,6 +5926,7 @@ dependencies = [\n \"bitflags 2.8.0\",\n \"cfg-if\",\n \"libc\",\n+ \"memoffset\",\n ]\n \n [[package]]",
"additions": 1,
"deletions": 0,
"language": "Unknown"
},
{
"path": "cli/tools/repl/mod.rs",
"patch": "@@ -298,7 +298,8 ... | 2025-08-16T15:38:14 |
tensorflow/tensorflow | 5c0a168ea10caf7fbae3da7ea64deff6072ee11d | 6d3c0f702ff1a90769541228ac10ba1fa5774aa8 | Fix HloRunnerPjRt incorrectly not re-tupling results for replicated execution.
PiperOrigin-RevId: 845936810 | [
{
"path": "third_party/xla/xla/service/hlo_runner_pjrt.cc",
"patch": "@@ -699,6 +699,7 @@ absl::StatusOr<std::vector<Literal>> HloRunnerPjRt::ExecuteReplicatedImpl(\n std::vector<PjRtDevice*> replica_devices(options.num_devices, nullptr);\n std::vector<std::vector<std::unique_ptr<PjRtBuffer>>> argument_... | 2025-12-17T23:13:44 |
mrdoob/three.js | b331d8e6be9de067cdafe7c3b1f2a7631f0b9fef | 081a8b34a838b4c1c7383236b5eb153af3b8e1fa | Water2: Add `WebGPURenderer` version. (#29027)
* Water2: Add `WebGPURenderer` version.
* E2E: Update screenshot.
* Fix typo. | [
{
"path": "examples/files.json",
"patch": "@@ -418,7 +418,8 @@\n \t\t\"webgpu_tsl_vfx_tornado\",\n \t\t\"webgpu_video_panorama\",\n \t\t\"webgpu_volume_cloud\",\n-\t\t\"webgpu_volume_perlin\"\n+\t\t\"webgpu_volume_perlin\",\n+\t\t\"webgpu_water\"\n \t],\n \t\"webaudio\": [\n \t\t\"webaudio_orientation\",",
... | 2024-07-31T10:59:24 |
golang/go | 3573227fe3fe8d141dbf06e257609a59871d5248 | 68c6a73380e82a0ea9a93c1a75ab8a38f28f3a3d | os: add and use errProcessReleased
This error is already used in three places, so let's define it.
Change-Id: I73565d94aebcf3d5a278201d96839d82db85a2d4
Reviewed-on: https://go-review.googlesource.com/c/go/+/702436
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: M... | [
{
"path": "src/os/exec.go",
"patch": "@@ -14,8 +14,12 @@ import (\n \t\"time\"\n )\n \n-// ErrProcessDone indicates a [Process] has finished.\n-var ErrProcessDone = errors.New(\"os: process already finished\")\n+var (\n+\t// ErrProcessDone indicates a [Process] has finished.\n+\tErrProcessDone = errors.New(... | 2025-09-11T02:00:19 |
swiftlang/swift | 4f90a96640fe4c07e6f4e73df8266c6e24a2cfbf | 3463b1e145619ac10721e657c380b969c2854d4f | [Backtracing][Windows] Fix things to install swift-backtrace
We needed to modify `build.ps1` to copy `swift-backtrace.exe` into
position. Also tidy up the code in `AddSwiftStdlib.cmake`.
rdar://101623384 | [
{
"path": "stdlib/cmake/modules/AddSwiftStdlib.cmake",
"patch": "@@ -3286,6 +3286,7 @@ function(add_swift_target_executable name)\n foreach(arch ${SWIFT_SDK_${sdk}_ARCHITECTURES})\n set(VARIANT_SUFFIX \"-${SWIFT_SDK_${sdk}_LIB_SUBDIR}-${arch}\")\n set(VARIANT_NAME \"${name}${VARIANT_SUFFIX}\... | 2025-12-15T15:06:09 |
kubernetes/kubernetes | f58f81d91750f29b00c4a89565f4002a80599b35 | 03e14cc9432975dec161de1e52d7010f9711a913 | local-up-cluster.sh: support more recent containerd like 2.2
The kubekins image got updated from containerd 1.7 to 2.2, which broke
local-up-cluster.sh in the CI because more recent containerd uses single
quotation marks around strings instead of double quotation marks as before. The
search/replaced with sed no longer... | [
{
"path": "hack/local-up-cluster.sh",
"patch": "@@ -1404,8 +1404,8 @@ if [[ \"${KUBETEST_IN_DOCKER:-}\" == \"true\" ]]; then\n # configure and start containerd\n echo \"configuring containerd\"\n containerd config default > /etc/containerd/config.toml\n- sed -ie 's|root = \"/var/lib/containerd\"|root... | 2025-12-10T07:44:59 |
denoland/deno | 5c30409a42e973a08d75ca6cd3fdaa062101b5a8 | 044b62f702ce3369fa7c4482a5ced120b8fd2217 | fix(test): set cwd when running node compatibility tests (#30422)
Allows tests to resolve path correctly, such as this one
https://github.com/nodejs/node/blob/591ba692bfe30408e6a67397e7d18bfa1b9c3561/test/parallel/test-fs-cp.mjs#L35 | [
{
"path": "tests/node_compat/run_all_test_unmodified.ts",
"patch": "@@ -23,6 +23,7 @@ import {\n } from \"./common.ts\";\n import { generateTestSerialId } from \"./test.ts\";\n \n+const testSuitePath = new URL(import.meta.resolve(\"./runner/suite/\"));\n const testDirUrl = new URL(\"runner/suite/test/\", im... | 2025-08-16T11:36:20 |
mrdoob/three.js | 4118e2b8ffd2c2b3e55c6ce1e6911d73c272422e | ddd1bc654db5fdc3f58a5cbc689065b26864add0 | Nodes: Fix WGSL Vertex Code Directive Typo (#29023) | [
{
"path": "src/renderers/webgpu/nodes/WGSLNodeBuilder.js",
"patch": "@@ -691,7 +691,7 @@ ${ flowData.code }\n \n \t\t\tfor ( const directive of directives ) {\n \n-\t\t\t\tsnippets.push( `enable ${directive}` );\n+\t\t\t\tsnippets.push( `enable ${directive};` );\n \n \t\t\t}\n \n@@ -1195,7 +1195,7 @@ ${ flo... | 2024-07-30T23:05:45 |
golang/go | dabe2bb4fbf47e64729591e896f7231bda0c42a7 | 3ec0b25ab7a130709863cf0837190d2995e176a4 | [dev.simd] cmd/compile: fix holes in mask peepholes
It turns out that ".Masked" is implemented by VPANDQ *and* VPANDD.
The shape of bitwise AND doesn't matter, the correctness of the rules is
guaranteed by the way the mask is generated.
This CL fix the holes in the peephole rules.
Change-Id: I2d15c4d17afed6fdbb2f390... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/AMD64.rules",
"patch": "@@ -1768,6 +1768,10 @@\n (VPANDQ512 x (VPMOVMToVec32x16 k)) => (VMOVDQU32Masked512 x k)\n (VPANDQ512 x (VPMOVMToVec16x32 k)) => (VMOVDQU16Masked512 x k)\n (VPANDQ512 x (VPMOVMToVec8x64 k)) => (VMOVDQU8Masked512 x k)\n+(VPANDD512 x (VPMOVMT... | 2025-09-14T20:17:55 |
tensorflow/tensorflow | b788805f73714d15b6f5fb850ec60be6e8cf1a24 | 26ebc05f4f9498c99400a6c8e88378ef689255d4 | Remove unused `ReportError` RPC from coordination service.
PiperOrigin-RevId: 845899374 | [
{
"path": "third_party/xla/xla/pjrt/distributed/coordination/coordination_client.h",
"patch": "@@ -48,10 +48,6 @@ using tensorflow::PollForErrorRequest;\n using tensorflow::PollForErrorResponse;\n using tensorflow::RegisterTaskRequest;\n using tensorflow::RegisterTaskResponse;\n-using tensorflow::ReportErro... | 2025-12-17T21:36:40 |
denoland/deno | 044b62f702ce3369fa7c4482a5ced120b8fd2217 | 81589c402e0f2bf5d3c1d8ccd3b3740598601aaa | fix(ext/node): tls upgrades for used sockets (#30418)
Fixes `npm:postgres` support
Fixes https://github.com/denoland/deno/issues/30417
Fixes https://github.com/denoland/deno/issues/28551
Fixes https://github.com/denoland/deno/issues/28526
```
$ target/debug/deno -A repro.mjs
Result(1) [
{
current_database: "te... | [
{
"path": "ext/node/polyfills/internal_binding/stream_wrap.ts",
"patch": "@@ -33,6 +33,7 @@ const {\n Array,\n MapPrototypeGet,\n ObjectPrototypeIsPrototypeOf,\n+ PromiseResolve,\n PromisePrototypeThen,\n Symbol,\n TypedArrayPrototypeSlice,\n@@ -345,6 +346,12 @@ export class LibuvStreamWrap ext... | 2025-08-16T10:34:52 |
swiftlang/swift | e0845e14836304a29c6619c4079b2cb414ab286e | 38f91e2dbd77927f4f176dae7160d3fc2c909ab9 | [Backtracing] Made on-crash backtraces work for 64-bit.
On-crash backtracing is basically there for 64-bit Windows. It
won't work on 32-bit because of a Swift compiler issue, and there
is a little more work to do yet, but it is now working!
rdar://101623384 | [
{
"path": "stdlib/public/RuntimeModule/BacktraceJSONFormatter.swift",
"patch": "@@ -380,7 +380,7 @@ internal extension BacktraceJSONFormatter {\n if options.shouldSanitize {\n path = sanitizePath(path)\n }\n- write(\"\\\"path\\\": \\\"\\(path)\\\", \", flush: false)\n+ write(\"... | 2025-12-10T11:51:21 |
mrdoob/three.js | e117afe64e9d6c5eda56d1b7a30a0365c45d1ef6 | e32c522ec5086d8c7c12b7cb4b029a222d534225 | Nodes: Ensure that setBindGroup matches with @group in the shader. (#28953)
* add example
* fix bindgroup
* rename id to index | [
{
"path": "examples/webgpu_materials.html",
"patch": "@@ -25,7 +25,7 @@\n \t\t<script type=\"module\">\n \n \t\t\timport * as THREE from 'three';\n-\t\t\timport { tslFn, wgslFn, positionLocal, positionWorld, normalLocal, normalWorld, normalView, color, texture, uv, float, vec2, vec3, vec4, oscSine, triplana... | 2024-07-29T18:42:58 |
golang/go | 8320fe8f0e5283eb67429de30b4e24be6a85c7a7 | 080882a928c96f997a1cb67cef40d2cc6126ffcd | runtime: deduplicate syscall assembly for darwin
The darwin port provides different syscall functions that only
differ on how they handle the errors, and they are all written
in assembly.
This duplication can be removed by factoring out the error handling
logic to arch-agnostic Go code and leaving the assembly functi... | [
{
"path": "src/runtime/sys_darwin.go",
"patch": "@@ -10,37 +10,56 @@ import (\n \t\"unsafe\"\n )\n \n+//go:nosplit\n+func libcError() uintptr {\n+\terrPtr, _ := syscall(abi.FuncPCABI0(libc_error_trampoline), 0, 0, 0)\n+\treturn errPtr\n+}\n+func libc_error_trampoline()\n+\n // The X versions of syscall expe... | 2025-08-26T09:47:51 |
tensorflow/tensorflow | 24d56183bf16fb2de62d270a6cd36397cc9cdcad | 55afa175b0d9970eaa3a6edfab27fd04d3bdf1dc | PR #35339: Improve memory allocation error message
Imported from GitHub PR https://github.com/openxla/xla/pull/35339
📝 Summary of Changes
Show the actual error message when allocator fails, and fix stringification of an enum.
🎯 Justification
Without this, the error message is vague.
🚀 Kind of Contribution
Please... | [
{
"path": "third_party/xla/xla/stream_executor/cuda/cuda_memory_allocator.h",
"patch": "@@ -29,14 +29,14 @@ namespace stream_executor::gpu {\n // A type of memory allocator for kCollective memory space.\n enum class CollectiveAllocatorType { kNccl, kNvshmem };\n \n-template <typename T>\n-void AbslStringify... | 2025-12-17T18:32:16 |
denoland/deno | 410c66ad0d1ce8a5a3b1a2f06c932fb66f25a3c6 | aad62f642272c8d9921fa83569e85a17798374b9 | fix(bundle): allow json imports without attribute in deno bundle, support require of json (#30413)
Fixes https://github.com/denoland/deno/issues/30263. Fixes
https://github.com/denoland/deno/issues/30099.
Closes https://github.com/denoland/deno/issues/30114. | [
{
"path": "cli/factory.rs",
"patch": "@@ -1183,6 +1183,14 @@ impl CliFactory {\n }\n _ => None,\n },\n+ allow_json_imports: if matches!(\n+ self.flags.subcommand,\n+ DenoSubcommand::Bundle(_)\n+ ) {\n+ deno_resolver::loader... | 2025-08-15T21:49:22 |
mrdoob/three.js | 1ac4c6d5e2fc6919b51f9c51d058afb6d42a5e05 | 5ce4fa6149da08281e72be706df9c91f787418ec | TSL: Introduce `billboarding()` (#29011)
* ShaderNode: Fix defined() primitive input
* TSL: Introduce billboarding()
* rev | [
{
"path": "examples/webgpu_compute_particles_rain.html",
"patch": "@@ -24,7 +24,7 @@\n \t\t<script type=\"module\">\n \n \t\t\timport * as THREE from 'three';\n-\t\t\timport { tslFn, texture, uv, uint, positionWorld, modelWorldMatrix, cameraViewMatrix, timerLocal, timerDelta, cameraProjectionMatrix, vec2, i... | 2024-07-29T06:45:09 |
kubernetes/kubernetes | b1aebfcf7ea29f0ca13c125ab912a9f0e32cab02 | ce6ea2f4b0fe28c59b10196b9ee40f08d661c3bb | fixed order of tags | [
{
"path": "staging/src/k8s.io/api/node/v1/generated.proto",
"patch": "@@ -59,9 +59,9 @@ message RuntimeClass {\n // in a pod.\n // The Handler must be lowercase, conform to the DNS Label (RFC 1123) requirements,\n // and is immutable.\n+ // +required\n // +k8s:format=\"k8s-short-name\"\n // +k8s:... | 2025-12-09T01:05:40 |
swiftlang/swift | 38f91e2dbd77927f4f176dae7160d3fc2c909ab9 | d3ef70e5648f5fda9e8c03697889cebfc96f7aec | [Backtracing] Fix Linux and macOS builds.
There was a case-sensitivity problem, and a missing source file.
rdar://101623384 | [
{
"path": "stdlib/public/RuntimeModule/CMakeLists.txt",
"patch": "@@ -159,9 +159,9 @@ foreach(sdk ${SWIFT_SDKS})\n target_sources(${target}\n PRIVATE get-cpu-context-${arch}.asm)\n else()\n- message(STATUS \"Using get-cpu-context.s for target ${target}\")\n+ message(STATUS \"Usin... | 2025-10-15T12:25:22 |
golang/go | 080882a928c96f997a1cb67cef40d2cc6126ffcd | ac803b5949f6dbc5bfa559afe506d35f9e1b3195 | net: use context.AfterFunc in connect
This saves a goroutine when ctx can be but is not canceled during
the connect call.
The redundant fd.Close() call is removed, because the caller closes
the fd on error.
Change-Id: I124d7e480294a48ef74d5650d8ef0489bdfc64d6
Reviewed-on: https://go-review.googlesource.com/c/go/+/69... | [
{
"path": "src/net/fd_unix.go",
"patch": "@@ -74,46 +74,32 @@ func (fd *netFD) connect(ctx context.Context, la, ra syscall.Sockaddr) (rsa sysc\n \tif err := fd.pfd.Init(fd.net, true); err != nil {\n \t\treturn nil, err\n \t}\n-\tif deadline, hasDeadline := ctx.Deadline(); hasDeadline {\n-\t\tfd.pfd.SetWrite... | 2025-08-27T09:38:13 |
denoland/deno | dd571f88c0bb41ed8766d02fcc6f18107d7814d1 | 9b16106d286f731e9173df3d3b604fa51978ae7d | fix(outdated): use version tagged as latest if it satisfies the version req (#30412)
Fixes #29647. | [
{
"path": "cli/tools/pm/deps.rs",
"patch": "@@ -19,6 +19,7 @@ use deno_core::futures::future::try_join;\n use deno_core::futures::stream::FuturesOrdered;\n use deno_core::futures::stream::FuturesUnordered;\n use deno_core::serde_json;\n+use deno_npm::registry::NpmPackageInfo;\n use deno_package_json::Packag... | 2025-08-15T17:44:41 |
tensorflow/tensorflow | 9c9429b376626d7cfc83e65420de467ffee90a57 | 44e7ac6a6bd57628ab96d4f5192b7d34d9a8d47f | PR #35113: Enqueue cross-host send after send buffer definition events are recorded, not complete
Imported from GitHub PR https://github.com/openxla/xla/pull/35113
📝 Summary of Changes
This PR modifies `StreamExecutorGpuClient::ScheduleSendsOnLocalDevice` to enqueue cross-host sends as soon as the definition event o... | [
{
"path": "third_party/xla/xla/pjrt/gpu/se_gpu_pjrt_client.cc",
"patch": "@@ -793,7 +793,12 @@ void StreamExecutorGpuClient::ScheduleSendsOnLocalDevice(\n for (PreparedSend& prepared_send : prepared_sends) {\n // Wait until the buffer we want to send is fully materialized.\n for (const auto&... | 2025-12-17T15:12:23 |
mrdoob/three.js | 8ac32af6ba5ada30dce787ef3f5248fea36bd328 | d4b6c8f0a039478363c7cf63f6e2d84917ccc549 | Examples: Fix flickering/black screen on Apple devices with `webgpu_mesh_batch`. (#29002) | [
{
"path": "examples/webgpu_mesh_batch.html",
"patch": "@@ -17,17 +17,12 @@\n \t\t<a href=\"https://threejs.org\" target=\"_blank\" rel=\"noopener\">three.js</a> webgpu - batch mesh\n \t</div>\n \n-\t<div id=\"backend\" style=\"position: absolute; top: 200px; left: 0; color: #fff; background-color: rgba(0,0,... | 2024-07-28T13:44:57 |
kubernetes/kubernetes | 19d50f6340123b01d635cca24118b54784a7919b | 03e14cc9432975dec161de1e52d7010f9711a913 | Fix recording of "DRAOperationsDuration" metric by inverting "is_error" boolean. | [
{
"path": "pkg/kubelet/cm/dra/manager.go",
"patch": "@@ -226,7 +226,8 @@ func (m *Manager) reconcileLoop(ctx context.Context) {\n func (m *Manager) PrepareResources(ctx context.Context, pod *v1.Pod) error {\n \tstartTime := time.Now()\n \terr := m.prepareResources(ctx, pod)\n-\tkubeletmetrics.DRAOperationsD... | 2025-12-08T23:40:05 |
swiftlang/swift | bf9dd3ac550d0f2ad26ad7249aba151f950dfe0b | 3cdac6420049323a663b719970e0f30b07ab54f8 | [Backtracing] Make line numbers work.
Also fix things so that we use the right path separator, depending
on image type, and add support for `DW_AT_specification` attributes
on `DW_TAG_subprogram` entries.
rdar://101623384 | [
{
"path": "stdlib/public/RuntimeModule/Dwarf.swift",
"patch": "@@ -501,6 +501,8 @@ enum DwarfSection {\n @available(Backtracing 6.2, *)\n protocol DwarfSource {\n \n+ static var pathSeparator: String { get }\n+\n func getDwarfSection(_ section: DwarfSection) -> ImageSource?\n \n }\n@@ -1050,6 +1052,7 @@ ... | 2025-10-14T15:31:45 |
golang/go | ac803b5949f6dbc5bfa559afe506d35f9e1b3195 | 889e71c2ac43f22dbd41c0b935acac2e778c8f87 | cmd/go/internal/work: copy vet tool's stdout to our stdout
The go command connects both the stdout and stderr files of
its child commands (cmd/compile, cmd/vet, etc) to the go
command's own stderr. If the child command is supposed to
produce structure output on stderr, as is the case for
go vet -json or go fix -diff, ... | [
{
"path": "src/cmd/go/internal/work/exec.go",
"patch": "@@ -1184,6 +1184,7 @@ type vetConfig struct {\n \tPackageVetx map[string]string // map package path to vetx data from earlier vet run\n \tVetxOnly bool // only compute vetx data; don't report detected problems\n \tVetxOutput stri... | 2025-09-11T15:02:03 |
denoland/deno | b77b0be068a5fc2e9468752c58dfe9e49202483c | 4ade335fc8a028281f4ae8efca23d9cce3872c42 | refactor(resolver): improve and expose details of CouldNotResolveError (#30410)
Need this for deno-js-loader. | [
{
"path": "libs/resolver/graph.rs",
"patch": "@@ -25,6 +25,7 @@ use node_resolver::InNpmPackageChecker;\n use node_resolver::IsBuiltInNodeModuleChecker;\n use node_resolver::NpmPackageFolderResolver;\n use node_resolver::UrlOrPath;\n+use node_resolver::errors::NodeJsErrorCoded;\n use url::Url;\n \n use crat... | 2025-08-14T20:31:39 |
mrdoob/three.js | 873c9d587618efffa9629232fabdf9db5adcf1b4 | d906b2568ac95f771bd0e76c23fe886c50270095 | WebGPURenderer: Add `debug.getRawShaderAsync()`. (#28997)
* WebGPURenderer: Add `debug.getRawShader()`.
* Added getRawShaderAsync()
---------
Co-authored-by: sunag <sunagbrasil@gmail.com> | [
{
"path": "examples/webgpu_tsl_editor.html",
"patch": "@@ -52,10 +52,6 @@\n \n \t\t\timport * as THREE from 'three';\n \n-\t\t\timport WebGPURenderer from '../src/renderers/webgpu/WebGPURenderer.js';\n-\t\t\timport WGSLNodeBuilder from '../src/renderers/webgpu/nodes/WGSLNodeBuilder.js';\n-\t\t\timport GLSLN... | 2024-07-27T16:45:10 |
kubernetes/kubernetes | 2307674798fdd85e14cacdac551457bdca1a0a9e | 03e14cc9432975dec161de1e52d7010f9711a913 | Fixes the flaky test (Issue #132953) | [
{
"path": "staging/src/k8s.io/apiextensions-apiserver/test/integration/conversion/conversion_test.go",
"patch": "@@ -271,6 +271,28 @@ func testWebhookConverter(t *testing.T, watchCache bool) {\n \tetcd3watcher.TestOnlySetFatalOnDecodeError(false)\n \tdefer etcd3watcher.TestOnlySetFatalOnDecodeError(true)\n ... | 2025-12-08T17:55:58 |
golang/go | 911455fe1893bcd90d30246117415dfbce658d88 | f1fd13016ab51b93f5d39b0c46aa8c2b42e8f761 | cmd/link: don't count tbss section in TestFlagD
TestFlagD looks for a data-like section at the lowest address.
On OpenBSD, the .tbss section matches the current condition, which
has address 0, causing the test fail. Don't count TLS sections.
Also, print the section name on error.
Fixes #75444.
Change-Id: Ic0aa1a2bb... | [
{
"path": "src/cmd/link/elf_test.go",
"patch": "@@ -627,30 +627,30 @@ func testFlagD(t *testing.T, dataAddr string, roundQuantum string, expectedAddr\n \tdefer ef.Close()\n \n \t// Find the first data-related section to verify segment placement\n-\tvar firstDataSectionAddr uint64\n-\tvar found bool = false\... | 2025-09-12T16:36:38 |
swiftlang/swift | 3cdac6420049323a663b719970e0f30b07ab54f8 | 7f57385be47b5ff057348f55aaed38edd691d1f7 | [Backtracer] Fix some bugs that prevented DWARF reading.
This is now fetching symbols successfully, though not line numbers
yet.
rdar://101623384 | [
{
"path": "stdlib/public/RuntimeModule/CMakeLists.txt",
"patch": "@@ -131,6 +131,7 @@ add_swift_target_library(swiftRuntime ${SWIFT_STDLIB_LIBRARY_BUILD_TYPES} IS_STD\n SWIFT_COMPILE_FLAGS\n ${SWIFT_STANDARD_LIBRARY_SWIFT_FLAGS}\n ${RUNTIME_COMPILE_FLAGS}\n+ -g\n -parse-stdlib\n \n LINK_F... | 2025-10-13T17:51:39 |
tensorflow/tensorflow | a72e016e020f84ebc1857ec96c8101ee7f4ccd06 | 36c07984c2dbbd9561106a2666b8d892fa3a9bea | PR #35211: [ROCm] Reimplement register spilling detection
Imported from GitHub PR https://github.com/openxla/xla/pull/35211
Replace amd_comgr library with LLVM's native API to find NT_AMDGPU_METADATA note sections and extract the stack usage and register spill counts from there.
Add detection for dynamic stack usage... | [
{
"path": "third_party/xla/third_party/gpus/rocm/BUILD.tpl",
"patch": "@@ -593,7 +593,6 @@ alias(\n threshold = 71000,\n value = rocm_version_number(),\n ),\n- visibility = [\"//visibility:public\"],\n )\n \n cc_library(",
"additions": 0,
"deletions": 1,
"language": "Unkno... | 2025-12-17T14:35:19 |
mrdoob/three.js | bc62d42c4187dfa2c64fee29aaf247e3d5d5d850 | 8dfb87164d48aad4ddfa05d530cc7d329e132fdf | Update UniformArrayNode.js
Fix message. | [
{
"path": "src/nodes/accessors/UniformArrayNode.js",
"patch": "@@ -145,7 +145,7 @@ export const uniformArray = ( values, nodeType ) => nodeObject( new UniformArray\n \n export const uniforms = ( values, nodeType ) => { // @deprecated, r168\n \n-\tconsole.warn( 'THREE.WebGPURenderer: uniforms() has been rena... | 2024-07-26T12:29:54 |
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.