# 将80端口的流量转发至192.168.0.1的8080端口 firewall-cmd --permanent --add-forward-port=port=80:proto=tcp:toaddr=192.168.0.1:toport=8080 firewall-cmd --list-ports ...
分类:
其他好文 时间:
2020-02-26 23:18:44
阅读次数:
121
质量属性理念:质量高于功能 质量:指系统满足指定需求或用户/客户需求及期望的程度。 质量属性分为六类: 可用性 可修改性 性能 安全性 可测试性 易用性 我们做一一的解读 首先是可用性: 定义:可用性(Availability),可用性是指系统正常工作的时间所占的比例。可用性会遇到系统错误,恶意攻击 ...
分类:
其他好文 时间:
2020-02-24 21:06:22
阅读次数:
95
Given an unsorted integer array, remove adjacent duplicate elements repeatedly, from left to right. For each group of elements with the same value do ...
分类:
其他好文 时间:
2020-02-24 09:52:00
阅读次数:
84
Given a sorted integer array, remove duplicate elements. For each group of elements with the same value do not keep any of them. Do this in-place, usi ...
分类:
其他好文 时间:
2020-02-24 09:17:03
阅读次数:
77
查询rman备份集 SELECT TRIM(START_TIME||'#'), TRIM(END_TIME||'#'), TRIM(CASE OUTPUT_DEVICE_TYPE WHEN 'DISK' THEN 'DISK' WHEN 'SBT_TAPE' THEN 'SBT_TAPE' ELSE ...
分类:
数据库 时间:
2020-02-22 14:06:25
阅读次数:
76
Quick Start Security Interactive Analysis with the Spark Shell Basics More on Dataset Operations Caching Self-Contained Applications Where to Go from ...
分类:
其他好文 时间:
2020-02-22 13:54:19
阅读次数:
106
概念:算法与数据结构相辅相成 算法是为了解决某一个具体的问题,提出来的一个解法 数据结构是为了支撑这次解法,所提出的一种存储结构 1、两数之和(LeetCode1) 给定一个整数数组 nums 和一个目标值 target,请你在该数组中找出和为目标值的那 两个 整数,并返回他们的数组下标。 你可以假 ...
分类:
编程语言 时间:
2020-02-21 20:12:36
阅读次数:
102