码迷,mamicode.com
首页 >  
搜索关键字:author    ( 11116个结果
Download data from EMPIAR:从我的终端直接下载数据
# Author by zhangyida# 詹皇明年夺冠download_empiar.sh#!/usr/bin/env bash# Downloads a dataset with a given accession code from EMPIAR##########ACCESSION_COD ...
分类:其他好文   时间:2021-07-05 18:58:45    阅读次数:0
快速失败机制(fail-fast)
先了解一些词语 volatile:volatile的本意是“易变的”。volatile关键字是一种类型修饰符,用它声明的类型变量表示可以被某些编译器未知的因素更改,比如:操作系统、硬件或者其它线程等。遇到这个关键字声明的变量,编译器对访问该变量的代码就不再进行优化,从而可以提供对特殊地址的稳定访问。 ...
分类:其他好文   时间:2021-07-01 17:28:32    阅读次数:0
java--泛型--类型通配符
什么是类型通配符 package com.model.fanxing; /** * @Description:测试类 * @Author: 张紫韩 * @Crete 2021/6/30 23:46 * 演示类型通配符 */ public class FanXingDemo07 { public st ...
分类:编程语言   时间:2021-07-01 17:18:32    阅读次数:0
二叉树的前、中、后序排列
import lombok.*; /** * @author: Small sunshine * @Description: * @date: 2021/6/30 8:05 下午 */ public class SortTree { public static void main(String[] ...
分类:其他好文   时间:2021-07-01 17:04:50    阅读次数:0
检测证书过期并发送钉钉告警
#!/usr/bin/env bash __Author__="liy" # 发送钉钉告警 function DingDing(){ curl 'https://oapi.dingtalk.com/robot/send?access_token=xxxxxxxxxxxxxxxxxxxxxxxxxxx ...
分类:其他好文   时间:2021-06-30 18:14:38    阅读次数:0
spring-security安全框架-注意事项——1
##Spring Security注意事项 权限优先级: 在SecurityConfig中configure(HttpSecurity http)方法中,如下代码 http.authorizeRequests() .antMatchers("/admin/**").hasRole("admin") ...
分类:编程语言   时间:2021-06-28 20:23:02    阅读次数:0
使用pyinstaller打包生成exe
layout: post title: 将tkinter打包生成exe subtitle: date: 2020-05-30 author: Dapenson header-img: img/post-bg-universe.jpg catalog: true tags: - Python - tk ...
分类:其他好文   时间:2021-06-28 20:10:21    阅读次数:0
快递E栈——网络编程
快递实体类: 1 package bean; 2 3 import java.io.Serializable; 4 5 /** 6 * 快递类 7 * 8 * @author Administrator 9 */ 10 public class Express implements Serializ ...
分类:其他好文   时间:2021-06-28 19:58:28    阅读次数:0
python打印九九乘法表
脚本如下: # @Time : 2021/6/26 13:31# @Author : cici#左上行号参数row = 1#右上行号2row2 = 1#左下行号3row3 = 9#右下行号4row4 = 9while row <= 9 and row2 <= 9: #列号参数 col = 1 whi ...
分类:编程语言   时间:2021-06-28 19:05:56    阅读次数:0
多对多关联与中介模型
多对多关联与中介模型 一 多对多关联的三种方式 # 多对多关联关系的建立有三种方式。 1 方式一:自行创建第三张表 class Author(models.Model): nid = models.AutoField(primary_key=True) name = models.CharField ...
分类:其他好文   时间:2021-06-28 18:54:27    阅读次数:0
11116条   上一页 1 2 3 4 ... 1112 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!