• 记事本


    待了解名词

    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.

  • 相关阅读:
    eclipse中集成python开发环境
    取消eclipse英文单词拼写验证
    exe所在路径
    [转]关于Megatops BinCalc RPN计算器的说明
    WinDbg 蓝屏dump分析教程
    Delphi与Windows 7下的用户账户控制(UAC)机制 及 禁用兼容性助手
    【Delphi7】 解决“程序第一次可以正常编译,但再次编译的时候会报错,必须重新打开Delphi”的问题
    解决xftp远程连接中文乱码
    创建用资源管理器打开FTP位置
    收藏夹里的js
  • 原文地址:https://www.cnblogs.com/frankcui/p/10256560.html
Copyright © 2020-2023  润新知