Questions tagged «warnings»

通常会在发现潜在的高风险情况,可能的误解,服务质量下降或即将发生故障时发出警告。


3
R中出现“ warnings()”时中断循环
我遇到一个问题:我正在运行一个循环来处理多个文件。我的矩阵很大,因此如果我不小心,我经常会用光内存。 如果创建了任何警告,是否有办法打破循环?它只是继续运行循环,并在以后报告失败了……很烦人。任何想法哦,明智的stackoverflow-ers ?!
103 r  loops  warnings  break 

4
require_once中的相对路径不起作用
我有以下结构 otsg > class > authentication.php > database.php > user.php > include > config.inc.php > encryption.php > include.php > session.php > index.php > registration.php include.php文件具有以下内容 ini_set('display_errors', 1); error_reporting(E_ALL); ini_set('include_path',ini_get('include_path').':/Applications/MAMP/htdocs/otsg/:'); require_once 'config.inc.php'; require_once '../class/database.php'; require_once '../class/user.php'; require_once 'encryption.php'; require_once 'session.php'; require_once '../class/authentication.php'; 并且在index.php页面中,我包括了 require_once 'include/include.php'; 当我打开页面index.php时,出现以下警告和致命错误。我不明白是什么原因导致此错误。当我给出绝对路径时,它可以工作。但是我相信绝对的路线不是一个好主意。 Warning: require_once(../class/database.php) [function.require-once]: failed to …



3
logging.info不会显示在控制台上,但会发出警告和错误提示
当我使用记录事件时logging.info,该事件不会出现在Python终端中。 import logging logging.info('I am info') # no output 相反,使用记录的事件logging.warn确实出现在终端中。 import logging logging.warn('I am warning') # outputs "I am warning" 我可以logging.info在控制台上进行环境级别更改吗?我想避免在每个Python文件中进行更改。

6
Visual Studio警告级别的含义?
在Web应用程序项目的“构建”选项卡上,我有一个名为“警告级别”的设置。我可以在0到4之间设置一个值。这些值是什么意思?值0会更严格并生成更多警告吗,反之亦然?我还没有找到任何文档,但是也许我找错了地方。

7
列的数据被截断了吗?
在更改MySql列的数据类型以存储Twilio调用ID(34个字符字符串)之后,我尝试使用以下命令手动更改该列中的数据: update calls set incoming_Cid='CA9321a83241035b4c3d3e7a4f7aa6970d' where id='1'; 但是,我看到一个错误,因为正确修改了列的数据类型,所以没有意义吗? | Level ||| Code | Message | Warning | 1265 | Data truncated for column 'incoming_Cid' at row 1
90 mysql  warnings  twilio 

22
Xcode:“由于缺少入口点,无法访问场景”,但找不到它
Xcode 4.5.2给我以下警告: Unsupported Configuration Scene is unreachable due to lack of entry points and does not have an identifier for runtime access via -instantiateViewControllerWithIdentifier:. 不幸的是,我无法确定犯罪现场。在问题导航器中选择警告不会在情节提要中突出显示任何内容。我有一个相当复杂的故事板(超过30个场景)。 有什么建议?

2
进行git push时警告“ diff.renamelimit变量”
我将本地提交推送到远程git服务器,并收到以下警告消息: remote: warning: only found copies from modified paths due to too many files. remote: warning: you may want to set your diff.renamelimit variable to at least 19824 and retry the command. 但是实际上我已经将diff.renamelimit设置为0(我认为零意味着无限制,对吧?)。 $ git config --list ... diff.renamelimit=0 那么,如何避免此警告?谢谢。
86 git  warnings  push 


3
iPhone OS内存警告。不同级别是什么意思?
关于在iPhone OS设备上管理内存的妖术:不同级别的内存警告是什么意思。1级?2级?拨盘转到11吗? 上下文:经过长时间的内存压力测试-包括在播放iPod音乐播放器应用程序的同时运行我的iPad应用程序,我倾向于忽略收到的随机但很少出现的内存警告。我的应用程序永不崩溃。曾经 我的应用程序无泄漏。而且,内存警告似乎并不重要。 谢谢, 道格


13
标头和客户端库次要版本不匹配
在PHP中,每当尝试连接到数据库时,都会收到以下警告(通过mysql_connect) 警告:mysql_connect():标头和客户端库次要版本不匹配。标头:50162图书馆:50524 在我的php -i输出中,我在mysqli下列出了以下值 客户端API库版本=> 5.5.24 客户端API标头版本=> 5.1.62 我已经尝试更新php5-mysql和php,但是我已经拥有了两者的最新版本。我该如何更新标题版本,以便不再看到此警告? 编辑 我的MySQL文件都应该更新为最新版本: $ apt-get install mysql.*5.5 . . . mysql-client-5.5 is already the newest version. mysql-server-core-5.5 is already the newest version. mysql-server-5.5 is already the newest version. mysql-testsuite-5.5 is already the newest version. mysql-source-5.5 is already the newest version. 删除旧版本 $ …
81 php  ubuntu  mysqli  warnings 

7
“ double_scalars中遇到无效值”警告,可能为numpy
当我运行代码时,偶尔会以四个为一组的形式收到这些警告。我试图通过在某些语句之前和之后放置调试消息来定位源,以查明源。 Warning: invalid value encountered in double_scalars Warning: invalid value encountered in double_scalars Warning: invalid value encountered in double_scalars Warning: invalid value encountered in double_scalars 这是Numpy警告,什么是双标量? 从Numpy我使用 min(), argmin(), mean() and random.randn() 我也使用Matplotlib

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.