码迷,mamicode.com
首页 >  
搜索关键字:any    ( 7409个结果
1031 Hello World for U (20分)
Given any string of N (≥) characters, you are asked to form the characters into the shape of U. For example, helloworld can be printed as: h d e l l r ...
分类:其他好文   时间:2020-05-17 01:18:46    阅读次数:53
MySQL数据库配置调优
数据库配置文件优化 硬件:内存32G innodb_file_per_table = 1 # 打开独立表空间 max_connections = 8000 # MySQL 服务所允许的同时会话数的上限,经常出现Too Many Connections的错误提示,则需要增大此值 back_log = ...
分类:数据库   时间:2020-05-16 19:08:10    阅读次数:71
单线程的JavaScript是如何实现异步的
前两天硬着头皮在部门内部做了一次技术分享,主题如题。索性整理成文章留个纪念! 要了解异步实现,首先我们得先了解: 同步 & 异步 同步:会逐行执行代码,会对后续代码造成阻塞,直至代码接收到预期的结果之后,才会继续向下执行任务。 异步:调用之后先不管结果,继续向下执行任务。 网上各种文章对同步和异步的 ...
分类:编程语言   时间:2020-05-16 16:54:15    阅读次数:97
211. Add and Search Word - Data structure design
Design a data structure that supports the following two operations: void addWord(word) bool search(word) search(word) can search a literal word or a r ...
分类:其他好文   时间:2020-05-16 10:40:41    阅读次数:67
DNS服务器 - Bind
简介 DNS的出现及演变 网络出现的早期是使用 IP 地址进行通信. 那时就几台主机通信. 但是随着接入网络主机的增多.这种数字表示的地址非常不便于记忆, UNIX 上就出现了建立一个叫做 hosts 的文件(Linux 和 Windows 也继承保留了这个文件). 这个文件中记录着主机名称和 IP ...
分类:其他好文   时间:2020-05-15 15:28:11    阅读次数:79
3、AutoMapper In Asp.net Core
[toc] Entity && ViewModel Entities 实体模型 Company.cs 公司实体类 Employee.cs 公司职员实体类 Gender 性别枚举类型 Models Dto(ViewModel) CompanyDto 实体类代码 Company Employee + G ...
分类:移动开发   时间:2020-05-15 00:08:26    阅读次数:87
ACL禁用web服务
禁止PC3通过80端口访问web服务 Router(config) access list 100 deny tcp 192.168.3.0 0.0.0.255 192.168.5.2 0.0.0.0 eq 80 Router(config) access list 100 permit ip an ...
分类:Web程序   时间:2020-05-14 22:41:32    阅读次数:203
reduce用法
返回一个新数组,如果想返回一个数组,则第二个参数为[], 想返回字符串,则第二个参数为'' const keyMaterialList = oldArr && oldArr.reduce((newArray: any, item: any) => { item.key = item.id; newA ...
分类:其他好文   时间:2020-05-14 19:47:52    阅读次数:81
聊聊 TypeScript 中的类型保护
聊聊 TypeScript 中的类型保护 在 TypeScript 中使用联合类型时,往往会碰到这种尴尬的情况: 如上所示,getSmallPet 函数中,既可以返回 Fish 类型的对象,又可以返回 Bird 类型的对象。由于返回的对象类型不确定,所以使用联合类型对象共有的方法时,一切正常,但是使 ...
分类:其他好文   时间:2020-05-14 17:20:40    阅读次数:79
Prometheus+Grafana可视化监控MySQL
使用Prometheus和Grafana对MySQL服务器性能进行监控。使用两个exporter:node_exporter:服务器系统数据收集mysqld_exporter:MySQL服务器数据收集监控架构图:Prometheus安装配置安装方式二进制安装,详见这里CentOS7部署Prometheus版本:目前最新版本prometheus-2.18.1修改Prometheus配置文件prome
分类:数据库   时间:2020-05-14 11:36:58    阅读次数:166
7409条   上一页 1 ... 33 34 35 36 37 ... 741 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!