码迷,mamicode.com
首页 >  
搜索关键字:local domains    ( 24973个结果
桌面快捷方式变白
解决方式:把图标缓存的数据库删除 一、 第一步:win+r cmd进入命令行 第二步:一行一行键入如下命令 taskkill /im explorer.exe /f cd /d %userprofile%\appdata\local del iconcache.db /a start explore ...
分类:其他好文   时间:2021-04-09 13:41:00    阅读次数:0
oracle如何导入dmp文件以及导出csv文件
###1、创建表空间 create tablespace TESTDATE表空间名 datafile 'E:\app\HP\oradata\orcl\TESTDATE.dbf(表空间DBF文件路径及名称)' size 500M (表空间大小) AUTOEXTEND ON NEXT 50M (每次自动 ...
分类:数据库   时间:2021-04-08 12:56:21    阅读次数:0
[LeetCode] 775. Global and Local Inversions
We have some permutation A of [0, 1, ..., N - 1], where N is the length of A. The number of (global) inversions is the number of i < j with 0 <= i < j ...
分类:其他好文   时间:2021-04-07 11:05:47    阅读次数:0
RDD练习:词频统计
一、词频统计: 1.读文本文件生成RDD lines 2.将一行一行的文本分割成单词 words flatmap() lines=sc.textFile("file:///usr/local/spark/mycode/wordcount/word.txt") words = lines.flatMa ...
分类:其他好文   时间:2021-04-06 15:08:22    阅读次数:0
关于Delphi7中日期函数StrtoDate的正确用法 win7报错
1.StrToDate为delphi7中字符串转换为日期的函数例如: var Dat:Tdate; begin Dat:=StrToDate('2016-4-11'); //这里会将'2016-4-11'转换为Tdate类型,就是日期类型 end; 【在网上查询的资料不够完美,做法基本是让系统适用程 ...
分类:Windows程序   时间:2021-04-06 14:40:40    阅读次数:0
【JS】JS格式化时间
// 判斷是否已登錄授權 module.exports.getDate = getDate function getDate(){ var time = new Date().toLocaleDateString().split('/').join('-') return time; } // 判斷 ...
分类:Web程序   时间:2021-04-06 14:39:35    阅读次数:0
CentOS7自定义镜像
1. 安装需要的软件 ~]# yum install -y vim net-tools sysstat createrepo mkisofs rsync syslinux 2. 创建目录及文件拷贝 创建本地yum源 ~]# mount /dev/sr0 /mnt #挂载镜像或者U盘,如果是U盘就是/ ...
分类:其他好文   时间:2021-04-06 14:20:16    阅读次数:0
模块-时间管理:time 和 datetime
1、import time 时间分为三种格式 1.1、时间戳 # 时间戳表示的是从1970年1月1日00:00:00开始按秒计算的偏移量。我们运行“type(time.time())”,返回的是float类型。 print(time.time()) # 1617280797.3197777 1.2、 ...
分类:其他好文   时间:2021-04-05 12:03:53    阅读次数:0
MongoDB 角色权限
默认mongoDB 并没有用户限制,任何人都可以连接数据库 默认有 admin 、 config 、local、 test 四个数据库,show dbs 命令开始会显示前三个数据库,因为test 没有数据。 1、内置角色 ####1.1 当前数据库的角色 |角色| 能够执行的操作| | | | | ...
分类:数据库   时间:2021-04-02 13:14:47    阅读次数:0
Go web部署报错panic: listen tcp xxxxxxx:8090: bind: cannot assign requested address
1.centos部署go环境 vim /etc/profile export PATH=$PATH:/usr/local/go/bin export GOROOT=/usr/local/go #go包的解压目录 export GOPATH=/opt/GOPATH #表示实际的工作目录 export ...
分类:Web程序   时间:2021-04-02 12:53:57    阅读次数:0
24973条   上一页 1 ... 16 17 18 19 20 ... 2498 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!