码迷,mamicode.com
首页 >  
搜索关键字:from    ( 57817个结果
8.Jenkins进阶之流水线pipeline基础使用实践(1)
?目录一览: 0x01 基础实践 (1) Maven 构建之 Pipeline Script (2) Maven 构建之 Pipeline Script from SCM (3) Jenkins pipeline 之 邮件(Email)发信管理 WeiyiGeek Blog - 为了能到远方,脚下的 ...
分类:其他好文   时间:2021-04-28 12:08:05    阅读次数:0
字符串反转的几种方法
def reverse_str(s): from functools import reduce res = s[::-1] # 切片 res = "".join(list(reversed(s))) # 反转函数 res = reduce(lambda x,y:y+x, s) # reduce p ...
分类:其他好文   时间:2021-04-28 12:06:36    阅读次数:0
docker部署springBoot项目
Dockerfile 文件 写法1(实际用过) FROM openjdk:8-jdk-alpine VOLUME /tmp ADD testdocker-1.0-SNAPSHOT.jar app.jar ENTRYPOINT ["java","-Djava.security.egd=file:/de ...
分类:编程语言   时间:2021-04-28 12:04:08    阅读次数:0
winfrom嵌入word
使用微软的DSOFRAMER控件实现方法:先下载DsoFramer_KB311765_x86.exe ,自己百度一下有很多。安装,默认安装目录C:\DsoFramer可以先注册下: 开始菜单 运行 输入 regsvr32.exe C:\DsoFramer\dsoframer.ocx using Sy ...
分类:Windows程序   时间:2021-04-28 11:55:27    阅读次数:0
调用api接口获取IP地址的归属地
# #一、填写请求头 #二、配置程序延迟时间 #三、填写源IP文件 #四、经了解,该接口限制一分钟采集45个 # import requests import json import os from fake_useragent import UserAgent from xlwt import W ...
分类:Windows程序   时间:2021-04-27 15:17:41    阅读次数:0
Mysql练习
1.求每个部门最高薪水的人员名称 解决思路:1 先求每个部门最高的薪水 SELECT e.deptno,MAX(e.sal) as maxsal from emp e GROUP BY e.deptno; 2. 将第一步得出来的结果,当成临时表 SELECT e.deptno,ename,t.max ...
分类:数据库   时间:2021-04-27 14:59:14    阅读次数:0
keepalived+lvs
配置lvs-dr环境 master配置文件 global_defs { notification_email { root@localhost } notification_email_from keeplived@localhost smtp_server 127.0.0.1 smtp_conne ...
分类:其他好文   时间:2021-04-27 14:56:45    阅读次数:0
解决mysql遇到非root权限无法登录mysql数据库的问题
1.在root权限下登录mysql 2.进入mysql库 mysql>use mysql 3.查看root用户权限 mysql>select User,Host,plugin from user; 4.将root用户的auth_sock改为mysql_native_password mysql>up ...
分类:数据库   时间:2021-04-27 14:42:37    阅读次数:0
keepalived-master-slave
Master配置 global_defs { notification_email { root@localhost } notification_email_from keeplived@localhost smtp_server 127.0.0.1 smtp_connect_timeout 30 ...
分类:其他好文   时间:2021-04-27 14:42:00    阅读次数:0
参加第一次活动,未参加第二次活动用户
select a.id,a.userid,c.openid from ko_answer_score a left join (select userid from ko_answer_log where answer_time > '2018-02-24 00:00:00' and answer_ ...
分类:其他好文   时间:2021-04-27 14:38:46    阅读次数:0
57817条   上一页 1 ... 41 42 43 44 45 ... 5782 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!