search for: much

Displaying 20 results from an estimated 98417 matches for "much".

Did you mean: mach
2012 Apr 07
2
assigment operator question
Hello, using the <<- assignment operator I do not understand why the following does not work. l <<- list() l list() l$arg1 <<- "test" error in l$arg1 <<- "test" : Objekt 'l' not found ?"<<-" says: "The operators <<- and ->> cause a search to made through the environment for an existing definition of the
2007 Mar 18
1
Choppy sound with chan_capi + Fritz Card USB
...the latest chan_capi (also tried an older version). When using the Capi-Channel, everything works fine except from the sound it sounds extremely choppy and is unusable :-( When e.g. capisuite is used for fax, everything sounds fine... I found the following when using capi debug: ISDN1#02: too much voice to send for NCCI=0x10101 Google finds nothing relevant for this error message :-( Has anybody any idea ? Christoph P.S.: Here is the output of capi debug CONNECT_IND ID=002 #0x016e LEN=0037 Controller/PLCI/NCCI = 0x101 CIPValue = 0x10 CalledPartyNu...
1999 Oct 26
1
Wrong text() adjustment with (math)expression and "\n" (PR#299)
This is adapted from partha_bagchi@hgsi.com 's report on R-help: plot(0); title(expression("Bad\n with much much more text"))) gives something like Bad with much much more text (``newline w/o carriage return'') instead of centering both lines such as Bad with much much more text which is produced by (just dropping `expression' from the above)...
2009 May 14
2
Why my DomU OS'' State is always blocked? Thank you very much!!
...ID Mem VCPUs State Time(s) Domain-0 0 1317 2 r----- 75.5 Fedora5 1 200 1 -b---- 6.9 centos.5-2 3 500 1 -b---- 2.0 Thank you very much! Thank you very much! Thank you very much! _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
2005 May 17
3
How much CPU power needed for asterisk
I'm thinking of placing Asterisk on an itx motherboard in a tiny case. The ITX motherboards top out around 400Mhz PII (in terms of power relative to a desktop). How much CPU would I need for an office of 50 people? How much disk storage for voicemail + OS? (typical / average) The system will have no PCI cards (no Digium FSO/FXO cards) - everything over the LAN connection. Thanks, Mike -------------- next part -------------- An HTML attachment was scrubbed......
2012 Feb 09
2
factor level for non-existing value
Ein eingebundener Text mit undefiniertem Zeichensatz wurde abgetrennt. Name: nicht verf?gbar URL: <https://stat.ethz.ch/pipermail/r-help/attachments/20120209/96eb9e08/attachment.pl>
2010 Feb 20
6
l2arc current usage (population size)
Hello, How do you tell how much of your l2arc is populated? I''ve been looking for a while now, can''t seem to find it. Must be easy, as this blog entry shows it over time: http://blogs.sun.com/brendan/entry/l2arc_screenshots And follow up, can you tell how much of each data set is in the arc or l2arc? -- This...
2005 Dec 16
10
''Code table'' best practices?
...le: CATEGORY_CODES ID int DESCRIPTION varchar(200) "category codes", to the user, are 6-digit numbers, sometimes with leading zeroes, that have specific meanings. My customers usually want a metric truckload full of reports. Often, there are more reports than actual business logic. So much fun. Reports get much, much easier when you don''t need to join over into a lookup table constantly. It would be nice to able able to simply say: Plans.find_all_by_category_code ''123456'' If I follow the ''pure'' ActiveRecord intent for this, it would inst...
2014 Jul 30
2
Fwd: SMB question
...iencing the following problem with the SMB file share protocol: 1. User1 logs into windows. 2. User1 loads a file (from a network share) and works on it 3. User2 logs into windows on a different machine. 4. User2 loads the same file (from the same location on network) but the loading of the file is much much slower. When check the network traffic for User2 during the loading of the file (using WireShark) I can see that the file is devided into much smaller packets than it was when User1 loaded it. This behaviour is reproducable 80% of the times. User1 ALWAYS gets the file much faster than User2 a...
2019 Jul 30
2
I need to open the personal homepage function, thank you very much.
I need to open the personal homepage function, thank you very much. My wiki account is: LostManiac thank you very much -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.centos.org/pipermail/centos-docs/attachments/20190730/8acc93d1/attachment-0006.html>
2011 Nov 03
4
How much data can R process?
Would like to know how much data can R process - number of rows and columns? [[alternative HTML version deleted]]
2012 Feb 01
4
gtar compression achieved
...the man page and don't see any way to do this - maybe it is a function of the compression program used I dunno. Is there any way to get gtar to report on the compression it achieved? I can't just check file sizes because I'm writing data to tape. The basic problem is that I know how much data is there to begin with but I don't know how much room it took up on the tape so I have no idea how much room is left on the tape. thanks, -Alan -- ?Don't eat anything you've ever seen advertised on TV? - Michael Pollan, author of "In Defense of Food"
2017 Oct 10
3
Make LLD output COFF relocatable object file (like ELF's -r does). How much work is required to implement this?
...with 'ld -r'. > IIUC, GHC is faster when handling .a files compared to a prelinked big > .o file, even if they contain the same binary code/data. But it sounds > like an artifact of the current implementation of GHC, because, in > theory, there's no reason the former is much inefficient than the > latter. If that's the case, doesn't it make more sense to improve GHC? No. GHC **runtime** linker is much slower when handling *.a files (and this is exactly the culprit of this whole story) since it goes through the whole archive and links each object module se...
2008 Oct 12
3
[LLVMdev] windows testing etc
...d tests in areas that >> they are knowledgeable about. > > I am not sure how well the current tests could be ported though, they > are very gcc-centric, as in compile with llvm-gcc and execute what > llvm-gcc compiled, not very useful as an api test. I have not really > looked much into the current test setup once I noticed how useless it > was for me, but is there a certain part of it that does not touch gcc > type things, that literally just tests llvm directly without any > middle stuff like llvm-gcc? If so, I could probably work on getting > that into a more...
2016 Mar 15
7
RFC: DenseMap grow() slowness
...achineCSE have this to some degree as well (there might be others?). To put it simply: at least in my profile, EarlyCSE spends ~1/5 of its time growing DenseMaps. This is kind of… bad. grow() is inherently slow because it needs to rehash and reinsert everything. This means growing a DenseMap costs much, much more than growing, for example, a vector. I talked about this with a few people and here are some possibilities we’ve come up with to improve this (some of which probably aren’t what we want): 1. Use a map that doesn’t require rehashing and reinsertion to grow. Chaining lets you do this, but...
2009 Jul 03
7
slugishness
...M2 quad core CPU... x86_64 centos 5.3 When I am doing backing up to my external USB drive my system becomes sluggish. Clicking on a thunderbird compose takes some time to pop up the window. Typeing doesnt keep up etc... Is there something I can change so this backup doesnt slow my system down so much? I dont see HOW it can be taking so much CPU. top at times shows 0 idle or 11% idle from a USB backup. Thanks for any suggestions. Jerry
2011 Jun 14
2
[LLVMdev] Avoiding Constant Folding
Hi Cuong, > I am trying to avoid using stack memory (or mutable variable is the term > used in the tutorial). I am also trying to optimize the code as much as I > can before using optimizer passes such as mem2reg (to reduce the compile > time as well). I don't think there is much point in avoiding stack variables (using them makes your life much simpler -> easier to have your front-end be correct; passes like mem2reg will turn your varia...
2008 Oct 12
0
[LLVMdev] windows testing etc
...Oct 11, 2008, at 8:41 PM, OvermindDL1 wrote: > >> I am not sure how well the current tests could be ported though, they >> are very gcc-centric, as in compile with llvm-gcc and execute what >> llvm-gcc compiled, not very useful as an api test. I have not really >> looked much into the current test setup once I noticed how useless it >> was for me, but is there a certain part of it that does not touch gcc >> type things, that literally just tests llvm directly without any >> middle stuff like llvm-gcc? If so, I could probably work on getting >> t...
2016 Jul 28
3
Why is Samba4 not recommended as a file server?
On 28/07/16 09:29, Reindl Harald wrote: > > > Am 28.07.2016 um 10:12 schrieb Rowland penny: >> >> This is all very well and good Michael, but what if you only have one >> computer? > > then you setup a virtual machine which many people do in general for > every service > > But what if you don't want to setup a VM ? Rowland
2012 Mar 22
3
Memory Utilization on R
Hello, I have a 32 GB RAM Mac Pro with a 2*2.4 GHz quad core processor and 2TB storage. Despite this having so much memory, I am not able to get R to utilize much more than 3 GBs. Some of my scripts take hours to run but I would think they would be much faster if more memory is utilized. How do I optimize the memory usage on R by my Mac Pro? Thank you! Kurinji [[alternative HTML version deleted]]