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
d63261e57aff4686d0e977af76b30435ec122b2e
cb0f39271a081e5426f1909d8eee9499db2fe56b
fix: add more details when panicking getting dir path from deno.json (#31805)
[ { "path": "libs/config/deno_json/mod.rs", "patch": "@@ -1433,11 +1433,15 @@ impl ConfigFile {\n }\n \n pub fn dir_path(&self) -> PathBuf {\n- url_to_file_path(&self.specifier)\n- .unwrap()\n- .parent()\n- .unwrap()\n- .to_path_buf()\n+ let path = url_to_file_path(&self.specifie...
2026-01-09T21:09:36
mrdoob/three.js
92eae7d4cd7f68f0c804abeccaddcccd828eef33
51856a60ad4e150ccd1d06c2f2b4c82599f77420
Docs: fix typos (#30776) * Docs: fix typos * Docs: fix typo * revert changes * revert change
[ { "path": "docs/api/en/audio/AudioAnalyser.html", "patch": "@@ -10,7 +10,7 @@\n \t\t<h1>[name]</h1>\n \n \t\t<p class=\"desc\">\n-\t\t\tCreate a AudioAnalyser object, which uses an\n+\t\t\tCreate an AudioAnalyser object, which uses an\n \t\t\t[link:https://developer.mozilla.org/en-US/docs/Web/API/AnalyserNo...
2025-03-22T09:09:10
tensorflow/tensorflow
4b03a2fe3ac25e22db98e5df5fdd91fa501287a4
0057034a9a7c3b1715f315a173ba8c5fc65c9c0e
PR #37289: [ROCm] Fix FloatNormalization to use gpu_compute_capability Imported from GitHub PR https://github.com/openxla/xla/pull/37289 Use gpu_compute_capability() instead of cuda_compute_capability() when constructing GpuFloatSupport for FloatNormalization in the autotuner. This could cause incorrect type support ...
[ { "path": "third_party/xla/xla/backends/gpu/autotuner/triton.cc", "patch": "@@ -219,7 +219,7 @@ absl::StatusOr<std::unique_ptr<HloModule>> TritonBackend::RunHloPasses(\n auto gpu_device_info = target_config().device_description;\n for (PrimitiveType type :\n {BF16, F8E5M2, F8E4M3FN, F8E4M3B11FNUZ...
2026-02-05T10:59:10
golang/go
113eb42efca8e14355f57c89cd38d31616728a27
6e5cfe94b0635e07466a8b8ebeacae4600d273d7
strconv: replace Ryu ftoa with Dragonbox Dragonbox is a faster ftoa algorithm that provides the same guarantees as Ryu: round-trip conversion, shortest length, and correct rounding. Dragonbox only supports shortest-precision conversion, so we continue to use Ryu-printf for fixed precision. The new implementation has ...
[ { "path": "src/internal/strconv/ftoa.go", "patch": "@@ -86,6 +86,7 @@ func genericFtoa(dst []byte, val float64, fmt byte, prec, bitSize int) []byte {\n \tneg := bits>>(flt.expbits+flt.mantbits) != 0\n \texp := int(bits>>flt.mantbits) & (1<<flt.expbits - 1)\n \tmant := bits & (uint64(1)<<flt.mantbits - 1)\n+...
2025-11-20T23:56:29
kubernetes/kubernetes
b18b7aa966122ae1a3d6217104387add71d7b19c
2182441bdd02ff372b0eb4e3ec8348ebed5ab632
modified exceptions to match the new KAL
[ { "path": "hack/golangci-hints.yaml", "patch": "@@ -219,6 +219,10 @@ linters:\n # OptionalOrRequired - Existing fields that are marked as both optional and required (based on standard optional vs kubebuilder:validation:Required) and should not be fixed.\n - text: \"field (PortStatus|IngressPortS...
2026-01-12T20:05:57
denoland/deno
024c73e1209aadf6c170af2be31d88dbb2f94da1
3865cd86d4e740249fad0391cddbac4e87ae242e
chore: fix node_compat_test workflow (#31798)
[ { "path": ".github/workflows/node_compat_test.yml", "patch": "@@ -22,6 +22,8 @@ jobs:\n uses: actions/checkout@v4\n with:\n submodules: true\n+ - name: Setup Rust\n+ uses: dsherret/rust-toolchain-file@v1\n - name: Setup Deno\n uses: denoland/setup-deno@v2\...
2026-01-09T19:12:40
mrdoob/three.js
51856a60ad4e150ccd1d06c2f2b4c82599f77420
4f03f16366ca4ca2a49d4f19b7ec2db2ac8b0736
TSL: Fix `equal()` inconsistent (#30777) * fix `equal()` inconsistent * cleanup
[ { "path": "src/nodes/core/NodeBuilder.js", "patch": "@@ -412,14 +412,6 @@ class NodeBuilder {\n \t\t */\n \t\tthis.buildStage = null;\n \n-\t\t/**\n-\t\t * Whether comparison in shader code are generated with methods or not.\n-\t\t *\n-\t\t * @type {boolean}\n-\t\t * @default false\n-\t\t */\n-\t\tthis.useC...
2025-03-22T04:01:21
swiftlang/swift
2aeaf2cd89c95adbcea550f48ee0fc048152a4fb
23c98fe5ca6e2026a1b4d9d2fd0e8820d26d1d0f
ASTPrinter: Filter inherited constructors from restricted modules Skip printing inherited constructors defined in modules that are not publicly imported. This prevents interface verification errors where types are used but their modules aren't in the import list. rdar://168101765
[ { "path": "lib/AST/ASTPrinter.cpp", "patch": "@@ -2447,6 +2447,58 @@ bool isNonSendableExtension(const Decl *D) {\n \n bool ShouldPrintChecker::shouldPrint(const Decl *D,\n const PrintOptions &Options) {\n+ // Skip constructors defined in Objective-C categories that are...
2026-02-23T23:41:02
tensorflow/tensorflow
c2d1c6a7a2b800ede6bbfcb5de7310c6256d2a86
b0cfdf05948272619979edd79da6dd02d2e32545
Remove conditional check for Enzyme comms opt in SPMD partitioner. The optimization for scalar broadcasts is now always applied, regardless of the `xla_enable_enzyme_comms_opt` debug option. ``` A = scalar B = broadcast(A), sharding=S0 C = foo(B) ``` When we process C, we may reshard B from S0 to a new sharding S1. ...
[ { "path": "third_party/xla/xla/service/spmd/spmd_partitioner.cc", "patch": "@@ -570,17 +570,15 @@ PartitionedHlo PartitionedHlo::ReshardNoCache(\n return PartitionedHlo(partitioned, base_shape_, state_);\n }\n \n- if (state_.module->config().debug_options().xla_enable_enzyme_comms_opt()) {\n- if (...
2026-02-05T05:12:25
golang/go
6e5cfe94b0635e07466a8b8ebeacae4600d273d7
2c7c62b97235c376205653200c2bd14ac03baa41
crypto: fix dead links and correct SHA-512 algorithm comment Change-Id: I71d63b0b78a9fc4895574f6df465e22c9585e77c Reviewed-on: https://go-review.googlesource.com/c/go/+/710196 Reviewed-by: Filippo Valsorda <filippo@golang.org> Reviewed-by: Roland Shoemaker <roland@golang.org> LUCI-TryBot-Result: Go LUCI <golang-scoped...
[ { "path": "src/crypto/internal/fips140/sha256/_asm/sha256block_amd64_avx2.go", "patch": "@@ -15,7 +15,7 @@ import (\n // To find it, surf to http://www.intel.com/p/en_US/embedded\n // and search for that title.\n // AVX2 version by Intel, same algorithm as code in Linux kernel:\n-// https://github.com/torva...
2025-10-08T18:13:56
mrdoob/three.js
ba6fa5aac42402a22ac4f6ae235f79022c5087d9
03cedd8b5fe046edfe45e1413cdcbce39930c1ce
NodeMaterial: Add support for `compute()` integrated into the material (#30768) * add `computeSkinning` and remove `skinningReference` * Node: Show warning for recursive code generate * fix `attributeName` undefined * add compute() support for NodeMaterial * update example using `computeSkinning` * cleanup
[ { "path": "examples/webgpu_skinning_points.html", "patch": "@@ -9,7 +9,8 @@\n \t<body>\n \n \t\t<div id=\"info\">\n-\t\t\t<a href=\"https://threejs.org\" target=\"_blank\" rel=\"noopener\">three.js</a> webgpu - skinning points\n+\t\t\t<a href=\"https://threejs.org\" target=\"_blank\" rel=\"noopener\">three....
2025-03-21T15:31:51
denoland/deno
5c9b552a5b921c02f862b59335242223307bbfc9
be13de0a0677913afc4e8523ff9f76bf177e6fbe
fix(runtime): handle `options` parameter in `Deno.errors.*` constructors (#31510) `Deno.errors.*` are just errors. However, before, a `Deno.errors.*` constructor wouldn't use the `options` parameter in the call to the constructor call to the parent class (`super()`). Now it does. In other words, the following code us...
[ { "path": "runtime/js/01_errors.js", "patch": "@@ -5,155 +5,155 @@ const { BadResource, Interrupted, NotCapable } = core;\n const { Error } = primordials;\n \n class NotFound extends Error {\n- constructor(msg) {\n- super(msg);\n+ constructor(msg, opts) {\n+ super(msg, opts);\n this.name = \"Not...
2026-01-09T16:48:37
kubernetes/kubernetes
2182441bdd02ff372b0eb4e3ec8348ebed5ab632
a7b940cde27e7d736d309b02573a62c213cfa4fd
enabled jsontags for kal and added exceptions enabled jsontags for kal and added exceptions
[ { "path": "hack/golangci.yaml", "patch": "@@ -230,6 +230,10 @@ linters:\n # OptionalOrRequired - Existing fields that are marked as both optional and required (based on standard optional vs kubebuilder:validation:Required) and should not be fixed.\n - text: \"field (PortStatus|IngressPortStatus)...
2025-10-23T09:28:31
swiftlang/swift
453048d976cb04e80cb4153838927f92684ec232
f998b7f6d30aaee8ca981fba7bad4a05d5f032d7
[SIL deserialization] Keep reading vtable entries while there are vtable entries The logic here would keep reading vtable entries so long as some other top-level record wasn't hit, then assert that the entry it found was a vtable entry. However, the list of "top-level record kinds" was ad hoc and doesn't regularly get...
[ { "path": "lib/Serialization/DeserializeSIL.cpp", "patch": "@@ -4485,12 +4485,7 @@ SILVTable *SILDeserializer::readVTable(DeclID VId) {\n \n std::vector<SILVTable::Entry> vtableEntries;\n // Another SIL_VTABLE record means the end of this VTable.\n- while (kind != SIL_VTABLE && kind != SIL_WITNESS_TABL...
2026-02-25T18:53:55
tensorflow/tensorflow
207ac18f9c4fd7f424a497a34d23f989bacd412c
5d162b0b0ee4b1bb07024e3ef496c214e3ad317f
Include parent message for shape errors when comparing collections of tensors in `assertAllClose`. PiperOrigin-RevId: 865629914
[ { "path": "tensorflow/python/framework/test_util.py", "patch": "@@ -3226,11 +3226,15 @@ def _assertArrayLikeAllClose(self, a, b, rtol=1e-6, atol=1e-6, msg=None):\n # implemented using inefficient recursion so prints can cause tests to\n # time out.\n if a.shape != b.shape and (b.ndim <= 3 or b.s...
2026-02-05T00:26:45
golang/go
657b331ff5da9b02bd98b489ff144a03c6651bae
bd9222b525b44d91941fc4d179b467103817d463
net/url: fix example of Values.Encode Calling url.Values.Encode generates a query string with the values sorted by key. However, in the example in the documentation this behaviour is not reflected. This change corrects this. Change-Id: Id95a5d79b57dc20c3bff1f0c6975c76dcd8412b1 Reviewed-on: https://go-review.googlesou...
[ { "path": "src/net/url/example_test.go", "patch": "@@ -58,11 +58,12 @@ func ExampleValues() {\n \tv.Add(\"friend\", \"Jess\")\n \tv.Add(\"friend\", \"Sarah\")\n \tv.Add(\"friend\", \"Zoe\")\n-\t// v.Encode() == \"name=Ava&friend=Jess&friend=Sarah&friend=Zoe\"\n+\tfmt.Println(v.Encode())\n \tfmt.Println(v.Ge...
2025-11-24T19:52:22
mrdoob/three.js
6b28459bc24b21e66c17252c07ece1e49dc04a55
a3d3041896ebd7a78b3702907ad6affcf8f0fdfd
ShadowMaskModel: Fix signatures. (#30764) * ShadowMaskModel: Fix signatures. * ShadowMaskModel: Use `mulAssign()`. * ShadowNodeMaterial: Fix transparent.
[ { "path": "src/materials/nodes/ShadowNodeMaterial.js", "patch": "@@ -45,6 +45,15 @@ class ShadowNodeMaterial extends NodeMaterial {\n \t\t */\n \t\tthis.lights = true;\n \n+\t\t/**\n+\t\t * Overwritten since shadow materials are transparent\n+\t\t * by default.\n+\t\t *\n+\t\t * @type {boolean}\n+\t\t * @de...
2025-03-20T18:38:25
denoland/deno
be13de0a0677913afc4e8523ff9f76bf177e6fbe
23da05af3744773ec26cc0975b4c9ef228d2c2f0
fix(ext/node): add tls.setDefaultCACertificates support (#31522) Closes #31208 The `tls.setDefaultCACertificates` API was missing in `node:tls`, causing `TypeError` in applications that rely on programmatically overriding the global CA store (e.g., for custom root CAs or testing environments).
[ { "path": "ext/node/lib.rs", "patch": "@@ -390,6 +390,7 @@ deno_core::extension!(deno_node,\n ops::process::op_node_process_setuid,\n ops::process::op_process_abort,\n ops::tls::op_get_root_certificates,\n+ ops::tls::op_set_default_ca_certificates,\n ops::tls::op_tls_peer_certificate,\n ...
2026-01-09T15:35:52
swiftlang/swift
50611a66fbf14cb1f965aa24077d109cc1fe272c
62b7fe0c6f19125c926cab3cdbe68d701782042f
Fix another test
[ { "path": "test/embedded/concurrency-deleted-method.swift", "patch": "@@ -38,7 +38,7 @@ actor MyActor {\n }\n \n // CHECK-IR: @swift_deletedAsyncMethodErrorTu =\n-// CHECK-IR: @\"$e4main7MyActorCN\" = constant <{ ptr, ptr, ptr, ptr, ptr, ptr, ptr, ptr, ptr }> <{\n+// CHECK-IR: @\"$e4main7MyAc...
2026-02-25T17:58:56
golang/go
bd9222b525b44d91941fc4d179b467103817d463
e3088d6eb8ff0d63edc3452cbed827cb67231182
crypto/sha3: reduce cSHAKE allocations Consider a hypothetical SumCSHAKE256 function: func SumCSHAKE256(N, S, data []byte, length int) []byte { out := make([]byte, 64) return sumCSHAKE256(out, N, S, data, length) } func sumCSHAKE256(out, N, S, data []byte, length int) []byte { if len(out) < length { out ...
[ { "path": "src/crypto/internal/fips140/sha3/shake.go", "patch": "@@ -23,14 +23,14 @@ type SHAKE struct {\n \tinitBlock []byte\n }\n \n-func bytepad(data []byte, rate int) []byte {\n-\tout := make([]byte, 0, 9+len(data)+rate-1)\n-\tout = append(out, leftEncode(uint64(rate))...)\n-\tout = append(out, data...)...
2024-12-15T01:38:43
mrdoob/three.js
58d5c519b0b0870fd00b950471127ef521c5eea0
e6b3f2dabb8661754bec1a403c487a7d707bca23
Material: Add `allowOverride`. (#30753) * Material: Add `allowOverride`. * Scene: Fix typo.
[ { "path": "src/materials/Material.js", "patch": "@@ -427,6 +427,14 @@ class Material extends EventDispatcher {\n \t\t */\n \t\tthis.forceSinglePass = false;\n \n+\t\t/**\n+\t\t * Whether it's possible to override the material with {@link Scene#overrideMaterial} or not.\n+\t\t *\n+\t\t * @type {boolean}\n+\t...
2025-03-19T09:20:29
denoland/deno
23da05af3744773ec26cc0975b4c9ef228d2c2f0
8cd2dd38235ffb14e4c12043477e88c649721cc2
fix(ext/fetch): support ipv6 destination host with http and socks proxy (#31683) Alternative to #31514 with proper SOCKS support and tests. Closes #31504.
[ { "path": "ext/fetch/proxy.rs", "patch": "@@ -603,12 +603,14 @@ where\n \n if is_https {\n tunnel(&mut io, &orig_dst, user_agent, auth).await?;\n+ let host = orig_dst.host().unwrap();\n+ let host = host\n+ .strip_prefix('[')\n+ ...
2026-01-09T15:29:10
tensorflow/tensorflow
0704769731c60248634099cfc0b54e22d7b4e322
683f7e8cecc7e59001fc190505cf774dedbc3f3e
PR #37247: [xla:gpu] Clean up execution stream assignment Imported from GitHub PR https://github.com/openxla/xla/pull/37247 Simplify execution stream assignment in terms of execution scopes: 1. Async-start-like instructions start a new execution scope 2. Async-done-like instructions and en execution scope. Also fix...
[ { "path": "third_party/xla/xla/service/collective_opt_utils.cc", "patch": "@@ -26,6 +26,7 @@ limitations under the License.\n #include \"absl/container/flat_hash_map.h\"\n #include \"absl/log/check.h\"\n #include \"absl/log/log.h\"\n+#include \"xla/hlo/ir/hlo_casting_utils.h\"\n #include \"xla/hlo/ir/hlo_in...
2026-02-04T22:21:14
kubernetes/kubernetes
063caad801f30ad4584a8aed398b3ed826128692
1e67dbfefbb249836fe7d2f7016fffb50c05b38b
Fix unit tests
[ { "path": "pkg/controller/endpointslicemirroring/endpointslicemirroring_controller_test.go", "patch": "@@ -245,8 +245,8 @@ func TestSyncEndpoints(t *testing.T) {\n \t\t\t\t}\n \t\t\t}\n \n-\t\t\tlogger, _ := ktesting.NewTestContext(t)\n-\t\t\terr := esController.syncEndpoints(logger, fmt.Sprintf(\"%s/%s\", ...
2026-01-29T22:55:08
swiftlang/swift
62b7fe0c6f19125c926cab3cdbe68d701782042f
fa55d2367c6f6b2ab10fe58d99ba745ee06ef88b
Fix test verification
[ { "path": "test/embedded/linkage/weak_linkage_bug.swift", "patch": "@@ -23,6 +23,7 @@\n // REQUIRES: executable_test\n // REQUIRES: swift_feature_Embedded\n // REQUIRES: swift_feature_EmbeddedExistentials\n+// REQUIRES: swift_feature_CoroutineAccessors\n \n // CHECK: MyClass.foo\n ", "additions": 1, ...
2026-02-25T17:29:06
golang/go
e3088d6eb8ff0d63edc3452cbed827cb67231182
a5ebc6b67c1e397ab74abadf20a7f290cf28949e
crypto/hpke: expose crypto/internal/hpke Fixes #75300 Change-Id: I6a83e0d040dba3366819d2afff704f886a6a6964 Reviewed-on: https://go-review.googlesource.com/c/go/+/723560 Reviewed-by: Cherry Mui <cherryyz@google.com> Reviewed-by: Daniel McCarney <daniel@binaryparadox.net> Auto-Submit: Filippo Valsorda <filippo@golang.o...
[ { "path": "api/next/75300.txt", "patch": "@@ -10,3 +10,54 @@ pkg crypto/ecdh, type KeyExchanger interface, ECDH(*PublicKey) ([]uint8, error)\n pkg crypto/ecdh, type KeyExchanger interface, PublicKey() *PublicKey #75300\n pkg crypto/mlkem, method (*DecapsulationKey1024) Encapsulator() crypto.Encapsulator #75...
2025-11-22T22:03:14
mrdoob/three.js
6283ccab7fb3be8fc86086db96710c2c0df3a969
c47f61a3b3aa239d69171c6810647ca2d1e7d6f7
OperatorNode: Fix `notEqual()` redundant bool convertion (#30740)
[ { "path": "src/nodes/math/OperatorNode.js", "patch": "@@ -104,7 +104,7 @@ class OperatorNode extends TempNode {\n \n \t\t\treturn builder.getIntegerType( typeA );\n \n-\t\t} else if ( op === '!' || op === '==' || op === '&&' || op === '||' || op === '^^' ) {\n+\t\t} else if ( op === '!' || op === '==' || op...
2025-03-16T02:59:01
denoland/deno
8d47d7e24402c2ba1f50696e1293f8c7c056984c
7558cafe636c14d31adc5d3de2ecae4bdc6577ae
fix(ext/node): fix use-after-free in StatementSync JS iterator (#31770) Keep a reference of StatementSync alive to prevent GC from destroying statement handle while iterator is being used. Fixes https://github.com/denoland/deno/issues/31744
[ { "path": "ext/node/ops/sqlite/statement.rs", "patch": "@@ -692,6 +692,7 @@ impl StatementSync {\n RETURN = \"return\",\n DONE = \"done\",\n VALUE = \"value\",\n+ __STATEMENT_REF = \"__statement_ref\",\n }\n \n self.reset()?;\n@@ -797,8 +798,19 @@ impl StatementSync {\n le...
2026-01-08T10:29:58
tensorflow/tensorflow
7e509f5b5231ef1d8f739210a3fafb08c1dc5da2
53378209839c5ad7bf4c5c82e9b40b253b9ca438
PR #37157: [ROCm] Enable the xla-opt binary build Imported from GitHub PR https://github.com/openxla/xla/pull/37157 - Add visibility patch for Triton test libraries needed by AllPassesAndDialects - Fix RegisterTritonDialects.h include path Copybara import of the project: -- c42ad9d887063732f7965ff49c78ee2a5213abfd ...
[ { "path": "third_party/xla/third_party/triton/temporary/series.bzl", "patch": "@@ -14,5 +14,6 @@ those to this list.\n \"\"\"\n \n temporary_patch_list = [\n+ \"//third_party/triton:temporary/test_analysis_visibility.patch\",\n # Add new patches just above this line. Format is \"//third_party/triton:...
2026-02-04T18:19:04
golang/go
e8fdfeb72b0468b645f256bcaf46570f866a54fd
12d437c09a2ea871333547c8ac3ea536f433891b
reflect: add iterator equivalents for NumField, NumIn, NumOut and NumMethod The new methods are Type.Fields, Type.Methods, Type.Ins, Type.Outs, Value.Fields and Value.Methods. These methods have been introduced into the reflect package (as well as tests) replacing three-clause for loops where possible. Fixes #66631 ...
[ { "path": "api/next/66631.txt", "patch": "@@ -0,0 +1,6 @@\n+pkg reflect, type Type interface, Fields() iter.Seq[StructField] #66631\n+pkg reflect, type Type interface, Methods() iter.Seq[Method] #66631\n+pkg reflect, type Type interface, Ins() iter.Seq[Type] #66631\n+pkg reflect, type Type interface, Outs()...
2025-11-19T21:18:39
swiftlang/swift
3eebced351a225b5fdf727793d8c2d6c697ce374
3dc9fba08eb5686f6305ed1ae2526b3fdef8382d
[SILGen]: Emit ignored loads of uninhabited lvalues to address DI edge cases Previously we would crash on this pattern: ```swift let x: Never switch x {} ``` This appears to be due to the fact that the switch over the uninhabited value did not result in any instructions DI considers a use being produced. This change...
[ { "path": "lib/SILGen/SILGenExpr.cpp", "patch": "@@ -7709,6 +7709,19 @@ void SILGenFunction::emitIgnoredExpr(Expr *E) {\n if (auto *LE = dyn_cast<LoadExpr>(E)) {\n LValue lv = emitLValue(LE->getSubExpr(), SGFAccessKind::IgnoredRead);\n \n+ if (LE->getType()->isStructurallyUninhabited()) {\n+ /...
2025-11-07T14:54:15
denoland/deno
7558cafe636c14d31adc5d3de2ecae4bdc6577ae
6dea9ab9dcde9742374defb182a6ff664a963a0f
fix: update config schema for read permission to include ignore property (#31785)
[ { "path": "cli/schemas/config-file.v1.json", "patch": "@@ -66,7 +66,7 @@\n \"type\": \"boolean\",\n \"description\": \"Allow all permissions for the program to run unrestricted.\"\n },\n- \"read\": { \"$ref\": \"#/$defs/allowDenyPermissionConfigValue\" },\n+ \"read\...
2026-01-07T23:02:10
tensorflow/tensorflow
a8ef74657add734a33bf1bf03166a7ec17daaccc
f1d8c0590509837653ef72c6e6c55bec0581fdf3
Refactor autotuner_main to use DebugOptions. PiperOrigin-RevId: 865437961
[ { "path": "third_party/xla/xla/backends/gpu/autotuner/BUILD", "patch": "@@ -1045,9 +1045,11 @@ xla_cc_binary(\n \"//xla/service:platform_util\",\n \"//xla/service/gpu:alias_info\",\n \"//xla/service/gpu:gpu_compiler\",\n+ \"//xla/service/gpu/autotuning:autotuner_pass\",\n ...
2026-02-04T17:15:11
swiftlang/swift
60bdc75b08800e95375433c5096d7074d97d96d9
50f5ccc1fd4e924d7d8a25933269948a3a3e0965
[SILOptimizer] Fix wrong Integer overflow diagnostic type (#87412) When an integer literal overflows its target type, the diagnostic could incorrectly display a Builtin type (e.g. 'Builtin.Int64') instead of the user-facing type (e.g. 'UInt'). Resolves #83877
[ { "path": "lib/SILOptimizer/Utils/ConstantFolding.cpp", "patch": "@@ -862,8 +862,8 @@ constantFoldAndCheckIntegerConversions(BuiltinInst *BI,\n UserSrcTy = unaryArg->getType();\n UserDstTy = CE->getType();\n }\n- } else if (auto *ILE = Loc.getAsASTNode<IntegerLiteralExpr>()) {\n- ...
2026-02-25T05:35:48
denoland/deno
6dea9ab9dcde9742374defb182a6ff664a963a0f
39d71bef19e7d29d071d272d483c4e3e6c4ca10c
fix(task): preserve signal-based exit codes for child processes (#31789)
[ { "path": "Cargo.lock", "patch": "@@ -2918,17 +2918,16 @@ dependencies = [\n \n [[package]]\n name = \"deno_task_shell\"\n-version = \"0.26.0\"\n+version = \"0.26.2\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"8ec9c589f733da0f5dfdf475d44cd01e2087425839a55162538d9898e...
2026-01-07T21:35:06
golang/go
4fb7e083a868946db08db9ef3bc807e21c8fc961
31d373534e6b2582817585851f45b8af6386d023
crypto/tls: expose HelloRetryRequest state This commit adds fields to the ClientHelloInfo and ConnectionState structures to represent hello retry request state information. ClientHelloInfo gains a new HelloRetryRequest bool field that indicates if the client hello was sent in response to a TLS 1.3 hello retry request...
[ { "path": "api/next/74425.txt", "patch": "@@ -0,0 +1,2 @@\n+pkg crypto/tls, type ConnectionState struct, HelloRetryRequest bool #74425\n+pkg crypto/tls, type ClientHelloInfo struct, HelloRetryRequest bool #74425", "additions": 2, "deletions": 0, "language": "Plain Text" }, { "path": "doc...
2025-11-03T19:47:42
tensorflow/tensorflow
a32500123ea36535fac553b180837a30a62f9295
98c122b7cbb876782ad250517d51ef32901b3eef
PR #37081: Fix/generalize AR+Slice matching Imported from GitHub PR https://github.com/openxla/xla/pull/37081 📝 Summary of Changes Reduce scatter creator was missing some replacement opportunities. In my case there were (provably) no-op clamps that were making it think the multiplier and offset index were different....
[ { "path": "third_party/xla/xla/service/collective_opt_utils.cc", "patch": "@@ -15,11 +15,11 @@ limitations under the License.\n \n #include \"xla/service/collective_opt_utils.h\"\n \n+#include <algorithm>\n #include <cstdint>\n-#include <functional>\n+#include <limits>\n #include <optional>\n #include <util...
2026-02-04T15:01:57
denoland/deno
39d71bef19e7d29d071d272d483c4e3e6c4ca10c
162e9e483f2fe4e26ff3ab7ec8cb6ac0c773a061
fix(npm): deduplication pass for initially partially resolved graphs (#31787) * https://github.com/denoland/deno_npm/pull/130
[ { "path": "Cargo.lock", "patch": "@@ -2530,9 +2530,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_npm\"\n-version = \"0.42.2\"\n+version = \"0.42.3\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"7daa908c280b25d68ea59765144df488714716cc14a2dcafaa1ec3906d4abbbe\"...
2026-01-07T21:29:21
swiftlang/swift
cc7e4ab33a607603407eb11b3bff0e4c7a148c16
50f5ccc1fd4e924d7d8a25933269948a3a3e0965
Fix lifetime type checking for nonescaping closures A nonescaping closure that returns a ~Escapable result and has no @_lifetime annotation is assumed to depend on its closure context. This fixes overly strict type checking introduced by: commit e98a7a6bf8b Date: Fri Feb 6 02:09:25 2026 Merge pull requ...
[ { "path": "lib/AST/LifetimeDependence.cpp", "patch": "@@ -721,7 +721,8 @@ class LifetimeDependenceChecker {\n \n /// Perform lifetime dependence checks for a function declaration.\n std::optional<llvm::ArrayRef<LifetimeDependenceInfo>> checkFuncDecl() {\n- assert(nullptr != afd && (isa<FuncDecl>(afd)...
2026-02-24T02:03:32
mrdoob/three.js
0c6ff67cb69fb04468a498992ba82377b1427b84
d630eb8c0bba5674406686ad205326ba7fbd870d
fix up AA for WebXR and use multisample extension only when needed (#30724)
[ { "path": "src/renderers/common/XRManager.js", "patch": "@@ -551,6 +551,7 @@ class XRManager extends EventDispatcher {\n \t\tconst backend = renderer.backend;\n \n \t\tconst gl = renderer.getContext();\n+\t\tconst attributes = gl.getContextAttributes();\n \n \t\tthis._session = session;\n \n@@ -620,6 +621,7...
2025-03-12T09:10:49
golang/go
31d373534e6b2582817585851f45b8af6386d023
aa093eed830796b3ba498b04077d8ee2d6d428bf
doc: pre-announce removal of 1.23 and earlier crypto GODEBUGs For #75316 Change-Id: Ife391b8c3e7fd2fec0e53b296d47b4756a787001 Reviewed-on: https://go-review.googlesource.com/c/go/+/723100 Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gservicea...
[ { "path": "doc/godebug.md", "patch": "@@ -334,13 +334,15 @@ any effect.\n Go 1.23 changed the default TLS cipher suites used by clients and servers when\n not explicitly configured, removing 3DES cipher suites. The default can be reverted\n using the [`tls3des` setting](/pkg/crypto/tls/#Config.CipherSuites)...
2025-11-21T22:11:41
tensorflow/tensorflow
f1481210a3b0b5e2f859ce815b30f8d1f964c8da
010671b72554aeaf18b603b70083b4ccf8ef046a
PR #36553: [ROCm] Enable backends/gpu/autotuner unit tests on ROCm Imported from GitHub PR https://github.com/openxla/xla/pull/36553 📝 Summary of Changes Makes the following autotuner test targets platform-independent by removing direct dependencies on NVPTXCompiler and enables on ROCm where appropriate: custom_kern...
[ { "path": "third_party/xla/xla/backends/gpu/autotuner/BUILD", "patch": "@@ -394,9 +394,10 @@ xla_test(\n \"a100\",\n \"h100\",\n \"b200\",\n+ \"amdgpu_any\",\n ],\n tags = [\n- \"cuda-only\",\n+ \"gpu\",\n \"no_mac\",\n ],\n use_legacy_run...
2026-02-04T10:24:50
denoland/deno
162e9e483f2fe4e26ff3ab7ec8cb6ac0c773a061
014ba7950152d64c151064f5533e75c1a182622c
fix(webgpu): correctly expose `GPUCompilationInfo` & `GPUCompilationMessage` (#31780) Closes #28649
[ { "path": "cli/tsc/dts/lib.deno_webgpu.d.ts", "patch": "@@ -747,15 +747,17 @@ interface GPUPipelineLayoutDescriptor extends GPUObjectDescriptorBase {\n type GPUCompilationMessageType = \"error\" | \"warning\" | \"info\";\n \n /** @category GPU */\n-interface GPUCompilationMessage {\n+declare class GPUCompil...
2026-01-07T20:54:00
mrdoob/three.js
d630eb8c0bba5674406686ad205326ba7fbd870d
c423179854ea8b4bc13b1690f022be76848f476f
Docs: fix typos (#30721) Co-authored-by: Samuel Rigaud <srigaud@duodisplay.com>
[ { "path": "examples/jsm/loaders/GLTFLoader.js", "patch": "@@ -72,7 +72,7 @@ import { toTrianglesDrawMode } from '../utils/BufferGeometryUtils.js';\n *\n * [glTF]{@link https://www.khronos.org/gltf/} (GL Transmission Format) is an [open format specification]{@link https://github.com/KhronosGroup/glTF/tree/...
2025-03-11T21:09:35
swiftlang/swift
049b93dce077e004bebb391ea69ac0eac27a0c66
5aabf9662b1bdfc73070bd9097a1537c26151d67
Sema: Fix over-eager binding with optional object constraint If T has no subtypes, we have a constraint `$T0 conv T`, and another constraint `$T1 optional with object type $T0`, we must account for the possibility that $T0 is bound to `@lvalue T`, if $T1 may be bound to an lvalue.
[ { "path": "lib/Sema/CSBindings.cpp", "patch": "@@ -103,6 +103,7 @@ void BindingSet::computeLValueState() {\n case ConstraintKind::Disjunction:\n case ConstraintKind::ValueMember:\n case ConstraintKind::UnresolvedValueMember:\n+ case ConstraintKind::OptionalObject:\n LValueState = KnownL...
2026-02-18T19:39:37
mrdoob/three.js
c423179854ea8b4bc13b1690f022be76848f476f
aac0cb59fd48d20c77aa1d75c46f5b4c1ed5b61a
Docs: fix some types (#30723) Co-authored-by: Samuel Rigaud <srigaud@duodisplay.com>
[ { "path": "examples/jsm/helpers/ViewHelper.js", "patch": "@@ -181,7 +181,7 @@ class ViewHelper extends Object3D {\n \t\t * This method should be called when a click or pointer event\n \t\t * has happened in the app.\n \t\t *\n-\t\t * @param {Event} event - The event to process.\n+\t\t * @param {PointerEvent...
2025-03-11T21:08:40
denoland/deno
014ba7950152d64c151064f5533e75c1a182622c
dfb4e701bbe7e313c756628553c692f214cff41e
fix(cli/test): close Node HTTP connections before sanitizer check (#31782) Closes https://github.com/denoland/deno/issues/31777 Fixes false positive "leaking resources" errors when running tests that use Node.js HTTP/HTTPS client with connection pooling. - Add `closeIdleConnections()` to close HTTP Agent pooled conn...
[ { "path": "cli/tools/test/mod.rs", "patch": "@@ -1126,6 +1126,14 @@ async fn run_tests_for_worker_inner(\n continue;\n }\n \n+ // Close idle Node.js HTTP Agent connections to prevent cross-test\n+ // pollution and false positive resource leak detection from pooled\n+ // keepAlive connecti...
2026-01-07T20:45:11
tensorflow/tensorflow
010671b72554aeaf18b603b70083b4ccf8ef046a
b88d2457c9477b18538a22af164bfc447c5a3fd8
[XLA] Internal Migration of IndexingMap storage from MLIR::AffineMap to XLA::SymbolicMap This CL migrates the internal storage and core logic of IndexingMap to use the new XLA-native SymbolicMap and SymbolicExpr, fully replacing mlir::AffineMap. This is a foundational change that decouples XLA's indexing analysis from...
[ { "path": "third_party/xla/xla/hlo/analysis/BUILD", "patch": "@@ -608,6 +608,9 @@ cc_library(\n ],\n deps = [\n \":interval\",\n+ \":symbolic_expr\",\n+ \":symbolic_map\",\n+ \":symbolic_map_converter\",\n \"//xla:permutation_util\",\n \"//xla:shape_util\...
2026-02-04T10:08:19
swiftlang/swift
bea34b654fbef063b2b75a24d2c35ec6cbbe2a65
b823d090ad367757326464b53f9af40c59d9a640
Sema: Try to guess lvalue-ness of type variable in binding inference The result of this analysis will be used to rewrite 'subtypes of T' into 'exact @lvalue T', fixing a soundness hole.
[ { "path": "include/swift/Sema/CSBindings.h", "patch": "@@ -412,6 +412,16 @@ struct DenseMapInfo<swift::constraints::inference::PotentialBinding> {\n namespace swift {\n namespace constraints {\n namespace inference {\n+\n+enum class KnownLValueKind: uint8_t {\n+ /// Insufficient information to determine ye...
2026-02-11T17:53:22
mrdoob/three.js
a1358b4fa0822fe99498c11c1c24ff4a6e89f634
91213ea614b3e9824cf8fd50f9a23bb615fb3f04
LUTImageLoader: Harmonize ctor. (#30720) * LUTImageLoader: Harmonize ctor. * Update LUTImageLoader.js Fix typos.
[ { "path": "examples/jsm/loaders/LUTImageLoader.js", "patch": "@@ -23,22 +23,23 @@ export class LUTImageLoader extends Loader {\n \t/**\n \t * Constructs a new LUT loader.\n \t *\n-\t * @param {boolean} [flipVertical=false] - Whether to vertically flip the LUT or not.\n+\t * @param {LoadingManager} [manager]...
2025-03-11T13:00:10
denoland/deno
dfb4e701bbe7e313c756628553c692f214cff41e
df6daeeaa9528fbd619ec162c7e3081551e596f0
fix(tsgo): nil deref for exported symbols (#31786)
[ { "path": "cli/tsc/go/tsgo_version.rs", "patch": "@@ -23,15 +23,15 @@ impl Hashes {\n }\n }\n \n-pub const VERSION: &str = \"0.1.13\";\n+pub const VERSION: &str = \"0.1.14\";\n pub const DOWNLOAD_BASE_URL: &str =\n- \"https://github.com/denoland/typescript-go/releases/download/v0.1.13\";\n+ \"https://gi...
2026-01-07T19:50:23
kubernetes/kubernetes
afaa8c19fe2b11c764c62a17914f16b4bdea4fbb
9c0a9cb5383320953c948a7474566cc9dde5f70b
Update update-codegen.sh with sample-controller exception for openapi Signed-off-by: Maciej Szulik <soltysh@gmail.com>
[ { "path": "hack/update-codegen.sh", "patch": "@@ -113,7 +113,7 @@ fi\n # Some of the later codegens depend on the results of this, so it needs to come\n # first in the case of regenerating everything.\n function codegen::protobuf() {\n- if [[ -n \"${LINT:-}\" ]]; then ...
2026-01-15T14:30:48
tensorflow/tensorflow
a2207c16736197ba0b27877659f175bc41631ef7
e077ab8e444ad816372d2f5462c659b8781abe55
PR #36981: [xla:gpu] Fix comm split deadlocks Imported from GitHub PR https://github.com/openxla/xla/pull/36981 Fix deadlocks as a result of calling (or not calling!) communicator split APIs on different ranks 1. `participant_groups` (renamed to `device_groups`) is not a property of the `GpuClique` itself, it only m...
[ { "path": "third_party/xla/xla/backends/gpu/collectives/BUILD", "patch": "@@ -175,7 +175,6 @@ cc_library(\n \"@com_google_absl//absl/container:btree\",\n \"@com_google_absl//absl/container:flat_hash_map\",\n \"@com_google_absl//absl/container:flat_hash_set\",\n- \"@com_google_...
2026-02-04T09:11:22
swiftlang/swift
ccd0f5387aa7ae1cf545b013ad1c7c31107b5389
9d5bc0482ceb8548dc28d1b4a339ad4910be1e44
Sema: Separate AllowedBindingKind::Fallback from Exact These cases were using Exact incorrectly.
[ { "path": "include/swift/Sema/CSBindings.h", "patch": "@@ -57,7 +57,10 @@ enum class AllowedBindingKind : uint8_t {\n /// Supertypes of the specified type.\n Supertypes,\n /// Subtypes of the specified type.\n- Subtypes\n+ Subtypes,\n+ /// Special hack for `extension P where Self == S { ... }` memb...
2026-02-08T21:45:32
mrdoob/three.js
a94801e04ef5f95f3ac94bd06c9d0d531f06d1ca
8cae4d830f0223258cd827f9841d17174c150f80
WebGPUConstants: Fix name of RG11B10UFloat (#30717) Co-authored-by: Samuel Rigaud <srigaud@duodisplay.com>
[ { "path": "src/renderers/webgpu/utils/WebGPUConstants.js", "patch": "@@ -113,7 +113,7 @@ export const GPUTextureFormat = {\n \t// Packed 32-bit formats\n \tRGB9E5UFloat: 'rgb9e5ufloat',\n \tRGB10A2Unorm: 'rgb10a2unorm',\n-\tRG11B10uFloat: 'rgb10a2unorm',\n+\tRG11B10UFloat: 'rgb10a2unorm',\n \n \t// 64-bit f...
2025-03-10T21:59:37
golang/go
aa093eed830796b3ba498b04077d8ee2d6d428bf
1dc1505d4ad0d3a3172d90e16858697b0dca0ab7
crypto/fips140: add Version Fixes #75301 Change-Id: If953b4382499570d5437491036f91cbe4fec7c01 Reviewed-on: https://go-review.googlesource.com/c/go/+/723101 Reviewed-by: Roland Shoemaker <roland@golang.org> Reviewed-by: Filippo Valsorda <filippo@golang.org> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accou...
[ { "path": "api/next/75301.txt", "patch": "@@ -0,0 +1 @@\n+pkg crypto/fips140, func Version() string #75301", "additions": 1, "deletions": 0, "language": "Plain Text" }, { "path": "doc/next/6-stdlib/99-minor/crypto/fips140/75301.md", "patch": "@@ -0,0 +1 @@\n+[Version] returns the res...
2025-11-21T22:27:36
denoland/deno
cfceaa82d069dd152de3b2e46fc4a9c4b9e9c10e
ad4d0649b66c3871199890192e9b85499c657662
fix: queue dynamic imports for modules with pending TLA (#31670) When a module with Top-Level Await (TLA) is dynamically imported multiple times before the TLA resolves, subsequent imports would fail with "Cannot access 'default' before initialization". This happened because V8 sets module status to `Evaluated` immed...
[ { "path": "Cargo.lock", "patch": "@@ -1883,9 +1883,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_core\"\n-version = \"0.376.0\"\n+version = \"0.377.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"829ee94e76838e99951cc7b3ccd31f68a220687f52229c0d6e135ff29b22f6d...
2026-01-07T15:16:30
tensorflow/tensorflow
ac5633c4ff299e31ca8b73da0a37284b604c7594
edadaba314b37f73c458ae336335a2c9dc980014
[litert] Fix STABLEHLO_CASE export to handle captured values and optional arguments. In BuildSubGraph, map NoneType arguments to kTfLiteMigrationOptionalTensor (-1) to ensure optional inputs are correctly represented in subgraphs. PiperOrigin-RevId: 865131019
[ { "path": "tensorflow/compiler/mlir/lite/flatbuffer_export.cc", "patch": "@@ -3401,6 +3401,7 @@ std::optional<BufferOffset<tflite::SubGraph>> Translator::BuildSubGraph(\n const std::string& tensor_name) {\n // NoneType represents optional and may be skipped here.\n ...
2026-02-04T02:04:24
kubernetes/kubernetes
cbf051361f78ff15c6794551dbbbd767140fb727
b7355510ef13630fdf016f8c40cc412468402906
Fix formatting issues in container_manager_test.go
[ { "path": "pkg/kubelet/cm/container_manager_test.go", "patch": "@@ -20,6 +20,7 @@ package cm\n \n import (\n \t\"testing\"\n+\t\n \t\"github.com/stretchr/testify/require\"\n )\n \n@@ -74,7 +75,7 @@ func TestParsePercentage(t *testing.T) {\n \t\t\texpectErr: true,\n \t\t},\n \t}\n- \n+\t\n \tfor _, testCase...
2026-01-29T14:12:53
swiftlang/swift
d7ba0f1d51e39000360666364e1ff300414a34ec
c2cf86e644bae79e71ca544207c299dc9a87afef
Sema: Score unavailable Sendable conformances with SK_MissingSynthesizableConformance Instead of SK_Unavailable. This is so that test/Constraints/rdar139812024.swift will continue to pass with an upcoming change. The problem was that in this test, an unsound optimization meant that we would find a worse solution, by ...
[ { "path": "lib/Sema/CSSimplify.cpp", "patch": "@@ -8998,8 +8998,13 @@ ConstraintSystem::SolutionKind ConstraintSystem::simplifyConformsToConstraint(\n /// Record the given conformance as the result, adding any conditional\n /// requirements if necessary.\n auto recordConformance = [&](ProtocolConforma...
2026-02-05T20:36:34
mrdoob/three.js
3e13e53360a1a59faf0211a0dabe4ca6771cc5fd
43acb6e31a42ffc38dae889b23e068e7a36bfa5c
EXRLoader: Fix string comparison (#30709) Co-authored-by: Samuel Rigaud <srigaud@duodisplay.com>
[ { "path": "examples/jsm/loaders/EXRLoader.js", "patch": "@@ -2229,7 +2229,7 @@ class EXRLoader extends DataTextureLoader {\n \n \t\t\t\tconst attributeName = parseNullTerminatedString( buffer, offset );\n \n-\t\t\t\tif ( attributeName == 0 ) {\n+\t\t\t\tif ( attributeName === '' ) {\n \n \t\t\t\t\tkeepReadi...
2025-03-10T17:24:05
golang/go
6851795fb6cda61e2c8396c36da187a2bd87b29e
0921e1db83d3e67032999b5a2f54f5ede8ba39b5
runtime: add GODEBUG=tracebacklabels=1 to include pprof labels in tracebacks Copy LabelSet to an internal package as label.Set, and include (escaped) labels within goroutine stack dumps. Labels are added to the goroutine header as quoted key:value pairs, so the line may get long if there are a lot of labels. To hand...
[ { "path": "doc/godebug.md", "patch": "@@ -168,6 +168,12 @@ allows malformed hostnames containing colons outside of a bracketed IPv6 address\n The default `urlstrictcolons=1` rejects URLs such as `http://localhost:1:2` or `http://::1/`.\n Colons are permitted as part of a bracketed IPv6 address, such as `htt...
2025-05-23T20:04:08
denoland/deno
ad4d0649b66c3871199890192e9b85499c657662
5a5d63915cf8e78cd9abb757c849597010328931
chore: Enable windows-sys features in specific members (#31679) This change enables additional `windows-sys` features (beyond those declared in the workspace Cargo.toml) needed by each member. Fixes #31678
[ { "path": "ext/node/Cargo.toml", "patch": "@@ -108,6 +108,6 @@ errno = \"0.3.10\"\n nix = { workspace = true, features = [\"user\"] }\n \n [target.'cfg(windows)'.dependencies]\n-windows-sys.workspace = true\n+windows-sys = { workspace = true, features = [\"Win32_Networking_WinSock\"] }\n winapi = { workspac...
2026-01-07T15:13:58
mrdoob/three.js
4c5d1b5657605cfb334728f345389b2e66d28df1
ea8a13c3afea2b0d67dc39a7cc305af9c7300c48
SceneOptimizer: Fix wrong reference to _logDebugInfo (#30711) Co-authored-by: Samuel Rigaud <srigaud@duodisplay.com>
[ { "path": "examples/jsm/utils/SceneOptimizer.js", "patch": "@@ -346,7 +346,7 @@ class SceneOptimizer {\n \t/**\n \t * Removes the given array of meshes from the scene.\n \t *\n-\t * @param {Array<Mesh>} meshesToRemove - The meshes to remove.\n+\t * @param {Set<Mesh>} meshesToRemove - The meshes to remove.\n...
2025-03-10T17:21:17
golang/go
1a53ce9734c0b2a3e2a9814e75949ea77a978143
c6f882f6c58ed56fa4bd2d8256ec55d9992c3583
context: don't return the wrong error when Cause races cancellation Check to see if a context is canceled at all before checking for the cancellaion cause. If we can't find a cause, use the original error. Avoids a data race where we look for a cause, find none (because the context is not canceled), the context is ca...
[ { "path": "src/context/context.go", "patch": "@@ -286,23 +286,23 @@ func withCancel(parent Context) *cancelCtx {\n // Otherwise Cause(c) returns the same value as c.Err().\n // Cause returns nil if c has not been canceled yet.\n func Cause(c Context) error {\n+\terr := c.Err()\n+\tif err == nil {\n+\t\tretu...
2025-06-06T22:38:28
kubernetes/kubernetes
9072d47b75ace975a02fab3fb4bfb7a11e1d2734
c99976db2a386ed5b24e5bd3bf79afd55710ce63
e2e: Better error message, when no InternalIP was found. Signed-off-by: Thomas Güttler <thomas.guettler@syself.com>
[ { "path": "test/e2e/scheduling/predicates.go", "patch": "@@ -1267,6 +1267,9 @@ func getNodeHostIP(ctx context.Context, f *framework.Framework, nodeName string)\n \tnode, err := f.ClientSet.CoreV1().Nodes().Get(ctx, nodeName, metav1.GetOptions{})\n \tframework.ExpectNoError(err)\n \tips := e2enode.GetAddress...
2026-01-29T12:46:33
tensorflow/tensorflow
53deecd3ca5a95c5502a776080aca5486f1ec147
67b53bcdf6b1bbb7d6d7bce512040ef530fd8c2a
[XLA:MSA] Fix scheduling corner cases in MSA - * Fix incorrect start time for force evictions PiperOrigin-RevId: 865121291
[ { "path": "third_party/xla/xla/service/memory_space_assignment/algorithm.cc", "patch": "@@ -7017,10 +7017,14 @@ AllocationResult MsaAlgorithm::Evict(const AllocationRequest& request,\n \n if (force_evict) {\n VLOG(3) << \"Forcing evicting.\";\n+ int64_t inclusive_eviction_start_time = prev_allocati...
2026-02-04T01:39:00
swiftlang/swift
eed2316c561d883808b439562588c672bf327065
76dd7106f8a388ebc803a5e6c1ebc657dab4e32d
Sema: Fix unnecessary ) in determineBestBindings() debug output
[ { "path": "lib/Sema/CSBindings.cpp", "patch": "@@ -1379,7 +1379,7 @@ const BindingSet *ConstraintSystem::determineBestBindings() {\n \n const auto &bindings = node.getBindingSet();\n \n- if (isDebugMode() && bindings.hasViableBindings()) {\n+ if (bindings.hasViableBindings()) {\n if ...
2026-02-21T20:40:24
denoland/deno
5a5d63915cf8e78cd9abb757c849597010328931
4d747eafcc1e373fe2cb9d82e0ab4dc333357b48
docs(cli): add DENO_KV_DEFAULT_PATH and DENO_KV_PATH_PREFIX to help (#31720) Closes #31669
[ { "path": "cli/args/flags.rs", "patch": "@@ -1439,6 +1439,16 @@ static ENV_VARS: &[EnvVar] = &[\n description: \"Controls whether Deno.openKv() API should use disk based or in-memory\\ndatabase.\",\n example: None,\n },\n+ EnvVar {\n+ name: \"DENO_KV_DEFAULT_PATH\",\n+ description: \"Set th...
2026-01-07T15:10:13
mrdoob/three.js
a2b8200f20c4b59f40bf42e2b50391f9297bd87c
984b00dd86cf7948c629864dce654cf6bd9df235
AnalyticLightNode: fix call to setupShadowNode (#30713) Co-authored-by: Samuel Rigaud <srigaud@duodisplay.com>
[ { "path": "src/nodes/lighting/AnalyticLightNode.js", "patch": "@@ -180,7 +180,7 @@ class AnalyticLightNode extends LightingNode {\n \n \t\t\t} else {\n \n-\t\t\t\tshadowNode = this.setupShadowNode( builder );\n+\t\t\t\tshadowNode = this.setupShadowNode();\n \n \t\t\t}\n ", "additions": 1, "deletions...
2025-03-10T17:16:27
golang/go
c6f882f6c58ed56fa4bd2d8256ec55d9992c3583
97d5295f6fcbc4c24225096900c22773d6672cce
crypto/x509: add ExtKeyUsage.String and KeyUsage.String methods Fixes #56866 Change-Id: Icc8f067820f5d74e0d5073bce160429e6a6a6964 Reviewed-on: https://go-review.googlesource.com/c/go/+/723360 Reviewed-by: Daniel McCarney <daniel@binaryparadox.net> Reviewed-by: Cherry Mui <cherryyz@google.com> Auto-Submit: Filippo Val...
[ { "path": "api/next/56866.txt", "patch": "@@ -0,0 +1,2 @@\n+pkg crypto/x509, method (ExtKeyUsage) String() string #56866\n+pkg crypto/x509, method (KeyUsage) String() string #56866", "additions": 2, "deletions": 0, "language": "Plain Text" }, { "path": "doc/next/6-stdlib/99-minor/crypto/...
2025-11-22T15:26:24
tensorflow/tensorflow
28e31fbdebb666f8d39e1a273ba0a13612b140d8
5b60135d73885154fe491e48974401e79ad150eb
Fix pjrt_stream_executor_client_test in debug mode. PiperOrigin-RevId: 865019081
[ { "path": "third_party/xla/xla/pjrt/tracked_device_buffer.cc", "patch": "@@ -204,7 +204,11 @@ void TrackedDeviceBuffer::AddUsageEvent(BufferSequencingEventRef event,\n \n // If the event is 0, it means that the event is not recorded yet and the task\n // related to this event is deferred, so just add it...
2026-02-03T21:25:10
kubernetes/kubernetes
64140b838542ca7470ced477adc62cbd2726e093
6dfae1df46dc228b375b6e16b5a88b509db4c5e7
fuzz internal objects in versioned validation tests Fuzzing must be performed on the internal version of objects because custom fuzzing functions are typically registered for internal types. This ensures that all fields are properly initialized with random values before being converted to various API versions for vali...
[ { "path": "pkg/api/testing/validation.go", "patch": "@@ -31,6 +31,7 @@ import (\n \tutilfeature \"k8s.io/apiserver/pkg/util/feature\"\n \tfeaturegatetesting \"k8s.io/component-base/featuregate/testing\"\n \t\"k8s.io/kubernetes/pkg/api/legacyscheme\"\n+\t\"sigs.k8s.io/randfill\"\n )\n \n // ValidateFunc is a...
2026-01-29T10:29:30
denoland/deno
4d747eafcc1e373fe2cb9d82e0ab4dc333357b48
f47ad1f05a813a6fd8bc15dde979d23e3bdf6af8
fix(ext/node): use correct block sizes for HMAC algorithms (#31775) The HMAC implementation was hardcoded to use 64-byte blocks for most algorithms and 128-byte blocks only for sha512/sha384. This is incorrect for many algorithms like sha3-* variants and blake2 which have different block sizes. Add a lookup table wit...
[ { "path": "ext/node/polyfills/internal/crypto/hash.ts", "patch": "@@ -45,6 +45,7 @@ import {\n import LazyTransform from \"ext:deno_node/internal/streams/lazy_transform.js\";\n import {\n getDefaultEncoding,\n+ getHashBlockSize,\n toBuf,\n } from \"ext:deno_node/internal/crypto/util.ts\";\n import {\n@...
2026-01-06T19:49:57
mrdoob/three.js
04a61dc234877ab4f68b4b0b75d869c90c77f1ab
c6465e399c777452093dc356c1c9b92682d99848
AsciiEffect: fix types (#30710) Co-authored-by: Samuel Rigaud <srigaud@duodisplay.com>
[ { "path": "examples/jsm/effects/AsciiEffect.js", "patch": "@@ -101,8 +101,8 @@ class AsciiEffect {\n \n \t\t\t}\n \n-\t\t\toAscii.cellSpacing = 0;\n-\t\t\toAscii.cellPadding = 0;\n+\t\t\toAscii.cellSpacing = '0';\n+\t\t\toAscii.cellPadding = '0';\n \n \t\t\tconst oStyle = oAscii.style;\n \t\t\toStyle.whiteS...
2025-03-10T17:14:36
golang/go
62cd044a79b9f2ba889bca59b3b12400dc41dd85
f1e376f342af82d6f5bdba23cdc5c35b5bfd9064
cmd/compile: add cases for StringLen to prove Tricky index-offset logic had been added for slices, but not for strings. This fixes that, and also adds tests for same behavior in string/slice cases, and adds a new test for code in prove that had been added but not explicitly tested. Fixes #76270. Change-Id: Ibd92b89...
[ { "path": "src/cmd/compile/internal/ssa/prove.go", "patch": "@@ -2040,14 +2040,14 @@ func (ft *factsTable) flowLimit(v *Value) {\n //\n // slicecap - index >= slicelen - index >= K\n //\n-// Note that \"index\" is not useed for indexing in this pattern, but\n+// Note that \"index\" is not used for indexing ...
2025-11-24T20:00:11
denoland/deno
0490c42da4f78f2ca75bae608ffdc654b3e3095b
202cb32f8022ba924b778a0d60e658ebc529985b
fix(ext/node): handle errors in sqlite session filter callback and ad… (#31756) Closes https://github.com/denoland/deno/issues/31635 Fixes two issues in the `node:sqlite` module: 1. The filter handler in `applyChangeset` was panicking when the JavaScript filter callback threw an exception. The code used `.unwrap()` ...
[ { "path": "ext/node/ops/sqlite/database.rs", "patch": "@@ -963,6 +963,7 @@ impl DatabaseSync {\n scope: &'a mut v8::PinScope<'b, 'c>,\n confict: Option<v8::Local<'b, v8::Function>>,\n filter: Option<v8::Local<'b, v8::Function>>,\n+ has_caught: bool,\n }\n \n // Conflict handle...
2026-01-05T14:04:15
tensorflow/tensorflow
c952c44a707892e3bd8e996de2d90a24cac14860
9a5e101be9886e7876c736aafe0bbbafefac11fc
Return an error Future if GetReadyFuture is called on a deleted PjRtCApiBuffer. PiperOrigin-RevId: 864984968
[ { "path": "third_party/xla/xla/pjrt/c_api_client/pjrt_c_api_client.cc", "patch": "@@ -3324,6 +3324,10 @@ void PjRtCApiBuffer::MakePromiseTrackEvent() {\n }\n \n Future<> PjRtCApiBuffer::GetReadyFuture() {\n+ if (IsDeleted()) {\n+ return Future<>(InvalidArgument(\n+ \"GetReadyFuture() called on de...
2026-02-03T20:02:28
kubernetes/kubernetes
0cab2771834851dc32f166071822d741f379a44d
cb077823fb053eb3dff39334f5d9d44d7512477e
Graduate DeclarativeValidation feature gate to GA This change graduates the 'DeclarativeValidation' feature gate to GA in v1.36. The feature gate is now locked to 'true' by default. Changes: - Updated 'DeclarativeValidation' feature gate to GA in 'pkg/features/kube_features.go' and 'staging/src/k8s.io/apiserver/pkg/f...
[ { "path": "pkg/api/testing/validation.go", "patch": "@@ -27,6 +27,7 @@ import (\n \t\"k8s.io/apimachinery/pkg/runtime/schema\"\n \truntimetest \"k8s.io/apimachinery/pkg/runtime/testing\"\n \t\"k8s.io/apimachinery/pkg/util/validation/field\"\n+\t\"k8s.io/apimachinery/pkg/util/version\"\n \t\"k8s.io/apiserver...
2026-01-23T20:55:04
mrdoob/three.js
c6465e399c777452093dc356c1c9b92682d99848
84029a1dfe21e0d7e947fcbd9ddcc3b7a3c5d8cf
WebGLRenderer: Fix reference to drawingBufferColorSpace (#30707) Co-authored-by: Samuel Rigaud <srigaud@duodisplay.com>
[ { "path": "src/renderers/WebGLRenderer.js", "patch": "@@ -3391,7 +3391,7 @@ class WebGLRenderer {\n \t\tthis._outputColorSpace = colorSpace;\n \n \t\tconst gl = this.getContext();\n-\t\tgl.drawingBufferColorspace = ColorManagement._getDrawingBufferColorSpace( colorSpace );\n+\t\tgl.drawingBufferColorSpace =...
2025-03-10T17:13:55
golang/go
f1e376f342af82d6f5bdba23cdc5c35b5bfd9064
7fbd141de506e331ef3f5910b505ece91a012e4a
cmd/go/internal/auth: fix typo Change-Id: Ic113d59144aa2d37c8988559fbc086f5c29c0b69 GitHub-Last-Rev: e2623be0a00464d9be845da53fb1a67520fc1716 GitHub-Pull-Request: golang/go#76397 Reviewed-on: https://go-review.googlesource.com/c/go/+/722861 Reviewed-by: Michael Matloob <matloob@google.com> Reviewed-by: Cherry Mui <che...
[ { "path": "src/cmd/go/internal/auth/userauth.go", "patch": "@@ -48,7 +48,7 @@ func runAuthCommand(command string, url string, res *http.Response) (map[string]\n // parseUserAuth parses the output from a GOAUTH command and\n // returns a mapping of prefix → http.Header without the leading \"https://\"\n // o...
2025-11-21T15:59:20
mrdoob/three.js
84029a1dfe21e0d7e947fcbd9ddcc3b7a3c5d8cf
ee28be26284c3371c3cf2d54fdaceb06e9301dec
USDZLoader: Fix Blob options (#30708) Co-authored-by: Samuel Rigaud <srigaud@duodisplay.com>
[ { "path": "examples/jsm/loaders/USDZLoader.js", "patch": "@@ -173,7 +173,7 @@ class USDZLoader extends Loader {\n \n \t\t\t\tif ( filename.endsWith( 'png' ) ) {\n \n-\t\t\t\t\tconst blob = new Blob( [ zip[ filename ] ], { type: { type: 'image/png' } } );\n+\t\t\t\t\tconst blob = new Blob( [ zip[ filename ] ...
2025-03-10T17:12:57
denoland/deno
202cb32f8022ba924b778a0d60e658ebc529985b
f99eb8ce89ca4091ae94182b740fc6c345c070d1
fix(node/crypto): integrate async_hooks for domain error handling (#31751) Closes https://github.com/denoland/deno/issues/31636 This PR adds: - `AsyncHook` in `domain.ts` with `init`/`before`/`after`/`destroy` callbacks to associate async operations with domains - `emitInit`/`emitBefore`/`emitAfter`/`emitDestroy` cal...
[ { "path": "ext/node/polyfills/domain.ts", "patch": "@@ -5,8 +5,10 @@\n \n import { primordials } from \"ext:core/mod.js\";\n import { ERR_UNHANDLED_ERROR } from \"ext:deno_node/internal/errors.ts\";\n+import { AsyncHook } from \"ext:deno_node/internal/async_hooks.ts\";\n const {\n ArrayPrototypeIndexOf,\n...
2026-01-05T14:04:06
golang/go
7fbd141de506e331ef3f5910b505ece91a012e4a
0bc192368ac603614dc3f240e751f539d91a1db2
runtime: use m.profStack in traceStack Turns out we spend a few percent of the trace event writing path in just zero-initializing the stack space for pcBuf. We don't need zero initialization, since we're going to write over whatever we actually use. Use m.profStack instead, which is already sized correctly. A side-ef...
[ { "path": "src/runtime/tracestack.go", "patch": "@@ -30,7 +30,7 @@ const (\n //\n // Avoid calling this function directly. Prefer traceEventWriter.stack.\n func traceStack(skip int, gp *g, tab *traceStackTable) uint64 {\n-\tvar pcBuf [tracev2.MaxFramesPerStack]uintptr\n+\tpcBuf := getg().m.profStack\n \n \t...
2025-11-19T23:42:06
mrdoob/three.js
f760c50d0b1486690f0d7ea5244be91ea8b5d33c
54f8b109ee8048adde6d8e54315c356206d1fad9
Attributes: Fix `null` check. (#30694)
[ { "path": "src/renderers/common/Attributes.js", "patch": "@@ -39,7 +39,7 @@ class Attributes extends DataMap {\n \n \t\tconst attributeData = super.delete( attribute );\n \n-\t\tif ( attributeData !== undefined ) {\n+\t\tif ( attributeData !== null ) {\n \n \t\t\tthis.backend.destroyAttribute( attribute );\...
2025-03-09T14:40:44
denoland/deno
090c7f3b276ce2a0598a44e67f8f51d6356d5c82
ded26474c0112b4b6817a1e5f8874ac97e088d8e
fix: deno cross compile for intel mac target (#31714) Do not attempt to codesign the final deno compile binary on non-macOS hosts. This restores earlier behavior of deno compile when binary is built for the intel mac target Fixes https://github.com/denoland/deno/issues/31698 Fixes https://github.com/denoland/deno/iss...
[ { "path": "Cargo.lock", "patch": "@@ -5812,9 +5812,9 @@ dependencies = [\n \n [[package]]\n name = \"libsui\"\n-version = \"0.12.5\"\n+version = \"0.12.6\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"2d68355a1ba8740fde49a5dbd4ba3e0f3f36dbd122a39f8a3e362e43107226ff\"\n...
2026-01-05T13:09:32
mrdoob/three.js
78a0f7eabd75d4cd90dd86a8201ce91e60c70b67
88c358bf5944d43ba3812c44abd2cd8f5cf8b4cc
PointerLockControls: Add `unadjustedMovement`option to `lock()`. (#30687) * Add unadjustedMovement option to PointerLockControls * Update PointerLockControls.js Clean up. * Update PointerLockControls.js Fix docs. * Update PointerLockControls.js Improve description. --------- Co-authored-by: Michael Herzog <mic...
[ { "path": "examples/jsm/controls/PointerLockControls.js", "patch": "@@ -198,10 +198,15 @@ class PointerLockControls extends Controls {\n \n \t/**\n \t * Activates the pointer lock.\n+\t * \n+\t * @param {boolean} [unadjustedMovement=false] - Disables OS-level adjustment for mouse acceleration, and accesses ...
2025-03-09T09:17:41
denoland/deno
7222e85d435b977de1ab810db067b86f29e6444f
e5b1487f7f6dc18b8ce8618ba3f8455f8379ca8b
fix(ext/websocket): prevent sending multiple close frames (#31747) Fixes https://github.com/denoland/deno/issues/21642
[ { "path": "Cargo.lock", "patch": "@@ -3975,7 +3975,7 @@ source = \"registry+https://github.com/rust-lang/crates.io-index\"\n checksum = \"27cea6e7f512d43b098939ff4d5a5d6fe3db07971e1d05176fe26c642d33f5b8\"\n dependencies = [\n \"getrandom 0.3.3\",\n- \"rand 0.9.1\",\n+ \"rand 0.9.2\",\n \"siphasher 1.0.1\"...
2026-01-02T18:09:39
tensorflow/tensorflow
486c7a943c28da85f5f21c6338417d0b17e5d489
21020a6775b4a2f6d106c27ba952bce2adf68bdd
Fix tf.clip_by_value / tf.minimum and tf.maximum in Windows to prevent macros conflict and use the standard libarary version. PiperOrigin-RevId: 864853635
[ { "path": "tensorflow/core/kernels/cwise_op_clip.cc", "patch": "@@ -82,7 +82,7 @@ struct UnaryClipFunc {\n UnaryClipFunc(const T& value_min, const T& value_max)\n : value_min(value_min), value_max(value_max) {}\n T operator()(const T& value) const {\n- return std::max(std::min(value, value_max)...
2026-02-03T14:43:38
kubernetes/kubernetes
e7de8ba85631d42bba7f9bd3c1e67b7582019d8f
4d212f7f472f9d0c11a47de9f84b5ee10bd32718
Prevent nil pointer exception in aggregated discovery Signed-off-by: Monis Khan <mok@microsoft.com>
[ { "path": "staging/src/k8s.io/apiserver/pkg/endpoints/discovery/aggregated/handler.go", "patch": "@@ -559,9 +559,13 @@ func writeDiscoveryResponse(\n \t\treturn\n \t}\n \tvar targetGV schema.GroupVersion\n-\tif mediaType.Convert == nil ||\n-\t\t(mediaType.Convert.GroupVersion() != apidiscoveryv2.SchemeGroup...
2026-01-26T20:33:16
mrdoob/three.js
88c358bf5944d43ba3812c44abd2cd8f5cf8b4cc
aec32f75f839d1a40fb662e07e250e31762dbc7b
Editor: Fix publish. (#30690)
[ { "path": "editor/js/Sidebar.Project.App.js", "patch": "@@ -139,6 +139,11 @@ function SidebarProjectApp( editor ) {\n \n \t\t\ttoZip[ 'js/app.js' ] = strToU8( content );\n \n+\t\t} );\n+\t\tloader.load( '../build/three.core.js', function ( content ) {\n+\n+\t\t\ttoZip[ 'js/three.core.js' ] = strToU8( conten...
2025-03-09T08:59:41
swiftlang/swift
aa31648209ab514a6a1399396f27711bb7498290
013675bee85c9c883112012e43a4edc0f7bc14d6
[flow-isolation] Add tests for mixed-isolation initializers. Add test coverage for flow isolation diagnostics in initializers where fields have different actor isolation annotations. The new tests cover: - Structs and classes annotated with @MainActor that contain fields with mixed isolation (@CustomActor, @MainAct...
[ { "path": "test/Concurrency/flow_isolation.swift", "patch": "@@ -1,5 +1,12 @@\n // RUN: %target-swift-frontend -strict-concurrency=complete -swift-version 5 -parse-as-library -emit-sil -verify %s\n \n+@globalActor\n+actor CustomActor {\n+ static let shared = CustomActor()\n+}\n+\n+@CustomActor func require...
2026-02-20T01:34:10
tensorflow/tensorflow
e811a0215d0b9d5ce0b119bc8aa5e04004417c8d
ec4d545df732bc9d3edf1b5c05e613029a4ef8cf
[XLA:CPU] Improve error message for mismatch in number of arguments for hlo_benchmark_runner. PiperOrigin-RevId: 864812558
[ { "path": "third_party/xla/xla/backends/cpu/benchmarks/hlo_benchmark_runner.cc", "patch": "@@ -26,6 +26,7 @@ limitations under the License.\n #include \"absl/container/inlined_vector.h\"\n #include \"absl/log/check.h\"\n #include \"absl/status/status.h\"\n+#include \"absl/strings/str_cat.h\"\n #include \"ab...
2026-02-03T12:31:07
denoland/deno
e5b1487f7f6dc18b8ce8618ba3f8455f8379ca8b
66c2ed6ed0c2c8a99388721dca8eca67b4ed5c7b
fix(webgpu): update wgpu to 28.0.0 (#31163)
[ { "path": "Cargo.lock", "patch": "@@ -96,7 +96,7 @@ dependencies = [\n \"cfg-if\",\n \"once_cell\",\n \"version_check\",\n- \"zerocopy\",\n+ \"zerocopy 0.7.32\",\n ]\n \n [[package]]\n@@ -717,18 +717,18 @@ dependencies = [\n \n [[package]]\n name = \"bytemuck\"\n-version = \"1.21.0\"\n+version = \"1.24.0...
2026-01-02T06:28:49
mrdoob/three.js
ddfa74b9e4135a19682d998fcd322bd7d4b78f2b
ce5f72a0f91d76bee9321ce5ebcfa5b75ff1675d
Docs: fix types (#30677) Co-authored-by: Samuel Rigaud <srigaud@duodisplay.com>
[ { "path": "examples/jsm/libs/motion-controllers.module.js", "patch": "@@ -338,7 +338,7 @@ class MotionController {\n /**\n * @param {Object} xrInputSource - The XRInputSource to build the MotionController around\n * @param {Object} profile - The best matched profile description for the supplied xrIn...
2025-03-07T21:32:33
swiftlang/swift
8fbe1275daa06026dc0125556a21dd199da8019b
8dd18534e2ce9f2f15416a4a9b248ce0b3b0ffd6
[DebuggingTheCompiler] Improve clarity of informal passages - Replace "Please feel free to add..." with professional contributor guidance - Replace "Well, this is not quite true..." aside with a clear note about -Onone behavior - Fix "When using swift LLDB REPL" to "When using the Swift REPL" - Rewrite first-perso...
[ { "path": "docs/DebuggingTheCompiler.md", "patch": "@@ -7,8 +7,8 @@ This document contains some useful information for debugging:\n * Intermediate output of the Swift Compiler.\n * Swift applications at runtime.\n \n-Please feel free to add any useful tips that one finds to this document for the\n-benefit o...
2026-02-24T16:00:16
denoland/deno
66c2ed6ed0c2c8a99388721dca8eca67b4ed5c7b
d08d79083dd7b760aa556d057e4a937d4dd6c07e
fix: update urlpattern to 0.4.2 (#31193) Fixes #25953 Fixes #31072
[ { "path": "Cargo.lock", "patch": "@@ -4177,9 +4177,9 @@ checksum = \"aa9a19cbb55df58761df49b23516a86d432839add4af60fc256da840f66ed35b\"\n \n [[package]]\n name = \"form_urlencoded\"\n-version = \"1.2.1\"\n+version = \"1.2.2\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = ...
2026-01-02T02:11:20
tensorflow/tensorflow
88f5eaad00f88096d747e591ea90f8b4dc68a5d2
24f41422cffbdcb7e4477f66103ca0bb8f80f53f
Fix crash in Affine/Symbolic conversions when AffineMap is nullptr This change mainly added checks for null affine maps and contexts to handle edge cases gracefully. New tests cover empty and null map conversions. Additionally, we remove redundant context argument from Symbolic/Affine map converters, since now we are...
[ { "path": "third_party/xla/xla/hlo/analysis/symbolic_map.h", "patch": "@@ -71,6 +71,9 @@ class SymbolicMap {\n int64_t num_symbols,\n llvm::SmallVector<SymbolicExpr> exprs);\n \n+ explicit operator bool() const { return ctx_ != nullptr; }\n+ bool operator!...
2026-02-03T11:05:28
golang/go
02d1f3a06bc6900ad5c1b7c11b1fd38cbddef395
a593ca9d657efb1ea021c9fc51cb528c398bbf4e
runtime: respect GOTRACEBACK for user-triggered runtime panics The documentation for GOTRACEBACK says that "single" is the default where the stack trace for only a single routine is printed except that it prints all stack traces if: there is no current goroutine or the failure is internal to the run-time. In the r...
[ { "path": "src/runtime/runtime1.go", "patch": "@@ -39,7 +39,7 @@ func gotraceback() (level int32, all, crash bool) {\n \tgp := getg()\n \tt := atomic.Load(&traceback_cache)\n \tcrash = t&tracebackCrash != 0\n-\tall = gp.m.throwing >= throwTypeUser || t&tracebackAll != 0\n+\tall = gp.m.throwing > throwTypeUs...
2025-02-13T23:59:32
mrdoob/three.js
ce5f72a0f91d76bee9321ce5ebcfa5b75ff1675d
16b58119d159e78fda0ead73bf5a1939462e5003
WebGPUTextureUtils: fix reference for BC4RSnorm (#30678) Co-authored-by: Samuel Rigaud <srigaud@duodisplay.com>
[ { "path": "src/renderers/webgpu/utils/WebGPUTextureUtils.js", "patch": "@@ -877,7 +877,7 @@ class WebGPUTextureUtils {\n \t\tif ( format === GPUTextureFormat.BC1RGBAUnorm || format === GPUTextureFormat.BC1RGBAUnormSRGB ) return { byteLength: 8, width: 4, height: 4 }; // DXT1\n \t\tif ( format === GPUTexture...
2025-03-07T18:38:40