码迷,mamicode.com
首页 >  
搜索关键字:show all    ( 41857个结果
TextRecognitionDataGenerator官方文档解读
官方文档解读 TextRecognitionDataGenerator’s documentation Since the name is quite long, all subsequent refrences will be under the acronym TRDG. If you are ...
分类:其他好文   时间:2021-01-30 12:09:59    阅读次数:0
关于jar项目发布(windows)
开发过程中为了方便发布多个服务器,所以在发布的服务器上将yml文件放在外面,这样就不用每次发布不同的服务器导致需要修改项目中的yml文件。 项目文件结构 start-ts.bat文件内容 @echo off title show-ts java -jar -Xms500m -Xmx500m ts.j ...
分类:编程语言   时间:2021-01-29 12:20:35    阅读次数:0
正则表达式
正则表达式 使用方法: ①:描述我们要找的字符串的规律 ②:调用函数,执行该正则表达式 PHP: //把字符串haha找出来 $str="haha,this is my blog" preg_match_all('/haha/',$str,$res); print_r($res); 在PHP里正则必 ...
分类:其他好文   时间:2021-01-29 12:19:14    阅读次数:0
Proj THUDBFuzz Paper Reading: 南京大学软件分析课程2020, 16 Soundiness
Soundness & Soundiness Soundness: the analysis captures all program behaviors, or the analysis result models all possible executions of the program ? ...
分类:数据库   时间:2021-01-29 12:01:47    阅读次数:0
Java中的static关键字
关于Java中的static关键字的说明 我们先来看代码: 1 package com.hw.static0127; 2 class Person{ 3 public String name; 4 public int age; 5 public static String country; 6 p ...
分类:编程语言   时间:2021-01-28 12:06:49    阅读次数:0
Java中的构造方法
Java中的构造方法 Java中,我们在声明一个对象并初始化的时候,实际上可以认为是在构造一个对象。比如说: 1 Student s = new Student(); 后面那个new巴拉巴拉就相当于在构造一个对象。换句话说,new出来一个对象之后,就相当于调用了构造方法。 而在类里面是可以定义构造方 ...
分类:编程语言   时间:2021-01-28 12:00:07    阅读次数:0
MySQL 常用操作
1.进入MySQL 运行mysql -u root -p 输入密码进入 2.查询数据库 show database; 3.切换库 use mysql 4.打开数据库里面的表 show tables; 5.查看表里的字段 desc tb_name; (因为我没有创建字段 所以不显示) 6.查看当前使用 ...
分类:数据库   时间:2021-01-28 11:57:11    阅读次数:0
IDEA的一些常见报错
1. usage of api document as @since 1.8+ IDEA出现错误: Usage of API documented as @since 1.8+ less… This inspection finds all usages of methods that have @ ...
分类:其他好文   时间:2021-01-27 13:27:21    阅读次数:0
Mysql Get Shell 姿势整理
日志写shell show variables like 'general_log'; -- 查看日志是否开启 set global general_log=on; -- 开启日志功能 show variables like 'general_log_file'; -- 看看日志文件保存位置 set ...
分类:数据库   时间:2021-01-26 12:40:46    阅读次数:0
B-Fair Division
Alice and Bob received nn candies from their parents. Each candy weighs either 1 gram or 2 grams. Now they want to divide all candies among themselves ...
分类:其他好文   时间:2021-01-26 11:57:06    阅读次数:0
41857条   上一页 1 ... 33 34 35 36 37 ... 4186 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!