similar to: RadioMobile:: RadioLink don't draw profile

Displaying 20 results from an estimated 40000 matches similar to: "RadioMobile:: RadioLink don't draw profile"

2005 May 19
3
Drawing a circle
Hi. I need to draw a circle whit center (a,b) and radio r. So I use the R code below a<-1.975 # valore x del centro b<-1.215 # valores y del centro r<-1.46 # radio x1<-seq(a-r,a+r,by=0.01); #los valores de x yp<-sqrt(r^2-(x1-a)^2)+b; # los valores y a partir de la ra??z positiva yn<-(-1)*sqrt(r^2-(x1-a)^2)+b; # los valores y a partir de la ra??z negativa x<-c(x1,x1);
2013 Jun 18
2
[LLVMdev] RFC - Profile Guided Optimization in LLVM
On Tue, Jun 18, 2013 at 11:19 AM, Bob Wilson <bob.wilson at apple.com> wrote: > > On Jun 17, 2013, at 6:54 AM, Diego Novillo <dnovillo at google.com> wrote: > >> On 2013-06-15 14:18 , Evan Cheng wrote: >>> Apple folks are also gearing up to push on the PGO front. We are primarily interested in using instrumentation, rather than sampling, to collect profile info.
2013 Jun 18
0
[LLVMdev] RFC - Profile Guided Optimization in LLVM
On Jun 18, 2013, at 2:48 PM, Eric Christopher <echristo at gmail.com> wrote: > On Tue, Jun 18, 2013 at 11:19 AM, Bob Wilson <bob.wilson at apple.com> wrote: >> >> On Jun 17, 2013, at 6:54 AM, Diego Novillo <dnovillo at google.com> wrote: >> >>> On 2013-06-15 14:18 , Evan Cheng wrote: >>>> Apple folks are also gearing up to push on the
2011 Feb 03
0
temporary setups for ICEcast at festivals?
Hi : I am new to ICEcast, and really am just starting to get to grips with the ability of community radio, however I have a reason to look into the set up process and concepts some more, while I work with people in the Pacific region on using information communications technologies (ICT's) to empower learning networks, the foundations of indigenous music, and communities which have lots to
2013 Jun 18
0
[LLVMdev] RFC - Profile Guided Optimization in LLVM
On Jun 17, 2013, at 6:54 AM, Diego Novillo <dnovillo at google.com> wrote: > On 2013-06-15 14:18 , Evan Cheng wrote: >> Apple folks are also gearing up to push on the PGO front. We are primarily interested in using instrumentation, rather than sampling, to collect profile info. However, I suspect the way profile ended up being used in the various optimization and codegen passes
2014 Dec 29
2
Webradio directory
Hi guys, I'm running "Radio Unicorns" for one year now, transmitting live coverage of one of Germanys best american football teams, the Schw?bisch Hall Unicorns. Technically, it's a root server running freebsd and the latest icecast. I had up to several hundred concurrent listeners this year and had the server tested up to 2000 listeners (had to tweak a few kernel
2014 Dec 29
0
Webradio directory
Hi Martin, I use a muses which runs on all devices. The JavaScript is hosted by muses but it can be self hosted. I found that this was both the easiest and most cross platform solution. The player is here: www.zaumfm.com I'm not sure about where to get your station featured but will keep an eye on this thread for hints John McGrath > On 29 Dec 2014, at 14:46, Martin Jangowski
2015 May 28
0
[LLVMdev] RFC - Improvements to PGO profile support
Dario Domizioli <dario.domizioli at gmail.com> writes: > Hi Diego, > > thanks for clarifying the difference between the two formats. I have noticed > the new note in the "Sample Profile Format" section of the Clang guide > clarifying that it is different from the coverage format. > > So, my further question is... Am I right in understanding that both formats
2015 Jan 09
1
Webradio directory
Hi John, I have used Muses in the past with partial success. I'm not sure I'd say "runs on all devices" as it is a Flash-based player. I have been in contact with the developer in the past and he said an HTML5 version would be a good idea. With my own Icecast server, when listening with Muses, for some reason every 4-5 songs the stream would lock up. This doesn't occur when
2015 May 22
0
[LLVMdev] RFC - Improvements to PGO profile support
On Fri, May 22, 2015 at 11:16 AM, Dario Domizioli <dario.domizioli at gmail.com> wrote: > Hi all, > > I am a bit confused about the documentation of the format of the profile > data file. > > The Clang user guide here describes it as an ASCII text file: > http://clang.llvm.org/docs/UsersManual.html#sample-profile-format > > Whereas the posts above and the
2003 Jun 17
0
FW: 3274253-docked On2 movies don't draw the video frame
this just in -- who can take it? (Mau??) I have no access to a Mac to even test the bug right now.. ___ Dan Miller (++,) Founder, On2 Technologies <p>-----Original Message----- From: devbugs@apple.com [mailto:devbugs@apple.com] Sent: Tuesday, June 17, 2003 2:21 PM To: Dan Miller Cc: gao@apple.com; Doug Mcintyre Subject: Re: 3274253-docked On2 movies don't draw the video frame
2010 Jul 27
1
rgl package don't draw points with a color over points with another color
I want to plot points with different colors to show different selections of points in a 3d plot. My problem is that if I plot a red point at a location where already a blue point was plotted, than the point is still blue. Is there a parameter or so which can be used to draw over a existing point? Example: > require(rgl) > open3d() > plot3d(a<-c(1,2,3,4,5),a,a,type="l",
2017 Jul 01
0
[RFC] Placing profile name data, and coverage data, outside of object files
On Fri, Jun 30, 2017 at 5:54 PM, <vsk at apple.com> wrote: > Problem > ------- > > Instrumentation for PGO and frontend-based coverage places a large amount > of > data in object files, even though the majority of this data is not needed > at > run-time. All the data is needlessly duplicated while generating archives, > and > again while linking. PGO name data
2015 May 28
3
[LLVMdev] RFC - Improvements to PGO profile support
Hi Diego, thanks for clarifying the difference between the two formats. I have noticed the new note in the "Sample Profile Format" section of the Clang guide clarifying that it is different from the coverage format. So, my further question is... Am I right in understanding that both formats can be used for PGO purposes then? I have tried the following, as in the Clang user guide: $
2017 Jul 01
0
[RFC] Placing profile name data, and coverage data, outside of object files
On Fri, Jun 30, 2017 at 10:25 PM, Sean Silva <chisophugis at gmail.com> wrote: > > > On Fri, Jun 30, 2017 at 10:04 PM, Sean Silva <chisophugis at gmail.com> > wrote: > >> >> >> On Fri, Jun 30, 2017 at 5:54 PM, via llvm-dev <llvm-dev at lists.llvm.org> >> wrote: >> >>> Problem >>> ------- >>> >>>
2013 Jan 21
0
random draw from a RESTRICTED pareto distribution
Dear R user, I am a newcomer and need help concerning 'draw a random number for a restricted area of a prareto distribution'. (1) For estimation of pareto distribution: >http://stats.stackexchange.com/questions/27426/how-do-i-fit-a-set-of-data-to-a-pareto-distribution-in-r< We calculate the pareto distribution (parameter estimation) as follows: pareto.MLE <- function(X) { n
2008 Feb 08
0
xspline(..., draw=FALSE) fails if there is no open device (PR#10728)
jari.oksanen at oulu.fi wrote: > Full_Name: Jari Oksanen > Version: 2.6.2 RC (2008-02-07 r44369) > OS: Linux > Submission from: (NULL) (130.231.102.145) > > > Even if function xspline() is called with argument draw=3DFALSE, it req= uires a > graphics device (that it won't use since it was draw=3DFALSE). I run in= to this > because I intended to use xspline within a
2011 Jan 25
1
lattice draw.key(): position of key in panels
Good afternoon, I am working on a plot that requires custom legends to be placed in some panels of the plot; other panels do not contain legends. The problem that I run into is positioning of the legend in individual panels. In particular, the 'x' and 'y' elements of the key-list are ignored by draw.key() when it is called from inside a panel function. As a result, the legend is
2008 Feb 08
1
xspline(..., draw=FALSE) fails if there is no open device (PR#10727)
Full_Name: Jari Oksanen Version: 2.6.2 RC (2008-02-07 r44369) OS: Linux Submission from: (NULL) (130.231.102.145) Even if function xspline() is called with argument draw=FALSE, it requires a graphics device (that it won't use since it was draw=FALSE). I run into this because I intended to use xspline within a function (that does not yet draw: there is plot method for that), and the function
2012 Jun 28
0
neatmap - draw.dendrogram - help!
Hi all, I'm having a problem where by I'm trying to use the NeatMap draw.dendrogram function as it is more versatile in placement/direction of dendrograms, instead of the limited plot function. Using plot I can get my dendrograms to display the species name for each leaf of the tree. But I cannot figure out how to make this happen using draw.dendrogram.. genetic<-