码迷,mamicode.com
首页 >  
搜索关键字:ocs    ( 1419个结果
leaflet叠加图片图层
<!DOCTYPE html> <html> <head> <title>Layers Control Tutorial - Leaflet</title> <meta charset="utf-8" /> <meta name="viewport" content="width=device-wi ...
分类:其他好文   时间:2020-02-17 14:25:53    阅读次数:314
Scrapy入门教程
参考:https://www.cnblogs.com/ellisonzhang/p/11113277.html https://scrapy-chs.readthedocs.io/zh_CN/0.24/intro/tutorial.html ...
分类:其他好文   时间:2020-02-15 21:47:24    阅读次数:61
google c++ 规范
https://blog.csdn.net/voidccc/article/details/37599203 https://zh-google-styleguide.readthedocs.io/en/latest/google-cpp-styleguide/headers/#define-gua ...
分类:编程语言   时间:2020-02-14 16:44:10    阅读次数:110
Java浮点数相等性的判断
Java浮点数相等性的判断 问题描述如下: 给定两个变量double a、double b,它们对应的装箱类型变量分别是Double x、Double y,问: 1. 是否存在一组a、b、x、y,满足 a==b && !x.equals(y) ? 2. 是否存在一组a、b、x、y,满足 a!=b & ...
分类:编程语言   时间:2020-02-13 19:16:41    阅读次数:81
griddb 集群大小评估算法
griddb 官方提供了一套计算公式,我们可以用来方便的评估集群规模以及使用的资源大小 总内存使用 需要考虑的因素 row 数据的大小 需要注册的rows 评估公式 此为单collection 的,总的需要计算所有的集合 Memory capacity used = row data size × ...
分类:数据库   时间:2020-02-12 11:00:12    阅读次数:98
数据管理方案Portworx在K8S上是如何支撑有状态应用的?
在Kubernetes上运行Portworx,支撑有状态应用(Stateful Application)的基本工作原理
分类:其他好文   时间:2020-02-11 20:52:33    阅读次数:82
Css 基础(一)
一 Css 选择器优先级 | 选择器 | 千位 | 百位 | 十位 | 个位 | 优先级 | | | | | | | | | | 0 | 0 | 0 | 1 | 0001 | | | 0 | 0 | 0 | 3 | 0003 | | | 0 | 0 | 2 | 2 | 0022 | | | 0 | ...
分类:Web程序   时间:2020-02-10 18:12:23    阅读次数:96
unittest 7 各种断言方法(assertXXX)
背景 unittest支持各种断言方法。 断言列表 官方文档 方法检查点 assertEqual(a, b) a == b assertNotEqual(a, b) a != b assertTrue(x) bool(x) is True assertFalse(x) bool(x) is Fals ...
分类:其他好文   时间:2020-02-10 13:26:17    阅读次数:309
开始学习C#的一些小知识点
输出: Console.WirteLine("hello world"); string a="hello world"; Console.WirteLine(a); string a="world"; Console.WirteLine("hello"+a); string a="hello wo ...
分类:Windows程序   时间:2020-02-09 20:36:49    阅读次数:98
使用C语言为python编写动态模块(3)--在C中实现python中的类
楔子 这次我们来介绍python中的类型在C中是如何实现的,我们在C中创建python的int对象,可以使用PyLong_FromLong、创建python的list对象可以使用PyList_New,那么如何在C中构建一个python中的类呢? 对于构建一个类,我们肯定需要以下步骤: + + + + ...
分类:编程语言   时间:2020-02-08 17:14:03    阅读次数:76
1419条   上一页 1 ... 26 27 28 29 30 ... 142 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!