using System;using System.Collections.Generic;using System.Text;using System.Text.RegularExpressions; namespace ConsoleApplication1{ class Class1 { pr ...
分类:
其他好文 时间:
2021-04-13 11:44:10
阅读次数:
0
json格式化、xml格式化插件. 安装很简单,将文中给的插件文件直接复制到插件文件夹下面,重启Notepad后就有这两个功能了. 先看效果 1.JSTool:Json格式化工具 选项后方有快捷键 JSMin JSFormat 2.XMLTools:Xml格式化工具 Linearize XML Pr ...
原生js取消事件冒泡 try{ e.stopPropagation(); // 非IE浏览器 } catch(e){ window.event.cancelBubble = true; // IE浏览器 } 原生js阻止默认事件 if ( e && e.preventDefault ) { e.pr ...
分类:
其他好文 时间:
2021-04-08 13:55:27
阅读次数:
0
在CNCF:community bridge#1285Reading Material Update And Supplement 这个议题当中,更新扩充好的材料需要同步更新到volcano官网的官方文档上,这篇文章主要来记录如何为开源项目(volcano)提交pr,以达到我们将贡献的开源文档同步更 ...
分类:
其他好文 时间:
2021-04-06 14:01:47
阅读次数:
0
1:列表的去重操作 al = [1, 1, 2, 3, 1, 2, 4] #set方法元素去重 al_set = set(al) print(list(al_set)) #集合不支持索引操作,可以先将之转换为列表 #formkeys方法 al2 = {}.fromkeys(al).keys() pr ...
分类:
编程语言 时间:
2021-03-30 13:56:21
阅读次数:
0
#include<stdio.h> int main() { int x, y; int r1, r2, r3, r4; x = 1; y = 2; r1 = x + y; r2 = x - y; r3 = x * y; r4 = x / y; printf("r1 = %d\n", r1); pr ...
分类:
其他好文 时间:
2021-03-15 11:09:08
阅读次数:
0
子串位置 # 打印每个o出现的位置 str1 = "hellopythonhelloworld" str2 = 'hellopythonhelloworld' str3 = 'hellopythonhelloworl' index = 0 for i in str1: if i == 'o': pr ...
分类:
其他好文 时间:
2021-03-15 10:59:49
阅读次数:
0
机制 发现运行速度远慢于平均速度的任务,启动一个备份任务同时运行,采用先运行完的结果 前提 每个Task只能有一个备份任务 当前Job已完成的Task不少于5% 开启推测执行参数,默认打开 原理 estimatedRunTime=(currentTimestamp-taskStartTime)/pr ...
分类:
编程语言 时间:
2021-03-11 13:09:23
阅读次数:
0
参考:git 如何修改本地分支名称与远程分支名称 修改本地分支名: git branch -m old_name new_name 删除远程分支: git push origin :old_name 重新创建一个新的远程分支 也就是将你现在所在的分支,再push一遍 git push origin ...
分类:
其他好文 时间:
2021-03-10 13:01:41
阅读次数:
0
Log4j 日志的使用 1.Log4j简介 a)Apache提供的一款记录日志的工具 b)它的API与实现是分开的,从而使开发可以清楚的知道可以使用哪些类和方法 c)日志既可以输出到控制台,也可以输出到文件中 d)可以指定日志的输出格式 e)可以定制日志级别 2.使用Log4j 使用log4j.pr ...
分类:
其他好文 时间:
2021-03-08 13:13:56
阅读次数:
0