ICode9

精准搜索请尝试: 精确搜索
  • 极狐gitlab数据手动导出导入测试2022-08-31 17:02:44

    极狐gitlab数据手动导出导入测试 本文主要测试从源极狐gitlab实例手动迁移数据到目标极狐gitlab实例的可行性。 1. 源极狐gitlab 实例 版本:极狐gitlab v14.10.0 1.1 用户信息 其中 test1 用户属于组 usergroup 1.2 组信息 1.3 组 leffss 信息 1.3.1 组成员信息 包含用户 test2

  • Excelize 发布 2.6.1 版本,支持工作簿加密2022-08-22 09:03:06

    Excelize 是 Go 语言编写的用于操作 Office Excel 文档基础库,基于 ECMA-376,ISO/IEC 29500 国际标准。可以使用它来读取、写入由 Microsoft Excel™ 2007 及以上版本创建的电子表格文档。支持 XLAM / XLSM / XLSX / XLTM / XLTX 等多种文档格式,高度兼容带有样式、图片(表)、透视表

  • 正则表达式的匹配2022-08-02 18:01:32

    正则表达式可以很方便地从符合特定结构的字符串中提取数据。Scala封装了Java 的正则表达式。以下给出一个示例: 1 // src/main/scala/progscala2/patternmatching/match-regex.sc 2 3 val BookExtractorRE = """Book: title=([^,]+),\s+author=(.+)""".r // ➊ 4 val Magaz

  • 拥抱开源指南2022-07-28 11:05:02

    本文作者:Likyh 个人主页:https://github.com/likyh 拥抱开源指南 近年来,开源正在变得越来越火,在很多开发者眼中,「开源」也是非常极客的体现。同时参与开源项目也能给职业发展带来巨大的好处。可一些小伙伴却因为不知道参与的方法和途径没能参与,这里就向大家介绍一下作为开发者,可以

  • 基于ABP实现DDD--仓储实践2022-07-21 01:03:45

    由于软件系统中可能有着不同的数据库,不同的ORM,仓储思想的本质是解耦它们。在ABP中具体的实现仓储接口定义在领域层,实现在基础设施层。仓储接口被领域层(比如领域服务)和应用层用来访问数据库,操作聚合根,聚合根就是业务单元。这篇文章主要分析怎么通过规约将业务逻辑从仓储实现中剥

  • 基于ABP实现DDD--仓储实践2022-07-18 23:01:05

      由于软件系统中可能有着不同的数据库,不同的ORM,仓储思想的本质是解耦它们。在ABP中具体的实现仓储接口定义在领域层,实现在基础设施层。仓储接口被领域层(比如领域服务)和应用层用来访问数据库,操作聚合根,聚合根就是业务单元。这篇文章主要分析怎么通过规约将业务逻辑从仓储实现

  • 基于ABP实现DDD--聚合和聚合根实践2022-07-15 13:03:44

      在下面的例子中涉及Repository、Issue、Label、User这4个聚合根,接下来以Issue聚合为例进行分析,其中Issue聚合是由Issue[聚合根]、Comment[实体]、IssueLabel[值对象]组成的集合。 1.单个单元原则   简单理解,一个聚合就是由实体和值对象组成的集合,通过聚合根将所有关联对象

  • 实现领域驱动设计 - 使用ABP框架 - 更新操作实体2022-06-24 11:03:25

    用例演示 - 更新 / 操作实体 一旦一个实体被创建,它将被用例更新/操作,直到它从系统中删除。可以有不同类型的用例直接或间接地更改实体 在本节中,我们将讨论更改 Issue 的多个属性的典型更新操作。 这次,从更新DTO开始: public class UpdateIssueDto { [Required] public str

  • Eclipse Paho MQTT的C/C++库感觉质量不怎么高啊2022-06-24 00:33:28

    https://github.com/eclipse/paho.mqtt.c C++库也是依赖这个C库的。   1、内部创建野线程 (不对这个线程执行join操作。传给野线程的指针也没引用计数。如果这个野线程被后调度,导致use after free) 我提的issue。貌似不止这一处?https://github.com/eclipse/paho.mqtt.c/issues/1236

  • 『忘了再学』Shell基础 — 23、其他环境变量配置文件2022-05-31 13:35:21

    目录1、注销时生效的环境变量配置文件2、其他配置文件3、Shell登录信息相关文件(1)/etc/issue文件说明(2)/etc/issue.net文件说明(3)/etc/motd文件说明4、定义Bash快捷键 1、注销时生效的环境变量配置文件 在用户退出登录时,只会调用一个环境变量配置文件,就是~/.bash_logout文件。 这个文

  • 对源代码管理工具GitHub的介绍2022-05-16 14:03:59

    一、简介 GitHub是一个面向开源及私有软件项目的托管平台,因为只支持Git作为唯一的版本库格式进行托管,故名GitHub。GitHub于2008年4月10日正式上线,除了Git代码仓库托管及基本的Web管理界面以外,还提供了订阅、讨论组、文本渲染、在线文件编辑器、协作图谱(报表)、代码片段分享(Gist)等

  • nginx issue2022-05-04 13:00:56

    nginx: [emerg] BIO_new_file("/tmp/recorderApp/speech/cert.pem") failed (SSL: error:02001002:system library:fopen:No such file or directory:fopen('/tmp/recorderApp/speech/cert.pem','r') error     https://stackoverflow.com/ques

  • 如何向开源项目(Apache-InLong)提交代码2022-04-24 19:33:00

    目录1 - 认领或提交 ISSUE2 - clone 代码,本地编译安装3 - 代码规范4 - 提交代码版权声明 Apache InLong(应龙)是一个一站式海量数据集成框架, 提供自动、安全、可靠和高性能的数据传输能力,同时支持批和流,方便业务构建基于流式的数据分析、建模和应用。 1 - 认领或提交 ISSUE ISSUE,

  • Excelize 发布 2.6.0 版本,功能强大的 Excel 文档基础库2022-04-11 02:32:30

    Excelize 是 Go 语言编写的用于操作 Office Excel 文档基础库,基于 ECMA-376,ISO/IEC 29500 国际标准。可以使用它来读取、写入由 Microsoft Excel™ 2007 及以上版本创建的电子表格文档。支持 XLAM / XLSM / XLSX / XLTM / XLTX 等多种文档格式,高度兼容带有样式、图片(表)、透视表

  • 9、将/etc/issue文件中的内容转换为大写后保存至/tmp/issue.out文件中2022-04-07 10:04:15

    9、将/etc/issue文件中的内容转换为大写后保存至/tmp/issue.out文件中。   关键命令:cat /etc/issue|tr a-z A-Z >/tmp/issue.out   范例: [15:09:35 root@CentOS7 ~]#cat /etc/issue \S Kernel \r on an \m   [15:17:21 root@CentOS7 ~]#cat /etc/issue | tr a-z A-Z \S KERNEL

  • 将/etc/issue文件中的内容转换为大写后保存至/tmp/issue.out文件中2022-04-06 23:31:16

    关键命令:cat /etc/issue | tr '[:lower:]' '[:upper:]' > /tmp/issue.out 实例如下: 说明: tr   转换和删除字符 [:lower:]  任意小写字母,表示 a-z [:upper:]   任意大写字母,表示 A-Z

  • |NO.Z.00056|——————————|LinuxShell|——|Linux&Shell$变量.V13|--------------------------------------------2022-03-26 23:33:35

    [LinuxNetworkEnd:Linux&Shell$变量.V13]                                                     [Applications.LinuxNetworkEnd][|Linux|shell编程|shell基础|环境变量配置文件|source|][环境变量配置文件调用过程|shell登录信息|定义Bash快捷键|]一

  • 测试理论(3)——BUG/ISSUE/缺陷2022-03-21 12:34:19

    1、BUG概述 场景:开发转测后,我们在测试过程中发现测试的实际结果与编写的测试用例期望结果不一致,那么就需要提单(提BUG)。 1.1类型 (1)建议:是软件产品改进建议,表达的是更加完善; (2)优化:功能已实现,需要优化问题。可以是用户体现优化、性能优化。 (3)BUG:测试人员通过测试发现程序的问题。 (4)需

  • [转]Jira ScriptRunner Update Priority based on a Custom Field2022-03-19 08:03:31

    本文转自:https://library.adaptavist.com/entity/update-priority-based-on-a-custom-field Overview This script is used as a post function to change the priority of an issue based on a single-select field. Example As a product manager, I have many issues with a

  • [转]Jira Work with issue workflows2022-03-19 08:03:02

    本文转自:https://support.atlassian.com/jira-cloud-administration/docs/work-with-issue-workflows/ A Jira workflow is a set of statuses and transitions that an issue moves through during its lifecycle, and typically represents a process within your organiza

  • The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received2022-02-22 10:02:09

    启动类上加: @MapperScan(value = {"com.example.demo.mapper"}) This issue has appeared in the testing of mybatis batch insert using xml file, And I check the different with the correct configuration in the old project. The problem is the mapperScan an

  • [转]Confluence Jira Issues Macro(Jira Issues宏)2022-02-19 14:03:43

    本文转自:https://doc.devpod.cn/conf/jira-issues-macrojira-issues-9732199.html ira Issues Macro(Jira Issues宏)   本文翻译自官方文档:https://confluence.atlassian.com/pages/viewpage.action?pageId=139380 将Jira Issues宏添加到页面以显示来自Jira的信息。

  • [转]Jira Issues Macro2022-02-10 22:02:37

    本文转自:https://confluence.atlassian.com/doc/jira-issues-macro-139380.html Add the Jira Issues macro to a page to display information from Jira. You can display a single issue, a list of issues, or a count, based on a JIRA Query Language (JQL) search, filte

  • [转]Jira ScriptRunner Behaviours Examples Subtask Default Fields2022-02-10 08:00:53

    本文转自:https://scriptrunner.adaptavist.com/latest/jira/recipes/behaviours/subtask-default-fields.html This example shows you how to use default fields on the Create action for subtasks, derived from the parent issue fields.   The key to this is getting t

  • [转]Bulk Update the Value of a System Field on Jira Issues2022-02-09 22:35:27

    本文转自:https://library.adaptavist.com/entity/bulk-update-the-value-of-a-system-field-on-jira-issues Overview Use this script in the Script Console to update the value of a system field for all issues returned by a JQL query. Example As a project manager, I

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

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

ICode9版权所有