码迷,mamicode.com
首页 >  
搜索关键字:handle    ( 4205个结果
python 日志logging设置按天进行保存,保存近7天,过期日志自动清理
参考文章(写的很详细):https://www.cnblogs.com/xujunkai/p/12364619.html 前言: 跑接口自动化或者其他程序运行时,如果只能保存一份log文件,可能会存在,log文件越来越大的问题,加载缓慢,查找日志也比较慢,增加日志根据天来保存,定期清理日志,可以达到 ...
分类:编程语言   时间:2021-06-17 17:02:45    阅读次数:0
Devexpress GridView设置选中行
GridView里FocusedRowHandle会设置最左侧小三角的位置,而SelectRow会设置反选的行。 要设置新的选择行时,要先执行UnselectRow(0),不然总默认反选第1行。 gridView1.UnselectRow(0); gridView1.FocusedRowHandle ...
分类:其他好文   时间:2021-06-13 09:56:06    阅读次数:0
USB上位机通信:CyAPI
至今的工作中,有USB接口通信的需求,记录一下。 建立一个USB设备对象 CCyUSBDevice *USBDevice = new CCyUSBDev(Handle); 打开USB设备 一个USB设备 USBDevice->open(0) // 若干个 if (USBDevice->DeviceC ...
分类:Windows程序   时间:2021-06-10 17:59:52    阅读次数:0
特殊装饰器
before_request、after_requestfrom flask import Flask,render_template,redirect app = Flask(__name__) """ before_reuqest = [xxxxxxxxxx1,xxxxxxxxxx2] """ ...
分类:其他好文   时间:2021-06-08 23:12:09    阅读次数:0
MATLAB-GUI创建
打开MATLAB 命令窗口输入 guide 弹出 可以修改路径 点击确定,弹出设计界面 点击运行按钮 弹出 这个界面就是我们最终设计好的界面 现在由于什么都没有加入 所以一片空白 可以拖动左边的组件 来创建GUI 点击运行 调整组件的排列,第一种是在第三部的界面直接拖动组件,第二种如下: 选中要排列 ...
分类:其他好文   时间:2021-06-02 20:03:55    阅读次数:0
Selenium关闭多余窗口保留当前窗口
from selenium import webdriver d1 = webdriver.Chrome() d1.maximize_window() d1.get(Firsturl) # 代码简化了,之后,点击连接打开新的标签页 First_handle = d1.current_window_h ...
分类:其他好文   时间:2021-06-02 17:02:24    阅读次数:0
Execution Plans in SQL Server
Execution Plans in SQL Server Introduction In this article, I’m going to explain what the Execution Plans in SQL Server are and how to understand the ...
分类:数据库   时间:2021-06-02 14:46:02    阅读次数:0
libevent学习-reactor设计模式及代码示例
title: libevent学习-reactor设计模式及代码示例 date: 2021-01-22 11:39:35 tags: libevent categories: libevent学习 Reactor Design Pattern Reactor设计模式包含句柄(Handle)、Reac ...
分类:其他好文   时间:2021-06-02 13:32:16    阅读次数:0
在过程中执行truncate table总是报语法错误
源代码如下: BEGIN DECLARE i INT; DECLARE time_1 datetime; DECLARE ID_1 int; DECLARE charge_1 FLOAT; DECLARE length_1 FLOAT; DECLARE err_1 FLOAT; DECLARE RS ...
分类:其他好文   时间:2021-05-25 18:31:26    阅读次数:0
xdebug开启调试
xdebug 2.8 (貌似3.0以下都可以) [xdebug]xdebug.remote_enable=1xdebug.remote_host=host.docker.internalxdebug.remote_port=9000xdebug.remote_handler=dbgpxdebug.r ...
分类:其他好文   时间:2021-05-25 18:12:24    阅读次数:0
4205条   上一页 1 2 3 4 ... 421 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!