码迷,mamicode.com
首页 >  
搜索关键字:receive    ( 1199个结果
jmeter与tcp和udp建立连接
1.jmeter 与tcp 建立连接 先启动一个tcp服务端 # -*- coding:utf-8 -*- #@Time : 2020/5/17 20:18 #@Author: 张君 #@File : server_test.py # encoding=utf-8 import socketserv ...
分类:其他好文   时间:2020-05-17 21:46:26    阅读次数:77
RPC编程(linux)
[TOC] RPC 在介绍RPC之前,我们有必要先介绍一下IPC 进程间通信(IPC,Inter Process Communication),指至少两个进程或线程间传送数据或信号的一些技术或方法。进程是计算机系统分配资源的最小单位。每个进程都有自己的一部分独立的系统资源,彼此是隔离的。为了能使不同 ...
分类:系统相关   时间:2020-05-14 13:07:08    阅读次数:112
JSP 08课
<%@page import="com.gd.entity.Msg"%> <%@page import="com.gd.dao.MsgDao"%> <%@page import="com.gd.entity.Users"%> <%@ page language="java" import="java ...
分类:Web程序   时间:2020-05-13 17:19:28    阅读次数:76
nodejs - react - TypeError [ERR_INVALID_ARG_TYPE]: The "path" argument must be of type string. Received undefined
首先react需要安装nodejs然后安装reacthttps://www.runoob.com/react/react-install.htmlTypeError [ERR_INVALID_ARG_TYPE]: The "path" argument must be of type string. ...
分类:Web程序   时间:2020-05-12 14:06:12    阅读次数:192
12121212
<?php public function task() { $list = M('SysTask')->where(['status' => ['neq',3]])->select(); // 通过文件锁住操作执行完再执行下一个 $fp = fopen("lock.txt", "w+"); if ...
分类:其他好文   时间:2020-05-11 01:28:41    阅读次数:77
Delphi Ping
function PingServer(HostIP: string;LinkTimeOut: integer): boolean; var RRemoteC: TIdIcmpClient; AReplyStatus: TReplyStatus; begin try result := true; ...
分类:Windows程序   时间:2020-05-10 12:31:05    阅读次数:74
基于select的非阻塞ftp传输(未优化)
#!/usr/bin/env python # -*- coding:utf-8 -*- # Author: xuexueuxe import socket import select import os,json,time,queue def get(r,cmd): filename = cmd. ...
分类:其他好文   时间:2020-05-09 18:38:10    阅读次数:61
基于嵌入式操作系统VxWorks的
管道可以看作受驱动器pipeDrv管理的虚拟I/O设备,使用基本的I/O系统接口可以读、写和操作管道,这些函数包括read、write、open、close、ioctl和select等。与pipe密切相关的其它API还有:(1)pipeDrv():初始化pipeDrv,函数原型:STATUSpipeDrv(void);(2)pipeDevCreate():创建pipe,函数原型:STATUSpip
分类:其他好文   时间:2020-05-09 10:41:37    阅读次数:90
python @staticmethod 注解,静态方法,可以省略类里那个self参数
class staticmethod(object): """ staticmethod(function) -> method Convert a function to be a static method. A static method does not receive an implici ...
分类:编程语言   时间:2020-05-02 22:32:25    阅读次数:120
查看tcp连接情况
netstat -n | awk '/^tcp/ {++S[$NF]} END {for(a in S) print a, S[a]}' TIME_WAIT 8947 等待足够的时间以确保远程TCP接收到连接中断请求的确认FIN_WAIT1 15 等待远程TCP连接中断请求,或先前的连接中断请求的确 ...
分类:其他好文   时间:2020-04-28 12:44:56    阅读次数:72
1199条   上一页 1 ... 6 7 8 9 10 ... 120 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!