posted @ 2022-02-22 18:19
PanPan003
阅读(0)
推荐(0)
摘要:
原文:https://docs.microsoft.com/en-us/dotnet/core/additional-tools/wcf-web-service-reference-guide Over the years, many Visual Studio developers have en
阅读全文
posted @ 2022-02-22 14:31
PanPan003
阅读(174)
推荐(0)
摘要:
https://docs.microsoft.com/en-us/aspnet/core/grpc/why-migrate-wcf-to-dotnet-grpc?view=aspnetcore-6.0 This article provides a summary of why ASP.NET Co
阅读全文
posted @ 2022-02-22 14:28
PanPan003
阅读(90)
推荐(0)
摘要:
WCF Alternatives for .NET 5 The .NET 5 era has begun It’s official; you can start targeting .NET 5 as your platform of choice. It’s the first option f
阅读全文
posted @ 2022-02-22 14:12
PanPan003
阅读(1589)
推荐(1)
摘要:
http://192.168.33.21:5000/v2/_catalog http://192.168.33.21:5000/v2/_catalog?n=2000 n=2000 ,为显示 2000条 仓库name(默认显示) Listing Repositories Images are stor
阅读全文
posted @ 2022-02-16 12:01
PanPan003
阅读(204)
推荐(0)
摘要:
# checkout 远程分支hotfix/v3.3.1_20378_website $ git reset --hard f93b9e23dee9ff0a81ece8a45d572a000d6c86a8 # 强制远程分支推送。否则如果 commit较新,则会自动 提示需要提交commit $ gi
阅读全文
posted @ 2022-02-15 22:12
PanPan003
阅读(180)
推荐(0)
摘要:
$ git ls-files | while read f; do git blame -w -M -C -C --line-porcelain "$f" | grep -I '^author '; done author CHN\123123 author CHN\123123 author CH
阅读全文
posted @ 2022-02-15 12:04
PanPan003
阅读(79)
推荐(0)
摘要:
$ git log --oneline --graph 查询 git log的 图示 查询一段时间内的 某个路径下的 commit: $ git log --stat --since 2021-12-01 --until 2022-02-13 --branches=*feature/v3.3 Sou
阅读全文
posted @ 2022-02-15 11:49
PanPan003
阅读(159)
推荐(0)
摘要:
需要模拟的merge Commit: f94551acfbd3be6d558ebf0f6df8031e72fb7c17 Parents: b91641a9db44dff81e0f86bcde3a3f29dee5f4f7, 7e0ee6b26f66149d50f1f1d927d0dae0cbe9ff5
阅读全文
posted @ 2022-02-15 11:45
PanPan003
阅读(47)
推荐(0)
摘要:
$ git show --stat 991398f8 --pretty=format:%f | awk '{print $1}' | awk 'NR>2{print p}{p=$0}' Doc/TestData/CashDistribution.csv Doc/TestData/CashPreAut
阅读全文
posted @ 2022-02-15 11:39
PanPan003
阅读(51)
推荐(0)
摘要:
原文:https://www.usenix.org/system/files/conference/osdi14/osdi14-paper-yuan.pdf Introduction We found the majority of catastrophic failures could easil
阅读全文
posted @ 2022-01-30 18:14
PanPan003
阅读(102)
推荐(0)
摘要:
原文:https://www.infoq.com/presentations/Simple-Made-Easy/ simplicity’s virtues over easiness while many choose easiness they may end up with complexity
阅读全文
posted @ 2022-01-30 16:12
PanPan003
阅读(88)
推荐(0)
摘要:
$ git log --stat --since 2021-04-20 --until 2022-02-01 --author pan --branches=*feature/v3.3* Source/Tools/ $ git cherry-pick ca3bbed961ecc6f950c5c112
阅读全文
posted @ 2022-01-30 14:53
PanPan003
阅读(330)
推荐(0)
posted @ 2022-01-29 12:31
PanPan003
阅读(0)
推荐(0)
摘要:
书籍下载地址: https://download.csdn.net/download/hapjin/10653988?utm_medium=distribute.pc_relevant_download.none-task-download-2~default~BlogCommendFromBaid
阅读全文
posted @ 2022-01-29 11:51
PanPan003
阅读(138)
推荐(0)
摘要:
原文:https://docs.microsoft.com/en-us/aspnet/core/mvc/controllers/actions?view=aspnetcore-6.0 Controllers, actions, and action results are a fundamental
阅读全文
posted @ 2022-01-21 22:32
PanPan003
阅读(58)
推荐(0)
摘要:
原文:https://docs.microsoft.com/en-us/aspnet/core/web-api/action-return-types?view=aspnetcore-6.0 ASP.NET Core offers the following options for web API
阅读全文
posted @ 2022-01-21 18:07
PanPan003
阅读(73)
推荐(0)
摘要:
原文: https://code-maze.com/csharp-async-enumerable-yield/ The support for Async Streams was one of the most exciting features that came out with .NET C
阅读全文
posted @ 2022-01-20 18:25
PanPan003
阅读(189)
推荐(0)
摘要:
https://docs.microsoft.com/en-us/aspnet/web-api/overview/advanced/http-message-handlers A message handler is a class that receives an HTTP request and
阅读全文
posted @ 2022-01-20 15:24
PanPan003
阅读(100)
推荐(0)
摘要:
The Task asynchronous programming model (TAP) provides an abstraction over asynchronous code. You write code as a sequence of statements, just like al
阅读全文
posted @ 2022-01-20 14:56
PanPan003
阅读(46)
推荐(0)
摘要:
Async Overview Not so long ago, apps got faster simply by buying a newer PC or server and then that trend stopped. In fact, it reversed. Mobile phones
阅读全文
posted @ 2022-01-20 13:43
PanPan003
阅读(244)
推荐(0)
摘要:
原文:https://odetocode.com/blogs/scott/archive/2013/04/08/webapi-tip-8-working-with-tasks.aspx Message handlers in the WebAPI feature a single method to
阅读全文
posted @ 2022-01-20 12:18
PanPan003
阅读(49)
推荐(0)
摘要:
原文:https://docs.microsoft.com/en-us/aspnet/core/web-api/action-return-types?view=aspnetcore-6.0 ASP.NET Core offers the following options for web API
阅读全文
posted @ 2022-01-20 11:43
PanPan003
阅读(253)
推荐(0)
摘要:
原文:https://stackoverflow.com/questions/41953102/using-async-await-or-task-in-web-api-controller-net-core I have a .net core API which has a controller
阅读全文
posted @ 2022-01-20 11:29
PanPan003
阅读(199)
推荐(0)
摘要:
C#多线程和异步(一)——基本概念和使用方法 阅读目录 一、多线程相关的基本概念 二、C#中的线程使用 2.1 基本使用 2.2 常用的属性和方法 2.3 线程同步 2.4 跨线程访问 一、多线程相关的基本概念 进程(Process):是系统中的一个基本概念。 一个正在运行的应用程序在操作系统中被视
阅读全文
posted @ 2022-01-19 16:51
PanPan003
阅读(497)
推荐(2)
摘要:
What happens when I close/abort a WCF channel/proxy? I'm trying to get a better understanding of what's going on when I use a WCF proxy. I'm having tr
阅读全文
posted @ 2022-01-17 15:59
PanPan003
阅读(134)
推荐(0)
摘要:
private static ChannelFactory<InterDataServiceChannel> _factory; private static object _lock = new object(); private InterDataServiceClient _client =
阅读全文
posted @ 2022-01-17 14:48
PanPan003
阅读(23)
推荐(0)
摘要:
https://www.thecodebuzz.com/consuming-wcf-web-services-in-net-core-best-practices/ Today in this article on best practices, we shall learn how to cons
阅读全文
posted @ 2022-01-17 12:20
PanPan003
阅读(3005)
推荐(0)
摘要:
https://stackoverflow.com/questions/14547034/wcf-channelfactory-and-channels-caching-reusing-closing-and-recovery I have the following planned archite
阅读全文
posted @ 2022-01-17 11:57
PanPan003
阅读(2227)
推荐(0)
摘要:
WCF中的Binding模型之六(完结篇):从绑定元素认识系统预定义绑定 由于绑定对象由一系列有序的绑定元素组成,绑定元素最终决定着信道栈中信道的组成,而信道的组成最终又决定了信道栈对消息进行处理的方式和能力,所有要确定绑定的特性和能力,我们可以通过查看其绑定元素的构成来一窥究竟... ... 由于
阅读全文
posted @ 2022-01-14 19:19
PanPan003
阅读(85)
推荐(0)
摘要:
WCF中的Binding模型之二: 信道与信道栈(Channel and Channel Stack) WCF采用基于消息交换的通信方式,而绑定则实现了所有的通信细节。绑定通过创建信道栈实现了消息的编码与传输,以及对WS-*协议的实现。在这一节中,我们就来着重介绍WCF中的信道和信道栈。 WCF采用
阅读全文
posted @ 2022-01-14 19:03
PanPan003
阅读(175)
推荐(0)
摘要:
相关资料 [原创]我的WCF之旅(1):创建一个简单的WCF程序[原创]我的WCF之旅(2):Endpoint Overview[原创]我的WCF之旅(3):在WCF中实现双向通信(Bi-directional Communication)[原创]我的WCF之旅(4):WCF中的序列化(Serial
阅读全文
posted @ 2022-01-14 18:28
PanPan003
阅读(199)
推荐(0)
摘要:
在C#中利用Keep-Alive处理Socket网络异常断开的方法 最近我负责一个IM项目的开发,服务端和客户端采用TCP协议连接。服务端采用C#开发,客户端采用Delphi开发。在服务端开发中我碰到了各种各样的网络异常断开现象。在处理这些异常的时候有了一些心得,现在写出来和大家分享一下。 那网络异
阅读全文
posted @ 2022-01-14 16:52
PanPan003
阅读(1421)
推荐(0)
摘要:
原文: https://blog.csdn.net/haicunzaima/article/details/84529735 【问题现象】 系统上线后出现TCP连接数超过预期阀值,最高值达到8K左右,新上线代码中包含了一文件上传操作,使用的是apache的commons-httpclient包。 【
阅读全文
posted @ 2022-01-14 16:47
PanPan003
阅读(8478)
推荐(0)
摘要:
https://developers.google.com/google-ads/api/docs/client-libs Client Libraries Our client libraries provide high-level views and basic building blocks
阅读全文
posted @ 2022-01-12 16:53
PanPan003
阅读(306)
推荐(0)
摘要:
https://developers.google.com/google-ads/api/docs/oauth/overview OAuth2 in the Google Ads API All Google Ads API calls must be authorized through OAut
阅读全文
posted @ 2022-01-12 16:27
PanPan003
阅读(519)
推荐(0)
摘要:
https://developers.google.com/google-ads/api/docs/reporting/overview This guide describes the steps necessary to create and submit a query to the Goog
阅读全文
posted @ 2022-01-12 15:35
PanPan003
阅读(349)
推荐(0)
摘要:
https://developers.google.com/adwords/api/docs/guides/reporting#awql Overview There are two main steps to generate reports from the API: Create a repo
阅读全文
posted @ 2022-01-12 15:18
PanPan003
阅读(107)
推荐(0)
摘要:
You’re receiving this email because the developer token associated with this email address has recently made requests to the legacy AdWords API which
阅读全文
posted @ 2022-01-12 14:32
PanPan003
阅读(249)
推荐(0)
posted @ 2022-01-12 12:23
PanPan003
阅读(0)
推荐(0)