search for: breack

Displaying 7 results from an estimated 7 matches for "breack".

Did you mean: breach
2004 Sep 11
1
Is posible to ad a VFR or pseudoVFR to theora without breack the stream?
My litle idea to vfr is: Use de frame rate as base time and use a bit flag as: is 0 duration is 1 frame is 1 read next bit { if 0 read next 8 bits as a number, duration is 2+number frames if 1 read next 16 bits as a number, duration is 2+number frames } the only question if exist any free bit in the farme header for a flag
2011 Jun 02
4
Use line break at scrip but avoid line break on graphics
...ges. I use graphics like this plot(1, main="aaaaaaaaaaaaaaaaaaaa bbbbbbbbbbbbbbbbbbbb") but I would like a plot result like this plot(1, main="aaaaaaaaaaaaaaaaaaaa bbbbbbbbbbbbbbbbbbbb") I remember once I saw a meta character like "\n" that avoid this breack line plot(1, main="aaaaaaaaaaaaaaaaaaaa\(?) bbbbbbbbbbbbbbbbbbbb") Does someone know that? Thanks. Walmes ========================================================================== Walmes Marques Zeviani LEG (Laboratório de Estatística e Geoinformação, 25.450418 S, 49.23...
2002 Jun 06
1
smbpasswd Question ...
Greetings ... In the smbpasswd file, does the uid, uid number and password have to match the Linux equivalint? The reason I ask, is that I am hoping that I can have a different password for Samba and Linux, because I don't wish to give out my root password for domain joining. I once tried to setup a admin account with the same uid number as root but with a different password and
2002 Dec 24
3
Oplock break request failures
I hope someone can enlighten me on this. Situation: NT network, Samba PDC, about 20 NT 4.0 workstations. log(s).smbd are created per machine for easier analysis (as log.smbd.<NetBios Name>). Not often, but often enough to be of concern, are errors in request_oplock_break that seem to indicate that another smbd process that should be listening for break requests on a UDP socket
2017 Sep 22
0
Effectiveness of llvm optimisation passes
Have -O0 on your clang command line causes all functions to get marked with an 'optnone' attribute that prevents opt from being able to optimize them later. You should also add "-Xclang -disable-O0-optnone" to your command line. ~Craig On Thu, Sep 21, 2017 at 10:04 PM, Yi Lin via llvm-dev < llvm-dev at lists.llvm.org> wrote: > Hi all, > > I am trying to
2002 Oct 28
6
Carrying non-audio data in an Ogg/Vorbis I stream
Hello, I would like to "piggy-back" other data in an Ogg/Vorbis I physical stream (i.e. file) in a manner that does not conflict with specifications and existing decoders/players/editors etc. As far as I can see, I have some possible choices: 1 - Chaining a logical bistream at the end. If this is the way to go, two questions arise to begin with: q1a - How to identify this stream in a
2017 Sep 22
5
Effectiveness of llvm optimisation passes
Hi all, I am trying to understand the effectiveness of various llvm optimisations when a language targets llvm (or C) as its backend. The following is my approach (please correct me if I did anything wrong): I am trying to explicitly control the optimisations passes in llvm. I disable optimisation in clang, but instead emit unoptimized llvm IR, and use opt to optimise that. These are what I