码迷,mamicode.com
首页 >  
搜索关键字:port forwarding    ( 23174个结果
go语言复制一个struct 对象
package main import ( "log" ) type meta struct { name string age int } func (m *meta) copy(dest *meta) { *dest = *m } func main() { a := meta{name:"aa ...
分类:编程语言   时间:2021-04-07 11:39:03    阅读次数:0
【VUE】axios接口数据的获取&上传
###用于测试的接口地址 https://github.com/Alana33/testApi ###axios中文文档(使用教程) http://www.axios-js.com/zh-cn/docs/ ###获取结果 ###上传结果 <!DOCTYPE html> <html lang="en" ...
分类:移动开发   时间:2021-04-07 11:22:00    阅读次数:0
Uncaught (in promise) Error: Redirected when going from "/login" to "/home" via a navigation guard.
项目中遇到如下报错内容:Uncaught (in promise) Error: Uncaught (in promise) Error: Redirected when going from "/login" to "/home" via a navigation guard. 原因:vue-ro ...
分类:其他好文   时间:2021-04-07 11:16:46    阅读次数:0
达梦MPP集群搭建
1. 端口规划 服务器 ip 实例名 PORT_NUM MAL_PORT MAL_DW_PORT GROUP 主1 192.168.44.221 GRP1_MPP_EP01 5236 5337 5253 GRP1 备1 192.168.44.222 GRP1_MPP_EP11 5237 5338 5 ...
分类:其他好文   时间:2021-04-07 11:03:59    阅读次数:0
网络编程与自动化
环境准备 本机安装python3.x , Geany ,ensp 安装实验需要的库 paramiko 交换机1配置sys sys SW1 vlan 10 q int g0/0/1 port link acc port def vlan 10 q user-interface vty 0 4 auth ...
分类:其他好文   时间:2021-04-05 12:14:39    阅读次数:0
实验1
task1 print("hey,u")print("hey","u")x=1y=2z=3print(x,y,z)print("x=%d,y=%d,z=%d"%(x,y,z))print("x={},y={},z={}".format(x,y,z))print(f"x={x},y={y},z={z} ...
分类:其他好文   时间:2021-04-05 12:13:30    阅读次数:0
模块-随机模块:random
import random print(random.random()) # (0,1) 随机小数 0到1 print(random.randint(3,5))# [3,4,5] 取整 print(random.randrange(3,5))# [3,5) 取整 print(random.choic ...
分类:其他好文   时间:2021-04-05 12:02:18    阅读次数:0
cmd 其他相关命令
1、ping命令,如ping www.baidu.com ,用于检测网络是否正常。 2、telnet ip port 用于检测某个指定端口是否开启。 3、curl是常用的命令行工具,用来请求Web服务器。它的名字就是客户端(client)的URL工具的意思。它的功能非常强大,命令行参数多达几十种。如 ...
分类:其他好文   时间:2021-04-05 11:43:06    阅读次数:0
[Docker] MACVLAN Network 簡介
此篇文章介紹 Docker MACVLAN Network 及其運作方式 環境介紹 以下的測試將會在以下環境進行: OS:Ubuntu 18.04 Docker: 18.03.1-ce 網卡配置: eth0:10.103.19.0/24 eth1:trunk port (10.103.[17-18] ...
分类:Web程序   时间:2021-04-02 13:35:18    阅读次数:0
ModuleNotFoundError: No module named "DBUtils"
用python写数据库连接时要用到数据连接池于是就想到了DBUtils ,这个简单pip install DBUtile 安装完后写代码测试一下 from DBUtils.PooledDB import PooledDB Traceback (most recent call last): File ...
分类:数据库   时间:2021-04-02 13:02:54    阅读次数:0
23174条   上一页 1 ... 25 26 27 28 29 ... 2318 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!