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的更多相关文章

随机推荐

  1. [LeetCode] Number of Boomerangs 回旋镖的数量

    Given n points in the plane that are all pairwise distinct, a "boomerang" is a tuple of po ...

  2. [LeetCode] Palindrome Linked List 回文链表

    Given a singly linked list, determine if it is a palindrome. Follow up: Could you do it in O(n) time ...

  3. [LeetCode] Binary Tree Inorder Traversal 二叉树的中序遍历

    Given a binary tree, return the inorder traversal of its nodes' values. For example:Given binary tre ...

  4. VS2015下如何用编译、调试程序。

    VS2015下如何用编译.调试程序. (通过实践给出截图) 安装步骤: 下载安装网址[VS2015下载地址](http://www.ithome.com/html/win10/164028.htm) ...

  5. SQL Server 中master..spt_values的应用

    今天在做数据分析报表的时候遇到一个这样的问题. 表结构如下.部门编码.部门名称.部门人员ID(中间用逗号分割) 我想通过和人员表链接,查询出一个新的数据集,查询出的结果集格式如下:人员信息(ID或者姓 ...

  6. mac mysql5.7重置root密码

    先停止mysql服务 //停止表权限 cd /usr/local/mysql/bin/ ./mysqld_safe --skip-grant-tables & 直接mysql 进入数据库 up ...

  7. 常用的一些linux命令

    最近接触到一些linux环境部署的事情,下面分享一些最近使用的比较频繁的一些linux命令~ 1.一次性移动多个文件到一个文件夹里 mv  被移动文件名 -t 目标文件夹 如:mv a.txt b.t ...

  8. 在javascript中使用Json

    jSON是JavaScript面向对象语法的一个子集.由于JSON是JavaScript的一个子集,因此它可清晰的运用于此语言中. 文本生成json对象,必须在外面加一对括号. js 代码 var m ...

  9. DevExpress.chartControt画趋势图

    private void DrawLine(DataTable dt) { Myalysis.Series.Clear(); //图标位置 Myalysis.Legend.AlignmentHoriz ...

  10. Javascript JQuery获取当前元素的兄弟元素/上一个/下一个元素(转)

    var chils= s.childNodes; //得到s的全部子节点 var par=s.parentNode; //得到s的父节点 var ns=s.nextSbiling; //获得s的下一个 ...