码迷,mamicode.com
首页 >  
搜索关键字:mis    ( 2348个结果
TCP传输小数据包效率问题
TCP传输小数据包效率问题(译自MSDN) http://www.ftpff.com/blog/?q=node/16 摘要:当使用TCP传输小型数据包时,程序的设计是相当重要的。如果在设计方案中不对TCP数据包的 延迟应答,Nagle算法,Winsock缓冲作用引起重视,将会严重影响程序的性能。这篇 ...
分类:其他好文   时间:2018-04-15 11:47:36    阅读次数:199
leetcode-231-Power of Two
题目描述: Given an integer, write a function to determine if it is a power of two. 要完成的函数: bool isPowerOfTwo(int n) 说明: 1、给定一个int型整数,判断它是不是2的幂。首先我们可以确定负数和 ...
分类:其他好文   时间:2018-04-14 15:26:21    阅读次数:169
wenbao与数论(大白书)
最大公约数之和 https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&category=26&problem=2421&mosmsg=Submission+received+wi ...
分类:其他好文   时间:2018-04-14 15:21:17    阅读次数:148
Permission denied (publickey). fatal: Could not read from remote repository.
执行语句git push -u origin master的时候出现下面的错误 Permission denied (publickey).fatal: Could not read from remote repository.Please make sure you have the corre ...
分类:其他好文   时间:2018-04-13 13:18:36    阅读次数:546
makeinfo is missing on your system(转)
ubunut14.04 make install 提示 makeinfo is missing on your system; 输入makeinfo后,提示没有安装该命令,然后提示可以安装texinfo; sudo apt-get install texinfo 注意不是texTinfo,而是tex ...
分类:其他好文   时间:2018-04-11 21:48:16    阅读次数:1339
mac下卸载xcode后,无法使用git命令
出现错误 解决 ...
分类:系统相关   时间:2018-04-11 15:00:55    阅读次数:250
leetcode-167-Two Sum II-Input array is sorted
题目描述: Given an array of integers that is already sorted in ascending order, find two numbers such that they add up to a specific target number. The fu ...
分类:其他好文   时间:2018-04-11 00:09:59    阅读次数:164
sql 语句NVL()用法
一NVL函数是一个空值转换函数NVL(表达式1,表达式2)如果表达式1为空值,NVL返回值为表达式2的值,否则返回表达式1的值。 该函数的目的是把一个空值(null)转换成一个实际的值。其表达式的值可以是数字型、字符型和日期型。但是表达式1和表达式2的数据类型必须为同一个类型。对数字型: NVL( ...
分类:数据库   时间:2018-04-10 18:46:45    阅读次数:206
Ubuntu 17 Nginx 配置 laravel 运行环境
1 安装 nginx#aptitude install nginx#apatitude install php7.1-fpm2 在 /etc/nginx/sites-available 建立 semis.conf 如下:server { listen 80; listen [::]:80; serv... ...
分类:系统相关   时间:2018-04-10 10:49:39    阅读次数:212
关于sum.misc.Unsafe的一点记录
最近在读Undertow的源码,对于ServletPrintWriterDelegate类的实现比较感兴趣,做个记录。 源码github坐标:ServletPrintWriterDelegate.java 该类继承的是PrintWriter,但是由于并不实用PrintWriter中的OutputSt... ...
分类:其他好文   时间:2018-04-09 13:11:15    阅读次数:189
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!