ICode9

精准搜索请尝试: 精确搜索
  • GD32基于Systick实现us级和ms级的精准延时方案2021-01-30 16:33:23

    /*! \file systick.c \brief the systick configuration file */ /* Copyright (C) 2017 GigaDevice 2014-12-26, V1.0.0, platform GD32F1x0(x=3,5) 2016-01-15, V2.0.0, platform GD32F1x0(x=3,5,7,9) 2016-04-30, V3.0.0, firmware update fo

  • 【面向计算机的数理逻辑/软件理论基础笔记】CTL*2021-01-27 14:05:05

    CTL和LTL的区别: CLT明确允许对路径使用量词,比LTL有更强的表达能力但CTL不允许像LTL那样,通过用公式描述来选择一个路径范围,在这方面LTL更有表达能力。比如:“对所有这样的路径,沿该路径有p的话,也有q”,用LTL表示为 F

  • Linux 环境下安装 GitLab 与配置2021-01-26 22:53:33

    什么是 GitLab?GitLab 是一个用于仓库管理系统的开源项目,使用 Git 作为代码管理工具,并在此基础上搭建起来的 web 服务。 GitLab的功能特点提供了管理,计划,创建,验证,打包,发布,配置,监视和保护应用程序的功能 是一个在线代码仓库托管软件,是提供代码托管、提交审核和问题跟踪的代码管理平

  • 312021-01-21 16:01:10

    题 ps:隐藏浏览器收藏栏ctl+b 图论: 点击进入 分治: 点击进入

  • gitlab安装启动2021-01-19 17:34:13

      获取镜像 1、方法一 1 docker pull beginor/gitlab-ce:latest 2、方法二如果服务器网路不好或者pull不下来镜像,只能在其它网路比较好的机器上pull下来镜像,导出成一个文件,再下载上传到网路不好的机器上,然后再从文件中导出来,这样在网络不好的机器上也能使用doc

  • java 线程池的原理2021-01-19 10:03:59

    开始之前,需要明确几个概念,方便后面理解线程池的运行原理。 核心线程(corePool):线程池最终执行任务的角色肯定还是线程,同时我们也会限制线程的数量,所以我们可以这样理解核心线程,有新任务提交时,首先检查核心线程数,如果核心线程都在工作,而且数量也已经达到最大核心线程数,则不会继续新

  • gitlab基本使用2021-01-08 15:01:53

    目录一、简述二、安装(一)、rpm安装(二)、yum安装(三)、初始化和启动(四)、gitlab.rb 配置三、管理(一)、备份(二)、还原 一、简述 ​ GitLab 是一个用于仓库管理系统的开源项目,使用Git作为代码管理工具,并在此基础上搭建起来的web服务。 二、安装 (一)、rpm安装 下载 # 下载地址 # https://

  • Centos7上配置Postgresql服务2021-01-08 10:01:06

    [Unit]Description=PostgreSQL 10 database serverAfter=syslog.targetAfter=network.target[Service]Type=forkingUser=postgresGroup=postgresEnvironment=PGDATA=/data01/pg10/ExecStart=/data01/pg10/bin/pg_ctl start -D  ${PGDATA}   -l /tmp/logfileExecStop=/data01/p

  • 系统崩溃下的Oracle 10g数据恢复全流程记录2021-01-04 15:30:07

    系统崩溃下的Oracle 10g数据恢复全流程记录 一、错误背景 实验室的服务器硬盘为RAID 5磁盘阵列,在日常使用过程中由于疫情期间无人在学校未及时维护,三个月内连续损坏两张硬盘,阵列子恢复失效需要数据恢复。磁盘阵列数据恢复完成后,原系统中的Oracle 10g数据库失效且数据未进行备份(

  • 本地上传RPM包方式安装gitlab2020-12-30 18:30:17

    本地上传RPM包方式安装gitlab 链接:https://pan.baidu.com/s/1-Gjc0eGFh0hjXUbmjGD2FA 提取码:zxcv 服务器新建文件夹 mkdir /opt/gitlab (自定义安装路径) 将rpm包通过xftp上传至 /opt/gitlab 当前文件位置 使用 rpm命令进行安装 rpm -ivh gitlab-ce-9.0.0-ce.0.el7.x86.rpm

  • gitlab-使用方法2020-12-08 08:01:16

    常用命令gitla-rails 用于启动控制台进行特殊操作,比如修改管理员密码,打开数据库控制台等# gitlab-rails dbconsole psql (9.6.11) Type "help" for help. gitlabhq_production=> \db List of tablespaces Name | Owner | Location ------------+---------

  • ExtJs DateField 清空按钮2020-11-28 11:03:19

    function showDateClrBtn(ctl){ Ext.form.DateField.prototype.onTriggerClick.apply(this, arguments); let ctlid=ctl.id; let hasbtn =ctl.picker.todayBtn.container.child('#'+ctlid+'_clrbtn'); if(!hasbtn){ hasbtn= new Ext.Button({

  • Ubuntu下搭建GitLab2020-11-23 08:33:35

    1. 安装依赖 sudo apt-get install -y curl openssh-server ca-certificates 安装Postfix服务用来发送通知邮件,使用其他SMTP服务器可以跳过此步。 sudo apt-get install -y postfix 2. 安装GitLab 添加镜像源: curl https://packages.gitlab.com/gpg.key 2> /dev/null | sudo apt-k

  • 安装社区版git仓库2020-11-13 08:35:33

    1、打开http访问和ssh访问 sudo yum install -y curl policycoreutils-python openssh-server cronie sudo lokkit -s http -s ssh 执行效果:             2、安装Postfix以发送通知电子邮件 sudo yum install postfix sudo service postfix start sudo chkconfig postfix on

  • Centos安装系列软件操作记录2020-11-06 18:02:53

    安装GitLab(来源:开源中国) 1.打开防火墙的http和ssh访问 sudo yum install -y curl policycoreutils-python openssh-server sudo systemctl enable sshd sudo systemctl start sshd sudo firewall-cmd --permanent --add-service=http sudo systemctl reload firewalld 2.安装Pos

  • Centos7.8Gitlab安装及配置2020-10-12 17:51:52

    操作系统:CentOS Linux release 7.8.2003 (Core) gitlab版本:gitlab-ce-12.3.9-ce 下载镜像 清华大学开源软件镜像站 https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el7/ wget https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el7/gitlab-ce-12.3.9-ce.0.el7.x86_64.rpm

  • GitLab环境的部署2020-10-09 18:32:47

    安装依赖包 [root@gitlab ~]# yum -y install curl openssh-server openssl-clients postfix cronie policycoreutils-python 准备工作 [root@gitlab ~]# systemctl stop firewalld [root@gitlab ~]# iptables -F [root@gitlab ~]# setenforce 0 [root@gitlab ~]# systemctl st

  • idea shortcut2020-08-08 15:00:33

    IDEA快捷键 short cut key : run: alt + rAlt + / : code completionctl + alt + /:ctl + / :single line commentctl+ shift + / : block line comments ctl + d : delete one linectl+alt +down : copy a linealt + down :move down a line ctl+ select s

  • gitlab2020-06-27 22:08:46

    一、 安装gitlab  1.1 安装基础包 yum install policycoreutils-python -y 1.2  下载和安装gitlab  wget https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el7/gitlab-ce-10.2.7-ce.0.el7.x86_64.rpm rpm -ivh  gitlab-ce-10.2.7-ce.0.el7.x86_64.rpm  1.3 配置gitlab v

  • 02 github与gitlab2020-06-12 19:08:07

      一 github的使用 github是一个git版本库的托管服务,是全球最大的软件仓库。     1 注册用户,新建git项目       2 配置ssh-key       3 克隆项目到本地       4 推送新代码到github   查看远程仓库:git remote             git remote add origin   git@git

  • 转 linux gitlab-ctl reconfigure报错问题修复 5022020-05-12 18:53:10

    Running handlers:There was an error running gitlab-ctl reconfigure: bash[migrate gitlab-rails database] (gitlab::database_migrations line 51) had an error: Mixlib::ShellOut::ShellCommandFailed: Expected process to exit with [0], but received '1'

  • docker安装配置GitLab2020-05-03 11:05:17

      这两天公司买了台新阿里云服务器, 在其中搭建了docker, redis, jdk, springboot项目. docker搭建了GitLab.  自己也是百度搜索查看一些博客搭建的. 网上博客七门八路,什么的都有, 还是写篇博客记录记录吧, 最起码是自己搭建过来的, 以后再重新搭建,直接拿过来用就行了   若

  • 线程池源码探究2020-04-16 18:05:38

    1.线程池简介 使用线程池,一般会使用JDK提供的几种封装类型,即:newFixedThreadPool、newSingleThreadExecutor、newCachedThreadPool等,这些线程池的定义在Executors类中,来看看相关的源码: public static ExecutorService newCachedThreadPool(ThreadFactory threadFactory) {

  • gitlab 安装2020-03-21 13:55:36

    centos7下安装gitlab 1、首先按官网提示先安装依赖,然后执行下面命令添加yum源,选择gitlab-ce社区版curl -s https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.rpm.sh | sudo bash2、更新本地yum缓存sudo yum makecache 3、安装gitlab-cesudo yum insta

  • Gitlib之二----Gitlab数据备份与恢复2020-03-17 21:51:12

    实战一:实现gitlab数据备份并恢复 1、对gitlab数据备份 1、在备份gitlab数据前,停止两个服务,不能全部停止gitlab服务,否则无法实现备份 [root@gitlab ~]# gitlab-ctl stop unicorn ok: down: unicorn: 1s, normally up [root@gitlab ~]# gitlab-ctl stop sidekiq ok: down: sidekiq

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有