@api.multidef button_cancel(self): for move in self: if not move.journal_id.update_posted: raise UserError(_('You cannot modify a posted entry of this ...
分类:
其他好文 时间:
2020-01-30 22:52:34
阅读次数:
125
#!/usr/bin/env python # -*- coding:utf-8 -*- import turtle import time # 画心形圆弧 def hart_arc(): for i in range(200): turtle.right(1) turtle.forward(2) ...
分类:
编程语言 时间:
2020-01-30 20:43:59
阅读次数:
97
一、挂载数据盘下面以新买的服务器为例介绍挂载数据盘的操作过程。参考资料 https://help.aliyun.com/document_detail/25426.html [root@iZ2ze41df2mogmrk6x6e5jZ ~]# df -hlFilesystem Size Used Av ...
分类:
其他好文 时间:
2020-01-30 12:27:55
阅读次数:
91
1、cd (change directory)切换到指定目录 2、cp (copy)复制文件或目录 3、find 查找目录及目录下的文件 示例: 4、mkdir (make directory)创建文件夹 5、mv (move)移动或重命名文件(重命名时会删除源文件,cp 不会) 6、pwd (pr ...
分类:
系统相关 时间:
2020-01-29 19:58:16
阅读次数:
95
题目 题解 step1. 遍历一遍,维护left、right计数器,分别记录不合法的左括号、右括号数量. 判断不合法的方法? left维护未匹配左括号数量(增,减)(当left为0遇到右括号,则交由right处理),最终剩余的左括号数量就是不合法的左括号数量 遇右括号时,若左侧的左括号都已被匹配(l ...
分类:
其他好文 时间:
2020-01-29 19:56:13
阅读次数:
65
The multiplication puzzle is played with a row of cards, each containing a single positive integer. During the move player takes one card out of the r ...
分类:
其他好文 时间:
2020-01-29 16:01:52
阅读次数:
70
JAVA画图时常用到Font 类对象这样的对象依赖于本地的字段。新装的linux没有安装字段库,和相应的字体。 1、fc -list查看字体库 发现没有安装 2、yum -y install fontconfig安装 3、安装好后/usr/share目录下多两个目录fonts和fontconfig ...
分类:
其他好文 时间:
2020-01-29 14:13:40
阅读次数:
114
插入 语法 db.集合名称.insert(document) 插入文档时,如果不指定_id参数,MongoDB会为文档分配一个唯一的ObjectId 例1 db.stu.insert({name:'gj',gender:1}) 例2 s1={_id:'20160101',name:'hr'} s1. ...
分类:
数据库 时间:
2020-01-29 10:49:33
阅读次数:
68
以下内容摘自:https://blog.csdn.net/strangedbly/article/details/51137432 Nim游戏 重点结论:对于一个Nim游戏的局面(a1,a2,...,an),它是P-position当且仅当a1^a2^...^an=0,其中^表示位异或(xor)运算 ...
分类:
其他好文 时间:
2020-01-29 10:22:07
阅读次数:
76
PriorityQueue 基于 实现,是一个无界队列,不允许null元素。底层存储使用数组,索引n的元素的左右两个孩子索引分别为 和 。 元素通过比较器排序,如果比较器为空,则使用自然排序。 默认容量大小为11,当存储数组中总元素个数等于数组长度时,触发扩容。扩容时,如果原存储数组长度小于64,则 ...
分类:
其他好文 时间:
2020-01-28 17:43:00
阅读次数:
66