Displaying 20 results from an estimated 51 matches for "allign".
Did you mean:
align
2006 May 03
0
allign records with start- and enddates
I have this model (Days), that has a start- end enddate. It has a
belongs_to relationship with Child. So, one child can have many Days.
If a new Day is added, the start- and enddates should all allign. Is
there a plugin, or a ruby class that I could use to achieve this?
--
Posted via http://www.ruby-forum.com/.
2005 Jun 04
0
Allignment of vorbis, flac and speex headers
Hi
Please acknowledge this message as I am not sure if your organizations still exist.
On trying to integrate your 3 formats into an app I find that the position of the start of each format ID differs.
Both "vorbis" and "fLaC" start at char 29 (the 30th char in the file) and "speex " starts at char 28 (the 29th char in the file).
Speex appears to correlate with
2011 Aug 31
1
Hmisc Latex Question: column headings and Major Column Headings not properly alligned
Dear R users:
When I create a table without Major Column headings, my *regular* column headings appear correct in the typeset latex file. The major row heading and row groups are as they should.
w <- latex(mytab,title="",file="tab/my.tex",ctable=TRUE,caption="Descriptive statistics by
2010 Mar 22
3
Mosaic Plots
Hello Everyone
I want to plot Moasic Plots, I have tried them using iplots package (using
imosaic). The problem is the names dont get alligned properly, is there a
way to a align the names and provide legend in Mosaic plots using R?
Also I would like to know any other packages using which I can plot Mosaic
Plots
Thank you in advance
Sunita
--
View this message in context: http://n4.nabble.com/Mosaic-Plots-tp1677468p1677468.html
Sent...
2003 Nov 06
2
Problem with HPDJ1120C
...o run DJ1120C
Somehow ;-) i've create "Printer$" section, and install HP1120C
driver on server.
After that from host install printer, and all seems to be ok !
I mean, i can browse printer, change settings etc. but CAN'T print
:-( with one
exception, when i choose "allign printer cartridge" or "clean printer
cartridge", printer perform
reqested operation !
Can someone tell me what can be wrong ! Why, i can not print "normal' pages
Thanx in advance !
M.K.
2009 Mar 08
4
[PATCH 1/5] nv50: implement wfb
...U_BO_VRAM;
int ret;
if (pNv->Architecture >= NV_ARCH_50 && cpp) {
- uint32_t aw = (width + 7) & ~7;
- uint32_t ah = (height + 7) & ~7;
+ uint32_t ah = (height + 3) & ~3;
flags |= NOUVEAU_BO_TILED;
- devkind = ((aw * cpp) + 63) & ~63;
+ /* This allignment is very important. */
+ devkind = (width * cpp + 63) & ~63;
nvpix->size = devkind * ah;
}
@@ -390,8 +393,11 @@ nouveau_exa_pixmap_is_tiled(PixmapPtr ppix)
NVPtr pNv = NVPTR(pScrn);
if (pNv->exa_driver_pixmaps) {
- if (!nouveau_pixmap_bo(ppix)->tiled)
+ if (!nouve...
2012 Jul 18
2
[LLVMdev] Phi translation
...termediate code, and I'm working on the PHI instruction.
Here's an example phi instruction to help explain what I'm trying to do:
%inc25 = phi i32 [ 1, %entry ], [ %inc, %for.body ]
What I would want to do here is allocate some memory memory (i'm trying to
use %phi1 = alloca i32, allign 4 ). Then, I want to go to the %entry block
and say "store i32 1, i32* %phi1", and in the %for.body I want to add
"store i32 1, i32* %phi1".
So first, I'm iterating through my function and basicblock:
int phi = 0;
Function::iterator func_bblock_itr = func->begi...
2017 May 18
1
Second DC won't start LDAP daemon
...4.
>
>
>
> > and what is signal 4 on your platform?
> > It is SIGILL on x86_64 linux.
>
> I believe signals are more or less standard across all Unices... anyway
> it's SIGILL on FreeBSD too.
>
> Where does this lead?
I always thought SIGILL was for un-alligned memory access, which is
slow but permitted on x86. I guess get it under a debugger - if you
start it with
gdb --args samba -M single -i
That should catch it pretty fast.
Andrew Bartlett
--
Andrew Bartlett http://samba.org/~abartlet/
Authentication Developer, Samba Tea...
2004 Sep 10
1
AW: AW: Incomplete format description?
...I did find that part after tracing through the code, and I already have
a few questions.
- I am right, that the FLAC__bitbuffer_read_rice_signed_block method is
doing the same as I would have achieved by filling the array in a loop by
calling FLAC__bitbuffer_read_symmetric_rice_signed?
- Should I allign the bitstream to the beginning of the next byte between
the subframes, or only after reading the last subframe. I'm having some
synchronization problems which might be caused by this.
- My implementation seems to decode fixed subframes now, but the lpc
subframes contains nothing but noise, and...
2010 Feb 18
1
Matrix in a Reverse order
...39 56
65 29 38
Is there any command in R which will reverse the order i.e. I need to have same 4 X 3 matrix but as given below
65 29 38
70 39 56
21 83 84
83 98 90
i.e. the last row becomes first row, second - last row becomes second row and so on. I need this to allign it with some other variable set.
Thanks
Amelia
[[alternative HTML version deleted]]
2006 Dec 08
1
[LLVMdev] Proposed: first class packed structures
...truct { int x; int y; int z; } __attribute((packed)) foos;;
> This should just be {int,int,int}, not <{int,int,int}>.
no, consider
struct foo { int x; int y; int z; } __attribute((packed));
struct {char c; struct foo f;} bar;
sizeof(bar) == 13
if struct foo wasn't packed it's allignment would force a larger size for bar;
Andrew
2012 Jan 16
1
CentOS 6 (G)parted re-aligning existing partitions?
..."Warning: The partition is misaligned by 512 bytes. This may result in
very poor performances. Repartitioning is suggested.",
and similar warnings almost all other partitions.
Since I already have both Windows (NTFS) and CentOS 6 installed, I was
wondering is there any easy way of re-alligning them, maybe via parted?
Can someone write short to-the-point howto for repartitioning ext4
partitions (/boot especially)? NTFS partitions I can ghost without a
problem and resize them when I returnin it on the HDD. It would be nice
to experiment, but I am out of time.
I did fdisk -l /dev/sd...
2012 Jul 18
1
[LLVMdev] (no subject)
...termediate code, and I'm working on the PHI instruction.
Here's an example phi instruction to help explain what I'm trying to do:
%inc25 = phi i32 [ 1, %entry ], [ %inc, %for.body ]
What I would want to do here is allocate some memory memory (i'm trying to
use %phi1 = alloca i32, allign 4 ). Then, I want to go to the %entry block
and say "store i32 1, i32* %phi1", and in the %for.body I want to add
"store i32 1, i32* %phi1".
So first, I'm iterating through my function and basicblock:
int phi = 0;
Function::iterator func_bblock_itr = func->begi...
2004 Feb 19
1
read codebook function
Anexed is my function for reading codebooks and the Vq Table. My problem is:
I read a codeBook number of 41, so i called this function above 41 times.
The firtst time, the sync patterns (BCV) is alligned correctly, so it reads correctly. the sencond time it is executed, the patter is not there anymore and there are only 8 BCV in my file.
function fReadBits1 is the same as the ogg's read bit function.
orry for the long function and to bother
Adriano
<p>
-------------- next part ----...
2012 May 17
6
SSD format/mount parameters questions
For using SSDs:
Are there any format/mount parameters that should be set for using btrfs
on SSDs (other than the "ssd" mount option)?
General questions:
How long is the ''delay'' for the delayed alloc?
Are file allocations aligned to 4kiB boundaries, or larger?
What byte value is used to pad unused space?
(Aside: For some, the erased state reads all 0x00, and for
2010 Nov 01
2
number of items to replace is not a multiple of replacement length
...ement length".
This is strange because the items to replace in this instance seem to me and
should be an exact copy of the
replacement, save that the number 0 in this particular instance is to be
replaced with the number 58.
If I print the variables in question I get this: (added some tabs to allign
the columns for readability)
>print(parameterList[aCounter, 3])
[[1]]
[,1]
[,2] [,3] [,4]
exampleSingleSelect "Insert single selection box title here"
"SingleSelect" 1 List,3
exampleSlider...
2008 Jul 11
1
TeachingDemos question: my.symbols() alignment problems in complicated layout
Hello,
After usefull suggestions by Paul Murrell, i have been trying to use
my.symbols to plot arrows of varying angles on my plot in order to create
a time series of wind direction... however,i have been unable to figure
out how the allignment of symbols works...
below i have included a simplified code that illustrates my problem:
(i am creating a .ps file ... so i've included this in my mock code, in
case it might be part of the problem...)
############################# TEST CODE #################################
postscript(&...
2000 Dec 06
1
R: RE:
...by excel or R the
.xls extension: this may apply, and it may be better, to CSV:
R couldn't see any difference whichever the extension will be, and windows
will be foolished by the .xls extension an will open the file with Excel
that will handel it CORRECTLY.
If you need to have the data always alligned in Excel and R this trick will
allow to bypass the manual operation of a "Save As" dialog.
Another option could be to use RODBC with a datasource set to an Excel File:
as you see tha above trick don't scale well as you can have your own graphs
an pivot tables in the excel file and...
2008 Sep 13
3
[LLVMdev] Overzealous PromoteCastOfAllocation
...en if
> its type is left unchanged.
The maximizing of the alignment is done only looking at the type's ABI
alignment, the actual alignment of the alloca instruction is not used.
But what you suggest is that if the alloca is casted to some type that has
higher alignment, you want that higher allignment propagated to the alloca
instruction? I can see why this is useful, since bitcasting to a type with
higher alignment can actually produce invalid code, I think? Or how does this
work exactly?
Gr.
Matthijs
-------------- next part --------------
A non-text attachment was scrubbed...
Name: sign...
2016 Aug 08
1
slow speeds with Windows 10
...er pointers, latency, multple devices on the same channel,
( often 1 of 11 ) Wireless phones, microwave, etc all other 2.4Gz devices can interfeer with things.
I can get about 12-15Mb/s out of my wif ( 300N ) with tunning, without,
about 5-7MB/s ( test this within your lan )
Slow disks..
Not alligned partitions on disk make things slow.
Lots of small files make things also slow.
Lots of files in 1 folder make things slow.
Samba 3.6.9 30-50MB/s is slow also.
Which synology, these are limited also.. like ..
Some of them have gigabit ethernet, but max speed of 100mbit ethernet.
This is of...