https://developer.apple.com/library/mac/documentation/Darwin/Reference/ManPages/man1/xcodebuild.1.html   This manual page is part of Xcode Tools version 5.0 To obtain these tools: Install the Xcode Tools from developer.apple.com. If you are running a…
今天将项目迁移到另一台笔记本,进行build出现以下问题,导致build失败 The specified Android SDK Build Tools version (26.0.2) is ignored, as it is below the minimum supported version (27.0.3) for Android Gradle Plugin 3.1.1. Android SDK Build Tools 27.0.3 will be used. To suppress…
当在Windows环境中使用npm install或者yarn 安装依赖时,可能会出现如下类似的错误: MSBUILD : error MSB4132: The tools version "2.0" is unrecognized. Available tools versions are "4.0". 或者: MSBUILD : error MSB4132: The tools version "2.0" is unrecognized. A…
今天将项目迁移到另一台笔记本,进行build出现以下问题,导致build失败 报错截图: 大致意思,目前使用的build工具版本27.0.3不合适.因为当前使用Gradle插件版本是3.2.1,这个版本至少需要build对应版本为28.0.3 而且,现在每一个Gradle插件版本都对应一个build工具版本,不能混用 从上述内容看出,需要修改app下的Gradle 中修改build对应的版本 android { //xxxx buildToolsVersion '28.0.3' //xxxxx…
git-push(1) Manual Page NAME git-push - Update remote refs along with associated objects SYNOPSIS git push [--all | --mirror | --tags] [--follow-tags] [-n | --dry-run] [--receive-pack=<git-receive-pack>] [--repo=<repository>] [-f | --force] [-…
原文: select manual page 依赖的头文件 /* According to POSIX.1-2001, POSIX.1-2008 */ #include <sys/select.h> /* According to earlier standards */ #include <sys/time.h> #include <sys/types.h> #include <unistd.h> 方法定义 int select(int nfds, fd_…
问题描述:在centos服务器上执行date命令时,显示的时间信息中的时区不正常,如下: [root@ulocalhost ~]# date Mon Apr 9 02:57:38 Local time zone must be set--see zic manual page 2018 即显示Local time zone must be set--see zic manual 解决办法: 1)查看软连接是否在本地时区,这里我选择上海时区 [root@localhost ~]# rm -f /e…
epoll使用详解(精髓) - Boblim - 博客园 https://www.cnblogs.com/fnlingnzb-learner/p/5835573.html epoll使用详解(精髓)   epoll - I/O event notification facility 在linux的网络编程中,很长的时间都在使用select来做事件触发.在linux新的内核中,有了一种替换它的机制,就是epoll.相比于select,epoll最大的好处在于它不会随着监听fd数目的增长而降低效率.…
故障现象 系统日志时间晚了整整8个小时,比如现在是中午12点,日志时间为凌晨4点 date命令报错(Local time zone must be set--see zic manual page) 解决方案(失败) 修改/etc/profile export TZ='Asia/Shanghai' 无效,date命令显示正常,但是放在脚本中的date命令依然报错,并且日志时间依然延后8小时 tzselect配置 #tzselect Please identify a location so th…
往一个新建的MySQL表中插入数据报错 2018-08-22 14:09:18.875 ERROR 9256 --- [apr-8080-exec-9] o.s.b.w.servlet.support.ErrorPageFilter : Forwarding to error page from request [/increaseData] due to exception [### Error updating database. Cause: com.mysql.jdbc.exceptio…