tfs

How to open two Solution in one Visual Studio IDE?

半腔热情 提交于 2020-12-25 10:55:52
问题 I am working on two different solutions, say, Solution1 and Solution2 . As these two solutions are dependent upon each other, I have to open two separate Visual Studio while developing. It is really difficult to switch between these Visual Studio. I can't merge these two solutions into one as Solution1 is being used by other projects and all are part of Source Control. Just wondering, can I open both solutions in the same Visual Studio IDE? I searched a lot but no luck. Any suggestions on

How to open two Solution in one Visual Studio IDE?

亡梦爱人 提交于 2020-12-25 10:54:21
问题 I am working on two different solutions, say, Solution1 and Solution2 . As these two solutions are dependent upon each other, I have to open two separate Visual Studio while developing. It is really difficult to switch between these Visual Studio. I can't merge these two solutions into one as Solution1 is being used by other projects and all are part of Source Control. Just wondering, can I open both solutions in the same Visual Studio IDE? I searched a lot but no luck. Any suggestions on

阿里云专利智能管家正式上线,专利在线托管省心无忧

北城以北 提交于 2020-12-16 11:20:11
12月16日,阿里云专利智能管家产品正式上线,将为用户提供专利在线托管、年费管理和通知等功能,解决企业在专利运营和管理中系统繁多不易操作、年费金额和缴费时间不固定、专利管理不善逾期失效等问题。 发布会传送门 了解产品详情 知识产权保护是构建企业核心竞争力的必要方式之一,不少企业投入了大量的精力进行知识产权的创新和保护。同样,知识产权保护也被作为“强国战略”之一,投入了大量的资源推进和鼓励知识产权创新。专利作为知识产权的重要组成部分之一,因申请流程复杂、维护成本高等对企业和个人都具有比较高的门槛。企业花费大量精力获得专利授权之后,保护期是10年或者20年,每年都需要进行维护和管理。因管理不善导致专利失效,而给企业带来损失的情况不在少数。 据悉,阿里云推出“专利智能管家”产品,旨在帮助企业化解专利管理难题,提供一键查询专利公开信息了解最新技术动态、专利年检状态实时自动提醒等服务。可自动计算和缴纳年费,省去复杂的人工操作流程,最大程度避免专利逾期失效的风险。还可以协助用户办理专利费减备案,全流程线上提交材料,降低企业专利持有成本。整个过程线上流程透明,随时可查,实时APP、邮件、短信等多维度消息提醒,确保无遗漏,真正让企业在专利管理中做到省心无忧。 未来阿里云还将继续丰富产品能力,通过大数据挖掘、模型算法等,为企业提供价值评估报告;同时,通过智能管理求购信息,及时提醒专利持有人是否出让

Azure starting 2 self hosted servers deliver files to Azure managed agent both in pool but only 1 accepting copyfiles task

别等时光非礼了梦想. 提交于 2020-12-15 06:23:06
问题 I have a very strange behaver where I starting 2 self-hosted agents from my AWS server to deliver files to the managed agent in azure all with different names to be unique. but in the azure pipeline, i can see both pipelines are taking the files from only 1 place instead of taking files from its unique place in the self-hosting server. here is the command I'm starting the self-hosting docker server : they all take form : docker run -d --rm -t --name=ios_docker_128_linux_slave_2 -e AZP_WORK=

Azure starting 2 self hosted servers deliver files to Azure managed agent both in pool but only 1 accepting copyfiles task

大憨熊 提交于 2020-12-15 06:21:49
问题 I have a very strange behaver where I starting 2 self-hosted agents from my AWS server to deliver files to the managed agent in azure all with different names to be unique. but in the azure pipeline, i can see both pipelines are taking the files from only 1 place instead of taking files from its unique place in the self-hosting server. here is the command I'm starting the self-hosting docker server : they all take form : docker run -d --rm -t --name=ios_docker_128_linux_slave_2 -e AZP_WORK=

Migrate TFS 2013 to Git

倾然丶 夕夏残阳落幕 提交于 2020-12-12 03:58:24
问题 During the past 24 hours I've been struggling with the following. As our dev team uses TFS (current version 2013) for quite some time, we decided to migrate all of the projects to git. But unfortunately, this doesn't look to be so easy. First of all, I've tried with git tfs, but every time I try to clone a collection it says: Access to path 'x' denied. In contrary, listing all of the branches runs smoothly. Because of that, I was trying to go the way around by trying to convert a TFS

Migrate TFS 2013 to Git

会有一股神秘感。 提交于 2020-12-12 03:57:59
问题 During the past 24 hours I've been struggling with the following. As our dev team uses TFS (current version 2013) for quite some time, we decided to migrate all of the projects to git. But unfortunately, this doesn't look to be so easy. First of all, I've tried with git tfs, but every time I try to clone a collection it says: Access to path 'x' denied. In contrary, listing all of the branches runs smoothly. Because of that, I was trying to go the way around by trying to convert a TFS

