网站首页 站内搜索

搜索结果

查询Tags标签: issue,共有 29条记录
  • 基于ABP实现DDD--仓储实践

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

    2022/7/21 6:24:36 人评论 次浏览
  • Eclipse Paho MQTT的C/C++库感觉质量不怎么高啊

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

    2022/6/24 1:15:36 人评论 次浏览
  • nginx issue

    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) errorhttps://stackoverflow.com/questions/50599808/nginx-inst…

    2022/5/5 7:13:40 人评论 次浏览
  • Excelize 发布 2.6.0 版本,功能强大的 Excel 文档基础库

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

    2022/4/11 6:12:53 人评论 次浏览
  • [转]User related Groovy script snippets for ScriptRunner for JIRA (Server/Data Center)

    本文转自:https://metamorphant.de/blog/posts/2021-03-20-user-related-groovy-script-snippets-for-scriptrunner-for-jira/ Why should I use ScriptRunner? Using Groovy scripts in Jira Software/Core or Service Management (Server/Data Center) adds a huge am…

    2022/2/12 23:48:07 人评论 次浏览
  • [转]Perform a JQL Search in ScriptRunner for Jira

    本文转自:https://library.adaptavist.com/entity/perform-a-jql-search-in-scriptrunner-for-jira Overview Use this snippet to look for issues based on a JQL search. This code can be used as part of a larger bulk-administration or workflow automation task…

    2022/2/12 23:46:37 人评论 次浏览
  • [转]Jira Issues Macro

    本文转自: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) searc…

    2022/2/10 23:19:38 人评论 次浏览
  • [转]com.atlassian.greenhopper.service.issue.flagging

    本文转自:https://docs.atlassian.com/jira-software/6.7.6/com/atlassian/greenhopper/service/issue/flagging/FlagService.htmlcom.atlassian.greenhopper.service.issue.flagging Interface FlagServiceAll Known Implementing Classes:FlagServiceImpl public inter…

    2022/2/9 23:19:38 人评论 次浏览
  • [转]Bulk Update the Value of a System Field on Jira Issues

    本文转自:https://library.adaptavist.com/entity/bulk-update-the-value-of-a-system-field-on-jira-issuesOverview 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 man…

    2022/2/9 23:12:46 人评论 次浏览
  • [云炬学英语]每日一句2020.8.30

    IELTS vocabulary DAY5-2020.8.30Migration is a complex issue,and biologist define it differently,depending in part on what sorts of animals they study.迁徙是一个复杂的问题,生物学家对它有不同的定义,部分取决于他们研究的动物种类。核心词汇:migrationmigra…

    2022/2/3 6:14:41 人评论 次浏览
  • Python 统计Jira的bug 并发送邮件功能

    这篇文章主要介绍了Python 统计Jira的bug 并发送邮件,本文通过实例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下1.首先在pycharm上使用pip安装pip install html-table pip install jira2.初始化发件人邮箱,账号,密码# 发…

    2022/1/14 22:06:10 人评论 次浏览
  • Python 统计Jira的bug 并发送邮件功能

    这篇文章主要介绍了Python 统计Jira的bug 并发送邮件,本文通过实例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下1.首先在pycharm上使用pip安装pip install html-table pip install jira2.初始化发件人邮箱,账号,密码# 发…

    2022/1/14 22:06:10 人评论 次浏览
  • 【第7篇】Python爬虫实战-收集gitee中的issue问题

    为了了解大家在使用开源项目过程遇到最多的问题是什么? 这里通过收集gitee中的issue中已完成的数据,进行分析,并生成词云图一、页面结构分析 二、编写程序代码 三、运行程序结果 四、词云图生成一、页面结构分析我们可以通过获取到网页源码,然后利用xpath进行解析,要…

    2022/1/13 20:06:46 人评论 次浏览
  • 【第7篇】Python爬虫实战-收集gitee中的issue问题

    为了了解大家在使用开源项目过程遇到最多的问题是什么? 这里通过收集gitee中的issue中已完成的数据,进行分析,并生成词云图一、页面结构分析 二、编写程序代码 三、运行程序结果 四、词云图生成一、页面结构分析我们可以通过获取到网页源码,然后利用xpath进行解析,要…

    2022/1/13 20:06:46 人评论 次浏览
  • 重新整理 .net core 实践篇——— 权限中间件源码阅读[四十六]

    前言 前面介绍了认证中间件,下面看一下授权中间件。 正文 app.UseAuthorization();授权中间件是这个,前面我们提及到认证中间件并不会让整个中间件停止。认证中间件就两个作用,我们的认证方案如果实现了IAuthenticationRequestHandler,那么会调用HandleRequestAsync判…

    2021/11/28 20:42:33 人评论 次浏览
共29记录«上一页12下一页»
扫一扫关注最新编程教程