码迷,mamicode.com
首页 >  
搜索关键字:cannot find the requ    ( 29133个结果
IDEA快捷键
1. 格式化 去掉空白: Ctrl + Shift + J 格式化代码: Ctrl + Alt + L 2. 查找与替换 该文件下查找(Ctrl+F) 项目全局查找(Ctrl+Shift+F 或【Edit】——>【Find】——>【Find in Path…】) 该文件下替换(Ctrl+R) 项目全 ...
分类:其他好文   时间:2020-05-25 12:23:03    阅读次数:52
小学奥数题——A Simple Problem
看一下题目大意: For a given positive integer n, please find the smallest positive integer x that we can find an integer y such that y^2 = n +x^2.。 自己翻译一下,不难 ...
分类:其他好文   时间:2020-05-25 12:06:37    阅读次数:75
not find any valid local directory for nmPrivate
跑spark job的时候碰到了错误: 这是因为nmPrivate目录没有权限访问引起的。 参考: "https://www.oschina.net/question/2288283_2134188" ...
分类:其他好文   时间:2020-05-25 09:22:14    阅读次数:74
Python-Basis-9th-Ubuntu
周日,晴,记录生活分享点滴 参考博客:https://www.cnblogs.com/resn/p/5800922.html 环境变量 自定义账户的个性化环境的三个重要文件 (参考博客:https://blog.csdn.net/u011479200/article/details/86501366 ...
分类:编程语言   时间:2020-05-24 21:26:32    阅读次数:74
Rust 文件读写
https://www.twle.cn/c/yufei/rust/rust-basic-file-input-output.html Rust 文件读写 Rust 标准库提供了大量的模块和方法用于读写文件。 Rust 语言使用结构体 File 来描述/展现一个文件。 结构体 File 有相关的成员变 ...
分类:其他好文   时间:2020-05-24 11:54:03    阅读次数:132
LeetCode 5. 最长回文子串
中心扩展法。 class Solution { public: string longestPalindrome(string s) { int start = 0, end = 0; for (int i = 0; i < s.size(); ++i) { findLongest(s, i, i, ...
分类:其他好文   时间:2020-05-24 11:40:39    阅读次数:50
cmake cmake MSBUILD : error MSB1009: 项目文件不存在 or MSBuild.exe not find !
//配置vs环境变量 C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\MSBuild\15.0\Bin C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterpr ...
分类:其他好文   时间:2020-05-24 11:38:26    阅读次数:59
404. Sum of Left Leaves 404.左叶总和
Find the sum of all left leaves in a given binary tree. Example: 3 / \ 9 20 / \ 15 7 There are two left leaves in the binary tree, with values 9 and 1 ...
分类:其他好文   时间:2020-05-24 11:27:13    阅读次数:52
netstat -ano|findstr 8088
C:\Users\admin>netstat -ano|findstr 8088 TCP 0.0.0.0:8088 0.0.0.0:0 LISTENING 16888 TCP 127.0.0.1:8088 127.0.0.1:64254 ESTABLISHED 16888 TCP 127.0.0.1 ...
分类:Web程序   时间:2020-05-24 09:56:03    阅读次数:54
Linux命令(13)mkdir命令
mkdir 命令 功能说明:创建目录 用法:mkdir [OPTION]... DIRECTORY... | 选项 | 作用 | | | | | p, parents | 自动按需创建父目录 | | v, verbose | 显示详细过程 | | m, mode=MODE | 创建目录时直接设定权限 ...
分类:系统相关   时间:2020-05-24 09:36:35    阅读次数:57
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!