软件工程第一次阅读作业

六眼飞鱼酱① 提交于 2020-11-24 20:04:56
项目 内容 本次作业所属课程 2019BUAA软件工程 本次作业要求 阅读《构建之法》,初步了解软件工程 我在本课程的目标 熟悉软件工程相关规范,学会结对编程和团队编程 本次作业的帮助 在《构建之法》的基础上解惑,在老师帮助下了解软件工程 1.快速看完整部教材,列出你 仍然不懂 的5到10个问题 问题1 第二章 个人技术和流程 2.1 单元测试 问:如果用随机数以增加测试的真实性,好么? 答:一般情况下不好,如果某个随机数导致程序出错,但是下一次运行又不能重复这一错误,则于事无补。我们还是要用随机数等办法“增加测试的真实性”,但不是在单元测试中。单元测试不能解决所有问题,不必期望它会发现所有的缺陷。…… ​ “某个随机数导致程序出错,但是下一次运行又不能重复这一错误”,在随机生成单元测试的时候,为何下一次运行不能重复这个错误呢?随机生成的数据对测试者来说应该是可见的,在随机生成单元测试的时候,若某个随机数导致出错,可不可以记录这个数据,下一次测试就不需要重新随机生成了呢? 还有,对于类似随机数生成器这个程序本身,如果要进行单元测试要怎么进行呢? 这是我在查询以上疑问的时候遇到的新问题,但是似乎没有得到解答。 问题2 第二章 个人技术和流程 2.3 个人开发流程 个人项目耗时对比记录表 …… ·如果数据不准确或有遗失,怎么办?让工程师编造一些? ​ 正如书中提出的问题

软件工程

安稳与你 提交于 2020-11-24 19:52:01
软件工程 - 第一次阅读作业 项目 内容 这个作业属于哪个课程? 北航软工2019班级博客 这个作业的要求在哪里? 第一次阅读作业 我在这个课程的目标是? 按时完成老师给的任务 这个作业在哪个具体方面帮助我实现目标 ? 让我了解该课程的基本内容 1. 看完《构建之法》后的思考 快速看完整部教材,列出你仍然不懂的5到10个问题,发布在你的个人博客上。 作为一个平时看书不经过脑子思考的人,突然让我提出5~10个问题,真的挺让我头疼的。那我就先把这个空着吧。 1.1 有关结对编程 说起结对编程,我就想到了我和姐暑假一起玩《饥荒》的日子了。由于只有一台电脑,我们只能轮换着操作电脑玩。在一个人操作鼠标的时候,另一个人在旁边适时给予指导。我们也会互相问问题,询问建议。由于饥荒独特的游戏系统,当一个人操作电脑的时,有时需要另一个人在网上搜索各种食物配方等内容。饥荒这游戏最大的特点就是孤独,但两个人一起玩,我们不会感到孤独。我们很开心的一起玩了很久,度过了一整个夏天。 <figure align="center"> <img src="http://ww1.sinaimg.cn/large/0070O95Yly1g0vwhxds3hj30k00f0gxt.jpg" width="400"> <figcaption>饥荒</figcaption> </figure> 但是对于结对编程,我感觉有点难。

Java程序员工作三年,月薪达到38K,只因他掌握了这七大技能树

可紊 提交于 2020-11-23 09:55:04
Java架构师,首先要是一个高级java攻城狮,熟练使用各种框架,并知道它们实现的原理。jvm虚拟机原理、调优,懂得jvm能让你写出性能更好的代码;池技术,什么对象池,连接池,线程池…… Java构架师需要掌握的技术: 1、熟练使用各种框架,并知道它们实现的原理。 2、jvm虚拟机原理、调优,懂得jvm能让你写出性能更好的代码; 3、池技术,什么对象池,连接池,线程池……Java反射技术,写框架必备的技术,遇到有严重的性能问题,替代方案java字节码技术; 4、nio,没什么好说的,值得注意的是"直接内存"的特点,使用场景;java多线程同步异步;java各种集合对象的实现原理,了解这些可以让你在解决问题时选择合适的数据结构,高效的解决问题,比如hashmap的实现原理,好多五年以上经验的人都弄不清楚,还有为什扩容时有性能问题?不弄清楚这些原理,就写不出高效的代码,还会认为自己做的很对; 总之一句话,越基础的东西越重要,很多人认为自己会用它们写代码了,其实仅仅是知道如何调用api而已,离会用还差的远。 5、熟练使用各种数据结构和算法,数组、哈希、链表、排序树…,一句话要么是时间换空间要么是空间换时间,这里展开可以说一大堆,需要有一定的应用经验,用于解决各种性能或业务上的问题。 6、熟练使用linux操作系统,必备,没什么好说的 。 7、熟悉tcp协议