码迷,mamicode.com
首页 >  
搜索关键字:standby from active database    ( 75714个结果
vue3/4填坑(解决报错:Compiled with 1 warnings:warning Delete `?····` prettier/pret (0 errors, 2 warnings)
在我们初学vue3.0,修改vue-cli生成的HellowWorld.vue文件时就会出现这种报错(很容易才到这个坑)Compiled with 1 warnings:Module Warning (from ./node_modules/eslint-loader/index.js):warni ...
分类:其他好文   时间:2021-06-15 18:15:46    阅读次数:0
实验6
task 3 def square(size=50, rgb = 'orange'): pencolor(rgb) for i in range(4): fd(size) left(90) def main(): setup(800, 600) speed(0) for i in range(10) ...
分类:其他好文   时间:2021-06-15 18:11:32    阅读次数:0
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
html导出表格xls格式
<!DOCTYPE html> <html> <head> <title>table2xls</title> <meta charset="utf-8"> <style type="text/css"> body, table { font-size: 12px; } table { table-l ...
分类:Web程序   时间:2021-06-15 18:01:54    阅读次数: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
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
75714条   上一页 1 ... 16 17 18 19 20 ... 7572 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!