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
2ec45ff8f919423653e483034fbdbba3bc466951
f8d580c88e6242be1702e1bad1c31f5d713897df
NodeMaterial: Fix cacheKey (#26227)
[ { "path": "examples/jsm/nodes/materials/NodeMaterial.js", "patch": "@@ -48,7 +48,7 @@ class NodeMaterial extends ShaderMaterial {\n \n \tcustomProgramCacheKey() {\n \n-\t\treturn getCacheKey( this );\n+\t\treturn this.type + getCacheKey( this );\n \n \t}\n ", "additions": 1, "deletions": 1, "lan...
2023-06-10T11:54:02
denoland/deno
e2341c794983b284409f8627590dd6232f0fa2ab
ec8e4af85b66e23eca6108793c481fef0c1f70c0
fix(ext/node): add createReadStream & createWriteStream methods to the FileHandle class (#28700) Co-authored-by: Nikolay Karadzhov <nkaradzhov89@gmail.com> Co-authored-by: Yoshiya Hinosawa <stibium121@gmail.com>
[ { "path": "ext/node/polyfills/internal/fs/handle.ts", "patch": "@@ -5,8 +5,9 @@\n \n import { EventEmitter } from \"node:events\";\n import { Buffer } from \"node:buffer\";\n-import { Mode, promises, read, write } from \"node:fs\";\n+import { Mode, promises, read, ReadStream, write, WriteStream } from \"nod...
2025-04-07T08:13:32
mrdoob/three.js
dad53383f7b57b974ad419cea6ebbcc0b1be76f9
de8f1460d979772e3df62b082667a0c21db5361c
fix document about all the controls in Chinese (#26223) Co-authored-by: liugang8 <liugang8@asiainfo.com>
[ { "path": "docs/examples/zh/controls/FirstPersonControls.html", "patch": "@@ -18,7 +18,7 @@ <h2>进口</h2>\n \n \t\t<p>\n \t\t\t[name] 是一个附加组件,必须显式导入。\n-\t\t\tSee [link:#manual/introduction/Installation Installation / Addons].\n+\t\t\t请参考[link:#manual/introduction/Installation Installation / Addons].\n \t\t</p...
2023-06-09T08:20:58
golang/go
d52679006c8e08875fac92aca1f723fce488d0d2
972639fc4cf257f04f9690e63bea7cd729b3edd2
cmd/compile: fold negation into addition/subtraction on mipsx Fold negation into addition/subtraction and avoid double negation. file before after Δ % addr2line 3742022 3741986 -36 -0.001% asm 6668616 6668628 +12 +0.000% buildid 3583786 3583630 -156 -0.004% cgo 6...
[ { "path": "src/cmd/compile/internal/ssa/_gen/MIPS.rules", "patch": "@@ -614,11 +614,14 @@\n \n // generic simplifications\n (ADD x (NEG y)) => (SUB x y)\n+(SUB x (NEG y)) => (ADD x y)\n (SUB x x) => (MOVWconst [0])\n (SUB (MOVWconst [0]) x) => (NEG x)\n (AND x x) => x\n (OR x x) => x\n (XOR x x) => (MOVWco...
2025-05-16T16:27:37
denoland/deno
ec8e4af85b66e23eca6108793c481fef0c1f70c0
0934841fcc6f2218a536cc207c125c917abb9459
fix(ext/node): use primordials in `ext/node/polyfills/path/_win32.ts` (#28668)
[ { "path": "ext/node/polyfills/path/_win32.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-primordia...
2025-04-07T07:54:54
golang/go
972639fc4cf257f04f9690e63bea7cd729b3edd2
11c86ddcb898f4c2c5fa548d46821ab76ea2d0fd
go/token: add FileSet.AddExistingFiles + test, doc, relnote Fixes #73205 Change-Id: Id3a4cc6290c55ffa518ad174a02ccca85e8636f7 Reviewed-on: https://go-review.googlesource.com/c/go/+/672875 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Robert Findley <rfindley@g...
[ { "path": "api/next/73205.txt", "patch": "@@ -0,0 +1 @@\n+pkg go/token, method (*FileSet) AddExistingFiles(...*File) #73205", "additions": 1, "deletions": 0, "language": "Plain Text" }, { "path": "doc/next/6-stdlib/99-minor/go/token/73205.md", "patch": "@@ -0,0 +1,4 @@\n+The new [Fil...
2025-05-14T19:22:36
mrdoob/three.js
de8f1460d979772e3df62b082667a0c21db5361c
4948f31e4c3693b547c9de82765a4d386d56153b
WebGPURenderer & PhysicalLightingModel: Added `clearcoat` (#26211) * Added materialClearcoatNormal * Added materialClearcoat, materialClearcoatRoughness * Added transformedClearcoatNormalView and revision * Added clearcoat, clearcoatRoughness * NodeBuilder: Added .includes( node ) * PhysicalLightingModel: Added C...
[ { "path": "examples/files.json", "patch": "@@ -308,6 +308,7 @@\n \t\t\"webgpu_audio_processing\",\n \t\t\"webgpu_backdrop\",\n \t\t\"webgpu_backdrop_area\",\n+\t\t\"webgpu_clearcoat\",\n \t\t\"webgpu_compute\",\n \t\t\"webgpu_cubemap_adjustments\",\n \t\t\"webgpu_cubemap_dynamic\",", "additions": 1, ...
2023-06-08T22:27:13
golang/go
11c86ddcb898f4c2c5fa548d46821ab76ea2d0fd
bc5aa2f7d3e1deb5468432230c438a8a9e8de316
runtime: check for gsignal in asancall/msancall/racecall asancall and msancall are reachable from the signal handler, where we are running on gsignal. Currently, these calls will use the g0 stack in this case, but if the interrupted code was running on g0 this will corrupt the stack and likely cause a crash. As far a...
[ { "path": "src/runtime/asan_amd64.s", "patch": "@@ -100,7 +100,12 @@ TEXT\tasancall<>(SB), NOSPLIT, $0-0\n \tJE\tcall\t// no g; still on a system stack\n \n \tMOVQ\tg_m(R14), R13\n-\t// Switch to g0 stack.\n+\n+\t// Switch to g0 stack if we aren't already on g0 or gsignal.\n+\tMOVQ\tm_gsignal(R13), R10\n+\t...
2025-01-22T19:13:33
mrdoob/three.js
7bd15773b814254af39e305048ce9297a6f0b74a
42dcba0304a282f06579ca6b32d1b66a039e9c0e
Nodes: Fix UV attributes (#26220) * Nodes: Fix uv attributes * cleanup
[ { "path": "examples/jsm/nodes/accessors/UVNode.js", "patch": "@@ -18,7 +18,7 @@ class UVNode extends AttributeNode {\n \n \t\tconst index = this.index;\n \n-\t\treturn 'uv' + ( index > 0 ? index + 1 : '' );\n+\t\treturn 'uv' + ( index > 0 ? index : '' );\n \n \t}\n ", "additions": 1, "deletions": 1,...
2023-06-08T19:33:16
mrdoob/three.js
42dcba0304a282f06579ca6b32d1b66a039e9c0e
0b40f2d0670b4753368566bc8f5f6cb692ddf0e9
fix the DataUtils type error (#26216) translate DragControls Co-authored-by: liugang8 <liugang8@asiainfo.com>
[ { "path": "docs/api/zh/extras/DataUtils.html", "patch": "@@ -1,5 +1,5 @@\n <!DOCTYPE html>\n-<html lang=\"ch\">\n+<html lang=\"zh\">\n \t<head>\n \t\t<meta charset=\"utf-8\" />\n \t\t<base href=\"../../../\" />", "additions": 1, "deletions": 1, "language": "HTML" }, { "path": "docs/examp...
2023-06-08T09:22:35
golang/go
bc5aa2f7d3e1deb5468432230c438a8a9e8de316
2c929d6f4c8fcd1021dc3cd57b2eedff5ae9a592
go/types, types2: improve error message for init without body Change-Id: I8a684965e88e0e33a6ff33a16e08d136e3267f7e Reviewed-on: https://go-review.googlesource.com/c/go/+/663636 TryBot-Bypass: Mark Freeman <mark@golang.org> Auto-Submit: Mark Freeman <mark@golang.org> Reviewed-by: Robert Griesemer <gri@google.com>
[ { "path": "src/cmd/compile/internal/types2/resolver.go", "patch": "@@ -436,10 +436,8 @@ func (check *Checker) collectObjects() {\n \t\t\t\t\tif name == \"init\" {\n \t\t\t\t\t\tobj.parent = pkg.scope\n \t\t\t\t\t\tcheck.recordDef(s.Name, obj)\n-\t\t\t\t\t\t// init functions must have a body\n \t\t\t\t\t\tif...
2025-04-04T17:44:38
denoland/deno
0934841fcc6f2218a536cc207c125c917abb9459
6f406c1cd6b7babd73e02e0d01305ce0f1a262ac
fix(ext/node): use primordials in `ext/node/polyfills/path/_posix.ts` (#28665)
[ { "path": "ext/node/polyfills/path/_posix.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-primordia...
2025-04-07T07:49:52
mrdoob/three.js
2b8f3608a4c645ba8f329958dcbe258c10ff480e
df27d3be030a644883d233e0892f0e6792c615a1
Docs: Fix mistake in Color#getRGB signature. (#26210)
[ { "path": "docs/api/en/math/Color.html", "patch": "@@ -217,7 +217,7 @@ <h3>\n \t\t</p>\n \n \t\t<h3>\n-\t\t\t[method:Color getRGB]( [param:Color target], [param:string colorSpace] = SRGBColorSpace )\n+\t\t\t[method:Color getRGB]( [param:Color target], [param:string colorSpace] = LinearSRGBColorSpace )\n \t\...
2023-06-07T17:00:42
golang/go
5afada035ced1f89267d3177a9fb75fab4df81ff
a74ae952826fd65006a8190c50bbbee4c4869cf9
go/ast: add PreorderStack, a variant of Inspect that builds a stack + doc, test, relnote Fixes #73319 Change-Id: Ib7c9d0d7107cd62dc7f09120dfb475c4a469ddc9 Reviewed-on: https://go-review.googlesource.com/c/go/+/672696 Reviewed-by: Robert Findley <rfindley@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-pr...
[ { "path": "api/next/73319.txt", "patch": "@@ -0,0 +1 @@\n+pkg go/ast, func PreorderStack(Node, []Node, func(Node, []Node) bool) #73319", "additions": 1, "deletions": 0, "language": "Plain Text" }, { "path": "doc/next/6-stdlib/99-minor/go/ast/73319.md", "patch": "@@ -0,0 +1,4 @@\n+The...
2025-05-14T20:15:40
denoland/deno
6f406c1cd6b7babd73e02e0d01305ce0f1a262ac
1086a75cc99c88cb53cae5e8d8c797dd48858bad
fix(ci): missing release symcache (#28774) Probably caused by copy-pasting from the canary upload job.
[ { "path": ".github/workflows/ci.generate.ts", "patch": "@@ -1047,7 +1047,7 @@ const ci = {\n run: [\n 'gsutil -h \"Cache-Control: public, max-age=3600\" cp ./target/release/*.zip gs://dl.deno.land/release/${GITHUB_REF#refs/*/}/',\n 'gsutil -h \"Cache-Control: public, max-ag...
2025-04-06T15:42:42
mrdoob/three.js
df27d3be030a644883d233e0892f0e6792c615a1
14ba68981194a8d1e0a16d9e0af00fa3dabd5146
WebGPURenderer: Backdrop Node - Part 2/3 (#26196) * WebGPURenderer: Depth buffer improvements * CameraNode: Added cameraNear, cameraFar * Object3DNode: Added modelScale, objectScale() * Added TextureBicubicNode, textureBicubic * TextureNode: Added .size(), level() and uv() * Added ViewportDepthTextureNo...
[ { "path": "examples/files.json", "patch": "@@ -307,6 +307,7 @@\n \t\"webgpu\": [\n \t\t\"webgpu_audio_processing\",\n \t\t\"webgpu_backdrop\",\n+\t\t\"webgpu_backdrop_area\",\n \t\t\"webgpu_compute\",\n \t\t\"webgpu_cubemap_adjustments\",\n \t\t\"webgpu_cubemap_dynamic\",", "additions": 1, "deletion...
2023-06-07T16:34:31
golang/go
198c3cb785282ee4c199680ec2d05381805a6f66
da9c5b142c855496222f0ab167c3f1d9e98403c4
std: pass bytes.Buffer and strings.Builder by pointer This CL fixes a number of (all true positive) findings of vet's copylock analyzer patched to treat the Bu{ff,uild}er types as non-copyable after first use. This does require imposing an additional indirection between noder.writer and Encoder since the field is emb...
[ { "path": "src/bytes/buffer_test.go", "patch": "@@ -354,7 +354,7 @@ func TestWriteAppend(t *testing.T) {\n \t\tgot.Write(b)\n \t}\n \tif !Equal(got.Bytes(), want) {\n-\t\tt.Fatalf(\"Bytes() = %q, want %q\", got, want)\n+\t\tt.Fatalf(\"Bytes() = %q, want %q\", &got, want)\n \t}\n \n \t// With a sufficiently ...
2024-12-11T20:42:06
mrdoob/three.js
84d625d97a62205cf917f7d1b442be83c118bb3a
9a6376aca142fbe7186f6a53bfa4dab72148f0e7
TAARenderPass: Fix color shift. (#26199)
[ { "path": "examples/jsm/postprocessing/TAARenderPass.js", "patch": "@@ -69,7 +69,6 @@ class TAARenderPass extends SSAARenderPass {\n \t\tconst oldClearAlpha = renderer.getClearAlpha();\n \n \t\tconst sampleWeight = 1.0 / ( jitterOffsets.length );\n-\t\tconst accumulationWeight = this.accumulateIndex * sampl...
2023-06-07T08:19:43
denoland/deno
457bfc9066b7db40f54aef2277cb6bc6714e8ffd
9d841987efa72992b1b4010af6217ddcd8271a44
fix: only strip local and debug symbols from macOS binary (#28758) Fixes #28757. We need to retain the napi symbols in the binary. `strip` with no flags on macos strips all symbols out of the binary (including global symbols). Only strip out the local and debug symbols from the binary, retaining the global symbols (...
[ { "path": ".github/workflows/ci.generate.ts", "patch": "@@ -818,7 +818,7 @@ const ci = {\n },\n run: [\n \"target/release/deno -A tools/release/create_symcache.ts target/release/deno-${{ matrix.arch }}-apple-darwin.symcache\",\n- \"strip target/release/deno\",\n+ ...
2025-04-05T00:29:59
golang/go
42f9ee904caf6681ee32e7b048f15ab7cddf3eb3
6425749695130f2032ac9cfdf5407b6a322534db
text/template: limit expression parenthesis nesting Deeply nested parenthesized expressions could cause a stack overflow during parsing. This change introduces a depth limit (maxStackDepth) tracked in Tree.stackDepth to prevent this. Additionally, this commit clarifies the security model in the package documentation,...
[ { "path": "src/text/template/doc.go", "patch": "@@ -15,6 +15,11 @@ Execution of the template walks the structure and sets the cursor, represented\n by a period '.' and called \"dot\", to the value at the current location in the\n structure as execution proceeds.\n \n+The security model used by this package ...
2025-05-14T18:16:54
mrdoob/three.js
47df928c8a963c2a4b61cfd459a36103aec0db2b
f1b8f3c6a30a45b47544fe91e5ea1db18e7c96e9
fix typo (#26195)
[ { "path": "docs/api/ar/lights/HemisphereLight.html", "patch": "@@ -73,7 +73,7 @@ <h3>[property:Vector3 position]</h3>\n \t\tيشرق الضوء من أعلى إلى أسفل.\n \t\t</p>\n \t\t\t\n-\t\t<h2>الظرق (Methods)</h2>\n+\t\t<h2>الطرق (Methods)</h2>\n \t\t\t\n \t\t<p>انظر قائمة [page:Light Light] الأساسية للطرق المشتركة.<...
2023-06-05T16:17:17
denoland/deno
37b760e3c620384e17263af17232d49bdb94321c
757ef462f778bcc57b64546985fe7e66a324e8d2
fix(lsp): filter scheme in semantic tokens registration options (#28756)
[ { "path": "cli/lsp/capabilities.rs", "patch": "@@ -39,30 +39,33 @@ fn code_action_capabilities(\n \n pub fn semantic_tokens_registration_options(\n ) -> SemanticTokensRegistrationOptions {\n+ const LANGUAGES: [&str; 4] = [\n+ \"javascript\",\n+ \"javascriptreact\",\n+ \"typescript\",\n+ \"types...
2025-04-04T21:27:20
golang/go
6425749695130f2032ac9cfdf5407b6a322534db
8798f9e7a4929bafb570da29d342104c8cb32f9b
cmd/distpack: remove more tools from packaged distribution The "doc", "fix", and "covdata" tools invoked by the go command are not needed for builds. Instead of invoking them directly using the installed binary in the tool directory, use "go tool" to run them, building them if needed. We can then stop distributing tho...
[ { "path": "src/cmd/distpack/pack.go", "patch": "@@ -169,7 +169,8 @@ func main() {\n \t\t\t}\n \t\t\t// Inside pkg/tool/$GOOS_$GOARCH, discard helper tools, and tools not needed for builds.\n \t\t\tswitch strings.TrimSuffix(path.Base(name), \".exe\") {\n-\t\t\tcase \"addr2line\", \"api\", \"buildid\", \"dist...
2025-05-15T19:30:57
mrdoob/three.js
52bc19c5419c370434397dbca50a931cba8b9353
ed7d2caab39553663cc8548d2391043e62a6c8a1
WebGPURenderer: Don't set redundant state (#26186) * BufferAttribute: Added .uuid * WebGPURenderer: Don't set redundant state * cleanup * BufferAttribute: Fix serialization and tests * Attributes: Rename .getUUID() to .getHash() * Attributes: Rename .getHash() to .getUUID() * BufferGeometryLoader: Fi...
[ { "path": "examples/jsm/renderers/webgpu/WebGPUBackend.js", "patch": "@@ -1,3 +1,7 @@\n+/*// debugger tools\n+import 'https://greggman.github.io/webgpu-avoid-redundant-state-setting/webgpu-check-redundant-state-setting.js';\n+//*/\n+\n import { GPUFeatureName, GPUTextureFormat, GPULoadOp, GPUStoreOp, GPUInd...
2023-06-03T22:52:25
denoland/deno
757ef462f778bcc57b64546985fe7e66a324e8d2
becf24c8c23f1fd6e7f95f6853118addaa9d31cd
fix(lint): resolve plugin paths from proper config specifier (#28752)
[ { "path": "Cargo.lock", "patch": "@@ -1724,9 +1724,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_config\"\n-version = \"0.51.0\"\n+version = \"0.52.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"8910eedd609c53d8ed2f38afaf6932ed4dcc7d09f572757443068a3e6eea16c...
2025-04-04T19:30:27
golang/go
8097cf14d20b547a615aae7d1b738a6aa563aa31
07a279794dff7ef3371710f1de4b3f9fc4ef4987
cmd/compile: fold negation into addition/subtraction on mips64x Fold negation into addition/subtraction and avoid double negation. file before after Δ % addr2line 4007310 4007470 +160 +0.004% asm 7007636 7007436 -200 -0.003% buildid 3839268 3838972 -296 -0.008% cgo ...
[ { "path": "src/cmd/compile/internal/ssa/_gen/MIPS64.rules", "patch": "@@ -719,11 +719,14 @@\n \n // generic simplifications\n (ADDV x (NEGV y)) => (SUBV x y)\n+(SUBV x (NEGV y)) => (ADDV x y)\n (SUBV x x) => (MOVVconst [0])\n (SUBV (MOVVconst [0]) x) => (NEGV x)\n (AND x x) => x\n (OR x x) => x\n (XOR x x)...
2025-05-16T16:14:31
mrdoob/three.js
c1655d49d40504c0225633a76096c1a1fa3e0c29
dcf73522cfe9a44dfeeddb15906d4a33d18dea1a
CopyShader: Assume render targets have premultiplied alpha. (#26179) * CopyShader: Assume render targets have have premultiplied alpha. * TAARenderPass: Fix accumulation issues. * Use NoBlending in EffectComposer and SavePass.
[ { "path": "examples/jsm/postprocessing/EffectComposer.js", "patch": "@@ -1,6 +1,7 @@\n import {\n \tClock,\n \tHalfFloatType,\n+\tNoBlending,\n \tVector2,\n \tWebGLRenderTarget\n } from 'three';\n@@ -45,6 +46,7 @@ class EffectComposer {\n \t\tthis.passes = [];\n \n \t\tthis.copyPass = new ShaderPass( CopySh...
2023-06-02T22:18:25
denoland/deno
becf24c8c23f1fd6e7f95f6853118addaa9d31cd
dca9f7c0c3bd4255a5d2dbc066945ba5faed9502
fix(compile): ensure atime/birthtime/mtime/ctime is set in vfs (#28731) Co-authored-by: XYCode <xycode-xyc@outlook.com>
[ { "path": "cli/lib/standalone/virtual_fs.rs", "patch": "@@ -5,8 +5,10 @@ use std::collections::hash_map::Entry;\n use std::collections::HashMap;\n use std::collections::VecDeque;\n use std::fmt;\n+use std::io::Read;\n use std::path::Path;\n use std::path::PathBuf;\n+use std::time::SystemTime;\n \n use deno_...
2025-04-04T13:50:44
golang/go
07a279794dff7ef3371710f1de4b3f9fc4ef4987
e6cd9c083ec1a2d989608fd6b4d4809b8b08d0fe
cmd/go/internal/modget: check in workspace mode if go.work present The purpose of this change is to enable go get to be used when working on a module that is usually built from a workspace and has unreleased dependencies in that workspacae that have no requirements satisfying them. These modules can't build in single ...
[ { "path": "src/cmd/go/internal/modfetch/fetch.go", "patch": "@@ -35,7 +35,12 @@ import (\n \tmodzip \"golang.org/x/mod/zip\"\n )\n \n-var downloadCache par.ErrCache[module.Version, string] // version → directory\n+// The downloadCache is used to cache the operation of downloading a module to disk\n+// (if i...
2025-05-01T02:17:21
mrdoob/three.js
7cba91cee7ff1b36250c1535f717255555b6874b
560c5fcba722d9b37884a6925895d64195cd675e
Docs: style numbers (en). (#26147) * fix style of code numbers * update MeshMatcapMaterial and MeshNormalMaterial
[ { "path": "docs/api/en/animation/AnimationAction.html", "patch": "@@ -59,7 +59,7 @@ <h3>[property:Boolean clampWhenFinished]</h3>\n \t\t\tautomatically be switched to false when the last loop of the action has\n \t\t\tfinished, so that this action has no further impact.<br /><br />\n \n-\t\t\tDefault is fal...
2023-06-01T08:18:06
denoland/deno
dca9f7c0c3bd4255a5d2dbc066945ba5faed9502
88b1f4a29a075ccb0993e15db66e82dfea5d35e1
fix(fmt): use non-zero exit code when formatting fails (#28523)
[ { "path": "cli/tools/fmt.rs", "patch": "@@ -144,8 +144,13 @@ pub async fn format(\n let caches = factory.caches()?;\n let paths_with_options_batches =\n resolve_paths_with_options_batches(cli_options, &fmt_flags)?;\n- format_files(caches, cli_options, &fmt_flags, paths_with_options_batches)...
2025-04-04T13:48:47
golang/go
e6cd9c083ec1a2d989608fd6b4d4809b8b08d0fe
2b3794e3e8a0ecf9d0ff7d8689ca9cdaea974e08
sync: set GOMAXPROCS to 1 in TestPoolGC This test expects to be able to drain a Pool using only Get. This isn't actually possible in the general case, since a pooled value could get stuck in some P's private slot. However, if GOMAXPROCS=1, there's only 1 P we could be running on, so getting stuck becomes impossible. ...
[ { "path": "src/sync/pool_test.go", "patch": "@@ -102,6 +102,18 @@ func TestPoolRelease(t *testing.T) {\n }\n \n func testPool(t *testing.T, drain bool) {\n+\tif drain {\n+\t\t// Run with GOMAXPROCS=1 if drain is set. The code below implicitly\n+\t\t// assumes it can remove all the pool-cached values with cl...
2025-05-16T04:42:38
mrdoob/three.js
517ce63ecc63e675643af6f7c16e4c94092b3e7f
78e97a9ea38734216ed0437a700eb8c20999e698
WebGPURenderer: CubeRenderTarget and CubeCamera (#26152) * Core: Introduce Coordinate System. * WebGPURenderer: Move hack to .coordinateSystem * cleanup * ToneMappingNode: Fix caching * Renderer Nodes: cleanup * CubeCamera: Introduce Coordinate System * NodeMaterial: Fixing currently colorSpace and e...
[ { "path": "examples/files.json", "patch": "@@ -309,6 +309,7 @@\n \t\t\"webgpu_backdrop\",\n \t\t\"webgpu_compute\",\n \t\t\"webgpu_cubemap_adjustments\",\n+\t\t\"webgpu_cubemap_dynamic\",\n \t\t\"webgpu_cubemap_mix\",\n \t\t\"webgpu_depth_texture\",\n \t\t\"webgpu_equirectangular\",", "additions": 1, ...
2023-05-30T12:09:05
denoland/deno
5a0693c4dbcd150608542a5b5db48e814ae4601a
8beb90cd65e2bf547f781d88ce4644d34243c7fe
test(ext/http): reduce flakiness of serve_test (#28739) This PR reduces the flakiness of the case `req.body.getReader().read() throws the error with reasonable error message`. The case tries to cause BadResource error by premature disconnection from the client, but it sometimes completes the request when the reading ...
[ { "path": "tests/unit/serve_test.ts", "patch": "@@ -4,6 +4,7 @@\n \n import { assertIsError, assertMatch, assertRejects } from \"@std/assert\";\n import { Buffer, type Reader } from \"@std/io\";\n+import { delay } from \"@std/async/delay\";\n import { TextProtoReader } from \"../testdata/run/textproto.ts\";...
2025-04-04T05:43:58
mrdoob/three.js
129635bdb5cbfa11f1b31522889846e862da43d0
51611feae56d494db5e80da5d888bd955cfa8025
Nodes: Fix circular dependency (#26163)
[ { "path": "examples/jsm/nodes/core/NodeBuilder.js", "patch": "@@ -5,6 +5,7 @@ import NodeVar from './NodeVar.js';\n import NodeCode from './NodeCode.js';\n import NodeKeywords from './NodeKeywords.js';\n import NodeCache from './NodeCache.js';\n+import { createNodeMaterialFromType } from '../materials/NodeM...
2023-05-29T11:10:48
golang/go
f529d56508b4bbb1e3707917404be57e9b815ccd
b450b5409dbdec1810873413b1213fc543f43a39
cmd/go: add global ignore mechanism This CL adds the ignore directive which enables users to tell the Go Command to skip traversing into a given directory. This behaves similar to how '_' or 'testdata' are currently treated. This mainly has benefits for go list and go mod tidy. This does not affect what is packed int...
[ { "path": "src/cmd/go/alldocs.go", "patch": "@@ -1259,9 +1259,13 @@\n // The -tool=path and -droptool=path flags add and drop a tool declaration\n // for the given path.\n //\n+// The -ignore=path and -dropignore=path flags add and drop a ignore declaration\n+// for the given path.\n+//\n // The -godebug, -...
2025-01-08T18:30:50
denoland/deno
8beb90cd65e2bf547f781d88ce4644d34243c7fe
67a1029b3bca8a41f5c800d3b88054d131ca3904
fix(runtime): fix duplicate unstable ids for no-legacy-abort (#28740)
[ { "path": "runtime/js/90_deno_ns.js", "patch": "@@ -158,13 +158,14 @@ const unstableIds = {\n http: 5,\n kv: 6,\n net: 7,\n- nodeGlobals: 8,\n- otel: 9,\n- process: 10,\n- temporal: 11,\n- unsafeProto: 12,\n- webgpu: 13,\n- workerOptions: 14,\n+ noLegacyAbort: 8,\n+ nodeGlobals: 9,\n+ otel: ...
2025-04-04T05:40:51
mrdoob/three.js
6bc217c259de8d9e36ac2651db40173bb0c8294b
f90a3aee3ca4f182e9df6a530e8c8f7576f851c3
fix indentation of code snippet on BoxGeometry page (#26156)
[ { "path": "docs/api/en/geometries/BoxGeometry.html", "patch": "@@ -43,10 +43,10 @@ <h1>[name]</h1>\n <h2>Code Example</h2>\n \n <code>\n- const geometry = new THREE.BoxGeometry( 1, 1, 1 ); \n- const material = new THREE.MeshBasicMaterial( {color: 0x00ff00} ); \n- const cube = new THREE.Mesh...
2023-05-28T08:09:59
golang/go
b450b5409dbdec1810873413b1213fc543f43a39
045b5c1bfb4535dc8149d93efec1f6412f5ccdae
runtime: prevent cleanup goroutines from missing work Currently, there's a window of time where each cleanup goroutine has committed to going to sleep (immediately after full.pop() == nil) but hasn't yet marked itself as asleep (state.sleep()). If new work arrives in this window, it might get missed. This is what we s...
[ { "path": "src/internal/runtime/math/math.go", "patch": "@@ -6,7 +6,10 @@ package math\n \n import \"internal/goarch\"\n \n-const MaxUintptr = ^uintptr(0)\n+const (\n+\tMaxUint32 = ^uint32(0)\n+\tMaxUintptr = ^uintptr(0)\n+)\n \n // MulUintptr returns a * b and whether the multiplication overflowed.\n // O...
2025-05-10T18:53:14
mrdoob/three.js
d117331b6d27810370576b990166d5c111b4f84a
ddc59fcf1176854f5253108e8940d383661d5625
Docs: fix missing value. (#26151) * fix missing value that the parameter index may take * fix in (it) language
[ { "path": "docs/api/en/math/Vector4.html", "patch": "@@ -325,7 +325,7 @@ <h3>\n \t\t\t[method:this setComponent]( [param:Integer index], [param:Float value] )\n \t\t</h3>\n \t\t<p>\n-\t\t\t[page:Integer index] - 0, 1 or 2.<br />\n+\t\t\t[page:Integer index] - 0, 1, 2 or 3.<br />\n \t\t\t[page:Float value] -...
2023-05-27T10:52:54
denoland/deno
67a1029b3bca8a41f5c800d3b88054d131ca3904
52e243bd9a5a3d0514ff095edd5379a9b10d2081
fix(lsp): url_to_uri() encoding on windows (#28737)
[ { "path": "cli/lsp/diagnostics.rs", "patch": "@@ -1042,16 +1042,18 @@ async fn generate_ts_diagnostics(\n let mut enabled_modules_by_scope = BTreeMap::<_, Vec<_>>::new();\n let mut disabled_documents = Vec::new();\n for document in snapshot.document_modules.documents.open_docs() {\n- if let Some(mo...
2025-04-04T05:24:53
golang/go
7b4a3d93d7783e2c4593e604bedc6ffda64f2225
d681270714bc91b28a2cd97c3eae138b3112ff1d
crypto/tls: fix bogo IgnoreClientVersionOrder skip reason The BoGo IgnoreClientVersionOrder test checks that a client that sends a supported_versions extension with the list [TLS 1.2, TLS 1.3] ends up negotiating TLS 1.3. However, the crypto/tls module treats this list as being in client preference order, and so nego...
[ { "path": "src/crypto/tls/bogo_config.json", "patch": "@@ -66,7 +66,7 @@\n \"SupportTicketsWithSessionID\": \"TODO: first pass, this should be fixed\",\n \"NoNullCompression-TLS12\": \"TODO: first pass, this should be fixed\",\n \"KeyUpdate-RequestACK\": \"TODO: first pass, this shou...
2025-05-09T14:29:47
mrdoob/three.js
ddc59fcf1176854f5253108e8940d383661d5625
412e471b97c900d162df3e742a1b85908999dc5d
Update VRMLLoader.js Fix referene error.
[ { "path": "examples/jsm/loaders/VRMLLoader.js", "patch": "@@ -919,7 +919,7 @@ class VRMLLoader extends Loader {\n \t\t\t\t} else {\n \n \t\t\t\t\tskyMaterial.color.setRGB( skyColor[ 0 ], skyColor[ 1 ], skyColor[ 2 ] );\n-\t\t\t\t\tskyMaterial.convertSRGBToLinear();\n+\t\t\t\t\tskyMaterial.color.convertSRGBT...
2023-05-26T20:06:59
denoland/deno
52e243bd9a5a3d0514ff095edd5379a9b10d2081
7509fc26dde996f62829d2fffc62f07cde00788f
fix(install): remove duplicate deprecated messages (#28738) We were keying on package id instead of nv.
[ { "path": "cli/npm/installer/local.rs", "patch": "@@ -355,7 +355,7 @@ async fn sync_resolution_with_fs(\n if let Some(deprecated) = &package.deprecated {\n packages_with_deprecation_warnings\n .lock()\n- .push((package.id.clone(), deprecated.clone()))...
2025-04-04T01:53:54
golang/go
11fa0de475f9446870bc086bfb42cb67bac40634
fc641e7fae1b09e25402bc73660d2deea51c2ad6
cmd/compile: use OpMove instead of memmove more on arm64 OpMove is faster for small moves of fixed size. For safety, we have to rewrite the Move rewrite rules a bit so that all the loads are done before any stores happen. Also use an 8-byte move instead of a 16-byte move if the tail is at most 8 bytes. Change-Id: I...
[ { "path": "src/cmd/compile/internal/ssa/_gen/ARM64.rules", "patch": "@@ -472,26 +472,39 @@\n \t\t(MOVDstore dst (MOVDload src mem) mem))\n (Move [16] dst src mem) =>\n \t(STP dst (Select0 <typ.UInt64> (LDP src mem)) (Select1 <typ.UInt64> (LDP src mem)) mem)\n-(Move [32] dst src mem) =>\n-\t(STP [16] dst (Se...
2025-04-24T21:34:10
mrdoob/three.js
412e471b97c900d162df3e742a1b85908999dc5d
cb9d1822d555454703b53cc80e4d79d13b754ba0
GLTFExporter: export from compressed texture data (#23321) * allow exporting compressed meshes and textures (e.g. draco + ktx2) added coffemat.etc1s.glb and etc1s+draco, etc1s+meshopt to test compressed formats only use one temp render context, clean up renderer after writing file, make metalnessMap and roughnes...
[ { "path": "examples/jsm/exporters/GLTFExporter.js", "patch": "@@ -21,8 +21,10 @@ import {\n \tScene,\n \tSource,\n \tSRGBColorSpace,\n+\tCompressedTexture,\n \tVector3\n } from 'three';\n+import { decompress } from './../utils/TextureUtils.js';\n \n \n /**\n@@ -827,6 +829,18 @@ class GLTFWriter {\n \n \t\tc...
2023-05-26T15:59:24
denoland/deno
7509fc26dde996f62829d2fffc62f07cde00788f
ec052823466251682430d8efa96ec42a88d71e6a
fix(lsp): preserve notification order after init flag is raised (#28733)
[ { "path": "cli/util/sync/async_flag.rs", "patch": "@@ -1,20 +1,28 @@\n // Copyright 2018-2025 the Deno authors. MIT license.\n \n-use tokio_util::sync::CancellationToken;\n+use std::sync::Arc;\n \n-#[derive(Debug, Default, Clone)]\n-pub struct AsyncFlag(CancellationToken);\n+use tokio::sync::Semaphore;\n+\n...
2025-04-03T22:54:09
golang/go
fc641e7fae1b09e25402bc73660d2deea51c2ad6
6df855ebac86499402cfd31d92256592c3b2a233
cmd/compile: create LSym for closures with type conversion Follow-up to #54959 with another failing case. The linker needs FuncInfo metadata for all inlined functions. CL 436240 explicitly creates LSym for direct closure calls to ensure we keep the FuncInfo metadata. However, CL 436240 won't work if the direct closu...
[ { "path": "src/cmd/compile/internal/inline/inl.go", "patch": "@@ -1117,12 +1117,18 @@ func mkinlcall(callerfn *ir.Func, n *ir.CallExpr, fn *ir.Func, bigCaller, closur\n \t\t\t// Not a standard call.\n \t\t\treturn\n \t\t}\n-\t\tif n.Fun.Op() != ir.OCLOSURE {\n-\t\t\t// Not a direct closure call.\n+\n+\t\tva...
2025-05-15T13:53:23
mrdoob/three.js
cb9d1822d555454703b53cc80e4d79d13b754ba0
cf01605e16d4a70df58126a3cd033b3ca8da151c
PositionalAudio: Implement missing `connect()` method. (#26145) * Fix PositionalAudio mistake * fix linter * Update PositionalAudio.js
[ { "path": "src/audio/PositionalAudio.js", "patch": "@@ -19,6 +19,14 @@ class PositionalAudio extends Audio {\n \n \t}\n \n+\tconnect() {\n+\n+\t\tsuper.connect();\n+\n+\t\tthis.panner.connect( this.gain );\n+\n+\t}\n+\n \tdisconnect() {\n \n \t\tsuper.disconnect();", "additions": 8, "deletions": 0, ...
2023-05-26T15:43:52
denoland/deno
ec052823466251682430d8efa96ec42a88d71e6a
ebc4f82ecab8458eaf529b2317df19c3f3a17d6c
fix(test): ignore write errors in reporter (#28722)
[ { "path": "cli/tools/test/mod.rs", "patch": "@@ -347,28 +347,28 @@ impl TestFailure {\n }\n TestFailure::Leaked(details, trailer_notes) => {\n let mut f = String::new();\n- write!(f, \"Leaks detected:\").unwrap();\n+ write!(f, \"Leaks detected:\").ok();\n for detail...
2025-04-03T16:48:55
golang/go
6df855ebac86499402cfd31d92256592c3b2a233
fac2ccbed320ef9fdca251d63b759b61bbc21f2a
testing: fix panic in t.Log If a testing.TB is no longer on the stack, t.Log would panic because its outputWriter is nil. Check for nil and drop the write, which is the previous behavior. Change-Id: Ifde97997a3aa26ae604ac9c218588c1980110cbf Reviewed-on: https://go-review.googlesource.com/c/go/+/673215 LUCI-TryBot-Res...
[ { "path": "src/testing/sub_test.go", "patch": "@@ -280,7 +280,6 @@ func TestTRun(t *T) {\n \t\t\t\t\tt.Run(\"c\", func(t *T) {\n \t\t\t\t\t\tt.Parallel()\n \t\t\t\t\t})\n-\n \t\t\t\t})\n \t\t\t})\n \t\t},\n@@ -305,7 +304,6 @@ func TestTRun(t *T) {\n \t\t\t\t\t\t\t\t\ttime.Sleep(time.Nanosecond)\n \t\t\t\t\t...
2025-05-15T15:16:34
mrdoob/three.js
ec549b1a3712898b2fe27e62e9bd70df808bdd06
cfc782958f39f096489ca12ce77aa4bea48b34a1
WebGLRenderer: Revert to drawingbuffer sized transmissionRenderTarget (#26138) * Revert "WebGLRenderer: Add pixelRatio to transmissionRenderTarget. (#26131)" This reverts commit d283449222f07bc7d122d2e94d0364f1c8ac84c1. * Revert "WebGLRenderer: Restore POT for transmission render target. (#25494)" * WebGLRend...
[ { "path": "src/renderers/WebGLRenderer.js", "patch": "@@ -25,8 +25,10 @@ import {\n import { Color } from '../math/Color.js';\n import { Frustum } from '../math/Frustum.js';\n import { Matrix4 } from '../math/Matrix4.js';\n+import { Vector2 } from '../math/Vector2.js';\n import { Vector3 } from '../math/Vec...
2023-05-26T02:51:11
denoland/deno
3b52f1afd8dfeb0d79c27d60c63ad3f5ff7093f6
8dd7c3dfb613d530e9294011b0d4ac7dac895997
chore: fix flaky tests checking for ms (#28718)
[ { "path": "tests/specs/test/doc_duplicate_identifier/main.out", "patch": "@@ -3,9 +3,9 @@ Check [WILDCARD]/main.ts$11-19.ts\n Check [WILDCARD]/main.ts$25-30.ts\n running 0 tests from ./main.ts\n running 1 test from ./main.ts$11-19.ts\n-[WILDCARD]/main.ts$11-19.ts ... ok ([WILDCARD]ms)\n+[WILDCARD]/main.ts$1...
2025-04-03T04:19:05
mrdoob/three.js
7dd56153b51c7477a7166bbd28538167a8265980
673eca6de685e3ea398d3a76aaad4b90491f5f4c
Examples: Clean up. (#26135) * Examples: Clean up. * Examples: Update screenshots. * Examples: Clean up. * VRMLLoader: Fix typo. * Examples: Remove useless check. * VRMLLoader: Fix colors one more time. * Examples: Update screenshots.
[ { "path": "examples/jsm/loaders/MMDLoader.js", "patch": "@@ -4,7 +4,6 @@ import {\n \tBone,\n \tBufferGeometry,\n \tColor,\n-\tColorManagement,\n \tCustomBlending,\n \tTangentSpaceNormalMap,\n \tDoubleSide,\n@@ -1141,13 +1140,9 @@ class MaterialBuilder {\n \t\t\tparams.emissive = new Color().fromArray( mate...
2023-05-25T15:09:21
golang/go
01e0e8b6b397f2e775d9ccbfcde104d025464382
b338f6bfa68da6fc8dfb7a38a975337e659424dc
runtime/pprof: include PCs for deduplication in TestMutexBlockFullAggregation TestMutexBlockFullAggregation aggregates stacks by function, file, and line number. But there can be multiple function calls on the same line, giving us different sequences of PCs. This causes the test to spuriously fail in some cases. Inclu...
[ { "path": "src/runtime/pprof/pprof_test.go", "patch": "@@ -2632,7 +2632,7 @@ func produceProfileEvents(t *testing.T, depth int) {\n \tgoroutineDeep(t, depth-4) // -4 for produceProfileEvents, **, chanrecv1, chanrev, gopark\n }\n \n-func getProfileStacks(collect func([]runtime.BlockProfileRecord) (int, bool)...
2025-05-15T11:01:14
mrdoob/three.js
1a86507105e81e023b13f14a999f8d3bc749664b
a86fa2cf8b3a3fb5065b18079e3d83c19ed2c8b2
Docs: Translating Core section into Arabic (ar). (#26123) * fix typo * add arabic translation for BufferAttributeTypes page * add arabic translation for BufferAttribute page * add arabic translation for BufferGeometry page * add arabic translation for Clock page * add arabic translation for EventDispatc...
[ { "path": "docs/api/ar/animation/AnimationAction.html", "patch": "@@ -50,7 +50,7 @@ <h3>[property:Boolean enabled]</h3>\n \t\t<p>\n \t\t\tيؤدي تعيين *enabled* إلى *false* إلى تعطيل هذا الإجراء ، بحيث لا يكون له أي تأثير. الافتراضي هو *true*.<br /><br />\n \n-\t\t\tعند إعادة تمكين الإجراء ، يستمر الرسم المتح...
2023-05-24T11:09:46
golang/go
b338f6bfa68da6fc8dfb7a38a975337e659424dc
8105ea53c3d17546a35709d51e6e0993b1d0c261
cmd/link: fix outdated output mmap check Outbuf.View used to perform a mmap check by default and return an error if the check failed, this behavior has been changed so that now the View never returns any error, so the usage needs to be modified accordingly. Change-Id: I76ffcda5476847f6fed59856a5a5161734f47562 GitHub-...
[ { "path": "src/cmd/link/internal/ld/asmb.go", "patch": "@@ -195,10 +195,7 @@ func relocSectFn(ctxt *Link, relocSect func(*Link, *OutBuf, *sym.Section, []load\n \t\tfn = func(ctxt *Link, sect *sym.Section, syms []loader.Sym) {\n \t\t\twg.Add(1)\n \t\t\tsem <- 1\n-\t\t\tout, err := ctxt.Out.View(sect.Reloff)\...
2025-05-15T10:50:40
denoland/deno
8dd7c3dfb613d530e9294011b0d4ac7dac895997
800a687951076702a1da03e65804eef5249c09ce
fix(npm): use Deno instead of Node in more cases for lifecycle scripts (#28715)
[ { "path": "cli/task_runner.rs", "patch": "@@ -276,8 +276,8 @@ impl ShellCommand for NodeCommand {\n // run with deno if it's a simple invocation, fall back to node\n // if there are extra flags\n let mut args: Vec<OsString> = Vec::with_capacity(context.args.len());\n- if context.args.len() > ...
2025-04-03T02:45:58
mrdoob/three.js
a86fa2cf8b3a3fb5065b18079e3d83c19ed2c8b2
f9efcb74edb459b1c79f6a852b2668cb1fe0e9eb
WebGLRenderer: Fix alpha map rendering for points and sprites. (#26128)
[ { "path": "src/renderers/shaders/UniformsLib.js", "patch": "@@ -205,6 +205,7 @@ const UniformsLib = {\n \t\tscale: { value: 1.0 },\n \t\tmap: { value: null },\n \t\talphaMap: { value: null },\n+\t\talphaMapTransform: { value: /*@__PURE__*/ new Matrix3() },\n \t\talphaTest: { value: 0 },\n \t\tuvTransform: {...
2023-05-24T09:35:27
golang/go
8105ea53c3d17546a35709d51e6e0993b1d0c261
bb0c14b895d90bb5941e0463ba6c3564fc504e4f
net: avoid windows hang in TestCloseWrite On Windows, reading from a socket at the same time as the other end is closing it will occasionally hang. This is a Windows issue, not a Go issue, similar to what happens in macOS (see #49352). Work around this condition by adding a brief sleep before the read. Fixes #73140....
[ { "path": "src/net/net_test.go", "patch": "@@ -98,12 +98,12 @@ func TestCloseWrite(t *testing.T) {\n \t\t\t\t}\n \n \t\t\t\t// Workaround for https://go.dev/issue/49352.\n-\t\t\t\t// On arm64 macOS (current as of macOS 12.4),\n+\t\t\t\t// On Windows and arm64 macOS (current as of macOS 12.4),\n \t\t\t\t// r...
2025-05-13T12:28:01
denoland/deno
800a687951076702a1da03e65804eef5249c09ce
4deeb2acf686baa6d87fe168d672a2648db693b7
fix(task): filter empty elements in `xargs` (#28714)
[ { "path": "Cargo.lock", "patch": "@@ -939,7 +939,7 @@ dependencies = [\n \"http-body-util\",\n \"hyper 1.6.0\",\n \"hyper-util\",\n- \"nix\",\n+ \"nix 0.27.1\",\n \"ntest_timeout\",\n \"once_cell\",\n \"os_pipe\",\n@@ -1544,7 +1544,7 @@ dependencies = [\n \"malva\",\n \"markup_fmt\",\n \"memchr\",\...
2025-04-02T20:38:59
mrdoob/three.js
60f307f6030c6de3cba3ca6978e2f0974f0359f8
7d32e6a1199cea47e9fbce1cc388389e11fadd94
Universal Renderer and WebGPUBackend (#26079) * Universal Renderer and WebGPUBackend ( WIP ) * cleanup * Rename constants.js to Constants.js * revisions * cleanup * cleanup * Rename /universal to /common * Update examples/jsm/renderers/common/Renderer.js Co-authored-by: Levi Pesin <35454228+Lev...
[ { "path": "examples/jsm/nodes/Nodes.js", "patch": "@@ -141,8 +141,7 @@ export { default as NodeObjectLoader } from './loaders/NodeObjectLoader.js';\n export { default as NodeMaterialLoader } from './loaders/NodeMaterialLoader.js';\n \n // parsers\n-export { default as WGSLNodeParser } from './parsers/WGSLNo...
2023-05-23T17:19:26
golang/go
bb0c14b895d90bb5941e0463ba6c3564fc504e4f
3be537e663c39ead4c82ca4047d248ff66e132c3
os: don't fallback to the Stat slow path if file doesn't exist on Windows os.Stat and os.Lstat first try stating the file without opening it. If that fails, then they open the file and try again, operations that tends to be slow. There is no point in trying the slow path if the file doesn't exist, we should just retur...
[ { "path": "src/os/stat_test.go", "patch": "@@ -361,3 +361,18 @@ func TestClosedStat(t *testing.T) {\n \t\tt.Errorf(\"error from Stat on closed file did not match ErrClosed: %q, type %T\", err, err)\n \t}\n }\n+\n+func TestStatNotExist(t *testing.T) {\n+\tt.Parallel()\n+\tname := filepath.Join(t.TempDir(), \...
2025-05-13T15:26:06
denoland/deno
a0d64110881e03410069f2dc522ec3e1b56f143d
73798b13bbc45acc9896244f034d2427f2b55c55
fix(lsp): format vscode-userdata schemed documents (#28706)
[ { "path": "cli/lsp/language_server.rs", "patch": "@@ -1549,20 +1549,9 @@ impl Inner {\n _token: &CancellationToken,\n ) -> LspResult<Option<Vec<TextEdit>>> {\n let mark = self.performance.mark_with_args(\"lsp.formatting\", &params);\n- // Untitled files are exempt from enabled-checks because th...
2025-04-02T10:55:08
golang/go
3be537e663c39ead4c82ca4047d248ff66e132c3
a197a471b9c67af4881e0d9c48e4bd3cff4992c2
net: use closesocket when closing socket os.File's on Windows The WSASocket documentation states that the returned socket must be closed by calling closesocket instead of CloseHandle. The different File methods on the net package return an os.File that is not aware that it should use closesocket. Ideally, os.NewFile s...
[ { "path": "src/internal/poll/fd_windows.go", "patch": "@@ -318,7 +318,7 @@ type FD struct {\n \t// message based socket connection.\n \tZeroReadIsEOF bool\n \n-\t// Whether this is a file rather than a network socket.\n+\t// Whether the handle is owned by os.File.\n \tisFile bool\n \n \t// The kind of this ...
2025-05-13T11:31:22
denoland/deno
73798b13bbc45acc9896244f034d2427f2b55c55
e10101347c15b5d3064adf3507fef3bdd6894427
chore: fix pre-release CI for macOS and Windows (#28707) - Fix `strip` after `codesign` on macOS pre-release step. - Fix cwd assumption in windows pre-release step.
[ { "path": ".github/workflows/ci.generate.ts", "patch": "@@ -817,15 +817,15 @@ const ci = {\n \"APPLE_CODESIGN_PASSWORD\": \"${{ secrets.APPLE_CODESIGN_PASSWORD }}\",\n },\n run: [\n+ \"target/release/deno -A tools/release/create_symcache.ts target/release/deno-${{ ...
2025-04-02T06:11:16
golang/go
c31a5c571f32f350a0a1b30f2b0e85576096e14c
de86d02c32f6690391ed79b99d0f763bb06606d5
cmd/compile: fold negation into addition/subtraction on loong64 This change also avoid double negation, and add loong64 codegen for arithmetic tests. Reduce the number of go toolchain instructions on loong64 as follows. file before after Δ % addr2line 279972 279896 -76 -0.0271% as...
[ { "path": "src/cmd/compile/internal/ssa/_gen/LOONG64.rules", "patch": "@@ -776,12 +776,22 @@\n \n // generic simplifications\n (ADDV x (NEGV y)) => (SUBV x y)\n+(SUBV x (NEGV y)) => (ADDV x y)\n (SUBV x x) => (MOVVconst [0])\n (SUBV (MOVVconst [0]) x) => (NEGV x)\n (AND x x) => x\n (OR x x) => x\n (XOR x x...
2025-05-14T06:35:41
denoland/deno
e10101347c15b5d3064adf3507fef3bdd6894427
f2d73abdd7b6863072b9c88c2c338bac87668a01
perf: remote symbolicate stack traces (#28470) Fixes #28136 Closes #28415 Publish symcache to GCS and generate trace URL during panic. ``` ============================================================ Deno has panicked. This is a bug in Deno. Please report this at https://github.com/denoland/deno/issues/new. If you ...
[ { "path": ".github/workflows/ci.generate.ts", "patch": "@@ -752,6 +752,22 @@ const ci = {\n run:\n 'sudo chroot /sysroot \"$(pwd)/target/${{ matrix.profile }}/deno\" --version',\n },\n+ {\n+ name: \"Generate symcache\",\n+ if: [\n+ \"(matrix....
2025-04-02T03:12:28
mrdoob/three.js
1739815e9380b992e533dc5f90f427f35f9720fd
925d679a833cc8fea310817be98c3f34f08eafd2
fixed .clone sig (#26116)
[ { "path": "docs/api/en/materials/ShaderMaterial.html", "patch": "@@ -462,7 +462,7 @@ <h3>[property:Float wireframeLinewidth]</h3>\n \t\t<h2>Methods</h2>\n \t\t<p>See the base [page:Material] class for common methods.</p>\n \n-\t\t<h3>[method:ShaderMaterial clone]() [param:ShaderMaterial this]</h3>\n+\t\t<h3...
2023-05-22T21:44:12
golang/go
ac341b8e6bc1eb99ddd62c3dea293e41bc582c10
12e11e75235a7df2f118becac997a0aca3bb73b0
cmd/go/internal/pkg: fail on bad filenames Unhidden filenames with forbidden characters in subdirectories now correctly fail the build instead of silently being skipped. Previously this behavior would only trigger on files in the root of the embedded directory. Fixes #54003 Change-Id: I52967d90d6b7929e4ae474b78d3f887...
[ { "path": "src/cmd/go/internal/load/pkg.go", "patch": "@@ -2227,12 +2227,20 @@ func resolveEmbed(pkgdir string, patterns []string) (files []string, pmap map[st\n \t\t\t\t\trel := filepath.ToSlash(str.TrimFilePathPrefix(path, pkgdir))\n \t\t\t\t\tname := d.Name()\n \t\t\t\t\tif path != file && (isBadEmbedNam...
2025-05-06T19:16:03
denoland/deno
f2d73abdd7b6863072b9c88c2c338bac87668a01
4131f38e90cfd4548db578a2c303647be9abaed7
fix(ext/node): better dns.lookup compatibility (#27936)
[ { "path": "Cargo.lock", "patch": "@@ -2356,6 +2356,7 @@ dependencies = [\n \"thiserror 2.0.12\",\n \"tokio\",\n \"tokio-eld\",\n+ \"tower-service\",\n \"url\",\n \"webpki-root-certs\",\n \"winapi\",", "additions": 1, "deletions": 0, "language": "Unknown" }, { "path": "ext/net/lib.r...
2025-04-02T02:38:07
mrdoob/three.js
925d679a833cc8fea310817be98c3f34f08eafd2
b9803755133ca5841bd896f9fbf3d5e845856d79
Update ViewHelper.js (#26067) * Update ViewHelper.js I tried to embed the editor's ViewHelper and the mouse events did not translate properly. Instead of using a complex code to calc the mouse.x and mouse.y, i did use event.offsetX and event.offsetY This solved my problem and fixed any embedding issues. * Up...
[ { "path": "examples/jsm/helpers/ViewHelper.js", "patch": "@@ -167,7 +167,7 @@ class ViewHelper extends Object3D {\n \t\t\tconst rect = domElement.getBoundingClientRect();\n \t\t\tconst offsetX = rect.left + ( domElement.offsetWidth - dim );\n \t\t\tconst offsetY = rect.top + ( domElement.offsetHeight - dim ...
2023-05-22T11:03:49
golang/go
12e11e75235a7df2f118becac997a0aca3bb73b0
a24f4db2a2bd3e897d466a11d269ac7e618a6f8a
cmd/go: fix not print GCCGO when it's not the default Fixes #69994 Change-Id: I2a23e5998b7421fd5ae0fdb68303d3244361b341 Reviewed-on: https://go-review.googlesource.com/c/go/+/671635 Reviewed-by: Michael Matloob <matloob@golang.org> Reviewed-by: Michael Matloob <matloob@google.com> Reviewed-by: Sean Liao <sean@liao.de...
[ { "path": "src/cmd/go/internal/envcmd/env.go", "patch": "@@ -142,7 +142,7 @@ func MkEnv() []cfg.EnvVar {\n \tif work.GccgoBin != \"\" {\n \t\tenv = append(env, cfg.EnvVar{Name: \"GCCGO\", Value: work.GccgoBin, Changed: true})\n \t} else {\n-\t\tenv = append(env, cfg.EnvVar{Name: \"GCCGO\", Value: work.Gccgo...
2025-05-10T17:09:16
mrdoob/three.js
b166cc252f693682b03c942b2c0358b92fd20267
6c7ff7addf2bc021b9509daffddb88e39517f785
fix style of 0 in PerspectiveCamera page (#26105)
[ { "path": "docs/api/ar/cameras/PerspectiveCamera.html", "patch": "@@ -97,7 +97,7 @@ <h3>[property:Float near]</h3>\n \t\t<p>\n \t\t\tسطح الهرم الأمامي لسطح الرؤية (frustum) للكاميرا. \n \t\t\tالعدد الافتراضي هو `0.1`.<br /><br />\n-\t\t\tالنطاق الصحيح هو أكبر من 0 وأقل من القيمة الحالية لسطح الهرم الخلفي [p...
2023-05-21T21:00:14
denoland/deno
4131f38e90cfd4548db578a2c303647be9abaed7
5e20982a30db81e67786b30b4b7d10a20f557646
fix(npm): further reduce duplicates with optional peers (#28705) * https://github.com/denoland/deno_npm/pull/93 Closes https://github.com/denoland/deno/issues/28023#issuecomment-2769944224
[ { "path": "Cargo.lock", "patch": "@@ -1502,7 +1502,7 @@ dependencies = [\n \"deno_lint\",\n \"deno_lockfile 0.25.0\",\n \"deno_media_type\",\n- \"deno_npm 0.30.2\",\n+ \"deno_npm 0.30.3\",\n \"deno_npm_cache\",\n \"deno_package_json\",\n \"deno_path_util\",\n@@ -2152,7 +2152,7 @@ dependencies = [\n \...
2025-04-02T00:00:04
golang/go
adcad7bea9f6933a219c7b05d8173cf8a4586092
14fc54fc5735163abf7694b4efa2b7998c6696e2
os: don't follow symlinks on Windows when O_CREATE|O_EXCL Match standard Unix behavior: Symlinks are not followed when O_CREATE|O_EXCL is passed to open. Thanks to Junyoung Park and Dong-uk Kim of KAIST Hacking Lab for discovering this issue. Fixes #73702 Fixes CVE-2025-0913 Change-Id: Ieb46a6780c5e9a6090b09cd34290...
[ { "path": "src/internal/syscall/windows/at_windows.go", "patch": "@@ -94,6 +94,7 @@ func Openat(dirfd syscall.Handle, name string, flag uint64, perm uint32) (_ sysc\n \tswitch {\n \tcase flag&(syscall.O_CREAT|syscall.O_EXCL) == (syscall.O_CREAT | syscall.O_EXCL):\n \t\tdisposition = FILE_CREATE\n+\t\toption...
2025-05-13T22:35:19
mrdoob/three.js
2b09a2c05e4017ac811c46bfe9b99f5ae16ed3d9
dab85a19cbed588e59ee21c77b798e88ff6be286
KTX2Loader: Fix regression in mipmap chain upload (#26095) * KTX2Loader: Fix regression in mipmap chain upload. * clarify comment
[ { "path": "examples/jsm/loaders/KTX2Loader.js", "patch": "@@ -526,8 +526,28 @@ KTX2Loader.BasisWorker = function () {\n \t\t\t\tfor ( let layer = 0; layer < layerCount; layer ++ ) {\n \n \t\t\t\t\tconst levelInfo = ktx2File.getImageLevelInfo( mip, layer, face );\n-\t\t\t\t\tmipWidth = levelInfo.origWidth < ...
2023-05-20T02:48:18
denoland/deno
5e20982a30db81e67786b30b4b7d10a20f557646
1e62ba12bb630280b808cab65679b7d9a58c7a96
feat(add/install): --npm and --jsr flags for deno add/install (#28666) Flags to set the default registry for "bare" package names (no `npm:` or `jsr:` prefix) ``` deno add --npm chalk react @types/react jsr:@std/fs deno add --jsr @std/fs @std/async @std/fmt npm:chalk ```
[ { "path": "cli/args/flags.rs", "patch": "@@ -86,10 +86,17 @@ impl FileFlags {\n }\n }\n \n+#[derive(Clone, Debug, Copy, Eq, PartialEq)]\n+pub enum DefaultRegistry {\n+ Npm,\n+ Jsr,\n+}\n+\n #[derive(Clone, Debug, Default, Eq, PartialEq)]\n pub struct AddFlags {\n pub packages: Vec<String>,\n pub dev...
2025-04-01T19:12:48
mrdoob/three.js
d5835f3b1a4d277b47e18700b2e5ab14d82d16e3
6d9dca24fe1cf5766946a972f99f1787a521b06e
Examples: More sRGB and color management fixes. (#26092) * Examples: More sRGB and color management fixes. * Examples: Update screenshots.
[ { "path": "examples/files.json", "patch": "@@ -309,7 +309,6 @@\n \t\t\"webgl_shadowmap_pcss\",\n \t\t\"webgl_shadowmap_progressive\",\n \t\t\"webgl_simple_gi\",\n-\t\t\"webgl_tiled_forward\",\n \t\t\"webgl_worker_offscreencanvas\"\n \t],\n \t\"webgl2\": [", "additions": 0, "deletions": 1, "langu...
2023-05-19T10:22:07
golang/go
9856afa77042d901288845f31c79885ba68da464
5bbac667c5c7bd1bde1750586c92f5932134c871
cmd/internal/script: fix copying directory when symlink fails The change fixes `linkOrCopy` to work on systems wihtout symlinks, when copying directories. This was originally noticed on Windows systems when the user did not have admin privs. Fixes #73692 Change-Id: I8ca66d65e99433ad38e70314abfabafd43794b79 Reviewed-...
[ { "path": "src/cmd/internal/script/scripttest/setup.go", "patch": "@@ -114,6 +114,16 @@ func linkOrCopy(t *testing.T, src, dst string) {\n \tif err == nil {\n \t\treturn\n \t}\n+\tfi, err := os.Stat(src)\n+\tif err != nil {\n+\t\tt.Fatalf(\"copying %s to %s: %v\", src, dst, err)\n+\t}\n+\tif fi.IsDir() {\n+...
2025-05-13T16:41:36
denoland/deno
1e62ba12bb630280b808cab65679b7d9a58c7a96
5bc42661018941cf48d4d3ed9672b5026c70514d
fix(ext/webgpu): release current texture of surface after present (#28691) Fixes #28207.
[ { "path": "ext/webgpu/surface.rs", "patch": "@@ -166,6 +166,9 @@ impl GPUCanvasContext {\n \n config.device.instance.surface_present(self.surface_id)?;\n \n+ // next `get_current_texture` call would get a new texture\n+ *self.texture.borrow_mut() = None;\n+\n Ok(())\n }\n }", "additions"...
2025-04-01T14:07:28
mrdoob/three.js
6d9dca24fe1cf5766946a972f99f1787a521b06e
43f2c8b10712ab3270bb3618c6bfc272ac70dcbc
1.add TGALoader documentation in Chinese (#26093) 2.modify the SVGLoader name error
[ { "path": "docs/examples/zh/loaders/TGALoader.html", "patch": "@@ -0,0 +1,103 @@\n+<!DOCTYPE html>\n+<html lang=\"zh\">\n+\t<head>\n+\t\t<meta charset=\"utf-8\" />\n+\t\t<base href=\"../../../\" />\n+\t\t<script src=\"page.js\"></script>\n+\t\t<link type=\"text/css\" rel=\"stylesheet\" href=\"page.css\" />\...
2023-05-19T10:21:15
golang/go
5bbac667c5c7bd1bde1750586c92f5932134c871
c62099cfac6b0fd46efbdab7205bb17597096472
runtime: increase freebsd/amd64 pointer size from 48 to 57 bits Because freebsd is now enabling la57 by default. Fixes #49405 Change-Id: I30f7bac8b8a9baa85e0c097e06072c19ad474e5a Reviewed-on: https://go-review.googlesource.com/c/go/+/670715 Auto-Submit: Keith Randall <khr@golang.org> Reviewed-by: Keith Randall <khr@...
[ { "path": "src/runtime/tagptr_64bit.go", "patch": "@@ -34,13 +34,16 @@ const (\n \t// We use one bit to distinguish between the two ranges.\n \taixAddrBits = 57\n \n+\t// Later versions of FreeBSD enable amd64's la57 by default.\n+\tfreebsdAmd64AddrBits = 57\n+\n \t// riscv64 SV57 mode gives 56 bits of user...
2025-05-07T21:34:30
denoland/deno
5bc42661018941cf48d4d3ed9672b5026c70514d
0f40ee7ff4880357958d73186e8b54c20ee73a8f
fix(ext/node): sqlite handle empty blob being NULL (#28674) Fixes https://github.com/denoland/deno/issues/28672
[ { "path": ".github/workflows/ci.generate.ts", "patch": "@@ -5,7 +5,7 @@ import { stringify } from \"jsr:@std/yaml@^0.221/stringify\";\n // Bump this number when you want to purge the cache.\n // Note: the tools/release/01_bump_crate_versions.ts script will update this version\n // automatically via regex, s...
2025-04-01T13:50:26
mrdoob/three.js
0d8676bc62f19b96749a2dd09eb423746c893a5b
eb4eca3723fc96ef7fc9d88db4df5ba924c6a50a
Examples: More sRGB and color management fixes. (#26090) * Examples: More sRGB and color correction fixes. * Examples: Update screenshots. * Examples: Update screenshots.
[ { "path": "examples/jsm/cameras/CinematicCamera.js", "patch": "@@ -9,8 +9,7 @@ import {\n \tWebGLRenderTarget\n } from 'three';\n \n-import { BokehShader } from '../shaders/BokehShader2.js';\n-import { BokehDepthShader } from '../shaders/BokehShader2.js';\n+import { BokehShader, BokehDepthShader } from '../...
2023-05-19T08:41:08
golang/go
9e026bf9cc1dcb6ef24d26398182a22d9d6cd2d2
c44c4de51b68a88e2b8e4a0ae102f941155522d0
testing: add Output Output is a method on T, B and F. It provides an io.Writer that writes to the same test output stream as TB.Log. The new output writer is used to refactor the implementation of Log. It maintains the formatting provided by Log while making call site information optional. Additionally, it provides bu...
[ { "path": "api/next/59928.txt", "patch": "@@ -0,0 +1,3 @@\n+pkg testing, method (*B) Output() io.Writer #59928\n+pkg testing, method (*F) Output() io.Writer #59928\n+pkg testing, method (*T) Output() io.Writer #59928", "additions": 3, "deletions": 0, "language": "Plain Text" }, { "path":...
2025-05-13T21:30:35
denoland/deno
0f40ee7ff4880357958d73186e8b54c20ee73a8f
b88008766870945d2b1fc669b19c292b0e46fc3d
fix(ext/node): support the optional `previousValue` parameter for process.cpuUsage() (#28550)
[ { "path": "ext/node/polyfills/process.ts", "patch": "@@ -4,7 +4,7 @@\n // TODO(petamoriken): enable prefer-primordials for node polyfills\n // deno-lint-ignore-file prefer-primordials\n \n-import { core, internals } from \"ext:core/mod.js\";\n+import { core, internals, primordials } from \"ext:core/mod.js\"...
2025-04-01T11:48:09
mrdoob/three.js
5a32bea4f98003b27d2b027e9ad2d6a98b169e71
908d6145a9993bb6747c38f3d720f50c131eab36
Examples: Added mediapipe face landmark detection example. (#26080) * Examples: Added mediapipe face landmark detection example. * Fixed hardcoded videomesh size.
[ { "path": "examples/files.json", "patch": "@@ -189,6 +189,7 @@\n \t\t\"webgl_morphtargets_face\",\n \t\t\"webgl_morphtargets_horse\",\n \t\t\"webgl_morphtargets_sphere\",\n+\t\t\"webgl_morphtargets_webcam\",\n \t\t\"webgl_multiple_canvases_circle\",\n \t\t\"webgl_multiple_canvases_complex\",\n \t\t\"webgl_m...
2023-05-18T09:39:34
golang/go
9bba799955e68972041c4f340ee4ea2d267e5c0e
76f63ee890170f4884f4d213e8150d39d6758ad3
crypto/x509: decouple key usage and policy validation Disabling key usage validation (by passing ExtKeyUsageAny) unintentionally disabled policy validation. This change decouples these two checks, preventing the user from unintentionally disabling policy validation. Thanks to Krzysztof Skrzętnicki (@Tener) of Telepor...
[ { "path": "src/crypto/x509/verify.go", "patch": "@@ -841,31 +841,45 @@ func (c *Certificate) Verify(opts VerifyOptions) (chains [][]*Certificate, err e\n \t\t}\n \t}\n \n-\tif len(opts.KeyUsages) == 0 {\n-\t\topts.KeyUsages = []ExtKeyUsage{ExtKeyUsageServerAuth}\n+\tchains = make([][]*Certificate, 0, len(ca...
2025-05-06T16:27:10
denoland/deno
76a18a2220501983369d9f8d53aaf156f65c9fcb
cf4afb9c9c9807bfe58fd0a99bf14b4e1c0f0bed
fix(types): add `Error.isError` type (#28679)
[ { "path": "cli/tsc/dts/lib.deno.unstable.d.ts", "patch": "@@ -6352,3 +6352,14 @@ interface DataView<TArrayBuffer extends ArrayBufferLike> {\n */\n setFloat16(byteOffset: number, value: number, littleEndian?: boolean): void;\n }\n+\n+/**\n+ * @category Platform\n+ * @experimental\n+ */\n+interface Error...
2025-03-31T21:22:31
mrdoob/three.js
cb8e47380e52bb6f87576e1c22dd8939e439280f
25578308a34f53fc71bb0433acc3cd42631f4e70
docs: translate the FramebufferTexture(zh) (#26073) * manual: fix wrong word(zh) * fix a wrong word(zh) * docs: translate the FramebufferTexture(zh) --------- Co-authored-by: 柳江南 <oncwnuA5PbQxtTysj5w_BTxJ_rRU@git.weixin.qq.com>
[ { "path": "docs/api/zh/textures/DepthTexture.html", "patch": "@@ -9,7 +9,7 @@\n \t<body>\n \t\t[page:Texture] &rarr;\n \n-\t\t<h1>深度纹理([name])</h1>\n+\t\t<h1>深度纹理([name])</h1>\n \n \t\t<p class=\"desc\">\n \t\tThis class can be used to automatically save the depth information of a rendering into a texture."...
2023-05-18T08:16:55
golang/go
4aeb9ba0deac4eced472a8fc7869a14fb9340d04
a632009c4a0b0826871baae7e7ce7804b4089d93
runtime/pprof: return errors from writing profiles Fixes #73107 Change-Id: I41f3e1bd1fdaca2f0e94151b2320bd569e258a51 Reviewed-on: https://go-review.googlesource.com/c/go/+/671576 Reviewed-by: Cherry Mui <cherryyz@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Rev...
[ { "path": "src/runtime/pprof/pprof.go", "patch": "@@ -446,8 +446,7 @@ func printCountCycleProfile(w io.Writer, countName, cycleName string, records []\n \t\tlocs = b.appendLocsForStack(locs[:0], expandedStack[:n])\n \t\tb.pbSample(values, locs, nil)\n \t}\n-\tb.build()\n-\treturn nil\n+\treturn b.build()\n ...
2025-05-11T20:55:57
mrdoob/three.js
c0d63d725a589277a7002ed5f80660e9a8d4ca9b
29e3db579f47feb464e2ece5cd24ccf8572e48fb
Fix support for texture transform for anisotropy map (#26069) This is necessary to make glTF files that use KHR_materials_anisotropy together with KHR_texture_transform work properly.
[ { "path": "src/renderers/shaders/ShaderChunk/uv_pars_vertex.glsl.js", "patch": "@@ -66,6 +66,7 @@ export default /* glsl */`\n #endif\n #ifdef USE_ANISOTROPYMAP\n \n+\tuniform mat3 anisotropyMapTransform;\n \tvarying vec2 vAnisotropyMapUv;\n \n #endif", "additions": 1, "deletions": 0, "language"...
2023-05-18T02:14:52
denoland/deno
aa1f43702dc79021fe1dfa99e44733aa345a7dce
3aaa86b5c87fa73c6b7d2be566529b145d28abfb
fix(npm): reduce duplicate peers by preferring existing nv if nv anywhere in ancestor peers (#28663) * https://github.com/denoland/deno_npm/pull/91/files Closes https://github.com/denoland/deno/issues/26145
[ { "path": "Cargo.lock", "patch": "@@ -1502,7 +1502,7 @@ dependencies = [\n \"deno_lint\",\n \"deno_lockfile 0.25.0\",\n \"deno_media_type\",\n- \"deno_npm 0.30.1\",\n+ \"deno_npm 0.30.2\",\n \"deno_npm_cache\",\n \"deno_package_json\",\n \"deno_path_util\",\n@@ -2151,7 +2151,7 @@ dependencies = [\n \...
2025-03-28T23:42:37
golang/go
a632009c4a0b0826871baae7e7ce7804b4089d93
698f86139bf72bcf7cbf08accc1c34394cb57acb
cmd/go: support -json flag in go version It supports features described in the issue: * add -json flag for 'go version -m' to print json encoding of runtime/debug.BuildSetting to standard output. * report an error when specifying -json flag without -m. * print build settings on seperated line for each binary Fixes...
[ { "path": "src/cmd/go/alldocs.go", "patch": "@@ -1967,7 +1967,7 @@\n //\n // Usage:\n //\n-//\tgo version [-m] [-v] [file ...]\n+//\tgo version [-m] [-v] [-json] [file ...]\n //\n // Version prints the build information for Go binary files.\n //\n@@ -1986,6 +1986,9 @@\n // information consists of multiple l...
2024-10-14T11:11:53
mrdoob/three.js
29e3db579f47feb464e2ece5cd24ccf8572e48fb
bc5dca3e9aa18b060746b5fce3ac34b3b8cc9051
Examples: Fixed english.
[ { "path": "examples/webgl_loader_gltf.html", "patch": "@@ -12,7 +12,7 @@\n \t\t\t<a href=\"https://threejs.org\" target=\"_blank\" rel=\"noopener\">three.js</a> - GLTFLoader<br />\n \t\t\tBattle Damaged Sci-fi Helmet by\n \t\t\t<a href=\"https://sketchfab.com/theblueturtle_\" target=\"_blank\" rel=\"noopene...
2023-05-17T02:22:39
golang/go
698f86139bf72bcf7cbf08accc1c34394cb57acb
8d189f188e225e4919b34c0c097e75dfda255949
crypto: limit md5 or sha256 blocks processed at once in assembly This change limits the amount of data that can be hashed at once - the assembly routines are not preemptible and can result in large latency outliers when part of a larger system. Benchmarks for sha256 (on an arm64 M1): name old speed ...
[ { "path": "src/crypto/internal/fips140/sha256/sha256.go", "patch": "@@ -21,6 +21,11 @@ const size224 = 28\n // The block size of SHA-256 and SHA-224 in bytes.\n const blockSize = 64\n \n+// The maximum number of bytes that can be passed to block(). The limit exists\n+// because implementations that rely on ...
2025-05-13T00:45:25
mrdoob/three.js
dd4a418d04aef2264678936a9c8cf7e0e84b01c1
fed6eeabd9de7b39fe5e41f0b46ec1846633cc33
RapierPhysics: Clean up (#26042) * RapierPhysics: Clean up * Update RapierPhysics.js * Update RapierPhysics.js * Update RapierPhysics.js * Fix * Match the original behaviour * Test reverting clock * Bring Clock back * Update screenshot * Fix screenshot * Fix again * Add to exceptions l...
[ { "path": "examples/jsm/physics/RapierPhysics.js", "patch": "@@ -1,79 +1,72 @@\n-async function RapierPhysics() {\n-\n-\tconst RAPIER = await import( 'https://cdn.skypack.dev/@dimforge/rapier3d-compat@0.11.2' );\n-\t\n-\tawait RAPIER.init();\n-\n-\tconst frameRate = 60;\n+import { Clock, Vector3, Quaternion...
2023-05-16T08:41:20
denoland/deno
3aaa86b5c87fa73c6b7d2be566529b145d28abfb
1e65d21071343818ebdf4a3e0e6c42962b89411d
fix(ext/node): use primordials in `ext/node/polyfills/_fs/_fs_lstat.ts` (#28644) Towards #24236
[ { "path": "ext/node/polyfills/_fs/_fs_lstat.ts", "patch": "@@ -1,8 +1,5 @@\n // Copyright 2018-2025 the Deno authors. MIT license.\n \n-// TODO(petamoriken): enable prefer-primordials for node polyfills\n-// deno-lint-ignore-file prefer-primordials\n-\n import { denoErrorToNodeError } from \"ext:deno_node/i...
2025-03-28T17:52:33
mrdoob/three.js
6c94900923614f0aac130497900198ef541e2d1f
d1e85b099b33d90d70d52bbf90a30736f457d071
ShaderNode: Rework ConvertType (#26025) * Rework ConvertType * Fix * Fix both bugs remaining * Fix DeepScan issue
[ { "path": "examples/jsm/nodes/core/NodeBuilder.js", "patch": "@@ -282,6 +282,10 @@ class NodeBuilder {\n \n \t\t\treturn `${ this.getType( type ) }( ${ getConst( value.x ) }, ${ getConst( value.y ) }, ${ getConst( value.z ) }, ${ getConst( value.w ) } )`;\n \n+\t\t} else if ( typeLength > 4 && value && ( va...
2023-05-16T08:22:14