Displaying 14 results from an estimated 14 matches for "_be_".
2019 Sep 12
3
Re: [PATCH nbdkit v2 3/3] tests: Add a simple test of nbdkit_export_name.
...where POSIX says -n is undefined; but you
can still make bash misbehave with shopt -s xpg_echo)
printf %s "%3" > $h
> + echo $h
> + ;;
Hmm - instead of making the handle be the name of a temporary file that
contains the export name, you could just make the handle _be_ the export
name:
open)
printf %s "$3"
;;
> + get_size)
> + stat -c '%s' "$2"
> + ;;
at which point, you can simplify to:
get_size)
echo ${#2}
;;
> + pread)
> + dd if="$2" skip=$4 count=$3 iflag=skip_bytes,c...
2005 Nov 13
3
OggPCM format description, rev 3
> Unfortunately the ALSA API defines a number of formats which are
> in practice extremely rare. In particular, any unsigned int format
> larger than 8 bits. For instance, the only unsigned int type that
> libsndfile supports is unsigned 8 bit.
I expected this, it just seemed like a good starting point to get more
than 7 formats on the table. Specifically I wanted to the logarithmic
2009 Mar 14
9
[LLVMdev] setting up LLVM to *run on* amd64 but *generate code* for alpha
...ll,
technically, generate code for my experimental architecture simulator
that happens to be based on alpha.) I have been unable to find any
combination of configure switches that makes this happen. I should
probably underline that I am _not_ trying to cross-compile LLVM, I am
trying to make LLVM _be_ a cross compiler.
- The "natural" way to do that (by which I mean "the way you would do
it if you believe what it says in the autoconf manual") would be to
specify --build=x86_64-unknown-linux --target=alpha-unknown-linux.
This produces Makefiles that bomb out on the very firs...
2004 Aug 25
0
S3 classes in S4 class definitions
...ees to your users, you will need a valdity method
that explicitly checks the contents of S3-class objects.
* To get the minimal guarantee (that the object in a slot has,
or extends, the class for the slot) you should ensure that
the S3 classes are known to _be_ S3 classes, with the
possible inheritance. To do this, include a call to
'setOldClass' for the S3 classes used.
Otherwise, the S3 class is undefined (and the code used by
'setClass' will issue a warning). Slot assignments, for...
1998 Mar 12
1
Re: message rejected: Re: Re: Towards a solution of tmp-file problems.
...ing
to participate in that sharing. I just happen to think a file descriptor
is probably the right vehicle given that the major problem which we are
fighting here is a flaw in the Unix API, namely too much reliance on
non-atomic operations on pathnames, and not enough atomic operations.
Unix _will_ _be_ _fixed_ _eventually_ and although I don''t know what the
fixed APIs will be, I think the right way to fix filesystem races is to
figure out how the system _should_ work, maybe implement that, and build
in backward compatibility for existing code such that it approximates
the right behaviour...
2009 Mar 14
0
[LLVMdev] setting up LLVM to *run on* amd64 but *generate code* for alpha
...erate code for my experimental architecture simulator
> that happens to be based on alpha.) I have been unable to find any
> combination of configure switches that makes this happen. I should
> probably underline that I am _not_ trying to cross-compile LLVM, I am
> trying to make LLVM _be_ a cross compiler.
>
> - The "natural" way to do that (by which I mean "the way you would do
> it if you believe what it says in the autoconf manual") would be to
> specify --build=x86_64-unknown-linux --target=alpha-unknown-linux.
> This produces Makefiles that b...
2006 Oct 19
1
default arguments in generics and methods
i believe the following is true but would appreciate confirmation
that it is intended behavior and will continue:
if a default argument is employed in the definition of a generic
function, and the generic is called with the argument in question
(call it 'ARG') missing, then the method for signature (..., ARG =
"missing", ...) will be called by 'standardGeneric'
2009 Mar 16
0
[LLVMdev] setting up LLVM to *run on* amd64 but *generate code* for alpha
...erate code for my experimental architecture simulator
> that happens to be based on alpha.) I have been unable to find any
> combination of configure switches that makes this happen. I should
> probably underline that I am _not_ trying to cross-compile LLVM, I am
> trying to make LLVM _be_ a cross compiler.
Ok. I'm not sure how much of this was clarified by follow up posts,
but I'll try to help.
> - The "natural" way to do that (by which I mean "the way you would do
> it if you believe what it says in the autoconf manual") would be to
> specif...
2001 Aug 14
2
fixup_imports No implementation for NTDLL.DLL
Hi,
I am a newbie and I have installed Wine release 20000909 on a machine
running Mandrake7.2 and win2000.
The DefaultLoadOrder for the DLLs are builtin, so, native & elfdll.
LD_LIBRARY_PATH and EXTRA_LD_LIBRARY_PATH points to the directory
containing the lib*.so files. I encontered the following errors while
running a place & route tool.
2011 Aug 21
0
[LLVMdev] Xilinx zynq-7000 (7030) as a Gallium3D LLVM FPGA target
Luke Kenneth Casson Leighton wrote:
> On Sun, Aug 21, 2011 at 12:48 AM, Nick Lewycky<nicholas at mxc.ca> wrote:
>
>> The way in which Gallium3D targets LLVM, is that it waits until it receives
>> the shader program from the application, then compiles that down to LLVM IR.
>> That's too late to start synthesizing hardware (unless you're planning to
>>
2011 Aug 21
4
[LLVMdev] Xilinx zynq-7000 (7030) as a Gallium3D LLVM FPGA target
On Sun, Aug 21, 2011 at 12:48 AM, Nick Lewycky <nicholas at mxc.ca> wrote:
> The way in which Gallium3D targets LLVM, is that it waits until it receives
> the shader program from the application, then compiles that down to LLVM IR.
> That's too late to start synthesizing hardware (unless you're planning to
> ship an FPGA as the graphics card, in which case reprogramming
2019 Sep 12
4
[PATCH nbdkit v2 0/3] Access export name from plugins.
The previous incomplete patch was here:
https://www.redhat.com/archives/libguestfs/2019-September/msg00049.html
based on earlier discussion here:
https://www.redhat.com/archives/libguestfs/2019-September/msg00047.html
In v2:
- The previous patch was incomplete. This version completes it by
adding tests and extending nbdkit-sh-plugin.
- nbdkit_export_name now returns NULL for error,
2007 Oct 26
14
''Considered Harmful'' Considered Harmful
Because here in Puppet-land we''re all about self-reference and
recursion, and because I actually have to give a talk at RubyConf
next weekend about abusing self-reference, and because parent nodes
aren''t considered harmful in my own world, I give you:
http://www.codinghorror.com/blog/archives/000982.html
I think it manages to somehow be both on- and off-topic at the same
2010 Mar 10
39
SSD Optimizations
I''m looking to try BTRFS on a SSD, and I would like to know what SSD
optimizations it applies. Is there a comprehensive list of what ssd
mount option does? How are the blocks and metadata arranged? Are there
options available comparable to ext2/ext3 to help reduce wear and
improve performance?
Specifically, on ext2 (journal means more writes, so I don''t use ext3 on
SSDs,