第一章 Devops介绍 1.1 Devops是什么 *DevOps一次词的来自于Development和Operations的组合,突出重视软件开发人员和运维人员的沟通合作,通过自动化流程来使得软件构建、测试、发布更加快捷、频繁和可靠。 **是一种方法,一种过程,一种理念:狭义上指共同协作,广义上 ...
分类:
其他好文 时间:
2020-05-27 00:52:49
阅读次数:
72
在官方的这篇文档中为大家介绍了如何使用Java开启Azure Windows虚拟机的诊断设置,https://docs.azure.cn/zh-cn/articles/azure-operations-guide/virtual-machines/aog-virtual-machines-arm-h ...
分类:
编程语言 时间:
2020-05-24 16:42:32
阅读次数:
68
Design a data structure that supports the following two operations: void addWord(word) bool search(word) search(word) can search a literal word or a r ...
分类:
其他好文 时间:
2020-05-16 10:40:41
阅读次数:
67
Reports local variable of wrapper type though all usages allowed to be primitive and count of unnecessary boxing/unboxing operations reduces 报告包装器类型的局 ...
分类:
移动开发 时间:
2020-05-14 13:12:38
阅读次数:
65
有状态和无状态 无状态:仅限对收集周期内数据进行处理 有状态:将本次收集周期与前面的所有收集周期获得的数据统一进行处理,两个周期内的数据合并过程类似于SparkSQL中自定义聚合函数的buffer。 窗口函数 window operations可以设置窗口的大小和华东窗口的间隔来动态的获取当前Str ...
分类:
其他好文 时间:
2020-05-12 15:22:08
阅读次数:
59
如果我们编写了一个函数,函数内部可能会出现异常,但是我们不想在这个函数内处理,而是想要通知调用者,那么C++允许它重抛出这个异常。语法如下: try { //Execute some code } catch (Exception& e) { //Peform some operations bef ...
分类:
编程语言 时间:
2020-05-05 11:06:03
阅读次数:
62
A Simple Problem with Integers POJ - 3468 You have N integers, A1, A2, ... , AN. You need to deal with two kinds of operations. One type of operation ...
分类:
其他好文 时间:
2020-05-05 00:23:29
阅读次数:
80
若要问构成一个“操作系统”的最重要的部件是什么,那就莫过于进程管理和文件系统了。 文件系统调用 VFS 具体文件系统 VFS文件系统与具体文件系统的连接通过:file_operations、inode_operations、dentry_operations、super_operations数据结构 ...
分类:
其他好文 时间:
2020-04-30 17:37:19
阅读次数:
93
问题产生的原因:无法执行sess.run()的原因是tensorflow版本不同导致的,tensorflow版本2.0无法兼容版本1.0. 解决办法: tf.compat.v1.disable_eager_execution() import tensorflow as tf tf.compat.v ...
分类:
其他好文 时间:
2020-04-27 22:23:02
阅读次数:
543
You are given two integers aa and bb. You can perform a sequence of operations: during the first operation you choose one of these numbers and increas ...
分类:
其他好文 时间:
2020-04-26 10:35:56
阅读次数:
78