指南: https://router.vuejs.org/zh/guide/essentials/dynamic-matching.html#%E5%93%8D%E5%BA%94%E8%B7%AF%E7%94%B1%E5%8F%82%E6%95%B0%E7%9A%84%E5%8F%98%E5%8C% ...
分类:
其他好文 时间:
2021-06-10 18:18:38
阅读次数:
0
下载地址:http://ym.maptoface.com/2021/05/16/java%e9%a2%98%e5%ba%93%e8%af%95%e5%8d%b7%e7%ae%a1%e7%90%86%e7%b3%bb%e7%bb%9f%e8%ae%ba%e6%96%87%e6%9f%a5%e9%87% ...
分类:
编程语言 时间:
2021-05-24 12:35:48
阅读次数:
0
将代码封装,并使用unittest调用时,返回如下警告: E:\intall\python-3.7.4-amd64\lib\unittest\suite.py:84: ResourceWarning: unclosed <socket.socket fd=228, family=AddressFam ...
分类:
Web程序 时间:
2021-04-22 15:44:17
阅读次数:
0
##Socket函数 #include <sys/types.h> #include <sys/socket.h> int socket(int domain, int type, int protocol); domain 协议族: AF_OCAL, AF_INT, AF_INET7 type S ...
分类:
其他好文 时间:
2021-04-19 15:04:18
阅读次数:
0
一、问题现象 某客户反馈,一套系统晚上数据库报ORA-600后,DB down挂了,重启后业务正常,需要分析一下问题。 参考 http://www.killdb.com/2015/10/07/mapid%E6%BA%A2%E5%87%BA%E5%AF%BC%E8%87%B4oracle-rac-%E ...
分类:
其他好文 时间:
2021-03-26 15:26:20
阅读次数:
0
php socket 读取缓存区域 <?php //创建socket套接字 $socket = socket_create(AF_INET, SOCK_STREAM, SOL_TCP); //设置阻塞模式 socket_set_block($socket); //为套接字绑定ip和端口 socket ...
分类:
Web程序 时间:
2021-03-16 13:58:08
阅读次数:
0
先考虑暴力dp: 设$f_{i,j}\(表示经过\)(i,j)$的概率,可以通过枚举$f_{a,b}$($a,b$是$D$倍数)统计答案。 递推方法:\(f_{i,j}=Af_{i,j-1}+Bf_{i-1,j}\) 把一斜行写成生成函数形式:设$F_=\sum f_{j,i-j}x^j$ 转移方程 ...
分类:
其他好文 时间:
2021-03-04 13:28:34
阅读次数:
0
static int tcp_open_socket(unsigned short port, const char *bindaddr, const char *ifname){ int fd = -1, n, af, opt; struct sockaddr_in si; struct sock ...
分类:
其他好文 时间:
2021-03-03 12:28:42
阅读次数:
0
#!/usr/bin/python # -*- coding: utf-8 -*- import sys import string import random num=int(sys.argv[1]) #随机生成一个MAC地址 def creat_mac(): MAC='41-AF' hex_nu ...
分类:
系统相关 时间:
2021-02-17 14:53:26
阅读次数:
0
import socketfrom threading import Threadserver = socket.socket(socket.AF_INET,socket.SOCK_STREAM)server.bind(('127.0.0.1',8080))server.listen(5)# def ...
分类:
其他好文 时间:
2021-02-02 10:39:57
阅读次数:
0