similar to: show queue ... Invalid

Displaying 20 results from an estimated 900 matches similar to: "show queue ... Invalid"

2003 Oct 20
1
looking for a job
Hello! My name is Denis Shaposhnikov. I'm looking for a job in EU (Germany is preferably) as a UNIX/FreeBSD system administrator and/or network administrator that lets me utilize my experience in an Internet Service Providing (ISP). Skills: * Operating systems: UNIX (FreeBSD 2.2 - STABLE), Cisco IOS (10.x - 12.x), ZyNOS. Understand how systems work and is able to apply this
2006 Jun 26
0
chan_sip.c: Insufficient information for SDP
Hi! I'am often see this WARNINGs in messages file. What does it mean? Jun 26 16:59:00 WARNING[62792] chan_sip.c: Insufficient information for SDP (m = '', c = '') Jun 26 16:59:01 WARNING[62792] chan_sip.c: Insufficient information for SDP (m = '', c = '') And it seems that at this time I can't hear my peer correspondent. Thanks! -- DSS5-RIPE DSS-RIPN
2006 Mar 07
2
ipw can not work in adhoc mode
See atttachment. I have already submit this bug via "report a bug" in Nov last year, but no reply, and the problem still exist in stable-6 now. Any one who knows how to solve this problem ? Thanks... -------------- next part -------------- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2005 Jun 09
3
Pickup problem
Hi, when i use the *8 for the call pickup the call i fetch is directly connected and i can't see the callers number. What i want is that the call in the first rings at my phone and in the second i can see the callers number. I am using a polycom 500 ip phone. Is this a special polycom problem? Regards, Kib
2006 Jun 19
1
Asterisk 1.2.9 cli "-x" doesn't flush?
We have a script which executes "asterisk -n -r -x ....." periodically against the running server, to check the status of a few things, and pipe the output to a file. With prior versions of Asterisk this worked fine, but having just upgraded to 1.2.9, we are finding that if the output is lengthy, then Asterisk seems to terminate before fully flushing stdout. Is this a known bug, is
2010 Aug 19
3
Modules review
Hello, i have written some modules for Puppet and would be thankful, if someone could take a look for quality enhancements. http://194.94.79.17/hotkey/puppet.tar.gz The only nasty part is, that i have defined some global variables at the site.pp, which i am using at several templates. And i am looking for a solution to collect the hostnames and ipaddresses of all connected nodes, without
2004 Jan 27
0
Undelivered mail: hi
Dear User, the message with following attributes has not been delivered, because contains an infected object. Sender = samba@lists.samba.org (may be forged) Recipients = marketing@microstar.ru Subject = hi Message-ID = [unknown-id] Antivirus filter report: --- Dr.Web report --- Following virus(es) has been found: infected with Win32.HLLM.MyDoom.32768 Dr.Web detailed report:
2019 May 10
2
contributing llvm-lipo
Every case is different, but yes, as I said - I would like to take a closer look at the problem again, it might be the case that we don't need this complexity in this particular case, but want to double check. But yeah, in general I agree with you! On Thu, May 9, 2019 at 6:09 PM Jake Ehrlich <jakehehrlich at google.com> wrote: > I think that pretty much hits the nail on the head.
2020 Oct 02
2
[EXTERNAL] Re: preferred way to return expected values
Yeah, not sure either. The discussion about minimum compatibility usually comes down to what version is available on long-term OS releases. On Fri, Oct 2, 2020 at 12:38 PM George Rimar <grimar at accesssoftek.com> wrote: > > Is the code currently broken? > > > I don't know. Perhaps the code is fine, I did not try to compile LLVM > with all that compilers > >
2020 Oct 02
2
[EXTERNAL] Re: preferred way to return expected values
On Fri, Oct 2, 2020 at 1:48 AM George Rimar <grimar at accesssoftek.com> wrote: > Thanks, David! > > > Few minor additions to the topic: > > > > I'm not sure which MSVC version on godbolt would be "MSVC 2017" that > the LLVM docs refer to > > > I've found that the minimal available version of MSVC on > godbolt is "WINE MSVC 2015:
2020 Sep 28
2
preferred way to return expected values
Many thanks for the reply, right, this is what the discussion is about. On Mon, Sep 28, 2020 at 10:57 AM David Blaikie <dblaikie at gmail.com> wrote: > To clarify, this is a discussion around whether given some move-only type > X, implicitly convertible to Y and the code "Y func() { X x; return x; }" > is that valid in LLVM? (and, as a corollary, if the type isn't
2020 Oct 01
2
[EXTERNAL] Re: preferred way to return expected values
On Thu, Oct 1, 2020 at 2:08 AM George Rimar <grimar at accesssoftek.com> wrote: > FWIW, I've performed an experiment with the code below at godbolt. > (used -O2, https://godbolt.org/z/nY95nh) > > ``` > #include <vector> > #include "llvm/Support/Error.h" > > llvm::Expected<std::vector<int>> foo() { > std::vector<int> V; >
2019 May 10
2
contributing llvm-lipo
Hi Jake, many thanks, yea, I have very similar feelings / thoughts. After some thinking it seems to me that this discussion/problem which I have brought up is, in fact, more relevant to the tools which really need a robust mutable model of an object file (like objcopy, strip, install_name_tool, etc), but the particular case of "lipo" might be simpler, I need to double check that / will
2018 Oct 01
5
Extending llvm-objcopy to support Mach-O
Hey everyone! Objcopy is a powerful tool that allows one to modify object files in various manners, for example, modify symbols / symbol tables or copy / remove particular parts of a binary. It also serves as a basis for the strip tool. Currently, llvm-objcopy only supports ELF files while binutils' objcopy can handle Mach-O files as well. Besides extending the existing tool to support Mach-O
2020 Aug 21
2
RFC: Contributing bitcode_strip
*bitcode_strip* is a utility which is used to manipulate (leave / remove) bitcode segments in a Mach-O file. It is a part of Apple’s cctools and it is also distributed with Xcode. The man page of the tool is available here https://www.manpagez.com/man/1/bitcode_strip/. The functionality of *bitcode_strip* naturally maps onto llvm-objcopy’s model and requires only minimal additions to it.
2019 May 09
2
contributing llvm-lipo
Hey everyone! In October/November 2018 I started the implementation of llvm-objcopy for MachO with the long-term plan to build some popular binary-level tools on top of it. That effort stopped at the stage where some boilerplate code for reading/writing MachO files was reviewed & committed to LLVM/tools/llvm-objcopy. Later I started working on llvm-lipo (a drop-in replacing for the tool
2020 Sep 26
2
preferred way to return expected values
Hello everyone! It looks like in the LLVM codebase (including subprojects) there are some inconsistencies in how values are returned from functions with the following (or similar) signature: Expected<std::vector<int>> createVector() { std::vector<int> V; ... } It would be interesting to find out your opinion on this. After some investigation I have found
2019 Oct 14
2
contributing llvm-install-name-tool
Hey Michael, I completely agree that setting the rpath properly the first time around is much preferred. But, changes to the binary, particularly during development is much quicker. Prebuilt libraries which are being repackaged is one use case that is missed. In the past, I’ve even used it to repair am incorrectly built library which was missing the library name. There are a few different
2007 Oct 23
6
what''s the maximum of the runinterval
hi,all I want the puppetd run in daemon only run by the puppetrun trigger, not schedule run . so how can do this ? what''s the maximum of the runinterval ? I want change this option to do this. Please help me . -- Huang Mingyou
2000 Jan 13
3
/dev/urandom
on solaris7/sparc this device doesn't exists i can use EGD but he very big (perl script!) - in memory it take about 4mb! apache use the same! why ssh1.27 doesn't requre /dev/urandom on solaris? what alternatives exists?