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
86101b083ad14bb0c6ca9c55d2869cba57760046
ab2a92dd84aa4d0e12e7a6ef929aee765dd2aa8d
runtime: print stack traces for bubbled goroutines on synctest deadlock When synctest.Run panics due to every goroutine in the bubble being blocked, print a stack trace for every goroutine in the bubble. For #67434 Change-Id: Ie751c2ee6fa136930b18f4bee0277ff30da46905 Reviewed-on: https://go-review.googlesource.com/c...
[ { "path": "src/runtime/panic.go", "patch": "@@ -1272,7 +1272,7 @@ func fatalthrow(t throwType) {\n \n \t\tstartpanic_m()\n \n-\t\tif dopanic_m(gp, pc, sp) {\n+\t\tif dopanic_m(gp, pc, sp, nil) {\n \t\t\t// crash uses a decent amount of nosplit stack and we're already\n \t\t\t// low on stack in throw, so cra...
2025-02-21T18:55:32
mrdoob/three.js
2d1621f76a92a5f17527cc0c1d4a9be546ab6416
0588487f38829186e8140ae238082b0f9212313f
WebGPURenderer: Backdrop Node - Part 1/3 (#25903) * WebGPURenderer: Fix re-configure context * WebGPURenderer: Improve state in favor of access WebGPU encoders * NodeMaterial: Reduce duplicate initialization of properties * WebGPUTextures: Support RenderTargetTexture mipmaps if necessary. * WebGPUBackgroun...
[ { "path": "examples/files.json", "patch": "@@ -327,6 +327,7 @@\n \t],\n \t\"webgpu\": [\n \t\t\"webgpu_audio_processing\",\n+\t\t\"webgpu_backdrop\",\n \t\t\"webgpu_compute\",\n \t\t\"webgpu_cubemap_adjustments\",\n \t\t\"webgpu_cubemap_mix\",", "additions": 1, "deletions": 0, "language": "JSON"...
2023-04-22T15:51:41
denoland/deno
fd490503309ba1e92dcf2dd4c34139e667e91355
f3e9325a910f75a2396a63ea4a26cea0691e814d
docs: fixed a typo in update_typescript.md (#28486) Asynciterable as singular means it adds the concept of AsyncIterable to DOM instead of providing multiple AsyncIterable instances. Signed-off-by: letianpailove <113023596+letianpailove@users.noreply.github.com>
[ { "path": "tools/update_typescript.md", "patch": "@@ -107,7 +107,7 @@ contextual awareness, it is the author's opinion that it is best to spend the\n maps `esnext.*` values to the ratified version of them to ensure they are\n less \"breaking\" so you will want to make sure, like for `esnext.array` tha...
2025-03-13T08:42:56
golang/go
ab2a92dd84aa4d0e12e7a6ef929aee765dd2aa8d
17789bc8771ad2d36e374df65262c4ffd81c97c5
runtime: improve Error documentation The current Error documentation is vacuous and doesn't say anything about what this interface is actually for. Expand to include its meaning and why it might be used. Change-Id: I6a6a636cbd5f5788cb9d1a88845de16b98f7424b Reviewed-on: https://go-review.googlesource.com/c/go/+/670635...
[ { "path": "src/runtime/error.go", "patch": "@@ -10,14 +10,24 @@ import (\n \t\"internal/runtime/sys\"\n )\n \n-// The Error interface identifies a run time error.\n+// Error identifies a runtime error used in panic.\n+//\n+// The Go runtime triggers panics for a variety of cases, as described by the\n+// Go...
2025-05-07T18:00:37
mrdoob/three.js
1a4ed58475e054638fdcc4dbea473417a72907b8
39edf971326555f6736c5b9704966f3e8acec033
Added Rapier example (#25892) * Added Rapier example. * Updated screenshot. * Fixed DeepScan issue. * RapeirPhysics: Added world.timestep.
[ { "path": "examples/files.json", "patch": "@@ -391,7 +391,8 @@\n \t\t\"physics_ammo_rope\",\n \t\t\"physics_ammo_terrain\",\n \t\t\"physics_ammo_volume\",\n-\t\t\"physics_oimo_instancing\"\n+\t\t\"physics_oimo_instancing\",\n+\t\t\"physics_rapier_instancing\"\n \t],\n \t\"misc\": [\n \t\t\"misc_animation_gr...
2023-04-20T14:34:42
mrdoob/three.js
39edf971326555f6736c5b9704966f3e8acec033
43915eeec4da1e933c9229c653b9aad6b36d6af0
MaterialLoader: Honor `clipping` and `lights` properties. (#25891) * fix: MaterialLoader now honors clipping and lights properties * fix: ShaderMaterial.toJSON() serializes lights and clipping properties --------- Co-authored-by: Tamir Freifeld <tamir@allseated.com>
[ { "path": "src/loaders/MaterialLoader.js", "patch": "@@ -238,6 +238,9 @@ class MaterialLoader extends Loader {\n \n \t\t}\n \n+\t\tif ( json.lights !== undefined ) material.lights = json.lights;\n+\t\tif ( json.clipping !== undefined ) material.clipping = json.clipping;\n+\n \t\t// for PointsMaterial\n \n \...
2023-04-20T13:12:40
golang/go
0028532118eed355d0ac6337c63b01219cdc4c17
6681ff9c9e7805fab9e0dcb767f4807af03dbbbd
unique: use a bespoke canonicalization map and runtime.AddCleanup This change moves the unique package away from using a concurrent map and instead toward a bespoke concurrent canonicalization map. The map holds all its keys weakly, though keys may be looked up by value. The result is the strong pointer for the canoni...
[ { "path": "src/runtime/mfinal.go", "patch": "@@ -324,7 +324,7 @@ func isGoPointerWithoutSpan(p unsafe.Pointer) bool {\n // blockUntilEmptyFinalizerQueue blocks until either the finalizer\n // queue is emptied (and the finalizers have executed) or the timeout\n // is reached. Returns true if the finalizer qu...
2025-02-18T03:19:06
mrdoob/three.js
3db1e97710c31bdcb4ca2cbcd6da8ee8a2364e6e
8b8c86b4e617d4c2300f5640fa5d9ac3453c2163
Examples: Update more examples for color management. (#25882) * Examples: Update misc_exporter_gltf and misc_exporter_ply for color management. * Examples: Update 3MF examples for color management. * Examples: Update webgl_loader_draco for color management. * Examples: Update LDraw examples for color manageme...
[ { "path": "examples/jsm/loaders/3MFLoader.js", "patch": "@@ -21,6 +21,8 @@ import {\n } from 'three';\n import * as fflate from '../libs/fflate.module.js';\n \n+const COLOR_SPACE_3MF = SRGBColorSpace;\n+\n /**\n *\n * 3D Manufacturing Format (3MF) specification: https://3mf.io/specification/\n@@ -359,8 +3...
2023-04-20T00:08:17
golang/go
66ea0ee409df5a025296d7dac8bb3dc1ec0d2b90
d365f2266df98985f19705717ff8cf4ad3e743dc
spec: avoid use of "raise" in conjunction with panics For #73526 Change-Id: I06d8ae9080695745db68a51635faa0b244c1760e Reviewed-on: https://go-review.googlesource.com/c/go/+/670155 Reviewed-by: Robert Griesemer <gri@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> R...
[ { "path": "doc/go_spec.html", "patch": "@@ -7894,7 +7894,7 @@ <h3 id=\"Handling_panics\">Handling panics</h3>\n <p>\n The <code>protect</code> function in the example below invokes\n the function argument <code>g</code> and protects callers from\n-run-time panics raised by <code>g</code>.\n+run-time panics ...
2025-05-05T20:39:11
mrdoob/three.js
7addd2afbb97447c9db0d958a04d595176bf4e30
7b04b508e32275b18f5def78c40ca38f426b7b2a
Fix computeMikkTSpaceTangents (#25884)
[ { "path": "examples/jsm/utils/BufferGeometryUtils.js", "patch": "@@ -29,9 +29,9 @@ function computeMikkTSpaceTangents( geometry, MikkTSpace, negateSign = true ) {\n \n \t\tif ( attribute.normalized || attribute.isInterleavedBufferAttribute ) {\n \n-\t\t\tconst dstArray = new Float32Array( attribute.getCount...
2023-04-19T08:29:05
denoland/deno
5c8d894aa3858e8aa8130b7d2058033a0c7de539
348900b8b79f4a434cab4c74b3bc8d4d2fa8ee74
fix(otel): don't print otel warning when variable is not set (#28475)
[ { "path": "cli/args/flags.rs", "patch": "@@ -932,10 +932,11 @@ impl Flags {\n let otel_var = |name| match std::env::var(name) {\n Ok(s) if s.to_lowercase() == \"true\" => Some(true),\n Ok(s) if s.to_lowercase() == \"false\" => Some(false),\n- _ => {\n+ Ok(_) => {\n log::war...
2025-03-12T05:37:08
mrdoob/three.js
64c8d59ac9f57ac6e8737d32f01340ec304c5364
fbc3a0d6a766b8f717ff7db7e38c4ccccd07fd97
NodeMaterial.fromMaterial(): Support copying getters and setters (#25861) * NodeMaterial.fromMaterial(): Support copying getters and setters * Fix * update screenshot * Fix --------- Co-authored-by: sunag <sunagbrasil@gmail.com>
[ { "path": "examples/jsm/nodes/materials/MeshPhysicalNodeMaterial.js", "patch": "@@ -32,11 +32,6 @@ class MeshPhysicalNodeMaterial extends MeshStandardNodeMaterial {\n \t\tthis.attenuationDistanceNode = null;\n \t\tthis.attenuationColorNode = null;\n \n-\t\tthis.sheen = 0;\n-\t\tthis.clearcoat = 0;\n-\t\tthi...
2023-04-18T19:41:42
golang/go
d365f2266df98985f19705717ff8cf4ad3e743dc
92e23b683f01fe581a0e14b5658f0c59d9ce0d38
runtime: replace mentions of "raised" with "panicked" Fixes #73526 Change-Id: I4b801cf3e54b99559e6d5ca8fdb2fd0692a0d3a5 Reviewed-on: https://go-review.googlesource.com/c/go/+/669975 TryBot-Bypass: Mark Freeman <mark@golang.org> Reviewed-by: Robert Griesemer <gri@google.com> Auto-Submit: Mark Freeman <mark@golang.org>...
[ { "path": "doc/next/4-runtime.md", "patch": "@@ -3,19 +3,19 @@\n <!-- go.dev/issue/71517 -->\n \n The message printed when a program exits due to an unhandled panic\n-that was recovered and re-raised no longer repeats the text of\n+that was recovered and repanicked no longer repeats the text of\n the panic ...
2025-05-05T16:33:46
denoland/deno
348900b8b79f4a434cab4c74b3bc8d4d2fa8ee74
fa51d5de4416a0eb6f81b425d6e9bb4891fa7158
fix(check): support `typesVersions` in npm dependencies (#28468)
[ { "path": "Cargo.lock", "patch": "@@ -2441,9 +2441,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_package_json\"\n-version = \"0.5.1\"\n+version = \"0.5.2\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"9809d81d43f1805533e71d88adbe14343ada394abb236a754c8429ddd07...
2025-03-11T15:23:30
mrdoob/three.js
fbc3a0d6a766b8f717ff7db7e38c4ccccd07fd97
3c892258ba1e63ecb7b932a9205164d44dac8bd4
WebGPURenderer: Introduce `hasFeature()`. (#25878) * WebGPURenderer: Introduce `hasFeature()`. * WebGPURenderer: Use Error instead of warning.
[ { "path": "examples/jsm/loaders/KTX2Loader.js", "patch": "@@ -114,13 +114,11 @@ class KTX2Loader extends Loader {\n \n \t\tif ( renderer.isWebGPURenderer === true ) {\n \n-\t\t\tconst adapter = renderer._adapter;\n-\n \t\t\tthis.workerConfig = {\n-\t\t\t\tastcSupported: adapter.features.has( 'texture-compre...
2023-04-18T19:07:44
denoland/deno
e88366aece4d575c2e03b5fa45017e141a5723a7
ff28ecd91ae7eec8d46ef4d0470b7555072a4c07
fix: unhandled rejection from quic (#28448) Fixes: https://github.com/denoland/deno/issues/28406
[ { "path": "ext/net/03_quic.js", "patch": "@@ -55,11 +55,14 @@ const {\n ReflectConstruct,\n Symbol,\n SymbolAsyncIterator,\n- SafePromisePrototypeFinally,\n } = primordials;\n \n let getEndpointResource;\n \n+function promiseFinallyWithoutUnhandled(p, f) {\n+ return PromisePrototypeThen(p, f, f);\n+...
2025-03-11T06:23:42
golang/go
92e23b683f01fe581a0e14b5658f0c59d9ce0d38
30b2b767d6d902787b90476fd00eee4c9b3a3f15
os: avoid escape from Root via paths ending in ../ The doInRoot function operates on a path split into components. The final path component retained any trailing path separator characters, to permit operations in a Root to retain the trailing-separator behavior of non-Root operations. However, doInRoot failed to take ...
[ { "path": "src/os/root.go", "patch": "@@ -254,20 +254,20 @@ func (r *Root) logStat(name string) {\n //\n // \".\" components are removed, except in the last component.\n //\n-// Path separators following the last component are preserved.\n-func splitPathInRoot(s string, prefix, suffix []string) (_ []string,...
2025-04-16T18:01:19
denoland/deno
ff28ecd91ae7eec8d46ef4d0470b7555072a4c07
9ea4f8264338bf0ccbf4e9b43640f573813e330d
fix(bench): lower bench time budget when `n` is specified (#28454) Closes #28430
[ { "path": "cli/js/40_bench.js", "patch": "@@ -241,7 +241,7 @@ const allMaxLength = 10_000_000;\n let all = new Array(allMaxLength);\n const lowPrecisionThresholdInNs = 1e4;\n \n-async function benchMeasure(timeBudget, fn, desc, context) {\n+async function benchMeasure(fn, desc, context) {\n let n = 0;\n ...
2025-03-10T20:17:19
golang/go
5e7f0b947c3907bd23a13864c3fea2b204f11567
044ca4e5c878c785e2c69e5ebcb3d44bf97abc9f
go/types, types2: set up recording of positions for declarations This creates the infrastructure needed to record compiler panics induced somewhere beneath a declaration. For now, this is turned off via a flag. This does not yet use the position information for better error messages. That is moved off to a separate C...
[ { "path": "src/cmd/compile/internal/types2/check.go", "patch": "@@ -20,6 +20,9 @@ var nopos syntax.Pos\n // debugging/development support\n const debug = false // leave on during development\n \n+// position tracing for panics during type checking\n+const tracePos = false // TODO(markfreeman): check perform...
2025-04-10T15:27:29
denoland/deno
9ea4f8264338bf0ccbf4e9b43640f573813e330d
64f810d45c12f72818f87308cb3f82be16a88928
fix(check): support `types@` export conditions (#28450)
[ { "path": "Cargo.lock", "patch": "@@ -5589,6 +5589,7 @@ dependencies = [\n \"deno_media_type\",\n \"deno_package_json\",\n \"deno_path_util\",\n+ \"deno_semver\",\n \"futures\",\n \"lazy-regex\",\n \"once_cell\",", "additions": 1, "deletions": 0, "language": "Unknown" }, { "path": ...
2025-03-10T17:20:48
mrdoob/three.js
b1c731288af2532d9d9beabbcafc4b77cb60ada6
fe6f945a09ecf1dfb2fc49778f06ab9538d2aba0
switching filters on switching shadow types fixed (#25847) Co-authored-by: unknown <jost.schmithals@musikalisches-zentrum-hx.de>
[ { "path": "src/renderers/webgl/WebGLShadowMap.js", "patch": "@@ -67,6 +67,7 @@ function WebGLShadowMap( _renderer, _objects, _capabilities ) {\n \tthis.needsUpdate = false;\n \n \tthis.type = PCFShadowMap;\n+\tlet _previousType = this.type;\n \n \tthis.render = function ( lights, scene, camera ) {\n \n@@ -1...
2023-04-17T09:10:30
golang/go
044ca4e5c878c785e2c69e5ebcb3d44bf97abc9f
35b4fd9f373cbe13778eb259a19c496c9c613a1f
log/slog: export Source method in Record for custom handler support Currently, the `source` method in `slog.Record` is not accessible to custom handlers, requiring developers to re-implement logic for retrieving source location information. This commit exports the `source` method as `Source`, enabling consistent acces...
[ { "path": "api/next/70280.txt", "patch": "@@ -0,0 +1 @@\n+pkg log/slog, method (Record) Source() *Source #70280", "additions": 1, "deletions": 0, "language": "Plain Text" }, { "path": "doc/next/6-stdlib/99-minor/log/slog/70280.md", "patch": "@@ -0,0 +1 @@\n+[Record] now has a Source(...
2025-05-04T04:30:25
denoland/deno
64f810d45c12f72818f87308cb3f82be16a88928
0ef3f6ba887d7aed2d94c8b622563d13bfecda2c
fix(ext/node): use primordials in `ext/node/polyfills/path/_util.ts` (#28432) Towards https://github.com/denoland/deno/issues/24236
[ { "path": "ext/node/polyfills/path/_util.ts", "patch": "@@ -2,9 +2,6 @@\n // Ported from https://github.com/browserify/path-browserify/\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-primordial...
2025-03-10T13:37:20
mrdoob/three.js
86d77e88af2fbce287f7e56a754eb6e163e435d8
8ad65c63db07e73c91e4a3f2c9bb6bc5301cfecb
WebGPUNodes: Fix equirectUV background (#25842)
[ { "path": "examples/jsm/renderers/webgpu/nodes/WebGPUNodes.js", "patch": "@@ -1,6 +1,6 @@\n import WebGPUNodeBuilder from './WebGPUNodeBuilder.js';\n import { NoToneMapping, EquirectangularReflectionMapping, EquirectangularRefractionMapping } from 'three';\n-import { NodeFrame, vec2, cubeTexture, texture, r...
2023-04-16T04:01:31
golang/go
fa2bb342d7b0024440d996c2d6d6778b7a5e0247
6729fbe93e535080e9e050b3ca0a80ab407dbacc
Revert "cmd/compile: allow all of the preamble to be preemptible" This reverts commits 3f3782feed6e0726ddb08afd32dad7d94fbb38c6 (CL 648518) b386b628521780c048af14a148f373c84e687b26 (CL 668475) Fixes #73542 Change-Id: I218851c5c0b62700281feb0b3f82b6b9b97b910d Reviewed-on: https://go-review.googlesource.com/c/go/+/67...
[ { "path": "src/cmd/internal/obj/arm/obj5.go", "patch": "@@ -703,6 +703,12 @@ func (c *ctxt5) stacksplit(p *obj.Prog, framesize int32) *obj.Prog {\n \tp.To.Type = obj.TYPE_REG\n \tp.To.Reg = REG_R1\n \n+\t// Mark the stack bound check and morestack call async nonpreemptible.\n+\t// If we get preempted here, ...
2025-05-05T17:51:52
mrdoob/three.js
8ad65c63db07e73c91e4a3f2c9bb6bc5301cfecb
dfb2b176ba47f224cfeee12ec004cd2093cc3b59
Fix typo (#25841)
[ { "path": ".github/workflows/report-size.yml", "patch": "@@ -116,7 +116,7 @@ jobs:\n \n echo \"FILESIZE=$FILESIZE_FORM\" >> $GITHUB_OUTPUT\n echo \"FILESIZE_GZIP=$FILESIZE_GZIP_FORM\" >> $GITHUB_OUTPUT\n- echo \"FILESIZE_BASE_=$FILESIZE_BASE_FORM\" >> $GITHUB_OUTPUT\n+ ...
2023-04-15T16:51:42
denoland/deno
e5794401700430d42bcae42c7e20dce9697864aa
e6637ab6f14e9010a4e99ef65872cf1bb8f2174e
fix(lsp): silence errors from "codeAction/resolve" (#28400)
[ { "path": "cli/lsp/language_server.rs", "patch": "@@ -2070,7 +2070,7 @@ impl Inner {\n })?;\n let asset_or_doc = self.get_asset_or_document(&action_data.specifier)?;\n let line_index = asset_or_doc.line_index();\n- let mut refactor_edit_info = self\n+ let refactor_edit_info = s...
2025-03-06T18:00:44
golang/go
6953ef86cd72a835d398319c4da560c8b78ba28e
8ec555931dc65f1cd0e7cf28d771615d8064a8ad
net,os: support converting between *os.File and net.Conn on Windows The runtime poller and os.NewFile recently gained support for disassociating the handle from the runtime poller IOCP (see CL 664455). This was the main blocker for allowing the conversion between *os.File and net.Conn. Implementing the conversion is ...
[ { "path": "doc/next/6-stdlib/99-minor/net/10350.md", "patch": "@@ -0,0 +1,3 @@\n+On Windows, the [TCPConn.File], [UDPConn.File], [UnixConn.File],\n+[IPConn.File], [TCPListener.File], and [UnixListener.File]\n+methods are now supported.\n\\ No newline at end of file", "additions": 3, "deletions": 0, ...
2025-04-25T12:11:31
mrdoob/three.js
ccaa0fc7bfa56e86be68521aed2c41482446cc0f
42a86a36a4f7990e735798542894b738db2eee0c
Color.getHex() and .getStyle(): Fix rounding errors (#25832) * Color.setHex(): Fix rounding errors * Fix the real problem * Similar fix in `.getStyle()` * Fix for bitwise operators precedence * Fix failing test (rounds in another direction?)
[ { "path": "src/math/Color.js", "patch": "@@ -349,7 +349,7 @@ class Color {\n \n \t\tColorManagement.fromWorkingColorSpace( _color.copy( this ), colorSpace );\n \n-\t\treturn clamp( _color.r * 255, 0, 255 ) << 16 ^ clamp( _color.g * 255, 0, 255 ) << 8 ^ clamp( _color.b * 255, 0, 255 ) << 0;\n+\t\treturn Math...
2023-04-15T08:20:34
denoland/deno
2292eb1c92c61a245bc82409a7bf2598debde4c0
0c0757fe66caf9de99f44d959254d3ba2f13709f
fix(node): support re-exported esm modules in cjs export analysis (#28379) Adds support for re-exporting an ES module from a CJS one and then importing the CJS module from ESM. Also fixes a bug where require esm wasn't working in deno compile.
[ { "path": "Cargo.lock", "patch": "@@ -1609,9 +1609,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_ast\"\n-version = \"0.46.0\"\n+version = \"0.46.1\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"1bd3b6e14e5b1235dd613d9f5d955d7a80dec6de0fc00fa34b5d0ef5ca0a9ddb\"...
2025-03-05T21:37:46
golang/go
8ec555931dc65f1cd0e7cf28d771615d8064a8ad
93fb2c90740aef00553c9ce6a7cd4578c2469675
go/types: fix typo in Info.Types doc comment Change-Id: Ib95b77ab3dc6e48158e25e70fabb2579f3706b5f Reviewed-on: https://go-review.googlesource.com/c/go/+/669755 Auto-Submit: Russ Cox <rsc@golang.org> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Robert Griesemer ...
[ { "path": "src/go/types/api.go", "patch": "@@ -228,7 +228,7 @@ type Info struct {\n \t// Similarly, no type is recorded for the (synthetic) FuncType\n \t// node in a FuncDecl.Type field, since there is no corresponding\n \t// syntactic function type expression in the source in this case\n-\t// Instead, the ...
2025-05-03T21:06:41
denoland/deno
0c0757fe66caf9de99f44d959254d3ba2f13709f
be73f11f831d3cb3a752d6ea343c15e422ccbd69
fix(install): exclude npm workspace packages from graph roots in `install` (#28401) Fixes #28374.
[ { "path": "cli/tools/pm/cache_deps.rs", "patch": "@@ -1,12 +1,16 @@\n // Copyright 2018-2025 the Deno authors. MIT license.\n \n use std::borrow::Cow;\n+use std::collections::HashMap;\n+use std::collections::HashSet;\n use std::sync::Arc;\n \n use deno_core::error::AnyError;\n use deno_core::futures::stream...
2025-03-05T20:41:05
golang/go
21908c3dec35f19d283051e150143a651cc2a71f
1b40dbce1ab039f6715b8b151a4db093ede87fff
cmd/go/internal/vcs: include Subversion VCS build information The existing implementation lacks the Status function for retrieving VCS build information for Subversion. As a consequence, binaries aren't stamped with the Revision, CommitTime and Uncommitted information from SVN repositories. This change provides the s...
[ { "path": "src/cmd/go/internal/vcs/vcs.go", "patch": "@@ -498,6 +498,7 @@ var vcsSvn = &Cmd{\n \tScheme: []string{\"https\", \"http\", \"svn\", \"svn+ssh\"},\n \tPingCmd: \"info -- {scheme}://{repo}\",\n \tRemoteRepo: svnRemoteRepo,\n+\tStatus: svnStatus,\n }\n \n func svnRemoteRepo(vcsSvn *Cmd, ...
2025-04-22T15:49:26
mrdoob/three.js
42a86a36a4f7990e735798542894b738db2eee0c
160497a5a8db3c182c755b31a3f0900eb0ee0093
docs lint-5 (#25827) * lint `docs/api/en/lights` * CHnages * SOme More Files Lint * Fix * Fix tag indentation * Fix * Some More fix * Why can't i get this fixed God damn it * DOne
[ { "path": "docs/api/en/Template.html", "patch": "@@ -13,33 +13,25 @@ <h1>[name]</h1>\n \n \t\t<p class=\"desc\">todo</p>\n \n-\n \t\t<h2>Example</h2>\n \n \t\t<code>todo</code>\n \n-\n \t\t<h2>Constructor</h2>\n \n \t\t<h3>[name]([param:Number todo])</h3>\n-\t\t<p></p>\n-\n \n \t\t<h2>Properties</h2>\n \n \...
2023-04-15T08:11:35
denoland/deno
be73f11f831d3cb3a752d6ea343c15e422ccbd69
7f7b51c414d239317e2870b364c20f7a634b9db3
fix(unstable): lint plugin `!==` wrongly parsed as `!=` (#28403) That's an emberassing typo. The `!==` operator was wrongly converted to `!=`. Fixes https://github.com/denoland/deno/issues/28397
[ { "path": "cli/tools/lint/ast_buffer/swc.rs", "patch": "@@ -716,7 +716,7 @@ fn serialize_expr(ctx: &mut TsEsTreeBuilder, expr: &Expr) -> NodeRef {\n BinaryOp::EqEq => (AstNode::BinaryExpression, \"==\"),\n BinaryOp::NotEq => (AstNode::BinaryExpression, \"!=\"),\n BinaryOp::EqEqEq => ...
2025-03-05T20:14:50
mrdoob/three.js
4932c11659df92f166299ac3ccc580831ce6aa8f
faeed757d77a3dd1a45d67b0ec5cbfe04a87fc72
Fix wireframe toggle not being respected in md2 loader example (#25838) * Fix wireframe toggle not being respected in md2 example * Respect code style
[ { "path": "examples/webgl_loader_md2.html", "patch": "@@ -246,6 +246,7 @@\n \t\t\t\t\treturn function () {\n \n \t\t\t\t\t\tcharacter.setWeapon( index );\n+\t\t\t\t\t\tcharacter.setWireframe( playbackConfig.wireframe );\n \n \t\t\t\t\t};\n ", "additions": 1, "deletions": 0, "language": "HTML" ...
2023-04-14T19:10:42
golang/go
1b40dbce1ab039f6715b8b151a4db093ede87fff
f760e1fe494681297c5f050b646b5bcde9c71662
runtime: mark and scan small objects in whole spans [green tea] Our current parallel mark algorithm suffers from frequent stalls on memory since its access pattern is essentially random. Small objects are the worst offenders, since each one forces pulling in at least one full cache line to access even when the amount ...
[ { "path": "src/cmd/compile/internal/test/inl_test.go", "patch": "@@ -67,16 +67,18 @@ func TestIntendedInlining(t *testing.T) {\n \t\t\t// GC-related ones\n \t\t\t\"cgoInRange\",\n \t\t\t\"gclinkptr.ptr\",\n+\t\t\t\"gcUsesSpanInlineMarkBits\",\n \t\t\t\"guintptr.ptr\",\n \t\t\t\"heapBitsSlice\",\n \t\t\t\"ma...
2025-03-12T18:52:58
denoland/deno
7f7b51c414d239317e2870b364c20f7a634b9db3
731a238d349f0dadb4dd81f25f0a5bd2e17088d9
fix(unstable): wrong node with shorthand ObjectPattern + AssignPattern (#28402) We did not serialize the `AssignmentPattern` node inside `ObjectPattern` properties. ```ts ({ a = b } = {}) ``` This is a bit different in SWC and looks like I got confused with the different AST formats. Fixes https://github.com/denola...
[ { "path": "cli/tools/lint/ast_buffer/swc.rs", "patch": "@@ -1898,24 +1898,23 @@ fn serialize_pat(ctx: &mut TsEsTreeBuilder, pat: &Pat) -> NodeRef {\n )\n }\n ObjectPatProp::Assign(assign_pat_prop) => {\n- let ident = serialize_binding_ident(ctx, &assign_pat_prop.ke...
2025-03-05T20:12:19
mrdoob/three.js
7310a82d985247baf910c1bbf9075664f0883286
e0a631f1a520a7569c49ff8cbf595b85d59e9e2f
docs(bufferGeometry): adding indexed version code example (#25824) * docs(bufferGeometry): adding indexed version code example * updating doc + adding 2 live examples * Update BufferGeometry.html * removing browser examples * fixing sentences * Update BufferGeometry.html --------- Co-authored-by: ...
[ { "path": "docs/api/en/core/BufferGeometry.html", "patch": "@@ -20,18 +20,20 @@ <h1>[name]</h1>\n \t\t</p>\n \n \t\t<h2>Code Example</h2>\n+\n \t\t<code>\n \t\tconst geometry = new THREE.BufferGeometry();\n+\n \t\t// create a simple square shape. We duplicate the top left and bottom right\n \t\t// vertices ...
2023-04-14T08:24:25
golang/go
7785528c505f6ef9afdb3e089d23dadb860aee11
9921537a96deb3cdfc64478bc041dc97326590ab
os: fix Root.Mkdir permission bits on OpenBSD Pass missing mode bits in the mkdirat() syscall wrapper. Fixes #73559 Change-Id: I54b1985bd77b1fe5d1a48acab9f2597f8c931854 GitHub-Last-Rev: 669c17361d86bc9065bb6b47a2d60aa86bcfa12d GitHub-Pull-Request: golang/go#73565 Reviewed-on: https://go-review.googlesource.com/c/go/...
[ { "path": "src/internal/syscall/unix/at_openbsd.go", "patch": "@@ -43,7 +43,7 @@ func Mkdirat(dirfd int, path string, mode uint32) error {\n \tif err != nil {\n \t\treturn err\n \t}\n-\t_, _, errno := syscall_syscall6(abi.FuncPCABI0(libc_mkdirat_trampoline), uintptr(dirfd), uintptr(unsafe.Pointer(p)), 0, 0,...
2025-05-01T15:09:40
denoland/deno
731a238d349f0dadb4dd81f25f0a5bd2e17088d9
865ec7c4f4fc8ecadd38848affff861352624731
fix(install): support "file:" dependencies in local package.json (#28396) This adds support for installing `file:` dependencies in a local package.json. In order to use these, you must not set `--node-modules-dir=...` when using a package.json and it should use the default of `--node-modules-dir=manual`. Closes http...
[ { "path": "Cargo.lock", "patch": "@@ -2440,9 +2440,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_package_json\"\n-version = \"0.5.0\"\n+version = \"0.5.1\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"fb8582ef20e0c5ed9bc43e93f593a461b63bd106311117feb3baf9ce8ea...
2025-03-05T19:08:05
mrdoob/three.js
b1fa158cd693bbea18da7b898fa82984f5e04eff
a899471b486961db2dec051dc66440d146415d42
WebGPURenderer: Shadows Node-Based (#25822) * PositionNode: Fix positionWorld and positionWorldDirection * NodeFrame: Added update from RENDER. * Added WebGPURenderTarget * Node: Added .updateBefore() * EquirectUVNode: Fix from new positionWorldDirection * NodeBuilder: Added .getRenderTarget() * WebG...
[ { "path": "examples/files.json", "patch": "@@ -344,6 +344,7 @@\n \t\t\"webgpu_particles\",\n \t\t\"webgpu_rtt\",\n \t\t\"webgpu_sandbox\",\n+\t\t\"webgpu_shadowmap\",\n \t\t\"webgpu_skinning\",\n \t\t\"webgpu_skinning_instancing\",\n \t\t\"webgpu_skinning_points\",", "additions": 1, "deletions": 0, ...
2023-04-13T06:39:49
golang/go
9921537a96deb3cdfc64478bc041dc97326590ab
12110c3f7ed378cd1819abf72ffadcb18502c127
sync: WaitGroup.Go: document that f must not panic Fixes #63796 Change-Id: Ib11d32574011e13aab3a0ad504f0d10009627503 Reviewed-on: https://go-review.googlesource.com/c/go/+/667695 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Damien Neil <dneil@google.com> Commi...
[ { "path": "src/sync/waitgroup.go", "patch": "@@ -163,6 +163,8 @@ func (wg *WaitGroup) Wait() {\n // Go calls f in a new goroutine and adds that task to the [WaitGroup].\n // When f returns, the task is removed from the WaitGroup.\n //\n+// The function f must not panic.\n+//\n // If the WaitGroup is empty, ...
2025-04-24T02:58:05
denoland/deno
865ec7c4f4fc8ecadd38848affff861352624731
abfd45f8d274f78bb429bf2668cb2f5321024c69
fix(run): skip the cjs suggestion for mjs/mts modules (#26698) Co-authored-by: David Sherret <dsherret@gmail.com>
[ { "path": "runtime/fmt_errors.rs", "patch": "@@ -309,6 +309,13 @@ fn get_suggestions_for_terminal_errors(e: &JsError) -> Vec<FixSuggestion> {\n || msg.contains(\"exports is not defined\")\n || msg.contains(\"require is not defined\")\n {\n+ if let Some(file_name) =\n+ e.frames.fi...
2025-03-05T17:29:41
mrdoob/three.js
a15bce870e2181b1a3502e3680966b782fd14b4b
39779300e9b450f6de2cba0f0d33269f29db694d
bad import example in docs (#25813) * fix import statement in docs (en) * fix import statement in docs (zh)
[ { "path": "docs/examples/en/utils/BufferGeometryUtils.html", "patch": "@@ -21,7 +21,7 @@ <h2>Import</h2>\n \t\t</p>\n \n \t\t<code>\n-\t\t\timport { BufferGeometryUtils } from 'three/addons/utils/BufferGeometryUtils.js';\n+\t\t\timport * as BufferGeometryUtils from 'three/addons/utils/BufferGeometryUtils.js...
2023-04-12T11:39:29
golang/go
12110c3f7ed378cd1819abf72ffadcb18502c127
4d10d4ad849467f12a1a16a5ade26cc03d8f1a1f
cmd/compile: improve multiplication strength reduction Use an automatic algorithm to generate strength reduction code. You give it all the linear combination (a*x+b*y) instructions in your architecture, it figures out the rest. Just amd64 and arm64 for now. Fixes #67575 Change-Id: I35c69382bebb1d2abf4bb4e7c43fd8548...
[ { "path": "src/cmd/compile/internal/ssa/_gen/AMD64.rules", "patch": "@@ -882,44 +882,10 @@\n // (ANDQconst [0xFFFFFFFF] x) => (MOVLQZX x)\n \n // strength reduction\n-// Assumes that the following costs from https://gmplib.org/~tege/x86-timing.pdf:\n-// 1 - addq, shlq, leaq, negq, subq\n-// 3 - imulq\...
2024-11-11T20:21:14
denoland/deno
abfd45f8d274f78bb429bf2668cb2f5321024c69
d91402ae2073d10698e0b82df22fdf3d5c5ab09f
fix(cli): warn when an otel env var has an invalid value (#28394)
[ { "path": "cli/args/flags.rs", "patch": "@@ -930,7 +930,10 @@ impl Flags {\n let otel_var = |name| match std::env::var(name) {\n Ok(s) if s.to_lowercase() == \"true\" => Some(true),\n Ok(s) if s.to_lowercase() == \"false\" => Some(false),\n- _ => None,\n+ _ => {\n+ log::warn...
2025-03-05T12:05:40
mrdoob/three.js
de2fbc63ff64077b3b33a44435c886b10f90aa3f
a5aa3b75bce085110e2ff928c2c9accbbe0e3d26
WebXR: Added XRButton (#25781) * Added XRButton.js * Examples: Updated relevant examples using XRButton. * WebXRManager: Added setSessionMode(). * WebGLRenderer: Force clear when sessionMode is 'immersive-ar'. * Clean up. * WebXRManager: Force alpha: true in layerInit. * WebGLRenderer: Set state.buff...
[ { "path": "examples/files.json", "patch": "@@ -357,14 +357,9 @@\n \t],\n \t\"webxr\": [\n \t\t\"webxr_ar_cones\",\n-\t\t\"webxr_ar_dragging\",\n \t\t\"webxr_ar_hittest\",\n \t\t\"webxr_ar_lighting\",\n-\t\t\"webxr_ar_paint\",\n \t\t\"webxr_ar_plane_detection\",\n-\t\t\"webxr_vr_ballshooter\",\n-\t\t\"webxr_...
2023-04-11T08:31:43
golang/go
6109185cf9641ea401812c63ba3538742b872952
b48e52b4282631ecda45ac985d398e19eca1e745
math/big: fix incorrect register allocation for mipsx/mips64x According to the MIPS ABI, R26/R27 are reserved for OS kernel, and may be clobbered by it. They must not be used by user mode. See Figure 3-18 of MIPS ELF ABI specification: https://refspecs.linuxfoundation.org/elf/mipsabi.pdf Fixes #73472 Change-Id: Ifd...
[ { "path": "src/math/big/arith_mips64x.s", "patch": "@@ -17,18 +17,18 @@ TEXT ·addVV(SB), NOSPLIT, $0\n \t// compute unrolled loop lengths\n \tAND $3, R1, R5\n \tSRLV $2, R1\n-\tXOR R26, R26\t// clear carry\n+\tXOR R24, R24\t// clear carry\n loop1:\n \tBEQ R5, loop1done\n loop1cont:\n \t// unroll 1X\n \tMOVV...
2025-04-25T12:59:13
mrdoob/three.js
a5aa3b75bce085110e2ff928c2c9accbbe0e3d26
9b542faeb2fc628815083a6b342c4b5e544227ee
Revert "SkeletonUtils: Fix retargetClip() final keyframe (#25589)" (#25809) This reverts commit 40a903bbd7bd75dde47c05332ea3305b8e798f1c.
[ { "path": "examples/jsm/utils/SkeletonUtils.js", "patch": "@@ -246,8 +246,8 @@ function retargetClip( target, source, clip, options = {} ) {\n \t\t\t\t\tif ( ! boneData.pos ) {\n \n \t\t\t\t\t\tboneData.pos = {\n-\t\t\t\t\t\t\ttimes: new Float32Array( numFrames + 1 ),\n-\t\t\t\t\t\t\tvalues: new Float32Arra...
2023-04-10T15:46:38
denoland/deno
1f6f56197995cd39cae7172b97d0ac4990eb9ee6
842a906295b8f015b12654ee226b39c4777c228f
fix(unstable): lint plugin fix `:has()`, `:is/where/matches` and `:not()` selectors (#28348) This PR adds support for `:has/:is/:where()` and `:not()`. The latter was already present, but found a bunch of issues with it and I'd say that it didn't really work before this PR. Fixes https://github.com/denoland/deno/iss...
[ { "path": "cli/js/40_lint.js", "patch": "@@ -82,6 +82,7 @@ const PropFlags = {\n /** @typedef {import(\"./40_lint_types.d.ts\").LintState} LintState */\n /** @typedef {import(\"./40_lint_types.d.ts\").TransformFn} TransformFn */\n /** @typedef {import(\"./40_lint_types.d.ts\").MatchContext} MatchContext */\...
2025-03-04T15:04:39
golang/go
b48e52b4282631ecda45ac985d398e19eca1e745
12e5efd71011fbb5816a1d815e91b5c865fa9a83
cmd/dist: move "devel" substring in git-inferred development version Keep the property that the "devel" substring is always present in these development versions of Go, but also gain the property that it's viable to use functions in the go/version package such as Lang, Compare, and get the expected results without nee...
[ { "path": "src/cmd/dist/build.go", "patch": "@@ -426,6 +426,10 @@ func findgoversion() string {\n \t// Otherwise, use Git.\n \t//\n \t// Include 1.x base version, hash, and date in the version.\n+\t// Make sure it includes the substring \"devel\", but otherwise\n+\t// use a format compatible with https://go...
2025-04-25T00:48:10
mrdoob/three.js
27de13eb1c890baa8b58643a3341be56848fc058
b844ad9c79b070ca13c08279c6a809bfb0483677
[WebGLMultipleRenderTargets.prototype.copy] Fix misprint: copy viewport/scissor from source (#25803)
[ { "path": "src/renderers/WebGLMultipleRenderTargets.js", "patch": "@@ -56,8 +56,8 @@ class WebGLMultipleRenderTargets extends WebGLRenderTarget {\n \t\tthis.height = source.height;\n \t\tthis.depth = source.depth;\n \n-\t\tthis.viewport.set( 0, 0, this.width, this.height );\n-\t\tthis.scissor.set( 0, 0, thi...
2023-04-10T08:38:38
denoland/deno
842a906295b8f015b12654ee226b39c4777c228f
bf060427b9dad39fdf0c549a756d892527c8d5b5
fix(unstable): lint plugin child combinator not working with groups (#28360) Internally, we use a group node for array-like children, which is hidden from the user. When we're asking for a parent of a node we need to take group nodes into account and walk over them. Fixes one issue reported in https://github.com/deno...
[ { "path": "cli/js/40_lint.js", "patch": "@@ -782,7 +782,14 @@ class MatchCtx {\n * @returns {number}\n */\n getParent(idx) {\n- return readParent(this.ctx.buf, idx);\n+ const parent = readParent(this.ctx.buf, idx);\n+\n+ const parentType = readType(this.ctx.buf, parent);\n+ if (parentTyp...
2025-03-03T20:44:04
mrdoob/three.js
f342395bfb0bde40ad4c56252f1d5e2de0b8a0b8
988d96e72700471ee9cffc1e9f926126cac7e508
AudioLoader: Trigger the error callback when decodeAudioData fails (#25784) * AudioLoader: Trigger the error callback when decodeAudioData fails Currently, if the call to `context.decodeAudioData` fails for whatever reason, `AudioLoader.load` (and `loadAsync` by extension) will hang forever because there is no erro...
[ { "path": "src/loaders/AudioLoader.js", "patch": "@@ -32,25 +32,31 @@ class AudioLoader extends Loader {\n \n \t\t\t\t\tonLoad( audioBuffer );\n \n-\t\t\t\t} );\n+\t\t\t\t}, handleError );\n \n \t\t\t} catch ( e ) {\n \n-\t\t\t\tif ( onError ) {\n+\t\t\t\thandleError( e );\n \n-\t\t\t\t\tonError( e );\n+\t\...
2023-04-08T06:52:52
golang/go
12e5efd71011fbb5816a1d815e91b5c865fa9a83
214b208e248d30a3b6c35a5ebf344cc2de3b9e3f
cmd/link: fix cgo on riscv64 when building with gcc-15 It's not currently possible to build cgo programs that are partially compiled with gcc-15 on riscv64 using the internal linker. There are two reasons for this. 1. When gcc-15 compiles _cgo_export.c, which contains no actual code, for a riscv64 target, it emits...
[ { "path": "src/cmd/link/internal/loadelf/ldelf.go", "patch": "@@ -609,7 +609,7 @@ func Load(l *loader.Loader, arch *sys.Arch, localSymVersion int, f *bio.Reader,\n \t\t\t\tcontinue\n \t\t\t}\n \n-\t\t\tif strings.HasPrefix(elfsym.name, \".LASF\") || strings.HasPrefix(elfsym.name, \".LLRL\") || strings.HasPr...
2025-04-25T15:23:49
denoland/deno
bf060427b9dad39fdf0c549a756d892527c8d5b5
69990482781c6702b66d7cea8e7048f5b96eb795
fix(node): require esm should prefer `module.exports` export (#28376)
[ { "path": "ext/node/polyfills/01_require.js", "patch": "@@ -1101,8 +1101,11 @@ function loadESMFromCJS(module, filename, code) {\n url.pathToFileURL(filename).toString(),\n code,\n );\n-\n- module.exports = namespace;\n+ if (ObjectHasOwn(namespace, \"module.exports\")) {\n+ module.exports = n...
2025-03-03T20:03:12
mrdoob/three.js
a18c25714bdb3798617de66ff937cb65a521e099
58ed2c5c73474e171d974c7256361f3f58d0512c
WebGPURenderer: DepthTexture (#25766) * FogNode: Update from construct API. * webgpu_rtt: update example API * WebGPURenderer: New Cache System * WebGPURenderer: Update cacheKey after needsUpdate. * final revision (1) * RenderObject pipeline based ( 1/2 ) * RenderObject pipeline based ( 2/2 ) * cl...
[ { "path": "examples/jsm/nodes/accessors/CubeTextureNode.js", "patch": "@@ -69,11 +69,11 @@ class CubeTextureNode extends TextureNode {\n \n \t\t\t\t\tconst levelSnippet = levelNode.build( builder, 'float' );\n \n-\t\t\t\t\tsnippet = builder.getCubeTextureLevel( textureProperty, uvSnippet, levelSnippet );\n+...
2023-04-07T07:56:47
golang/go
06751c455d89e09d29affc343ca9e38a02e2f5a2
c966f1c0c0e872773c38a6ddbd08df72726c8ba8
syscall: cache Errno.Error() on Windows Windows is unlike the other OSs and depends on a syscall for most errors. This can be costly; cache the returned string for later reuse. This helps test caching, since errors are written out as string to the test ID, which are often PathErrors wrapping Errnos. For now, only ca...
[ { "path": "src/syscall/syscall_windows.go", "patch": "@@ -138,12 +138,32 @@ func FormatMessage(flags uint32, msgsrc uint32, msgid uint32, langid uint32, buf\n \treturn formatMessage(flags, uintptr(msgsrc), msgid, langid, buf, args)\n }\n \n+var errnoErrorCache sync.Map\n+\n func (e Errno) Error() string {\n...
2025-03-24T23:01:06
denoland/deno
69990482781c6702b66d7cea8e7048f5b96eb795
a566d8bd103338722a007c5b611aae5a0146eb0a
fix: respect lockfile for multiple available jsr versions (#28375)
[ { "path": "Cargo.lock", "patch": "@@ -2013,9 +2013,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_graph\"\n-version = \"0.89.0\"\n+version = \"0.89.1\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"4ca8039ee1325d0d5dd60765c55177dc16b904f2457185ca815829d1e83eb588...
2025-03-03T16:57:25
mrdoob/three.js
124e7cc8d9a0a73e07b536d18e6779d702a6bf29
805f1865a7d3a51086c3e5f1037680e6e8bae1cf
WebGPU: Removed enable-unsafe-webgpu from error message.
[ { "path": "examples/jsm/capabilities/WebGPU.js", "patch": "@@ -16,8 +16,6 @@ class WebGPU {\n \n \t\tlet message = 'Your browser does not support <a href=\"https://gpuweb.github.io/gpuweb/\" style=\"color:blue\">WebGPU</a>';\n \n-\t\tif ( !! window.chrome ) message += '<br>Try: <b>chrome://flags/#enable-uns...
2023-04-06T10:29:43
golang/go
c966f1c0c0e872773c38a6ddbd08df72726c8ba8
8270b858ee8744e5b7584b49ae6ed93aa975c8bc
net: support IPv6 addresses in ListenMulticastUDP on Windows Fixes #63529. Change-Id: Id9246af1a72beef3149af571f0891437bba2f4e0 Reviewed-on: https://go-review.googlesource.com/c/go/+/668216 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Junyang Shao <shaojunyang...
[ { "path": "doc/next/6-stdlib/99-minor/net/63529.md", "patch": "@@ -0,0 +1 @@\n+On Windows, the [ListenMulticastUDP] now supports IPv6 addresses.", "additions": 1, "deletions": 0, "language": "Markdown" }, { "path": "src/net/listen_test.go", "patch": "@@ -610,7 +610,8 @@ func TestIPv6...
2025-04-25T13:30:53
denoland/deno
a566d8bd103338722a007c5b611aae5a0146eb0a
9bcbef6d2fa66c05eb22f343ba45fb7406317aca
fix: add "module.exports" export to ESM CJS wrapper module (#28373)
[ { "path": "resolvers/node/analyze.rs", "patch": "@@ -210,7 +210,7 @@ impl<\n ));\n \n for export in &all_exports {\n- if export.as_str() != \"default\" {\n+ if !matches!(export.as_str(), \"default\" | \"module.exports\") {\n add_export(\n &mut source,\n export,\...
2025-03-03T16:47:39
mrdoob/three.js
88c95377c113004342dc8e4060c741c7176a4911
185df04a990065f9f8cbb2d717629f3996df95be
Texture+WebGLRenderTarget: Replace .encoding with .colorSpace (#25771) * Texture+WebGLRenderTarget: Replace .encoding with .colorSpace * Fix typo * Update WebGLCubeRenderTarget.js * WebGLRenderer: Update remaining use of .encoding * Examples: Update examples, replace .encoding → .colorSpace --------- ...
[ { "path": "docs/examples/en/loaders/GLTFLoader.html", "patch": "@@ -144,7 +144,7 @@ <h2>Textures</h2>\n \n \t\t<code>\n \t\t// If texture is used for color information, set colorspace.\n-\t\ttexture.encoding = THREE.sRGBEncoding;\n+\t\ttexture.colorSpace = THREE.SRGBColorSpace;\n \n \t\t// UVs use the conve...
2023-04-06T08:25:30
golang/go
1e756dc5f73dc19eb1cbf038807d18ef1cc54ebc
29595ffeca93390dc9c03753b01406c4470c1490
cmd/compile: relax tighten register-pressure heuristic slightly Sometimes a value has multiple args, but they are the same dependency. Relax the regalloc heuristic for those. No measurable compile-time regression according to compilebench, maybe even a small improvement. name old time/op new time/op delta StdCm...
[ { "path": "src/cmd/compile/internal/ssa/tighten.go", "patch": "@@ -27,6 +27,8 @@ func tighten(f *Func) {\n \tdefer f.Cache.freeValueSlice(startMem)\n \tendMem := f.Cache.allocValueSlice(f.NumBlocks())\n \tdefer f.Cache.freeValueSlice(endMem)\n+\tdistinctArgs := f.newSparseSet(f.NumValues())\n+\tdefer f.retS...
2025-04-19T11:27:31
denoland/deno
9bcbef6d2fa66c05eb22f343ba45fb7406317aca
62bc07884b5649395f7d4125b68395e37ebaf168
fix(unstable): lint plugin swapped exported and source for ExportAllDeclaration (#28357) The `source` and `exported` property were swapped for the `ExportAllDeclaration` node. Fixes one issue reported at https://github.com/denoland/deno/issues/28355
[ { "path": "cli/tools/lint/ast_buffer/swc.rs", "patch": "@@ -213,8 +213,12 @@ fn serialize_module_decl(\n ctx.write_export_all_decl(\n &node.span,\n node.type_only,\n- exported,\n- source,\n+ // Namespaced export must always have a source, so this\n+ ...
2025-03-03T10:03:29
mrdoob/three.js
e43959d88a5df6983ca4b95196606a2ac9df5f81
018f9a27df2310ca3962ee6c2c6d4897fd9c7708
WebGPURenderer: Set labels of some WebGPU objects (#25773) This commit sets labels of some WebGPU objects for helping debug.
[ { "path": "examples/jsm/renderers/webgpu/WebGPUAttributes.js", "patch": "@@ -81,6 +81,7 @@ class WebGPUAttributes {\n \t\tif ( gpuReadBuffer === null ) {\n \n \t\t\tgpuReadBuffer = device.createBuffer( {\n+\t\t\t\tlabel: attribute.name,\n \t\t\t\tsize,\n \t\t\t\tusage: GPUBufferUsage.COPY_DST | GPUBufferUsa...
2023-04-05T06:17:44
golang/go
29595ffeca93390dc9c03753b01406c4470c1490
b386b628521780c048af14a148f373c84e687b26
doc: fix grammar and spelling Minor typo fixes in the docs Change-Id: I56b5d0318936aecc7775fb5bc70534456707da49 GitHub-Last-Rev: b4d042f8a997aa0d3824d8f9350dd24090b21073 GitHub-Pull-Request: golang/go#73531 Reviewed-on: https://go-review.googlesource.com/c/go/+/668815 Reviewed-by: Keith Randall <khr@golang.org> LUCI-...
[ { "path": "doc/godebug.md", "patch": "@@ -370,7 +370,7 @@ certificate policy OIDs with components larger than 31 bits. By default this\n field is only used during parsing, when it is populated with policy OIDs, but\n not used during marshaling. It can be used to marshal these larger OIDs, instead\n of the e...
2025-04-29T11:46:09
denoland/deno
62bc07884b5649395f7d4125b68395e37ebaf168
287bde1f721825aa18b8c6bc81d80bbb362865f3
fix(unstable): Missing `PrivateIdentifier` type for `PropertyDefinition` key (#28358) The `PropertyDefinition` node also allows `PrivateIdentifier` as a type for the `key`. Example: ```ts class Foo { #foo = 2; } ``` Fixes one issue reported in https://github.com/denoland/deno/issues/28355
[ { "path": "cli/tsc/dts/lib.deno.unstable.d.ts", "patch": "@@ -1946,7 +1946,12 @@ declare namespace Deno {\n static: boolean;\n accessibility: Accessibility | undefined;\n decorators: Decorator[];\n- key: Expression | Identifier | NumberLiteral | StringLiteral;\n+ key:\n+ |...
2025-03-03T10:03:06
mrdoob/three.js
e7d1573389122e67f8056c9c4ae5f8574fd4c310
9f8bb69d3b1d2e7ee56d7706859e09ae79ea1a18
NRRDLoader: Fix spacing issue when loading 16 bit images. (#25767) * fixed the nrrd images' spacing issue on loading 16 bits images * undo the ijk_to_transition matrix4 changes, continue use set(row-major order) * Update NRRDLoader.js * Update Volume.js * using array instead of vector3 when creating RASDim...
[ { "path": "examples/jsm/loaders/NRRDLoader.js", "patch": "@@ -363,6 +363,7 @@ class NRRDLoader extends Loader {\n \n \t\tconst volume = new Volume();\n \t\tvolume.header = headerObject;\n+\t\tvolume.segmentation = this.segmentation;\n \t\t//\n \t\t// parse the (unzipped) data to a datastream of the correct ...
2023-04-04T13:58:23
golang/go
b386b628521780c048af14a148f373c84e687b26
760f22848de788806cb4ed25383cd92ea9091eef
cmd/internal/obj/loong64: fix the error parameters when calling UnspillRegisterArgs This bug was introduced in CL 648518. Fixes #73518. Change-Id: I4988dd0b636c6a6a48d2aa2e2ae868e43f69995a Reviewed-on: https://go-review.googlesource.com/c/go/+/668475 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.i...
[ { "path": "src/cmd/internal/obj/loong64/obj.go", "patch": "@@ -836,7 +836,7 @@ func (c *ctxt0) stacksplit(p *obj.Prog, framesize int32) *obj.Prog {\n \t}\n \tcall.Mark |= BRANCH\n \n-\tunspill := c.cursym.Func().UnspillRegisterArgs(pcdata, c.newprog)\n+\tunspill := c.cursym.Func().UnspillRegisterArgs(call, ...
2025-04-28T11:35:38
denoland/deno
287bde1f721825aa18b8c6bc81d80bbb362865f3
53339ceb8d63ebe88bd6128662b716090420bf2a
fix(unstable): lint plugin `ObjectPattern` inconsistencies (#28359) Fixes inconsistencies with `ObjectPattern` node to match TSESTree. Fixes one issue reported in https://github.com/denoland/deno/issues/28355
[ { "path": "cli/tools/lint/ast_buffer/swc.rs", "patch": "@@ -1896,14 +1896,18 @@ fn serialize_pat(ctx: &mut TsEsTreeBuilder, pat: &Pat) -> NodeRef {\n ObjectPatProp::Assign(assign_pat_prop) => {\n let ident = serialize_binding_ident(ctx, &assign_pat_prop.key);\n \n- let value...
2025-03-03T10:02:52
mrdoob/three.js
8cc9f32a96e932ccba41f82cd2b7c62d047be39f
6622dbf73bfe6321745611e237291b349e90c455
WebGPURenderer: New Cache System (#25750) * FogNode: Update from construct API. * webgpu_rtt: update example API * WebGPURenderer: New Cache System * WebGPURenderer: Update cacheKey after needsUpdate. * final revision (1) * RenderObject pipeline based ( 1/2 ) * RenderObject pipeline based ( 2/2 ) ...
[ { "path": "examples/jsm/nodes/core/NodeBuilder.js", "patch": "@@ -32,18 +32,19 @@ class NodeBuilder {\n \tconstructor( object, renderer, parser ) {\n \n \t\tthis.object = object;\n-\t\tthis.material = object.material || null;\n-\t\tthis.geometry = object.geometry || null;\n+\t\tthis.material = object && ( o...
2023-04-04T08:03:53
golang/go
c8b589e26643f83cf5469e5bcb06af40c10932e2
f9ce1dddc264cb30e68bfedbabf159b32bb6a719
cmd/list: fix -retracted flag description Change-Id: Ia1ab220485af2f38c3ddcd4c5d5bca1b195a33ed GitHub-Last-Rev: fb9933427d852518c93efbc4f2c2e4d4ee9b9197 GitHub-Pull-Request: golang/go#59847 Reviewed-on: https://go-review.googlesource.com/c/go/+/489175 Auto-Submit: Sam Thanawalla <samthanawalla@google.com> LUCI-TryBot-...
[ { "path": "src/cmd/go/alldocs.go", "patch": "@@ -1071,8 +1071,8 @@\n //\n // The -retracted flag causes list to report information about retracted\n // module versions. When -retracted is used with -f or -json, the Retracted\n-// field will be set to a string explaining why the version was retracted.\n-// T...
2023-05-29T09:23:27
denoland/deno
b6b5c7d7d99f4f763fad87ee0f253d523ad49fc3
2a803fe2debd2854260d6f409211cd30a4cebc82
fix(unstable/lint): remove duplicated `Fix` vs `FixData` interface (#28344) Noticed that we have two interfaces describing the same thing: `Fix` and `FixData`. This PR removes the `FixData` one.
[ { "path": "cli/js/40_lint.js", "patch": "@@ -16,7 +16,9 @@ const {\n op_is_cancelled,\n } = core.ops;\n \n+/** @type {(id: string, message: string, hint: string | undefined, start: number, end: number, fix: Deno.lint.Fix[]) => void} */\n let doReport = op_lint_report;\n+/** @type {() => string} */\n let d...
2025-02-28T15:20:23
mrdoob/three.js
fb352e6a489cbabbfbb5ac36936e1752791fe7d7
1848f74f3fe15b3f9a459afeff5afd11c3e6bc11
Fix the import in the WebGL compatibility documentation (#25761) fix #25760
[ { "path": "docs/manual/en/introduction/WebGL-compatibility-check.html", "patch": "@@ -15,7 +15,7 @@ <h1>[name]</h1>\n \t\t</p>\n \n \t\t<code>\n-\t\timport { WebGL } from 'three/addons/capabilities/WebGL.js';\n+\t\timport WebGL from 'three/addons/capabilities/WebGL.js';\n \n \t\tif ( WebGL.isWebGLAvailable(...
2023-04-03T11:30:14
golang/go
eb55b985a1b75bd796883a7a22dd41e76f0a45ba
3f3782feed6e0726ddb08afd32dad7d94fbb38c6
cmd/dist: add "devel" substring check to isRelease computation Non-release versions that are built from source without a VERSION file specifying any particular version end up with a development version like "devel go1.25-67e0681aef Thu Apr 24 12:17:27 2025 -0700". Right now those versions are correctly determined to b...
[ { "path": "src/cmd/dist/build.go", "patch": "@@ -274,7 +274,8 @@ func xinit() {\n \ttooldir = pathf(\"%s/pkg/tool/%s_%s\", goroot, gohostos, gohostarch)\n \n \tgoversion := findgoversion()\n-\tisRelease = strings.HasPrefix(goversion, \"release.\") || strings.HasPrefix(goversion, \"go\")\n+\tisRelease = (str...
2025-04-24T21:07:04
denoland/deno
2a803fe2debd2854260d6f409211cd30a4cebc82
3a1f3455b01ad6b25fe426fda7056c4885069a8e
fix(check/npm): move not found errors inside npm packages to tsc diagnostics (#28337)
[ { "path": "cli/tsc/97_ts_host.js", "patch": "@@ -174,7 +174,8 @@ export const LAST_REQUEST_SCOPE = {\n },\n };\n \n-ts.deno.setIsNodeSourceFileCallback((sourceFile) => {\n+/** @param sourceFile {ts.SourceFile} */\n+function isNodeSourceFile(sourceFile) {\n const fileName = sourceFile.fileName;\n let i...
2025-02-28T15:06:20
golang/go
da64b60c7eea880ccdeda2dfdf1b9af9a4a6fcc7
67e0681aef41cfd9794d3f7819450acd08a67905
runtime: fix typo in comment Change-Id: I85f518e36c18f4f0eda8b167750b43cd8c48ecff Reviewed-on: https://go-review.googlesource.com/c/go/+/622675 Auto-Submit: Dmitri Shuralyov <dmitshur@golang.org> Reviewed-by: Austin Clements <austin@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserv...
[ { "path": "src/runtime/mheap.go", "patch": "@@ -431,12 +431,12 @@ type mspan struct {\n \t// indicating a free object. freeindex is then adjusted so that subsequent scans begin\n \t// just past the newly discovered free object.\n \t//\n-\t// If freeindex == nelem, this span has no free objects.\n+\t// If fr...
2024-10-25T15:46:35
denoland/deno
3a1f3455b01ad6b25fe426fda7056c4885069a8e
b4aa3e6d1eb7e1be6c9051b2150111ac4c5d95ff
feat(unstable): lint plugins support field selectors (#28324) This PR adds support for field selectors (`.<field>`) in the lint plugin API. This is supported in ESLint as well, but was missing in our implementation. ```css /* Only search the test expression of an IfStatement */ IfStatement.test ``` Fixes https://git...
[ { "path": "cli/js/40_lint.js", "patch": "@@ -791,14 +791,45 @@ class MatchCtx {\n return readType(this.ctx.buf, idx);\n }\n \n+ /**\n+ * @param {number} idx\n+ * @param {number} propId\n+ * @returns {number}\n+ */\n+ getField(idx, propId) {\n+ if (idx === AST_IDX_INVALID) return -1;\n+\n+...
2025-02-28T14:10:02
golang/go
67e0681aef41cfd9794d3f7819450acd08a67905
3672a09a48464d18d0c669cc3590d13091a2e77a
cmd/compile: put constant value on node inside parentheses That's where the unified IR writer expects it. Fixes #73476 Change-Id: Ic22bd8dee5be5991e6d126ae3f6eccb2acdc0b19 Reviewed-on: https://go-review.googlesource.com/c/go/+/667415 Reviewed-by: Junyang Shao <shaojunyang@google.com> LUCI-TryBot-Result: Go LUCI <gol...
[ { "path": "src/cmd/compile/internal/types2/range.go", "patch": "@@ -37,6 +37,16 @@ func (check *Checker) rangeStmt(inner stmtContext, rangeStmt *syntax.ForStmt, no\n \n \tif isTypes2 && x.mode != invalid && sValue == nil && !check.hasCallOrRecv {\n \t\tif t, ok := arrayPtrDeref(under(x.typ)).(*Array); ok {\...
2025-04-22T22:14:17
denoland/deno
b4aa3e6d1eb7e1be6c9051b2150111ac4c5d95ff
5a0fca9a613e6d157d5ca0cc29df465b06d800ac
fix(unstable): lint plugin regex attribute selector not working (#28340) The code to support regex matching on attribute values was already there. I just forgot to wire it up properly in the selector matching code. Fixes https://github.com/denoland/deno/issues/28336
[ { "path": "cli/js/40_lint_selector.js", "patch": "@@ -1008,9 +1008,13 @@ function matchAttrBin(attr, next) {\n function matchAttrValue(attr, value) {\n switch (attr.op) {\n case BinOp.Equal:\n- return value === attr.value;\n+ return attr.value instanceof RegExp\n+ ? attr.value.test(va...
2025-02-28T11:59:41
mrdoob/three.js
47118f1316c10e90238930918aa103c9440a7ada
feb76e6c3289137fed82a0174049783f47e30514
fix bindTexture does not have fallback for 2darray and 3d textures (#25758)
[ { "path": "src/renderers/webgl/WebGLState.js", "patch": "@@ -362,7 +362,7 @@ function WebGLState( gl, extensions, capabilities ) {\n \tconst currentScissor = new Vector4().fromArray( scissorParam );\n \tconst currentViewport = new Vector4().fromArray( viewportParam );\n \n-\tfunction createTexture( type, ta...
2023-04-03T10:00:45
golang/go
3672a09a48464d18d0c669cc3590d13091a2e77a
3452d80da3cf4f08da0f5905b1aa19cec475936e
runtime/debug: update SetCrashOutput example to not pass parent env vars Fixes #73490 Change-Id: I500fa73f4215c7f490779f53c1c2c0d775f51a95 Reviewed-on: https://go-review.googlesource.com/c/go/+/667775 Reviewed-by: Alan Donovan <adonovan@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam....
[ { "path": "src/runtime/debug/example_monitor_test.go", "patch": "@@ -84,7 +84,10 @@ func monitor() {\n \t\tlog.Fatal(err)\n \t}\n \tcmd := exec.Command(exe, \"-test.run=^ExampleSetCrashOutput_monitor$\")\n-\tcmd.Env = append(os.Environ(), monitorVar+\"=1\")\n+\t// Be selective in which variables we allow th...
2025-04-24T14:38:58
mrdoob/three.js
b43490260cdf71c71dc5fdec4114e3643c6c5e98
8400dc53eff51b434ae965edefa387e7695f9e42
docs: Fix a few typos (#25753) There are small typos in: - examples/jsm/loaders/ColladaLoader.js - examples/jsm/loaders/SVGLoader.js Fixes: - Should read `width` rather than `witdh`. - Should read `process` rather than `procces`. Signed-off-by: Tim Gates <tim.gates@iress.com>
[ { "path": "examples/jsm/loaders/ColladaLoader.js", "patch": "@@ -962,7 +962,7 @@ class ColladaLoader extends Loader {\n \n \t\t\tlet i, j, l;\n \n-\t\t\t// procces skin data for each vertex\n+\t\t\t// process skin data for each vertex\n \n \t\t\tfor ( i = 0, l = vcount.length; i < l; i ++ ) {\n ", "addi...
2023-04-03T01:49:25
denoland/deno
5a0fca9a613e6d157d5ca0cc29df465b06d800ac
eea5eb1c408567041c33fcf3353d5d54233c73e9
fix(fmt/md): handle callout followed by non-text (#28333)
[ { "path": ".dprint.json", "patch": "@@ -74,11 +74,11 @@\n \"tests/specs/run/error_syntax_empty_trailing_line/error_syntax_empty_trailing_line.mjs\"\n ],\n \"plugins\": [\n- \"https://plugins.dprint.dev/typescript-0.93.2.wasm\",\n- \"https://plugins.dprint.dev/json-0.19.4.wasm\",\n- \"https:...
2025-02-27T22:29:58
mrdoob/three.js
5c5a5c74c6611d3f14dd3e58c5139afd3e4ea182
f327b7a0f7aefafe23068b3987d3787dff7248d9
WebGLRenderer: Add support for multiple uv sets and transforms. (#25721) * WebGLRenderer: Refactor uv shaderchunks. * GLTFLoader: Removed uv2 workaround. * MeshGouraudMaterial: Clean up. * Texture: Renamed uvChannel to uvSet. * ShaderChunks: Refactored back vUv code. * WebGLProgram: Removed uvsVertexOnl...
[ { "path": "docs/api/en/textures/Texture.html", "patch": "@@ -77,6 +77,11 @@ <h3>[property:number mapping]</h3>\n \t\tSee the [page:Textures texture constants] page for other mapping types.\n \t\t</p>\n \n+\t\t<h3>[property:Integer channel]</h3>\n+\t\t<p>\n+\t\tLets you select the uv attribute to map the tex...
2023-03-30T08:01:57
golang/go
3452d80da3cf4f08da0f5905b1aa19cec475936e
3009566a46f19e9c94df4cf51cc374763698cba0
cmd/compile: add cast in range loop final value computation When replacing a loop where the iteration variable has a named type, we need to compute the last iteration value as i = T(len(a)-1), not just i = len(a)-1. Fixes #73491 Change-Id: Ic1cc3bdf8571a40c10060f929a9db8a888de2b70 Reviewed-on: https://go-review.goog...
[ { "path": "src/cmd/compile/internal/walk/range.go", "patch": "@@ -605,7 +605,7 @@ func arrayClear(wbPos src.XPos, a ir.Node, nrange *ir.RangeStmt) ir.Node {\n \n \t// For array range clear, also set \"i = len(a) - 1\"\n \tif nrange != nil {\n-\t\tidx := ir.NewAssignStmt(base.Pos, nrange.Key, ir.NewBinaryExp...
2025-04-24T15:38:56
denoland/deno
eea5eb1c408567041c33fcf3353d5d54233c73e9
ff970bd9fe6c2dbf1147656d9e21c9b340d6d112
fix(lsp): include prefix and suffix for rename edits (#28327)
[ { "path": "cli/lsp/language_server.rs", "patch": "@@ -3017,12 +3017,15 @@ impl Inner {\n let asset_or_doc = self.get_asset_or_document(&specifier)?;\n let line_index = asset_or_doc.line_index();\n \n+ let user_preferences =\n+ tsc::UserPreferences::from_config_for_specifier(&self.config, &sp...
2025-02-27T21:34:32
golang/go
3009566a46f19e9c94df4cf51cc374763698cba0
8a8f506516e1210c9ca3a352d76bd1d570c407fd
runtime: fix tag pointers on aix Clean up tagged pointers a bit. I got the shifts wrong for the weird aix case. Change-Id: I21449fd5973f4651fd1103d3b8be9c2b9b93a490 Reviewed-on: https://go-review.googlesource.com/c/go/+/667715 Reviewed-by: Michael Knyszek <mknyszek@google.com> Reviewed-by: Keith Randall <khr@google.c...
[ { "path": "src/runtime/malloc.go", "patch": "@@ -455,8 +455,8 @@ func mallocinit() {\n \t\tthrow(\"max pointer/scan bitmap size for headerless objects is too large\")\n \t}\n \n-\tif minTagBits > taggedPointerBits {\n-\t\tthrow(\"taggedPointerBits too small\")\n+\tif minTagBits > tagBits {\n+\t\tthrow(\"tag...
2025-04-24T06:23:53
mrdoob/three.js
3038140a1355910b83c4db806c11dc648725ad95
5d3ed2296b8e4eff63f17153bd939fc99d7dfcd3
Playground: Fix examples (#25732) * NodeEditorLib: Fix nodeClass prototype. * Playground: Fix examples invert() -> oneMinus()
[ { "path": "playground/NodeEditorLib.js", "patch": "@@ -117,7 +117,7 @@ export const getNodeEditorClass = async ( nodeData ) => {\n \n \t//\n \n-\tlet nodeClass = ClassLib[ editorClass ];\n+\tlet nodeClass = nodeData.nodeClass || ClassLib[ editorClass ];\n \n \tif ( nodeClass !== undefined ) {\n ", "addi...
2023-03-29T20:35:29
denoland/deno
ff970bd9fe6c2dbf1147656d9e21c9b340d6d112
69b59b229678559b5761c501e364d70446d768d2
fix: deno_ast 0.46 (#28331)
[ { "path": "Cargo.lock", "patch": "@@ -98,7 +98,6 @@ source = \"registry+https://github.com/rust-lang/crates.io-index\"\n checksum = \"e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011\"\n dependencies = [\n \"cfg-if\",\n- \"getrandom\",\n \"once_cell\",\n \"version_check\",\n \"zerocopy\"...
2025-02-27T21:28:36
golang/go
8a8f506516e1210c9ca3a352d76bd1d570c407fd
c1fc209c41c18806b7cef1cf114f1ca9b3731eb9
os,internal/poll: disassociate handle from IOCP in File.Fd Go 1.25 will gain support for overlapped IO on handles passed to os.NewFile thanks to CL 662236. It was previously not possible to add an overlapped handle to the Go runtime's IO completion port (IOCP), and now happens on the first call the an IO method. This...
[ { "path": "src/internal/poll/fd_plan9.go", "patch": "@@ -36,10 +36,6 @@ type FD struct {\n \tisFile bool\n }\n \n-func (fd *FD) initIO() error {\n-\treturn nil\n-}\n-\n // We need this to close out a file descriptor when it is unlocked,\n // but the real implementation has to live in the net package because...
2025-04-10T15:45:47
denoland/deno
aa55efaa133daf8a3ccf7aad0cb06bf2d209abe2
1fe721f1f8fe6e5812492dc73e249587c925c92d
fix(otel): don't throw when calling setActiveSpan at root (#28323) When calling `setActiveSpan` at the module root, or with `options.root = true`, the function would internally throw.
[ { "path": "ext/telemetry/telemetry.ts", "patch": "@@ -145,7 +145,7 @@ function hrToMs(hr: [number, number]): number {\n \n export function enterSpan(span: Span): Context | undefined {\n if (!span.isRecording()) return undefined;\n- const context = (CURRENT.get() || ROOT_CONTEXT).setValue(SPAN_KEY, span);...
2025-02-27T17:47:09
golang/go
c1fc209c41c18806b7cef1cf114f1ca9b3731eb9
9d0320de2574586f3b0610c1b5fd15b8f9c85dec
runtime: use precise bounds of Go data/bss for race detector We only want to call into the race detector for Go global variables. By rounding up the region bounds, we can include some C globals. Even worse, we can include only *part* of a C global, leading to race{read,write}range calls which straddle the end of shado...
[ { "path": "src/runtime/race.go", "patch": "@@ -455,7 +455,6 @@ func raceinit() (gctx, pctx uintptr) {\n \n \tracecall(&__tsan_init, uintptr(unsafe.Pointer(&gctx)), uintptr(unsafe.Pointer(&pctx)), abi.FuncPCABI0(racecallbackthunk), 0)\n \n-\t// Round data segment to page boundaries, because it's used in mmap...
2025-04-23T21:15:51
mrdoob/three.js
03e4e0555712c2dcca43acc01b2d6674fd15ffa8
25ef6adba4c757704b910d2deb742634a7c58ef7
NodeEditor: New Version (Rev. 3) (#25692) * update flow.js rev. 3 * Pass: Added .isPass property. * NodeEditor: Rev. 3 (WIP) * fix example custom node "Replace Material by Name" * fix disconnect resize icon size * cleanup * fix gtf loader example * NodeMaterial: Fix backward compatibility of scene...
[ { "path": "examples/files.json", "patch": "@@ -245,7 +245,6 @@\n \t\t\"webgl_nodes_materials_physical_clearcoat\",\n \t\t\"webgl_nodes_materials_standard\",\n \t\t\"webgl_nodes_materialx_noise\",\n-\t\t\"webgl_nodes_playground\",\n \t\t\"webgl_nodes_points\"\n \t],\n \t\"webgl / postprocessing\": [\n@@ -342...
2023-03-29T04:03:18
denoland/deno
1fe721f1f8fe6e5812492dc73e249587c925c92d
cdf6ea32c4fb8c4863b20c1af40d423cd88bd10c
fix(lsp): limit languages in semantic tokens provider (#28310)
[ { "path": "cli/lsp/capabilities.rs", "patch": "@@ -127,12 +127,39 @@ pub fn server_capabilities(\n }),\n call_hierarchy_provider: Some(CallHierarchyServerCapability::Simple(true)),\n semantic_tokens_provider: Some(\n- SemanticTokensServerCapabilities::SemanticTokensOptions(\n- Semant...
2025-02-26T16:00:40
golang/go
702f164ed1a4a64cfa60e10723b9b7344bd3f601
fca5832607d7c1afa20b82ca00ba4a27e28c0d0a
cmd/vet: add hostport analyzer + test, release note Fixes #28308 Change-Id: I190e2fe513eeb6b90b0398841f67bf52510b5f59 Reviewed-on: https://go-review.googlesource.com/c/go/+/667596 Auto-Submit: Alan Donovan <adonovan@google.com> Commit-Queue: Alan Donovan <adonovan@google.com> Reviewed-by: Jonathan Amsterdam <jba@goo...
[ { "path": "doc/next/3-tools.md", "patch": "@@ -26,10 +26,17 @@ specifying the command's current version.\n \n ### Vet {#vet}\n \n+The `go vet` command includes new analyzers:\n+\n <!-- go.dev/issue/18022 -->\n \n-The `go vet` command now includes the\n-[waitgroup](https://pkg.go.dev/golang.org/x/tools/go/an...
2025-04-23T18:23:45
mrdoob/three.js
bee8eaf1b079514601ddbec30ce928016e3fe815
2745552562cb9d99d04c619de56820f571020eac
fix: prevent exception when loading glTF files that use KHR_animation_pointer extension (#24770) fix: don't return, instead just skip the animations that aren't supported remove warning when node is undefined, just continue
[ { "path": "examples/jsm/loaders/GLTFLoader.js", "patch": "@@ -3777,6 +3777,7 @@ class GLTFParser {\n \t\tconst json = this.json;\n \n \t\tconst animationDef = json.animations[ animationIndex ];\n+\t\tconst animationName = animationDef.name ? animationDef.name : 'animation_' + animationIndex;\n \n \t\tconst ...
2023-03-28T08:54:40
mrdoob/three.js
9423a438e9bd132ce2e49ccd6688d73a4e572c53
6feb9e836ebfb206d61c940463f9a00ed9291bdc
WebGPURenderer: Added VideoTexture support (#25530) * WebGPURenderer: Added VideoTexture support * Examples: Added webgpu_materials_video * Test if WebGPU is available * cleanup * Node: Fix update .getUpdateType() * Fix updates * WebGPUBindings: Fix resource. * WebGPUNodeBuilder: Improve error mes...
[ { "path": "examples/files.json", "patch": "@@ -341,6 +341,7 @@\n \t\t\"webgpu_lights_selective\",\n \t\t\"webgpu_loader_gltf\",\n \t\t\"webgpu_materials\",\n+\t\t\"webgpu_materials_video\",\n \t\t\"webgpu_nodes_playground\",\n \t\t\"webgpu_particles\",\n \t\t\"webgpu_rtt\",", "additions": 1, "deleti...
2023-03-27T20:51:42