Deleted user

Results 132202 comments of Deleted user

Looks like we'd need to bump to minimum [email protected] to get `TableWidget`, but we're [currently at min 2.112.0](https://github.com/cdklabs/cdk-monitoring-constructs/blob/598dea1bd09df69d7d8dbc070ae9728f8629bd67/.projenrc.ts#L10). Bumping that would be a breaking change/major version bump, or temporarily maintaining...

Yes, this should technically be feasible at this point. Feel free to take a stab at it!

@aaronkaplan could you have a look at the proposed scheme?

> Duplicate, see also link for some basic steps to try and mitigate it (hard to say if it'll help though): > > * [[BUG] MK4 skipped printing a part...

Seems like the only way to fix it is by using G-Code. Only seems to be happening on BGcode streaming through prusa connect, might be wrong though. Noticed that it...

How could we test it, if there is no way to reproduce it. Even it is in the OCCT tracker, it does not mean, that the issue is valid. There...

IMHO, this issue can be closed, since it can not reproduced in any way, at least i did not find a anything useful in the links.

@boulajp, thank you for opening this issue. We will triage it within the next few business days.

使用WorkbookWriteHandler#afterWorkbookDispose方法进行Excel写入后置处理的时候,通过sheet.getRow(rowIndex)方法获取任意一行也会出现类似的情况: 1、如果数据100条,貌似通过debug可以看到sheet对象里,只有最后的100个Row在,getRow会返回null

> 使用WorkbookWriteHandler#afterWorkbookDispose方法进行Excel写入后置处理的时候,通过sheet.getRow(rowIndex)方法获取任意一行也会出现类似的情况: 1、如果数据100条,貌似通过debug可以看到sheet对象里,只有最后的100个Row在,getRow会返回null debug了一下,发现是因为他用了SXSSFWorkbook,导致最多100个row放到内存里去,其他全在磁盘。所以可以参考下面的写法: EasyExcel.write(outputStream, exportType.getClassType()) .inMemory(true) .registerWriteHandler(new LongestMatchColumnWidthStyleStrategy()) .registerWriteHandler(new RoleNameBasedMergeHandler()) .sheet(exportType.getSheetName()).doWrite(data);