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
4837fbe4145cd47b43eed66fee9eed9c2b988316
ee163197a879cf19aa9758bc544c717445284311
net/http/httptest: check whether response bodies are allowed Fixes #75471 Change-Id: Ie8fc5fae4b2a9285501198d8379bbffe51ee63f7 Reviewed-on: https://go-review.googlesource.com/c/go/+/709335 Reviewed-by: Damien Neil <dneil@google.com> Reviewed-by: Michael Pratt <mpratt@google.com> LUCI-TryBot-Result: Go LUCI <golang-sc...
[ { "path": "src/net/http/httptest/recorder.go", "patch": "@@ -105,6 +105,10 @@ func (rw *ResponseRecorder) writeHeader(b []byte, str string) {\n // Write implements http.ResponseWriter. The data in buf is written to\n // rw.Body, if not nil.\n func (rw *ResponseRecorder) Write(buf []byte) (int, error) {\n+\t...
2025-10-05T22:09:03
denoland/deno
3d7e939b072b08d998e0045c70439cadb6a8e76c
7aa22da667ab0aa3f233d33f56ba76b8d1a82941
feat(unstable): add permission broker (#30826) This commit adds "permission broker" functionality to the CLI. Once broker is active (using `DENO_PERMISSION_BROKER_PATH` env var), any time a permission is checked, instead of relying on the `--allow-*` flags, a message is sent to the broker that is responsible for gran...
[ { "path": "cli/main.rs", "patch": "@@ -562,6 +562,22 @@ pub(crate) fn unstable_exit_cb(feature: &str, api_name: &str) {\n deno_runtime::exit(70);\n }\n \n+#[cfg(not(unix))]\n+fn maybe_setup_permission_broker() {}\n+\n+#[cfg(unix)]\n+fn maybe_setup_permission_broker() {\n+ if let Ok(socket_path) = std::en...
2025-09-27T01:09:31
mrdoob/three.js
b9144b9cfae5a985a23ea95ca1a77b0ae4fb366a
aa4fa450956a2a818bccb409ff7905dabd3c66af
Addons: Add `TRAAPassNode`. (#29636) * TRAAPass: Initial setup. * TRAAPassNode: Implement clamping, fix velocity. * TRAAPassNode: Finalize initial code. * TRAAPassNode: Clean up. * Examples: Clean up. * TRAAPassNode: Clean up. * TRAAPassNode: Fix dispose(). * TRAANodePass: Refactor MRT setup. *...
[ { "path": "examples/files.json", "patch": "@@ -400,6 +400,7 @@\n \t\t\"webgpu_postprocessing_sobel\",\n \t\t\"webgpu_postprocessing_ssaa\",\n \t\t\"webgpu_postprocessing_ssr\",\n+\t\t\"webgpu_postprocessing_traa\",\n \t\t\"webgpu_postprocessing_transition\",\n \t\t\"webgpu_postprocessing\",\n \t\t\"webgpu_p...
2024-10-15T19:22:19
kubernetes/kubernetes
384e516093efa4e6e20e5c292de9749670c672e8
40d19f0a05fb9a7d889b5e32f1d2d6ab8e57e810
Change error log to info log in pkg/controller/garbagecollector/
[ { "path": "pkg/controller/garbagecollector/garbagecollector.go", "patch": "@@ -359,8 +359,8 @@ func (gc *GarbageCollector) attemptToDeleteWorker(ctx context.Context, item inte\n \t\t\t// 2. The reference is to an invalid group/version. We don't currently\n \t\t\t// have a way to distinguish this from a v...
2026-01-05T21:13:16
tensorflow/tensorflow
355a15f9ce235cf5b94bcce565629fcdac2bad38
e14cdc84649326ef0f3702763df402798dd82a5d
Update Bazel platform selectors in highwayhash BUILD The current selectors were missing some x86_64-based CPUs, which can cause linker errors. E.g. it was causing linker errors in the Windows presubmit when attempting to integrate Riegeli which uses highwayhash. PiperOrigin-RevId: 854130101
[ { "path": "third_party/xla/third_party/highwayhash/highwayhash.BUILD", "patch": "@@ -152,8 +152,10 @@ cc_library(\n srcs = [\"highwayhash/hh_avx2.cc\"],\n hdrs = [\"highwayhash/highwayhash_target.h\"],\n copts = select({\n- \":k8\": [\"-mavx2\"],\n- \":haswell\": [\"-mavx2\"],\n+ ...
2026-01-09T12:05:42
golang/go
ee163197a879cf19aa9758bc544c717445284311
de9da0de30377532370a09a311851afc0616c185
path/filepath: return cleaned path from Rel As the doc says, Rel should return a cleaned path. Fixes #75763 Change-Id: Ic0f5a3b1da3cc4cf3c31fdb1a88ebcc4ea6f9169 Reviewed-on: https://go-review.googlesource.com/c/go/+/709675 Reviewed-by: Michael Pratt <mpratt@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci...
[ { "path": "src/path/filepath/path.go", "patch": "@@ -248,7 +248,7 @@ func Rel(basepath, targpath string) (string, error) {\n \t\t\tbuf[n] = Separator\n \t\t\tcopy(buf[n+1:], targ[t0:])\n \t\t}\n-\t\treturn string(buf), nil\n+\t\treturn Clean(string(buf)), nil\n \t}\n \treturn targ[t0:], nil\n }", "addit...
2025-10-06T23:13:14
denoland/deno
7aa22da667ab0aa3f233d33f56ba76b8d1a82941
2ec0768033b8ba082a46f9bb967c725e114332af
fix(cli/util): terminate watch file with sigint (#30635) Fix #30587 . I've implemented 2 tests. The first one checks when a program is terminated while the watcher is waiting for file changes and the user interrupts the process. The second one checks when the code is running: the SIGINT should be intercepted and the ...
[ { "path": "cli/util/file_watcher.rs", "patch": "@@ -15,6 +15,7 @@ use deno_core::futures::FutureExt;\n use deno_core::parking_lot::Mutex;\n use deno_lib::util::result::js_error_downcast_ref;\n use deno_runtime::fmt_errors::format_js_error;\n+use deno_signals;\n use log::info;\n use notify::Error as NotifyEr...
2025-09-27T00:23:32
mrdoob/three.js
aa4fa450956a2a818bccb409ff7905dabd3c66af
db6cb64126c70873fa7b20857e91c2be81035a9b
fix: remove methods for CSSRenderer Objects within iframe (#29663) * fix: remove methods for CSSRenderer Objects within iframe * Element.remove() is widely supported
[ { "path": "examples/jsm/renderers/CSS2DRenderer.js", "patch": "@@ -26,9 +26,12 @@ class CSS2DObject extends Object3D {\n \n \t\t\tthis.traverse( function ( object ) {\n \n-\t\t\t\tif ( object.element instanceof Element && object.element.parentNode !== null ) {\n+\t\t\t\tif (\n+\t\t\t\t\tobject.element insta...
2024-10-15T17:51:23
kubernetes/kubernetes
40d19f0a05fb9a7d889b5e32f1d2d6ab8e57e810
b2ac9e206fdd912f35f2ab5b3c5b5243303ba14b
Change error log to info log in resource_quorta_monitor.go
[ { "path": "pkg/controller/resourcequota/resource_quota_monitor.go", "patch": "@@ -175,7 +175,7 @@ func (qm *QuotaMonitor) controllerFor(ctx context.Context, resource schema.Group\n \t\tshared.Informer().AddEventHandlerWithResyncPeriod(handlers, qm.resyncPeriod())\n \t\treturn shared.Informer().GetController...
2026-01-05T20:57:54
tensorflow/tensorflow
5b11150c9d7d20c1823c0405502279b456a3a5ee
176b195b2c076f522cedead7daa145aa78e489c1
Typo Fix in attributes.py
[ { "path": "tensorflow/python/eager/polymorphic_function/attributes.py", "patch": "@@ -64,7 +64,7 @@\n XLA_COMPILE = \"_XlaMustCompile\"\n XLA_COMPILE_OPTIONAL = \"_XlaCompile\"\n XLA_SCOPE = \"_XlaScope\"\n-XLA_SEPERATE_COMPILED_GRADIENTS = \"_XlaSeparateCompiledGradients\"\n+XLA_SEPARATE_COMPILED_GRADIENTS...
2026-01-09T05:43:56
denoland/deno
0d73ac088a9055c1c023cc0c5776159c0aa0ea27
3b037dd00f15b9f3ef0387e242e1927f7db6cd2e
fix(ext/node): setTimeout promisified to handle abort signal (#30855) Fixes #30839
[ { "path": "ext/node/polyfills/internal/validators.mjs", "patch": "@@ -98,15 +98,8 @@ const validateInteger = hideStackFrames(\n },\n );\n \n-/**\n- * @param {unknown} value\n- * @param {string} name\n- * @param {{\n- * allowArray?: boolean,\n- * allowFunction?: boolean,\n- * nullable?: boolean\n- * ...
2025-09-26T15:12:15
mrdoob/three.js
752400c13fba9e83dd0291bec8d3e0d4586fd2e1
a9f7169779909a56c6cba4b15360108112e88d17
fix(Material): sRGB decoding for VideoTexture .emissiveMap (#29657)
[ { "path": "src/renderers/shaders/ShaderChunk/colorspace_pars_fragment.glsl.js", "patch": "@@ -4,6 +4,10 @@ vec4 LinearTransferOETF( in vec4 value ) {\n \treturn value;\n }\n \n+vec4 sRGBTransferEOTF( in vec4 value ) {\n+\treturn vec4( mix( pow( value.rgb * 0.9478672986 + vec3( 0.0521327014 ), vec3( 2.4 ) ),...
2024-10-15T08:31:44
golang/go
de9da0de30377532370a09a311851afc0616c185
ae094a1397d03aafde380cdb79e0d6a5731c8dbc
cmd/compile/internal/devirtualize: improve concrete type analysis This change improves the concrete type analysis in the devirtualizer, it not longer relies on ir.Reassigned, it now statically tries to determine the concrete type of an interface, even when assigned multiple times, following type assertions and iface c...
[ { "path": "src/cmd/compile/internal/devirtualize/devirtualize.go", "patch": "@@ -18,9 +18,11 @@ import (\n \t\"cmd/compile/internal/types\"\n )\n \n+const go126ImprovedConcreteTypeAnalysis = true\n+\n // StaticCall devirtualizes the given call if possible when the concrete callee\n // is available staticall...
2025-10-07T17:57:59
swiftlang/swift
56dc450c9cd4a9be7d7c82d6c377b11a6342dc79
9f2f8578caeb1732cf5c5a1d4b4c2f65f86e7382
[test] Update a couple of crasher signatures
[ { "path": "validation-test/compiler_crashers/GenericSignatureImpl-getSuperclassBound-52afb1.swift", "patch": "@@ -0,0 +1,4 @@\n+// {\"kind\":\"typecheck\",\"signature\":\"swift::GenericSignatureImpl::getSuperclassBound(swift::Type) const\"}\n+// RUN: not --crash %target-swift-frontend -typecheck %s\n+class ...
2026-02-06T23:38:06
kubernetes/kubernetes
1ff74821f9fc229065b88c7c9ec6e831d373a02b
b2ac9e206fdd912f35f2ab5b3c5b5243303ba14b
Fix: Prevent nil pointer dereference in HandlePodUpdates In HandlePodUpdates, oldPod is nil for a mirror pod. Adding a nil check to prevent panic when the NodeDeclaredFeatures feature gate is enabled.
[ { "path": "pkg/kubelet/kubelet.go", "patch": "@@ -2826,7 +2826,7 @@ func (kl *Kubelet) HandlePodUpdates(pods []*v1.Pod) {\n \t\t\t}\n \t\t}\n \n-\t\tif utilfeature.DefaultFeatureGate.Enabled(features.NodeDeclaredFeatures) {\n+\t\tif utilfeature.DefaultFeatureGate.Enabled(features.NodeDeclaredFeatures) && ol...
2026-01-05T19:25:21
denoland/deno
ebcda43eb6f733764229a190270032aa4f5a901f
11fb3b0818bbeda72456cec7a365c621924967c8
fix(tunnel): rename `--connected` to `--tunnel` and better handle `DENO_DEPLOY_TOKEN` env variable (#30786) Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
[ { "path": "cli/args/flags.rs", "patch": "@@ -755,7 +755,7 @@ pub struct Flags {\n pub eszip: bool,\n pub node_conditions: Vec<String>,\n pub preload: Vec<String>,\n- pub connected: bool,\n+ pub tunnel: bool,\n }\n \n #[derive(Clone, Debug, Eq, PartialEq, Default, Serialize, Deserialize)]\n@@ -3370,7...
2025-09-25T21:30:13
mrdoob/three.js
25ff4db3cba187c84a879737d3b8714a65659570
26efd87d9f30d30147cbebc099338b42c89ed0bd
WebGPURenderer: Introduce `TiledLighting` (#29642) * Renderer: move `.nodes.library` -> `.library` * WGSLNodeBuilder: Remove incompatible types * introduce lighting system * introduce tiled lighting * update imports * cleanup * revision * `misc_controls_fly` : fix warning * revision * cleanu...
[ { "path": "examples/files.json", "patch": "@@ -339,6 +339,7 @@\n \t\t\"webgpu_lights_phong\",\n \t\t\"webgpu_lights_rectarealight\",\n \t\t\"webgpu_lights_selective\",\n+\t\t\"webgpu_lights_tiled\",\n \t\t\"webgpu_lines_fat_wireframe\",\n \t\t\"webgpu_lines_fat\",\n \t\t\"webgpu_loader_gltf\",", "additi...
2024-10-14T23:38:32
tensorflow/tensorflow
7c2ddeb819218684cb76ce71ccea3c2e3d1b4512
8a3de6b89c9eed486a7521ae17ace665d3ac82be
Fix variable shadowing on Windows Needs a local LLVM patch until we can integrate. PiperOrigin-RevId: 853936031
[ { "path": "third_party/xla/third_party/llvm/msvc_variable_shadowing.patch", "patch": "@@ -0,0 +1,90 @@\n+From 51f6c5879315d7a64180a699ff6e1c467da930ba Mon Sep 17 00:00:00 2001\n+From: Maksim Levental <maksim.levental@gmail.com>\n+Date: Thu, 8 Jan 2026 17:35:53 -0500\n+Subject: [PATCH] [mlir][Python] fix nam...
2026-01-09T00:57:07
golang/go
d945600d060e7a0b7c5e72ac606a017d105a17f3
d4830c61301a32ad9373bc30c5fd6196c3567f61
cmd/gofmt: change -d to exit 1 if diffs exist When using the -d flag, set the exit code to 1 if there is a diff. Fixes #46289 Change-Id: I802e8ccd1798ed7f4448696bec4bc82835ec71a2 GitHub-Last-Rev: db2207fba9a8f7a2f50138ec1f086ac6a74e1b10 GitHub-Pull-Request: golang/go#75649 Reviewed-on: https://go-review.googlesource...
[ { "path": "src/cmd/gofmt/gofmt.go", "patch": "@@ -41,6 +41,9 @@ var (\n \n \t// debugging\n \tcpuprofile = flag.String(\"cpuprofile\", \"\", \"write cpu profile to this file\")\n+\n+\t// errors\n+\terrFormattingDiffers = fmt.Errorf(\"formatting differs from gofmt's\")\n )\n \n // Keep these in sync with go/...
2025-10-06T12:47:34
mrdoob/three.js
26efd87d9f30d30147cbebc099338b42c89ed0bd
bd8fb94227c0b13942ced60ed2d7c206c71c4ddc
WebGPUTextureUtils: Fix usage of `Texture.anisotropy`. (#29654)
[ { "path": "src/renderers/webgpu/utils/WebGPUTextureUtils.js", "patch": "@@ -65,9 +65,17 @@ class WebGPUTextureUtils {\n \t\t\tmagFilter: this._convertFilterMode( texture.magFilter ),\n \t\t\tminFilter: this._convertFilterMode( texture.minFilter ),\n \t\t\tmipmapFilter: this._convertFilterMode( texture.minFi...
2024-10-14T21:58:57
kubernetes/kubernetes
1e71a25950bc25ec9271752bbee7964e81e6ce60
b2ac9e206fdd912f35f2ab5b3c5b5243303ba14b
Fix race condition in DRA health e2e test pod status update Signed-off-by: Harshal Patil <12152047+harche@users.noreply.github.com>
[ { "path": "test/e2e_node/dra_test.go", "patch": "@@ -26,6 +26,7 @@ package e2enode\n \n import (\n \t\"context\"\n+\t\"encoding/json\"\n \t\"errors\"\n \t\"fmt\"\n \t\"net\"\n@@ -47,6 +48,7 @@ import (\n \tapierrors \"k8s.io/apimachinery/pkg/api/errors\"\n \tmetav1 \"k8s.io/apimachinery/pkg/apis/meta/v1\"\n...
2025-11-20T19:43:04
denoland/deno
11fb3b0818bbeda72456cec7a365c621924967c8
3871c99eaae6a4862d63ce0494a280a3a758f579
fix: show --permission-set help only once (#30844) Closes https://github.com/denoland/deno/issues/30842
[ { "path": "cli/args/flags.rs", "patch": "@@ -3916,7 +3916,8 @@ fn permission_args(app: Command, requires: Option<&'static str>) -> Command {\n .num_args(0..=1)\n .require_equals(true)\n .default_missing_value(\"\")\n- .short('P');\n+ .short('P')\n+ .h...
2025-09-25T13:37:08
golang/go
d4830c61301a32ad9373bc30c5fd6196c3567f61
e1ca1de1234aa0f6be85c97db5492a94b099a305
cmd/internal/obj: fix Link.Diag printf errors go1.26's vet printf checker can associate the printf-wrapper property with local vars and struct fields if they are assigned from a printf-like func literal (CL 706635). This leads to better detection of mistakes. Change-Id: I604be1e200aa1aba75e09d4f36ab68c1dba3b8a3 Revie...
[ { "path": "src/cmd/internal/obj/arm/asm5.go", "patch": "@@ -579,7 +579,7 @@ func span5(ctxt *obj.Link, cursym *obj.LSym, newprog obj.ProgAlloc) {\n \t\t}\n \n \t\tif int64(pc) > p.Pc {\n-\t\t\tctxt.Diag(\"PC padding invalid: want %#d, has %#d: %v\", p.Pc, pc, p)\n+\t\t\tctxt.Diag(\"PC padding invalid: want ...
2025-10-08T16:19:14
tensorflow/tensorflow
76ec2a6bf97c8f32455a998899ac6c14363cac0d
3a245945a2c243314f25d6ed003a1ed387a326e0
[XLA] Fix windows build. PiperOrigin-RevId: 853689178
[ { "path": "tensorflow/python/_pywrap_tensorflow.def", "patch": "@@ -421,6 +421,7 @@ EXPORTS\n ?HasAtomicMove@Env@tsl@@QEAA?AVStatus@lts_20250814@absl@@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PEA_N@Z\n ?HasTensor@CheckpointReader@checkpoint@tensorflow@@QEBA_NAEBV?$basic_string@DU...
2026-01-08T13:09:46
mrdoob/three.js
c4944f25ffa50be4caa6400c23de0a7f16ad9067
03b051119e4e921f96791ff7868d7a1cd37e193e
Docs: Fix typo and Improve `How-to-dispose-of-objects` page Korean translation (#29649) * Docs: Fix typo in Korean translation * Docs: Update introduction `How-to-dispose-of-objects`
[ { "path": "docs/manual/ko/introduction/How-to-dispose-of-objects.html", "patch": "@@ -43,8 +43,8 @@ <h2>텍스쳐</h2>\n \t</p>\n \n \t<p>\n- If you use an *ImageBitmap* as the texture's data source, you have to call [link:https://developer.mozilla.org/en-US/docs/Web/API/ImageBitmap/close ImageBitmap.close...
2024-10-14T13:16:05
denoland/deno
ade24896b2f7abe001198140a475ac38e9e13bd5
02787156398518fdac51b1f633a8367f92a7d253
fix(ext/node): allow ATTACH DATABASE with `--allow-all` (#30763)
[ { "path": "ext/node/ops/sqlite/database.rs", "patch": "@@ -275,13 +275,20 @@ fn open_db(\n allow_extension: bool,\n ) -> Result<rusqlite::Connection, SqliteError> {\n let perms = state.borrow::<PermissionsContainer>();\n+ let disable_attach = perms\n+ .check_has_all_permissions(Path::new(location))\...
2025-09-25T09:06:50
golang/go
bb1ca7ae81ea8ca49a2773ace8ccff8fbc7f4dfd
162392773085d4cc12072200853a0424117983c0
cmd/go, testing: add TB.ArtifactDir and -artifacts flag Add TB.ArtifactDir, which returns a directory for a test to store output files in. Add a -artifacts testflag which enables persistent storage of artifacts in the output directory (-outputdir, or the current directory by default). Fixes #71287 Change-Id: I5f6515...
[ { "path": "api/next/71287.txt", "patch": "@@ -0,0 +1,4 @@\n+pkg testing, method (*B) ArtifactDir() string #71287\n+pkg testing, method (*F) ArtifactDir() string #71287\n+pkg testing, method (*T) ArtifactDir() string #71287\n+pkg testing, type TB interface, ArtifactDir() string #71287", "additions": 4, ...
2025-08-15T22:24:05
kubernetes/kubernetes
551cf6f1710874b35e752d94134d27e7679864b6
8a10a1a4a4aec02c1227d3fea12bf681821de194
ktesting: reimplement without interface The original implementation was inspired by how context.Context is handled via wrapping a parent context. That approach had several issues: - It is useful to let users call methods (e.g. tCtx.ExpectNoError) instead of ktesting functions with a tCtx parameters, but that only ...
[ { "path": "test/integration/dra/device_taints_test.go", "patch": "@@ -176,7 +176,7 @@ func testEvictCluster(tCtx ktesting.TContext, useRule bool) {\n \t}\n \twg.Go(func() {\n \t\tif err := controller.Run(tCtx, 10 /* workers */); err != nil {\n-\t\t\ttCtx.Errorf(\"Unexpected Run error: %w\", err)\n+\t\t\ttCt...
2025-12-08T07:19:51
mrdoob/three.js
921284e3a3c275491b4bc8b4a745b6ad8666f3e6
597481c879fa77a46f77e687f0ae5fd509ffcc65
ReflectorNode: Fix projection matrix computation for WebGL. (#29630)
[ { "path": "src/nodes/utils/ReflectorNode.js", "patch": "@@ -4,7 +4,7 @@ import { nodeObject } from '../tsl/TSLBase.js';\n import { NodeUpdateType } from '../core/constants.js';\n import { screenUV } from '../display/ScreenNode.js';\n \n-import { HalfFloatType, LinearMipMapLinearFilter } from '../../constant...
2024-10-12T09:38:45
golang/go
a1661e776f57602b4d4470389a0246f9784fd722
cb81270113968408d7cc41c0b1530adb51dd8496
Revert "crypto/internal/fips140/subtle: add assembly implementation of xorBytes for mips64x" This reverts commit 49d6777d87a0abb3eda032da95eff024156835f7. Reason for revert: doesn't handle unaligned accesses correctly Fixes #74998 Change-Id: Ia272245a6a2a91b305d411207430bad660ee355b Reviewed-on: https://go-review.g...
[ { "path": "src/crypto/internal/fips140/subtle/xor_asm.go", "patch": "@@ -2,7 +2,7 @@\n // Use of this source code is governed by a BSD-style\n // license that can be found in the LICENSE file.\n \n-//go:build (amd64 || arm64 || mips64 || mips64le || ppc64 || ppc64le || riscv64) && !purego\n+//go:build (amd6...
2025-10-07T17:15:43
denoland/deno
dcc94741759d54fb73d9b6ececfd05f7cff62ab7
e7f179305baad4ee89680ff0ecea3eb6c8628be8
fix(ext/node): `fs.readFile`, `fs.readFileSync` assert encoding (#30830) Towards #29972 - Validates the encoding of `readFile`. - Fixes the handling of `binary` encoding where previously it returns Buffer. On Node.js, Buffer is only returned when the encoding is not specified. - Allows [parallel/test-fs-read-file-ass...
[ { "path": "ext/node/polyfills/_fs/_fs_common.ts", "patch": "@@ -16,6 +16,7 @@ import {\n TextEncodings,\n } from \"ext:deno_node/_utils.ts\";\n import { type Buffer } from \"node:buffer\";\n+import { assertEncoding } from \"ext:deno_node/internal/fs/utils.mjs\";\n \n export type CallbackWithError = (err: ...
2025-09-24T13:32:41
mrdoob/three.js
597481c879fa77a46f77e687f0ae5fd509ffcc65
0eba913598d125031b9dc3c599e81046bd33c536
WebGPURenderer: webgl-fallback - fix uniform/texture index allocation (#29622) * fix uniform index/texture use * use explict test * Update WebGLBackend.js Minor code style clean up. --------- Co-authored-by: aardgoose <angus.sawyer@email.com> Co-authored-by: Michael Herzog <michael.herzog@human-interac...
[ { "path": "src/renderers/webgl-fallback/WebGLBackend.js", "patch": "@@ -63,6 +63,8 @@ class WebGLBackend extends Backend {\n \t\tthis.disjoint = this.extensions.get( 'EXT_disjoint_timer_query_webgl2' );\n \t\tthis.parallel = this.extensions.get( 'KHR_parallel_shader_compile' );\n \n+\t\tthis._knownBindings ...
2024-10-12T09:06:17
kubernetes/kubernetes
095475485f59b210f4a172f76c8f962ebddf750b
1a866b87953a273d35f54de3dcdcc04e50d06b37
ktesting: rewrite unit testing with mock TB We need to see the actual effect that ktesting will have when used as wrapper around testing.T. Producing an error hid that adding the klog header makes some output sub-optimal: <klog header>: FATAL ERROR: ... The problem with having the klog header at the beginning o...
[ { "path": "test/utils/ktesting/assert_test.go", "patch": "@@ -36,11 +36,13 @@ func TestAssert(t *testing.T) {\n \t\t\t\t}).WithTimeout(time.Second).Should(gomega.Equal(1))\n \t\t\t},\n \t\t\texpectDuration: time.Second,\n-\t\t\texpectError: `Timed out after x.y s.\n+\t\t\texpectTrace: `(FATAL) <klog header>...
2025-12-08T07:19:39
golang/go
f7a68d3804efabd271f0338391858bc1e7e57422
463165699d874ef0ac7965fc5788fe1693eaae9a
archive/tar: set a limit on the size of GNU sparse file 1.0 regions Sparse files in tar archives contain only the non-zero components of the file. There are several different encodings for sparse files. When reading GNU tar pax 1.0 sparse files, archive/tar did not set a limit on the size of the sparse region data. A ...
[ { "path": "src/archive/tar/common.go", "patch": "@@ -39,6 +39,7 @@ var (\n \terrMissData = errors.New(\"archive/tar: sparse file references non-existent data\")\n \terrUnrefData = errors.New(\"archive/tar: sparse file contains unreferenced data\")\n \terrWriteHole = errors.New(\"archive/t...
2025-09-11T20:32:10
denoland/deno
8a0990ccd37bafd8768176ca64b906ba2da2d822
d82f509c41d5b9a6005dab255eb04cc3d742a383
fix: reject running `.bat` and `.cmd` directly on windows (#30818)
[ { "path": "ext/process/lib.rs", "patch": "@@ -752,6 +752,21 @@ fn compute_run_cmd_and_check_permissions(\n command: arg_cmd.to_string(),\n error: Box::new(e),\n })?;\n+ #[cfg(windows)]\n+ if let Some(ext) = cmd.extension()\n+ && (ext == \"bat\" || ext == \"cmd\")\n+ {\n+ return Err(...
2025-09-24T05:05:37
mrdoob/three.js
c3e812b6d337997894fdaad5d12d33c1491f82e9
09a680707be69a300dc7c1826b99db8aad5dbf5f
WaterMesh: Fix planar offset - WebGPU (#29626)
[ { "path": "examples/jsm/objects/WaterMesh.js", "patch": "@@ -74,7 +74,7 @@ class WaterMesh extends Mesh {\n \n \t\t\tconst distance = length( worldToEye );\n \n-\t\t\tconst distortion = surfaceNormal.xy.mul( float( 0.001 ).add( float( 1.0 ).div( distance ) ) ).mul( this.distortionScale );\n+\t\t\tconst dist...
2024-10-11T15:46:58
tensorflow/tensorflow
64e77dec8194eae843877e736e20ed19033973c7
5379c10402810a28a58d7cdac6c0bffe90ab6193
[XLA:GPU] Add Python stack traces to XLA NaN checker log messages This removes the need to manually investigate the HLO dumps to get helpful info. If no debug info was available in the HLO module, an appropriate message is displayed. Also: * Add `HloInstruction::GetStackTrace{,String}FromMetadata` helpers. * Extract ...
[ { "path": "third_party/xla/xla/backends/gpu/runtime/BUILD", "patch": "@@ -3525,7 +3525,6 @@ cc_library(\n \"@com_google_absl//absl/strings\",\n \"@com_google_absl//absl/strings:string_view\",\n \"@com_googlesource_code_re2//:re2\",\n- \"@eigen_archive//:eigen3\",\n ],\n )\...
2026-01-08T10:02:12
kubernetes/kubernetes
1a866b87953a273d35f54de3dcdcc04e50d06b37
e0514f665643119428b1fa4c6c3ea99c730f721a
e2e framework: fix inconsistency in log output Example: I1208 16:01:05.852628 243 upgradedowngrade_test.go:239] get source code version: bring up v1.34: cluster is running, use KUBECONFIG=/var/run/kubernetes/admin.kubeconfig to access it I1208 16:01:05.869679 243 reflector.go:446] "Caches populated" type=...
[ { "path": "test/e2e/framework/ginkgologger.go", "patch": "@@ -110,7 +110,7 @@ func log(offset int, msg string) {\n \t}\n \t_, month, day := now.Date()\n \thour, minute, second := now.Clock()\n-\theader := fmt.Sprintf(\"I%02d%02d %02d:%02d:%02d.%06d %d %s:%d]\",\n+\theader := fmt.Sprintf(\"I%02d%02d %02d:%02...
2025-12-08T16:57:23
golang/go
463165699d874ef0ac7965fc5788fe1693eaae9a
5ede095649db7783726c28390812bca9ce2c684a
net/mail: avoid quadratic behavior in mail address parsing RFC 5322 domain-literal parsing built the dtext value one character at a time with string concatenation, resulting in excessive resource consumption when parsing very large domain-literal values. Replace with a subslice. Benchmark not included in this CL bec...
[ { "path": "src/net/mail/message.go", "patch": "@@ -724,7 +724,8 @@ func (p *addrParser) consumeDomainLiteral() (string, error) {\n \t}\n \n \t// Parse the dtext\n-\tvar dtext string\n+\tdtext := p.s\n+\tdtextLen := 0\n \tfor {\n \t\tif p.empty() {\n \t\t\treturn \"\", errors.New(\"mail: unclosed domain-lite...
2025-09-25T21:41:53
denoland/deno
e7e1f1c13ac09c415916cb4bce0f13635a484cc6
c7379b7c947ba41712ef3870578efd68bbfdd82c
fix(bundle): reload html entrypoints with --watch (#30790) Fixes #30769.
[ { "path": "cli/tools/bundle/html.rs", "patch": "@@ -135,6 +135,7 @@ fn collect_scripts(doc: &str) -> Result<Vec<Script>, AnyError> {\n #[derive(Debug, Clone)]\n pub struct HtmlEntrypoint {\n pub path: PathBuf,\n+ pub canonical_path: PathBuf,\n pub scripts: Vec<Script>,\n pub temp_module: String,\n ...
2025-09-24T00:27:28
mrdoob/three.js
0e584a20573b87058997fe08ea5c47ead9438720
36bac08e87b0a016ce920b59b3375ed682a03997
Nodes: Fixes and improvements for `reflector` and `gaussianBlur` (#29619) * GaussianBlurNode: preserves input UV * fix sequential events of update before * add multi-sampler support
[ { "path": "examples/jsm/tsl/display/GaussianBlurNode.js", "patch": "@@ -60,6 +60,7 @@ class GaussianBlurNode extends TempNode {\n \t\tthis._verticalRT.texture.name = 'GaussianBlurNode.vertical';\n \n \t\tthis._textureNode = passTexture( this, this._verticalRT.texture );\n+\t\tthis._textureNode.uvNode = text...
2024-10-11T14:41:33
tensorflow/tensorflow
70d9bec54222fc87ea522e3baf5fa4ce9387a7f5
fb1e5000af95979844b8a2e41be4b69cd5e47a8e
PR #36086: [xla:gpu] Remove accidental always-on loop unrolling Imported from GitHub PR https://github.com/openxla/xla/pull/36086 `enable_loop_unroll_` should not be hardcoded to always true. This was hiding a segfault in one of the command buffer tests. Copybara import of the project: -- e6fa180a57a06472a845a8efb61...
[ { "path": "third_party/xla/xla/backends/gpu/runtime/command_buffer_cmd.cc", "patch": "@@ -1392,7 +1392,6 @@ absl::Status WhileCmd::Initialize(const Thunk::InitializeParams& params,\n CommandStateManager& state) {\n TF_RETURN_IF_ERROR(cond_commands_.Initialize(params, stat...
2026-01-08T04:19:44
kubernetes/kubernetes
56448506075c3db1d16b5bbf0c581b833a4646f1
d04610bbfb8a16b01ee1266ee9c58a9e7f202efd
client-go testing: support List+Watch with ResourceVersion Quite a lot of unit tests set up informers with a fake client, do informerFactory.WaitForCacheSync, then create or modify objects. Such tests suffered from a race: because the fake client only delivered objects to the watch after the watch has been created, cr...
[ { "path": "staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/generic/policy_test_context.go", "patch": "@@ -164,7 +164,7 @@ func NewPolicyTestContext[P, B runtime.Object, E Evaluator](\n \t\t\t\treturn policiesAndBindingsTracker.List(fakePolicyGVR, fakePolicyGVK, \"\")\n \t\t\t},\n \t\t\tWatchFunc: f...
2025-12-27T20:57:54
golang/go
5ede095649db7783726c28390812bca9ce2c684a
5ce8cd16f3859ec5ac4106ad8ec15d6236f4501b
net/textproto: avoid quadratic complexity in Reader.ReadResponse Reader.ReadResponse constructed a response string from repeated string concatenation, permitting a malicious sender to cause excessive memory allocation and CPU consumption by sending a response consisting of many short lines. Use a strings.Builder to c...
[ { "path": "src/net/textproto/reader.go", "patch": "@@ -285,8 +285,10 @@ func (r *Reader) ReadCodeLine(expectCode int) (code int, message string, err err\n //\n // An expectCode <= 0 disables the check of the status code.\n func (r *Reader) ReadResponse(expectCode int) (code int, message string, err error) {...
2025-09-30T22:11:16
mrdoob/three.js
36bac08e87b0a016ce920b59b3375ed682a03997
c8fd86d31237e5aec94ee2e803b86a92666e134b
Update webgpu_postprocessing_ssaa.html Fix typo.
[ { "path": "examples/webgpu_postprocessing_ssaa.html", "patch": "@@ -1,7 +1,7 @@\n <!DOCTYPE html>\n <html lang=\"en\">\n \t<head>\n-\t\t<title>three.js webpu - postprocessing manual ssaa</title>\n+\t\t<title>three.js webgpu - postprocessing manual ssaa</title>\n \t\t<meta charset=\"utf-8\">\n \t\t<meta name...
2024-10-11T13:03:06
denoland/deno
c7379b7c947ba41712ef3870578efd68bbfdd82c
34bbc12da9df2d6b57868ffe2950414b01a521cb
fix(cli/bundle): respect --frozen flag deno bundle command (#30825) fixes: https://github.com/denoland/deno/issues/30713
[ { "path": "cli/tools/bundle/mod.rs", "patch": "@@ -104,13 +104,13 @@ pub async fn prepare_inputs(\n }\n \n if html_paths.is_empty() {\n- let _ = plugin_handler\n+ plugin_handler\n .prepare_module_load(&resolved_entrypoints)\n- .await;\n+ .await?;\n \n let roots =\n resolv...
2025-09-23T21:50:04
tensorflow/tensorflow
f6b2f107234c449a06a30ca01627249592b12304
af107a0fc3826babb010a75d01d34a0d47fd63e7
Add error documentation for E1000: Compile Time HBM OOMs. PiperOrigin-RevId: 853486153
[ { "path": "third_party/xla/docs/error_codes.md", "patch": "@@ -6,6 +6,7 @@ This page is a list of all error codes emitted by the XLA compiler.\n - [E0101](./errors/error_0101.md)\n - [E0102](./errors/error_0102.md)\n - [E0200](./errors/error_0200.md)\n+- [E1000](./errors/error_1000.md)\n - [E1001]...
2026-01-08T02:09:31
golang/go
5ce8cd16f3859ec5ac4106ad8ec15d6236f4501b
f6f4e8b3ef21299db1ea3a343c3e55e91365a7fd
encoding/pem: make Decode complexity linear Because Decode scanned the input first for the first BEGIN line, and then the first END line, the complexity of Decode is quadratic. If the input contained a large number of BEGINs and then a single END right at the end of the input, we would find the first BEGIN, and then s...
[ { "path": "src/encoding/pem/pem.go", "patch": "@@ -37,7 +37,7 @@ type Block struct {\n // line bytes. The remainder of the byte array (also not including the new line\n // bytes) is also returned and this will always be smaller than the original\n // argument.\n-func getLine(data []byte) (line, rest []byte)...
2025-09-30T18:16:56
kubernetes/kubernetes
c2361491f531e573a12d6a627940bc90e7be9c28
3226fe520d67a84b47484eaeb006645ff6d4ec45
Fix extended resource handling for DRA-backed resources In kubelet admission: - Remove extended resources from pod requirements if they are either backed by DRA or not present in node's allocatable resources In scheduler (fit.go): - Remove fallback logic that delegated all resources to DRA when draMan...
[ { "path": "pkg/kubelet/lifecycle/predicate.go", "patch": "@@ -33,6 +33,7 @@ import (\n \tschedulerframework \"k8s.io/kubernetes/pkg/scheduler/framework\"\n \t\"k8s.io/kubernetes/pkg/scheduler/framework/plugins/nodeaffinity\"\n \t\"k8s.io/kubernetes/pkg/scheduler/framework/plugins/tainttoleration\"\n+\tsched...
2025-12-15T11:57:59
mrdoob/three.js
df215c82bd3cc8d3f7eefaad9f12db52d205230a
65c13da78a4120437c329d0c7da3c2666c737ebe
WebGPURenderer: Introducing an `IndirectStorageBufferAttribute` (#29594) * Introducing an indirectStorageBuffer for drawIndirect * Update NodeStorageBuffer.js fixed lint issue * Update StorageBufferNode.js fixed lint issue * Update IndirectStorageBufferAttribute.js fixed lint issue * Update Stora...
[ { "path": "src/nodes/accessors/StorageBufferNode.js", "patch": "@@ -66,7 +66,7 @@ class StorageBufferNode extends BufferNode {\n \n \tgetInputType( /*builder*/ ) {\n \n-\t\treturn 'storageBuffer';\n+\t\treturn this.value.isIndirectStorageBufferAttribute ? 'indirectStorageBuffer' : 'storageBuffer';\n \n \t}\...
2024-10-10T17:24:26
denoland/deno
34bbc12da9df2d6b57868ffe2950414b01a521cb
53701b4926f130a3f3f8464e7dfb683d4d6036f8
fix(dts): add `Uint8Array` base64/hex methods (#30686) These are enabled by default in V8 14.0. Closes #25051.
[ { "path": "cli/build.rs", "patch": "@@ -115,11 +115,13 @@ fn compress_decls(out_dir: &Path) {\n \"lib.esnext.d.ts\",\n \"lib.esnext.decorators.d.ts\",\n \"lib.esnext.disposable.d.ts\",\n+ \"lib.esnext.error.d.ts\",\n \"lib.esnext.float16.d.ts\",\n \"lib.esnext.full.d.ts\",\n \"lib...
2025-09-23T17:55:29
golang/go
f6f4e8b3ef21299db1ea3a343c3e55e91365a7fd
7dd54e1fd7f3a25fccbb5c6ab7066e2baad23e66
net/url: enforce stricter parsing of bracketed IPv6 hostnames - Previously, url.Parse did not enforce validation of hostnames within square brackets. - RFC 3986 stipulates that only IPv6 hostnames can be embedded within square brackets in a URL. - Now, the parsing logic should strictly enforce that only IPv6 hos...
[ { "path": "src/go/build/deps_test.go", "patch": "@@ -237,7 +237,6 @@ var depsRules = `\n \t internal/types/errors,\n \t mime/quotedprintable,\n \t net/internal/socktest,\n-\t net/url,\n \t runtime/trace,\n \t text/scanner,\n \t text/tabwriter;\n@@ -300,6 +299,12 @@ var depsRules = `\n \tFMT\n \t< tex...
2025-08-29T17:35:55
tensorflow/tensorflow
455f476a97f0942cec5c7b31519328f396074e79
cc42f6cba1a9a82441087b1c41fe7bc6ef1ad3aa
Add error code documentation for E1001: Compile Time Vmem OOM. PiperOrigin-RevId: 853472407
[ { "path": "third_party/xla/docs/error_codes.md", "patch": "@@ -6,6 +6,7 @@ This page is a list of all error codes emitted by the XLA compiler.\n - [E0101](./errors/error_0101.md)\n - [E0102](./errors/error_0102.md)\n - [E0200](./errors/error_0200.md)\n+- [E1001](./errors/error_1001.md)\n - [E1200]...
2026-01-08T01:13:51
mrdoob/three.js
69e0515e2c23323c341d84ad62c45b2ef8786ca2
4efe2d0aa9226c4dfe35fdf9cb38fb17202d25f2
Examples: Added `hashBlur` and improve `webgpu_backdrop_area` example (#29606) * added hashBlur * improve `webgpu_backdrop_area` example * loop: fix generate const in `start` and `end` * Update webgpu_backdrop_area.jpg
[ { "path": "examples/jsm/tsl/display/hashBlur.js", "patch": "@@ -0,0 +1,26 @@\n+import { float, Fn, vec2, sin, rand, degrees, cos, Loop, vec4 } from 'three/tsl';\n+\n+// https://www.shadertoy.com/view/4lXXWn\n+\n+export const hashBlur = /*#__PURE__*/ Fn( ( [ textureNode, bluramount = float( 0.1 ), repeats = ...
2024-10-10T03:42:39
denoland/deno
53701b4926f130a3f3f8464e7dfb683d4d6036f8
3e9c60a32a028dd8896075d4bf73bf1f2c90b523
fix(dts): update stream type declarations to use `Promise<void>` (#30820) This updates the type declarations for stream-related interfaces to use `Promise<void>` instead of `Promise<undefined>`, aligning with TypeScript's official type declarations.
[ { "path": "cli/tsc/dts/lib.deno_web.d.ts", "patch": "@@ -737,7 +737,7 @@ type ReadableStreamController<T> =\n \n /** @category Streams */\n interface ReadableStreamGenericReader {\n- readonly closed: Promise<undefined>;\n+ readonly closed: Promise<void>;\n cancel(reason?: any): Promise<void>;\n }\n \n@@...
2025-09-23T16:06:28
golang/go
3ee761739b0cbb074f5a6e8b28b491664ec1414a
8709a41d5ef7321f486a1857f189c3fee20e8edd
runtime: free spanQueue on P destroy Span queues must be empty when destroying a P since we are outside of the mark phase. But we don't actually free them, so they simply sit around using memory. More importantly, they are still in work.spanSPMCs.all, so freeDeadSpanSPMCs must continue traversing past them until the e...
[ { "path": "src/runtime/mgcmark_greenteagc.go", "patch": "@@ -618,6 +618,40 @@ func (q *spanQueue) refill(r *spanSPMC) objptr {\n \treturn q.tryGetFast()\n }\n \n+// destroy frees all chains in an empty spanQueue.\n+//\n+// Preconditions:\n+// - World is stopped.\n+// - GC is outside of the mark phase.\n+// ...
2025-10-06T21:28:37
tensorflow/tensorflow
bed1a01a71bf860f6f0a7329e8aa540baae7a6ac
c5bb5ec603c57972add608b1cc527eceb5e622ac
Squeeze inputs in assertNear to handle singleton dimensions (this will be an error in the next numpy version). PiperOrigin-RevId: 853390862
[ { "path": "tensorflow/python/framework/test_util.py", "patch": "@@ -3141,6 +3141,8 @@ def assertNear(self, f1, f2, err, msg=None):\n err: A float value.\n msg: An optional string message to append to the failure message.\n \"\"\"\n+ f1 = np.squeeze(f1)\n+ f2 = np.squeeze(f2)\n # f1...
2026-01-07T21:27:23
denoland/deno
2ad17f7c7c53e505914702ec6758f6bef311345e
9c04b88b0a52636239a5da757a409b1ac41d7535
fix(ext/node): crypto `Cipheriv` and `Decipheriv` base64 encoding (#30806) Fixes #30722 The root cause comes from the `.update()` and `.final()` methods of `Cipheriv` and `Decipheriv`, which internally calls `.toString()` method of Buffer. Doing so adds padding to make the output length a multiple of 4, which we don'...
[ { "path": "ext/node/polyfills/internal/crypto/cipher.ts", "patch": "@@ -52,6 +52,9 @@ import {\n isArrayBufferView,\n } from \"ext:deno_node/internal/util/types.ts\";\n import { ERR_CRYPTO_INVALID_STATE } from \"ext:deno_node/internal/errors.ts\";\n+import { StringDecoder } from \"node:string_decoder\";\n...
2025-09-23T09:38:06
swiftlang/swift
a4366f63e1379d47d5078e9855d9b245164e6514
239bda9a3f7bb055410ee128ea936d7293763b99
[Swiftify] handle ~Escapable return values This adds support for safe wrappers on imported functions returning a ~Escapable value. This is only done if there is lifetime information for the return value, as the wrapper will always have a lifetime error otherwise. __lifetimebound is also ignored *unless* the return val...
[ { "path": "lib/ClangImporter/SwiftifyDecl.cpp", "patch": "@@ -533,23 +533,30 @@ static bool swiftifyImpl(ClangImporter::Implementation &Self,\n \n bool returnIsStdSpan = printer.registerStdSpanTypeMapping(\n swiftReturnTy, clangReturnTy);\n+ bool returnHasBoundsInfo = returnIsStdSpan;\n a...
2026-02-05T18:45:04
golang/go
8709a41d5ef7321f486a1857f189c3fee20e8edd
9b9d02c5a015910ce57024788de2ff254c6cfca6
encoding/asn1: prevent memory exhaustion when parsing using internal/saferio Within parseSequenceOf, reflect.MakeSlice is being used to pre-allocate a slice that is needed in order to fully validate the given DER payload. The size of the slice allocated are also multiple times larger than the input DER: - When using ...
[ { "path": "src/encoding/asn1/asn1.go", "patch": "@@ -22,6 +22,7 @@ package asn1\n import (\n \t\"errors\"\n \t\"fmt\"\n+\t\"internal/saferio\"\n \t\"math\"\n \t\"math/big\"\n \t\"reflect\"\n@@ -666,10 +667,17 @@ func parseSequenceOf(bytes []byte, sliceType reflect.Type, elemType reflect.Type\n \t\toffset +=...
2025-09-03T13:30:56
tensorflow/tensorflow
c5bb5ec603c57972add608b1cc527eceb5e622ac
c5ee1908440a90575bac34526a0be877c86d7eff
Tag PjRt migration candidates explicitly. (BUILD changes) This change adds a new tag "pjrt_migration_candidate" to all test targets that depend on HloTestBase, ClientLibraryTestBase, and HloRunnerTpuSystem. This change also adds a new `use_legacy_runtime` kwarg to `xla_test`, which acts as a replacement for "test_mig...
[ { "path": "third_party/xla/xla/service/gpu/tests/BUILD", "patch": "@@ -120,6 +120,8 @@ xla_test(\n name = \"pred_arithmetic_test\",\n srcs = [\"pred_arithmetic_test.cc\"],\n backends = [\"gpu\"],\n+ tags = [\"pjrt_migration_candidate\"],\n+ use_legacy_runtime = True,\n deps = [\n ...
2026-01-07T21:21:15
kubernetes/kubernetes
817e8cd898429f409a6ccd76bfbbfd8f2c67f53c
3226fe520d67a84b47484eaeb006645ff6d4ec45
make test: fix support for PARALLEL There was an env variable PARALLEL and a -p command line flag, but the value then wasn't passed on to "go test". The new default is to not set any explicit parallelism, which matches the prior (accidental?) behavior of ignoring PARALLEL.
[ { "path": "hack/make-rules/test.sh", "patch": "@@ -101,7 +101,7 @@ isnum() {\n [[ \"$1\" =~ ^[0-9]+$ ]]\n }\n \n-PARALLEL=\"${PARALLEL:-1}\"\n+PARALLEL=\"${PARALLEL:--1}\"\n while getopts \"hp:i:\" opt ; do\n case ${opt} in\n h)\n@@ -175,6 +175,10 @@ if [[ -n \"${KUBE_RACE}\" ]] ; then\n goflags+=...
2025-12-29T17:28:59
denoland/deno
9c04b88b0a52636239a5da757a409b1ac41d7535
3e01e4ba55c6dfa5f9cfe2f932dc6f8f00b302e9
fix(lint): skip module graph validation (#30815) We should just skip module graph validation here. Someone can verify it via other sub commands and this is only used for `no-slow-types`.
[ { "path": "cli/graph_util.rs", "patch": "@@ -385,6 +385,12 @@ pub struct CreateGraphOptions<'a> {\n pub npm_caching: NpmCachingStrategy,\n }\n \n+pub struct CreatePublishGraphOptions<'a> {\n+ pub packages: &'a [JsrPackageConfig],\n+ pub build_fast_check_graph: bool,\n+ pub validate_graph: bool,\n+}\n+\...
2025-09-23T00:57:54
golang/go
9b9d02c5a015910ce57024788de2ff254c6cfca6
3fc4c79fdbb17b9b29ea9f8c29dd780df075d4c4
net/http: add httpcookiemaxnum GODEBUG option to limit number of cookies parsed When handling HTTP headers, net/http does not currently limit the number of cookies that can be parsed. The only limitation that exists is for the size of the entire HTTP header, which is controlled by MaxHeaderBytes (defaults to 1 MB). U...
[ { "path": "doc/godebug.md", "patch": "@@ -153,6 +153,16 @@ for example,\n see the [runtime documentation](/pkg/runtime#hdr-Environment_Variables)\n and the [go command documentation](/cmd/go#hdr-Build_and_test_caching).\n \n+### Go 1.26\n+\n+Go 1.26 added a new `httpcookiemaxnum` setting that controls the m...
2025-09-30T18:02:38
mrdoob/three.js
0e17a92c657be1603d59306044c5a4849cc6cf47
e6e4398a34e8ce340d64e3b64cdb37bd710df9e5
WebGPURenderer: Fix missing updates to geometry attributes (#29589) * WebGPURenderer: Fix geometry attribute not updated regardless of version * BufferAttributes don't have uuid * small cleanup * more cleanup * improve geometry comparison performance * cleanup previous implementation * attributes hav...
[ { "path": "src/materials/nodes/manager/NodeMaterialObserver.js", "patch": "@@ -85,8 +85,15 @@ class NodeMaterialObserver {\n \n \t\tif ( data === undefined ) {\n \n+\t\t\tconst { geometry, material } = renderObject;\n+\n \t\t\tdata = {\n-\t\t\t\tmaterial: this.getMaterialData( renderObject.material ),\n+\t\...
2024-10-09T19:18:58
tensorflow/tensorflow
6839ff3866038a3645252b2201a07ce64f856320
85a7806fc81c9dd6807ae585f2e38533f3e01374
Tag PjRt migration candidates explicitly. (BUILD changes) This change adds a new tag "pjrt_migration_candidate" to all test targets that depend on HloTestBase, ClientLibraryTestBase, and HloRunnerTpuSystem. This change also adds a new `use_legacy_runtime` kwarg to `xla_test`, which acts as a replacement for "test_mig...
[ { "path": "third_party/xla/xla/tests/BUILD", "patch": "@@ -503,6 +503,8 @@ xla_test(\n },\n {},\n ),\n+ tags = [\"pjrt_migration_candidate\"],\n+ use_legacy_runtime = True,\n deps = [\n \":hlo_test_base\",\n \":literal_test_util\",\n@@ -571,7 +573,11 @@ xla_test...
2026-01-07T19:33:37
denoland/deno
3e01e4ba55c6dfa5f9cfe2f932dc6f8f00b302e9
c62ea96ad059ede96e34a37b93d9eb99765c3927
ci: fix Windows build (#30816) Restores debug symbol generation on Windows, this was missed in https://github.com/denoland/deno/pull/30778
[ { "path": ".cargo/config.toml", "patch": "@@ -1,5 +1,5 @@\n [target.x86_64-pc-windows-msvc]\n-rustflags = [\"-C\", \"target-feature=+crt-static\", \"-C\", \"debuginfo=0\", \"-C\", \"link-arg=/DEBUG:NONE\"]\n+rustflags = [\"-C\", \"target-feature=+crt-static\", \"-C\", \"symbol-mangling-version=v0\"]\n \n [t...
2025-09-23T00:31:14
kubernetes/kubernetes
dfa6aa22b21af167634c05a63b1ec541a6004414
3226fe520d67a84b47484eaeb006645ff6d4ec45
DRA scheduler: fix unit test flakes Test_isSchedulableAfterClaimChange was sensitive to system load because of the arbitrary delay when waiting for the assume cache to catch up. Running inside a synctest bubble avoids this. While at it, the unit tests get converted to ktesting (nicer failure output, no extra indention...
[ { "path": "pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go", "patch": "@@ -655,7 +655,11 @@ func (pl *DynamicResources) Filter(ctx context.Context, cs fwk.CycleState, pod *\n \t\t\t// If the claim is not ready yet (ready false, no error) and binding has timed out\n \t\t\t// or binding h...
2025-12-28T21:25:21
golang/go
3fc4c79fdbb17b9b29ea9f8c29dd780df075d4c4
6e4007e8cffbb870e6b606307ab7308236ecefb9
crypto/x509: improve domain name verification Don't use domainToReverseLabels to check if domain names are valid, since it is not particularly performant, and can contribute to DoS vectors. Instead just iterate over the name and enforce the properties we care about. This also enforces that DNS names, both in SANs and...
[ { "path": "src/crypto/x509/name_constraints_test.go", "patch": "@@ -1456,63 +1456,7 @@ var nameConstraintsTests = []nameConstraintsTest{\n \t\texpectedError: \"incompatible key usage\",\n \t},\n \n-\t// An invalid DNS SAN should be detected only at validation time so\n-\t// that we can process CA certificat...
2025-09-15T20:31:22
mrdoob/three.js
e754fce13603bd7c6d982cb76374722df7e37ce2
aedf298f3374fdaac9f8eb8abb415401ce34fe4c
Editor: Fixed editor not loading on Chrome 129.0.6668.100 due to import maps definitions location.
[ { "path": "editor/index.html", "patch": "@@ -12,6 +12,19 @@\n \t<body>\n \t\t<link rel=\"stylesheet\" href=\"css/main.css\">\n \n+\t\t<script type=\"importmap\">\n+\t\t\t{\n+\t\t\t\t\"imports\": {\n+\t\t\t\t\t\"three\": \"../build/three.module.js\",\n+\t\t\t\t\t\"three/addons/\": \"../examples/jsm/\",\n+\n+...
2024-10-09T06:44:47
denoland/deno
ff9840b2660b3e2fc72fcf78d3e8f4686aece5dc
c3181115d9cc6c7a0a41ab65970982ffabafb027
fix(coverage): collect coverage data for workers (#30807) Closes https://github.com/denoland/deno/issues/13206
[ { "path": "cli/factory.rs", "patch": "@@ -99,7 +99,6 @@ use crate::resolver::CliResolver;\n use crate::resolver::on_resolve_diagnostic;\n use crate::standalone::binary::DenoCompileBinaryWriter;\n use crate::sys::CliSys;\n-use crate::tools::coverage::CoverageCollectorState;\n use crate::tools::installer::Bin...
2025-09-22T22:33:53
tensorflow/tensorflow
8901b5d76938877981e42a99c932c8d0b090a438
20b65b41c2246eb7adde748f0362bb3ac1e581a8
Add back error_3000 as it was overwritten earlier. PiperOrigin-RevId: 853335761
[ { "path": "third_party/xla/docs/error_codes.md", "patch": "@@ -7,4 +7,5 @@ This page is a list of all error codes emitted by the XLA compiler.\n - [E0102](./errors/error_0102.md)\n - [E0200](./errors/error_0200.md)\n - [E1200](./errors/error_1200.md)\n+- [E3000](./errors/error_3000.md)\n - [E3001]...
2026-01-07T19:06:09
golang/go
6e4007e8cffbb870e6b606307ab7308236ecefb9
6f7926589d03180863aa05cbb55a9d9c63e76b99
crypto/x509: mitigate DoS vector when intermediate certificate contains DSA public key An attacker could craft an intermediate X.509 certificate containing a DSA public key and can crash a remote host with an unauthenticated call to any endpoint that verifies the certificate chain. Thank you to Jakub Ciolek for repor...
[ { "path": "src/crypto/x509/verify.go", "patch": "@@ -927,7 +927,10 @@ func alreadyInChain(candidate *Certificate, chain []*Certificate) bool {\n \t\tif !bytes.Equal(candidate.RawSubject, cert.RawSubject) {\n \t\t\tcontinue\n \t\t}\n-\t\tif !candidate.PublicKey.(pubKeyEqual).Equal(cert.PublicKey) {\n+\t\t// ...
2025-09-11T20:27:04
mrdoob/three.js
35f4555fccf70577e29b40acc948302d92266102
322aecea4605985ff5b8a0b925a24c237ab20455
GTAONode: Fix AO with WebGL backend. (#29593) * GTAONode: Fix AO with WebGL backend. * E2E: Update screenshot. * DenoiseNode: Use `getViewPosition()` from core. * DenoiseNode: Clean up.
[ { "path": "examples/jsm/tsl/display/DenoiseNode.js", "patch": "@@ -1,5 +1,5 @@\n import { Vector2, Vector3 } from 'three';\n-import { convertToTexture, TempNode, nodeObject, Fn, float, NodeUpdateType, uv, uniform, Loop, luminance, vec2, vec3, vec4, uniformArray, int, dot, max, pow, abs, If, textureSize, sin...
2024-10-08T15:05:57
denoland/deno
c3181115d9cc6c7a0a41ab65970982ffabafb027
ddfdabc9c526af56abc572356b1d453f45c296fd
fix(check): support "compilerOptions.paths" (#30766)
[ { "path": "cli/schemas/config-file.v1.json", "patch": "@@ -312,6 +312,24 @@\n \"default\": false,\n \"markdownDescription\": \"Raise an error when a function parameter isn't read\\n\\nSee more: https://www.typescriptlang.org/tsconfig#noUnusedParameters\"\n },\n+ \"baseUrl\...
2025-09-22T19:49:15
tensorflow/tensorflow
972410808f7e4e3772b962a18e92138f7377071a
13b00672864a642995af09ca352580d2e9fa0d78
Homogenize formatting of Error docs PiperOrigin-RevId: 853332395
[ { "path": "third_party/xla/docs/errors/error_0100.md", "patch": "@@ -1,44 +1,53 @@\n # Error code: 0100\n \n-**Category:** Buffer allocation failure\n+**Category:** Runtime: Buffer allocation failure\n \n-**Type:** Runtime\n+This error indicates that XLA:TPU runtime’s memory allocator failed to find a\n+sui...
2026-01-07T18:59:19
mrdoob/three.js
322aecea4605985ff5b8a0b925a24c237ab20455
55cf9495d0ff81e53d5792e291bc6de4d8b69839
Revert "GTAONode: Fix AO with WebGL backend. (#29588)" (#29590) This reverts commit 55cf9495d0ff81e53d5792e291bc6de4d8b69839.
[ { "path": "examples/jsm/tsl/display/DenoiseNode.js", "patch": "@@ -1,5 +1,5 @@\n import { Vector2, Vector3 } from 'three';\n-import { getViewPosition, convertToTexture, TempNode, nodeObject, Fn, float, NodeUpdateType, uv, uniform, Loop, luminance, vec2, vec3, vec4, uniformArray, int, dot, max, pow, abs, If,...
2024-10-08T14:19:10
kubernetes/kubernetes
ecf7e6d41f98c83068c1a99976d59e1b15cb560e
2a3a6605ac9b184711ef212ecbe26c8af4a8bac8
fix(kubeadm): prevent nil pointer panic in reset command Signed-off-by: devmanishofficial <devmanishofficial@gmail.com>
[ { "path": "cmd/kubeadm/app/cmd/reset.go", "patch": "@@ -167,7 +167,7 @@ func newResetData(cmd *cobra.Command, opts *resetOptions, in io.Reader, out io.W\n \t\tcertificatesDir = opts.externalcfg.CertificatesDir\n \t} else if len(resetCfg.CertificatesDir) > 0 { // configured in the ResetConfiguration\n \t\tce...
2025-12-30T05:15:14
swiftlang/swift
9f58221080b360908f0f4c428d704e0b2ed423ad
d1716b37b911fe2520764a270c00b9ba5055c5ba
check for noEscape within pack expansion This commit adds a case for PackExpansionType within TypeBase isNoEscape so that, like functions and tuples, we can use the type specific isNoEscape logic to search the contents of the type. This enables existing logic to detect no escape functions being captured in an escaping...
[ { "path": "lib/AST/Type.cpp", "patch": "@@ -4431,6 +4431,9 @@ bool TypeBase::isNoEscape() const {\n if (auto funcTy = dyn_cast<FunctionType>(type))\n return funcTy->isNoEscape();\n \n+ if (auto packExpansionTy = dyn_cast<PackExpansionType>(type))\n+ return packExpansionTy.getPatternType()->isNoEsc...
2026-02-04T01:35:37
denoland/deno
ddfdabc9c526af56abc572356b1d453f45c296fd
7938d5d2a448b876479287de61e9e3b8c6109bc8
fix(fetch): handle proxied urls correctly and add test (#30794)
[ { "path": "Cargo.lock", "patch": "@@ -5062,18 +5062,20 @@ dependencies = [\n \n [[package]]\n name = \"hyper-util\"\n-version = \"0.1.10\"\n+version = \"0.1.17\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"df2dcfbe0677734ab2f3ffa7fa7bfd4706bfdc1ef393f2ee30184aed67e631...
2025-09-22T11:30:23
mrdoob/three.js
55cf9495d0ff81e53d5792e291bc6de4d8b69839
36ae025c7030a0e9f2bc221728014e030e9ef9db
GTAONode: Fix AO with WebGL backend. (#29588) * GTAONode: Fix AO with WebGL backend. * E2E: Update screenshot.
[ { "path": "examples/jsm/tsl/display/DenoiseNode.js", "patch": "@@ -1,5 +1,5 @@\n import { Vector2, Vector3 } from 'three';\n-import { convertToTexture, TempNode, nodeObject, Fn, float, NodeUpdateType, uv, uniform, Loop, luminance, vec2, vec3, vec4, uniformArray, int, dot, max, pow, abs, If, textureSize, sin...
2024-10-08T13:59:39
tensorflow/tensorflow
b26c9398513ec59551b9f09d240174dd329dabde
dfc2c904c7ca3ea6749b1604bdda5877855e0582
[NanoRt] Implement `NanoExecutable::GetDonatableInputIndices()` This change adds the implementation of `NanoExecutable::GetDonatableInputIndices()`. This change also makes `LoadedExecutableImplTest.GetDonatableInputIndices` perform more strict checks across various IFRT implementations by not accepting `Unimplemented...
[ { "path": "third_party/xla/xla/backends/cpu/nanort/ifrt_client.cc", "patch": "@@ -24,6 +24,7 @@ limitations under the License.\n #include <functional>\n #include <iterator>\n #include <memory>\n+#include <new>\n #include <optional>\n #include <string>\n #include <utility>\n@@ -48,6 +49,7 @@ limitations unde...
2026-01-07T18:42:22
denoland/deno
cd0a592b2df5462b763455354f106d8ede0b09ea
328d5ef2a0febd3c46916c9d7cc74f8a578791af
fix: restore Windows debug info (#30778) Restores generation of debug info on Windows, that was disabled in 2.5.0 as part of V8 upgrade - https://github.com/denoland/deno/pull/30629
[ { "path": ".github/workflows/ci.generate.ts", "patch": "@@ -761,7 +761,7 @@ const ci = {\n name: \"Generate symcache\",\n if: [\n \"(matrix.job == 'test' || matrix.job == 'bench') &&\",\n- \"matrix.os != 'windows' && matrix.profile == 'release' && (matrix.use_sysro...
2025-09-19T01:14:05
mrdoob/three.js
186d7b47d8fabcb39440f6e3ed6daf85cf409052
0c7cf78a64a724c24fcca51500b8f3d1b9931af5
BatchedMesh: add support for resizing instance count, geometry size (#29577) * Add setInstanceCount function * Add setGeometrySize function * Prefer using earlier ids when reusing ids * Check for size validity * Fix implementation bugs * Add comment * Add docs
[ { "path": "docs/api/en/objects/BatchedMesh.html", "patch": "@@ -301,14 +301,36 @@ <h3>\n \t\t\tCalling this will change all instances that are rendering that geometry.\n \t\t</p>\n \n-\n \t\t<h3>\n \t\t\t[method:this optimize]()\n \t\t</h3>\n \t\t<p>\n \t\t\tRepacks the sub geometries in [name] to remove an...
2024-10-08T06:26:47
swiftlang/swift
75433fd6ebfac2711a8cfcda7e5c31828edb7266
f23637a8827234be616ecd4dc993a31140c7b650
Disable coro-accessor test on Linux The test is actually failing on Linux because there are symbols removed. I'm not familiar enough with this test to fix it at the moment, so disabling for now and listing the incorrect symbols.
[ { "path": "validation-test/Evolution/test_coroutine_accessors.swift", "patch": "@@ -3,6 +3,19 @@\n // REQUIRES: executable_test\n // REQUIRES: swift_feature_CoroutineAccessors\n \n+// Linux fails with the following removed symbols:\n+// Removed Symbols:\n+// $s19coroutine_accessors13ResilientEnumO1sSivg\n+/...
2026-02-07T00:52:59
golang/go
11d5484190f80823c9b6312fd40f6491e864111b
2e52060084ff170097347457525f0debde91aea9
runtime: fix self-deadlock on sbrk platforms The sbrk mem.go implementation doesn't enforce being called on the systemstack, but it can call back into itself if there's a stack growth. Because the sbrk implementation requires acquiring memlock, it can self-deadlock. For the most part the mem.go API is called on the s...
[ { "path": "src/runtime/mem_sbrk.go", "patch": "@@ -48,13 +48,32 @@ type memHdrPtr uintptr\n func (p memHdrPtr) ptr() *memHdr { return (*memHdr)(unsafe.Pointer(p)) }\n func (p *memHdrPtr) set(x *memHdr) { *p = memHdrPtr(unsafe.Pointer(x)) }\n \n+// memAlloc allocates n bytes from the brk reservation, or if...
2025-10-07T16:10:19
tensorflow/tensorflow
bad6d951c8297d3a2ec911dbcdbb8f4f9dca447b
a28470878216839e9442664c6ccd8787fc54a341
Tag PjRt migration candidates explicitly. (BUILD changes) This change adds a new tag "pjrt_migration_candidate" to all test targets that depend on HloTestBase, ClientLibraryTestBase, and HloRunnerTpuSystem. This change also adds a new `use_legacy_runtime` kwarg to `xla_test`, which acts as a replacement for "test_mig...
[ { "path": "third_party/xla/xla/backends/gpu/runtime/BUILD", "patch": "@@ -956,6 +956,8 @@ xla_test(\n name = \"gpublas_lt_matmul_thunk_test\",\n srcs = [\"gpublas_lt_matmul_thunk_test.cc\"],\n backends = [\"gpu\"],\n+ tags = [\"pjrt_migration_candidate\"],\n+ use_legacy_runtime = True,\n ...
2026-01-07T18:26:00
mrdoob/three.js
234489183cc06b67ee40c383787ddfffe27ceb74
b378fbac401afce6a8ceae19c51aacae8ae818e2
Examples: Fix `webgpu_tsl_procedural_terrain` warning (#29574) * ShadowNode: Use `transformedNormalWorld` * getGeometryRoughness: Return 0. if there is no normal buffer * update screenshot
[ { "path": "src/nodes/functions/material/getGeometryRoughness.js", "patch": "@@ -1,7 +1,13 @@\n import { normalView } from '../../accessors/Normal.js';\n-import { Fn } from '../../tsl/TSLBase.js';\n+import { float, Fn } from '../../tsl/TSLBase.js';\n \n-const getGeometryRoughness = /*@__PURE__*/ Fn( () => {\...
2024-10-07T05:49:14
denoland/deno
328d5ef2a0febd3c46916c9d7cc74f8a578791af
ebcb2fa29405fe0d3f503580782ca0dad80cee90
fix(ext/node): accept ArrayBuffer on crypto.timingSafeEqual (#30773) Fixes #30759 The buffer validation is based on Node.js implementation: https://github.com/nodejs/node/blob/591ba692bfe30408e6a67397e7d18bfa1b9c3561/src/crypto/crypto_util.h#L467-L472
[ { "path": "ext/node/polyfills/internal_binding/_timingSafeEqual.ts", "patch": "@@ -4,8 +4,29 @@\n // deno-lint-ignore-file prefer-primordials\n \n import { Buffer } from \"node:buffer\";\n-import { ERR_CRYPTO_TIMING_SAFE_EQUAL_LENGTH } from \"ext:deno_node/internal/errors.ts\";\n-import { validateBuffer } f...
2025-09-18T14:51:56
golang/go
f86ddb54b5b8e4cb30b8fe2f9f3a2c0c172e7c37
c938051dd0b80a5c60572d6807270d06ca685d2e
cmd/go: refactor usage of `ForceUseModules` This commit refactors usage of the global variable `ForceUseModules` to the global LoaderState field of the same name. This commit is part of the overall effort to eliminate global modloader state. [git-generate] cd src/cmd/go/internal/modload rf 'mv State.forceUseModules ...
[ { "path": "src/cmd/go/internal/load/pkg.go", "patch": "@@ -3348,7 +3348,7 @@ func GoFilesPackage(ctx context.Context, opts PackageOpts, gofiles []string) *Pa\n // would cause it to be interpreted differently if it were the main module\n // (replace, exclude).\n func PackagesAndErrorsOutsideModule(ctx contex...
2025-08-20T23:21:56
tensorflow/tensorflow
a28470878216839e9442664c6ccd8787fc54a341
f4ed22f393aa2908cb9721d66f715243df73b0d0
Fix SELECT test on some compilers PiperOrigin-RevId: 853317469
[ { "path": "tensorflow/lite/kernels/select_test.cc", "patch": "@@ -119,8 +119,8 @@ TEST(SelectOpTest, SelectFloat16) {\n TensorType_FLOAT16);\n \n model.PopulateTensor<bool>(model.input1(), {true, false, true, false});\n- model.PopulateTensor<half>(model.input2(), {0.1, 0.2, 0.3, 0.4...
2026-01-07T18:23:08
mrdoob/three.js
b7712d36952311030f4d3e6e6526d654edc712e1
c32e4c729a66ceef5896ee54a586ebdafe962d7d
Fix Compressed 3D Textures failing on Android and Meta Quest (#29566)
[ { "path": "src/renderers/webgl-fallback/utils/WebGLTextureUtils.js", "patch": "@@ -445,8 +445,7 @@ class WebGLTextureUtils {\n \n \t\t\t\t\t\tif ( glFormat !== null ) {\n \n-\t\t\t\t\t\t\tgl.compressedTexSubImage3D( gl.TEXTURE_2D_ARRAY, i, 0, 0, 0, mipmap.width, mipmap.height, image.depth, glFormat, mipmap....
2024-10-06T12:31:26
denoland/deno
ebcb2fa29405fe0d3f503580782ca0dad80cee90
5570d6a56b8623301df42cc194285b6349c49bd6
fix(ext/node): `fs.statfsSync` and `fs.statfs` compatibility (#30662) Towards #29972 - Converts the polyfill to typescript. - Implement async op. - Allows `Buffer` type path. - Allows [parallel/test-fs-statfs.js](https://github.com/nodejs/node/blob/v24.2.0/test/parallel/test-fs-statfs.js) test to pass.
[ { "path": "ext/node/lib.rs", "patch": "@@ -361,6 +361,7 @@ deno_core::extension!(deno_node,\n ops::fs::op_node_mkdtemp<P>,\n ops::fs::op_node_open_sync<P>,\n ops::fs::op_node_open<P>,\n+ ops::fs::op_node_statfs_sync<P>,\n ops::fs::op_node_statfs<P>,\n ops::winerror::op_node_sys_to_uv_...
2025-09-18T14:03:30
swiftlang/swift
1ff89bec4131448c5f66b40858f9a9fcb481310d
6021a238f501cd56379a3165790686ee80e317f2
[Swiftify] check clang type for escapability instead of Swift type Checking the escapability of types at this point during compilation can return the wrong result and prevent the correct result from being calculated later due to caching. rdar://169839008
[ { "path": "lib/ClangImporter/SwiftifyDecl.cpp", "patch": "@@ -26,6 +26,7 @@\n #include \"swift/AST/TypeCheckRequests.h\"\n #include \"swift/AST/TypeWalker.h\"\n #include \"swift/Basic/Defer.h\"\n+#include \"swift/ClangImporter/ClangImporterRequests.h\"\n \n #include \"clang/AST/ASTContext.h\"\n #include \"c...
2026-02-06T07:28:15
mrdoob/three.js
c32e4c729a66ceef5896ee54a586ebdafe962d7d
af3a657147672f523da456d6b95c9eb524b0edbc
Examples: Fix shadows in outline demo. (#29565)
[ { "path": "examples/webgl_postprocessing_outline.html", "patch": "@@ -148,7 +148,7 @@\n \t\t\t\tscene.add( new THREE.AmbientLight( 0xaaaaaa, 0.6 ) );\n \n \t\t\t\tconst light = new THREE.DirectionalLight( 0xddffdd, 2 );\n-\t\t\t\tlight.position.set( 1, 1, 1 );\n+\t\t\t\tlight.position.set( 5, 5, 5 );\n \t\t...
2024-10-06T09:31:36
golang/go
c938051dd0b80a5c60572d6807270d06ca685d2e
64699542031b994ec4fdb6de887a94b69a372f9b
Revert "cmd/compile: redo arm64 LR/FP save and restore" This reverts commit 719dfcf8a8478d70360bf3c34c0e920be7b32994. Reason for revert: Causing crashes. Change-Id: I0b8526dd03d82fa074ce4f97f1789eeac702b3eb Reviewed-on: https://go-review.googlesource.com/c/go/+/709755 Reviewed-by: Keith Randall <khr@google.com> Revi...
[ { "path": "src/cmd/compile/abi-internal.md", "patch": "@@ -576,19 +576,19 @@ A function's stack frame, after the frame is created, is laid out as\n follows:\n \n +------------------------------+\n- | return PC |\n- | frame pointer on entry | ← R29 points to\n | ... loc...
2025-10-07T14:58:50
denoland/deno
0c67bb52d5fb9a55c7ada9383dccdc1e7954e4eb
a7af65fd4c60ec174eb270db39e620fec460c533
fix: add top level permissions key to config file schema (#30765) Closes https://github.com/denoland/deno/issues/30762
[ { "path": "cli/schemas/config-file.v1.json", "patch": "@@ -857,6 +857,11 @@\n }\n ]\n },\n+ \"permissions\": {\n+ \"type\": \"object\",\n+ \"description\": \"Named permission sets that can be selected with -P/--permission-set or referenced in \\\"test\\\", \\\"bench\\\", or \\...
2025-09-17T19:54:52
tensorflow/tensorflow
ca91d5d5cdae1a75dda22a9cf46799c08407bad3
cf48faf37271ca5213619b1b2bfdcc70406b4373
Tag PjRt migration candidates explicitly. (BUILD changes) This change adds a new tag "pjrt_migration_candidate" to all test targets that depend on HloTestBase, ClientLibraryTestBase, and HloRunnerTpuSystem. This change also adds a new `use_legacy_runtime` kwarg to `xla_test`, which acts as a replacement for "test_mig...
[ { "path": "third_party/xla/xla/service/BUILD", "patch": "@@ -2326,6 +2326,7 @@ xla_cc_test(\n size = \"medium\",\n srcs = [\"triangular_solve_expander_test.cc\"],\n shard_count = 12,\n+ tags = [\"pjrt_migration_candidate\"],\n deps = [\n \":triangular_solve_expander\",\n \...
2026-01-07T18:09:41
kubernetes/kubernetes
a8443862026249835019662d4360c400cc8ea047
ea0dce1df19a58d006a8a1d81dd3a412e707e0c5
fix: resolve data race in WaitForAllPodsUnmount when collecting errors
[ { "path": "pkg/kubelet/volumemanager/volume_manager.go", "patch": "@@ -23,7 +23,6 @@ import (\n \t\"slices\"\n \t\"strconv\"\n \t\"strings\"\n-\t\"sync\"\n \t\"time\"\n \n \tutilfeature \"k8s.io/apiserver/pkg/util/feature\"\n@@ -511,21 +510,18 @@ func (vm *volumeManager) WaitForUnmount(ctx context.Context, ...
2025-12-17T12:41:33
mrdoob/three.js
af3a657147672f523da456d6b95c9eb524b0edbc
3b49478017ca7f7ad879aca94129e5bf268864ed
WebGPURenderer: Logarithmic Depth Refinement (#29561) * 1. Improved wording on a TODO in AnalyticLightNode.js. 2. Removed unnecessary TODO in NodeMaterial.js. 3. Removed unnecessary ".add( 1 ).div( 2 )" from the log depth calculation and added more detail to the log depth comments in ViewportDepthNode.js. * Made ...
[ { "path": "src/materials/nodes/NodeMaterial.js", "patch": "@@ -240,12 +240,6 @@ class NodeMaterial extends Material {\n \n \t\t\t\tif ( camera.isPerspectiveCamera ) {\n \n-\t\t\t\t\t// Note: normally we could use \"float( camera.near )\" and \"float( camera.far )\" for the near/far arguments, but\n-\t\t\t\t...
2024-10-06T02:55:29