Reverse Bits (E) 题目 Reverse bits of a given 32 bits unsigned integer. Example 1: Input: 00000010100101000001111010011100 Output: 001110010111100000101 ...
分类:
其他好文 时间:
2020-07-13 09:14:55
阅读次数:
56
@Component @Aspect public class MyAspect { // /** // * 切点表达式: // * ..两个点表明多个,*代表一个 // * 表达式代表切入com..service包下的所有类的所有方法,方法参数不限,返回类型不限。 // * 其中访问修饰符可以不写 ...
分类:
Web程序 时间:
2020-07-12 22:09:07
阅读次数:
89
1、使用netstat和awk统计服务器出现tcp网络状态并按数量排序?netstat -tua|awk '/^tcp/{state[$NF]++}END{for(i in state){print state[i],i}}'|sort -nr2、ll | awk '{print $3, "owns ...
分类:
其他好文 时间:
2020-07-12 12:17:46
阅读次数:
77
LVS 部署(上)1 LVS全称为Linux Virtual Server,工作在ISO模型中的第四层,修改nat-filter input 链,直接到postrouting 客户端和服务器直接建立连接,lvs是透明的2、LVS术语Director Server:调度服务器,即lvs serverR ...
分类:
其他好文 时间:
2020-07-12 01:11:43
阅读次数:
107
1.DR/BDR 1.1 采用默认的NBMA,同时HUB设备(R1)成为DR,路由完整,路由的下一跳是分支的IP地址,但是由于分支间没有地址映射,所以无法通信 dis fr map-info 1.2 采用广播,自动发现邻居,照样要使得R1成为DR [R4-Serial1/0/0]dis ip rou ...
分类:
其他好文 时间:
2020-07-11 22:42:42
阅读次数:
74
给定一个数组 candidates 和一个目标数 target ,找出 candidates 中所有可以使数字和为 target 的组合。 candidates 中的每个数字在每个组合中只能使用一次。 说明: 所有数字(包括目标数)都是正整数。 解集不能包含重复的组合。 示例 1: 输入: cand ...
分类:
其他好文 时间:
2020-07-11 21:11:18
阅读次数:
43
classmethod class Classmethod: def __init__(self,func): self.func=func def __get__(self, instance, owner): def test(*args,**kwargs): return self.func( ...
分类:
其他好文 时间:
2020-07-11 19:44:00
阅读次数:
64
本系列主要关于Jenkins-CI实操记录与问题解决方案 概述 采用的环境以VMware中的虚拟机Cento610为基准,以Jdk1.8.0_231、mvn3.3.9、dotnetcore2.1/2.2/3.0/、git、svn作为基础环境,以java应用、dotnetcore两大方向进行就开发中的 ...
分类:
其他好文 时间:
2020-07-11 19:24:42
阅读次数:
72
供应商原生开发套件,Vendor Native Development Kit,简称VNDK. 问题引发:vndksupport:Could not load demo.so from default namespace:dlopen failed: library “libstdc++.so” n ...
分类:
移动开发 时间:
2020-07-11 14:21:21
阅读次数:
166
Given a string of numbers and operators, return all possible results from computing all the different possible ways to group numbers and operators. Th ...
分类:
其他好文 时间:
2020-07-11 12:41:31
阅读次数:
54