码迷,mamicode.com
首页 >  
搜索关键字:NPU    ( 4242个结果
thymeleaf入门
controller层添加实体 html <!DOCTYPE html> <html xmlns:th="http://www.thymeleaf.org"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF ...
分类:其他好文   时间:2019-12-09 16:47:28    阅读次数:96
LeetCode 689. Maximum Sum of 3 Non-Overlapping Subarrays
原题链接在这里:https://leetcode.com/problems/maximum-sum-of-3-non-overlapping-subarrays/ 题目: In a given array nums of positive integers, find three non-overl ...
分类:移动开发   时间:2019-12-09 14:08:23    阅读次数:92
python 异常
异常 # 异常处理 """ Python 有两种错误很容易辨认:语法错误和异常 try/except try/except...else try-finally raise [Exception [, args [, traceback]]] """ # try/except 异常捕捉 # 一个 t ...
分类:编程语言   时间:2019-12-08 21:24:20    阅读次数:99
cesium加载3D—gltf模型
var z= new Array('./src/1.gltf', './src/2.gltf','./src/3.gltf' ); var model,modelin,modelroot; var modelMatrix = Cesium.Transforms.eastNorthUpToFixedF ...
分类:其他好文   时间:2019-12-08 17:47:31    阅读次数:435
函数封装2.4交换某两个变量的值
交换某两个变量的值 def demo(n): def inner(x, y): print(x, y) x, y = y, x print(x, y) return inner @demo def func(p): print(p) x = input("请输入第一个数字:") y = input( ...
分类:其他好文   时间:2019-12-08 01:09:43    阅读次数:85
文件的工具类
文件压缩和解压 import java.io.*; import java.util.Enumeration; import java.util.zip.ZipEntry; import java.util.zip.ZipFile; import java.util.zip.ZipOutputStr ...
分类:其他好文   时间:2019-12-07 21:29:15    阅读次数:108
Candy Treasure Box
This is an interesting puzzle game. In the game, you need to use your brain, think carefully, operate reasonably, point your fingers to catch things, ...
分类:其他好文   时间:2019-12-07 19:33:20    阅读次数:68
python3 tcp的粘包现象和解决办法
服务器端 import socket sk = socket.socket() sk.bind(("127.0.0.1", 6666)) sk.listen() conn, address = sk.accept() def my_send(msg): bs = msg.encode("utf-8" ...
分类:编程语言   时间:2019-12-07 18:00:53    阅读次数:256
Cookie插件的使用
jQuery-cookie插件的使用 什么是插件? 基于jQuery的语法,按照一定规范书写,具有特定功能的脚本文件,称为插件。 插件除了js文件之外,有的还包含css文件,图片和字体等资源文件。 在jQuery的官网https://jquery.com/搜索和下载需要的插件。 1.引入cookie ...
分类:其他好文   时间:2019-12-07 01:03:14    阅读次数:115
Linux下快速手动产生core文件
原文链接:https://blog.csdn.net/jctian000/article/details/79695006 当我们配置好自动生成core文件的环境后,若不想写导致崩溃的程序验证,那要怎么快速产生core呢?先看下产生core文件的条件:当程序接收到以下UNIX信号会产生core文件: ...
分类:系统相关   时间:2019-12-06 21:47:13    阅读次数:95
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!