码迷,mamicode.com
首页 >  
搜索关键字:keep the customer sa    ( 5823个结果
centos7 配置samba服务
cifs协议是windows与linux系统之间文件共享的一种协议,其中代表的软件是samba。cifs全称是common internet file system通用互联网文件系统协议。 linux服务端samba主程序包samba [root@x160 ~]# yum install -y sa ...
分类:其他好文   时间:2020-07-28 13:51:03    阅读次数:101
login_while
# -*- coding: utf-8 -*- # @Time : 2020/7/25 22:45 # @Author : Breeze # @FileName: login_while.py user_name = "Breeze" password = "123456789" counter = ...
分类:其他好文   时间:2020-07-27 15:35:26    阅读次数:67
kafka基础操作
1.官网 http://kafka.apache.org/ 2.介绍 一个分布式的流平台 3.特点 具有高吞吐量,高性能,实时,高可靠 二:安装 1.全部上传 2.全部解压 3.安装jdk 4.zookeeper的安装 进入zookeeper的目录下的conf中 将zoo_sample.cfg拷贝一 ...
分类:其他好文   时间:2020-07-27 09:19:58    阅读次数:65
vue中的动态组件(component & keep-alive)
多个组件使用同一个挂载点,并且进行动态的切换这就是动态组件。 通过使用<component>元素动态的绑定到它的is特性,来实现动态组件 <div id="test"> <button @click="change">切换页面</button> <component :is="currentView ...
分类:其他好文   时间:2020-07-26 19:19:13    阅读次数:119
数据准备2 数据清洗
数据准备2 数据清洗 import platform from pandas import DataFrame print("当前所使用的python版本是:", platform.python_version()) data = {'Chinese': [66, 95, 93, 90, 80], ...
分类:其他好文   时间:2020-07-26 18:59:26    阅读次数:59
后缀数组模板题总结
出大问题,我原来学了几天,然后刷了七八题吧,之后将近半年一次没用到, 今天回头一想后缀数组?????????? 所以来总结一下,省的模板题都不会了。 rk[i] 第i个后缀的排名; SA[i] 排名为i的后缀位置; Height[i] 排名为i的后缀与排名为(i-1)的后缀的LCP 1 POJ - ...
分类:编程语言   时间:2020-07-26 11:16:44    阅读次数:72
字符串整理
字符串整理(Manachar,KMP,扩展KMP,ACAM,SA,SAM,最小表示法) 基础 字符集$\sum$:一个字符集是一个建立了全序关系的集合,即任意属于$\sum$的元素可以比较,字符集中的元素叫做字符 字符串:一个字符串$S$将n个字符顺次排列组成,$n$为$S$的长度,计作$|S|$, ...
分类:其他好文   时间:2020-07-26 01:32:53    阅读次数:67
4, nginx 的 tcp 转发
[root@centos7 nginx]# hostname -i fe80::573d:3f45:8bb8:5050%ens33 192.168.0.11 [root@centos7 nginx]# [root@centos7 nginx]# cat nginx.conf worker_proce ...
分类:其他好文   时间:2020-07-26 01:23:14    阅读次数:75
Some features we need to keep in mind about the implementation of QuickSort algorithm
In this note,you will not find the concept of QS and the method of how to compute the cost of time and space of this algorithm。This page will not refe ...
分类:其他好文   时间:2020-07-26 01:23:01    阅读次数:76
ThreadPoolExecutor线程池基本原理及使用
线程池的好处 第一 降低资源消耗。通过重复利用已经创建成功的线程降低线程创建和销毁时造成的资源消耗。 第二 提高相应速度。 当任务到达的时候不需要等到线程创建就能立刻执行。 第三 提高线程可管理性。线程是稀缺资源,如果无限创建会造成系统资源,降低系统的稳定性,所以使用线程池进行统一的分配,调优和监控 ...
分类:编程语言   时间:2020-07-25 23:35:21    阅读次数:73
5823条   上一页 1 ... 14 15 16 17 18 ... 583 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!