码迷,mamicode.com
首页 >  
搜索关键字:operating system engineering    ( 49945个结果
远程 管理 Docker
设置 Docker 远程访问 编辑文件: vim /usr/lib/systemd/system/docker.service 在 ExecStart=/usr/bin/dockerd-current 后面加上 -H tcp://0.0.0.0:2375 -H unix://var/run/dock ...
分类:其他好文   时间:2021-02-01 12:21:08    阅读次数:0
Linux 常用命令
1、开启防火墙 systemctl start firewalld 2、开放指定端口 `` firewall-cmd --zone=public --add-port=1935/tcp --permanent `` 命令含义: --zone #作用域 --add-port=1935/tcp #添加端 ...
分类:系统相关   时间:2021-02-01 11:42:08    阅读次数:0
Zebra ZPL printer command reference for PowerApps
Labelary Engine Documentation ZPL Command Support ZPL Extensions for Simulating Colored Label Stock Configuration via System Properties 1. ZPL Command ...
分类:移动开发   时间:2021-02-01 11:41:41    阅读次数:0
调试 applet 不同的是
测试/调试 Servlet 始终是开发使用过程中的难点。Servlet 往往涉及大量的客户端/服务器交互,可能会出现错误但又难以重现。 这里有一些提示和建议,可以帮助您调试。 System.out.println() System.out.println() 是作为一个标记来使用的,用来测试一段特定 ...
分类:移动开发   时间:2021-01-30 12:15:06    阅读次数:0
MySQL的再理解
1、sql规范 库名、表名、字段名,必须使用小写字母,不得超过30个字符 库名、表名、字段名,必须尽量见名知意,使用下划线分割,禁止使用mysql保留字 建表时表必须有主键,使用bigint unsigned类型,并使用auto_increment自增标记 所有字段及表都必须有注释,存储引擎必须使用 ...
分类:数据库   时间:2021-01-30 12:04:05    阅读次数:0
【zombie】如何查看并杀死僵尸进程?
【zombie】如何查看并杀死僵尸进程? 赏金Micheal关注 2019.03.31 19:40:15字数 1,016阅读 4,373 僵尸进程定义 In UNIX System terminology, a process that has terminated,but whose parent ...
分类:系统相关   时间:2021-01-30 11:48:16    阅读次数:0
java 获取unix时间戳
1. 使用java8 的Instant //获取秒long unixTime = Instant.now().getEpochSecond();//161189992 将时间戳转为日期 long unixTime = 1611901474; Instant instant = Instant.ofE ...
分类:编程语言   时间:2021-01-30 11:46:37    阅读次数:0
C#将时间格式由yyyyMMdd转化成yyyy-MM-dd
string str = DateTime.Now.ToString("yyyyMMdd"); string[] format = {"yyyyMMdd"}; DateTime date; if (DateTime.TryParseExact(str, format, System.Globaliz ...
分类:Windows程序   时间:2021-01-29 12:21:01    阅读次数:0
CountDownLatch CyclicBarrier Semaphore
如下是简单的线程 for (int i = 0; i <10 ; i++) { new Thread(()->{ System.out.println("1"); },""+i).start(); } System.out.println("2"); 2在线程代码后 但不会在线程执行完后才跑 Cou ...
分类:其他好文   时间:2021-01-29 12:18:25    阅读次数:0
第3节StringBuilder类
StringBuilder概述 public static void main(String[] args) { String s="Hello"; s+="World"; System.out.println(s); } 如果对字符串进行拼接操作,每次拼接,都会构建一个新的String对象,既耗时 ...
分类:其他好文   时间:2021-01-29 12:09:41    阅读次数:0
49945条   上一页 1 ... 57 58 59 60 61 ... 4995 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!