In general, PHP server variables start with $_ like $_REQUEST,$_GET etc but in kohana framework some variables are like kohana::$_paths,Kohana::$_modules etc.
These variables have an underscore to indicate that they are private members (or in this case protected) of the core kohana class. You will find this coding standard throughout the whole framework.