1. 开启Prometheus遥测数据 默认情况下, 遥测功能(telemetry)是关闭的(selector 为 none),像这样: telemetry: selector: ${SW_TELEMETRY:none} none: prometheus: host: ${SW_TELEMETRY_ ...
分类:
Web程序 时间:
2021-05-24 14:20:53
阅读次数:
0
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>双飞翼布局</title> <style> * { margin: 0; padding: 0; } .box { height: 600px; } .left ...
分类:
其他好文 时间:
2021-05-24 14:20:23
阅读次数:
0
老规矩,先上代码 #date:2021-5-17 #author:Linuas #b站:会武术的白猫 import copy def Dijkstra(network,s,d):#迪杰斯特拉算法算s-d的最短路径,并返回该路径和代价 #print("Start Dijstra Path……") pa ...
分类:
编程语言 时间:
2021-05-24 14:13:38
阅读次数:
0
前端规范编程规范 参考 Web前端开发代码规范基础 一.HTML/CSS规范 浏览器兼容:Google Chrome、Microsoft Edge、Firefox等. html代码规范 1.声明: 1.html头部声明统一 <!DOCTYPE html> 2.页面编码统一 <meta charset ...
分类:
其他好文 时间:
2021-05-24 14:11:38
阅读次数:
0
Python解释器有哪些类型,有什么特点? CPython:由C语言开发,而且使用范围最为广泛 IPython:基于CPython的一个交互式计时器。 PyPy:提高执行效率,采用 JIT 技术。对Python代码进行动态编译。 JPython:运行在Java上的解释器,直接把 Python 代码编 ...
分类:
编程语言 时间:
2021-05-24 14:08:30
阅读次数:
0
You can't add address ranges to, or delete address ranges from a virtual network's address space once a virtual network is peered with another virtual ...
分类:
Web程序 时间:
2021-05-24 14:08:08
阅读次数:
0
Scala语言类型(同java) 静态,强,类型推断, 弱类型:(javascripte) > "1"+2 '12' 强类型:(java,scala,python) >>> "1"+2 TypeError: cannot concatenate 'str' and 'int' objects 动态类 ...
分类:
其他好文 时间:
2021-05-24 14:04:24
阅读次数:
0
页面引入layui.css、 layui.js 1 <div id="pTable" style="width: 1200px;"> 2 <table class="layui-table" id="layui_table_id" lay-filter="test"> 3 </table> 4 <d ...
分类:
其他好文 时间:
2021-05-24 13:50:20
阅读次数:
0
二进制下载 this.$axios({ method: "get", //请求方式 responseType: "blob", //告诉服务器我们需要的响应格式 url: "file/download", //地址 }).then(res => { let url = window.URL.crea ...
分类:
其他好文 时间:
2021-05-24 13:49:54
阅读次数:
0
1.git下载与安装 https://gitforwindows.org/ 一般一直下一步即可 任务栏 打开Git Bash,输入: # 配置用户名 git config --global user.name "username" //( "username"是自己的账户名,) # 配置邮箱 git ...
分类:
Web程序 时间:
2021-05-24 13:46:15
阅读次数:
0