码迷,mamicode.com
首页 >  
搜索关键字:gns3 配置gre(generic routing encapsulation)    ( 8689个结果
Unity 模仿scene视图相机视角移动
using System.Collections; using System.Collections.Generic; using UnityEngine; public class Cam : MonoBehaviour { void Start() { } void Update() { if ...
分类:移动开发   时间:2020-05-11 15:26:13    阅读次数:152
微信小程序如何访问带有Token安全认证的API
展开微信小程序访问Token安全验证的API接口API//添加一个自定义过滤器using Newtonsoft.Json;using System;using System.Collections.Generic;using System.IO;using System.Linq;using Sys ...
分类:微信   时间:2020-05-11 01:17:01    阅读次数:446
C# Socket 处理 拆包、粘包
1、采用TCP自定义协议通讯,协议由02(byte) + json字符串(byte[]) +03(byte)组成。 Socket_Client.cs 服务端using System;using System.Collections.Generic;using System.Net;using Sys ...
分类:Windows程序   时间:2020-05-09 15:31:52    阅读次数:97
C# Mongodb 封装类
1. 依赖包 MongoDB.Driver; MongoDB.Json; MongoDB.Bson; 2. 上代码 1 using MongoDB.Driver; 2 using System; 3 using System.Collections.Generic; 4 using System.T ...
分类:数据库   时间:2020-05-09 15:25:28    阅读次数:95
ElasticSearch 7.6中遇到的一些坑
一.限制单个index在单个节点上的总shard数。index.routing.allocation.total_shards_per_node一般在冷热分离的场景种,冷数据会设置副本,热数据为了保证写入速度,只有主分片。当以均衡index中的shard数为目的,设置了该限制后,若冷数据节点数不够,... ...
分类:其他好文   时间:2020-05-08 17:50:24    阅读次数:244
Java 泛型技术(Generic)
1.1 泛形的作用 (1)JDK5以前,对象保存到集合中就会失去其特性,取出时通常要程序员手工进行类型的强制转换,这样不可避免就会引发程序的一些安全性问题。例如: ArrayList list = new ArrayList(); list.add("abc"); Integer num = (In ...
分类:编程语言   时间:2020-05-08 13:22:21    阅读次数:75
多篇开源CVPR 2020 语义分割论文
多篇开源CVPR 2020 语义分割论文 前言 1. DynamicRouting:针对语义分割的动态路径选择网络 Learning Dynamic Routing for Semantic Segmentation 作者团队:中科院&国科大&西安交大&旷视 论文链接:https://arxiv.o ...
分类:其他好文   时间:2020-05-08 09:38:11    阅读次数:710
公司的Excel导出
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using FineUICore; using Microsoft.AspNetCore.Authoriz ...
分类:其他好文   时间:2020-05-06 21:34:28    阅读次数:86
C#串口通讯,复制粘贴就可用,仅仅介绍怎样最快的搭建一个串口通讯,异常拦截等等需要自己加上
原文:C#串口通讯,复制粘贴就可用,仅仅介绍怎样最快的搭建一个串口通讯,异常拦截等等需要自己加上 using System; using System.Collections.Generic; using System.IO.Ports; using System.Text; //串口通讯类 pub... ...
分类:Windows程序   时间:2020-05-06 01:31:04    阅读次数:100
WPF 加减乘除计算器
原文:WPF 加减乘除计算器 小玩意,毫无任何难度。 cs: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; usi... ...
分类:Windows程序   时间:2020-05-06 01:00:22    阅读次数:146
8689条   上一页 1 ... 28 29 30 31 32 ... 869 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!