码迷,mamicode.com
首页 >  
搜索关键字:secure storage    ( 6071个结果
什么是https,和ssl什么关系,为什么用https
# 什么是https > https is "Hyper Text Transfer Protocol" with Secure Sockets Layer (SSL) > HTTPS的主要思想是在不安全的网络上创建一安全信道,并可在使用适当的加密包和服务器证书可被验证且可被信任时,对...
分类:Web程序   时间:2014-11-25 00:28:32    阅读次数:310
ceph伦理概念
Preface: CEPH: THE FUTURE OF STORAGE(未来存储)Ceph was made possible by a global community of passionate storage engineers and researchers(存储工程师及研究员);Cep....
分类:其他好文   时间:2014-11-24 22:21:43    阅读次数:261
数组的方式实现--栈 数制转换
例子:清华大学数据结构C语言版 P48十进制数N和其他d进制数的转换: N = (N div d)*d + N mod d; 其中,div为整除运算,mod为求余运算。 1 #define _CRT_SECURE_NO_DEPRECATE /*取消scanf,printf不安全之类的错误提示*/ ....
分类:编程语言   时间:2014-11-24 16:59:56    阅读次数:269
android sdk api的层次结构
一、系统级:android.accounts android.app 1、OS 相关 android.os android.os.storage android.hardware(传感器) android.security android.drm(这个应该是为所有app服务的) 2、VM 相关 da...
分类:移动开发   时间:2014-11-24 16:44:29    阅读次数:176
Windows Storage Server 2012 为vSphere 创建iSCSI
手里刚好有台淘汰下来的HPDL380G5,今天来尝试利用这台服务器搭建一个iSCSI的存储空间,并连接vSphere主机。系统:WindowsServer2012StorageServer,vSphere5.0常规的安装系统,加域。一.网络相关配置由于WindowsServer2012开始直接支持多网卡的捆绑,不再需要其他额外的软件工具..
分类:Windows程序   时间:2014-11-24 13:43:53    阅读次数:2609
Tachyon学习及源码阅读:简介
前言      这个系列是关于Tachyon的,主要基于《Reliable, Memory Speed Storage for Cluster Computing Frameworks 》这篇论文以及源码,最近工作比较忙,精力实在有限,可能更新得比较慢 简介      Tachyon是一个分布式文件系统,提供了一种可靠的方式,可以以访问内存的速度在不同的分布式计算框架之间共享数据。Tachy...
分类:其他好文   时间:2014-11-24 10:15:44    阅读次数:173
linux下如何获取每个线程的CPU占用率
啥也不说,直接上脚本: root@Storage:/mnt/mtd# cat cpu.sh #!/bin/sh while true do         ps -H -eo user,pid,ppid,tid,time,%cpu,cmd --sort=%cpu         sleep 1 done root@Storage:/mnt/mtd#...
分类:编程语言   时间:2014-11-23 19:00:22    阅读次数:297
linux下如何获取某一进程占用的物理内存和虚拟内存
首先,ps -A查看你所查看进程的进程号 ps -A 加入进程号为pid 那么使用如下脚本,可以打印该进程使用的虚拟内存和物理内存: root@Storage:/mnt/mtd# cat rss.sh #!/bin/sh while true do  cat /proc/pid/stat | awk -F" " '{print "virt:"$23}'  cat /pr...
分类:系统相关   时间:2014-11-23 18:59:39    阅读次数:244
【2014-11-23】《The Hardware/Software Interface》– Section 7
Cache Definition: computer memory with short access time used for the storage of frequently or recently used instructions or data(i-cachhe and d-cache...
分类:其他好文   时间:2014-11-23 15:40:24    阅读次数:221
【2014-11-22】《The Hardware/Software Interface》– Section 6
Buffer Overflows IA32 Linux Memory Layout Stack Runtime stack (8MB limit) Heap Dynamically allocated storage Allocated by malloc(), calloc(), new()...
分类:其他好文   时间:2014-11-23 13:06:18    阅读次数:207
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!