WordPress uses an internal system as a virtual cron job, in order to execute scheduled tasks (publishing scheduled posts, checking updates, doing backups and so on)
It may happen, for optimizing resource usage or for debugging, that you need to suspend this cron job system.
You can easily disable it by adding following line of code to your site's wp-config.php:
define('DISABLE_WP_CRON', true);