码迷,mamicode.com
首页 >  
搜索关键字:sublime test    ( 38047个结果
pyinstaller 打包文件(包括使用管理员模式)
pyinstaller 打包python文件为可执行文件 假设要打包的文件是:test.py 安装 pyinstaller pip install pyinstaller 单文件打包普通EXE 新建文件夹,包括test.py 在 test.py 所在目录,按住shift+鼠标右键,选择 此处打开命令 ...
分类:其他好文   时间:2020-08-10 09:25:32    阅读次数:96
.NET开发技术栈: 特性 Attributes
特性介绍 我们经常看到这样的代码 [Serializable] class Test { } 这种在类,字段,属性,方法等编程元素上以[ ] 标记的东东就是特性(Attribute)。 写在[] 中的特性其实就是一个类, 该类除了继承自 Attribute类, 与其他的普通类没有什么区别, 有很多自 ...
分类:Web程序   时间:2020-08-09 20:21:22    阅读次数:109
test
1.计算机知识基础 1.计算机组成 计算机底层: 点子电路,计算机只能识别两个数 0 1 硬件: 处理器(CPU), 运行内存(RAM), 主板(总线设备), 外部存储设备(硬盘U盘等), 输入输出设备 软件: 操作系统软件(运行在内核模式下), 标准库软件(运行在用户模式下), 应用软件(运行在用 ...
分类:其他好文   时间:2020-08-09 19:09:09    阅读次数:63
go build寻找import的包过程(1.14版本开启go mod)
今天在看一个程序代码,发现里面用到了grpc,程序的目录结构是这样的 onlineClean 包名main main.go go.mod proto structs.go 包名proto rpcClient 包名main test.go 其中rpcCleint/test.go里面有这样的代码 imp ...
分类:其他好文   时间:2020-08-08 23:44:57    阅读次数:123
Spark(十一)【SparkSQL的基本使用】
一. SparkSQL简介 Spark SQL是Spark用于结构化数据(structured data)处理的Spark模块。 Dremel > Drill(Apache) >Impala(Cloudrea) Presto(Hotonworks) Hive > Shark(对Hive的模仿,区别在 ...
分类:数据库   时间:2020-08-07 21:45:52    阅读次数:79
String 属于基础的数据类型吗?
String 不属于基础类型,属于引用类型,属于对象类型 基础类型有 8 种:byte、boolean、char、short、int、float、long、double public class Test { public static void main(String[] args) { Stri ...
分类:其他好文   时间:2020-08-07 21:44:48    阅读次数:73
Function【莫比乌斯反演+数论方块】-2020百度之星初赛1
题意: 分析: 代码: #include <bits/stdc++.h> using namespace std; typedef long long ll; const int mod=1e9+7; const int N=1e6+6; int mu[N]; int prime[N],cnt; b ...
分类:其他好文   时间:2020-08-07 12:39:20    阅读次数:82
C. Uncle Bogdan and Country Happiness solution
C. Uncle Bogdan and Country Happiness time limit per test 2 seconds memory limit per test 256 megabytes input standard input output standard output Un ...
分类:移动开发   时间:2020-08-06 17:04:18    阅读次数:99
Django Celery定时任务
安装 celery redis eventlet django_celery_beat(安装后数据库迁移) 1.项目目录创建celery.py # -*-coding:utf-8 -*- from __future__ import absolute_import, unicode_literals ...
分类:其他好文   时间:2020-08-06 13:14:06    阅读次数:85
38047条   上一页 1 ... 98 99 100 101 102 ... 3805 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!