search for: rege

Displaying 10 results from an estimated 10 matches for "rege".

Did you mean: reg
2006 Mar 13
1
Building help pages
Hello! I was just wondering, why only one of my "Rd" files is converted in "chm" format (REGE) and the other are not when installing a package? The output from installing a package on WinXp is below. I tried to find more information about what "chm" format actually is, however have found none. Best regards and thaks for any replies, Ales Ziberna C:\Ales\Statistika>R CMD I...
2006 Aug 07
9
problems with ActionMailer
...iler) redirect_to(:action => ''email_prueba_progress'') end def email_prueba_progress render(:text => "Progreso: #{MiddleMan[:emailer].progress}") end thanks for any hint. -- rolando -- [[ knowledge is empty, fill it ]] -- "Tam pro papa quam pro rege bibunt omnes sine lege."
2006 Jun 16
4
problem with join
...culos)... The ideal query would be to make a SELECT rutas.* instead of a SELECT *. I don''t want to build the query myself, because the conditions array is a complex... Any idea how can I fix this? thanks a lot, -- rolando -- [[ knowledge is empty, fill it ]] -- "Tam pro papa quam pro rege bibunt omnes sine lege."
2009 Jul 15
0
[PATCH] Make Perl strings translatable
.../") { - warn "resolve_windows_path: path must start with a / character"; + warn __"resolve_windows_path: path must start with a / character"; return undef; } @@ -740,7 +753,7 @@ sub _load_windows_registry close SAVEERR; unless ($res == 0) { - warn "reged command failed: $?"; + warn __x("reged command failed: {errormsg}", errormsg => $?); return; } @@ -749,7 +762,7 @@ sub _load_windows_registry # it. my $content; unless (open F, "$dir/out") { - warn "no output from reged command: $!"; +...
2019 Sep 12
1
Outlook 2019 and IMAP
...l:INBOX=/var/spool/mail/%u mail_max_userip_connections = 500 mail_plugins = " listescape" mail_privileged_group = mail managesieve_notify_capability = mailto managesieve_sieve_capability = fileinto reject envelope encoded-character vacation subaddress comparator-i;ascii-numeric relational rege x imap4flags copy include variables body enotify environment mailbox date index ihave duplicate mime foreverypart extracttext mbox_write_locks = fcntl namespace inbox { inbox = yes location = mailbox Drafts { special_use = \Drafts } mailbox Junk { special_use = \Junk } mailbox...
2004 Sep 20
2
Update: Welltech Wellgate 3504A registration problem
Recently, there're some posts about registration problems with this gateway. These are my observations using the latest firmware version 107a. a) The gateway will register all 4 ports if you're not using password. b) If using password, the gateway will only register the 1st port correctly. For the record, the 2-port 3502 doesn't exhibit this behavior. FYI.
2010 Mar 29
4
[PATCH 0/3] Export and merge into Windows Registry
As described here previously: https://www.redhat.com/archives/libguestfs/2010-March/msg00129.html Here is the three part patch to reimplement virt-win-reg to support exporting and merging Windows Registry entries in the 'regedit' format. Tested by me on a local Windows VM. Rich. -- Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones virt-top is 'top' for virtual machines. Tiny program with many powerful monitoring features, net stats, disk stats, logging, etc. http://et.redhat....
2010 Feb 12
11
[PATCH 1/9] Convert config file to XML, and translate networks/bridge for all connections
Previously, only the LibVirtXML connection translated network and bridge names in imported metadata. This change moves this functionality in Converter, making it available to LibVirt connections as well. At the same time, the format of the config file is switched to XML. The primary driver for this is that the allowable syntax of a foreign network/bridge name is not known. Rather than create a
2009 Aug 03
1
[PATCH 1/2] Convert all TABs-as-indentation to spaces.
...if (defined $systemdir) { + _load_windows_registry ($g, $r, $systemdir, + "HKEY_LOCAL_MACHINE\\System"); + } } } @@ -1004,8 +1004,8 @@ sub _load_windows_registry close SAVEERR; unless ($res == 0) { - warn __x("reged command failed: {errormsg}", errormsg => $?); - return; + warn __x("reged command failed: {errormsg}", errormsg => $?); + return; } # Some versions of reged segfault on inputs. If that happens we @@ -1013,8 +1013,8 @@ sub _load_windows_registry #...
2012 Aug 08
0
[Help] : Rails3.2 server hangs when started with Foreman
Hey guys, I''m using foreman to try and run some delayed-jobs. However, when I start a worker process along with the Rails server, the server hangs after serving a couple of requests. The worker if started separately, without using foreman - works well, and processes requests when they are called with the ''delay'' keyword. Here are some mroe details.