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 |
|---|---|---|---|---|---|
golang/go | d767064170aa3469404d25608d9ff9fa48962337 | 0b1eed09a34f5a1e0a5c237bc9771eb036b35319 | cmd/compile: mark abi.PtrType.Elem sym as used
CL 700336 let the compiler see into the abi.PtrType.Elem field,
but forgot the MarkTypeSymUsedInInterface to ensure that the symbol
is marked as referenced.
I am not sure how to write a test for this, but I noticed this when
working on further optimizations where I "fixe... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/generic.rules",
"patch": "@@ -2778,10 +2778,10 @@\n (Load <typ.Uintptr> (ITab (IMake (Convert (Addr {s} sb) _) _)) _) && isFixedSym(s, 0) => (Addr {fixedSym(b.Func, s, 0)} sb)\n \n // Loading constant values from abi.PtrType.Elem.\n-(Load <t> (OffPtr [off] ... | 2025-09-05T19:59:33 |
mrdoob/three.js | 312f9c793143b73f808af590c084a33f5d1da359 | 7c3feb8e3098ae8345d3585ef675d8127cbd187a | TSL: BatchNode - Fix BiasNode conflict (#28792)
* TSL: BatchNode fix bias issue
* cleanup | [
{
"path": "src/nodes/accessors/BatchNode.js",
"patch": "@@ -45,7 +45,7 @@ class BatchNode extends Node {\n \t\t\tconst size = textureSize( textureLoad( this.batchMesh._indirectTexture ), 0 );\n \t\t\tconst x = int( id ).remainder( int( size ) );\n \t\t\tconst y = int( id ).div( int( size ) );\n-\t\t\treturn... | 2024-07-03T09:11:33 |
denoland/deno | f00bbe9aad0cfcae93012ed2a426aa6116ea2601 | 2a3605b63cebf5a07c369455be3a6246763c0455 | fix(tsconfig): don't use tsc-compatible defaults for deno.json compiler options (#30242) | [
{
"path": "cli/lsp/compiler_options.rs",
"patch": "@@ -80,7 +80,7 @@ impl LspCompilerOptionsResolver {\n CompilerOptionsType::Check {\n lib: TsTypeLib::DenoWindow,\n },\n- d.defaults,\n+ d.source_kind,\n ... | 2025-07-30T20:24:43 |
tensorflow/tensorflow | 5210e9cd5f4484f21b714e3e2165ee1394beaf54 | 10ef2e94f70d0b57d0fc89cb0f138cf7d8155c78 | Rename the status payload for compilation errors to be compliant to the recommended naming scheme
PiperOrigin-RevId: 843730949 | [
{
"path": "third_party/xla/xla/pjrt/errors.cc",
"patch": "@@ -23,7 +23,7 @@ namespace xla {\n // The payload attached to the absl::Status returned by the compilation\n // service when the compilation fails due to compilation errors.\n inline constexpr absl::string_view kCompilationErrorPayload =\n- \"com... | 2025-12-12T17:53:39 |
mrdoob/three.js | a4766226f9b8b4945db82584634b4fd176bfde1c | 8b141450e6f2920a634dc422dfcd683a809f3c1a | WebGPURenderer: Fix individual bind group cache (#28790) | [
{
"path": "src/nodes/core/NodeBuilder.js",
"patch": "@@ -173,38 +173,17 @@ class NodeBuilder {\n \n \t\tconst bindGroupsCache = this.getBingGroupsCache();\n \n-\t\t// cache individual uniforms group\n+\t\t//\n \n \t\tconst bindingsArray = [];\n \n \t\tlet sharedGroup = true;\n \n \t\tfor ( const binding of ... | 2024-07-03T02:13:11 |
kubernetes/kubernetes | 025b844bcabe0212c4dd56395ee18481602d7c65 | b21dcbcaa1ccf4995bf486afc37dc0321c5bdf0b | restmapper + discovery: add context-aware APIs
The main purpose is to replace context.TODO with a context provided by the
caller. A secondary purpose is to enable contextual logging.
Modifying the existing interfaces and APIs would have a big impact on the
ecosystem. This is a no-go. Instead, the following approach w... | [
{
"path": "staging/src/k8s.io/apimachinery/pkg/api/meta/interfaces.go",
"patch": "@@ -17,6 +17,8 @@ limitations under the License.\n package meta\n \n import (\n+\t\"context\"\n+\n \tmetav1 \"k8s.io/apimachinery/pkg/apis/meta/v1\"\n \t\"k8s.io/apimachinery/pkg/runtime\"\n \t\"k8s.io/apimachinery/pkg/runtime... | 2024-12-06T16:38:06 |
denoland/deno | d9b14f8765b907df71b859282a869de9879ae003 | a20f3219913fa9a0fdb0bb9a66d2638d808f9ce0 | fix(ext/node): use primordials in `ext/node/polyfills/internal_binding/pipe_wrap.ts` (#30241) | [
{
"path": "ext/node/polyfills/internal_binding/pipe_wrap.ts",
"patch": "@@ -24,9 +24,6 @@\n // - https://github.com/nodejs/node/blob/master/src/pipe_wrap.cc\n // - https://github.com/nodejs/node/blob/master/src/pipe_wrap.h\n \n-// TODO(petamoriken): enable prefer-primordials for node polyfills\n-// deno-lin... | 2025-07-30T13:44:29 |
swiftlang/swift | 1852967fcf9561482c4b877db4c83ae6c5a5f95a | 6453800b9366661b4b60d4d5c89a653241a6fdbd | [Caching] Support -const-gather-protocols-file correctly
Previously, const-values output is not supported correctly as it is not
captured correctly as a dependency. The load of the input JSON file is
loaded via file system directly, that can cause issues like:
* False cache hit when the file is changed
* Cannot be pre... | [
{
"path": "include/swift/ConstExtract/ConstExtract.h",
"patch": "@@ -22,7 +22,10 @@\n namespace llvm {\n class StringRef;\n class raw_fd_ostream;\n-}\n+namespace vfs{\n+ class FileSystem;\n+} // namespace vfs\n+} // namespace llvm\n \n namespace swift {\n class SourceFile;\n@@ -36,6 +39,7 @@ namespace swif... | 2026-01-29T21:26:37 |
mrdoob/three.js | 8b141450e6f2920a634dc422dfcd683a809f3c1a | c9136670fbf518e0beb7f9d425f3d6bdcf8618e6 | Transpiler: Fix `shader_toy` example and update `three/tsl` import (#28788) | [
{
"path": "examples/jsm/transpiler/TSLEncoder.js",
"patch": "@@ -501,7 +501,9 @@ ${ this.tab }} )`;\n \n \t\tthis.addImport( 'overloadingFn' );\n \n-\t\treturn `export const ${ name } = /*#__PURE__*/ overloadingFn( [ ${ nodes.map( node => node.name + '_' + nodes.indexOf( node ) ).join( ', ' ) } ] );\\n`;\n+... | 2024-07-02T17:49:27 |
kubernetes/kubernetes | b21dcbcaa1ccf4995bf486afc37dc0321c5bdf0b | 5bcb7599736327cd8c6d23e398002354a6e40f68 | client-go watch: implement interface with pointer
I wasn't entirely sure whether this should return a value or a pointer to
satisfy the interface. Both works, so I benchmarked it elsewhere (REST
mapper). Mem allocs are the same (one alloc/call), but returning a value is 10%
slower when calling one method.
What I then... | [
{
"path": "staging/src/k8s.io/client-go/tools/cache/listwatch.go",
"patch": "@@ -90,7 +90,7 @@ func ToWatcherWithContext(w Watcher) WatcherWithContext {\n \tif w, ok := w.(WatcherWithContext); ok {\n \t\treturn w\n \t}\n-\treturn watcherWrapper{\n+\treturn &watcherWrapper{\n \t\tparent: w,\n \t}\n }\n@@ -99... | 2025-02-13T10:53:16 |
tensorflow/tensorflow | a2d7bc83f6dc59938b438632dd663f41c2837797 | dac03bd184399cc8369fcf3421fc5f08af3b250d | Fix `rocm_trace_test` missing dep and ignoring return value errors
The target wasn't building internally.
PiperOrigin-RevId: 843654566 | [
{
"path": "third_party/xla/xla/backends/profiler/gpu/BUILD",
"patch": "@@ -533,7 +533,8 @@ xla_cc_test(\n \"@com_google_absl//absl/log\",\n \"@com_google_absl//absl/strings:string_view\",\n \"@com_google_googletest//:gtest_main\",\n- \"@local_config_rocm//rocm:hip\",\n+ ... | 2025-12-12T14:02:04 |
golang/go | 0b1eed09a34f5a1e0a5c237bc9771eb036b35319 | f5b20689e9a055223a6dbb6b63f53648ed02cd74 | vendor/golang.org/x/tools: update to a09a2fb
Notably, this includes unitchecker's -fix flag.
Also, fix one vet test that failed due to new diagnostic wording.
Change-Id: I87751083dcd9cc4b1d8dce7d54bb796c745436d0
Reviewed-on: https://go-review.googlesource.com/c/go/+/701195
Reviewed-by: Dmitri Shuralyov <dmitshur@gol... | [
{
"path": "src/cmd/go.mod",
"patch": "@@ -11,7 +11,7 @@ require (\n \tgolang.org/x/sys v0.35.0\n \tgolang.org/x/telemetry v0.0.0-20250807160809-1a19826ec488\n \tgolang.org/x/term v0.34.0\n-\tgolang.org/x/tools v0.36.1-0.20250808220315-8866876b956f\n+\tgolang.org/x/tools v0.36.1-0.20250904192731-a09a2fba1c08... | 2025-09-04T19:29:52 |
denoland/deno | a20f3219913fa9a0fdb0bb9a66d2638d808f9ce0 | 53a2cfccfc43cd20f9363f10f5bea2f0a1481d07 | fix: reduce change of corrupt lockfile error when updating dependencies in the config file (#30239) | [
{
"path": "Cargo.lock",
"patch": "@@ -2296,9 +2296,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_lockfile\"\n-version = \"0.31.0\"\n+version = \"0.31.1\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"7049d4f98783353cd2d49eaf74365d76d1dfc24c8b06392e7c255c0515ba5... | 2025-07-30T00:37:31 |
mrdoob/three.js | 570f72713f0220e69a8e7ac78de6661b8092d26d | 3e8a091b30baf2e4369145789db91127349f1ddb | Node: Add `Lut3DNode`. (#28779)
* Node: Add `Lut3DNode`.
* E2E: Add example to exception list. | [
{
"path": "examples/files.json",
"patch": "@@ -367,6 +367,7 @@\n \t\t\"webgpu_pmrem_equirectangular\",\n \t\t\"webgpu_pmrem_scene\",\n \t\t\"webgpu_portal\",\n+\t\t\"webgpu_postprocessing_3dlut\",\n \t\t\"webgpu_postprocessing_afterimage\",\n \t\t\"webgpu_postprocessing_anamorphic\",\n \t\t\"webgpu_postproc... | 2024-07-01T21:45:07 |
golang/go | 459b85ccaa30bbce4c22b2779672dfe402a2b2da | 87e72769fa74a2ef0bd81a3fd4febe75b8fc6731 | cmd/fix: remove all functionality except for buildtag
For #73605
Change-Id: I4b46b5eb72471c215f2cc208c1b0cdd1fbdbf81a
Reviewed-on: https://go-review.googlesource.com/c/go/+/695855
Reviewed-by: Michael Matloob <matloob@golang.org>
Reviewed-by: Michael Pratt <mpratt@google.com>
Reviewed-by: Alan Donovan <adonovan@googl... | [
{
"path": "src/cmd/fix/cftype.go",
"patch": "@@ -6,9 +6,6 @@ package main\n \n import (\n \t\"go/ast\"\n-\t\"go/token\"\n-\t\"reflect\"\n-\t\"strings\"\n )\n \n func init() {\n@@ -18,130 +15,11 @@ func init() {\n var cftypeFix = fix{\n \tname: \"cftype\",\n \tdate: \"2017-09-27\",\n-\tf: cfty... | 2025-08-13T14:33:14 |
kubernetes/kubernetes | ac90e6a809acad797a5f5bb8b1e6625a94a13a72 | 5bcb7599736327cd8c6d23e398002354a6e40f68 | Fix: Check defaultBackend in allowRelaxedServiceNameValidation
The allowRelaxedServiceNameValidation() function currently only checks
service names in spec.rules, but it should also check the service name
in spec.defaultBackend.
When an Ingress has a defaultBackend with a service name that is valid
per RFC 1123 but i... | [
{
"path": "pkg/apis/networking/validation/validation.go",
"patch": "@@ -707,7 +707,20 @@ func allowRelaxedServiceNameValidation(oldIngress *networking.Ingress) bool {\n \tif oldIngress == nil {\n \t\treturn false\n \t}\n-\t// If feature gate is disabled, check if any service names in the old Ingresss\n+\n+\... | 2025-11-24T12:19:49 |
denoland/deno | 8551e18d72698e55e0d12e1bf89fcdfc66694730 | c70e713b5b4277599fda7b74a59a71962d4d846b | fix(http): catch more tunnel close errors (#30236)
Handles more error cases when tunnels close. this logic got super nasty to do as nested if statements, so i added recursion >:) | [
{
"path": "Cargo.lock",
"patch": "@@ -947,7 +947,7 @@ dependencies = [\n \"chrono\",\n \"deno_bench_util\",\n \"deno_cache_dir\",\n- \"deno_lockfile 0.30.2\",\n+ \"deno_lockfile\",\n \"deno_semver\",\n \"deno_terminal 0.2.2\",\n \"deno_tower_lsp\",\n@@ -1565,14 +1565,14 @@ dependencies = [\n \"deno_g... | 2025-07-29T21:37:04 |
golang/go | 9d0829963ccab19093c37f21cfc35d019addc78a | ddce0522bee36764c3b9529b8584c3d5b53c5dac | net/http: fix cookie value of "" being interpreted as empty string.
In issue #46443, we have established that double-quotes in cookie values
should be kept as part of the value, rather than being discarded.
However, we have missed the edge case of "" until now. This CL fixes
said edge case.
Fixes #75244
Change-Id: I... | [
{
"path": "src/net/http/cookie.go",
"patch": "@@ -459,9 +459,6 @@ func sanitizeCookieName(n string) string {\n // See https://golang.org/issue/7243 for the discussion.\n func sanitizeCookieValue(v string, quoted bool) string {\n \tv = sanitizeOrWarn(\"Cookie.Value\", validCookieValueByte, v)\n-\tif len(v) =... | 2025-09-03T18:25:59 |
mrdoob/three.js | 08d5412aa0bc5fe74c2f7b0305d6f5570e50961e | 18895132c1348bcb4719fed1bef99bb0314060af | TSL: Introduce `node.toTexture()` and `rtt()` (#28773)
* TextureNode: Fix analyze reference
* Add RTTNode
* rgbShift: add `.toTexture()` and updated example
* Update GaussianBlurNode.js
* add procedural texture
* Update AnamorphicNode.js
* update imports
* update build for now
* update build
... | [
{
"path": "build/three.webgpu.js",
"patch": "@@ -42137,6 +42137,7 @@ class TextureNode extends UniformNode {\n \tsetup( builder ) {\n \n \t\tconst properties = builder.getNodeProperties( this );\n+\t\tproperties.referenceNode = this.referenceNode;\n \n \t\t//\n \n@@ -45830,7 +45831,7 @@ const viewportBottom... | 2024-07-01T09:08:48 |
kubernetes/kubernetes | 98276e88eabb6d9bc6b330599280a1bc932b77b3 | 8d450ef773127374148abad4daaf28dac6cb2625 | cbor: bump limits
with the current established limits we can see the following error:
```
failed to list <object>: unable to determine group/version/kind: cbor:
exceeded max number of elements 1024 for CBOR array.
``` | [
{
"path": "staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/decode.go",
"patch": "@@ -58,12 +58,18 @@ var decode cbor.DecMode = func() cbor.DecMode {\n \t\t// with or without tagging. If a tag number is present, it must be valid.\n \t\tTimeTag: cbor.DecTagOptional,\n \n-\t\t// Obse... | 2025-11-18T14:21:36 |
denoland/deno | 45ebe72e59a7f662d1eeb2c7eaf5e62c90e5dc44 | 22d1d98af3e3ba47cc56e4410c5d3c9ef5a9ef31 | fix: ensure coverage dir is stored absolute to prevent issues when cwd changes (#30225) | [
{
"path": "cli/args/mod.rs",
"patch": "@@ -928,18 +928,18 @@ impl CliOptions {\n &self.flags.ca_stores\n }\n \n- pub fn coverage_dir(&self) -> Option<String> {\n+ pub fn coverage_dir(&self) -> Option<PathBuf> {\n match &self.flags.subcommand {\n DenoSubcommand::Test(test) => test\n ... | 2025-07-29T15:57:58 |
swiftlang/swift | d07f031929bd8743bdeaea018d1255b9b244db7f | 124053a0e1e4e8541c747799eb62416fb472da07 | Updates tests for lifetime diagnostic:
error: cannot copy the lifetime of an Escapable type
note: use '@_lifetime(borrow arg)' instead | [
{
"path": "test/Sema/lifetime_attr.swift",
"patch": "@@ -104,17 +104,20 @@ func inoutLifetimeDependence(_ ne: inout NE) -> NE {\n ne\n }\n \n-@_lifetime(copy k) // expected-error{{cannot copy the lifetime of an Escapable type, use '@_lifetime(&k)' instead}}\n+@_lifetime(copy k) // expected-error{{cannot c... | 2026-01-29T20:55:53 |
golang/go | 00b8474e47a1f0381170734604a7ce8123d7146d | e36c5aead681d8264f1fac725f2a15c1ca2b895a | cmd/trace: don't filter events for profile by whether they have stack
Right now the profile-from-trace code blindly discards events that don't
have a stack, but this means it can discard 'end' events for goroutine
time ranges that don't have stacks, like when a goroutine exits a
syscall. This means we drop stack sampl... | [
{
"path": "src/cmd/trace/pprof.go",
"patch": "@@ -153,10 +153,6 @@ func makeComputePprofFunc(state trace.GoState, trackReason func(string) bool) co\n \t\t\tif ev.Kind() != trace.EventStateTransition {\n \t\t\t\tcontinue\n \t\t\t}\n-\t\t\tstack := ev.Stack()\n-\t\t\tif stack == trace.NoStack {\n-\t\t\t\tcont... | 2025-08-07T18:53:00 |
mrdoob/three.js | af4898d83d7404678232b26013ee8b0d9771209a | 9d5853b585b02db19d7c4dffe3d59e244da0b50d | Node: Add `FilmNode`. (#28770)
* Node: Add `FilmNode`.
* E2E: Update screenshot.
* FilmNode: Fix grayscale, use `intensityNode`.
* E2E: Add example to exception list.
* Update FilmNode.js
* cleanup
* E2E: Update screenshot.
* Update FilmNode.js
---------
Co-authored-by: sunag <sunagbrasil@gm... | [
{
"path": "examples/misc_controls_fly.html",
"patch": "@@ -30,7 +30,8 @@\n \t\t<script type=\"importmap\">\n \t\t\t{\n \t\t\t\t\"imports\": {\n-\t\t\t\t\t\"three\": \"../build/three.module.js\",\n+\t\t\t\t\t\"three\": \"../build/three.webgpu.js\",\n+\t\t\t\t\t\"three/tsl\": \"../build/three.webgpu.js\",\n \... | 2024-06-30T21:52:38 |
denoland/deno | 22d1d98af3e3ba47cc56e4410c5d3c9ef5a9ef31 | 5a84806e9ece9ddce50b0349213824658f15d0a0 | fix: use 'deno_signals' crate for signal handling (#30204)
Follow up to https://github.com/denoland/deno/pull/30029.
Definition of signal numbers/names were moved from `ext/os` to
`ext/signals`.
All occurrences of `tokio::signal` API were replaced with helpers from
`deno_signals` helpers. Additionally clippy lints w... | [
{
"path": "Cargo.lock",
"patch": "@@ -1576,6 +1576,7 @@ dependencies = [\n \"deno_resolver\",\n \"deno_runtime\",\n \"deno_semver\",\n+ \"deno_signals\",\n \"deno_snapshots\",\n \"deno_subprocess_windows\",\n \"deno_task_shell\",\n@@ -2715,6 +2716,7 @@ dependencies = [\n \"deno_os\",\n \"deno_path_u... | 2025-07-29T13:00:46 |
mrdoob/three.js | d7f8eb282529c29e8395753c76ffe343c7add5b8 | 15bb480ee96d259b7a905d55914284b1c3bd7b6d | fix example with new webgpu build (#28766) | [
{
"path": "examples/webgpu_refraction.html",
"patch": "@@ -15,19 +15,17 @@\n \t\t<script type=\"importmap\">\n \t\t\t{\n \t\t\t\t\"imports\": {\n-\t\t\t\t\t\"three\": \"../build/three.module.js\",\n-\t\t\t\t\t\"three/addons/\": \"./jsm/\",\n-\t\t\t\t\t\"three/nodes\": \"./jsm/nodes/Nodes.js\"\n+\t\t\t\t\t\"... | 2024-06-30T13:03:52 |
golang/go | e36c5aead681d8264f1fac725f2a15c1ca2b895a | 150fae714eb2bcf0a5fb216ac0e5c7fd76f37e02 | log/slog: add multiple handlers support for logger
Fixes #65954
Change-Id: Ib01c6f47126ce290108b20c07479c82ef17c427c
GitHub-Last-Rev: 34a36ea4bf099b2ad30f35e639155853ff73ef46
GitHub-Pull-Request: golang/go#74840
Reviewed-on: https://go-review.googlesource.com/c/go/+/692237
LUCI-TryBot-Result: Go LUCI <golang-scoped@l... | [
{
"path": "api/next/65954.txt",
"patch": "@@ -0,0 +1,6 @@\n+pkg log/slog, func NewMultiHandler(...Handler) *MultiHandler #65954\n+pkg log/slog, method (*MultiHandler) Enabled(context.Context, Level) bool #65954\n+pkg log/slog, method (*MultiHandler) Handle(context.Context, Record) error #65954\n+pkg log/slo... | 2025-08-27T14:27:31 |
swiftlang/swift | 124053a0e1e4e8541c747799eb62416fb472da07 | 21fbc94a7526dc701384487661e3a4551d9fda2f | Prepare for strict enforcement of conditionally Escapable
The only intended functional change is that a diagnostic message is split into
an error and a note:
error: cannot copy the lifetime of an Escapable type
note: use '@_lifetime(borrow arg)' instead
Reorganize the LifetimeDependenceChecker to support add... | [
{
"path": "include/swift/AST/DiagnosticsSema.def",
"patch": "@@ -8460,9 +8460,7 @@ ERROR(lifetime_dependence_function_type, none,\n ERROR(lifetime_dependence_immortal_alone, none,\n \"cannot specify any other dependence source along with immortal\", ())\n ERROR(lifetime_dependence_invalid_inherit_esca... | 2026-01-29T20:44:58 |
kubernetes/kubernetes | 392bb8e77723f3b53b065e06ca5014facc439481 | b4b973c23757b28d1753c0803f85dfb655d905f1 | Refactor API group validation and error reporting
Updated API group validation logic to improve error reporting.
The Validate method now provides more descriptive error messages
when unknown API groups are encountered.
Unit test cases are updated to match the new error messages.
Co-authored-by: Jordan Liggitt <jordan... | [
{
"path": "staging/src/k8s.io/apiserver/pkg/server/options/api_enablement.go",
"patch": "@@ -22,6 +22,7 @@ import (\n \n \t\"github.com/spf13/pflag\"\n \n+\t\"k8s.io/apimachinery/pkg/util/sets\"\n \t\"k8s.io/apiserver/pkg/server\"\n \t\"k8s.io/apiserver/pkg/server/resourceconfig\"\n \tserverstore \"k8s.io/a... | 2025-11-12T08:52:17 |
denoland/deno | 5a84806e9ece9ddce50b0349213824658f15d0a0 | 85d342c045a9887e74b10d4eb409129333c4f7b7 | fix: don't invoke `Proxy` getter trap on `console.log` (#30230)
Proxy traps should never be invoked on `console.log()`. This PR aligns
Deno's behaviour with other runtimes like Chrome, Firefox and Node. This
fixes the linked issue where it wasn't possible to call `console.log()`
on vite's module graph without an error... | [
{
"path": "ext/console/01_console.js",
"patch": "@@ -634,7 +634,10 @@ function formatRaw(ctx, value, recurseTimes, typedArray, proxyDetails) {\n protoProps = undefined;\n }\n \n- let tag = value[SymbolToStringTag];\n+ let tag;\n+ if (!proxyDetails) {\n+ tag = value[SymbolToStringTag];\n+ }\n ... | 2025-07-29T11:45:12 |
tensorflow/tensorflow | 7bb18b14ae07287896747b429eda92ec0c026997 | a13231ac06b24ecf058a5898c07d3ed553ceadca | [XLA] Fix ASSERT_OK_AND_ASSIGN macro in patch
PiperOrigin-RevId: 843607123 | [
{
"path": "third_party/xla/third_party/googletest/0001-Add-ASSERT_OK-EXPECT_OK-ASSERT_OK_AND_ASSIGN-macros.patch",
"patch": "@@ -1,4 +1,4 @@\n-From 925be4390f717899f3e825abe6e9a0548f0630e4 Mon Sep 17 00:00:00 2001\n+From 5c2d2d62a71fe19c92c6f807d533c0ea90c15f03 Mon Sep 17 00:00:00 2001\n From: Marcin Radoms... | 2025-12-12T11:04:44 |
golang/go | b8cc907425c4b851d2b941cf689cf8177ea8a153 | 8c27a808905b0611b0a7b7bbff08819206be3b86 | cmd/internal/obj/loong64: fix the usage of offset in the instructions [X]VLDREPL.{B/H/W/D}
The previously defined usage of offset was ambiguous and not easy to understand.
For example, to fetch 4 bytes of data from the address base+8 and
broadcast it to each word element of vector register V5, the assembly
implementat... | [
{
"path": "src/cmd/asm/internal/asm/testdata/loong64enc1.s",
"patch": "@@ -538,13 +538,29 @@ lable2:\n \n \t// Load data from memory and broadcast to each element of a vector register: VMOVQ offset(Rj), <Vd>.<T>\n \tVMOVQ\t\t(R4), V0.B16\t// 80008030\n-\tVMOVQ\t\t1(R4), V1.H8\t// 81044030\n-\tVMOVQ\t\t2(... | 2025-08-29T08:20:16 |
denoland/deno | e46ee17edc27f58317748cf17393b9b6c64102fe | 4636737e8808fb514206aae408792a00176288f3 | fix(publish): improve diagnostic when importing from another package using a relative import (#30203) | [
{
"path": "cli/tools/publish/diagnostics.rs",
"patch": "@@ -88,6 +88,11 @@ impl PublishDiagnosticsCollector {\n }\n }\n \n+pub struct RelativePackageImportDiagnosticReferrer {\n+ pub text_info: SourceTextInfo,\n+ pub referrer: deno_graph::Range,\n+}\n+\n pub enum PublishDiagnostic {\n FastCheck(FastCh... | 2025-07-29T11:11:28 |
kubernetes/kubernetes | cc5ec714c1fc724879bc7fe7ff90e6b48514352a | 4cf195304caa519be476b367267f6c656bce19f7 | fix(SchedulerPreemption/Async): schedule all medium priority pods first so all low priority pods can be preempted
If not all medium priority pods are allowed to preempt low priority pods
first the high priority pods may occupy the low priority spot and
disallow medium priority pods to preempt all low priority pods. Th... | [
{
"path": "test/e2e/scheduling/preemption.go",
"patch": "@@ -375,7 +375,7 @@ var _ = SIGDescribe(\"SchedulerPreemption\", framework.WithSerial(), func() {\n \t\thighPriorityPods := make([]*v1.Pod, 0, 5*nodeListLen)\n \t\tmediumPriorityPods := make([]*v1.Pod, 0, 10*nodeListLen)\n \n-\t\tginkgo.By(\"Run high/... | 2025-11-20T16:03:22 |
tensorflow/tensorflow | ccd3917bab768c842f017a131b222788f6b9c710 | 2817085d03d119181d4a8091957e7f49841028f1 | [StableHLO optim] Fix issue in compare folder
PiperOrigin-RevId: 843390028 | [
{
"path": "third_party/xla/third_party/stablehlo/temporary.patch",
"patch": "@@ -703,6 +703,31 @@ diff --ruN a/stablehlo/stablehlo/tests/ops_stablehlo_roundtrip.mlir b/stablehlo/\n func.return %0 : tensor<16x16xf32>\n }\n \n+diff --ruN a/stablehlo/stablehlo/tests/transforms/stablehlo_aggressive_folder.... | 2025-12-11T23:04:42 |
mrdoob/three.js | 2c13adcb7d526853439f7c19bd8882f41da7fb83 | 6e663439939042ba7cf04c59e57d1643cad5f706 | WebGPURenderer: Build - `three.webgpu.js` (#28650)
* webgpu build
* revision
* cleanup
* Restore USDZLoader
* update
* puppeteer: added `three.webgpu` build support
* update IESSpotLight
* move to src and revision
* cleanup
* fix test-circular-deps test
* fix lint
* revision
* clean... | [
{
"path": "examples/jsm/lines/webgpu/Line2.js",
"patch": "@@ -0,0 +1,20 @@\n+import { LineSegments2 } from './LineSegments2.js';\n+import { LineGeometry } from '../LineGeometry.js';\n+\n+import { Line2NodeMaterial } from 'three';\n+\n+class Line2 extends LineSegments2 {\n+\n+\tconstructor( geometry = new Li... | 2024-06-30T09:27:28 |
golang/go | b7c20413c5b78b7dfc7f7de52f333a8ca85cd55b | df290384864c0b3cbb557ef11fc95a29d52f6aca | runtime: remove obsolete osArchInit function
The osArchInit function was introduced as a workaround for a Linux kernel bug
that corrupted vector registers on x86 CPUs during signal delivery.
The bug was introduced in Linux 5.2 and fixed in 5.3.15, 5.4.2, and all 5.5 and later kernels.
The fix was also back-ported by m... | [
{
"path": "src/runtime/os_freebsd_riscv64.go",
"patch": "@@ -1,7 +0,0 @@\n-// Copyright 2022 The Go Authors. All rights reserved.\n-// Use of this source code is governed by a BSD-style\n-// license that can be found in the LICENSE file.\n-\n-package runtime\n-\n-func osArchInit() {}",
"additions": 0,
... | 2025-09-03T14:15:06 |
denoland/deno | a941d3ff2317c3d536adee20c7c873d271723d72 | 5cfe47abc3b0538b4f7f315fcf113232623069a3 | fix(ext/node): validate `fd` is integer on `fsync` and `fdatasync` (#30215) | [
{
"path": "ext/node/polyfills/_fs/_fs_fdatasync.ts",
"patch": "@@ -1,24 +1,28 @@\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 { CallbackWithError } from \"ext:deno_nod... | 2025-07-28T15:01:00 |
swiftlang/swift | cafb8bba51b363b3133bbece781053fa4a9f204f | 15e6fc5cbb2d872d9f6474e2eae3f61f6780835e | [IRGenSIL][NFC] Remove old DebugInfo workaround that is no longer needed
SILDebugScopes should now be properly serialized. | [
{
"path": "lib/IRGen/IRGenSIL.cpp",
"patch": "@@ -2829,15 +2829,6 @@ void IRGenSILFunction::setupDebugLocationFor(SILInstruction &I,\n DS = BB->getTerminator()->getDebugScope();\n }\n \n- // Until SILDebugScopes are properly serialized, bare functions\n- // are allowed to not have a scope.\n- if (!... | 2026-01-28T11:31:52 |
kubernetes/kubernetes | 71c25c3a552539de503e910c570c6a194647e46a | 4cf195304caa519be476b367267f6c656bce19f7 | Fix apiserver_watch_events_sizes metric.
This metric got broken by caching efforts -- the value is counted only once. | [
{
"path": "staging/src/k8s.io/apiserver/pkg/endpoints/handlers/response.go",
"patch": "@@ -36,7 +36,6 @@ import (\n \t\"k8s.io/apimachinery/pkg/watch\"\n \t\"k8s.io/apiserver/pkg/endpoints/handlers/negotiation\"\n \t\"k8s.io/apiserver/pkg/endpoints/handlers/responsewriters\"\n-\t\"k8s.io/apiserver/pkg/endpo... | 2025-11-20T12:02:37 |
tensorflow/tensorflow | 17d6e98b76810250de1b626c16607f5189137a52 | a32a58016e73281abdb21aa091b0e9f2461211af | [XLA:Original Value] Propagate OriginalValue in WhileLoopSimplifier when removing constant loop-carried values.
When constant tuple elements are removed from a while loop's loop-carried values, update the `OriginalValue` trees for the modified tuples (init, body root, cond root) and the new while instruction to reflec... | [
{
"path": "third_party/xla/xla/service/while_loop_simplifier.cc",
"patch": "@@ -875,7 +875,8 @@ static absl::StatusOr<bool> TryRemoveConstantParams(HloInstruction* while_op) {\n };\n \n // Returns a new tuple without the elements of constant_tuple_indices.\n- auto remove_constant_elems = [&](HloInstruc... | 2025-12-11T21:39:03 |
mrdoob/three.js | 6e663439939042ba7cf04c59e57d1643cad5f706 | 3b935a419569f497bcc99dd8ef698a938581d343 | Examples: Add `webgpu_refraction`. (#28761)
* Node: Add `RefractorNode`.
* E2E: Add example to exception list.
* Examples: Simplify refraction demo.
* Move verticalRefractor to backdropNode
--------- | [
{
"path": "examples/files.json",
"patch": "@@ -373,6 +373,7 @@\n \t\t\"webgpu_postprocessing_sobel\",\n \t\t\"webgpu_postprocessing\",\n \t\t\"webgpu_reflection\",\n+\t\t\"webgpu_refraction\",\n \t\t\"webgpu_rtt\",\n \t\t\"webgpu_sandbox\",\n \t\t\"webgpu_shadertoy\",",
"additions": 1,
"deletions": ... | 2024-06-30T04:30:52 |
golang/go | df290384864c0b3cbb557ef11fc95a29d52f6aca | 4373754bc990fc13b27ae823f977bc6328cc331e | cmd/compile/internal/ssa: load constant values from abi.PtrType.Elem
This CL makes the generated code for reflect.TypeFor as simple as an
intrinsic function.
Fixes #75203
Change-Id: I7bb48787101f07e77ab5c583292e834c28a028d6
Reviewed-on: https://go-review.googlesource.com/c/go/+/700336
LUCI-TryBot-Result: Go LUCI <go... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/generic.rules",
"patch": "@@ -2767,6 +2767,22 @@\n (Load <typ.Uintptr> (OffPtr [off] (ITab (IMake (Addr {s} sb) _))) _) && isFixedSym(s, off) => (Addr {fixedSym(b.Func, s, off)} sb)\n (Load <typ.Uintptr> (OffPtr [off] (ITab (IMake (Convert (Addr {s} ... | 2025-09-01T10:31:29 |
denoland/deno | 5cfe47abc3b0538b4f7f315fcf113232623069a3 | 4bff6cda525fd29b5306390830e99846a12a7ba5 | fix(ext/node): use Zlib base for brotli handles (#30112)
Fixes #28507
Closes https://github.com/denoland/deno/issues/28836
```
$ ../deno/target/debug/deno run -A npm:pnpm i --save yargs
Packages: +297
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Progress:... | [
{
"path": "Cargo.toml",
"patch": "@@ -147,7 +147,7 @@ base64 = \"0.22.1\"\n base64-simd = \"0.8\"\n bencher = \"0.1\"\n boxed_error = \"0.2.3\"\n-brotli = \"6.0.0\"\n+brotli = { version = \"6.0.0\", features = [\"ffi-api\"] }\n bytemuck = \"1.17.1\"\n bytes = \"1.4.0\"\n cache_control = \"=0.2.0\"",
"ad... | 2025-07-28T04:41:59 |
swiftlang/swift | 15e6fc5cbb2d872d9f6474e2eae3f61f6780835e | 559d9e5b506b3cc75bbd906b90a34ca61bfdc4f2 | [IRGenSIL][NFCI] Further simplify DebugInfo location logic
When lowering an instruction, the intended logic seems to be:
1. If `I` does not contains a cleanup location, use that.
2. If `I` has a cleanup location, but there are other "normal" locations
afterwards, use the previous instruction location to avoid jump... | [
{
"path": "lib/IRGen/IRGenSIL.cpp",
"patch": "@@ -1209,7 +1209,7 @@ class IRGenSILFunction :\n bool shouldUseDispatchThunk(SILDeclRef method);\n \n void visitSILBasicBlock(SILBasicBlock *BB);\n- bool setupDebugLocationFor(SILInstruction &I, bool OldKeepCurrentLocation);\n+ void setupDebugLocationFor(S... | 2026-01-26T16:53:39 |
kubernetes/kubernetes | 9dc5683c565437cab6416d9eea72844e6ea87386 | 54900791c46f14fdd009102275e05e3510adc474 | scheduler: Fix memory leak in scheduler cache
The `removeSlice` function was leaving behind references to the
removed element, preventing it from being garbage-collected.
This commit ensures that removed entries are fully cleared,
eliminating the memory leak.
Co-authored-by: ravisastryk <ravisastryk@gmail.com>
Signed... | [
{
"path": "pkg/scheduler/framework/plugins/defaultpreemption/default_preemption.go",
"patch": "@@ -235,9 +235,11 @@ func (pl *DefaultPreemption) SelectVictimsOnNode(\n \tfor _, pi := range nodeInfo.GetPods() {\n \t\tif pl.isPreemptionAllowed(nodeInfo, pi, pod) {\n \t\t\tpotentialVictims = append(potentialVi... | 2025-08-07T03:15:44 |
mrdoob/three.js | 3b935a419569f497bcc99dd8ef698a938581d343 | 2492ea8e153f7badbd3937d4dafab7b362d65b86 | SimplifyModifier: Fix missing import (#28763) | [
{
"path": "examples/jsm/modifiers/SimplifyModifier.js",
"patch": "@@ -1,5 +1,6 @@\n import {\n \tBufferGeometry,\n+\tColor,\n \tFloat32BufferAttribute,\n \tVector2,\n \tVector3,\n@@ -81,7 +82,7 @@ class SimplifyModifier {\n \n \t\t\tif ( colorAttribute ) {\n \n-\t\t\t\tcol = new THREE.Color().fromBufferAttr... | 2024-06-29T20:39:24 |
golang/go | 80038586ed2814a03dcb95cd6f130766f8d803c3 | 91e76a513bdfa4159ea0aa65a01f89e006e6ead3 | cmd/compile: export to DWARF types only referenced through interfaces
Delve and viewcore use DWARF type DIEs to display and explore the
runtime value of interface variables.
This has always been slightly problematic since the runtime type of an
interface variable might only be reachable through interfaces and thus
be ... | [
{
"path": "src/cmd/compile/internal/dwarfgen/dwarf.go",
"patch": "@@ -128,14 +128,29 @@ func Info(ctxt *obj.Link, fnsym *obj.LSym, infosym *obj.LSym, curfn obj.Func) (s\n \t// already referenced by a dwarf var, attach an R_USETYPE relocation to\n \t// the function symbol to insure that the type included in ... | 2025-08-18T13:49:50 |
tensorflow/tensorflow | adc9ab4117fe1ebdc85964c2c7e141e0088f4035 | 5e534dd15d0287afcb5d08b04192896dfc4d5eb1 | Fix replicated execution defaults in HloRunnerPjRt.
PiperOrigin-RevId: 843293521 | [
{
"path": "third_party/xla/xla/service/BUILD",
"patch": "@@ -4536,6 +4536,7 @@ cc_library(\n \"@com_google_absl//absl/container:flat_hash_set\",\n \"@com_google_absl//absl/functional:any_invocable\",\n \"@com_google_absl//absl/log\",\n+ \"@com_google_absl//absl/log:check\",\n ... | 2025-12-11T18:57:53 |
denoland/deno | 5304748e3d1737b06aed0a9ab4af6c5b11e102de | 926717d3e9f4c599bbd0f92b352d22976230bf3d | fix: update setTimeout and setInterval callback type to support strin… (#30183)
This PR updates the type definitions for `setTimeout` and `setInterval`
in `lib.deno.shared_globals.d.ts` to accept both a string and a function
as the callback, matching the DOM standard and Deno's runtime behavior.
Previously, the types... | [
{
"path": "cli/tsc/dts/lib.deno.shared_globals.d.ts",
"patch": "@@ -361,11 +361,8 @@ declare namespace WebAssembly {\n * @category Platform\n */\n declare function setTimeout(\n- /** callback function to execute when timer expires */\n- cb: (...args: any[]) => void,\n- /** delay in ms */\n+ cb: string... | 2025-07-26T08:43:05 |
mrdoob/three.js | 558daad8454fddb792fa23c757c96b5541f8e298 | 0286e813d01f8ba7e698d3aabf408fe748416f13 | SSAOPass: Fix debug output. (#28762) | [
{
"path": "examples/jsm/postprocessing/SSAOPass.js",
"patch": "@@ -202,29 +202,29 @@ class SSAOPass extends Pass {\n \n \t\t\t\tthis.copyMaterial.uniforms[ 'tDiffuse' ].value = this.ssaoRenderTarget.texture;\n \t\t\t\tthis.copyMaterial.blending = NoBlending;\n-\t\t\t\tthis.renderPass( renderer, this.copyMat... | 2024-06-29T16:07:18 |
swiftlang/swift | 559d9e5b506b3cc75bbd906b90a34ca61bfdc4f2 | 2243cf1a788fb7103f13ff022ffeb90ef839b945 | [DebugInfo] Fix return debug location of borrowing accessor's second funclet
When the main IRGenSIL loop decides to use the previous instruction's
location, it does so by emitting a compiler generated location. This is
creating an issue where the return address of a borrowing accessor is
landing on such a cleanup loca... | [
{
"path": "lib/IRGen/IRGenSIL.cpp",
"patch": "@@ -2849,17 +2849,9 @@ bool IRGenSILFunction::setupDebugLocationFor(SILInstruction &I,\n \n if (DS && !KeepCurrentLocation)\n IGM.DebugInfo->setCurrentLoc(Builder, DS, ILoc);\n- else {\n- // Reuse the last scope for an easier-to-read line table.\n- ... | 2026-01-23T16:06:46 |
kubernetes/kubernetes | 04eb121d32e7b9d788555a43a8952e777cf519f0 | 854e67bb51e177b4b9c012928d8271704e9cb80d | Fix failing scheduler_perf test cases that don't set any feature gate | [
{
"path": "test/integration/scheduler_perf/scheduler_perf.go",
"patch": "@@ -1168,13 +1168,9 @@ func setupTestCase(t testing.TB, tc *testCase, featureGates map[featuregate.Feat\n }\n \n func featureGatesMerge(src map[featuregate.Feature]bool, overrides map[featuregate.Feature]bool) map[featuregate.Feature]b... | 2025-11-14T08:27:44 |
golang/go | e8f9127d1f47ea9cf252237d387ea61d17651c3e | 731e54616686889146c579317c7d1715c85a8505 | net/netip: export Prefix.Compare, fix ordering
Fixes #61642
Co-authored-by: David Anderson <dave@natulte.net>
Change-Id: I54795763bdc5f62da469c2ae20618c36b64396f3
Reviewed-on: https://go-review.googlesource.com/c/go/+/700355
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Rev... | [
{
"path": "api/next/61642.txt",
"patch": "@@ -0,0 +1 @@\n+pkg net/netip, method (Prefix) Compare(Prefix) int #61642",
"additions": 1,
"deletions": 0,
"language": "Plain Text"
},
{
"path": "doc/next/6-stdlib/99-minor/net/netip/61642.md",
"patch": "@@ -0,0 +1 @@\n+The new [Prefix.Compa... | 2025-09-02T07:44:42 |
tensorflow/tensorflow | 9a6ae99708e9d13d4562c090508d0e789aee236d | b67559d7326c68972ad666929be6d6a5fdcd1955 | PR #35138: [ROCm] Fix rocm build due to inverted condition
Imported from GitHub PR https://github.com/openxla/xla/pull/35138
📝 Summary of Changes
Looks there is invalid check introduced in this commit:
https://github.com/openxla/xla/commit/349a1d4e00cf33dbabd1db5771d03b0c5a4aea61
<img width="1012" height="175" alt="... | [
{
"path": "third_party/xla/xla/codegen/emitters/transforms/lower_to_llvm_gpu.cc",
"patch": "@@ -77,7 +77,7 @@ class LowerToLLVMGPUPass\n : device_spec_(device_description) {}\n \n void runOnOperation() override {\n- if (gpu_device_info_.empty()) {\n+ if (!gpu_device_info_.empty()) {\n se... | 2025-12-11T13:52:13 |
mrdoob/three.js | 0286e813d01f8ba7e698d3aabf408fe748416f13 | d951153e19bdf89a7c09990bd875b0811d8081e6 | WebGPURenderer: Restore instanced multi-draw API and add WebGPU support (#28759)
* WebGPURenderer: Restore instanced multi-draw API and WebGPU compatibility
* fix firefox since gl_drawID is not mandatory for custom usage | [
{
"path": "examples/jsm/renderers/webgl/WebGLBackend.js",
"patch": "@@ -704,7 +704,11 @@ class WebGLBackend extends Backend {\n \n \t\tif ( object.isBatchedMesh ) {\n \n-\t\t\tif ( ! this.hasFeature( 'WEBGL_multi_draw' ) ) {\n+\t\t\tif ( object._multiDrawInstances !== null ) {\n+\n+\t\t\t\trenderer.renderMu... | 2024-06-29T09:14:06 |
denoland/deno | 926717d3e9f4c599bbd0f92b352d22976230bf3d | c80f44b3234069326a7468f1f3ff36e07692e423 | fix(lib/node): change ERR_INVALID_PACKAGE_TARGET to ERR_PACKAGE_PATH_NOT_EXPORTED when no package.json#exports condition matches (#29841) | [
{
"path": "libs/node_resolver/resolution.rs",
"patch": "@@ -1291,20 +1291,9 @@ impl<\n }\n }\n }\n- } else if target.is_null() {\n- return Ok(None);\n }\n \n- Err(\n- InvalidPackageTargetError {\n- pkg_json_path: package_json_path.to_path_buf(),\n- s... | 2025-07-26T00:01:19 |
swiftlang/swift | 89323879f5a2ebf3119fb084b7b43dbd5974911e | 3f659d3085402727427b527f7aedc86bf1e1f2f5 | [Serialization][cxx-interop] Fix a deserialization failure
The deserialization failure is due to missing Clang type when an entity
is being deserialized. This is a regression introduced by #86517. It turns out
the logic to filter out clang types that were synthesized by the Swift
compiler was incorrect and we also fil... | [
{
"path": "lib/ClangImporter/Serializability.cpp",
"patch": "@@ -308,16 +308,14 @@ namespace {\n IsSerializable = false;\n }\n void writeDeclRef(const clang::Decl *decl) {\n- if (!decl) {\n- IsSerializable = false;\n+ if (!decl)\n return;\n- }\n auto path ... | 2026-01-30T16:05:12 |
kubernetes/kubernetes | f60f5b24605d98fe5976dd3a7dc554333bb85e07 | d777de7741d36d1cc465162d94f39200e299070b | Refactor: Contextualize CRDFinalizer to fix goroutine leak
Signed-off-by: Aman Shrivastava <amanshrivastava118@gmail.com> | [
{
"path": "staging/src/k8s.io/apiextensions-apiserver/pkg/controller/finalizer/crd_finalizer.go",
"patch": "@@ -64,7 +64,7 @@ type CRDFinalizer struct {\n \tcrdSynced cache.InformerSynced\n \n \t// To allow injection for testing.\n-\tsyncFn func(key string) error\n+\tsyncFn func(ctx context.Context, key str... | 2025-11-12T16:27:21 |
mrdoob/three.js | d951153e19bdf89a7c09990bd875b0811d8081e6 | 3b3c00165044b44b76a3d452fd4ed973348c680b | WebGPURenderer: BatchMesh support for Instanced rendering with sorting, frustum culling (#28753)
* WebGPURenderer: Full BatchMesh Support in both backend
* cleanup
* fix circular deps
* webgpu wip
* cleanup webgup
* webgpu
* cleanup
* cleanup
* cleanup
* add the ability to specify nodeType i... | [
{
"path": "examples/jsm/nodes/Nodes.js",
"patch": "@@ -11,7 +11,7 @@ export { default as BypassNode, bypass } from './core/BypassNode.js';\n export { default as CacheNode, cache } from './core/CacheNode.js';\n export { default as ConstNode } from './core/ConstNode.js';\n export { default as ContextNode, con... | 2024-06-29T07:56:15 |
tensorflow/tensorflow | 493c298f0b4d673cabc6175e1a1f99d6ffccde71 | c42eb74c903537acae5ec48dc0fa09c3a6abad6d | [XLA:GPU] Fix combine 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.
https://github.com/openxla/xla/pull/35096 was a similar change for dispatch ragged-all-to-all.
PiperOrigin-RevId: 8431... | [
{
"path": "third_party/xla/xla/service/gpu/transforms/ragged_all_to_all_multi_host_decomposer.cc",
"patch": "@@ -103,12 +103,13 @@ HloInstruction* ShuffleMetadataOperandValues(\n \n HloComputation* computation = hlo->parent();\n \n- const Shape& shape = hlo->shape();\n- CHECK_EQ(shape.dimensions().size(... | 2025-12-11T12:12:58 |
denoland/deno | 3d6fb38bb05e288c3ae206947c22d7c2c13490f8 | 50a78300764ee4954090ca347e4bc66eb309fea1 | fix(regression): do not error when specifying `--config` flag with `../` component (#30208) | [
{
"path": "cli/factory.rs",
"patch": "@@ -1211,9 +1211,9 @@ fn new_workspace_factory_options(\n ConfigDiscoveryOption::Disabled\n }\n }\n- ConfigFlag::Path(path) => {\n- ConfigDiscoveryOption::Path(initial_cwd.join(path))\n- }\n+ ConfigFlag::Path(path) => Config... | 2025-07-25T19:37:33 |
swiftlang/swift | 5cd70731da8e2e80e1d642e9d9a790e66457b4d3 | f74ad43de22f40a2f1a1719fd2244a202b210fb8 | LifetimeCompletion/DiagnoseUnreachable: fix a wrong "will never be executed" warning
Make sure that debug locations are correct so that instruction which are inserted by DI after a no-return call doesn't cause DiagnoseUnreachable to print a wrong warning.
Also, add `extend_lifetime` to the list of excluded instruction... | [
{
"path": "SwiftCompilerSources/Sources/Optimizer/Utilities/LifetimeCompletion.swift",
"patch": "@@ -210,7 +210,7 @@ private func complete(value: Value,\n continue\n }\n if let deadEnd = getDeadEnd(block) {\n- let builder = Builder(before: deadEnd, context)\n+ let builder = Builder(b... | 2026-01-30T10:21:32 |
golang/go | 4c4cefc19a16924f3aa7135d3fdc6d1687fe26c7 | 925a3cdcd13472c8f78d51c9ce99a59e77d46eb4 | cmd/gofmt: simplify logic to process arguments
Rather than stat-ing each argument and taking different code paths
depending on whether it's a directory or not, we can leverage
the fact that filepath.WalkDir works on regular files and already
has to figure out whether each file it walks is a directory or not.
We can t... | [
{
"path": "src/cmd/gofmt/gofmt.go",
"patch": "@@ -87,10 +87,8 @@ func initParserMode() {\n \t}\n }\n \n-func isGoFile(f fs.DirEntry) bool {\n-\t// ignore non-Go files\n-\tname := f.Name()\n-\treturn !strings.HasPrefix(name, \".\") && strings.HasSuffix(name, \".go\") && !f.IsDir()\n+func isGoFilename(name st... | 2025-08-30T17:54:43 |
mrdoob/three.js | b4dfdf8e1674a3400d3e0bc1ec3c091d76640cc6 | a262ec1a53a07c03b75ec54cd2845552faa67bc1 | Node: Add `DotScreenNode` and `RGBShiftNode`. (#28755)
* Node: Add `DotScreenNode` and `RGBShiftNode`.
* Examples: Fix title in `webgpu_postprocessing`.
* DotScreenNode: Simplify TSL.
* E2E: Add example to exception list. | [
{
"path": "examples/files.json",
"patch": "@@ -371,6 +371,7 @@\n \t\t\"webgpu_postprocessing_anamorphic\",\n \t\t\"webgpu_postprocessing_dof\",\n \t\t\"webgpu_postprocessing_sobel\",\n+\t\t\"webgpu_postprocessing\",\n \t\t\"webgpu_reflection\",\n \t\t\"webgpu_rtt\",\n \t\t\"webgpu_sandbox\",",
"addition... | 2024-06-28T08:25:53 |
denoland/deno | 50a78300764ee4954090ca347e4bc66eb309fea1 | 0b441daa8d6ac0e8ce02ee35cb07973e98714b5c | fix(ext/node): fix segmentation fault when spkac is empty (#30207) | [
{
"path": "libs/crypto/spki.rs",
"patch": "@@ -17,6 +17,10 @@ impl NetscapeSpki {\n .rposition(|&b| !b\" \\n\\r\\t\".contains(&b))\n .map_or(0, |i| i + 1);\n \n+ if end == 0 {\n+ return Err(\"Invalid SPKI data: no base64 content found\");\n+ }\n+\n // SAFETY: Cast data pointer to ... | 2025-07-25T18:52:20 |
tensorflow/tensorflow | c42eb74c903537acae5ec48dc0fa09c3a6abad6d | 8f00104abb79cddd70ba1ba4fd0812a0933b4fbe | [Autotuner] Fix behavior when cublas is disabled and autotune level is set to 0.
PiperOrigin-RevId: 843153465 | [
{
"path": "third_party/xla/xla/backends/autotuner/autotuner.cc",
"patch": "@@ -332,6 +332,17 @@ absl::StatusOr<Autotuner::Config> Autotuner::TuneBestConfig(\n }\n }\n \n+ if (autotune_config_.exclude_cublas_config) {\n+ executable_candidates.erase(\n+ std::remove_if(executable_candidates.be... | 2025-12-11T12:01:36 |
mrdoob/three.js | a262ec1a53a07c03b75ec54cd2845552faa67bc1 | 3defc7d7520ae249d62e7c3ce9fad1af042db94a | Fix small typo in Material.dispose docs (#28750)
* fix: small typo on docs/Material/dispose
* get back "of" | [
{
"path": "docs/api/en/materials/Material.html",
"patch": "@@ -407,7 +407,7 @@ <h3>[method:undefined dispose]()</h3>\n \t\t\tmethod whenever this instance is no longer used in your app.\n \t\t</p>\n \t\t<p>\n-\t\t\tMaterial textures must be be disposed of by the dispose() method of\n+\t\t\tMaterial textures... | 2024-06-27T08:53:26 |
golang/go | 925a3cdcd13472c8f78d51c9ce99a59e77d46eb4 | 3e596d448fb6b9668d144cffaa65e1d12a5fdce8 | unicode/utf8: make DecodeRune{,InString} inlineable
This change makes the fast path for ASCII characters inlineable in
DecodeRune and DecodeRuneInString and removes most instances of manual
inlining at call sites.
Here are some benchmark results (no change to allocations):
goos: darwin
goarch: amd64
pkg: unicode/utf... | [
{
"path": "src/bufio/bufio.go",
"patch": "@@ -311,10 +311,7 @@ func (b *Reader) ReadRune() (r rune, size int, err error) {\n \tif b.r == b.w {\n \t\treturn 0, 0, b.readErr()\n \t}\n-\tr, size = rune(b.buf[b.r]), 1\n-\tif r >= utf8.RuneSelf {\n-\t\tr, size = utf8.DecodeRune(b.buf[b.r:b.w])\n-\t}\n+\tr, size ... | 2025-09-02T22:10:40 |
kubernetes/kubernetes | e08c1e4ce35934d127644efd3814675cc0865f14 | d9b31d602d833b8a45b31f720eed4534c769772b | Fix alpha API warnings for patch version differences
Fixes issue #134023 where alpha API warnings were being logged
when binary version (1.34.1) and emulation version (1.34) differed
only in patch version.
The issue was in api_enablement.go where the version comparison
was using EqualTo() which compares all version c... | [
{
"path": "staging/src/k8s.io/apiserver/pkg/server/options/api_enablement.go",
"patch": "@@ -106,10 +106,22 @@ func (s *APIEnablementOptions) ApplyTo(c *server.Config, defaultResourceConfig *\n \n \tc.MergedResourceConfig = mergedResourceConfig\n \n-\tif binVersion, emulatedVersion := c.EffectiveVersion.Bin... | 2025-09-12T06:13:41 |
denoland/deno | 0b441daa8d6ac0e8ce02ee35cb07973e98714b5c | 63e4ee54c9c5eaf025918493009818c8705617d9 | fix(bundle): don't force managed npm resolution (#30200)
Fixes #30187.
If you're using --node-modules-dir=manual we should respect that, since
resolution may not work with the managed resolver | [
{
"path": "cli/factory.rs",
"patch": "@@ -1227,7 +1227,6 @@ fn new_workspace_factory_options(\n | DenoSubcommand::Init(_)\n | DenoSubcommand::Outdated(_)\n | DenoSubcommand::Clean(_)\n- | DenoSubcommand::Bundle(_)\n ),\n no_lock: flags.no_lock\n || matches!(",
... | 2025-07-25T16:56:32 |
tensorflow/tensorflow | 4fb9488700235410453bf977977f35d31ba7b38b | 229b6a8eb359a5f24563b5864457341aad9a34f4 | PR #35026: [ROCm] fixed TritonFusionNumericsVerifierTest.VerifyThatDisablingTritonIsFast on rocm
Imported from GitHub PR https://github.com/openxla/xla/pull/35026
The original warp size 32 leads to the following error message: "INTERNAL: Failed to launch ROCm kernel: triton_softmax with block dimensions: 2048x1x1: HI... | [
{
"path": "third_party/xla/xla/service/gpu/transforms/triton_fusion_numerics_verifier_test.cc",
"patch": "@@ -517,7 +517,7 @@ ENTRY main {\n \"kind\":\"__triton\",\n \"block_level_fusion_config\":{\n \"output_tiles\":[{\"sizes\":[\"1\",\"1\",\"1\",\"16384\"]}],\n- \"num_warps\":\"... | 2025-12-11T11:12:55 |
mrdoob/three.js | b508f36fe7c598b4b14e283e5e29fbc1626b3c1e | 6d29751817744b28774eb428beb4a12cd95619cc | TSL: Fix analyze in `varying()` (#28746) | [
{
"path": "examples/jsm/nodes/core/VaryingNode.js",
"patch": "@@ -64,6 +64,14 @@ class VaryingNode extends Node {\n \n \t}\n \n+\tanalyze( builder ) {\n+\n+\t\tthis.setupVarying( builder );\n+\n+\t\treturn this.node.analyze( builder );\n+\n+\t}\n+\n \tgenerate( builder ) {\n \n \t\tconst properties = builde... | 2024-06-26T04:36:22 |
swiftlang/swift | 4def7528f6f9797b20e2204663a074492ea066b2 | 81b097360249efe395ea9e8524bd2490493d2e48 | [Swiftify] fix borrow syntax for lifetimebound on mutating self
Mutating methods that borrow self should use the @_lifetime(&self)
syntax.
rdar://153484170 | [
{
"path": "lib/Macros/Sources/SwiftMacros/SwiftifyImportMacro.swift",
"patch": "@@ -63,6 +63,12 @@ func getSwiftifyExprType(_ funcDecl: FunctionParts, _ expr: SwiftifyExpr) -> Typ\n case .return:\n return funcDecl.signature.returnClause!.type\n case .self:\n+ let isMutating = funcDecl.modifiers.c... | 2026-01-30T06:43:52 |
golang/go | 2a7f1d47b0650c92b47f0cd5bc3536d438e4bbbe | b09068041a20ed3cd44685a1d7f4dccbabfc2e94 | runtime: use one more address bit for tagged pointers
We use one extra bit to placate systems which simulate amd64 binaries on
an arm64 host. Allocated arm64 addresses could be as high as 1<<48-1,
which would be invalid if we assumed 48-bit sign-extended addresses.
(Note that this does not help the other way around, ... | [
{
"path": "src/runtime/tagptr_64bit.go",
"patch": "@@ -22,10 +22,17 @@ const (\n \t// On AMD64, virtual addresses are 48-bit (or 57-bit) sign-extended.\n \t// Other archs are 48-bit zero-extended.\n \t//\n+\t// We use one extra bit to placate systems which simulate amd64 binaries on\n+\t// an arm64 host. Al... | 2025-09-02T22:46:11 |
mrdoob/three.js | 6d29751817744b28774eb428beb4a12cd95619cc | 6f40b10aa4170c6c43d5d3ef2418a3bc04561f61 | WebGPURenderer: Fix Light+NormalMaterial (#28747)
* fix lights=false
* cleanup | [
{
"path": "examples/jsm/nodes/materials/MeshMatcapNodeMaterial.js",
"patch": "@@ -14,10 +14,10 @@ class MeshMatcapNodeMaterial extends NodeMaterial {\n \n \t\tsuper();\n \n-\t\tthis.isMeshMatcapNodeMaterial = true;\n-\n \t\tthis.lights = false;\n \n+\t\tthis.isMeshMatcapNodeMaterial = true;\n+\n \t\tthis.se... | 2024-06-26T04:36:03 |
denoland/deno | 63e4ee54c9c5eaf025918493009818c8705617d9 | 3c1f0f28066263e9322433a99ccf883add7f0bca | fix: support package.json imports in a Deno workspace (#30198) | [
{
"path": "cli/args/mod.rs",
"patch": "@@ -452,6 +452,18 @@ impl WorkspaceMainModuleResolver {\n }\n }\n }\n+ deno_resolver::workspace::MappedResolution::PackageJsonImport {\n+ pkg_json,\n+ } => self\n+ .node_resolver\n+ .resolve_package_import(\n+ ... | 2025-07-25T12:21:09 |
tensorflow/tensorflow | 229b6a8eb359a5f24563b5864457341aad9a34f4 | 1fa905e7f633db4c5a96e01a00e1204f49714f71 | PR #35049: refactor: use Literal::Make() in TextLiteralReader
Imported from GitHub PR https://github.com/openxla/xla/pull/35049
📝 Summary of Changes
Replace deprecated `Literal(shape)` constructor with `Literal::Make(shape)` which returns StatusOr and handles allocation failure gracefully.
🎯 Justification
The `L... | [
{
"path": "third_party/xla/xla/text_literal_reader.cc",
"patch": "@@ -90,7 +90,7 @@ absl::StatusOr<Literal> TextLiteralReader::ReadAllLines() {\n ShapeUtil::HumanString(shape));\n }\n \n- Literal result(shape);\n+ TF_ASSIGN_OR_RETURN(Literal result, Literal::Make(shape));\n const float fill = ... | 2025-12-11T11:12:40 |
golang/go | 1eec830f545ae9c75f143d7d5c757013d6d229be | 7bba745820b771307593b7278ce17464eeda2f3d | go/doc: linkify interface methods
Create doc links for references to interface methods,
such as "[Context.Err]".
This does not attempt to handle embedded interfaces:
The linked-to method must be declared within the named type.
Fixes #54033
Change-Id: I4d7a132affe682c85958ca785bcc96571404e6c1
Reviewed-on: https://go... | [
{
"path": "src/go/doc/comment_test.go",
"patch": "@@ -24,12 +24,12 @@ func TestComment(t *testing.T) {\n \tpkg := New(pkgs[\"pkgdoc\"], \"testdata/pkgdoc\", 0)\n \n \tvar (\n-\t\tinput = \"[T] and [U] are types, and [T.M] is a method, but [V] is a broken link. [rand.Int] and [crand.Reader] are thi... | 2025-07-10T22:43:43 |
kubernetes/kubernetes | 777d7ddc17fd9783570b3a1d41b9c32baba2b8d8 | 2c15d3b8e17f2770d621b0926cd91e27bf6f0fd3 | Add imageRef to testdata
by running:
UPDATE_COMPATIBILITY_FIXTURE_DATA=true make test WHAT=./staging/src/k8s.io/api
Signed-off-by: Itamar Holder <iholder@redhat.com> | [
{
"path": "staging/src/k8s.io/api/testdata/HEAD/core.v1.Pod.json",
"patch": "@@ -1892,7 +1892,12 @@\n \"name\": \"nameValue\",\n \"mountPath\": \"mountPathValue\",\n \"readOnly\": true,\n- \"recursiveReadOnly\": \"recursiveReadOnlyValue\"\n+ \"recurs... | 2025-10-05T17:37:11 |
mrdoob/three.js | 0d5e6d68526fe9be394e09e248a2b2feca08db2f | eac2954d5a2e9c66f693c0cc554d9fb5232dc5e9 | WebGPURenderer: Read/Write Only Storage Buffer Creation (#28435)
* add writable
* sketch
* changes
* Working solution
* run linter
* syntax fix
* fixed formatting
* add writable
* sketch
* changes
* Working solution
* run linter
* syntax fix
* fixed formatting
* re-add storage... | [
{
"path": "examples/jsm/nodes/Nodes.js",
"patch": "@@ -103,7 +103,7 @@ export { default as SceneNode, backgroundBlurriness, backgroundIntensity } from\n export { default as StorageBufferNode, storage, storageObject } from './accessors/StorageBufferNode.js';\n export * from './accessors/TangentNode.js';\n ex... | 2024-06-25T19:06:17 |
denoland/deno | 3c1f0f28066263e9322433a99ccf883add7f0bca | d66b1cb89bf02dd25f0e50089ed7910b7e4a3b2d | docs: Fix broken Getting Started link in CONTRIBUTING.md (#30194)
Signed-off-by: Lucas Vieira <vieiralucas4@gmail.com> | [
{
"path": ".github/CONTRIBUTING.md",
"patch": "@@ -80,7 +80,7 @@ In addition to the above make sure that:\n \n Below are instructions on how to build Deno from source. If you just want to use\n Deno you can download a prebuilt executable (more information in the\n-[`Getting Started`](/runtime/getting_starte... | 2025-07-25T09:44:49 |
golang/go | d4b17f58695337c7eefa9d066cc51a425842e491 | 6a08e80399bd65b95e60e3c74b7e1f86754752a7 | internal/runtime/atomic: reset wrong jump target in Cas{,64} on loong64
The implementation here needs to be consistent with ssa.OpLOONG64LoweredAtomicCas{32,64},
which was ignored in CL 613396.
Change-Id: I72e8d2318e0c1935cc3a35ab5098f8a84e48bcd5
Reviewed-on: https://go-review.googlesource.com/c/go/+/699395
Reviewed-... | [
{
"path": "src/internal/runtime/atomic/atomic_loong64.s",
"patch": "@@ -19,7 +19,7 @@ TEXT ·Cas(SB), NOSPLIT, $0-17\n \tMOVW\tnew+12(FP), R6\n \n \tMOVBU\tinternal∕cpu·Loong64+const_offsetLOONG64HasLAMCAS(SB), R8\n-\tBEQ\tR8, cas_again\n+\tBEQ\tR8, ll_sc\n \tMOVV\tR5, R7 // backup old value\n \tAMCASDBW\tR... | 2025-08-27T06:45:58 |
tensorflow/tensorflow | fe87a77274ede90f62f422628926939eec9ef5be | c0f76388d0edaa36dd721bdbb8ed588087493eba | PR #35108: [ROCm] Fix crashes in hermetic build tests
Imported from GitHub PR https://github.com/openxla/xla/pull/35108
📝 Summary of Changes
Fixing crash due to conflicting llvm in rocm vs llvm-project symbols
🎯 Justification
new versions of rocm are linked agains an internal version of llvm
the symbols of this li... | [
{
"path": "third_party/xla/third_party/gpus/rocm/BUILD.tpl",
"patch": "@@ -116,12 +116,8 @@ cc_library(\n \":rocsolver\",\n \":rocsparse\",\n \":roctracer\",\n- ] + select_threshold(\n- above_or_eq = [\":hipfft\"],\n- below = [\":rocfft\"],\n- threshold = 4010... | 2025-12-11T08:36:28 |
swiftlang/swift | 535fc76a43be6307a012159baa861444e8acd9a1 | cbf752e4824a4d8fe9877757e22ae021a15bc36f | [cxx-interop] Fix lazy lookup for synthesized successor() method
Protocol conformance checking requests a qualified name lookup of
"successor()", not "successor", which is a compound name with zero
arguments rather than a simple name.
Teach ClangRecordMemberLookup to be aware of this. Without accounting
for this, pro... | [
{
"path": "lib/ClangImporter/ClangLookup.cpp",
"patch": "@@ -384,7 +384,8 @@ TinyPtrVector<ValueDecl *> ClangRecordMemberLookup::evaluate(\n if (name.isSimpleName(\"pointee\")) {\n if (auto *pointee = Importer.Impl.lookupAndImportPointee(inheritingDecl))\n result.push_back(pointee);\n- ... | 2026-01-29T23:05:15 |
mrdoob/three.js | eac2954d5a2e9c66f693c0cc554d9fb5232dc5e9 | eb6d44f5a201705d89c5e5917a80d904c4623b76 | TSL: BufferAttributeNode - Fix setUsage on non-InterleavedBuffer (#28742)
* TSL: Fix setUsage on non-interleavedBuffer attributes
* test fix pup
* cleanup
--------- | [
{
"path": "examples/jsm/nodes/accessors/BufferAttributeNode.js",
"patch": "@@ -126,6 +126,12 @@ class BufferAttributeNode extends InputNode {\n \n \t\tthis.usage = value;\n \n+\t\tif ( this.attribute && this.attribute.isBufferAttribute === true ) {\n+\n+\t\t\tthis.attribute.usage = value;\n+\n+\t\t}\n+\n \t... | 2024-06-25T18:28:48 |
golang/go | 6a08e80399bd65b95e60e3c74b7e1f86754752a7 | 8bcda6c79d40f49363cd04cdaf5bd7909de8f94f | net/http: skip redirecting in ServeMux when URL path for CONNECT is empty
In 1.21 ServeMux, we had a special-case to skip redirection when a given
path is empty for CONNECT requests:
https://go.googlesource.com/go/+/refs/tags/go1.24.4/src/net/http/servemux121.go#205.
This special case seems to not have been carried o... | [
{
"path": "src/net/http/server.go",
"patch": "@@ -2759,9 +2759,12 @@ func (mux *ServeMux) matchOrRedirect(host, method, path string, u *url.URL) (_ *\n \tdefer mux.mu.RUnlock()\n \n \tn, matches := mux.tree.match(host, method, path)\n-\t// If we have an exact match, or we were asked not to try trailing-slas... | 2025-08-29T14:34:10 |
tensorflow/tensorflow | c0f76388d0edaa36dd721bdbb8ed588087493eba | e1ab7b41a28747f544144be4f928c3af2d9deecb | PR #34143: [GPU] Add all-to-all support to S-curve model
Imported from GitHub PR https://github.com/openxla/xla/pull/34143
📝 Summary of Changes
Added all-to-all support to S-curve model.
🎯 Justification
S-curve model doesn't support all-to-all, fallback may lead to bad performance, benchmarking justified that the ... | [
{
"path": "third_party/xla/xla/service/gpu/gpu_latency_hiding_scheduler_test.cc",
"patch": "@@ -408,6 +408,52 @@ TEST_F(GpuLatencyHidingSchedulerBaseTest,\n GetIndexByName(instruction_sequence, \"rs_1\"));\n }\n \n+TEST_F(GpuLatencyHidingSchedulerBaseTest,\n+ AllToAllAndGemmOverlapWi... | 2025-12-11T08:35:07 |
denoland/deno | 990dbc6e4e7ef60157aee65ec8c68c126bbcf984 | 0f0c678715e1af98106839ca2f1bb8963318eab5 | Revert "fix(unstable): always require --allow-read permissions for raw imports (#30184)" (#30196) | [
{
"path": "cli/factory.rs",
"patch": "@@ -879,11 +879,7 @@ impl CliFactory {\n &self.cli_options()?.permissions_options(),\n )?;\n \n- Ok(PermissionsContainer::new(\n- desc_parser,\n- Some(Arc::new(self.in_npm_pkg_checker()?.clone())),\n- permissions,\n- ... | 2025-07-24T22:38:04 |
swiftlang/swift | 47cdbb9b37a8d67115b888312f6d0327dc2f118c | 29798286ce723fc85d7f82f2ceef564184553896 | [crash-reduce] Allow specific frontend args | [
{
"path": "utils/swift-dev-utils/Sources/CrashReduce/FuzzerInput.swift",
"patch": "@@ -43,20 +43,19 @@ extension FuzzerInput {\n struct Header: Codable {\n enum CodingKeys: String, CodingKey {\n case _splits = \"splits\"\n- case _sourceKitRequest = \"sourceKitRequest\"\n case _sourceK... | 2026-01-27T18:26:16 |
mrdoob/three.js | 4feb1372ea3bd32d33a9a03c2f58ff225a07f5d2 | 1d3c9bd0ac15d39b243b2f5aebfe85b3b33c033d | Addons: Add `DepthOfFieldNode`. (#28740)
* Addons: Add `DepthOfFieldNode`.
* DepthOfFieldNode: Fix runtime error.
* E2E: Update screenshot.
* Examples: Align code to previous demo.
* Examples: Use instancing in DOF demo. | [
{
"path": "examples/files.json",
"patch": "@@ -369,6 +369,7 @@\n \t\t\"webgpu_portal\",\n \t\t\"webgpu_postprocessing_afterimage\",\n \t\t\"webgpu_postprocessing_anamorphic\",\n+\t\t\"webgpu_postprocessing_dof\",\n \t\t\"webgpu_postprocessing_sobel\",\n \t\t\"webgpu_reflection\",\n \t\t\"webgpu_rtt\",",
... | 2024-06-25T08:11:05 |
golang/go | 8bcda6c79d40f49363cd04cdaf5bd7909de8f94f | 8377adafc548a0d9dab831477923d25ce4b10710 | runtime/race: add race detector support for linux/riscv64
This enables support for the race detector on linux/riscv64.
Fixes #64345
Cq-Include-Trybots: luci.golang.try:gotip-linux-riscv64
Change-Id: I98962827e91455404858549b0f9691ee438f104b
Reviewed-on: https://go-review.googlesource.com/c/go/+/690497
Reviewed-by: C... | [
{
"path": "src/cmd/dist/test.go",
"patch": "@@ -1698,7 +1698,7 @@ func (t *tester) makeGOROOTUnwritable() (undo func()) {\n func raceDetectorSupported(goos, goarch string) bool {\n \tswitch goos {\n \tcase \"linux\":\n-\t\treturn goarch == \"amd64\" || goarch == \"ppc64le\" || goarch == \"arm64\" || goarch ... | 2025-07-25T10:41:51 |
tensorflow/tensorflow | ca3cb67ac904514dcee47e4a9aa8b8be7d1f1ba3 | 45fb84067d13d40feee87d26bd6a4b086fa8b319 | [PJRT:CPU] Delay the fulfillment of `returned_future` until (possibly async) all execution activities finish
`returned_future` from `PjRtLoadedExecutable::Execute()` is frequently used as an indicator of whether the entire execution activity has finished and it is safe to destroy external resources used for prior exec... | [
{
"path": "third_party/xla/xla/pjrt/cpu/cpu_client.cc",
"patch": "@@ -1390,6 +1390,15 @@ absl::StatusOr<PjRtLoadedExecutable::Result> PjRtCpuExecutable::ExecuteHelper(\n auto execute_event = tsl::MakeConstructedAsyncValueRef<CpuEvent>();\n MarkEventReadyOnExit ready_on_exit(execute_event);\n auto exec... | 2025-12-10T23:23:46 |
mrdoob/three.js | 05b5c20b28b1d3f2781396e9696fe8ea9606c797 | 172f0c6642e18290c24f3f0abbe1ee9419ad4bcd | WebGPURenderer: Fix storage buffer example (#28729)
* fix storage buffer webgpu
* bind groups cache per renderer
* Revert "bind groups cache per renderer"
This reverts commit 6fe58cce68d5d7e7d5a21b027164954ecaf42302. | [
{
"path": "examples/webgpu_storage_buffer.html",
"patch": "@@ -78,11 +78,11 @@\n \n \t\t\t\t// texture\n \n-\t\t\t\tconst size = 1024; // non power of two buffer size is not well supported in WebGPU\n+\t\t\t\tconst size = 32; // non power of two buffer size is not well supported in WebGPU\n+\t\t\t\tconst ba... | 2024-06-24T02:27:20 |
kubernetes/kubernetes | 0c0bc0d533f669fa4acc4fe5b33c75864262cf64 | 8d450ef773127374148abad4daaf28dac6cb2625 | hack/lib/util.sh: support uutils' `date` command
`make` was printing the following warning on Ubuntu 25.10,
which switched away from GNU coreutils to uutils:
```
!!! [1107 12:46:24] Failed to find GNU date as date or gdate. If you are on Mac: brew install coreutils.
<GOPATH>/src/k8s.io/kubernetes/hack/lib/version.sh:... | [
{
"path": "hack/lib/util.sh",
"patch": "@@ -720,22 +720,22 @@ function kube::util::ensure-gnu-sed {\n kube::util::sourced_variable \"${SED}\"\n }\n \n-# kube::util::ensure-gnu-date\n+# kube::util::ensure-gnu-compatible-date\n # Determines which date binary is gnu-date on linux/darwin\n #\n # Sets:\n # DA... | 2025-11-07T03:58:02 |
denoland/deno | 0f0c678715e1af98106839ca2f1bb8963318eab5 | 4850b3ba9154ec0cae60d58681d297367cbaca6c | fix(compile): do not include managed npm deps when graph does not have any npm pkgs (#30189)
Closes https://github.com/denoland/deno/issues/30177 (along with
https://github.com/denoland/deno/pull/30188) | [
{
"path": "cli/standalone/binary.rs",
"patch": "@@ -392,14 +392,18 @@ impl<'a> DenoCompileBinaryWriter<'a> {\n }\n let npm_snapshot = match &self.npm_resolver {\n CliNpmResolver::Managed(managed) => {\n- let snapshot = managed\n- .resolution()\n- .serialized_valid_snap... | 2025-07-24T20:11:57 |
swiftlang/swift | 29798286ce723fc85d7f82f2ceef564184553896 | 666d1c191c9ba48b42acf8798d32f0b8b03a80d3 | [crash-reduce] Avoid moving inputs if deletion is disabled | [
{
"path": "utils/swift-dev-utils/Sources/CrashReduce/ProcessReproducers.swift",
"patch": "@@ -28,11 +28,12 @@ public actor ProcessReproducers {\n let executablePath: AbsolutePath\n \n let quickMode: Bool\n+ let deleteInputs: Bool\n \n public init(\n from inputDir: AbsolutePath?, to outputDir: Abs... | 2026-01-29T21:43:00 |
golang/go | 8377adafc548a0d9dab831477923d25ce4b10710 | a7d9d5a80ae799f54e323060df0dfbccc83d3759 | cmd/cgo: split loadDWARF into two parts
The first part runs gcc to get the debug information, and the second
part processes the debug information. The first part doesn't touch the
global and package level information that's computed so we can run it
earlier and concurrently in a later CL.
For #75167
Change-Id: I6a6a... | [
{
"path": "src/cmd/cgo/gcc.go",
"patch": "@@ -213,7 +213,8 @@ func (p *Package) Translate(f *File) {\n \t\t}\n \t\tneedType := p.guessKinds(f)\n \t\tif len(needType) > 0 {\n-\t\t\tp.loadDWARF(f, &ft, &conv, needType)\n+\t\t\td := p.loadDWARF(f, &ft, needType)\n+\t\t\tp.recordTypes(f, d, &conv)\n \t\t}\n \n ... | 2025-08-25T21:07:41 |
mrdoob/three.js | f6c9ce62a5374a9611afab04f03b059bf5fb4911 | a519e0e76253e62905b691ce9fe03b5635293dfd | WebGPURenderer: Fix StorageBuffer fallback in WebGLBackend (#28722) | [
{
"path": "examples/jsm/renderers/webgl/nodes/GLSLNodeBuilder.js",
"patch": "@@ -1,4 +1,4 @@\n-import { MathNode, GLSLNodeParser, NodeBuilder, UniformNode, vectorComponents } from '../../../nodes/Nodes.js';\n+import { MathNode, GLSLNodeParser, NodeBuilder, TextureNode, vectorComponents } from '../../../node... | 2024-06-22T12:44:05 |
denoland/deno | 4850b3ba9154ec0cae60d58681d297367cbaca6c | 3a5ba56801dfbe3508212903429c44071d1d3f15 | fix(compile): do not error including npm packages that don't match current system (#30188)
Part of https://github.com/denoland/deno/issues/30177 | [
{
"path": "cli/standalone/binary.rs",
"patch": "@@ -867,10 +867,21 @@ impl<'a> DenoCompileBinaryWriter<'a> {\n .resolution()\n .all_system_packages(&self.npm_system_info);\n packages.sort_by(|a, b| a.id.cmp(&b.id)); // determinism\n+ let current_system = NpmSystemI... | 2025-07-24T20:11:43 |
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.