码迷,mamicode.com
首页 >  
搜索关键字:put    ( 16494个结果
网络编程
网络编程的要素 IP和端口号 网络通信协议 TCP 客户端 连接服务器socket 发送消息 public static void main(String[] args) throws IOException { //创建一个socket连接 Socket socket = new Socket(I ...
分类:其他好文   时间:2021-02-19 13:14:53    阅读次数:0
Python3之并发(七)---线程同步队列(queue)
queue模块实现了多生产者,多消费者队列 queue模块的常用类和异常 queue.Queue(maxsize=0) 先进先出(FIFO)的队列, maxsize: 队列的大小(即队列的元素个数),默认0,队列大小无限;如果超过maxsize,队列会加锁,添加新元素是被堵塞,直到队列中的元素小于m ...
分类:编程语言   时间:2021-02-19 13:10:44    阅读次数:0
Python-pip源设置
1、windows10 pip设置目录:C:\ProgramData\pip\pip.ini [global] index-url = https://pypi.tuna.tsinghua.edu.cn/simple/ ←--清华大学源 2、dos命令:pip config --global set ...
分类:编程语言   时间:2021-02-19 13:05:20    阅读次数:0
2020 BIT冬训-二分三分快速幂矩阵 G - Kolya and Tanya CodeForces - 584B
Problem Description Kolya loves putting gnomes at the circle table and giving them coins, and Tanya loves studying triplets of gnomes, sitting in the ...
分类:其他好文   时间:2021-02-18 13:33:21    阅读次数:0
1337. The K Weakest Rows in a Matrix (E)
The K Weakest Rows in a Matrix (E) 题目 Given a m * n matrix mat of ones (representing soldiers) and zeros (representing civilians), return the indexes ...
分类:其他好文   时间:2021-02-18 13:02:33    阅读次数:0
The Design Philosophy of the DARPA Internet Protocols
The Design Philosophy of the DARPA Internet Protocols DARPA互联网协议设计哲学 Abstract 摘要 Introduction 介绍 Fundamental Goal 基础目标 Second Level Goals 第二级别目标 Survi ...
分类:Web程序   时间:2021-02-17 15:11:57    阅读次数:0
web知识学习(六)
一.HTTP METHOD GET方法请求一个指定资源的表示形式. 使用GET的请求应该只被用于获取数据. HEAD方法请求一个与GET请求的响应相同的响应,但没有响应体. POST方法用于将实体提交到指定的资源,通常导致在服务器上的状态变化或副作用. PUT方法用请求有效载荷替换目标资源的所有当前 ...
分类:Web程序   时间:2021-02-17 14:30:41    阅读次数:0
hashMap的四种遍历方式
hashMap的四种遍历方式 使用entrySet返回包含entry的Set集合再遍历 Map<String,String> map=new HashMap<>(); map.put("1","stu01"); map.put("2","stu02"); Set<Entry<String,Strin ...
分类:其他好文   时间:2021-02-16 12:33:39    阅读次数:0
SpringMVC
SpringMVC的执行流程 简要分析执行流程 DispatcherServlet表示前端控制器,是整个SpringMVC的控制中心。用户发出请求,DispatcherServlet接收请求并拦截请求。 我们假设请求的url为 : http://localhost:8080/SpringMVC/he ...
分类:编程语言   时间:2021-02-09 12:30:34    阅读次数:0
es6.6.1 索引的增加,查询,修改,删除
1.新增 test2/user2/1/_create PUT操作{"name":"qiqi","age":17} 2.查询 test2/user2/_search GET{"query":{"match":{"name":"qiqi"}}} 或:test2/user2/1 GET { - "_ind ...
分类:其他好文   时间:2021-02-09 12:29:59    阅读次数:0
16494条   上一页 1 ... 19 20 21 22 23 ... 1650 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!