//提交防疫人员申请function submitForm(){ var address = $("#address").val(); var userName= $("#userName").val() ; var sex=$("#sex").attr("data-values"); if(use ...
分类:
编程语言 时间:
2020-06-30 10:50:29
阅读次数:
54
在windows系统中,可以通过Regsvr32来实现注册ocx或者dl, 编程时,调用Regsvr32来注册,却不能正常执行。尤其是在Win7系统中,需要管理员身份才能运行。 使用下面的代码则能正常注册。 //注册 function RegisterDllServer(FileName: stri ...
ipv6配置: jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=[fe80::495:f6e8:5c9e:3fdb%eno16777984])(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=orc ...
分类:
数据库 时间:
2020-06-30 10:26:33
阅读次数:
90
当终止服务器运行后,再次进行调试时,出现bind error: Address Already in use 在bind函数调用前添加,即可免去Linux下的TIME_WAIT的将近两分钟的等待时间 int on=1; setsockopt(sockfd,SOL_SOCKET,SO_REUSEADD ...
分类:
Web程序 时间:
2020-06-29 13:13:21
阅读次数:
108
MAC 地址(Media access control address)是分配给网络接口控制器(Network interface controller, NIC)的唯一标识符,它会在网络段中充当网络地址使用,所有具有网卡的主机都有单独的 MAC 地址,该地址总共包含 48 位,占 6 字节的空间, ...
分类:
系统相关 时间:
2020-06-29 10:06:23
阅读次数:
76
max.poll.interval.ms参数用于指定consumer两次poll的最大时间间隔(默认5分钟),如果超过了该间隔consumer client会主动向coordinator发起LeaveGroup请求,触发rebalance;然后consumer重新发送JoinGroup请求 示例如下 ...
分类:
其他好文 时间:
2020-06-28 22:18:58
阅读次数:
547
?表 1-1 本章命令汇总命令作用 enable 从用户模式进入特权模式 configure terminal 进入配置模式 interface g0/0 进入千兆以太网接口模式 ip address 172.16.0.1 255.255.0.0配置接口的ip地址 no shutdown 打开接口 ...
分类:
其他好文 时间:
2020-06-27 11:44:06
阅读次数:
74
查询ip,http://github.global.ssl.fastly.net.ipaddress.com/ 将得到的ip都加入hosts文件: IP1 github.com IP2 github.com ...
分类:
其他好文 时间:
2020-06-27 00:37:37
阅读次数:
160
Test_Request_Module.py import requests class Test_Request: def __init__(self,ip): self.ip = ip def ip_address(self): url = "http://apis.juhe.cn/ip/ipN ...
分类:
其他好文 时间:
2020-06-26 16:28:42
阅读次数:
62
package LeetCode_468 /** * 468. Validate IP Address * https://leetcode.com/problems/validate-ip-address/description/ * * Write a function to check whe ...
分类:
其他好文 时间:
2020-06-25 23:14:31
阅读次数:
48