[:graph:] 代表printable and visible的字符,是除空格符(空格键与[TAB]键)之外的所有按键, 控制字符不算[:graph:] ...
分类:
其他好文 时间:
2019-07-19 10:39:31
阅读次数:
125
"回到目录" 我的那些年(13)~主推微服务架构 整个系统走向微服务架构 网关 服务注册与发现 配置中心 熔断器 链路跟踪 授权与鉴权 服务间的通讯 同步feign 服务间的通讯 异步消息 日志收集 个系统走向微服务架构 公司系统比较多,耦合度比较大,将这些模块进行拆分,各个负责自己的模块,减少相互 ...
分类:
其他好文 时间:
2019-07-17 10:53:08
阅读次数:
91
查看是否存在图形安装包。如果包含GNOME Desktop,则说明已存在。 yum grouplist 安装图形化包 yum groupinstall "GNOME Desktop" 设置开机图形化启动 systemctl set-default graphical.target 重启生效 ...
分类:
其他好文 时间:
2019-07-16 18:28:56
阅读次数:
106
1234567reduce_sum 是 tensor 内部求和的工具。其参数中: input_tensor 是要求和的 tensor axis 是要求和的 rank,如果为 none,则表示所有 rank 都要仇和 keep_dims 求和后是否要降维 这个操作的名称,可能在 graph 中 用 已 ...
分类:
其他好文 时间:
2019-07-14 15:13:02
阅读次数:
177
问题描述 We have a graph with N vertices, numbered 0 through N ?1. Edges are yet to be added. We will process Q queries to add edges. In the i th (1≦ i ≦ ...
分类:
其他好文 时间:
2019-07-14 14:49:03
阅读次数:
91
当执行一个 TensorFlow 函数的时候,并不会马上执行运算,而是把运算存储到一个称为“图”(graph)的数据结构里面。 图存储的各种运算,只有在会话(session)里执行图,才会真正地执行。 图的构建 对于 它们所形成的图就是: TensorFlow 用 Graph 这个容器数据结构来表示 ...
分类:
其他好文 时间:
2019-07-14 09:31:50
阅读次数:
104
首先是整数类型 设 ll a,k; 求a/k 向上取整 ans=(a-1)/k+1; 求a/k 向下取整 ans=(a-1)/k; int/int 是整除 强制类型转化 等 都是向下取整 例题 codeforce C - Tokitsukaze and Discard Items Codeforce ...
分类:
其他好文 时间:
2019-07-14 09:28:55
阅读次数:
104
OGNL表达式:https://www.jianshu.com/p/6bc6752d11f4 Apache OGNL:http://commons.apache.org/proper/commons-ognl/language-guide.html ...
分类:
其他好文 时间:
2019-07-13 14:59:15
阅读次数:
117
题目: https://www.luogu.org/problemnew/show/P1251 题解: 原来的想法不行:算费用的时候算的是一条餐巾的,但对于重复使用多天的餐巾不公平,因为他们的费用肯定比用一次的大,但是它们贡献也大。 两种想法: ->平均费用 不可做。 ->这一次费用 可做。 嘿嘿, ...
分类:
其他好文 时间:
2019-07-12 20:10:24
阅读次数:
129