search for: interject

Displaying 20 results from an estimated 61 matches for "interject".

2004 Aug 06
4
Server based audio merge
...omplicated to keep timing correct and it has a negative > impact on total latency. True, but there is one critical place where it's necessary to mix at least two streams--when someone's trying to break into a stream. If speaker A goes on and on and speaker B (or C, D, E, F...) wants to interject or interrupt, who do they do it without inband without mixing? > The overhead required to mix merge and re-encode is usually not worth > the benefit as in most situations you are not really saving any > bandwidth. But the options are *don't transcode* and *always transcode*. Switchi...
2005 Feb 15
1
Fw: Updating MetaData at the Relay
...admin?&mode=updinfo&song=ACDC-Back_In_Black This syntax is supported but it only shows up on the Icecast2 server web pages, not on the listeners player, as far as I know. I asked about this a week or 2 ago. I would like this to work as well. Oddsock wrote that there is no standard way to interject the metadata into the stream at the server end. Shoutcast can do it for mp3 streams. It would be very nice if Icecast2 could do this for at least Ogg Vorbis streams by inserting a tag frame between the audio frames. Regards, Ross Levis.
2005 Jun 03
1
Thanks :)
From: Ajay <ajay at unisoftindia.net> > and hope that Redhat accepts the existance of this project and finds a > way to utilize it for good of both. You were doing fine up until this point. I think the speculation on Red Hat needs to stop, and I don't know why you had to interject this as well. From what I've seen, I don't think Red Hat is in any legal position to accept the existance of any project, and I no longer want to go down the road of where Red Hat's "hands are tied" on the nagging trademark history. So let's just leave it be. -- Bryan...
2008 Apr 01
4
NEW: Sociolects in R
...o a generous contribution from Lars Polifo, these features will be made available in an upcoming version of R. As it turns out, there are some particularly interesting challenges that needs to be addressed. Consider for instance the translation of the t test in the locale en_SF_US.UTF8 (notice the interjection of the code "SF" to denote "San Fernando Valley") t.test(extra ~ group, oh, baby, data = sleep) Welch Two Sample t-test data: extra by group t = -1.8608, like, df = 17.776, like, wow, p-value = 0.0794 alternative hypothesis: true difference in means is like, ya kn...
2004 Aug 06
0
Server based audio merge
>True, but there is one critical place where it's necessary to mix at least >two streams--when someone's trying to break into a stream. If speaker A >goes on and on and speaker B (or C, D, E, F...) wants to interject or >interrupt, who do they do it without inband without mixing? It doesn't have to be done that way. You can simply have the server echo the voice streams back to the various clients. Leave the job of mixing the sounds to the sound device (ex: DirectSound or sound hardware) from multiple...
2012 Oct 20
1
Logistic regression/Cut point? predict ??
I am new to R and I am trying to do a monte carlo simulation where I generate data and interject error then test various cut points; however, my output was garbage (at x equal zero, I did not get .50) I am basically testing the performance of classifiers. Here is the code: n <- 1000; # Sample size fitglm <- function(sigma,tau){ x <- rnorm(n,0,sigma) intercept <- 0 bet...
2017 Mar 06
5
Error in https://wiki.samba.org/index.php/User_Home_Folders
Hi all,   can I freely create an account for the Wiki and do changes? Or should I notify someone (Rowland)? I found a small error in https://wiki.samba.org/index.php/User_Home_Folders . The wiki mentions as rights on the share Read and Execute for Authenticated Users, but on that level I see only Full Control, Change and Read. My assumption is that it should be Change and Read for Authenticated
2013 Oct 29
2
[LLVMdev] [cfe-dev] RFC: A proposal to move toward using C++11 features in LLVM & Clang / bounding support for old host compilers
...ause of what we observed. (We are only testing with libcxxrt though) -------------- I could totally be wrong about libc++ and it's "our" fault in the testing we've done. I apologize if this is a non-issue and I hope during the "heads up" phase we have time to actually interject if there are potentially fatal issues. Forcing a dependency on gnu runtime/libs/STL is a serious regression imho.
2011 Mar 07
2
[LLVMdev] llvm.gcroot suggestion
Hi Talin, Sorry to interject - > For example, suppose I have a type "String or (float, float, float)" - that > is, a union of a string and a 3-tuple of floats. Most of the time what LLVM > will see is { i1; { float; float; float; } } because that's bigger than { > i1; String* }. LLVM won't even...
2007 Dec 20
3
What is $super
Greetings, I had a question about the $super argument that I wasn''t able to find in documentation, searching etc. What exactly is the $super argument. Is it a reference to the super class''s prototype function? Or is it an instantiated object of the super class that is passed to the subclass''s method? I am completely confuzzled on this one, my typical
2007 Jun 30
6
[LLVMdev] Repository Layout
...ion. We currently have modules laid out like this: llvm/trunk/... llvm/branches/... llvm/tags/... stacker/trunk/... stacker/branches/... stacker/tags/... and similarly for all the other modules (test-suite, java, poolalloc, etc.). Unfortunately, this "standard" layout interjects a directory (trunk/branches/tags) below each module name. I would rather see it laid out like this: trunk/llvm/... trunk/stacker/... trunk/java/... branches/llvm/... branches/stacker/... branches/java/... tags/llvm/... tags/stacker/... tags/java/.. Fortunately, with...
2005 Apr 07
4
MSSql Connections cannot be established
Hi All, I''m using shorewall on my laptop(2 NIC) to connect my desktop to the Internal LAN. For some reason, MS''s SQL query analyser is not able to connect to the SQL server. I alway get the "Server does not exist" I even tried to connect to it using IP address rather than netbios name and it still doesn''t work. All of the access is fine. (eg: WEB/ping etc)
2013 Dec 02
0
[LLVMdev] "Mapping High-Level Constructs to LLVM IR" Github URL
...ine and Function, Variable) - How to interface with a garbage collector? (link to existing docs) - How to express a custom calling convention? (link to existing docs) - Representing constructors, destructors, finalization - How to examine the stack at runtime? How to modify it? (i.e. reflection, interjection) - Representing subtyping checks (with full alias info), TBAA, struct-path TBAA - How to exploit inlining (external, vs within LLVM)? - How to express array bounds checks for best optimization? - How to express null pointer checks? - How to express domain specific optimizations? (i.e. lock eli...
2013 Dec 03
2
[LLVMdev] "Mapping High-Level Constructs to LLVM IR" Github URL
...le) > - How to interface with a garbage collector? (link to existing docs) > - How to express a custom calling convention? (link to existing docs) > - Representing constructors, destructors, finalization > - How to examine the stack at runtime? How to modify it? (i.e. > reflection, interjection) > - Representing subtyping checks (with full alias info), TBAA, struct-path > TBAA > - How to exploit inlining (external, vs within LLVM)? > - How to express array bounds checks for best optimization? > - How to express null pointer checks? > - How to express domain specific o...
2011 Mar 07
0
[LLVMdev] llvm.gcroot suggestion
On Mon, Mar 7, 2011 at 10:58 AM, Joshua Warner <joshuawarner32 at gmail.com>wrote: > Hi Talin, > > Sorry to interject - > > >> For example, suppose I have a type "String or (float, float, float)" - >> that is, a union of a string and a 3-tuple of floats. Most of the time what >> LLVM will see is { i1; { float; float; float; } } because that's bigger than >> { i1; String...
2009 Jul 20
0
[LLVMdev] x86 unwind support
Hi, > How do either of these prevent DWARF exception handling from working? if you throw an exception using your proposed unwind implementation, then it wouldn't be caught by dwarf catch/cleanup regions (eg: invoke). > Would a landing pad expecting to get an exception object from the > exception intrinsics fail to get one in the case of an unwind and > crash? The landing pad
2009 Jul 20
2
[LLVMdev] x86 unwind support[MESSAGE NOT SCANNED]
Hi, Can I interject something at this point. Can I suggest that invoke/unwind be renamed DWARF_invoke/DWARF_unwind to warn the unwary that if they want lightweight exception handling in their Python/ML/whatever implementation they should use some other method. PS. Kenneth, why don't you just use setjmp/longjmp...
2013 Jun 27
1
[LLVMdev] [UBSan] stack trace?
Is there a way to get the undefined-behavior sanitizer to include stack traces in their error messages? Also, I'm sometimes seeing raw addresses where I'd expect to see file names and line numbers. Do I need to point this sanitizer to llvm-symbolizer? And if so, how? Thanks, Greg
2007 Jul 02
0
[LLVMdev] Repository Layout
...his: > > llvm/trunk/... > llvm/branches/... > llvm/tags/... > > stacker/trunk/... > stacker/branches/... > stacker/tags/... > > and similarly for all the other modules (test-suite, java, poolalloc, > etc.). Unfortunately, this "standard" layout interjects a directory > (trunk/branches/tags) below each module name. I would rather see it > laid > out like this: > > trunk/llvm/... > trunk/stacker/... > trunk/java/... > > branches/llvm/... > branches/stacker/... > branches/java/... > > tags/llvm/.....
2020 Apr 10
4
Running clang tests
Hi, I’d just like to interject to say that building within Visual Studio isn’t really that bad. Running the lit tests is a bit painful because the LLVM build tools that are integrated with the build system don’t play nice with msbuild. Particularly, I’ve never been able to actually cancel an invocation of lit or tablegen via vis...