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 |
|---|---|---|---|---|---|
tensorflow/tensorflow | e1fab9f0bba793ed5a839b92ff9c7cad4789bc84 | eaa38d83551b08018ec3e374caf412544ae88276 | Handle wrapt.ObjectProxy in tensor_util and TrackableObject.
Resolves a TypeError in Python 3.12 caused by stricter inspect module behavior when accessing __dict__ on wrapt.ObjectProxy subclasses like _DictWrapper. The fix modifies the type-checking logic to bypass incompatible introspection on proxy objects during se... | [
{
"path": "tensorflow/python/framework/tensor_util.py",
"patch": "@@ -1281,6 +1281,10 @@ def is_tf_type(x): # pylint: disable=invalid-name\n Returns:\n `True` if `x` is a TensorFlow-native type.\n \"\"\"\n+ # ObjectProxy is a special type of object that is used by wrapt to wrap\n+ # objects. It i... | 2025-12-10T20:30:31 |
golang/go | fe42628dae69c907bc579219a38fce6bc8f18c6c | 94b7d519bda29adad90766aaa5d2297708129a39 | internal/cpu: inline DebugOptions
internal/cpu.DebugOptions is only ever set in runtime.cpuinit on
unix-like platforms. DebugOptions itself is only used in
MustHaveDebugOptionsSupport, so inline the GOOS check there.
Change-Id: I6a35d6b8afcdadfc59585258002f53c20026116c
Reviewed-on: https://go-review.googlesource.com/... | [
{
"path": "src/internal/cpu/cpu.go",
"patch": "@@ -8,11 +8,6 @@ package cpu\n \n import _ \"unsafe\" // for linkname\n \n-// DebugOptions is set to true by the runtime if the OS supports reading\n-// GODEBUG early in runtime startup.\n-// This should not be changed after it is initialized.\n-var DebugOption... | 2025-08-28T14:50:12 |
swiftlang/swift | bbb078ccde37abeed7d8b5f5c13a4da2d6ae08f1 | 30fa65c7c0e96c32f863a7160579123b376562b4 | [Concurrency] Narrow fix to break cycles in implicit Sendable inference
An internal type is inferred to be Sendable when it's instance storage
as Sendable. This complicates conformance lookup because all of the
additional checking has to happen there. `lookupConformance` already
has a check that breaks cycles with imp... | [
{
"path": "lib/Sema/TypeCheckConcurrency.cpp",
"patch": "@@ -1063,8 +1063,23 @@ bool swift::diagnoseNonSendableTypes(\n if (auto *expansion = type->getAs<PackExpansionType>())\n type = PackType::get(ctx, {expansion});\n \n+ // Check each element of a tuple individually because this check could be\n+ ... | 2026-01-29T17:42:14 |
mrdoob/three.js | a519e0e76253e62905b691ce9fe03b5635293dfd | 4b9c621ff38154a631026c8eb996a2786a78a6c5 | WebGPURenderer: NodeMaterial - Fix `fog=false` and snow example (#28718)
* NodeMaterial: Fix `fog=false`
* cleanup
* update filter | [
{
"path": "examples/jsm/nodes/materials/NodeMaterial.js",
"patch": "@@ -437,9 +437,13 @@ class NodeMaterial extends Material {\n \n \t\t// FOG\n \n-\t\tconst fogNode = builder.fogNode;\n+\t\tif ( this.fog === true ) {\n \n-\t\tif ( fogNode ) outputNode = vec4( fogNode.mix( outputNode.rgb, fogNode.colorNode ... | 2024-06-21T23:01:41 |
denoland/deno | 3a5ba56801dfbe3508212903429c44071d1d3f15 | 1b755d5948ccbc478f3733722371152aa1c1036d | fix: tunnels in processes that don't listen (#30178)
fix issue with tunneling vite, which spawns subprocesses, where the
subprocess runs a server. | [
{
"path": "Cargo.lock",
"patch": "@@ -2982,16 +2982,17 @@ dependencies = [\n \n [[package]]\n name = \"deno_tunnel\"\n-version = \"0.5.0\"\n+version = \"0.7.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"5c497155b96f1e19ada7500c51b27d327036a1e8b12cf29416b6fe9f1ed5dbb... | 2025-07-24T16:09:27 |
golang/go | 94b7d519bda29adad90766aaa5d2297708129a39 | ba9e1ddccfe55e711ac3987f74109393dfb736af | net: update document on limitation of iprawsock on Windows
Fixed: #23209
Change-Id: I3bfe9f5192cbacf387386efda72f04eeec5ff3be
GitHub-Last-Rev: 660a62d139dda21fcaea1e95394ca38521c7f00a
GitHub-Pull-Request: golang/go#74857
Reviewed-on: https://go-review.googlesource.com/c/go/+/692895
LUCI-TryBot-Result: Go LUCI <golang... | [
{
"path": "src/net/iprawsock.go",
"patch": "@@ -25,6 +25,12 @@ import (\n // BUG(mikio): On JS and Plan 9, methods and functions related\n // to IPConn are not implemented.\n \n+// BUG: On Windows, raw IP sockets are restricted by the operating system.\n+// Sending TCP data, sending UDP data with invalid so... | 2025-08-12T12:36:54 |
tensorflow/tensorflow | eaa38d83551b08018ec3e374caf412544ae88276 | ea93d433c3a1a99c918292e9ea846727413b5e2f | [XLA:GPU] Fix dispatch decomposition when replica groups are shuffled.
When replica groups for for singe host are not contiguous, we need an extra step to reorder offsets and sizes metadata operands. We need a similar for combine ragged-all-to-all that I'll do in the following change.
PiperOrigin-RevId: 842830042 | [
{
"path": "third_party/xla/xla/service/gpu/transforms/BUILD",
"patch": "@@ -3106,6 +3106,7 @@ cc_library(\n srcs = [\"ragged_all_to_all_multi_host_decomposer.cc\"],\n hdrs = [\"ragged_all_to_all_multi_host_decomposer.h\"],\n deps = [\n+ \"//xla:array\",\n \"//xla:literal_util\",\n... | 2025-12-10T20:21:42 |
kubernetes/kubernetes | a66c025dc9e5a454ba65ea3ce354e36c96883dd3 | 854e67bb51e177b4b9c012928d8271704e9cb80d | test/e2e_node: Update procMount test to use Restricted PSA level
Update the procMount test expectations to match the intentional PSA
policy relaxation introduced in commit e8bd3f629d4.
As of Kubernetes 1.35+, Pod Security Admission Baseline policy
allows UnmaskedProcMount for pods with user namespaces (hostUsers:
fal... | [
{
"path": "test/e2e_node/proc_mount_test.go",
"patch": "@@ -46,10 +46,10 @@ var _ = SIGDescribe(\"DefaultProcMount [LinuxOnly]\", framework.WithNodeConformanc\n })\n \n var _ = SIGDescribe(\"ProcMount [LinuxOnly]\", feature.ProcMountType, feature.UserNamespacesSupport, func() {\n-\tf := framework.NewDefault... | 2025-11-14T09:17:54 |
mrdoob/three.js | 7e2f8864b5851b108fee6f7bb07e4df102025ae1 | 73982039c5260715955fb9ae0c426a71a74810d2 | fix useragent issue on ios chrome (#28712) | [
{
"path": "examples/jsm/loaders/GLTFLoader.js",
"patch": "@@ -2586,10 +2586,14 @@ class GLTFParser {\n \n \t\tif ( typeof navigator !== 'undefined' ) {\n \n-\t\t\tisSafari = /^((?!chrome|android).)*safari/i.test( navigator.userAgent ) === true;\n-\t\t\tsafariVersion = isSafari ? navigator.userAgent.match( /... | 2024-06-21T08:19:06 |
denoland/deno | 147bbcf8dd7075dd98e47fd123f5600f65e969c5 | 9dbf414813254cb7b8106a938a56abfd7ef5785b | fix(unstable): always require --allow-read permissions for raw imports (#30184) | [
{
"path": "cli/factory.rs",
"patch": "@@ -878,7 +878,12 @@ impl CliFactory {\n desc_parser.as_ref(),\n &self.cli_options()?.permissions_options(),\n )?;\n- Ok(PermissionsContainer::new(desc_parser, permissions))\n+\n+ Ok(PermissionsContainer::new(\n+ desc_p... | 2025-07-24T12:26:36 |
golang/go | ba9e1ddccfe55e711ac3987f74109393dfb736af | 9f6936b8da81672cebcfa7ac3d6edddf9f1a5d65 | testing: allow specify temp dir by GOTMPDIR environment variable
Allow change the default temp directory returned by t.TempDir()
by environment variable GOTMPDIR.
Fixes #61585
Change-Id: Iba969bb02744e106cf15d80e0eda0245a55fc290
GitHub-Last-Rev: aeacea00952b11990b49a0fde6a0ce4fe910b777
GitHub-Pull-Request: golang/go... | [
{
"path": "src/cmd/go/alldocs.go",
"patch": "@@ -2407,8 +2407,10 @@\n //\t\tThe name of checksum database to use and optionally its public key and\n //\t\tURL. See https://golang.org/ref/mod#authenticating.\n //\tGOTMPDIR\n-//\t\tThe directory where the go command will write\n-//\t\ttemporary source files, ... | 2025-08-12T14:06:53 |
kubernetes/kubernetes | a48b1890251f14a3125ea4a0e632cb13c59671d5 | 854e67bb51e177b4b9c012928d8271704e9cb80d | Fix a bug in scheduler_perf. | [
{
"path": "test/integration/scheduler_perf/scheduler_perf.go",
"patch": "@@ -1149,6 +1149,9 @@ func setupTestCase(t testing.TB, tc *testCase, featureGates map[featuregate.Feat\n \tif qhEnabled, exists := featureGates[features.SchedulerQueueingHints]; exists && !qhEnabled {\n \t\tfeaturegatetesting.SetFeatur... | 2025-11-14T04:03:03 |
mrdoob/three.js | 9c00c1c1f6570dbb2485a534fae321086b2e646b | 01dc3d9e798215e1fac8eecd5932edf99c866946 | support all texture formats and types in `DataTextureArray.setLayerUpdate` and `CompressedTextureArray.setLayerUpdate` (#28654)
* create TextureUtils
* docs
* use tabs instead of spaces
* fix lint
* use a byte view
* remove typo
* ensure the unit8array adheres to the byteLength of the input data sour... | [
{
"path": "docs/api/en/extras/TextureUtils.html",
"patch": "@@ -0,0 +1,28 @@\n+<!DOCTYPE html>\n+<html lang=\"en\">\n+\t<head>\n+\t\t<meta charset=\"utf-8\" />\n+\t\t<base href=\"../../../\" />\n+\t\t<script src=\"page.js\"></script>\n+\t\t<link type=\"text/css\" rel=\"stylesheet\" href=\"page.css\" />\n+\t... | 2024-06-20T21:13:38 |
swiftlang/swift | c0b30892a66151ca130a8b97fc560001ffb40319 | 99f1857d74d54a4625698f5e855a5ccda820e9b4 | [Swiftify] don't attach macro if plugin unavailable
At the moment plugin paths do not get passed along when consuming a
textual interface of an imported module. Normally this is not an issue,
because all macros have already been expanded at this point, but this is
not the case for _SwiftifyImport which belongs to a cl... | [
{
"path": "include/swift/AST/DiagnosticsSema.def",
"patch": "@@ -8200,6 +8200,10 @@ NOTE(macro_expand_circular_reference_unnamed_through, none,\n ERROR(accessor_macro_not_single_var, none,\n \"accessor macro %0 can only apply to a single variable\", (DeclName))\n \n+WARNING(macro_on_import_not_loadabl... | 2026-01-28T07:03:51 |
denoland/deno | 9dbf414813254cb7b8106a938a56abfd7ef5785b | 3643a4d96526785655315c5665d03698ca87cb4d | fix(check): ensure module not found errors are surfaced (#30181)
Closes https://github.com/denoland/deno/issues/30116 | [
{
"path": "Cargo.lock",
"patch": "@@ -1956,9 +1956,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_doc\"\n-version = \"0.179.0\"\n+version = \"0.180.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"15013f500ab72ef8512a5d86eb62253707daad4206fcb958dfa4e4f952f199e0... | 2025-07-23T21:57:08 |
golang/go | 9f6936b8da81672cebcfa7ac3d6edddf9f1a5d65 | 89d41d254a758f9b5e554761c92508220f4342a5 | cmd/link: disallow linkname of runtime.addmoduledata
Although a comment on addmoduledata warns that it should not be
called from Go code, the linker still allow it to be accessed via
go:linkname. Using linkname on this function will cause a linker
crash when building with buildmode=plugin.
Fixes #75180
Change-Id: Ib... | [
{
"path": "src/cmd/link/internal/loader/loader.go",
"patch": "@@ -2440,6 +2440,7 @@ var blockedLinknames = map[string][]string{\n \t// Others\n \t\"net.newWindowsFile\": {\"net\"}, // pushed from os\n \t\"testing/synctest.testingSynctestTest\": {\"testing/synctest\"}, // pushe... | 2025-08-28T09:32:09 |
tensorflow/tensorflow | 67ba4d5c767afa1747cb0da3611f3cc7d9997742 | 173d71aa5dd26095c7a5516d33734dbc29fde9eb | PR #34320: Migrate from native built-ins to Starlark rule definitions
Imported from GitHub PR https://github.com/openxla/xla/pull/34320
📝 Summary of Changes
- Replaces all occurrences of native.rule by their starlark version.
- Add missing load statements where native rules were implicit.
🎯 Justification
This is... | [
{
"path": "third_party/xla/MODULE.bazel",
"patch": "@@ -22,6 +22,7 @@ bazel_dep(name = \"pybind11_bazel\", version = \"2.13.6\")\n bazel_dep(name = \"pybind11_protobuf\", version = \"0.0.0-20250210-f02a2b7\")\n bazel_dep(name = \"re2\", version = \"2024-07-02.bcr.1\", repo_name = \"com_googlesource_code_re2... | 2025-12-10T16:44:17 |
mrdoob/three.js | 291f21035382770e1d519b806d03696e8a68862c | 7a50693865be57bb9de78cfd541d7d0cd5313161 | Examples: Fix onWindowResize (#28706) | [
{
"path": "examples/webgpu_tsl_interoperability.html",
"patch": "@@ -46,8 +46,6 @@\n \n \t\t\tfunction onWindowResize() {\n \n-\t\t\t\tcamera.aspect = window.innerWidth / window.innerHeight;\n-\t\t\t\tcamera.updateProjectionMatrix();\n \t\t\t\trenderer.setSize( window.innerWidth, window.innerHeight );\n \n ... | 2024-06-20T08:12:34 |
kubernetes/kubernetes | 9e3f1928393427c56596ca91dcbab29a003cc419 | 48c56e04e0bc2cdc33eb67ee36ca69eba96b5d0b | chore: fix case title in kubelet/server unit | [
{
"path": "pkg/kubelet/server/server_test.go",
"patch": "@@ -688,7 +688,7 @@ func TestAuthFilters(t *testing.T) {\n \tfor _, fineGraned := range []bool{false, true} {\n \t\tfeaturegatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, features.KubeletFineGrainedAuthz, fineGraned)\n \t\tfor ... | 2025-11-13T13:39:23 |
denoland/deno | 3643a4d96526785655315c5665d03698ca87cb4d | 84136f41bd7559be06e6d391fc9852d12810d8d6 | fix(ext/node): implement tls.checkServerIdentitiy (#30148)
Depends on https://github.com/denoland/deno/pull/30146 | [
{
"path": "ext/node/lib.rs",
"patch": "@@ -469,6 +469,7 @@ deno_core::extension!(deno_node,\n ops::process::op_process_abort,\n ops::tls::op_get_root_certificates,\n ops::tls::op_tls_peer_certificate,\n+ ops::tls::op_tls_canonicalize_ipv4_address,\n ops::inspector::op_inspector_open<P>,\n... | 2025-07-23T11:08:15 |
swiftlang/swift | 60a4620f2d434da67f3e4b2d6d1a84dca52eaf32 | 7e6cb7b82cc21823892bd7e98cfa39917919620a | Fix test trap-on-exception-irgen-msvc.swift with no-assert build (#86821)
The return value differs between %0 and %1 when LLVM_ENABLE_ASSERTIONS
is false. | [
{
"path": "test/Interop/Cxx/exceptions/trap-on-exception-irgen-msvc.swift",
"patch": "@@ -19,5 +19,5 @@\n // CHECK: call {{.*}}i32 @\"?freeFunctionNoThrow@@YAHH@Z\"\n // CHECK: call swiftcc i32 @\"$s4test8makeCInts5Int32VyF\"()\n // CHECK: call {{.*}}i32 @\"?freeFunctionThrows@@YAHH@Z\"\n-// CHECK: ret i32 ... | 2026-01-29T17:51:17 |
golang/go | 38204e087267a3408e36aa23d2b5ac36f22feef3 | 252c9011255872e21284480754400f9be7d48bf9 | testing/synctest: call out common issues with tests
While each point is explained their respective sections for Time,
Blocking, and Isolation, these appear to be the most common
issues worth calling out up front.
Fixes #75052
Change-Id: I916b559075ee4d1d23810a08459e037e21690193
Reviewed-on: https://go-review.googles... | [
{
"path": "src/testing/synctest/synctest.go",
"patch": "@@ -7,6 +7,14 @@\n // The [Test] function runs a function in an isolated \"bubble\".\n // Any goroutines started within the bubble are also part of the bubble.\n //\n+// Each test should be entirely self-contained:\n+// The following guidelines should ... | 2025-08-17T11:29:48 |
mrdoob/three.js | 7a50693865be57bb9de78cfd541d7d0cd5313161 | f7d15ad7a7ba77f32c6c8f61ba81e78abc3f78d1 | WebGPURenderer: optimize interleaved buffer update (#28704)
* optimize: remove useless interleavedBuffer update
* fix: fix webgl instance error | [
{
"path": "examples/jsm/renderers/common/Geometries.js",
"patch": "@@ -76,7 +76,8 @@ class Geometries extends DataMap {\n \t\tthis.info = info;\n \n \t\tthis.wireframes = new WeakMap();\n-\t\tthis.attributeVersion = new WeakMap();\n+\n+\t\tthis.attributeCall = new WeakMap();\n \n \t}\n \n@@ -170,13 +171,35 ... | 2024-06-20T02:04:07 |
tensorflow/tensorflow | 173d71aa5dd26095c7a5516d33734dbc29fde9eb | 26eb24445c7ab6ca5ba397246f222c2671156d2a | PR #34250: [ROCm] bugfix - consider the situation where the best time is infinite
Imported from GitHub PR https://github.com/openxla/xla/pull/34250
🐛 Bug Fix
it occasionally happens in [TryFindBestTilingForFusion](https://github.com/openxla/xla/blob/b111957fcb2e2e91839c5e70c6b23216416ca99f/xla/service/gpu/model/gpu... | [
{
"path": "third_party/xla/xla/service/gpu/model/gpu_indexing_performance_model.cc",
"patch": "@@ -680,6 +680,11 @@ GpuPerformanceModelWithIndexingAnalysis::TryFindBestTilingForFusion(\n EstimateRunTimeForTiledHloComputation(\n fusion_adaptor, tiled_hlo_computation, launch_dimensions));\... | 2025-12-10T15:22:39 |
golang/go | 252c9011255872e21284480754400f9be7d48bf9 | 53515fb0a9e267d6040c1d8785fe51b1367e8d4d | os,syscall: pass file flags to CreateFile on Windows
Add support for FILE_FLAG_* constants in the flag argument of
os.OpenFile and syscall.Open on Windows.
Passing invalid flags will result in an error.
Updates #73676
Change-Id: Ie215a3dd14f0d74141533f0a07865a02a67a3846
Reviewed-on: https://go-review.googlesource.c... | [
{
"path": "doc/next/6-stdlib/99-minor/os/73676.md",
"patch": "@@ -0,0 +1,4 @@\n+On Windows, the [OpenFile] `flag` parameter can now contain any combination of\r\n+Windows-specific file flags, such as `FILE_FLAG_OVERLAPPED` and\r\n+`FILE_FLAG_SEQUENTIAL_SCAN`, for control of file or device caching behavior,\... | 2025-08-27T09:18:47 |
denoland/deno | 84136f41bd7559be06e6d391fc9852d12810d8d6 | b40a37b3d1632d73cd9ec9a01e755c38bf8cf42f | fix(ext/node): implement TLSSocket.getPeerCertificate (#30146)
Fixes https://github.com/denoland/deno/issues/22181
Depends on https://github.com/denoland/rustls-tokio-stream/pull/46
```
# google.com
[Object: null prototype] {
ca: false,
raw: Uint8Array(3634) [
48, 130, 14, 46, 48, 130, 13, 22, 160, 3... | [
{
"path": "Cargo.lock",
"patch": "@@ -7658,9 +7658,9 @@ dependencies = [\n \n [[package]]\n name = \"rustls-tokio-stream\"\n-version = \"0.7.0\"\n+version = \"0.8.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"8bfea10cd4c8ef885ef3bbae654045440e4d25346f00b997749a55a31... | 2025-07-23T08:11:19 |
kubernetes/kubernetes | cee5b837da96f16536e048905bfe5be7103b21d2 | c68b35c4c75cb5d4c016799a966808dff3d9a9a5 | Resolve lint restriction on BeTrue by introducing Succeed() with contextual error messages | [
{
"path": "go.mod",
"patch": "@@ -84,37 +84,8 @@ require (\n \tgoogle.golang.org/protobuf v1.36.8\n \tgopkg.in/evanphx/json-patch.v4 v4.13.0\n \tgopkg.in/go-jose/go-jose.v2 v2.6.3\n-\tk8s.io/api v0.0.0\n-\tk8s.io/apiextensions-apiserver v0.0.0\n-\tk8s.io/apimachinery v0.0.0\n-\tk8s.io/apiserver v0.0.0\n-\tk... | 2025-11-12T17:08:33 |
mrdoob/three.js | a83652d2b5db800c925cb8c7925d69683d794adc | 6ea0fb9ec4e2341549f2a7a35795731e5ab628fb | WebGPURenderer: Update attribute only when needed (#28701)
* update attribute only when necessary
* fix interleavedbuffers
* fixing attribute updates might have changed puppeteer?
* support instanceMatrix.needsUpdate
* cleanup
* instanceColor can be undefined | [
{
"path": "examples/jsm/nodes/accessors/InstanceNode.js",
"patch": "@@ -5,6 +5,7 @@ import { normalLocal } from './NormalNode.js';\n import { positionLocal } from './PositionNode.js';\n import { nodeProxy, vec3, mat3, mat4 } from '../shadernode/ShaderNode.js';\n import { DynamicDrawUsage, InstancedInterleav... | 2024-06-19T15:31:53 |
golang/go | 13bb48e6fbc35419a28747688426eb3684242fbc | ba1109feb515c2eb013399f53be5f17cfe1f189f | go/constant: fix complex != unknown comparison
By the contract of Compare, if one operand is Unknown, the result must be
false.
Fixes #75137
Change-Id: I56420fae808395f89769f5e5d448f9e1df9a622f
GitHub-Last-Rev: 858ba89a91bf966223975541af739ab0ab977075
GitHub-Pull-Request: golang/go#75140
Reviewed-on: https://go-revi... | [
{
"path": "src/go/constant/value.go",
"patch": "@@ -1083,7 +1083,10 @@ func match0(x, y Value) (_, _ Value) {\n \t\t\treturn rtof(x1), y\n \t\t}\n \tcase complexVal:\n-\t\treturn vtoc(x), y\n+\t\tswitch x1 := x.(type) {\n+\t\tcase int64Val, intVal, ratVal, floatVal:\n+\t\t\treturn vtoc(x1), y\n+\t\t}\n \t}\... | 2025-08-25T15:41:53 |
denoland/deno | b40a37b3d1632d73cd9ec9a01e755c38bf8cf42f | 7b154300b8926f62119a9dbd63c5079378680dff | fix: do not panic deserializing config with invalid number value (#30171) | [
{
"path": "Cargo.lock",
"patch": "@@ -5346,9 +5346,9 @@ dependencies = [\n \n [[package]]\n name = \"jsonc-parser\"\n-version = \"0.26.2\"\n+version = \"0.26.3\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"b558af6b49fd918e970471374e7a798b2c9bbcda624a210ffa3901ee5614bc... | 2025-07-22T15:29:05 |
swiftlang/swift | 2243cf1a788fb7103f13ff022ffeb90ef839b945 | 88d328289750fc1624eb73c8e68c0620e12eeb7d | [DebugInfo][NFC] Factor out DebugInfo in main IRGenSIL loop
There is a lot of stateful code in the middle of the main IRGenSIL loop
that makes it really hard to understand what is going on. This commit is
a very modest attempt at reducing the cognitive burden in this area by:
1. Moving it out to a helper function
2. ... | [
{
"path": "lib/IRGen/IRGenSIL.cpp",
"patch": "@@ -1209,6 +1209,7 @@ class IRGenSILFunction :\n bool shouldUseDispatchThunk(SILDeclRef method);\n \n void visitSILBasicBlock(SILBasicBlock *BB);\n+ bool setupDebugLocationFor(SILInstruction &I, bool OldKeepCurrentLocation);\n void emitErrorResultVar(CanS... | 2026-01-23T15:35:08 |
kubernetes/kubernetes | 854e67bb51e177b4b9c012928d8271704e9cb80d | 707097760486dc1746a9c27d16bb66690627cd4b | KEP 5598: Opportunistic Batching (#135231)
* First version of batching w/out signatures.
* First version of pod signatures.
* Integrate batching with signatures.
* Fix merge conflicts.
* Fixes from self-review.
* Test fixes.
* Fix a bug that limited batches to size 2
Also add some new high-level logging and
simp... | [
{
"path": "pkg/features/kube_features.go",
"patch": "@@ -673,6 +673,12 @@ const (\n \t// resume work after restarts.\n \tNominatedNodeNameForExpectation featuregate.Feature = \"NominatedNodeNameForExpectation\"\n \n+\t// owner: @bwsalmon\n+\t// kep: https://kep.k8s.io/5598\n+\t//\n+\t// Enables opportunisti... | 2025-11-13T05:51:37 |
mrdoob/three.js | 074afc11566fd50529abf25341302c68eb23a5a3 | 4601056b747486c77a6ef42ce156467df3ed3995 | WebGPURenderer: Fix uniform update tests (#28698)
* fix uniform update tests
* cleanup | [
{
"path": "examples/jsm/renderers/common/UniformsGroup.js",
"patch": "@@ -9,6 +9,8 @@ class UniformsGroup extends UniformBuffer {\n \n \t\tthis.isUniformsGroup = true;\n \n+\t\tthis._values = null;\n+\n \t\t// the order of uniforms in this array must match the order of uniforms in the shader\n \n \t\tthis.u... | 2024-06-19T01:47:58 |
denoland/deno | a8ef9e151de4aa07950c89f3550814fea9a7951a | fece050b60be934b671694abc5f4fbcb60a4007b | fix(ext/node): `fs.read` and `fs.write` promisify compatibility (#30152)
Towards #29972 | [
{
"path": "ext/node/polyfills/_fs/_fs_read.ts",
"patch": "@@ -18,6 +18,10 @@ import {\n } from \"ext:deno_node/internal/validators.mjs\";\n import { isArrayBufferView } from \"ext:deno_node/internal/util/types.ts\";\n import { op_fs_seek_async, op_fs_seek_sync } from \"ext:core/ops\";\n+import { primordials... | 2025-07-22T08:56:27 |
tensorflow/tensorflow | f53e5493031c29ec2da271ba39aedca182ecfecc | b29ba0638e3d994956981379630a9a88e423ff36 | PR #35011: Use human readable string to display memory allocator sizes
Imported from GitHub PR https://github.com/openxla/xla/pull/35011
📝 Summary of Changes
This pull request updates the allocator statistics reporting across both `stream_executor` and `tsl/framework` to improve readability and consistency.
Copybara... | [
{
"path": "third_party/xla/xla/stream_executor/BUILD",
"patch": "@@ -824,7 +824,10 @@ cc_library(\n name = \"allocator_stats\",\n srcs = [\"allocator_stats.cc\"],\n hdrs = [\"allocator_stats.h\"],\n- deps = [\"@com_google_absl//absl/strings:str_format\"],\n+ deps = [\n+ \"@com_googl... | 2025-12-10T13:01:19 |
swiftlang/swift | 223acb337cb5ffe17dcde584ca950b5142021da6 | cd8e4c29d2a9a8999efd591b8f75f60ad5705018 | [IRGen] Fix crash when getting nonisolated(nonsending) function metadata on older runtimes
When compiling for a triple that predates typed throws,
`swift_getFunctionMetadataExtended` is conditionally available and emitted as a
weak external symbol. Previously, when such code ran on a older runtime where
`swift_getFunc... | [
{
"path": "lib/IRGen/MetadataRequest.cpp",
"patch": "@@ -1565,6 +1565,69 @@ static CanPackType getInducedPackType(AnyFunctionType::CanParamArrayRef params,\n return CanPackType::get(ctx, elts);\n }\n \n+static MetadataResponse\n+emitExtendedFunctionTypeMetadataBackdeploy(IRGenFunction &IGF,\n+ ... | 2026-01-27T17:44:55 |
golang/go | e47d88beae126387647348810b728ed12c8a0d61 | 6b837a64dbe6264035037d61c56ab94b55b2844d | os: return nil slice when ReadDir is used with a file on file_windows
ReadDir should return (nil, ENOTDIR) when the path points to a file
instead of a directory. That's the behavior on Unix systems, and it also
used to be the behavior on Windows. However, Windows currently returns
([]DirEntry{}, ENOTDIR).
We should c... | [
{
"path": "src/internal/syscall/windows/at_windows.go",
"patch": "@@ -11,6 +11,11 @@ import (\n \t\"unsafe\"\n )\n \n+// Openat flags supported by syscall.Open.\n+const (\n+\tO_DIRECTORY = 0x04000 // target must be a directory\n+)\n+\n // Openat flags not supported by syscall.Open.\n //\n // These are inven... | 2025-08-27T07:12:29 |
denoland/deno | fece050b60be934b671694abc5f4fbcb60a4007b | a33454cbe43e87db59e5852debacd7e2de24c7e2 | chore: fix flaky dynamic_npm_resolution_failure (#30165) | [
{
"path": "tests/specs/npm/dynamic_npm_resolution_failure/main.out",
"patch": "@@ -1,8 +1,4 @@\n-[UNORDERED_START]\n-Download http://localhost:4260/chalk\n-Download http://localhost:4260/@denotest%2fdep-cannot-parse\n-Download http://localhost:4260/chalk/chalk-5.0.1.tgz\n-[UNORDERED_END]\n+[WILDCARD]\n Hi\n... | 2025-07-21T22:49:28 |
tensorflow/tensorflow | 9b67795c0b2314d361beaca7fed86671f5ce832c | c8d46ebb0d75b83233fdb5905158ad726210d626 | PR #35077: [ROCm] Fix hermetic build rocm
Imported from GitHub PR https://github.com/openxla/xla/pull/35077
📝 Summary of Changes
Move comgr into the data directory, fixing hermetic build
🎯 Justification
Hermetic build with rocm config is broken due to invalid
dependency management. Invalid merge of this PR: https:... | [
{
"path": "third_party/xla/third_party/gpus/rocm/BUILD.tpl",
"patch": "@@ -537,7 +537,7 @@ cc_library(\n cc_library(\n name = \"amd_comgr\",\n hdrs = glob([\"%{rocm_root}/include/amd_comgr/**\"]),\n- srcs = glob([\n+ data = glob([\n \"%{rocm_root}/lib/libamd_comgr_loader.so*\",\n ... | 2025-12-10T11:38:41 |
golang/go | 765905e3bd13dcb048388890dba2ea47f6e58711 | 2ee4b31242e426df757aa09450b744e0af8cb08d | debug/elf: don't panic if symtab too small
No test case because the problem can only happen for invalid data.
Let the fuzzer find cases like this.
For #47653
Fixes #75130
Change-Id: Ie6015564bb98334377383bbc16d79119dc4e36f9
Reviewed-on: https://go-review.googlesource.com/c/go/+/698855
Reviewed-by: Tobias Klauser <to... | [
{
"path": "src/debug/elf/file.go",
"patch": "@@ -692,6 +692,9 @@ func (f *File) getSymbols64(typ SectionType) ([]Symbol, []byte, error) {\n \tif len(data)%Sym64Size != 0 {\n \t\treturn nil, nil, errors.New(\"length of symbol section is not a multiple of Sym64Size\")\n \t}\n+\tif len(data) == 0 {\n+\t\tretur... | 2025-08-24T20:17:56 |
denoland/deno | a33454cbe43e87db59e5852debacd7e2de24c7e2 | 265018784fcca7ff49ea5d88565f063255c1a156 | fix(task): improve parsing of quotes in command substitution (#30162)
Closes https://github.com/denoland/deno/issues/30156 | [
{
"path": "Cargo.lock",
"patch": "@@ -2871,9 +2871,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_task_shell\"\n-version = \"0.25.1\"\n+version = \"0.25.2\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"38caeb310ffd21fdd263c8e9cccd590c0a6fb19d385ebc234bc95bd33cd... | 2025-07-21T22:45:48 |
golang/go | 2ee4b31242e426df757aa09450b744e0af8cb08d | b21867b1a2a8e276257e3cb81f4a1dc7e8f9e2cd | net/http: Ensure that CONNECT proxied requests respect MaxResponseHeaderBytes
Currently, CONNECT proxied requests use an unlimited Reader. As a
result, a malicious or misbehaving proxy server can send an unlimited
number of bytes to a client; causing the client to indefinitely receive bytes
until it runs out of memory... | [
{
"path": "src/net/http/transport.go",
"patch": "@@ -325,6 +325,13 @@ func (t *Transport) readBufferSize() int {\n \treturn 4 << 10\n }\n \n+func (t *Transport) maxHeaderResponseSize() int64 {\n+\tif t.MaxResponseHeaderBytes > 0 {\n+\t\treturn t.MaxResponseHeaderBytes\n+\t}\n+\treturn 10 << 20 // conservati... | 2025-08-25T13:07:25 |
tensorflow/tensorflow | c8d46ebb0d75b83233fdb5905158ad726210d626 | 312d57fd897dfd02c90b767552c1403b5313ab94 | PR #35048: fix: cap shape size in TextLiteralReader
Imported from GitHub PR https://github.com/openxla/xla/pull/35048
📝 Summary of Changes
Add size check in TextLiteralReader before allocation to avoid null-dereference crash when parsing shapes with extremely large dimensions.
Cap at `int32_t` maximum (around 2 GB... | [
{
"path": "third_party/xla/xla/text_literal_reader.cc",
"patch": "@@ -73,6 +73,17 @@ absl::StatusOr<Literal> TextLiteralReader::ReadAllLines() {\n \n absl::StripAsciiWhitespace(&shape_string);\n TF_ASSIGN_OR_RETURN(Shape shape, ParseShape(shape_string));\n+\n+ // Sanity check to reject shapes that are ... | 2025-12-10T11:12:48 |
denoland/deno | c51b1a84e91adac7c7083b4576619406a56c3bd4 | 470592a54efc562dd8120e83712f2faf4d75b9e3 | fix(lsp): improve renaming a file with bytes or text imports (#30142)
Also actually goes to the file now when doing "go to definition" on the
specifier. | [
{
"path": "cli/lsp/documents.rs",
"patch": "@@ -1596,32 +1596,22 @@ impl DocumentModules {\n true => ResolutionMode::Require,\n false => ResolutionMode::Import,\n };\n- if raw_specifier.starts_with(\"asset:\") {\n+ let result = if raw_specifier.starts_with(\"asset:\") {\n ... | 2025-07-21T13:57:20 |
golang/go | b21867b1a2a8e276257e3cb81f4a1dc7e8f9e2cd | d19e377f6ea3b84e94d309894419f2995e7b56bd | net/http: require exact match for CrossSiteProtection bypass patterns
Fixes #75054
Fixes CVE-2025-47910
Change-Id: I6a6a696440c45c450d2cd681f418b01aa0422a60
Reviewed-on: https://go-review.googlesource.com/c/go/+/699275
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-... | [
{
"path": "src/net/http/csrf.go",
"patch": "@@ -77,13 +77,21 @@ func (c *CrossOriginProtection) AddTrustedOrigin(origin string) error {\n \treturn nil\n }\n \n-var noopHandler = HandlerFunc(func(w ResponseWriter, r *Request) {})\n+type noopHandler struct{}\n+\n+func (noopHandler) ServeHTTP(ResponseWriter, *... | 2025-08-26T20:52:39 |
mrdoob/three.js | 7ca25bd0b6d55ffa6f5c1cf52ae8e989eb2bd3dc | 8b7a79357971149e40500c50772e5f9c3f008383 | TSL: Fix WGSL Functions using wrong type (#28690)
* fix wgslNodeFunction layout type overriding to float
* Move outputType to WGSLNodeFunction
---------
Co-authored-by: sunag <sunagbrasil@gmail.com> | [
{
"path": "examples/jsm/renderers/webgpu/nodes/WGSLNodeFunction.js",
"patch": "@@ -1,7 +1,7 @@\n import NodeFunction from '../../../nodes/core/NodeFunction.js';\n import NodeFunctionInput from '../../../nodes/core/NodeFunctionInput.js';\n \n-const declarationRegexp = /^[fn]*\\s*([a-z_0-9]+)?\\s*\\(([\\s\\S]... | 2024-06-18T17:14:13 |
tensorflow/tensorflow | 2a13f3ce1e04e07916ccdadfb5c4042d71a1a658 | 457322c8bf181c4d42df3ca08f07061f4cc916cc | [XLA] Avoid duplicated include paths in XLA build
The change that introduces googletest wrapper does not work reliably:
depending on the order of deps in BUILD file, googletest include paths
may end up before the wrapper ones. When this happens, the
ASSERT_OK/EXPECT_OK macros are not available.
This showed up in a bz... | [
{
"path": "third_party/xla/MODULE.bazel",
"patch": "@@ -10,8 +10,7 @@ bazel_dep(name = \"bazel_skylib\", version = \"1.8.1\")\n bazel_dep(name = \"boringssl\", version = \"0.20250818.0\")\n bazel_dep(name = \"curl\", version = \"8.11.0\")\n bazel_dep(name = \"google_benchmark\", version = \"1.8.5\", repo_na... | 2025-12-10T04:29:47 |
kubernetes/kubernetes | 10b73f8ef9fa92d5494ebc1999b52e0053876661 | 21920bb37e99ef6f3778c87224d8218327d8df4b | Test fixes
Signed-off-by: ndixita <ndixita@google.com> | [
{
"path": "pkg/kubelet/allocation/allocation_manager_test.go",
"patch": "@@ -818,10 +818,8 @@ func TestRetryPendingResizes(t *testing.T) {\n \t\t\t\t\tif tt.expectedAllocatedPodReqs != nil {\n \t\t\t\t\t\trequire.NotNil(t, updatedPod.Spec.Resources)\n \t\t\t\t\t\tassert.Equal(t, tt.expectedAllocatedPodReqs,... | 2025-11-12T05:53:41 |
denoland/deno | 470592a54efc562dd8120e83712f2faf4d75b9e3 | 5f0a3ace4fc3e28b763299e11e4164bde3c056c4 | fix(ext/node): use primordials in `ext/node/polyfills/internal_binding/_listen.ts` (#30100)
Towards #24236. Replaces JS builtin `Math.clz32` with the primordial
`MathClz32`. | [
{
"path": "ext/node/polyfills/internal_binding/_listen.ts",
"patch": "@@ -1,14 +1,14 @@\n // Copyright 2018-2025 the Deno authors. MIT license.\n \n-// TODO(petamoriken): enable prefer-primordials for node polyfills\n-// deno-lint-ignore-file prefer-primordials\n+import { primordials } from \"ext:core/mod.j... | 2025-07-21T11:35:42 |
golang/go | 49a2f3ed871c044eb093b16c09202b7dcd875878 | afc51ed007ad814fc11273f39055aeea71172557 | net: allow zero value destination address in WriteMsgUDPAddrPort
The existing address validity checks already cover both connected and
non-connected sockets. Pass a nil sockaddr just like WriteMsgUDP, when
the address is zero value.
TestWriteToUDP is extended to cover the netip APIs.
Fixes #74841
Change-Id: I2708e7... | [
{
"path": "src/net/ipsock_posix.go",
"patch": "@@ -260,9 +260,6 @@ func addrPortToSockaddrInet6(ap netip.AddrPort) (syscall.SockaddrInet6, error) {\n \t// to an IPv4-mapped IPv6 address.\n \t// The error message is kept consistent with ipToSockaddrInet6.\n \taddr := ap.Addr()\n-\tif !addr.IsValid() {\n-\t\t... | 2025-08-01T16:42:27 |
mrdoob/three.js | 49b30e6d641ae9e1a6c5e59264c3902e9ec3728e | ce72acd01cefd4b5ad8d49d8feecefcee3127636 | Editor: Fix undo/redo of points. (#28677) | [
{
"path": "editor/js/Sidebar.Geometry.LatheGeometry.js",
"patch": "@@ -61,6 +61,7 @@ function GeometryParametersPanel( editor, object ) {\n \n \t\tconst parameters = object.geometry.parameters;\n \n+\t\tpoints.setValue( parameters.points, false );\n \t\tsegments.setValue( parameters.segments );\n \t\tphiSta... | 2024-06-18T08:31:07 |
denoland/deno | ca4f4b4788a896ea6a94579e5e95a7e7669498fa | 3b59689df6dd1c230cb26be07c51b79e56f95042 | fix(ext/node): add process._rawDebug (#30141) | [
{
"path": "ext/node/polyfills/process.ts",
"patch": "@@ -6,6 +6,7 @@\n \n import { core, internals, primordials } from \"ext:core/mod.js\";\n import { initializeDebugEnv } from \"ext:deno_node/internal/util/debuglog.ts\";\n+import { format } from \"ext:deno_node/internal/util/inspect.mjs\";\n import {\n o... | 2025-07-18T17:29:31 |
kubernetes/kubernetes | 21920bb37e99ef6f3778c87224d8218327d8df4b | 0f88a9a17e48b14b2101d59c2ead538b7b943c25 | Test fixes
Signed-off-by: ndixita <ndixita@google.com> | [
{
"path": "test/e2e/common/node/framework/cgroups/cgroups.go",
"patch": "@@ -223,9 +223,14 @@ func verifyContainerCPUWeight(f *framework.Framework, pod *v1.Pod, containerName\n \t\tcpuLim = pod.Spec.Resources.Limits.Cpu()\n \t}\n \tcpuReq := expectedResources.Requests.Cpu()\n+\t// Bug - Skip comparing cpu.w... | 2025-11-11T18:08:35 |
mrdoob/three.js | ce72acd01cefd4b5ad8d49d8feecefcee3127636 | 852b1f55eda649903cd4692b0d6ebd5a6702909e | USDZLoader: throw error instead of warning (#28684) (#28685)
USDZLoader should throw an error instead of the warning, to allow the
consumer to act upon the error. | [
{
"path": "examples/jsm/loaders/USDZLoader.js",
"patch": "@@ -182,8 +182,7 @@ class USDZLoader extends Loader {\n \n \t\t\t\t\tif ( isCrateFile( zip[ filename ] ) ) {\n \n-\t\t\t\t\t\tconsole.warn( 'THREE.USDZLoader: Crate files (.usdc or binary .usd) are not supported.' );\n-\t\t\t\t\t\tcontinue;\n+\t\t\t\... | 2024-06-18T07:11:08 |
golang/go | fa18c547cd891e526d2e01cfbc17961de45c31a5 | bfd130db02336a174dab781185be369f089373ba | syscall: sort Windows env block in StartProcess
Fixes #29530
Change-Id: Ia28c78274b9288bfa5de9ccb142a452d291a5b66
Reviewed-on: https://go-review.googlesource.com/c/go/+/694435
Reviewed-by: Damien Neil <dneil@google.com>
Reviewed-by: Ian Lance Taylor <iant@golang.org>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-pr... | [
{
"path": "src/syscall/exec_windows.go",
"patch": "@@ -9,6 +9,7 @@ package syscall\n import (\n \t\"internal/bytealg\"\n \t\"runtime\"\n+\t\"slices\"\n \t\"sync\"\n \t\"unicode/utf16\"\n \t\"unsafe\"\n@@ -113,6 +114,49 @@ func makeCmdLine(args []string) string {\n \treturn string(b)\n }\n \n+func envSorted(... | 2025-08-08T19:44:42 |
tensorflow/tensorflow | 1cf8997874a1264f12fedad9601ec4c57691f757 | ebc07e02b443fb1c4e5650ebbf4e38d47779ed16 | Added unit test for the type change of OpSourceInfo::source_file from string_view to std::string which was done to avoid dangling references potentially avoiding use-after-free crashes.
PiperOrigin-RevId: 842498608 | [
{
"path": "third_party/xla/xla/tsl/profiler/convert/BUILD",
"patch": "@@ -58,6 +58,7 @@ tsl_cc_test(\n deps = [\n \":xla_op_utils\",\n \"//xla/tsl/platform:test\",\n+ \"@com_google_absl//absl/strings\",\n \"@com_google_googletest//:gtest_main\",\n ],\n )",
"additio... | 2025-12-10T03:36:58 |
kubernetes/kubernetes | 4795edadee0479222b1fe828a5ee56fa9d205ca5 | 462ee14a36f7f3f11b03bf7cb072351740271443 | Fix goroutine leak in TestNodeSyncResync | [
{
"path": "pkg/controller/nodeipam/ipam/sync/sync_test.go",
"patch": "@@ -238,12 +238,11 @@ func TestNodeSyncResync(t *testing.T) {\n \tsync := New(fake, fake, fake, SyncFromCluster, \"node1\", cidr)\n \tdoneChan := make(chan struct{})\n \tgo sync.Loop(logger, doneChan)\n+\t// Wait for the first resync to c... | 2025-11-07T13:51:56 |
golang/go | bfd130db02336a174dab781185be369f089373ba | dae9e456ae6992b3c19a8c5039090ee9ca4d9b7d | internal/poll: don't use stack-allocated WSAMsg parameters
WSAMsg parameters should be passed to Windows as heap pointers instead
of stack pointers. This is because Windows might access the memory
after the syscall returned in case of a non-blocking operation (which
is the common case), and if the WSAMsg is on the sta... | [
{
"path": "src/internal/poll/fd_windows.go",
"patch": "@@ -144,19 +144,47 @@ func (o *operation) ClearBufs() {\n \to.bufs = o.bufs[:0]\n }\n \n-func newWSAMsg(p []byte, oob []byte, flags int) windows.WSAMsg {\n-\treturn windows.WSAMsg{\n-\t\tBuffers: &syscall.WSABuf{\n-\t\t\tLen: uint32(len(p)),\n-\t\t\tBuf... | 2025-08-25T07:57:49 |
mrdoob/three.js | d208680ef1498572840914a89707af1ee3b881cd | 2328b0a75c6280a907d527c47f151971eacde778 | TSL: Fix issue in wgslFn alias revision (#28686) | [
{
"path": "examples/jsm/renderers/webgpu/nodes/WGSLNodeFunction.js",
"patch": "@@ -53,7 +53,7 @@ const wgslTypeLib = {\n \t'texture_2d': 'texture',\n \t'texture_cube': 'textureCube',\n \t'texture_depth_2d': 'textureDepth',\n-\t'texture_storage_2d': 'textureStorage',\n+\t'texture_storage_2d': 'storageTexture... | 2024-06-17T21:33:51 |
tensorflow/tensorflow | 4fbf3ad045cfe734a7603354f2cdde3481c0b571 | 27c6b3b944f7e5e9847d9597d8d6ec51e25c7472 | [XLA:GPU] Fix the ASSERT_OK_AND_ASSIGN macro
I did an oopsie and it didn't work because it referred to wrong _IMPL
macro.
PiperOrigin-RevId: 842354212 | [
{
"path": "third_party/xla/third_party/xla_googletest_wrapper/include/gmock/gmock.h",
"patch": "@@ -62,7 +62,7 @@ limitations under the License.\n ASSERT_THAT(expression, ::xla_testing::internal::IsOk())\n \n #define ASSERT_OK_AND_ASSIGN(lhs, rexpr) \\\n- TF_ASSERT_OK_AND_ASSIG... | 2025-12-09T20:41:56 |
golang/go | ea55ca360005c607fa54304d95c6821a6ce20e7c | 9ae2f1fb574e879402bc5bbac1d2b5d84acce6cb | runtime: skip doInit of plugins in runtime.main
Plugins may be loaded in the user's init code.
If loading fails, md.bad is true, and doInit should not be executed.
If loading succeeds, the plugin must run modulesinit and typelinksinit
before doInit. Here is not protected by pluginsMu, and in concurrent
scenarios it is... | [
{
"path": "src/cmd/cgo/internal/testplugin/plugin_test.go",
"patch": "@@ -422,3 +422,11 @@ func TestIssue67976(t *testing.T) {\n \tglobalSkip(t)\n \tgoCmd(t, \"build\", \"-buildmode=plugin\", \"-o\", \"issue67976.so\", \"./issue67976/plugin.go\")\n }\n+\n+func TestIssue75102(t *testing.T) {\n+\tglobalSkip(t... | 2025-08-20T13:33:42 |
denoland/deno | 3b59689df6dd1c230cb26be07c51b79e56f95042 | 61a7913a8b19d40f46cb439b1e9cf68f960c6fc0 | fix(lsp): do not error for bytes or text import of json module (#30137)
Closes https://github.com/denoland/deno/issues/30101 | [
{
"path": "cli/lsp/diagnostics.rs",
"patch": "@@ -1576,7 +1576,7 @@ fn diagnose_resolution(\n if module.media_type == MediaType::Json {\n match maybe_assert_type {\n // The module has the correct assertion type, no diagnostic\n- Some(\"json\") => (),\n+ ... | 2025-07-17T23:09:16 |
mrdoob/three.js | 2328b0a75c6280a907d527c47f151971eacde778 | 8a7848a42245faba55c5d50315b17c0cc3197ccd | WebGPURenderer: Revision texture filtering and rain example (#28682)
* revision of tsl filtered textures
* fix example | [
{
"path": "examples/jsm/nodes/core/NodeBuilder.js",
"patch": "@@ -15,7 +15,10 @@ import {\n \tColorNodeUniform, Matrix3NodeUniform, Matrix4NodeUniform\n } from '../../renderers/common/nodes/NodeUniform.js';\n \n-import { REVISION, RenderTarget, Color, Vector2, Vector3, Vector4, IntType, UnsignedIntType, Flo... | 2024-06-17T21:33:01 |
denoland/deno | 61a7913a8b19d40f46cb439b1e9cf68f960c6fc0 | b7680dde5ed54ef6c5891db74e196cbfec29407d | fix(task): show package name of task when --recursive (#30136) | [
{
"path": "cli/tools/task.rs",
"patch": "@@ -206,6 +206,7 @@ pub async fn execute_script(\n return task_runner\n .run_deno_task(\n &Url::from_directory_path(cli_options.initial_cwd()).unwrap(),\n+ None,\n \"\",\n &TaskDefinition {\n command: S... | 2025-07-17T21:42:50 |
golang/go | bbd5342a62baa2fa6b42d444b05717c2563d0764 | ed7f804775725149088a71108efd0b20ef9f206f | net: fix cgoResSearch
CL 457439 mistakenly redeclared size inside the for loop, causing
cgoResSearch to always fail and fall back to goLookupCNAME.
Change-Id: I3e142d34287388284a8998ac13761b1e0c2911a5
Reviewed-on: https://go-review.googlesource.com/c/go/+/696895
Reviewed-by: Damien Neil <dneil@google.com>
Auto-Submit... | [
{
"path": "src/net/cgo_unix.go",
"patch": "@@ -351,7 +351,7 @@ func cgoResSearch(hostname string, rtype, class int) ([]dnsmessage.Resource, err\n \n \tvar size int\n \tfor {\n-\t\tsize := _C_res_nsearch(state, (*_C_char)(unsafe.Pointer(s)), class, rtype, buf, bufSize)\n+\t\tsize = _C_res_nsearch(state, (*_C... | 2025-08-18T08:55:40 |
tensorflow/tensorflow | 19a899a5b8475fa9d72fbc16b09c5a90381d7c18 | 8d5f52bc3a386e1acc9f1d2753a291cf7199aade | [XLA:GPU] Make float check more parallel
The goal is to count NaNs/infs/zeros in a buffer of floats, and append
the results to a BufferDebugLog stored in device memory. This used to be
done on a single thread block with poor performance.
This CL changes it to a 2-step process:
1. Do partial accumulation into a tempor... | [
{
"path": "third_party/xla/xla/backends/gpu/runtime/BUILD",
"patch": "@@ -3259,6 +3259,7 @@ cc_library(\n \":thunk_id\",\n \":thunk_pass_pipeline\",\n \"//xla:shape_util\",\n+ \"//xla:util\",\n \"//xla:xla_data_proto_cc\",\n \"//xla:xla_proto_cc\",\n \"... | 2025-12-09T18:07:23 |
swiftlang/swift | 66a3bea341a9faf49e2cb7cefe0c0358e403446d | 6f7766b92af02710d6a9300a8fcd66cf5fa5cc97 | [Swiftify] disable safe interop for ObjC protocols
This removes the swiftifyProtocol function, because it fundamentally
incompatible with our layering. By iterating over the protocol members
of the node we are currently importing, we immediately force all members
to be imported. This can lead to cycles and various har... | [
{
"path": "lib/ClangImporter/ImportDecl.cpp",
"patch": "@@ -5966,8 +5966,6 @@ namespace {\n \n result->setMemberLoader(&Impl, 0);\n \n- Impl.swiftifyProtocol(result);\n-\n return result;\n }\n ",
"additions": 0,
"deletions": 2,
"language": "C++"
},
{
"path": "lib/Cla... | 2026-01-29T04:16:40 |
mrdoob/three.js | 903d50d0458071d9c3324d840c04aed4313c79f9 | 13f24afed22774a99f00ee70fe63548ed573bcb2 | TSL: Respect types in WGSL Layouts (#28669)
* respect types in wgsl layouts
* support all wgsl types in parser
* fix webgpu_compute_texture_pingpong
* cleanup | [
{
"path": "examples/jsm/renderers/webgpu/nodes/WGSLNodeFunction.js",
"patch": "@@ -2,10 +2,43 @@ import NodeFunction from '../../../nodes/core/NodeFunction.js';\n import NodeFunctionInput from '../../../nodes/core/NodeFunctionInput.js';\n \n const declarationRegexp = /^[fn]*\\s*([a-z_0-9]+)?\\s*\\(([\\s\\S]... | 2024-06-17T16:14:24 |
golang/go | ed7f804775725149088a71108efd0b20ef9f206f | a21249436b6e1fd47356361d53dc053bbc074f90 | os: set full name for Roots created with Root.OpenRoot
Set the Name for a Root created within a Root to be the
concatenation of the parent's path and the name used to open the child.
This matches the behavior for files opened within a Root
with Root.Open.
Fixes #73868
Change-Id: Idf4021602ac25556721b7ef6924dec652c7... | [
{
"path": "src/os/root_test.go",
"patch": "@@ -1919,3 +1919,36 @@ func TestRootWriteReadFile(t *testing.T) {\n \t\tt.Fatalf(\"root.ReadFile(%q) = %q, %v; want %q, nil\", name, got, err, want)\n \t}\n }\n+\n+func TestRootName(t *testing.T) {\n+\tdir := t.TempDir()\n+\troot, err := os.OpenRoot(dir)\n+\tif err... | 2025-08-22T17:47:01 |
denoland/deno | b7680dde5ed54ef6c5891db74e196cbfec29407d | f7dfcad2be2c1f2c5905c1794f0a33cff1125b33 | fix(task): `--recursive` - order tasks by package dependencies (#30129)
Closes https://github.com/denoland/deno/issues/29377 | [
{
"path": "cli/tools/task.rs",
"patch": "@@ -99,14 +99,16 @@ pub async fn execute_script(\n let mut packages_task_info: Vec<PackageTaskInfo> = vec![];\n \n let workspace = cli_options.workspace();\n- for folder in workspace.config_folders() {\n+ for (folder_url, folder) in\n+ workspace.co... | 2025-07-17T13:31:58 |
mrdoob/three.js | abbf28a79a6f0a6223a4ecba22401a125c8af77e | dd18c853d33f54e5c525d0b55bff56dda9bb6f1e | Use ImageBitmapLoader in GLTFLoader for Safari >= 17, fixes texture loading in a web worker (#28560) | [
{
"path": "examples/jsm/loaders/GLTFLoader.js",
"patch": "@@ -2580,18 +2580,20 @@ class GLTFParser {\n \t\t// expensive work of uploading a texture to the GPU off the main thread.\n \n \t\tlet isSafari = false;\n+\t\tlet safariVersion = - 1;\n \t\tlet isFirefox = false;\n \t\tlet firefoxVersion = - 1;\n \n ... | 2024-06-15T11:39:37 |
tensorflow/tensorflow | 33c6f22e73c7290bc43d013033bfd539d98b56ba | 13a525b5831ff70f781fe3dd361440c059017464 | Fix use-after-free in PjRtCApiClient
`BufferMemoryLayoutData` and `device_layout_list` should be alive until the return of the api call.
PiperOrigin-RevId: 842271572 | [
{
"path": "third_party/xla/xla/pjrt/c_api_client/pjrt_c_api_client.cc",
"patch": "@@ -1381,30 +1381,33 @@ PjRtCApiClient::CreateBuffersForAsyncHostToDevice(\n PJRT_Client_CreateBuffersForAsyncHostToDevice_Args_STRUCT_SIZE;\n args.extension_start = nullptr;\n args.client = c_client_.get();\n+\n a... | 2025-12-09T17:22:36 |
kubernetes/kubernetes | 2f55207dffd20173c3dd42ab3ad642d49e95429b | aceb89debc2632c5c9956c8b7ef591426a485447 | Fix volume performance tests with performance constraints
Signed-off-by: carlory <baofa.fan@daocloud.io> | [
{
"path": "test/e2e/storage/testsuites/volumeperf.go",
"patch": "@@ -297,11 +297,11 @@ func newPVCWatch(ctx context.Context, f *framework.Framework, provisionCount int\n \t_, controller := cache.NewInformer(\n \t\t&cache.ListWatch{\n \t\t\tListFunc: func(options metav1.ListOptions) (runtime.Object, error) {... | 2025-11-11T03:26:25 |
swiftlang/swift | 1144aa33d4e6480822735513283f668e4f68363e | 501eada8ef620395fd41fe4e982ff2fa5f6ca4a9 | Fix SimplifyCFG::simplifyTryApplyBlock for owned arguments in ossa | [
{
"path": "lib/SILOptimizer/Transforms/SimplifyCFG.cpp",
"patch": "@@ -2594,6 +2594,19 @@ bool SimplifyCFG::simplifyTryApplyBlock(TryApplyInst *TAI) {\n !targetConv.isArgumentIndexOfIndirectErrorResult(i)) {\n continue;\n }\n+ if (Fn.hasOwnership()) {\n+ // If we have an @owned Arg... | 2026-01-27T13:39:34 |
golang/go | f2db0dca0b0399c08319d22cbcbfa83be2bb781a | d86ec924993bfb824dfb6f618a46ea205fdbf261 | net/http/httptest: redirect example.com requests to server
The default server cert used by NewServer already includes example.com
in its DNSNames, and by default, the client's RootCA configuration
means it won't trust a response from the real example.com.
Fixes #31054
Change-Id: I0686977e5ffe2c2f22f3fc09a47ee8ecc447... | [
{
"path": "doc/next/6-stdlib/99-minor/net/http/httptest/31054.md",
"patch": "@@ -0,0 +1,2 @@\n+The HTTP client returned by [Server.Client] will now redirect requests for\n+`example.com` and any subdomains to the server being tested.",
"additions": 2,
"deletions": 0,
"language": "Markdown"
},
... | 2025-04-19T12:50:35 |
denoland/deno | 86456d321b329295efabd6a53fe0cba8c1b3e990 | 874cb8e1ae068859ebecf11aaa34b4235e2040d9 | fix: upgrade deno_core to 0.352.1 (#30119) | [
{
"path": "Cargo.lock",
"patch": "@@ -1851,9 +1851,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_core\"\n-version = \"0.352.0\"\n+version = \"0.352.1\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"f79c49675a4356068f4dfae6513f7e0097e1ee8548c098a68f5bbf9a93330c5... | 2025-07-16T09:39:56 |
mrdoob/three.js | 62fa25e092d9286790f2775ae69742f4680c81d5 | e1d2d07362b6cc6d2a5fd48abbe616f6234a0dde | WebGPURenderer: Enhance GLSL Error in WebGLBackend (#28594)
* add node.outputCode and improve glsl errors in webglbackend
* cleanup
* split PRs | [
{
"path": "examples/jsm/renderers/common/Renderer.js",
"patch": "@@ -133,6 +133,11 @@ class Renderer {\n \t\t\tenabled: false\n \t\t};\n \n+\t\tthis.debug = {\n+\t\t\tcheckShaderErrors: true,\n+\t\t\tonShaderError: null\n+\t\t};\n+\n \t}\n \n \tasync init() {",
"additions": 5,
"deletions": 0,
"l... | 2024-06-14T01:53:32 |
tensorflow/tensorflow | 5d3686aeb72d6b9db120f516419663d62cd28e1c | 10344d0c57913c6abffe86c6dbc5bac8322b19f2 | PR #34812: [ROCm] Add register spilling detection support AMD
Imported from GitHub PR https://github.com/openxla/xla/pull/34812
✨ New Feature
Added register spilling detection support.
🧪 Execution Test
./bazel-7.4.1-linux-x86_64 build //xla/service/gpu/transforms:triton_fusion_numerics_verifier_test
bazel-bin/xla... | [
{
"path": "third_party/xla/third_party/gpus/rocm/BUILD.tpl",
"patch": "@@ -150,9 +150,11 @@ cc_library(\n ],\n \":multiple_rocm_paths\": [\n \"-Wl,-rpath=%{rocm_lib_paths}\",\n+ \"-Lexternal/local_config_rocm/rocm/%{rocm_root}/lib\",\n ],\n \"//conditio... | 2025-12-09T13:00:28 |
golang/go | 9d3f7fda70900c9d311df1eb4656fe9f6d62c781 | 78a05c541f7c5f7b89abac11cff0ff18b029cb47 | crypto/tls: fix quic comment typo
Change-Id: Ibd6b8d10ecac3cdea33de1218d516b7425443313
GitHub-Last-Rev: 3d5568ba087be71f21cf816c5edd9b8b8c629865
GitHub-Pull-Request: golang/go#75092
Reviewed-on: https://go-review.googlesource.com/c/go/+/697575
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gservi... | [
{
"path": "src/crypto/tls/quic.go",
"patch": "@@ -221,7 +221,7 @@ func (q *QUICConn) NextEvent() QUICEvent {\n \tqs := q.conn.quic\n \tif last := qs.nextEvent - 1; last >= 0 && len(qs.events[last].Data) > 0 {\n \t\t// Write over some of the previous event's data,\n-\t\t// to catch callers erroniously retain... | 2025-08-21T01:40:55 |
mrdoob/three.js | 14859920816132413568838f8db3030f5aa63b4e | ff6cdbb6e79615413718c5233a34afc84ceb2040 | USDZLoader: Fix geometry and material parsing. (#28647)
* USDZLoader: Fix index handling in `buildGeometry()`.
* USDZLoader: Fix shader selection in `buildMaterial()`. | [
{
"path": "examples/jsm/loaders/USDZLoader.js",
"patch": "@@ -338,15 +338,27 @@ class USDZLoader extends Loader {\n \n \t\t\tif ( ! data ) return undefined;\n \n-\t\t\tlet geometry = new BufferGeometry();\n+\t\t\tconst geometry = new BufferGeometry();\n+\t\t\tlet indices = null;\n \t\t\tlet uvs = null;\n \n... | 2024-06-13T11:09:16 |
denoland/deno | 141e6aec4ba778933277d83af238effb625986e0 | 2dd8e085e29d6d03000732dd214769aa91bc846c | fix: remove unused functions from jsdocs (#30016)
Fixes #30004 | [
{
"path": "ext/web/06_streams.js",
"patch": "@@ -926,10 +926,9 @@ const RESOURCE_REGISTRY = new SafeFinalizationRegistry((rid) => {\n const _readAll = Symbol(\"[[readAll]]\");\n const _original = Symbol(\"[[original]]\");\n /**\n- * Create a new ReadableStream object that is backed by a Resource that\n- * i... | 2025-07-15T07:35:18 |
kubernetes/kubernetes | 094b1bf01882c363023dc73c863846687f1e0244 | aceb89debc2632c5c9956c8b7ef591426a485447 | fix [sig-node] Container Runtime blackbox test when running a container with a new image [Serial] should be able to pull from private registry with secret [NodeConformance] | [
{
"path": "test/e2e/common/node/runtime.go",
"patch": "@@ -260,11 +260,13 @@ while true; do sleep 1; done\n \n \t\tframework.Context(\"when running a container with a new image\", framework.WithSerial(), func() {\n \t\t\tvar registryAddress string\n+\t\t\tvar registryNodeNames []string\n \t\t\tginkgo.Before... | 2025-11-11T02:31:12 |
tensorflow/tensorflow | 2a5ffea6a109dbb85951060a83187aa8251c3097 | aa5af21c0e39c1a91ed074f846aa8160fd5521af | PR #34806: [ROCm] fix the calling convention for AMD GPU
Imported from GitHub PR https://github.com/openxla/xla/pull/34806
Bugfix: PR #34230 ("argument removal without building prototype") removed the call to **BuildKernelPrototypeFromUniqueName** which internally called **AnnotateFunctionAsGpuKernel** to set the cor... | [
{
"path": "third_party/xla/xla/backends/gpu/codegen/fusion_emitter.cc",
"patch": "@@ -266,10 +266,15 @@ absl::StatusOr<llvm::Function*> RemoveUnusedTritonAbiArguments(\n .getCallee();\n llvm::Function* new_function = static_cast<llvm::Function*>(inserted);\n \n- new_function->setCallingConv(imp... | 2025-12-09T10:48:20 |
mrdoob/three.js | ff6cdbb6e79615413718c5233a34afc84ceb2040 | 6d01823fb46b640890cf81d70d24e976252b9e41 | USDZLoader: Make parsing more spec conform. (#28639)
* USDZLoader: Fix parsing of vertex data when meta data are present.
* USDZLoader: Ensure texture paths are trimmed.
* USDZLoader: Fix normal attribute parsing. | [
{
"path": "examples/jsm/loaders/USDZLoader.js",
"patch": "@@ -52,6 +52,18 @@ class USDAParser {\n \t\t\t\t\ttarget[ lhs ] = group;\n \t\t\t\t\ttarget = group;\n \n+\t\t\t\t} else if ( rhs.endsWith( '(' ) ) {\n+\n+\t\t\t\t\t// see #28631\n+\n+\t\t\t\t\tconst values = rhs.slice( 0, - 1 );\n+\t\t\t\t\ttarget[ ... | 2024-06-13T08:49:07 |
denoland/deno | 2dd8e085e29d6d03000732dd214769aa91bc846c | 489d9bbdcf382bb9a07ba64a9792de6e84033f1b | fix(lint): do not panic for many overlapping lint fixes (#30104) | [
{
"path": "cli/tools/lint/linter.rs",
"patch": "@@ -329,7 +329,7 @@ fn apply_lint_fixes(\n }\n \n let file_start = text_info.range().start;\n- let mut quick_fixes = diagnostics\n+ let quick_fixes = diagnostics\n .iter()\n // use the first quick fix\n .filter_map(|d| d.details.fixes.first()... | 2025-07-14T18:16:44 |
kubernetes/kubernetes | 2c81b6e8adc3a6dbb5d282a90c4960f7d54d0737 | a2dfa0fd7314e5c0c42a64c1855c78c74daeb4b8 | fix: replace BeTrue with BeTrueBecause for better failure message | [
{
"path": "test/e2e/storage/csimock/csi_volume_expansion.go",
"patch": "@@ -39,6 +39,7 @@ import (\n \t\"k8s.io/kubernetes/test/e2e/storage/drivers\"\n \t\"k8s.io/kubernetes/test/e2e/storage/testsuites\"\n \t\"k8s.io/kubernetes/test/e2e/storage/utils\"\n+\tmatchers \"k8s.io/kubernetes/test/e2e/framework/mat... | 2025-11-11T02:29:48 |
mrdoob/three.js | b30715ae263344207b6affc400124d31454160c2 | 4fdc32283d7aa0502889e8bde57221bb4b69feeb | fix storage buffer bound in webglbackend (#28644) | [
{
"path": "examples/jsm/renderers/webgl/WebGLBackend.js",
"patch": "@@ -1086,7 +1086,11 @@ class WebGLBackend extends Backend {\n \n \tcreateStorageAttribute( attribute ) {\n \n-\t\t//console.warn( 'Abstract class.' );\n+\t\tif ( this.has( attribute ) ) return;\n+\n+\t\tconst gl = this.gl;\n+\n+\t\tthis.att... | 2024-06-13T03:07:21 |
tensorflow/tensorflow | bacbd6b4513f2e019a287a89cf5da5e521ff6fe0 | 691f97bdecdb6cba459a9e02b800d673e3abf414 | PR #105775: Bump urllib3 from 2.5.0 to 2.6.0
Imported from GitHub PR https://github.com/tensorflow/tensorflow/pull/105775
Bumps [urllib3](https://github.com/urllib3/urllib3) from 2.5.0 to 2.6.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/urllib3/urllib3/releases">urllib... | [
{
"path": "requirements_lock_3_10.txt",
"patch": "@@ -748,9 +748,9 @@ typing-extensions==4.14.1 \\\n # -r ci/official/requirements_updater/requirements.in\n # optree\n # rich\n-urllib3==2.5.0 \\\n- --hash=sha256:3fc47733c7e419d4bc3f6b3dc2b4f890bb743906a30d56ba4a5bfa4bbff92760 \\\n- -... | 2025-12-08T17:26:48 |
denoland/deno | fc2d149ab4d6568a423ba38653eb05b67829bfbf | e6ffdcb4e9a95c449bd1c74a3246912ffefbc048 | fix(bundle): default "jsxImportSource" to "react" (#30082) | [
{
"path": "Cargo.lock",
"patch": "@@ -1683,9 +1683,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_ast\"\n-version = \"0.48.1\"\n+version = \"0.48.2\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"0ced09fdb8884e29716cc0691e8510f9c655762bbb9da3111dacc0a2ef6e8960\"... | 2025-07-11T16:57:07 |
golang/go | a076f497577605e4cf0e20c147711e03dee7b2c3 | 98238fd495a2a16a2cd90197c6f41352760e4ccb | os: fix Root.MkdirAll to handle race of directory creation
No tests were added, because in order to reproduce, the directory would
have to be created precisely between the rootOpenDir and mkdirat calls,
which is impossible to do in a test.
Fixes #75114
Change-Id: I6f86a5b33c87452c35728318eaf2169a7534ef37
Reviewed-on... | [
{
"path": "src/os/root_openat.go",
"patch": "@@ -131,7 +131,9 @@ func rootMkdirAll(r *Root, fullname string, perm FileMode) error {\n \t\t\tif try > 0 || !IsNotExist(err) {\n \t\t\t\treturn 0, &PathError{Op: \"openat\", Err: err}\n \t\t\t}\n-\t\t\tif err := mkdirat(parent, name, perm); err != nil {\n+\t\t\t... | 2025-08-21T17:03:42 |
mrdoob/three.js | f5cd7570eb5d592ac967edbadee809b9140a1824 | a02afa99bb02fd8b97abf63d67f3d4d7dfe8ea68 | fixes PDBLoader page link for zh (#28626) | [
{
"path": "docs/list.json",
"patch": "@@ -1122,7 +1122,7 @@\n \t\t\t\t\"MTLLoader\": \"examples/zh/loaders/MTLLoader\",\n \t\t\t\t\"OBJLoader\": \"examples/zh/loaders/OBJLoader\",\n \t\t\t\t\"PCDLoader\": \"examples/zh/loaders/PCDLoader\",\n-\t\t\t\t\"PDBLoader\": \"examples/en/loaders/PDBLoader\",\n+\t\t\t... | 2024-06-11T21:58:13 |
swiftlang/swift | 353972b4bb2eac6821bb8065f434212f82751734 | f2958af1c2498d2d4c4768c522b0be8c67da65e4 | Sema: Add regression test for fixed crasher | [
{
"path": "validation-test/Sema/SwiftUI/rdar169041434.swift",
"patch": "@@ -0,0 +1,16 @@\n+// RUN: %target-typecheck-verify-swift -target %target-cpu-apple-macosx10.15\n+// REQUIRES: OS=macosx\n+\n+import SwiftUI\n+\n+struct TestView: View {\n+ @State var angle: Angle = Angle(radians: Double.pi/1.5)\n+ le... | 2026-01-29T00:15:35 |
denoland/deno | 0a01d63080e98d61f03ee3e922ab10e116ac6916 | 76ce7768ab047f4b2c248f619c1db014cee5e785 | fix(ext/node): validate path parameters on `link` and `linkSync` (#30061) | [
{
"path": "ext/node/polyfills/_fs/_fs_link.ts",
"patch": "@@ -1,50 +1,46 @@\n // Copyright 2018-2025 the Deno authors. MIT license.\n \n-// TODO(petamoriken): enable prefer-primordials for node polyfills\n-// deno-lint-ignore-file prefer-primordials\n-\n+import type { Buffer } from \"node:buffer\";\n import... | 2025-07-11T02:35:43 |
tensorflow/tensorflow | cc26e9a554f13dc82985f52ea5f41320389884ca | 9baba425e7bfdd4b20ff35a8526abdf9488fdbba | [XLA:GPU] Keep explanation and location separate in FusionDecision.
Current logic didn't work nicely for streaming operator (<<), because it was concatenating a new location at every call and resulted in unreadable error message.
This change also adds a SourceLocationHolder to limit `#if defined(PLATFORM_GOOGLE)` usa... | [
{
"path": "third_party/xla/xla/service/BUILD",
"patch": "@@ -1977,6 +1977,7 @@ cc_library(\n \"//xla/hlo/ir:hlo\",\n \"//xla/hlo/pass:hlo_pass\",\n \"//xla/tsl/platform:errors\",\n+ \"//xla/tsl/platform:macros\",\n \"@com_google_absl//absl/algorithm:container\",\n ... | 2025-12-08T15:55:34 |
golang/go | 98238fd495a2a16a2cd90197c6f41352760e4ccb | 1ad30844d9cc0d5792b055f44a6e98759587bbfb | all: delete remaining windows/arm code
Fixes #43800
Updates #71671
Change-Id: Ib7aafe3a3f6ae48f23fa23f03103820e9fcf5161
Reviewed-on: https://go-review.googlesource.com/c/go/+/698415
Reviewed-by: Quim Muntal <quimmuntal@gmail.com>
Reviewed-by: Cherry Mui <cherryyz@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped... | [
{
"path": "src/cmd/dist/test.go",
"patch": "@@ -1773,7 +1773,7 @@ func buildModeSupported(compiler, buildmode, goos, goarch string) bool {\n \t\t\t\"ios/amd64\", \"ios/arm64\",\n \t\t\t\"aix/ppc64\",\n \t\t\t\"openbsd/arm64\",\n-\t\t\t\"windows/386\", \"windows/amd64\", \"windows/arm\", \"windows/arm64\":\n... | 2025-08-22T09:49:53 |
mrdoob/three.js | 8a1bacf76caa9750f756798b8501fa4fa41b0a69 | d2c12dfe2df462325fd8152f461565da65090d43 | docs:translation import error (#28619) | [
{
"path": "docs/examples/zh/controls/DragControls.html",
"patch": "@@ -15,7 +15,7 @@ <h1>拖放控制器([name])</h1>\n \t\t该类被用于提供一个拖放交互。\n \t\t</p>\n \n-\t\t<h2>进口</h2>\n+\t\t<h2>引入</h2>\n \n \t\t<p>\n \t\t\t[name] 是一个附加组件,必须显式导入。",
"additions": 1,
"deletions": 1,
"language": "HTML"
}
] | 2024-06-11T14:18:54 |
swiftlang/swift | 30f2e362dd0947a8548bb5b03a9910b2b77460b0 | 0f968df26e93f38feb18f75c1cea63970cdb97f0 | [Backtracing][Test] Fix CrashWithThreads test again (#86819)
Once again unfortunately this test has proved a bit unstable at scale. I think it's best not to assume anything about the backtrace for the "other" threads (that is the threads that aren't either the crashing background thread or the main
thread).
rdar://16... | [
{
"path": "test/Backtracing/CrashWithThreads.swift",
"patch": "@@ -1,4 +1,3 @@\n-// REQUIRES: rdar168895001\n // RUN: %empty-directory(%t)\n // RUN: %target-build-swift %s -Onone -g -o %t/CrashWithThreads\n // RUN: %target-codesign %t/CrashWithThreads\n@@ -115,4 +114,3 @@ while (true) {\n // CHECK: {{0x[0-9... | 2026-01-29T00:04:49 |
kubernetes/kubernetes | aceb89debc2632c5c9956c8b7ef591426a485447 | d777de7741d36d1cc465162d94f39200e299070b | KEP-5471: Extend tolerations operators (#134665)
* Add numeric operations to tolerations
Signed-off-by: Heba Elayoty <heelayot@microsoft.com>
* code review feedback
Signed-off-by: Heba Elayoty <heelayot@microsoft.com>
* add default feature gate
Signed-off-by: Heba Elayoty <heelayot@microsoft.com>
* Add integrati... | [
{
"path": "api/openapi-spec/swagger.json",
"patch": "@@ -12104,7 +12104,7 @@\n \"type\": \"string\"\n },\n \"operator\": {\n- \"description\": \"Operator represents a key's relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equiva... | 2025-11-10T20:42:54 |
tensorflow/tensorflow | 0df3891980edf719f6ff2b3b6f806db84aa3812f | 9baba425e7bfdd4b20ff35a8526abdf9488fdbba | Update default `dtype` description in `ragged_factory_ops.py`
Clarified default `dtype` for `RaggedTensor` when `pylist` is empty. Fixes https://github.com/tensorflow/tensorflow/issues/105858. | [
{
"path": "tensorflow/python/ops/ragged/ragged_factory_ops.py",
"patch": "@@ -61,7 +61,8 @@ def constant(\n compatible with `dtype`.\n dtype: The type of elements for the returned `RaggedTensor`. If not\n specified, then a default is chosen based on the scalar values in\n- `pylist`.\n+... | 2025-12-08T15:53:08 |
denoland/deno | cf441584a411d7dc4626f11396835767d511bc64 | a046f2c1bfa26ed1ca023a14e1598096bee85fc1 | fix(unstable): support importing files in npm packages as bytes and text (#30065) | [
{
"path": "cli/factory.rs",
"patch": "@@ -18,7 +18,6 @@ use deno_error::JsErrorBox;\n use deno_lib::args::CaData;\n use deno_lib::args::get_root_cert_store;\n use deno_lib::args::npm_process_state;\n-use deno_lib::loader::NpmModuleLoader;\n use deno_lib::npm::NpmRegistryReadPermissionChecker;\n use deno_lib... | 2025-07-10T19:06:33 |
Subsets and Splits
Assembly Language GitHub Issues
Retrieves a sample of assembly-language related commits with their details, but doesn't provide meaningful analysis or patterns beyond basic filtering.
Swift Compiler Issues Analysis
Retrieves all training data for the Swift programming language repository, providing basic filtering but offering limited analytical insight beyond identifying relevant code examples.