search for: prod

Displaying 20 results from an estimated 1519 matches for "prod".

2019 Feb 14
3
32 seconds vs 72 minutes -- expected performance difference?
Saurabh Nanda <saurabhnanda at gmail.com> writes: > I found something interesting in /proc/fs/cifs/Stats. Notice the > "QueryDirectories > Failed" number. This keeps increasing as along as `ls > -lR` is running. That's interesting indeed. The verbose logs and network trace would tell us more. -- Aurélien Aptel / SUSE Labs Samba Team GPG: 1839 CB5F 9F5B FB9B AA97
2019 Feb 15
0
32 seconds vs 72 minutes -- expected performance difference?
...-set-up-mount-namespacing-invalid-argu if you feel that this might be relevant. Further, I can confirm that systemd-resolved had NOT crashed when the following logs were obtained: ## OPERATION 1 - `ls debug.log` -- simply listing a single file. Does anything seem wrong with this? Feb 15 05:41:09 prod-backoffice kernel: [57077.470310] /build/linux-Y38gIP/linux-4.15.0/fs/cifs/inode.c: CIFS VFS: in cifs_revalidate_dentry_attr as Xid: 1225875 with uid: 0 Feb 15 05:41:09 prod-backoffice kernel: [57077.480006] /build/linux-Y38gIP/linux-4.15.0/fs/cifs/dir.c: name: \debug.log Feb 15 05:41:09 prod-backo...
2010 Apr 26
5
data frame
...YEAR VAR EC01 2006 100 EC01 2007 200 EC02 2006 500 EC02 2007 450 PROD 2006 567 PROD 2007 543 What I would like to do is to divide each variables by PROD,namely: EC01(2006)/PROD(2006) EC01(2007)/PROD(2007) EC02(2006)/PROD(2006) EC02(2007)/PROD(2007) Anyone knows how...
2009 Feb 11
1
Compiling Matrix on Solaris 10 x86-64 Sun Studio 12
...type 'application/x-gzip' length 1954872 bytes (1.9 Mb) opened URL ================================================== downloaded 1.9 Mb * Installing *source* package 'Matrix' ... ** libs cc -m64 -I/home/choid/bin/R281/lib/R/include -I./UFconfig -I/usr/local/include -I/opt/SUNWspro/prod/include -I/usr/include -I/usr/sfw/include -KPIC -O -I/opt/SUNWspro/prod/include -c CHMfactor.c -o CHMfactor.o cc -m64 -I/home/choid/bin/R281/lib/R/include -I./UFconfig -I/usr/local/include -I/opt/SUNWspro/prod/include -I/usr/include -I/usr/sfw/include -KPIC -O -I/opt/SUNWspro/prod/include -...
2010 Apr 01
1
how to construct a time series
Hi, I need to generate the time series of the production, but as I'm new to this topic I am not able to do that. This is what the time series should be: PROD(t)=PROD(t,T) PROD(t-1)=PROD(t-1,T) PROD(t-2)=PROD(t-1)*PROD(t-2,T-1)/PROD(t-1,T-1) PROD(t-3)=PROD(t-2)*PROD(t-3,T-2)/PROD(t-2,T-2) ... ... ... from PROD(t-2)...it will get the same expre...
2017 Jun 29
2
sieve/vacation: bad parsing of 'References' header
...r in the sieve plugin. If I send an email containing the 'References' field with multiple values like this: References: <56CF3A8E.3060603 at email.com> ?<74cc03f4-899f-e76f-81ea-d0e8a0efce9e at email.com> ?<CY1PR1001MB11630EC0D1DD48FBB12DDAC1DE090 at CY1PR1001MB1163.namprd10.prod.outlook.com> ?<db3ee17f-33eb-b15c-8599-60b6dfa623e0 at email.com> ?<YTXPR01MB01112EB28C7BECB5A5EF14C5DEE10 at YTXPR01MB0111.CANPRD01.PROD.OUTLOOK.COM> ?<734f9013-c4a2-eab4-9c0d-2cfc3deafaee at email.com> ?<YTXPR01MB0111660D7D5A73451F3E5B66DEE00 at YTXPR01MB0111.CANPRD01.PROD...
2008 Apr 21
4
prod(0, 1:1000) ; 0 * Inf etc
I think most of us would expect prod(0:1000) to return 0, and ... ... it does. However, many of us also expect prod(x1, x2) to be equivalent to prod(c(x1,x2)) the same as we can expect that for min(), max(), sum() and such members of the "Summary" group. Consequently, prod(0, 1:1000) should also return 0, but a...
2006 Jul 19
3
error when compiling "stats" library in R-2.3.1 on Solaris x86
...I tried to compile v2.3.1 on Solaris x86 with SUN Pro compilers. I had an error while stats libarary was being compiled and I notice that "-xtarget=generic64" was not passed to f95 while cc used it. Could you tell me how to fix this problem? f95 -PIC -O -I/mounts/devel/SUNWspro/prod/include -c sgram.f -o sgram.o f95 -PIC -O -I/mounts/devel/SUNWspro/prod/include -c sinerp.f -o sinerp.o f95 -PIC -O -I/mounts/devel/SUNWspro/prod/include -c sslvrg.f -o sslvrg.o f95 -PIC -O -I/mounts/devel/SUNWspro/prod/include -c stxwx.f -o stxwx.o f95 -PIC -O -I/mounts/devel/SUNWspro/...
2017 Jun 02
5
RFC: Killing undef and spreading poison
...hings, and I haven't been convinced that you >> lose optimization power except in code that actually exhibits undefined >> behavior. > > I'm not sure I understood your concern fully, but you could have cases like: > > for (...) { > if (condition){ > i32 prod = x *nsw y > i64 prod.sext = sext prod to i64 > i64 t = K `udiv` (-1 + (sum.prod >> 32)) > use(t) > } > } I'm sure it is obvious to you, but there's a typo here -- it should have been "i64 t = K `udiv` (-1 + (prod.sext >> 32))" > The C program...
2016 Nov 11
2
RFC: Killing undef and spreading poison
...out > counterfactuals for these things, and I haven't been convinced that you > lose optimization power except in code that actually exhibits undefined > behavior. I'm not sure I understood your concern fully, but you could have cases like: for (...) { if (condition){ i32 prod = x *nsw y i64 prod.sext = sext prod to i64 i64 t = K `udiv` (-1 + (sum.prod >> 32)) use(t) } } The C program this came from is well defined in two cases (that are relevant here): 1. condition is false 2. condition is true and x * y does not sign overflow We'd li...
2023 Jun 30
1
remove_me files building up
...isk usage increase and drop throughout the day on the data nodes for brick2 and brick3 as well, but while the arbiter follows the same trend of the disk usage increasing, it doesn't drop at any point. This is the output of some gluster commands, occasional heal entries come and go: root at uk3-prod-gfs-arb-01:~# gluster volume info gv1 Volume Name: gv1 Type: Distributed-Replicate Volume ID: d3d1fdec-7df9-4f71-b9fc-660d12c2a046 Status: Started Snapshot Count: 0 Number of Bricks: 3 x (2 + 1) = 9 Transport-type: tcp Bricks: Brick1: uk1-prod-gfs-01:/data/glusterfs/gv1/brick1/brick Brick2: uk2-pr...
2023 Jul 03
1
remove_me files building up
...sk usage increase and drop throughout the day on the data nodes for brick2 and brick3 as well, but while the arbiter follows the same trend of the disk usage increasing, it doesn't drop at any point. This is the output of some gluster commands, occasional heal entries come and go: root at uk3-prod-gfs-arb-01:~# gluster volume info gv1 Volume Name: gv1Type: Distributed-ReplicateVolume ID: d3d1fdec-7df9-4f71-b9fc-660d12c2a046Status: StartedSnapshot Count: 0Number of Bricks: 3 x (2 + 1) = 9Transport-type: tcpBricks:Brick1: uk1-prod-gfs-01:/data/glusterfs/gv1/brick1/brickBrick2: uk2-prod-gfs-01:...
2004 Nov 08
4
About 'choose' function
...;my.choose' below. But when I used them instead of choose(6000,20), they didn't give me any answer. What is the difference between 'choose', 'my.choose1', and 'my.choose2' below? That is, what is behind 'choose' function and what's the problem using 'prod' or 'gamma' function? Thanks a lot. John ########## > choose(6000,20) [1] 1.455904e+57 > > my.choose1 <- function(x,y) { prod(1:x)/(prod(1:y)*prod(1:(x-y))) } > my.choose1(6000,20) [1] NaN > > my.choose2 <- function(x,y) { gamma(x+1)/(gamma(y+1)*gamma(x-y+1))...
2023 Jul 04
1
remove_me files building up
Hi, Thanks for your response, please find the xfs_info for each brick on the arbiter below: root at uk3-prod-gfs-arb-01:~# xfs_info /data/glusterfs/gv1/brick1 meta-data=/dev/sdc1 isize=512 agcount=31, agsize=131007 blks = sectsz=512 attr=2, projid32bit=1 = crc=1 finobt=1, sparse=1, rmapbt=0 =...
2011 May 20
1
DocumentTermMatrix - text minig
...change my data from data.frame to Corpus or VCorpus. Globina ACKlasifikacija Opis GlobinaOd GlobinaDo Vodja 3671 8 GP SLABO GRADUIRAN PE©ÈEN PROD DO r = 70 mm, PREVLADUJE DO r = 30 mm, GOST, SIV 0.30 4.05 Beljsak 3675 12 GP SLABO GRADUIRAN PE©ÈEN PROD DO r = 80mm, PREVLADUJE DO r = 30mm, GOST, VLA®EN DO MOKER, SIV 0.40 7.50 Kovacic 3684 8 GP SLABO GRADUIR...
2017 Jun 29
0
sieve/vacation: bad parsing of 'References' header
...Pigeonhole is this? This looks like a problem that was solved ages ago. Regards, Stephan. > > References: <56CF3A8E.3060603 at email.com> > <74cc03f4-899f-e76f-81ea-d0e8a0efce9e at email.com> > <CY1PR1001MB11630EC0D1DD48FBB12DDAC1DE090 at CY1PR1001MB1163.namprd10.prod.outlook.com> > <db3ee17f-33eb-b15c-8599-60b6dfa623e0 at email.com> > <YTXPR01MB01112EB28C7BECB5A5EF14C5DEE10 at YTXPR01MB0111.CANPRD01.PROD.OUTLOOK.COM> > <734f9013-c4a2-eab4-9c0d-2cfc3deafaee at email.com> > <YTXPR01MB0111660D7D5A73451F3E5B66DEE00 at YTX...
2004 Feb 20
1
ocfs hung
having a problem with ocfs. device /dev/sdd mounted on 2 nodes, node 0 and node 1 tried to create file /u01/oracle/prod/proddata/temp01.dbf from node 1 (ALTER TABLESPACE TEMP ADD TEMPFILE...) caused oracle server process to hang in a "D" state apparently trying to create the file. the file has not been created yet. If I type "ls" from node 2 in directory /u01/oracle/prod it lists the contents o...
2023 Jul 04
1
remove_me files building up
...ce on the bricks, increase the maxpct to a bigger value, like:xfs_growfs -m 80 /path/to/brickThat will set 80% of the Filesystem for inodes, which you can verify with df -i /brick/path (compare before and after).?This way?you won?t run out of inodes in the future. Of course, always test that on non Prod first. Are you using the volume for VM disk storage domain ? What is your main workload ? Best Regards,Strahil Nikolov? On Tuesday, July 4, 2023, 2:12 PM, Liam Smith <liam.smith at ek.co> wrote: #yiv8784601153 P {margin-top:0;margin-bottom:0;}Hi, Thanks for your response, please find the...
2008 Aug 18
2
matrix row product and cumulative product
I spent a lot of time searching and came up empty handed on the following query. Is there an equivalent to rowSums that does product or cumulative product and avoids use of apply or looping? I found a rowProd in a package but it was a convenience function for apply. As part of a likelihood calculation called from optim, I?m computing products and cumulative products of rows of matrices with far more rows than columns. I...
2023 Jul 04
1
remove_me files building up
...on the bricks, increase the maxpct to a bigger value, like: xfs_growfs -m 80 /path/to/brick That will set 80% of the Filesystem for inodes, which you can verify with df -i /brick/path (compare before and after). This way you won?t run out of inodes in the future. Of course, always test that on non Prod first. Are you using the volume for VM disk storage domain ? What is your main workload ? Best Regards, Strahil Nikolov On Tuesday, July 4, 2023, 2:12 PM, Liam Smith <liam.smith at ek.co> wrote: Hi, Thanks for your response, please find the xfs_info for each brick on the arbiter below...