码迷,mamicode.com
首页 >  
搜索关键字:ocs    ( 1419个结果
openwrt 创建 package
参考链接: https://openwrt.org/docs/guide-developer/packages ...
分类:其他好文   时间:2021-05-24 14:50:38    阅读次数:0
k8s service
创建 ClusterIP 类型的 Service apiVersion: apps/v1 kind: Deployment metadata: name: my-deployment spec: selector: matchLabels: app: metrics department: sale ...
分类:其他好文   时间:2021-05-24 06:53:19    阅读次数:0
Neural Network SMS Text Classifier
Neural Network SMS Text Classifier https://www.freecodecamp.org/learn/machine-learning-with-python/machine-learning-with-python-projects/neural-networ ...
分类:Web程序   时间:2021-05-24 06:43:15    阅读次数:0
python知识点
均值函数 numpy.mean() numpy.mean( a, axis=None, dtype=None, out=None, keepdims=<no value>) 参数 a : array_like 需要计算均值的数组。如果a不是一个数组,则会尝试进行转换。 axis : None or ...
分类:编程语言   时间:2021-05-24 06:05:16    阅读次数:0
用Taro写一个微信小程序(二)——配置目录别名
🌲 配置别名可以方便书写代码引用路径,让代码更整洁。 🌲 官方文档可参考https://nervjs.github.io/taro/docs/config-detail#alias 一、在config/index.js下配置alias const config = { ……… alias: { ...
分类:微信   时间:2021-05-24 05:49:55    阅读次数:0
cubestore 运行试用
官方提供了docker-compose 的运行模式 环境准备 docker-compose 文件 version: "3" services: cubestore_router: restart: always image: cubejs/cubestore:latest environment: ...
分类:其他好文   时间:2021-05-03 12:43:52    阅读次数:0
VS2017 配置 Visual Studio Emulator for Android
Ø 简介 本文介绍使用 VS2017 配置 Visual Studio Emulator for Android 的模拟器,Windows 环境为:Windows 10 专业版(版本号:1803),开发环境为:Visual Studio 2017(企业版:15.9.11) 1. 开启 Hyper-V ...
分类:移动开发   时间:2021-05-03 12:36:34    阅读次数:0
使用GitHub搭建个人网站
1.登录GitHub,点击右上角的 + 号按钮,选择【New repository】,打开创建新仓库页面。 https://github.com/ 创建一个名为为username.github.io的代码仓库,其中username为你的GitHub的账户名称。如示例的用户名称为octocat 可见性 ...
分类:Web程序   时间:2021-05-03 12:26:41    阅读次数:0
30分钟掌握ES6核心内容(上)
ECMAScript 6(以下简称ES6)是JavaScript语言的下一代标准。 最常用的ES6特性 let, const, class, extends, super, arrow functions, template string, destructuring, default, rest ...
分类:其他好文   时间:2021-04-21 12:02:32    阅读次数:0
Array.prototype.fill 填充值被复用的问题
考察如下示例代码: // 创建二维数组 const arr = Array(2).fill([]); // 操作第一个元素 arr[0].push(1); // 结果是操作了所有数组 console.log(arr); // [ [ 1 ], [ 1 ] ] 和 new 不 new 关系,以下代码问 ...
分类:其他好文   时间:2021-04-20 15:27:38    阅读次数:0
1419条   上一页 1 2 3 4 ... 142 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!