Displaying 20 results from an estimated 4458 matches for "ings".
Did you mean:
rings
2008 Oct 25
1
Filling symbols in xyplot
Hello,
I am using xyplot and am happy with my graph, *except* that I cannot get
the symbols to be filled. I tried using
bg=c("red3","red","black","lightgrey")) in both the key and the xyplot
function, that that was obviously not the answer. I would like the
sybols to be filled with the same colors as the lines.
Does anybody have an answer? In case
2007 Feb 22
9
specking, speccing, or spec''ing
I vote for spec''ing.
Anybody else?
2006 May 30
1
seg on windows-pr-0.5.1 (was RE: win32-eventlog 0.4.0)
Pe?a wrote:
> Hi Dan,
> i get a segfault on windows-pr if i run mulitple tails by threading, one thread for each host i''m tailing.
>
> C:\family\ruby\win-eventlog>dtail.rb
> thread/tail-ing Security on host1
> thread/tail-ing Security on host2
> thread/tail-ing Security on host3
> thread/tail-ing Security on host4
> thread/tail-ing Security on host5
>
2007 Jan 30
2
rbind-ing list
hi,
i have a list of data.frame that has same structure. i would like to know a
efficient way of rbind-ing it.
right now, i write:
n = length(temp) # 'temp' is a list of data.frames
temp2 = data.frame()
for (i in 1:n) temp2 = rbind( temp2, temp[[i]])
return(temp2)
but this is not an efficient way since we keeping overwriting temp2. i
wonder if there's faster way.
thanks
--
2008 May 02
4
spec''ing calls to super (or other Ruby keywords)
Hi there,
How does one spec an invocation of a Ruby keyword, such as super in this
case?
class User < ActiveResource::Base
# faking the ActiveRecord before/after_save observers
def save
super
UserMailer.deliver_activation(self) if recently_activated?
end
end
Does the solution look anything like the following?
describe User do
describe ''#save'' do
it
2014 Jun 08
1
dovecot/lmtp munmap()-ing a lot
I observed several long running dovecot/lmtp processes hogging the
CPU. I then strace'd them (strace -c -p 6375) and found them
munmap()-ing a lot:
% time seconds usecs/call calls errors syscall
------ ----------- ----------- --------- --------- ----------------
97.18 19.592537 1878 10430 munmap
2.28 0.458984 36 12696 epoll_ctl
2008 Jan 13
1
View spec''ing style
...l view expects that the appropriate partials are included and used.
Pros:
* it''s DRY
* you get a single point of failure if an expectation is not met
Cons:
* the final specs for a view aren''t very explicit and it can be
challenging
to figure out all the things a view does without tracing back the
partials.
Second:
Develop a set of specs for each view that explicitly expect the
important UI elements and treat the rest of the view as a black box
(i.e., you don''t care if a particular partial was rendered so long as
the relevant UI elements are t...
2010 Feb 15
1
What symbols are loaded when require()ing?
Hello.
I would need to know of a programmatic way to get a list of all the new
symbols you get when require(9)ing a package/library. I'd like to know
how to do that from within R, or with the C API. Pointers to relevant
documentation are also welcome.
All the best,
--
Guillaume Yziquel
http://yziquel.homelinux.org/
2011 Apr 19
1
Linux RHEL 5.2 hangs for 1.5 hrs while fsck'ing the OCFS2 file system
Hi there,
A month ago we ran into the fsck issue while rebooting one of the Oracle RAC nodes running on Linux RHEL 5.2. It was hanging for 1.5 hours
During the reboot, OS portion went fine, then it activated the data volumes in all data vg's with [OK]
Then displayed message: Checking filesystems - and it took it 1.5 hrs, then it finished the reboot.
Last weekend we rebooted the same box and
2001 Jul 16
0
forwarded message from Inge Monika
--Hipsgkxbeg
Content-Type: text/plain; charset=us-ascii
Content-Description: message body text
Content-Transfer-Encoding: 7bit
This one was sent privately to me.
--Hipsgkxbeg
Content-Type: message/rfc822
Content-Description: forwarded message
Content-Transfer-Encoding: 7bit
Received: from tuvok.kom.tuwien.ac.at (tuvok.kom.tuwien.ac.at [192.35.241.66])
by fangorn.ci.tuwien.ac.at (8.9.3/8.8.5)
2018 Jan 19
1
[Possibile SPAM] Re: Problem with Gluster 3.12.4, VM and sharding
...replica 3 arbiter 1
>>>>>>>> mode (but I've got a volume in "pure"
>>>>>>>> replica 3 mode too). I've applied the
>>>>>>>> "virt" group settings to my volumes since
>>>>>>>> they host VM images.
>>>>>>>>
>>>>>>>> If I try to install something (eg: Ubuntu
>>>>>>>> Server 16.04.3) on a VM...
2018 Jan 18
1
[Possibile SPAM] Re: Problem with Gluster 3.12.4, VM and sharding
...KVM version
>>>>> 2.9.0 (compiled from RHEL sources).
>>>>>
>>>>> I'm running volumes in replica 3 arbiter 1 mode (but I've got a volume
>>>>> in "pure" replica 3 mode too). I've applied the "virt" group settings to my
>>>>> volumes since they host VM images.
>>>>>
>>>>> If I try to install something (eg: Ubuntu Server 16.04.3) on a VM (and
>>>>> so I generate a bit of I/O inside it) and configure KVM to access gluster
>>>>> volume d...
2015 Jan 19
3
strange: Failed DNS update - NT_STATUS_IO_TIMEOUT
Hai,
?
Im seeing something very strange.? ( Debian wheezy, sernet-samba 4.1.14 )
?
after update-ing my debian servers and restarting them, im see-ing the following on my ADDC2.
?
[2015/01/19 11:09:10.422641,? 0] ../source4/dsdb/dns/dns_update.c:294(dnsupdate_nameupdate_done)
? ../source4/dsdb/dns/dns_update.c:294: Failed DNS update - NT_STATUS_IO_TIMEOUT
?
I?checked the SOA's of the DNS and
2007 Jan 18
1
spec''ing models with observers that send mail
I''m spec''ing a model with an observer that sends mail. Mailers behave
similarly to controllers, so to make the whole thing work, I believe
something like integrate_views has to be available. Has anyone dealt
with observers and ActionMailer?
Thanks
2005 Aug 14
1
parse():ing a unclosed string
When parse():ing R code from *file* with a unclosed string, that is, a
string that has an open quoation mark, but not a ending one, the string
seems to be closed automagically. Is this a "bug"?
Example:
> code <- "x <- '123";
> parse(text=code) # Gives an error as expected
Error in parse(file, n, text, prompt) : parse error
>
2006 Mar 28
0
DNAT''ing and iproute
-- Can someone please give an example or two how one might accomplish
DNAT''ing and ip routes? It appears that the de''DNAT''ing takes
place after the routing decisions so when I use something like ip
rule from incoming-address table out-route it just doesn''t seem to
ever route anything out. DNAT doesn''t seem to keep track of the
incoming
2018 Jan 18
1
[Possibile SPAM] Re: Problem with Gluster 3.12.4, VM and sharding
...;>>>>>> I'm running volumes in replica 3 arbiter 1 mode
>>>>>>> (but I've got a volume in "pure" replica 3 mode
>>>>>>> too). I've applied the "virt" group settings to
>>>>>>> my volumes since they host VM images.
>>>>>>>
>>>>>>> If I try to install something (eg: Ubuntu Server
>>>>>>> 16.04.3) on a VM (and so I generate a bit of...
2002 Sep 18
1
attach()ing User-Defined Classes with Complex Structures
How would you implement attach()ing to a user-defined class with multiple
slots in R?
A primary goal of my software is to hide the data representation from the
user,
allowing them to attach() to my program's complex classes and refer to
their contents by name - THEREBY avoiding having to pass the classes to
every function call.
Also, is it true that attaching to a to a sub-classed list
2019 Apr 29
2
dfree command in homes section
Hi everyone,
we are using custom dfree commands to implement quotas. While these work fine on normal shares, the "dfree command" parameter seems to be ignored in the homes section. Is this correct (and intended)?
Best regards
Felix
IT-Services
Telefon 02461 61-9243
E-Mail: f.stolte at fz-juelich.de
-------------------------------------------------------------------------------------
2012 May 01
2
rbind-ing numeric matrices
Good morning,
I'm running into trouble rbind-ing numeric matrices with differing numbers
of rows. In particular, there seem to be issues whenever a one-row numeric
matrix is involved.
Assume A is a numeric matrix with 1 row and Y columns and B is a numeric
matrix with X rows and Y columns. Let C be the result of rbinding A and B.
Then C is a numeric matrix with X + 1 rows and Y columns, only