search for: sixteen

Displaying 20 results from an estimated 72 matches for "sixteen".

2016 Mar 14
2
RFC: New IR attribute incoming-stack-align
...s affecting Wine (https://www.winehq.org/) where we have a function that is an entry-point for the x86 Win32 abi. That function may then call functions in the host's (linux, OS/X, ...) abi. The issue is that the Win32 abi guarantees stack alignment of four bytes while the host abi is typically sixteen. This is supposed to be solved by clang's __force_align_arg_pointer__ attribute. What this does is to set the IR attribute alignstack = 16. While this does correctly realign the stack it does not change the assumption about the alignment of the incoming stack - which is still assumed to have...
2005 May 15
14
POE hub
I need to connect up to sixteen phones per building, I can use a cheap hub, but POE would be useful. Is there a cheap POE hub available? Everything I have seen has been expensive. Chris Mason
2015 Apr 28
4
roaming profile doubles in size at client logout
Hello all, I have a FreeBSD 10.1-RELEASE amd64 VM, with 4GB RAM and ZFS, running on an ESX host. I installed and configured samba 4 with the following configuration: [global] workgroup = TST-DOM realm = TST-DOM.TLD.COM netbios name = SAMBA4 server role = active directory domain controller idmap_ldb:use rfc2307 = yes logon path = \\%L\Profiles\%U [netlogon] path =
2014 Jan 21
2
XFS : Taking the plunge
Hi All, I have been trying out XFS given it is going to be the file system of choice from upstream in el7. Starting with an Adaptec ASR71605 populated with sixteen 4TB WD enterprise hard drives. The version of OS is 6.4 x86_64 and has 64G of RAM. This next part was not well researched as I had a colleague bothering me late on Xmas Eve that he needed 14 TB immediately to move data to from an HPC cluster. I built an XFS file system straight onto the (raid 6...
2015 Apr 29
3
roaming profile doubles in size at client logout
...; from profile sync (through GPO) and then doing a manual rsync in background > every now and then. That is for folders that are not located in the network > already. > This also helps with profile size that is getting copied back and forth > between server and client. 4Gb multiplied by sixteen users? I don't want to > see it happening to my network. > > > Roaming profiles are, generally speaking, outdated technology. Folder redirection is much more effective. It covers most of the benefits of roaming profiles without the penalties.
2006 Feb 28
2
Conference bridge dimensioning
We are using an Asterisk box to do conferencing right now. I have had about sixteen active lines in conference and the quality was acceptable. We now have a need for 50 people to conference at one time. Does anyone have enough experience doing this to give me some pointers. Will it even be reasonable to try this? Is the mixing done on the the hardware, I plan on using a quad span...
2002 Oct 13
1
barplot(): X-Axis Labels
Hello all. I have a simple barplot with sixteen different segments. When I plot my data, only five or six of the labels are showing in the x-axis. How do go get them all to show? Can I set them at a 45.degree angle? Thank you. Jess -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read http:/...
2006 Nov 09
4
Plotting symbols with two positions?
...list, I move onto next question: I have another small plotting problem that confuses me. I want to plot results from a field trial series, using the numbers of the trials as symbols in the plot. pch = as.character(trial_no) works fine, but truncates the trial number to the first digit. As I have sixteen trials in the series I get into problems.... How do I squeeze in two positions as a symbol in a plot? All the best /CG On Thu, November 9, 2006 9:30 am, Dimitris Rizopoulos said: > try the following: > > x <- runif(100, -4, 4) > y <- 1 + 2 * x + rnorm(100, sd = 2) > fit &lt...
2020 May 18
1
ether-wake
...ou that this method doesn't work for all devices. #!/bin/bash HWADDR="$1" DEST_IP="255.255.255.255" DEST_PORT="9" # The magic packet is a broadcast frame containing anywhere within its payload # 6 bytes of all ones (FF FF FF FF FF FF in hexadecimal), followed by sixteen # repetitions of the target computer's 48-bit MAC address. MAGIC="\xFF\xFF\xFF\xFF\xFF\xFF" for ((CNT=0; CNT < 16; CNT++)); do MAGIC="${MAGIC}\x${HWADDR//:/\x}" done echo -en "$MAGIC" | socat -T1 -u STDIO \ UDP-DATAGRAM:${DEST_IP}:${DEST_PORT},broadcast Ki...
2008 Mar 03
3
R function to convert a number to text
hi, Dear R users - I wonder is there a written R function to convert a number to a text, say convert 1 to "one" , 100 to "one hundred". I know in xls. has such a function BAHTTEXT, does anybody know is there a similar function in R ? Thanks. Lin --------------------------------- [[alternative HTML version deleted]]
2011 Jul 08
1
binary conversion list to data.frame with plyr... AND NO LOOPS!
...se(i, paste(bb(i %/% 2), i %% 2, sep=""), "") my.dat<-c(36,40,10,4) my.binary.dat<-bb(my.dat) my.list<-strsplit(my.binary.dat,'') max.len<-max(ldply(my.list,length)) len<-length(my.list) my.df<-data.frame(two=rep(0,len),four=rep(0,len),eight=rep(0,len),sixteen=rep(0,len),thirtytwo=rep(0,len),sixtyfour=rep(0,len)) for(i in 1:length(my.list)){ for(j in 1:length(my.list[[i]])){ my.df[i,max.len-length(my.list[[i]])+j]<-my.list[[i]][j] } } But this isn't exactly feasable on a million+ rows where some binary numbers are 20 digits... I know theres...
1999 Apr 24
3
HP Deskjet 1000c
...j1000|DeskJet 1000c:sh:lp=/dev/lp0:sd=/var/spool/lpd/dj1000:mx#0:ff=\f which should force a form feed, and set the max print size to anything. This didn't work. How do I force a form feed after the last page? Is it a Samba thing, or a Linux thing? Thanks! Thomas Cameron, CNE, MCP, MCT Three-Sixteen Technical Services, Inc. ][ O/////||=========LINUX=========> ][
2009 Jun 18
2
Multiple Outgoing Lines: extensions.conf
...route the incoming number to each particular extension, but how does one route outgoing calls from a particular phone to use a specific line, ie, from phone no. 89859715 an outgoing call will use caller id 89859715 and line 89859715? Or for phone no. 89859716 to use the 89859716 line? I have sixteen outgoing lines I need to configure, so that each individual phone can send its own caller id; any suggestions? Thanks for your thoughts. Rgds, Clara -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/2...
2016 Mar 15
2
RFC: New IR attribute incoming-stack-align
...have > a function that is an entry-point for the x86 Win32 abi.  That > function may then call functions in the host's (linux, OS/X, ...) > abi. > The issue is that the Win32 abi guarantees stack alignment of four > bytes while the host abi is typically sixteen. > > This is supposed to be solved by clang's __force_align_arg_pointer__ > attribute.  What this does is to set the IR attribute alignstack = > 16. > While this does correctly realign the stack it does not change the > assumption about the alignment...
2009 Sep 21
3
(Universal) Ambisonic implementation
e deleflie <edeleflie at gmail.com> ... > ok, I do realise that the extending the maximum channel count may be > difficult ... there's gotta be a way to do it though. Perhaps a comparison of the FLAC structure with that of Vorbis will help. Within a FLAC stream the audio is split into blocks which are grouped (interleaved). But within each block the eight channels are chained
2009 Oct 05
1
(Universal) Ambisonic implementation
...other variations. I'm just not sure whether any advantage is gained beyond two channels. Archives of this list should have comments from Josh about the current algorithm's capabilities. > Limiting each flac stream to just same-order channels requires four > flac streams for a sixteen-channel third-order ambisonic, rather > than just two streams, but makes it easier to drop the higher-order > channels when desired. Agreed. > Allocation of forth and higher order ambison channels into the flac > streams is left open, but higher orders are increasingly difficult >...
2017 Nov 13
3
[PATCH RFC v3 4/6] Documentation: Add three sysctls for smart idle poll
...ds a CPU number which is executing panic() currently. A value of diff --git a/kernel/sysctl.c b/kernel/sysctl.c index d9c31bc..9f194dc 100644 --- a/kernel/sysctl.c +++ b/kernel/sysctl.c @@ -135,6 +135,11 @@ static int six_hundred_forty_kb = 640 * 1024; #endif +#ifdef CONFIG_PARAVIRT +static int sixteen = 16; +static int five_hundred_thousand = 500000; +#endif + /* this is needed for the proc_doulongvec_minmax of vm_dirty_bytes */ static unsigned long dirty_bytes_min = 2 * PAGE_SIZE; @@ -1226,6 +1231,35 @@ static int sysrq_sysctl_handler(struct ctl_table *table, int write, .extra2 = &o...
2017 Nov 13
3
[PATCH RFC v3 4/6] Documentation: Add three sysctls for smart idle poll
...ds a CPU number which is executing panic() currently. A value of diff --git a/kernel/sysctl.c b/kernel/sysctl.c index d9c31bc..9f194dc 100644 --- a/kernel/sysctl.c +++ b/kernel/sysctl.c @@ -135,6 +135,11 @@ static int six_hundred_forty_kb = 640 * 1024; #endif +#ifdef CONFIG_PARAVIRT +static int sixteen = 16; +static int five_hundred_thousand = 500000; +#endif + /* this is needed for the proc_doulongvec_minmax of vm_dirty_bytes */ static unsigned long dirty_bytes_min = 2 * PAGE_SIZE; @@ -1226,6 +1231,35 @@ static int sysrq_sysctl_handler(struct ctl_table *table, int write, .extra2 = &o...
2012 Aug 22
5
Centos machine sometimes unreachable
I have a simple perl script that every few hours pings the handful of machines on my LAN. Lately I've sometimes been getting ping of 192.168.0.1 succeeded ping of 192.168.0.7 succeeded ping of 192.168.0.5 FAILED ping of 192.168.0.6 succeeded ping of 192.168.0.9 succeeded This machine in question has been running Centos faithfully for about six years and no recent changes to it have been
2004 Aug 06
3
Re: The LPBN radio station.
...if I create a mail group it will be easier to communicate with > all the people that are building the system. That would be myself, > Vessy Mink, Clay Claiborne and Steve Libis and yourself and this is > likely to grow very fast. The LPBN is growing like really fast. I have > about sixteen hours of video that I haven't put up yet. 8 hours of > which is the Infiniband roadshow - IBM, Intel and BMC software. > Adelphia Cable is in trouble and they seem like they want to begin > working with LPBN. I have some stuff of theirs that is going up in the > next couple of d...