search for: intanc

Displaying 20 results from an estimated 22 matches for "intanc".

Did you mean: intance
2005 Feb 22
1
Multiple OCFS intances in the same LAN
Hi, is it possible and safe to use more than one RAC-Cluster using OCFS in the same LAN? I'm considering to following setup: a 2-node production and a 2-node test system, the production data is stored in an EMC Symmetrix and for the test-system the production data is copied once to a BCV disk internally. This will give me an new independant copy of the production disk with the same contents,
2011 Dec 03
2
Questions about single intance storage
Hello We are using dovecot 2.0.16 with mdbox+zlib. We are now testing SiS (Single Instance Storage) and I have 5 questions: 1? Is possible to "dedup" existing mdboxes? 2? Are attachments compressed with zlib if mdboxes already use zlib? 3? I have plenty CPU to spare, should I use a low value of mail_attachment_min_size , like 16KB ? 4? Can I "undo" SiS if I have
2005 Nov 18
10
[Request] file_column configurability
I wasn''t sure where to email this request, so I am hoping the author of file_column actually sees this. I was wondering if there were any plans to allow some configurability in the file_column plugin. By configurability I mean allowing the developer to define which table column is used as the unique identifier when creating image folders. Right now it seems like it uses the ID of the
2006 Mar 24
5
problems with ".this"
...itialize : function(array) { this.variable = "fooo"; this.array = array; }, function1 : function() { this.array.each(function(element){ alert(element); alert(this.variable); }); } }; and I intance it like this: var array = ("house", "car", "tree"); var newClass = new onewClass(array); newClass.function1(); The problem is that the alerts appear, but this.variable says "undefined", how can i do to make it say "fooo", as is declarated in the in...
2015 Nov 24
2
why rsync update large directory so slow?
...rsync -avvu --delete %src_dir%/Files/%%i %dst_dir%/Files --password-file=%pwd_file% --log-file=!log_file! --log-file-format="" ) ------------------------------------------------------------------------------------------------------ In order to make backup faster, I created many rsync intances with "-avvu" options. It seems worked, and only take about 5 hours to complete backup job. When I restarted the client bat script, and expect very little time to complete backup, but it still cost about 3 hours. It seems that concurrence makes no effect, I can not figure out what ha...
2004 Aug 24
1
Can I have same numbers in different contexts ?
Hi, I'd like to ask simple question. I have IVR menu in its own context. When I go into that IVR menu (new context), can I have also extension numbers that are same as in other contexts (1-10 for intance) or must they be unique ? Regards, Robert.
2005 Sep 19
1
Samples per frame.. fixed or variable with configuration?
...hing but noise out. I have verified that the input audio is righteous, as I save it to a file for diagnostic purposes. I have some questions: 1. Is it sufficient to obtain the frame size (in samples per frame) after setting the mode of encoder and decoder? Or might this figure change if (for intance), one set the quality of the encoder or enabled perceptual enhancement on the decoder? 2. Is there any external requirement to cater to endian-ness of the data passed to speex_encode() or speex_encode_int(), or does speex just like the native representation? How about for the float data outp...
2006 Aug 01
8
Decoupled observers for controllers?
In the Rails Recipes book the recipe "Keeping track of who did what" explains how to do decoupled observing of models. In my application I''d like to do a similar thing but watching the controllers. For example, when somebody hits the login method of the Security controller, I''d like to make a note of it. In this case I could observe the User model and watch for
2011 Feb 24
5
Config Deployment: baseline manifest to all hosts, different sudoers,autofs..etc(manifest) to hosts, by hostname?
...I have a global baseline config/ manifest that every host in each environment(dev/stg/prod) will get - that works great as well. My problem now is that we have different host "groups", that require different files set of files outside of what the global base_line manifest provides. for intance.. host that contain "wwwfe" in their host name need a different sudoers file then hosts that contain "profile" in thier hostname is there a way that i can say... provide the base_line to every machines/instance, but only provide the "www-sudoers" file to host that...
2004 Sep 21
2
Bootstrap ICC estimate with nested data
...[1]])/(as.numeric(VarCorr(tmod)[[1]])+as.numer ic(VarCorr(tmod)[[2]])) return(OUT)} Finally, I can run the bootstrap-t confidence limit function (or other functions) as follows: > bootout<-boott(1:nrow(TDAT),100,theta,data=TDAT) This seems to work, but the estimates also seem strange. For intance, the observed ICC value is larger than the 95% confidence intervals provided by the bootstrap. It occurs to me that the results might be strange because the sampling with replacement is being done without regard to group membership. That is, I might select individual 1 from group 1 10 times (eve...
2016 Feb 23
0
Fwd: Re: How to understand partition table on hybrid ISO image?
...bd7d3a3) seems > to add simply MBR to ISO. Is there anything else which makes a regular > bootable ISO to hybrid ISO? In addition, how should one understand > partition table on hybrid ISO image? Instead of using e.g. mkisofs then post-processing with isohybrid you could use xorriso. For intance: xorriso --as mkiosfs \ isohybrid-mbr /usr/share/syslinux/isohdpfx.bin <remaining options> In case of BIOS + EFI you could add options like: eltorito-alt-boot -e isolinux/efiboot.img \ isohybrid-gpt-basdat -no-emul-boot To check the content of the ISO image: xorriso -hfsplus on -indev <...
2008 Dec 05
0
applying a function several times
...seAllConnections() This function takes “well” and “syndic”, matching between them and then it does some transformations. The result is exported to “wellconop”. I will apply this function to one hundred different “wells”. Therefore, for each well I use, the “wellconop argument will change too. For intance if “well” is now well-2.csv, the function will be sec_conop(syndic='01syndic.txt',well='well-2.csv',wellconop='well-2.dat');closeAllConnections() I am trying to apply this function automatically to all “well” I have, but I do not find the way. The last I tried, for three...
2015 Nov 25
0
Slow backup
>>> I have a large directory with about 0 Milillion files in it to backup by network. Server and client both windows. >>> >>>In order to make backup faster, I created many rsync intances with "-avvu" options. It seems worked, and only take about 5 hours to complete backup job. >>>When I restarted the client bat script, and expect very little time to complete backup, but it still cost about 3 hours. >>>It seems that concurrence makes no effect, I can...
2008 May 18
4
[LLVMdev] Forward: Discussion about custom memory allocators for STL
...on demand when profiling shows > they are important. Absolutely! > Ideally, I would be able to do something like: > > MyRegion R; > std:set(R); > std::map(R); This is exactly the way, how I intended to use custom STL allocators. Doing it selectively on the container intance basis is very important. > etc, and have the nodes for both containers share the same pool. > We already have some things like this that we use in clang, check out > llvm/support/allocators.h. It is not the standard STL allocator > interface though, we need a simple adaptor....
2009 Sep 05
8
Color index in image function
Dear All, I was looking for the color index in?image function,?such as from topo.colors(n) and etc. but still never found it. For instance, from the help menu. ########################################### # Volcano data visualized as matrix. Need to transpose and flip # matrix horizontally. image(t(volcano)[ncol(volcano):1,]) # A prettier display of the volcano x <- 10*(1:nrow(volcano)) y
2006 May 18
4
How do you delete a session variable?
Hi Let''s say we set session[:foo] = ''bar''. Now we want to remove the :foo key completely. How do you do that? Appearantly, session is a CGI::Session [1] instance, so it doesn''t have #delete like Hash. I tried: session[:foo] = nil But then debug(session) shows an empty :foo key. I''d like to remove that key, as my session is already pretty crowded. Is
2006 May 09
5
Shared Queue / Exclusive Query Results
My application is going to have a work queue of scheduled tasks stored in the DB. This work queue will be shared across multiple Rails app servers. I need a way to ensure that no two servers get the same jobs if multiple servers pop jobs off the top of the queue simultaneously. Is there a fairly simple way to acheive this? Or do I need to come up with some fancy secondary server to dispatch
2006 Jun 16
2
How normal is this memory usage?
The following is from just two invocations of "mongrel_rails". Is this normal? 57M x 3 seems a little high to me. This is the latest pre-release, Debian sarge, on my VPS. Two Rails apps running against SQLite3, with Pound in front. top - 10:50:12 up 47 days, 12:09, 1 user, load average: 0.06, 0.03, 0.01 Tasks: 52 total, 2 running, 50 sleeping, 0 stopped, 0 zombie Cpu(s):
2007 Aug 02
3
Dovecot strong or not for a big Webmail architecture
Hello, Do you think Dovecot could handle millions of active users in a big architecture ? This cluster could be for example (each server is a bi quad Xeon 2.66 Ghz) : - 40 Dovecot servers - 4 LVS - 20 Apache+PHP - 2 Openldap - 20 Postfix + ClamAV + SpamAssassin - 1 NFS Netapps For millions of user it could be multiple different clusters of 40 Dovecot servers with 1 Netapp for each cluster. I
2007 Nov 21
7
Packet
Hi Mongrels, Anyone used Packet? http://rubyforge.org/projects/packet It''s a pure-Ruby (I think) evented framework. It might offer a nice way forward for 1.9''s system threads, JRuby, and Windows, all at once. Mongrel''s green thread queue doesn''t have a lot of life left in it. Evan -- Evan Weaver Cloudburst, LLC