部分参考于: 1.简介 === MAC位于各式物理层之上,控制数据的传输。它负责核心成帧操作,以及与有限骨干网络之间的交互。不同的物理层可能提供不同的传输速度,不过物理层之间必须彼此互用。 和Ethernet一样,802.11采用载波监听多路访问(carrier sense multiple acc ...
分类:
系统相关 时间:
2020-04-12 18:55:19
阅读次数:
125
ylbtech-Code-Helper:OracleHelper.cs 1.返回顶部 1、 using System; using System.Configuration; using System.Data; using System.Data.OracleClient; using Syste ...
分类:
数据库 时间:
2020-04-12 18:37:17
阅读次数:
68
<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title></title> <script type="text/javascript"> /* * history * -对象可以用来操作浏览器向前或向后翻页 */ window.onloa ...
分类:
其他好文 时间:
2020-04-12 16:18:04
阅读次数:
58
Error Handling 一旦序列里面产出了一个 error 事件,整个序列将被终止。RxSwift 主要有两种错误处理机制: retry - 重试 catch - 恢复 retry - 重试 retry 可以让序列在发生错误后重试: // 请求 JSON 失败时,立即重试, // 重试 3 次 ...
分类:
其他好文 时间:
2020-04-12 14:34:07
阅读次数:
68
1.with open("文件路径","模式") as fp: 操作 进入时 调用 __enter__ 方法 def __enter__(self): print("开始执行 with 方法") 退出时 调用 __exit__ 方法 def __exit__(self,type,value,trac ...
分类:
其他好文 时间:
2020-04-12 14:20:55
阅读次数:
59
每周前端开源推荐第二期 strongloop/loopback LoopBack is an open source backend for your mobile apps. Connect to multiple data sources, write business logic in Nod ...
分类:
其他好文 时间:
2020-04-12 14:18:23
阅读次数:
70
python基础 1. 列举你了解的python2和python3的区别 2. 如何实现字符串的反转?如:name="张全蛋"请反转为name= "蛋全张" 3. 文件操作时:xreadlines和readlines的区别? 4. is和==的区别 is比较的是id,==比较的是值 5. 现有字典 ...
分类:
编程语言 时间:
2020-04-12 12:25:40
阅读次数:
70
近日有同事遇到在编译Maven项目时出现[ERROR] No compiler is provided in this environment. Perhaps you are running on a JRE rather than a JDK?的问题, 原以为这是个个例, 源于同事粗心, 配置环 ...
分类:
系统相关 时间:
2020-04-12 10:33:54
阅读次数:
88
异常信息 异常解读 异常处理 nginx: [alert] could not open error log file: open() "/usr/local/nginx/logs/error.log" failed (13: Permission denied)2020/04/12 09:46:2 ...
分类:
Web程序 时间:
2020-04-12 10:32:17
阅读次数:
73
timeout 如果源 Observable 在规定时间内没有发出任何元素,就产生一个超时的 error 事件 如果 Observable 在一段时间内没有产生元素,timeout 操作符将使它发出一个 error 事件。 timer 创建一个 Observable 在一段延时后,产生唯一的一个元素 ...
分类:
其他好文 时间:
2020-04-12 10:30:40
阅读次数:
77