search for: afterthought

Displaying 20 results from an estimated 83 matches for "afterthought".

2006 May 19
1
Development news :: Smarter medialess calls!
...so I don't expect the various non- asterisk IAX2 clients out there to support it yet. When they do, it will mean a huge change in the number of calls your server can handle. For now, this optimizes calls in Asterisk IAX2 "clusters". * SIP: Removing the media immediately, not as an afterthought Mark and Kevin have been working on various ways to optimize the setup of a SIP call where Asterisk has no reason to stay in the media stream. Asterisk will now setup the call directly between the two devices instead of accepting the call, staying in the stream and then, as a sudden aftertho...
2010 Aug 28
2
[LLVMdev] [Query] Programming Register Allocation
...once thought thanks to the easy interfaces. What I need to know is how to access the machine register classes. Also, I need to know which virtual register is to be mapped into each specific register class. I assume there is type information on the registers. I need to know how to access it. And a afterthought, does LLVM place casts into different virtual registers, or do I need to include casting of floats to integers or vice versa when I see ADD i32 float i32? Thanks, Jeff Kunkel -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-de...
2016 Jul 29
2
Fwd: Good installation documentation on samba4?
...tion on the internet helped to create a working version. When comparing the documentation of samba4 vs. samba 3.5 I find that the samba3.5 documentation is a lot more complete and a lot bigger. Comparing the samba4 documentation to the samba3.5, makes me think the newer documentation of more of an afterthought than a similarly constructed document. 2016-07-29 22:25 GMT+02:00 Rowland penny <rpenny at samba.org>: > On 29/07/16 20:50, Léon van der Kaap wrote: > >> I figured out the resolv.conf bit fidgeting around. Thanks for the tip >> anyway. >> >> Regarding the krb5....
2009 Feb 18
3
[LLVMdev] Parametric polymorphism
...People who want to compile something other than C (Haskell, ML, OCaml, C#, etc.) would benefit from from having type variables in the IR. Focusing too much on one language leads to a limited VM. Witness the JVM (only supports Java), or MSIL (designed for C#, with other features tacked on as an afterthought). What you say about maturity and destabilization is probably true, but that's more of a political problem or a manpower problem, not a technical problem. -DeLesley
2016 Nov 04
2
How does one mark all messages as read (imap4flag "seen") with sieve?
Hello! I had hoped that marking all messages that arrive to a specific mailbox as read/seen would be as simple as applying the following sieve script to all incoming mail for that mailbox user: ######################## require ["imap4flags"]; addflag "\\Seen"; ######################## With this script in-place, mail does not appear to be marked as read/seen. It arrives as it
2008 Jan 21
8
Polymorphic URL helpers documentation and fixes
Yesterday I answered a question regarding polymorphic URL helpers on Core ML and noticed that the module has no documentation. I''ve documented it and rewritten unit tests using Mocha. I also optimized some of the code slightly (nothing major, though). The patch also includes two fixes by Geoff Buesing, who has done awesome work in this area in the past.
2010 Aug 29
0
[LLVMdev] [Query] Programming Register Allocation
...rmation on the registers. I need > to know how to access it. MachineRegisterInfo::getRegClass will give you the TargetRegisterClass for a given virtual register. Each TargetRegisterClass has an "allocation order" that enumerates all physical registers valid for that class. > And a afterthought, does LLVM place casts into > different virtual registers, or do I need to include casting of floats to > integers or vice versa when I see ADD i32 float i32? The instruction selector creates all necessary conversion instructions. -- Gergö Barany, research assistant gergo...
2005 Mar 05
1
LDAP mailing list for ldapsam people
People, I came to Samba 3 or 4 weeks ago and now have a successful ldapsam 3.0.11 PDC installation for 1150+ users (around 80 Win 2000 and XP workstations) running together with a DHCP server as an "afterthought" service on a RHAS3 NAS server. I adopted/adapted my already existent Openldap (2.2.17) DSE at that site) and wrote to this list about my experiences. For example I couldn't use the samba-ldap tools, hadn't reached Appendix A of the Official Samba HOWTO yet and had to reinvent the whe...
2010 Aug 29
1
[LLVMdev] [Query] Programming Register Allocation
...> to know how to access it. > > MachineRegisterInfo::getRegClass will give you the TargetRegisterClass for > a > given virtual register. Each TargetRegisterClass has an "allocation order" > that enumerates all physical registers valid for that class. > > > And a afterthought, does LLVM place casts into > > different virtual registers, or do I need to include casting of floats to > > integers or vice versa when I see ADD i32 float i32? > > The instruction selector creates all necessary conversion instructions. > > -- > Gergö Barany, research a...
2003 Nov 18
2
Bayonne and Asterisk
All, is anyone using Bayonne in conjunction with Asterisk? I'm currently using only Bayonne, but I'm investigating the possibilities of switching the telephony frontend over to Asterisk, and have Asterisk route the IVR tasks to Bayonne through H323. Anyone care to share his views on this approach? Any pointers or do's and don'ts? All info is greatly appreciated! Regards,
2007 Apr 17
8
problem with rspec_on_rails and @controller.should_receive(:render) in trunk
Hey guys! I am using rspec trunk, and I am having a little problem with the latest version. (I am quite sure this worked with an older version about a week ago) heres the spec: it "should render the new user form without layout for a xhr request" do @controller.should_receive(:render).with(:layout=>false) xhr :get,:new end and the controller: def new render
2005 Sep 25
7
(newbie) Missing Template Error using Rolling With Rails Tutorials
Hi all, New to the list, Ruby, & RoR. I''ve been going through the Rolling With Rails tutorial, but am getting the following error when the instructions tell you to add the @recipes = Recipe.find_all line to the RecipeController: Template is missing Missing template ./script/../config/..//app/views//recipe/index.rhtml The index.rhtml file is right where it''s supposed to
2020 Sep 14
2
[Proposal][Debuginfo] dsymutil-like tool for ELF.
...utable while linking > object files" use-case? I worry that those could have enough different > requirements that you really need to be developing the > linker-integrated version from the very beginning in order to get a > good result, rather than trying to shoehorn it in as an afterthought. > > Even if we would have the best solution - it is still useful to > have a tool like llvm-dwarfutil > > for cases when it is necessary to process already created binaries. > > > Sure -- I just think that should be considered as a secondary > use-case, and...
2013 Jul 24
0
[LLVMdev] Transitioning build to cmake
...arwin/libclang_rt.x86_64.a The CMake support in compiler-rt evolved in a completely different direction from the Makefiles; it was primarily designed originally, IIRC, to support building asan (and later, the other sanitizers), and mostly on Linux at that. Other platforms and configurations were an afterthought. It needs serious work--in particular, the runtime libraries are built with the host compiler (not usually a problem, unless you're building a cross compiler), and (as you've probably noticed by now) it doesn't make fat archives. Patches welcome if you can speak CMake ;). > > &...
2009 Feb 05
3
The Origins of R AND CALCULUS
An amusing afterthought : What is a rival software (ahem!) was planting this, hoping for a divide between S and R communities.or at the very minimum hoping for some amusement. an assumption or even a pretense of stealing credit is one of the easiest ways of sparking intellectual discord Most users of softwares don't r...
2013 Jul 25
1
[LLVMdev] Transitioning build to cmake
...available. > ... > The CMake support in compiler-rt evolved in a completely different direction from the Makefiles; it was primarily designed originally, IIRC, to support building asan (and later, the other sanitizers), and mostly on Linux at that. Other platforms and configurations were an afterthought. It needs serious work--in particular, the runtime libraries are built with the host compiler (not usually a problem, unless you're building a cross compiler), and (as you've probably noticed by now) it doesn't make fat archives. Patches welcome if you can speak CMake ;). Ok. Unfortun...
2016 Nov 05
0
How does one mark all messages as read (imap4flag "seen") with sieve?
...web, but all of > them are wrapped in conditional logic of some variety. This is a > spam-training mailbox and I simply want everything marked as seen/read > upon arrival so I'm not bothered/notified every time. > > Thanks for any pointers here! > > -Ben > I had the afterthought that perhaps the problem is that my Antispam plugin pipe-script simply writes the original message to the filesystem. It doesn't use dovecot-lda, so the Sieve filters are not being applied. I would use dovecot-lda if it didn't sefault with my pipe script. :( Will just have to live with ma...
2016 Jul 29
0
Fwd: Good installation documentation on samba4?
...to create a working version. > > When comparing the documentation of samba4 vs. samba 3.5 I find that > the samba3.5 documentation is a lot more complete and a lot bigger. > Comparing the samba4 documentation to the samba3.5, makes me think the > newer documentation of more of an afterthought than a similarly > constructed document. > I think I understand this a bit better now, the kinit didn't work until you added a line to krb5.conf that told kerberos where the DC was, this sounds very like a dns problem. Did you alter your /etc/resolv.conf after the provision, so it po...
2020 Feb 21
0
capabilities(), was [R-pkg-devel] ... No protocol specified (OS X only)
...es if X11 is unknown. nas <- names(z[is.na(z)]) if(any(nas %in% c("X11", "jpeg", "png", "tiff"))) { ## This might throw an X11 error z[nas] <- tryCatch(.Internal(capabilitiesX11()), error = function(e) FALSE) } } z } and as an afterthought rather improve the argument's default, from Xchk = TRUE to Xchk = is.null(what) || any(c("X11", "jpeg", "png", "tiff") %in% what) (or similar smart defaults). Then, e.g., capabilities("long.double") or capabilities(&quo...
2006 May 09
0
[RESEND][PATCH] Fix loading binary images that support or require PAE
...der of the PAE requirements/capabilities of the loading image. This patch extends the flags used in the quasi-Multi-boot Spec record to this include information, and to process that information. It also attempts to provide a way to specify that the binary image is a 64 bit kernel, but that was an afterthought in this patch, so there could be things I''m missing there. - Bruce Rogers Signed-off-by: Bruce Rogers <brogers@novell.com> _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel