码迷,mamicode.com
首页 >  
搜索关键字:shell random    ( 35304个结果
Tidb 主机系统参数优化shell
#!/bin/bash#echo "vm.swappiness = 0">> /etc/sysctl.confswapoff -a && swapon -asysctl -psystemctl stop firewalld.servicesystemctl disable firewalld.ser ...
分类:数据库   时间:2021-06-08 23:43:55    阅读次数:0
turtle应用
import turtle from random import * from math import * turtle.seth(90) def tree(n,l): turtle.down() turtle.pencolor('#410200') turtle.pensize(n*3) turt ...
分类:其他好文   时间:2021-06-08 23:16:21    阅读次数:0
jmeter前置处理器中各工具的使用
本文参考https://blog.csdn.net/df0128/article/details/80953755 1.用户参数 在应用的时候使用${username}即可。用户参数相比Csv data set config的弊端在于,不适合取值范围非常大。 2.Bean Shell PreProc ...
分类:其他好文   时间:2021-06-08 23:13:51    阅读次数:0
快速排序(quicksort)犯过的错误
我非常惭愧, 学计算机也好几年了, 居然现在还不会写快排, 可见我水平有多低下(而且现在我也就刚学会递归版, 不会迭代版). 而且我感觉这个非常容易写错. 所以我估计这篇文章我可能会不断更新. import random def quicksort(a,lo,hi): if(lo==hi): ret ...
分类:编程语言   时间:2021-06-08 22:52:01    阅读次数:0
windows命令行远程下载文件的三种方法
方法一: certutil -urlcache -split -f http://xx.xx.xx.xx/test.zip c:\test.zip (windows远程下载文件至本地,仅需要一个cmd执行的地方) 方法二: curl http://xx.xx.xx.xx/test.zip -o c: ...
分类:Windows程序   时间:2021-06-07 21:05:23    阅读次数:0
Docker安装Redis集群
拉取redis镜像 docker pull redis 创建redis容器 docker create --name redis-node1 --net host -v /data/redis-data/node1:/data redis --cluster-enabled yes --cluste ...
分类:其他好文   时间:2021-06-06 19:28:17    阅读次数:0
shell命令查找文件的工具
2021-06-06 关键字:Shell具体应用 需求:在指定目录中查找文件名包含指定字符的文件 - 支持自定义关键字查找 - 支持自定义查找路径及查找关键字 使用方式: 假设这个工具的名称为:fgtool.sh (取意 shell tool for find and grep)。 直接运行此工具, ...
分类:系统相关   时间:2021-06-06 19:18:00    阅读次数:0
在一张图中显示两个hist图(python)
用python在一个图中显示画两个hist图: import random import numpy from matplotlib import pyplot x = [random.gauss(3,1) for _ in range(400)] y = [random.gauss(4,2) fo ...
分类:编程语言   时间:2021-06-06 19:01:54    阅读次数:0
shell 编程
shell 编程 一、Shell 变量 定义变量时,变量名不加美元符号($,PHP语言中变量需要),如: your_name="runoob.com" 注意,变量名和等号之间不能有空格,这可能和你熟悉的所有编程语言都不一样。同时,变量名的命名须遵循如下规则: 命名只能使用英文字母,数字和下划线,首个 ...
分类:系统相关   时间:2021-06-05 18:22:55    阅读次数:0
vscode单步调试Android c++源码
步骤 注意:这个过程需要在Android源码环境中运行,可以使用adb端口转发工具,来连接服务器端的源码进行运行 关于adb端口转发:请看https://www.cnblogs.com/pyjetson/p/14828485.html 1. 运行gdbclient.py脚本 首先是使用vscode ...
分类:移动开发   时间:2021-06-05 18:17:03    阅读次数:0
35304条   上一页 1 ... 6 7 8 9 10 ... 3531 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!