记事本
待了解名词
RMI
JMX
---------------
937. Reorder Log Files https://leetcode.com/problems/reorder-log-files/
class Solution { public String[] reorderLogFiles(String[] logs) { if(logs.length <= 1){ return logs; } String[] result = new String[logs.length]; for(int q = logs.length -1; q >= 0; q++){ if(!isLetterLogs(logs[q])){ result[q] = logs[q]; }else{ } } return result; } private boolean isLetterLogs(String log){ String[] logList = log.split(" "); for(int i = 1;i < logList.length; i ++){ char[] temp = logList[i].toCharArray(); for(int j = 0; j< temp.length; j++){ if( !(temp[j]>='a' && temp[j]<='z')){ return false; } } } return true; } }
https://leetcode.com/problems/groups-of-special-equivalent-strings/discuss/289642/java-4ms-customized-hashing-algorithm-easy-to-understand
onenote:///\\asiapac.nom\home\userdata\SHA02\cuixunxu\Desktop\Email%20Automation
2019-05-17 08:25:30,860 ERROR [1] [LONWS20686] [DbImportPackageRunner] [f27e3790-8b43-4331-a3f5-d3fb76557602] Error during ValidateAndRun. ErrorMessage:Error during ExecutePostProcessStoredProcedure:sp_LoadStageTakaraBookToHierarchy LoadId:5831 Date:20190516
Inner Exceptions:Can't allocate space for object 'syslogs' in database 'UnityCreditETL' because 'logsegment' segment is full/has no free extents. If you ran out of space in syslogs, dump the transaction log. Otherwise, use ALTER DATABASE to increase the size of the segment.
StackTrace: at.Unity.Credit.Ace.DbImportUtils.DestinationConnection.DatabaseSybase.ExecutePostProcessStoredProcedure(String procedureName, Int32 loadId, DateTime dateTime)
at.Unity.Credit.Ace.DbImportUtils.DbImportPackageRunner.ImportData(String uri, Boolean performLoad)
2019-05-17 08:25:30,877 INFO [1] [LONWS20686] [DbImportPackageRunner] [f27e3790-8b43-4331-a3f5-d3fb76557602] ExitCode:False
2019-05-17 08:25:30,892 INFO [1] [LONWS20686] [DbImportPackageRunner] [f27e3790-8b43-4331-a3f5-d3fb76557602] *** END IMPORT DATA ***
2019-05-17 08:25:30,908 ERROR [1] [LONWS20686] [TraderMetricsDataLoader] Unexpected exception in TraderMetricsDataLoader. ErrorMessage:Error during ExecutePostProcessStoredProcedure:sp_LoadStageTakaraBookToHierarchy LoadId:5831 Date:20190516
Inner Exceptions:Can't allocate space for object 'syslogs' in database 'UnityCreditETL' because 'logsegment' segment is full/has no free extents. If you ran out of space in syslogs, dump the transaction log. Otherwise, use ALTER DATABASE to increase the size of the segment.
StackTrace: at.Unity.Credit.Ace.DbImportUtils.DestinationConnection.DatabaseSybase.ExecutePostProcessStoredProcedure(String procedureName, Int32 loadId, DateTime dateTime)
at.Unity.Credit.Ace.DbImportUtils.DbImportPackageRunner.ImportData(String uri, Boolean performLoad)
at .Unity.Credit.Ace.TraderMetricsDataLoader.TraderMetricsDataLoader.Main(String[] args)
2019-05-17 08:25:30,932 INFO [1] [LONWS20686] [TraderMetricsDataLoader] *** Finished TraderMetricsDataLoader Return:-1=Failure ***
Spring:
https://blog.csdn.net/pan_fei/article/details/83275038
aop:
https://blog.csdn.net/q982151756/article/details/80513340
https://segmentfault.com/a/1190000007469968
JVM:
https://blog.csdn.net/lengxiao1993/article/details/86689331
https://blog.csdn.net/pan_fei/article/details/82985933
https://docs.microsoft.com/en-us/sql/relational-databases/import-export/import-and-export-bulk-data-by-using-the-bcp-utility-sql-server?view=sql-server-2017
Task List:
1- primitive type -> byte bit
> native 关键字
2- primitive type, reference type --> stack , 堆
3-stringBuffer stringBuilder
4-sealed, 没有关键字怎么处理
IObservable 接口 : https://jingyan.baidu.com/article/d3b74d64ac3b6c1f77e609c1.html
5-int, long的取值范围。。什么时候考虑大数字问题
6-why you cannot cast between Iterable<String> and Iterable<Object>, check out covariance and contravariance.
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
· DeepSeek 开源周回顾「GitHub 热点速览」
· 物流快递公司核心技术能力-地址解析分单基础技术分享
· .NET 10首个预览版发布:重大改进与新特性概览!
· AI与.NET技术实操系列(二):开始使用ML.NET
· 单线程的Redis速度为什么快?