码迷,mamicode.com
首页 >  
搜索关键字:result from snmp not valid    ( 71623个结果
sqlalchemy操作mysql
from sqlalchemy import Column,String,create_engine,MetaData from sqlalchemy.orm import sessionmaker from sqlalchemy.ext.declarative import declarative ...
分类:数据库   时间:2021-06-15 18:05:12    阅读次数:0
OSCP Security Technology - Network Scanning(2)
OSCP Security Technology - Network Scanning(2) Scanning with Nessus https://www.tenable.com/downloads/nessus?loginAttempted=true#nessus-8.14.0 sudo dp ...
分类:Web程序   时间:2021-06-15 17:38:32    阅读次数:0
实验六
from turtle import * def square(size=50, rbg='blue'): pencolor(rbg) for i in range(4): fd(size) left(90) setup(800,600) speed(0) for i in range(10): s ...
分类:其他好文   时间:2021-06-15 17:36:49    阅读次数:0
Tensorflow2.0之Minist手写数字识别运行通过源码
from matplotlib import pyplot as mp import tensorflow as tf from tensorflow import keras from tensorflow.keras import datasets ,layers ,optimizers def ...
分类:其他好文   时间:2021-06-15 17:35:48    阅读次数:0
ssd loss详解
def encode(matched, priors, variances): """Encode the variances from the priorbox layers into the ground truth boxes we have matched (based on jaccard ...
分类:其他好文   时间:2021-06-15 17:35:17    阅读次数:0
MYSQL/HIVESQL笔试题:HIVESQL(一)分组求TopN/行转列/列转行
1 分组求TopN 一、先看数据: 使用HiveSQL常用的方式为: Select * from table, row_number() over(partition by item order by score desc) rank where rank<=2; 二、输出结果为: 三、解析:row ...
分类:数据库   时间:2021-06-13 10:48:09    阅读次数:0
js 对象与string之间的转换
//es5 interface JSON { /** * Converts a JavaScript Object Notation (JSON) string into an object. * @param text A valid JSON string. * @param reviver A ...
分类:Web程序   时间:2021-06-13 10:19:00    阅读次数:0
Hive基础(四十一):Hive 实战(二)业务分析
4.1 统计视频观看数 Top10 思路:使用 order by 按照 views 字段做一个全局排序即可,同时我们设置只显示前 10 条。 最终代码: SELECT videoId, views FROM gulivideo_orc ORDER BY views DESC LIMIT 10; 4. ...
分类:其他好文   时间:2021-06-13 10:04:23    阅读次数:0
echarts配合vetrul dom $refs使用,需要用$nextTick获取异步dom
1、安装echarts依赖 npm install echarts -S 2、main.js中配置 : // 引入echarts import echarts from 'echarts' Vue.prototype.$echarts = echarts 3、在页面中//,引入基本模板 let ec ...
分类:其他好文   时间:2021-06-13 09:49:43    阅读次数:0
[LeetCode] 系统刷题9_Backtracking
有待总结。 Binary Search: 633, Sum of Square Numbers 475, Heaters 744, Find Smallest Letter Greater than target(LC submissions from original session) 427?? ...
分类:其他好文   时间:2021-06-13 09:48:38    阅读次数:0
71623条   上一页 1 ... 16 17 18 19 20 ... 7163 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!