码迷,mamicode.com
首页 >  
搜索关键字:global    ( 8023个结果
上传项目到githug
1.git下载与安装 https://gitforwindows.org/ 一般一直下一步即可 任务栏 打开Git Bash,输入: # 配置用户名 git config --global user.name "username" //( "username"是自己的账户名,) # 配置邮箱 git ...
分类:Web程序   时间:2021-05-24 13:46:15    阅读次数:0
Mac卸载vue不成功
npm install -g @vue/cli npm uninstall -g @vue/cli yarn global add @vue/cli yarn global remove @vue/cli 首先确定你的是npm安装的还是yarn安装的,要用对应的卸载方式 如果还是卸载不成功,那么有以 ...
分类:系统相关   时间:2021-05-24 10:59:47    阅读次数:0
Git 设置代理和取消设置代理
设置 http 代理 socks5 协议代理 git config --global http.proxy 'socks5://127.0.0.1:10808' git config --global https.proxy 'socks5://127.0.0.1:10808' http / htt ...
分类:其他好文   时间:2021-05-24 08:22:53    阅读次数:0
Gateway Global Filters
Global Filters GlobalFilter接口方法和GatewayFilter是一样的,GlobalFilter特别之处在于它的作用是全局的。 1. Combined Global Filter and GatewayFilter Ordering 当请求到来时,Filtering We ...
分类:其他好文   时间:2021-05-24 08:20:27    阅读次数:0
sql and Linux
1、Form连接数据库apps/apps@TEST 2、plsql模拟界面环境(初始化)8008初始化begin fnd_global.APPS_INITIALIZE(user_id => 1671,resp_id =>50716 ,resp_appl_id => 401); mo_global.i ...
分类:数据库   时间:2021-05-24 07:15:58    阅读次数:0
Docker容器基础管理
Docker容器管理基础 运行第一个容器,容器启动必须依赖镜像。 [root@localhost ~]# docker image ls #首先查看已有的镜像REPOSITORY TAG IMAGE ID CREATED SIZEnginx latest 62d49f9bab67 3 weeks a ...
分类:其他好文   时间:2021-05-24 05:44:20    阅读次数:0
Git 和 HTTPS
Git 和 HTTPS git clone https://xxx.daFei 会返回 SSL certificate problem: unable to get local issuer certificate,这时候需要把HTTPS关闭一下 git config --global http.s ...
分类:Web程序   时间:2021-05-24 04:28:43    阅读次数:0
AZ-303 - AAD
Accounts used for Azure AD Connect Azure AD Connect uses 3 accounts in order to synchronize information from on-premises or Windows Server Active Dire ...
分类:其他好文   时间:2021-05-24 04:09:23    阅读次数:0
python中global关键字实现在函数内部对全局变量进行修改
python中global关键字实现在函数内部对全局变量进行修改。 1、测试 >>> v = 10 >>> def test(): v = 5 print(v) >>> test() 5 >>> v ## 这说明在函数内部修改的全局变量只能在函数内部生效,不会真正影响全局变量 10 加global关 ...
分类:编程语言   时间:2021-05-24 03:51:31    阅读次数:0
HAProxy日志开启
安装完haproxy后默认是没有启用日志的,如果需要日志配置,那么需要结合rsyslog 修改haproxy配置 在全局配置段中配置,定义日志记录级别。 global log 127.0.0.1 local3 info 修改rsyslog配置 #日志传输基于udp,所以需要取消这两行的注释。 [ro ...
分类:其他好文   时间:2021-05-24 03:50:05    阅读次数:0
8023条   上一页 1 2 3 4 5 6 ... 803 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!