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
4c0ae84d94abacc9a71ee1a81488b96c5dbfe3ca
a2bcd84c6cab7164e0dcc2b4f4aca2a9e1e36fdd
fix(ffi): check that fast calls are taken (#30658)
[ { "path": "ext/ffi/00_ffi.js", "patch": "@@ -1,6 +1,6 @@\n // Copyright 2018-2025 the Deno authors. MIT license.\n \n-import { core, primordials } from \"ext:core/mod.js\";\n+import { core, internals, primordials } from \"ext:core/mod.js\";\n const {\n isArrayBuffer,\n isDataView,\n@@ -14,6 +14,7 @@ imp...
2025-09-11T10:02:57
tensorflow/tensorflow
10ebfedb0e2a90739179b86f242c12cd7b8edd5f
6fa160212a894120aa110ea63d996c8cf65e8009
PR #35963: Enable Linux system calls on arm64 Imported from GitHub PR https://github.com/openxla/xla/pull/35963 📝 Summary of Changes Include Linux definitions when compiling for arm64 as well as x86_64. 🎯 Justification Without this, some NUMA-aware operations provided by hwloc do not work on arm64 Linux systems. ...
[ { "path": "third_party/xla/third_party/hwloc/hwloc.BUILD", "patch": "@@ -51,6 +51,7 @@ expand_template(\n out = \"include/hwloc/autogen/config.h\",\n substitutions = select({\n \"@local_xla//xla/tsl:linux_x86_64\": _INCLUDE_HWLOC_AUTOIGEN_CONFIG_H_LINUX_SUBS,\n+ \"@local_xla//xla/tsl:...
2026-01-07T13:06:04
golang/go
f03c392295cfd57c29c92fcc300181f8016cf5ac
707454b41fa1fea7e0286b1370dea47d3422b2cb
runtime: fix aix/ppc64 library initialization AIX sets the argc and argv parameters in R14 and R15, but _rt0_ppc64x_lib expects them to be in R3 and R4. Also, call reginit in _rt0_ppc64x_lib. These issues were oversights from CL 706395 which went unnoticed because there if no LUCI aix/ppc64 builder (see #67299). Cha...
[ { "path": "src/runtime/asm_ppc64x.s", "patch": "@@ -21,6 +21,9 @@ TEXT _rt0_ppc64x_lib(SB),NOSPLIT|NOFRAME,$0\n \tMOVD\tR4, _rt0_ppc64x_lib_argv<>(SB)\n \n \t// Synchronous initialization.\n+\tMOVD\t$runtime·reginit(SB), R12\n+\tMOVD\tR12, CTR\n+\tBL\t(CTR)\n \tMOVD\t$runtime·libpreinit(SB), R12\n \tMOVD\tR...
2025-10-01T08:59:53
swiftlang/swift
63da6499eb1c28bba7c7352ba0691a20a0ae0241
6aa55785f0cde88735500d05a5b734b9698e0493
LifetimeDependence: Disable indices in Swift lifetime dependencies Lifetime indices are never necessary in Swift, they unnecessarily expose implementation details, and they make lifetime annotations more error-prone, since they may need to be updated if a function's parameter list changes. The Swift Syntax parser als...
[ { "path": "include/swift/AST/DiagnosticsParse.def", "patch": "@@ -2178,8 +2178,8 @@ ERROR(expected_lparen_after_lifetime_dependence, PointsToFirstBadToken,\n \n ERROR(expected_identifier_or_index_or_self_after_lifetime_dependence,\n PointsToFirstBadToken,\n- \"expected 'copy', 'borrow', or '&' fo...
2026-01-28T16:41:36
kubernetes/kubernetes
66d4bd320604a73c978c15109e3c249f040d41d0
7d0b8f979c92253bbc3aade4b3f6c9161e3a839f
Fix data race in PriorityQueue.UnschedulablePods() The UnschedulablePods() function iterates over the unschedulablePods.podInfoMap without holding any lock, while other goroutines may concurrently modify the map via addOrUpdate(), delete(), or clear(). Other functions like PendingPods() and GetPod() correctly acquire...
[ { "path": "pkg/scheduler/backend/queue/scheduling_queue.go", "patch": "@@ -1302,6 +1302,8 @@ func (p *PriorityQueue) PodsInBackoffQ() []*v1.Pod {\n \n // UnschedulablePods returns all the pods in unschedulable state.\n func (p *PriorityQueue) UnschedulablePods() []*v1.Pod {\n+\tp.lock.RLock()\n+\tdefer p.lo...
2025-12-20T12:34:01
denoland/deno
c169af0431aeb0b07a1f7ee0da527d48761cba6e
bfcf106bf6f0894fc0114617200e03c80323ed26
fix: Add info/hint for unstable Deno.bundle API (#30682)
[ { "path": "runtime/fmt_errors.rs", "patch": "@@ -358,6 +358,13 @@ fn get_suggestions_for_terminal_errors(e: &JsError) -> Vec<FixSuggestion<'_>> {\n \"Run again with `--unstable-kv` flag to enable this API.\",\n ),\n ];\n+ } else if msg.contains(\"bundle is not a function\") {\n+ ...
2025-09-10T18:29:21
tensorflow/tensorflow
5ff7f69149b351fac1b694543a381ded53152b89
44f242a13c06fc09f2b4d21316eff43c10a41183
PR #35585: [ROCm] Add fusion autotuning implementation for AMD GPUs Imported from GitHub PR https://github.com/openxla/xla/pull/35585 AMD GPUs were missing the AddFusionAutotuningPass() override, causing PersistedAutotuningTest.SingleOperationGetsAutotuned to fail because no autotuning results were generated. This c...
[ { "path": "third_party/xla/xla/service/gpu/BUILD", "patch": "@@ -2399,8 +2399,10 @@ cc_library(\n \"//xla:xla_data_proto_cc\",\n \"//xla:xla_proto_cc\",\n \"//xla/backends/autotuner:codegen_backend\",\n+ \"//xla/backends/gpu/autotuner:block_level_emitter\",\n \"//xla/b...
2026-01-07T13:02:30
golang/go
633dd1d475e7346b43d87abc987a8c7f256e827d
8ad27fb656ab162546137b512c61f6a26a90a6c5
encoding/json: fix Decoder.InputOffset regression in goexperiment.jsonv2 The Decoder.InputOffset method was always ambiguous about the exact offset returned since anything between the end of the previous token to the start of the next token could be a valid result. Empirically, it seems that the behavior was to repor...
[ { "path": "src/encoding/json/stream_test.go", "patch": "@@ -557,3 +557,67 @@ func TestTokenTruncation(t *testing.T) {\n \t\t}\n \t}\n }\n+\n+func TestDecoderInputOffset(t *testing.T) {\n+\tconst input = ` [\n+\t\t[ ] , [ \"one\" ] , [ \"one\" , \"two\" ] ,\n+\t\t{ } , { \"alpha\" : \"bravo\" } , { \"alpha\"...
2025-09-15T19:56:11
swiftlang/swift
079c1657ae8058df739f2e0fe595327641cc4452
3e7647de2c1c108b1d6479833a008c257927e2cf
[Backtracing] Fix the new build system for Windows. We needed to add the `Runtime` module to the new build system, but when I tried doing that, various things broke. Firstly, we ended up with two targets with the name `swiftRuntime`, but only in the static build (because in that build, everything gets pulled in toget...
[ { "path": "Runtimes/Core/Core/CMakeLists.txt", "patch": "@@ -333,7 +333,7 @@ target_include_directories(swiftCore INTERFACE\n \n target_link_libraries(swiftCore\n PRIVATE\n- swiftRuntime\n+ swiftRuntimeCore\n swiftLLVMSupport\n swiftDemangling\n swiftStdlibStubs\n@@ -343,7 +343,7 @@ targ...
2026-02-02T16:50:54
denoland/deno
bfcf106bf6f0894fc0114617200e03c80323ed26
9c871d0a57e94ee353cbfe0c06d55c78bf90cb8c
fix(http): duplicate listener should inherit onError and signal (#30680)
[ { "path": "ext/http/00_serve.ts", "patch": "@@ -779,7 +779,9 @@ function serve(arg1, arg2) {\n 3: duplicateListener,\n } = op_http_serve_address_override();\n if (overrideKind) {\n- let envOptions = duplicateListener ? { __proto__: null } : options;\n+ let envOptions = duplicateListener\n+ ...
2025-09-10T15:41:13
golang/go
3f451f2c54c87db8b8f30e4d5224933f7895f453
be0fed8a5fc4e34f2c6caf503830bcdf904ded54
testing/synctest: fix inverted test failure message in TestContextAfterFunc Fixes #75685 Change-Id: I5592becfde6aaca3d7f0e2f09bc7a9785228523e GitHub-Last-Rev: 0ff7bd31ecfc23222dae70194621397330f3c2da GitHub-Pull-Request: golang/go#75687 Reviewed-on: https://go-review.googlesource.com/c/go/+/708275 Reviewed-by: Alan D...
[ { "path": "src/testing/synctest/example_test.go", "patch": "@@ -66,7 +66,7 @@ func TestContextAfterFunc(t *testing.T) {\n \t\tcancel()\n \t\tsynctest.Wait()\n \t\tif !afterFuncCalled {\n-\t\t\tt.Fatalf(\"before context is canceled: AfterFunc not called\")\n+\t\t\tt.Fatalf(\"after context is canceled: AfterF...
2025-10-01T12:46:16
mrdoob/three.js
cd1d4a5d7944578d7c3837511d1a6e7c4af000cc
883d08d88f0af69780ddff4728bc90691d166734
SpriteNodeMaterial: Add sizeAttenuation (#29394) * SpriteNodeMaterial: Add sizeAttenuation * Regenerate screenshot * revert mat4 mul with vec4(,1)? * revert * using let and toVar fixes the issue? * merge upstream/dev * revert screenshot * does reverting SpriteNode even fix? * revert fix * re...
[ { "path": "src/materials/nodes/SpriteNodeMaterial.js", "patch": "@@ -1,5 +1,4 @@\n import NodeMaterial from './NodeMaterial.js';\n-import { uniform } from '../../nodes/core/UniformNode.js';\n import { cameraProjectionMatrix } from '../../nodes/accessors/Camera.js';\n import { materialRotation } from '../../...
2024-09-23T18:31:06
swiftlang/swift
3e7647de2c1c108b1d6479833a008c257927e2cf
54385105a0a366eefb4293a1cd7e1da0feebd9e8
[Backtracing] Fix silly mistake. I really did mean `ret`. rdar://101623384
[ { "path": "stdlib/public/RuntimeModule/get-cpu-context-aarch64.asm", "patch": "@@ -39,7 +39,7 @@ _swift_get_cpu_context PROC PUBLIC\n str x30, [x8, #0x100]\n mov x1, #0x1ffffffff\n str x1, [x8, #0x108]\n- blr\n+ ret\n _swift_get_cpu_context ENDP\n \n ...
2026-02-02T16:49:29
kubernetes/kubernetes
aa1dfd0ab8673e81acdf869372ed94a8094f24f2
456c13b409ed4b697df522836391603c2beaf47c
Update NoTimestamp exceptions for qualified names
[ { "path": "hack/golangci-hints.yaml", "patch": "@@ -153,13 +153,13 @@ linters:\n \n \n # notimestamp: Legacy 'Timestamp' fields retained for backward compatibility\n- - text: 'notimestamp: naming convention \"notimestamp\": field ExpirationTimestamp: prefer use of the term ''time'' ov...
2025-12-19T14:23:59
denoland/deno
9c871d0a57e94ee353cbfe0c06d55c78bf90cb8c
c6adba122836aeddd92800c45282897e1f508bd3
fix(ext/node): validate `fs.close` callback function (#30679) Towards #29972 Allows the [parallel/test-fs-close-errors.js](https://github.com/nodejs/node/blob/v24.2.0/test/parallel/test-fs-close-errors.js) test to pass, and also addresses the `prefer-primordials` lint rule #24236
[ { "path": "ext/node/polyfills/_fs/_fs_close.ts", "patch": "@@ -1,22 +1,31 @@\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 type { CallbackWithError } from \"ext:deno_no...
2025-09-10T14:29:22
golang/go
fcb893fc4b615774f8cdd050e17ad227998e512a
19cc1022ba4e9ddf172c04107fa613e6d50a7eba
cmd/compile/internal/ssa: remove redundant "type:" prefix check Remove redundant "type:" prefix check on symbol names in isFixedLoad, also refactor some duplicate code into methods. Change-Id: I8358422596eea8c39d1a30a554bd0aae8b570038 Reviewed-on: https://go-review.googlesource.com/c/go/+/701275 Reviewed-by: Keith Ra...
[ { "path": "src/cmd/compile/internal/ssa/rewrite.go", "patch": "@@ -2059,12 +2059,12 @@ func isFixedLoad(v *Value, sym Sym, off int64) bool {\n \t\treturn false\n \t}\n \n-\tif strings.HasPrefix(lsym.Name, \"type:\") {\n+\tif ti := lsym.TypeInfo(); ti != nil {\n \t\t// Type symbols do not contain information...
2025-09-05T14:48:48
mrdoob/three.js
b31204dfb38ad629f456ff5ed601173ea8b307c3
44cb404c6907e88227bb0ac06183c0c9df800f8f
Lensflare: Add WebGPU version. (#29451) * lensflare example * fix depth * remove forceWebGL * rename * fix typo * follow original code * Update LensflareMesh.js --------- Co-authored-by: aardgoose <angus.sawyer@email.com> Co-authored-by: Michael Herzog <michael.herzog@human-interactive.org>
[ { "path": "examples/files.json", "patch": "@@ -331,6 +331,7 @@\n \t\t\"webgpu_instance_points\",\n \t\t\"webgpu_instance_uniform\",\n \t\t\"webgpu_instancing_morph\",\n+\t\t\"webgpu_lensflares\",\n \t\t\"webgpu_lightprobe\",\n \t\t\"webgpu_lightprobe_cubecamera\",\n \t\t\"webgpu_lights_custom\",", "addi...
2024-09-21T08:47:20
denoland/deno
aed2f922f6b804f6250cc04417487ede10400408
4e4bbf2fccd37c80a2d01c99ea82222eda348d87
fix(lsp): auto-import dep entries from workspace member import maps (#30667)
[ { "path": "cli/lsp/analysis.rs", "patch": "@@ -322,7 +322,7 @@ impl<'a> TsResponseImportMapper<'a> {\n self.resolver.get_scoped_resolver(self.scope.as_deref());\n \n if let Some(dep_name) =\n- scoped_resolver.resource_url_to_configured_dep_key(specifier)\n+ scoped_resolver.resource_url_t...
2025-09-09T19:31:39
tensorflow/tensorflow
6a15d29cc1916aed4add0af71a3f0dde514cf369
60518a75fa7ea5b42bf9c9a0316db33c5501e4cb
[XLA:GPU] Handle un-normalized multi heros fusion in PackedTranspose Fixes a crash in PackedTranspose when handling multi-hero fusions where heroes have different ranks (e.g., due to unsqueezed dimensions after removing transposedimensiongrouper). The previous implementation incorrectly used the shape of the first he...
[ { "path": "third_party/xla/xla/backends/gpu/codegen/emitters/tests/transpose/multiple_roots_mixed_rank.hlo", "patch": "@@ -0,0 +1,21 @@\n+// RUN: fusion_to_mlir %s | FileCheck %s\n+// RUN: gpu_test_correctness %s\n+\n+HloModule module\n+\n+fusion {\n+ p0 = bf16[2,2048,8,16]{3,2,1,0} parameter(0)\n+ t1 = b...
2026-01-07T10:47:29
swiftlang/swift
ceaba82d6d2e562027eb252752a2df261be9561d
5b4c428ec48d18c6d55662f348c04fdb17ea0f6b
[Backtracing] Updates after review. Tweaked the comment in `Runtime/Config.h`. Fixed a couple of incorrect ARM64 instruction mnemonics. This still needs testing on ARM64 Windows. Fixed an out-of-date comment in `swift-backtrace`. Use a macro in `Backtrace.cpp` to guarantee we don't overrun the buffer, and in the p...
[ { "path": "include/swift/Runtime/Config.h", "patch": "@@ -576,8 +576,8 @@ swift_auth_code(T value, unsigned extra) {\n # endif\n #elif defined(_WIN32)\n // Backtracing is disabled for 32-bit x86 on Windows because the Swift\n- // compiler doesn't respect `stdcall`; we should be OK for other Windows\n-...
2026-01-23T15:15:31
golang/go
08afc50bea9a94e86adfc8cd852c6ae5b698cdaa
97da068774d5aa9147e63eb146350145c73bfc3d
mime: extend "builtinTypes" to include a more complete list of common types Implement all agreed upon types, using IANA's listed media types to decide when there is a disagreement in type. Except in the case of `.wav` where `audio/wav` is used. Fixes #69530 Change-Id: Iec99a6ceb534073be83c8390f48799bec3e4cfc7 GitHu...
[ { "path": "src/mime/type.go", "patch": "@@ -17,7 +17,7 @@ var (\n \tmimeTypesLower sync.Map // map[string]string; \".z\" => \"application/x-compress\"\n \n \t// extensions maps from MIME type to list of lowercase file\n-\t// extensions: \"image/jpeg\" => [\".jpg\", \".jpeg\"]\n+\t// extensions: \"image/jpeg...
2025-09-25T21:00:45
mrdoob/three.js
a789b4404af962cb5b8d1ee97dd272970c6cb2a2
d4164b8804c56f716935ce4af63ad4ddbf56e0a3
Loaders: Unpack colors to working color space (#29448) * feat(loaders): Loaders unpack colors to working color space * fix semicolons
[ { "path": "examples/jsm/loaders/ColladaLoader.js", "patch": "@@ -5,6 +5,7 @@ import {\n \tBufferGeometry,\n \tClampToEdgeWrapping,\n \tColor,\n+\tColorManagement,\n \tDirectionalLight,\n \tDoubleSide,\n \tFileLoader,\n@@ -1681,9 +1682,9 @@ class ColladaLoader extends Loader {\n \n \t\t\t}\n \n-\t\t\tmateria...
2024-09-20T03:07:22
denoland/deno
41ff38ae652d2228f85d47c1842bee420dc7d894
cb1e9037921d8dc537f3f73bc237fd570a67829a
fix(publish): unfurl import.meta.resolve calls (#30663) Closes #30659
[ { "path": "cli/tools/publish/module_content.rs", "patch": "@@ -22,6 +22,7 @@ use sys_traits::FsRead;\n \n use super::diagnostics::PublishDiagnostic;\n use super::diagnostics::PublishDiagnosticsCollector;\n+use super::unfurl::PositionOrSourceRangeRef;\n use super::unfurl::SpecifierUnfurler;\n use super::unfu...
2025-09-09T18:14:12
golang/go
97da068774d5aa9147e63eb146350145c73bfc3d
300d9d2714164e455abc7990d52de9de6b084df1
cmd/compile: eliminate nil checks on .dict arg The first arg of a generic function is the dictionary. This dictionary is never nil, but it gets a nil check becuase the dict arg is treated as a slice during construction. cmp.Compare[go.shape.int] was: 00006 (+41) TESTB AX, (AX) 00007 (+52) CMPQ CX, BX 00008 (52) JGT ...
[ { "path": "src/cmd/compile/internal/ssa/_gen/generic.rules", "patch": "@@ -2079,6 +2079,9 @@\n \t&& warnRule(fe.Debug_checknil(), v, \"removed nil check\")\n \t=> ptr\n \n+// .dict args are always non-nil.\n+(NilCheck ptr:(Arg {sym}) _) && isDictArgSym(sym) => ptr\n+\n // Nil checks of nil checks are redund...
2025-09-08T05:21:15
tensorflow/tensorflow
a0cfa2b6c0182b647a5689d8b0b2f7d9a0ebd580
97028f3f78dd476875853f2a66583fa32370aefa
PR #35540: [XLA:CPU][codegen] Fix llvm intrinsic lowering in CPU pipeline Imported from GitHub PR https://github.com/openxla/xla/pull/35540 LLVM now has an explicit dependency on library lowering analysis info for libcall lowering decisions, [link](https://github.com/llvm/llvm-project/commit/081a99735c04b2018eeb7e74f...
[ { "path": "third_party/xla/xla/backends/cpu/codegen/ir_compiler.cc", "patch": "@@ -37,6 +37,7 @@ limitations under the License.\n #include \"llvm/ADT/SmallVector.h\"\n #include \"llvm/Analysis/CGSCCPassManager.h\"\n #include \"llvm/Analysis/LoopAnalysisManager.h\"\n+#include \"llvm/Analysis/RuntimeLibcallIn...
2026-01-07T06:06:23
swiftlang/swift
ae71bd8d6500f909d7f5317faaf542b7e3a302e9
d9b0031f09419c4f4a4b04d5e1b8f0a1b8e2d712
[Backtracing] Fix tests up for Windows. We can't use `|| true` on Windows, so use `not` instead. Also, on Windows, program names get downcased because `lit` uses `os.path.normcase()`, so if we have program names in the output, make sure the programs are already lower-case. Fix up the stack overflow test to match the...
[ { "path": "stdlib/public/RuntimeModule/CMakeLists.txt", "patch": "@@ -108,12 +108,10 @@ set(LLVM_OPTIONAL_SOURCES\n ${backtracing_sources}\n )\n \n-# We have to build with a deployment target of at least 10.15, otherwise\n-# the tests will all fail because dyld will get confused at the use of\n-# @rpath (...
2026-01-16T14:16:26
mrdoob/three.js
9cfaaa8d9a6975d78db2a7988b7aee6d61306752
01359e00034058c3c1ab037daae97c670f8228ac
Raycasting: Add barycoord to intersection result, make attribution interpolation more convenient (#29340) * Add a barycoord helper * add fields to point, line * Fix import * Remove unused variables * Update docs * Rename method * Rename function in Mesh class
[ { "path": "docs/api/en/math/Triangle.html", "patch": "@@ -140,6 +140,20 @@ <h3>\n \t\t\ttriangle. Returns `null` if the triangle is degenerate.\n \t\t</p>\n \n+\t\t<h3>\n+\t\t\t[method:Vector getInterpolatedAttribute]( [param:BufferAttribute attribute], [param:Number i1], [param:Vector3 i2], [param:Number i...
2024-09-18T21:23:31
kubernetes/kubernetes
db841afdbb193ea7d612472c7cc4c7b3f58eb676
86b66f6f333a1097f007f4ff0063c353f434cb44
dependencies: ginkgo v2.27.3 + gomega v1.38.3 This fixes some issues found in Kubernetes (data race in ginkgo CLI, gomega formatting) and helps with diagnosing OOM killing in CI jobs (exit status of processes). The modified gomega formatting shows up in some of the output tests for the E2E framework. They get updated...
[ { "path": "go.mod", "patch": "@@ -41,8 +41,8 @@ require (\n \tgithub.com/moby/ipvs v1.1.0\n \tgithub.com/moby/sys/userns v0.1.0\n \tgithub.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822\n-\tgithub.com/onsi/ginkgo/v2 v2.27.2\n-\tgithub.com/onsi/gomega v1.38.2\n+\tgithub.com/onsi/ginkgo/v2 v2.27.3\n...
2025-12-16T13:32:00
denoland/deno
cb1e9037921d8dc537f3f73bc237fd570a67829a
692f30b214748b43668d754b622922a9862121a0
fix(dts): align crypto.getRandomValues in lib.deno_crypto.d.ts with lib.dom.d.ts and lib.webworker.d.ts (#30647)
[ { "path": "cli/tsc/dts/lib.deno_crypto.d.ts", "patch": "@@ -651,20 +651,7 @@ interface Crypto {\n *\n * @see https://developer.mozilla.org/en-US/docs/Web/API/Crypto/getRandomValues\n */\n- getRandomValues<\n- T extends\n- | Int8Array<ArrayBuffer>\n- | Int16Array<ArrayBuffer>\n- |...
2025-09-09T15:37:40
mrdoob/three.js
111670613f1c475ed6e9c2d15056f960f0ad6f1b
d16dec710c72b149c7260d28791f0acb7e0698ff
Examples: Clean up (#29209) * Fix incorrect args * E2E: Update screenshot. --------- Co-authored-by: Mugen87 <michael.herzog@human-interactive.org>
[ { "path": "examples/webgl_postprocessing_advanced.html", "patch": "@@ -153,8 +153,8 @@\n \n \t\t\t\teffectSepia.uniforms[ 'amount' ].value = 0.9;\n \n-\t\t\t\teffectVignette.uniforms[ 'offset' ].value = 0.95;\n-\t\t\t\teffectVignette.uniforms[ 'darkness' ].value = 1.6;\n+\t\t\t\teffectVignette.uniforms[ 'of...
2024-09-17T16:29:12
golang/go
300d9d2714164e455abc7990d52de9de6b084df1
a846bb0aa523c8781248161b63bc2ab6a245cec1
runtime: initialise debug settings much earlier in startup process This is necessary specifically to set the value of `debug.decoratemappings` sufficiently early in the startup sequence that all memory ranges allocated can be named appropriately using the new Linux-specific naming API introduced in #71546. Example ou...
[ { "path": "src/runtime/decoratemappings_test.go", "patch": "@@ -0,0 +1,72 @@\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+package runtime_test\n+\n+import (\n+\t\"os\"\n+\t\"regexp\"\...
2025-09-18T14:54:57
tensorflow/tensorflow
4a4ad618dddd4f285f83ce8add3c05d0c41a778e
9877ebd150c840dda9de91b2c1341a63bf7c8fe7
Tag PjRt migration candidates explicitly. (BUILD changes) This change adds a new tag "pjrt_migration_candidate" to all test targets that depend on HloTestBase, ClientLibraryTestBase, and HloRunnerTpuSystem. This change also adds a new `use_legacy_runtime` kwarg to `xla_test`, which acts as a replacement for "test_mig...
[ { "path": "third_party/xla/xla/service/cpu/tests/BUILD", "patch": "@@ -45,6 +45,7 @@ cc_library(\n xla_cc_test(\n name = \"cpu_aot_export_test\",\n srcs = [\"cpu_aot_export_test.cc\"],\n+ tags = [\"pjrt_migration_candidate\"],\n deps = [\n \"//xla/hlo/ir:hlo\",\n \"//xla/hlo/i...
2026-01-07T05:44:45
swiftlang/swift
d9b0031f09419c4f4a4b04d5e1b8f0a1b8e2d712
58a6470ac357bbca6a5ff22ecce9a5e0a280be0e
[Backtracing] Build and test fixes. Tweak things to build on Linux and macOS again. Also fix a few things in the tests. rdar://101623384
[ { "path": "stdlib/public/RuntimeModule/CMakeLists.txt", "patch": "@@ -161,24 +161,25 @@ if(SWIFT_ENABLE_BACKTRACING)\n list(REMOVE_DUPLICATES sdk_supported_archs)\n \n foreach(arch ${sdk_supported_archs})\n- set(target \"swiftRuntime-${SWIFT_SDK_${sdk}_LIB_SUBDIR}-${arch}\")\n- if(TARGET $...
2026-01-14T16:48:20
kubernetes/kubernetes
3653ae2b9a7768da89e47ef84d503ae9cf0b910b
04d866b37de3aefac063b2b6e12f11b30701c9ff
Replace armon/circbuf with k8s.io/utils/buffer This uses the new generic fixed ring implementation in k8s.io/utils. Signed-off-by: Stephen Kitt <skitt@redhat.com>
[ { "path": "LICENSES/vendor/github.com/armon/circbuf/LICENSE", "patch": "@@ -1,24 +0,0 @@\n-= vendor/github.com/armon/circbuf licensed under: =\n-\n-The MIT License (MIT)\n-\n-Copyright (c) 2013 Armon Dadgar\n-\n-Permission is hereby granted, free of charge, to any person obtaining a copy of\n-this software ...
2025-12-19T08:59:41
denoland/deno
94f66317773802fa5b11d800d01a5a2ae09772b7
7e093a09204b0c5d9e3e9fd91c175d66e082688c
test: de-flake specs tests in `deno install` (#30645) Fixing a regression from https://github.com/denoland/deno/pull/30615 by using a more permissive wildcard match.
[ { "path": "tests/specs/install/entrypoint_only_used_packages/install-entrypoint.out", "patch": "@@ -4,7 +4,7 @@ Download http://localhost:4260/@denotest%2fsay-hello\n Download http://localhost:4260/@denotest/add/1.0.0.tgz\n [UNORDERED_END]\n Initialize @denotest/add@1.0.0\n-Installed 1 package in [WILDCARD]...
2025-09-09T08:57:35
mrdoob/three.js
8ebbbf28e8241de67b2d29070305f41b3c7787c9
ac73c49cfd2333c52cf46601e9f4bdf8e1948379
WebGPURenderer: correct texelFetch() texel coordinates in WebGL fallback (#29400) * texelLookup * lint * update * fix --------- Co-authored-by: aardgoose <angus.sawyer@email.com>
[ { "path": "src/nodes/accessors/TextureNode.js", "patch": "@@ -4,7 +4,7 @@ import { textureSize } from './TextureSizeNode.js';\n import { colorSpaceToWorking } from '../display/ColorSpaceNode.js';\n import { expression } from '../code/ExpressionNode.js';\n import { maxMipLevel } from '../utils/MaxMipLevelNod...
2024-09-17T14:07:14
golang/go
a846bb0aa523c8781248161b63bc2ab6a245cec1
7c8166d02d36a5dfcdbe3dd1b148412cceacf9f2
errors: add AsType Fixes #51945 Change-Id: Icda169782e796578eba728938134a85b5827d3b6 GitHub-Last-Rev: c6ff335ee1ffb6b7975141795a4632a55247299d GitHub-Pull-Request: golang/go#75621 Reviewed-on: https://go-review.googlesource.com/c/go/+/707235 Reviewed-by: Carlos Amedee <carlos@golang.org> Reviewed-by: Damien Neil <dne...
[ { "path": "api/next/51945.txt", "patch": "@@ -0,0 +1 @@\n+pkg errors, func AsType[$0 error](error) ($0, bool) #51945", "additions": 1, "deletions": 0, "language": "Plain Text" }, { "path": "doc/next/6-stdlib/99-minor/errors/51945.md", "patch": "@@ -0,0 +1,2 @@\n+The new [AsType] func...
2025-09-29T16:57:53
tensorflow/tensorflow
dd2a7e7748cd63949aed299c97106602de45f971
5245012888eeb092d16e156cc7b58211c1c19666
Fix typo in struct size check in PJRT_Error_Message. Likely copy paste error resulted in size checking against the wrong struct. PiperOrigin-RevId: 853053196
[ { "path": "third_party/xla/xla/pjrt/c/pjrt_c_api_wrapper_impl.cc", "patch": "@@ -397,7 +397,7 @@ void PJRT_Error_Message(PJRT_Error_Message_Args* args) {\n if (!struct_size_check.ok()) {\n LOG(ERROR) << struct_size_check.message();\n }\n- if (args->struct_size >= PJRT_STRUCT_SIZE(PJRT_Error_Destroy...
2026-01-07T04:45:53
swiftlang/swift
58a6470ac357bbca6a5ff22ecce9a5e0a280be0e
f6af22c4029e0ce5a3693a33a13d0ef48a958dd6
[Backtracing] Fix build failures for places Runtime doesn't build. We should only add the assembly files if we're actually going to build the `Runtime` module. This was tripping up iOS/tvOS/ watchOS builds. rdar://101623384
[ { "path": "stdlib/public/RuntimeModule/CMakeLists.txt", "patch": "@@ -162,19 +162,21 @@ if(SWIFT_ENABLE_BACKTRACING)\n \n foreach(arch ${sdk_supported_archs})\n set(target \"swiftRuntime-${SWIFT_SDK_${sdk}_LIB_SUBDIR}-${arch}\")\n- if(\"${SWIFT_SDK_${sdk}_NAME}\" STREQUAL \"Windows\")\n- ...
2026-01-14T15:34:47
kubernetes/kubernetes
6910bc7bb0f91d80e9f2c191966cce62b55daee9
86b66f6f333a1097f007f4ff0063c353f434cb44
Fix VolumeAttachment cleanup when AttachRequired changes When CSI's AttachRequired changes from true to false after a successful volume attach, MarkVolumeAsAttached fails because it attempts to look up the plugin by spec, which fails verification. This patch passes the VolumeName directly to MarkVolumeAsAttached. This...
[ { "path": "pkg/volume/util/operationexecutor/operation_generator.go", "patch": "@@ -290,22 +290,22 @@ func (og *operationGenerator) GenerateAttachVolumeFunc(\n \t\t\treturn volumetypes.NewOperationContext(eventErr, detailedErr, migrated)\n \t\t}\n \n-\t\t// Successful attach event is useful for user debuggi...
2025-01-11T16:10:02
denoland/deno
3e58caa8f48ee462e2834638a7032a9e6ec62dfd
c537681065415617f4433e0b9d0c358ef1091f29
ci: disable symcache generation on Windows (#30646) Due to V8 upgrade in https://github.com/denoland/deno/pull/30629, we are not generating debug symbols on Windows and because of that symcache generation is not available.
[ { "path": ".github/workflows/ci.generate.ts", "patch": "@@ -916,7 +916,9 @@ const ci = {\n \"Get-FileHash target/release/deno-${{ matrix.arch }}-pc-windows-msvc.zip -Algorithm SHA256 | Format-List > target/release/deno-${{ matrix.arch }}-pc-windows-msvc.zip.sha256sum\",\n \"Compress-...
2025-09-08T22:39:54
mrdoob/three.js
3fa40fec3588c102e691ea71fa1b9ea6457b0bac
09f1c619c3d4589685f50ad19026b5fc72efd426
Docs: Fix white flash on iframe load for Safari (#29419) * Docs: Fix white flash on iframe load for Safari * Fix white page for root level /docs page (when no page is selected) * Update index.html Fix code style. * Remove unnecessary error event listener --------- Co-authored-by: Michael Herzog <mich...
[ { "path": "docs/index.html", "patch": "@@ -529,17 +529,23 @@ <h1><a href=\"https://threejs.org\">three.js</a></h1>\n \t\t\tconst oldIframe = iframe;\n \t\t\tiframe = oldIframe.cloneNode();\n \n+\t\t\tiframe.style.display = 'none';\n+\n \t\t\tif ( hash && titles[ splitHash[ 0 ] ] ) {\n \n+\t\t\t\tiframe.onlo...
2024-09-17T07:52:32
golang/go
eaf2345256613dfbda7e8e69e5f845c4209246c6
4b7773356515c178f0af859b952b4b3a78f0813d
cmd/link: use a .def file to mark exported symbols on Windows Binutils defaults to exporting all symbols when building a Windows DLL. To avoid that we were marking symbols with __declspec(dllexport) in the cgo-generated headers, which instructs ld to export only those symbols. However, that approach makes the headers ...
[ { "path": "src/cmd/cgo/internal/testcshared/cshared_test.go", "patch": "@@ -8,6 +8,7 @@ import (\n \t\"bufio\"\n \t\"bytes\"\n \t\"cmd/cgo/internal/cgotest\"\n+\t\"cmp\"\n \t\"debug/elf\"\n \t\"debug/pe\"\n \t\"encoding/binary\"\n@@ -272,7 +273,7 @@ func createHeaders() error {\n \t\t// which results in the...
2025-09-22T13:48:36
tensorflow/tensorflow
b0e966e90865db911f18b66c60666b6dc9b73207
6f887eb32ec98e6d0098014c7dfc25367fb34daf
Rollforward with fixes of: Update PjRtCpuExecutable to use PrepareArguments. Reverts 281a08da37704c9168ee5d15a65068aa59fef2b5 PiperOrigin-RevId: 852967666
[ { "path": "third_party/xla/xla/pjrt/common_pjrt_client.cc", "patch": "@@ -440,7 +440,8 @@ absl::Status CommonPjRtClient::PrepareArguments(\n input_buffers,\n absl::InlinedVector<CommonPjRtBuffer::ScopedHold, 4>& device_buffers,\n PjRtDevice* device, int replica, int partition,\n- absl::Sp...
2026-01-06T23:51:15
swiftlang/swift
f6af22c4029e0ce5a3693a33a13d0ef48a958dd6
38c4848b12405b48103dfd7dd481ff386681bf88
[Backtracing] Don't pull in `windows.h` unnecessarily. Also, fix two files that managed to use Windows API without importing `WinSDK` as a result of the leakage caused by including `windows.h` from `codeview.h`. rdar://101623384
[ { "path": "stdlib/public/RuntimeModule/Compression.swift", "patch": "@@ -31,6 +31,7 @@ import Swift\n internal import Darwin\n #elseif os(Windows)\n internal import ucrt\n+internal import WinSDK\n #elseif canImport(Glibc)\n internal import Glibc\n #elseif canImport(Musl)", "additions": 1, "deletions...
2026-01-14T14:10:01
mrdoob/three.js
3ddd8de8783d634ef7a3a4bccaf7da33598ebf98
3415f337633c94fbffc235499454e64c8c81e7ec
fix: add xr input source hand check to prevent hand tracking model loading on connect (#29179) Co-authored-by: jorodi <jorodi@mpb16>
[ { "path": "examples/jsm/webxr/XRControllerModelFactory.js", "patch": "@@ -239,7 +239,7 @@ class XRControllerModelFactory {\n \n \t\t\tconst xrInputSource = event.data;\n \n-\t\t\tif ( xrInputSource.targetRayMode !== 'tracked-pointer' || ! xrInputSource.gamepad ) return;\n+\t\t\tif ( xrInputSource.targetRayM...
2024-09-16T18:38:22
denoland/deno
6ee7d60ce183a9a39422b5a59cc6beae0d95840c
928f26db78615283f661c955b15f4ee126bf5963
fix(ext/node): set socket.authorized to true for https request (#30641) This PR sets true to `req.socket.authorized` when making https request from `node:https` module. This makes yarn classic's https client working (e.g. `yarn add cowsay`). --------- Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
[ { "path": "ext/node/polyfills/http.ts", "patch": "@@ -538,6 +538,10 @@ class ClientRequest extends OutgoingMessage {\n caCerts: caCerts,\n alpnProtocols: [\"http/1.0\", \"http/1.1\"],\n }, keyPair);\n+\n+ // Simulates \"secure\" event on TLSSocket\n+ // Th...
2025-09-08T20:29:41
golang/go
4b7773356515c178f0af859b952b4b3a78f0813d
4e9006a716533fe1c7ee08df02dfc73078f7dc19
internal/syscall/windows: regenerate GetFileSizeEx GetFileSizeEx was generated before mkwinsyscall was updated to use SyscallN. Regenerate to use the new style. Fixes #75642 Change-Id: Ia473a167633b67fb75b5762d693848ecee425a7e Reviewed-on: https://go-review.googlesource.com/c/go/+/707615 Reviewed-by: Roland Shoemake...
[ { "path": "src/internal/syscall/windows/zsyscall_windows.go", "patch": "@@ -328,7 +328,7 @@ func GetFileInformationByHandleEx(handle syscall.Handle, class uint32, info *byt\n }\n \n func GetFileSizeEx(handle syscall.Handle, size *int64) (err error) {\n-\tr1, _, e1 := syscall.Syscall(procGetFileSizeEx.Addr()...
2025-09-29T06:37:35
mrdoob/three.js
bf6d89558442aa266c49ee6e1fa121b8103c3fc3
7290d8fd4c5834dcb99799e7268febef27c267e7
WebGPURenderer: fix renderGroup.needs update logic (#29402) Co-authored-by: aardgoose <angus.sawyer@email.com>
[ { "path": "src/renderers/common/Renderer.js", "patch": "@@ -424,15 +424,16 @@ class Renderer {\n \n \t\t//\n \n-\t\tconst renderBundleNeedsUpdate = renderBundleData.renderContexts.has( renderContext ) === false || bundleGroup.needsUpdate === true;\n+\t\tconst needsUpdate = bundleGroup.version !== renderBund...
2024-09-13T12:44:44
tensorflow/tensorflow
18386b3b9a9ae362abda3442861575f870526b72
ef13737180d54e2854b53b2c5c5b6e88171bf0a2
Add error Code documentation for E0200: Unexpected Core Halt. PiperOrigin-RevId: 852926901
[ { "path": "third_party/xla/docs/error_codes.md", "patch": "@@ -5,5 +5,6 @@ This page is a list of all error codes emitted by the XLA compiler.\n - [E0100](./errors/error_0100.md)\n - [E0101](./errors/error_0101.md)\n - [E0102](./errors/error_0102.md)\n+- [E0200](./errors/error_0200.md)\n - [E1200]...
2026-01-06T22:02:53
denoland/deno
ea419a6e390e9f70ca29a0c932d204a5f8d5f349
a3a904da1450849b51c34a972db4fd9b9a572d29
feat(BREAKING/fmt): prompt or require `deno fmt .` when providing no files and no config files discovered (#30623) When running `deno fmt` with no input paths with no deno.json or package.json: * In tty environments, prompts for confirmation. * In non-tty environments, errors without providing the current directory (...
[ { "path": "cli/tools/fmt.rs", "patch": "@@ -48,6 +48,7 @@ use crate::cache::IncrementalCache;\n use crate::colors;\n use crate::factory::CliFactory;\n use crate::sys::CliSys;\n+use crate::util;\n use crate::util::file_watcher;\n use crate::util::fs::canonicalize_path;\n use crate::util::path::get_extension;...
2025-09-08T18:28:47
golang/go
4e9006a716533fe1c7ee08df02dfc73078f7dc19
047c2ab841e2d2233d0bef420d1b5ecb545a380a
crypto/tls: quote protocols in ALPN error message Quote the protocols sent by the client when returning the ALPN negotiation error message. Fixes CVE-2025-58189 Fixes #75652 Change-Id: Ie7b3a1ed0b6efcc1705b71f0f1e8417126661330 Reviewed-on: https://go-review.googlesource.com/c/go/+/707776 Auto-Submit: Roland Shoemake...
[ { "path": "src/crypto/tls/handshake_server.go", "patch": "@@ -357,7 +357,7 @@ func negotiateALPN(serverProtos, clientProtos []string, quic bool) (string, erro\n \tif http11fallback {\n \t\treturn \"\", nil\n \t}\n-\treturn \"\", fmt.Errorf(\"tls: client requested unsupported application protocols (%s)\", cl...
2025-09-29T17:11:56
kubernetes/kubernetes
8703640651ace612b52cdb5b20dd23a6f961f5b8
ed61f3fb62534c7c4467ee8d543df3070b0e16a6
add utility for generating markdown for feature gates Signed-off-by: Davanum Srinivas <davanum@gmail.com> fix for review comments Signed-off-by: Davanum Srinivas <davanum@gmail.com>
[ { "path": "cmd/genfeaturegates/genfeaturegates.go", "patch": "@@ -0,0 +1,598 @@\n+/*\n+Copyright 2025 The Kubernetes Authors.\n+\n+Licensed under the Apache License, Version 2.0 (the \"License\");\n+you may not use this file except in compliance with the License.\n+You may obtain a copy of the License at\n+...
2025-11-29T15:55:11
mrdoob/three.js
5fec042ae3d1decb1a1b2c5004f71e6a8c02f7df
ddadd04fa29c8d782187c8a0bdb813e158cef686
InstancedPoints: Fix UVs (#29396)
[ { "path": "examples/jsm/geometries/InstancedPointsGeometry.js", "patch": "@@ -20,7 +20,7 @@ class InstancedPointsGeometry extends InstancedBufferGeometry {\n \t\tthis.type = 'InstancedPointsGeometry';\n \n \t\tconst positions = [ - 1, 1, 0, 1, 1, 0, - 1, - 1, 0, 1, - 1, 0 ];\n-\t\tconst uvs = [ - 1, 1, 1, 1...
2024-09-12T23:14:47
tensorflow/tensorflow
0afd8a4fbb6803efe04a4a5e1621e41d10bbf34a
b660af994e6ef38d09294f43fc5c86d168a0426f
Tag PjRt migration candidates explicitly. (bzl stubs) This change adds a new tag "pjrt_migration_candidate" to all test targets that depend on HloTestBase, ClientLibraryTestBase, and HloRunnerTpuSystem. This change also adds a new `use_legacy_runtime` kwarg to `xla_test`, which acts as a replacement for "test_migrate...
[ { "path": "third_party/xla/xla/tests/build_defs.bzl", "patch": "@@ -331,6 +331,9 @@ def xla_test(\n # precompile_test is not supported in OSS.\n kwargs.pop(\"precompile_test\", None)\n \n+ # TODO: b/382779188 - Remove this once all legacy tests have had this kwarg added.\n+ kwargs.pop(\"use_le...
2026-01-06T20:56:03
denoland/deno
a3a904da1450849b51c34a972db4fd9b9a572d29
e02e4c2042d4cc87206683dfe2e8d0abab350f54
fix(dts): specify the underlying buffer type in more places (#30640)
[ { "path": "cli/tsc/dts/lib.deno.ns.d.ts", "patch": "@@ -3835,7 +3835,7 @@ declare namespace Deno {\n * Reads the stream to completion. It returns a promise that resolves with\n * a `Uint8Array`.\n */\n- bytes(): Promise<Uint8Array>;\n+ bytes(): Promise<Uint8Array<ArrayBuffer>>;\n /*...
2025-09-08T13:05:09
golang/go
047c2ab841e2d2233d0bef420d1b5ecb545a380a
ae8eba071b228dd9e05de0b0c338f3d941a0a43f
cmd/link: don't pass -Wl,-S on Solaris Solaris linker's -S has a different meaning. Fixes #75637. Change-Id: I51e641d5bc6d7f64ab5aa280090c70ec787a1fbf Reviewed-on: https://go-review.googlesource.com/c/go/+/707096 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: D...
[ { "path": "src/cmd/link/dwarf_test.go", "patch": "@@ -386,7 +386,7 @@ func TestFlagW(t *testing.T) {\n \t\t{\"-s\", false}, // -s implies -w\n \t\t{\"-s -w=0\", true}, // -w=0 negates the implied -w\n \t}\n-\tif testenv.HasCGO() {\n+\tif testenv.HasCGO() && runtime.GOOS != \"solaris\" { // Solaris linke...
2025-09-26T13:45:08
mrdoob/three.js
ddadd04fa29c8d782187c8a0bdb813e158cef686
8eb25264dd4ad43318038ce43d9bfef016ab55cd
WebGPURenderer: Fix InstancedMesh init with 0 instance (#29399)
[ { "path": "src/nodes/accessors/InstanceNode.js", "patch": "@@ -52,7 +52,7 @@ class InstanceNode extends Node {\n \n \t\t\tif ( instanceMesh.count <= 1000 ) {\n \n-\t\t\t\tinstanceMatrixNode = buffer( instanceAttribute.array, 'mat4', instanceMesh.count ).element( instanceIndex );\n+\t\t\t\tinstanceMatrixNode...
2024-09-12T15:22:34
golang/go
ae8eba071b228dd9e05de0b0c338f3d941a0a43f
fe3ba74b9e6e3385cbf7c2f3a9c0b72baeac4b01
cmd/link: use correct length for pcln.cutab The pcln.cutab slice holds uint32 elements, as can be seen in the runtime.moduledata type. The slice was being created with the len (and cap) set to the size of the slice, which means that the count was four times too large. This patch sets the correct len/cap. This doesn't...
[ { "path": "src/cmd/link/internal/ld/symtab.go", "patch": "@@ -645,7 +645,7 @@ func (ctxt *Link) symtab(pcln *pclntab) []sym.SymKind {\n \tsliceSym(pcln.funcnametab)\n \n \t// The cutab slice\n-\tsliceSym(pcln.cutab)\n+\tslice(pcln.cutab, uint64(ldr.SymSize(pcln.cutab))/4)\n \n \t// The filetab slice\n \tsli...
2025-09-29T04:25:24
denoland/deno
d471a80f7d8b2adb6225dad923bfdbc56eaf25fe
54bda9febcb10c19082a7a85944766d24435ee9e
fix(tests): Switch from --nocapture to --no-capture (#30638) `--no-capture` was added in 1.88, with `--nocapture` being soft-deprecated. https://releases.rs/docs/1.88.0/#libraries
[ { "path": "tests/specs/README.md", "patch": "@@ -26,11 +26,11 @@ Or just the following, though it might run other tests:\n cargo test test_name\n ```\n \n-To run showing the output of every test use `-- --nocapture` (note: this will\n+To run showing the output of every test use `-- --no-capture` (note: this...
2025-09-08T08:40:56
mrdoob/three.js
f51df3879e4f1b0ef651c17a7236a59ed597704d
43dcbc1aca1b5239496c5e11af198a214b5036f3
LOD: Add `removeLevel()`. (#29359) * feat(app): 29074 Add removeLevel method for LOD * fix: rename parameter * refactor: using for loop * refactor: apply suggestions in method structure * Update LOD.html --------- Co-authored-by: Michael Herzog <michael.herzog@human-interactive.org>
[ { "path": "docs/api/en/objects/LOD.html", "patch": "@@ -85,6 +85,15 @@ <h3>\n \t\t\tAdds a mesh that will display at a certain distance and greater. Typically\n \t\t\tthe further away the distance, the lower the detail on the mesh.\n \t\t</p>\n+\t\t<h3>\n+\t\t\t[method:Boolean removeLevel]( [param:Float dis...
2024-09-11T20:22:39
tensorflow/tensorflow
8a16ad65def8ee5c9deb4001dca7ae448e8830bf
f4fd8519df6c8f50517cfcf766743b5007ae548d
Enforce that TFRT GPU does not call CUDA APIs inline This CL implements a new guarantee in TFRT GPU where it never calls CUDA APIs on the same thread as the caller of PjRt APIs and fixes all call sites that violate this property. This property is useful because of the following reasons: 1. CUDA uses synchronization p...
[ { "path": "third_party/xla/xla/pjrt/gpu/tfrt/BUILD", "patch": "@@ -37,6 +37,7 @@ cc_library(\n visibility = internal_visibility([\"//xla/pjrt/gpu:legacy_gpu_client_users\"]),\n deps = [\n \":gpu_event\",\n+ \":thread_checker\",\n \":tracked_gpu_device_buffer\",\n \"//x...
2026-01-06T07:47:25
denoland/deno
54bda9febcb10c19082a7a85944766d24435ee9e
e60f5d2c528227df60b4d8c3b1fdb4e85beefa47
fix(ext/node): readline line separators (#30630)
[ { "path": "ext/node/polyfills/internal/readline/interface.mjs", "patch": "@@ -89,11 +89,29 @@ import {\n kWordRight,\n kWriteToOutput,\n } from \"ext:deno_node/internal/readline/symbols.mjs\";\n+import { primordials } from \"ext:core/mod.js\";\n+\n+const {\n+ ArrayPrototypePush,\n+ DateNow,\n+ RegExp...
2025-09-06T15:48:54
golang/go
fe3ba74b9e6e3385cbf7c2f3a9c0b72baeac4b01
d42d56b764f4c8b06aaa2de2dc9c1d2171e79490
cmd/link: skip TestFlagW on platforms without DWARF symbol table As with other DWARF tests, don't run TestFlagW on platforms where executables don't have a DWARF symbol table. Fixes #75585 Change-Id: I81014bf59b15e30ac1b2a7d24a52f9647db46c26 Reviewed-on: https://go-review.googlesource.com/c/go/+/706418 Reviewed-by: ...
[ { "path": "src/cmd/link/dwarf_test.go", "patch": "@@ -364,6 +364,10 @@ func TestFlagW(t *testing.T) {\n \tif runtime.GOOS == \"aix\" {\n \t\tt.Skip(\"internal/xcoff cannot parse file without symbol table\")\n \t}\n+\tif !platform.ExecutableHasDWARF(runtime.GOOS, runtime.GOARCH) {\n+\t\tt.Skipf(\"skipping on...
2025-09-27T18:45:36
mrdoob/three.js
43dcbc1aca1b5239496c5e11af198a214b5036f3
4c53075810d441da5920f38abe4bc55ba25fd887
Audio: stop audio with a delay (#29376) * feat: audio stop delay parameter * docs: audio play/stop delay parameter * Update Audio.html * fix: do not honor offset --------- Co-authored-by: Michael Herzog <michael.herzog@human-interactive.org>
[ { "path": "docs/api/en/audio/Audio.html", "patch": "@@ -164,6 +164,7 @@ <h3>[method:Float getVolume]()</h3>\n \n \t\t<h3>[method:this play]( delay )</h3>\n \t\t<p>\n+\t\t\tdelay (optional) - The delay, in seconds, at which the audio should start playing.<br />\n \t\t\tIf [page:Audio.hasPlaybackControl hasPl...
2024-09-11T09:51:57
tensorflow/tensorflow
6bacc2cdc26b7231474d3f5ca0731e3bc42a9698
8504bdff47269bc79133cd80fe0e9aa4b74946b5
PR #35706: [XLA:GPU] Refactoring command buffer Imported from GitHub PR https://github.com/openxla/xla/pull/35706 This pull request refactors and modernizes the command buffer recording infrastructure in the GPU runtime by simplifying the command recording API, improving type safety with absl nullability annotations,...
[ { "path": "third_party/xla/xla/backends/gpu/runtime/BUILD", "patch": "@@ -128,6 +128,7 @@ cc_library(\n \"//xla/tsl/platform:statusor\",\n \"@com_google_absl//absl/algorithm:container\",\n \"@com_google_absl//absl/base:core_headers\",\n+ \"@com_google_absl//absl/base:nullabili...
2026-01-06T04:52:53
kubernetes/kubernetes
2b330f0357cb825de0dc196b426c858b2bba7f2c
13518f66e2e2dd6cd8b258c322bde0b9c32de30b
Fix issue with test not sending history deterministically
[ { "path": "staging/src/k8s.io/client-go/tools/cache/controller_test.go", "patch": "@@ -995,6 +995,9 @@ func testReplaceEvents(t *testing.T, ctx context.Context, fifo Queue, m *eventRe\n \n \tfor _, tc := range tcs {\n \t\tt.Run(tc.name, func(t *testing.T) {\n+\t\t\t// Clear history so we don't get noise fro...
2025-12-19T00:45:43
denoland/deno
e60f5d2c528227df60b4d8c3b1fdb4e85beefa47
71a74cb1c6a69ee39b090ce6d435c182a5731849
fix(ext/node): `fs.mkdtemp` and `fs.mkdtempSync` compatibility (#30602) `fs.mkdtemp` and `fs.mkdtempSync` now accept `Buffer` and `Uint8Array` path. The implementation has been moved to Rust, including directory suffix generation and directory creation.
[ { "path": "ext/node/lib.rs", "patch": "@@ -357,6 +357,8 @@ deno_core::extension!(deno_node,\n ops::fs::op_node_lchown<P>,\n ops::fs::op_node_lutimes_sync<P>,\n ops::fs::op_node_lutimes<P>,\n+ ops::fs::op_node_mkdtemp_sync<P>,\n+ ops::fs::op_node_mkdtemp<P>,\n ops::fs::op_node_open_sync...
2025-09-05T20:12:42
mrdoob/three.js
1174d07040d28ba59306419e295cc8f1d49b4d54
d8591856df4737427805315bdee859f80e5b163b
WebGPURenderer: Workgroup Arrays and Barrier Support (#29192) * init * barrier, private array, workgroup array support * clean * Implement Renaud suggestions * fix * fix storage buffer example with workgroupBarrier() * add tags and other info * add bitonic sort example * update * Rebase bran...
[ { "path": "examples/files.json", "patch": "@@ -314,6 +314,7 @@\n \t\t\"webgpu_compute_particles_rain\",\n \t\t\"webgpu_compute_particles_snow\",\n \t\t\"webgpu_compute_points\",\n+\t\t\"webgpu_compute_sort_bitonic\",\n \t\t\"webgpu_compute_texture\",\n \t\t\"webgpu_compute_texture_pingpong\",\n \t\t\"webgpu...
2024-09-10T18:29:48
golang/go
5500cbf0e420a6d643835ec05f35abb170e3e443
34e67623a81e9e93c3d7d0f0cb257d7d722939f2
debug/elf: prevent offset overflow When applying relocations, a malformed ELF file can provide an offset that, when added to the relocation size, overflows. This wrapped-around value could then incorrectly pass the bounds check, leading to a panic when the slice is accessed with the original large offset. This change...
[ { "path": "src/debug/elf/file.go", "patch": "@@ -25,6 +25,7 @@ import (\n \t\"internal/saferio\"\n \t\"internal/zstd\"\n \t\"io\"\n+\t\"math\"\n \t\"os\"\n \t\"strings\"\n \t\"unsafe\"\n@@ -830,17 +831,9 @@ func (f *File) applyRelocationsAMD64(dst []byte, rels []byte) error {\n \n \t\tswitch t {\n \t\tcase ...
2025-09-25T04:41:12
tensorflow/tensorflow
9e679d068539b8b26c0509251e89cb26b0cd2570
914b9c880cf6864c11fde3bf6d54748cc0b76d2f
Fix a crash in `TfrtGpuBuffer::ToLiteralHelper` `Literal::untyped_data()` must not be called for tokens. PiperOrigin-RevId: 852517693
[ { "path": "third_party/xla/xla/pjrt/gpu/tfrt/tfrt_gpu_buffer.cc", "patch": "@@ -406,18 +406,14 @@ Future<> TfrtGpuBuffer::ToLiteralHelper(\n }\n }\n \n- const bool use_staging = should_unpack || transpose != nullptr ||\n- client->ShouldStageHostToDeviceTransf...
2026-01-06T01:20:48
mrdoob/three.js
94f287d3eaaf4df4dd9d189f880a3f86a4d3464c
e9aebe2ab4b78dd047172ac221bac807398614b8
TextureUtils: Add WebGPU version. (#29348) * TextureUtils: Add WebGPU version. * TextureUtilsGPU: Clean up. * TextureUtilsGPU: Fix uv coords.
[ { "path": "examples/jsm/utils/TextureUtils.js", "patch": "@@ -83,6 +83,7 @@ export function decompress( texture, maxTextureSize = Infinity, renderer = null\n \treadableTexture.magFilter = texture.magFilter;\n \treadableTexture.wrapS = texture.wrapS;\n \treadableTexture.wrapT = texture.wrapT;\n+\treadableTex...
2024-09-09T09:18:53
denoland/deno
71a74cb1c6a69ee39b090ce6d435c182a5731849
baf185014d50df3d765922f84c51281c7326d87e
fix(lsp): import rewrites in moved file (#30628)
[ { "path": "cli/lsp/analysis.rs", "patch": "@@ -547,6 +547,7 @@ impl<'a> TsResponseImportMapper<'a> {\n specifier: &str,\n referrer: &ModuleSpecifier,\n resolution_mode: ResolutionMode,\n+ new_file_hints: &[Url],\n ) -> Option<String> {\n let specifier_stem = specifier.strip_suffix(\".js...
2025-09-05T19:58:46
golang/go
34e67623a81e9e93c3d7d0f0cb257d7d722939f2
af6999e60d498887fceaeca89f4aa88ff35c91df
all: fix typos Change-Id: I290812905b6b5c52f289f7f8524f93aef19e6efe Reviewed-on: https://go-review.googlesource.com/c/go/+/706775 Auto-Submit: Sean Liao <sean@liao.dev> Reviewed-by: Michael Knyszek <mknyszek@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed...
[ { "path": "src/crypto/tls/handshake_server_tls13.go", "patch": "@@ -35,7 +35,7 @@ type echServerContext struct {\n \tconfigID uint8\n \tciphersuite echCipher\n \ttranscript hash.Hash\n-\t// inner indicates that the initial client_hello we recieved contained an\n+\t// inner indicates that the initial cli...
2025-09-25T14:38:19
mrdoob/three.js
e9aebe2ab4b78dd047172ac221bac807398614b8
5ce5a0c870b9f341c5edcba6ed7cc3cbc3992135
CacheNode: Fix `parent` reference. (#29369)
[ { "path": "src/nodes/core/CacheNode.js", "patch": "@@ -29,7 +29,7 @@ class CacheNode extends Node {\n \tbuild( builder, ...params ) {\n \n \t\tconst previousCache = builder.getCache();\n-\t\tconst cache = builder.getCacheFromNode( this, parent );\n+\t\tconst cache = builder.getCacheFromNode( this, this.pare...
2024-09-09T08:16:34
denoland/deno
baf185014d50df3d765922f84c51281c7326d87e
287c0854a3e16bace6e3a2100ccf3a796c65e515
fix(bundle): avoid cloning parsed source, restore owned transpile assertion (#30624)
[ { "path": "cli/tools/bundle/mod.rs", "patch": "@@ -1252,7 +1252,7 @@ impl DenoPluginHandler {\n source: &Arc<str>,\n is_known_script: Option<bool>,\n ) -> Result<Arc<str>, BundleLoadError> {\n- let parsed_source = self.parsed_source_cache.get_matching_parsed_source(\n+ let parsed_source = se...
2025-09-05T18:15:04
golang/go
25c36b95d1523f22d4c46ec237acc03e00540e0a
f0e281e693685954df71374c9a9fb856e8745519
[dev.simd] simd, cmd/compile: add 128 bit select-from-pair Using this name until a better one appears: x.Select128FromPair(3, 2, y) Includes test for constant and variable case. Checks for unexpected immediates (using the zeroing flag, which is not supported for this intrinsic) and panics. Change-Id: I9249475d657...
[ { "path": "src/cmd/compile/internal/amd64/simdssa.go", "patch": "@@ -1053,6 +1053,8 @@ func ssaGenSIMDValue(s *ssagen.State, v *ssa.Value) bool {\n \t\tssa.OpAMD64VGF2P8AFFINEINVQB128,\n \t\tssa.OpAMD64VGF2P8AFFINEINVQB256,\n \t\tssa.OpAMD64VGF2P8AFFINEINVQB512,\n+\t\tssa.OpAMD64VPERM2F128256,\n+\t\tssa.OpA...
2025-09-19T17:07:59
kubernetes/kubernetes
630a2a7c351d9c72a7aebb170950d6dca8e3579f
13518f66e2e2dd6cd8b258c322bde0b9c32de30b
Add origins for the union validtions errors
[ { "path": "pkg/apis/resource/validation/validation.go", "patch": "@@ -925,11 +925,11 @@ func validateDeviceAttribute(attribute resource.DeviceAttribute, fldPath *field.\n \n \tswitch numFields {\n \tcase 0:\n-\t\tallErrs = append(allErrs, field.Invalid(fldPath, \"\", \"exactly one value must be specified\")...
2025-11-07T22:42:43
swiftlang/swift
53426c5146a0d3dd26e7bc667772554d440361fe
8b7a7b87e3234fc72e84691d7b8c5a5cc8376843
validation-test: update now non-crashing test
[ { "path": "validation-test/compiler_crashers_fixed/MapLocalArchetypesOutOfContext-0d9272.swift", "patch": "@@ -1,5 +1,5 @@\n // {\"kind\":\"emit-silgen\",\"original\":\"195c110a\",\"signature\":\"swift::Type llvm::function_ref<swift::Type (swift::SubstitutableType*)>::callback_fn<swift::MapLocalArchetypesOu...
2026-02-06T01:41:52
mrdoob/three.js
c5819a3cc82e4c00dc89f89eb503db012d028a57
38b20e09bf20b2b491ab5193b81af0d2cf7e5095
Examples: GPGPU Water Port (#29147) * init * init * working water * Add additional spheres to webgl_gpgpu_water to demonstrate performance differential between webgl compute and webgpu compute * sketch out sphere compute * webgpu finished * add screenshot * cleanup * fix movement * fix scree...
[ { "path": "examples/files.json", "patch": "@@ -317,6 +317,7 @@\n \t\t\"webgpu_compute_points\",\n \t\t\"webgpu_compute_texture\",\n \t\t\"webgpu_compute_texture_pingpong\",\n+\t\t\"webgpu_compute_water\",\n \t\t\"webgpu_cubemap_adjustments\",\n \t\t\"webgpu_cubemap_dynamic\",\n \t\t\"webgpu_cubemap_mix\",",...
2024-09-08T21:52:46
denoland/deno
287c0854a3e16bace6e3a2100ccf3a796c65e515
70793737f290f9e93449692b62293faa095283e4
fix(unstable): make QuicListener yield QuicIncoming (#30150)
[ { "path": "cli/tsc/dts/lib.deno_net.d.ts", "patch": "@@ -787,7 +787,7 @@ declare namespace Deno {\n * @experimental\n * @category Network\n */\n- export interface QuicListener extends AsyncIterable<QuicConn> {\n+ export interface QuicListener extends AsyncIterable<QuicIncoming> {\n /** Waits ...
2025-09-05T17:44:44
golang/go
3e4540b49d3066ee3fd57f3456506f6d09d0129b
15fbe3480b1c44113e9cdb26008da9f66d4e57b2
os/user: use getgrouplist on illumos && cgo The getgrouplist call is available on Illumos since December 2020: https://github.com/illumos/illumos-gate/commit/f2c438c5058c64b7373448f239156bf60009abcb We can assume it is available for users now. Let's switch to using it when cgo is enabled. Since neither LUCY nor...
[ { "path": "src/os/user/cgo_listgroups_unix.go", "patch": "@@ -2,7 +2,7 @@\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) && !osusergo && (darwin || dragonfly || freebsd || (linux && !android) || netbsd || openbsd ||...
2025-09-11T16:57:00
mrdoob/three.js
275f2013eda6d786739fb44c223ed747514b1322
dd7e7b7e896c9d305fb1ba2ea08a47230e4654a3
Fix `report-size.yml` (#29336)
[ { "path": ".github/workflows/report-size.yml", "patch": "@@ -185,14 +185,14 @@ jobs:\n WEBGPU_NODES_FILESIZE_GZIP_FORM=$(node ./test/treeshake/utils/format-size.js \"$WEBGPU_NODES_FILESIZE_GZIP\")\n WEBGPU_NODES_FILESIZE_BASE_FORM=$(node ./test/treeshake/utils/format-size.js \"$WEBGPU_NO...
2024-09-05T21:57:22
swiftlang/swift
280057b8d8260faa55d9be56e4f132af2983d470
746f011cd07dd011af248162b557eb5eedde25cd
Fix OSLogOptimization for complete lifetimes in SIL
[ { "path": "lib/SILOptimizer/Mandatory/OSLogOptimization.cpp", "patch": "@@ -582,38 +582,6 @@ static SILValue emitCodeForConstantArray(ArrayRef<SILValue> elements,\n return arraySIL;\n }\n \n-/// Given a SILValue \\p value, return the instruction immediately following the\n-/// definition of the value. Tha...
2026-02-05T21:04:13
tensorflow/tensorflow
fb12a5a390259e1c1193142db60c542649e82ec2
6bf17ba0487c635e60a0439e10ac6470cd2b1873
Correctly implement `LazyToLiteral`'s API contract in TFRT GPU `LazyToLiteral` exists as a separate API to allow for delaying the literal allocation until needed, but TFRT GPU's current implementation ignores this and eagerly allocates the literal. This CL fixes this issue by deferring the call to `generator` until th...
[ { "path": "third_party/xla/xla/pjrt/gpu/tfrt/tfrt_gpu_buffer.cc", "patch": "@@ -327,10 +327,12 @@ TfrtGpuBuffer::ReleaseDeviceMemoryOwnership(\n Future<> TfrtGpuBuffer::ToLiteral(MutableLiteralBase* literal) {\n VLOG(3) << \"TfrtGpuBuffer::ToLiteral for a tensor of shape \"\n << literal->shape()...
2026-01-05T21:22:20
denoland/deno
70793737f290f9e93449692b62293faa095283e4
6d0692e00ad1761872d4400bcbfc3d531dafd238
fix(ext/node): fix hang induced by maxSockets bounds (#30622)
[ { "path": "ext/node/polyfills/_http_agent.mjs", "patch": "@@ -267,7 +267,8 @@ Agent.prototype.addRequest = function addRequest(\n setRequestSocket(this, req, socket);\n this.sockets[name].push(socket);\n } else if (\n- sockLen < this.maxSockets &&\n+ // TODO(littledivy): enable maxSockets ag...
2025-09-05T16:13:51
golang/go
16ae11a9e1ca064718303f11d30110cf4e4dbbbc
459f3a3adc131d9bb829efe0add27327a29b9c88
runtime: move TestReadMetricsSched to testprog There are just too many flakes resulting from background pollution by the testing package and other tests. Run in a subprocess where at least the environment can be more tightly controlled. Fixes #75049. Change-Id: Iad59edaaf31268f1fcb77273f01317d963708fa6 Reviewed-on: ...
[ { "path": "src/runtime/metrics_test.go", "patch": "@@ -22,7 +22,6 @@ import (\n \t\"strings\"\n \t\"sync\"\n \t\"sync/atomic\"\n-\t\"syscall\"\n \t\"testing\"\n \t\"time\"\n \t\"unsafe\"\n@@ -1578,211 +1577,10 @@ func TestReadMetricsFinalizers(t *testing.T) {\n }\n \n func TestReadMetricsSched(t *testing.T)...
2025-09-26T17:05:43
mrdoob/three.js
dd7e7b7e896c9d305fb1ba2ea08a47230e4654a3
97ed19569588cf7a5b747e2f3f09c29f8fabc78a
Fix gltf sparse normalized (#29330)
[ { "path": "examples/jsm/loaders/GLTFLoader.js", "patch": "@@ -3153,6 +3153,9 @@ class GLTFParser {\n \n \t\t\t\t}\n \n+\t\t\t\t// Ignore normalized since we copy from sparse\n+\t\t\t\tbufferAttribute.normalized = false;\n+\n \t\t\t\tfor ( let i = 0, il = sparseIndices.length; i < il; i ++ ) {\n \n \t\t\t\t\...
2024-09-05T21:04:33
kubernetes/kubernetes
8ef450884adcf39b4622f30ea1faf14cacceb264
51084495110d68093843cdc6476a8c7ef85c0dba
Add standalone tests for init container status fix.
[ { "path": "test/e2e_node/standalone_test.go", "patch": "@@ -28,6 +28,8 @@ import (\n \t\"strings\"\n \t\"time\"\n \n+\t\"github.com/onsi/ginkgo/v2\"\n+\t\"github.com/onsi/gomega\"\n \tv1 \"k8s.io/api/core/v1\"\n \tapierrors \"k8s.io/apimachinery/pkg/api/errors\"\n \t\"k8s.io/apimachinery/pkg/api/resource\"\...
2025-10-31T17:09:14
golang/go
4631a2d3c6a30956f5cffb71583eb97276bcc9b5
0f31d742cdfda3af6b56c61a765c8df76053cf0a
cmd/link: skip TestFlagW on AIX The internal/xcoff can only parse XCOFF with symbol table. This test creates executables without symbol table. Skip the test. (It might be possible to make internal/xcoff work with binaries without symbol table? Leave it for the future.) Fixes #75618. Change-Id: I273ffefee5376d987acc...
[ { "path": "src/cmd/link/dwarf_test.go", "patch": "@@ -361,6 +361,9 @@ func TestDWARFLocationList(t *testing.T) {\n \n func TestFlagW(t *testing.T) {\n \ttestenv.MustHaveGoBuild(t)\n+\tif runtime.GOOS == \"aix\" {\n+\t\tt.Skip(\"internal/xcoff cannot parse file without symbol table\")\n+\t}\n \tt.Parallel()\...
2025-09-26T13:38:23
tensorflow/tensorflow
3e688ca57e0afa88c92d75a137d29ed940c25bbf
3b562d1326645a7f84246aaa84347eb06809ed01
Add bad_indices_policy for gradients of TensorScatter{Min,Max} with invalid indices, which may cause training error during back propagation. PiperOrigin-RevId: 852422331
[ { "path": "tensorflow/python/ops/array_grad.py", "patch": "@@ -40,7 +40,8 @@\n def _PackGrad(op: ops.Operation, grad):\n \"\"\"Gradient for pack op.\"\"\"\n return array_ops_stack.unstack(\n- grad, num=op.get_attr(\"N\"), axis=op.get_attr(\"axis\"))\n+ grad, num=op.get_attr(\"N\"), axis=op.get...
2026-01-05T21:01:44
denoland/deno
6d0692e00ad1761872d4400bcbfc3d531dafd238
db263a14d4370a4d0942f78912857a53d23c956c
fix(bundle): properly display error on invalid config in watch mode (#30621) Fixes https://github.com/denoland/deno/issues/30617
[ { "path": "Cargo.lock", "patch": "@@ -3792,9 +3792,9 @@ checksum = \"31ae425815400e5ed474178a7a22e275a9687086a12ca63ec793ff292d8fdae8\"\n \n [[package]]\n name = \"esbuild_client\"\n-version = \"0.5.0\"\n+version = \"0.6.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \...
2025-09-05T02:21:59
kubernetes/kubernetes
ce3f6b1d0ef94cdecbeec7f6fa8dfb4cf91d442f
c180d6762d7ac5059d9b50457cafb0d7f4cf74a9
Fix:Static pod status is always Init:0/1 if unable to get init container status from container runtime. Signed-off-by: Ayato Tokubi <atokubi@redhat.com>
[ { "path": "pkg/kubelet/kubelet_pods.go", "patch": "@@ -60,6 +60,7 @@ import (\n \tkubecontainer \"k8s.io/kubernetes/pkg/kubelet/container\"\n \t\"k8s.io/kubernetes/pkg/kubelet/envvars\"\n \t\"k8s.io/kubernetes/pkg/kubelet/images\"\n+\t\"k8s.io/kubernetes/pkg/kubelet/kuberuntime\"\n \t\"k8s.io/kubernetes/pkg...
2024-01-21T16:55:32
golang/go
0f31d742cdfda3af6b56c61a765c8df76053cf0a
7d7cd6e07b65d7583f1c7648fc042fbe30352313
cmd/compile: fix ICE with new(<untyped expr>) Fixes #75617 Change-Id: Iaee7d4556db54b9999f5ba8458e7c05c11ccfc36 Reviewed-on: https://go-review.googlesource.com/c/go/+/707075 Reviewed-by: Junyang Shao <shaojunyang@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Aut...
[ { "path": "src/cmd/compile/internal/noder/reader.go", "patch": "@@ -2434,6 +2434,7 @@ func (r *reader) expr() (res ir.Node) {\n \t\tif r.Bool() {\n \t\t\t// new(expr) -> tmp := expr; &tmp\n \t\t\tx := r.expr()\n+\t\t\tx = typecheck.DefaultLit(x, nil) // See TODO in exprConvert case.\n \t\t\tvar init ir.Node...
2025-09-26T11:07:18
tensorflow/tensorflow
dc27914d467ff7f45875f5d7e7b287eaa5def332
d5cc2735df971bc9216442d26d9441349e926020
PR #35888: [DOCS] Error codes cleanup Imported from GitHub PR https://github.com/openxla/xla/pull/35888 **📝 Summary of Changes** Minor clean-up of error codes docs: - simplify headings - move the docs to the debugging section **🎯 Justification** Initially noted in: https://github.com/openxla/xla/pull/35746#discu...
[ { "path": "third_party/xla/docs/_toc.yaml", "patch": "@@ -31,10 +31,6 @@ toc:\n path: /xla/effort_levels\n - title: Emitters\n path: /xla/emitters\n- - title: Error Codes\n- path: /xla/error_codes\n- - title: Errors Overview\n- path: /xla/errors_overview\n - title: Hermetic CUDA overview...
2026-01-05T20:29:25
denoland/deno
db263a14d4370a4d0942f78912857a53d23c956c
eea93eb08a7c059fd72fecceaa2d50a831f8c75a
fix(node): improve directory import error suggestion (#30619)
[ { "path": "libs/node_resolver/errors.rs", "patch": "@@ -892,13 +892,13 @@ impl NodeJsErrorCoded for ModuleNotFoundError {\n self.code(),\n dir_url,\n maybe_referrer.as_ref().map(|referrer| format!(\" imported from '{}'\", referrer)).unwrap_or_default(),\n- suggested_file_name.map(|file_name| format!(...
2025-09-05T01:48:19
kubernetes/kubernetes
c7ba4bbcf86cb6d520348e02a0ac4af5d7622501
ea0dce1df19a58d006a8a1d81dd3a412e707e0c5
Fix missing namespace flag in attach reattach message
[ { "path": "staging/src/k8s.io/kubectl/pkg/cmd/attach/attach.go", "patch": "@@ -356,9 +356,9 @@ func (o *AttachOptions) reattachMessage(containerName string, rawTTY bool) strin\n \t\treturn \"\"\n \t}\n \tif _, path := podcmd.FindContainerByName(o.Pod, containerName); strings.HasPrefix(path, \"spec.ephemeral...
2025-12-18T16:01:10
tensorflow/tensorflow
337b67327c7bb4a978d8177cbf0c52b9a184d611
3f20d1813406fe829df0b8cad649dea2338c3333
Add Error Code Documentation for E3001: SparseCore: No Viable Logical Replica Count PiperOrigin-RevId: 852401824
[ { "path": "third_party/xla/docs/error_codes.md", "patch": "@@ -6,4 +6,4 @@ This page is a list of all error codes emitted by the XLA compiler.\n - [E0101](./errors/error_0101.md)\n - [E0102](./errors/error_0102.md)\n - [E1200](./errors/error_1200.md)\n-- [E0102](./errors/error_3000.md)\n+- [E3001]...
2026-01-05T20:08:06
swiftlang/swift
61b04726622ed97c15aae3a12ec7297db2b873a7
1b717b37d35b25c3fbe284857d5ce36892ac4451
[test][NFC] ModuleInterface/canonicalized-os-version.swift fails on a case sensitive file system Fix a typo in the test
[ { "path": "test/ModuleInterface/canonicalized-os-version.swift", "patch": "@@ -8,7 +8,7 @@\n // RUN: %target-swift-typecheck-module-from-interface(%t/Modules/Simple.swiftmodule/arm64-apple-macos.swiftinterface) -module-name Simple \n \n // Next, build transitive dependencies in zippered mode.\n-// RUN: %tar...
2026-02-02T20:48:54
denoland/deno
eea93eb08a7c059fd72fecceaa2d50a831f8c75a
c76c3f7c138e05227931ab82665a8c5b35da3153
fix(cache): cache and uninstall are package manager subcommands (#30613)
[ { "path": "cli/factory.rs", "patch": "@@ -1264,6 +1264,8 @@ fn new_workspace_factory_options(\n is_package_manager_subcommand: matches!(\n flags.subcommand,\n DenoSubcommand::Install(_)\n+ | DenoSubcommand::Uninstall(_)\n+ | DenoSubcommand::Cache(_)\n | DenoSubcommand::...
2025-09-04T18:11:37