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
mrdoob/three.js
c797bc2aba9ccfbd0e78cb857a200d26722a5b40
0eae2928693d40c1bde4cc20dde75ada985f8cbf
Eslint: fix more JSDocs (#30093) Co-authored-by: Samuel Rigaud <srigaud@duodisplay.com>
[ { "path": "editor/js/commands/AddObjectCommand.js", "patch": "@@ -1,13 +1,13 @@\n import { Command } from '../Command.js';\n import { ObjectLoader } from 'three';\n \n-/**\n- * @param editor Editor\n- * @param object THREE.Object3D\n- * @constructor\n- */\n class AddObjectCommand extends Command {\n \n+\t/*...
2024-12-10T20:37:43
denoland/deno
67ee2af25011bd14b08476a77e8dc272858407ae
138b2e0e62d07a8786385cae46ac179afbf9973f
fix(ext/signals): don't run exit hooks at non-exit times (#31269) when we changed the otel exit handler to call shutdown instead of flush, it exposed another bug where we are calling exit handlers multiple times for the 3 signals we have defined. this meant that we would shut down otel before the program finished runn...
[ { "path": "ext/net/tunnel.rs", "patch": "@@ -48,15 +48,15 @@ pub fn disable_before_exit() {\n }\n \n pub fn before_exit() {\n- if let Some(tunnel) = get_tunnel() {\n- log::trace!(\"deno_net::tunnel::before_exit >\");\n+ log::trace!(\"deno_net::tunnel::before_exit >\");\n \n+ if let Some(tunnel) = get_...
2025-11-13T22:15:37
golang/go
c93cc603cd5c731d00dc019c94490edca6160841
b5353fd90a3824f4ff903e0d89cf4e63714f61d1
runtime: allow Stack to traceback goroutines in syscall _Grunning window net/http/cgi.TestCopyError calls runtime.Stack to take a stack trace of all goroutines, and searches for a specific line in that stack trace. It currently sometimes fails because it encounters the goroutine its looking for in the small window wh...
[ { "path": "src/runtime/traceback.go", "patch": "@@ -1314,7 +1314,16 @@ func tracebacksomeothers(me *g, showf func(*g) bool) {\n \t\t// from a signal handler initiated during a systemstack call.\n \t\t// The original G is still in the running state, and we want to\n \t\t// print its stack.\n-\t\tif gp.m != g...
2025-10-30T20:26:56
kubernetes/kubernetes
5b478645cdb3be5ed92a21d2f7b417b6328cfa6e
c6ba23521ce78e90a6765abd7431f75d2cc58966
Update security and stability dependencies This PR updates several dependencies addressing security vulnerabilities, stability fixes, and authentication improvements. - golang.org/x/crypto: v0.46.0 -> v0.47.0 - Includes latest X509 root certificate bundle updates - Security hardening for cryptographic operations ...
[ { "path": "LICENSES/vendor/go.uber.org/zap/LICENSE", "patch": "@@ -1,6 +1,6 @@\n = vendor/go.uber.org/zap licensed under: =\n \n-Copyright (c) 2016-2017 Uber Technologies, Inc.\n+Copyright (c) 2016-2024 Uber Technologies, Inc.\n \n Permission is hereby granted, free of charge, to any person obtaining a copy...
2026-01-14T04:08:03
mrdoob/three.js
8ac75e92654f546e8f03824bb153a4b83b0b0489
0338a819645354bc02b25ad93ae6ee0c9cff0897
WebGPURenderer: Fix Hardware Clipping issues (#30083) * WebGPURenderer: Fix Hardware Clipping with vertexNode * fix compilation missing argument
[ { "path": "src/materials/nodes/NodeMaterial.js", "patch": "@@ -110,6 +110,8 @@ class NodeMaterial extends Material {\n \n \t\tbuilder.stack.outputNode = this.vertexNode || this.setupPosition( builder );\n \n+\t\tthis.setupHardwareClipping( builder );\n+\n \t\tif ( this.geometryNode !== null ) {\n \n \t\t\tb...
2024-12-10T11:34:39
denoland/deno
4e144a8fbf9725def62825da42b8e42110a89606
9018c8ccf2b735b1f34c5881a3cfc0646f854bb8
fix(ext/node): define process.versions.sqlite (#31277) This will make Node.js compat tests for sqlite run (previously they were skipped because the version was not defined).
[ { "path": "ext/node/polyfills/_process/process.ts", "patch": "@@ -200,6 +200,7 @@ export const versions = {\n unicode: \"14.0\",\n ngtcp2: \"0.8.1\",\n nghttp3: \"0.7.0\",\n+ sqlite: \"3.49.0\",\n // Will be filled when calling \"__bootstrapNodeProcess()\",\n deno: \"\",\n v8: \"\",", "addi...
2025-11-13T17:48:06
golang/go
b5353fd90a3824f4ff903e0d89cf4e63714f61d1
43491f8d52f13df3c70277f81c85809818969d77
runtime: don't panic in castogscanstatus The panic calls gopanic which may have write barriers, but castogscanstatus is called from //go:nowritebarrier contexts. The panic is dead code anyway, and appears immediately before a call to 'throw'. Change-Id: I4a8e296b71bf002295a3aa1db4f723c305ed939a Reviewed-on: https://...
[ { "path": "src/runtime/proc.go", "patch": "@@ -1254,8 +1254,8 @@ func castogscanstatus(gp *g, oldval, newval uint32) bool {\n \t\t}\n \t}\n \tprint(\"runtime: castogscanstatus oldval=\", hex(oldval), \" newval=\", hex(newval), \"\\n\")\n-\tthrow(\"castogscanstatus\")\n-\tpanic(\"not reached\")\n+\tthrow(\"b...
2025-11-03T22:29:36
mrdoob/three.js
0338a819645354bc02b25ad93ae6ee0c9cff0897
8d556641f54b9902037c58d40860d2d000f53953
WebGPURenderer: Fix support for non-indexed BatchedMesh (#30084) * WebGPURenderer: Fix support for non-indexed BatchedMesh * simplify code
[ { "path": "src/renderers/webgpu/WebGPUBackend.js", "patch": "@@ -976,14 +976,20 @@ class WebGPUBackend extends Backend {\n \t\t\tconst drawCount = object._multiDrawCount;\n \t\t\tconst drawInstances = object._multiDrawInstances;\n \n-\t\t\tconst bytesPerElement = hasIndex ? index.array.BYTES_PER_ELEMENT : 1...
2024-12-10T11:34:21
tensorflow/tensorflow
a974f3fddf5bfd73b57b1029de358d26270431c8
4bd1489a6033a56860c742a0eb3ea339ffa5a674
Embed platform name within `Platform::Id`. This change transitions `Platform::Id` from an opaque `void*` to a pointer-like object (`IdPtr`) wrapping platform metadata (`IdInfo`). This enables retrieving a platform's name directly from its ID without requiring an initialized Platform instance. Direct access to the pla...
[ { "path": "tensorflow/c/experimental/stream_executor/BUILD", "patch": "@@ -49,6 +49,7 @@ cc_library(\n \"@com_google_absl//absl/status\",\n \"@com_google_absl//absl/status:statusor\",\n \"@com_google_absl//absl/strings:str_format\",\n+ \"@com_google_absl//absl/strings:string_v...
2026-01-16T18:39:51
denoland/deno
06709834066d278a9ecee0cfb569029e325dbe3f
05bc6360e741d65f9f667782709d1de8e4c17eaa
fix(config): support UTF-16 surrogate pairs in unicode escape sequences in json config (#31264)
[ { "path": "Cargo.lock", "patch": "@@ -5554,9 +5554,9 @@ dependencies = [\n \n [[package]]\n name = \"jsonc-parser\"\n-version = \"0.27.0\"\n+version = \"0.27.1\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"7ec4ac49f13c7b00f435f8a5bb55d725705e2cf620df35a5859321595102eb...
2025-11-13T10:37:39
golang/go
43491f8d52f13df3c70277f81c85809818969d77
aa94fdf0cc693b5846a936d5cd6f3bd358093245
cmd/cgo: use the export'ed file/line in error messages When an unpinned Go pointer (or a pointer to an unpinned Go pointer) is returned from Go to C, 1 package main 2 3 import ( 4 "C" 5 ) 6 7 //export foo 8 func foo(CLine *C.char) string { 9 return C...
[ { "path": "src/cmd/cgo/main.go", "patch": "@@ -72,8 +72,8 @@ type File struct {\n \tExpFunc []*ExpFunc // exported functions for this file\n \tName map[string]*Name // map from Go name to Name\n \tNamePos map[*Name]token.Pos // map from Name to position of the first reference\n-\t...
2025-11-01T14:20:45
mrdoob/three.js
dc3441263e30eda6b09f320b66108251f0a9d5bc
047f7d78e88c4118e141350d2ab61e077af374e5
WebGPURenderer: Fix blending opacity in shadows (#30081) * fix blending opacity in shadows * cleanup * Update webgpu_shadowmap_opacity.jpg * Update webgpu_shadowmap_opacity.jpg
[ { "path": "src/nodes/lighting/ShadowNode.js", "patch": "@@ -11,7 +11,7 @@ import NodeMaterial from '../../materials/nodes/NodeMaterial.js';\n import QuadMesh from '../../renderers/common/QuadMesh.js';\n import { Loop } from '../utils/LoopNode.js';\n import { screenCoordinate } from '../display/ScreenNode.js...
2024-12-10T00:42:48
denoland/deno
05bc6360e741d65f9f667782709d1de8e4c17eaa
e9d6557ea5daf321dbf0f1788f571d3e982ae29b
fix(node:console): ensure that the node:console implementation has an implementation for `emitWarning` in scope (#31263) Introduces the emitWarning function from the process module to enable warning capabilities within the console constructor implementation. This fixes a bug where the `time`, `countReset` and `timeLo...
[ { "path": "ext/node/polyfills/internal/console/constructor.mjs", "patch": "@@ -3,6 +3,7 @@\n \n import { op_preview_entries } from \"ext:core/ops\";\n import { primordials } from \"ext:core/mod.js\";\n+import { emitWarning } from \"node:process\";\n const {\n ArrayIsArray,\n ArrayFrom,", "additions"...
2025-11-13T09:33:50
tensorflow/tensorflow
3268134ee7a6b5f0c9be3bd0b7a8b5ca07ecf7d3
733386041ae7c910d6e9e47963e2216eff313385
Refactor: Clean up dependencies and includes in XLA reduce_test. This change updates the BUILD dependencies for `reduce_test` and removes an unused `PrintTo` helper function from `reduce_test.cc`, along with corresponding include cleanups. Fixes all clang-tidy warnings for this file. PiperOrigin-RevId: 857198648
[ { "path": "third_party/xla/xla/tests/BUILD", "patch": "@@ -2080,27 +2080,28 @@ xla_test(\n deps = [\n \":client_library_test_base\",\n \":hlo_test_base\",\n- \":literal_test_util\",\n \":xla_internal_test_main\",\n \"//xla:array2d\",\n- \"//xla:array4d\",\n+...
2026-01-16T17:47:02
golang/go
aa94fdf0cc693b5846a936d5cd6f3bd358093245
4d2b03d2fc281a1883aceee3511f22d4865f8844
cmd/go: link to go.dev/doc/godebug for removed GODEBUG settings This makes the user experience better, before users would receive an unknown godebug error message, now we explicitly mention that it was removed and link to go.dev/doc/godebug where users can find more information about the removal. Additionally we keep...
[ { "path": "src/cmd/go/internal/modload/init.go", "patch": "@@ -2242,9 +2242,12 @@ func CheckGodebug(verb, k, v string) error {\n \t\t}\n \t\treturn nil\n \t}\n-\tfor _, info := range godebugs.All {\n-\t\tif k == info.Name {\n-\t\t\treturn nil\n+\tif godebugs.Lookup(k) != nil {\n+\t\treturn nil\n+\t}\n+\tfor...
2025-09-08T17:54:21
mrdoob/three.js
915b1d6799a2130fc38b29961f0224f0c0a88274
fa8e6a15d759421faaeed21789be80a23b7aa586
Nodes: fix type errors (#30079) Co-authored-by: Samuel Rigaud <srigaud@duodisplay.com>
[ { "path": "src/nodes/core/NodeCache.js", "patch": "@@ -24,7 +24,7 @@ class NodeCache {\n \t\t/**\n \t\t * A weak map for managing node data.\n \t\t *\n-\t\t * @type {WeakMap}\n+\t\t * @type {WeakMap<Node, Object>}\n \t\t */\n \t\tthis.nodesData = new WeakMap();\n ", "additions": 1, "deletions": 1, ...
2024-12-09T21:31:42
denoland/deno
e9d6557ea5daf321dbf0f1788f571d3e982ae29b
a664ebebad8d08bf3c4220293d85d134d466249f
chore: try to fix promote_to_release workflow (#31215)
[ { "path": ".github/workflows/promote_to_release.yml", "patch": "@@ -46,20 +46,8 @@ jobs:\n Expand-Archive -Path \"denort-windows.zip\" -DestinationPath \".\"\n \n - name: Run patchver for Windows\n- shell: pwsh\n run: |\n- deno install -g -A -n patchver https://deno.l...
2025-11-12T22:12:21
kubernetes/kubernetes
f82471dee9985d788b32fba2c4beefe7c53dc9d4
8392659d3c90fea03be805968b53ec7a05dea183
Bugfix: calculate request latency properly in audit log filter Signed-off-by: Chao Chen <chaochn@amazon.com>
[ { "path": "staging/src/k8s.io/apiserver/pkg/endpoints/filters/audit.go", "patch": "@@ -149,15 +149,14 @@ func evaluatePolicyAndCreateAuditEvent(req *http.Request, policy audit.PolicyRul\n \n // writeLatencyToAnnotation writes the latency incurred in different\n // layers of the apiserver to the annotations ...
2025-12-09T21:17:32
mrdoob/three.js
fe970a4c2c22be04cfa899d1efabfdd30644bb12
4f25a3195afaab6e4fdff7b44264587f0098dd71
Editor: Fix vertex normals helper regression. (#30069)
[ { "path": "editor/js/Sidebar.Geometry.js", "patch": "@@ -300,7 +300,7 @@ function SidebarGeometry( editor ) {\n \n \t\t\tconst helper = editor.helpers[ object.id ];\n \n-\t\t\tif ( helper !== undefined ) {\n+\t\t\tif ( helper !== undefined && helper.isVertexNormalsHelper === true ) {\n \n \t\t\t\teditor.rem...
2024-12-08T22:28:31
golang/go
85bec791a0941734520217d548f80714554e5f20
17b57078ab5388d830c28965717c3cc52bb845e1
cmd/go/testdata/script: loosen list_empty_importpath for freebsd We've been seeing the flakes where we get a 'no errors' output on freebsd in addition to windows and solaris. Also allow that case to avoid flakes. For #73976 Change-Id: I6a6a696445ec908b55520d8d75e7c1f867b9c092 Reviewed-on: https://go-review.googlesou...
[ { "path": "src/cmd/go/testdata/script/list_empty_importpath.txt", "patch": "@@ -1,12 +1,15 @@\n ! go list all\n ! stderr 'panic'\n-[!GOOS:windows] [!GOOS:solaris] stderr 'invalid import path'\n-# #73976: Allow 'no errors' on Windows and Solaris until issue\n+[!GOOS:windows] [!GOOS:solaris] [!GOOS:freebsd] [...
2025-10-28T15:18:02
tensorflow/tensorflow
a5501d482c3ba14df87c61f24a9795928fb68915
365b17056fc8b5c88310e282c114706468f9ece3
PR #36297: [xla:gpu] Add support for passing device comms to XLA GPU kernels Imported from GitHub PR https://github.com/openxla/xla/pull/36297 Add very basic support for passing device comms and symmetric memory to XLA kernels via StreamExecutor kernel arguments packing. 1. Test a very basic all-reduce written with ...
[ { "path": "third_party/xla/xla/backends/gpu/collectives/BUILD", "patch": "@@ -219,6 +219,7 @@ cc_library(\n \"//xla/core/collectives:rank_id\",\n \"//xla/core/collectives:symmetric_memory\",\n \"//xla/stream_executor:device_address\",\n+ \"//xla/stream_executor:kernel_args\",\...
2026-01-16T16:24:32
swiftlang/swift
6873d4c523303969759a09fc741c1b480ddcdb17
8a32cd26f482ab2caeb64fdcd3a8e13749f8c465
Ensure we check for thrown error types when resolving custom derivatives (#86999) Fixes #86998
[ { "path": "lib/Sema/TypeCheckAttr.cpp", "patch": "@@ -6435,6 +6435,14 @@ static bool checkFunctionSignature(\n if (!candidateGenSig.requirementsNotSatisfiedBy(requiredGenSig).empty())\n return false;\n \n+ // Check that both functions throws same error type (if any)\n+ if (required->isThrowing() != ...
2026-02-16T06:39:43
denoland/deno
099f8d60f2502cea7281744e6011e3f704aa3fa8
1edd1fb6573507d2ec3fc8d57c634d7f3379b4dd
fix(unstable): don't panic on invalid reported lint range (#31261) When a lint diagnostic contained an invalid range where the `start` value was bigger than the `end` value, we'd panic when passing the range to `dprint`. We should ensure that the range is correct right when we're creating the lint diagnostic instead. ...
[ { "path": "cli/js/40_lint.js", "patch": "@@ -391,6 +391,12 @@ export class Context {\n const start = range[0];\n const end = range[1];\n \n+ if (start > end) {\n+ throw new RangeError(\n+ `Invalid range. Start value is bigger than end value: [${start}, ${end}]`,\n+ );\n+ }\n+\...
2025-11-12T14:11:40
mrdoob/three.js
4f25a3195afaab6e4fdff7b44264587f0098dd71
19bdc3a10025eca6057c6433bf3e83edb364dbc4
PMREMGenerator: Fix `fromScene()` back-side materials (#30063) * Fix `fromScene()` back-side materials * Update PMREMGenerator.js * Update PMREMGenerator.js
[ { "path": "src/nodes/pmrem/PMREMNode.js", "patch": "@@ -297,6 +297,8 @@ class PMREMNode extends TempNode {\n \n \t\t}\n \n+\t\tuvNode = vec3( uvNode.x, uvNode.y.negate(), uvNode.z );\n+\n \t\t//\n \n \t\tlet levelNode = this.levelNode;", "additions": 2, "deletions": 0, "language": "JavaScript" ...
2024-12-08T15:48:19
kubernetes/kubernetes
9e27ee8042348655393130a55e039dc135e0608a
fd41228d1ad1ce1e95c29c654de2373557af35d3
bump go to 1.25.6 for CVE fixes
[ { "path": ".go-version", "patch": "@@ -1 +1 @@\n-1.25.5\n+1.25.6", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "build/dependencies.yaml", "patch": "@@ -103,7 +103,7 @@ dependencies:\n # Golang\n # TODO: this should really be eliminated and controlled by .go...
2026-01-15T19:16:50
tensorflow/tensorflow
365b17056fc8b5c88310e282c114706468f9ece3
a89668a37b2c0fa59a4907a38a9f781660bcf4a3
Remove unnecessary else block. The `else` block is not needed after a conditional block that always returns. Fixes a clang-tidy warning. PiperOrigin-RevId: 857170216
[ { "path": "third_party/xla/xla/tests/client_library_test_runner_mixin.h", "patch": "@@ -158,9 +158,8 @@ class ClientLibraryTestRunnerMixin : public T {\n ExecuteAndTransfer(builder, arguments);\n if (!result.ok()) {\n return result.status().ToString();\n- } else {\n- return result....
2026-01-16T16:21:28
denoland/deno
1edd1fb6573507d2ec3fc8d57c634d7f3379b4dd
5ed0646bc4c93f3c3d72d07832760c21269f7276
fix(ext/node): ensure 'exit' event is fired only once for `worker_threads` (#31231) Closes #30013 The `'exit'` event in `node:worker_threads` was not consistently fired, or in some cases emitted multiple times, diverging from Node.js behavior.
[ { "path": "ext/node/polyfills/worker_threads.ts", "patch": "@@ -99,6 +99,7 @@ class NodeWorker extends EventEmitter {\n #messagePromise = undefined;\n #controlPromise = undefined;\n #workerOnline = false;\n+ #exited = false;\n // \"RUNNING\" | \"CLOSED\" | \"TERMINATED\"\n // \"TERMINATED\" means...
2025-11-12T13:15:44
swiftlang/swift
8801cf21ee280db47a77b7279384dc00dedee497
8a32cd26f482ab2caeb64fdcd3a8e13749f8c465
[Backtracing] update CrashWithThreadsMac.swift for internal shell This was an inflight collision that did not show up during testing before enabling the internal shell.
[ { "path": "test/Backtracing/CrashWithThreadsMac.swift", "patch": "@@ -1,8 +1,8 @@\n // RUN: %empty-directory(%t)\n // RUN: %target-build-swift %s -Onone -g -o %t/CrashWithThreads\n // RUN: %target-codesign %t/CrashWithThreads\n-// RUN: (env SWIFT_BACKTRACE=enable=yes,cache=no,swift-backtrace=%backtracer %ta...
2026-02-16T04:23:11
mrdoob/three.js
c43288eeffbde8e291fdff8d040df6fa5df58eeb
c99f1e951e3eae0219eae926de1a278f4aeb3547
ShadowNode: Fix `updateMatrices` sequence (#30064) * fix `updateMatrices` sequence * Update webgpu_lights_spotlight.jpg
[ { "path": "examples/jsm/csm/CSMShadowNode.js", "patch": "@@ -75,6 +75,8 @@ class CSMShadowNode extends ShadowBaseNode {\n \t\tfor ( let i = 0; i < this.cascades; i ++ ) {\n \n \t\t\tconst lwLight = new LwLight();\n+\t\t\tlwLight.castShadow = true;\n+\n \t\t\tconst lShadow = light.shadow.clone();\n \t\t\tlSh...
2024-12-08T05:38:04
kubernetes/kubernetes
33301aec543ad58cd342a8d04f52a6517e55bb9e
fd41228d1ad1ce1e95c29c654de2373557af35d3
webhook admission: avoid risk of flakes The unit test flaked at least once so far in the CI. Cannot be reproduced locally, though. === RUN TestGetMutatingWebhookConfigSmartReload/create_configuration_and_update_moar_of_them mutating_webhook_manager_test.go:238: Expected number of webhooks 4 received 0 ...
[ { "path": "staging/src/k8s.io/apiserver/pkg/admission/configuration/mutating_webhook_manager_test.go", "patch": "@@ -20,16 +20,17 @@ import (\n \t\"context\"\n \t\"reflect\"\n \t\"testing\"\n-\t\"time\"\n+\t\"testing/synctest\"\n \n-\t\"k8s.io/api/admissionregistration/v1\"\n+\tv1 \"k8s.io/api/admissionregi...
2025-12-25T18:44:24
tensorflow/tensorflow
181a9a13e629ed545ace9e154310c8706ab202e7
cdb540b7d1b1143b00201b5da6e0b438fb61295f
mlir/tosa: Fix build by updating Affine pass include path (#108391)
[ { "path": "tensorflow/compiler/mlir/tosa/tf_passes.cc", "patch": "@@ -15,7 +15,7 @@ limitations under the License.\n \n #include \"tensorflow/compiler/mlir/tosa/tf_passes.h\"\n \n-#include \"mlir/Dialect/Affine/Passes.h\" // from @llvm-project\n+#include \"mlir/Dialect/Affine/Transforms/Passes.h\" // from...
2026-01-16T09:43:57
denoland/deno
5ed0646bc4c93f3c3d72d07832760c21269f7276
30cf1f41623fdfc0bf3df714a723e5f6864299a6
fix(node/crypto): respect authTagLength in createCipheriv for GCM cip… (#31253) This PR fixes a bug in `node:crypto.createCipheriv` where the `authTagLength` option was ignored for AES-GCM ciphers, resulting in a fixed 16-byte authentication tag regardless of the specified value. The fix ensures both encryption and d...
[ { "path": "ext/node/ops/crypto/cipher.rs", "patch": "@@ -25,8 +25,8 @@ enum Cipher {\n Aes128Ecb(Box<ecb::Encryptor<aes::Aes128>>),\n Aes192Ecb(Box<ecb::Encryptor<aes::Aes192>>),\n Aes256Ecb(Box<ecb::Encryptor<aes::Aes256>>),\n- Aes128Gcm(Box<Aes128Gcm>),\n- Aes256Gcm(Box<Aes256Gcm>),\n+ Aes128Gcm(...
2025-11-12T12:58:17
mrdoob/three.js
f5f25c3e9b814b001c51958effeb37da495f03a3
d22a8f89d34126a1725aec243ca23488456df496
ShadowBaseNode: Fix CSM `shadowWorldPosition` (#30060)
[ { "path": "examples/jsm/csm/CSMShadowNode.js", "patch": "@@ -6,8 +6,7 @@ import {\n \tBox3,\n \tObject3D,\n \tWebGLCoordinateSystem,\n-\tNodeUpdateType,\n-\tNode\n+\tShadowBaseNode\n } from 'three/webgpu';\n \n import { CSMFrustum } from './CSMFrustum.js';\n@@ -36,13 +35,12 @@ class LwLight extends Object3D...
2024-12-07T19:25:15
swiftlang/swift
6f627de8b24bbfd700b54d0bbe1e77fdd25da794
b5823836fed1124444978d30456da45fb9228089
Sema: Fix null pointer dereference in canPossiblyConvertTo() Not every CoreFoundation class is toll-free-bridged, of course.
[ { "path": "lib/Sema/Subtyping.cpp", "patch": "@@ -391,7 +391,9 @@ bool swift::constraints::hasProperSupertypes(Type type) {\n }\n \n static ClassDecl *getBridgedObjCClass(ClassDecl *classDecl) {\n- return classDecl->getAttrs().getAttribute<ObjCBridgedAttr>()->getObjCClass();\n+ if (auto *attr = classDecl-...
2026-02-16T03:04:36
kubernetes/kubernetes
c3fecccd3e82b2894ba1ba09d91a8f01fb68eee6
1dde6f3475820011a8b90057b55e95512602e1f1
Make sure errors present in declarative validation test files are DV errors
[ { "path": "pkg/api/testing/validation.go", "patch": "@@ -282,7 +282,7 @@ func verifyValidationEquivalence(t *testing.T, expectedErrs field.ErrorList, run\n \tvar imperativeErrs field.ErrorList\n \n \t// The errOutputMatcher is used to verify the output matches the expected errors in test cases.\n-\terrOutpu...
2026-01-15T17:42:02
mrdoob/three.js
1b6a70461e58005a6963a34baf1e845677155cd3
e4a48bd6bf72c7728a4d01095a61d6ceb16f06cc
UniformArrayNode: Fix `getNodeType()` (#30058) * fix getNodeType() * Revert "WebGPURenderer: Shadow fixes (#29991)" This reverts commit f91fbc3db2d2f8f28882799bd2c340ac1414ea8d. * Revert "WebGPURenderer: Add `SpotLight.map` support (#29989)" This reverts commit e2e04d3e93b9a7548c5361871bd7e088c4b0beef. ...
[ { "path": "src/nodes/accessors/UniformArrayNode.js", "patch": "@@ -46,13 +46,20 @@ class UniformArrayNode extends BufferNode {\n \n \t\tthis.array = value;\n \t\tthis.elementType = elementType === null ? getValueType( value[ 0 ] ) : elementType;\n+\t\tthis.paddedType = this.getPaddedType();\n \n \t\tthis.up...
2024-12-07T18:43:58
denoland/deno
30cf1f41623fdfc0bf3df714a723e5f6864299a6
56dd527ae03578224cd9e09aedc9c1b9895003c4
fix(ext/node): implement performance.timerify() (#31238) Adds the missing implementation for `performance.timerify()` in `node:perf_hooks`, which previously resulted in a "Not implemented" error. Fixes #31115
[ { "path": "ext/node/polyfills/perf_hooks.js", "patch": "@@ -3,7 +3,6 @@\n // TODO(petamoriken): enable prefer-primordials for node polyfills\n // deno-lint-ignore-file prefer-primordials\n \n-import { notImplemented } from \"ext:deno_node/_utils.ts\";\n import { performance, PerformanceEntry } from \"ext:de...
2025-11-12T12:55:02
golang/go
c5559344acf76c6ddbbb6f222354a2dd88e0abba
5132158ac2dee721790ad4b9f745bb6364406ea0
internal/profile: optimize Parse allocs In our case, it greatly improves the performance of continuously collecting diff profiles from the net/http/pprof endpoint, such as /debug/pprof/allocs?seconds=30. This CL is a cherry-pick of my PR upstream: https://github.com/google/pprof/pull/951 Benchmark of profile Parse f...
[ { "path": "src/internal/profile/proto.go", "patch": "@@ -24,6 +24,7 @@ package profile\n import (\n \t\"errors\"\n \t\"fmt\"\n+\t\"slices\"\n )\n \n type buffer struct {\n@@ -175,6 +176,16 @@ func le32(p []byte) uint32 {\n \treturn uint32(p[0]) | uint32(p[1])<<8 | uint32(p[2])<<16 | uint32(p[3])<<24\n }\n \...
2025-11-02T11:28:31
swiftlang/swift
df82d78d5c79fc364a2048d2a59cf2f4b60c478f
033108ad2c7cad65ab5a71e52f4b8bb6c4ddfe8d
Infer lifetime defaults for conditionally Escapable dependencies Example: /* DEFAULT @_lifetime(copy t) */ func foo<T: ~Escapable>(t: T?) -> T See Same-type default lifetime: https://github.com/swiftlang/swift/blob/main/docs/ReferenceGuides/LifetimeAnnotation.md#same-type-default-lifetime Fixes rdar://15095...
[ { "path": "include/swift/AST/ProtocolConformanceRef.h", "patch": "@@ -217,7 +217,7 @@ class ProtocolConformanceRef {\n \n SWIFT_DEBUG_DUMP;\n void dump(llvm::raw_ostream &out, unsigned indent = 0,\n- bool details = true) const;\n+ bool details = true) const LLVM_ATTRIBUTE_USED;\n \...
2026-02-12T23:57:48
mrdoob/three.js
e4a48bd6bf72c7728a4d01095a61d6ceb16f06cc
58a9949bd3a66ab06a8fc6d20ce62eeb28e9f4eb
LightsNode: Fix cache key. (#30045) * LightsNode: Fix cache key. * Update LightsNode.js --------- Co-authored-by: sunag <sunagbrasil@gmail.com>
[ { "path": "src/nodes/lighting/LightsNode.js", "patch": "@@ -1,5 +1,6 @@\n import Node from '../core/Node.js';\n import { nodeObject, vec3 } from '../tsl/TSLBase.js';\n+import { hashArray } from '../core/NodeUtils.js';\n \n const sortLights = ( lights ) => {\n \n@@ -51,6 +52,29 @@ class LightsNode extends No...
2024-12-07T16:40:29
golang/go
5132158ac2dee721790ad4b9f745bb6364406ea0
361d51a6b58bccaab0559e06737c918018a7a5fa
bytes: add Buffer.Peek Fixes #73794 Change-Id: I0a57db05aacfa805213fe8278fc727e76eb8a65e GitHub-Last-Rev: 3494d93f803f21905dfd5a9d593644da69279f16 GitHub-Pull-Request: golang/go#73795 Reviewed-on: https://go-review.googlesource.com/c/go/+/674415 Reviewed-by: Sean Liao <sean@liao.dev> LUCI-TryBot-Result: Go LUCI <gola...
[ { "path": "api/next/73794.txt", "patch": "@@ -0,0 +1 @@\n+pkg bytes, method (*Buffer) Peek(int) ([]uint8, error) #73794", "additions": 1, "deletions": 0, "language": "Plain Text" }, { "path": "doc/next/6-stdlib/99-minor/bytes/73794.md", "patch": "@@ -0,0 +1,2 @@\n+The new [Buffer.Pee...
2025-10-31T20:11:04
denoland/deno
5545b3b0e4a585e5a878fea3932f78d24f42f900
0d838faf17d5174a1e5894d77f533d754f4b05c5
fix: update JSDoc for Deno.cwd() API (#31256) This was missed in https://github.com/denoland/deno/pull/27192.
[ { "path": "cli/tsc/dts/lib.deno.ns.d.ts", "patch": "@@ -1700,9 +1700,6 @@ declare namespace Deno {\n *\n * Throws {@linkcode Deno.errors.NotFound} if directory not available.\n *\n- * Requires `allow-read` permission.\n- *\n- * @tags allow-read\n * @category Runtime\n */\n export func...
2025-11-12T09:09:41
tensorflow/tensorflow
ed1059f642a41d3d3e605ce6f5a2a4111f6c605a
cc46bb1382ec64e5f3af091819ac5a36eb556037
Move SymbolicExprStorage registration out of expression creation. This CL moves the registration of SymbolicExprStorage out of GetOrCreateSymbolicExpr and into the creation site of the MLIRContext. This avoids repeated registration for every expression and improves performance. Ideally we should register SymbolicExprS...
[ { "path": "third_party/xla/xla/backends/cpu/codegen/BUILD", "patch": "@@ -198,6 +198,7 @@ cc_library(\n \"//xla/codegen/emitters/transforms:passes\",\n \"//xla/codegen/xtile/ir:xtile\",\n \"//xla/codegen/xtile/ir/transforms:passes\",\n+ \"//xla/hlo/analysis:symbolic_expr\",\n ...
2026-01-15T16:22:39
mrdoob/three.js
c3a82ac7142abf1a2b83696935d1531d6ffe1f98
04d8b8b4eea328616ecc6c6f15e14fa699a0ade4
PropertyBinding: Fix versioning scheme determination. (#30054)
[ { "path": "src/animation/PropertyBinding.js", "patch": "@@ -569,11 +569,11 @@ class PropertyBinding {\n \n \t\tthis.targetObject = targetObject;\n \n-\t\tif ( targetObject.needsUpdate !== undefined ) { // material\n+\t\tif ( targetObject.isMaterial === true ) {\n \n \t\t\tversioning = this.Versioning.NeedsU...
2024-12-07T11:14:53
golang/go
388c41c412c24b751c8c09465787ae79bceca9c7
385dc33250336081c0c630938c3efede481eff76
cmd/go: skip git sha256 tests if git < 2.29 Fix test building on older Ubuntu LTS releases (that are still supported). Git SHA256 support was only included in 2.29, which came out in 2021. Check the output of `git version` and skip these tests if the version is older than that introduction. Thanks to @ianlancetaylor ...
[ { "path": "src/cmd/go/internal/modfetch/codehost/git_test.go", "patch": "@@ -16,14 +16,18 @@ import (\n \t\"io/fs\"\n \t\"log\"\n \t\"os\"\n+\t\"os/exec\"\n \t\"path\"\n \t\"path/filepath\"\n \t\"reflect\"\n+\t\"regexp\"\n \t\"runtime\"\n \t\"strings\"\n \t\"sync\"\n \t\"testing\"\n \t\"time\"\n+\n+\t\"gola...
2025-08-24T19:15:06
denoland/deno
0d838faf17d5174a1e5894d77f533d754f4b05c5
0c9598d169d238d595882361d06d33bb620f2c57
fix(ext/napi): suppress deprecated Buffer warnings (#31245)
[ { "path": "ext/napi/lib.rs", "patch": "@@ -391,7 +391,7 @@ pub struct Env {\n pub last_error: napi_extended_error_info,\n pub last_exception: Option<v8::Global<v8::Value>>,\n pub global: v8::Global<v8::Object>,\n- pub buffer_constructor: v8::Global<v8::Function>,\n+ pub create_buffer: v8::Global<v8:...
2025-11-11T06:02:29
kubernetes/kubernetes
6bfa727bee264f5d7e4471066c1b48a28d0c1929
6f93518c7f47d0581384962301a379ad17159bec
client-go testing: fix List+Watch support 56448506075c3db1d added support for List+Watch to a fake client-go instance. However, that support was not quite working yet as seen when analyzing a test flake: - List returned early when there were no objects, without adding the ResourceVersion. The ResourceVersion should...
[ { "path": "pkg/controller/certificates/clustertrustbundlepublisher/publisher_test.go", "patch": "@@ -313,6 +313,10 @@ func fakeKubeClientSetWithCTBList(t *testing.T, signerName string, ctbs ...runti\n \t\t\t}\n \t\t}\n \n+\t\t// Ensure that Watch doesn't return any objects either by bumping up the resource ...
2026-01-09T15:54:10
tensorflow/tensorflow
2c6e6c744c2d8286c5a6ab3a6a201cb8de4fe8ce
a7a6331d3d336b60c9de7f1039c44f52d63a49d2
Fix some MSA logging that is too verbose. With kernels printing the full instruction prints the encoded body text, which is too large. Also, change the verbosity setting for printing the module during MSA. With xla_dump_to, we rarely need to print the module in the info logs. PiperOrigin-RevId: 856400896
[ { "path": "third_party/xla/xla/service/memory_space_assignment/algorithm.cc", "patch": "@@ -7324,7 +7324,7 @@ AllocationResult MsaAlgorithm::PrefetchWithResourceConstraints(\n // Start Done\n \n VLOG(5) << \"Considering prefetch of \"\n- << request.allocation...
2026-01-14T23:50:16
mrdoob/three.js
04d8b8b4eea328616ecc6c6f15e14fa699a0ade4
88aa95a4a7082e7123a31ad7ebe539925621828a
Node: fix small typos (#30049) Co-authored-by: Samuel Rigaud <srigaud@duodisplay.com>
[ { "path": "src/nodes/core/Node.js", "patch": "@@ -469,7 +469,7 @@ class Node extends EventDispatcher {\n \n \t/**\n \t * Represents the analyze stage which is the second step of the build process, see {@link Node#build} method.\n-\t * This stage anaylzes the node hierarchy and ensures descendent nodes are b...
2024-12-06T15:21:07
swiftlang/swift
9850988b6ee74b91e2c3f9d365c449a37f2b924c
494b44985124bff368d4292740f40521bd6062ac
Reparenting: fix linking of Self associated conformance descriptor It should check the weak imported status of the type requirement decl. We already checked the status of `getDecl()` earlier.
[ { "path": "lib/IRGen/Linking.cpp", "patch": "@@ -1483,7 +1483,7 @@ bool LinkEntity::isWeakImported(ModuleDecl *module) const {\n \n auto &ctx = getDecl()->getASTContext();\n if (assocConformance.first->isEqual(ctx.TheSelfType))\n- return cast<ProtocolDecl>(getDecl())->isWeakImported(module);\n+...
2026-02-13T22:20:41
denoland/deno
0c9598d169d238d595882361d06d33bb620f2c57
19c7f1fc5d6ec4e61273f952761696bad3e478ca
fix(check): ensure `@types/node` is cached when already in resolution (#31235)
[ { "path": "cli/graph_util.rs", "patch": "@@ -792,7 +792,9 @@ impl ModuleGraphBuilder {\n && graph.has_node_specifier\n && graph.graph_kind().include_types()\n {\n- npm_installer.inject_synthetic_types_node_package().await?;\n+ npm_installer\n+ .inject_synthetic_types_node_pa...
2025-11-10T13:10:11
golang/go
385dc33250336081c0c630938c3efede481eff76
99b724f4542f4d9fb4a2ceacbbd2a6d9367dc0f6
runtime: prevent time.Timer.Reset(0) from deadlocking testing/synctest tests In Go 1.23+, timer channels behave synchronously. When we have a timer channel (i.e. !async && t.isChan) we would lock the runtime.timer.sendLock mutex at the beginning of runtime.timer.modify()'s execution. Calling time.Timer.Reset(0) withi...
[ { "path": "src/internal/synctest/synctest_test.go", "patch": "@@ -5,6 +5,7 @@\n package synctest_test\n \n import (\n+\t\"context\"\n \t\"fmt\"\n \t\"internal/synctest\"\n \t\"internal/testenv\"\n@@ -329,6 +330,31 @@ func TestAfterFuncRunsImmediately(t *testing.T) {\n \t})\n }\n \n+// TestTimerResetZeroDoNo...
2025-11-01T15:15:58
golang/go
99b724f4542f4d9fb4a2ceacbbd2a6d9367dc0f6
27937289dc9fccf1f5513475145799087f39b964
cmd/go: document purego convention Fixes #23172 Change-Id: I854e399471dfa22e62fbdec9719e561c4501e5ac Reviewed-on: https://go-review.googlesource.com/c/go/+/660136 Reviewed-by: Michael Matloob <matloob@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Mi...
[ { "path": "src/cmd/go/alldocs.go", "patch": "@@ -2190,6 +2190,12 @@\n // building the package for Windows; similarly, math_386.s will be included\n // only when building the package for 32-bit x86.\n //\n+// By convention, packages with assembly implementations may provide a go-only\n+// version under the \...
2025-03-21T23:23:50
denoland/deno
19c7f1fc5d6ec4e61273f952761696bad3e478ca
58f7435270bd018386ddb8f35ddc2494a0e8695f
fix(ext/node): truncate first non-hex value on Buffer.from (#31227)
[ { "path": "ext/node/polyfills/internal_binding/_utils.ts", "patch": "@@ -58,14 +58,35 @@ export function base64UrlToBytes(str: string) {\n return forgivingBase64UrlDecode(str);\n }\n \n+// https://github.com/nodejs/node/blob/591ba692bfe30408e6a67397e7d18bfa1b9c3561/deps/nbytes/src/nbytes.cpp#L144-L158\n+/...
2025-11-10T11:32:09
swiftlang/swift
08c6317673aff11dbda74e6cd6b4a2646de84539
fddce85428f14f8a7de3c3e348d40f0f54dc6e73
Move the x86 symbols to the no-asserts stdlib ABI fixture (#87184) These ABI symbols, added in #86811, need to be moved to the correct test file.
[ { "path": "test/abi/macOS/x86_64/stdlib-asserts.swift", "patch": "@@ -66,26 +66,3 @@ Added: _$ss24_RuntimeFunctionCountersV07runtimebC7OffsetsSPys6UInt16VGvpZMV\n \n // Runtime Symbols\n Added: _swift_clearSensitive\n-\n-// BorrowingSequence + supporting symbols\n-Added: _$s18_BorrowingIterators01_A8Sequenc...
2026-02-13T20:17:15
golang/go
89dee70484669d546fff6ca29a4717368af351ff
8683bb846dfc1460c476cfed1696aad8e681926f
runtime: prioritize panic output over racefini For some reason CL 646198 uncovered #3934 and #20018 again, but only in race mode. It turns out that because racefini does not return, and racefini is called early after main returns, we would not properly wait for a concurrent panic to complete. This would result in fair...
[ { "path": "src/runtime/crash_test.go", "patch": "@@ -788,9 +788,6 @@ func TestPanicInlined(t *testing.T) {\n // Test for issues #3934 and #20018.\n // We want to delay exiting until a panic print is complete.\n func TestPanicRace(t *testing.T) {\n-\tif race.Enabled {\n-\t\tt.Skip(\"racefini exits program be...
2025-07-30T00:36:40
tensorflow/tensorflow
71fcb8e03f42f08deab94451d0afe55a2960694b
c868765e73f15dafe37947828f7c71cceca0c50e
PR #36340: Lint error codes docs pages Imported from GitHub PR https://github.com/openxla/xla/pull/36340 📝 Summary of Changes Hi @dubstack, here are linted Error Codes docs pages. 🚀 Kind of Contribution 📚 Documentation Copybara import of the project: -- 82fc6c958885153cf7cc7fc5c3a53e80133364a6 by Mateusz Sokó...
[ { "path": "third_party/xla/docs/error_codes.md", "patch": "@@ -2,15 +2,20 @@\n \n This page is a list of all error codes emitted by the XLA compiler.\n \n-- [E0100](./errors/error_0100.md)\n-- [E0101](./errors/error_0101.md)\n-- [E0102](./errors/error_0102.md)\n-- [E0200](./errors/error_0200.md)\n--...
2026-01-14T22:03:27
swiftlang/swift
f3d8e53f0e8283836c4292660a0e68ca37233942
fddce85428f14f8a7de3c3e348d40f0f54dc6e73
SILGen: Fix effective thrown error type for integrated function conversion emission Sometimes, as an optimization, we fulfill a function conversion expression that wraps a closure literal by adjusting the emission of the closure function instead of emitting a thunk. For example, the following closure is emitted as an ...
[ { "path": "lib/SILGen/SILGenFunction.cpp", "patch": "@@ -1159,9 +1159,26 @@ void SILGenFunction::emitClosure(AbstractClosureExpr *ace) {\n TypeContext = closureInfo;\n \n auto resultIfaceTy = ace->getResultType()->mapTypeOutOfEnvironment();\n+\n+ // Sometimes, as an optimization, we fulfill a function ...
2026-02-13T19:55:35
golang/go
cbbd385cb863e4a0969de9846fdd80227ed91ad0
6aca04a73ac3ec20c39e4abe47a27370b286fc76
strconv: remove arch-specific decision in formatBase10 There is only one architecture-specific code segment left in formatBase10. Remove it for simplicity. The only affected system is ppc64le, which does add 10-20% to the runtime, but that's a ppc64le problem, not a strconv problem. Changing the "uint32" to "uint" ma...
[ { "path": "src/internal/strconv/itoa.go", "patch": "@@ -4,10 +4,7 @@\n \n package strconv\n \n-import (\n-\t\"internal/goarch\"\n-\t\"math/bits\"\n-)\n+import \"math/bits\"\n \n // FormatUint returns the string representation of i in the given base,\n // for 2 <= base <= 36. The result uses the lower-case l...
2025-10-29T16:09:18
tensorflow/tensorflow
66bdfa0e89559af336953200c112d998af81bc2e
94f68a89b508fce5637bc035125be9b6b2cf3864
[XLA:GPU] Switch collective_ops_e2e_test_base to use HloRunnerPjRt. This change also fixes behaviour of `HloRunnerPjRt::ExecuteReplicated`. XLA:GPU expects that all host threads that execute replicated HLO module have the same RunId, but current `HloRunnerPjRt::ExecuteReplicated` would assign new id to each thread. Th...
[ { "path": "third_party/xla/xla/service/BUILD", "patch": "@@ -4550,6 +4550,7 @@ cc_library(\n \":computation_layout\",\n \":computation_placer_hdr\",\n \":hlo_runner_interface\",\n+ \"//xla:executable_run_options\",\n \"//xla:future\",\n \"//xla:literal\",\n ...
2026-01-14T20:54:51
mrdoob/three.js
16cb40ece4574e0237c8e478aff1c0f67e5cbb67
ae90867ef660be18c8095e22fe9de7d9b1b63efd
Node: Document more modules. (#30041) * Node: Document more modules. * Fix typo.
[ { "path": "src/nodes/core/Node.js", "patch": "@@ -522,6 +522,7 @@ class Node extends EventDispatcher {\n \t * The {@link Node#updateBeforeType} property defines how often the update is executed.\n \t *\n \t * @param {NodeFrame} frame - A reference to the current node frame.\n+\t * @return {Boolean?} An opti...
2024-12-05T19:13:22
golang/go
235b4e729d22bbca25c372bcccbc2613035d37aa
d44db293f9efabac3abf718a02e7787fb961b63f
cmd/compile/internal/ssa: model right shift more precisely Prove currently checks for 0 sign bit extraction (x>>63) at the end of the pass, but it is more general and more useful (and not really more work) to model right shift during value range tracking. This handles sign bit extraction (both 0 and -1) but also makes...
[ { "path": "src/cmd/compile/internal/ssa/prove.go", "patch": "@@ -12,6 +12,7 @@ import (\n \t\"math\"\n \t\"math/bits\"\n \t\"slices\"\n+\t\"strings\"\n )\n \n type branch int\n@@ -132,7 +133,7 @@ type limit struct {\n }\n \n func (l limit) String() string {\n-\treturn fmt.Sprintf(\"sm,SM,um,UM=%d,%d,%d,%d\"...
2025-10-29T11:27:38
mrdoob/three.js
dfab00fb5ee7b1b17c99dbf88b63c616d8edd667
d9bf05e6ad06aa29a867e50a82de5bb7bd3ee587
Docs: Fix code blocks occasionally lacking white-space in Firefox (#30036)
[ { "path": "docs/page.js", "patch": "@@ -205,6 +205,7 @@ function onDocumentLoad() {\n \t\tfor ( let i = 0; i < elements.length; i ++ ) {\n \n \t\t\tconst e = elements[ i ];\n+\t\t\te.currentStyle = { 'whiteSpace': 'pre-wrap' }; // Workaround for Firefox, see #30008\n \t\t\te.className += ' prettyprint';\n \...
2024-12-04T13:38:11
swiftlang/swift
327653d236122288dce6df766f0cf4f4f6f5b416
80abc594711acfa7b621cfce683a53a60adcfe99
[cxx-interop] Fix .pointee lookup for foreign reference types (#87195) This regression was introduced in c2952b77aa6771ecc26d3753805b10000bba04c9 rdar://170233903
[ { "path": "lib/ClangImporter/ClangLookup.cpp", "patch": "@@ -491,10 +491,7 @@ ClangImporter::Implementation::lookupAndImportPointee(NominalTypeDecl *Struct) {\n const auto *CXXRecord =\n dyn_cast<clang::CXXRecordDecl>(Struct->getClangDecl());\n \n- if (!CXXRecord || !isa<StructDecl>(Struct))\n- ...
2026-02-13T17:26:29
denoland/deno
ac62d1dca3541686e53f1c883775cdbea0e1f628
9a8cb79986a8fbc9fc016f9c5e81c1bb4de5da16
ci: add AI PR generation (#31214) Should also fix the issue triager workflow which was missing the GH token.
[ { "path": ".github/workflows/ai_pr_generation.yml", "patch": "@@ -0,0 +1,85 @@\n+name: AI PR Generation\n+\n+on:\n+ issues:\n+ types: [labeled]\n+\n+jobs:\n+ generate-pr:\n+ if: github.event.label.name == 'ai:generate-pr'\n+ runs-on: ubuntu-latest\n+ permissions:\n+ contents: write\n+ ...
2025-11-06T18:30:41
golang/go
d44db293f9efabac3abf718a02e7787fb961b63f
cdc6b559ca2ccac8eda7e0ed2c4745df2a32a697
go/token: fix a typo in a comment Fixes #75632 Change-Id: I71f891eb837147b6ff818ec4b2133c8c07091931 GitHub-Last-Rev: 3eeeea2dc28ef13eaef0fee7abf00ad418218f83 GitHub-Pull-Request: golang/go#76117 Reviewed-on: https://go-review.googlesource.com/c/go/+/716440 Reviewed-by: t hepudds <thepudds1460@gmail.com> Reviewed-by: ...
[ { "path": "src/go/token/position.go", "patch": "@@ -511,7 +511,7 @@ func (s *FileSet) AddExistingFiles(files ...*File) {\n \t//\t}\n \t//\n \t// because all calls to AddFile must be in increasing order.\n-\t// AddExistingFilesFiles lets us augment an existing FileSet\n+\t// AddExistingFiles lets us augment ...
2025-10-30T13:46:44
mrdoob/three.js
ad0ff80ce559e87a2921d1b1b6761f2954c0fe59
ae2791a85ed47eff59dd3ff83d1adc88950f858e
LineSegments2: Fix `raycast()` . (#30016) * updated linesegments2 webgpu * Update LineSegments2.js FIx codescan issue. * use of vec4 to transfer viewport to this.resolution --------- Co-authored-by: Michael Herzog <michael.herzog@human-interactive.org> Co-authored-by: Renaud Rohlinger <renaud.rohlinger...
[ { "path": "examples/jsm/lines/webgpu/LineSegments2.js", "patch": "@@ -9,9 +9,9 @@ import {\n \tSphere,\n \tVector3,\n \tVector4,\n-\tLine2NodeMaterial\n+\tLine2NodeMaterial,\n+\tVector2\n } from 'three/webgpu';\n-\n import { LineSegmentsGeometry } from '../../lines/LineSegmentsGeometry.js';\n \n const _star...
2024-12-04T06:07:50
denoland/deno
515e261d81ebf3a18af5cfbc297ad55d3899a976
004b85703a57b30b13d41a6d1fc44531dae83ddd
chore: fix install python ci step (#31204)
[ { "path": ".github/workflows/ci.generate.ts", "patch": "@@ -299,9 +299,16 @@ function withCondition(\n step: Record<string, unknown>,\n condition: string,\n ): Record<string, unknown> {\n+ function maybeParens(condition: string) {\n+ if (condition.includes(\"&&\") || condition.includes(\"||\")) {\n+...
2025-11-06T09:27:36
swiftlang/swift
ae4f5e7c82bd28929a70ce89fe40a07d36f0ee25
272f8fefebf37ab7181ff8ea89cce1f61c8778de
Run tests with -solver-enable-crash-on-valid-salvage
[ { "path": "test/Constraints/rdar44816848.swift", "patch": "@@ -1,4 +1,5 @@\n-// RUN: %target-typecheck-verify-swift\n+// RUN: %target-typecheck-verify-swift -solver-disable-crash-on-valid-salvage\n+// RUN: not --crash %target-swift-frontend -solver-enable-crash-on-valid-salvage -typecheck %s\n \n class A {}...
2026-02-13T13:17:57
golang/go
cdc6b559ca2ccac8eda7e0ed2c4745df2a32a697
1e5bb416d887b1cf2bd9b6a3b9f05222d44c3ffc
strconv: remove hand-written divide on 32-bit systems The compiler now generates code that is just as good. host: s7:GOARCH=386 goos: linux goarch: 386 pkg: strconv cpu: AMD Ryzen 9 7950X 16-Core Processor │ 8d2b4ce71b3 │ d5524a1f38c │ ...
[ { "path": "src/internal/strconv/itoa.go", "patch": "@@ -191,10 +191,6 @@ func formatBase10(a []byte, u uint64) int {\n \t\t// On most systems, the uint32 math is faster, but not all.\n \t\t// The decision here is based on benchmarking.\n \t\titoaPure64 = host64bit && goarch.GOARCH != \"amd64\" && goarch.GOA...
2025-10-28T14:22:54
tensorflow/tensorflow
f0567a92e3447e02da22919734161e3eacc1e7f2
0d58c6d77be42937d4431bdc7fabc2b03da9d3c1
Fix tsan issue in shutdown PiperOrigin-RevId: 856244978
[ { "path": "third_party/xla/xla/python/transfer/event_loop.cc", "patch": "@@ -227,14 +227,14 @@ class SocketListener::Handler : public PollEventLoop::Handler {\n }\n \n void Shutdown() {\n- auto* l = loop();\n- shutdown_requested_.store(true);\n- l->SendWake(this);\n std::shared_ptr<AcceptHa...
2026-01-14T17:22:47
golang/go
1e5bb416d887b1cf2bd9b6a3b9f05222d44c3ffc
38317c44e71478220f842c7efd8078215825af92
cmd/compile: implement bits.Mul64 on 32-bit systems This CL implements Mul64uhilo, Hmul64, Hmul64u, and Avg64u on 32-bit systems, with the effect that constant division of both int64s and uint64s can now be emitted directly in all cases, and also that bits.Mul64 can be intrinsified on 32-bit systems. Previously, cons...
[ { "path": "src/cmd/compile/internal/arm/ssa.go", "patch": "@@ -245,6 +245,7 @@ func ssaGenValue(s *ssagen.State, v *ssa.Value) {\n \t\tp.To.Type = obj.TYPE_REG\n \t\tp.To.Reg = r\n \tcase ssa.OpARMADDS,\n+\t\tssa.OpARMADCS,\n \t\tssa.OpARMSUBS:\n \t\tr := v.Reg0()\n \t\tr1 := v.Args[0].Reg()", "addition...
2025-10-27T23:41:39
denoland/deno
982658e8ec0927ef95299725a8eb48d3885ab9f2
4d2b56911f94089bc112f87fd9be4b1b16eb0abc
fix(lsp): lint-ignore directives follow leading comments (#31200)
[ { "path": "cli/lsp/analysis.rs", "patch": "@@ -1100,51 +1100,59 @@ impl CodeActionCollection {\n .actions\n .push(CodeActionKind::DenoLint(ignore_error_action));\n \n- // Disable a lint error for the entire file.\n- let maybe_ignore_comment = module\n+ let parsed_source = module\n ...
2025-11-06T07:53:23
mrdoob/three.js
ae2791a85ed47eff59dd3ff83d1adc88950f858e
93dccc14104083f2e24020ba62e691cb66e32ac4
WebGPURenderer: Fix filterable depth textures (#30023) * fix filterable depth textures * cleanup
[ { "path": "examples/webgpu_backdrop_water.html", "patch": "@@ -191,7 +191,7 @@\n \n \t\t\t\t// renderer\n \n-\t\t\t\trenderer = new THREE.WebGPURenderer( /*{ antialias: true }*/ );\n+\t\t\t\trenderer = new THREE.WebGPURenderer( { antialias: true } );\n \t\t\t\trenderer.setPixelRatio( window.devicePixelRatio...
2024-12-03T21:25:44
swiftlang/swift
3b1c0fb80d14c62a0f2c2b17947f6390749d0d4d
58bf90014893a6ca571bd160a8c0c535b6df699b
[stdlib] Fix documentation typo in Observations.swift
[ { "path": "stdlib/public/Observation/Sources/Observation/Observations.swift", "patch": "@@ -166,7 +166,7 @@ public struct Observations<Element: Sendable, Failure: Error>: AsyncSequence, Se\n public struct Iterator: AsyncIteratorProtocol {\n // the state ivar serves two purposes:\n // 1) to store a...
2026-02-13T14:34:21
mrdoob/three.js
93dccc14104083f2e24020ba62e691cb66e32ac4
0c451569e3087add35b4e30f1b2dd1f2ca8fb5a2
Node: Document more modules. (#30027) * Node: Document more modules. * Docs: Minor fixes. * Docs: More fixes.
[ { "path": "src/nodes/core/LightingModel.js", "patch": "@@ -10,6 +10,7 @@ class LightingModel {\n \t * This method is intended for setting up lighting model and context data\n \t * which are later used in the evaluation process.\n \t *\n+\t * @abstract\n \t * @param {ContextNode} input - The current node con...
2024-12-03T15:00:46
denoland/deno
2eb03415269cdbb8f22551a4769b3cbd14d2dc53
42cca89b074c7f4f09dfd8d9d4c6dfb7a580f7e7
fix(lsp): set lockfile_skip_write unconditionally (#31191)
[ { "path": "cli/lsp/language_server.rs", "patch": "@@ -379,7 +379,6 @@ impl LanguageServer {\n specifiers: Vec<ModuleSpecifier>,\n referrer: ModuleSpecifier,\n force_global_cache: bool,\n- lockfile_skip_write: bool,\n ) -> LspResult<Option<Value>> {\n async fn create_graph_for_caching(\n...
2025-11-05T14:27:29
tensorflow/tensorflow
0d58c6d77be42937d4431bdc7fabc2b03da9d3c1
696b07097add0e71b82afad9654cfdbe32dc584c
Introduce error codes for Mosaic CompileTime failures. PiperOrigin-RevId: 856232653
[ { "path": "third_party/xla/xla/error/error_codes.h", "patch": "@@ -88,6 +88,12 @@ namespace xla::error {\n X(\"E1001\", CompileTimeScopedVmemOom, absl::StatusCode::kResourceExhausted) \\\n X(\"E1200\", CompileTimeHostOffloadOutputLocationMismatch, \\\n absl::StatusCode::kInvalidA...
2026-01-14T16:48:44
golang/go
38317c44e71478220f842c7efd8078215825af92
3be9a0e014ee56f25ce4aac6091c617799fd26f2
crypto/internal/fips140/aes: fix CTR generator Fixed two issues in AVO based generator of amd64 asm code. 1. Updated golang.org/x/tools dependency to prevent build issue in Go 1.25. > golang.org/x/tools@v0.24.0/internal/tokeninternal/tokeninternal.go:64:9: > invalid array length -delta * delta (constant -256 of type...
[ { "path": "src/crypto/internal/fips140/aes/_asm/ctr/ctr_amd64_asm.go", "patch": "@@ -16,7 +16,7 @@ import (\n //go:generate go run . -out ../../ctr_amd64.s\n \n func main() {\n-\tPackage(\"crypto/aes\")\n+\tPackage(\"crypto/internal/fips140/aes\")\n \tConstraintExpr(\"!purego\")\n \n \tctrBlocks(1)", "a...
2025-10-22T14:26:30
swiftlang/swift
272f8fefebf37ab7181ff8ea89cce1f61c8778de
c8ba1fd6523b66d7c3ecc74df104bdf767fe0a34
Sema: Add flag to force a crash if salvage() found a valid solution
[ { "path": "include/swift/Basic/LangOptions.h", "patch": "@@ -991,6 +991,10 @@ namespace swift {\n /// debugging\n unsigned ShuffleDisjunctionChoicesSeed = 0;\n \n+ /// If true, we will crash if the constraint solver found a valid solution\n+ /// in diagnostic mode.\n+ bool CrashOnValidSalva...
2026-02-09T16:11:07
denoland/deno
88aa2461c1ba0261e2ae9075b2e9a4d2b0a9d121
71db104c1f7c855680ae130c1e55a0fcc5144efd
fix(ext/node): implement `process.setgid()` and `process.setuid()` (#31162) Closes #31145, #31146
[ { "path": "ext/node/lib.rs", "patch": "@@ -459,6 +459,8 @@ deno_core::extension!(deno_node,\n ops::process::op_node_process_kill,\n ops::process::op_node_process_setegid<P>,\n ops::process::op_node_process_seteuid<P>,\n+ ops::process::op_node_process_setgid<P>,\n+ ops::process::op_node_pro...
2025-11-05T08:15:28
golang/go
3be9a0e014ee56f25ce4aac6091c617799fd26f2
d2c5fa081445bf1ebea013c2b5531ffce690a923
go/types, types: proceed with correct (invalid) type in case of a selector error Fixes #76103. Change-Id: Idc2f5d1d7aeb4a9b468e7c268e3bf5b85d1c3777 Reviewed-on: https://go-review.googlesource.com/c/go/+/716300 Reviewed-by: Robert Griesemer <gri@google.com> Reviewed-by: Alan Donovan <adonovan@google.com> LUCI-TryBot-R...
[ { "path": "src/cmd/compile/internal/types2/call.go", "patch": "@@ -931,6 +931,7 @@ func (check *Checker) selector(x *operand, e *syntax.SelectorExpr, def *TypeName\n \n Error:\n \tx.mode = invalid\n+\tx.typ = Typ[Invalid]\n \tx.expr = e\n }\n ", "additions": 1, "deletions": 0, "language": "Go" ...
2025-10-29T22:22:14
kubernetes/kubernetes
ebd6959b126bad49c305d8088103455ce13241b2
2dad39751d993757b3f218fda93a380a450a2257
Fix Replaced delta documentation
[ { "path": "staging/src/k8s.io/client-go/tools/cache/delta_fifo.go", "patch": "@@ -172,7 +172,8 @@ const (\n \tUpdated DeltaType = \"Updated\"\n \tDeleted DeltaType = \"Deleted\"\n \t// Replaced is emitted when we encountered watch errors and had to do a\n-\t// relist. We don't know if the replaced object ha...
2026-01-14T17:45:13
mrdoob/three.js
5d6a035e3afa8f6cce47a1ba949cce2b5f363f82
360600e856ef5b84e894ab256a0793c9a53808d0
Docs: fix french typos (#30019) Co-authored-by: Samuel Rigaud <srigaud@duodisplay.com>
[ { "path": "docs/api/fr/animation/AnimationAction.html", "patch": "@@ -13,7 +13,7 @@ <h1>[name]</h1>\n Les AnimationActions programment la performance des animations qui sont stockées dans\n [page:AnimationClip AnimationClips].<br /><br />\n \n- Note: La plupart des méthode...
2024-12-02T22:27:37
tensorflow/tensorflow
99f97534c0507e4b97a7a901b869d13b6a841ca8
b0fd963c8656c7417427f9d4b5d794f8f5f24af7
PR #34215: [ROCm] Fix AMD GPU alloca address space errors (#433) Imported from GitHub PR https://github.com/openxla/xla/pull/34215 * Fix AMD GPU alloca address space errors AMD GPUs require stack allocations (alloca instructions) to be in address space 5 (private/local memory), not address space 0 (generic memory) ...
[ { "path": "third_party/xla/xla/codegen/emitters/transforms/BUILD", "patch": "@@ -29,6 +29,17 @@ cc_library(\n ],\n )\n \n+cc_library(\n+ name = \"lowering_utils\",\n+ srcs = [\"lowering_utils.cc\"],\n+ hdrs = [\"lowering_utils.h\"],\n+ deps = [\n+ \"//xla/tsl/platform:logging\",\n+ ...
2026-01-14T16:09:57
mrdoob/three.js
b2320be805e60f68732ad678b518d6f222d87cd4
480c4140232d9d16e191f8666f583ec73e666f2e
Node: Document more modules. (#30012) * Node: Document more modules. * Docs: Fix typo.
[ { "path": "src/nodes/core/Node.js", "patch": "@@ -98,7 +98,22 @@ class Node extends EventDispatcher {\n \n \t\t// private\n \n+\t\t/**\n+\t\t * The cache key of this node.\n+\t\t *\n+\t\t * @private\n+\t\t * @type {Number?}\n+\t\t * @default null\n+\t\t */\n \t\tthis._cacheKey = null;\n+\n+\t\t/**\n+\t\t * ...
2024-12-02T17:24:19
denoland/deno
cc5a13315ef4588b5c86c7c20a64763ca7b24bbc
5eccca8717986ea7643638b41d2a78a818078b61
feat(process): support integer signals in Deno.kill and child.kill (#31153) Solution for https://github.com/denoland/deno/issues/30910 now this is valid: ```js function isRunning(pid: number): boolean { try { Deno.kill(pid, 0) return true } catch (e) { if (e instanceof Deno.errors.NotFound) { ...
[ { "path": "cli/tsc/dts/lib.deno.ns.d.ts", "patch": "@@ -3796,13 +3796,13 @@ declare namespace Deno {\n /** Waits for the child to exit completely, returning all its output and\n * status. */\n output(): Promise<CommandOutput>;\n- /** Kills the process with given {@linkcode Deno.Signal}.\n+ ...
2025-11-04T15:24:22
golang/go
9bbda7c99d2c176592186d230dab013147954bda
915c1839fe76aef4bea6191282be1e48ef1c64e2
cmd/compile: make prove understand div, mod better This CL introduces new divisible and divmod passes that rewrite divisibility checks and div, mod, and mul. These happen after prove, so that prove can make better sense of the code for deriving bounds, and they must run before decompose, so that 64-bit ops can be lowe...
[ { "path": "src/cmd/compile/internal/ssa/_gen/dec.rules", "patch": "@@ -4,7 +4,7 @@\n \n // This file contains rules to decompose builtin compound types\n // (complex,string,slice,interface) into their constituent\n-// types. These rules work together with the decomposeBuiltIn\n+// types. These rules work ...
2025-10-23T02:22:51
swiftlang/swift
21aea899cada3a07ad08fa283c26049c4abc4b62
3ddfe8ce7512e2d3dca8839b28c44b8345a55a7b
runtime: repair the windows x86 build `flattenWindowsCommandLine` is only used when backtracing on crashes is enabled. Hoist this into that preprocessor condition to allow it to reference the command line buffer without an error.
[ { "path": "stdlib/public/runtime/Backtrace.cpp", "patch": "@@ -149,10 +149,6 @@ SWIFT_RUNTIME_STDLIB_INTERNAL BacktraceSettings _swift_backtraceSettings = {\n NULL,\n };\n \n-#ifdef _WIN32\n-static bool flattenCommandLine(char *buffer, size_t buflen, const char **argv);\n-#endif\n-\n }\n }\n }\n@@ -1194,6...
2026-02-12T23:03:43
mrdoob/three.js
480c4140232d9d16e191f8666f583ec73e666f2e
45b953d0d326cede15427ced44610ae61052a9aa
Update Matrix3.tests.js Fix unit test.
[ { "path": "test/unit/src/math/Matrix3.tests.js", "patch": "@@ -2,6 +2,7 @@\n \n import { Matrix3 } from '../../../../src/math/Matrix3.js';\n import { Matrix4 } from '../../../../src/math/Matrix4.js';\n+import { Vector2 } from '../../../../src/math/Vector2.js';\n \n function matrixEquals3( b, a, tolerance ) ...
2024-12-02T17:23:02
denoland/deno
16f6e2c3e8178e8435f4a9a2fbbecda4da7bea59
08a0846b4b08598a3e91cf7050e4040917600e1e
feat: V8 14.2 (#31178) Also locks `temporal_capi` to version 0.1.0, instead of using 0.1.1 which causes wrong calendar to by used by default. Closes https://github.com/denoland/deno/issues/30782 Closes https://github.com/denoland/deno/issues/30992 Closes https://github.com/denoland/deno/issues/30776 Closes https://gi...
[ { "path": "Cargo.lock", "patch": "@@ -791,9 +791,9 @@ checksum = \"1bf2a5fb3207c12b5d208ebc145f967fea5cac41a021c37417ccc31ba40f39ee\"\n \n [[package]]\n name = \"calendrical_calculations\"\n-version = \"0.2.2\"\n+version = \"0.2.3\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-chec...
2025-11-04T14:25:15
mrdoob/three.js
45b953d0d326cede15427ced44610ae61052a9aa
036e03e72a3eceae842cce4b0cc3b9a56ce2ecd6
Add 24bit uncompressed RGB support to DDSLoader (#30010) * Add 24bit uncompressed RGB support to DDSLoader Adds support for 24bit uncompressed RGB textured to DDSLoader. The texture data is read from the file in RGB, and returned in RGBA format with a=1. * Remove typescript types * Add new example for 24bit ...
[ { "path": "examples/jsm/loaders/DDSLoader.js", "patch": "@@ -109,6 +109,33 @@ class DDSLoader extends CompressedTextureLoader {\n \n \t\t}\n \n+\t\tfunction loadRGBMip( buffer, dataOffset, width, height ) {\n+\n+\t\t\tconst dataLength = width * height * 3;\n+\t\t\tconst srcBuffer = new Uint8Array( buffer, d...
2024-12-02T17:11:02
golang/go
da3fb90b231ef9c70e7eb927585ab49593cc25f1
9035f7aea538c25a11420bce7cbd8225efc204e7
crypto/internal/fips140/bigmod: fix extendedGCD comment Change-Id: I6a6a6964642991dc46929bfc47e411bb7563e425 Reviewed-on: https://go-review.googlesource.com/c/go/+/716080 Auto-Submit: Filippo Valsorda <filippo@golang.org> Reviewed-by: Roland Shoemaker <roland@golang.org> Reviewed-by: Michael Knyszek <mknyszek@google.c...
[ { "path": "src/crypto/internal/fips140/bigmod/nat.go", "patch": "@@ -1088,7 +1088,7 @@ func (x *Nat) GCDVarTime(a, b *Nat) (*Nat, error) {\n \treturn x.set(u), nil\n }\n \n-// extendedGCD computes u and A such that a = GCD(a, m) and u = A*a - B*m.\n+// extendedGCD computes u and A such that u = GCD(a, m) = ...
2025-10-08T11:43:08
denoland/deno
08a0846b4b08598a3e91cf7050e4040917600e1e
b885041588f060f2dacf35dc6e184b530b36ca92
chore: fix promote_to_release workflow (#31186) Part of https://github.com/denoland/deno/issues/31169
[ { "path": ".github/workflows/promote_to_release.yml", "patch": "@@ -48,7 +48,7 @@ jobs:\n - name: Run patchver for Windows\n shell: pwsh\n run: |\n- deno install -A -n patchver https://deno.land/x/patchver@0.2.0/cli.ts\n+ deno install -g -A -n patchver https://deno.la...
2025-11-04T13:43:07
swiftlang/swift
a344941374f9a1d7bf34fe1d9819e98d3225f21e
3e55ed0b7aeb09f2e97724386855d36771a4fa4e
Advanced observation tracking (#86719) This is the implementation for https://github.com/swiftlang/swift-evolution/blob/main/proposals/0506-advanced-observation-tracking.md and additionally two bug fixes around termination events. This adds two new entry points for tracking observations. One new one-shot api that has...
[ { "path": "Runtimes/Supplemental/Observation/CMakeLists.txt", "patch": "@@ -97,6 +97,7 @@ add_link_options($<$<PLATFORM_ID:Windows>:LINKER:/WX>)\n add_link_options($<$<PLATFORM_ID:Android,Linux>:LINKER:-z,defs>)\n \n add_library(swiftObservation\n+ Sources/Observation/ContinuousObservation.swift\n Source...
2026-02-13T03:55:21
mrdoob/three.js
036e03e72a3eceae842cce4b0cc3b9a56ce2ecd6
09add0e8631ab24df10f372430d5b7bd1122a584
Doc: fix typos (#30013) Co-authored-by: Samuel Rigaud <srigaud@duodisplay.com>
[ { "path": "src/nodes/code/ScriptableValueNode.js", "patch": "@@ -20,7 +20,7 @@ class ScriptableValueNode extends Node {\n \t\tthis._cache = null;\n \n \t\tthis.inputType = null;\n-\t\tthis.outpuType = null;\n+\t\tthis.outputType = null;\n \n \t\tthis.events = new EventDispatcher();\n ", "additions": 1, ...
2024-12-02T17:07:26
kubernetes/kubernetes
97bbd4246cee93181a5d8b40560a7b025889d2a7
b2ac9e206fdd912f35f2ab5b3c5b5243303ba14b
fix(apiserver): convert V().Error() to V().Info() for verbosity-aware logging The go-logr/logr package ignores verbosity levels when using the Error method. This means logger.V(1).Error() will always log regardless of the verbosity setting, which contradicts the developer's intent. This commit converts V(1).Error(err...
[ { "path": "staging/src/k8s.io/apiserver/pkg/endpoints/handlers/delete.go", "patch": "@@ -415,7 +415,7 @@ func authorizeUnsafeDelete(ctx context.Context, attr admission.Attributes, authz\n \tdecision, reason, err := authz.Authorize(ctx, record)\n \tif err != nil {\n \t\terr = fmt.Errorf(\"error while checkin...
2026-01-14T15:53:44
denoland/deno
945aebfe1f36e24173cf49be31d397ab59e1fe3d
6188ecc08d682592b585ab06d2fe560985c60dd9
ci: move lsp-tracing feature check to 'build-libs' job (#31173) This stage was needlessly slowing down the debug Linux build.
[ { "path": ".github/workflows/ci.generate.ts", "patch": "@@ -702,13 +702,6 @@ const ci = {\n run:\n \"deno run --allow-read --allow-env --allow-sys ./tools/jsdoc_checker.js\",\n },\n- {\n- name: \"Check tracing build\",\n- if:\n- \"matrix.job ...
2025-11-03T15:53:37
golang/go
81afd3a59be1a3f343bf2b9d6665cd0fc825c6ba
ea50d61b667276bfd3449d5e172adc4b92f72290
cmd/compile: extend ppc64 MADDLD to match const ADDconst & MULLDconst Fixes #76084 I was focused on restoring the old behavior and fixing the failing test/codegen/arithmetic.go:MergeMuls2 test. It is probable this same bug hides elsewhere in this file. Change-Id: I17f2ee6b97a1e33b8132648d9d750749d006f7e0 Reviewed-o...
[ { "path": "src/cmd/compile/internal/ssa/_gen/PPC64.rules", "patch": "@@ -18,7 +18,10 @@\n (Max(32|64)F x y) && buildcfg.GOPPC64 >= 9 => (XSMAXJDP x y)\n \n // Combine 64 bit integer multiply and adds\n-(ADD l:(MULLD x y) z) && buildcfg.GOPPC64 >= 9 && l.Uses == 1 && clobber(l) => (MADDLD x y z)\n+(ADD ...
2025-10-28T09:11:03
tensorflow/tensorflow
f97b9701a953821525d8a3569f1a02e5909ce7d6
dc0840b72117fcd877dae10b4131b5f0876ee4c7
PR #33531: [ROCm] Introduce rocm_ci github action Imported from GitHub PR https://github.com/openxla/xla/pull/33531 📝 Summary of Changes Introduce github action for rocm ci job 🎯 Justification We will replace rocm jenkins job with a github action which shall make better our response time on prs 🚀 Kind of Contrib...
[ { "path": "third_party/xla/.github/workflows/rocm_xla_ci.yml", "patch": "@@ -0,0 +1,76 @@\n+# Copyright 2026 The OpenXLA Authors. All Rights Reserved.\n+#\n+# Licensed under the Apache License, Version 2.0 (the \"License\");\n+# you may not use this file except in compliance with the License.\n+# You may ob...
2026-01-14T14:50:30