word20161220
S/MIME, Secure Multipurpose Internet Mail Extensions / 安全多用途网际邮件扩展协议
SACL, system access control list / 系统访问控制列表
safe mode / 安全模式
safe mode with command prompt / 命令提示符下的安全模式
safe mode with networking / 联网安全模式
SAM, security account manager / 安全帐户管理器
SAM account name / SAM 帐户名
saturation / 饱和度
SBM, subnet bandwidth management / 子网带宽管理
scalability / 可伸缩性
scavenging / 清理
schema / 架构
schema master / 架构主机
scope / 作用域
scope of influence / 影响的作用域
screen fonts / 屏幕字体
screen resolution / 屏幕分辨率
screen saver / 屏幕保护程序
SCSI, small computer system interface / 小型计算机系统接口
SDP, Standard Description Protocol / 标准描述协议
second-level domains / 二级域
secondary master / 辅助主机
secret key encryption / 密钥加密
sector / 扇区
Secure Hash Algorithm, SHA-1 / 安全散列算法
Secure Multipurpose Internet Mail Extensions, S/MIME / 安全多用途网际邮件扩展协议
Secure Sockets Layer, SSL / 安全套接字层
security / 安全性
security account manager,SAM / 安全帐户管理器
security descriptor / 安全描述
security group / 安全组
security host / 安全主机
security ID,SID / 安全 ID
security identifier / 安全标识符
security log / 安全日志
security principal / 安全主体
security principal name / 安全主体名称
See Files / 查看文件
See Folders / 查看文件夹
seed router / 种子路由器
Serial Line Internet Protocol, SLIP / 串行线路网际协议
serial port / 串行端口
server / 服务器
server application / 服务器应用程序
server cluster / 服务器群集
server zone / 服务器区域
service / 服务
Service Profile Identifier, SPID / 服务配置文件标识符
service (SRV) resource record / 服务 (SRV) 资源记录
service ticket / 服务票据
service-centric / 服务集中
Services for Macintosh (now called AppleTalk network integration) / Macintosh 服务(现在称为 AppleTalk 网络集成)
session / 会话
session concentration / 会话集中度
set-by-caller callback / 由呼叫者设置的回叫
SHA-1, Secure Hash Algorithm / 安全散列算法
share / 共享
shared folder / 共享文件夹
word20161220的更多相关文章
随机推荐
- C++基本数据类型总结
一.整形 1.整形有char.short.int.long.long long,这5个也默认为signed XX ; 规则:short至少16位:int至少和short一样:long至少32位,且至少 ...
- [LeetCode] Shuffle an Array 数组洗牌
Shuffle a set of numbers without duplicates. Example: // Init an array with set 1, 2, and 3. int[] n ...
- [LeetCode] Water and Jug Problem 水罐问题
You are given two jugs with capacities x and y litres. There is an infinite amount of water supply a ...
- [LeetCode] Remove Duplicates from Sorted List 移除有序链表中的重复项
Given a sorted linked list, delete all duplicates such that each element appear only once. For examp ...
- 如何有效地解决ie7,IE8不支持document.getElmentsByClassName的问题
1.复制此代码到你js代码的最前面即可 if(!document.getElementsByClassName){ document.getElementsByClassName = functi ...
- [转]如何设置eclipse中js默认打开为java Editor
打开window-preference -> General-Editors-File Associator 看到右边的.js下边就是设置默认打开方式了 转自百度知道:http://zhidao ...
- mysql命令
create 创建数据库 show databases 显示所有数据库 drop database 删除数据库 use 使用(进入)数据库 select 当前使用的数据库 create table 创 ...
- C#面向对象设计模式纵横谈——3.Abstract Factory 抽象工厂(创建型模式)
动机(Motivation) 在软件系统中经常面临着“一系列相互依赖的对象”的创建工作,同时,由于需求变化,往往存在更多系列对象的创建工作.如何应对这种变化?如何绕过常规对象的创建,提供一种“封装机制 ...
- theano sparse_block_dot
theano 中的一个函数 sparse_block_dot; Function: for b in range(batch_size): for j in range(o.shape[1]): fo ...
- C#之索引器
实际中不使用这个东西,只做了解 using System; using System.Collections.Generic; using System.Linq; using System.Text ...