上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 39 下一页
摘要: # Python继承 class Person(object): """人""" def __init__(self, name, age): self._name = name self._age = age @property def name(self): return self._name @property def age(self): return self._age @age.set 阅读全文
posted @ 2019-09-21 19:28 Done、 阅读(309) 评论(0) 推荐(0) 编辑
摘要: 效果图: 阅读全文
posted @ 2019-08-16 19:33 Done、 阅读(720) 评论(0) 推荐(0) 编辑
摘要: 效果图: 阅读全文
posted @ 2019-08-16 19:31 Done、 阅读(1006) 评论(3) 推荐(1) 编辑
摘要: #jenkins插件: SonarQube Scanner #Jenkins配置 Task to run:scan #Analysis properties: sonar.projectKey=service-name sonar.projectName=user sonar.projectVersion=1.0 sonar.sources=./ sonar.language=java ... 阅读全文
posted @ 2019-08-15 14:23 Done、 阅读(197) 评论(0) 推荐(0) 编辑
摘要: install pgsql and sonarqube docker run --name postgresqldb -e POSTGRES_USER=sonar -e POSTGRES_PASSWORD=sonar -d postgres docker run --name sq --link postgresqldb -e SONARQUBE_JDBC_URL=jdbc:postgres... 阅读全文
posted @ 2019-08-14 18:53 Done、 阅读(234) 评论(0) 推荐(0) 编辑
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 39 下一页