search for: maxcount

Displaying 18 results from an estimated 18 matches for "maxcount".

Did you mean: mapcount
2006 Apr 25
2
Transactions and migrations (lots of records)???
Hi all - I know this must be really easy to do, but I can''t for the life of me figure it out. I have about 100,000 rows I need to migrate over into rails using a migration. Right now, I select all of them out of the old database and do a series of: ... new.col = old.col ... new.save ... Problem is each one is it''s own transaction. And it''s slow. I''d
2016 Jul 26
2
Does e2fsck.conf contain "broken_system_clock = 1" per default on CentOS7?
...> e2fsprogs-1.42.9-7.el7.x86_64 > $ rpm -V e2fsprogs > $ rpm -q e2fsprogs --scripts > $ thanks for the hint :) I now changed the value to 0 and rebooted. After that fsck based on Interval setting were done. Unfortunately that is not true for the root partition. For that I had to use maxCount settings to trigger fsck. fyi and cheers, Gabriele
2015 Feb 04
2
[LLVMdev] Is this a bug with loop unrolling and TargetTransformInfo ?
Hi, I ran into this issue recently and wanted to know if it was a bug or expected behavior. In the R600 backend's TargetTransformInfo implementation, we were setting UnrollingPreferences::Count = UINT_MAX. This was a mistake as we should have been setting UnrollingPreferences::MaxCount instead. However, as a result of setting Count to UINT_MAX, this loop would be unrolled 15 times: if (b + 4 > a) { for (int i = 0; i < 4; i++, b++) { if (b + 1 <= a) *(dst + c + b) = 0; else break; } } Is this the expected behavior? Is the loop unroll pass sup...
2001 Nov 23
2
Rose diagrams in R?
I am looking for a function (or package) to plot histograms of directional data such as wind direction. I believe these are called rose diagrams. Is there an R script for this? If not, can it be constructed in a function calling primitive graphic calls (lines, circles, boxes or polygons)? The stars function is not quite right. -- David Finlayson Geomorphogist and GIS Specialist NearPRISM -
2015 Oct 16
2
question about llvm partial unrolling/runtime unrolling
Hi Hal, I did opt.exe -S -debug -loop-unroll -unroll-runtime=true -unroll-count=4 csShader.ll and it prints out: Args: opt.exe -S -debug -loop-unroll -unroll-runtime=true -unroll-count=4 csShader.ll Loop Unroll: F[build_cs_5_0] Loop %loop_entry Loop Size = 82 partially unrolling with count: 1 Thanks, Frances On Thu, Oct 15, 2015 at 9:35 PM, Hal Finkel <hfinkel at anl.gov>
2018 Apr 25
1
Can't Get Lattice Histogram Minor Tick Marks to Work
...if (i == 1) {pmat = c(0.045,0)} else { pmat = rbind(pmat,c(i*0.05-0.001,0))} } # Generate data for the right panel in the same matrix. counts = c(90, 12.5, 9, 8, 7, 6.5, 6, 5.5, 5, 4.5, 4, 3.5, 3, 2.8, 2.2, 2, 1.8, 1.6, 1.4, 1.0) for (i in 1:20) { maxCount = 100 * counts[i] for (j in 1:maxCount){ pmat = rbind( pmat, c(i*0.05-0.001,2) ) } } # Convert the matrix to a data frame and add column names. pDat = data.frame(pmat) colnames(pDat) = c("pValue","nonCent") # Create a factor to...
2018 Apr 25
0
Can't Get Lattice Histogram Minor Tick Marks to Work
Per the Posting Guide, why didn't you post the reproducible R code example? On April 24, 2018 8:22:15 PM PDT, Donald Macnaughton <donmac at matstat.com> wrote: >I'm drawing a paneled histogram using the lattice package. I've >succeeded in >adding minor tick marks to the vertical axis, but I can't get the >desired >number of minor tick marks between the major
2018 Apr 25
3
Can't Get Lattice Histogram Minor Tick Marks to Work
I'm drawing a paneled histogram using the lattice package. I've succeeded in adding minor tick marks to the vertical axis, but I can't get the desired number of minor tick marks between the major tick marks. I've attached a self-contained program to illustrate the problem. Thanks for your help, Don Macnaughton Here's my sessionInfo: R version 3.4.3 (2017-11-30) Platform:
2009 Jul 07
3
Answering the nTh call ...
Curious to know if anyone's created something similar to the following, if so and you'd care to share an AGI or dialplan, much appreciated. I will be eventually write a script to answer the nTH call. (if I can't find it (why reinvent wheels). Looking to do some testing sending anywhere between 50-200 calls to a machine. I'd like a Snom/Polycom/whatever to pick up after the nTh
2020 Apr 25
1
Re: Not able to add pcie card to guest: Operation not permitted
...<domain>0</domain> <bus>1</bus> <slot>0</slot> <function>0</function> <product id='0x4000' /> <vendor id='0x19ee'>Netronome Systems, Inc.</vendor> <capability type='virt_functions' maxCount='64'/> <iommuGroup number='1'> <address domain='0x0000' bus='0x00' slot='0x01' function='0x0'/> <address domain='0x0000' bus='0x01' slot='0x00' function='0x0'/> </iommuGroup&g...
2001 Dec 06
2
Solaris install problem ... mcount
...ject requiring "mcount", so I am having a hard time trying to figure out where mcount might be hiding. 2[214]0 nightingale:/contrib/R-1.3.1 > cd src/main 0[215]0 nightingale:/<1>R-1.3.1/src/main > grep -i mcount * list.c:static int ItemCounts; list.c: if(ItemCounts < MaxCount) { list.c: for(j = 0 ; j < ItemCounts ; j++) { list.c: SET_STRING_ELT(ans, ItemCounts, name); list.c: ItemCounts += 1; list.c: ItemCounts = 0; list.c: savecount = ItemCounts; list.c: ans = allocVector(STRSXP, ItemCounts); list.c: ItemCounts = 0; list.c: if(...
2016 Jul 27
0
Does e2fsck.conf contain "broken_system_clock = 1" per default on CentOS7?
On Tue, 26 Jul 2016, Gabriele Pohl wrote: > thanks for the hint :) > > I now changed the value to 0 and rebooted. > > After that fsck based on Interval setting were done. > > Unfortunately that is not true for the root partition. > For that I had to use maxCount settings to trigger fsck. > > fyi and cheers, I believe e2fsk happens both pre root mount, and post. You'll want to rebuild your initramfs to make it take effect for the root volume I'd guess. jh
2016 Jul 31
1
Does e2fsck.conf contain "broken_system_clock = 1" per default on CentOS7?
...s.ac.uk> wrote: > On Tue, 26 Jul 2016, Gabriele Pohl wrote: > > I now changed the value to 0 and rebooted. > > > > After that fsck based on Interval setting were done. > > > > Unfortunately that is not true for the root partition. > > For that I had to use maxCount settings to trigger fsck. > > I believe e2fsk happens both pre root mount, and post. You'll want to > rebuild your initramfs to make it take effect for the root volume I'd guess. agreed as I see the config is included there: # lsinitrd | grep e2fsck -rw-r--r-- 1 root root...
2016 Jul 26
3
Does e2fsck.conf contain "broken_system_clock = 1" per default on CentOS7?
Hi, on all of my CentOS7 VMs on different hypervisors the config file e2fsck.conf contains the line broken_system_clock = 1 I found this because on all of them, the root partition was not checked triggered by interval setting with tune2fs. Do you see similiar /default/ settings on your machines? Is it an issue only on VMs? I have no CentOS7 host on bare metal to compare. Thanks and cheers,
2020 Apr 24
2
Not able to add pcie card to guest: Operation not permitted
Let's say I have libvirt [root@vmhost2 ~]# virsh version Compiled against library: libvirt 4.5.0 Using library: libvirt 4.5.0 Using API: QEMU 4.5.0 Running hypervisor: QEMU 2.12.0 [root@vmhost2 ~]# running on centos 8 and then I have this card [root@vmhost2 ~]# virsh nodedev-dumpxml pci_0000_01_00_0 <device> <name>pci_0000_01_00_0</name>
2011 Jun 24
0
Wine release 1.3.23
...widl: Make output unique pointers into object pointers in object interfaces. widl: Also check array pointers for null ref pointers. widl: Move the pointer check functionality to typegen.c. urlmon: Remove unneded stubs for IWindowForBindingUI. rpcrt4: Preserve the previous MaxCount value when computing variance through a callback. rpcrt4: Add a wrapper for NdrClientCall2 to isolate calling convention differences. rpcrt4: Add an assembly wrapper to implement the NdrClientCall2 calling convention on x86_64. rpcrt4: Implement calling server functions on x86_64....
2007 Jan 25
0
Wine release 0.9.30
...Export a function to compute the proc format string size for a function. widl: Skip local functions when building format strings. widl: Fix possible crash in write_array_tfs. widl: Fix alignment check for struct members format string. widl: Store the interface id in _StubMsg.MaxCount for iid_is pointers. widl: Add support for some simple pointer types. Anatoly Lyutin (5): kernel32: Add details in description function MultiByteToWideChar and WideCharToMultiByte. wineconsole: Add support for non-latin symbols with curses. kernel32: Add comment for GetCon...
2010 Apr 02
0
Wine release 1.1.42
...): widl: Don't pre-calculate buffer size for arrays that aren't treated as reference pointers. widl: Convert assign_stub_out_args to using typegen_detect_type and fix the non-conformant array case. rpcrt4: Add test for [out] non-conformant array. widl: Fix writing of MaxCount expressions for conformant strings declared using array form. widl: Fix crash when trying to declare a fixed size array with a size_is attribute. widl: Issue an error if a context handle variable is declared outside of a function. include: Change an unsized [out] string to be size...