码迷,mamicode.com
首页 >  
搜索关键字:appears    ( 674个结果
Dokcer安装教程
一、前期准备 1.1 系统要求 Docker 支持 64 位版本 CentOS 7/8,并且要求内核版本不低于 3.10。 CentOS 7 满足最低内核的要求,但由于内核版本比较低,部分功能(如 overlay2 存储层驱动)无法使用,并且部分功能可能不太稳定。 1.2 卸载旧版本 旧版本的 Do ...
分类:其他好文   时间:2021-02-19 13:11:49    阅读次数:0
[LeetCode] 763. Partition Labels
A string S of lowercase English letters is given. We want to partition this string into as many parts as possible so that each letter appears in at mo ...
分类:其他好文   时间:2020-07-10 13:24:07    阅读次数:65
c# 对象拷贝 object clone
C# Object Clone Wars Cloning C# objects is one of those things that appears easy but is actually quite complicated with many "gotchas." This article d ...
分类:Windows程序   时间:2020-07-04 13:28:25    阅读次数:209
217. Contains Duplicate
Given an array of integers, find if the array contains any duplicates. Your function should return true if any value appears at least twice in the arr ...
分类:其他好文   时间:2020-07-02 22:01:14    阅读次数:60
The supplied data appears to be in the Office 2007+ XML.You are calling the part of POI that deals with OLE2 Office Documents...
1、导入Execl数据时提示错误,如下图 2、操作步骤 因无法确定.xls和.xlsx哪种格式系统支持,新建表格用了.xlsx格式,后发现系统找不到该格式,直接把文件名的后缀改成了.xls。 3、关键问题的原因还是excel版本的问题 解决办法 a. 判断文件后缀名是xls,还是xlsx;HSSFW ...
分类:移动开发   时间:2020-06-29 11:23:27    阅读次数:192
LeetCode 哈希表 387. 字符串中的第一个唯一字符(计数哈希表,字符串)
啊,是较简单的一题呢。有一些操作再熟悉一下。 思路就是建立一个HashMap用于计数,然后再遍历就行。时间空间复杂度都是ON 自己写的代码如下: class Solution { public int firstUniqChar(String s) { HashMap<Character,Integ ...
分类:其他好文   时间:2020-06-24 23:55:48    阅读次数:113
docker 学习(一)
为什么使用docker? 主要归纳一下几点: 更高效的利用系统资源 更快速的启动时间 一致的运行环境 持续交付和部署 更轻松的迁移 更轻松的维护和扩展 对比传统虚拟机总结 特性 容器 虚拟机 启动 秒级 分钟级 硬盘使用 一般为MB 一般为GB 性能 接近原生 弱于 系统支持量 单机支持上千个容器 ...
分类:其他好文   时间:2020-06-22 01:13:53    阅读次数:105
excel导出报错:The supplied data appears to be in the Office 2007+ XML.
用以上语句导出excel的时候报错:信息: Request processing failed; nested exception is org.apache.poi.poifs.filesystem.OfficeXmlFileException: The supplied data appears ...
分类:移动开发   时间:2020-06-18 10:44:13    阅读次数:113
Ubuntu无法加载NTFS硬盘,Gparted显示硬盘The primary GPT table is corrupt, but the backup appears OK, so that will be used
ubuntu、windows7双系统。ubuntu无法挂载ntfs分区 忘记截图了,记录一下 1、如题,Ubuntu无法加载NTFS硬盘,原硬盘在/dev/sda2位置,mount命令说找不到,执行sudo fdisk -l命令,可以看到硬盘在/dev/sda位置,分区在/dev/sda2上 2、运 ...
分类:移动开发   时间:2020-05-31 16:20:33    阅读次数:229
451. Sort Characters By Frequency
Given a string, sort it in decreasing order based on the frequency of characters. Example 1: Input: "tree" Output: "eert" Explanation: 'e' appears twi ...
分类:其他好文   时间:2020-05-23 00:36:39    阅读次数:45
674条   1 2 3 4 ... 68 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!