word20161219
Remote Installation Services / 远程安装服务
remote procedure call, RPC / 远程过程调用
remote storage / 远程存储
Remote Storage / 远程存储
removable media / 可移动媒体
Removable Storage / 可移动存储
rendering intent / 调整颜色
rendezvous / 集合点
replica / 副本
replica set / 副本集
replication / 副本
replication policy / 副本策略
replication topology / 副本拓扑
report message / 报告消息
report queue / 报告队列
Request for Comments, RFC / 注释请求
required callback / 必需回叫
reservation / 保留
resolver / 解析程序
resource / 资源
resource allocation / 资源分配
Resource DLL / 资源 DLL
resource domain / 资源域
resource fork / 资源派生
Resource Monitor / 资源监视器
resource record, RR / 资源记录
resource record set, RRset / 资源记录集
Resource Reservation Protocol, RSVP / 资源保护协议
resource types / 资源类型
response / 响应
response message / 响应消息
response queue / 响应队列
retry interval / 重试间隔
reverse lookup / 反向搜索
RFC, Request for Comments / 注释请求
RGB color space / RGB 颜色区
RIPX, Routing Information Protocol over IPX / 在 IPX 上的路由信息协议
RISC, reduced instruction set computing / 精简指令集计算
roaming user profile / 漫游用户配置文件
ROM, read-only memory / 只读内存
root / 根
root authority / 根颁发机构
root certificate / 根证书
root hints / 根提示
root servers / 根服务器
round robin / 循环提示器
Routemon utility / Routemon 实用程序
router / 路由器
routing / 路由
Routing Information Protocol over IPX, RIPX / 在 IPX 上的路由信息协议
routing link / 路由链接
routing-link cost / 路由链接成本
routing protocol / 路由协议
routing services / 路由服务
RPC, remote procedure call / 远程过程调用
RR, resource record / 资源记录
Rrset, resource record set / 资源记录集
RS-232-C standard / RS-232-C 标准 RSA RSL, registry size limit / 注册表大小限制
RSVP, Resource Reservation Protocol / 资源保留协议
RTP, Real-Time Transport Protocol / 实时传输协议
word20161219的更多相关文章
随机推荐
- linux查看主板型号及内存硬件信息
公司服务器内存不够用了. 想看看买啥型号的. 购买内存条注意点: ddr3 or4 频率 块钱. 内存槽及内存条: dmidecode |grep -A16 "Memory Device ...
- mysql中间件atlas配置使用
MySQL所在机器: 192.168.16.70(Master) 192.168.16.74(Slave) 192.168.16.72(atlas)注意:主从复制需要自行配置atlas配置使 ...
- 用vue.js学习es6(五):set和map的使用
一:Set用法: ES6提供了新的数据结构Set.它类似于数组,但是成员的值都是唯一的,没有重复的值. (1).打印:console.log var data = new Set([1,2,3]); ...
- http
HTTP是一个属于应用层的面向对象的协议,由于其简单.快速的方式,适用于分布式超媒体信息系统, 特点: 1.支持客户/服务器模式. 2.简单快速:客户向服务器请求服务时,只需传送请求方法和路径.请求方 ...
- C#设计模式(1)——单例模式
一.概念:确保一个类只有一个实例,并提供一个全局访问点. 二.单例模式具备如下几个特点: 1.只有一个实例. 2.能够自我实例化. 3.提供全局访问点. 三.代码实现 1.简单实现 /// < ...
- Codeforces #364 DIV2
~A题 A. Cards time limit per test 1 second memory limit per test 256 megabytes input standard input ...
- shell-for循环
sheel语言for循环格式 for var in item1 item2 ... itemN do command1 command2 ... commandN done 案例1 #!/bin/ba ...
- Word2016(2013)怎么从任意页插入起始页码
添加页码 1 小知识:双击任意页的页脚或页眉区域,激活页眉页脚设计界面.双击文档正文区域,返回正文编辑界面. 2 双击任意页的页脚或页眉区域,激活页眉页脚设计界面.单击"页码" ...
- Swift中的可选链与内存管理(干货系列)
干货之前:补充一下可选链(optional chain) class A { var p: B? } class B { var p: C? } class C { func cm() -> S ...
- 阿里云提示:对输入参数id未进行正确类型转义,导致整型注入的发生
类似以下提示: XXX.php中,对输入参数id未进行正确类型转义,导致整型注入的发生 解决办法: 找到对应文件:$id = $_GET['id']; 增加以下标红过滤: $id = $_GET['i ...