程序函数库可分为3种类型:静态函 数库(static libraries)、共享函数库(shared libraries)和动态加载函数库(dynamically loaded libraries) 静态函数库是在程序执行前就加入到目标程序中去了;而共享函数库则是在程序启动的时候加载到程序中,它可以 ...
分类:
系统相关 时间:
2017-11-08 20:50:48
阅读次数:
247
前言 前面都是点点滴滴的介绍selenium的一些api使用方法,那么selenium的api到底有多少呢?本篇就叫大家如何去查看selenium api,不求人,无需伸手找人要,在自己电脑就有。 pydoc是Python自带的模块,主要用于从python模块中自动生成文档,这些文档可以基于文本呈现 ...
分类:
编程语言 时间:
2017-11-08 20:06:12
阅读次数:
294
1.首先安装MySQL,把bin目录添加到path 环境变量 2.修改 sql 登录名为123456.update mysql.user set authentication_string=password('123456') where user='root' 3.mysql 官网下载mysql- ...
分类:
数据库 时间:
2017-11-05 12:20:31
阅读次数:
200
eclipse工程前面出现红色叹号的项目。 右击eclipse项目的bulid path-->configure build path后,在弹出来的窗口中,找到Libraries页签,可以看到一些jar包是红色叉号的,这种jar包就是找不到对应文件的jar包,引起这种eclipse项目前面出现红色叹 ...
分类:
系统相关 时间:
2017-11-04 20:53:28
阅读次数:
193
RADIUS 维基百科上的介绍: Remote Authentication Dial-In User Service (RADIUS) is a networking protocol that provides centralized Authentication, Authorization, ...
分类:
其他好文 时间:
2017-11-02 16:06:55
阅读次数:
214
CMake简介 原文:http://blog.gclxry.com/use-cmake-on-windows/ 你或许听过好几种 Make 工具,例如 GNU Make ,QT 的 qmake ,微软的 MS nmake,BSD Make(pmake),Makepp,等等。这些 Make 工具遵循着 ...
Given a binary search tree and the lowest and highest boundaries as L and R, trim the tree so that all its elements lies in [L, R] (R >= L). You might ...
分类:
其他好文 时间:
2017-10-29 18:47:53
阅读次数:
207
1.安装依赖软件 expat pcre apr(Apache portable Run-time libraries,Apache可移植运行库) apr-util [root@localhost ~]$ yum -y install expat-devel [root@localhost ~]$ y ...
分类:
Web程序 时间:
2017-10-25 13:18:21
阅读次数:
211
1. NVMe概述 NVMe是一个针对基于PCIe的固态硬盘的高性能的、可扩展的主机控制器接口。 NVMe的显著特征是提供多个队列来处理I/O命令。单个NVMe设备支持多达64K个I/O 队列,每个I/O队列可以管理多达64K个命令。 当主机发出一个I/O命令的时候,主机系统将命令放置到提交队列(S ...
分类:
其他好文 时间:
2017-10-25 11:35:23
阅读次数:
633
Given a binary search tree and the lowest and highest boundaries as L and R, trim the tree so that all its elements lies in [L, R] (R >= L). You might ...
分类:
其他好文 时间:
2017-10-22 21:42:12
阅读次数:
103