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
kubernetes/kubernetes
3e9b24cffb34b1d59a6945ba48877e34acaef1d1
9bfe52e1fe0d3135f47d2e3c198b4d88fefb566c
fix(kubelet): convert V().Error() to V().Info() for verbosity-aware logging The go-logr package ignores verbosity level (V()) for Error() calls, causing these logs to always print regardless of the -v flag setting. Convert to Info() with "err" key-value pair to respect verbosity levels. This change covers 23 instance...
[ { "path": "pkg/kubelet/allocation/allocation_manager.go", "patch": "@@ -573,7 +573,7 @@ func (m *manager) RemovePod(uid types.UID) {\n \tlogger := klog.TODO()\n \tif err := m.allocated.RemovePod(uid); err != nil {\n \t\t// If the deletion fails, it will be retried by RemoveOrphanedPods, so we can safely ign...
2026-01-05T16:19:01
mrdoob/three.js
05dbc5d9f24d290a80173b218b7b8535015674df
f9c4319e009bd8d642e0746f74814efbe1def71c
WebGPURenderer: Introduce RenderTarget3D and RenderTargetArray (#30155) * WebGPURenderer: Introduce RenderTarget3D and RenderTargetArray * Fix TextureHelperGPU * revert WebGL3DRenderTarget.js * cleanup * simplify example * cleanup * revert screenshot * improve example * update example * refa...
[ { "path": "examples/files.json", "patch": "@@ -408,6 +408,7 @@\n \t\t\"webgpu_procedural_texture\",\n \t\t\"webgpu_reflection\",\n \t\t\"webgpu_refraction\",\n+\t\t\"webgpu_rendertarget_2d-array_3d\",\n \t\t\"webgpu_rtt\",\n \t\t\"webgpu_sandbox\",\n \t\t\"webgpu_shadertoy\",", "additions": 1, "dele...
2024-12-23T13:51:27
swiftlang/swift
0a60c93ca51b82f4e0b2ae109b25392cf636f966
9d4478bebcbf160cccab1effbcaf17b760bca0e5
[SILGen] Respect stored property's explicit global actor isolation in its initializer Previously, when generating SIL for a stored property initializer, we would use the enclosing context's isolation rather than the property's own explicit isolation. For example: @MainActor struct S { @CustomActor var x...
[ { "path": "lib/SIL/IR/SILDeclRef.cpp", "patch": "@@ -2067,5 +2067,13 @@ ActorIsolation SILDeclRef::getActorIsolation() const {\n return param->getInitializerIsolation();\n }\n \n+ // If we have a stored property initializer for a VarDecl with an explicit\n+ // isolation, match that explicit isolatio...
2026-02-16T17:36:51
tensorflow/tensorflow
80638746b58b0fba2558146470520898d26fab68
10eb25dde7ef7800de1d6c4a590f537cbd94e350
[Autotuner] Use the standard payload for autotuner cache miss error. - When `expect_all_instructions_in_cache` is enabled, a cache miss now includes a specific payload key, allowing callers to programatically identify this specific error condition. PiperOrigin-RevId: 859077767
[ { "path": "third_party/xla/xla/backends/autotuner/BUILD", "patch": "@@ -43,6 +43,7 @@ cc_library(\n \"//xla/service:dump\",\n \"//xla/service:executable\",\n \"//xla/service:shaped_buffer\",\n+ \"//xla/service/gpu/autotuning:autotuner_status_key\",\n \"//xla/stream_exe...
2026-01-21T14:47:21
denoland/deno
3c0f2890ebfdfc619a3133debb64a2dd68d59920
8c6141697e258d6cbdd6e62e0ab680669fe762b9
fix(ext/node): segfault on calling `StatementSync` methods after connection has closed (#31331) Previously, running this code causes segfault: ```ts import { DatabaseSync } from "node:sqlite"; const db = new DatabaseSync(':memory:'); const stmt = db.prepare('SELECT 1 AS value'); db.close(); stmt.get(); // segmentatio...
[ { "path": "ext/node/ops/sqlite/database.rs", "patch": "@@ -30,6 +30,7 @@ use super::Session;\n use super::SqliteError;\n use super::StatementSync;\n use super::session::SessionOptions;\n+use super::statement::InnerStatementPtr;\n use super::statement::check_error_code2;\n use super::validators;\n \n@@ -230,...
2025-11-19T01:56:09
golang/go
7995751d3ae20f82cbd6ef2a893c35bb92f8d2e6
66c7ca7fb3f2e51c39b6b29c8ea9ade62cd08ec5
cmd/go: copy git reuse and support repos to hg The reuse_hg.txt is reuse_git.txt with a skip at the top and a global substitute of git->hg and fetch->pull. The prefixtagtests.txt and tagtests.txt are straight copies of the git equivalents. This is to set up a readable diff in the followup CL that turns it into a reu...
[ { "path": "src/cmd/go/testdata/script/reuse_hg.txt", "patch": "@@ -0,0 +1,483 @@\n+skip\n+\n+[short] skip\n+[!hg] skip\n+\n+env GO111MODULE=on\n+env GOPROXY=direct\n+env GOSUMDB=off\n+\n+# go mod download with the pseudo-version should invoke hg but not have a TagSum or Ref.\n+go mod download -x -json vcs-t...
2025-11-05T23:19:20
swiftlang/swift
042861d7529a7ea2879a76543dc4ad4ac4ad6d8b
e7f603fd25120f44e7436d8ba26b6617d39d9a42
[Backtracing][PDB] Fix a couple of tests. We can't test the alternate image support for ELF, because that's been removed in favour of `SymbolLocator`/`SymbolSource`. Also we must pass `/opt:icf` in the symbolicated backtrace test when using PDB, otherwise we corrupt the metadata. Finally fix a mistake in `Utils.swif...
[ { "path": "stdlib/public/RuntimeModule/Utils.swift", "patch": "@@ -277,6 +277,9 @@ func getEnv(_ variableName: String) -> String? {\n }\n }\n #else\n- return String(cString: getenv(variableName))\n+ if let value = getenv(variableName) {\n+ return String(cString: value)\n+ }\n+ return nil\n ...
2026-02-17T18:51:17
tensorflow/tensorflow
2298c2d3d50accd04b7e7330bc4662f579f20925
367409a42933fdfd8f8359b6c3e45f3d01a77835
PR #36418: Fix MIOpen linking for RNN kernels Imported from GitHub PR https://github.com/openxla/xla/pull/36418 Add explicit linkopts to miopen cc_library target to ensure libMIOpen.so is properly linked at runtime. 📝 Summary of Changes This fixes AttributeError: module 'jaxlib.gpu_rnn' has no attribute 'compute_rn...
[ { "path": "third_party/xla/third_party/gpus/rocm/BUILD.tpl", "patch": "@@ -301,6 +301,7 @@ cc_library(\n \"%{rocm_root}/lib/libMIOpen*.so*\",\n \"%{rocm_root}/share/miopen/**\",\n ]),\n+ linkopts = [\"-lMIOpen\"],\n include_prefix = \"rocm\",\n includes = [\n \"%{rocm_...
2026-01-21T13:40:01
denoland/deno
8c6141697e258d6cbdd6e62e0ab680669fe762b9
90ef8527e4cb2b5671524f9f2b6e953eec40bf3b
fix: update permission-broker-response.v1.json (#31328) It specified "grant" instead of "allow" by mistake.
[ { "path": "cli/schemas/permission-broker-response.v1.json", "patch": "@@ -12,7 +12,7 @@\n \"result\": {\n \"description\": \"The result of the check, tells Deno if the request should be granted or rejected\",\n \"enum\": [\n- \"grant\",\n+ \"allow\",\n \"deny\"\n ...
2025-11-18T14:27:23
golang/go
5cd1b73772e339e3b460d53ba37630704a323ca7
91ca80f970c2a20d1ed6603281c97e7e617b87e8
runtime: correctly print panics before fatal-ing on defer Fixes #67792 Change-Id: I93d16580cb31e54cee7c8490212404e4d0dec446 Reviewed-on: https://go-review.googlesource.com/c/go/+/613757 Reviewed-by: Keith Randall <khr@golang.org> Reviewed-by: Keith Randall <khr@google.com> Reviewed-by: Michael Pratt <mpratt@google.co...
[ { "path": "src/runtime/panic.go", "patch": "@@ -1235,10 +1235,12 @@ func throw(s string) {\n //\n //go:nosplit\n func fatal(s string) {\n+\tp := getg()._panic\n \t// Everything fatal does should be recursively nosplit so it\n \t// can be called even when it's unsafe to grow the stack.\n \tprintlock() // Pre...
2024-09-17T12:10:20
denoland/deno
5b53514e8ac2179f7e82b0319d99287c7df0a461
e935523541a62d455a202cd02f9bf1d009ca3803
fix(node): ensure process.argv is an array of strings (#31322) This PR resolves #30964 where process.argv returned getter functions rather than string values. --------- Co-authored-by: Daniel Rahmanto <daniel.rahmanto@gmail.com>
[ { "path": "ext/node/polyfills/process.ts", "patch": "@@ -1015,18 +1015,6 @@ function synchronizeListeners() {\n }\n }\n \n-// Overwrites the 1st and 2nd items with getters.\n-Object.defineProperty(argv, \"0\", { get: () => argv0 });\n-Object.defineProperty(argv, \"1\", {\n- get: () => {\n- if (Deno.ma...
2025-11-18T09:39:00
golang/go
91ca80f970c2a20d1ed6603281c97e7e617b87e8
d36e88f21f56dcf45fed2231fe28f948a31c936b
runtime/cgo: improve error messages after pointer panic This CL improves the error messages after panics due to the sharing of an unpinned Go pointer (or a pointer to an unpinned Go pointer) between Go and C. This occurs when it is: 1. returned from Go to C (through cgoCheckResult) 2. passed as argument to a C functi...
[ { "path": "src/cmd/cgo/internal/testerrors/ptr_test.go", "patch": "@@ -14,6 +14,7 @@ import (\n \t\"os\"\n \t\"os/exec\"\n \t\"path/filepath\"\n+\t\"regexp\"\n \t\"slices\"\n \t\"strings\"\n \t\"sync/atomic\"\n@@ -24,15 +25,16 @@ var tmp = flag.String(\"tmp\", \"\", \"use `dir` for temporary files and do no...
2025-11-05T21:00:52
denoland/deno
e935523541a62d455a202cd02f9bf1d009ca3803
ccc9aba580edcf5058a5f11d1deb3ff94cdb44b1
fix(bundle): Deno.bundle work in Worker (#31316) Currently, `Deno.bundle` throws exception in a `Worker`. ``` error: Uncaught (in worker "") (in promise) Error: default BundleProvider does not do anything ``` This PR passes the clone of BundleProvider to workers. --- minimum reproduction: ```ts #! /usr/bin/env -S d...
[ { "path": "cli/lib/worker.rs", "patch": "@@ -462,6 +462,7 @@ impl<TSys: DenoLibSys> LibWorkerFactorySharedState<TSys> {\n shared.npm_process_state_provider.clone(),\n ),\n permissions: args.permissions,\n+ bundle_provider: shared.bundle_provider.clone(),\n };\n l...
2025-11-18T02:41:16
mrdoob/three.js
0bdd6d1998624999e717bb5b005031652da7a0c2
8e86f023d0dcf08df11726234e2abd96d482a42f
WebGPURenderer: Fix and improve the dynamic updating of the scene nodes cache (#30180)
[ { "path": "src/renderers/common/Renderer.js", "patch": "@@ -893,10 +893,6 @@ class Renderer {\n \n \t\t//\n \n-\t\tthis._nodes.updateScene( sceneRef );\n-\n-\t\t//\n-\n \t\tthis._background.update( sceneRef, renderList, renderContext );\n \n \t\t// process render lists\n@@ -1337,10 +1333,6 @@ class Renderer...
2024-12-21T15:29:34
golang/go
43b91e7abd1c3b84c919c97bca30480d2610f9ec
48c7fa13c63761c8b52cbfac1f9eab062d475c0c
iter: fix a tiny doc comment bug Use the right name for method Pos.Value in a sample doc comment in the package overview. Fixes #76187. Change-Id: Id1f5b0ca4ea39493b10140bc304c57c081c805ee GitHub-Last-Rev: 7bf5d0774749111cd13e40700b31a5a83c288db9 GitHub-Pull-Request: golang/go#76195 Reviewed-on: https://go-review.go...
[ { "path": "src/iter/iter.go", "patch": "@@ -188,7 +188,7 @@ For example, a tree implementation might provide:\n \t// It is only valid during the yield call it is passed to.\n \ttype Pos[V any] struct { ... }\n \n-\t// Pos returns the value at the cursor.\n+\t// Value returns the value at the cursor.\n \tfun...
2025-11-06T05:18:46
swiftlang/swift
cdef615cd72a4b4bbe9fda3af5842335dad10f6a
36dad442b52bbafb7204fc468c0e6e5ac9b19dfc
StackWalker: add support for building in the new build This adds the support for building `swift-backtrace` in the new runtimes build. Fixes: #87080
[ { "path": "Runtimes/Resync.cmake", "patch": "@@ -209,7 +209,9 @@ copy_library_sources(Distributed \"public\" \"Supplemental\")\n copy_library_sources(Observation \"public\" \"Supplemental\")\n copy_library_sources(Synchronization \"public\" \"Supplemental\")\n copy_library_sources(Volatile \"public\" \"Supp...
2026-02-11T18:42:20
tensorflow/tensorflow
73cb9cd498f8147e7af88e0bd2bbaf29111bc133
85aeb3c70092379b7468cfb8c62039e6fc0e05c7
Fix sharding logic in autotuner, by sorting the instructions before sharding. PiperOrigin-RevId: 858999693
[ { "path": "third_party/xla/xla/backends/autotuner/autotuner.cc", "patch": "@@ -191,15 +191,31 @@ absl::Status Autotuner::Autotune(HloModule* module,\n }\n \n // 2. Shard and get instructions to autotune for current shard.\n+ // Sort the instructions by fingerprint to ensure deterministic sharding.\n+ ...
2026-01-21T10:39:15
denoland/deno
ccc9aba580edcf5058a5f11d1deb3ff94cdb44b1
5421a29944287ee015edb2461488a64f1eaea412
fix(node/assert): deepStrictEqual now correctly handles Number objects (#31233) Fixes #31172 ## Description The `deepStrictEqual` function was using `asserts.equal()` which doesn't properly handle boxed primitives like Number objects. Changed it to use `isDeepStrictEqual()` from `comparisons.ts` which correctly hand...
[ { "path": "ext/node/polyfills/assert.ts", "patch": "@@ -16,7 +16,10 @@ import {\n ERR_INVALID_RETURN_VALUE,\n ERR_MISSING_ARGS,\n } from \"ext:deno_node/internal/errors.ts\";\n-import { isDeepEqual } from \"ext:deno_node/internal/util/comparisons.ts\";\n+import {\n+ isDeepEqual,\n+ isDeepStrictEqual,\...
2025-11-18T02:02:21
golang/go
f01a1841fd9aff9229b27e3e1d3b8b4ee349cbc3
8cf7a0b4c956aad5a8b98efde8ea6b7cde173902
cmd/compile: fix error message on loong64 Change-Id: I90428330b17ab9f93ae94a77cefc24464e225df5 Reviewed-on: https://go-review.googlesource.com/c/go/+/717700 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Michael Pratt <mpratt@google.com> Reviewed-by: Meidan Li <l...
[ { "path": "src/cmd/compile/internal/loong64/ssa.go", "patch": "@@ -692,7 +692,7 @@ func ssaGenValue(s *ssagen.State, v *ssa.Value) {\n \t\t\t// vs\n \t\t\t// 16 instructions in the straightline code\n \t\t\t// Might as well use straightline code.\n-\t\t\tv.Fatalf(\"ZeroLoop size too small %d\", n)\n...
2025-11-04T09:22:24
mrdoob/three.js
8e86f023d0dcf08df11726234e2abd96d482a42f
fbd54d51847312ea137cf81d432082c71f2ba460
Renderer: Document more modules. (#30182) * Renderer: Document more modules. * Docs: Finish `Renderer`. * Clean up. * More clean up. * Clean up. * Fix typo. * Remove parameter.
[ { "path": "src/materials/nodes/VolumeNodeMaterial.js", "patch": "@@ -10,6 +10,8 @@ import { Loop, Break } from '../../nodes/utils/LoopNode.js';\n import { texture3D } from '../../nodes/accessors/Texture3DNode.js';\n import { Color } from '../../math/Color.js';\n \n+/** @module VolumeNodeMaterial **/\n+\n /*...
2024-12-21T10:09:23
swiftlang/swift
6f3405dcd3fb3d70549ec1eddfa76c6367250c57
40f0e212ddb097dc99d3c12643f4ea192e55395f
[SILGEN] BorrowBindingInitialization: emit debug info
[ { "path": "lib/SILGen/SILGenDecl.cpp", "patch": "@@ -1513,6 +1513,13 @@ class BorrowBindingInitialization : public Initialization {\n \n SGF.VarLocs[var] = SILGenFunction::VarLoc(bindValue.getValue(),\n SILAccessEnforcement::Unknown);\n+\n+ // Emit debug ...
2026-02-17T13:53:22
tensorflow/tensorflow
918bd39c16f47bb06376944e9bd6f61025162508
3847bba7f644a5f4dc85fa86a52f5e4de138db63
PR #36519: [XLA:GPU][oneAPI] Remove change to disable float conversion warning Imported from GitHub PR https://github.com/openxla/xla/pull/36519 [631797c](https://github.com/openxla/xla/commit/631797c84cbb02e805ec89090214e8093fd8ba1d) commit in XLA caused the following failure in oneAPI GPU build: `external/org_brot...
[ { "path": "third_party/xla/tensorflow.bazelrc", "patch": "@@ -299,7 +299,6 @@ common:sycl --define=tensorflow_mkldnn_contraction_kernel=0\n common:sycl --cxxopt=-std=c++17\n common:sycl --host_cxxopt=-std=c++17\n common:sycl --repo_env=SYCL_BUILD_HERMETIC=0\n-common:sycl --copt=-Wno-implicit-float-size-conv...
2026-01-21T10:06:47
denoland/deno
8b31587bb4df1676a3d4339bd908c7c044f1d6db
74eff7bcd40c339f79cf47767b2912737e8db013
ci: fix 'promote_to_release' script for windows (#31321) Closes https://github.com/denoland/deno/issues/31320
[ { "path": ".github/workflows/promote_to_release.yml", "patch": "@@ -66,7 +66,7 @@ jobs:\n trusted-signing-account-name: deno-cli-code-signing\n certificate-profile-name: deno-cli-code-signing-cert\n files-folder: .\n- files-folder-filter: deno-x86_64-pc-windows-msvc-${...
2025-11-17T16:38:19
golang/go
8cf7a0b4c956aad5a8b98efde8ea6b7cde173902
2dd7e94e163f172472273b81846e6e3add412bc6
cmd/link: support weak binding on darwin Symbols loaded from host files can have the N_WEAK_REF bit set, which is used to instruct the loader to not fail if that symbol can't be resolved. The Go internal linker should honor this information by setting the BIND_SYMBOL_FLAGS_WEAK_IMPORT flag in the corresponding bind t...
[ { "path": "src/cmd/cgo/internal/test/cgo_darwin_test.go", "patch": "@@ -0,0 +1,11 @@\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 cgo && darwin\n+\n+package cgotest\n+\n+im...
2025-10-22T14:33:18
mrdoob/three.js
fbd54d51847312ea137cf81d432082c71f2ba460
6bbb05ef6aa0401995fd0bfed3ffb12cd41500d5
fix misspelling (#30175)
[ { "path": "src/materials/nodes/LineDashedNodeMaterial.js", "patch": "@@ -112,7 +112,7 @@ class LineDashedNodeMaterial extends NodeMaterial {\n \t */\n \tsetupVariants( /* builder */ ) {\n \n-\t\tconst offsetNode = this.offsetNode ? float( this.offsetNodeNode ) : materialLineDashOffset;\n+\t\tconst offsetNod...
2024-12-20T14:19:22
kubernetes/kubernetes
391a58ce24e8376fe864d8d2663a48f87bc8b37c
81383b249f890ec7385f548758590c0f97a5ad6d
test dependencies: logtools v0.10.0 The update logcheck linter will warn about logger.V().Error by default. Such calls make no sense because logr by design treats this like logger.Error. In Kubernetes, they tend to be the result of an incorrect conversion of klog.V().Error[S], which does check the verbosity. With logg...
[ { "path": "hack/tools/golangci-lint/go.mod", "patch": "@@ -223,6 +223,6 @@ require (\n \tmvdan.cc/gofumpt v0.9.2 // indirect\n \tmvdan.cc/unparam v0.0.0-20251027182757-5beb8c8f8f15 // indirect\n \tsigs.k8s.io/kube-api-linter v0.0.0-20260114104534-18147eee9c49 // indirect\n-\tsigs.k8s.io/logtools v0.9.0 // i...
2026-01-13T06:46:40
swiftlang/swift
508777703ae997ef7db762cc09304148f5bff22e
08c6317673aff11dbda74e6cd6b4a2646de84539
Fix mandatory inlining for complete lifetimes MandatoryInlining inserts copy_value/begin_borrow instructions to fixup ownership while inlining and uses LinearLifetimeChecker to insert compensating lifetime ends. This PR ensures LinearLifetimeChecker inserts compensating lifeime ends on dead-end blocks as well since ...
[ { "path": "lib/SILOptimizer/Mandatory/MandatoryInlining.cpp", "patch": "@@ -108,7 +108,6 @@ static bool fixupReferenceCounts(\n bool isLexical = isLexicalPartialApply(pai);\n \n // FIXME: Can we cache this in between inlining invocations?\n- DeadEndBlocks deadEndBlocks(pai->getFunction());\n SmallVe...
2026-02-17T07:10:48
tensorflow/tensorflow
45d969f7a8e49694cea0a5bf500f0ee9f07b4450
525b25f455219de5db71b5d99cab71446b27f427
PR #36460: Bump keras from 3.12.0 to 3.13.1 in /xla/backends/cpu/benchmarks/e2e/gemma2/keras Imported from GitHub PR https://github.com/openxla/xla/pull/36460 Bumps [keras](https://github.com/keras-team/keras) from 3.12.0 to 3.13.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://githu...
[ { "path": "third_party/xla/xla/backends/cpu/benchmarks/e2e/gemma2/keras/requirements.txt", "patch": "@@ -1,4 +1,4 @@\n-keras==3.12.0\n+keras==3.13.1\n keras_nlp==0.18.1\n tensorflow==2.18.0\n jax==0.4.38", "additions": 1, "deletions": 1, "language": "Plain Text" } ]
2026-01-21T09:40:27
golang/go
2dd7e94e163f172472273b81846e6e3add412bc6
28f1ad5782d80a0a3f95b004c6a822003fd0b1a1
cmd/go: use go.dev instead of golang.org in flag errors Also add the URL to the one possible error that didn't have it. It looks like CL 93836 just missed the third error case when adding the URL. Change-Id: I837f8a730b25adb42909c9dfbde0dad2f664fec5 Reviewed-on: https://go-review.googlesource.com/c/go/+/718220 Review...
[ { "path": "src/cmd/go/internal/work/security.go", "patch": "@@ -375,13 +375,13 @@ Args:\n \t\t\t\t}\n \n \t\t\t\tif i+1 < len(list) {\n-\t\t\t\t\treturn fmt.Errorf(\"invalid flag in %s: %s %s (see https://golang.org/s/invalidflag)\", source, arg, list[i+1])\n+\t\t\t\t\treturn fmt.Errorf(\"invalid flag in %s...
2025-11-05T20:02:52
mrdoob/three.js
d3b07d6e0709ea8f818c57dd9f8e27f16899ff7c
2acfeafa0adce2490db0df851c4e75a28f8e8140
ShadowNode: Ensure background does not influence shadow map. (#30170) * ShadowNode: Ensure background does not influence shadow map. * PostProcessingUtils: Fix `resetRendererAndSceneState()`. * E2E: Update screenshot. * Update webgpu_shadowmap_opacity.jpg --------- Co-authored-by: sunag <sunagbrasil@gma...
[ { "path": "src/nodes/lighting/ShadowNode.js", "patch": "@@ -16,6 +16,7 @@ import { renderGroup } from '../core/UniformGroupNode.js';\n import { viewZToLogarithmicDepth } from '../display/ViewportDepthNode.js';\n import { objectPosition } from '../accessors/Object3DNode.js';\n import { lightShadowMatrix } fr...
2024-12-19T22:58:01
denoland/deno
74eff7bcd40c339f79cf47767b2912737e8db013
4bf3510052fd0aadebd94d00819e44563cbff270
fix(ext/node): sqlite `setAllowUnknownNamedParameters` error message (#31319) Allows https://github.com/nodejs/node/blob/v24.2.0/test/parallel/test-sqlite-named-parameters.js to pass. <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **Bug Fixes** * Corrected an e...
[ { "path": "ext/node/ops/sqlite/validators.rs", "patch": "@@ -110,7 +110,7 @@ pub(super) fn allow_unknown_named_params_bool(\n }\n \n Err(Error::InvalidArgType(\n- \"The \\\"allowUnknownNamedParameters\\\" argument must be a boolean.\",\n+ \"The \\\"enabled\\\" argument must be a boolean.\",\n ))...
2025-11-17T16:04:13
tensorflow/tensorflow
87dcd8a75be2310e4d28e9adb3ddb827a34bb470
5fb39a68a290df701d1f5853c5ef197fdf443c55
PR #36482: [XLA:CPU] Add s390x support to XLA CPU intrinsic device detection Imported from GitHub PR https://github.com/openxla/xla/pull/36482 📝 Summary of Changes Mapped the LLVM SystemZ target triple to a new DeviceType::kSystemZCpu in XLA CPU codegen, allowing intrinsic implementations to specialize for s390x pla...
[ { "path": "third_party/xla/xla/backends/cpu/codegen/ir_compiler.cc", "patch": "@@ -355,6 +355,8 @@ llvm::Error IrCompiler::RunIrPasses(llvm::Module& module,\n }\n } else if (target_triple.isAArch64() || target_triple.isARM()) {\n device_type = xla::codegen::intrinsics::DeviceType::kArmCpu;\n+ } e...
2026-01-21T09:13:34
golang/go
28f1ad5782d80a0a3f95b004c6a822003fd0b1a1
daa220a1c952b50a05a3a9411f122689247881b8
cmd/go: fix TestScript/govcs On my Mac, TestScript/govcs was failing because hg prints a URL using 1.0.0.127.in-addr.arpa instead of 127.0.0.1, and my Mac cannot resolve that name back into an IP address. % host 127.0.0.1 1.0.0.127.in-addr.arpa domain name pointer localhost. % host 1.0.0.127.in-addr.arpa % Change-Id...
[ { "path": "src/cmd/go/internal/vcweb/hg.go", "patch": "@@ -109,6 +109,13 @@ func (h *hgHandler) Handler(dir string, env []string, logger *log.Logger) (http.\n \t\t\twg.Done()\n \t\t}()\n \n+\t\t// On some systems,\n+\t\t// hg serve --address=localhost --print-url prints in-addr.arpa hostnames\n+\t\t// even ...
2025-11-05T19:46:35
mrdoob/three.js
428eb72ab58f15f42ac06c61a8bc33fc4cc4bf5c
86018eb716f9fc161dc3982983324206df4ac177
SkinningNode: Fix `previousBoneMatrices` (#30161) * fix previousBoneMatrices * fix no MRT
[ { "path": "src/nodes/accessors/SkinningNode.js", "patch": "@@ -218,7 +218,7 @@ class SkinningNode extends Node {\n \n \t\tconst mrt = builder.renderer.getMRT();\n \n-\t\treturn mrt && mrt.has( 'velocity' );\n+\t\treturn ( mrt && mrt.has( 'velocity' ) ) || builder.object.userData.useVelocity === true;\n \n \...
2024-12-18T22:14:09
denoland/deno
b6f567946baf9e0b7d8ac186ddd4364d24b9dc7a
d4e149e2eed94a1eb2052050383618111da3002d
test: fix `utimeSyncFileSuccess` in `js_unit_test::worker_test` (#31273) `../testdata/workers/worker_types.ts` didn't even exist, causing the test to fail. See #30770 Co-authored-by: David Sherret <dsherret@users.noreply.github.com>
[ { "path": "tests/unit/worker_test.ts", "patch": "@@ -15,7 +15,7 @@ Deno.test(\n { permissions: { read: true } },\n function utimeSyncFileSuccess() {\n const w = new Worker(\n- resolveWorker(\"worker_types.ts\"),\n+ resolveWorker(\"test_worker.js\"),\n { type: \"module\" },\n );\n...
2025-11-17T14:35:27
swiftlang/swift
aae35306cf86161b48d94d4ca334fd0fa78553af
fa7e9b34376c4e6a37a9e96daebff50313dc33fa
SILMem2Reg: dont' remove write-only stack locations if a store is in a dead-end block. We did check that the alloc_stack must not be in a dead-end block. However we missed the case that the alloc_stack is not in a dead-end block but a store is in a dead-end block. Stores in dead-end blocks could result in the stored v...
[ { "path": "lib/SILOptimizer/Transforms/SILMem2Reg.cpp", "patch": "@@ -565,22 +565,28 @@ static bool isCaptured(SILValue def, bool *inSingleBlock) {\n }\n \n /// Returns true if the \\p def is only stored into.\n-static bool isWriteOnlyAllocation(SILValue def) {\n+static bool isWriteOnlyAllocation(SILValue d...
2026-02-17T12:02:15
kubernetes/kubernetes
211e77a9967f241edff1c6f0116369b2d1200455
8e420e0b3ac1e6c770a265eb2e69476576a58d43
Update staging/src/k8s.io/kubectl/pkg/cmd/debug/debug.go Co-authored-by: Maciej Szulik <soltysh@gmail.com>
[ { "path": "staging/src/k8s.io/kubectl/pkg/cmd/debug/debug.go", "patch": "@@ -213,7 +213,7 @@ func (o *DebugOptions) AddFlags(cmd *cobra.Command) {\n \tcmd.Flags().BoolVar(&o.ShareProcesses, \"share-processes\", o.ShareProcesses, i18n.T(\"When used with '--copy-to', enable process namespace sharing in the co...
2026-01-16T14:45:12
mrdoob/three.js
fd53a1f42f15d8229547f50a70b18ba407f18616
b70db2a328480adb6734686f3382cdb336f8f228
Nodes: Document more modules. (#30163) * Nodes: Document more modules. * Docs: Fix getter.
[ { "path": "src/materials/nodes/LineBasicNodeMaterial.js", "patch": "@@ -4,6 +4,11 @@ import { LineBasicMaterial } from '../LineBasicMaterial.js';\n \n const _defaultValues = /*@__PURE__*/ new LineBasicMaterial();\n \n+/**\n+ * Node material version of `LineBasicMaterial`.\n+ *\n+ * @augments NodeMaterial\n+...
2024-12-18T19:20:08
golang/go
daa220a1c952b50a05a3a9411f122689247881b8
3ae9e950021d79134146a751531f151a1f02d9bd
cmd/go: silence TLS handshake errors during test We don't need to see messages like "TLS handshake error: EOF" during go test. Change-Id: If6bf51e655119914f337b9e61448c99485af34f2 Reviewed-on: https://go-review.googlesource.com/c/go/+/718183 Reviewed-by: Michael Matloob <matloob@google.com> LUCI-TryBot-Result: Go LUC...
[ { "path": "src/cmd/go/internal/vcweb/vcstest/vcstest.go", "patch": "@@ -7,6 +7,7 @@\n package vcstest\n \n import (\n+\t\"bytes\"\n \t\"cmd/go/internal/vcs\"\n \t\"cmd/go/internal/vcweb\"\n \t\"cmd/go/internal/web/intercept\"\n@@ -70,7 +71,9 @@ func NewServer() (srv *Server, err error) {\n \t\t}\n \t}()\n \...
2025-11-05T19:45:36
tensorflow/tensorflow
ecefcdb6716eb6f2713d6250de636b6394105149
dd54a8b48406b89faeae4036255dc03641ec7028
[XLA:GPU] Fix: Correctly track changes in GemmRewriter. PiperOrigin-RevId: 858962813
[ { "path": "third_party/xla/xla/service/gpu/transforms/gemm_rewriter.cc", "patch": "@@ -2596,7 +2596,7 @@ absl::StatusOr<bool> RunOnComputation(HloComputation* computation,\n TF_RETURN_IF_ERROR(computation->Accept(&visitor));\n GemmWorkspaceRewriteVisitor workspace_visitor(gpu_version);\n TF_RETURN_IF_...
2026-01-21T08:53:54
denoland/deno
d4e149e2eed94a1eb2052050383618111da3002d
05395f375321fd850facfa849a45a1bc32bbe847
ci: add ability to trigger AI issue triage manually (#31260) Should fix permission error too. --------- Co-authored-by: Claude <noreply@anthropic.com>
[ { "path": ".github/workflows/issue_triage.yml", "patch": "@@ -3,25 +3,33 @@ name: AI Issue Triage\n on:\n issues:\n types: [opened]\n+ workflow_dispatch:\n+ inputs:\n+ issue_number:\n+ description: 'Issue number to triage'\n+ required: true\n+ type: number\n \n jobs:\n ...
2025-11-17T14:20:03
mrdoob/three.js
672d77ab93218a00555331db45ffc19055c1fe59
3c421745539653f9b7ddf2dfccf8ac4df33d29f9
Update AnamorphicNode.js Fix module name.
[ { "path": "examples/jsm/tsl/display/AnamorphicNode.js", "patch": "@@ -1,7 +1,7 @@\n import { RenderTarget, Vector2, TempNode, QuadMesh, NodeMaterial, PostProcessingUtils } from 'three/webgpu';\n import { nodeObject, Fn, float, NodeUpdateType, uv, passTexture, uniform, convertToTexture, vec2, vec3, Loop, mix...
2024-12-18T10:26:55
swiftlang/swift
2d6d395f75162430444cd07644982656fe4ffa45
af322cf9429e7a88402e76ced1c8c3c46da6c4dd
[Backtracing] Fix Linux build. The fix for the previous Linux build problem introduced a new one. rdar://168454023
[ { "path": "stdlib/public/RuntimeModule/FramePointerUnwinder.swift", "patch": "@@ -89,7 +89,9 @@ public struct FramePointerUnwinder<C: Context, M: MemoryReader>: Sequence, Itera\n private mutating func isAsyncPC(_ pc: Address) -> Bool {\n // On Linux, we need to examine the PC to see if this is an asyn...
2026-02-16T13:57:08
kubernetes/kubernetes
aeb9002d142af9ef2f96a367bc5a2091496bee5c
f4ed7b3e28c7699778c1976d5f9d9b954c30993b
fix(kubelet):resolve loop variable capture bug in WaitForAllPodsUnmount
[ { "path": "pkg/kubelet/volumemanager/volume_manager.go", "patch": "@@ -516,6 +516,7 @@ func (vm *volumeManager) WaitForAllPodsUnmount(ctx context.Context, pods []*v1.P\n \n \tfuncs := make([]func() error, 0, len(pods))\n \tfor _, pod := range pods {\n+\t\tpod := pod\n \t\tfuncs = append(funcs, func() error ...
2026-01-16T13:55:52
golang/go
3ae9e950021d79134146a751531f151a1f02d9bd
a494a26bc2d0ad52e0e265c2a1b9a3a964118699
cmd/go: fix TestCgoPkgConfig on darwin with pkg-config installed Most darwin systems don't have pkg-config installed and skip this test. (And it doesn't run in all.bash because it is skipped during -short.) But for those systems that have pkg-config and run the non-short tests, it fails because the code was not writi...
[ { "path": "src/cmd/go/go_test.go", "patch": "@@ -1506,15 +1506,17 @@ func main() {\n \ttg.setenv(\"PKG_CONFIG_PATH\", tg.path(\".\"))\n \ttg.run(\"run\", tg.path(\"foo.go\"))\n \n-\tif runtime.GOOS != \"darwin\" { // darwin doesn't like these ldflags\n-\t\t// test for ldflags\n-\t\ttg.tempFile(\"bar.pc\", `...
2025-11-05T18:42:44
denoland/deno
2f475fce496f675ed89bc6298f5ce32d9b8030cb
e0f04c6aea2972866155f6c99773f1af1cad58f4
ci: use windows-2022 image for 'promote_to_release' workflow (#31286) Also changes code-signing step to not cache dependencies, which should fix the problem with Azure Codesigning returning error because of missing deps.
[ { "path": ".github/workflows/promote_to_release.yml", "patch": "@@ -18,7 +18,7 @@ jobs:\n # Handle Windows binary patching and re-signing in a separate job\n promote-to-release-windows:\n name: Promote Windows to Release\n- runs-on: windows-latest\n+ runs-on: windows-2022\n if: github.repo...
2025-11-17T08:30:46
tensorflow/tensorflow
f41ae8a713cd7860b2c98f6977f3cb9384e02ced
9c16e3fca48d2f44072a20a9efc488cada928c47
[XLA:GPU] Fix: Correctly track changes in ConditionalCanonicalizer. PiperOrigin-RevId: 858957235
[ { "path": "third_party/xla/xla/hlo/transforms/simplifiers/conditional_canonicalizer.cc", "patch": "@@ -128,7 +128,9 @@ absl::StatusOr<bool> ConditionalCanonicalizer::RunImpl(\n for (auto* comp : module->MakeNonfusionComputations(execution_threads)) {\n for (auto* inst : comp->MakeInstructionPostOrder(...
2026-01-21T08:35:47
mrdoob/three.js
9453444ce5c2c047d520346c20c29524ed808a1c
e92ee2d7aad79a05274560dc2e3535a50ddc66bb
WebGLRenderer: Allow for binding and rendering into a 2d render target mipmap (#29844) * Allow for binding and rendering into a render target mipmap * Fix MSRT mipmap rendering
[ { "path": "src/renderers/WebGLRenderer.js", "patch": "@@ -1272,7 +1272,7 @@ class WebGLRenderer {\n \n \t\t\t//\n \n-\t\t\tif ( _currentRenderTarget !== null ) {\n+\t\t\tif ( _currentRenderTarget !== null && _currentActiveMipmapLevel === 0 ) {\n \n \t\t\t\t// resolve multisample renderbuffers to a single-sa...
2024-12-18T03:58:07
golang/go
a494a26bc2d0ad52e0e265c2a1b9a3a964118699
a8fb94969cb98efd84fa4f6fdccc14a5866828be
cmd/go: fix TestScript/vet_flags Test caching can cause an incorrect test failure when the vet step result is reused, leading to not printing a vet command line at all. Avoid that with -a (we are also using -n so no real work is done). Fixes one failing case in 'go test cmd/go' on my Mac. Change-Id: I028284436b1ecc7...
[ { "path": "src/cmd/go/testdata/script/vet_flags.txt", "patch": "@@ -20,7 +20,8 @@ stderr '-unsafeptr'\n ! stderr '-unsafeptr=false'\n \n # -unreachable is disabled during test but on during plain vet.\n-go test -n runtime\n+# The -a makes sure the vet result is not cached, or else we won't print the command...
2025-11-05T18:49:48
swiftlang/swift
af322cf9429e7a88402e76ced1c8c3c46da6c4dd
d380cde01ada0da84dfc028cfc873f46fa2703d2
[Backtracing][PDB] Remove ELF-specific `lookupSymbol()`. We don't need the ELF-specific function any more, so get rid of it. Also fix a typo. rdar://168454023
[ { "path": "stdlib/public/RuntimeModule/Elf.swift", "patch": "@@ -998,17 +998,6 @@ protocol ElfSymbolTableProtocol {\n func lookupSymbol(address: Traits.Address) -> Symbol?\n }\n \n-@available(Backtracing 6.2, *)\n-protocol ElfSymbolLookupProtocol {\n- associatedtype Traits: ElfTraits\n- typealias CallSi...
2026-02-16T11:59:12
denoland/deno
e0f04c6aea2972866155f6c99773f1af1cad58f4
f48bd0487759c759be48d55e618f3289196caad7
build(deps): update aws-lc-rs (#31307) This pulls some build improvements and fixes, including https://github.com/aws/aws-lc/pull/2381/
[ { "path": "Cargo.lock", "patch": "@@ -373,28 +373,26 @@ checksum = \"0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0\"\n \n [[package]]\n name = \"aws-lc-rs\"\n-version = \"1.12.4\"\n+version = \"1.13.1\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"4c...
2025-11-17T08:24:38
kubernetes/kubernetes
7a480de230f9fbe4b43c0a55d9870870a0bad69d
71d7a2d92cfc7ca45268ff3e3ca87361fc3a34f4
E2E: check system logs for DATA RACE reports While an E2E suite runs, logs of all containers in the "kube-system" namespace (customizable via command line flag) are retrieved and checked for "DATA RACE" errors. The kubelet logs are retrieved through the log query feature. By default, this is attempted on all nodes and...
[ { "path": "test/e2e/dra/kind.yaml", "patch": "@@ -12,6 +12,11 @@ nodes:\n - role: worker\n - role: worker\n kubeadmConfigPatches:\n+ - |\n+ kind: KubeletConfiguration\n+ apiVersion: kubelet.config.k8s.io/v1beta1\n+ enableSystemLogHandler: true\n+ enableSystemLogQuery: true\n # v1beta4 for the...
2025-09-02T13:37:59
tensorflow/tensorflow
9c16e3fca48d2f44072a20a9efc488cada928c47
b030e74791372a74c7bb48ed50a477edd8951ba6
PR #36417: [xla:gpu] Add device comms requirements to clique requests Imported from GitHub PR https://github.com/openxla/xla/pull/36417 Add an e2e test that requests collective cliques with device comms using the `CollectiveCliqueRequests` API during the prepare execution stage. Device communicators allocated lazily...
[ { "path": "third_party/xla/xla/backends/gpu/collectives/BUILD", "patch": "@@ -49,17 +49,21 @@ cc_library(\n hdrs = [\"gpu_clique.h\"],\n deps = [\n \":gpu_clique_key\",\n+ \":gpu_communicator\",\n+ \"//xla:util\",\n \"//xla/core/collectives:clique\",\n \"//xla/c...
2026-01-21T08:08:33
mrdoob/three.js
d7b6a32d75388c7ba6854d25ec9556cf005daa91
23d9a4359b230563fe7143399d364f6adb3c4af0
TiledLightsNode: Fix cache-key performance (#30130) * fix lights property reference * fix normal map tiles * improve cache-key performance * cleanup * Update TiledLightsNode.js * cleanup * Update TiledLightsNode.js
[ { "path": "examples/jsm/tsl/lighting/TiledLightsNode.js", "patch": "@@ -52,30 +52,36 @@ class TiledLightsNode extends LightsNode {\n \t\tthis.maxLights = maxLights;\n \t\tthis.tileSize = tileSize;\n \n-\t\tthis.bufferSize = null;\n-\t\tthis.lightIndexes = null;\n-\t\tthis.screenTileIndex = null;\n-\t\tthis....
2024-12-16T18:58:45
golang/go
a8fb94969cb98efd84fa4f6fdccc14a5866828be
04f05219c4f78b0f932485d2544b8c7193c04bb0
cmd/go: fix TestScript/tool_build_as_needed This test assumes that changing GOOS/GOARCH results in an unrunnable binary, but that's not true if the user has go_GOOS_GOARCH_exec programs in their path (like I do). This test was timing out waiting to create a gomote to run a windows/amd64 binary. Rewrite the test not t...
[ { "path": "src/cmd/go/testdata/script/tool_build_as_needed.txt", "patch": "@@ -40,13 +40,15 @@ rm $TOOLDIR/test2json$GOEXE\n go tool -n test2json\n ! stdout $NEWTOOLDIR${/}test2json$GOEXE\n # Set GOOS/GOARCH to different values than host GOOS/GOARCH.\n-env GOOS=windows\n-[GOOS:windows] env GOOS=linux\n-env ...
2025-11-05T19:05:45
denoland/deno
f48bd0487759c759be48d55e618f3289196caad7
863abe816e2fac2863ed755321e09311ea61d592
fix(ext/node): sqlite.DatabaseSync explicit resource management compatibility (#31311) Allows https://github.com/nodejs/node/blob/v24.2.0/test/parallel/test-sqlite-database-sync-dispose.js to pass
[ { "path": "ext/node/polyfills/sqlite.ts", "patch": "@@ -9,8 +9,9 @@ import {\n import { Buffer } from \"node:buffer\";\n \n const {\n- ObjectDefineProperty,\n+ ObjectDefineProperties,\n SymbolFor,\n+ SymbolDispose,\n } = primordials;\n \n interface BackupOptions {\n@@ -103,11 +104,26 @@ export const co...
2025-11-17T07:58:49
swiftlang/swift
d380cde01ada0da84dfc028cfc873f46fa2703d2
b89b5e13bd3cb1fde38f9f46bde5f986efb5945b
[Backtracing][PDB] Remove debugging things. I'd told the RuntimeModule to build with debug information while working on debugging it. We don't want that in the build. rdar://168454023
[ { "path": "stdlib/public/RuntimeModule/CMakeLists.txt", "patch": "@@ -102,8 +102,7 @@ set(runtime_compile_flags\n \"-Xcc;-I${SWIFT_SOURCE_DIR}/include\"\n \"-Xcc;-I${CMAKE_BINARY_DIR}/include\"\n \"-Xcc;-I${SWIFT_STDLIB_SOURCE_DIR}/public/RuntimeModule/modules\"\n- \"-disable-upcoming-feature;MemberI...
2026-02-14T09:40:15
mrdoob/three.js
ec02bf7aaa2dbff91171aeb19eda8eafdd2b0ea3
53711ab0c324a1f9c9800f5acfb09c6a45c12ef4
WebGPURenderer: fix cameraHelper (#30136) * fix camera helper * Updated screenshot. --------- Co-authored-by: Mugen87 <michael.herzog@human-interactive.org>
[ { "path": "examples/files.json", "patch": "@@ -299,6 +299,7 @@\n \t\t\"webgpu_backdrop\",\n \t\t\"webgpu_backdrop_area\",\n \t\t\"webgpu_backdrop_water\",\n+\t\t\"webgpu_camera\",\n \t\t\"webgpu_camera_logarithmicdepthbuffer\",\n \t\t\"webgpu_clearcoat\",\n \t\t\"webgpu_clipping\",", "additions": 1, ...
2024-12-16T16:15:20
tensorflow/tensorflow
0b1daff0d73a396cf6b00a910e4c7aab83eacda7
b2d5203e3f6bc76ffc7fc7d6bafaa8bef87418c0
[XLA:GPU] Fix typos referencing B100. We only use B200 as potential GPU backend, not B100. PiperOrigin-RevId: 858939581
[ { "path": "third_party/xla/xla/tests/xla_test_backend_predicates.h", "patch": "@@ -53,7 +53,7 @@ inline constexpr const absl::string_view kCpu = \"cpu\";\n inline constexpr const absl::string_view kGpu = \"gpu\";\n inline constexpr const absl::string_view kA100 = \"a100\";\n inline constexpr const absl::str...
2026-01-21T07:44:26
golang/go
9f3a108ee0d2f08b4994c4201e54e5a53acbc216
0e1bd8b5f17e337df0ffb57af03419b96c695fe4
os: ignore O_TRUNC errors on named pipes and terminal devices on Windows Prior to Go 1.24, os.OpenFile used to support O_TRUNC on named pipes and terminal devices, even when the truncation was really ignored. This behavior was consistent with Unix semantics. CL 618836 changed the implementation of os.OpenFile on Wind...
[ { "path": "src/internal/syscall/windows/at_windows.go", "patch": "@@ -131,6 +131,14 @@ func Openat(dirfd syscall.Handle, name string, flag uint64, perm uint32) (_ sysc\n \n \tif flag&syscall.O_TRUNC != 0 {\n \t\terr = syscall.Ftruncate(h, 0)\n+\t\tif err == ERROR_INVALID_PARAMETER {\n+\t\t\t// ERROR_INVALID...
2025-10-30T11:36:42
kubernetes/kubernetes
f727e938dc95ac1a95a2536e7d01220172022a71
f4ed7b3e28c7699778c1976d5f9d9b954c30993b
Update gRPC ecosystem dependencies Update the gRPC ecosystem to pick up performance improvements, bug fixes, and maintain compatibility with the latest protobuf and OpenTelemetry releases. Notable changes in grpc v1.78.0: - mem.Reader interface changed to struct - Legacy pick_first load balancer policy removed (pickf...
[ { "path": "go.mod", "patch": "@@ -77,8 +77,8 @@ require (\n \tgolang.org/x/text v0.33.0\n \tgolang.org/x/time v0.14.0\n \tgolang.org/x/tools v0.40.0\n-\tgoogle.golang.org/genproto/googleapis/rpc v0.0.0-20250825161204-c5933d9347a5\n-\tgoogle.golang.org/grpc v1.75.0\n+\tgoogle.golang.org/genproto/googleapis/r...
2026-01-14T14:18:21
denoland/deno
5951cba6e78d47b279b807293ad57b1aa5ac1c2d
e7ef895d21e4ff6df466fb74cd19d84f599bab3d
chore: fix patchver on windows (#31303)
[ { "path": "tools/release/promote_to_release.ts", "patch": "@@ -5,7 +5,7 @@\n \n import { $ } from \"jsr:@david/dax@0.41.0\";\n import { gray } from \"jsr:@std/fmt@1/colors\";\n-import { patchver } from \"jsr:@deno/patchver@0.3.0\";\n+import { patchver } from \"jsr:@deno/patchver@0.4.0\";\n \n const SUPPORTE...
2025-11-17T07:41:20
swiftlang/swift
b89b5e13bd3cb1fde38f9f46bde5f986efb5945b
487e173a2654092e2ea804ac35af7b03593091d2
[Backtracing][PDB] Fix-ups after rebasing. A few tweaks required after rebasing on top of Carl's work on cross-platform symbolication. rdar://168454023
[ { "path": "stdlib/public/RuntimeModule/PeImageCache.swift", "patch": "@@ -37,14 +37,14 @@ final class PeImageCache {\n cache = [:]\n }\n \n- func lookup(path: String?) -> PeCoffImage? {\n+ func lookup(path: String?, alternativePaths: [String] = []) -> PeCoffImage? {\n guard let path = path else ...
2026-02-13T18:58:08
mrdoob/three.js
169825313fc90819ebbb0678e9d765504c4b88bc
b367df14a1c0b35de4dd3670b10f0ce685d6f3c8
WebGPURenderer: Fix getArrayBufferAsync in WebGPUBackend (#30132)
[ { "path": "examples/webgpu_compute_audio.html", "patch": "@@ -35,9 +35,9 @@\n \t\t\timport { GUI } from 'three/addons/libs/lil-gui.module.min.js';\n \n \t\t\tlet camera, scene, renderer;\n-\t\t\tlet computeNode;\n+\t\t\tlet computeNode, computeResetNode;\n \t\t\tlet waveBuffer, sampleRate;\n-\t\t\tlet waveA...
2024-12-16T16:03:14
golang/go
a5fe6791d79347d4c28af4b475b679ce7a726a28
a7d174ccaada72b836c1c535f056d3fff5b2d528
internal/syscall/windows: fix ReOpenFile sentinel error value ReOpenFile is documented to return INVALID_HANDLE_VALUE on error, but the previous definition was checking for 0 instead. Change-Id: Idec5e75e40b9f6c409e068d63a9b606781e80a46 Reviewed-on: https://go-review.googlesource.com/c/go/+/717320 Auto-Submit: Quim M...
[ { "path": "src/internal/syscall/windows/syscall_windows.go", "patch": "@@ -531,7 +531,7 @@ const (\n //sys\tGetOverlappedResult(handle syscall.Handle, overlapped *syscall.Overlapped, done *uint32, wait bool) (err error)\n //sys\tCreateNamedPipe(name *uint16, flags uint32, pipeMode uint32, maxInstances uint3...
2025-11-03T15:29:06
tensorflow/tensorflow
d402163d7d68c05145baabd31d9c2e84e09ee089
5f41a3190a68bfd3059044c6b8abf28af0a32e25
[tosa] : Add support for uint->int for any integer bitwidth. (#107197) * [Task] : Add support for uint->int for any int. * Add tests + rename files. * Fix formatting. * [tosa] : Recompute scale based on adjusted zp. * Update function name to be more readable.
[ { "path": "tensorflow/compiler/mlir/tosa/BUILD", "patch": "@@ -185,7 +185,7 @@ cc_library(\n srcs = [\n \"tfl_passes.cc\",\n \"transforms/convert_metadata.cc\",\n- \"transforms/convert_tfl_uint8.cc\",\n+ \"transforms/convert_tfl_uint.cc\",\n \"transforms/dequantize_...
2026-01-20T16:43:16
denoland/deno
e7ef895d21e4ff6df466fb74cd19d84f599bab3d
1404815e100956e6db84dd80f888f4df949bc06c
fix(lsp): `organizeImports` without resolving specifiers (#31230)
[ { "path": "cli/lsp/language_server.rs", "patch": "@@ -2347,21 +2347,10 @@ impl Inner {\n })?;\n \n if !organize_imports_edit.is_empty() {\n- let mut changes_with_modules = IndexMap::new();\n- changes_with_modules.extend(\n- fix_ts_import_changes(&organize_imports_edit, &...
2025-11-17T06:57:54
kubernetes/kubernetes
283df2214c0b682a8e85410a8bd7e85196b1fb05
f4ed7b3e28c7699778c1976d5f9d9b954c30993b
kubeadm: bump the CreatJob check timeout to 1 minute During upgrade on Windows nodes the pause image is bigger and there are various other factors that differ from Linux. Users can prepull images with `kubeadm config images pull --kubernetes-version TARGET`, but it seems reasonable to increase the rather short timeou...
[ { "path": "cmd/kubeadm/app/phases/upgrade/health.go", "patch": "@@ -106,7 +106,7 @@ func createJob(client clientset.Interface, cfg *kubeadmapi.ClusterConfiguration,\n \tconst (\n \t\tfieldSelector = \"spec.unschedulable=false\"\n \t\tns = metav1.NamespaceSystem\n-\t\ttimeout = 15 * time.Sec...
2026-01-16T12:00:09
golang/go
c7ccbddf22884f54885fd23143d1b2087ab6e53c
75b2bb1d1a62e69763aea6761b5be4b9c69e0214
cmd/compile/internal/ssa: more aggressive on dead auto elim Propagate "unread" across OpMoves. If the addr of this auto is only used by an OpMove as its source arg, and the OpMove's target arg is the addr of another auto. If the 2nd auto can be eliminated, this one can also be eliminated. This CL eliminates unnecessa...
[ { "path": "src/cmd/compile/internal/ssa/deadstore.go", "patch": "@@ -203,9 +203,27 @@ func (sr shadowRange) merge(lo, hi int64) shadowRange {\n // reaches stores then we delete all the stores. The other operations will then\n // be eliminated by the dead code elimination pass.\n func elimDeadAutosGeneric(f ...
2025-09-11T15:57:38
denoland/deno
1404815e100956e6db84dd80f888f4df949bc06c
4bf2ad3be7b40b99094e12eb309a730c7c529cd4
fix(deps): use windows-sys for all windows targets (#31308) there are `*-pc-windows-gnullvm` target, which are not covered by the previous condition. other packages are already using this
[ { "path": "runtime/subprocess_windows/Cargo.toml", "patch": "@@ -14,9 +14,7 @@ fastrand = \"2.3.0\"\n futures-channel = \"0.3.31\"\n libc = \"0.2.172\"\n \n-[target.x86_64-pc-windows-gnu.dependencies]\n-windows-sys = { version = \"0.59.0\", features = [\"Win32_Security\", \"Win32_System_JobObjects\", \"Win3...
2025-11-16T15:37:08
mrdoob/three.js
b367df14a1c0b35de4dd3670b10f0ce685d6f3c8
2376e3ca233339f371b3f3c0b399eea9c14bf854
Node: Document more modules. (#30135) * Node: Document more modules. * Clean up. * Node: Document more modules. * Fix E2E.
[ { "path": "examples/jsm/tsl/display/AfterImageNode.js", "patch": "@@ -1,11 +1,18 @@\n import { RenderTarget, Vector2, QuadMesh, NodeMaterial, PostProcessingUtils, TempNode, NodeUpdateType } from 'three/webgpu';\n import { nodeObject, Fn, float, vec4, uv, texture, passTexture, uniform, sign, max, convertToTe...
2024-12-16T11:41:30
tensorflow/tensorflow
9f23122b08bc4f30cde88b412b52391d63a27540
5f41a3190a68bfd3059044c6b8abf28af0a32e25
Fix docstring typo in ScopedTFImportGraphDefResults The docstring incorrectly referenced TF_ImportGraphDefOptions instead of TF_ImportGraphDefResults. This was a copy-paste error from the ScopedTFImportGraphDefOptions class defined above it.
[ { "path": "tensorflow/python/framework/c_api_util.py", "patch": "@@ -105,7 +105,7 @@ def __del__(self):\n \n \n class ScopedTFImportGraphDefResults(object):\n- \"\"\"Wrapper around TF_ImportGraphDefOptions that handles deletion.\"\"\"\n+ \"\"\"Wrapper around TF_ImportGraphDefResults that handles deletion....
2026-01-19T19:35:29
kubernetes/kubernetes
19e1f9cce2c58a8aa99ec249b5a1758c601fabb8
62277ef5d29d2aed692ae8013d5eb289bf75c0b5
Skip memory pressure PSI test for CRI-O Skip the memory pressure PSI test when running with CRI-O until automatic memory.high configuration is available in the runtime. The test fails on Fedora CoreOS due to different page cache reclaim behavior, and CRI-O is implementing a fix to automatically set memory.high to 95% ...
[ { "path": "test/e2e_node/summary_test.go", "patch": "@@ -405,6 +405,21 @@ var _ = SIGDescribe(\"Summary API\", framework.WithNodeConformance(), func() {\n \t\t})\n \n \t\tginkgo.It(\"should report Memory pressure in PSI metrics\", func(ctx context.Context) {\n+\t\t\truntime, _, err := getCRIClient()\n+\t\t\...
2026-01-13T07:36:16
swiftlang/swift
595ca7c2c3ece8ef1ce00909eb3e9a45770ad659
08c6317673aff11dbda74e6cd6b4a2646de84539
[CxxInterop] Enable test fixed by module selectors `test/Interop/Cxx/modules/prevent-module-namespace-shadowed-by-namespace.swift` is currently disabled because until recently, Swift didn’t have a good solution for module name shadowing. Module selectors are the intended solution to this class of bug, so turn them on ...
[ { "path": "test/Interop/Cxx/modules/prevent-module-namespace-shadowed-by-namespace.swift", "patch": "@@ -1,6 +1,6 @@\n-// XFAIL: *\n-// This test currently fails because there's no way to explicitly refer to\n-// a module that has been shadowed by another declaration, e.g., a namespace.\n+// This test fails...
2026-02-14T00:29:09
golang/go
dd839f1d0037931395316ab13aefd3941aa959e8
6e165b4d176fb4c7fbb615b522a8b69d0b66c513
internal/strconv: handle %f with fixedFtoa when possible Everyone writes papers about fast shortest-output formatting. Eventually we also sped up fixed-length formatting %e and %g. But we've neglected %f, which falls back to the slow general code even for relatively trivial things like %.2f on 1.23. This CL uses the ...
[ { "path": "src/internal/strconv/ftoa.go", "patch": "@@ -146,28 +146,38 @@ func genericFtoa(dst []byte, val float64, fmt byte, prec, bitSize int) []byte {\n \t\treturn formatDigits(dst, shortest, neg, digs, prec, fmt)\n \t}\n \n-\t// TODO figure out when we can use fast code for f\n-\tif fmt != 'f' {\n-\t\t/...
2025-11-02T17:32:01
mrdoob/three.js
1a822003611efdbd6d2213809af0d276fe5403f0
2eff8e9dfe5b4b03aac2c3217905d8969ea2be57
Manual: Improve post processing guide. (#30098) * doc: Update post-processing.html Comparing the relevant example file, I found that there is an error here It is not clear how the document was generated, I found that other related translation documents also have this error * Update post-processing.html * Upd...
[ { "path": "manual/en/post-processing.html", "patch": "@@ -154,10 +154,10 @@ <h2 id=\"-rendertoscreen-\"><code class=\"notranslate\" translate=\"no\">renderToScree\n <p>Looking inside\n <a href=\"https://github.com/mrdoob/three.js/blob/master/examples/jsm/postprocessing/BloomPass.js\"><code class=\"notransla...
2024-12-12T22:50:07
denoland/deno
4bf2ad3be7b40b99094e12eb309a730c7c529cd4
96434a1d390d105514b8bf6f8ac0fc135e8f8f7a
fix: skip doing npm resolution in more cases (#31305) There was a bug that was causing npm resolution to occur due to: * https://github.com/denoland/deno_semver/pull/49 Also includes: * https://github.com/denoland/deno_semver/pull/45
[ { "path": "Cargo.lock", "patch": "@@ -2876,9 +2876,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_semver\"\n-version = \"0.9.0\"\n+version = \"0.9.1\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"2625b7107cc3f61a462886d5fa77c23e063c1fd15b90e3d5ee2646e9f6178d55\...
2025-11-15T22:50:58
tensorflow/tensorflow
827a10a3f354ac45ed2c126da832865535222365
5f41a3190a68bfd3059044c6b8abf28af0a32e25
Improve error message for tf.image.extract_patches with XLA When using tf.image.extract_patches with @tf.function(jit_compile=True), if sizes, strides, or rates parameters contain dynamic tensors that cannot be evaluated at graph construction time, the error message was cryptic: 'Expected int for argument rates not <t...
[ { "path": "tensorflow/python/ops/array_ops.py", "patch": "@@ -6194,6 +6194,43 @@ def searchsorted(sorted_sequence,\n quantize.__doc__ = gen_array_ops.quantize_v2.__doc__\n \n \n+def _get_int_list_attr(values, name):\n+ \"\"\"Converts a list of values to a list of Python integers for op attributes.\n+\n+ T...
2026-01-18T19:41:43
kubernetes/kubernetes
11dcfc6c15bcb1f0d4edd4b3a982184e07ce574a
d44d0281eb5c0a3c4bde3923c3695f8d5a3bff01
ktesting: replace Begin/End with TContext.Step Manually pairing Being with End is too error prone to be useful. It had the advantage of keeping variables created between them visible to the following code, but that doesn't justify using those calls. By using a callback we can achieve a few things: - Code using it au...
[ { "path": "test/e2e_dra/upgradedowngrade_test.go", "patch": "@@ -123,28 +123,32 @@ func testUpgradeDowngrade(tCtx ktesting.TContext) {\n \t}\n \n \t// Determine what we need to downgrade to.\n-\ttCtx = ktesting.Begin(tCtx, \"get source code version\")\n-\tgitVersion, _, err := sourceVersion(tCtx, repoRoot)\...
2025-12-10T16:54:44
golang/go
6e165b4d176fb4c7fbb615b522a8b69d0b66c513
9f6590f333ee3ecd318e95ef54073fe76d1225de
cmd/compile: implement Avg64u, Hmul64, Hmul64u for wasm This lets us remove useAvg and useHmul from the division rules. The compiler is simpler and the generated code is faster. goos: wasip1 goarch: wasm pkg: internal/strconv │ old.txt │ new.txt │ ...
[ { "path": "src/cmd/compile/internal/ssa/_gen/Wasm.rules", "patch": "@@ -2,6 +2,8 @@\n // Use of this source code is governed by a BSD-style\n // license that can be found in the LICENSE file.\n \n+(Last ___) => v.Args[len(v.Args)-1]\n+\n // Lowering arithmetic\n (Add(64|32|16|8|Ptr) ...) => (I64Add ...)\n (...
2025-11-04T03:09:48
mrdoob/three.js
3c2c9303fae36a2289374753e010374477104c4f
a8aaca32f614a0e8662c5588edfed2c61ab81ed7
Line2NodeMaterial: Fix usage of optional nodes. (#30107) * Line2NodeMaterial: fix gap * Update PerspectiveCamera.js --------- Co-authored-by: Samuel Rigaud <srigaud@duodisplay.com> Co-authored-by: Michael Herzog <michael.herzog@human-interactive.org>
[ { "path": "src/materials/nodes/Line2NodeMaterial.js", "patch": "@@ -100,7 +100,7 @@ class Line2NodeMaterial extends NodeMaterial {\n \t\t\tif ( useDash ) {\n \n \t\t\t\tconst dashScaleNode = this.dashScaleNode ? float( this.dashScaleNode ) : materialLineScale;\n-\t\t\t\tconst offsetNode = this.offsetNode ? ...
2024-12-11T21:20:15
swiftlang/swift
5a8d603adacd947789ed5139e127c5434e0d103c
45260c7de42d28ac6deb772672a7a6137bfa29d6
Improve compatibility between swift::version::Version and llvm::VersionTuple llvm::VersionTuple now also supports 5-component versions; this patch removes the limitation of stripping the last component when converting from a swift::version::Version to an llvm::VersionTuple. This fixes a bug in LLDB's Swift version com...
[ { "path": "include/swift/Basic/Version.h", "patch": "@@ -92,8 +92,7 @@ class Version {\n return Components.empty();\n }\n \n- /// Convert to a (maximum-4-element) llvm::VersionTuple, truncating\n- /// away any 5th component that might be in this version.\n+ /// Convert to an llvm::VersionTuple.\n ...
2026-02-16T19:41:17
denoland/deno
96434a1d390d105514b8bf6f8ac0fc135e8f8f7a
00f1eeb8b00e854d610e8b8f4c545e2822ff6c3c
fix(ext/web): Event dispatch should continue after reporting exception (#31297) https://dom.spec.whatwg.org/#concept-event-listener-inner-invoke --------- Signed-off-by: snek <snek@deno.com>
[ { "path": "ext/web/02_event.js", "patch": "@@ -772,16 +772,20 @@ function innerInvokeEventListeners(\n setInPassiveListener(eventImpl, true);\n }\n \n- if (typeof listener.callback === \"object\") {\n- if (typeof listener.callback.handleEvent === \"function\") {\n- listener.callback...
2025-11-15T17:45:29
tensorflow/tensorflow
fbb7389114eb80dd8ceff07fdcd470b861332a9c
5f41a3190a68bfd3059044c6b8abf28af0a32e25
Fixes #108471 (BertInputTensorsMd.md - "tesnor" -> "tensor") Fixes bugs which may have occoured because the wrong is set internally because it had to be "tensor" instead of "tesnor" (in multiple places within this file)
[ { "path": "tensorflow/lite/g3doc/api_docs/python/tflite_support/metadata_writers/metadata_info/BertInputTensorsMd.md", "patch": "@@ -11,7 +11,7 @@ description: A container for the input tensor metadata information of Bert model\n <meta itemprop=\"path\" content=\"Stable\" />\n <meta itemprop=\"property\" co...
2026-01-17T17:29:09
kubernetes/kubernetes
db36339d035ad09f4a70b88f3775d8da29cc359e
0d64cbff49edd5f91acf6506e00ff494e6cb598f
e2e framework: avoid memory overhead of ginkgo.GinkgoT It turned out that ginkgo.GinkgoT() wasn't as cheap as it should have been (fix coming in Ginkgo 2.27.5). When instantiated once for each framework.Framework instance during init by all workers at the same time, the resulting spike in overall memory usage within t...
[ { "path": "test/e2e/framework/framework.go", "patch": "@@ -99,11 +99,12 @@ var (\n // struct.\n //\n // A framework instance implements ktesting.TB and thus can be passed as\n-// first parameter to [github.com/stretchr/testify/assert]. There are\n-// just two caveats:\n+// first parameter to [github.com/str...
2026-01-12T19:13:37
golang/go
fe040658b20878bdbb9122ebc5446bc4104a7ddf
e452f4ac7de6c80e0be69a3c59ae739cfd806917
[dev.simd] simd/_gen: fix sorting ops slices Fix sorting slices to avoid panic when there are more opsDataImm than opsData (the problem occurs when generating only a subset of instructions but it may be better to keep them sorted by their own names anyway). Change-Id: Iea7fe61259e8416f16c46158d87c84b1d7a3076d Reviewe...
[ { "path": "src/simd/_gen/simdgen/gen_simdMachineOps.go", "patch": "@@ -185,13 +185,13 @@ func writeSIMDMachineOps(ops []Operation) *bytes.Buffer {\n \t\treturn compareNatural(opsData[i].OpName, opsData[j].OpName) < 0\n \t})\n \tsort.Slice(opsDataImm, func(i, j int) bool {\n-\t\treturn compareNatural(opsData...
2025-10-29T13:49:28
mrdoob/three.js
a8aaca32f614a0e8662c5588edfed2c61ab81ed7
a93ab32bd3b6e28a0135283a6197ed40c4ceb07f
Node: fix types (#30103) * Node: fix types * Improve types * Fix more types * Update UniformNode.js * Update PassNode.js * Update AnalyticLightNode.js * Update MathNode.js * Update MathNode.js --------- Co-authored-by: Samuel Rigaud <srigaud@duodisplay.com> Co-authored-by: Michael Herzog <m...
[ { "path": "src/nodes/accessors/ReferenceNode.js", "patch": "@@ -172,7 +172,7 @@ class ReferenceNode extends Node {\n \t\tthis.group = null;\n \n \t\t/**\n-\t\t * An optinal label of the internal uniform node.\n+\t\t * An optional label of the internal uniform node.\n \t\t *\n \t\t * @type {String?}\n \t\t *...
2024-12-11T19:44:37
denoland/deno
b0cfbf53d3984a8e4aa26ca4f24d48f0df54e7c8
ffe207a859a85b6eb0079b137916ed12c0efbfce
fix(ext/node): Add sqlite `setAllowUnknownNamedParameters` option (#31202) Adds [statement.setAllowUnknownNamedParameters(enabled)](https://nodejs.org/api/sqlite.html#statementsetallowunknownnamedparametersenabled) to `node:sqlite`. Closes #31196
[ { "path": "ext/node/ops/sqlite/database.rs", "patch": "@@ -569,6 +569,7 @@ impl DatabaseSync {\n statements: Rc::clone(&self.statements),\n use_big_ints: Cell::new(false),\n allow_bare_named_params: Cell::new(true),\n+ allow_unknown_named_params: Cell::new(false),\n is_iter_fini...
2025-11-14T10:30:03
swiftlang/swift
8e2a980fba58a54ee857b2d0f8abeb61b316289e
faf96cee64fcf991dc4f9bd82f96604c99032953
[sil-mode] Fix broken regex and remove duplicates
[ { "path": "utils/sil-mode.el", "patch": "@@ -21,10 +21,8 @@\n (list\n ;; Comments\n '(\"^#!.*\" . font-lock-comment-face)\n- ;; Types\n- '(\"\\\\b[A-Z][a-zA-Z_0-9]*\\\\b\" . font-lock-type-face)\n ;; Floating point constants\n- '(\"\\\\b[-+]?[0-9]+\\.[0-9]+\\\\b\" . font-lock-preprocessor-f...
2026-02-16T15:52:53
mrdoob/three.js
a93ab32bd3b6e28a0135283a6197ed40c4ceb07f
80b79914282e58b0217f73b2e0769bc43a620d04
TSL: Fix `positionWorld` used in `material.positionNode` and `fragment-stage` (#30105) * fix `positionWorld` used in `positionNode` and fragment-stage * update merge dev * revision
[ { "path": "src/materials/nodes/NodeMaterial.js", "patch": "@@ -352,7 +352,7 @@ class NodeMaterial extends Material {\n \n \t\tif ( this.positionNode !== null ) {\n \n-\t\t\tpositionLocal.assign( this.positionNode );\n+\t\t\tpositionLocal.assign( this.positionNode.context( { isPositionNodeInput: true } ) );\...
2024-12-11T17:45:23
golang/go
34fec512ce34fb5926aa38e0ccd0083feed94733
162ba6cc405851ee7f0d30b600de1a308321ddca
internal/strconv: extract fixed-precision ftoa from ftoaryu.go The fixed-precision ftoa algorithm is not actually documented in the Ryū paper, and it is fairly straightforward: multiply by a power of 10 to get an integer that contains the digits we need. There is also no need for separate float32 and float64 implement...
[ { "path": "src/internal/strconv/atoi.go", "patch": "@@ -41,8 +41,6 @@ const intSize = 32 << (^uint(0) >> 63)\n // IntSize is the size in bits of an int or uint value.\n const IntSize = intSize\n \n-const maxUint64 = 1<<64 - 1\n-\n // ParseUint is like [ParseInt] but for unsigned numbers.\n //\n // A sign pr...
2025-11-01T13:41:40
kubernetes/kubernetes
b8af7e8ea8f016df1f74dc2e3ae599912db70061
deb23a8f8400807ecdbc509bc897ad69168d63de
kubelet: fix data race in QoS cgroup CPU shares test
[ { "path": "pkg/kubelet/cm/qos_container_manager_linux_test.go", "patch": "@@ -23,6 +23,7 @@ import (\n \t\"fmt\"\n \t\"strconv\"\n \t\"strings\"\n+\t\"sync\"\n \t\"testing\"\n \n \t\"github.com/go-logr/logr\"\n@@ -163,19 +164,21 @@ func TestQoSContainerCgroup(t *testing.T) {\n \tassert.Equal(t, qosConfigs[v...
2026-01-16T05:30:53
tensorflow/tensorflow
4602d68e664a356bf05aa1cb98141e885bdb79f1
bf3e9e4b96574244688cada9fbcc201ce20121f4
Add debug option setter from flag for xla_early_exit_with_layouts PiperOrigin-RevId: 857354161
[ { "path": "third_party/xla/xla/debug_options_flags.cc", "patch": "@@ -470,6 +470,7 @@ DebugOptions DefaultDebugOptionsIgnoringFlags() {\n DebugOptions::DETECTION_MODE_NONE);\n opts.set_xla_gpu_experimental_scaled_dot_with_triton(false);\n opts.set_xla_gpu_experimental_use_raft_select_k(false);\n+ ...
2026-01-17T01:00:54
denoland/deno
ffe207a859a85b6eb0079b137916ed12c0efbfce
de72003747692fc64628890efe7f22ba4cca58ac
fix(ext/node): FileHandle compatibility (#31164) Towards #29972 Tries to reland #31094 that got reverted on #31103 due to CI test failures. This PR differs by fixing the `[kUnref]` method to close resource ID correctly. Allows the following tests to pass: - https://github.com/nodejs/node/blob/v24.2.0/test/parallel/...
[ { "path": "ext/node/polyfills/_fs/_fs_fchmod.ts", "patch": "@@ -10,6 +10,7 @@ import {\n } from \"ext:deno_node/internal/validators.mjs\";\n import { op_fs_fchmod_async, op_fs_fchmod_sync } from \"ext:core/ops\";\n import { primordials } from \"ext:core/mod.js\";\n+import { promisify } from \"ext:deno_node/...
2025-11-14T05:17:45
swiftlang/swift
03675896f97f4ea26d33d3b57f593b15b03c9b49
5a78195bd559daadf7a91d5777342988bff919cc
[Completion] Remove some redundant `#selector` logic Both of these cases are already handled in `PostfixCompletionCallback`.
[ { "path": "lib/IDE/CodeCompletion.cpp", "patch": "@@ -132,7 +132,6 @@ class CodeCompletionCallbacksImpl : public CodeCompletionCallbacks,\n bool AttrParamHasLabel;\n bool IsInSil = false;\n bool HasSpace = false;\n- bool PreferFunctionReferencesToCalls = false;\n bool AttTargetIsIndependent = false...
2026-02-16T11:11:38
golang/go
162ba6cc405851ee7f0d30b600de1a308321ddca
9795c7ba220702c8bbf0188a8fc28e1d482bae4f
internal/strconv: add tests and benchmarks for ftoaFixed ftoaFixed is in the next CL; this proves the tests are correct against the current implementation, and it adds a benchmark for comparison with the new implementation. Change-Id: I7ac8a1f699b693ea6d11a7122b22fc70cc135af6 Reviewed-on: https://go-review.googlesour...
[ { "path": "src/internal/strconv/fp_test.go", "patch": "@@ -99,12 +99,14 @@ func TestFp(t *testing.T) {\n \ts := bufio.NewScanner(strings.NewReader(testfp))\n \tfor lineno := 1; s.Scan(); lineno++ {\n \t\tline := s.Text()\n-\t\tif len(line) == 0 || line[0] == '#' {\n+\t\tline, _, _ = strings.Cut(line, \"#\")...
2025-11-02T14:59:59
denoland/deno
de72003747692fc64628890efe7f22ba4cca58ac
67ee2af25011bd14b08476a77e8dc272858407ae
fix(tunnel): misc fixes (#30968)
[ { "path": "cli/main.rs", "patch": "@@ -715,19 +715,12 @@ async fn resolve_flags_and_init(\n .map(|files| files.iter().map(PathBuf::from).collect());\n load_env_variables_from_env_files(env_file_paths.as_ref(), flags.log_level);\n \n- if deno_lib::args::has_flag_env_var(\"DENO_CONNECTED\")\n- && ma...
2025-11-14T05:10:00
mrdoob/three.js
6a4309b6e2a4b7cfb6dffe94f372df632cf35b6d
de859295a214bac0ecb2da1bdccf4383c5104716
Node: Document more modules. (#30100) * Node: Document more modules. * Fix typo.
[ { "path": "src/nodes/accessors/Camera.js", "patch": "@@ -2,11 +2,60 @@ import { uniform } from '../core/UniformNode.js';\n import { renderGroup } from '../core/UniformGroupNode.js';\n import { Vector3 } from '../../math/Vector3.js';\n \n+/** @module Camera **/\n+\n+/**\n+ * TSL object that represents the `n...
2024-12-11T13:26:44
tensorflow/tensorflow
1a2b2e1606e2f4d5708e4ef6a319cb63a8bdfcef
8befe065358f8938ac2c1209b24d762b1c11a815
PR #36275: Add docs for debugging OOM errors with XProf Imported from GitHub PR https://github.com/openxla/xla/pull/36275 **📝 Summary of Changes** Add a new documentation page on debugging OOM errors with XProf's memory viewer. **🚀 Kind of Contribution** 📚 Documentation Copybara import of the project: -- 31984...
[ { "path": "third_party/xla/docs/_toc.yaml", "patch": "@@ -66,6 +66,8 @@ toc:\n path: /xla/errors_overview\n - title: Error Codes\n path: /xla/error_codes\n+ - Debug OOM errors with XProf\n+ path: xla/oom_debugging\n - title: Contributing\n # These should be in alphabetical order unless other...
2026-01-16T23:55:13
golang/go
9795c7ba220702c8bbf0188a8fc28e1d482bae4f
ad5e941a4559a402fa3f428e612c58ec86471517
internal/strconv: fix pow10 off-by-one in exponent result The exact meaning of pow10 was not defined nor tested directly. Define it as pow10(e) returns mant, exp where mant/2^128 * 2**exp = 10^e. This is the most natural definition but is off-by-one from what it had been returning. Fix the off-by-one and then adjust t...
[ { "path": "src/internal/strconv/atofeisel.go", "patch": "@@ -40,7 +40,7 @@ func eiselLemire64(man uint64, exp10 int, neg bool) (f float64, ok bool) {\n \t// Normalization.\n \tclz := bits.LeadingZeros64(man)\n \tman <<= uint(clz)\n-\tretExp2 := uint64(exp2+64-float64Bias) - uint64(clz)\n+\tretExp2 := uint64...
2025-11-02T03:26:17