search for: intershop

Displaying 20 results from an estimated 26 matches for "intershop".

2003 Dec 05
1
OpenSSH Contrib/solaris buildpkg.sh
...minor point - maybe you should mention the rm -rf $FAKE_ROOT command within your README file: It caught me unexpected and I was looking a couple of minutes for the package artifact before I actually read the last line. Regards, Burkhard Kohl Lead Engineer Content Management burkhard.kohl at intershop.de INTERSHOP? http://www.intershop.de INTERSHOP Communications AG Dircksenstra?e 42-44 D-10178 Berlin Phone +49-30-2801-1254
2009 May 18
11
Zfs and b114 version
http://dlc.sun.com/osol/on/downloads/b114/ This URL makes me think that if I just sit down and figure out how to compile OpenSolaris, I can try b114 now^h^h^h eventually ? I am really eager to try out the new quota support.. has someone already tried compiling it perhaps? How complicated is compiling osol compared to, say, NetBSD/FreeBSD, Linux etc ? (IRIX and its quickstarting??) --
2005 Jan 12
2
mydataframe$colname: using substring of colname may also match some column (PR#7496)
Full_Name: Marc Mamin Version: 1.8, 2.0.0 OS: Windows & Linux Submission from: (NULL) (217.17.202.254) Using only the beginning of a column name will match it: >aaa<-1 >df<-as.data.frame(aaa) >names(df) [1] "aaa" >df$a [1] 1 !!!!!!!!! (I expect df$a to be undefind) >df$x >NULL Compare with: > df["aaa"] aaa 1 1 > df["a"]
2004 Nov 23
2
sorting without order
Hello, In order to increase the performance of a script I'd like to sort very large vectors containing repeated integer values. I'm not interesting in having the values sorted, but only grouped. I also need the equivalent of index.return from the standard "sort" function: f(c(10,1,10,100,1,10)) => grouped: c(10,10,10,1,1,100) ix: c(1,3,6,2,5,4) is there a way
2010 Apr 30
3
Announce: Lustre 1.8.3 is available!
...software/products/lustre/get.jsp Our forwarding link has not yet been updated but should be shortly, so you can either find your way in through: http://www.sun.com/downloads/index.jsp?tab=2#L and look for Lustre 1.8.3 near the bottom of the "L" section. or https://cds.sun.com/is-bin/INTERSHOP.enfinity/WFS/CDS-CDS_SMI-Site/en_US/-/USD/ViewProductDetail-Start?ProductRef=LUSTRE-183-G-F at CDS-CDS_SMI The change log and release notes can be read here: http://wiki.lustre.org/index.php/Use:Change_Log_1.8 *PLEASE NOTE:* Some ChangeLog entries were added after v1_8_3_RC1 was tagged. The mis...
2010 Apr 30
3
Announce: Lustre 1.8.3 is available!
...software/products/lustre/get.jsp Our forwarding link has not yet been updated but should be shortly, so you can either find your way in through: http://www.sun.com/downloads/index.jsp?tab=2#L and look for Lustre 1.8.3 near the bottom of the "L" section. or https://cds.sun.com/is-bin/INTERSHOP.enfinity/WFS/CDS-CDS_SMI-Site/en_US/-/USD/ViewProductDetail-Start?ProductRef=LUSTRE-183-G-F at CDS-CDS_SMI The change log and release notes can be read here: http://wiki.lustre.org/index.php/Use:Change_Log_1.8 *PLEASE NOTE:* Some ChangeLog entries were added after v1_8_3_RC1 was tagged. The mis...
2003 Jul 18
0
line colors in lattice.xyplot with png device
On Friday 18 July 2003 12:28, r-help-request at stat.math.ethz.ch wrote: > Message: 9 > Date: Thu, 17 Jul 2003 13:50:29 +0200 > From: Marc Mamin <M.Mamin at intershop.de> > Subject: [R] line colors in lattice.xyplot with png device. > To: r-help at stat.math.ethz.ch > > Hi, > > R is very new for me, so excuse if my questions are too basic... > > ????????BTW, are there any forum ?where new R users could get help without > ????????ann...
2004 Oct 20
2
does R provides a wait or pause function?
Hello, I'd like to insert a "wait" function in my code. The reason is that I output timestamped files and I want to ensure that at least 1 second separes 2 files to avoid overwriting the previous file. Thanks, Marc Mamin
2004 Oct 27
1
regexp,grep: capturing more than one substring
Hello, I would like to have a function that retrieve matching strings in the same way as with java.util.regex (java 1.4.2). Example: f('^.*(xx?)\\.([0-9]*)$','abcxx.785') => c('xx','785') First of all: Is it possible to achiev this with grep(... perl=TRUE,value=TRUE )? As I would call this function very often with large data, I'm reluctant to use Sjava
2003 Jun 02
1
Two * Questions
...alling to have an extension attempt to ring a series of numbers, eventually dropping to voicemail? Regards, Jason Smith | Tier-1 Co-location for Gaming/VoIP | (800)710-8004 x401 argonblue.com | *Starting* at $18/U and $100/Mbps! | jsmith@argonblue.com Co-locate with BMW USA, InterShop, HP, Charge.com and numerous banks and other companies who rely on a multi-gigabit private backbone with 300+ peers!
2008 Feb 04
1
New hardware to run CentOS
As I say before, I'm running databases with a lot of users on a CentOS4x server. Somebody ask me to search the latest hardware to migrate my databases to this new server. I have now an HP EVA8000 storage with a lot of hdds, so I want know which is the best hardware to get the best performance with my storage (HP-EVA8000). Any idea will be appreciate. Thanks in advance. Regards, Israel,
2005 Feb 21
2
character occurence within a string
Hello, I'm looking for a function that counts the occurences of a given character within a string. f('|','ab|c|d') => 2 More precisely, I need to complete a vector of strings to ensure that all elements have the same count of a "separator": a|b|c a |a|b|c|d => a|b|c|| a|||| |a|b|c|d I guess that scan makes use of an internal function that would do
2005 Jun 17
1
Re: screen fonts -- LCD and Analog Connections ...
Ryan wrote: > I did, 1024x768. > Sorry, analog Matthew Miller wrote: > Maybe the problem is just in that adjustment, then. Yes. You need to have your signaling _exact_ when dealing with LCDs. Some are very good at taking the timings of VESA standards. But some support some eccentric Windows timings that are _not_ the exact same as VESA. Or maybe you have configured your monitor for
2004 Sep 29
4
multiple match question
Hello, I'm looking for a fast way to retrieve the position of elements from a vector which match element in another vector. Example va<-c('a','e') vb<-c('a','b','c','d','e','f','e') f(va,vb) should return c(1,5,7) I have 2 different cases: I) my vector vb contains only distinct values II) my vector vb may
2003 Jul 09
2
RODBC and Oracle: error "table does not exist"
Dear r-helpers! I have trouble reading data from an Oracle data base using RODBC Version 1.0-3, R Version 1.7.1, Windows XP, Oracle8 ODBC Driver Version 8.1.6.4.0: > library(RODBC) > channel <- odbcConnect(dsn="PAV32", case="oracle", believeNRows=FALSE) > # ok, this was succesful > x <- sqlTables(channel) > x[37, ] TABLE_CAT TABLE_SCHEM TABLE_NAME
2003 Jul 25
0
RODBC.sqlSave and Date format on Oracle
Hi, I try to use sqlSave to fill a date column in Oracle. value example: '05-JUL-03 13:35:09' sqlSave does not throw any error, but my table remain empty does anyone have experience with this ? Thanks, Marc Mamin
2003 Sep 18
1
lattice, trellis.device, dev.off() within a condition (seems t o be a bug)
Hi, I have a strange issue under W2K; consider these two code extracts: 1) if(condition a){ trellis.device(png,filename = filename_a,... xyplot(... dev.off() } 2) if(condition a){ trellis.device(png,filename = filename_a,... xyplot(... } dev.off() In 1), The png file is generated, but empty; in 2), where I've taken the dev.off clause out of the condition block, my plot is
2003 Sep 19
2
extracting the levels of a subset of data
Hi, > tmpdata<-subset(myd, TYPE=="A") > levels(tmpdata$TYPE) > [1] "A" "B" "C" I'd like to get only "A" as output... Thanks for your help Marc
2004 May 07
1
Problem (Bug?) with readLines on Suze
Hello, I called readLines on Suze 9.0 with a directory as parameter instead of a file. R freezed for a very long time; this morning I could read following error message: Error in readLines(paste("/home/",foo,"/",sep="")) : cannot allocate buffer in readLines under W2K I get a more logical error ("cannot open file") (I'm still using R 1.8.1)
2004 Jun 03
1
catching the warnings
Hello, I'd like to catch the warnings in a variable in order to evaluate them, but... > tt<-warnings() Warning messages: 1: XML Parsing Error: test.xml:2: xmlParseStartTag: invalid element name 2: XML Parsing Error: test.xml:3: Extra content at the end of the document > tt NULL is there a way to achieve this (R1.8.1)? thanks, Marc