码迷,mamicode.com
首页 >  
搜索关键字:corn    ( 354个结果
springboot定时任务以及corn表达式
## springboot的定时任务 ### 两步编码实现定时任务。 - 开启定时任务注解 :打开冰箱门 @enableScheduling - 设置定时时间,corn表达式。 @scheduled - corn表达式 -- http://cron.qqe3.com corn表达式:空格区分组成部分 ...
分类:编程语言   时间:2020-07-14 18:42:27    阅读次数:75
[LeetCode] 430. Flatten a Multilevel Doubly Linked List
You are given a doubly linked list which in addition to the next and previous pointers, it could have a child pointer, which may or may not point to a ...
分类:其他好文   时间:2020-07-11 10:04:24    阅读次数:84
[LeetCode] 763. Partition Labels
A string S of lowercase English letters is given. We want to partition this string into as many parts as possible so that each letter appears in at mo ...
分类:其他好文   时间:2020-07-10 13:24:07    阅读次数:65
NX二次开发-NXOPEN C#外部开发模式exe
这个问题研究了近两个月,知道这两天,才研究出来是怎么做的。 NX9+VS2012 官方的方法 方法1 1.用NXOPEN C#向导新建exe项目 2.添加代码 NX9+VS2012 using System; using NXOpen; using NXOpen.UF; //新建prt Tag Pa ...
分类:Windows程序   时间:2020-07-09 22:14:52    阅读次数:121
Python类和对象_修改和复制
一,对象可以修改 对象是可以修改的,通过对一个对象的属性进行赋值就可以修改该对象的状态了。 1.比如,要改变一个矩形的大小而不改变位置,就可以只修改宽度和高度,如下所示: >>> square_box.width = square_box.width + 50 >>> square_box.heig ...
分类:编程语言   时间:2020-07-08 23:22:33    阅读次数:116
opencv使用——玉米粒识别和优劣判断
运行环境:python3.6.9 opencv3.4.10 import cv2 import numpy as np font=cv2.FONT_HERSHEY_COMPLEX kernel = np.ones((7,7),np.uint8) img=cv2.imread('corn.jpg',1 ...
分类:其他好文   时间:2020-07-04 22:25:33    阅读次数:72
Python类和对象_嵌入_多实例返回值
一,矩形的类,嵌入式 如果要设计一个表示矩形的类,你要用什么样的属性来确定一个矩形的位置和大小呢? 可以忽略角度,来让情况更简单一些,就只考虑矩形是横向的或者纵向的。 方案:确定矩形的一个顶点(或者中心)所在位置,还有宽度和高度。 如下是类的定义: >>> class rectangle: ... ...
分类:编程语言   时间:2020-07-03 12:58:29    阅读次数:84
Fastapi学习日记
from fastapi import FastAPI app = FastAPI() @app.get("/") def read_root(): return {"Hello":"Word"} @app.get("/items/{item_id}") def read_item(item_id: ...
分类:Windows程序   时间:2020-06-24 14:08:16    阅读次数:134
Centos7 安装部署gitlab-ce
部署社区版gitlab安装前准备:内存:至少4G1.安装依赖检查依赖包是否安装yuminstall-ycurlopenssh-serveropenssh-clientspostfixcroniepolicycoreutils-python2.启动postfix,并设置为开机启动systemctlstartpostfixsystemctlenablepostfix3.设置防火墙(可暂时关闭防火墙)f
分类:其他好文   时间:2020-06-17 10:30:12    阅读次数:98
Centos部署GitLab
Centos部署GitLab
分类:其他好文   时间:2020-06-16 00:46:25    阅读次数:64
354条   上一页 1 2 3 4 ... 36 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!