码迷,mamicode.com
首页 >  
搜索关键字:people    ( 2934个结果
【面试】详解同步/异步/阻塞/非阻塞/IO含义与案例
本文详解同步、异步、阻塞、非阻塞,以及IO与这四者的关联,毕竟我当初刚认识这几个名词的时候也是一脸懵。 🔥1.同步阻塞、同步非阻塞、异步阻塞、异步非阻塞 1.同步 同步就是多个事物不能同时工作,只能依次排队进行 2.异步 多个事物可以同时工作,不用依次进行 3.阻塞 线程需要停止等待 4.非阻塞 ...
分类:其他好文   时间:2021-07-12 18:13:04    阅读次数:0
Python数据分析第四课:数据的处理(数据合并、数据筛选、数据排序)
一、数据合并 数据合并主要包括两种操作: 轴向连接(concatenation):pd.concat()可以沿一个轴将多个DataFrame对象连接在一起,形成一个新的DataFrame对象 融合(merging):pd.merge()方法可以根据一个或多个键将不同的DataFrame中的行连接在一 ...
分类:编程语言   时间:2021-07-02 16:38:21    阅读次数:0
查询数据库中的重复数据——MySQL数据库
查询数据库中的重复数据——MySQL数据库 1、建表语句 DROP TABLE IF EXISTS `t_people`; CREATE TABLE `t_people` ( `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, `people_no` ...
分类:数据库   时间:2021-06-16 17:52:07    阅读次数:0
mysql数据库中常用命令
创建表:create table people( id int primary key auto_increment not null, name varchar(10) not null, age int default 18); 创建学生表: create table students(id i ...
分类:数据库   时间:2021-06-04 18:53:42    阅读次数:0
国外动物介绍网页
下载地址:https://download.csdn.net/download/qq_31293575/18340399 项目介绍 HOME We come from nature back to nature People from nature, after death should retur ...
分类:Web程序   时间:2021-05-24 15:41:13    阅读次数:0
spring 装配
@Autowired@Qualifier("xiaohon")autowired 依据type装配,如果有多个相同的type的bean需要使用qualifier指定具体的类 <bean class="pojo.People" ><!-- <qualifier value="xiohon"/>--> ...
分类:编程语言   时间:2021-05-24 08:57:56    阅读次数:0
连续日期
方法一 select t1.* from stadium t1, stadium t2, stadium t3 where t1.people >= 100 and t2.people >= 100 and t3.people >= 100 and ( (t1.id - t2.id = 1 and ...
分类:其他好文   时间:2021-05-24 01:17:27    阅读次数:0
@property 的用法
类/装饰器 @property装饰器负责把类中的方法转换成属性来调用 有三种调用方法 方法一:@property直接加在需要转换的方法上 class People: def __init__(self, name, weight, height): self.__name = name self.w ...
分类:其他好文   时间:2021-04-13 12:41:12    阅读次数:0
ICPC Southeast USA 2020 Regional Contest problem problem E: Dominating Duos(单调栈维护区间最大值)
题目描述 A group of people are standing in a line. Each person has a distinct height. You would like to count the number of unordered pairs of people in t ...
分类:其他好文   时间:2021-04-13 12:06:43    阅读次数:0
Various Optimization Algorithms For Training Neural Network[转]
from https://towardsdatascience.com/optimizers-for-training-neural-network-59450d71caf6 Many people may be using optimizers while training the neural ...
分类:Web程序   时间:2021-04-12 12:26:22    阅读次数:0
2934条   1 2 3 4 ... 294 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!