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 |
|---|---|---|---|---|---|
kubernetes/kubernetes | 4e6cf3ca0c319a09dc9847c7a50b41905150f4db | 01765f4a41ce2af4f33785e17d1111005dab8720 | ktesting: shorter error logging in WithError
Gomega formats errors by first showing Error() (already has all information
after WithError) and then again by dumping the error struct, which is redundant
in this case. We can avoid the latter by providing a GomegaString
implementation which returns nothing. | [
{
"path": "test/utils/ktesting/assert_test.go",
"patch": "@@ -69,13 +69,8 @@ func TestAssert(t *testing.T) {\n \t\t\texpectTrace: `(FATAL) FATAL ERROR: <klog header>:\n \tTimed out after x.y s.\n \tThe function passed to Eventually returned the following error:\n-\t <*errors.joinError | 0xXXXX>: \n+\t ... | 2025-12-16T11:46:49 |
denoland/deno | 386f3b28304674c74c0f26ff28880206671e0414 | 70498a3ce0cedcf2a277a66b70a390f12b84bc9d | fix: use ArrayIsArray primordial (#30927)
Closes #30892. | [
{
"path": "ext/node/polyfills/_tls_wrap.js",
"patch": "@@ -5,6 +5,7 @@\n // deno-lint-ignore-file prefer-primordials\n \n import {\n+ ArrayIsArray,\n ObjectAssign,\n StringPrototypeReplace,\n } from \"ext:deno_node/internal/primordials.mjs\";",
"additions": 1,
"deletions": 0,
"language": "J... | 2025-10-06T22:01:51 |
golang/go | f6b9d56affb75103507f2b6ed4ffa98ca899b39d | 60f6d2f6230c5085ad25a9e3ebdaaae2aefdfe36 | crypto/internal/fips140/entropy: fix benign race
Fixes #75690
Fixes #75842
Change-Id: I6a6a696420f51f28f48535c34cf347e2cbd4add5
Reviewed-on: https://go-review.googlesource.com/c/go/+/710058
Auto-Submit: Filippo Valsorda <filippo@golang.org>
Reviewed-by: David Chase <drchase@google.com>
Reviewed-by: Roland Shoemaker <... | [
{
"path": "src/crypto/internal/fips140/entropy/entropy.go",
"patch": "@@ -123,7 +123,9 @@ func (s *source) Sample() uint8 {\n \t// Perform a few memory accesses in an unpredictable pattern to expose the\n \t// next measurement to as much system noise as possible.\n \tmemory, lcgState := s.memory, s.lcgState... | 2025-10-08T11:30:34 |
mrdoob/three.js | 3293572ab5b530f785f33d585c3cc4107383516e | c58511d0e95d5d63c672cd8020dd2a3bf6c102e3 | WebGLRenderer: Allow for copying 2d targets to and from layers of 3d textures (#29710)
* handle 2d and 3d cases in copyTextureToTexture3D
* Fix 3d check
* comments
* More comments
* Call 3d version from copyTextureToTexture
* Move texture properties back
* Adjust condition
* Deprecate copyTextureT... | [
{
"path": "docs/api/en/renderers/WebGLRenderer.html",
"patch": "@@ -380,21 +380,13 @@ <h3>\n \t\t</p>\n \n \t\t<h3>\n-\t\t\t[method:undefined copyTextureToTexture]( [param:Texture srcTexture], [param:Texture dstTexture], [param:Box2 srcRegion], [param:Vector2 dstPosition], [param:Number level] )\n-\t\t</h3>... | 2024-10-23T09:30:58 |
kubernetes/kubernetes | 047682908d6d44ab53fdcaadccef0e6c12870fb2 | d17aaf5e29f209ca71047078650e9dcd266e47a4 | ktesting: replace Begin/End with TContext.Step
Manually pairing Being with End is too error prone to be useful. It had the
advantage of keeping variables created between them visible to the following
code, but that doesn't justify using those calls.
By using a callback we can achieve a few things:
- Code using it au... | [
{
"path": "test/e2e_dra/upgradedowngrade_test.go",
"patch": "@@ -123,28 +123,32 @@ func testUpgradeDowngrade(tCtx ktesting.TContext) {\n \t}\n \n \t// Determine what we need to downgrade to.\n-\ttCtx = ktesting.Begin(tCtx, \"get source code version\")\n-\tgitVersion, _, err := sourceVersion(tCtx, repoRoot)\... | 2025-12-10T16:54:44 |
tensorflow/tensorflow | 2bb4a430b2b9c90e337f80b58631fd25075d3edc | acadd2dfaeb5cdfad048a037687f017f2afc73cb | validate step in scalar,histogram,image,audio,write,trace_export; preventing crashes when non-scalar values are passed to tf.summary | [
{
"path": "tensorflow/python/ops/summary_ops_v2.py",
"patch": "@@ -767,6 +767,8 @@ def write(tag, tensor, step=None, metadata=None, name=None):\n ValueError: if a default writer exists, but no step was provided and\n `tf.summary.experimental.get_step()` is None.\n \"\"\"\n+ if step is not None:... | 2026-01-11T14:41:19 |
denoland/deno | 07a2389c7092f4e7046495c4ccc74c9e84181c09 | 567ab7d2af414dfa877beb0c5e0b28545ce90985 | fix(ext/node): `fs.cp` and `fs.cpSync` compatibility (#30502)
Closes #27494
Changes are based on Node.js' implementation. This allows
https://github.com/nodejs/node/blob/v24.2.0/test/parallel/test-fs-cp.mjs
test to pass. | [
{
"path": "ext/node/lib.rs",
"patch": "@@ -349,8 +349,6 @@ deno_core::extension!(deno_node,\n ops::dns::op_node_getaddrinfo<P>,\n ops::fs::op_node_fs_exists_sync<P>,\n ops::fs::op_node_fs_exists<P>,\n- ops::fs::op_node_cp_sync<P>,\n- ops::fs::op_node_cp<P>,\n ops::fs::op_node_lchmod_sy... | 2025-10-06T21:55:26 |
mrdoob/three.js | 8be6bed537fed7226fdfc5acb09f27a4bfca99ee | 226c32cf1efe94a008a5c9a4607593f917bd5e39 | fix: uuid translation in Korean (#29731) | [
{
"path": "docs/api/ko/core/Object3D.html",
"patch": "@@ -197,7 +197,7 @@ <h3>[property:Object userData]</h3>\n \t\t<h3>[property:String uuid]</h3>\n \t\t<p>\n \t\t이 객체 인스턴스의 [link:http://en.wikipedia.org/wiki/Universally_unique_identifier UUID]입니다.\n-\t\t자동으로 할당되며, 수정할 수 없습니다.\n+\t\t자동으로 할당되니 수정하지 마십시오.\n ... | 2024-10-23T08:35:09 |
golang/go | 6fd8e88d07b08531a5585aa4fbcc6043d556742f | 1abc6b0204ed231311c9bbc53cfab36dc546aa8e | encoding/json/v2: restrict presence of default options
Originally, DefaultOptionsV1 and DefaultOptionsV2 represented
the full set of all options with specific ones set to true or false.
However, there are certain options such as WithIndent or WithMarshalers
that are neither v1 or v2 specific.
At some point we removed... | [
{
"path": "src/encoding/json/internal/jsonopts/options.go",
"patch": "@@ -48,16 +48,16 @@ type ArshalValues struct {\n // DefaultOptionsV2 is the set of all options that define default v2 behavior.\n var DefaultOptionsV2 = Struct{\n \tFlags: jsonflags.Flags{\n-\t\tPresence: uint64(jsonflags.AllFlags & ^json... | 2025-10-11T18:37:58 |
denoland/deno | d9ef5d39c7f8372da2ba5460805ce080ce990383 | d49dda30b1cef2550027f8059f24d3614891489c | fix(ext/node): map BadResource error to the corresponding node error (#30926)
Allows
https://github.com/nodejs/node/blob/v24.2.0/test/parallel/test-fs-stat-bigint.js
test to pass | [
{
"path": "ext/node/polyfills/_fs/_fs_fstat.ts",
"patch": "@@ -12,6 +12,7 @@ import {\n Stats,\n } from \"ext:deno_node/_fs/_fs_stat.ts\";\n import { FsFile } from \"ext:deno_fs/30_fs.js\";\n+import { denoErrorToNodeError } from \"ext:deno_node/internal/errors.ts\";\n \n export function fstat(fd: number, ... | 2025-10-06T15:35:15 |
kubernetes/kubernetes | d17aaf5e29f209ca71047078650e9dcd266e47a4 | de477148792c421372b8727fbfcda0d8d6c09463 | e2e: suppress or ignore init log output
klog calls during init are becoming a problem because now test/e2e/framework
depends in test/utils/ktesting which bumps up the default verbosity during init
to make test output more complete when there is no argument parsing.
For cadvisor, an upstream fix is
needed (https://git... | [
{
"path": "hack/verify-e2e-images.sh",
"patch": "@@ -24,6 +24,10 @@ cd \"${KUBE_ROOT}\"\n source hack/lib/init.sh\n ret=0\n \n+# We need deterministic sort order and want to avoid this extra log output:\n+# i18n.go:119] Couldn't find the LC_ALL, LC_MESSAGES or LANG environment variables, defaulting to en_... | 2025-12-10T15:00:33 |
tensorflow/tensorflow | e18839cbd31cd6855a7205af200893c07fab5198 | 0353fd05279a8356d1b6bf47ab6e35611a53ac84 | Fix: Handle both int32 and int64 in dynamic batch size check | [
{
"path": "tensorflow/core/kernels/mkl/mkl_conv_grad_input_ops.cc",
"patch": "@@ -567,38 +567,54 @@ class MklConvCustomBackpropInputOp\n << \"ConvBackpropInput: input should not be in MKL Layout\";\n }\n \n- // Get TensorFlow shape of input tensor.\n+// Get TensorFlow shape of input tensor.\n T... | 2026-01-10T23:54:27 |
mrdoob/three.js | 68ea403185f2acad6a29a400df2fa501054a5b79 | 86f14311168e056c800bedb56c1b579a4b84408c | TiledLightsNode: Fix light intensity (#29723)
* TiledLightsNode: Fix light intensity
* Update webgpu_lights_tiled.jpg | [
{
"path": "examples/jsm/tsl/lighting/TiledLightsNode.js",
"patch": "@@ -94,9 +94,9 @@ class TiledLightsNode extends THREE.LightsNode {\n \t\t\tdata[ offset + 2 ] = _vector3.z;\n \t\t\tdata[ offset + 3 ] = light.distance;\n \n-\t\t\tdata[ lineSize + offset + 0 ] = light.color.r;\n-\t\t\tdata[ lineSize + offs... | 2024-10-22T14:41:02 |
golang/go | 1abc6b0204ed231311c9bbc53cfab36dc546aa8e | 9fdd6904da3d6ef2ed457fada1fb26130213f359 | go/types, types2: permit type cycles through type parameter lists
Issue #49439 was about a deadlock during type inference inside
a type parameter list of a recursive constraint. As a remedy
we disallowed recursive type parameter lists.
In the meantime we have removed support for type inference for
type arguments to g... | [
{
"path": "src/cmd/compile/internal/types2/decl.go",
"patch": "@@ -302,6 +302,12 @@ loop:\n \t\t}\n \t}\n \n+\t// Cycles through type parameter lists are ok (go.dev/issue/68162).\n+\t// TODO(gri) if we are happy with this this, remove this flag and simplify code.\n+\tif tparCycle {\n+\t\treturn true\n+\t}\n... | 2025-10-13T19:47:42 |
denoland/deno | d49dda30b1cef2550027f8059f24d3614891489c | 23671da1359a4bc1953f316a4cb320e4194b4b28 | fix(webgpu): crash after isolate disposal (#30909)
this loop doesn't inherently stop running when the isolate stops
running, so use the isolate task spawner to ensure logic only runs when
the event loop is still running. it would be nice to move this logic
inside the DeviceErrorHandler (we could get rid of the task lo... | [
{
"path": "ext/webgpu/adapter.rs",
"patch": "@@ -117,10 +117,9 @@ impl GPUAdapter {\n \n #[async_method(fake)]\n #[global]\n- fn request_device(\n+ fn request_device<'s>(\n &self,\n state: &mut OpState,\n- isolate: &v8::Isolate,\n scope: &mut v8::PinScope<'_, '_>,\n #[webidl] descri... | 2025-10-04T05:53:24 |
mrdoob/three.js | 9aa74de1baa92ec78ec5bd4c0ba06dc109a67609 | cdc33fedcf22c24f8ae577f106b48fb9a3aa5c83 | `LensflareNode`, `OutlineNode`: Added *Node suffix (#29719) | [
{
"path": "examples/jsm/tsl/display/LensflareNode.js",
"patch": "@@ -33,11 +33,11 @@ class LensflareNode extends TempNode {\n \t\t\tdownSampleRatio = 4\n \t\t} = params;\n \n-\t\tthis.ghostTint = ghostTint;\n-\t\tthis.threshold = threshold;\n-\t\tthis.ghostSamples = ghostSamples;\n-\t\tthis.ghostSpacing = g... | 2024-10-21T16:12:18 |
tensorflow/tensorflow | 13eb8539482bab5f1593b65cfadd73965cef30b1 | 730898e79b166520c88e3550c501f8f5e2a7da9e | Fix: Remove invalid absl/strings:str_cat target, use absl/strings instead | [
{
"path": "tensorflow/core/kernels/data/experimental/BUILD",
"patch": "@@ -551,7 +551,7 @@ tf_kernel_library(\n \"//tensorflow/core/kernels:lookup_util\",\n \"@com_google_absl//absl/log\",\n \"@com_google_absl//absl/status\",\n- \"@com_google_absl//absl/strings:str_cat\",\n+ ... | 2026-01-10T23:43:57 |
golang/go | 0e64ee1286c092eca95b3ffcc5917d34f43d4c0f | 6bcd97d9f4386528aa85eb3cc27da0ed902de870 | encoding/json/v2: report EOF for top-level values in UnmarshalDecode
The fully streaming UnmarshalJSONFrom method and UnmarshalFromFunc
introduce an edge case where they can encounter EOF in the stream,
where it should be reported upstream as EOF rather than
ErrUnexpectedEOF or be wrapped within a SemanticError.
This... | [
{
"path": "src/encoding/json/jsontext/decode.go",
"patch": "@@ -792,6 +792,12 @@ func (d *decoderState) CheckNextValue(last bool) error {\n \treturn nil\n }\n \n+// AtEOF reports whether the decoder is at EOF.\n+func (d *decoderState) AtEOF() bool {\n+\t_, err := d.consumeWhitespace(d.prevEnd)\n+\treturn er... | 2025-10-11T00:56:04 |
swiftlang/swift | 1eac5194f61c46fd159b2e78390dc6e7149ca64f | d347a022b5f071368a7edf1fdd1ca0d4b603a444 | [Dependency Scanning] Fix suspected use-after-free in 'recordClangDependency'
We are hitting a 'EXC_BAD_ACCESS' crash in:
'''
swift::ModuleDependenciesCache::recordClangDependency
cacheComputedClangModuleLookupResults
'''
The only interesting thing this method does appears to be emitting a diagnostic note when encount... | [
{
"path": "lib/AST/ModuleDependencies.cpp",
"patch": "@@ -813,7 +813,8 @@ void ModuleDependenciesCache::recordClangDependency(\n diag::dependency_scan_unexpected_variant_module_map_note,\n priorClangModuleDetails->moduleMapFile, dependency.ClangModuleMapFile);\n \n- auto newClangModuleDet... | 2026-02-10T10:38:00 |
denoland/deno | 23671da1359a4bc1953f316a4cb320e4194b4b28 | 805973385d733679fec5f65158681861f9c924fb | fix(ext/node): fs.realpath buffer encoding (#30885)
Towards #29972
Allows
https://github.com/nodejs/node/blob/v24.2.0/test/parallel/test-fs-realpath-buffer-encoding.js
test to pass.
---------
Co-authored-by: Divy <dj.srivastava23@gmail.com> | [
{
"path": "ext/node/polyfills/_fs/_fs_realpath.ts",
"patch": "@@ -2,39 +2,71 @@\n \n import { promisify } from \"ext:deno_node/internal/util.mjs\";\n import { primordials } from \"ext:core/mod.js\";\n+import { Buffer } from \"node:buffer\";\n+import {\n+ getOptions,\n+ getValidatedPathToString,\n+} from \... | 2025-10-04T03:16:26 |
mrdoob/three.js | 1075735e64db821de7692adc6de9ff186ce0f9ec | 167c022af428becc3048483601f504a836b6d3c7 | WebGLRenderer: Stable reversed Z buffer implementation. (#29579)
* fix: stable reversed Z buffer implementation
Fix: reset clip state when reset is called
Fix: valid depth clear value when reversed is enabled
Feat: non-persistent reversedZ state ( can be controlled via renderer.state.buffers.depth.setReversed(... | [
{
"path": "src/renderers/WebGLRenderer.js",
"patch": "@@ -70,6 +70,7 @@ class WebGLRenderer {\n \t\t\tpreserveDrawingBuffer = false,\n \t\t\tpowerPreference = 'default',\n \t\t\tfailIfMajorPerformanceCaveat = false,\n+\t\t\treverseDepthBuffer = false,\n \t\t} = parameters;\n \n \t\tthis.isWebGLRenderer = tr... | 2024-10-21T16:09:32 |
kubernetes/kubernetes | bb8b4b0d80001d2b5cb7fc2ce40e7a2216e1aa54 | b2ac9e206fdd912f35f2ab5b3c5b5243303ba14b | Correct the usage of vlog's .Error() or .V().Info() methods | [
{
"path": "pkg/controller/storageversionmigrator/storageversionmigrator.go",
"patch": "@@ -224,7 +224,7 @@ func (svmc *SVMController) sync(ctx context.Context, key string) error {\n \t\treturn err\n \t}\n \tif !exists {\n-\t\tlogger.V(4).Error(err, \"resource does not exist in our rest mapper\", \"gvr\", gv... | 2026-01-06T01:09:04 |
tensorflow/tensorflow | 730898e79b166520c88e3550c501f8f5e2a7da9e | ad30140e01801888d1621bc08ca8e654e8e5cd6b | Fix Bazel dependency: Use explicit :str_cat target for absl/strings
Replace generic @com_google_absl//absl/strings with specific
@com_google_absl//absl/strings:str_cat for lookup_ops target.
This follows Bazel best practices and is consistent with how TensorFlow
already uses str_format and string_view targets. Generi... | [
{
"path": "tensorflow/core/kernels/data/experimental/BUILD",
"patch": "@@ -551,7 +551,7 @@ tf_kernel_library(\n \"//tensorflow/core/kernels:lookup_util\",\n \"@com_google_absl//absl/log\",\n \"@com_google_absl//absl/status\",\n- \"@com_google_absl//absl/strings\",\n+ \"... | 2026-01-10T19:48:48 |
golang/go | 6bcd97d9f4386528aa85eb3cc27da0ed902de870 | 1cd71689f2ed8f07031a0cc58fc3586ca501839f | all: replace calls to errors.As with errors.AsType
This change replaces most occurrences (in code as well as in comments) of
errors.As with errors.AsType. It leaves the errors package and vendored
code untouched.
Change-Id: I3bde73f318a0b408bdb8f5a251494af15a13118a
GitHub-Last-Rev: 8aaaa36a5a12d2a6a90c6d51680464e1a31... | [
{
"path": "src/cmd/compile/internal/types2/api_test.go",
"patch": "@@ -2468,8 +2468,8 @@ func TestInstantiateErrors(t *testing.T) {\n \t\t\tt.Fatalf(\"Instantiate(%v, %v) returned nil error, want non-nil\", T, test.targs)\n \t\t}\n \n-\t\tvar argErr *ArgumentError\n-\t\tif !errors.As(err, &argErr) {\n+\t\ta... | 2025-10-01T20:08:18 |
denoland/deno | 805973385d733679fec5f65158681861f9c924fb | 1573279c125ebaafcc34d09578ccc0b0c398a0ef | fix(ext/node): omit `smi` from `zlib.crc32` op function (#30907)
Closes #30636 | [
{
"path": "ext/node/ops/zlib/mod.rs",
"patch": "@@ -923,15 +923,15 @@ impl BrotliDecoder {\n }\n \n #[op2(fast)]\n-pub fn op_zlib_crc32_string(#[string] data: &str, #[smi] value: u32) -> u32 {\n+pub fn op_zlib_crc32_string(#[string] data: &str, value: u32) -> u32 {\n // SAFETY: `data` is a valid buffer.\n... | 2025-10-03T20:57:30 |
mrdoob/three.js | ca20cf971d28fd91f7d345399e3f54973b59654c | 9c548230ad8ec869d44e3c0d14deec010b152734 | Update OutlineNode.js
Fix parameter names. | [
{
"path": "examples/jsm/tsl/display/OutlineNode.js",
"patch": "@@ -431,4 +431,4 @@ class OutlineNode extends TempNode {\n \n export default OutlineNode;\n \n-export const outline = ( scene, camera, selectedObjects ) => nodeObject( new OutlineNode( scene, camera, selectedObjects ) );\n+export const outline =... | 2024-10-21T15:21:54 |
golang/go | 1cd71689f2ed8f07031a0cc58fc3586ca501839f | 8aa1efa223d7bd39faaabdfbf85882ed3942a6f4 | crypto/x509: rework fix for CVE-2025-58187
In CL 709854 we enabled strict validation for a number of properties of
domain names (and their constraints). This caused significant breakage,
since we didn't previously disallow the creation of certificates which
contained these malformed domains.
Rollback a number of the ... | [
{
"path": "src/crypto/x509/name_constraints_test.go",
"patch": "@@ -1456,7 +1456,63 @@ var nameConstraintsTests = []nameConstraintsTest{\n \t\texpectedError: \"incompatible key usage\",\n \t},\n \n-\t// #77: if several EKUs are requested, satisfying any of them is sufficient.\n+\t// An invalid DNS SAN shoul... | 2025-10-09T20:35:24 |
kubernetes/kubernetes | b9b585ac9ed0d2f37f35597783e9518ee60309e9 | 610ca77fc979bc151403f476536f76a1f358f8c7 | api: fix scheduling API optional/required markers
- Change PriorityClass.Value from +required to +optional since
there is no validation requiring it and no defaulting (0 is valid)
- Remove +required from *List.Items fields as List types should
not need optional/required markers on their Items field | [
{
"path": "staging/src/k8s.io/api/scheduling/v1/generated.proto",
"patch": "@@ -39,7 +39,7 @@ message PriorityClass {\n \n // value represents the integer value of this priority class. This is the actual priority that pods\n // receive when they have the name of this class in their pod spec.\n- // +req... | 2026-01-06T00:19:05 |
tensorflow/tensorflow | acadd2dfaeb5cdfad048a037687f017f2afc73cb | 2d9db457b120497dc8716fcca4e174847a406223 | Add a new HLO opcode: `kScan`.
The `kScan` operation performs a scan (prefix sum) along a given dimension. The operation uses a user-defined computation to combine elements. This change includes adding the opcode, the corresponding HloInstruction subclass, proto serialization, and shape verification.
The kScan HLO co... | [
{
"path": "third_party/xla/docs/operation_semantics.md",
"patch": "@@ -4554,6 +4554,56 @@ For more information on `result_accuracy` see\n For StableHLO information see\n [StableHLO - rsqrt](https://openxla.org/stablehlo/spec#rsqrt).\n \n+## Scan\n+\n+See also\n+[`XlaBuilder::Scan`](https://github.com/openxl... | 2026-01-10T15:33:59 |
swiftlang/swift | 37f53e4ebde1d4bd78aba7df9ba1076f63cfd39a | d347a022b5f071368a7edf1fdd1ca0d4b603a444 | ClosureLifetimeFixup: correctly handle dead-end blocks
Blocks with an `unreachable` must be treated like function exiting blocks in order to correctly insert lifetime-ending instructions for complete OSSA lifetimes.
Fixes a verifier crash
rdar://169568625 | [
{
"path": "lib/SILOptimizer/Mandatory/ClosureLifetimeFixup.cpp",
"patch": "@@ -119,7 +119,8 @@ static void findReachableExitBlocks(SILInstruction *i,\n BasicBlockWorklist worklist(i->getParent());\n \n while (SILBasicBlock *bb = worklist.pop()) {\n- if (bb->getTerminator()->isFunctionExiting()) {\n+ ... | 2026-02-10T09:30:17 |
denoland/deno | 1573279c125ebaafcc34d09578ccc0b0c398a0ef | ee46fee061e069c83c9a65749b3446e513ff169a | fix(ext/node): `fs.stat` and `fs.statSync` compatibility (#30866) | [
{
"path": "cli/rt/file_system.rs",
"patch": "@@ -1449,13 +1449,13 @@ impl FileBackedVfsMetadata {\n blksize: 0,\n size: self.len,\n dev: 0,\n- ino: 0,\n+ ino: None,\n mode: 0,\n- nlink: 0,\n+ nlink: None,\n uid: 0,\n gid: 0,\n rdev: 0,\n- bl... | 2025-10-03T15:34:01 |
golang/go | 8aa1efa223d7bd39faaabdfbf85882ed3942a6f4 | b497a29d25b0f6f29bedaa92ac1d40a1ee5c0956 | cmd/link: in TestFallocate, only check number of blocks on Darwin
The number-of-blocks check was introduced when fixing a Darwin-
specific bug. On Darwin, the file allocation syscall is a bit
tricky. On Linux and BSDs, it is more straightforward and unlikely
to go wrong.
The test itself, on the other hand, is less re... | [
{
"path": "src/cmd/link/internal/ld/fallocate_test.go",
"patch": "@@ -10,6 +10,7 @@ import (\n \t\"errors\"\n \t\"os\"\n \t\"path/filepath\"\n+\t\"runtime\"\n \t\"syscall\"\n \t\"testing\"\n )\n@@ -53,12 +54,24 @@ func TestFallocate(t *testing.T) {\n \t\tif got := stat.Size(); got != sz {\n \t\t\tt.Errorf(\... | 2025-10-11T14:36:49 |
kubernetes/kubernetes | 610ca77fc979bc151403f476536f76a1f358f8c7 | cd4109c75f147e83f30a457fb5347453df6d2587 | api: enable optionalorrequired linter for scheduling API
Enable the optionalorrequired linter rule and add exception patterns
for all other API groups except scheduling. This ensures the scheduling
API group is validated for proper +optional/+required markers.
Part of #134671 | [
{
"path": "hack/golangci-hints.yaml",
"patch": "@@ -177,15 +177,15 @@ linters:\n # The following exceptions are for fields in stable or deprecated APIs that cannot be\n # changed due to backward compatibility constraints. Each rule is scoped to the\n # specific field to avoid hiding new vi... | 2025-12-08T15:55:06 |
mrdoob/three.js | 9c548230ad8ec869d44e3c0d14deec010b152734 | 44e18c8f32ae3e53ee28231f8c0da45489593f09 | Update OutlineNode.js
Fix white space. | [
{
"path": "examples/jsm/tsl/display/OutlineNode.js",
"patch": "@@ -354,7 +354,7 @@ class OutlineNode extends TempNode {\n \t\t\t\tweightSum.addAssign( w.mul( 2 ) );\n \t\t\t\tuvOffset.addAssign( delta );\n \n-\t\t\t} );\n+\t\t\t} );\n \n \t\t\treturn diffuseSum.div( weightSum );\n ",
"additions": 1,
... | 2024-10-21T15:12:45 |
tensorflow/tensorflow | ad30140e01801888d1621bc08ca8e654e8e5cd6b | 2938c5fd35973f620fa0d00553af3824bd36825d | Refactor lookup_ops.cc: Remove redundant done_callback and migrate to absl errors
- Remove unnecessary done_callback lambda since gtl::MakeCleanup
automatically self-cleanups when going out of scope
- Migrate deprecated TF errors::InvalidArgument to absl::InvalidArgumentError
- Use done directly in OP_REQUIRES_ASYNC... | [
{
"path": "tensorflow/core/kernels/data/experimental/lookup_ops.cc",
"patch": "@@ -21,6 +21,7 @@ limitations under the License.\n \n #include \"absl/log/log.h\"\n #include \"absl/status/status.h\"\n+#include \"absl/strings/str_cat.h\"\n #include \"tensorflow/core/data/root_dataset.h\"\n #include \"tensorflo... | 2026-01-10T08:10:44 |
swiftlang/swift | ec812e61bb442b592bef5bca78298fb37f6db594 | e25f58fadd223c5840e9153dce656decb92db9d9 | [Test][Interpreter] Fix fallback logic in check_class_for_archiving_log | [
{
"path": "test/Interpreter/SDK/check_class_for_archiving_log.swift",
"patch": "@@ -2,7 +2,8 @@\n // RUN: %target-build-swift %s -module-name=_Test -import-objc-header %S/Inputs/check_class_for_archiving.h -o %t/a.out\n // RUN: %target-codesign %t/a.out\n // RUN: %target-run %t/a.out > %t/output.txt 2>%t/st... | 2026-02-10T08:51:11 |
denoland/deno | 56149a6ae5d2e198a7c8578c8dc8c5aab4d28c3c | 415acdd462dcfc1c6fd8098273a9d4d269c15e4d | fix(tunnel): prevent auth subprocess loop with tasks (#30896) | [
{
"path": "cli/main.rs",
"patch": "@@ -672,7 +672,14 @@ async fn resolve_flags_and_init(\n .map(|files| files.iter().map(PathBuf::from).collect());\n load_env_variables_from_env_files(env_file_paths.as_ref(), flags.log_level);\n \n- if deno_lib::args::has_flag_env_var(\"DENO_CONNECTED\") {\n+ if den... | 2025-10-03T14:16:11 |
golang/go | b497a29d25b0f6f29bedaa92ac1d40a1ee5c0956 | 48bb7a61147c397d0f45c10bc21ba12fa9cec0ad | encoding/json: fix regression in quoted numbers under goexperiment.jsonv2
The legacy parsing of quoted numbers in v1 was according to
the Go grammar for a number, rather than
the JSON grammar for a number.
The former is a superset of the latter.
This is a historical mistake, but usages exist that depend on it.
We alr... | [
{
"path": "src/encoding/json/decode_test.go",
"patch": "@@ -1237,6 +1237,62 @@ var unmarshalTests = []struct {\n \t\tout: (chan int)(nil),\n \t\terr: &UnmarshalTypeError{Value: \"number\", Type: reflect.TypeFor[chan int](), Offset: 1},\n \t},\n+\n+\t// #75619\n+\t{\n+\t\tCaseName: Name(\"QuotedInt... | 2025-10-06T19:56:29 |
mrdoob/three.js | 44e18c8f32ae3e53ee28231f8c0da45489593f09 | ad0dbfe70c205af28a71542b735d553dc58f3e01 | RectAreaLightTextureLib: Fix DataTexture usage (#29717)
Co-authored-by: Samuel Rigaud <srigaud@duodisplay.com> | [
{
"path": "examples/jsm/lights/RectAreaLightTexturesLib.js",
"patch": "@@ -71,7 +71,7 @@ class RectAreaLightTexturesLib {\n \t\tLTC_HALF_2.needsUpdate = true;\n \n \t\tthis.LTC_HALF_1 = LTC_HALF_1;\n-\t\tthis.LTC_HALF_1 = LTC_HALF_2;\n+\t\tthis.LTC_HALF_2 = LTC_HALF_2;\n \n \t\tthis.LTC_FLOAT_1 = LTC_FLOAT_... | 2024-10-21T14:35:44 |
tensorflow/tensorflow | a27e81e9361ae4435ba482fe6fa7fbf5ea6936d4 | a67015f1f702e50aef7bcc2e1a9f420a0b41a1bd | Fixes memory space propagation for nested fusions and add cycle detection.
PiperOrigin-RevId: 854394487 | [
{
"path": "third_party/xla/xla/hlo/transforms/BUILD",
"patch": "@@ -172,6 +172,7 @@ cc_library(\n \"//xla/hlo/ir:hlo\",\n \"//xla/hlo/pass:hlo_pass\",\n \"//xla/service:hlo_value\",\n+ \"//xla/tsl/platform:statusor\",\n \"@com_google_absl//absl/container:flat_hash_set\... | 2026-01-10T01:04:58 |
denoland/deno | 415acdd462dcfc1c6fd8098273a9d4d269c15e4d | 926bcbc4c22693223d6928bf0ca1de762b86cef3 | fix(ext/node): avoid stack overflow in `node:zlib`'s `gunzip` (#30865)
Fixes #30829
## Problem
The zlib polyfill had recursive calls between `processCallback` and
`handle.write()` that caused stack overflow when decompressing large
data.
## Solution
Defer `handle.write()` calls with `process.nextTick()` to break t... | [
{
"path": "ext/node/polyfills/zlib.js",
"patch": "@@ -608,19 +608,7 @@ function processCallback() {\n handle.availInBefore = availInAfter;\n \n if (!streamBufferIsFull) {\n- this.write(\n- handle.flushFlag,\n- this.buffer, // in\n- handle.inOff, // in_off\n- handle.a... | 2025-10-03T08:57:23 |
swiftlang/swift | 0ecd5a9684112e65d944478dcab9658449ca3a42 | 2ddadb6a0cdd85b1f45e742e258ac90f82b0db36 | [Test] Fix shell syntax in validation tests for internal shell compatibility | [
{
"path": "validation-test/Python/call_swiftc_after_relocate_xdg_cache_home_under.swift",
"patch": "@@ -4,7 +4,7 @@\n // RUN: mkdir -p %t\n // RUN: split-file %s %t\n //\n-// RUN: PYTHONPATH=%utils %{python} %t/run_swiftc_with_relocated_xdg_cache_home.py %t/.cache %swiftc_driver_plain %t/hello.swift\n+// RU... | 2026-02-10T08:24:01 |
golang/go | 48bb7a61147c397d0f45c10bc21ba12fa9cec0ad | e8a53538b473f1a7a92602675eda2d34f3887611 | cmd/compile: repair bisection behavior for float-to-unsigned conversion
My stab at a bisect-reproducer failed, but I verified that
it fixed the problem described in the issue.
Updates #75834
Change-Id: I9e0dfacd2bbd22cbc557e144920ee3417a48088c
Reviewed-on: https://go-review.googlesource.com/c/go/+/710997
LUCI-TryBot... | [
{
"path": "src/cmd/compile/internal/ssagen/ssa.go",
"patch": "@@ -2865,7 +2865,19 @@ func (s *state) conv(n ir.Node, v *ssa.Value, ft, tt *types.Type) *ssa.Value {\n \t}\n \n \tif ft.IsFloat() || tt.IsFloat() {\n-\t\tconv, ok := fpConvOpToSSA[twoTypes{s.concreteEtype(ft), s.concreteEtype(tt)}]\n+\t\tcft, ct... | 2025-10-10T21:08:20 |
mrdoob/three.js | 8f4990fc2fa653ee65082f57630d46c62552e391 | 48e6e2ee4e769013b911a079a433aecc2686d5b2 | Docs: Fix typos (#29716)
Co-authored-by: Samuel Rigaud <srigaud@duodisplay.com> | [
{
"path": "docs/api/en/core/Object3D.html",
"patch": "@@ -275,8 +275,8 @@ <h3>[property:Boolean DEFAULT_MATRIX_AUTO_UPDATE]</h3>\n \n \t\t<h3>[property:Boolean DEFAULT_MATRIX_WORLD_AUTO_UPDATE]</h3>\n \t\t<p>\n-\t\t\tThe default setting for [page:.matrixWorldAutoUpdate\n-\t\t\tmatrixWorldAutoUpdate] for new... | 2024-10-21T13:19:16 |
denoland/deno | 926bcbc4c22693223d6928bf0ca1de762b86cef3 | 1c3d04cfaf50a4a0db7a1925c0a73af5ea89bc69 | fix(ext/node): inspect X509Certificate class (#30882)
Fixes #30874 | [
{
"path": "ext/node/polyfills/internal/crypto/x509.ts",
"patch": "@@ -31,6 +31,9 @@ import { isArrayBufferView } from \"ext:deno_node/internal/util/types.ts\";\n import { validateString } from \"ext:deno_node/internal/validators.mjs\";\n import { notImplemented } from \"ext:deno_node/_utils.ts\";\n import {... | 2025-10-03T08:19:56 |
golang/go | e8a53538b473f1a7a92602675eda2d34f3887611 | e3be2d1b2b68d960398a343805f77052d5decb22 | runtime: fail TestGoroutineLeakProfile on data race
Some of the programs in testdata/testgoroutineleakprofile have data
races because they were taken from a corpus that showcases general Go
concurrency bugs, not just leaked goroutines.
This causes some flakiness as tests might fail due to, for example, a
concurrent m... | [
{
"path": "src/runtime/goroutineleakprofile_test.go",
"patch": "@@ -487,7 +487,7 @@ func TestGoroutineLeakProfile(t *testing.T) {\n \ttestCases = append(testCases, patternTestCases...)\n \n \t// Test cases must not panic or cause fatal exceptions.\n-\tfailStates := regexp.MustCompile(`fatal|panic`)\n+\tfail... | 2025-10-09T20:58:34 |
swiftlang/swift | e2aaf1cbd9e6791e42d5edd1702ee334fb49e78d | 2ddadb6a0cdd85b1f45e742e258ac90f82b0db36 | [Test][Backtracing] Use not --crash instead of subshells for internal shell compatibility | [
{
"path": "test/Backtracing/CrashStatic.swift",
"patch": "@@ -1,7 +1,7 @@\n // RUN: %empty-directory(%t)\n // RUN: %target-build-swift %s -parse-as-library %import-static-libdispatch -Onone -static-stdlib -g -o %t/CrashStatic\n // RUN: %target-codesign %t/CrashStatic\n-// RUN: (env SWIFT_BACKTRACE=enable=ye... | 2026-02-10T08:15:42 |
mrdoob/three.js | cb29f6f17ee47ca6d5741b309150317716cbfc70 | 84183ce1a0419e85faf46c56121694fe32979776 | TSL: Support defined color spaces in ColorSpaceNode (#29694)
* TSL: Support defined color spaces in ColorSpaceNode
* TSL: Add .convertColorNode()
* fix circular dependency
* remove chaining method
--------- | [
{
"path": "src/math/ColorManagement.js",
"patch": "@@ -124,7 +124,6 @@ export const ColorManagement = {\n \n };\n \n-\n export function SRGBToLinear( c ) {\n \n \treturn ( c < 0.04045 ) ? c * 0.0773993808 : Math.pow( c * 0.9478672986 + 0.0521327014, 2.4 );",
"additions": 0,
"deletions": 1,
"lang... | 2024-10-20T23:40:32 |
denoland/deno | 46e2c64b2bef9e5e3b97015a1fc88fa76788b0ea | fb69caf0c74e9e5364d0ea36c919d77985095824 | fix(check): do not error for unsupported URL schemes (#30904)
Closes https://github.com/denoland/deno/issues/30898 | [
{
"path": "libs/resolver/file_fetcher.rs",
"patch": "@@ -629,6 +629,17 @@ impl<\n }\n }\n \n+ if !matches!(\n+ specifier.scheme(),\n+ \"file\" | \"http\" | \"https\" | \"blob\" | \"data\"\n+ ) {\n+ return Box::pin(std::future::ready(Ok(Some(\n+ deno_graph::source::LoadR... | 2025-10-03T01:34:53 |
kubernetes/kubernetes | a1d638ea114f34497b0bf1f13f072dcb8c355bb0 | 4c5746c0bc529439f78af458f8131b5def4dbe5d | Enable nomaps rule for Kube API Linter (#134852)
* tested how many errors
* added exceptions
* added scoped exceptions per API group
* added struct.field specification
* improved regex match and included core and resources with the new struct.field format
* condensed exceptions using regex as requested
* fixed t... | [
{
"path": "hack/golangci-hints.yaml",
"patch": "@@ -173,6 +173,44 @@ 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... | 2026-01-06T18:29:39 |
golang/go | e3be2d1b2b68d960398a343805f77052d5decb22 | aced4c79a2b2c60e464410cec1e5378d1011fa18 | net/url: disallow raw IPv6 addresses in host
RFC 3986 requires square brackets around IPv6 addresses.
Parse's acceptance of raw IPv6 addresses is non compliant,
and complicates splitting out a port.
Fixes #31024
Fixes #75223
Change-Id: I477dc420a7441cb33156627dbd5e46d88c677f1e
Reviewed-on: https://go-review.googleso... | [
{
"path": "src/net/url/url.go",
"patch": "@@ -698,7 +698,9 @@ func parseHost(host string) (string, error) {\n \t\t\treturn \"\", errors.New(\"invalid IP-literal\")\n \t\t}\n \t\treturn \"[\" + unescapedHostname + \"]\" + unescapedColonPort, nil\n-\t} else if i := strings.LastIndex(host, \":\"); i != -1 {\n+... | 2025-10-09T00:56:09 |
swiftlang/swift | c06b6c00a01679c6d9d9f10372a6adb51fbba9d5 | 9f58221080b360908f0f4c428d704e0b2ed423ad | Allow pack expansion to bind to no escape
After changing isNoEscape to look for no escape function in
PackExpansionType, benign closures passed to functions with pack
parameters would be errored as not able to convert, since they might
escape. This seems to be because the expansion variable was not able
to bind to noe... | [
{
"path": "lib/Sema/TypeOfReference.cpp",
"patch": "@@ -445,8 +445,9 @@ Type ConstraintSystem::openPackExpansionType(PackExpansionType *expansion,\n auto *expansionLoc = getConstraintLocator(locator.withPathElement(\n LocatorPathElt::PackExpansionType(openedPackExpansion)));\n \n- auto *expansionVa... | 2026-02-04T23:18:38 |
mrdoob/three.js | cde4019a4841ccaac9adae2c5da3c1647c1b7305 | 863b873b8019c530dd188592a4d9f5a7eae07ada | Update PostProcessingUtils.js
Fix typo. | [
{
"path": "src/nodes/utils/PostProcessingUtils.js",
"patch": "@@ -37,7 +37,7 @@ export const getViewPosition = /*@__PURE__*/ Fn( ( [ screenPosition, depth, proj\n *\n * @param {vec3} viewPosition - The fragments position in view space.\n * @param {mat4} projectionMatrix - The camera's projection matrix.\n-*... | 2024-10-20T08:09:28 |
denoland/deno | fb69caf0c74e9e5364d0ea36c919d77985095824 | 5f308da57a8864b966d44dc16e5269d7c092a479 | feat(unstable): permission broker - support custom error messages (#30902)
This allows changing the error message displayed in Deno for errors by
providing a "reason" property when denying a permission. | [
{
"path": "cli/schemas/permission-broker-response.v1.json",
"patch": "@@ -15,6 +15,11 @@\n \"grant\",\n \"deny\"\n ]\n+ },\n+ \"reason\": {\n+ \"type\": \"string\",\n+ \"description\": \"Optional message to display to the user on deny. This will override the default err... | 2025-10-02T20:27:54 |
tensorflow/tensorflow | 03af1cc7f9cb4d8bf02de1e490efb765d373a4d0 | 831487caffb0e7b23fc73263242ac44b148d721d | Propagate original error status in CPU client execution.
PiperOrigin-RevId: 854374423 | [
{
"path": "third_party/xla/xla/pjrt/cpu/cpu_client.cc",
"patch": "@@ -1805,7 +1805,7 @@ absl::StatusOr<PjRtLoadedExecutable::Result> PjRtCpuExecutable::ExecuteHelper(\n execute_event.AndThen([execute_event = execute_event.CopyRef(),\n promise = std::move(promise)](... | 2026-01-09T23:59:16 |
golang/go | aced4c79a2b2c60e464410cec1e5378d1011fa18 | 584a89fe7455470b09643b30bdc3cc55bb75a552 | net/http: strip request body headers on POST to GET redirects
According to WHATWG Fetch, when the body is dropped in a redirect,
headers that describe the body should also be dropped.
https://fetch.spec.whatwg.org/#http-redirect-fetch
Fixes #57273
Change-Id: I84598f69608e95c1b556ea0ce5953ed43bf2d824
Reviewed-on: htt... | [
{
"path": "src/net/http/client.go",
"patch": "@@ -690,8 +690,7 @@ func (c *Client) do(req *Request) (retres *Response, reterr error) {\n \t\t\t\t\tstripSensitiveHeaders = true\n \t\t\t\t}\n \t\t\t}\n-\t\t\tcopyHeaders(req, stripSensitiveHeaders)\n-\n+\t\t\tcopyHeaders(req, stripSensitiveHeaders, !includeBod... | 2025-10-09T01:26:02 |
kubernetes/kubernetes | e83723ce2ca13c3899b5e13d1d449ec0c7ef1e38 | 4c5746c0bc529439f78af458f8131b5def4dbe5d | Add ignoreConversionErrors option to validation testing
This commit adds an 'IgnoreObjectConversionErrors' option to the
validation testing framework in 'k8s.io/apimachinery' and exposes it
via 'pkg/api/testing'.
This is useful for fuzzing tests where we might want to skip object
versions that cannot be converted fro... | [
{
"path": "pkg/api/testing/validation.go",
"patch": "@@ -89,7 +89,7 @@ func VerifyVersionedValidationEquivalence(t *testing.T, obj, old runtime.Object,\n \t\treturn\n \t}\n \tif old == nil {\n-\t\truntimetest.RunValidationForEachVersion(t, legacyscheme.Scheme, []string{}, internalObj, accumulate, opts.SubRe... | 2025-12-29T22:15:32 |
mrdoob/three.js | 3102d6b289c81443ca4e60251c72ea4cf3b029c3 | 04ddcb9189eca17fa92143170498081ec23a5dbb | BufferGeometry: Check for existing attribute in `setFromPoints()`. (#29696)
* BufferGeometry: Check for existing attribute in `setFromPoints()`.
* BufferGeometry: Add warning to `setFromPoints()`.
* Update BufferGeometry.js
Fix typo.
* Docs: Improve `BufferGeometry.setFromPoints()`. | [
{
"path": "docs/api/en/core/BufferGeometry.html",
"patch": "@@ -335,7 +335,12 @@ <h3>[method:undefined setDrawRange] ( [param:Integer start], [param:Integer coun\n \t\t</p>\n \n \t\t<h3>[method:this setFromPoints] ( [param:Array points] )</h3>\n-\t\t<p>Sets the attributes for this BufferGeometry from an arr... | 2024-10-20T08:01:49 |
swiftlang/swift | 5b0746f9670e13b0ff431ffcf4bdf1f47264242b | efa895e1aede6c69d4133a438bc1eece70c24301 | Fix two Wasm test harness issues and re-enable more autodiff tests (#86931)
- Correctly construct cmake cmdline for wasmstdlib including cmake common host options. This is required in order to include e.g. `CMAKE_OSX_SYSROOT` on macOS, etc.
- Ensure we're passing path to newly-built SDK to sil-opt
This makes almost ... | [
{
"path": "test/AutoDiff/SIL/Parse/sildeclref.sil",
"patch": "@@ -1,8 +1,5 @@\n // RUN: %target-sil-opt -sil-print-types %s -module-name=sildeclref_parse | %target-sil-opt -sil-print-types -module-name=sildeclref_parse | %FileCheck %s\n // Parse AutoDiff derivative SILDeclRefs via `witness_method` and `clas... | 2026-02-10T03:15:52 |
denoland/deno | a51be5f0fabf06f9e63d3f00c8498bf55cf138ca | 379789b2090d76adbeac447e8ce9c0ae7d32d7b0 | chore(cli): new error message for missing dependency (#30901) | [
{
"path": "Cargo.lock",
"patch": "@@ -2034,9 +2034,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_doc\"\n-version = \"0.184.0\"\n+version = \"0.185.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"797807db545563a88096326f0a380dee181b21b7b8184eaac3aed5096cabcc37... | 2025-10-02T18:15:55 |
golang/go | 69e82796322bbff60b522534a8a6eacb2bf1ebba | 6f4c63ba63fdec6e4a42e2e19ac71937973dedef | net/http: set cookie host to Request.Host when available
When both Request.URL and Request.Host are set, the host in URL
is used for connecting at the transport level, while Host is used
for the request host line. Cookies should be set for the request,
not the underlying connection destination.
Fixes #38988
Change-I... | [
{
"path": "src/net/http/client.go",
"patch": "@@ -172,8 +172,13 @@ func refererForURL(lastReq, newReq *url.URL, explicitRef string) string {\n \n // didTimeout is non-nil only if err != nil.\n func (c *Client) send(req *Request, deadline time.Time) (resp *Response, didTimeout func() bool, err error) {\n+\tc... | 2025-10-08T21:33:24 |
tensorflow/tensorflow | 64aaf3c3906b75cf35347c80f1645e9a1f88bbf1 | 91d229385223a8bd338b3949b17f5c0c8ba62853 | Add Error Code Documentation for E2002: Mosaic Input/Output Misaligned Block and Tiling
PiperOrigin-RevId: 854370994 | [
{
"path": "third_party/xla/docs/error_codes.md",
"patch": "@@ -10,6 +10,7 @@ This page is a list of all error codes emitted by the XLA compiler.\n - [E1001](./errors/error_1001.md)\n - [E1200](./errors/error_1200.md)\n - [E2001](./errors/error_2001.md)\n+- [E2002](./errors/error_2002.md)\n - [E200... | 2026-01-09T23:47:00 |
mrdoob/three.js | 19db40bd6fcaeb6de8b9dd73aa1ed38ddfd1b78b | 8cba4e878193bf7db01029405f8ce18be93d5715 | WebGLRenderer: Support render target textures in `copyTextureToTexture()`. (#29662)
* WebGLRenderer: Support render target textures in copyTextureToTexture().
* WebGLRenderer: Update `copyTextureToTexture3D()` and docs.
* WebGLRenderer: Attempt to fix `copyTextureToTexture3D()`. | [
{
"path": "docs/api/en/renderers/WebGLRenderer.html",
"patch": "@@ -383,20 +383,18 @@ <h3>\n \t\t\t[method:undefined copyTextureToTexture]( [param:Texture srcTexture], [param:Texture dstTexture], [param:Box2 srcRegion], [param:Vector2 dstPosition], [param:Number level] )\n \t\t</h3>\n \t\t<p>\n-\t\t\tCopies... | 2024-10-19T09:54:55 |
kubernetes/kubernetes | a168b6b05d04d85b0c0fa0a79a3adab94b9737db | 03e14cc9432975dec161de1e52d7010f9711a913 | feat: use contextual HandleCrash when possible | [
{
"path": "pkg/kubelet/kuberuntime/kuberuntime_container.go",
"patch": "@@ -767,7 +767,7 @@ func (m *kubeGenericRuntimeManager) executePreStopHook(ctx context.Context, pod\n \tdone := make(chan struct{})\n \tgo func() {\n \t\tdefer close(done)\n-\t\tdefer utilruntime.HandleCrash()\n+\t\tdefer utilruntime.Ha... | 2026-01-06T15:53:22 |
denoland/deno | 379789b2090d76adbeac447e8ce9c0ae7d32d7b0 | 589d66f79c2651c47c6cb6b45bb5a01d7d1b61a7 | fix(clean): do not panic on failure to get local cache path in clean --except (#30895) | [
{
"path": "cli/tools/clean.rs",
"patch": "@@ -313,7 +313,10 @@ async fn clean_except(\n \n let jsr_url = crate::args::jsr_url();\n add_jsr_meta_paths(graph, &mut keep_paths_trie, jsr_url, &|url| {\n- http_cache.local_path_for_url(url).map_err(Into::into)\n+ http_cache\n+ .local_path_for_url(u... | 2025-10-01T22:41:14 |
golang/go | 6f4c63ba63fdec6e4a42e2e19ac71937973dedef | 955a5a0dc5dd68ed89200a08f17590c0a94c1e09 | cmd/go: unify "go fix" and "go vet"
This change unifies the fix and vet subcommands; they use the
same run function, action graph, and external tool (-vettool
for go vet and -fixtool for go fix). go fix runs the tool
with the -fix flag, whereas although go vet also supports
-fix, it is not the default. The two tools h... | [
{
"path": "doc/next/3-tools.md",
"patch": "@@ -7,5 +7,15 @@\n a replacement for `go tool doc`: it takes the same flags and arguments and\n has the same behavior.\n \n+<!-- go.dev/issue/75432 -->\n+The `go fix` command, following the pattern of `go vet` in Go 1.10,\n+now uses the Go analysis framework (`gola... | 2025-09-26T17:33:09 |
mrdoob/three.js | 8cba4e878193bf7db01029405f8ce18be93d5715 | 6e161d5d71dfa1b404356018a0af8442fd976caa | WebGLRenderer: Always generate mipmaps when "generateMipmaps" is true. (#29677)
* Always generate mipmaps when "generateMipmaps" is true.
* Update HTML examples
* More examples
* Update loaders
* Fix GLTF loader
* Update WebGPURenderer
* Remove unused constants
* Update bindings file to remove unn... | [
{
"path": "examples/jsm/interactive/HTMLMesh.js",
"patch": "@@ -62,6 +62,7 @@ class HTMLTexture extends CanvasTexture {\n \t\tthis.colorSpace = SRGBColorSpace;\n \t\tthis.minFilter = LinearFilter;\n \t\tthis.magFilter = LinearFilter;\n+\t\tthis.generateMipmaps = false;\n \n \t\t// Create an observer on the ... | 2024-10-19T09:50:21 |
tensorflow/tensorflow | 3362e9719fd7b5e46174e5d371db84ced2b54ca2 | 509c8143b4c08ef50301d46b8279939a3c8c8e39 | Fix more small bugs in coordination service configs.
See https://github.com/openxla/xla/pull/35589 for context.
PiperOrigin-RevId: 854354032 | [
{
"path": "third_party/xla/xla/pjrt/distributed/client.cc",
"patch": "@@ -89,7 +89,9 @@ DistributedRuntimeCoordinationServiceClient::\n // Convert options to coordination config.\n CoordinationServiceAgent::Config config;\n config.service_leader = \"/job:jax_worker/task:0\";\n- config.cluster_registe... | 2026-01-09T22:57:18 |
kubernetes/kubernetes | 13e46ffc45b460767f97fd22006015ece28194fd | dd838ccf07a59ccc6a1dcea480faef3900c10400 | Fix the issue of slow creation of ResourceClaim in specific scenarios | [
{
"path": "pkg/controller/resourceclaim/controller.go",
"patch": "@@ -32,6 +32,7 @@ import (\n \t\"k8s.io/apimachinery/pkg/labels\"\n \t\"k8s.io/apimachinery/pkg/types\"\n \t\"k8s.io/apimachinery/pkg/util/runtime\"\n+\t\"k8s.io/apimachinery/pkg/util/sets\"\n \t\"k8s.io/apimachinery/pkg/util/wait\"\n \tcorev... | 2025-12-30T05:44:48 |
denoland/deno | 589d66f79c2651c47c6cb6b45bb5a01d7d1b61a7 | 9c9bfef417b2e028d1e93e7716f1c6024d6acd1d | fix(dts): update some GPU types to not cause errors in upcoming DOM type declarations (#30893)
See
https://github.com/microsoft/TypeScript/pull/62496#issuecomment-3340761035 | [
{
"path": "cli/tsc/dts/lib.deno.unstable.d.ts",
"patch": "@@ -162,6 +162,8 @@ declare namespace Deno {\n success: boolean;\n outputFiles?: OutputFile[];\n }\n+\n+ export {}; // only export exports\n }\n \n /** **UNSTABLE**: New API, yet to be vetted.",
"additions": 2,
"deletio... | 2025-10-01T20:34:43 |
swiftlang/swift | a8392c24eb8914bac1524fa6ab05047fd9c3d169 | 45260c7de42d28ac6deb772672a7a6137bfa29d6 | [LLDB] Add a missing nullptr check for ClangImporter
This is not a possible code path in the Swift compiler, but LLDB has error paths
where ClangImporter could be null, and it has (for testing mostly) a setting to
disable ClangImporter entirely. When importing a Module with a header dependency
this crashes LLDB.
rdar... | [
{
"path": "lib/Serialization/ModuleFile.cpp",
"patch": "@@ -152,7 +152,6 @@ ModuleFile::loadDependenciesForFileContext(const FileUnit *file,\n SourceLoc diagLoc,\n bool forTestable) {\n ASTContext &ctx = getContext();\n-... | 2026-02-09T23:42:51 |
golang/go | 5368e7742971c8dbcb75a405eb2319e71fb1d0c7 | c53cb642deea152e28281133bc0053f5ec0ce358 | net/http: run TestRequestWriteTransport with fake time to avoid flakes
This test verifies whether or not we use the chunked encoding when
sending a request with a body like io.NopCloser(strings.NewReader("")).
This depends on whether the transport can read a single byte from the
request body within 200ms, which is fla... | [
{
"path": "src/net/http/requestwrite_test.go",
"patch": "@@ -15,6 +15,7 @@ import (\n \t\"strings\"\n \t\"testing\"\n \t\"testing/iotest\"\n+\t\"testing/synctest\"\n \t\"time\"\n )\n \n@@ -667,6 +668,13 @@ func TestRequestWrite(t *testing.T) {\n func TestRequestWriteTransport(t *testing.T) {\n \tt.Parallel(... | 2025-10-09T22:25:30 |
mrdoob/three.js | 6e161d5d71dfa1b404356018a0af8442fd976caa | afd51058a7814c8959e465e22834f05fd2febeab | BatchedMesh: Batched cleanup 2 (#29695)
* Variable renaming, remove global unnecessary variables, add member variables
* drawInfo -> instanceInfo
* Don't initialize the geometry when resizing if it has not been initialized yet
* Fix copy-paste error | [
{
"path": "src/objects/BatchedMesh.js",
"patch": "@@ -78,10 +78,7 @@ class MultiDrawRenderList {\n }\n \n const _matrix = /*@__PURE__*/ new Matrix4();\n-const _invMatrixWorld = /*@__PURE__*/ new Matrix4();\n-const _identityMatrix = /*@__PURE__*/ new Matrix4();\n const _whiteColor = /*@__PURE__*/ new Color( ... | 2024-10-19T08:51:37 |
tensorflow/tensorflow | 7c32ce1385c47c74b679ffe82935c5a3d2e2dd77 | 23d9528482c16d69ae433ac4b9298e00dc5374fc | Add Error Code documentation for E2001: Mosaic: Unsupported RHS DataType on Hardware
PiperOrigin-RevId: 854352025 | [
{
"path": "third_party/xla/docs/error_codes.md",
"patch": "@@ -9,6 +9,7 @@ This page is a list of all error codes emitted by the XLA compiler.\n - [E1000](./errors/error_1000.md)\n - [E1001](./errors/error_1001.md)\n - [E1200](./errors/error_1200.md)\n+- [E2001](./errors/error_2001.md)\n - [E2003]... | 2026-01-09T22:51:17 |
mrdoob/three.js | d74ecc563a1d32b3f7e6ccda7a3383082d12f431 | 076d8d609f0af30b95efa5e1edaebd058f025a9f | BatchedMesh: Consolidate internal geometry information (#29687)
* Fix add instance bug
* Add todos for PR, instance count
* Progress towards replacing some geometry info
* remove remaining references to _drawRanges, _bounds, and _reservedRanges
* Fix rendering
* Remove unnecessary global fields
* Cl... | [
{
"path": "src/objects/BatchedMesh.js",
"patch": "@@ -40,7 +40,7 @@ class MultiDrawRenderList {\n \n \t}\n \n-\tpush( drawRange, z, index ) {\n+\tpush( start, count, z, index ) {\n \n \t\tconst pool = this.pool;\n \t\tconst list = this.list;\n@@ -61,8 +61,8 @@ class MultiDrawRenderList {\n \t\tlist.push( it... | 2024-10-18T12:38:46 |
denoland/deno | 9c9bfef417b2e028d1e93e7716f1c6024d6acd1d | 0c4479a2ea521e0fa19266e25a5f582df7c1ce4c | fix: add support for passing v8 flags on `deno check` (#30868) | [
{
"path": "cli/args/flags.rs",
"patch": "@@ -2215,6 +2215,7 @@ Unless --reload is specified, this command will not re-download already cached d\n )\n .arg(allow_import_arg())\n .arg(deny_import_arg())\n+ .arg(v8_flags_arg())\n }\n )\n }\n@@ -5098,6 +5099,7 @@ fn chec... | 2025-09-30T21:26:10 |
golang/go | c53cb642deea152e28281133bc0053f5ec0ce358 | 954fdcc51a678a2b84edb29ef4c3743b318a6fd8 | internal/buildcfg: enable greenteagc experiment for loong64
The loong64 compiler bug has been resolved, so we can now
unconditionally enable the experiment on the architecture.
Updates #73581
Fixes #75776
Change-Id: I390f8a125d43ca64798ea5b6a408aaf7220fadbf
Reviewed-on: https://go-review.googlesource.com/c/go/+/7104... | [
{
"path": "src/internal/buildcfg/exp.go",
"patch": "@@ -78,18 +78,13 @@ func ParseGOEXPERIMENT(goos, goarch, goexp string) (*ExperimentFlags, error) {\n \t// things like .debug_addr (needed for DWARF 5).\n \tdwarf5Supported := (goos != \"darwin\" && goos != \"ios\" && goos != \"aix\")\n \n-\t// The compiler... | 2025-10-09T08:05:35 |
swiftlang/swift | 17d969924c8b6637b00a28d3bf727649ac42f827 | 0a744979cad15b8b76e5c60d1dd2c9fc32f036ad | [SDKInfo] Fix SDKInfo loading to use correct VFS
Partially revert https://github.com/swiftlang/swift/pull/86309. Keep the
SDKInfo parsing in the ASTContext separately from the search path
configuration. This allows the availablity checking to load SDKSettings
from the correct VFS.
rdar://169886913 | [
{
"path": "include/swift/AST/ASTContext.h",
"patch": "@@ -272,7 +272,6 @@ class ASTContext final {\n symbolgraphgen::SymbolGraphOptions &SymbolGraphOpts, CASOptions &casOpts,\n SerializationOptions &serializationOpts, SourceManager &SourceMgr,\n DiagnosticEngine &Diags,\n- std::option... | 2026-02-09T23:01:19 |
tensorflow/tensorflow | d547f40dc78cf2e3aaed12d86408bbe8d44b49da | fb10f043853d4de0471b8007f62fe254207a714c | Add Error code documentation for E2003: Mosaic Unproven Memory Access Alignment
PiperOrigin-RevId: 854293553 | [
{
"path": "third_party/xla/docs/error_codes.md",
"patch": "@@ -9,5 +9,6 @@ This page is a list of all error codes emitted by the XLA compiler.\n - [E1000](./errors/error_1000.md)\n - [E1001](./errors/error_1001.md)\n - [E1200](./errors/error_1200.md)\n+- [E2003](./errors/error_2003.md)\n - [E3000]... | 2026-01-09T20:08:35 |
kubernetes/kubernetes | 977abfa047166de31dfa9f18bc0e172a661766f5 | f36be36c76192c9ccaf8c22d61ec9ed3c0a2f978 | fix(controller/volume): convert V().Error() to V().Info() for selinuxwarning | [
{
"path": "pkg/controller/volume/selinuxwarning/selinux_warning_controller.go",
"patch": "@@ -473,7 +473,7 @@ func (c *Controller) syncPod(ctx context.Context, pod *v1.Pod) error {\n \t\t\tif volumeutil.IsMultipleSELinuxLabelsError(err) {\n \t\t\t\tc.eventRecorder.Eventf(pod, v1.EventTypeWarning, \"Multiple... | 2026-01-06T07:35:26 |
mrdoob/three.js | 076d8d609f0af30b95efa5e1edaebd058f025a9f | 8104618a31e9fa37cbe7a483fa3b38318bf63220 | WebGPURenderer: Fix pipeline cache key (#29685) | [
{
"path": "src/renderers/webgpu/WebGPUBackend.js",
"patch": "@@ -1090,6 +1090,7 @@ class WebGPUBackend extends Backend {\n \t\t\tutils.getSampleCountRenderContext( renderContext ),\n \t\t\tutils.getCurrentColorSpace( renderContext ), utils.getCurrentColorFormat( renderContext ), utils.getCurrentDepthStencil... | 2024-10-18T02:16:46 |
golang/go | 954fdcc51a678a2b84edb29ef4c3743b318a6fd8 | 19a30ea3f250f8d6258f3e08aa3561f1193fdd38 | cmd/compile: declare no output register for loong64 LoweredAtomic{And,Or}32 ops
The ICE seen on loong64 while compiling the `(*gcWork).tryStealSpan`
function was due to an `LoweredAtomicAnd32` op (inlined from the
`(pMask).clear` implementation) being incorrectly assigned an output
register while it shouldn't have. Be... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/LOONG64Ops.go",
"patch": "@@ -143,6 +143,7 @@ func init() {\n \t\tgp2load = regInfo{inputs: []regMask{gpspsbg, gpg}, outputs: []regMask{gp}}\n \t\tgpstore = regInfo{inputs: []regMask{gpspsbg, gpg}}\n \t\tgpstore2 = regInfo{inputs: []regMask{gpspsbg, gpg, gpg... | 2025-10-09T07:52:02 |
denoland/deno | 0c4479a2ea521e0fa19266e25a5f582df7c1ce4c | 1ab2268c0bcbf9b0468e0e36963f77f8c31c73ec | fix: do not purge lockfile when linking and the linked package's reqs have not changed (#30877) | [
{
"path": "Cargo.lock",
"patch": "@@ -1631,7 +1631,7 @@ dependencies = [\n \"deno_lint\",\n \"deno_lockfile\",\n \"deno_media_type\",\n- \"deno_npm 0.39.1\",\n+ \"deno_npm\",\n \"deno_npm_cache\",\n \"deno_npm_installer\",\n \"deno_package_json\",\n@@ -2335,7 +2335,7 @@ dependencies = [\n \"deno_fs\"... | 2025-09-30T18:31:48 |
swiftlang/swift | d40ec964b386670bf4b4f899d0dc32f6389f4fba | 5249cd14379431516770da3eda0568fcc25fffc7 | [test] fix SIL test | [
{
"path": "test/Sema/fixed_ambiguities/rdar33142386.swift",
"patch": "@@ -2,5 +2,5 @@\n // RUN: %target-swift-frontend -emit-sil -verify %s -swift-version 4 | %FileCheck %s\n \n let x: String = \"ultimate question\"\n-// CHECK: function_ref @$sSmsE6filteryxSb7ElementQzKXEKF\n+// CHECK: function_ref @$sSmsE6... | 2026-02-06T23:09:35 |
mrdoob/three.js | cef0049107d05f987406e25d7c9981f190427ea7 | 29c41b6d382739b1d572013bee77daa85ae39a61 | GLTFExporter: Add support for WebGPURenderer (#29509)
* GLTFExporter: Add .setTextureUtils
* clean up
* Update misc_exporter_gltf.html
Fix import.
* fix missing await
* clean up
* GLTFExporter: Convert uncompatible int32 and uint32 attributes
---------
Co-authored-by: Michael Herzog <michael.he... | [
{
"path": "examples/jsm/exporters/GLTFExporter.js",
"patch": "@@ -26,8 +26,6 @@ import {\n \tQuaternion,\n \tREVISION\n } from 'three';\n-import { decompress } from './../utils/WebGLTextureUtils.js';\n-\n \n /**\n * The KHR_mesh_quantization extension allows these extra attribute component types\n@@ -68,6 ... | 2024-10-17T09:31:58 |
golang/go | 80f3bb5516bb12233a15167bc8ba9d39cca5b535 | 9db7e30bb42eed9912f5e7e9e3959f3b38879d5b | reflect: remove timeout in TestChanOfGC
This test has an arbitrary 5 second timeout, and this seems to fire on
Darwin with mayMoreStackMove enabled (which is slow). Just rely on the
regular test timeout instead of this arbitrary shorter timeout to
eliminate the possibility that the test is just too slow.
On my Linux ... | [
{
"path": "src/reflect/all_test.go",
"patch": "@@ -6198,19 +6198,6 @@ func TestChanOfDir(t *testing.T) {\n }\n \n func TestChanOfGC(t *testing.T) {\n-\tdone := make(chan bool, 1)\n-\tgo func() {\n-\t\tselect {\n-\t\tcase <-done:\n-\t\tcase <-time.After(5 * time.Second):\n-\t\t\tpanic(\"deadlock in TestChanO... | 2025-10-09T21:13:59 |
tensorflow/tensorflow | be5c41521198e2de95470ee7f75915e92c3c3dab | 2d4602b16cb91a9f56c6e3ff009b49bd098c2b99 | [XLA] Fix stack frame metadata propagation in Shardy.
Also fix parent_frame_id index during parsing. Before an index was incremented twice so that value 2 was corresponding to actual index 1.
PiperOrigin-RevId: 854177847 | [
{
"path": "third_party/xla/xla/hlo/ir/hlo_module.cc",
"patch": "@@ -510,7 +510,7 @@ void HloModule::PrintStackFrameIndex(Printer* printer,\n llvm::enumerate(stack_frame_index_->stack_frames())) {\n printer->Append(absl::StrFormat(\n \"%d {file_location_id=%d parent_frame_id=%d}\\n\", inde... | 2026-01-09T14:57:51 |
denoland/deno | 1ab2268c0bcbf9b0468e0e36963f77f8c31c73ec | 992e998dfe436cdc9325232759af8be92f11739b | fix(fs): improve file stat checks (#30876) | [
{
"path": "ext/fs/lib.rs",
"patch": "@@ -166,8 +166,8 @@ deno_core::extension!(deno_fs,\n op_fs_file_sync_data_async,\n op_fs_file_sync_sync,\n op_fs_file_sync_async,\n- op_fs_file_stat_sync,\n- op_fs_file_stat_async,\n+ op_fs_file_stat_sync<P>,\n+ op_fs_file_stat_async<P>,\n op_... | 2025-09-30T00:28:06 |
swiftlang/swift | 8d41f21aeae353e71cff20beb550ed6916c3e032 | f627832f94ac2f16682f68ec289183c19f3db85d | IRGen/Runtime: Fix discrepancies in Borrow type layout.
On the compiler side, `Borrow` ought to use extra inhabitants from its value
representation, or at least the null pointer for the pointer representation.
On the runtime side, the choice of representation needs to take size into
account. | [
{
"path": "lib/IRGen/FixedTypeInfo.h",
"patch": "@@ -104,6 +104,7 @@ class FixedTypeInfo : public TypeInfo {\n llvm::Value *getIsTriviallyDestroyable(IRGenFunction &IGF, SILType T) const override;\n llvm::Value *getIsBitwiseTakable(IRGenFunction &IGF, SILType T) const override;\n llvm::Value *getIsBit... | 2026-02-06T20:48:32 |
mrdoob/three.js | ac5804dd38b3bb4c43fec39c568658a754f00848 | aee03e7623151f9ad0e53bb324842b7dfbe11d30 | WebGPURenderer: Add backend information to `data-engine` field. (#29670)
* feat: add engine field to easier debug if running on webgl or webgpu
* Revert "feat: add engine field to easier debug if running on webgl or webgpu"
This reverts commit 95e506d50dcb72b3714f8ecba17918a8e713f38b.
* feat: add backend info... | [
{
"path": "src/renderers/common/Backend.js",
"patch": "@@ -6,7 +6,7 @@ import Color4 from './Color4.js';\n import { Vector2 } from '../../math/Vector2.js';\n import { Vector4 } from '../../math/Vector4.js';\n import { createCanvasElement } from '../../utils.js';\n-import { REVISION } from '../../constants.j... | 2024-10-16T09:57:13 |
golang/go | 9db7e30bb42eed9912f5e7e9e3959f3b38879d5b | 8d810286b3121b601480426159c04d178fa29166 | net/url: allow IP-literals with IPv4-mapped IPv6 addresses
The security fix we applied in CL709857 was overly broad. It applied
rules from RFC 2732, which disallowed IPv4-mapped IPv6 addresses, but
these were later allowed in RFC 3986, which is the canonical URI syntax
RFC.
Revert the portion of CL709857 which restri... | [
{
"path": "src/net/url/url.go",
"patch": "@@ -689,13 +689,13 @@ func parseHost(host string) (string, error) {\n \n \t\t// Per RFC 3986, only a host identified by a valid\n \t\t// IPv6 address can be enclosed by square brackets.\n-\t\t// This excludes any IPv4 or IPv4-mapped addresses.\n+\t\t// This excludes... | 2025-10-09T00:13:12 |
tensorflow/tensorflow | 02b5f28f285635dea8cc024e24ff349793354137 | 5d45b5ad4aee465d105885ad92007902c9e573d9 | PR #35691: [xla:gpu] Add device-initiated collective kernels for tests
Imported from GitHub PR https://github.com/openxla/xla/pull/35691
These kernels are not used yet, they are here simply to test that we can build them for different versions of NCCL.
Plumbing these kernels to XLA and FFI custom calls will be in fo... | [
{
"path": "third_party/xla/xla/tests/BUILD",
"patch": "@@ -2,6 +2,7 @@\n # Base testing infrastructure for XLA.\n \n load(\"@bazel_skylib//:bzl_library.bzl\", \"bzl_library\")\n+load(\"@local_config_cuda//cuda:build_defs.bzl\", \"cuda_library\")\n load(\n \"@local_config_rocm//rocm:build_defs.bzl\",\n... | 2026-01-09T12:26:04 |
denoland/deno | 992e998dfe436cdc9325232759af8be92f11739b | 24295d113e4e65ff4a8a7d0e1cc786b57e74b8fe | fix(fs): improve file utime checks (#30872)
Improves the checks on FsFile.prototype.utime | [
{
"path": "cli/rt/file_system.rs",
"patch": "@@ -1254,6 +1254,12 @@ impl FileBackedVfsFile {\n \n #[async_trait::async_trait(?Send)]\n impl deno_io::fs::File for FileBackedVfsFile {\n+ fn maybe_path(&self) -> Option<&Path> {\n+ // ok because a vfs file will never be written to and this\n+ // method i... | 2025-09-29T22:56:38 |
kubernetes/kubernetes | cd7d35fa3d456511b9fd60cc7cacc77c56d712cd | dd838ccf07a59ccc6a1dcea480faef3900c10400 | Fix flake TestDeviceTaintRule test by adjusting event hanlder status update logic
Co-authored-by: Pohly <patrick.ohly@intel.com> | [
{
"path": "pkg/controller/devicetainteviction/device_taint_eviction.go",
"patch": "@@ -434,6 +434,7 @@ func (tc *Controller) maybeDeletePod(ctx context.Context, podRef tainteviction.N\n \t\t\t// Doing this immediately is not useful because\n \t\t\t// it would just race with the informers update\n \t\t\t// (... | 2025-12-05T10:27:00 |
mrdoob/three.js | aee03e7623151f9ad0e53bb324842b7dfbe11d30 | fdd528daa4ef9ce60e25fe1a7130ade8de449b05 | 3MFLoader: Add Preliminary Support for Loading Implicit Functions (#29667)
* Begin adding an implicit function node parser
* Begin adding TSL Node Generation
There has to be a better way...
* Remove references to TSL
* Remove vestigial testing code
* Fix deep scan issue...
* Update 3MFLoader.js
Cl... | [
{
"path": "examples/jsm/loaders/3MFLoader.js",
"patch": "@@ -375,6 +375,70 @@ class ThreeMFLoader extends Loader {\n \n \t\t}\n \n+\t\tfunction parseImplicitIONode( implicitIONode ) {\n+\n+\t\t\tconst portNodes = implicitIONode.children;\n+\t\t\tconst portArguments = {};\n+\t\t\tfor ( let i = 0; i < portNod... | 2024-10-16T08:11:00 |
golang/go | 0e466a8d1d89e15e953c7d35bcd9e02d3c89f62b | 4837fbe4145cd47b43eed66fee9eed9c2b988316 | cmd/compile: modify float-to-[u]int so that amd64 and arm64 match
Eventual goal is that all the architectures agree, and are
sensible. The test will be build-tagged to exclude
not-yet-handled platforms.
This change also bisects the conversion change in case of bugs.
(`bisect -compile=convert ...`)
Change-Id: I98528... | [
{
"path": "src/cmd/compile/internal/base/debug.go",
"patch": "@@ -20,6 +20,7 @@ type DebugFlags struct {\n \tAppend int `help:\"print information about append compilation\"`\n \tCheckptr int `help:\"instrument unsafe pointer conversions\\n0: instrumentation disabled\\n1: co... | 2025-07-21T17:30:08 |
denoland/deno | 24295d113e4e65ff4a8a7d0e1cc786b57e74b8fe | ecfd6ae6fa0a069cbbe86f2310667f9ebcd0c113 | fix(npm): do not error when packument version contains both bundleDependencies and bundledDependencies (#30875) | [
{
"path": "Cargo.lock",
"patch": "@@ -1631,7 +1631,7 @@ dependencies = [\n \"deno_lint\",\n \"deno_lockfile\",\n \"deno_media_type\",\n- \"deno_npm 0.39.0\",\n+ \"deno_npm 0.39.1\",\n \"deno_npm_cache\",\n \"deno_npm_installer\",\n \"deno_package_json\",\n@@ -2335,7 +2335,7 @@ dependencies = [\n \"de... | 2025-09-29T21:45:42 |
mrdoob/three.js | fdd528daa4ef9ce60e25fe1a7130ade8de449b05 | b9144b9cfae5a985a23ea95ca1a77b0ae4fb366a | Batchmesh: Fix cases where calling optimize can result in inconsistent state (#29624)
* Fix skipping over active rather than inactive geometry
* Fix optimize
* Correct the shifting of geometry data
* Account for a case where the index bit size can be increased.
* typo fix
* Remove comments
* Add com... | [
{
"path": "src/objects/BatchedMesh.js",
"patch": "@@ -97,7 +97,6 @@ const _batchIntersects = [];\n // @TODO: geometry.drawRange support?\n // @TODO: geometry.morphAttributes support?\n // @TODO: Support uniform parameter per geometry\n-// @TODO: Add an \"optimize\" function to pack geometry and remove data ... | 2024-10-16T08:05:07 |
tensorflow/tensorflow | 5f10453ec6866197d88c77c9e149a1bf054f8b22 | 355a15f9ce235cf5b94bcce565629fcdac2bad38 | PR #36001: [xla:gpu] CommandExecutor: Correctly split RecordCreate from RecordUpdate and cleanup public facing Record API
Imported from GitHub PR https://github.com/openxla/xla/pull/36001
1. Split public facing `CommandBufferExecutor::Record` API from fine grained `RecordCreate` and `RecordUpdate` APIs.
2. Fix severa... | [
{
"path": "third_party/xla/xla/backends/gpu/runtime/BUILD",
"patch": "@@ -151,7 +151,6 @@ cc_library(\n \"//xla/tsl/platform:statusor\",\n \"@com_google_absl//absl/algorithm:container\",\n \"@com_google_absl//absl/base:core_headers\",\n- \"@com_google_absl//absl/base:nullabili... | 2026-01-09T12:19:09 |
swiftlang/swift | 8e6bea381c0736df2dab5c6accbaa047d7f66807 | 56dc450c9cd4a9be7d7c82d6c377b11a6342dc79 | [test] Add some more known crashers | [
{
"path": "validation-test/IDE/crashers/TypeTransform-doIt-2039a1.swift",
"patch": "@@ -0,0 +1,5 @@\n+// {\"kind\":\"complete\",\"original\":\"747a5bcd\",\"signature\":\"swift::TypeTransform<(anonymous namespace)::TypeSimplifier>::doIt(swift::Type, swift::TypePosition)\",\"signatureAssert\":\"Assertion fail... | 2026-02-06T11:33:57 |
Subsets and Splits
Assembly Language GitHub Issues
Retrieves a sample of assembly-language related commits with their details, but doesn't provide meaningful analysis or patterns beyond basic filtering.
Swift Compiler Issues Analysis
Retrieves all training data for the Swift programming language repository, providing basic filtering but offering limited analytical insight beyond identifying relevant code examples.