码迷,mamicode.com
首页 >  
搜索关键字:highlight    ( 8728个结果
宝塔打开重写功能
if (!-d $request_filename){ set $rule_0 1$rule_0; } if (!-f $request_filename){ set $rule_0 2$rule_0; } if ($rule_0 = "21"){ rewrite ^/(.*)$ /index.ph ...
分类:其他好文   时间:2021-06-08 22:57:09    阅读次数:0
在一张图中显示两个hist图(python)
用python在一个图中显示画两个hist图: import random import numpy from matplotlib import pyplot x = [random.gauss(3,1) for _ in range(400)] y = [random.gauss(4,2) fo ...
分类:编程语言   时间:2021-06-06 19:01:54    阅读次数:0
Get A Transportation Network From OSMFile
# Obtain a transportation network from an osm file. # get osm file 方式1:OpenStreetMap Homepage # .osm.pbf下载地址 方式2:http://download.openstreetmap.fr/extr ...
分类:Web程序   时间:2021-06-06 18:59:22    阅读次数:0
C# Unicode 转中文
#region Unicode 转中文 /// <summary> /// Unicode 转中文 /// </summary> /// <param name="text"></param> /// <returns></returns> public static string UnicodeT ...
分类:Windows程序   时间:2021-06-05 18:12:53    阅读次数:0
『Python』多进程
https://docs.python.org/3/library/multiprocessing.html?highlight=imap_unordered#multiprocessing.pool.Pool.imap_unordered 注意,worker函数不能写在其他函数内部: def fu ...
分类:编程语言   时间:2021-06-04 19:54:54    阅读次数:0
vue 编辑table 数据 未点击提交,table里的数据就发生了改变(深拷贝处理)
编辑指标时,还没有点击保存。后面table里对应的数据就发生了改变。 因为赋值的时候是直接= 属于js内存中的浅拷贝。 this.EquipMetricDefFormData = row; 解决方案 //数据赋值 深拷贝代替浅拷贝 this.EquipMetricDefFormData = JSON ...
分类:其他好文   时间:2021-06-04 19:24:12    阅读次数:0
Python中__all__的作用
__all__ = [<string>] 它是一个string元素组成的list变量,定义了当你使用 from <module> import * 导入某个模块的时候能导出的符号(这里代表变量,函数,类等)。 其实就是代码保护,限定本模块中只有哪些能被import。 举例:foo.py __all_ ...
分类:编程语言   时间:2021-06-04 18:49:33    阅读次数:0
React 绑定事件的几种写法bind(this)
1. 我们在 React class Component 绑定事件时,经常会通过 bind(this) 来绑定事件 class Home extends React.Component{ constructor( props ){ super( props ); } handleClick(even ...
分类:其他好文   时间:2021-06-03 18:04:10    阅读次数:0
最长公共前缀 js 实现代码
编写一个函数来查找字符串数组中的最长公共前缀: 输入 : ["abca","abc","abca","abc","abcc"] 返回: "abc" /** * * @param strs string字符串一维数组 * @return string字符串 */ function longestCom ...
分类:Web程序   时间:2021-06-02 19:25:54    阅读次数:0
某SPI设备驱动引起的开关机压力测试死机问题一例
硬件平台:某ARM SoC 软件平台:Linux 问题现象:产品做开关机压力测试,发生死机。 ...
分类:其他好文   时间:2021-06-02 19:24:29    阅读次数:0
8728条   上一页 1 2 3 4 5 6 ... 873 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!