码迷,mamicode.com
首页 >  
搜索关键字:bg processes    ( 2116个结果
修改tmux背景色
https://www.it1352.com/1873377.html #!/bin/sh if [ -n "$TMUX" ]; then case "$1" in prod_*) tmux selectp -P bg=red ;; esac fi ssh "$@" tmux selectp -P ...
分类:其他好文   时间:2021-07-05 17:23:38    阅读次数:0
使用pyinstaller打包生成exe
layout: post title: 将tkinter打包生成exe subtitle: date: 2020-05-30 author: Dapenson header-img: img/post-bg-universe.jpg catalog: true tags: - Python - tk ...
分类:其他好文   时间:2021-06-28 20:10:21    阅读次数:0
BigInteger常用方法
BigInteger: 对大整数类进行操作,超过long能存储的范围 BigDecimal:对高精度小数进行操作 BigInteger bg = new BigInteger("0"); 初始化 并赋值为0 BigInteger类只能与BigInteger类 进行操作 常用方法: bg.add( ) ...
分类:其他好文   时间:2021-06-25 17:05:29    阅读次数:0
Nginx nginx-rtmp-module 直播推流 配置
nginx.conf配置 #user nobody; user www www; worker_processes 8; #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log in ...
分类:其他好文   时间:2021-06-13 09:55:40    阅读次数:0
SQL Server常用处理
1 数据库不能分离(分离时,老提示占用) --查询数据库得连接Idselect spid from sysprocesses where dbid=db_id('test') kill 61 --这个是上边语句的查询结果 --分离数据库 use master go exec sp_detach_db ...
分类:数据库   时间:2021-06-13 09:30:56    阅读次数:0
垂直水平居中div
// html <div id="bg_img"> <div> <input type="text" /> </div> </div> // css #bg_img{ display: grid; place-items: center; } ...
分类:其他好文   时间:2021-06-04 19:14:30    阅读次数:0
OSPF路由协议
目录 OSPF路由协议基本概述和工作过程 DR和BDR OSPF数据包 指令 实验操作 OSPF路由协议基本概述和工作过程 自治系统—AS(相对独立的系统) 内部网关协议—IGP(内部网关路由协议例如:RIP、OSPF,AS内部各路由之间使用的网关) 外部网关协议—EGP(外部网络路由协议例如:BG ...
分类:其他好文   时间:2021-06-02 19:23:12    阅读次数:0
nginx配置数据
#user nobody; worker_processes 1; #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log info; #pid logs/nginx.pid; ev ...
分类:其他好文   时间:2021-06-02 14:41:17    阅读次数:0
微服务介绍
微服务(Microservices)——Martin Flower 原文是 Martin Flower 于 2014 年 3 月 25 日写的《Microservices》。 迁移到:http://www.bdata-cap.com/newsinfo/1713874.html 本文内容 微服务 微服 ...
分类:其他好文   时间:2021-05-24 04:55:03    阅读次数:0
nginx配置实例及多服务器负载
1. nginx.cof配置文件说明 # 运行用户 user nobody; # 启动进程,通常设置成和cpu的数量相等 worker_processes 1; # 全局错误日志及PID文件 #error_log logs/error.log; #error_log logs/error.log n ...
分类:其他好文   时间:2021-04-21 12:37:55    阅读次数:0
2116条   1 2 3 4 ... 212 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!