码迷,mamicode.com
首页 >  
搜索关键字:output    ( 11375个结果
图片的切分与合并-python
''' @Author: feizzhang Created on: 02.02.2021 ''' def split_img_to_anypieces(img_path, output_dir, ratio_w = 2, ratio_h = 2): ''' Args: img_path: the ...
分类:编程语言   时间:2021-02-06 11:51:02    阅读次数:0
「Jenkins Pipeline」- 隐藏 Pipeline 日志 @20210204
问题描述 在 Jenkins Pipeline 中,控制台(Console Output)输出的日志包含大量 Pipeline 执行日志(如下以 [Pipeline] 为前缀的日志行): ... [Pipeline] stage [Pipeline] { (Declarative: Checkout ...
分类:其他好文   时间:2021-02-05 10:31:58    阅读次数:0
什么是计算机
什么是计算机 聊聊装机 CPU** Memory(内存) Motherboard(主板) IO设备(input/output设备,输入/输出设备) 显卡 冯·诺伊曼体系结构 冯·诺伊曼计算机的特点 重要 存储程序:把程序与数据预先加载到内存中,数据和程序从内存中读取,使得速度++(内存>>>纸袋)。 ...
分类:其他好文   时间:2021-02-04 12:04:33    阅读次数:0
226. Invert Binary Tree
仅供自己学习 题目: Invert a binary tree. Example: Input: 4 / \ 2 7 / \ / \1 3 6 9Output: 4 / \ 7 2 / \ / \9 6 3 1 思路: 这就是直接交换数据就可以了,可以前序遍历,后序遍历,中序遍历的交换 代码: 前序 ...
分类:其他好文   时间:2021-02-04 11:44:27    阅读次数:0
几种语言的比较(WIP)
各种feature的实现 执行shell 处理时间 处理参数 处理文件 logging test 多线程、进程,并发 语言 python groovy scala java C++ C shell go 执行shell, check output groovy a= "ls".execute(); ...
分类:编程语言   时间:2021-02-03 10:42:48    阅读次数:0
[基础] TCP小结
抓包示例 root@python:~# tcpdump -n -S tcp port 5009 # -S 参数的目的是获得ack的绝对值,不加该参数,第三次握手的ack为相对值1 tcpdump: verbose output suppressed, use -v or -vv for full p ...
分类:其他好文   时间:2021-01-30 11:57:32    阅读次数:0
Qt GUI程序带命令行
Windows does not really support dual mode applications. To see console output you need to create a console application CONFIG += console However, if y ...
分类:其他好文   时间:2021-01-28 12:25:20    阅读次数:0
Maven之如何用assembly插件打jar包
maven-assembly-plugin有什么好处呢? 英文原文:The Assembly Plugin for Maven is primarily intended to allow users to aggregate the project output along with its de ...
分类:编程语言   时间:2021-01-27 13:58:43    阅读次数:0
使用Azure Runbook 发送消息到Azure Storage Queue
客户需要定时发送信息到Azure Storage Queue,所以尝试使用Azure Runbook实现这个需求。 首先新增一个Azure Automation Account的资源。 因为要使用Az.storage模组发送消息到Queue, 但是这个模组并没有包含在默认模组中,所以要手动添加一下。 ...
分类:其他好文   时间:2021-01-27 13:15:44    阅读次数:0
今天开始第一篇
作用: 依赖 ==> webpack ==> 静态资源 把错综复杂的依赖 通过 webpack 打包成 一块一块的 一. 一般把 index.js 当做入口文件,把资源变成树状 index.js | | 处理 / 打包 / less JQ .... ==> | less ==> css | => b ...
分类:其他好文   时间:2021-01-27 13:06:55    阅读次数:0
11375条   上一页 1 ... 8 9 10 11 12 ... 1138 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!