Displaying 20 results from an estimated 30000 matches similar to: "feature request: restart on timeout"
2008 Sep 29
1
feature request: create remote directory
I have a program that copies pictures to a web server using rsync.
Typically it will do something like copy IMG_1234.JPG to
server:/www/docroot/YEAR/MONTH/DAY, where the appropriate numbers are
inserted for YEAR/MONTH/DAY. Currently the only way to do this with
rsync is to locally create YEAR/MONTH/DAY and then tell rsync to copy
it. I would like a syntax which would tell rsync to create a
2009 Apr 06
1
[LLVMdev] Makefile Problem?
I'm seeing the following when configuring llvm to point to llvm-gcc-4.2 and
then run a "make clean." This is building llvm in a separate object directory
than the source:
% ../src/configure
--prefix=/tmp/ptmp/dag/buildbot/slaves/llvm-validate/llvm-validate-debug-egypt-linux/build/install
2009 Apr 03
2
[LLVMdev] Trouble Building llvm-gcc-4.2
I'm still trying to debug the validator buildbot.
I'm getting this error when building some variants of llvm-gcc-4.2:
/bin/sh ../../src/gcc/mkconfig.sh bconfig.h
gcc -c -g -DIN_GCC -W -Wall -Wwrite-strings -Wstrict-prototypes
-Wmissing-prototypes -pedantic -Wno-long-long -Wno-variadic-macros
-Wno-overlength-strings -Wold-style-definition -Wmissing-format-attribute
-fno-common
2009 Apr 03
0
[LLVMdev] Trouble Building llvm-gcc-4.2
On 2009-04-03 18:39, David Greene wrote:
> I'm still trying to debug the validator buildbot.
>
> I'm getting this error when building some variants of llvm-gcc-4.2:
>
> /bin/sh ../../src/gcc/mkconfig.sh bconfig.h
> gcc -c -g -DIN_GCC -W -Wall -Wwrite-strings -Wstrict-prototypes
> -Wmissing-prototypes -pedantic -Wno-long-long -Wno-variadic-macros
>
2007 Feb 08
2
R
Dear Professor,
I am preparing for a Ph.D in semiparametric regression at Cairo university in Egypt. Referring to R package KernGPLM, I obtained R version 2.4.1 but I did not find package KernGPLM. Please, help me how can I obtain this package. Thanks in advance.
Name: Magda Haggag
E-mail: magdahaggag@yahoo.com
Address: 27, Notrdam Desion st., Gleem, Alexandria, Egypt.
2009 Oct 14
1
Beginning R help?
Hi all,
I'm currently working through the "Beginner's Guide to R" (Zurr et al.) and
I'm wondering about the first exercise in chapter 3:
I imported the data from BirdFluCases.txt and executed the 'names' and 'str'
functions as follows:
Bird = read.table(file='C:\\rbook\\BirdFluCases2.txt', header=TRUE)
names(Bird)
[1] "Year"
2010 Nov 21
3
R help
Dear All,
I'm a beginner user in R and I would like to make a quadratic and
plateau model in R. Can you help please with an example?
Thanks so much
--
Ahmed M. Attia
Assistant Lecturer
El-Khattara farm Station
Agronomy Dept.,
Zgazig Univ., Egypt
Visiting Scientist
Haskell Agricultural laboratory
Agronomy and Horticultural Dept.,
Univ. of Nebraska-Lincoln
ahmedatia at zu.edu.eg
2018 May 22
0
remove rows of a matrix by part of its row name
Hello,
Please always cc the list.
As for the question, yes, it does. If you want to remove just the ones
with exactly 73.1 use the pattern
grep("^73\\.1$", etc)
Explanation:
Beginning of string: ^
End of string: $
Escape special characters: \\ (needed because the period is a special
character.)
Hope this helps,
Rui Barradas
On 5/22/2018 12:50 PM, Ahmed Serag wrote:
> Thank
2005 Feb 06
3
Question about X100P card
Hello my brothers and sisters,
Is "X100P" card suitable to VoIP? and if "yes", am i need to only "X100P"
and "Asterisk" Package? or i need also to other cards or packages?
and if "X100P" card not suitable to VoIP, please recommend a another card,
(please take in your account that i would like to connect standard analog
line to the card
2002 Jul 01
2
I Need A Little Help...
Dear Samba Team,
I've been introduced to Samba lately and I used it to
share a ufs File System in an enterprise system to be
accessed through Windows Nt and Windows 2000.
I followed the installation steps and to be honest I
wasn't sure that the system will run because I lack in
experience with this software, also because I was
using instructions from a Samba book that I think was
talking
2018 May 22
4
remove rows of a matrix by part of its row name
Dear R-experts,
How can I remove a certain feature or observation by a part of its name. To be clear, I have a matrix with 766 observations as a rows. The row names are like this
70/556
71.1/280
72.1/556
72.1/343
73.1/390
73.1/556
Now I would like to remove all the rows that contain the text 73.1
Any ideas or suggestion please ?
Regards
**********************
Ahmed Serag
Analytical
2008 Jan 25
2
Help Me to Adjust the R Code
Hi,
The following code, from Angelo Canty article on line "Resampling Methods in R: the boot Package, 2002", works fine for Angelo Canty using R 2.6.0 on Windows XP.
It also works for me using R 1.2.1 and S-PLUS 2000 on Windows XP after installing the S-PLUS bootstrap library, with slight differences in my outputs.
> library(boot)
> library(survival)
>
2011 Jan 29
1
How do I do this with mdbox?
In my life with Maildir, mails were stored as single files, each mail per
file.
It was pretty easy to resend an e-mail from a Maildir folder to another
address, by causing the mail to be re-injected into my MTA (Exim) queue for
processing:
I'd use a very simple shell script to achieve the above:
#!/bin/sh
email=$(find $*)
{
for x in ${email};
do
sendmail president at egypt.gov <
2018 May 22
0
remove rows of a matrix by part of its row name
Hello,
Use grep to get the row indices and then subset with a *negative* index
to remove those rows.
rn <- scan(what = character(), text = "
70/556
71.1/280
72.1/556
72.1/343
73.1/390
73.1/556
")
mat <- matrix(rnorm(6*6), nrow = 6)
row.names(mat) <- rn
inx <- grep("73\\.", row.names(mat))
new_mat <- mat[-inx, ]
new_mat
Hope this helps,
Rui Barradas
On
2009 Mar 18
1
lm function (PR#13608)
Full_Name: Michael Aaron Karsh
Version: 2.8.0
OS: Windows XP
Submission from: (NULL) (75.61.109.172)
I tried using the lm function to regress the third column listed below on the
second column listed below. It gave me an error message. My code is below.
> HDISWLSdata=read.table("RHDISWLS.txt")
> HDISWLSdata
V1 V2 V3
1 DENMARK
2002 Jan 31
2
Help with Bootstrap function.
Dear List
I am using R with mcgv package to model spatial variation in density estimates of dorcas gazelle in Sinai. I have 59 points of data and 4 explanatory variables(distance from mountain edge, camel presence, Latitude & Longitude). I want to test the model fir via bootstraping. I have used the jacknife bootstraping but it have the limitation of allowing only 58 trials. I tried to use the
2024 Nov 18
0
[Bug 1645] feature request: adding permanent set elements into a set with timeout enabled
https://bugzilla.netfilter.org/show_bug.cgi?id=1645
Pablo Neira Ayuso <pablo at netfilter.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Resolution|--- |FIXED
Status|NEW |RESOLVED
--- Comment #1 from Pablo Neira Ayuso
2024 Nov 17
0
[Bug 1645] feature request: adding permanent set elements into a set with timeout enabled
https://bugzilla.netfilter.org/show_bug.cgi?id=1645
kfm at plushkava.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Blocks| |1461
CC| |kfm at plushkava.net
Referenced Bugs:
2008 Apr 19
3
Wine LGPL version
I can't understand what version of the LGPL you are using for the Wine source code.
> Wine is free software. The licensing terms are the GNU Lesser General Public License.
There are 2 links in your main page:
the first links to the official LGPL v3 page http://www.gnu.org/copyleft/lesser.html
the second links to a page of the WineHQ site, showing the LGPL v2.1
2008 May 11
2
UnKnownAction exception
Hi all,
i''m new in ruby on rails.
i created a controller which has 2 views index, add_to_cart
& inside index i created "button_to" which references to add_to_cart
view, but when i click on this button UnKnownAction exception appear
to me, i don''t know why this happen
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are