search for: datasize

Displaying 20 results from an estimated 121 matches for "datasize".

Did you mean: data_size
2008 Aug 14
2
Process size.
...RES STATE C TIME WCPU COMMAND 36032 root 2838 44 0 1917M 1493M ucond 0 406:39 3.03% CGServer ... $cat /boot/loader.conf.local ... kern.maxdsiz="1073741824" kern.maxssiz="134217728" kern.dfldsiz="1073741824" $limits Resource limits (current): ... datasize 1048576 kB stacksize 131072 kB How and why is it possible for process to grow up to 1493M and even more? I suppose, it will be able to eat all available system memory (was killed). Thank you for answers. -- Sincerely, Sergey Chumakov
2008 Jun 13
3
dynamically change frequency in periodicalUpdater
...before it finishes processing (displaying as a visual indicator) all the data, the next request is sent to the server. I''d like to have a periodicalUpdater whose frequency can be set bases on the size of the result set. I''ve tried to set onSuccess: function() { this.frequency = dataSize * 5; } While this does change this.frequency, but when I tried to alert(this.frequency) in subsequent onCreate callback, it remains the value the PU is initialized with. (and the PU updates according to the initial frequency). Is there a way to change frequency in the exposed onSuccess or onCrea...
2012 Jul 31
1
[PATCH] xfs: add new api xfs-growfs
...n/xfs.c b/daemon/xfs.c index e0f0062..97da3f1 100644 --- a/daemon/xfs.c +++ b/daemon/xfs.c @@ -348,3 +348,122 @@ error: free_strings (lines); return ret; } + +guestfs_int_xfsinfo * +do_xfs_growfs (const char *path, + int datasec, int logsec, int rtsec, + int64_t datasize, int64_t logsize, int64_t rtsize, + int64_t rtextsize, int32_t maxpct) +{ + +#define MAX_ARGS 64 + + int r; + char *buf; + char *out = NULL, *err = NULL; + char **lines = NULL; + guestfs_int_xfsinfo *ret = NULL; + const char *argv[MAX_ARGS]; + char datasize_s[64]; + char logsi...
2012 Jan 10
1
How to run a vb6 client server application with mysql datase using wine
Hi, i am a newbie to wine. . . . I am having a windows application that was written in vb6 and having db bankend as mysql. I tried to run this app on wine it does not work. Kindly give me instructions on getting it run. . . Thanks.
2014 Apr 15
1
ignoring malformed3 datagram packet
...; clients. For these I observe the following: 1) On the AD Member Server periodically (every hour) appears a message in log.nmbd similar to the following for each of the two clients: [2014/04/15 13:47:46, 0] ../source3/nmbd/nmbd_packets.c:1289(process_dgram) process_dgram: ignoring malformed3 (datasize = 494, len=408, off=100) datagram packet sent to name MYDOM<00> from IP 192.168.0.107 2) On at least one of the clients the file shares from the AD Member Server disconnect from time to time, especially when the client has not been touched for a while. This means that the mounted network dri...
2017 Jun 16
2
simplify CFG Pass in llvm
...et i5 0 else: ; preds = %entry %gclone4 = alloca i64 store i64 0, i64* %gclone4 ret i5 0 continuation: ; No predecessors! %iftmp = phi i32 [ 32, %then ], [ 64, %else ], !range !0 %datasize = alloca i32 store i32 %iftmp, i32* %datasize %g = alloca i8 ---------------------> Issue store i8 0, i8* %g ---------------------> Issue ret i5 0 } Can someone please explain why this error crops up ? Isn't the API supposed to handle this ? Thanks, Malhar...
2006 Jul 21
2
rpart unbalanced data
Hello all, I am currently working with rpart to classify vegetation types by spectral characteristics, and am comming up with poor classifications based on the fact that I have some vegetation types that have only 15 observations, while others have over 100. I have attempted to supply prior weights to the dataset, though this does not improve the classification greatly. Could anyone supply some
2005 Dec 24
0
[LLVMdev] Weird memory bug
This was indeed a memory issue - the hard datasize limit on my freebsd box was 512 mb and this opt went over. Increasing hard limit fixed the problem. However, most unices have a 512mb limit - maybe insanely huge functions as this one should be automagically split somewhere? On Dec 24, Alexander Friedman wrote: > > After running through b...
2009 Apr 26
3
3 questions regarding matrix copy/shuffle/compares
...uot;len" # create_bin_Chromosome <- function(len) { sample(0:1, len, replace=T) } ############## create_population ################### # create population of chromosomes of length len # the matrix contains twice as much space as popsize # create_pop_2 <- function(popsize, len) { datasize=len*popsize print(datasize) npop <- matrix(0, popsize*2, len, byrow=T) for(i in 1:popsize) npop[i,] = create_bin_Chromosome(len) npop }
2005 Dec 24
4
[LLVMdev] Weird memory bug
After running through bugpoint, I get this reduced function You can reproduce the problem with: opt bugpoint-reduced-function.bc -break-crit-edges -adce -verify Bugpoint is currently trying to narrow down which block breaks this, but is so far failing. It seems to be running out of memory rather than failing on a particular block. This is on freebsd 5.4, X86, llvm is compiled with gcc 3.4.2
2003 Sep 13
4
Large memory issues on 4-STABLE
...)" options MAXSSIZ="(128*1024*1024)" options DFLDSIZ="(512*1024*1024)" Now here's the problem, consistent with three versions of 4-STABLE over the last couple of weeks and finally yesterday. Everything works perfectly as abve except that limit reports datasize 2048000 kbytes - which kind of makes sense given the figures above. However, the guys want to be able to use all the RAM, not just 2GB If I increase MAXDSIZ to 2048 then limit reports datasiz unlimited but mysql will not run, unfortunatly I've lost the log file from then but it was something...
2008 Oct 25
2
kern.maxdsiz on amd63 with i386 binaries
...se more than the i386 default of 512MB no matter what we set kern.maxdsiz to. I've also tried compiling it into the kernel, which results in the same issue. I tried starting the app with "limits -d 1090519040", and it seems to fail as well. Limits does show the proper value for datasize of 1064960 kB. We're locked into 32-bit binaries for this app at the moment thanks to some uh... interesting libraries it uses, so the usual option of recompile isn't available. I'd like to avoid traveling from San Jose to Seattle, then Virginia, then Munich to reinstall the am...
2017 May 26
2
Moving instructions from source Basic Block to dest Basic Block
...blocks , After looking at the API , I found llvm::Instruction::clone() but there is no result value for this. For example- source Basic block : continuation: ; preds = %else, %then %iftmp = phi i32 [ 5, %then ], [ 9, %else ] store i32 %iftmp, i32* %datasize ; 3 instructions below being copied store i8000000 0, i8000000* %res %res4 = load i8000000, i8000000* %res ret i8000000 %res4 After copying the 3 instructions above to destination basic block. destination basic block : else: ; preds = %entry...
2009 Sep 11
0
ipred bagging segfault on 64 bit linux build
...of R 2.8.1 on a linux machine. If you want more details, I can surely get them. It happens on the last line for the following for all different valies of ns: library(rpart) library(ipred) data("Forbes2000", package="HSAUR") Forbes2000 <- subset(Forbes2000, !is.na(profits)) datasize=length(Forbes2000$profits) f <- rpart(profits ~ assets + marketvalue + sales, data=Forbes2000) fb <- bagging(profits ~ assets + marketvalue + sales, data=Forbes2000) fb <- bagging(profits ~ assets + marketvalue + sales, data=Forbes2000, nbagg=100,coob=TRUE) fb <- bagging(...
2003 Jun 14
1
rsync out of memory problem
...pectedly closed (8 bytes read so far) rsync error: error in rsync protocol data stream (code 12) at /usr/common/src/rsync-2.5.6/io.c(165) However, rsync has only increased in resident size to about 72 MB at this point, while I have limits of: cputime unlimited filesize unlimited datasize 8192MB stacksize 1024MB coredumpsize unlimited resident 16033MB descriptors 4096 addressspace 8192MB Any comments? I have not seen anything in the archives that addresses this. Thanks, -smt
2011 Aug 29
1
Samba 3.5.6 - malformed datagram
Hi guys, I'm having a little problem I would ask your help. I have followed the log of my samba (log.nmbd) and several times I see the message: process_dgram: ignoring malformed3 (datasize = X, len = Y, off = Z) datagram packet sent to name DOMAIN <00> from IP XXX,XXX,XXX,XXX Is there any way to fix this problem? I'm using Samba 3.5.6 integrated with LDAP server on a Debian Lenny 5.0.8. Thanks Daniel
2013 Jan 22
1
Concatenate two lists, list by list
Dear all, I would like to concatenate the lists below str(Part2$dataset) List of 3  $ : num [1:16001] 0 0 0 0 0 0 0 0 0 0 ...  $ : num [1:16001] 0 0 0 0 0 0 0 0 0 0 ...  $ : num [1:16001] 0 0 0 0 0 0 0 0 0 0 ... str(Part1$dataset) List of 3  $ : num [1:16001] 0 0 0 0 0 0 0 0 0 0 ...  $ : num [1:16001] 0 0 0 0 0 0 0 0 0 0 ...  $ : num [1:16001] 0 0 0 0 0 0 0 0 0 0 ... I tried concatenating
2019 May 16
2
How data is laid out in default.profraw when doing profiling?
...don't know how data is laid out in `default profraw` file. We found a struct ProfDataIOVec in InstrProfilingWriter.c in compiler-rt and followed this layout. ``` ProfDataIOVec IOVec[] = { {&Header, sizeof(__llvm_profile_header), 1}, {DataBegin, sizeof(__llvm_profile_data), DataSize}, {CountersBegin, sizeof(uint64_t), CountersSize}, {SkipNameDataWrite ? NULL : NamesBegin, sizeof(uint8_t), NamesSize}, {Zeroes, sizeof(uint8_t), Padding}}; ``` This helped us successfully passed some small cases(not know for sure whether the coverage result is true, but we can...
2008 May 16
1
64-bit R and cache memory
...ory R uses. ----------------------------------- Computer & software info: OS: kUbuntu Feasty Fawn 7.04 (64-bit) Processor: AMD Opteron 64-bit R: version 2.7.0 (64-bit) Cache memory: currently 16 GB (was 2 GB) Outcome of 'limit' command in shell: cputime unlimited, filesize unlimited, datasize unlimited, stacksize 8192 kbytes, coredumpsize 0 kbytes, memoryuse unlimited, vmemoryuse unlimited, descriptors 1024, memorylocked unlimited, maxproc unlimited ----------------------------------- a. We have recently upgraded the cache memory from 2 to 16 GB. However, we have noticed that someho...
2010 Mar 11
2
Comparing matrices
...m to confirm this, but I'd rather be sure. ------- code ------------ # create a binary vector of size "len" create_bin_Chromosome <- function(len) { sample(0:1, len, replace=T) } # create popsize members, each of length len create_pop_2 <- function(popsize, len) { datasize=len*popsize npop <- matrix(0, popsize, len, byrow=T) for(i in 1:popsize) npop[i,] = create_bin_Chromosome(len) npop } POP_SIZE = 3 LEN = 8 pop = create_pop_2(POP_SIZE, LEN) pop2 = pop print(pop==pop2) if (pop==pop2) { cat('equal\n') } else { cat('NOT equal\n'...