search for: _z

Displaying 20 results from an estimated 52 matches for "_z".

Did you mean: _sz
2008 Jun 02
2
ast_compile_ael2: Warning: file /etc/asterisk/extensions.ael, line 932-932: Empty Extension!
...ind it a bit disturbing that this message has a level of WARNING (instead of NOTICE maybe) because the extensions in question are empty on purpose. The only reason they exist are the hints. hint(SIP/3000) 3000 => {} hint(SIP/4000) 4000 => {} ... All the "real" dialplan stuff is in _Z. => { // do something ... } Maybe the error level should be lowered so the user is not mislead into thinking something was broken? Or is there a way to do it which does not trigger the warnings? Gr??e, Philipp Kempgen -- http://www.das-asterisk-buch.de - http://www.the-asterisk-book.com Am...
2007 Feb 14
1
Following call forwards
...rs, but the calls all exit at the same location and the users would get all confused if their local calls from Malm? end up connecting to a phone in Stockholm. It's not so difficult in that specific case. Add context=frommalmoe to sip.conf, and do something like this: [frommalmoe] exten => _Z.,1,Goto(outgoing,032${EXTEN},1) exten => _0.,1,Goto(outgoing,${EXTEN},1) (I have no idea what the real prefix for Malm? is, this is just an example). When you have phones all over the country it gets complicated though. You need a context for each area code, and that gets unwieldy. It is much...
2007 Feb 08
1
Any Way to Get # Functionality in DISA
When using a SIP phone with Asterisk, hitting the # key (pound or hash depending on where in the world you happen to be) tells Asterisk that there are no more digits coming, and to put the call through immediately based on the digits already entered. This is the same functionality as the PSTN (at least in North America). However, DISA just sees the # as another digit, and therefore pressing #
2006 Sep 21
7
Big sites using Dovecot
Hi, Are there any big Dovecot sites (say 50,000-100,000) users on this list? What sort of hardware do you use. What sort of problems do you see? Many thanks, Jonathan.
2005 Oct 14
1
match a set of numbers in GoToIf against a variable
Hello all, Okay when you are done laughing at the simplicity of this question could someone show me please what I have wrong in the following statement? GoToIf($[${numdial} != [1-9] ]?15:3); What this is supposed to do is if numdial is not a single digit from 1 to 9 inclusive goto 15, if it is a singledigit from 1 to 9 inclusive goto 3. Should be pretty simple but not working for me, always
2009 Dec 31
1
[PATCH] Autogenerate uureg opcode macros
...v, ureg, s) #define _CONST_MAT4(v, s) UREG_CONST_MAT4(v, ureg, s) #define _ADDRESS(v) struct ureg_src v = ureg_DECL_address(ureg) #define _LOOP(v) struct ureg_src v = ureg_DECL_loop(ureg) @@ -88,6 +88,41 @@ static inline struct ureg_src _src(const struct ureg_src& src) {return src;} #define _zy(v) _swz(v, Z, Y, Z, Y) #define _zw(v) _swz(v, Z, W, Z, W) +#define _ind(r, a) ureg_src_indirect(_src(r), _src(a)) +#define _abs(x) ureg_abs(_src(x)) +#define _neg(x) ureg_negate(_src(x)) +#define _undef ureg_src_undef() +#define _is_undef(v) ureg_src_is_undef(_src(v)) + +#define _X(v) ureg_writ...
2006 Apr 17
1
ksoftirqd
...A;"!&<F5E;6%I;"!)<W-U:6YG($-!,(&? M, T&"2J&2(;W#0$!`04``X&-`#"!B0*!@0#$ICQ5<U7[3KG*F5H>:,!U!''"= MW^G_HQ[LO<WU6_(:=KU_##IA\K]1S@''4Y5 *,-<"8UHLB15PCMW)\"N%6JH_ M<5;+KSP+!^?Q''Y$V)"H3SRO5\X)W/0.^*_Z[&#X''OT" `F37IZ:[GV71Q2I4 MA0](!''^GMM$\801 ''F09<F"W^P(#`0`!HX&4,(&1,!(&`U4=$P$!_P0(, 8! M`?\"`0`P0P8#51T?!#PP.C XH#:@-(8R:''1T<#HO+V-R;"YT:&%W=&4N8V]M M+U1H87=T95!E<G-O;F%L1G)E96UA:6Q#02YC<FPP"P8#51T/! 0#...
2014 Aug 29
0
Using puppet with Apache mod_disk_cache and passenger over SSL
...K5 drwx------ 3 apache apache 4096 Aug 29 12:37 Q9 drwx------ 3 apache apache 4096 Aug 29 12:37 Rl drwx------ 3 apache apache 4096 Aug 29 12:37 St drwx------ 3 apache apache 4096 Aug 29 12:37 ui drwx------ 3 apache apache 4096 Aug 29 12:37 wV drwx------ 3 apache apache 4096 Aug 29 12:37 _Z -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-users+unsubscribe@googlegroups.com. To view this discussion on the web visit https://groups.googl...
2019 Jun 27
2
Re: [PATCH 3/9] Rust bindings: Add 4 bindings tests
...t; + > +extern crate guestfs; > + > +fn create() -> guestfs::Handle { > + match guestfs::Handle::create() { > + Ok(g) => g, > + Err(e) => panic!("fail: {}", e), > + } > +} > + > +fn ignore(_x: guestfs::Handle, _y: guestfs::Handle, _z: guestfs::Handle) { > + // drop > +} > + > +#[test] > +fn create_multiple() { > + let x = create(); > + let y = create(); > + let z = create(); > + ignore(x, y, z) > +} > -- > 2.20.1 (Apple Git-117) The actual test parts of this patch are fine, b...
2019 Jun 27
1
Re: [PATCH 3/9] Rust bindings: Add 4 bindings tests
...s::Handle { > > > + match guestfs::Handle::create() { > > > + Ok(g) => g, > > > + Err(e) => panic!("fail: {}", e), > > > + } > > > +} > > > + > > > +fn ignore(_x: guestfs::Handle, _y: guestfs::Handle, _z: > > guestfs::Handle) { > > > + // drop > > > +} > > > + > > > +#[test] > > > +fn create_multiple() { > > > + let x = create(); > > > + let y = create(); > > > + let z = create(); > > > + ignore(x,...
2006 Oct 12
9
Newbie question: 28000+ files for 25000+ records?
Hi Obviously my question is, is that normal? To have so many files? I was indexing 6 string fields from 25000+ model records (all of the same model). The index appears to be working. I guess I was expecting a few hundred files after optimzing, not more files that records indexed. Please understand I am brand spanking new to Lucene, Ferret, and AaF. I was using acts_as_ferret with :fields
2014 Apr 02
5
[LLVMdev] [lld] adding demangler for symbol resolution
On 4/2/2014 12:23 PM, Nick Kledzik wrote: > On Apr 1, 2014, at 9:19 PM, Shankar Easwaran wrote: > >> Hi Nick, Bigcheese, >> >> When lld is used to link C++ code, it would be required to demangle symbol names by default/user driven option. >> >> The Gnu linker has the following options :- >> >> --demangle=[style] >> --no-demangle >>
2019 Jun 27
0
[PATCH 3/9] Rust bindings: Add 4 bindings tests
...Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ + +extern crate guestfs; + +fn create() -> guestfs::Handle { + match guestfs::Handle::create() { + Ok(g) => g, + Err(e) => panic!("fail: {}", e), + } +} + +fn ignore(_x: guestfs::Handle, _y: guestfs::Handle, _z: guestfs::Handle) { + // drop +} + +#[test] +fn create_multiple() { + let x = create(); + let y = create(); + let z = create(); + ignore(x, y, z) +} -- 2.20.1 (Apple Git-117)
2019 Jun 27
0
Re: [PATCH 3/9] Rust bindings: Add 4 bindings tests
...> > +fn create() -> guestfs::Handle { > > + match guestfs::Handle::create() { > > + Ok(g) => g, > > + Err(e) => panic!("fail: {}", e), > > + } > > +} > > + > > +fn ignore(_x: guestfs::Handle, _y: guestfs::Handle, _z: > guestfs::Handle) { > > + // drop > > +} > > + > > +#[test] > > +fn create_multiple() { > > + let x = create(); > > + let y = create(); > > + let z = create(); > > + ignore(x, y, z) > > +} > > -- > > 2.20.1...
2016 Oct 11
4
Port to other Operating Systems
Hello all, Pardon me if this has already been covered elsewhere, however I have not been able to find such documentation. Is there a consolidated set of documentation that clearly explains what's necessary to port LLVM to other OSes & how to add support for building executables (& libraries) for those OSes? I'm searching through the source in an attempt to understand what needs to
2010 Oct 15
5
[LLVMdev] How do I find all memory allocations in an llvm ir code file?
I tried to compile this snippet of C++ code: void FuncTest() {     int* a = new int;     int* b = new int[2]; } using: clang test.cpp -S -emit-llvm -o - > test.llvm and obtained this: define void @_Z8FuncTestv() { entry:   %a = alloca i32*, align 4   %b = alloca i32*, align 4   %call = call noalias i8* @_Znwj(i32 4)   %0 = bitcast i8* %call to i32*   store i32* %0, i32** %a, align 4   %call1 = call noalias i8* @_Znaj(i32 8)   %1 = bitcast i8* %call1 to i32*   store i32* %1, i32** %b, align 4  ...
2006 Oct 03
1
HP Toolbox kills Samba
...@\.%O,>&54KMR4GC:%>V*B>1%3B1K$95B MH%TQ<<0$(AS `1PPD<Q$,IH3S;E$S1E[<HO8'91V18Q!:\ !', !(@V11K;? M`B<%M=0A>.96YS:C,5Y5><O*A.: E V*L6I</?WQQ?;'E1=:TJ[0W_3#X `. MX(#^./ @TM+J2$9;J+R:_?&4^I!:F!RMBWOBO-B%KA;36EJ[@(6+-^K)*%G4 MDS3>V-LU=4.OR&GJ_ZJEK-1^:_1K9[WF^S(=9>56PWG^<O^3\-;>:#A"F9L- M)YJ@?=EI:;6Z]L"7&F%G*/UNJM*R/&[H7;]W>3&(Y<6UX>\N/58VMMFW\?._ MKMU?]A'W/&@/^^U!65X4+?ZI7+NG$J:_\N/+3F^W\H[+\H4#N^>6'W?EQY4= MC-?=VU_7)I9=ROTNJ^:N0N-X0ZM=]#O=8:?[KO;A]U[__46_I^W&L'5\%39_ MV?^T5W\...
2020 Mar 26
0
[PATCH nbdkit 9/9] tests/old-plugins: Add plugin from nbdkit 1.18.2.
...zQvOvU<)>=&6UKUBcCuUExX{?|sIhUV`35XyDc^nbE_drYS;_N|9jru}Z?`MPflt^? z5#3L|0r^%elQ9zS!_uDTt@h!zbkd`L@;H4>0N)1i)#!Ua`nl`gt`SOGm$v+I`htL( zI#_U8%|)`tZL3LM$nI4OXi(Rn!R-_hi+43{EbW2<sJf6k<Lj%D_8`aK4fh)#e@s*7 zm@xt@i*Xb1=(%e^ciq$F+Sc{yO9<6A*d*2ql%g!_1N-^`GhKhKwq@;L4F9R*1+DL9 zB^UC$HpM=_Z+1-AKio+((b&=FwHJ-sVMa$m>u2X{)vbq4wSMN%s`pk5h8xj^A5#|w z!#*g~ej)Nf$28+6$RPH}?cWF6VB7`Z_5{@SY}mL@@u88P9jF+~$K&g$NX6hDbG`3I zym<8&X_>RXUjKvzf9nzTw5Ugpq7J#*z6*6Ho^~V`w5%PXxZ3Xo+H$KCSKmRrx7_Li zOCI{=X{gQf=m$KAz9F8@S!qxE^RBjEfEj_k8l$x1-@%UAcnPe9ZJ$uzN~rVG^%VEZ zPk^yB<Au8^6$}S77JbA...
2019 Jun 21
2
RFC: Interface user provided vector functions with the vectorizer.
...by the frontend and not need to be recomputed. Here is an example of ho the IR would look like with this change: ``` @llvm.compiler.used = appending global [1 x i8*] [i8* bitcast (<2 x i32> (<2 x i32>)* @f to i8*)], section "llvm.metadata" declare dso_local <2 x i32> @_ZGVnN2v_foo(<2 x i32> returned) declare i32 @foo(i32) #0 ; other function definition, including the one provided by the user `my_vector_foo` if the user provided a definition and not just the declaration attribute #0 = {vector-function-abi-variant=“_ZGVnN2v_foo(my_vector_foo)"} ``` If...
2019 Jun 24
4
RFC: Interface user provided vector functions with the vectorizer.
...by the frontend and not need to be recomputed. Here is an example of ho the IR would look like with this change: ``` @llvm.compiler.used = appending global [1 x i8*] [i8* bitcast (<2 x i32> (<2 x i32>)* @f to i8*)], section "llvm.metadata" declare dso_local <2 x i32> @_ZGVnN2v_foo(<2 x i32> returned) declare i32 @foo(i32) #0 ; other function definition, including the one provided by the user `my_vector_foo` if the user provided a definition and not just the declaration attribute #0 = {vector-function-abi-variant=“_ZGVnN2v_foo(my_vector_foo)"} ``` If...