GPU=0 CUDNN=0 OPENCV=0 OPENMP=0 DEBUG=0 ARCH= -gencode arch=compute_30,code=sm_30 \ -gencode arch=compute_35,code=sm_35 \ -gencode arch=compute_50,cod ...
分类:
其他好文 时间:
2020-02-13 00:20:54
阅读次数:
116
Given a non-negative integer N, your task is to compute the sum of all the digits of N, and output every digit of the sum in English. Input Specificat ...
分类:
其他好文 时间:
2020-02-11 19:20:25
阅读次数:
64
前言 首先介绍下在本文出现的几个比较重要的概念: 函数计算(Function Compute) : 函数计算是一个事件驱动的服务,通过函数计算,用户无需管理服务器等运行情况,只需编写代码并上传。函数计算准备计算资源,并以弹性伸缩的方式运行用户代码,而用户只需根据实际代码运行所消耗的资源进行付费。函数 ...
分类:
其他好文 时间:
2020-02-11 16:21:23
阅读次数:
117
前言 首先介绍下在本文出现的几个比较重要的概念: 函数计算(Function Compute) : "函数计算" 是一个事件驱动的服务,通过函数计算,用户无需管理服务器等运行情况,只需编写代码并上传。函数计算准备计算资源,并以弹性伸缩的方式运行用户代码,而用户只需根据实际代码运行所消耗的资源进行付费 ...
分类:
Web程序 时间:
2020-02-11 11:41:19
阅读次数:
125
与Linux-bridge不同,使用Openvswitch作为网络驱动之后创建vxlan网络会在controller生成三个网桥,分别是: br-int 连接 Dnsmasq,流表逻辑处理 br-ex 连接网卡,出外网网桥 br-tun 隧道端点 在compute节点生成两种网桥,分别是: br-i ...
分类:
其他好文 时间:
2020-02-10 11:44:56
阅读次数:
56
最近有个客户在测试Oracle Compute云,他们的应用需要使用MySQL数据库,由于是企业级应用一定要考虑高可用架构,因此有需求要在Oracle Compute云上搭建MySQL高可用集群。客户根据自身的技术储备想要使用Keepalived组件来配合MySQL实现。今天结合Oracle Com... ...
分类:
数据库 时间:
2020-02-08 19:18:30
阅读次数:
110
已经使用vue有一段时间,并且写过两三个项目了,决定总结一下vue中常用到的东西,也算巩固一下,随着不断深入学习,也会不断的扩充这篇博客! 一.Vue 1.1 vue的常用指令和属性方法API: v if (v if else ,v else) , v show (修改display的css属性让其 ...
分类:
其他好文 时间:
2020-02-08 00:02:32
阅读次数:
68
多态是同一个行为具有多个不同表现形式或者形态的能力。 多态就是一个接口,使用不同的实例而执行不同操作,如图所示: 多态存在的三个必要条件 继承 重写 父类引用指向子类对象 比如: Parent p=new Child(); 当使用多态方式调用方法时,首先检查父类中是否有该方法,如果没有,则编译错误; ...
分类:
编程语言 时间:
2020-02-07 12:35:30
阅读次数:
73
1 """ 2 Intersection of Two Arrays 3 Given two arrays, write a function to compute their intersection. 4 Example 1: 5 Input: nums1 = [1,2,2,1], nums2 ...
分类:
其他好文 时间:
2020-02-06 23:00:09
阅读次数:
74
Suppose we have very large sparse vectors (most of the elements in vector are zeros) Find a data structure to store them Compute the Dot Product. Foll ...
分类:
其他好文 时间:
2020-02-06 12:45:46
阅读次数:
44