码迷,mamicode.com
首页 >  
搜索关键字:remote asm instance    ( 13357个结果
error: RPC failed; curl 56 LibreSSL SSL_read: SSL_ERROR_SYSCALL
error: RPC failed; curl 56 LibreSSL SSL_read: SSL_ERROR_SYSCALL, errno 54 fatal: the remote end hung up unexpectedly fatal: early EOF fatal: index-pac ...
分类:Web程序   时间:2020-05-16 09:19:10    阅读次数:158
Django2.0完整版
WEB框架本质: 服务器程序和应用程序: 是一个socket服务端,而用户的浏览器就是一个socket客户端。例子:import?socketsok?=?socket.socket()sok.bind(("127.0.0.1",8008))sok.listen()while?True: conn,a ...
分类:其他好文   时间:2020-05-15 11:29:53    阅读次数:92
2020-05-14 git remote
1.查看已经存在的remote git remote 查看remote详细信息 git remote -v 或者 git remote --verbose 查看更详细的信息 git remote show <remote_name> 2.添加新的remote git remote add <url> ...
分类:其他好文   时间:2020-05-15 00:12:11    阅读次数:49
设计模式—— 十三 :原型模式
@[Toc] 什么是原型模式? 原型模式是一个比较简单,但应用频率比较高的设计模式。 Specify the kinds of objects to create using a prototypical instance,and create new objects by copying this ...
分类:其他好文   时间:2020-05-15 00:03:16    阅读次数:56
单例设计模式
单例模式,是一种常用的软件设计模式。在它的核心结构中只包含一个被称为单例的特殊类。 通过单例模式可以保证系统中,应用该模式的类一个类只有一个实例。即一个类只有一个对象实例 通常单例模式在Java语言中,有两种构建方式: 懒汉方式:指全局的单例实例在第一次被使用时构建 饿汉方式:指全局的单例实例在类装 ...
分类:其他好文   时间:2020-05-14 12:47:00    阅读次数:59
delphi inline assembly {asm}
https://community.idera.com/developer tools/programming languages/f/c libraries/72223/inline assembly this code compiles well `` this one indicates an ...
分类:Windows程序   时间:2020-05-14 12:45:52    阅读次数:89
redis 基础
什么是Redis Redis(Remote Dictionary Server) 是一个使用 C 语言编写的,开源的(BSD许可)高性能非关系型(NoSQL)的键值对数据库。 Redis 可以存储键和五种不同类型的值之间的映射。键的类型只能为字符串,值支持五种数据类型:字符串、列表、集合、散列表、有 ...
分类:其他好文   时间:2020-05-14 10:49:15    阅读次数:89
matlab gui 设计 日志
下面是我自己做的matlab环境下的图形处理小工具。 聊生于无。配合Guid一起用。 function varargout = dazuoye(varargin) % DAZUOYE MATLAB code for dazuoye.fig % DAZUOYE, by itself, creates ...
分类:其他好文   时间:2020-05-13 23:26:58    阅读次数:70
Redis(一)
概念:Redis(REmote DIctionary Server)是用C语言开发的一个开源的高性能键值对(Key-Value)数据库。 特征: 数据间没有必然的关联关系 内部采用单线程进行工作 高性能。官方测试数据,50个并行执行100000个请求,读的速度11000次/s,写的速度81000次/ ...
分类:其他好文   时间:2020-05-13 14:11:09    阅读次数:52
跟我一起探索Neutron (2) - router
(二层配置的是linuxbridge;l3 agent 提供路由 router 服务) 实验环境: 创建了4个网络 provider:flat网、外网 net1、net2、net3 均为 vxlan 网络 对应涉及5个虚拟机 provider-instance、self-instance 为分别指定 ...
分类:其他好文   时间:2020-05-13 13:46:36    阅读次数:111
13357条   上一页 1 ... 81 82 83 84 85 ... 1336 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!