码迷,mamicode.com
首页 >  
搜索关键字:ip link show    ( 80142个结果
c语言 5-10 求4行3列矩阵和3行4列矩阵的乘积。各构成元素的值从键盘输入。
求4行3列矩阵和3行4列矩阵的乘积。各构成元素的值从键盘输入。 1、 #include <stdio.h> int main(void) { int i, j, k, a[4][3], b[3][4], c[4][4] = {0}; puts("input the elements of 4 row ...
分类:编程语言   时间:2021-05-03 12:19:28    阅读次数:0
在nginx配置将请求转发到某个真实后端服务ip
一、打开nginx机器的nginx配置文件 命令: locate nginx.conf 会列出所有nginx.conf文件的地址, 一般咱们要用的nginx配置文件是/usr/local/nginx/conf/nginx.conf cd /usr/local/nginx/conf vim nginx ...
分类:其他好文   时间:2021-05-03 12:11:25    阅读次数:0
Mysql权限整理
all privileges权限有哪些: select, insert, update, delete, create, drop,references, index,alter,create temporary tables,lock tables,execute,create view,show ...
分类:数据库   时间:2021-05-03 12:11:00    阅读次数:0
常用doc命令
盘符切换 例如 E: 查看当前目录下的所有文件 dir 切换目录 cd change directory 退回上级目录 cd .. 清理屏幕 cls 退出终端 exit 查看电脑IP ipconfig 打开应用 calc 计算器 mspaint 画图 notepad 记事本 ping命令 ping ...
分类:其他好文   时间:2021-05-03 12:08:43    阅读次数:0
Vue学习——Router传参问题
Vue router如何传参 要点总结:在vue-router中,有两大对象被挂载到了实例this;$route(只读、具备信息的对象);$router(具备功能的函数) 查询字符串:去哪里 ?<router-link :to="{name:'detail',query:{id:1}}"> xxx ...
分类:其他好文   时间:2021-05-03 11:55:38    阅读次数:0
Crontab 的使用
crontab 用于设置定时任务,通过 cat /etc/crontab 可查看 crontab 示例: $ cat /etc/crontab SHELL=/bin/bash PATH=/sbin:/bin:/usr/sbin:/usr/bin MAILTO=root # For details s ...
分类:其他好文   时间:2021-05-03 11:54:27    阅读次数:0
django.db.models.query.QuerySet格式的数据输出
1、 def findmtm2(request): import serializer import json # 多对多跨表正向查询 # res = softlist.objects.filter(hostlists__ip="10.116.6.177").values("softname") r ...
分类:数据库   时间:2021-05-03 11:51:42    阅读次数:0
react-router-dom 的基本使用
1.明确好界面中的导航区、展示区 2.导航区的a标签改为Link标签 <Link to="/xxxxx">Demo</Link> 3.展示区写Route标签进行路径的匹配 <Route path='/xxxx' component={Demo}/> 4.<App>的最外侧包裹了一个<BrowserR ...
分类:其他好文   时间:2021-04-30 12:38:22    阅读次数:0
ciyunzuoye
from wordcloud import WordCloudfrom scipy.misc import imreadimport matplotlib.pyplot as pltimport jieba def read_deal_text(): with open("ciyun.txt","r ...
分类:其他好文   时间:2021-04-29 12:18:48    阅读次数:0
MySQL 8.0的MGR多主搭建与测试
OS:CentOS 7.3.1611 按照下述的单机MySQL 8.0安装完之后,将该机复制两台,分别修改IP为192.168.1.78,以及两台新机器配置文件/etc/my.cnf的server_id,还有要去数据路径下删掉auto.cnf不然配置不成。vim /etc/hosts192.168. ...
分类:数据库   时间:2021-04-29 12:13:13    阅读次数:0
80142条   上一页 1 ... 39 40 41 42 43 ... 8015 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!