谢小呆
谢小呆
环境: * Mac * vagrant 2.1.2 * virtualBox: 5.2.16 * Kubernetes 1.11.0 遇到了几个问题: 1. 在系统自动挂起之后vm 的时间会不对,没有自动同步,导致 `Prometheus` 监控数据显示不出来,应该同步时间就可以,不过我没有,而是使用的 `vagrant halt` ,就导致了另一个问题。 2. 执行 `vagrant halt` 按照[【重启】](https://github.com/rootsongjc/kubernetes-vagrant-centos-cluster/blob/master/README-cn.md#%E9%87%8D%E5%90%AF]) 的操作后,之前配置的 `Istio` 相关所有东西都不见了,包括 `istio-system`...
Hi guys, I can get uriParameters any properties "version": "1.1.48" ```raml #%RAML 1.0 --- title: mb-collection API baseUri: / ... /{id}: get: description: 商品详情 uriParameters: id: enum: [123132123, 3454543543543 ]...
地图片段 ``` xml ``` 会报如下错误 ``` javascript tiled.js:2847 Uncaught Error: no matching tileset found for gid 29 ```
TMXHexagonalRenderer 对象属性如下: ``` _hexsidelength:0 _rowheight:25 _sidelengthx:0 _sidelengthy:0 _sideoffsetx:47 _sideoffsety:25 _staggeraxis:"y" _staggerindex:"odd" animationTiles:Array[0] cols:92 rows:45 tileheight:50 tilewidth:94 ``` 在调用`TMXHexagonalRenderer.pixelToTileCoords()`方法返回的结果和实际tiled 地图中的坐标有偏差
date in oracle like this `2014/3/31 16:11:19.000000` but select result is `Tue Apr 01 2014 00:11:19 GMT+0800 (中国标准时间)` How can I do ?
When my sql particularly complex, I hope to be able to output sql, and replaces the placeholder like that: ``` var query = oracle.execute('select * from task where userId =...
依赖的核心模块 raml-1-parser 已经废弃,要进行整体重构到 https://github.com/raml-org/webapi-parser 参加: https://www.npmjs.com/package/raml-1-parser
1. API 测试也只能提供一份测试参数,不能对异常数据多种情况进行描述。 2. ```yaml responses: 200: body: example: '' 400: body: type: UpdateGrassFailedVo example: !include ./grass/grass_post_400.json ``` 只会去第一个状态(如:200)作为默认的response 400 的情况除非手动调整顺序否则永远不会返回。