码迷,mamicode.com
首页 >  
搜索关键字:up    ( 7825个结果
第三节:观察者模式——JDK应用的源码分析
一、观察者模式在 JDK 应用的源码分析 1、JDK 的 Observable 类就使用了观察者模式 2、源码分析 Observable 通过 Vector 来管理 Observer 其中提供了 add/delete/notify 等方法来管理观察者; Observer 是一个接口,提供了一个 up ...
分类:其他好文   时间:2021-02-20 11:49:24    阅读次数:0
Kill port process
refer to: https://stackoverflow.com/questions/24387451/how-can-i-kill-whatever-process-is-using-port-8080-so-that-i-can-vagrant-up/24388281 怎么解决端口被占用的 ...
分类:其他好文   时间:2021-02-09 11:56:30    阅读次数:0
检测设备是否开启,ping
vim ping.sh ping -c2 $1 &> /dev/null //-c2表示运行2次, $1代表变量 if [ $? -eq 0 ];then // $?表示判定上句命令是否正确 0表示正确 1错误 // -eq表示 等于= echo "$1 is up" else echo "$1 i ...
分类:其他好文   时间:2021-02-08 12:36:08    阅读次数:0
route 用法
0.0.0.0 netstat -nr命令会显示路由表的内容。网关为0.0.0.0的网络通常是直连到网络设备上的。因为到自己的直连设备上是不需要网关的,所以0.0.0.0的网关地址是正常的。目的地址是0.0.0.0的路由是你的缺省网关。 Flags:代表的意义如下: o U (route is up ...
分类:其他好文   时间:2021-02-03 11:04:20    阅读次数:0
suiteCRM____Admin
1. Individual users只能set up自己的个人账号,admin可以从User Management为其他用户set up个人账号(右上角下拉菜单中选Admin) 2. Securitly Groups:define groups of users with particular a ...
分类:其他好文   时间:2021-01-28 11:52:12    阅读次数:0
【补题】Codeforces Educational Codeforces Round 103 D
Cleaning the Phone Polycarp often uses his smartphone. He has already installed n applications on it. Application with number i takes up ai units of m ...
分类:其他好文   时间:2021-01-27 13:50:46    阅读次数:0
Python for Data Science - Creating statistical charts
Chapter 7 - Collaborative Analytics with Plotly Segment 2 - Creating statistical charts Setting up to use Plotly within Jupyter import numpy as np imp ...
分类:编程语言   时间:2021-01-25 11:18:24    阅读次数:0
[Leetcode]4. Median of Two Sorted Arrays
题目描述 Given two sorted arrays nums1 and nums2 of size m and n respectively, return the median of the two sorted arrays. Follow up: The overall run time ...
分类:其他好文   时间:2021-01-19 12:12:17    阅读次数:0
harbor证书过期问题
docker-compose down cd /root/harbor ./prepare ## 过期替换证书要重新执行prepare 否则只重启替换证书不生效 客户端仍然报证书过期 docker-compose up -d ...
分类:其他好文   时间:2021-01-19 11:55:36    阅读次数:0
linux配置虚拟ip
ifconfig ens33:1 192.168.4.10 netmask 255.255.255.0 ifconfig ens33:1 up 修改配置文件,使配置在主机重启后自动生效 cd /etc/sysconfig/network-scripts/ cat ifcfg-ens33 > ifcf ...
分类:系统相关   时间:2021-01-18 11:34:17    阅读次数:0
7825条   上一页 1 ... 3 4 5 6 7 ... 783 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!