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
123ad66688c8367fcfeaf65c55fe4818e42c74c2
92de20564244cb7193619f7fa5e04f073c6dd79e
Add ValidationLevel to field errors
[ { "path": "staging/src/k8s.io/apimachinery/pkg/util/validation/field/error_matcher.go", "patch": "@@ -40,11 +40,12 @@ type ErrorMatcher struct {\n \tmatchField bool\n \t// TODO(thockin): consider whether value could be assumed - if the\n \t// \"want\" error has a nil value, don't match on value.\n-\tmatchVa...
2026-02-02T20:00:29
tensorflow/tensorflow
bd5b38f0846c2bf1484a406b4ab1bd403dc5e79c
8e176b31ca9fa52387530816897ebe9c15013ff2
Fix dangling reference in conv_utils_test. Change `const WindowDimension&` to `const WindowDimension` to ensure a copy is made, preventing a reference to a temporary object from becoming dangling. PiperOrigin-RevId: 867517428
[ { "path": "third_party/xla/xla/service/gpu/conv_utils_test.cc", "patch": "@@ -289,7 +289,7 @@ TEST_F(ConvUtilsTest, BackwardInputConvolveUnevenPaddingOnActivations) {\n HloConvolutionInstruction* root_conv =\n DynCast<HloConvolutionInstruction>(entry_computation->root_instruction());\n root_conv->...
2026-02-09T11:31:04
mrdoob/three.js
f1ecf66df2de3c6b13c33c5c141a489bf436c37d
407360e37b1e23e9f5e5f2d55e5947a04ec25611
VelocityNode: Fix initial value of previous model matrix. (#30839)
[ { "path": "src/nodes/accessors/VelocityNode.js", "patch": "@@ -205,6 +205,7 @@ function getPreviousMatrix( object, index = 0 ) {\n \tif ( matrix === undefined ) {\n \n \t\tobjectData[ index ] = matrix = new Matrix4();\n+\t\tobjectData[ index ].copy( object.matrixWorld );\n \n \t}\n ", "additions": 1, ...
2025-04-01T10:36:48
denoland/deno
aa8652c55945826259375d5feddc8d1d434ac005
021b3b9e99c2605bde70b7b137d9a5c88ecc8379
fix(publish): include `npm:@types/` package resolution in published packages (#31855)
[ { "path": "Cargo.lock", "patch": "@@ -9194,9 +9194,9 @@ dependencies = [\n \n [[package]]\n name = \"sys_traits\"\n-version = \"0.1.17\"\n+version = \"0.1.22\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"4f74a2c95f72e36fa6bd04a40d15623a9904bab1cc2fa6c6135b09d774a65088...
2026-01-18T19:03:52
swiftlang/swift
f06681a07cab5da242afeffce2840dda31e23c63
fa37db183e4384057f9e160dfb4145357f5462b3
[SILGen] Materialize initial value if needed in `emitApplyOfInitAccessor` If we have an indirect parameter, make sure we materialize the initial value if not already an address. This is just meant as a quick fix for rdar://171203651, ideally we would avoid emitting the apply by hand and instead rely on the higher leve...
[ { "path": "lib/SILGen/SILGenConstructor.cpp", "patch": "@@ -278,6 +278,12 @@ emitApplyOfInitAccessor(SILGenFunction &SGF, SILLocation loc,\n RValue &&initialValue) {\n SmallVector<SILValue> arguments;\n \n+ // FIXME: We ought to be using the high-level call emission machinery inst...
2026-02-26T19:29:46
tensorflow/tensorflow
ea5fe00c269a80563136cac38800c6ed530b1c8f
920c4df3bb1d3945cca36b883bf50aeffe70ac1f
Add `Run` overload with `ThreadPoolOptions` to `WrappedSession`. This change adds a new `Run` method to `WrappedSession` that includes a `thread::ThreadPoolOptions` argument, forwarding the call to the underlying session. Without this, calling this `Run` method on the `WrappedSession` results in an "unimplemented" err...
[ { "path": "tensorflow/cc/saved_model/loader.cc", "patch": "@@ -44,6 +44,7 @@ limitations under the License.\n #include \"tensorflow/core/platform/errors.h\"\n #include \"tensorflow/core/platform/file_system_helper.h\"\n #include \"tensorflow/core/platform/statusor.h\"\n+#include \"tensorflow/core/platform/t...
2026-02-09T09:41:20
kubernetes/kubernetes
79aaabb40f73caaa9d5b1c267c409453056f9f70
dff962ddbb0f5928086029e45a2fa63c28341c57
bugfix: add loopback certificate expiration health check so that configured liveness probes will fail if the loopback certificate has expired, forcing a restart. Signed-off-by: Bryce Palmer <bpalmer@redhat.com>
[ { "path": "pkg/controlplane/apiserver/config.go", "patch": "@@ -131,7 +131,7 @@ func BuildGenericConfig(\n \t\treturn\n \t}\n \n-\tif lastErr = s.SecureServing.ApplyTo(&genericConfig.SecureServing, &genericConfig.LoopbackClientConfig); lastErr != nil {\n+\tif lastErr = s.SecureServing.ApplyToConfig(genericC...
2026-01-21T20:48:42
golang/go
2b8dbb35b0d6a5601ae9b6f1d1de106774251214
21ebed0ac0a3f733811bea2355ed85d3b1bf6fbd
crypto,testing/cryptotest: ignore random io.Reader params, add SetGlobalRandom First, we centralize all random bytes generation through drbg.Read. The rest of the FIPS 140-3 module can't use external functions anyway, so drbg.Read needs to have all the logic. Then, make sure that the crypto/... tree uses drbg.Read (o...
[ { "path": "api/next/70942.txt", "patch": "@@ -0,0 +1 @@\n+pkg testing/cryptotest, func SetGlobalRandom(*testing.T, uint64) #70942", "additions": 1, "deletions": 0, "language": "Plain Text" }, { "path": "doc/godebug.md", "patch": "@@ -178,6 +178,11 @@ includes these key/value pairs in...
2025-09-15T16:58:04
mrdoob/three.js
407360e37b1e23e9f5e5f2d55e5947a04ec25611
838d357322c541ccd6324024251e22b80bbb43f9
Addons: Fix SSAA/TRAA state reset. (#30838)
[ { "path": "examples/jsm/tsl/display/SSAAPassNode.js", "patch": "@@ -113,7 +113,7 @@ class SSAAPassNode extends PassNode {\n \t\tconst { renderer } = frame;\n \t\tconst { scene, camera } = this;\n \n-\t\t_rendererState = RendererUtils.resetRendererAndSceneState( renderer, scene, _rendererState );\n+\t\t_rend...
2025-04-01T09:07:48
swiftlang/swift
23fcfa0da7b739a41ef618108ee0b31895d9c298
6ffcf5ce5497daf97a1d7dbb251b94bdb0e3991d
[CSSolver] Exclude overloads that are generic only over an error type from generic overload optimization Typed throws adoption could cause source compatibility regressions because it makes some overloads generic when they used to be concrete and didn't participate in this generic-only optimization that covers cases wh...
[ { "path": "lib/Sema/CSSolver.cpp", "patch": "@@ -1429,6 +1429,22 @@ tryOptimizeGenericDisjunction(ConstraintSystem &cs, Constraint *disjunction,\n if (AFD->getAttrs().hasAttribute<DisfavoredOverloadAttr>())\n return false;\n \n+ // If a function has been converted to typed throws, let's ignore ...
2026-02-25T23:53:23
tensorflow/tensorflow
03e0a7f0506ceeeba019257e5bc243c2eec64625
4ceddbc7aebf8b5882fe75afdbee50ed2cdc452c
Fix broken test from run_id reuse across different executables. PiperOrigin-RevId: 867281367
[ { "path": "third_party/xla/xla/pjrt/cpu/cpu_client.cc", "patch": "@@ -1538,14 +1538,15 @@ PjRtCpuLoadedExecutable::ExecuteHelper(\n }\n \n tsl::AsyncValueRef<CpuEvent> PjRtCpuClient::GetCollectiveLaunchEvent(\n- RunId run_id, size_t num_addressable_devices,\n+ RunId run_id, uint64_t executabe_id, size...
2026-02-08T21:37:02
golang/go
a3fb92a7100f3f2824d483ee0cbcf1264584b3e4
0c747b7aa757da0a0a0ac7b2b5834dca84c7c019
runtime/secret: implement new secret package Implement secret.Do. - When secret.Do returns: - Clear stack that is used by the argument function. - Clear all the registers that might contain secrets. - On stack growth in secret mode, clear the old stack. - When objects are allocated in secret mode, mark them and t...
[ { "path": "doc/next/6-stdlib/1-secret.md", "patch": "@@ -0,0 +1,20 @@\n+### New secret package\n+\n+<!-- https://go.dev/issue/21865 --->\n+\n+The new [secret](/pkg/runtime/secret) package is available as an experiment.\n+It provides a facility for securely erasing temporaries used in\n+code that manipulates...
2025-09-25T16:26:03
mrdoob/three.js
838d357322c541ccd6324024251e22b80bbb43f9
d3ca4bec425d87efdfa208b4ffe9256ddc2f3490
AfterImageNode: Fix usage of multiple nodes. (#30834) * fix afterImageNode when multiple afterImage exist * change the fix keeping previous architecture with module scoped variable
[ { "path": "examples/jsm/tsl/display/AfterImageNode.js", "patch": "@@ -143,6 +143,7 @@ class AfterImageNode extends TempNode {\n \t\tthis.textureNodeOld.value = this._oldRT.texture;\n \n \t\t// comp\n+\t\t_quadMeshComp.material = this._materialComposed;\n \n \t\trenderer.setRenderTarget( this._compRT );\n \t...
2025-04-01T09:03:24
denoland/deno
021b3b9e99c2605bde70b7b137d9a5c88ecc8379
28184e1c5bec78836accdd6e9a258cfa65fa9165
fix(ext/node): `assert` compatibility (#31821)
[ { "path": "ext/node/lib.rs", "patch": "@@ -479,13 +479,10 @@ deno_core::extension!(deno_node,\n \"_process/streams.mjs\",\n \"_readline.mjs\",\n \"_util/_util_callbackify.js\",\n- \"_util/asserts.ts\",\n \"_util/async.ts\",\n \"_util/os.ts\",\n- \"_util/std_asserts.ts\",\n \"_u...
2026-01-17T09:33:31
swiftlang/swift
421e83c48f73d0f9818fa086480e7a113902c7a1
741e3301d68ff37e615f135860fb0960b1d920d3
Fix an armasm failure on Windows ARM64 (#87474) This avoids passing -fno-sanitize=all to ASM compilers. [569/671] Building ASM_MARMASM object tools\swift\stdlib\public\RuntimeModule\CMakeFiles\swiftRuntime-windows-aarch64.dir\get-cpu-context-aarch64.asm.obj FAILED: [code=1] tools/swift/stdlib/public/RuntimeModule/CMa...
[ { "path": "stdlib/CMakeLists.txt", "patch": "@@ -123,7 +123,7 @@ else()\n # everything and there are various places where we link runtime code with\n # code built by the host compiler. Disable sanitizers for the runtime for\n # now.\n- add_compile_options(-fno-sanitize=all)\n+ add_compile_options(\"...
2026-02-26T19:54:56
tensorflow/tensorflow
1979766e1f77163a8574c11db47792887543b7c4
5cd56ec5d8d4b38915d3ebabb231f8e082b69253
PR #37470: [xla:ffi] ffi_api.h is an internal header and XLA:FFI users should only need ffi.h Imported from GitHub PR https://github.com/openxla/xla/pull/37470 Adding dependency on `ffi_api.h` just to get `XLA_FFI_Api*` leads to duplicate static registries in multiple translation units and run time crashes. This is a...
[ { "path": "third_party/xla/xla/backends/gpu/runtime/BUILD", "patch": "@@ -376,9 +376,7 @@ cc_library(\n xla_test(\n name = \"dynamic_slice_thunk_test\",\n srcs = [\"dynamic_slice_thunk_test.cc\"],\n- backends = [\n- \"gpu\",\n- ],\n+ backends = [\"gpu\"],\n deps = [\n \":...
2026-02-07T14:01:51
golang/go
0c747b7aa757da0a0a0ac7b2b5834dca84c7c019
0f6397384b583a18bae90421a71b6abad39a437f
go/build/constraint: use strings.Builder instead of for { str+=str } (This works around a bug in the stringsbuilder modernizer.) For #76476 Change-Id: I1cb8715fd79c0363cb9c159686eaeb3482c93228 Reviewed-on: https://go-review.googlesource.com/c/go/+/724721 Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> TryBot-Byp...
[ { "path": "src/go/build/constraint/expr.go", "patch": "@@ -515,18 +515,18 @@ func PlusBuildLines(x Expr) ([]string, error) {\n \t// Prepare the +build lines.\n \tvar lines []string\n \tfor _, or := range split {\n-\t\tline := \"// +build\"\n+\t\tvar line strings.Builder\n+\t\tline.WriteString(\"// +build\")...
2025-11-26T22:53:04
mrdoob/three.js
d3ca4bec425d87efdfa208b4ffe9256ddc2f3490
f25d5a264508b351d08b4ef13ae0946150b42cb4
TSL: Show shader stage in `debug()` message (#30833)
[ { "path": "src/nodes/utils/DebugNode.js", "patch": "@@ -41,11 +41,14 @@ class DebugNode extends TempNode {\n \t\tconst callback = this.callback;\n \t\tconst snippet = this.node.build( builder );\n \n+\t\tconst title = '--- TSL debug - ' + builder.shaderStage + ' shader ---';\n+\t\tconst border = '-'.repeat(...
2025-04-01T03:52:17
denoland/deno
28184e1c5bec78836accdd6e9a258cfa65fa9165
6ea647992fbb5da7971c0e62860bee9e008b57ae
fix(check): improve `@types/` package resolution for the global resolver (#31868)
[ { "path": "cli/tools/publish/unfurl.rs", "patch": "@@ -718,9 +718,7 @@ impl<TSys: SpecifierUnfurlerSys> SpecifierUnfurler<TSys> {\n match parts.first() {\n Some(DynamicTemplatePart::String { value: specifier }) => {\n // relative doesn't need to be modified\n- let is...
2026-01-16T21:25:06
golang/go
0f6397384b583a18bae90421a71b6abad39a437f
992ad55e3dcea4bd017d618d759cb9cd3529f288
go/types: relax NewSignatureType for append(slice, str...) CL 688815 contained a partial fix for the reported bug, but NewSignatureType continued to panic. This change relaxes it to permit construction of the type "func([]byte, B) []byte" where "type B []byte". We must do so because a client may instantiate the type "...
[ { "path": "src/cmd/compile/internal/types2/signature.go", "patch": "@@ -28,17 +28,28 @@ type Signature struct {\n \trecv *Var // nil if not a method\n \tparams *Tuple // (incoming) parameters from left to right; or nil\n \tresults *Tuple // (outgoing) results from left to ri...
2025-07-21T18:35:08
mrdoob/three.js
541455a54643a8b1519bacfe32333c12615880b9
05e77b087776d2be518eb3c46b45e20ad9e88fde
WebGLRenderer: Fix binding __webglFramebuffer when mipmaps are used. (#30746) * Fix binding __webglFramebuffer when mipmaps are used Closes https://github.com/mrdoob/three.js/issues/30745 * Handle crash when msaa sample used * Correct formatting * Consistency
[ { "path": "src/renderers/webgl/WebGLTextures.js", "patch": "@@ -1629,7 +1629,17 @@ function WebGLTextures( _gl, extensions, state, properties, capabilities, utils,\n \n \t\t\tif ( isCube ) throw new Error( 'target.depthTexture not supported in Cube render targets' );\n \n-\t\t\tsetupDepthTexture( renderTarg...
2025-03-31T10:04:52
swiftlang/swift
8df6ee50524ada41d174a8eb4b7306d8fc5aacd0
0dfe5488e76c4b28139f5905b48d4ceb78369b75
test: Turn this Sema test into a fixed SILGen crasher See https://github.com/swiftlang/swift/pull/87443#discussion_r2849569261.
[ { "path": "test/Constraints/pack-expansion-expressions.swift", "patch": "@@ -143,19 +143,6 @@ func tupleExpansion<each T, each U>(\n _ = forward(repeat each tuple3)\n }\n \n-// https://github.com/swiftlang/swift/issues/67091\n-do {\n- func test<each T>(_: inout (repeat each T) -> Void) {}\n-\n- var a: (...
2026-02-26T17:19:56
tensorflow/tensorflow
c466a4ea530268b5753ff8bd8d53afcb1f1b50e2
98d2b64719a8b934505541eb555b138101b13861
Fix a wrong buffer shape in various XLA tests PiperOrigin-RevId: 866710076
[ { "path": "third_party/xla/xla/core/host_offloading/host_offloading_executable_test.cc", "patch": "@@ -417,7 +417,7 @@ TEST_P(HostOffloadingRuntimeExecutableTest, FfiWithThreadpool) {\n auto computation,\n CompileFromString(hlo, host_offloading_executable_type));\n \n- Shape shape = ShapeUtil::...
2026-02-07T03:30:12
kubernetes/kubernetes
af36d192c39df2e080c07e1eaa4a508af656254f
8c9c67c000104450cfc5a5f48053a9a84b73cf93
RBAC helper: fix data race The verbs parameter slice might be shared between different rule instances and gets sorted (= written), so we have to make a copy or (even better) also de-duplicate as in pkg/apis/rbac/helpers.go. More specifically, plugin/pkg/auth/authorizer/rbac/bootstrappolicy/policy.go shares the Read a...
[ { "path": "pkg/apis/rbac/v1/helpers.go", "patch": "@@ -24,6 +24,7 @@ import (\n \t\"sort\"\n \n \tmetav1 \"k8s.io/apimachinery/pkg/apis/meta/v1\"\n+\t\"k8s.io/apimachinery/pkg/util/sets\"\n )\n \n // +k8s:deepcopy-gen=false\n@@ -37,30 +38,36 @@ type PolicyRuleBuilder struct {\n \n func NewRule(verbs ...stri...
2026-02-02T08:57:07
denoland/deno
6ea647992fbb5da7971c0e62860bee9e008b57ae
df289e57f7f3d03513cb781dc2ee23c2b44d8c19
fix(ext/node): fix deadline resolution for queued timers (#31860) Fixes `test-timers-immediate-queue.js`
[ { "path": "Cargo.lock", "patch": "@@ -1884,9 +1884,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_core\"\n-version = \"0.377.0\"\n+version = \"0.380.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"38828fa5f4f80e9c098ae38c7a0498454cd2585e2621ba2b78a9f7bd4809946...
2026-01-16T18:40:14
mrdoob/three.js
05e77b087776d2be518eb3c46b45e20ad9e88fde
62bb68551ea0f206976fb288a2174803bf361ae8
ExtrudeGeometry: Fix regression introduced by #30750. (#30822) * Fix vertex lists not being generated correctly when bevelSegments == 0 * Removed superfluous scope block around new code * Fixed using the wrong variable to populate contractedContourVertices The variable "vertices" could probably use renaming for cla...
[ { "path": "src/geometries/ExtrudeGeometry.js", "patch": "@@ -393,53 +393,63 @@ class ExtrudeGeometry extends BufferGeometry {\n \n \t\t\t}\n \n-\t\t\tconst contractedContourVertices = [];\n-\t\t\tconst expandedHoleVertices = [];\n+\t\t\tlet faces;\n \n-\t\t\t// Loop bevelSegments, 1 for the front, 1 for the...
2025-03-31T08:32:18
golang/go
992ad55e3dcea4bd017d618d759cb9cd3529f288
3fd9cb1895d37682096cde4229e45bea1428dfbe
crypto/tls: support crypto.MessageSigner private keys Fixes #75656 Change-Id: I6bc71c80973765ef995d17b1450ea2026a6a6964 Reviewed-on: https://go-review.googlesource.com/c/go/+/724820 Auto-Submit: Filippo Valsorda <filippo@golang.org> Reviewed-by: Nicholas Husin <husin@google.com> Reviewed-by: Roland Shoemaker <roland@...
[ { "path": "doc/next/6-stdlib/99-minor/crypto/tls/75656.md", "patch": "@@ -0,0 +1,2 @@\n+If [Certificate.PrivateKey] implements [crypto.MessageSigner], its SignMessage\n+method is used instead of Sign in TLS 1.2 and later.", "additions": 2, "deletions": 0, "language": "Markdown" }, { "pat...
2025-11-26T20:11:35
denoland/deno
df289e57f7f3d03513cb781dc2ee23c2b44d8c19
76da1f08dfcb165400a470b39a36d9f66f0825bb
fix(ext/node): properly implement process.features (#31864) This almost correctly implements `process.features`, the only missing bit is `process.features.inspector` which will be handled in https://github.com/denoland/deno/pull/31863 because it requires to disable a bunch of tests that were false positives. Makes `p...
[ { "path": "ext/node/polyfills/process.ts", "patch": "@@ -94,7 +94,7 @@ import * as uv from \"ext:deno_node/internal_binding/uv.ts\";\n import type { BindingName } from \"ext:deno_node/internal_binding/mod.ts\";\n import { buildAllowedFlags } from \"ext:deno_node/internal/process/per_thread.mjs\";\n \n-const...
2026-01-16T16:15:45
swiftlang/swift
0dfe5488e76c4b28139f5905b48d4ceb78369b75
22b79a56640abacc412e7504af0ca5c7707231f1
Add a missing dependency for symlink_clang_headers_static (#87475) This fixes a flaky build failure during swfit testing on Windows: ``` [3215/5709] Symlinking Clang resource headers into D:/r/_work/swift-build/swift-build/BinaryCache/1/./lib/swift_static/clang FAILED: [code=1] lib/swift_static/clang D:/r/_work/swift...
[ { "path": "stdlib/public/SwiftShims/swift/shims/CMakeLists.txt", "patch": "@@ -170,6 +170,7 @@ if(NOT SWIFT_BUILT_STANDALONE)\n \n foreach(target\n symlink_clang_headers\n+ symlink_clang_headers_static\n clang-builtin-headers\n clang-resource-dir-symlink\n clang-builtin-header...
2026-02-26T17:10:41
tensorflow/tensorflow
2d6404184a52cc4aa68bb82bd2761115548788be
8aaf4239b58d0f0314d2c47955bb32c09631787f
Update CPU execute to delay certain types of errors and remove the need for inline_result_status by immediately returning if it is a bad status result. PiperOrigin-RevId: 866609239
[ { "path": "third_party/xla/xla/pjrt/cpu/cpu_client.cc", "patch": "@@ -1508,13 +1508,10 @@ PjRtCpuLoadedExecutable::ExecuteHelper(\n executable_->cpu_executable_->module().input_output_alias_config(),\n device, executable_->output_memory_space_kind_ids_));\n \n- PjRtRawLoadedExecutable::...
2026-02-06T22:11:14
mrdoob/three.js
62bb68551ea0f206976fb288a2174803bf361ae8
025475dc785bd435f6c91098edeffdc92c706ff2
FrontFacingNode: Fix `frontFacing` if used `material.flatShading` (#30828)
[ { "path": "src/nodes/display/FrontFacingNode.js", "patch": "@@ -38,8 +38,6 @@ class FrontFacingNode extends Node {\n \n \t\tconst { renderer, material } = builder;\n \n-\t\tif ( material.flatShading === true ) return 'true';\n-\n \t\tif ( renderer.coordinateSystem === WebGLCoordinateSystem ) {\n \n \t\t\tif...
2025-03-30T21:15:10
golang/go
3fd9cb1895d37682096cde4229e45bea1428dfbe
3353c100bb97954edc11c1bc07fd07db9d4bc567
cmd/compile: fix bloop get name logic This CL change getNameFrom impl to pattern match addressible patterns. Change-Id: If1faa22a3a012d501e911d8468a5702b348abf16 Reviewed-on: https://go-review.googlesource.com/c/go/+/724180 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Revi...
[ { "path": "src/cmd/compile/internal/bloop/bloop.go", "patch": "@@ -42,40 +42,42 @@ import (\n \t\"cmd/compile/internal/reflectdata\"\n \t\"cmd/compile/internal/typecheck\"\n \t\"cmd/compile/internal/types\"\n-\t\"fmt\"\n+\t\"cmd/internal/src\"\n )\n \n // getNameFromNode tries to iteratively peel down the n...
2025-11-25T01:37:13
denoland/deno
76da1f08dfcb165400a470b39a36d9f66f0825bb
9006b37ea61590ff3f55ee3acf1f3677ae57e55e
fix(ext/node): implement getValidStdio for child_process (#31850) Implements the internal `getValidStdio` function used by Node.js's child_process module to validate stdio configurations. This function: - Validates stdio is a string ('ignore', 'pipe', 'inherit', 'overlapped') or array - Expands arrays to at least 3...
[ { "path": "ext/node/polyfills/internal/child_process.ts", "patch": "@@ -41,7 +41,9 @@ import {\n AbortError,\n ERR_INVALID_ARG_TYPE,\n ERR_INVALID_ARG_VALUE,\n+ ERR_INVALID_SYNC_FORK_INPUT,\n ERR_IPC_CHANNEL_CLOSED,\n+ ERR_IPC_SYNC_FORK,\n ERR_UNKNOWN_SIGNAL,\n } from \"ext:deno_node/internal/er...
2026-01-16T13:21:43
swiftlang/swift
4f4f01cfda744acd9b007fe7d13da44f395382d9
d615555826c501b1db4674928846e33ba505693a
Try to fix tests for other platforms
[ { "path": "test/IRGen/coroutine_accessors_future.swift", "patch": "@@ -17,11 +17,11 @@ public struct OhOh {\n // Verify that we emit a get, set, and `yielding mutate` implementation:\n \n // Getter definition\n-// CHECK: define swiftcc i64 @\"$s26coroutine_accessors_future02OhD0V1gSivg\"(i64 %0) #0\n+// CHE...
2026-02-25T16:08:52
kubernetes/kubernetes
09333f1a974540262081df624d51a966fcb6a8ef
cc0fdc1fe2cfada52875a0c5fa115f69b4dd477a
Fix ulimit check
[ { "path": "hack/make-rules/test.sh", "patch": "@@ -272,7 +272,7 @@ checkFDs() {\n # due to the low default files limit on OS X. Warn about low limit.\n local fileslimit\n fileslimit=\"$(ulimit -n)\"\n- if [[ ${fileslimit} -lt 1000 ]]; then\n+ if [[ \"${fileslimit}\" != \"unlimited\" && \"${fileslim...
2026-02-03T02:33:05
mrdoob/three.js
aa7f5b96990f34e14808897aa2e9c15a41472f3b
b3cb0cd0d6066f7054a76b90904486e40031c2ce
Normal: Don't flip normals when using flat shading. (#30823) * FrontFacingNode: Don't flip normals when using flat shading. * Normal: Don't flip normals when using flat shading. * Add fix to `transformedClearcoatNormalView` as well. * updates --------- Co-authored-by: sunag <sunagbrasil@gmail.com>
[ { "path": "src/nodes/accessors/Normal.js", "patch": "@@ -83,9 +83,13 @@ export const transformedNormalView = /*@__PURE__*/ ( Fn( ( builder ) => {\n \n \t// Use getUV context to avoid side effects from nodes overwriting getUV in the context (e.g. EnvironmentNode)\n \n-\treturn builder.context.setupNormal().c...
2025-03-30T16:34:07
golang/go
3353c100bb97954edc11c1bc07fd07db9d4bc567
301d9f9b52b9b5dbc57151f680a64d1bf85e6d43
cmd/go: remove experiment checks for compile -c There's a comment that we should test that compile -c is compatible with the fieldtrack and preemptibleloops experiments and then remove the check disabling -c when those experiments are enabled. I tested this and the tests pass with fieldtrack (with the exception of on...
[ { "path": "src/cmd/go/internal/work/build.go", "patch": "@@ -238,8 +238,6 @@ See also: go install, go get, go clean.\n \t`,\n }\n \n-const concurrentGCBackendCompilationEnabledByDefault = true\n-\n func init() {\n \t// break init cycle\n \tCmdBuild.Run = runBuild", "additions": 0, "deletions": 2, ...
2025-11-26T15:30:34
denoland/deno
0f632fbe19664975093d32b014d84910a9051c71
c356d9a621fccad5047497238039cde10613b278
fix: don't ever set 1005 outbound close code (#31845) 1005 should never be sent on the wire. Next.js errors when receiving this. --------- Co-authored-by: Divy Srivastava <me@littledivy.com>
[ { "path": "ext/websocket/lib.rs", "patch": "@@ -721,7 +721,10 @@ pub async fn op_ws_close(\n const EMPTY_PAYLOAD: &[u8] = &[];\n \n let frame = reason\n- .map(|reason| Frame::close(code.unwrap_or(1005), reason.as_bytes()))\n+ .map(|reason| match code {\n+ Some(code) => Frame::close(code, &rea...
2026-01-16T09:53:54
mrdoob/three.js
f06cc7d42b187b5c9b2ce2b05ef76843d8d6e3a6
aebc1f1abb20150cebd4c9be1c02e8f8717c965e
MD2CharacterComplex: fix frontDeceleration attribute name (#30817) Co-authored-by: Samuel Rigaud <rigaud@gmail.com>
[ { "path": "examples/jsm/misc/MD2CharacterComplex.js", "patch": "@@ -78,12 +78,12 @@ class MD2CharacterComplex {\n \t\tthis.backAcceleration = 600;\n \n \t\t/**\n-\t\t * The character's front decceleration.\n+\t\t * The character's front deceleration.\n \t\t *\n \t\t * @type {number}\n \t\t * @default 600\n ...
2025-03-28T14:48:21
tensorflow/tensorflow
b5cf2355a127492767d16f636a61c514e8a99101
5b633a25c9a983e76ff74e2c0ba966a1d8a77b77
PR #35343: [ROCM] Splitting gridDim.x into x and y if necessary for large reductions and loop fusion Imported from GitHub PR https://github.com/openxla/xla/pull/35343 During maxtext training we had fusion kernel launch failures due to very large grid X dimension. Two examples of this are: ``` HloModule Test reduceOp ...
[ { "path": "third_party/xla/xla/backends/gpu/codegen/emitters/BUILD", "patch": "@@ -242,7 +242,6 @@ cc_library(\n \"//xla/hlo/analysis:indexing_analysis\",\n \"//xla/hlo/ir:hlo\",\n \"//xla/hlo/utils:hlo_traversal\",\n- \"//xla/service:platform_util\",\n \"//xla/service...
2026-02-06T20:01:59
golang/go
86bbea0cfa72041fb4315eb22099b0bc83caa314
e2cae9ecdf944a1cc5d8803ff8932180858b8ce6
crypto/fips140: add WithoutEnforcement WithoutEnforcement lets programs running under GODEBUG=fips140=only selectively opt out of strict enforcement. This is especially helpful for non-critical uses of cryptography routines like SHA-1 for content addressable storage backends (E.g. git). Fixes #74630 Change-Id: Iabba...
[ { "path": "api/next/74630.txt", "patch": "@@ -0,0 +1,2 @@\n+pkg crypto/fips140, func Enforced() bool #74630\n+pkg crypto/fips140, func WithoutEnforcement(func()) #74630", "additions": 2, "deletions": 0, "language": "Plain Text" }, { "path": "doc/next/6-stdlib/99-minor/crypto/fips140/7463...
2025-11-24T13:08:10
denoland/deno
04e93df2e7b3b00e8d0698f8b0f62223b6d3379f
47ea9b2ad7e377964965a2205038dc454ca5cd0f
fix(audit): respect --level flag for exit code (#31721) Closes #31702
[ { "path": "cli/tools/pm/audit.rs", "patch": "@@ -333,18 +333,24 @@ mod npm {\n let minimal_severity =\n AdvisorySeverity::parse(&audit_flags.severity).unwrap();\n print_report(\n- vulns,\n+ &vulns,\n advisories,\n response.actions,\n minimal_severity,\n audit_...
2026-01-15T10:00:48
mrdoob/three.js
1b4a21f6649f6b85525507812230bcb88701fe48
7d5abde86b69740d4e1ecc6b0c2a34cf17f33735
JointNode: Improve the error message.
[ { "path": "src/nodes/utils/JoinNode.js", "patch": "@@ -70,7 +70,7 @@ class JoinNode extends TempNode {\n \n \t\t\tif ( length >= maxLength ) {\n \n-\t\t\t\tconsole.error( 'THREE.TSL: Length of parameters exceeds maximum length of function type.' );\n+\t\t\t\tconsole.error( `THREE.TSL: Length of parameters e...
2025-03-28T01:37:00
kubernetes/kubernetes
7bb838e50b5b878b19151bd03cb3e20bf8746740
07a697046f5299c31e3af5a1ad894e3f62d0bce6
Fix kubectl plugin list overshadow detection on Windows
[ { "path": "staging/src/k8s.io/kubectl/pkg/cmd/plugin/plugin.go", "patch": "@@ -217,8 +217,7 @@ func (v *CommandOverrideVerifier) Verify(path string) []error {\n \t}\n \n \t// extract the plugin binary name\n-\tsegs := strings.Split(path, \"/\")\n-\tbinName := segs[len(segs)-1]\n+\tbinName := filepath.Base(p...
2026-02-02T13:09:05
tensorflow/tensorflow
78e5d28804885d1d71d202ffe66708f25c1b41a6
21c5f57ec4cb13b53bceb1d03bee14a0a426f113
[XLA:GPU] Optimize RaggedAllToAll: Move Rendezvous to Thunk::Initialize This change optimizes the RaggedAllToAll custom call by moving the resource rendezvous from the execution path (Thunk::RunCollective) to the initialization path (Thunk::Initialize). Previously, the Rendezvous occurred inside the execution hot pat...
[ { "path": "third_party/xla/xla/backends/gpu/runtime/ragged_all_to_all_thunk.cc", "patch": "@@ -373,20 +373,17 @@ RaggedAllToAllStartThunk::RaggedAllToAllStartThunk(\n return GetRaggedAllToAllConfig(instr).config.group_mode;\n }\n \n-absl::Status RaggedAllToAllStartThunk::Initialize(\n- const Initialize...
2026-02-06T18:20:45
golang/go
e2cae9ecdf944a1cc5d8803ff8932180858b8ce6
623ef2813579c9b52ba4a0335722df4d93566b74
crypto/x509: add ExtKeyUsage.OID method And OIDFromASN1OID for converting between asn1.ObjectIdentifier and OID. Fixes #75325 Change-Id: I3b84dce54346d88aab731ffe30d0fef07b014f04 Reviewed-on: https://go-review.googlesource.com/c/go/+/724761 Reviewed-by: Neal Patel <nealpatel@google.com> Auto-Submit: Roland Shoemaker...
[ { "path": "api/next/75325.txt", "patch": "@@ -0,0 +1,2 @@\n+pkg crypto/x509, func OIDFromASN1OID(asn1.ObjectIdentifier) (OID, error) #75325\n+pkg crypto/x509, method (ExtKeyUsage) OID() OID #75325", "additions": 2, "deletions": 0, "language": "Plain Text" }, { "path": "doc/next/6-stdlib/...
2025-11-26T17:21:13
denoland/deno
2bf94f1b4b73a0af2ae1bf80ce2aeef3a01932d0
02272d9573a7dbab6d0a3578dfda4f3d91f7e70d
fix(ci): rename `trusted-signing-action` to `artifact-signing-action` (#31849) The GitHub action `Azure/trusted-signing-action` has been renamed to `Azure/artifact-signing-action`. Ref: https://github.com/Azure/artifact-signing-action/issues/107
[ { "path": ".github/workflows/ci.generate.ts", "patch": "@@ -850,7 +850,7 @@ const ci = {\n \"github.repository == 'denoland/deno' &&\",\n \"(github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/'))\",\n ].join(\"\\n\"),\n- uses: \"azure/trusted-sign...
2026-01-14T22:19:35
mrdoob/three.js
7d5abde86b69740d4e1ecc6b0c2a34cf17f33735
cc3564677dd1c87c34091f07f7d13fe819e7d203
lth demo (#30695) * lth demo * fix * fix2 * up * fix screen shot
[ { "path": "examples/files.json", "patch": "@@ -6,6 +6,7 @@\n \t\t\"webgl_animation_skinning_ik\",\n \t\t\"webgl_animation_skinning_morph\",\n \t\t\"webgl_animation_multiple\",\n+\t\t\"webgl_animation_walk\",\n \t\t\"webgl_camera\",\n \t\t\"webgl_camera_array\",\n \t\t\"webgl_camera_logarithmicdepthbuffer\",...
2025-03-28T01:07:31
golang/go
efe9ad501d94743d87e500a7ba0b1732a89e9afd
ac3369242d3a6d6219fdf1d592effc5e51ddfeb8
go/types, types2: improve printing of []*operand lists (debugging support) Special-case an sprintf argument of []*operand type, similar to what we do for other lists. As a result a list of operands is printed as [a, b, c] rather than [a b c] (default formatting for slices). (We could factor out this code into a gener...
[ { "path": "src/cmd/compile/internal/types2/format.go", "patch": "@@ -23,6 +23,17 @@ func sprintf(qf Qualifier, tpSubscripts bool, format string, args ...any) string\n \t\t\tpanic(\"got operand instead of *operand\")\n \t\tcase *operand:\n \t\t\targ = operandString(a, qf)\n+\t\tcase []*operand:\n+\t\t\tvar b...
2025-11-26T00:26:25
kubernetes/kubernetes
bd7c78107f196eb3e93dbe9fff9608614ddcf909
c8e45a33316e43336dea04c84b7602be04f2ee73
Fix:NewUnmounter always returns error while deleting pod after node reboot
[ { "path": "pkg/kubelet/volumemanager/reconciler/reconciler_test.go", "patch": "@@ -18,6 +18,7 @@ package reconciler\n \n import (\n \t\"context\"\n+\t\"errors\"\n \t\"fmt\"\n \t\"hash/fnv\"\n \t\"path/filepath\"\n@@ -2008,6 +2009,27 @@ func waitForMount(\n \t}\n }\n \n+func waitForUnmount(\n+\tt *testing.T,...
2026-01-30T05:19:12
denoland/deno
02272d9573a7dbab6d0a3578dfda4f3d91f7e70d
bd6bce3e5fab4aa555ee811d7e7211a54b57865e
fix(io): ignore `BrokenPipe` error in `op_print` (#31844)
[ { "path": "ext/io/lib.rs", "patch": "@@ -1199,9 +1199,11 @@ pub fn op_print(\n ) -> Result<(), JsErrorBox> {\n let rid = if is_err { 2 } else { 1 };\n FileResource::with_file(state, rid, move |file| {\n- file\n- .write_all_sync(msg.as_bytes())\n- .map_err(JsErrorBox::from_err)\n+ match f...
2026-01-14T20:43:27
tensorflow/tensorflow
7da61770d4d22235f0ca86a3835457b9c9d5d841
718807656f7b8d3ea4318c7daa6397ae10257345
[XLA:MSA] Add a message to required assignments for debugging purposes. * In future update lambdas like `is_position_allowed_in_alternate_mem_fn` to return an optional string along with a bool, to allow tracing the source/reason for required assignments in greater detail. PiperOrigin-RevId: 866206751
[ { "path": "third_party/xla/xla/service/memory_space_assignment/algorithm.cc", "patch": "@@ -741,7 +741,8 @@ std::string MsaAlgorithm::RequiredMemoryAssignment::ToString() const {\n \n return absl::StrCat(\n \"RequiredMemoryAssignment(memory_space=\", memory_space_str,\n- \", time=\", time, \", ...
2026-02-06T02:35:11
mrdoob/three.js
818a27987a9686ca1585a839a5e57e4232931d47
3285194a66c443222707a2d146fe2f8d6226c3f7
Fix setReversed() so reverseDepthBuffer: true works (#30809) * Fix setReversed() so reverseDepthBuffer: true works * Use the same pattern as other state functions * Whitespace change to rerun e2e * Whitespace change to rerun e2e * Add @CodyJasonBennett's example for reverse depth buffer * Add e2e exception for we...
[ { "path": "examples/files.json", "patch": "@@ -276,6 +276,7 @@\n \t\t\"webgl_multiple_rendertargets\",\n \t\t\"webgl_multisampled_renderbuffers\",\n \t\t\"webgl_rendertarget_texture2darray\",\n+\t\t\"webgl_reverse_depth_buffer\",\n \t\t\"webgl_shadowmap_csm\",\n \t\t\"webgl_shadowmap_pcss\",\n \t\t\"webgl_s...
2025-03-27T23:08:09
denoland/deno
dc8e397b09055f3b0986da51276a6d6117f12067
79a4ddb127436e87f65a1012cc96d6ba460d7991
fix(node/child_process): ChildProcess constructor without args (#31838) Refactors ChildProcess class to match Node.js behavior where the constructor can be called without arguments, and spawn() is called separately with options. Fix `test-child-process-constructor.js`
[ { "path": "ext/node/polyfills/child_process.ts", "patch": "@@ -236,7 +236,10 @@ export function spawn(\n options = normalizeSpawnArguments(command, args, options);\n \n validateAbortSignal(options?.signal, \"options.signal\");\n- return new ChildProcess(command, args, options);\n+\n+ const child = new...
2026-01-14T18:09:30
tensorflow/tensorflow
7ea3b0aa44733251dca754d2e7adb45ad1a3e7a1
accf4e2d316b5ab801f9c133560fcc326a28df32
PR #37411: [tsl:concurrency] Fix JoinFutures<T>() when futures finish with errors Imported from GitHub PR https://github.com/openxla/xla/pull/37411 Fix JoinFutures<T>() when futures finish with errors Copybara import of the project: -- e8796b7ae46b1f2c525c012e12bf70a90683e266 by Eugene Zhulenev <ezhulenev@openxla.or...
[ { "path": "third_party/xla/xla/tsl/concurrency/future.h", "patch": "@@ -1363,7 +1363,11 @@ class JoinState {\n \n if (pending_count == 1) {\n absl::MutexLock lock(mu_);\n- promise_.Set(std::move(values_));\n+ if (ABSL_PREDICT_TRUE(status_.ok())) {\n+ promise_.Set(std::move(values_...
2026-02-06T01:32:20
golang/go
fb5156a0981c2b89a118695138194e1af162ac8e
b194f5d24a71e34f147c90e4351d80ac75be55de
testing: fix bloop doc This CL deletes the compiler detail part from bloop documentation. Change-Id: I73933707a593d4958e2300416d15e7213f001c3a Reviewed-on: https://go-review.googlesource.com/c/go/+/724800 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: David Chas...
[ { "path": "src/testing/benchmark.go", "patch": "@@ -483,14 +483,12 @@ func (b *B) loopSlowPath() bool {\n // the timer so cleanup code is not measured.\n //\n // Within the body of a \"for b.Loop() { ... }\" loop, arguments to and\n-// results from function calls and assignment receivers within the loop are...
2025-11-26T19:15:51
denoland/deno
d8a3f1bb90b4ab66ecdd571a471bf5e661119839
0b4cbe3bc8491787e3aab78db35cee2ab2590bba
fix(node/child_process): use correct syscall name in spawn error (#31836) The error object from spawn() was incorrectly setting syscall to "spawnSync <file>" instead of "spawn <file>".
[ { "path": "ext/node/polyfills/internal/child_process.ts", "patch": "@@ -420,7 +420,7 @@ export class ChildProcess extends EventEmitter {\n } catch (err) {\n let e = err;\n if (e instanceof Deno.errors.NotFound) {\n- e = _createSpawnSyncError(\"ENOENT\", command, args);\n+ e = _...
2026-01-13T19:26:19
tensorflow/tensorflow
accf4e2d316b5ab801f9c133560fcc326a28df32
cfe43f3134071cd233993fa93dc760739547037e
Fix use_legacy_runtime + hlo_runner deps. PiperOrigin-RevId: 866170733
[ { "path": "third_party/xla/xla/service/gpu/model/BUILD", "patch": "@@ -798,6 +798,7 @@ xla_test(\n \"manual\",\n \"notap\",\n ],\n+ use_legacy_runtime = True,\n deps = [\n \":hlo_op_profile_proto_cc\",\n \":hlo_op_profiler_lib\",", "additions": 1, "deletion...
2026-02-06T00:48:03
mrdoob/three.js
3285194a66c443222707a2d146fe2f8d6226c3f7
3cf407d651b6b872b79ca733bca9f0f7013b0a7a
Examples: fix minor errors (#30799) * Examples: fix minor errors * Update webgl_mesh_batch.html * Update webgpu_multisampled_renderbuffers.html Revert. --------- Co-authored-by: Samuel Rigaud <rigaud@gmail.com> Co-authored-by: Michael Herzog <michael.herzog@human-interactive.org>
[ { "path": "examples/webgl_multiple_views.html", "patch": "@@ -255,7 +255,7 @@\n \t\t\t\t\tconst view = views[ ii ];\n \t\t\t\t\tconst camera = view.camera;\n \n-\t\t\t\t\tview.updateCamera( camera, scene, mouseX, mouseY );\n+\t\t\t\t\tview.updateCamera( camera, scene, mouseX );\n \n \t\t\t\t\tconst left = M...
2025-03-27T23:06:09
swiftlang/swift
92ee90604372c6f8dba12fb3fcb2de2281d16148
864c08f5ef3f71b5f01d57eb614a063f4cc294de
build: clean up Windows default flags Ensure that we build with `/DUNICODE /D_UNICODE` on Windows to enable the unicode paths. Remove a workaround for `_DEBUG` in light of llvm/llvm-project#183120. Take the opportunity to reflow some text and add some explanatory comments. Fixes: #87470
[ { "path": "cmake/modules/AddSwift.cmake", "patch": "@@ -229,7 +229,22 @@ function(_add_host_variant_c_compile_flags target)\n endif()\n \n target_compile_definitions(${target} PRIVATE\n- $<$<COMPILE_LANGUAGE:C,CXX,OBJC,OBJCXX>:LLVM_ON_WIN32 _CRT_SECURE_NO_WARNINGS _CRT_NONSTDC_NO_WARNINGS>)\n+ ...
2026-02-25T00:14:46
golang/go
437d2362ce8ad3e10631aaf90cb4d8c8126d1bac
71f8f031b27502e057c569fef8cd4f2cb9187504
os,internal/poll: don't call IsNonblock for consoles and Stdin windows.IsNonblock can block for synchronous handles that have an outstanding I/O operation. Console handles are always synchronous, so we should not call IsNonblock for them. Stdin is often a pipe, and almost always a synchronous handle, so we should not ...
[ { "path": "src/internal/poll/fd_windows.go", "patch": "@@ -451,6 +451,10 @@ func (fd *FD) Init(net string, pollable bool) error {\n \tfd.isFile = fd.kind != kindNet\n \tfd.isBlocking = !pollable\n \n+\tif !pollable {\n+\t\treturn nil\n+\t}\n+\n \t// It is safe to add overlapped handles that also perform I/O...
2025-11-26T09:25:16
denoland/deno
0b4cbe3bc8491787e3aab78db35cee2ab2590bba
323f43a05d5d0146260a38c0beb71755ed66d422
fix(node/child_process): reject null bytes in arguments (#31828) Add validation to reject null bytes (\0) in child_process arguments, matching Node.js behavior. Null bytes in command arguments can cause security issues as they may truncate strings at the OS level. Validates null bytes in: - file/command argument ...
[ { "path": "ext/node/polyfills/child_process.ts", "patch": "@@ -22,6 +22,7 @@ import {\n type SpawnSyncOptions,\n type SpawnSyncResult,\n stdioStringToArray,\n+ validateNullByteNotInArg,\n } from \"ext:deno_node/internal/child_process.ts\";\n import {\n validateAbortSignal,\n@@ -73,6 +74,7 @@ export...
2026-01-13T17:17:49
mrdoob/three.js
96afe9589cbf5a1a7f631c5be8d6a4a639138a81
2b13ed63c66507f0f28cbd115cde6a907b37d5fb
TSL: Simplified `Fn()` layout (#30810) * simplified layout * Update OperatorNode.js * check if is vector * improve warning and error messages
[ { "path": "src/nodes/code/FunctionCallNode.js", "patch": "@@ -1,5 +1,5 @@\n import TempNode from '../core/TempNode.js';\n-import { addMethodChaining, nodeArray, nodeObject, nodeObjects } from '../tsl/TSLCore.js';\n+import { addMethodChaining, nodeArray, nodeObject, nodeObjects, float } from '../tsl/TSLCore....
2025-03-27T19:29:36
kubernetes/kubernetes
0fe227edfa34ecef45332cef706e5ac9f5fb34d6
07a697046f5299c31e3af5a1ad894e3f62d0bce6
nodelifecycle: fix processing deleted pod events, which are currently missed Signed-off-by: xigang <wangxigang2014@gmail.com>
[ { "path": "pkg/controller/nodelifecycle/node_lifecycle_controller.go", "patch": "@@ -368,23 +368,6 @@ func NewNodeLifecycleController(\n \t\t\tnewPod := obj.(*v1.Pod)\n \t\t\tnc.podUpdated(prevPod, newPod)\n \t\t},\n-\t\tDeleteFunc: func(obj interface{}) {\n-\t\t\tpod, isPod := obj.(*v1.Pod)\n-\t\t\t// We c...
2025-09-28T03:40:43
golang/go
eb63ef9d6676dc0edb112cd297820306a327017a
06412288cfd31ab365fe8ee6368742dffa759803
runtime: panic if cleanup function closes over cleanup pointer This would catch problems like https://go.dev/cl/696295. Benchmark effect with this CL plus CL 697535: goos: linux goarch: amd64 pkg: runtime cpu: 12th Gen Intel(R) Core(TM) i7-1260P │ /tmp/foo.1 │ /tmp/foo.2 ...
[ { "path": "src/runtime/mcleanup.go", "patch": "@@ -71,7 +71,14 @@ import (\n // mentions it. To ensure a cleanup does not get called prematurely,\n // pass the object to the [KeepAlive] function after the last point\n // where the object must remain reachable.\n+//\n+//go:nocheckptr\n func AddCleanup[T, S a...
2025-08-22T20:47:42
tensorflow/tensorflow
ca6336f3300633f2b428c4d8c2a28fbc333b6d2e
c5112b03fdac30aad49d78ccaa64c6bc0d2fa984
PR #37389: [xla:gpu] Clean up execution stream assignment Imported from GitHub PR https://github.com/openxla/xla/pull/37389 Attempt #2: https://github.com/openxla/xla/pull/37247 + asan fixes Simplify execution stream assignment in terms of execution scopes: Async-start-like instructions start a new execution scope ...
[ { "path": "third_party/xla/xla/backends/gpu/runtime/thunk.cc", "patch": "@@ -27,6 +27,7 @@ limitations under the License.\n #include \"absl/status/statusor.h\"\n #include \"absl/strings/str_cat.h\"\n #include \"absl/strings/str_format.h\"\n+#include \"absl/strings/str_join.h\"\n #include \"absl/strings/stri...
2026-02-06T00:25:54
swiftlang/swift
7c8f61c36105914549160959925b8098a9aa10cd
864c08f5ef3f71b5f01d57eb614a063f4cc294de
Optimizer: remove a wrong assert in MemAccessUtils Remove an assert which checks that a phi is not an address. However, "address" phis can happen because we look through `pointer_to_address` instructions and a phi can be a `Builtin.RawPointer`. Fixes a compiler crash
[ { "path": "include/swift/SIL/MemAccessUtils.h", "patch": "@@ -1958,7 +1958,8 @@ class AccessUseDefChainCloner\n }\n \n SILValue visitPhi(SILPhiArgument *phi) {\n- assert(false && \"unexpected phi on access path\");\n+ // \"Address\" phis can happen because we look through `pointer_to_address`\n+ ...
2026-02-25T20:00:19
denoland/deno
7be740f03525f2153fdebdb16b5bd0ecb884506e
41dca90e29442b7cbb93e139d166059f158e133a
fix(node/child_process): improve arg type validation for execFile and fork (#31829) - Improves argument type validation in `execFile()` and `fork()` to match Node.js behavior - Fixes error code from `ERR_INVALID_ARG_VALUE` to `ERR_INVALID_ARG_TYPE` in fork argument validation - Adds explicit array rejection in options...
[ { "path": "ext/node/polyfills/child_process.ts", "patch": "@@ -33,7 +33,6 @@ import {\n ERR_CHILD_PROCESS_IPC_REQUIRED,\n ERR_CHILD_PROCESS_STDIO_MAXBUFFER,\n ERR_INVALID_ARG_TYPE,\n- ERR_INVALID_ARG_VALUE,\n ERR_OUT_OF_RANGE,\n genericNodeError,\n } from \"ext:deno_node/internal/errors.ts\";\n@@...
2026-01-13T16:02:24
mrdoob/three.js
1964c101f4ed7da8d3fa12293c4ac620aa23325b
2e3ee1c103e7ac6c27fd5a639bac2f2803553176
TSL: Improve `debug()` tab order
[ { "path": "src/nodes/utils/DebugNode.js", "patch": "@@ -43,7 +43,7 @@ class DebugNode extends TempNode {\n \n \t\tlet code = '';\n \t\tcode += '// #--- TSL Debug ---#\\n';\n-\t\tcode += builder.flow.code.replace( /\\t/g, '' ) + '\\n';\n+\t\tcode += builder.flow.code.replace( /^\\t/mg, '' ) + '\\n';\n \t\tco...
2025-03-26T21:49:34
golang/go
06412288cfd31ab365fe8ee6368742dffa759803
03f499ec4602500939a1ed3c540cbd5183c20ce9
runtime: panic on AddCleanup with self pointer For #75066 Change-Id: Ifd555586fb448e7510fed16372648bdd7ec0ab4a Reviewed-on: https://go-review.googlesource.com/c/go/+/697535 Reviewed-by: Cherry Mui <cherryyz@google.com> Auto-Submit: Ian Lance Taylor <iant@golang.org> Reviewed-by: Michael Knyszek <mknyszek@google.com> ...
[ { "path": "src/runtime/mcleanup.go", "patch": "@@ -84,7 +84,8 @@ func AddCleanup[T, S any](ptr *T, cleanup func(S), arg S) Cleanup {\n \n \t// Check that arg is not equal to ptr.\n \targType := abi.TypeOf(arg)\n-\tif kind := argType.Kind(); kind == abi.Pointer || kind == abi.UnsafePointer {\n+\tkind := argT...
2025-08-20T00:00:29
kubernetes/kubernetes
cfcb10ef8acdb0305b703002b00e117a71814e2e
f4938574d42f7eecdef6baae06593882f8d9da16
hack: switch local-up-cluster to ptp CNI for reliable DIND networking The ci-kubernetes-local-e2e job has been flaky (~40-45% success rate) with intermittent DNS/service connectivity failures. The root cause is that bridge CNI requires br_netfilter and bridge-nf-call-iptables kernel settings, which don't work reliably...
[ { "path": "hack/local-up-cluster.sh", "patch": "@@ -424,6 +424,13 @@ function detect_binary {\n cleanup()\n {\n echo \"Cleaning up...\"\n+\n+ # Capture CoreDNS logs before shutting down (useful for debugging DNS issues)\n+ if [[ \"${ENABLE_CLUSTER_DNS}\" == true ]]; then\n+ echo \"Capturing CoreDNS l...
2026-01-30T13:17:06
swiftlang/swift
1fa1af4410b7a05d43fdd0702a0324a74b0401cc
2eb5c22b396a6f7570eb7208e63304e3eeea60f2
[utils] save hash of GENERATED-BY output By hashing the output, the test updater won't trigger for failures unrelated to the test file being outdated. That is, if the generated test output hasn't changed, then regenerating the test surely won't fix it. This serves two purposes: - it allows someone to make edits to th...
[ { "path": "test/Utils/update-generated-tests/Inputs/lit-substitutions.expected", "patch": "@@ -1,2 +1,3 @@\n // GENERATED-BY: cat %path/lit-substitutions-input.txt\n+// GENERATED-HASH: 03b754805b97f9b6295cbeee6d76bec3bfd9da47bbf800ce93dd96533987c380\n generated content", "additions": 1, "deletions":...
2026-02-26T04:25:10
mrdoob/three.js
afe4adb532027d308afc8715312a4e1599624777
f3f3ed345a573df06543863afec2446b52568593
LWOLoader: fix method calls (#30802) Co-authored-by: Samuel Rigaud <rigaud@gmail.com>
[ { "path": "examples/jsm/loaders/LWOLoader.js", "patch": "@@ -351,7 +351,7 @@ class MaterialParser {\n \n \t\tconst maps = this.parseTextureNodes( connections.maps );\n \n-\t\tthis.parseAttributeImageMaps( connections.attributes, textures, maps, materialData.maps );\n+\t\tthis.parseAttributeImageMaps( connec...
2025-03-26T08:39:47
denoland/deno
41dca90e29442b7cbb93e139d166059f158e133a
db55e48fa39e982bf0b7829e02b22f2661efa090
tests: remake inspector tests handling out of order (#31788) This PR rewrite the inspector tests from Rust to TypeScript, and also uses a better strategy for out of order communication, fixing flaky tests.
[ { "path": "tests/integration/inspector_tests.rs", "patch": "@@ -1,1905 +0,0 @@\n-// Copyright 2018-2026 the Deno authors. MIT license.\n-\n-use std::io::BufRead;\n-use std::process::ChildStderr;\n-use std::time::Duration;\n-\n-use anyhow::Error as AnyError;\n-use anyhow::anyhow;\n-use bytes::Bytes;\n-use fa...
2026-01-13T15:59:04
golang/go
07b10e97d6552e16534aae51f140771a601ef385
e96094402d55b6a104b642ce2adc76d3753843d9
cmd/go/internal/modcmd: inject modfetch.Fetcher_ into DownloadModule This commit continues the injection of the global Fetcher_ variable into the various function calls that make use of it. The purpose is to prepare for the eventual removal of the global Fetcher_ variable and eliminate global state within the modfetc...
[ { "path": "src/cmd/go/internal/modcmd/download.go", "patch": "@@ -366,25 +366,25 @@ func runDownload(ctx context.Context, cmd *base.Command, args []string) {\n // leaving the results (including any error) in m itself.\n func DownloadModule(ctx context.Context, m *ModuleJSON) error {\n \tvar err error\n-\t_,...
2025-11-24T21:53:11
mrdoob/three.js
f3f3ed345a573df06543863afec2446b52568593
89680a5a9f7cd61a9dfb9abf96627a6217e83a80
Examples: fix minor errors (#30798) Co-authored-by: Samuel Rigaud <rigaud@gmail.com>
[ { "path": "examples/webgl_geometry_extrude_shapes.html", "patch": "@@ -43,7 +43,6 @@\n \t\t\t\tinfo.style.width = '100%';\n \t\t\t\tinfo.style.textAlign = 'center';\n \t\t\t\tinfo.style.color = '#fff';\n-\t\t\t\tinfo.style.link = '#f80';\n \t\t\t\tinfo.innerHTML = '<a href=\"https://threejs.org\" target=\"_...
2025-03-26T08:30:41
denoland/deno
06e4a27450d8c5e5f6a3b1a44ce676aff88122f6
651a868d9adaeae8314a4e34f44f80aadba25a00
fix: allow multiple --allow-all args (#31833) Currently passing multiple `--allow-all` (or `-A`) flags causes a crash, but due to historic reasons some tools like VSCode, unconditionally added `--allow-all` argument when running a debugger. This commit changes flag parsing so that `deno` accepts `--allow-all` multiple...
[ { "path": "cli/args/flags.rs", "patch": "@@ -4840,8 +4840,11 @@ fn allow_all_arg() -> Arg {\n .conflicts_with(\"allow-ffi\")\n .conflicts_with(\"allow-import\")\n .conflicts_with(\"permission-set\")\n- .action(ArgAction::SetTrue)\n .help(\"Allow all permissions\")\n+ // So situations l...
2026-01-13T14:52:54
tensorflow/tensorflow
73e312fd04c73bf20fa92ad0ebf2ec1a4c6ffb4d
8bff1c861908509ec740cbdffc40ab2a99a32346
PR #37064: [ROCm] Fix paralle gpu execute script to support running tests on a machine … Imported from GitHub PR https://github.com/openxla/xla/pull/37064 📝 Summary of Changes Support test execution on a machine without GPU for parallel_gpu_execute script 🎯 Justification This change is required mostly for rbe test...
[ { "path": "third_party/xla/build_tools/rocm/parallel_gpu_execute.sh", "patch": "@@ -25,6 +25,14 @@ ROCMINFO=$(find \"external/local_config_rocm/rocm/rocm_dist/\" -name \"rocminfo\" -p\n TF_GPU_COUNT=$($ROCMINFO | grep \"Name: *gfx*\" | wc -l)\n TF_TESTS_PER_GPU=${TF_TESTS_PER_GPU:-8}\n \n+# There are certai...
2026-02-05T21:22:52
golang/go
272df5f6ba94018dac2b7d384e92115b795fe241
1768cb40b838a36f9bdcbe5381f2e086483f22f5
crypto/internal/fips140/aes/gcm: add more GCM nonce modes First, this adds a GCM mode for QUIC, and a generic TLS 1.3/QUIC-like XOR'd counter mode. QUIC constructs nonces exactly like TLS 1.3, but the counter does not reset to zero on a key update, so the mask must be provided explicitly (or we will panic well before ...
[ { "path": "src/crypto/cipher/gcm_fips140v2.0_test.go", "patch": "@@ -0,0 +1,91 @@\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 !fips140v1.0\n+\n+package cipher_test\n+\n+im...
2025-11-24T12:35:15
mrdoob/three.js
8adc1d229484b1990827db79098862a18ae44485
30c4024e5b2515bd35bb5dc949be86104b5c58b5
LDrawLoader: fix error message (#30801) Co-authored-by: Samuel Rigaud <rigaud@gmail.com>
[ { "path": "examples/jsm/loaders/LDrawLoader.js", "patch": "@@ -2261,7 +2261,7 @@ class LDrawLoader extends Loader {\n \n \t\t\t\t\t\tif ( ! parseLuminance( lineParser.getToken() ) ) {\n \n-\t\t\t\t\t\t\tthrow new Error( 'LDrawLoader: Invalid luminance value in material definition' + LineParser.getLineNumber...
2025-03-25T22:20:28
denoland/deno
210b309d2537ea0690755648ba132f58118fcc0c
67ab6beddb674f01773f75837411befce49b8918
fix(ext/web): handle empty TextDecoder input when stream is true (#31691) for: https://github.com/denoland/deno/issues/31605#issuecomment-3677640653 fixes the issue where TextDecoder with stream: true and an empty chunk would return incorrect results. It resolves the chunking problem for legacy encodings like big5, ...
[ { "path": "ext/web/08_text_encoding.js", "patch": "@@ -119,6 +119,10 @@ class TextDecoder {\n stream = options.stream;\n }\n \n+ if (stream && input.length === 0) {\n+ return \"\";\n+ }\n+\n try {\n /** @type {ArrayBufferLike} */\n let buffer = input;", "additions": ...
2026-01-12T10:15:52
kubernetes/kubernetes
2a0916850a0030eb138a3090cce45c22577a8e9b
0d4d8a0cb23ee1ea71e312351eb312ce19541f05
Fix typo in an if in TestContainerMapCloneUnshared
[ { "path": "pkg/kubelet/cm/containermap/container_map_test.go", "patch": "@@ -52,7 +52,7 @@ func TestContainerMapCloneUnshared(t *testing.T) {\n \t// check the original copy didn't change\n \t// early sanity check, random ID, no special meaning\n \tpodUIDRedo, containerNameRedo, err2 := cm.GetContainerRef(\"...
2026-01-30T18:01:50
swiftlang/swift
4816697b90decf28ade4ebd9f7e2d56e8fd52e67
683795b5134c05ee952b5b632d484cdbd95bc7c9
Sema: Improve error for matching non-optional against optional pattern
[ { "path": "include/swift/AST/DiagnosticsSema.def", "patch": "@@ -5531,7 +5531,8 @@ ERROR(tuple_pattern_label_mismatch,none,\n ERROR(enum_element_pattern_member_not_found,none,\n \"enum case %0 not found in type %1\", (DeclNameRef, Type))\n ERROR(optional_element_pattern_not_valid_type,none,\n- \"...
2026-02-25T23:23:58
golang/go
1768cb40b838a36f9bdcbe5381f2e086483f22f5
a9093067ee0fda40421bd1d4fad893dfa6c99fd5
crypto/tls: add SecP256r1/SecP384r1MLKEM1024 hybrid post-quantum key exchanges Fixes #71206 Change-Id: If3cf75261c56828b87ae6805bd2913f56a6a6964 Reviewed-on: https://go-review.googlesource.com/c/go/+/722140 Auto-Submit: Filippo Valsorda <filippo@golang.org> Reviewed-by: Cherry Mui <cherryyz@google.com> Reviewed-by: R...
[ { "path": "api/next/71206.txt", "patch": "@@ -0,0 +1,4 @@\n+pkg crypto/tls, const SecP256r1MLKEM768 = 4587 #71206\n+pkg crypto/tls, const SecP256r1MLKEM768 CurveID #71206\n+pkg crypto/tls, const SecP384r1MLKEM1024 = 4589 #71206\n+pkg crypto/tls, const SecP384r1MLKEM1024 CurveID #71206", "additions": 4, ...
2025-11-19T16:32:42
mrdoob/three.js
30c4024e5b2515bd35bb5dc949be86104b5c58b5
35b0fbc461520006769514eece8c3b371a79257c
TSL: Add `debug()` (#30797) * introduce `debug()` * cleanup * add debug
[ { "path": "src/Three.TSL.js", "patch": "@@ -129,6 +129,7 @@ export const cubeTexture = TSL.cubeTexture;\n export const dFdx = TSL.dFdx;\n export const dFdy = TSL.dFdy;\n export const dashSize = TSL.dashSize;\n+export const debug = TSL.debug;\n export const defaultBuildStages = TSL.defaultBuildStages;\n expo...
2025-03-25T19:50:01
tensorflow/tensorflow
8bff1c861908509ec740cbdffc40ab2a99a32346
21595e0c5bb1618fb14083ecbb242b57728b2c66
PR #37179: [xla:gpu] Add multicast memory to CollectiveMemory Imported from GitHub PR https://github.com/openxla/xla/pull/37179 In addition to `SymmetricMemory` add support for multicast memory to `CollectiveMemory` and `CollectiveMemoryRequests`. This is an optimized version of existing `CollectiveMultimem` as it al...
[ { "path": "third_party/xla/xla/backends/gpu/runtime/BUILD", "patch": "@@ -2183,16 +2183,24 @@ cc_library(\n \"//xla/core/collectives:rank_id\",\n \"//xla/core/collectives:symmetric_memory\",\n \"//xla/service:buffer_assignment\",\n+ \"//xla/service:rendezvous\",\n \"//...
2026-02-05T20:35:08
denoland/deno
67ab6beddb674f01773f75837411befce49b8918
466ab1212c7b838bea154d23b2ed8711669770f9
fix(ext/fetch): read file urls via vfs (#31814)
[ { "path": "Cargo.lock", "patch": "@@ -2060,6 +2060,7 @@ dependencies = [\n \"deno_core\",\n \"deno_error\",\n \"deno_fs\",\n+ \"deno_io\",\n \"deno_path_util\",\n \"deno_permissions\",\n \"deno_tls\",\n@@ -2083,7 +2084,6 @@ dependencies = [\n \"tokio\",\n \"tokio-rustls\",\n \"tokio-socks\",\n- \"t...
2026-01-12T01:16:12
swiftlang/swift
e09363644d7dbaebf2a6c818f0f7f0b044222f96
e881b49460a504add66cc873d0340d6d98e89a2d
Fix generic isolated deinit back-deploy substitutions Use an empty substitution map when applying the non-generic deinit-on-executor helper from a generic isolated deinitializer, and add a regression test covering the -O crash. Co-authored-by: Codex <noreply@openai.com>
[ { "path": "lib/SILGen/SILGenDestructor.cpp", "patch": "@@ -429,8 +429,8 @@ void SILGenFunction::emitIsolatingDestructor(DestructorDecl *dd) {\n B.createIntegerLiteral(loc, wordTy, 0);\n \n // Schedule isolated execution\n- B.createApply(loc, swiftDeinitOnExecutorFunc,\n- getF...
2026-02-25T20:18:11
mrdoob/three.js
b36d77dc1c529a12e9fa515b066dc81d325c4c68
1ff22688cb6e80a135c3c91458d3d203fada4e85
Docs: fix types (#30791) Co-authored-by: Samuel Rigaud <rigaud@gmail.com>
[ { "path": "examples/jsm/lines/LineGeometry.js", "patch": "@@ -43,7 +43,7 @@ class LineGeometry extends LineSegmentsGeometry {\n \t/**\n \t * Sets the given line positions for this geometry.\n \t *\n-\t * @param {Float32|Array} array - The position data to set.\n+\t * @param {Float32Array|Array<number>} arra...
2025-03-25T17:05:35
golang/go
86cd9b5c905d29b18ddc3b93dff60e12143cc1c8
1265ebfe274c31713bd5b72f570b36dbf0005e63
[dev.simd] simd, cmd/compile: add float -> int conversions This CL also fixed some documentation errors in existing APIs. Go defaults MXCSR to mask exceptions, the documentation is based on this fact. Change-Id: I745083b82b4bef93126a4b4e41f8698956963704 Reviewed-on: https://go-review.googlesource.com/c/go/+/724320 L...
[ { "path": "src/cmd/compile/internal/amd64/simdssa.go", "patch": "@@ -45,9 +45,25 @@ func ssaGenSIMDValue(s *ssagen.State, v *ssa.Value) bool {\n \t\tssa.OpAMD64VCVTTPS2DQ128,\n \t\tssa.OpAMD64VCVTTPS2DQ256,\n \t\tssa.OpAMD64VCVTTPS2DQ512,\n-\t\tssa.OpAMD64VCVTPS2UDQ128,\n-\t\tssa.OpAMD64VCVTPS2UDQ256,\n-\t\...
2025-11-25T17:27:23
tensorflow/tensorflow
21595e0c5bb1618fb14083ecbb242b57728b2c66
cfb56f67f27874b60f52f4b5183e5c5829ef11c6
PR #37300: Patch brotlin and riegel to make layyering check work in OSS Imported from GitHub PR https://github.com/openxla/xla/pull/37300 `--features=layering_check` works again in OSS with this fix. This is a significant productivity boost for OSS contributors as it gives compiler time errors for missing dependenci...
[ { "path": "third_party/xla/third_party/brotli/layering_check.patch", "patch": "@@ -0,0 +1,36 @@\n+diff --git a/BUILD.bazel b/BUILD.bazel\n+index 34e4a54..a8ea978 100644\n+--- a/BUILD.bazel\n++++ b/BUILD.bazel\n+@@ -110,6 +110,7 @@ cc_library(\n+ name = \"brotli_inc\",\n+ hdrs = [\":public_headers\"]...
2026-02-05T20:29:20
denoland/deno
466ab1212c7b838bea154d23b2ed8711669770f9
ac0aa340f17438884acd50477a415ceb7937dd72
fix(ext/node): `DatabaseSync` garbage collection invalidating associated resources (#31737)
[ { "path": "ext/node/ops/sqlite/database.rs", "patch": "@@ -745,7 +745,7 @@ impl DatabaseSync {\n \n Ok(StatementSync {\n inner: stmt_cell,\n- db: Rc::downgrade(&self.conn),\n+ db: self.conn.clone(),\n statements: Rc::clone(&self.statements),\n ignore_next_sqlite_error: Rc::cl...
2026-01-10T04:53:49
mrdoob/three.js
1ff22688cb6e80a135c3c91458d3d203fada4e85
84adf2a22d9cefff5fe5fb89233a564c97c28e77
TSL: Fix `mod()` negative values (#30796)
[ { "path": "src/nodes/math/OperatorNode.js", "patch": "@@ -359,15 +359,13 @@ class OperatorNode extends TempNode {\n \n \t\t\t} else if ( op === '%' ) {\n \n-\t\t\t\tif ( isGLSL && builder.isInteger( typeB ) === false ) {\n+\t\t\t\tif ( builder.isInteger( typeB ) ) {\n \n-\t\t\t\t\treturn builder.format( `${...
2025-03-25T16:08:16
golang/go
6954be0baacd0f05edfd3015cc3ecfbf237b3967
8d6d14f5d68c6011eb0ae1c9fac6857475aae7a8
internal/strconv: delete ftoaryu CL 700075 made this dead code. Benchmarks below for CL 700075, testing Dragonbox vs the old Ryu being deleted. The "Fixed" benchmarks are unchanged, which gives a sense of the noise level. benchmark \ host linux-amd64 s7 linux-arm64 local linux-386 s7:GOA...
[ { "path": "src/internal/strconv/ftoaryu.go", "patch": "@@ -1,307 +0,0 @@\n-// Copyright 2021 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 strconv\n-\n-import \"math/bits\"\n-\n-// binary to decim...
2025-11-24T19:03:34
denoland/deno
b6594a790986aa4518558f8d50667bddb4801378
d63261e57aff4686d0e977af76b30435ec122b2e
fix(ext/node): emit deprecation warning for SlowBuffer (#31772) Adds the DEP0030 deprecation warning when SlowBuffer() is called, matching Node.js behavior. This fixes the node_compat test parallel/test-buffer-slow.js.
[ { "path": "ext/node/polyfills/internal/buffer.mjs", "patch": "@@ -153,10 +153,13 @@ export const constants = {\n };\n \n let bufferWarningAlreadyEmitted = false;\n+let slowBufferWarningAlreadyEmitted = false;\n let nodeModulesCheckCounter = 0;\n const bufferWarning = \"Buffer() is deprecated due to security...
2026-01-10T02:14:56
tensorflow/tensorflow
a181b5023adafadc4e0aa06bc51e435684d0a2df
adb46302ddb3305cd5171618630a71c9bc577133
[XLA] Fix `scatter_deterministic_expanded` to truly support `s64` indices. PiperOrigin-RevId: 865973404
[ { "path": "third_party/xla/xla/service/BUILD", "patch": "@@ -2387,10 +2387,12 @@ xla_test(\n deps = [\n \":scatter_determinism_expander\",\n \"//xla:literal\",\n+ \"//xla:shape_util\",\n \"//xla/hlo/testlib:test\",\n \"//xla/tests:hlo_pjrt_test_base\",\n \"...
2026-02-05T17:02:18
mrdoob/three.js
20b9cbbba76e7f312120a5c611c4071093eaa7f8
b0805c2a0fd46c137d605ba098bc2b17d507b46f
TSL: Deprecated `modInt()` and minor fixes (#30790) * deprecated `modInt()` * improve warnings * updates * revision * fix declarations * revision * Update ComputeNode.js
[ { "path": "examples/jsm/tsl/math/Bayer.js", "patch": "@@ -26,6 +26,6 @@ export const bayer16 = Fn( ( [ uv ] ) => {\n \n \t}\n \n-\treturn textureLoad( bayer16Texture, ivec2( uv ).modInt( int( 16 ) ) );\n+\treturn textureLoad( bayer16Texture, ivec2( uv ).mod( int( 16 ) ) );\n \n } );", "additions": 1, ...
2025-03-24T21:28:56
kubernetes/kubernetes
36bcd43fca2fb24f110ad1b26f3ac1cd6e20f003
8946e86e3a9ee33c3cff30e74291305dac745fcf
ktesting: abort entire test suite on SIGINT When aborting an integration test with CTRL-C while it runs, the current test fails and etcd exits. But additional tests were still being started and the failed slowly because they couldn't connect to etcd. It's better to fail additional tests in ktesting.Init when the test...
[ { "path": "test/utils/ktesting/signals.go", "patch": "@@ -19,6 +19,7 @@ package ktesting\n import (\n \t\"context\"\n \t\"errors\"\n+\t\"fmt\"\n \t\"io\"\n \t\"os\"\n \t\"os/signal\"\n@@ -30,6 +31,13 @@ import (\n var (\n \t// defaultProgressReporter is inactive until init is called.\n \tdefaultProgressRepo...
2024-11-06T10:04:45
golang/go
8d6d14f5d68c6011eb0ae1c9fac6857475aae7a8
4ca048cc326bf310f873315dfb1e2644ec243299
compress/flate: move big non-pointer arrays to end of compressor The compressor type is fairly large: 656616 bytes on amd64. Before this patch, it had fields of slice and interface type near the end of the struct. As those types always contain pointers, the ptrBytes value in the type descriptor was quite large. That f...
[ { "path": "src/compress/flate/deflate.go", "patch": "@@ -89,16 +89,6 @@ type compressor struct {\n \tstep func(*compressor) // process window\n \tbestSpeed *deflateFast // Encoder for BestSpeed\n \n-\t// Input hash chains\n-\t// hashHead[hashValue] contains the largest inpu...
2025-09-29T04:38:53
swiftlang/swift
f8ad7ade3382a1b9d5ad90c36b73b4e0219b4dac
0ae20ed07b654cb5c418550fc449c5db49f00cca
stdlib: fix the ArraySlice liverange dependency Explicitly mark the dependency between the base pointer and the owner object. Otherwise the owner object could be destroyed too early. So far we got away with this because array semantic functions were not inlined in OSSA. Fixes a miscompile.
[ { "path": "stdlib/public/core/ArraySlice.swift", "patch": "@@ -236,7 +236,7 @@ extension ArraySlice {\n @inlinable\n @_semantics(\"array.get_element_address\")\n internal func _getElementAddress(_ index: Int) -> UnsafeMutablePointer<Element> {\n- return unsafe _buffer.subscriptBaseAddress + index\n...
2026-02-25T18:18:18