码迷,mamicode.com
首页 >  
搜索关键字:user principal name    ( 128024个结果
1.Linux开篇入门
(一)OS的接口有两类: GUI:Graphic User Interface (图形化界面接口) CLI:Command Line Interface(文本式接口) (二)API 及 ABI 1. API:Application Program Interface 程序员面对的编程接口 2.ABI ...
分类:系统相关   时间:2021-06-28 17:38:15    阅读次数:0
SQOOP 导出Hive数据到MySQL
基本知识:Sqoop导出的基本用法:https://sqoop.apache.org/docs/1.4.6/SqoopUserGuide.html#_syntax_4 的10. sqoop-export 内容摘要:本文主要是对--update-mode参数的用法进行了验证。结论如下: --updat ...
分类:数据库   时间:2021-06-25 17:26:06    阅读次数:0
C# 实现线程的常用几种方式
前言 在各个开发语言中,线程是避免不了的,或许通过表象看不出来,但是真的无处不在。就比如一个Web程序,平时或许只注重增删改查的开发,根本没有编写相关多线程的的代码,但是请求内部的时候,已经分配了对应线程进行处理了,以下简单说说C#中使用线程的几种方式,详细使用后续继续记录。 Thread类实现 T ...
分类:编程语言   时间:2021-06-25 17:20:24    阅读次数:0
22.Python:文件操作模式详解
# 以t模式为基准操作# 1.r:只读模式:文件不存在时报错,文件存在时指针跳到开始位置# input_username = input("username:")# input_password = input("password:")## with open('a.txt', mode='rt', ...
分类:编程语言   时间:2021-06-25 17:15:33    阅读次数:0
Linux使用docker安装MinIO
官方地址:http://docs.minio.org.cn/docs/master/minio-docker-quickstart-guide 拉取镜像 docker pull minio/minio 启动 docker run -p 9000:9000 --name minio1 \ -e "MI ...
分类:系统相关   时间:2021-06-25 17:04:33    阅读次数:0
echarts系列-样式调整总结
1.饼图怎么调整左右位置 只需要调整option.series里的center: ['30%', '50%'] series : [ { name: '访问来源', type: 'pie', radius : '55%', center: ['30%', '50%'], // 这个代码~~ data ...
分类:其他好文   时间:2021-06-25 16:55:08    阅读次数:0
1046 Shortest Distance (20 分)
The task is really simple: given N exits on a highway which forms a simple cycle, you are supposed to tell the shortest distance between any pair of e ...
分类:其他好文   时间:2021-06-25 16:53:38    阅读次数:0
在Scrapy中添加Cookie
1.在settings中开启Cookie COOKIES_ENABLED = True 2.重写 start_requests方法 初始化开始url(方便添加cookie) 列: from scrapy import Request class ASpider(CrawlSpider): name ...
分类:其他好文   时间:2021-06-25 16:45:37    阅读次数:0
clickhouse使用问题记录
mysql引擎 create table t_mysql ( id Int32, name String, ) engine = MySQL('127.0.0.1:3306', 'test', 't', 'root', '123456'); mysql进行ddl: alter table t mod ...
分类:其他好文   时间:2021-06-25 16:44:37    阅读次数:0
How to add the custom nuget feed to TeamCity build?
The NuGet package sources are configured through Visual Studio, but they're stored in a per-user configuration file, found at c:\Users\$USER\AppData\R ...
分类:其他好文   时间:2021-06-24 18:32:12    阅读次数:0
128024条   上一页 1 ... 13 14 15 16 17 ... 12803 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!