search for: overlarg

Displaying 10 results from an estimated 10 matches for "overlarg".

Did you mean: overlarge
2010 Jan 25
1
[Fwd: Re: The directory that I am trying to clean up is huge]
...cts upon each file that is found. Neither does the man page speak to the limits of the kernel configuration (MAX_ARG_PAGES) implicitly used by cp, find, ls, etc. The problem you have is that the selection of all qualified files is completed before any are acted on by find. So, in your case of an overlarge collection, the page limit is exceeded before any are deleted. Taking each file as it is found and piping it to an external rm command explicitly defines the process as find, delete and find again, and thereby avoids hitting the page limit. CentOS-5.3 was supposed to address this issue: > Pr...
2015 Jun 26
3
[LLVMdev] C as used/implemented in practice: analysis of responses
...13/15] Null pointer representations **Can null pointers be assumed to be represented with 0?** Basically an unequivocal "yes" for mainstream systems. Again there a potential exception for segmented memory, but not one relevant for "mainstream" current practice. ### [14/15] Overlarge representation reads **Can one read the byte representation of a struct as aligned words without regard for the fact that its extent might not include all of the last word?** This is sometimes used in practice and believed to work, modulo alignment, page-boundary alignment, and valgrind/MSan/etc...
2015 Jun 30
8
[LLVMdev] C as used/implemented in practice: analysis of responses
...Can null pointers be assumed to be represented with 0?** > > Basically an unequivocal "yes" for mainstream systems. Again there a > potential exception for segmented memory, but not one relevant for > "mainstream" current practice. > > > > ### [14/15] Overlarge representation reads > > **Can one read the byte representation of a struct as aligned words > without regard for the fact that its extent might not include all of > the last word?** > > This is sometimes used in practice and believed to work, modulo > alignment, page-bounda...
2018 Feb 01
0
[nbdkit PATCH v2 3/3] filters: Add blocksize filter
...=1 Read .* offset=0x4e00' blocksize2.log +grep 'connection=1 Write .* offset=0x4e00' blocksize2.log +# Trim should be discarded +if grep 'connection=1 Trim' blocksize2.log; then + echo "filter should have dropped too-small trim" + exit 1 +fi + +# Test behavior on overlarge accesses. +$QEMU_IO -f raw -c 'w -P 11 1048575 4094305' -c 'w -z 1050000 1100000' \ + -c 'r -P 0 1050000 1100000' -c 'r -P 11 3000000 1048577' \ + -c 'discard 7340031 2097153' 'nbd+unix://?socket=blocksize1.sock' +$QEMU_IO -f raw -c 'w -P 11 10...
2018 Mar 08
0
[nbdkit PATCH v3 05/15] filters: Add blocksize filter
...ount=0x400 ' blocksize2.log +grep 'connection=1 Write .* offset=0x4c00 count=0x400 ' blocksize2.log +# Trim should be discarded +if grep 'connection=1 Trim' blocksize2.log; then + echo "filter should have dropped too-small trim" + exit 1 +fi + +# Test behavior on overlarge accesses. +$QEMU_IO -f raw -c 'w -P 11 1048575 4094305' -c 'w -z 1050000 1100000' \ + -c 'r -P 0 1050000 1100000' -c 'r -P 11 3000000 1048577' \ + -c 'discard 7340031 2097153' 'nbd+unix://?socket=blocksize1.sock' +$QEMU_IO -f raw -c &...
2009 Dec 02
2
Error when running Conditional Logit Model
Dear R-helpers, I am very new to R and trying to run the conditional logit model using "clogit " command. I have more than 4000 observations in my dataset and try to predict the dependent variable from 14 independent variables. My command is as follows clmtest1 <- clogit(Pin~Income+Bus+Pop+Urbpro+Health+Student+Grad+NE+NW+NCC+SCC+CH+SE+MRD+strata(IDD),data=clmdata) However, it
2015 Jul 01
2
[LLVMdev] C as used/implemented in practice: analysis of responses
...t; > >> Basically an unequivocal "yes" for mainstream systems. Again there a > >> potential exception for segmented memory, but not one relevant for > >> "mainstream" current practice. > >> > >> > >> > >> ### [14/15] Overlarge representation reads > >> > >> **Can one read the byte representation of a struct as aligned words > >> without regard for the fact that its extent might not include all of > >> the last word?** > >> > >> This is sometimes used in practice and...
2015 Jun 27
2
[LLVMdev] C as used/implemented in practice: analysis of responses
...to be represented with 0?** >> >> Basically an unequivocal "yes" for mainstream systems. Again there a >> potential exception for segmented memory, but not one relevant for >> "mainstream" current practice. >> >> >> >> ### [14/15] Overlarge representation reads >> >> **Can one read the byte representation of a struct as aligned words >> without regard for the fact that its extent might not include all of >> the last word?** >> >> This is sometimes used in practice and believed to work, modulo >&...
2018 Feb 01
6
[nbdkit PATCH v2 0/3] add log, blocksize filters
Since v1: add the blocksize filter, add testsuite coverage of the log filter, several fixes to the log filter based on what adding tests revealed I'm still working on FUA flag support patches on top of this; the patches should all be committed in the same release, as we want to minimize the number of releases that cause a filter ABI/API bump Eric Blake (3): backend: Rework internal/filter
2018 Mar 08
19
[nbdkit PATCH v3 00/15] Add FUA support to nbdkit
After more than a month since v2 [1], I've finally got my FUA support series polished. This is all of my outstanding patches, even though some of them were originally posted in separate threads from the original FUA post [2], [3] [1] https://www.redhat.com/archives/libguestfs/2018-January/msg00113.html [2] https://www.redhat.com/archives/libguestfs/2018-January/msg00219.html [3]