Displaying 20 results from an estimated 3692 matches for "gm".
Did you mean:
gmx
2020 Apr 10
0
doveadm backup from gmail with imapc
On Thu, 2020-04-09 at 13:48 +0300, Sami Ketola wrote:
>
> >
> > On 31 Mar 2020, at 23.18, Ben Mulvihill <ben.mulvihill at gmail.com>
> > wrote:
> >
> > Hello again,
> >
> > I am still stuck I'm afraid.
> >
> > I now have doveadm backup working perfectly from
> > a small gmail mailbox (a few hundred messages), but
> > when I try the same configuration (apart...
2020 Apr 09
2
doveadm backup from gmail with imapc
> On 31 Mar 2020, at 23.18, Ben Mulvihill <ben.mulvihill at gmail.com> wrote:
>
> Hello again,
>
> I am still stuck I'm afraid.
>
> I now have doveadm backup working perfectly from
> a small gmail mailbox (a few hundred messages), but
> when I try the same configuration (apart from usernames
> and passwords obviously) with...
2012 Jun 01
3
Add rank column to data frame as in SQL...
...en added to the data.frame which
should give the descending rank for each employee, partitioned by
company.
But when I implemented it, the results weren't the expected rankings.
What am I doing wrong?
set.seed(1)
DF <- data.frame(Company=sample(c("Ford","Toyota","GM"),size=18,replace=TRUE),
Person=LETTERS[1:18],Salary=runif(18)*1e5)
DF <- within(DF, rank <- ave(Salary, Company, FUN=function(x)rev(order(x))))
# Then checking each category manually
DF[DF$Company == "Ford",]
DF[DF$Company == "GM",]
DF[DF$Company == "Toyota&quo...
2009 May 25
2
CAn u please tell wats the prob in runnning my project?
[~/kallori]# rake db:migrate
(in /home/gm/kallori)
no such file to load -- hmac-sha1
/usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in
`gem_original_require''
/usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require''
/home/gm/kallori/vendor/rails/activesupport/lib/active_support/
dependencies.rb:510...
2007 Jul 29
1
Curious why this doesn't work. (has_many, belongs_to)
Two Models.
class Gm < ActiveRecord::Base
belongs_to :pool
# mode code here.
end
class Pool < ActiveRecord::Base
has_many :gms
# mode code here.
end
Testing code through the console.
>> gm_list.each{ | gm | puts " GM name: #{ gm.user_name } belongs to Pool: #{ gm.pool.pool_name } " };...
1998 Feb 10
1
R-beta: $PERL in configure
One minor request, on the subject of installation scripts.
Could you change "configure" to use the value of $PERL,
when it checks for the version number?
PERL_VERSION_NUMBER=`$PERL -v | sed -n 's/^.*perl.*version \(.\).*/\1/p'
rather than:
PERL_VERSION_NUMBER=`perl -v | sed -n 's/^.*perl.*version \(.\).*/\1/p'`
On our systems, plain perl is version 4, and we
2006 Aug 16
0
LDAP Authorising users from Active Directory
...uggested ensuring LDAP Version 3 is used and the Deref is set to
'never'. I am already using these setting to no avail.
Has anyone else experience these problems, or have any suggestions on
how to overcome it ?
Many thanks,
Rob Coward
Normal Login with correct password
Aug 16 10:08:52 gm-ho-lin-05 dovecot: auth(default): client in: AUTH
1 PLAIN service=IMAP secured lip=127.0.0.1 rip=127.0.0.1
resp=ADA5OTlAc3RvcmVzLmdhbWUuY28udWsAOTk5MA==
Aug 16 10:08:52 gm-ho-lin-05 dovecot: auth(default):
ldap(0999 at stores.game.co.uk,127.0.0.1): bind search:
base=OU=Stores,OU=UK,DC...
2012 Oct 25
1
Dovecot sends BYE while fetching X-GM-MSGID
Hello everyone,
While using the following set of commands, I am having the error as below:
FETCH 7 (X-GM-MSGID)
A15 FETCH 7 (X-GM-MSGID)
A15 BAD Error in IMAP command FETCH: Unknown parameter X-GM-MSGID
Can I somehow disable such errors so that Dovecot won't send BYE on X-GM-MSGID but just proceed with following emails?
--
My configuration is below:
[root at server ~]# cat /etc/issue
CentOS rel...
2009 Feb 11
8
Write caches on X4540
We''re using some X4540s, with OpenSolaris 2008.11.
According to my testing, to optimize our systems for our specific
workload, I''ve determined that we get the best performance with the
write cache disabled on every disk, and with zfs:zfs_nocacheflush=1 set
in /etc/system.
The only issue is setting the write cache permanently, or at least quickly.
Right now, as it is,
2014 Dec 11
2
CentOS 5- mount shows a cifs share mounted 4 times!
Hello Gordon,
Thursday, December 11, 2014, 5:23:56 PM, you wrote:
GM> The system will mount a
GM> filesytem on top of an existing path, including one with another
GM> filesystem at the same path.
But the mounts are identical-
\\\\10.0.0.253\\niamh on /NSA320-music type cifs (rw)
\\\\10.0.0.253\\niamh on /NSA320-music type cifs (rw)
\\\\10.0.0.253\\niam...
2004 May 15
1
Again some questions about multilevelanalysis
...ariable (y), two explanatory variables
(x[1] and x[2]) at the first (the subject) level, a grouping variable at the
second level (G), and an explanatory variable at the second level (z[1])
If I am correct, this leads to the following model (I will write indices in
squared brackets and gamma as gm):
y = gamma[00] + gm[10]x[1ij] + gm[20] x[2ij] + gm[01]z[1j]+ gm[11]z[1j]x[1ij]
+ gm[21]z[1j]x[2ij] + U[0j] + U[1j]x[1ij] + U[2j]x[2ij] + R[ij]
Now I start modelling step by step and I would appreciate any corrections if I
got something wrong.
An empty model:
e.model <- lme(y~1,random=~1...
2010 Sep 16
3
get top n rows group by a column from a dataframe
Hi, is there an R function like sql's TOP key word?
I have a dataframe that has 3 columns: company, person, salary
How do I get top 5 highest paid person for each company, and if I have
fewer than 5 people for a company, just return all of them?
Thanks,
Richard
[[alternative HTML version deleted]]
2009 May 19
4
nlrwr package. Error when fitting the optimal Box-Cox transformation with two variables
Dear all:
I'm trying to fit the optimal Box-Cox
transformation related to nls (see the code
below) for the demand of money data in Green (3th
Edition) but in the last step R gives the next
error message.
Error en
`[.data.frame`(eval(object$data), ,
as.character(formula(object)[[2]])[2]) :
undefined columns selected.
?Any idea to solve the problem?
Thanks in advance,
2013 Jun 06
3
agrandar (estirar..) el eje de las ordenas
Quisiera agrandar el eje de ordenadas en un diagrama de lineas.. para
que haya más espacio entre punto y punto y "se noten mejor las
diferencias"...
¿alguna sugerencia?
--
Antonio Maurandi
2006 Sep 28
3
Cannot connect to a windows network
Hello,
I am trying to use Samba to let me mount windows network drives on an
Ubuntu Dapper Server installation that I am using as a desktop.
Using:
testparm
my smb.conf seems to be ok.
Using
smbclient -L GM.local -U username -p
Gives me a full listing of all network drives, which again seems to be
good. So now I try this:
sudo mount -t smbfs -o username=username \//GM.local/DC4 /mnt/win_share/
Password:
25031: tree connect failed: ERRDOS - ERRnosuchshare (You specified an
invalid share name)
SMB...
2012 Apr 25
1
random effects in library mgcv
...ctor is separating the individuals in three groups according to mass (group 0,1,2), Factor1 is a binary variable coding for individuals of group1, Factor2 is a binary variable for individuals of group 2
I use gam models of this sort with random effects coded using a s( ..., bs="re") term:
gm<-gam(Y~Factor+te(x1,x2,by=Factor) )+s(Individual,bs="re"),dat=Data,family=binomial(link=logit),method="REML")
gm1<-gam(Y~Factor+te(x1,x2)+ te(x1,x2,by=Factor1)+ te(x1,x2,by=Factor2)+s(Individual,bs="re"),dat=Data,family=binomial(link=logit),method="REML"...
2008 Apr 07
2
problem with Rmpi 0.5-5 and openmpi
Dear knowledgeable experts :-),
I am trying to get openmpi, Rmpi and SNOW running on a Myrinet/GM
cluster. I'm not an IT expert, but I surely could use a working
installation of Rmpi and SNOW.
I try to load the Rmpi library and get the following:
> library(Rmpi)
[master:07230] mca: base: component_find: unable to open osc pt2pt: file
not found (ignored)
---------------------------...
2009 Jul 31
8
Would like include model association in to_xml
...io.us/italomatos
http://www.activebrasil.com.br
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com
For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---
2003 Apr 23
1
R scripting patches for R-1.7.0
...ting language, i.e.
you can (on Unix-like systems) write files containing R code
and execute them non-interactively, e.g.:
#!/usr/local/lib/R/bin/R.bin --script
cat("Hello World!\n")
I've updated the patches for R-1.7.0; if you're interested in the
patches, e-mail me at mckay@gmr.com, and I'll send them to you.
--
Neil D. McKay, Mail Code 480-106-359 Phone: (586)986-1470 (GM:8-226-1470)
Manufacturing Systems Research Lab FAX: (586)986-0574 (GM:8-226-0574)
GM Research & Development Center Internet e-mail: mckay@gmr.com
30500 Mound Road
Warren, Mic...
2010 Feb 09
0
Using YM4R/GM plugin in rails.
I have installed YM4R/GM plugin. I''m using Rails 2.3.5. After
installing, i could''nt start my application. it shows,
Application error
Rails application failed to start properly.
--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post t...