持续集成 持续集成(Continuous integration,简称C1),简单的说持续集成就是频紧地(一天多次)将代码集成到主干,它的好处主要有两个:1、快速发现错误。每完成一次更新,就集成到主干,可以快速发现错误,定位错误也比较容易。2、防止分支大幅偏离主干。如果不是经常集成,主干又在不断更新 ...
分类:
其他好文 时间:
2018-11-23 01:10:52
阅读次数:
506
- 书籍内容 > 地址: https://www.safaribooksonline.com/library/view/continuous-api-management/9781492043546/ - 项目地址 > https://github.com/graphql-faas/continuo ...
1. Question: url : https://leetcode.com/problems/longest-continuous-increasing-subsequence/ 674. Longest Continuous Increasing Subsequence Given an un ...
分类:
其他好文 时间:
2018-11-19 22:09:44
阅读次数:
148
Given an array which consists of non-negative integers and an integer m, you can split the array into m non-empty continuous subarrays. Write an algor ...
分类:
其他好文 时间:
2018-11-06 20:56:00
阅读次数:
145
1 class Solution { 2 public int findLengthOfLCIS(int[] nums) { 3 if(nums.length == 0) return 0; 4 if(nums.length == 1) return 1; 5 int[] dp = new int[... ...
分类:
其他好文 时间:
2018-10-28 00:49:29
阅读次数:
162
1 认识Jenkins 1) Continuous integration 持续集成 2) Continuous Delivery 持续交付 2 安装 1) https://jenkins.io/download/ 2) java -jar xxx.jar --port 8089 3 配置 1) 全 ...
分类:
其他好文 时间:
2018-10-25 11:04:29
阅读次数:
126
Description Given an array of integers and an integer k, you need to find the total number of continuous subarrays whose sum equals to k. Example 1: N ...
分类:
其他好文 时间:
2018-10-25 00:22:40
阅读次数:
156
Bob has a dictionary with N words in it. Now there is a list of words in which the middle part of the word has continuous letters disappeared. The mid ...
分类:
其他好文 时间:
2018-10-18 01:18:22
阅读次数:
199
Given an integer array, you need to find one continuous subarray that if you only sort this subarray in ascending order, then the whole array will be ...
分类:
其他好文 时间:
2018-10-16 16:10:08
阅读次数:
139
Linux netstat命令用于显示网络状态。利用netstat指令可让你得知整个Linux系统的网络情况。 语法 参数说明: -a或--all 显示所有连线中的Socket。 -A<网络类型>或--<网络类型> 列出该网络类型连线中的相关地址。 -c或--continuous 持续列出网络状态。 ...
分类:
Web程序 时间:
2018-10-10 14:15:41
阅读次数:
147