Displaying 20 results from an estimated 2000 matches similar to: "Opposite of cp -u"
2009 Jan 05
2
[LLVMdev] Unit test patch, updated
2009/1/1 Chris Lattner <clattner at apple.com>
> On Jan 1, 2009, at 1:21 AM, Talin wrote:
> > I'm thinking that getting unit tests for the classes in ADT should
> > be an early goal.
>
> Can I suggest the AP[S]Int class? If you look in llvm/test/Integer
> you'll see a whole bunch of tests that really want to be unit tests
> but that aren't. :(
2009 Jan 05
0
[LLVMdev] Unit test patch, updated
On Jan 5, 2009, at 11:37 AM, Misha Brukman wrote:
> 2009/1/1 Chris Lattner <clattner at apple.com>
> On Jan 1, 2009, at 1:21 AM, Talin wrote:
> > I'm thinking that getting unit tests for the classes in ADT should
> > be an early goal.
>
> Can I suggest the AP[S]Int class? If you look in llvm/test/Integer
> you'll see a whole bunch of tests that really
2012 Nov 28
1
Strange ssh thing - Keys suddenly decide to stop working.
## Hi,
## I have a script that spawns a process on a remote virtuozzo(container based vm thing) machine then waits for it to complete. Its a bit hacked about but you should be able to get the idea.
function spawntpcc {
while ! ssh -v $vmhostnameprefix$1 <<EOF
"$tpccrootdir"/tpcc-mysql/tpcc_start -h localhost -d tpcc -u root -w "$3" -c 8 -r "$warmuptime" -l
2009 Jan 01
0
[LLVMdev] Unit test patch, updated
On Jan 1, 2009, at 1:21 AM, Talin wrote:
> Hooray!
>
> I'm thinking that getting unit tests for the classes in ADT should
> be an
> early goal.
Can I suggest the AP[S]Int class? If you look in llvm/test/Integer
you'll see a whole bunch of tests that really want to be unit tests
but that aren't. :(
-Chris
2009 Jan 01
3
[LLVMdev] Unit test patch, updated
Hooray!
I'm thinking that getting unit tests for the classes in ADT should be an
early goal.
I also wanted to mention a point about the general philosophy of unit
testing, which is that the presence of such tests alters the calculation
of risk when making changes to a code base. Programmers have various
rules of thumb for estimating risk - for example, a change which affects
a large
2013 Aug 22
3
NUT under NAS4Free config issue
Thanks, the strange is that I could set in this way the master user.
At NAS4Free forum cannot get help, I presented the problem there too, but
no real help.
On Thu, Aug 22, 2013 at 2:19 AM, Charles Lepple <clepple at gmail.com> wrote:
> On Aug 21, 2013, at 10:41 AM, Incze Andras wrote:
>
> > Having the next problem, manually adding via WinSCP in the upsd.users
> file the
2013 Aug 22
0
NUT under NAS4Free config issue
On Aug 22, 2013, at 5:15 AM, Incze Andras wrote:
> Thanks, the strange is that I could set in this way the master user.
That is odd. The development version of NAS4Free seems to be regenerating the entire upsd.users file:
http://sourceforge.net/p/nas4free/code/848/tree/trunk/build/ports/nut/files/nut.sh.in
To address your original concern (adding remote users for monitoring), I would
2013 Aug 23
2
NUT under NAS4Free config issue
There is some problem with formatting :(
If I paste how was written, the structure is wrong formatted, is putted
somewhere right after the end of 1st part with master in the generated file.
On Thu, Aug 22, 2013 at 3:32 PM, Charles Lepple <clepple at gmail.com> wrote:
> On Aug 22, 2013, at 5:15 AM, Incze Andras wrote:
>
> > Thanks, the strange is that I could set in this way
2006 Jun 10
0
opposite of url_for()?
Hi,
I have a string in a controller that represents a url for my website.
For example the string might be
/cont/act/id
and I want to break this up using the routes defined in my
config/routes.rb file so that I get a hash like
{:controller => ''cont'', :act => ''act'', :id=>''id''}
How can I access all of the information stored in
2006 Sep 28
3
Quick Question: Opposite of Titleize?
Anyone know what the opposite of titleize is?
I want to do ''My Title" to ''my_title''
--
Posted via http://www.ruby-forum.com/.
--~--~---------~--~----~------------~-------~--~----~
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
2011 Jan 11
1
Writing diagonal matrix in opposite direction
Hi, is there any direct R function to write an diagonal matrix in an opposite way? for example I want to get like:
> diag(rnorm(5))[,5:1]
[,1] [,2] [,3] [,4] [,5]
[1,] 0.0000000 0.0000000 0.0000000 0.000000 -0.1504687
[2,] 0.0000000 0.0000000 0.0000000 -2.139669 0.0000000
[3,] 0.0000000 0.0000000 -0.2102133 0.000000 0.0000000
[4,] 0.0000000
2006 Jul 30
0
re 11. uniroot and function opposite signs warning
Nurza,
Try running a while loop steping out until you have a start and finish
thats the function is opposite in sign. You need a "start" and "finish"
where F is + and - on either side of the loop. Graphing F might help.
step<-10
checkme<-F(start)*F(finish+step)
while(checkme>0){
initialstep<-initialstep*2
checkme<-F(start)*F(finish+step)
}
2005 Mar 16
1
Is there an opposite of Inflector.Camelize
Or to put it another way, is there a function f, such that
Inflector.f(Inflector.Camelize(x)) = x
?
Enquiring minds need to know.
Adelle.
2013 Mar 11
1
Opposite return values in vringh_notify_enable_kern() and virtqueue_enable_cb().
Hi Rusty,
The two similar functions in vringh and virtqueue for turning on
interrupts has opposite return values if there are buffers available
in the ring. I think it would be better if these two functions aligned
the use of return values. Maybe it's just me, but I got the logic
for re-scheduling NAPI wrong due to this.
/**
* vringh_notify_enable_kern - we want to know if something
2013 Mar 11
1
Opposite return values in vringh_notify_enable_kern() and virtqueue_enable_cb().
Hi Rusty,
The two similar functions in vringh and virtqueue for turning on
interrupts has opposite return values if there are buffers available
in the ring. I think it would be better if these two functions aligned
the use of return values. Maybe it's just me, but I got the logic
for re-scheduling NAPI wrong due to this.
/**
* vringh_notify_enable_kern - we want to know if something
2013 Nov 17
0
[LLVMdev] opposite to CreateStructGEP
Does getelementptr have a counterpart function which unindexes a
pointer? In particular, I'm using CreateStructGEP from the builder and
want to get back to the struct pointer from a member pointer.
fptr = b.CreateStructGEP( sptr, 2 );
//I want to do this
sptr = b.CreateUnStructGEP( fptr, sptr_type, 2 );
I know I can calculate the offsets on my own, but it'd be nice to not
have to since
2009 May 13
0
Why asterisk changes RTP destination port when it receives first RTP packet in opposite direction despite canreinvite=no
Hi,
I'm connecting Asterisk v. 1.4.10 to Zanzibar Open IVR that acts as a SIP
trunk. Since recognition didn't work correctly, I've troubleshot with
Wireshark and saw that RTP stream is first send to one port on SIP trunk and
then when first RTP packet arrives in opposite direction (from TTS part of
Zanzibar - it's a prompt) Asterisk starts sending to the same RTP port -
2003 Nov 07
2
opposite function of strsplit() ?
Hi,
I what to solve this problem:
>alfab <- "ABCEDFG" #[1] "ABCEDFG"
>chara <- strsplit(alfab, "") #[1] "A" "B" "C" "E" "D"
>"F" "G"
Then I do some changes before I want the character together again, say,
remove two letters.
Now,
2011 Aug 10
2
Opposite of paste function
Dear All,
I have vn variable
> vn
[1] "V300" "V376"
What I want to get is
300 376
without V and "" from vn variable.
Could you help me about this issue?
Thank you,
Soyeon
[[alternative HTML version deleted]]
2010 Jul 21
1
The opposite of "lag"
Hello!
I have a data frame A (below) with a grouping factor (group). I take
my DV and create the new, lagged DV by applying the function lag.it
(below). It works fine.
A <- data.frame(year=rep(c(1980:1984),3), group=
factor(sort(rep(1:3,5))), DV=c(rnorm(15)))
lag.it <- function(x) {
DV <- ts(x$DV, start = x$year[1])
idx <- seq(length = length(DV))
DVs <- cbind(DV, lag(DV,