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
swiftlang/swift
52666cee857ffff8e4961b0cd0d4d11afdf76cf6
44bd711fd556c4b43773a30e171db7f70aa30214
test: add a crasher test case when combining anyAppleOS and @objc
[ { "path": "test/PrintAsObjC/anyAppleOS_availability.swift", "patch": "@@ -0,0 +1,41 @@\n+// RUN: %empty-directory(%t)\n+// RUN: not --crash %target-swift-frontend(mock-sdk: %clang-importer-sdk) -enable-experimental-feature AnyAppleOSAvailability -typecheck %s -emit-objc-header-path %t/anyAppleOS.h -target a...
2026-01-19T23:05:23
denoland/deno
6bb3f6fad6157dedefb350565494d3c66ddb74b7
34ed9bab2ba9084d80f03bb3255bb02fbec7ba8a
fix(node/assert): throw on deepStrictEqual({}, Object.create(null)) (#29428)
[ { "path": "ext/node/polyfills/_util/std_asserts.ts", "patch": "@@ -198,9 +198,14 @@ export function equal(c: unknown, d: unknown): boolean {\n }\n \n function constructorsEqual(a: object, b: object) {\n- return a.constructor === b.constructor ||\n- a.constructor === Object && !b.constructor ||\n- !a....
2025-06-04T02:00:54
golang/go
f506ad2644ff9c76d7e9fa00710248009d449cac
9c507e794297c9a7f160f71b9910d5de27b9a517
cmd/compile/internal/escape: speed up analyzing some functions with many closures Escape analysis examines functions in batches. In some cases, closures are in the same batch as their parent function, but in other cases, the closures are in different batches. This can mean the per-batch ir.ReassignOracle cache is not ...
[ { "path": "src/cmd/compile/internal/escape/escape.go", "patch": "@@ -122,17 +122,24 @@ type escape struct {\n }\n \n func Funcs(all []*ir.Func) {\n-\tir.VisitFuncsBottomUp(all, Batch)\n+\t// Make a cache of ir.ReassignOracles. The cache is lazily populated.\n+\t// TODO(thepudds): consider adding a field on ...
2025-07-14T23:36:00
mrdoob/three.js
d0b43f2fb25275216bcc0d2760681136cda76457
a963bf7092dcb3653d0ff3b9980215141dea7240
WGLSLNodeBuilder: Fix equals (#27826)
[ { "path": "examples/jsm/renderers/webgpu/nodes/WGSLNodeBuilder.js", "patch": "@@ -114,9 +114,9 @@ fn threejs_greaterThan( a : vec3<f32>, b : vec3<f32> ) -> vec3<bool> {\n \tmod_vec3: new CodeNode( 'fn threejs_mod_vec3( x : vec3f, y : vec3f ) -> vec3f { return x - y * floor( x / y ); }' ),\n \tmod_vec4: new ...
2024-02-26T16:40:12
denoland/deno
a3395ba97218b91f3d743b0af1a8086d108eb5f0
b42d5906cd57aec2178258332ace4e2463388ff6
fix(otel): set timestamp on opentelemetry log records (#28625) Co-authored-by: David Sherret <dsherret@users.noreply.github.com>
[ { "path": "ext/telemetry/lib.rs", "patch": "@@ -882,7 +882,9 @@ pub fn handle_log(record: &log::Record) {\n \n let mut log_record = LogRecord::default();\n \n- log_record.set_observed_timestamp(SystemTime::now());\n+ let now = SystemTime::now();\n+ log_record.set_timestamp(now);\n+ log_record.set_obse...
2025-06-03T17:56:32
golang/go
9c507e794297c9a7f160f71b9910d5de27b9a517
9782dcfd16bcf10f576504bacf67eb41a6cef88f
cmd/link, runtime: on Wasm, put only function index in method table and func table In the type descriptor's method table, it contains relative PCs of the methods (relative to the start of the text section) stored as 32-bit offsets. On Wasm, a PC is PC_F<<16 + PC_B, where PC_F is the function index, and PC_B is the blo...
[ { "path": "src/cmd/internal/obj/wasm/wasmobj.go", "patch": "@@ -372,6 +372,9 @@ func preprocess(ctxt *obj.Link, s *obj.LSym, newprog obj.ProgAlloc) {\n \t}\n \ttableIdxs = append(tableIdxs, uint64(numResumePoints))\n \ts.Size = pc + 1\n+\tif pc >= 1<<16 {\n+\t\tctxt.Diag(\"function too big: %s exceeds 65536...
2023-12-26T20:35:56
mrdoob/three.js
5e2397a4b67d375e0fd6001f550c79fdf036696b
9444fc913e107222e6bafe62f2c277c76d4e1fd1
BufferGeometry: Remove outdated advice from error message. (#27824)
[ { "path": "src/core/BufferGeometry.js", "patch": "@@ -300,7 +300,7 @@ class BufferGeometry extends EventDispatcher {\n \n \t\tif ( position && position.isGLBufferAttribute ) {\n \n-\t\t\tconsole.error( 'THREE.BufferGeometry.computeBoundingBox(): GLBufferAttribute requires a manual bounding box. Alternativel...
2024-02-26T11:45:46
denoland/deno
a756a7bf8e943299d1da8497f81419d7683c0119
0e92f1a312a401058520bc07e8dbf9e7eed2e444
fix(ext/node): fix prototype of asymmetricKeyDetails of AsymmetricKeyObject (#29576)
[ { "path": "ext/node/polyfills/internal/crypto/keys.ts", "patch": "@@ -781,7 +781,7 @@ class AsymmetricKeyObject extends KeyObject {\n }\n \n get asymmetricKeyDetails() {\n- return op_node_get_asymmetric_key_details(this[kHandle]);\n+ return { ...op_node_get_asymmetric_key_details(this[kHandle]) };...
2025-06-03T12:45:28
mrdoob/three.js
c825051719fa204822beb6c459945b944cc39d82
50856204ddbd23840d540f342d48213c76bf17c9
DragControls: Add support for multiple groups. (#27791) * Update DragControls.js Fixed Group drag and drop issue. Existing code can drag only one group now we can drag multiple group in scene. * Added new updateObject function for dynamically update objects * function name updated as per review comment *...
[ { "path": "examples/jsm/controls/DragControls.js", "patch": "@@ -30,7 +30,7 @@ class DragControls extends EventDispatcher {\n \t\t_domElement.style.touchAction = 'none'; // disable touch scroll\n \n \t\tlet _selected = null, _hovered = null;\n-\n+ \n \t\tconst _intersections = [];\n \n \t\tthis.mode = 'tran...
2024-02-26T09:35:41
golang/go
c876bf9346f1afb5471947a65fb1e105caeff433
b4309ece66ca989a38ed65404850a49ae8f92742
cmd/internal/obj/wasm: use 64-bit instructions for indirect calls Currently, on Wasm, an indirect call is compiled to // function index = PC>>16, PC is already on stack I32WrapI64 I32Const $16 ShrU // set PC_B to 0 ... // actual call CallIndirect Specifically, the function index is extracted from bits 16-31 ...
[ { "path": "src/cmd/internal/obj/wasm/wasmobj.go", "patch": "@@ -465,9 +465,9 @@ func preprocess(ctxt *obj.Link, s *obj.LSym, newprog obj.ProgAlloc) {\n \n \t\t\tcase obj.TYPE_NONE:\n \t\t\t\t// (target PC is on stack)\n+\t\t\t\tp = appendp(p, AI64Const, constAddr(16)) // only needs PC_F bits (16-63), PC_B b...
2024-02-29T19:27:57
kubernetes/kubernetes
1d9c646892c0c61756f9813f2c83bf0fa84b4bf8
d2f780e277f3a0824e2d063637bc4bc913e7e3c1
fix unit tests for ippr ga
[ { "path": "pkg/api/pod/util_test.go", "patch": "@@ -2952,6 +2952,7 @@ func TestValidateAllowNonLocalProjectedTokenPathOption(t *testing.T) {\n }\n \n func TestDropInPlacePodVerticalScaling(t *testing.T) {\n+\tfeaturegatetesting.SetFeatureGateEmulationVersionDuringTest(t, utilfeature.DefaultFeatureGate, vers...
2025-10-30T17:28:42
denoland/deno
0e92f1a312a401058520bc07e8dbf9e7eed2e444
f408a502e04c2aa465a8eadeedbaddabc05563fd
fix(ext/node): make Buffer work with resizable ABs (#29578)
[ { "path": "ext/node/polyfills/internal/buffer.mjs", "patch": "@@ -993,9 +993,7 @@ function fromArrayBuffer(obj, byteOffset, length) {\n throw new codes.ERR_BUFFER_OUT_OF_BOUNDS(\"offset\");\n }\n \n- if (length === undefined) {\n- length = maxLength;\n- } else {\n+ if (length !== undefined) {\n ...
2025-06-03T09:45:39
mrdoob/three.js
2adfd75ee0f3cfdc94066640b27cdbbbdf863e06
0bd5c6549f14fe5589a44b9b2788c8a0d6f4ff12
WebGPURenderer: Fix flipY `Data*Texture` (#27815)
[ { "path": "examples/jsm/renderers/webgpu/utils/WebGPUTextureUtils.js", "patch": "@@ -327,13 +327,13 @@ class WebGPUTextureUtils {\n \n \t\tif ( texture.isDataTexture || texture.isData3DTexture ) {\n \n-\t\t\tthis._copyBufferToTexture( options.image, textureData.texture, textureDescriptorGPU, 0, false );\n+\...
2024-02-24T07:25:21
golang/go
b4309ece66ca989a38ed65404850a49ae8f92742
75a19dbcd7e69dc619fd57b9ed32f697121160ba
cmd/internal/doc: upgrade godoc pkgsite to 01b046e Increase the dependency on the doc tool to bring in the fixes to CL 687918 and CL 687976. Fixes golang/go#74459 Change-Id: I9cdefdfd9792a142ad14bae3d4f7bb9d8256a246 Reviewed-on: https://go-review.googlesource.com/c/go/+/687997 Reviewed-by: Jonathan Amsterdam <jba@go...
[ { "path": "src/cmd/internal/doc/main.go", "patch": "@@ -243,7 +243,7 @@ func doPkgsite(urlPath string) error {\n \t\tenv = append(env, \"GOPROXY=\"+gomodcache+\",\"+goproxy)\n \t}\n \n-\tconst version = \"v0.0.0-20250608123103-82c52f1754cd\"\n+\tconst version = \"v0.0.0-20250714212547-01b046e81fe7\"\n \tcmd...
2025-07-15T15:26:39
kubernetes/kubernetes
2e543d151b6f58ac6354a398282a43d4cca94cb5
6056b0dfa4bb295cfe02931da5bd38555ccabab4
DRA device taints: convert unit test to synctest The immediate benefit is that the time required for running the package's unit test goes down from ~10 seconds (because of required real-world delays) to ~0.5 seconds (depending on the CPU performance of the host). It can also make writing tests easier because after a `...
[ { "path": "pkg/controller/devicetainteviction/device_taint_eviction.go", "patch": "@@ -218,9 +218,11 @@ type allocatedClaim struct {\n \n func (tc *Controller) deletePodHandler(c clientset.Interface, emitEventFunc func(tainteviction.NamespacedObject)) func(ctx context.Context, fireAt time.Time, args *tainte...
2025-10-15T10:12:13
swiftlang/swift
58855f46b07366c2ab3e0367e0ba34025d22ebb9
43bd221889aeacd3a6e12a557607d310a2ab50ea
[cxx-interop] Do not crash when an operator returns an internal type as `auto` If an overloaded operator returns `auto`, and the implementation of it returns an instance of a type declared within the operator, Swift was crashing when trying to import the internal type. Instead of crashing, let's not import those overl...
[ { "path": "lib/ClangImporter/ImportDecl.cpp", "patch": "@@ -10165,7 +10165,7 @@ DeclContext *ClangImporter::Implementation::importDeclContextImpl(\n assert(!dc->isTranslationUnit());\n \n auto decl = dyn_cast<clang::NamedDecl>(dc);\n- if (!decl)\n+ if (!decl || !decl->getDeclName().isIdentifier())\n ...
2026-01-19T18:08:14
mrdoob/three.js
0bd5c6549f14fe5589a44b9b2788c8a0d6f4ff12
289444e23fc91a82b88a79c2eb89bc5961f6acfd
VOXLoader: Improve `version` error message. (#27812)
[ { "path": "examples/jsm/loaders/VOXLoader.js", "patch": "@@ -56,9 +56,16 @@ class VOXLoader extends Loader {\n \t\tconst id = data.getUint32( 0, true );\n \t\tconst version = data.getUint32( 4, true );\n \n-\t\tif ( id !== 542658390 || version !== 150 ) {\n+\t\tif ( id !== 542658390 ) {\n \n-\t\t\tconsole.e...
2024-02-23T18:38:01
golang/go
7dceabd3be3d119bb2539030e0e824ad85a10202
d826bf4d7440ee07f865e5852638b5a2468687ff
runtime/maps: fix typo in group.go comment (instrinsified -> intrinsified) Several comments refer to bitset as 'instrinsified', which is likely a typo, because it refers to the output of the intrinsics implemented with SIMD. Change-Id: I00f26b8d8128592ee0e9dc8a1b1480c93a9542d6 GitHub-Last-Rev: 8a4236710979f2f969210e0...
[ { "path": "src/internal/runtime/maps/group.go", "patch": "@@ -157,7 +157,7 @@ func (g ctrlGroup) matchH2(h uintptr) bitset {\n // Portable implementation of matchH2.\n //\n // Note: On AMD64, this is an intrinsic implemented with SIMD instructions. See\n-// note on bitset about the packed instrinsified retu...
2025-07-15T12:21:38
tensorflow/tensorflow
4fe5d49f8e1a9cf2feca56ba25147f42be761aa3
7ebeb5ae70991cad990e84378c7ad4f08d176265
Refactor CreateOutputLeafTpuBuffer to call DefineBuffer instead. Because of error buffers this needs to take memory_space. PiperOrigin-RevId: 835421848
[ { "path": "third_party/xla/xla/pjrt/common_pjrt_client.cc", "patch": "@@ -152,7 +152,7 @@ CommonPjRtClient::BufferFromHostLiteral(const LiteralSlice& literal,\n LinearizeInto(literal, device_shape,\n HostBufferSemantics::kImmutableUntilTransferCompletes,\n raw_b...
2025-11-22T02:00:26
denoland/deno
fc02cf6a1bc1537eca669bb0f5ad4561fde1793b
cb1e8a87a5acd939d35e0408b24597f8947c8a55
fix(ext/node): various `node:sqlite` fixes (#29404)
[ { "path": "ext/node/ops/sqlite/database.rs", "patch": "@@ -9,45 +9,149 @@ use std::ffi::CString;\n use std::ptr::null;\n use std::rc::Rc;\n \n+use deno_core::convert::OptionUndefined;\n+use deno_core::cppgc;\n use deno_core::op2;\n-use deno_core::serde_v8;\n use deno_core::v8;\n+use deno_core::v8_static_str...
2025-06-02T17:44:52
kubernetes/kubernetes
fda069a5d62c970e63ad552d7ab0f29aac14bbb1
9cc3a06f0b4082a3bc699d5ececba438af29dcf7
update kal to fix markdown table bug
[ { "path": "hack/golangci-hints.yaml", "patch": "@@ -155,14 +155,6 @@ linters:\n path: \"staging/src/k8s.io/api/networking/v1/types.go\"\n - text: \"field IngressPortStatus.Error has conflicting markers: optional_vs_required: {\\\\[optional\\\\], \\\\[kubebuilder:validation:Required\\\\]}. fiel...
2025-10-29T20:47:15
mrdoob/three.js
499d3139efb125dd842e6813bf1ad2a1cfebe186
5b4520ea2f25cb1dbb0054ec3682bad596f1bdb9
TSL: Fix duplicate assignments (#27798) * AssignNode: Fix duplicate assignments * add void
[ { "path": "examples/jsm/nodes/core/AssignNode.js", "patch": "@@ -56,11 +56,21 @@ class AssignNode extends TempNode {\n \n \t\tconst sourceType = sourceNode.getNodeType( builder );\n \n+\t\tconst nodeData = builder.getDataFromNode( this );\n+\n \t\t//\n \n \t\tlet snippet;\n \n-\t\tif ( needsSplitAssign ) {\...
2024-02-23T02:40:33
golang/go
d826bf4d7440ee07f865e5852638b5a2468687ff
bb07e55aff3041032ac8c851f4fefbd038783240
os: remove useless error check Change-Id: Ifeb5fecc6e28b79ac03e7dc2ce9531fe5eed3097 GitHub-Last-Rev: 087cf95965920c96befad5adb9e481bdf913d50a GitHub-Pull-Request: golang/go#66260 Reviewed-on: https://go-review.googlesource.com/c/go/+/570895 Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> LUCI-TryBot-Result: Go LUC...
[ { "path": "src/os/os_windows_test.go", "patch": "@@ -64,9 +64,6 @@ func TestSameWindowsFile(t *testing.T) {\n \t}\n \n \tp := filepath.VolumeName(path) + filepath.Base(path)\n-\tif err != nil {\n-\t\tt.Fatal(err)\n-\t}\n \tia3, err := os.Stat(p)\n \tif err != nil {\n \t\tt.Fatal(err)", "additions": 0, ...
2024-03-12T07:37:52
denoland/deno
cb1e8a87a5acd939d35e0408b24597f8947c8a55
4d47fcac554b7b79b985439b3f610f7d14ed1a28
fix(ext/node): return `undefined` instead of `null` in sqlite (#29567) <!-- Before submitting a PR, please read https://docs.deno.com/runtime/manual/references/contributing 1. Give the PR a descriptive title. Examples of good title: - fix(std/http): Fix race condition in server - docs(console): Update docs...
[ { "path": "ext/node/ops/sqlite/database.rs", "patch": "@@ -238,6 +238,7 @@ impl DatabaseSync {\n // via the constructor. An exception is thrown if the database is\n // already opened.\n #[fast]\n+ #[undefined]\n fn open(&self, state: &mut OpState) -> Result<(), SqliteError> {\n if self.conn.bor...
2025-06-02T15:00:23
mrdoob/three.js
18a5375fff91980e0edc6008b4756f489bfc784a
f9a97ef7814a67bf84048cfc42a78c21a77281ed
Fix env map Euler rotation (#27785)
[ { "path": "src/renderers/webgl/WebGLBackground.js", "patch": "@@ -116,8 +116,9 @@ function WebGLBackground( renderer, cubemaps, cubeuvmaps, state, objects, alpha,\n \n \t\t\tif ( background.isCubeTexture && background.isRenderTargetTexture === false ) {\n \n-\t\t\t\t// environment maps which are no cube ren...
2024-02-21T08:01:57
kubernetes/kubernetes
9cc3a06f0b4082a3bc699d5ececba438af29dcf7
34988e758dbfa43a6c1264ea6ed5063bcecb084a
enable duplicate tags for kal and add exceptions
[ { "path": "hack/golangci-hints.yaml", "patch": "@@ -144,7 +144,6 @@ linters:\n - text: \"Conditions field in AllocatedDeviceStatus has incorrect tags, should be: `json:\\\"conditions,omitempty\\\" patchStrategy:\\\"merge\\\" patchMergeKey:\\\"type\\\" protobuf:\\\"bytes,5,rep,name=conditions\\\"`\"\n ...
2025-10-20T17:55:04
tensorflow/tensorflow
fd4a2f9a993ce7d404dafee28f3d160fd4ae9a65
54ee8e77fac1a83a614019894ae1a37009c7ee98
Fix some c++ readability issues in latency hiding scheduler - Optimized logging by using bsl::StringAppend PiperOrigin-RevId: 835362257
[ { "path": "third_party/xla/xla/service/latency_hiding_scheduler.cc", "patch": "@@ -1613,7 +1613,9 @@ class ReadySetLt {\n cand_node->GetResources());\n int64_t num_conflicting_resources = 0;\n for (int64_t resource : resources) {\n- if (!sched_state_.resource_occupiers_in_flight.cou...
2025-11-21T22:35:29
golang/go
3f789721d6298b7f4406a0106670c4d4ad70a28d
b69622b83e38b58a461938163fdef03683a2a871
[dev.simd] cmd/compile: mark SIMD types non-fat This CL fixes the merge locals error. The culprit is that liveness analysis wrongly mark SIMD structs fat, hence making `StoreReg` of SIMD vectors not a varkill effect, making the liveness range of SIMD vectors not closed correctly, further making mergelocals merged 2 co...
[ { "path": "src/cmd/compile/internal/liveness/plive.go", "patch": "@@ -1534,6 +1534,9 @@ func isfat(t *types.Type) bool {\n \t\t\t}\n \t\t\treturn true\n \t\tcase types.TSTRUCT:\n+\t\t\tif t.IsSIMD() {\n+\t\t\t\treturn false\n+\t\t\t}\n \t\t\t// Struct with 1 field, check if field is fat\n \t\t\tif t.NumFiel...
2025-07-12T08:13:04
denoland/deno
7b7aa8846b6fbc602af40167590e1120a11ac482
02404333f1ae1524054672de2af402be583cdc8c
fix(ext/node): make DatabaseSync `readOnly` optional (#29564) Extracted from https://github.com/denoland/deno/pull/29404
[ { "path": "ext/node/ops/sqlite/database.rs", "patch": "@@ -36,6 +36,7 @@ struct DatabaseSyncOptions {\n open: bool,\n #[serde(default = \"true_fn\")]\n enable_foreign_key_constraints: bool,\n+ #[serde(default = \"false_fn\")]\n read_only: bool,\n #[serde(default = \"false_fn\")]\n allow_extensi...
2025-06-02T13:10:29
mrdoob/three.js
ed15131157f38111c6ea3238a93f353b12f773cb
2826c95442245c2bb3c3377de93d9b10d48bf15a
WebGLRenderer: Add support for rotating env maps. (#27758) * WebGLRenderer: Add support for rotating env maps. * Fix envMap rotation around x-axes. * Docs: Add new background and envMap rotation. * Ensure left-handed frame when rotating env maps. * Fix typo. * Clean up. * Scene: Add `environmentRotat...
[ { "path": "docs/api/en/materials/MeshBasicMaterial.html", "patch": "@@ -99,6 +99,11 @@ <h3>[property:Integer combine]</h3>\n \t\t<h3>[property:Texture envMap]</h3>\n \t\t<p>The environment map. Default is null.</p>\n \n+\t\t<h3>[property:Euler envMapRotation]</h3>\n+\t\t<p>\n+\t\t\tThe rotation of the envir...
2024-02-20T10:23:42
swiftlang/swift
16163640349ced66de8f1d3025a068c8bf8ce1de
37e89902a32162c5beab475e805b47ee5ad097b6
[testing] Fix flaky CrashWithThreads test Another attempt to fix the threading on this. rdar://168280526
[ { "path": "test/Backtracing/CrashWithThreads.swift", "patch": "@@ -83,12 +83,12 @@ func spawnThread(_ shouldCrash: Bool) {\n }\n }\n \n-let crashingThreadIndex = (1..<10).randomElement()\n+let crashingThreadIndex = (1..<4).randomElement()\n \n lockMutex()\n \n // hold a mutex\n-for threadIndex in 1..<10 {...
2026-01-19T16:38:45
tensorflow/tensorflow
54ee8e77fac1a83a614019894ae1a37009c7ee98
05cd7f2f9522a939f26bdbb6f874b4cf80f258d2
Fix typo in `reduce_scatter_decomposer_test`. PiperOrigin-RevId: 835362124
[ { "path": "third_party/xla/xla/service/reduce_scatter_decomposer_test.cc", "patch": "@@ -169,7 +169,7 @@ sum {\n \n ENTRY main {\n p0 = f32[4, 8] parameter(0)\n- // Tn this mode, the participants are the given replicas across all partitions.\n+ // In this mode, the participants are the given replicas ac...
2025-11-21T22:35:06
golang/go
9159cd4ec6b0e9475dc9c71c830035c1c4c13483
c6556b8eb3444b6d5473762ed1082039db7e03b5
encoding/json: decompose legacy options WARNING: This commit contains breaking changes for those already using GOEXPERIMENT=jsonv2. This decomposes FormatBytesWithLegacySemantics as: * FormatBytesWithLegacySemantics * FormatByteArrayAsArray * ParseBytesWithLooseRFC4648 This decomposes FormatTimeWithLegacySemantics a...
[ { "path": "src/encoding/json/internal/jsonflags/flags.go", "patch": "@@ -58,11 +58,14 @@ const (\n \t\tFormatNilSliceAsNull |\n \t\tMatchCaseInsensitiveNames |\n \t\tCallMethodsWithLegacySemantics |\n+\t\tFormatByteArrayAsArray |\n \t\tFormatBytesWithLegacySemantics |\n-\t\tFormatTimeWithLegacySemantics |\n...
2025-07-01T22:39:49
denoland/deno
02404333f1ae1524054672de2af402be583cdc8c
fb723098a5b9e7a75d66316ab75a1fb147f26f25
fix(ext/node): add back perf_hooks.markResourceTiming (#29562) Adding back a sham for "perf_hooks.markResourceTiming" that was removed by accident in https://github.com/denoland/deno/pull/29323; a test was added too, to ensure it doesn't regress in the future. Closes https://github.com/denoland/deno/issues/29539
[ { "path": "ext/node/polyfills/perf_hooks.js", "patch": "@@ -31,7 +31,7 @@ performance.nodeTiming = {};\n performance.timerify = () => notImplemented(\"timerify from performance\");\n \n // TODO(bartlomieju):\n-performance.timerify = () => {};\n+performance.markResourceTiming = () => {};\n \n function monito...
2025-06-02T12:23:38
mrdoob/three.js
cfdd878cf74857aef26459eb82c68dd75f097c72
98941a0cd6fa899e27064961321bfc6a84c1e34e
WebGLRenderer: Fixed compressed partial update on texture3D (#27771) * Fixed compressed partial update on texture3D and add example to e2e tests * removed example
[ { "path": "src/renderers/WebGLRenderer.js", "patch": "@@ -2440,8 +2440,8 @@ class WebGLRenderer {\n \n \t\t\t}\n \n-\t\t\tconst width = sourceBox.max.x - sourceBox.min.x + 1;\n-\t\t\tconst height = sourceBox.max.y - sourceBox.min.y + 1;\n+\t\t\tconst width = Math.round( sourceBox.max.x - sourceBox.min.x );\...
2024-02-19T18:51:34
golang/go
b69622b83e38b58a461938163fdef03683a2a871
4993a91ae18f0e0f0edf6d86ff5bb26fd9182731
[dev.simd] cmd/compile, simd: adjust Shift.* operations This CL does: 1. Removes ShiftRightSignExtended, default signed vectors to shift arithmetic, and unsigned to shift logical. 2. Add the missing Shifts which were left out by YAML error in the generator. This CL is generated by CL 687595. Change-Id: I663115...
[ { "path": "src/cmd/compile/internal/amd64/simdssa.go", "patch": "@@ -273,15 +273,6 @@ func ssaGenSIMDValue(s *ssagen.State, v *ssa.Value) bool {\n \t\tssa.OpAMD64VPSLLVQ128,\n \t\tssa.OpAMD64VPSLLVQ256,\n \t\tssa.OpAMD64VPSLLVQ512,\n-\t\tssa.OpAMD64VPSRLVW128,\n-\t\tssa.OpAMD64VPSRLVW256,\n-\t\tssa.OpAMD64V...
2025-07-11T17:56:22
kubernetes/kubernetes
0fac370625b71fbda3d5ce89ef76dcd70421bd04
a8a43a5e250368aefb7cf11c4932193257961b59
sig-auth: fix KAS options OWNERS Signed-off-by: Monis Khan <mok@microsoft.com>
[ { "path": "pkg/kubeapiserver/options/OWNERS", "patch": "@@ -0,0 +1,17 @@\n+# See the OWNERS docs at https://go.k8s.io/owners\n+\n+filters:\n+ \".*authentication.*\":\n+ approvers:\n+ - sig-auth-authenticators-approvers\n+ reviewers:\n+ - sig-auth-authenticators-reviewers\n+ labels:\n+ ...
2025-10-29T16:32:24
denoland/deno
fb723098a5b9e7a75d66316ab75a1fb147f26f25
656bec86526c932984a41bd06e1fb2c46533921e
fix(ext/node): export StatementSync from `node:sqlite` (#29563) Extracted from https://github.com/denoland/deno/pull/29404 Upgrades deno_core to 0.350.0
[ { "path": "Cargo.lock", "patch": "@@ -1754,9 +1754,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_core\"\n-version = \"0.349.0\"\n+version = \"0.350.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"0feddac570b59ff66ce64e17a84814b6629eb6159e87ba730811a530605dc76...
2025-06-02T11:34:41
tensorflow/tensorflow
f0886a9095af253370293c12b735017327471c90
cbe97bdd2f47932b0532cc9b08bd0a8529aecf6d
[IFRT Proxy] Support `UserContext` propagation This change adds support for IFRT `UserContext` to the IFRT Proxy. It consists of a few parts: * IFRT Proxy client captures the current `UserContext` ID and sends it in every request. * IFRT Proxy client keeps the current `UserContext` in a form of `TrackedUserContex...
[ { "path": "third_party/xla/xla/python/ifrt_proxy/client/BUILD", "patch": "@@ -103,15 +103,21 @@ cc_library(\n \"//xla/python/ifrt\",\n \"//xla/python/ifrt:serdes_any_version_accessor\",\n \"//xla/python/ifrt:serdes_version\",\n+ \"//xla/python/ifrt:user_context\",\n+ \"...
2025-11-21T19:32:28
mrdoob/three.js
2ab2277a71c1d915fcf8d9d5514da4aab0b8339c
1dc5dfea06827a20babf751543366d5e056e80b8
`WebGPURenderer`: Fix normal didn't consider `faceDirection` (#27774)
[ { "path": "examples/jsm/nodes/materials/NodeMaterial.js", "patch": "@@ -20,6 +20,7 @@ import EnvironmentNode from '../lighting/EnvironmentNode.js';\n import { depthPixel } from '../display/ViewportDepthNode.js';\n import { cameraLogDepth } from '../accessors/CameraNode.js';\n import { clipping, clippingAlph...
2024-02-19T16:06:38
swiftlang/swift
b231d90c685d88feaf679de099337ba906ed7631
cbff3d1e3eaf60f5d5ad3cf09ac412178ef51c5e
[test] Add some more known crashers
[ { "path": "validation-test/IDE/crashers/ASTMangler-appendExistentialLayout-d737cb.swift", "patch": "@@ -0,0 +1,10 @@\n+// {\"kind\":\"complete\",\"original\":\"4ff768bf\",\"signature\":\"swift::Mangle::ASTMangler::appendExistentialLayout(swift::ExistentialLayout const&, swift::GenericSignature, swift::Value...
2026-01-13T09:54:03
denoland/deno
90528fa9c941562d01ad33d8c0382e7589171a46
1d72dcac252ec567e868c5683601b0ce34d55e9a
fix(ext/node): use primordials in `ext/node/polyfills/_fs/_fs_symlink.ts` (#29547) Towards #24236.
[ { "path": "ext/node/polyfills/_fs/_fs_symlink.ts", "patch": "@@ -1,12 +1,17 @@\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+import { primordials } from \"ext:core/mod.js\";\n \n...
2025-06-02T09:15:21
mrdoob/three.js
b82170ab01c8f74fcc3678986ef15286b2e7fc13
698079ae0abb14bb5d6a521f7526ee1414c59100
Fixes `emissiveIntensity` not persisting. (#27769) If a Material with an `emissiveIntensity` of 0 is serialized, the previous truthy check does not persist this field. It will get reset to the default of 1 when loaded by the `ObjectLoader`. Solution: Be explicit and add `!== undefined` (same as specularIntensity).
[ { "path": "src/materials/Material.js", "patch": "@@ -190,7 +190,7 @@ class Material extends EventDispatcher {\n \t\tif ( this.sheenColor && this.sheenColor.isColor ) data.sheenColor = this.sheenColor.getHex();\n \t\tif ( this.sheenRoughness !== undefined ) data.sheenRoughness = this.sheenRoughness;\n \t\tif...
2024-02-19T08:26:13
kubernetes/kubernetes
01d1cb967932e17d8865d377a42f49539fb96cbd
150b4dc15ecc217010939e36ac3ed72279b46e31
test: fix flake in DRA DeviceBindingConditions by waiting for reallocation before status update Co-authored-by: Ed Bartosh <eduard.bartosh@intel.com>
[ { "path": "test/integration/dra/dra_test.go", "patch": "@@ -1650,23 +1650,34 @@ func testDeviceBindingConditions(tCtx ktesting.TContext, enabled bool) {\n \t\tc, err := tCtx.Client().ResourceV1().ResourceClaims(namespace).Get(tCtx, claim2.Name, metav1.GetOptions{})\n \t\ttCtx.ExpectNoError(err, \"get claim\...
2025-10-30T06:18:03
tensorflow/tensorflow
8a18b1f44c57b6b5449c03168338671beea8ff08
4e54b826bacf236ec87d0cf92aa440e5f55606ee
Fix shared TableConfig processing in compute_sparse_core_stats. PiperOrigin-RevId: 834997967
[ { "path": "tensorflow/python/tpu/tpu_embedding_v3.py", "patch": "@@ -1388,18 +1388,18 @@ def compute_sparse_core_stats(\n ) -> Tuple[Any, Any]:\n \"\"\"Computes the max_ids/unique ids settings from the input features.\"\"\"\n copy_feature_config = _clone_feature_config(feature_config)\n- table_...
2025-11-21T02:38:54
golang/go
bbb6dccd8486d1dc0b3042865e7bc0fce54137fc
1440ff70362f85c86b54b5c428fd95cb6cb35d91
[dev.simd] simd: fix documentations This CL is generated by CL 687415. Change-Id: I2d778717013af613c442116658f42a4a4cc5d734 Reviewed-on: https://go-review.googlesource.com/c/go/+/687376 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: David Chase <drchase@google.c...
[ { "path": "src/cmd/compile/internal/ssa/_gen/simdAMD64.rules", "patch": "@@ -380,12 +380,12 @@\n (GaloisFieldAffineTransformUint8x16 ...) => (VGF2P8AFFINEQB128 ...)\n (GaloisFieldAffineTransformUint8x32 ...) => (VGF2P8AFFINEQB256 ...)\n (GaloisFieldAffineTransformUint8x64 ...) => (VGF2P8AFFINEQB512 ...)\n-(...
2025-07-11T02:11:22
mrdoob/three.js
a9db0d38390bfe4cf4de28bb59b954272babd35d
0bf3908b73b2cf73d7361cce17cfc8b816cb2a00
Fix 'car' WebGL example not working in playground (#27757) * Fix car WebGL example not working in playground * Update index.html Remove deprecated code. --------- Co-authored-by: Michael Herzog <michael.herzog@human-interactive.org>
[ { "path": "playground/index.html", "patch": "@@ -91,7 +91,7 @@\n \n \t\t\t\t//\n \n-\t\t\t\tcamera = new THREE.PerspectiveCamera( 40, window.innerWidth / window.innerHeight, 0.5, 60 );\n+\t\t\t\tcamera = new THREE.PerspectiveCamera( 40, window.innerWidth / window.innerHeight, 0.5, 200 );\n \t\t\t\tcamera.po...
2024-02-16T21:17:02
denoland/deno
1d72dcac252ec567e868c5683601b0ce34d55e9a
01a6379505712be34ebf2cdc874fa7f54a6e9408
fix(ext/node): use primordials in `ext/node/polyfills/internal/process/per_thread.mjs` (#29550) Towards #24236. Replaces JS builtins with equivalent primordial versions.
[ { "path": "ext/node/polyfills/internal/process/per_thread.mjs", "patch": "@@ -1,14 +1,28 @@\n // Copyright 2018-2025 the Deno authors. MIT license.\n // Copyright Joyent, Inc. and Node.js contributors. All rights reserved. MIT license.\n \n-// TODO(petamoriken): enable prefer-primordials for node polyfills\...
2025-06-02T09:14:44
swiftlang/swift
cbff3d1e3eaf60f5d5ad3cf09ac412178ef51c5e
e0db5152d4d4d0fd06cf2855331c4666372b6933
[test] Update a couple of crasher signatures
[ { "path": "validation-test/compiler_crashers/0208-issue-51259.swift", "patch": "@@ -1,4 +1,4 @@\n-// {\"kind\":\"emit-silgen\",\"signature\":\"swift::Lowering::SILGenModule::useConformance(swift::ProtocolConformanceRef)\"}\n+// {\"kind\":\"emit-silgen\",\"signature\":\"swift::Lowering::SILGenModule::useConf...
2026-01-13T09:55:39
kubernetes/kubernetes
b1942ae6b121afe57b94686202e9f0230e7e1533
37c72027f64f4b68a0600a62640bfed6f67c1eda
[DRA] Add dropDeviceBindingConditionsFields and fix immutable field on DeviceBindingConditions strategy test Signed-off-by: Sunyanan Choochotkaew <sunyanan.choochotkaew1@ibm.com>
[ { "path": "pkg/registry/resource/resourceclaim/strategy.go", "patch": "@@ -237,6 +237,7 @@ func dropDisabledStatusFields(newClaim, oldClaim *resource.ResourceClaim) {\n \tdropDisabledDRAResourceClaimDeviceStatusFields(newClaim, oldClaim)\n \tdropDisabledDRAAdminAccessStatusFields(newClaim, oldClaim)\n \tdro...
2025-10-30T07:47:20
tensorflow/tensorflow
00931720105b0c427715ddc4b1bff3f46748970e
9fdfc47f8a9e76244ecb0ac9845efd2236621a5d
Define StructuredTensor.FieldName outside the class. Fixes a problem where structured_tensor fails to import under Python 3.14 with the error: ``` File ".../tensorflow/python/ops/structured/structured_tensor.py", line 54, in <module> class StructuredTensor(extension_type.BatchableExtensionType): ...<1135 li...
[ { "path": "tensorflow/python/ops/structured/structured_tensor.py", "patch": "@@ -14,6 +14,8 @@\n # ==============================================================================\n \"\"\"Structured Tensors.\"\"\"\n \n+from __future__ import annotations\n+\n import re\n from typing import Callable, Dict, List...
2025-11-21T01:52:28
golang/go
1e48ca7020adf13e0fa4a6c2053f210b869bfa24
a0a99cb22b2045b15509d1002a655db407a44a50
encoding/json: remove legacy option to EscapeInvalidUTF8 In the presence of invalid UTF-8, the AllowInvalidUTF8 option allows such bytes to be present, but silently mangles them using the Unicode replacement character. The v2 default is to emit the replacement character verbatim (which is valid UTF-8 and exactly what...
[ { "path": "src/encoding/json/internal/jsonflags/flags.go", "patch": "@@ -52,7 +52,6 @@ const (\n \t\tAllowInvalidUTF8 |\n \t\tEscapeForHTML |\n \t\tEscapeForJS |\n-\t\tEscapeInvalidUTF8 |\n \t\tPreserveRawStrings |\n \t\tDeterministic |\n \t\tFormatNilMapAsNull |\n@@ -77,7 +76,7 @@ const (\n \tWhitespaceFla...
2025-07-10T00:08:49
denoland/deno
01a6379505712be34ebf2cdc874fa7f54a6e9408
0a5bf5efd0555a010ec47c22188aa6bf31de1975
fix(ext/node): print warnings to stderr (#29527)
[ { "path": "ext/node/lib.rs", "patch": "@@ -648,6 +648,7 @@ deno_core::extension!(deno_node,\n \"internal/primordials.mjs\",\n \"internal/process/per_thread.mjs\",\n \"internal/process/report.ts\",\n+ \"internal/process/warning.ts\",\n \"internal/querystring.ts\",\n \"internal/readline...
2025-06-02T02:36:47
swiftlang/swift
5b201c941683e13b1faf36794fbe95c4c6920335
9091141fa60557fe7e9e59feec005473e726741c
MemoryLifetimeVerifier: fix a false alarm for function calls reading from an argument location If a struct field is not referenced in a function and that field is not read from a called function's argument, the verifier complained that the field must be initialized. rdar://168051370 https://github.com/swiftlang/swift...
[ { "path": "include/swift/SIL/MemoryLocations.h", "patch": "@@ -145,6 +145,10 @@ class MemoryLocations {\n return idx < subLocations.size() && subLocations.test(idx);\n }\n \n+ bool selfBitRepresentsUnknownSubFields() const {\n+ return numFieldsNotCoveredBySubfields > 0;\n+ }\n+\n priv...
2026-01-14T18:13:31
tensorflow/tensorflow
f08d3a47aaa61aab58bdfdaa8abc2edb1209b000
e9b743832d07b5d74260605f3ad24b04e6ed684b
[CI] Stop optional services in Windows CI to reduce file permission error flakes. They may be causing permission errors on Windows when Bazel tries to access header files in Windows SDK/Clang while building @@bazel_tools targets. PiperOrigin-RevId: 834792776
[ { "path": "ci/official/utilities/setup_docker.sh", "patch": "@@ -62,6 +62,12 @@ if ! docker container inspect tf >/dev/null 2>&1 ; then\n # Additional setup is contained in ci/official/envs/rbe.\n CONTAINER_IP_ADDR=$(docker inspect -f '{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' tf)\n ...
2025-11-20T17:24:53
golang/go
a0a99cb22b2045b15509d1002a655db407a44a50
9d04122d240db4de36bf9ef4f5627e0025201bd9
encoding/json/v2: report wrapped io.ErrUnexpectedEOF In the event that the input is just JSON whitespace, the underlying jsontext.Decoder treats this as an empty stream and reports io.EOF. The logic in unmarshalFull simply casted io.EOF as io.ErrUnexpectedEOF, which is inconsistent with how all other io.ErrUnexpected...
[ { "path": "src/encoding/json/decode_test.go", "patch": "@@ -12,6 +12,7 @@ import (\n \t\"errors\"\n \t\"fmt\"\n \t\"image\"\n+\t\"io\"\n \t\"maps\"\n \t\"math\"\n \t\"math/big\"\n@@ -469,11 +470,13 @@ var unmarshalTests = []struct {\n \t{CaseName: Name(\"\"), in: `{\"alphabet\": \"xyz\"}`, ptr: new(U), err:...
2025-07-09T23:55:14
denoland/deno
0a5bf5efd0555a010ec47c22188aa6bf31de1975
2cab60f90d7136fde238cab5d407d5edf162e1bc
fix(ext/node): improve getaddrinfo compatibility (#29501) This commit improves the compatibility of `cares_wrap` internal binding and `getaddrinfo` function. `cares_wrap.getaddrinfo` needs to be mocked in test case. This commit enables it, and also fixes the 5th argument of `getaddrinfo`.
[ { "path": "ext/node/polyfills/dns.ts", "patch": "@@ -86,9 +86,8 @@ import {\n AI_ALL as ALL,\n AI_V4MAPPED as V4MAPPED,\n } from \"ext:deno_node/internal_binding/ares.ts\";\n-import {\n- ChannelWrapQuery,\n- getaddrinfo,\n+import cares, {\n+ type ChannelWrapQuery,\n GetAddrInfoReqWrap,\n QueryReq...
2025-06-02T02:34:36
golang/go
1ca23682dd7b2706daa94e428b3b82cc85a752c0
4bc3373c8e2cad24a779698477704306548949cb
crypto/rsa: fix documentation formatting Change-Id: I6a6a696422f9ab73b9ddee131b17d3c177fefc4e Reviewed-on: https://go-review.googlesource.com/c/go/+/687615 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Roland Shoemaker <roland@golang.org> Reviewed-by: Carlos Ame...
[ { "path": "src/crypto/rsa/rsa.go", "patch": "@@ -30,14 +30,15 @@\n // with a key smaller than 1024 bits. Such keys are insecure and should not be\n // used.\n //\n-// The `rsa1024min=0` GODEBUG setting suppresses this error, but we recommend\n-// doing so only in tests, if necessary. Tests can use [testing....
2025-07-10T15:06:05
mrdoob/three.js
35ad738002fda985828ba9fc9886c086e6a469aa
3606ee1044aa6f89ce1a0e63ee51074542fb7957
fix bufferType lost breaking updateAttribute later on (#27751)
[ { "path": "examples/jsm/renderers/webgl/utils/WebGLAttributeUtils.js", "patch": "@@ -8,6 +8,7 @@ class DualAttributeData {\n \n \t\tthis.buffers = [ attributeData.bufferGPU, dualBuffer ];\n \t\tthis.type = attributeData.type;\n+\t\tthis.bufferType = attributeData.bufferType;\n \t\tthis.pbo = attributeData.p...
2024-02-15T02:38:50
denoland/deno
e2e4919347808884406491e08acfcf06366daafe
173f26f391cdb43fb3c46a74365619dd77928623
fix(zlib): don't return a smi from crc32 (#29546) Fixes https://github.com/denoland/deno/issues/29545.
[ { "path": "ext/node/ops/zlib/mod.rs", "patch": "@@ -421,7 +421,6 @@ pub fn op_zlib_close_if_pending(\n }\n \n #[op2(fast)]\n-#[smi]\n pub fn op_zlib_crc32(#[buffer] data: &[u8], #[smi] value: u32) -> u32 {\n // SAFETY: `data` is a valid buffer.\n unsafe {", "additions": 0, "deletions": 1, "l...
2025-05-31T00:27:58
tensorflow/tensorflow
4343c95493b40752c29854faf81f29cd706152c1
4bf20e19f440a47a276cf1988b48683778f673a6
[XLA:SPMD] Fix on entry input/output layout changing check. PiperOrigin-RevId: 834762307
[ { "path": "third_party/xla/xla/service/spmd/spmd_partitioner.cc", "patch": "@@ -5609,16 +5609,28 @@ absl::StatusOr<bool> SpmdPartitioner::RunImpl(\n // parameters preserve their signatures.\n auto new_program_shape = module->entry_computation()->ComputeProgramShape();\n if (!options_.allow_module_sign...
2025-11-20T15:54:15
mrdoob/three.js
3606ee1044aa6f89ce1a0e63ee51074542fb7957
8efe8f81baf9e6370f9004c3f2cace157be014f5
EditorControls: Add duplicate pointer ID fix. (#27749)
[ { "path": "editor/js/EditorControls.js", "patch": "@@ -136,6 +136,10 @@ class EditorControls extends THREE.EventDispatcher {\n \n \t\t\t//\n \n+\t\t\tif ( isTrackingPointer( event ) ) return;\n+\n+\t\t\t//\n+\n \t\t\taddPointer( event );\n \n \t\t\tif ( event.pointerType === 'touch' ) {\n@@ -392,6 +396,18 @...
2024-02-14T21:12:54
golang/go
4bc3373c8e2cad24a779698477704306548949cb
88cf0c5d55a8c18da515485f4a3fcf008b96cb07
runtime: turn off large memmove tests under asan/msan Just like we do for race mode. They are just too slow when running with the sanitizers. Fixes #59448 Change-Id: I86e3e3488ec5c4c29e410955e9dc4cbc99d39b84 Reviewed-on: https://go-review.googlesource.com/c/go/+/687535 Reviewed-by: Keith Randall <khr@google.com> LUC...
[ { "path": "src/runtime/memmove_test.go", "patch": "@@ -8,6 +8,8 @@ import (\n \t\"crypto/rand\"\n \t\"encoding/binary\"\n \t\"fmt\"\n+\t\"internal/asan\"\n+\t\"internal/msan\"\n \t\"internal/race\"\n \t\"internal/testenv\"\n \t. \"runtime\"\n@@ -102,8 +104,8 @@ func TestMemmoveLarge0x180000(t *testing.T) {\...
2025-07-11T16:10:53
denoland/deno
173f26f391cdb43fb3c46a74365619dd77928623
5b0da886197e98748ccfccdd2ed96ac149ef3384
chore: fix deno_lib version bump for release and verify Deno binary version outputs expected version (#29540)
[ { "path": "tools/release/01_bump_crate_versions.ts", "patch": "@@ -22,10 +22,12 @@ if (Deno.args.some((a) => a === \"--rc\")) {\n \n await cliCrate.setVersion(version);\n await denoRtCrate.setVersion(version);\n- await denoLibCrate.setVersion(version);\n+ denoLibCrate.folderPath.join(\"version.txt\")....
2025-05-30T17:11:26
tensorflow/tensorflow
4bf20e19f440a47a276cf1988b48683778f673a6
059fde8980dec834b3b6551e7a76f903203c60dd
PR #32053: [ROCM] Added command buffers support for convolutions Imported from GitHub PR https://github.com/openxla/xla/pull/32053 📝 Summary of Changes Added CommandBuffer support for Convolution ops graph capture of convolutions is enabled only for convolution custom call targets explicitly added to '--legacy_comm...
[ { "path": "third_party/xla/xla/backends/gpu/runtime/BUILD", "patch": "@@ -69,6 +69,7 @@ cc_library(\n \":collective_broadcast_thunk\",\n \":collective_permute_thunk\",\n \":collective_thunk\",\n+ \":convolution_thunk\",\n \":copy_thunk\",\n \":custom_call_thunk...
2025-11-20T12:47:03
mrdoob/three.js
a11a7735dabd19160d5adae4d5e4372b09e20789
419f661c2e56bf9c42ecbdad179ff6d4f6d3761a
TSL: `parallaxUV` (#27739) * BlendModeNode: Add layout and fix if used with textures * TSL: Add parallaxUV * Examples: Add `webgpu_parallax_uv` * update * cleanup * Automatic compute tangents if needed * use default TBNViewMatrix * Rename parallaxDelta -> parallaxDirection * Reg optional overla...
[ { "path": "examples/files.json", "patch": "@@ -356,6 +356,7 @@\n \t\t\"webgpu_morphtargets\",\n \t\t\"webgpu_morphtargets_face\",\n \t\t\"webgpu_occlusion\",\n+\t\t\"webgpu_parallax_uv\",\n \t\t\"webgpu_particles\",\n \t\t\"webgpu_portal\",\n \t\t\"webgpu_reflection\",", "additions": 1, "deletions":...
2024-02-13T22:23:55
swiftlang/swift
6ffc91c488dac303970687eccbe136cecb106653
7e5387b2f9bb5dd3a2b8ef7e631492a0083c84c3
Fix optionals usage.
[ { "path": "stdlib/public/Synchronization/Mutex/OpenBSDImpl.swift", "patch": "@@ -16,8 +16,8 @@ import Glibc\n @_transparent\n func errstr(_ no: Int32) -> String {\n unsafe withUnsafeTemporaryAllocation(of: CChar.self, capacity: Int(NL_TEXTMAX)) { buf in\n- unsafe strerror_r(no, buf.baseAddress, buf.cou...
2026-01-18T16:03:29
denoland/deno
ebccb8a6bac5d893c46be3101c5412470e708849
75762194ffcdd2adb24cd347db0ed3e31ca61e49
fix(ext/http): handle vsock streams in `extract_network_stream` (#29518) Fixes https://github.com/denoland/deno/issues/29517
[ { "path": "Cargo.lock", "patch": "@@ -2072,6 +2072,7 @@ dependencies = [\n \"thiserror 2.0.12\",\n \"tokio\",\n \"tokio-util\",\n+ \"tokio-vsock\",\n ]\n \n [[package]]", "additions": 1, "deletions": 0, "language": "Unknown" }, { "path": "ext/http/Cargo.toml", "patch": "@@ -57,6 +...
2025-05-30T14:38:15
tensorflow/tensorflow
460c2d84259eead33f7a6e15891e28bfa448115e
3c3f13c47a5775d6a03c76dcd1a10fd78ab44c72
PR #34103: [GPU] Fix layout assignment of bitcast-converts. Imported from GitHub PR https://github.com/openxla/xla/pull/34103 📝 Summary of Changes "mandatory" compatible layouts have to be assigned to both operands and outputs simultaneously such that subsequent layout propagation does not alter one of them making t...
[ { "path": "third_party/xla/xla/service/gpu/transforms/layout_assignment.cc", "patch": "@@ -562,18 +562,36 @@ absl::Status GpuLayoutAssignment::AddBackendConstraints(\n } else if (HloPredicateIsOp<HloOpcode::kBitcastConvert>(instruction)) {\n Shape operand_shape = instruction->operand(0)->shape();\...
2025-11-20T10:53:17
mrdoob/three.js
b0e6fad8e57031bc2a069c2ebd00fadcb2ec338c
0a6558999c0f52e084bcf38df004d26bdae5c79d
BlendModeNode: Add layout and fix if used with textures (#27738)
[ { "path": "examples/jsm/nodes/display/BlendModeNode.js", "patch": "@@ -9,6 +9,13 @@ export const BurnNode = tslFn( ( { base, blend } ) => {\n \n \treturn vec3( fn( 'x' ), fn( 'y' ), fn( 'z' ) );\n \n+} ).setLayout( {\n+\tname: 'burnColor',\n+\ttype: 'vec3',\n+\tinputs: [\n+\t\t{ name: 'base', type: 'vec3' }...
2024-02-12T21:36:59
kubernetes/kubernetes
4a991bbbd9c2e6866af4633d9c7656494833fa82
21c832b47dc5b2454f14cbfcc7c74ce6efbeb851
fix unit tests for pod gen GA
[ { "path": "pkg/api/pod/util_test.go", "patch": "@@ -1234,97 +1234,47 @@ func TestDropDisabledPodStatusFields_ObservedGeneration(t *testing.T) {\n \t\tname string\n \t\tpodStatus *api.PodStatus\n \t\toldPodStatus *api.PodStatus\n-\t\tfeatureGateOn bool\n \t\twantPodStatus *api.PodStatus\n \t}{\...
2025-10-29T16:34:18
denoland/deno
ba9c80eda8b1b4b10f19fcdde541915acbf45e7d
342ea09135c314cae53c9467b859f4e6f70ead4c
fix(ext/node): fix function error message in `invalidArgTypeHelper` (#29526) Fixes `parallel/test-buffer-from.js` in daily Node compat tests runs. The test was already enabled in CI but that used a different helper than the daily Node compat tests runners - updated now. ``` divy@divy-macbook deno % deno -A ./tools/no...
[ { "path": "ext/node/polyfills/internal/errors.ts", "patch": "@@ -735,7 +735,7 @@ function invalidArgTypeHelper(input: any) {\n if (input == null) {\n return ` Received ${input}`;\n }\n- if (typeof input === \"function\" && input.name) {\n+ if (typeof input === \"function\") {\n return ` Receiv...
2025-05-30T06:43:22
swiftlang/swift
a3b0663cea19419ab16ff1ec4986a735369528ba
123b2dac9fadb9952892e68f99a21458b62d0a9f
fix noncopyable-irgen.swift failures This test would fail for Android and non-macOS Darwin targets, because -verify was asked to match diagnostics for the entire DARWIN and LINUX OS families, but the call to trigger those diagnostics was guarded behind `#if os(macOS) || os(Linux)`. rdar://168297106
[ { "path": "test/Interop/Cxx/class/noncopyable-irgen.swift", "patch": "@@ -174,7 +174,7 @@ func derivedWithDefaultedCopyConstructor() {\n takeCopyable(s)\n }\n \n-#elseif TEST7 && (os(macOS) || os(Linux))\n+#elseif TEST7 && (canImport(Darwin) || os(Android) || os(Linux))\n func stdUniquePtr() {\n let...
2026-01-18T05:30:04
mrdoob/three.js
56785efe0fe335c9763c3fdcbb13d047b288b55f
018473b999716f7ad21b325923af214c69800016
WebGPURenderer: Fix isStorageInstancedBufferAttribute usage (#27737)
[ { "path": "examples/jsm/renderers/webgl/WebGLBackend.js", "patch": "@@ -422,7 +422,7 @@ class WebGLBackend extends Backend {\n \t\tgl.bindTransformFeedback( gl.TRANSFORM_FEEDBACK, transformFeedbackGPU );\n \t\tgl.beginTransformFeedback( gl.POINTS );\n \n-\t\tif ( attributes[ 0 ].isInstancedBufferAttribute )...
2024-02-12T16:51:15
tensorflow/tensorflow
3c3f13c47a5775d6a03c76dcd1a10fd78ab44c72
bb5b943e862972cdcab889a00ed85f50109b82d7
fix typo in tuple_simplifier. PiperOrigin-RevId: 834674902
[ { "path": "third_party/xla/xla/hlo/transforms/simplifiers/tuple_simplifier.cc", "patch": "@@ -132,7 +132,7 @@ absl::StatusOr<bool> TupleSimplifier::RunImpl(\n if (module->has_schedule()) {\n for (HloInstruction* instr : replaced_instrs) {\n // Remove the replaced instructions from the sche...
2025-11-20T10:47:19
golang/go
88cf0c5d55a8c18da515485f4a3fcf008b96cb07
7a38975a48ac735e62b389957bfc898437d628dc
cmd/link: do size fixups after symbol references are loaded When we do a size fixup, we need to clone the symbol to an external symbol so we can modify it. This includes cloning the relocations, which includes resolving the relocations. If the symbol being fixed has a relocation referencing a non-Go symbol, that symbo...
[ { "path": "src/cmd/link/internal/loader/loader.go", "patch": "@@ -2298,17 +2298,17 @@ func (l *Loader) LoadSyms(arch *sys.Arch) {\n \t\tst.preloadSyms(r, hashedDef)\n \t\tst.preloadSyms(r, nonPkgDef)\n \t}\n-\tfor _, sf := range l.sizeFixups {\n-\t\tpp := l.cloneToExternal(sf.sym)\n-\t\tpp.size = int64(sf.s...
2025-07-10T04:46:00
denoland/deno
342ea09135c314cae53c9467b859f4e6f70ead4c
b2f668550d8034c0fc36193f69e6a898a46a8385
fix(ext/node): stub `getFipsCrypto` to `false` (#29485) This makes Deno act as a non-FIPS compliant build of Node.js to node modules.
[ { "path": "ext/node/polyfills/internal_binding/crypto.ts", "patch": "@@ -1,14 +1,15 @@\n // Copyright 2018-2025 the Deno authors. MIT license.\n // Copyright Joyent, Inc. and Node.js contributors. All rights reserved. MIT license.\n \n-import { notImplemented } from \"ext:deno_node/_utils.ts\";\n-\n export ...
2025-05-30T06:15:03
swiftlang/swift
611ceff5e0e6e9b982845b7d8503ea561d41779b
123b2dac9fadb9952892e68f99a21458b62d0a9f
Sema: Fix regression from floating point removal In 7bcbe1b3f05d425864aa99f05465162fc0a88e1b, I forgot to scale the value by 100 in one place. This wasn't caught by our test suite, but it regressed the new test case I'm adding. We would select the UnicodeScalar.init() overload taking an UInt8, and complain that the sc...
[ { "path": "lib/Sema/CSOptimizer.cpp", "patch": "@@ -814,7 +814,7 @@ static std::optional<DisjunctionInfo> preserveFavoringOfUnlabeledUnaryArgument(\n }\n });\n \n- return DisjunctionInfoBuilder(/*score=*/favoredChoices.empty() ? 0 : 1,\n+ return DisjunctionInfoBuilder(/*score=*/favoredChoice...
2026-01-18T04:07:45
mrdoob/three.js
1d2ab56161866a726dde2651e734a45bf94486c8
8732633e37ab1516d8d05f33139e91565cac5803
SpotLightHelper: Fix offset when adjusting the scene / parent position (#27487) * SpotLightHelper: Fix offset when adjusting the scene / parent position * Ensure children matrices are up to date * move matrix update to update function, simplify * Formatting * Ensure parent matrix is up to date * Remove ...
[ { "path": "src/helpers/SpotLightHelper.js", "patch": "@@ -15,7 +15,6 @@ class SpotLightHelper extends Object3D {\n \n \t\tthis.light = light;\n \n-\t\tthis.matrix = light.matrixWorld;\n \t\tthis.matrixAutoUpdate = false;\n \n \t\tthis.color = color;\n@@ -67,6 +66,24 @@ class SpotLightHelper extends Object3D...
2024-02-12T10:22:17
golang/go
7a38975a48ac735e62b389957bfc898437d628dc
aa5de9ebb55bbd5e0a38304f8f8e603b2ec03238
os: trivial comment fix "Geese" here looks like an autocorrect-o of "oses", I think writing it out makes more sense. Change-Id: Iba89a6c0b94657e2e93937cc153f07aea1d04e04 GitHub-Last-Rev: 4f3a780f327d6c807e9b154d781ee69a10d391e4 GitHub-Pull-Request: golang/go#74332 Reviewed-on: https://go-review.googlesource.com/c/go/...
[ { "path": "src/os/file.go", "patch": "@@ -616,7 +616,7 @@ func UserHomeDir() (string, error) {\n \tif v := Getenv(env); v != \"\" {\n \t\treturn v, nil\n \t}\n-\t// On some geese the home directory is not always defined.\n+\t// On some operating systems the home directory is not always defined.\n \tswitch r...
2025-06-22T17:16:36
tensorflow/tensorflow
bb5b943e862972cdcab889a00ed85f50109b82d7
0c6acafccd921f0733498034144ea975839d5c82
PR #34107: [XLA:GPU] Fix cublas fallback test on Thor GPU (sm_110) Imported from GitHub PR https://github.com/openxla/xla/pull/34107 This fixes the failing test StatelessAutotunerTest.CublasFallbackForBf16Bf16F32Algorithm on Jetson Thor GPUs with compute capability 11.0. Copybara import of the project: -- 2385bc08e0...
[ { "path": "third_party/xla/xla/service/gpu/autotuning/gemm_fusion_autotuner_test.cc", "patch": "@@ -330,6 +330,7 @@ TEST_F(StatelessAutotunerTest, CublasFallbackForBf16Bf16F32Algorithm) {\n \"Hopper\";\n break;\n case se::CudaComputeCapability::kBlackwell:\n+ case se::CudaC...
2025-11-20T10:47:00
denoland/deno
b2f668550d8034c0fc36193f69e6a898a46a8385
2831e5c5104761970198b9a32d11af09a427d022
fix(ext/node): Buffer write OOB checks (#29524) Enables `parallel/test-buffer-write.js` test
[ { "path": "ext/node/polyfills/internal/buffer.mjs", "patch": "@@ -794,6 +794,15 @@ Buffer.prototype.asciiSlice = function asciiSlice(offset, length) {\n };\n \n Buffer.prototype.asciiWrite = function asciiWrite(string, offset, length) {\n+ // deno-lint-ignore prefer-primordials\n+ if (offset < 0 || offset...
2025-05-30T05:58:22
kubernetes/kubernetes
842cd0ea777380e675e079703415e6e4bc7cfa55
135b46974af09d5becff4af0e84382ce30a29b14
node conformance e2e: don't recreate test container on an error Signed-off-by: Stanislav Láznička <slznika@microsoft.com>
[ { "path": "test/e2e_node/runtime_conformance_test.go", "patch": "@@ -21,9 +21,9 @@ import (\n \t\"fmt\"\n \t\"os\"\n \t\"path/filepath\"\n-\t\"time\"\n \n \tv1 \"k8s.io/api/core/v1\"\n+\t\"k8s.io/apimachinery/pkg/util/wait\"\n \t\"k8s.io/kubernetes/pkg/kubelet/images\"\n \t\"k8s.io/kubernetes/test/e2e/commo...
2025-10-27T11:14:56
mrdoob/three.js
8aef01602b008153576f4599e31ea78e0e3f7aa0
ddecdd14bae501f61b7c3d46d3a9f7529edc5b81
DragControls: Add `rotate` mode. (#27689) * added rotation to DragControls * Update misc_controls_drag.html Clean up. * updated code per code review see #27689 for details * Update DragControls.js Clean up. * Update DragControls.html Clean up. * Update DragControls.html Fix type. * Update...
[ { "path": "docs/examples/en/controls/DragControls.html", "patch": "@@ -111,6 +111,16 @@ <h3>[property:Boolean transformGroup]</h3>\n \t\t\tIf set to `true`, [name] does not transform individual objects but the entire group. Default is `false`.\n \t\t</p>\n \n+\t\t<h3>[property:String mode]</h3>\n+\t\t<p>\n+...
2024-02-09T16:53:19
golang/go
aa5de9ebb55bbd5e0a38304f8f8e603b2ec03238
63ec70d4e1350f44caf950cf3f675ae2cb7ea453
synctest: fix comments for time.Now() in synctests Also add a test case to make sure that time.Now() results in the documented date. Change-Id: Ic4cc577eba485b7c6e1a64122da06d7075bbe12e Reviewed-on: https://go-review.googlesource.com/c/go/+/685677 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.g...
[ { "path": "src/testing/synctest/example_test.go", "patch": "@@ -21,7 +21,7 @@ import (\n \n func TestTime(t *testing.T) {\n \tsynctest.Test(t, func(t *testing.T) {\n-\t\tstart := time.Now() // always midnight UTC 2001-01-01\n+\t\tstart := time.Now() // always midnight UTC 2000-01-01\n \t\tgo func() {\n \t\t...
2025-07-04T18:40:42
denoland/deno
2831e5c5104761970198b9a32d11af09a427d022
3930dc112c21106e38009d88717b0dddd1f44341
fix(vendor): store remote version metadata checksum in vendor folder to ensure lockfile uses that (#29433)
[ { "path": "Cargo.lock", "patch": "@@ -1678,9 +1678,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_cache_dir\"\n-version = \"0.22.0\"\n+version = \"0.22.1\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"904c3100bb8dff129430cf603f7846db02cfa2d22dce6b73ed80d34814cc...
2025-05-30T03:46:15
tensorflow/tensorflow
3900954589e0174d062dbfb0538b063879293446
fa1ee174797c6e0c1a9eb305ff18731f7e0d5c14
Fix formatting in TensorFlow wrapper and API files Updated formatting in multiple Python wrapper files including tfe_wrapper, c_api_experimental_reader, python_memory_checker_helper, and pywrap_saved_model files.
[ { "path": "tensorflow/c/eager/c_api_experimental_reader.cc", "patch": "@@ -1,6 +1,6 @@\n /* Copyright 2023 The TensorFlow Authors. All Rights Reserved.\n \n-Licensed under the Apache License, Version 2.0 (the \"License\");;\n+Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not us...
2025-11-18T03:38:40
mrdoob/three.js
996903f37a0beb2ca5c27505139f9d9389a438b9
c2b4d2fa5fb1464cf4caa81bc831b35572ce7b9d
WebGLRenderer: Add Support for Khronos Neutral Tone Mapping (#27668) * added Commerce tone mapping * fix test * Update OutputPass.js Add support for `CommereceToneMapping`. * Update OutputShader.js Add support for `CommerceToneMapping`. * Update tonemapping_pars_fragment.glsl.js Add reference for ...
[ { "path": "examples/jsm/postprocessing/OutputPass.js", "patch": "@@ -7,6 +7,7 @@ import {\n \tCineonToneMapping,\n \tAgXToneMapping,\n \tACESFilmicToneMapping,\n+\tKhronosNeutralToneMapping,\n \tSRGBTransfer\n } from 'three';\n import { Pass, FullScreenQuad } from './Pass.js';\n@@ -61,6 +62,7 @@ class Outpu...
2024-02-09T14:16:31
kubernetes/kubernetes
fc81e22735a66265ad02eaea5d2746565989fdc0
a0e64c21f2fa48d6b47b624748f4ec968be21a4b
fix Node Conformance Container Runtime test with fake registry Signed-off-by: Stanislav Láznička <slznika@microsoft.com>
[ { "path": "test/e2e/common/node/runtime.go", "patch": "@@ -263,7 +263,7 @@ while true; do sleep 1; done\n \t\t\tvar registrySetup bool\n \t\t\tregistryAddress := net.JoinHostPort(\"localhost\", \"5000\")\n \t\t\tginkgo.BeforeEach(func(ctx context.Context) {\n-\t\t\t\t_, err := e2eregistry.SetupRegistry(ctx,...
2025-10-07T11:14:58
swiftlang/swift
6e31926a11362d09c323b4b8093d27533364072a
03e6809782526cd52b7a4afeacfe3e0eae93fafd
Add unsafe annotations to OpenBSDImpl. In #86276 strict memory safety becomes an error, necessitating adding the following annotations and changes: * in init(): check the return value of `pthread_mutex_init`; since this isn't a failable initializer, `fatalError` if this fails, to avoid silently leaving a zero-val...
[ { "path": "stdlib/public/Synchronization/Mutex/OpenBSDImpl.swift", "patch": "@@ -12,47 +12,70 @@\n \n import Glibc\n \n+@usableFromInline\n+@_transparent\n+func errstr(_ no: Int32) -> String {\n+ let a: [CChar] = unsafe Array(unsafeUninitializedCapacity: Int(NL_TEXTMAX)) {\n+ unsafe strerror_r(no, $0.ba...
2026-01-17T15:59:34
denoland/deno
4a80e1d29ba332595051bbb92b93ba02dcd8042c
b27f88239d33e2bf0b3de44d7740360cff8685da
fix(ext/node): correct `kMaxLength` value of `node:buffer` (#29504)
[ { "path": "ext/node/polyfills/internal/buffer.mjs", "patch": "@@ -113,7 +113,7 @@ float32Array[0] = -1; // 0xBF800000\n // check this with `os.endianness()` because that is determined at compile time.\n export const bigEndian = uInt8Float32Array[3] === 0;\n \n-export const kMaxLength = 2147483647;\n+export ...
2025-05-30T02:37:34
mrdoob/three.js
158d8a10d44b076b15fb7c579b55e2477340ac79
92390099a7ec5a098fcd64017e6bf04d890800e4
WebGPURenderer: Support clipping (#27691) * clipping * add ; * remove testing code * cleanup and adjust default settiing in example * remove unused import * cleanup ClippingNode * combine methods * rework to increase efficiency * update screenshot * fix asyncCompile * fix against upstream...
[ { "path": "examples/files.json", "patch": "@@ -321,6 +321,7 @@\n \t\t\"webgpu_backdrop_water\",\n \t\t\"webgpu_camera_logarithmicdepthbuffer\",\n \t\t\"webgpu_clearcoat\",\n+\t\t\"webgpu_clipping\",\n \t\t\"webgpu_compute_audio\",\n \t\t\"webgpu_compute_particles\",\n \t\t\"webgpu_compute_particles_rain\","...
2024-02-09T04:00:16
tensorflow/tensorflow
4e5913d121d631c4af99d5ca1978ad28e7ada173
9e8cf6ff420ae8d5dd047b607fa6dd0164f9c97b
Fix incarnation propagation bug. Recall that every time a multi-controller JAX process starts, it is assigned a randomly generated incarnation id. When a set of processes runs a collective, the processes first call `live_devices`, which returns the incarnation ids of all currently live devices. These incarnations are ...
[ { "path": "third_party/xla/xla/backends/gpu/runtime/collective_thunk.cc", "patch": "@@ -296,7 +296,12 @@ absl::StatusOr<GpuCliqueKey> GetGpuCliqueKey(\n absl::flat_hash_set<IncarnationId> unique_incarnations;\n if (params.incarnations) {\n for (GlobalDeviceId id : participants) {\n- unique_inca...
2025-11-20T00:33:42
denoland/deno
248d038ef65cca43e2728246fbca15db8c3dc9a9
dacfd23b8747a1d14a146086826d90fb0448ca5b
fix(otel): flush data when terminating signal is received (#29515) This commit adds signal handlers that flush telemetry data before the process is terminated.
[ { "path": "ext/telemetry/lib.rs", "patch": "@@ -770,9 +770,87 @@ pub fn init(\n })\n .map_err(|_| deno_core::anyhow::anyhow!(\"failed to set otel globals\"))?;\n \n+ setup_signal_handlers();\n Ok(())\n }\n \n+#[cfg(unix)]\n+fn setup_signal_handlers() {\n+ use tokio::signal::unix::SignalKind;\n+\...
2025-05-29T23:42:33
golang/go
ab7f839280df8734c388046f957f7f37ae5b0998
47b07a87a65584f7b1c1efa26cf94e551e72dc2c
[dev.simd] cmd/compile: fix maskreg/simdreg chaos This CL fixes some errors left by CL 685895. Change-Id: I35ee36287fc964a82fd3c88764b688bd4491be65 Reviewed-on: https://go-review.googlesource.com/c/go/+/687095 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Cherr...
[ { "path": "src/cmd/compile/internal/amd64/ssa.go", "patch": "@@ -1043,8 +1043,8 @@ func ssaGenValue(s *ssagen.State, v *ssa.Value) {\n \t\tx := v.Args[0].Reg()\n \t\ty := v.Reg()\n \t\tif v.Type.IsSIMD() {\n-\t\t\tx = simdReg(v.Args[0])\n-\t\t\ty = simdReg(v)\n+\t\t\tx = simdOrMaskReg(v.Args[0])\n+\t\t\ty =...
2025-07-09T22:33:25
tensorflow/tensorflow
088fef4dec9d530bf45f84b56bb30e9084ebb1e5
7db8cc67c6142f22bfa973961a87b6dca68ceded
Return error if trying to transfer a poisoned buffer PiperOrigin-RevId: 834483629
[ { "path": "third_party/xla/xla/pjrt/gpu/tfrt/BUILD", "patch": "@@ -349,6 +349,7 @@ xla_cc_test(\n \"//xla/tsl/concurrency:async_value\",\n \"//xla/tsl/platform:env\",\n \"//xla/tsl/platform:statusor\",\n+ \"@com_google_absl//absl/status\",\n \"@com_google_absl//absl/st...
2025-11-20T00:10:20
mrdoob/three.js
066664a4071c6decd099a7969272d1b49fef0732
49f785bd3eaba642427a4e7e43aae6f203bf0527
RenderTarget: add count option for MRT (#26427) * WebGLRenderTarget: add count option for MRT * WebGLRenderTarget: resize all attachments * Cleanup MRT textures code * Docs: cleanup * Move changes * RenderTarget: fix conflicts * Legacy: update deprecation version * Legacy: update deprecation hint
[ { "path": "docs/api/ar/renderers/WebGLMultipleRenderTargets.html", "patch": "@@ -1,75 +0,0 @@\n-<!DOCTYPE html>\n-<html lang=\"ar\">\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=\"p...
2024-02-08T11:55:45
denoland/deno
f146e2799309eefe71d86bd6286ac219847ad1d7
833fbfd3adca8ca8deb72f8b1265b7ad78e6154c
ci: fix features for sys_traits in deno_npm_installer (#29514) See https://github.com/denoland/deno/actions/runs/15332901764/job/43143698992. --------- Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
[ { "path": "Cargo.lock", "patch": "@@ -2131,7 +2131,7 @@ dependencies = [\n \n [[package]]\n name = \"deno_lib\"\n-version = \"2.4.0\"\n+version = \"0.23.0\"\n dependencies = [\n \"capacity_builder\",\n \"deno_error\",", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path":...
2025-05-29T21:17:15
golang/go
63ec70d4e1350f44caf950cf3f675ae2cb7ea453
8131635e5a9c7ae2fd2c083bed9e841d27226500
crypto/cipher: Fix comment punctuation Change-Id: I7dc086a87d28ab847288eed13f719421420cd004 Reviewed-on: https://go-review.googlesource.com/c/go/+/686997 Reviewed-by: Alan Donovan <adonovan@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
[ { "path": "src/crypto/cipher/cfb.go", "patch": "@@ -86,7 +86,7 @@ func NewCFBDecrypter(block Block, iv []byte) Stream {\n func newCFB(block Block, iv []byte, decrypt bool) Stream {\n \tblockSize := block.BlockSize()\n \tif len(iv) != blockSize {\n-\t\t// stack trace will indicate whether it was de or encryp...
2025-07-09T19:52:09
mrdoob/three.js
3ebe3ddd5015096b19f6e6dbb533ff56e0737881
66ed062bfceb871e756645b5e2f68ac39a512d6f
MorphNode: Fix loop performance (#27707)
[ { "path": "examples/jsm/nodes/accessors/MorphNode.js", "patch": "@@ -9,6 +9,7 @@ import { textureLoad } from './TextureNode.js';\n import { vertexIndex } from '../core/IndexNode.js';\n import { ivec2, int } from '../shadernode/ShaderNode.js';\n import { DataArrayTexture, Vector2, Vector4, FloatType } from '...
2024-02-08T06:30:12