repo
stringclasses
15 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
64.3k
files
listlengths
1
300
timestamp
timestamp[s]date
2013-03-13 20:45:00
2026-04-11 07:48:46
denoland/deno
55f74e809b13194f84b32a6e40cc0867f998368f
963bc4bd8a9319c2b88fe5c59a886c0b831d7640
fix(ext/node): parse fs open options correctly (#30300) Fixes #30299 I decided to build the `OpenOptions` on the Rust side, because it's cheaper to pass integers to the op function and we can enable the fast op call. Also the tests that I added to the `config.toml` were already passing before this PR.
[ { "path": "ext/node/ops/fs.rs", "patch": "@@ -138,6 +138,55 @@ where\n Ok(())\n }\n \n+fn get_open_options(mut flags: i32, mode: u32) -> OpenOptions {\n+ let mut options = OpenOptions {\n+ mode: Some(mode),\n+ ..Default::default()\n+ };\n+\n+ if (flags & libc::O_APPEND) == libc::O_APPEND {\n+ ...
2025-08-05T09:12:22
mrdoob/three.js
ffef51075d125234079aaa494f9da1066f3d3e77
d82e3e60eeb86bc30c4b10af37de45353cde256e
Nodes: Add `TransitionNode`. (#28847) * TransitionNode sketch * cleanup * fix non-functional controller * texture loading fixed * lint fix * fix screenshot * remove texture import * Update TransitionNode.js * Update webgpu_postprocessing_transition.html --------- Co-authored-by: Michael H...
[ { "path": "examples/files.json", "patch": "@@ -379,6 +379,7 @@\n \t\t\"webgpu_postprocessing_pixel\",\n \t\t\"webgpu_postprocessing_fxaa\",\n \t\t\"webgpu_postprocessing_sobel\",\n+\t\t\"webgpu_postprocessing_transition\",\n \t\t\"webgpu_postprocessing\",\n \t\t\"webgpu_procedural_texture\",\n \t\t\"webgpu_...
2024-07-18T09:30:56
kubernetes/kubernetes
de1b8e076a3f25429fb10734edd455432440be46
5bcb7599736327cd8c6d23e398002354a6e40f68
Fix MAP failure on objects with duplicate list items When a Mutating Admission Policy (MAP) using ApplyConfiguration was applied to an existing object containing duplicate items in a list (e.g., duplicate environment variables), the operation would fail with a conversion error from Structured Merge Diff. This change ...
[ { "path": "staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/mutating/patch/smd.go", "patch": "@@ -138,7 +138,7 @@ func ApplyStructuredMergeDiff(\n \t\treturn nil, fmt.Errorf(\"invalid ApplyConfiguration: %w\", err)\n \t}\n \n-\tliveObjTyped, err := typeConverter.ObjectToTyped(originalObject)\n+\tliv...
2025-12-02T23:27:43
golang/go
4c20f7f15a9a8eed50d8cbb8be8f74d449093a5c
5dcedd65504cc9cadc9a5ea8bc3af51a26eec704
cmd/cgo: run gcc to get errors and debug info in parallel This change kicks off the work to load the debug info when processing each file, and then waits for all the files to be processed before starting the single-goroutined part that processes them. The processing is very order dependent so we won't try to make it c...
[ { "path": "src/cmd/cgo/gcc.go", "patch": "@@ -183,16 +183,16 @@ func splitQuoted(s string) (r []string, err error) {\n \treturn args, err\n }\n \n-// Translate rewrites f.AST, the original Go input, to remove\n-// references to the imported package C, replacing them with\n-// references to the equivalent Go...
2025-08-25T21:22:01
swiftlang/swift
e14ff72d70e5ae6fbfcba49f5bb0e1504dd347ac
80fc0e8b639aff15753453c913fd328371a5b61b
[IRGenSIL][DebugInfo] Fix location of Coroutine/Async exit code Exit code should not inherit the location of the previous basic block; instead, it should contain line zero to denote that this is not associated with any user code. Without this patch, stepping over code code like: ``` 1. yielding mutate { 2. yield &...
[ { "path": "lib/IRGen/IRGenSIL.cpp", "patch": "@@ -4435,6 +4435,9 @@ void IRGenSILFunction::visitUnreachableInst(swift::UnreachableInst *i) {\n }\n \n void IRGenFunction::emitCoroutineOrAsyncExit(bool isUnwind) {\n+ if (IGM.DebugInfo)\n+ IGM.DebugInfo->setCurrentLoc(Builder, getDebugScope(),\n+ ...
2026-02-02T13:58:50
tensorflow/tensorflow
a3de89535cf7f0bf9562864c05b59569ae9638b2
2b45283df5413f01a9f14832c3fe9d6520a9e852
PR #35309: [xla:gpu] Include NCCL version into log messages for debugging Imported from GitHub PR https://github.com/openxla/xla/pull/35309 Include NCCL version into log messages for debugging Copybara import of the project: -- 949bdacdcd970f18f7a60c1a8952fa50bf7d4e85 by Eugene Zhulenev <ezv@amazon.com>: [xla:gpu] ...
[ { "path": "third_party/xla/xla/backends/gpu/collectives/nccl_collectives.cc", "patch": "@@ -159,7 +159,9 @@ NcclCollectives::CreateCommunicatorsWithCancel(\n return InvalidArgument(\n \"CliqueIds size must be 1 for NCCL communicator initialization\");\n }\n- VLOG(1) << \"Initialize NCCL commu...
2025-12-16T10:01:04
denoland/deno
01bbe9c66ab6455b742adf8d50fa7de09b1cc292
efb5617d15c1a08e6fd684d2c6e8145c1545c204
fix(check): do not surface code resolution errors in declaration file dependencies (#30296)
[ { "path": "Cargo.lock", "patch": "@@ -2109,9 +2109,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_graph\"\n-version = \"0.98.0\"\n+version = \"0.98.1\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"0985b39cb178c6828c0029b11c544b9dd596e9424b4b076ad156a01cc73314ee...
2025-08-05T08:35:20
mrdoob/three.js
4b2c20be75dccd46b2b8bc2246cb6a5cb4d9e1da
47279423d9a977b4e9c58a5e8dbc50363e0ae988
fix typo (#28907) Co-authored-by: aardgoose <angus.sawyer@email.com>
[ { "path": "examples/jsm/postprocessing/UnrealBloomPass.js", "patch": "@@ -49,12 +49,12 @@ class UnrealBloomPass extends Pass {\n \n \t\tfor ( let i = 0; i < this.nMips; i ++ ) {\n \n-\t\t\tconst renderTargetHorizonal = new WebGLRenderTarget( resx, resy, { type: HalfFloatType } );\n+\t\t\tconst renderTargetH...
2024-07-17T21:38:45
kubernetes/kubernetes
984879753efa4e344388d65fa70641e000506cc2
d777de7741d36d1cc465162d94f39200e299070b
Fix context deadline exceeded in PodCertificate test
[ { "path": "pkg/kubelet/podcertificate/podcertificatemanager_test.go", "patch": "@@ -21,7 +21,9 @@ import (\n \t\"crypto/x509\"\n \t\"encoding/pem\"\n \t\"fmt\"\n+\t\"math/rand\"\n \t\"slices\"\n+\t\"sync/atomic\"\n \t\"testing\"\n \t\"time\"\n \n@@ -30,12 +32,15 @@ import (\n \tcorev1 \"k8s.io/api/core/v1\"...
2025-11-14T06:46:29
golang/go
5dcedd65504cc9cadc9a5ea8bc3af51a26eec704
d3be949ada01d7827f8edc87665fef5268634cb3
runtime: lock mheap_.speciallock when allocating synctest specials Avoid racing use of mheap_.specialBubbleAlloc. Fixes #75134 Change-Id: I0c9140c18d2bca1e1c3387cd81230f0e8c9ac23e Reviewed-on: https://go-review.googlesource.com/c/go/+/699255 Reviewed-by: Michael Knyszek <mknyszek@google.com> LUCI-TryBot-Result: Go L...
[ { "path": "src/internal/synctest/synctest_test.go", "patch": "@@ -779,6 +779,28 @@ func TestWaitGroupHeapAllocated(t *testing.T) {\n \t})\n }\n \n+// Issue #75134: Many racing bubble associations.\n+func TestWaitGroupManyBubbles(t *testing.T) {\n+\tvar wg sync.WaitGroup\n+\tfor range 100 {\n+\t\twg.Go(func(...
2025-08-26T20:26:57
denoland/deno
efb5617d15c1a08e6fd684d2c6e8145c1545c204
45f64df6c13b9e12732d2d090fd83d9933e6cf46
fix(ext/node): assign 'ERR_BUFFER_TOO_LARGE' to codes (#30311) Closes https://github.com/denoland/deno/issues/30310
[ { "path": "ext/node/polyfills/internal/errors.ts", "patch": "@@ -2742,6 +2742,7 @@ export class NodeAggregateError extends AggregateError {\n }\n }\n \n+codes.ERR_BUFFER_TOO_LARGE = ERR_BUFFER_TOO_LARGE;\n codes.ERR_IPC_CHANNEL_CLOSED = ERR_IPC_CHANNEL_CLOSED;\n codes.ERR_METHOD_NOT_IMPLEMENTED = ERR_METH...
2025-08-04T16:19:46
mrdoob/three.js
bdc6485ea749164f2059f08c16fd24974cc5203e
6ec8898669a261c1ccb6ee7d476f742fdd85e566
Nodes: Add `BloomNode`. (#28903) * Nodes: Add `BloomNode`. * E2E: Update screenshot. * BloomNode: Fix reference.
[ { "path": "examples/files.json", "patch": "@@ -374,6 +374,7 @@\n \t\t\"webgpu_postprocessing_afterimage\",\n \t\t\"webgpu_postprocessing_anamorphic\",\n \t\t\"webgpu_postprocessing_ao\",\n+\t\t\"webgpu_postprocessing_bloom\",\n \t\t\"webgpu_postprocessing_dof\",\n \t\t\"webgpu_postprocessing_pixel\",\n \t\t...
2024-07-17T09:42:09
tensorflow/tensorflow
da574d33a05ddb2800545320f418b4675a12bad3
dfa4f241a097b1c524090592173da2ebde1481c5
Prepare XLA Bazel dependencies for enabling the layering check This makes a bunch of XLA's third party dependencies compliant with Bazel's layering check by either: 1. disabling the layering check for the dependency's targets, or by 2. fixing the build rules so that they comply with the layering check Both is either...
[ { "path": "third_party/py/python_init_pip.bzl", "patch": "@@ -24,6 +24,10 @@ cc_library(\n cc_library(\n name = \"numpy_headers\",\n deps = [\":numpy_headers_2\", \":numpy_headers_1\"],\n+ # For the layering check to work we need to re-export the headers from the\n+ # dependencies.\n+ hdrs ...
2025-12-16T08:39:22
golang/go
d3be949ada01d7827f8edc87665fef5268634cb3
836fa745188fddf49070d010161e30f360862e57
runtime: don't negate eventfd errno The Linux syscall package does this for us. Fixes #75337. Change-Id: I6a6a636c9bb5fe25fdc6f80dc8b538ebed60d00b Reviewed-on: https://go-review.googlesource.com/c/go/+/701796 Reviewed-by: Michael Knyszek <mknyszek@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-a...
[ { "path": "src/runtime/netpoll_epoll.go", "patch": "@@ -27,7 +27,7 @@ func netpollinit() {\n \t}\n \tefd, errno := linux.Eventfd(0, linux.EFD_CLOEXEC|linux.EFD_NONBLOCK)\n \tif errno != 0 {\n-\t\tprintln(\"runtime: eventfd failed with\", -errno)\n+\t\tprintln(\"runtime: eventfd failed with\", errno)\n \t\tt...
2025-09-09T20:47:15
kubernetes/kubernetes
9c3167d3cc18e2ee47f56523b1049d71e580dcb0
11ade2f7dd264c2f52a4a1342458abbbaa3cb2b1
fix: Check Statfs_t type using unix package only
[ { "path": "pkg/volume/emptydir/empty_dir_linux.go", "patch": "@@ -31,12 +31,6 @@ import (\n \t\"k8s.io/api/core/v1\"\n )\n \n-// Defined by Linux - the type number for tmpfs mounts.\n-const (\n-\tlinuxTmpfsMagic = 0x01021994\n-\tlinuxHugetlbfsMagic = 0x958458f6\n-)\n-\n // realMountDetector implements m...
2025-09-24T10:05:32
denoland/deno
45f64df6c13b9e12732d2d090fd83d9933e6cf46
94a953e62f924baf8760495cfdd42414bcd19a76
fix(ext/node): incorrect `ERR_INVALID_ARG_VALUE` constructor arguments position (#30309) This allows [parallel/test-fs-internal-assertencoding.js](https://github.com/nodejs/node/blob/v23.9.0/test/parallel/test-fs-internal-assertencoding.js) to pass. Towards #29972
[ { "path": "ext/node/polyfills/internal/fs/utils.mjs", "patch": "@@ -154,7 +154,7 @@ export const kMaxUserId = 2 ** 32 - 1;\n export function assertEncoding(encoding) {\n if (encoding && !Buffer.isEncoding(encoding)) {\n const reason = \"is invalid encoding\";\n- throw new ERR_INVALID_ARG_VALUE(enco...
2025-08-04T16:05:41
mrdoob/three.js
4cceb6c57e719596a70f941c7c5506425a2e123d
b7b38598904490db59e7bd2e9a174e94933d28a0
vv (#28894) ccc create default video frame fix quote format Co-authored-by: aardgoose <angus.sawyer@email.com>
[ { "path": "src/renderers/webgpu/utils/WebGPUTextureUtils.js", "patch": "@@ -42,6 +42,7 @@ class WebGPUTextureUtils {\n \n \t\tthis.defaultTexture = {};\n \t\tthis.defaultCubeTexture = {};\n+\t\tthis.defaultVideoFrame = null;\n \n \t\tthis.colorBuffer = null;\n \n@@ -87,6 +88,10 @@ class WebGPUTextureUtils {...
2024-07-17T02:06:17
swiftlang/swift
eb8ead9264b0926e76545abce43da48794316b82
87fa86fe47a0214649307697f04670b0ca985c75
[test] Add some more known crashers
[ { "path": "validation-test/IDE/crashers/ConstraintSystem-getClosureType-84ee65.swift", "patch": "@@ -0,0 +1,9 @@\n+// {\"kind\":\"complete\",\"original\":\"6bb90e32\",\"signature\":\"swift::constraints::ConstraintSystem::getClosureType(swift::ClosureExpr const*) const\",\"signatureAssert\":\"Assertion faile...
2026-01-25T14:55:12
tensorflow/tensorflow
be28108d5d3c00ef1a69680784d2f38aace68ef0
7d619b015b8526fc6aa1340046cff360c1622840
PR #35148: [ROCm] fixed //xla/tools/hlo_opt:tests/gpu_hlo_llvm.hlo.test Imported from GitHub PR https://github.com/openxla/xla/pull/35148 The PR fixed the failed //xla/tools/hlo_opt:tests/gpu_hlo_llvm.hlo.test on rocm. The @wrapped_b kernel (the transpose) was never actually tested because its name doesn't contain "...
[ { "path": "third_party/xla/xla/tools/hlo_opt/tests/gpu_hlo_llvm.hlo", "patch": "@@ -22,9 +22,9 @@ ENTRY e {\n HloModule Test, is_scheduled=true\n \n \n-// CHECK-LABEL: fusion\n-// CHECK-PTX: call void @llvm.nvvm.barrier.cta.sync.aligned.all(i32 0)\n-// CHECK-GCN: call void @llvm.amdgcn.s.barrier\n+/...
2025-12-16T07:26:23
golang/go
836fa745188fddf49070d010161e30f360862e57
ce391744828cb1e0dbd44ffb2622521a15db5b5d
syscall: optimise cgo clearenv For programs with very large environments, calling unsetenv(3) for each environment variable can be very expensive because of CGo overhead, but clearenv(3) is much faster. The only thing we have to track is whether GODEBUG is being unset by the operation, which can be done very quickly w...
[ { "path": "src/runtime/cgo/clearenv.go", "patch": "@@ -0,0 +1,15 @@\n+// Copyright 2025 The Go Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style\n+// license that can be found in the LICENSE file.\n+\n+//go:build linux\n+\n+package cgo\n+\n+import _ \"unsafe\" // for go:l...
2025-09-09T12:18:49
kubernetes/kubernetes
905492223b99a070709c3d6d9375d2c249ab6339
9998041e0ffe0dd3f2abab3b9f95505c4402bf14
Remove workaround for an old bug. Kubernetes no longer supports containerd 1.7, and the workaround is not needed with containerd 2.x (or cri-o).
[ { "path": "cmd/kube-proxy/app/conntrack.go", "patch": "@@ -18,14 +18,12 @@ package app\n \n import (\n \t\"context\"\n-\t\"errors\"\n \t\"os\"\n \t\"strconv\"\n \t\"strings\"\n \n \t\"k8s.io/component-helpers/node/util/sysctl\"\n \t\"k8s.io/klog/v2\"\n-\t\"k8s.io/mount-utils\"\n )\n \n // Conntracker is an ...
2025-09-15T17:38:30
mrdoob/three.js
267e76c2d884cb0b4c12f4c5ffa5a7d03ce82bba
8a102ea21d19adfd8214e20a347d80f49e098d8c
DotScreenNode: Fix `updateBefore()`. (#28885)
[ { "path": "src/nodes/display/DotScreenNode.js", "patch": "@@ -25,11 +25,11 @@ class DotScreenNode extends TempNode {\n \n \t}\n \n-\tupdateBefore() {\n+\tupdateBefore( frame ) {\n \n-\t\tconst map = this.inputNode.value;\n+\t\tconst { renderer } = frame;\n \n-\t\tthis._size.value.set( map.image.width, map.i...
2024-07-16T10:11:19
denoland/deno
94a953e62f924baf8760495cfdd42414bcd19a76
c86e277fc1e0795f3602981e36c690e1abfbfe49
fix: improve handling of linked jsr packages in lockfile (#30289)
[ { "path": "Cargo.lock", "patch": "@@ -2296,9 +2296,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_lockfile\"\n-version = \"0.31.1\"\n+version = \"0.31.2\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"c2051c2aecfd7f287c2afdcee50d9e2ac1b8f1873bae2d3934d9a2e2762d7...
2025-08-04T09:30:48
swiftlang/swift
87fa86fe47a0214649307697f04670b0ca985c75
784f09aaa8710aa05b64251dd65217a5e92c08db
[test] Update a couple of crasher signatures
[ { "path": "validation-test/IDE/crashers/TypeChecker-typeCheckCondition-974abc.swift", "patch": "@@ -1,3 +1,3 @@\n-// {\"kind\":\"complete\",\"original\":\"e6459edc\",\"signature\":\"swift::TypeChecker::typeCheckCondition(swift::Expr*&, swift::DeclContext*)\",\"signatureAssert\":\"Assertion failed: (!expr->g...
2026-01-27T21:40:34
tensorflow/tensorflow
7d619b015b8526fc6aa1340046cff360c1622840
6c7405dc15c90b2ab41763060f3347443fa81e8c
PR #35268: Bump github/codeql-action from 4.31.7 to 4.31.8 Imported from GitHub PR https://github.com/openxla/xla/pull/35268 Bumps [github/codeql-action](https://github.com/github/codeql-action) from 4.31.7 to 4.31.8. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/github/co...
[ { "path": "third_party/xla/.github/workflows/scorecards-analysis.yml", "patch": "@@ -67,6 +67,6 @@ jobs:\n # Upload the results to GitHub's code scanning dashboard (optional).\n # Commenting out will disable upload of results to your repo's Code Scanning dashboard\n - name: \"Upload to cod...
2025-12-16T07:24:33
golang/go
ce391744828cb1e0dbd44ffb2622521a15db5b5d
5d9d0513dcb96409a2625c51431c584c0a12f212
crypto/rsa: check PrivateKey.D for consistency with Dp and Dq This unfortunately nearly doubles the runtime of NewPrivateKeyWithPrecomputation. It would be nice to find an alternative way to check it. fips140: off goos: darwin goarch: arm64 pkg: crypto/rsa cpu: Apple M2 │ 6aeb841faf │ ...
[ { "path": "doc/next/6-stdlib/99-minor/crypto/rsa/74115.md", "patch": "@@ -1,2 +1,5 @@\n If [PrivateKey] fields are modified after calling [PrivateKey.Precompute],\n [PrivateKey.Validate] now fails.\n+\n+[PrivateKey.D] is now checked for consistency with precomputed values, even if\n+it is not used.", "a...
2025-07-11T12:28:30
mrdoob/three.js
99e9de01e08ccca2304e3e646f762c07a45cdfde
83bffe690195ae2fe3448047e6265d8b42649f3d
Examples: Update screenshots. (#28875) * Examples: Update screenshots. * Examples: Update exception list.
[ { "path": "test/e2e/puppeteer.js", "patch": "@@ -124,10 +124,6 @@ const exceptionList = [\n \t'webgpu_storage_buffer',\n \n \t// WebGPURenderer: Unknown problem\n-\t'webgpu_postprocessing_afterimage',\n-\t'webgpu_postprocessing_3dlut',\n-\t\"webgpu_postprocessing_pixel\",\n-\t'webgpu_postprocessing_ao',\n \...
2024-07-15T09:44:41
kubernetes/kubernetes
8f1ff1d8ce672ecf30f7e09ef053bcabcb17d834
61c629cc57649bf0ce2378903027c83939d84109
Refactor PV controller to use rate-limiting queues and improve error handling Signed-off-by: xigang <wangxigang2014@gmail.com>
[ { "path": "pkg/controller/volume/persistentvolume/pv_controller.go", "patch": "@@ -189,8 +189,8 @@ type PersistentVolumeController struct {\n \t// version errors in API server and other checks in this controller),\n \t// however overall speed of multi-worker controller would be lower than if\n \t// it runs ...
2025-11-22T13:48:24
denoland/deno
dcdd1d61390ed8ac23a04ee67e2130fe2c9c6532
43b376cd47ebeb44e9fd820559d2315ef9abc7b7
fix(ext/node): worker_threads handles basic `require` calls (#30279) This is not a full-fledged and fully correct `require`/CJS support for `node:worker_threads`, but unlocks certain scenarios that were not working at all previously.
[ { "path": "ext/node/polyfills/02_init.js", "patch": "@@ -19,6 +19,7 @@ function initialize(args) {\n maybeWorkerMetadata,\n nodeDebug,\n warmup = false,\n+ moduleSpecifier = null,\n } = args;\n if (!warmup) {\n if (initialized) {\n@@ -41,6 +42,7 @@ function initialize(args) {\n ...
2025-08-02T11:27:06
swiftlang/swift
43cbbe9462ff3a0dffc5498a4c328ecb0a1150d5
0546ff3de1a67fcef5a6d4e94a8cd05eccf08194
[Test][Backtracing] Replace subshell with not --crash in FatalError
[ { "path": "test/Backtracing/FatalError.swift", "patch": "@@ -1,7 +1,7 @@\n // RUN: %empty-directory(%t)\n // RUN: %target-build-swift %s -parse-as-library -Onone -g -o %t/FatalError\n // RUN: %target-codesign %t/FatalError\n-// RUN: (env SWIFT_BACKTRACE=enable=yes,cache=no %target-run %t/FatalError 2>&1 || ...
2026-02-01T22:28:33
golang/go
968a5107a938f9cb20413ad455986a61553c075b
645ee444929ecb7bbfb95cc8bda193e4b3cb3c43
crypto/internal/fips140: update frozen module version to "v1.0.0" We are re-sealing the .zip file anyway for another reason, might as well take the opportunity to fix the "v1.0" mistake. Change-Id: I6a6a69646b3188984c865031ff9393ccaaaa9479 Reviewed-on: https://go-review.googlesource.com/c/go/+/701518 Reviewed-by: Dan...
[ { "path": "src/crypto/internal/cryptotest/hash.go", "patch": "@@ -20,7 +20,7 @@ type MakeHash func() hash.Hash\n // TestHash performs a set of tests on hash.Hash implementations, checking the\n // documented requirements of Write, Sum, Reset, Size, and BlockSize.\n func TestHash(t *testing.T, mh MakeHash) {...
2025-09-07T14:37:40
tensorflow/tensorflow
840a3f7832191d3efedd46504a4c52b335627371
08b52d49714b67cda1f28efb32e6cc9df4ceb62f
[xla:gpu] Fix triton pipeline discrepancies It seems that in a few previous triton integrations, we have failed to copy over some of the pipeline changes. I went through all of them & think they should be aligned now: * triton's version: triton/third_party/nvidia/backend/compiler.py * xla's version: xla/backends/gpu/...
[ { "path": "third_party/xla/xla/backends/gpu/codegen/triton/BUILD", "patch": "@@ -211,6 +211,7 @@ cc_library(\n \"@llvm-project//mlir:Pass\",\n \"@llvm-project//mlir:SCFToControlFlow\",\n \"@llvm-project//mlir:Transforms\",\n+ \"@triton//:GluonTransforms\",\n \"@triton/...
2025-12-16T05:56:42
mrdoob/three.js
83bffe690195ae2fe3448047e6265d8b42649f3d
91f0857b276d19744c3606a25dc97e26153a2bc0
Nodes: Add PixelationNode (#28802) * sketched out draft of pixelation pass. * Have normal and depth edges working * Pixel size modifier * playing with render targets * fix renderTarget issue * auto-mrt version of pixelation * cleanup * remove any outside tests, logs, and changes * screenshot an...
[ { "path": "examples/files.json", "patch": "@@ -375,6 +375,7 @@\n \t\t\"webgpu_postprocessing_anamorphic\",\n \t\t\"webgpu_postprocessing_ao\",\n \t\t\"webgpu_postprocessing_dof\",\n+\t\t\"webgpu_postprocessing_pixel\",\n \t\t\"webgpu_postprocessing_fxaa\",\n \t\t\"webgpu_postprocessing_sobel\",\n \t\t\"webg...
2024-07-15T09:29:38
denoland/deno
43b376cd47ebeb44e9fd820559d2315ef9abc7b7
5c947b07b453734e10342eebcd0cb3663d18144c
Revert "fix(ext/node): support TLS for unix sockets" (#30284) Reverts denoland/deno#30169 Causes issues with playwright's installation of browsers
[ { "path": "ext/net/ops.rs", "patch": "@@ -74,19 +74,6 @@ impl From<SocketAddr> for IpAddr {\n }\n }\n \n-#[cfg(unix)]\n-impl From<tokio::net::unix::SocketAddr> for IpAddr {\n- fn from(addr: tokio::net::unix::SocketAddr) -> Self {\n- Self {\n- hostname: addr.as_pathname().map_or_else(\n- ||...
2025-08-02T09:11:23
kubernetes/kubernetes
9a8c2a400142d98a0717e75bf59572fc9eb3d9d1
61c629cc57649bf0ce2378903027c83939d84109
Fix example with profiling in README
[ { "path": "test/integration/scheduler_perf/README.md", "patch": "@@ -68,11 +68,13 @@ Otherwise, the golang benchmark framework will try to run a test more than once\n make test-integration WHAT=./test/integration/scheduler_perf/... KUBE_CACHE_MUTATION_DETECTOR=false KUBE_TIMEOUT=-timeout=1h ETCD_LOGLEVEL=wa...
2025-11-28T10:36:40
golang/go
a67977da5e26e0c328488fe05bdd200903e58e99
a5fa5ea51cd8fd9bcb8230d2accf9d55826f76b3
cmd/compile/internal/inline: ignore superfluous slicing When slicing, ignore expressions which could be elided, as in slicing starting at 0 or ending at len(v). Fixes #75278 Change-Id: I9c18e29c3d4da9bef89bd25bb261d3cb60e66392 Reviewed-on: https://go-review.googlesource.com/c/go/+/701216 LUCI-TryBot-Result: Go LUCI ...
[ { "path": "src/cmd/compile/internal/inline/inl.go", "patch": "@@ -738,6 +738,17 @@ opSwitch:\n \t\tif n.X.Op() == ir.OINDEX && isIndexingCoverageCounter(n.X) {\n \t\t\treturn false\n \t\t}\n+\n+\tcase ir.OSLICE, ir.OSLICEARR, ir.OSLICESTR, ir.OSLICE3, ir.OSLICE3ARR:\n+\t\tn := n.(*ir.SliceExpr)\n+\n+\t\t// ...
2025-09-06T01:13:03
swiftlang/swift
58e1db52ad6a6d12e2b1a86725fa9137e7b18490
81b097360249efe395ea9e8524bd2490493d2e48
[cxx-interop] fix std-span-interface.swift On some Linux versions (e.g. UBI9) this test failed because __counted_by was already defined, but defined to nothing. I haven't figured out how or why, because I was debugging via CI output, but this should fix it. rdar://163085444
[ { "path": "test/Interop/Cxx/stdlib/Inputs/std-span.h", "patch": "@@ -6,12 +6,14 @@\n #include <string>\n #include <vector>\n \n-#ifndef __counted_by // cstddef already imports ptrcheck.h on apple platforms\n+#ifdef __counted_by\n+#undef __counted_by // some libstdc++ versions seem to include incompatible de...
2026-02-01T01:52:00
mrdoob/three.js
20d6ad1b3134b616c372df1fecfcd722b96cc3ef
3da6b3d34a0b35883232b12fdee9b7ee376a2b3f
WebGPURenderer: Fix shadows being drawn on objects with receiveShadow=false (#28874)
[ { "path": "src/nodes/lighting/AnalyticLightNode.js", "patch": "@@ -54,7 +54,13 @@ class AnalyticLightNode extends LightingNode {\n \n \t\tconst { object } = builder;\n \n-\t\tif ( object.receiveShadow === false ) return;\n+\t\tif ( object.receiveShadow === false ) {\n+\n+\t\t\tthis.colorNode = this._default...
2024-07-15T09:08:35
tensorflow/tensorflow
d7a2f4a21ea36000f33fa0485d91bf287a70f0f3
eb61483d764c3ce21cbeb67bfce012344337f921
Change xnn_fusion_benchmark_test to ynn_fusion_benchmark_test I also incorrectly removed the build rule for this in a previous change. PiperOrigin-RevId: 844995933
[ { "path": "third_party/xla/xla/backends/cpu/benchmarks/BUILD", "patch": "@@ -586,6 +586,27 @@ xla_cc_test(\n ],\n )\n \n+xla_cc_test(\n+ name = \"ynn_fusion_benchmark_test\",\n+ srcs = [\"ynn_fusion_benchmark_test.cc\"],\n+ fail_if_no_test_linked = False, # NOLINT=This contains benchmarks only...
2025-12-16T02:00:56
denoland/deno
b05e8b20ac785cd64f90b007d38958c5979cda63
56f2055c3f8bac2293074cc6d0202a2246e699df
fix(ext/node): support TLS for unix sockets (#30169) This commit adds initial support for connecting Unix socket over TLS in `node:tls.connect()` API --------- Co-authored-by: Divy Srivastava <dj.srivastava23@gmail.com>
[ { "path": "ext/net/ops.rs", "patch": "@@ -74,6 +74,19 @@ impl From<SocketAddr> for IpAddr {\n }\n }\n \n+#[cfg(unix)]\n+impl From<tokio::net::unix::SocketAddr> for IpAddr {\n+ fn from(addr: tokio::net::unix::SocketAddr) -> Self {\n+ Self {\n+ hostname: addr.as_pathname().map_or_else(\n+ ||...
2025-08-01T10:00:14
kubernetes/kubernetes
2dd576e6cbffbcb40878136e109acd0d2283e6e5
61c629cc57649bf0ce2378903027c83939d84109
fix mounter issue Signed-off-by: Davanum Srinivas <davanum@gmail.com>
[ { "path": "cluster/gce/gci/mounter/mounter.go", "patch": "@@ -28,6 +28,7 @@ const (\n \t// Location of the mount file to use\n \tchrootCmd = \"chroot\"\n \tmountCmd = \"mount\"\n+\tmountBin = \"/bin/mount\"\n \trootfs = \"rootfs\"\n \tnfsRPCBindErrMsg = \"mount.nfs: rpc.stat...
2025-11-30T23:31:36
golang/go
a5fa5ea51cd8fd9bcb8230d2accf9d55826f76b3
4c63d798cb947a3cdd5a5b68f254a73d83eb288f
cmd/compile/internal/ssa: expand runtime.memequal for length {3,5,6,7} This CL slightly speeds up strings.HasPrefix when testing constant prefixes of length {3,5,6,7}. goos: linux goarch: amd64 cpu: Intel(R) Core(TM) i7-8650U CPU @ 1.90GHz │ old │ new │ ...
[ { "path": "src/cmd/compile/internal/ssa/_gen/generic.rules", "patch": "@@ -2084,7 +2084,7 @@\n (NilCheck ptr:(NilCheck _ _) _ ) => ptr\n \n // for late-expanded calls, recognize memequal applied to a single constant byte\n-// Support is limited by 1, 2, 4, 8 byte sizes\n+// Support is limited by [1-8] byte ...
2025-09-04T01:08:14
mrdoob/three.js
ab8f885327fc1423418f3fb96fe4d01057fb4e5b
ab335bf60291027f971c44f017ef3795b9cc7847
WebGPURenderer: WGSL Fix calculation of global_invocation_id in compute shader (#28865)
[ { "path": "src/renderers/webgpu/nodes/WGSLNodeBuilder.js", "patch": "@@ -681,6 +681,9 @@ ${ flowData.code }\n \t\tif ( shaderStage === 'compute' ) {\n \n \t\t\tthis.getBuiltin( 'global_invocation_id', 'id', 'vec3<u32>', 'attribute' );\n+\t\t\tthis.getBuiltin( 'workgroup_id', 'workgroupId', 'vec3<u32>', 'att...
2024-07-14T16:20:01
tensorflow/tensorflow
ad8dc5068d2cd02bca662d1c7ce8f82228fc2b02
46151f082e5d165c998639a1187d9eb04447e900
Expose profiler advanced configuration as a Python dict. In profiler.cc, the advanced_configuration property of tensorflow::ProfileOptions is now exposed as a Python dictionary. The getter converts the proto map to a nb::dict, handling different value types (bool, int64, string). Example error: ``` ProfileOptions().a...
[ { "path": "third_party/xla/xla/python/profiler.cc", "patch": "@@ -260,7 +260,19 @@ NB_MODULE(_profiler, m) {\n &tensorflow::ProfileOptions::set_raise_error_on_start_failure)\n .def_prop_rw(\n \"advanced_configuration\",\n- &tensorflow::ProfileOptions::advanced_configuratio...
2025-12-15T19:57:30
denoland/deno
efb16e70d3a996fa8d87b93f49bcc90d884c5861
6ae4eda86a0818fb81d29e0042375886b1857c1b
fix(bundle): support importing directories with a package.json from an es module when bundling (#30273)
[ { "path": "libs/node_resolver/resolution.rs", "patch": "@@ -562,7 +562,9 @@ impl<\n let maybe_file_type = self.sys.get_file_type(&path);\n match maybe_file_type {\n Ok(FileType::Dir) => {\n- if resolution_mode == ResolutionMode::Import {\n+ if resolution_mode == ResolutionMode::I...
2025-07-31T22:33:25
golang/go
4c63d798cb947a3cdd5a5b68f254a73d83eb288f
bdd51e785580ce86142e662425982a2673e7c9c6
cmd/compile: improve stp merging for non-sequent cases Original algorithm merges stores with the first mergeable store in the chain, but it misses some cases. Additional reordering stores in increasing order of memory access in the chain allows merging in these cases. Fixes #71987 There are the results of sweet benc...
[ { "path": "src/cmd/compile/internal/ssa/pair.go", "patch": "@@ -212,6 +212,12 @@ func pairStores(f *Func) {\n \tlast := f.Cache.allocBoolSlice(f.NumValues())\n \tdefer f.Cache.freeBoolSlice(last)\n \n+\ttype stChainElem struct {\n+\t\tv *Value\n+\t\ti int // Index in chain (0 == last store)\n+\t}\n+\tvar or...
2025-08-21T15:00:57
mrdoob/three.js
3230889efa2508978a271c623eae691376d3cde7
dbfc5947109508d9264cd26659a97e6a37110ef6
Nodes: Add `GTAONode`. (#28844) * Nodes: Add `GTAONode`. * GTAONode: Clean up. * set derivative_uniformity diagnostic to off * GTAONode: Add internal pass with correct clear color. * Clean up. * GTAONode: Couple of fixes. * GTAONode: Clean up. * GTAONode: Fix loop. * GTAONode: Fix normal buffer...
[ { "path": "examples/files.json", "patch": "@@ -373,6 +373,7 @@\n \t\t\"webgpu_postprocessing_3dlut\",\n \t\t\"webgpu_postprocessing_afterimage\",\n \t\t\"webgpu_postprocessing_anamorphic\",\n+\t\t\"webgpu_postprocessing_ao\",\n \t\t\"webgpu_postprocessing_dof\",\n \t\t\"webgpu_postprocessing_sobel\",\n \t\t...
2024-07-11T16:57:58
tensorflow/tensorflow
707b6623cee3cbecff53309030ee958a730bb23c
858944ab6c092964c5c9c63d9341c144560db874
Error if hint flag is incorrectly set Users can provide a flag to tell LiteRT that their subgraph will be fully delegated to a single delegate. Detect if the flag is incorrectly set and warn the user. PiperOrigin-RevId: 844824810
[ { "path": "tensorflow/lite/core/subgraph.cc", "patch": "@@ -2536,6 +2536,13 @@ TfLiteStatus Subgraph::ModifyGraphWithDelegateImpl(TfLiteDelegate* delegate) {\n SwitchToKernelContext();\n TF_LITE_ENSURE_STATUS(reset_delegation_if_not_ok(status));\n \n+ if (hint_fully_delegated_to_single_delegate && !IsF...
2025-12-15T18:19:55
golang/go
3b3b16957cd466baef3af92383de324230ad993c
e3223518b860132e3711602485922a8fa3805224
Revert "cmd/go: use os.Rename to move files on Windows" This reverts CL 691255. Reason for revert: SetNamedSecurityInfo sometimes fails when the path contains symbolic links. Fixes #74864 Change-Id: Iaf1a5692b35d58c523fd513f27bad9a2e7a334cb Reviewed-on: https://go-review.googlesource.com/c/go/+/702155 LUCI-TryBot-R...
[ { "path": "src/cmd/go/internal/work/shell.go", "patch": "@@ -132,11 +132,47 @@ func (sh *Shell) moveOrCopyFile(dst, src string, perm fs.FileMode, force bool) e\n \t\treturn sh.CopyFile(dst, src, perm, force)\n \t}\n \n-\tif err := sh.move(src, dst, perm); err == nil {\n-\t\tif cfg.BuildX {\n-\t\t\tsh.ShowCm...
2025-09-09T16:02:28
mrdoob/three.js
0edacaa64557f31af4d55ea1fbe414fc2ccc3b5e
9352a76c07a98cac6cb586d78f4d29f35f68b428
WebGPURenderer: Auto-MRT (#28833) * added mrt * update using mrt * cleanup * cleanup * cleanup * update * build * fix normalWorld name * fix background if used MRT * fix copyFramebufferToTexture() if used MRT * TSL: added emissive * rename texturePass to passTexture * added mrt supp...
[ { "path": "examples/files.json", "patch": "@@ -357,6 +357,8 @@\n \t\t\"webgpu_mirror\",\n \t\t\"webgpu_morphtargets\",\n \t\t\"webgpu_morphtargets_face\",\n+\t\t\"webgpu_mrt\",\n+\t\t\"webgpu_mrt_mask\",\n \t\t\"webgpu_multiple_rendertargets\",\n \t\t\"webgpu_multiple_rendertargets_readback\",\n \t\t\"webgp...
2024-07-10T00:02:58
denoland/deno
6ae4eda86a0818fb81d29e0042375886b1857c1b
fc5e39aaf4fdeef886db998eb6af6eebfe4f591d
fix(ext/node): define fs constants correctly across platforms (#30113)
[ { "path": "ext/node/lib.rs", "patch": "@@ -239,6 +239,7 @@ deno_core::extension!(deno_node,\n ops::buffer::op_is_ascii,\n ops::buffer::op_is_utf8,\n ops::buffer::op_transcode,\n+ ops::constant::op_node_fs_constants,\n ops::buffer::op_node_decode_utf8,\n ops::crypto::op_node_check_prim...
2025-07-31T21:11:01
mrdoob/three.js
9352a76c07a98cac6cb586d78f4d29f35f68b428
4ce3b3682290bb829b388b06566da2ec31651be5
MeshBasicNodeMaterial: Fix `transformedNormalView`. (#28839)
[ { "path": "src/nodes/materials/MeshBasicNodeMaterial.js", "patch": "@@ -4,6 +4,7 @@ import { MeshBasicMaterial } from '../../materials/MeshBasicMaterial.js';\n import BasicEnvironmentNode from '../lighting/BasicEnvironmentNode.js';\n import BasicLightMapNode from '../lighting/BasicLightMapNode.js';\n import...
2024-07-10T00:02:01
golang/go
af03343f934b50f64389aa4222a2a111a125f69f
6447ff409ac7e2a621bc8ca5c44b2eaed751fbaa
cmd/compile: fix bounds check report For constant-index, variable length situations. Inadvertant shadowing of the yVal variable. Oops. Fixes #75327 Change-Id: I3403066fc39b7664222a3098cf0f22b5761ea66a Reviewed-on: https://go-review.googlesource.com/c/go/+/702015 Reviewed-by: Cuong Manh Le <cuong.manhle.vn@gmail.com...
[ { "path": "src/cmd/compile/internal/amd64/ssa.go", "patch": "@@ -1306,7 +1306,7 @@ func ssaGenValue(s *ssagen.State, v *ssa.Value) {\n \t\t\t}\n \t\tcase ssa.OpAMD64LoweredPanicBoundsCR:\n \t\t\tyIsReg = true\n-\t\t\tyVal := int(v.Args[0].Reg() - x86.REG_AX)\n+\t\t\tyVal = int(v.Args[0].Reg() - x86.REG_AX)\...
2025-09-09T05:04:40
tensorflow/tensorflow
9ffcc63595660033d898815015df54a43041aa8b
6d2a2a067073b0cf1965855265df4f3bac5fd1d0
Add support for dot ops in YNN fusions Currently we only have support for dots *or* fusions, this fixes that (but leaves the refactoring cleanup to a subsequent CL). PiperOrigin-RevId: 844804682
[ { "path": "third_party/xla/xla/backends/cpu/ynn_emitter.cc", "patch": "@@ -246,6 +246,58 @@ static absl::StatusOr<uint32_t> DefineReduceOp(ynn_subgraph_t subgraph,\n return out;\n }\n \n+static absl::StatusOr<uint32_t> DefineDotOp(ynn_subgraph_t subgraph,\n+ Tens...
2025-12-15T17:29:34
denoland/deno
e58c8ed20a986f8b423b144e1058871d32984517
462151f16fdaf84c737e877a988db34f4cb64837
fix(update): update version reqs even if locked to latest version (#30249)
[ { "path": "cli/tools/pm/outdated/mod.rs", "patch": "@@ -301,7 +301,18 @@ fn choose_new_version_req(\n latest_available: false,\n };\n };\n- if preferred.version <= resolved.version {\n+ let exact = if let Some(range) = dep.req.version_req.range() {\n+ range.0[0].start == range.0...
2025-07-31T19:22:01
mrdoob/three.js
5457a9d378e9a45e133099063994086fdf84a996
4c14bb184ca3f1a6085473de6cd2c279253f28b4
WebGLUniformsGroups: Fix buffer offset calculation. (#28834)
[ { "path": "src/renderers/webgl/WebGLUniformsGroups.js", "patch": "@@ -240,27 +240,27 @@ function WebGLUniformsGroups( gl, info, capabilities, state ) {\n \n \t\t\t\t\tconst info = getUniformSize( value );\n \n-\t\t\t\t\t// Calculate the chunk offset\n-\t\t\t\t\tconst chunkOffsetUniform = offset % chunkSize;...
2024-07-08T11:28:08
swiftlang/swift
f2f15db224ba338d3343d10971416742457c10e0
6453800b9366661b4b60d4d5c89a653241a6fdbd
[DiagnosticVerifier] skip over unrelated diags in expansions This adds support for the following case: ``` expected-expansion@:1:2{{ expected-warning@3{{foo}} expected-sometimes-warning@4{{bar}} expected-warning@5{{foobar}} }} ``` This would work when parsing the additional "sometimes-" prefix, but for invokatio...
[ { "path": "lib/Frontend/DiagnosticVerifier.cpp", "patch": "@@ -853,6 +853,10 @@ unsigned DiagnosticVerifier::parseExpectedDiagInfo(\n NestedExpected.ExpectedEnd - NestedMatchStart.data();\n assert(NestedMatchEnd > 0);\n PrevMatchEnd = NestedMatch + NestedMatchEnd;\n+ } else ...
2026-01-31T06:17:24
golang/go
b915e14490e1c3ac5a84c274bfab647e1cb105a7
06e791c0cdef1a0d35ed553875c51c85716b0f57
cmd/compile: consolidate logic for rewriting fixed loads Many CLs have worked with this bit of code, extending the cases more and more for various fixed addresses and constants. But, I find that it's getting duplicitive, and I don't find the current setup very clear that something like isFixed32 _only_ works for a spe...
[ { "path": "src/cmd/compile/internal/ssa/_gen/generic.rules", "patch": "@@ -2757,37 +2757,15 @@\n (RotateLeft(64|32|16|8) (RotateLeft(64|32|16|8) x c) d) && c.Type.Size() == 2 && d.Type.Size() == 2 => (RotateLeft(64|32|16|8) x (Add16 <c.Type> c d))\n (RotateLeft(64|32|16|8) (RotateLeft(64|32|16|8) x c) d) &&...
2025-09-05T20:08:21
kubernetes/kubernetes
8b381028ed4408b6f2ed42eaf1f371e28c10b313
dd4d9fad24828f54ad48b5c6c413a6d073b19e90
Fix volume expansion e2e tests to use actual allocated size
[ { "path": "test/e2e/storage/testsuites/volume_expand.go", "patch": "@@ -185,8 +185,16 @@ func (v *volumeExpandTestSuite) DefineTests(driver storageframework.TestDriver,\n \t\t\tgomega.Expect(l.resource.Sc.AllowVolumeExpansion).NotTo(gomega.BeNil())\n \t\t\tallowVolumeExpansion := *l.resource.Sc.AllowVolumeE...
2025-11-27T04:53:51
tensorflow/tensorflow
6d2a2a067073b0cf1965855265df4f3bac5fd1d0
eacb3d2330330875c7ed530cb41ff1cf995999d9
PR #34196: [NVIDIA GPU] Fix a deadlock when doing comm split Imported from GitHub PR https://github.com/openxla/xla/pull/34196 📝 Summary of Changes If participant group of a collective is empty, doing split can sometimes cause deadlocks since we dont know what are the participating ranks. Instead it should proceed t...
[ { "path": "third_party/xla/xla/backends/gpu/collectives/gpu_clique_key.cc", "patch": "@@ -86,6 +86,11 @@ bool GpuCliqueKey::is_p2p() const { return is_p2p_; }\n \n GlobalDeviceId GpuCliqueKey::root_device() const { return root_device_; }\n \n+std::vector<std::vector<GlobalDeviceId>> GpuCliqueKey::Participan...
2025-12-15T17:22:31
denoland/deno
8680d97b3885fdfe6c5e54ed7be223b785188c01
afe149e071b0af406f930d39841620940591e21d
fix(ext/node): `fs.open` and `fs.openSync` compatibility (#30191) Notable changes: - Introduces a separate op between `Deno.open` and `node:fs.open`. - Removes redundant `existenceCheckRequired` and `Deno.lstatSync` calls, as the op layer already handles that when `options.create_new` is true and uses synchronous I/O ...
[ { "path": "cli/rt/file_system.rs", "patch": "@@ -95,6 +95,7 @@ impl DenoRtSys {\n truncate: true,\n append: false,\n create_new: false,\n+ custom_flags: None,\n mode: None,\n },\n &old_file_bytes,", "additions": 1, "deletions": 0, ...
2025-07-31T15:10:10
mrdoob/three.js
9d684e37f343f56d8a3a7ec9ccfebf59a69bbb28
bde222e3cbba0bda2af71abe78fd1866e44aab54
Examples: Fix wrong color space. (#28828)
[ { "path": "examples/webgpu_equirectangular.html", "patch": "@@ -45,6 +45,7 @@\n \t\t\t\tcamera.position.set( 1, 0, 0 );\n \n \t\t\t\tconst equirectTexture = new THREE.TextureLoader().load( 'textures/2294472375_24a3b8ef46_o.jpg' );\n+\t\t\t\tequirectTexture.colorSpace = THREE.SRGBColorSpace;\n \n \t\t\t\tsce...
2024-07-07T10:34:29
golang/go
cf42b785b701e48260e1b4785e270fe81e2e1bb2
5e6296f3f8a5fd8c07a0602435eae681002e09ad
cmd/cgo: run recordTypes for each of the debugs at the end of Translate Save the debug information in a slice and then process all of them at the end of the loop. For #75167 Change-Id: I6a6a6964dffa784b0aa776334562333ecf247023 Reviewed-on: https://go-review.googlesource.com/c/go/+/699019 LUCI-TryBot-Result: Go LUCI ...
[ { "path": "src/cmd/cgo/gcc.go", "patch": "@@ -192,9 +192,7 @@ func (p *Package) Translate(f *File) {\n \t\tcref.Name.C = cname(cref.Name.Go)\n \t}\n \n-\tvar conv typeConv\n-\tconv.Init(p.PtrSize, p.IntSize)\n-\n+\tvar debugs []*debug // debug data from iterations of gccDebug\n \tft := fileTypedefs{typedefs...
2025-08-25T21:16:05
swiftlang/swift
a98b7388bb34bf9a7e54ed6908e733a6e2392542
be9708a54719ffba5b6209041481619e37f138c1
[test] fix warnings in Dictionary validation test
[ { "path": "validation-test/stdlib/Dictionary.swift", "patch": "@@ -60,7 +60,7 @@ DictionaryTestSuite.test(\"AssociatedTypes\") {\n }\n \n DictionaryTestSuite.test(\"sizeof\") {\n- var dict = [1: \"meow\", 2: \"meow\"]\n+ let dict = [1: \"meow\", 2: \"meow\"]\n #if _pointerBitWidth(_32)\n expectEqual(4, ...
2026-01-31T04:22:10
denoland/deno
afe149e071b0af406f930d39841620940591e21d
c66fea5606a578ecc43192af12b37847434f3455
fix(bundle): require of sub directory in npm package should consult package.json (#30253)
[ { "path": "cli/lib/worker.rs", "patch": "@@ -313,7 +313,9 @@ pub enum ResolveNpmBinaryEntrypointError {\n pub enum ResolveNpmBinaryEntrypointFallbackError {\n #[class(inherit)]\n #[error(transparent)]\n- PackageSubpathResolve(node_resolver::errors::PackageSubpathResolveError),\n+ PackageSubpathResolve...
2025-07-31T14:48:51
tensorflow/tensorflow
ae87db29fb489dd85ef195647121a3a85ce11ff3
a895a5a90765fdbe5dc4cd288e3e3167d95ffce2
Add support and tests for sharded -> unreduced operation. **But why do we need such an operation?** You might want to use it directly: it's a kind of a lazy (i.e. no-comms) reduce_sum over shards, without changing the logical shape: ```python reshard(f32[4@x], P(Unreduced={x})) : f32[4]{U:x} ``` Physically, we woul...
[ { "path": "third_party/xla/xla/python/version.h", "patch": "@@ -18,6 +18,6 @@ limitations under the License.\n \n // An increasing version number to protect jax code against breaking changes.\n // In JAX, reference this via jax._src.lib.ifrt_version.\n-#define JAX_IFRT_VERSION_NUMBER 39 // New coordination...
2025-12-12T23:46:58
mrdoob/three.js
ac95b71239d45ae9fd489d6e13b2729803d97143
807d04252e0189411f123b95b1e4b1f9ca1dc612
CubeTextureNode: Support `CubeRefractionMapping`. (#28823) * CubeTextureNode: Support `CubeRefractionMapping`. * fix cache key mapping * Clean up. * E2E: Add example to exception list. --------- Co-authored-by: sunag <sunagbrasil@gmail.com>
[ { "path": "examples/files.json", "patch": "@@ -344,6 +344,7 @@\n \t\t\"webgpu_loader_gltf_transmission\",\n \t\t\"webgpu_loader_materialx\",\n \t\t\"webgpu_materials\",\n+\t\t\"webgpu_materials_basic\",\n \t\t\"webgpu_materials_displacementmap\",\n \t\t\"webgpu_materials_lightmap\",\n \t\t\"webgpu_materials...
2024-07-06T14:55:47
golang/go
5e6296f3f8a5fd8c07a0602435eae681002e09ad
ea00650784bc2909580c7decf729f668349aa939
archive/tar: optimize nanosecond parsing in parsePAXTime Modified parsePAXTime to use a byte array for nanosecond parsing, providing a more straightforward implementation with better performance when handling decimal fraction part. Here are benchmark results: goos: darwin goarch: amd64 pkg: archive/tar cpu: Intel(R) C...
[ { "path": "src/archive/tar/strconv.go", "patch": "@@ -213,15 +213,17 @@ func parsePAXTime(s string) (time.Time, error) {\n \t}\n \n \t// Parse the nanoseconds.\n-\tif strings.Trim(sn, \"0123456789\") != \"\" {\n-\t\treturn time.Time{}, ErrHeader\n-\t}\n-\tif len(sn) < maxNanoSecondDigits {\n-\t\tsn += strin...
2025-09-08T16:19:34
denoland/deno
c66fea5606a578ecc43192af12b37847434f3455
af55e069ef36c20fca866f59ab8494dfee10ff84
fix(ext/node): use primordials in `ext/node/polyfills/internal_binding/node_file.ts` (#30066)
[ { "path": "ext/node/polyfills/internal_binding/node_file.ts", "patch": "@@ -25,13 +25,18 @@\n // - https://github.com/nodejs/node/blob/master/src/node_file.cc\n // - https://github.com/nodejs/node/blob/master/src/node_file.h\n \n-// TODO(petamoriken): enable prefer-primordials for node polyfills\n-// deno-l...
2025-07-31T14:28:58
tensorflow/tensorflow
1245d3c045aee40e71484b5d2e3f3d0bbc9b5b25
d4210972a899074f9bebd73f85803f40afdf0e8b
[XLA:GPU] Fix typo in bug number and add heap_check disable for "gpu" backend. Corrected the bug number in the TODO comment and added the `--heap_check=` argument for the generic "gpu" backend in dynamic_slice_fusion_test. PiperOrigin-RevId: 843858899
[ { "path": "third_party/xla/xla/backends/gpu/codegen/BUILD", "patch": "@@ -186,9 +186,10 @@ cc_library(\n xla_test(\n name = \"dynamic_slice_fusion_test\",\n srcs = [\"dynamic_slice_fusion_test.cc\"],\n- # TODO(b/46791573): Remove heap_check= once the bug is fixed.\n+ # TODO(b/467915739): Remov...
2025-12-12T23:43:40
golang/go
ea00650784bc2909580c7decf729f668349aa939
4cc7cc74c3d8fe7aba458824b0fce6e72ceee048
debug/pe: permit symbols with no name They are reportedly generated by llvm-mingw clang21. Fixes #75219 Change-Id: I7fa7e13039bc7eee826cc19826985ca0e357a9ff Reviewed-on: https://go-review.googlesource.com/c/go/+/700137 Reviewed-by: Cherry Mui <cherryyz@google.com> Reviewed-by: Michael Pratt <mpratt@google.com> LUCI-...
[ { "path": "src/debug/pe/symbol.go", "patch": "@@ -98,7 +98,12 @@ func readCOFFSymbols(fh *FileHeader, r io.ReadSeeker) ([]COFFSymbol, error) {\n // isSymNameOffset checks symbol name if it is encoded as offset into string table.\n func isSymNameOffset(name [8]byte) (bool, uint32) {\n \tif name[0] == 0 && na...
2025-09-01T16:18:08
denoland/deno
af55e069ef36c20fca866f59ab8494dfee10ff84
eef8835e36bf55eaecb8dda86bb590698fa43714
fix(ext/node): `fs.rename` and `fs.renameSync` compatibility (#30245)
[ { "path": "ext/node/polyfills/_fs/_fs_rename.ts", "patch": "@@ -1,32 +1,63 @@\n // Copyright 2018-2025 the Deno authors. MIT license.\n \n-// TODO(petamoriken): enable prefer-primordials for node polyfills\n-// deno-lint-ignore-file prefer-primordials\n-\n-import { pathFromURL } from \"ext:deno_web/00_infra...
2025-07-31T14:24:59
tensorflow/tensorflow
c74f0f14608dcea307183288466d079e32f045f8
0ceec291ab9a2a59f6374d0fdbf5305c85eb3e6a
Fix unused std::optional<T>::has_value() This ended up being unused with how the if statement was written. This becomes a compile time error with an upcoming version of libc++. PiperOrigin-RevId: 843856944
[ { "path": "third_party/xla/xla/fp_util.h", "patch": "@@ -279,8 +279,10 @@ constexpr T GoldbergUlp(T x) {\n return GoldbergUlp(std::numeric_limits<T>::min());\n }\n std::optional<int> maybe_exponent = LogBase(x);\n- if (maybe_exponent.has_value(); const int exponent = *maybe_exponent) {\n- return...
2025-12-12T23:37:26
golang/go
ff45d5d53cd942cfeab6c47b8414502e6dce4870
861c90c907db1129dcd1540eecd3c66b6309db7a
encoding/json/internal/jsonflags: fix comment with wrong field name Flags struct has field Values but in the comments use Value. Fix it to correct name Values. Change-Id: Ib47e62538599a788c69fda27a7e2a97b8cf73263 Reviewed-on: https://go-review.googlesource.com/c/go/+/701415 Reviewed-by: Joseph Tsai <joetsai@digital-s...
[ { "path": "src/encoding/json/internal/jsonflags/flags.go", "patch": "@@ -169,8 +169,8 @@ func (dst *Flags) Join(src Flags) {\n \t// Copy over all source presence bits over to the destination (using OR),\n \t// then invert the source presence bits to clear out source value (using AND-NOT),\n \t// then copy o...
2025-09-06T14:51:37
kubernetes/kubernetes
d80e73c0a9f2f617aa2364810cd081395c2fcc02
f76d0e5aa48f23850314060c8866b63662794880
cleanup: removed uncached client plumbing, keeping the sequencing fix for quota validation
[ { "path": "test/e2e/storage/csimock/csi_volume_expansion.go", "patch": "@@ -21,8 +21,6 @@ import (\n \t\"fmt\"\n \t\"time\"\n \n-\tcorev1client \"k8s.io/client-go/kubernetes/typed/core/v1\"\n-\n \tcsipbv1 \"github.com/container-storage-interface/spec/lib/go/csi\"\n \t\"github.com/onsi/ginkgo/v2\"\n \t\"gith...
2025-11-26T14:26:42
denoland/deno
eef8835e36bf55eaecb8dda86bb590698fa43714
ae6ac919debacbd6a329b16d0e5f4a36e1d08f60
fix(ext/node): fs readv promisify compatibility (#30149)
[ { "path": "ext/node/polyfills/_fs/_fs_readv.ts", "patch": "@@ -14,8 +14,13 @@ import * as io from \"ext:deno_io/12_io.js\";\n import { op_fs_seek_async, op_fs_seek_sync } from \"ext:core/ops\";\n import process from \"node:process\";\n import { primordials } from \"ext:core/mod.js\";\n+import { customPromis...
2025-07-31T14:17:56
mrdoob/three.js
272276188fe45170e3da7e313adf015601d78a0e
3757bf91a6b96b135707428bc0b803a61a611a58
VTKLoader: Add support for `AppendedData`. (#28816) * fix: VTKLoader.js parse "AppendedData" format * Update VTKLoader.js Clean up. * Update VTKLoader.js More clean up. --------- Co-authored-by: Mt-Youya <dd257248@gmail.com> Co-authored-by: Michael Herzog <michael.herzog@human-interactive.org>
[ { "path": "examples/jsm/loaders/VTKLoader.js", "patch": "@@ -447,7 +447,6 @@ class VTKLoader extends Loader {\n \n \t\t\t\t\t\t\t} else {\n \n-\n \t\t\t\t\t\t\t\tindices[ indicesIndex ++ ] = strip[ j ];\n \t\t\t\t\t\t\t\tindices[ indicesIndex ++ ] = strip[ j + 1 ];\n \t\t\t\t\t\t\t\tindices[ indicesIndex ++...
2024-07-05T14:27:05
tensorflow/tensorflow
1c8cc3218eabe568a443f4f7f2a1944f7c3ca42b
4ebc189ac60e9a2218b28ae0e8a99272c4294b4a
Update Shardy to e8435cb5c0b852b0e249b3fbf5f42dd51988afc9. Fix jax typo PiperOrigin-RevId: 843841248
[ { "path": "third_party/xla/third_party/shardy/temporary.patch", "patch": "@@ -1,15 +0,0 @@\n-diff --git a/third_party/llvm/workspace.bzl b/third_party/llvm/workspace.bzl\n-index 26b3bf8..69a8c63 100644\n---- a/third_party/llvm/workspace.bzl\n-+++ b/third_party/llvm/workspace.bzl\n-@@ -4,8 +4,8 @@ load(\"//t...
2025-12-12T22:50:59
kubernetes/kubernetes
2ba1b66b57b77c712534dd1537cfaadaf19813c5
dd4d9fad24828f54ad48b5c6c413a6d073b19e90
Fix kubelet certificate reload when connecting by IP Currently, we set TLSConfig.Config.GetCertificate, but then also pass certificate and key paths to http.Server.ListenAndServeTLS. ListenAndServeTLS uses these paths to populate the TLS config Certificate property. Then, when accepting connections, a non-nil Certifi...
[ { "path": "pkg/kubelet/kubelet.go", "patch": "@@ -920,6 +920,13 @@ func NewMainKubelet(ctx context.Context,\n \t\t\t\t}\n \t\t\t\treturn cert, nil\n \t\t\t}\n+\n+\t\t\t// GetCertificate is only preferred over the certificate files by\n+\t\t\t// Golang TLS if the ClientHelloInfo.ServerName is set, which it i...
2025-09-05T19:55:39
denoland/deno
1715fc5a7ae57d1e29e9bfb711c5aa0a1b3f1e05
d642f84203a5d63470f575adcc7ad3139b49be80
fix(bundle): use non-node conditions for --platform=browser (#30250)
[ { "path": "cli/factory.rs", "patch": "@@ -1118,15 +1118,6 @@ impl CliFactory {\n .node_conditions()\n .iter()\n .map(|c| Cow::Owned(c.clone()))\n- .chain({\n- match &self.flags.subcommand {\n- DenoSubcommand::...
2025-07-31T14:09:13
mrdoob/three.js
a65145fc9cb9aa46966274e014ed4eeebf6db51c
5ee01f053baeaba9e2f9b503bab8193b26cdf770
NodeMaterial: Fix env map for lambert and phong. (#28812)
[ { "path": "src/nodes/materials/MeshLambertNodeMaterial.js", "patch": "@@ -1,4 +1,5 @@\n import NodeMaterial, { addNodeMaterial } from './NodeMaterial.js';\n+import BasicEnvironmentNode from '../lighting/BasicEnvironmentNode.js';\n import PhongLightingModel from '../functions/PhongLightingModel.js';\n \n imp...
2024-07-05T10:28:31
swiftlang/swift
c31bd33690c3b5a0fb93d39146317b4dd913f41b
7aa76870eef2ea7d62ce1f45fe8841794f05afb3
[Test][lit] Fix %enable-cow-checking for internal shell
[ { "path": "test/lit.cfg", "patch": "@@ -3189,7 +3189,7 @@ config.substitutions.append(('%import-static-libdispatch', getattr(config, 'impo\n config.environment['SWIFT_DEBUG_ENABLE_COW_CHECKS'] = 'false'\n \n # Add this to the command which runs an executable to enable COW checks in the swift runtime.\n-conf...
2026-01-31T01:13:31
tensorflow/tensorflow
619f7362044e25c37127e50edcba86cc627f94ea
10689c979e1348a2135078c3f54b73ebb9fa3bc7
Fix memory leak in MakeShapesInfo() and re-enable layout conversion. PiperOrigin-RevId: 843790085
[ { "path": "third_party/xla/xla/pjrt/c_api_client/pjrt_c_api_client.cc", "patch": "@@ -1013,15 +1013,15 @@ absl::Status PjRtCApiClient::DmaUnmap(void* data) {\n // Helper struct and method used to serialize shapes past the C API boundary.\n struct ShapesInfo {\n std::vector<size_t> shape_num_dims;\n- std:...
2025-12-12T20:25:39
kubernetes/kubernetes
c33c0464db3d5b0adeaa27fce551a5c80c18ee40
5bcb7599736327cd8c6d23e398002354a6e40f68
DRA: Fix flaky integration test
[ { "path": "test/integration/dra/dra_test.go", "patch": "@@ -783,12 +783,25 @@ func expectedAllocatedClaim(request string, nodeInfo nodeInfo) gtypes.GomegaMatc\n \n func testExtendedResource(tCtx ktesting.TContext, enabled bool) {\n \ttCtx.Parallel()\n-\tc, err := tCtx.Client().ResourceV1().DeviceClasses().C...
2025-11-25T18:13:00
denoland/deno
d642f84203a5d63470f575adcc7ad3139b49be80
5612d2edc7262d7bfb3bcfb0f18649b01ec94b53
fix(ext/node): `fs.unlink` and `fs.unlinkSync` compatibility (#30257) Improves compatibility with Node.js by validating the input parameters, accepting Buffer type paths, and converting thrown errors correctly. This PR also addresses `prefer-primordials` lint rule. These changes allow parallel/test-fs-unlink-type-chec...
[ { "path": "ext/node/polyfills/_fs/_fs_unlink.ts", "patch": "@@ -1,19 +1,41 @@\n // Copyright 2018-2025 the Deno authors. MIT license.\n \n-// TODO(petamoriken): enable prefer-primordials for node polyfills\n-// deno-lint-ignore-file prefer-primordials\n-\n import { promisify } from \"ext:deno_node/internal/...
2025-07-31T08:56:11
mrdoob/three.js
2b5e50041cfbe7551b6b3f4bcfcf515a695d6b1a
df42a7d45de71a3d6fee7803f387666ba0e92311
MeshBasicNodeMaterial: Refactor env map support. (#28798) * MeshBasicNodeMaterial: Refactor env map support. * MeshBasicNodeMaterial: Move env map logic to lighting model. * NodeMaterial: Clean up. * MeshLambertNodeMaterial: Fix creation of lighting model. * Update MeshLambertNodeMaterial.js * update ...
[ { "path": "src/nodes/Nodes.js", "patch": "@@ -169,6 +169,7 @@ export { default as LightingNode /* @TODO: lighting (abstract), light */ } from\n export { default as LightingContextNode, lightingContext } from './lighting/LightingContextNode.js';\n export { default as HemisphereLightNode } from './lighting/He...
2024-07-05T08:32:32
golang/go
832c1f76dc665f0e211eec12dd77c17fa2ceedd7
0b323350a5a4e996e8bd3312837a8e53735107c1
[dev.simd] cmd/compile: enhance prove to deal with double-offset IsInBounds checks For chunked iterations (useful for, but not exclusive to, SIMD calculations) it is common to see the combination of ``` for ; i <= len(m)-4; i += 4 { ``` and ``` r0, r1, r2, r3 := m[i], m[i+1], m[i+2], m[i+3] `` Prove did not handle th...
[ { "path": "src/cmd/compile/internal/ssa/prove.go", "patch": "@@ -2174,6 +2174,65 @@ func unsignedSubUnderflows(a, b uint64) bool {\n \treturn a < b\n }\n \n+// checkForChunkedIndexBounds looks for index expressions of the form\n+// A[i+delta] where delta < K and i <= len(A)-K. That is, this is a chunked\n+...
2025-09-03T17:09:32
tensorflow/tensorflow
6005dca05054c76177052dabb32e962e56a402c5
ca4dba961a78ef3b6f3c39075e6b31c60d77307e
Fix iOS build: correct apple_support platform paths The platform references in .bazelrc were pointing to the incorrect path @build_bazel_apple_support//configs/platforms which doesn't exist in apple_support v1.24.5. Updated all 5 Apple platform configurations to use the correct path @build_bazel_apple_support//platfor...
[ { "path": ".bazelrc", "patch": "@@ -234,7 +234,7 @@ common:apple-toolchain --host_crosstool_top=@local_config_apple_cc//:toolchain\n common:macos_arm64 --cpu=darwin_arm64\n common:macos_arm64 --macos_minimum_os=11.0\n common:macos_arm64 --config=clang_local\n-common:macos_arm64 --platforms=@build_bazel_appl...
2025-12-12T19:11:13
kubernetes/kubernetes
01a69b68ea3cb6b90f0546482106dc1adb60bee1
5bcb7599736327cd8c6d23e398002354a6e40f68
Fix incorrect Group for namespace kind in resourcequota admission Signed-off-by: xigang <wangxigang2014@gmail.com>
[ { "path": "staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/admission.go", "patch": "@@ -26,7 +26,6 @@ import (\n \t\"k8s.io/apiserver/pkg/admission\"\n \tgenericadmissioninitializer \"k8s.io/apiserver/pkg/admission/initializer\"\n \tresourcequotaapi \"k8s.io/apiserver/pkg/admission/plugin/re...
2025-11-22T03:03:29
mrdoob/three.js
4441ded8d06e8cb5a9ee575fac462beefaac5ffc
1f389d035be2e7a1ff951aa3a4026ab586706197
fix a small typo (#28808)
[ { "path": "examples/jsm/misc/GPUComputationRenderer.js", "patch": "@@ -46,8 +46,8 @@ import { FullScreenQuad } from '../postprocessing/Pass.js';\n * // and fill in here the texture data...\n *\n * // Add texture variables\n- * const velVar = gpuCompute.addVariable( \"textureVelocity\", fragmentShaderVel,...
2024-07-04T14:01:32
golang/go
861c90c907db1129dcd1540eecd3c66b6309db7a
57769b5532e96a8f6b705035a39ee056a22e04c3
net/http: pool transport gzip readers goos: linux goarch: amd64 pkg: net/http │ HEAD~1 │ HEAD │ │ sec/op │ sec/op vs base │ ClientGzip-8 621.0µ ± 2% 616.3µ ± 10% ~ (p=0.971 n=10) │ HEAD~1 │ HEAD ...
[ { "path": "src/net/http/serve_test.go", "patch": "@@ -12,6 +12,7 @@ import (\n \t\"compress/gzip\"\n \t\"compress/zlib\"\n \t\"context\"\n+\tcrand \"crypto/rand\"\n \t\"crypto/tls\"\n \t\"crypto/x509\"\n \t\"encoding/json\"\n@@ -5281,8 +5282,8 @@ func benchmarkClientServerParallel(b *testing.B, parallelism ...
2025-09-03T10:09:08
swiftlang/swift
613f4eafa29da52f156bdc9f60328ae2d1117f25
03c6e381692a0487b1370b40f36d278d29356527
[Concurrency] Fix thunk emission for function types with isolated parameters This is important for things like instance methods of actors in particular because otherwise it won't be possible to compute a correct isolation for the thunk. This fix enables fully unapplied references to actor-isolated instance methods an...
[ { "path": "lib/Sema/CSApply.cpp", "patch": "@@ -1248,6 +1248,10 @@ namespace {\n auto *param = thunkParamList->get(idx);\n auto arg = thunkTy->getParams()[idx];\n \n+ // Propagate isolation from function type to the parameter declaration,\n+ // this is important for subsequent ...
2026-01-30T22:26:16
mrdoob/three.js
a6f87ff9fa863b9c33acf44e2c95e7f9f693aad3
913edeb6b5a91fedd00170a323fcc90eec071542
TSL: Fix texture matrix reference (#28801) * fix texture matrix * optimize reference update * cleanup
[ { "path": "src/nodes/accessors/TextureNode.js", "patch": "@@ -32,6 +32,7 @@ class TextureNode extends UniformNode {\n \t\tthis.referenceNode = null;\n \n \t\tthis._value = value;\n+\t\tthis._matrixValue = null;\n \n \t\tthis.setUpdateMatrix( uvNode === null );\n \n@@ -101,9 +102,10 @@ class TextureNode exte...
2024-07-04T06:45:44
tensorflow/tensorflow
6e9b9161dd19952a661cf2ee8bffaa93472d263b
4c6f6242d0901eb4e152efd76dde5dc2227612cc
PR #34735: [XLA:GPU] enable dynamic slice fusion default lowered to cuda graph Imported from GitHub PR https://github.com/openxla/xla/pull/34735 📝 Summary of Changes Added DebugOptions::DYNAMIC_SLICE_FUSION to the list of enabled GPU command buffers in the default debug options. 🚀 Kind of Contribution ⚡️ Performan...
[ { "path": "third_party/xla/xla/backends/gpu/codegen/BUILD", "patch": "@@ -1,6 +1,7 @@\n load(\"@rules_cc//cc:cc_library.bzl\", \"cc_library\")\n load(\"//xla:xla.default.bzl\", \"xla_cc_test\")\n load(\"//xla/tests:build_defs.bzl\", \"xla_test\")\n+load(\"//xla/tsl:tsl.bzl\", \"if_google\")\n \n package(\n ...
2025-12-12T18:01:23
kubernetes/kubernetes
1ec1248a6555be7ca7a0827061cdd3ef162f6c45
dfdf07bb531aa8a397f3c74e5eec851130325971
client-go clientcmd: exclude from structured, contextual logging The only log output is for error messages which should normally not occur. It's also likely that users expect to see exactly those messages, so it's better to not touch them.
[ { "path": "staging/src/k8s.io/client-go/tools/clientcmd/client_config.go", "patch": "@@ -679,11 +679,13 @@ func (config *inClusterClientConfig) Possible() bool {\n // to the default config.\n func BuildConfigFromFlags(masterUrl, kubeconfigPath string) (*restclient.Config, error) {\n \tif kubeconfigPath == \...
2024-12-04T14:39:14
golang/go
57769b5532e96a8f6b705035a39ee056a22e04c3
a6144613d3b601be1db6aa2fdaa79c954fdfe02c
os: reject OpenDir of a non-directory file in Plan 9 Check that the path argument to OpenDir in Plan 9 is a directory, and return error syscall.ENOTDIR if it is not. Fixes #75196 Change-Id: I3bec6b6b40a38c21264b5d22ff3e7dfbf8c1c6d7 Reviewed-on: https://go-review.googlesource.com/c/go/+/700855 Reviewed-by: Damien Nei...
[ { "path": "src/os/file_plan9.go", "patch": "@@ -135,7 +135,20 @@ func openFileNolog(name string, flag int, perm FileMode) (*File, error) {\n }\n \n func openDirNolog(name string) (*File, error) {\n-\treturn openFileNolog(name, O_RDONLY, 0)\n+\tf, e := openFileNolog(name, O_RDONLY, 0)\n+\tif e != nil {\n+\t\...
2025-09-04T10:42:56
mrdoob/three.js
913edeb6b5a91fedd00170a323fcc90eec071542
2f900fc55ba1c10c013b91cd323dc13ac0fc72c8
WebGPURenderer: Support MSAA with Postprocessing (#28784) * WebGPURenderer: Support MSAA with Postprocessing * cleanup * cleanup and revert 3dlut * refactor AA and samples logic * add multisampled_texture support * cleanup * more cleanup * temporary patch webgl backend * fix * feedbacks *...
[ { "path": "src/nodes/display/PassNode.js", "patch": "@@ -43,13 +43,14 @@ class PassTextureNode extends TextureNode {\n \n class PassNode extends TempNode {\n \n-\tconstructor( scope, scene, camera ) {\n+\tconstructor( scope, scene, camera, options = {} ) {\n \n \t\tsuper( 'vec4' );\n \n \t\tthis.scope = sco...
2024-07-04T06:43:58
swiftlang/swift
d7ca6483a025dd6a5ff53d2f7c828b4f8410ad0a
7d125239bf136b1fcad90ff4a4302150bbb521df
[TempRValueElimination] Make AllocStackInst.hasUses analysis global Wihtout this change an alloc_stack instruction that is defined in a different basic block than its use could result in instructions that are not dominated by its operands. In an asserts build this is caught by the SIL verifier, but in a non-asserts bu...
[ { "path": "SwiftCompilerSources/Sources/Optimizer/FunctionPasses/TempRValueElimination.swift", "patch": "@@ -309,13 +309,17 @@ private extension AllocStackInst {\n defer { useSet.deinitialize() }\n \n useSet.insert(contentsOf: self.users)\n- for inst in InstructionList(first: self) {\n- if i...
2026-01-30T22:01:19
tensorflow/tensorflow
4c6f6242d0901eb4e152efd76dde5dc2227612cc
92cb3c46e88ca489baa03ba7d965abb64b561471
[mlir][tosa] Enhance TosaConvertTFLUInt8 pass to handle tosa.const with quant u8 values (#105178) * Enhance TosaConvertTFLUInt8 pass to handle tosa.const with quant u8 values * Fix test to use ui8 attribute values * Revert "Fixes to convert tfl uint8" This reverts commit 583daed6aa73fa7b6f5b8e53cb825f4228defb72. *...
[ { "path": "tensorflow/compiler/mlir/tosa/tests/convert-tfl-uint8.mlir", "patch": "@@ -1,4 +1,4 @@\n-// RUN: tf-tosa-opt --tosa-convert-tfl-uint8 --verify-each %s | FileCheck %s\n+// RUN: tf-tosa-opt --tosa-convert-tfl-uint8 --verify-diagnostics --verify-each %s | FileCheck %s\n \n \n // Operations for test...
2025-12-12T18:17:08
kubernetes/kubernetes
dfdf07bb531aa8a397f3c74e5eec851130325971
025b844bcabe0212c4dd56395ee18481602d7c65
client-go portforward + apiserver proxy: structured, contextual logging When debugging, it helps to keep output from different connections separate. This can be done with contextual logging and using different loggers for each connection. Cancellation is handled separately for requests. Therefore the new APIs only ad...
[ { "path": "staging/src/k8s.io/apiserver/pkg/util/proxy/streamtunnel.go", "patch": "@@ -60,7 +60,8 @@ func NewTunnelingHandler(upgradeHandler http.Handler) *TunnelingHandler {\n // case the upstream upgrade fails, we delegate communication to the passed\n // in \"w\" ResponseWriter.\n func (h *TunnelingHandl...
2024-12-04T14:21:11