similar to: Error Message while Package creation

Displaying 20 results from an estimated 1000 matches similar to: "Error Message while Package creation"

2017 Nov 21
1
[PATCH v2] builder: planner: Don't add some impossible transitions.
Previous patch contained a typo. Changed output_format -> output_filename. Rich.
2006 Jun 26
4
Oh oh. Micro$oft just noticed VoIP
It will be interesting to see how many standards get broken, and how many proprietary hooks get thrown into the pot. The bean counters smell some money, and their OS franchise is waning: http://www.nytimes.com/2006/06/26/technology/26soft.html -- This message has been scanned for viruses and dangerous content by MailScanner, and is believed to be clean.
2019 Oct 03
2
[PATCH] Avoiding Dereferencing of NULL pointer
Signed-off-by: krishnaiah bommu <krishnaiah.bommu at intel.com> --- moduli.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/moduli.c b/moduli.c index 578fc48..c1fa484 100644 --- a/moduli.c +++ b/moduli.c @@ -153,12 +153,14 @@ static int qfileout(FILE * ofile, u_int32_t otype, u_int32_t otests, u_int32_t otries, u_int32_t osize, u_int32_t ogenerator, BIGNUM *
2013 Oct 23
1
warnign
Hi, I recently changed my version of asterisk to 11.XX, and I see a waning with h323, with version 1.8 did not have these warning I have connected one avaya ip office 500 h323 with asterisk and the 1.8 version did not have these messages Oct 23 17:20:35] WARNING[7593][C-000000aa]: chan_ooh323.c:1413 ooh323_indicate: Don't know how to indicate condition 33 on ooh323c_60 [Oct 23 17:20:35]
2013 Oct 07
1
Why read.table replacing space with "." in the header
Hi, Use `check.names=FALSE` head(dd,2) #? Phylo.Tree Genesis.Tree #1????????? 1??????????? 2 #2????????? 2??????????? 3 ?dd <- data.frame("Phylo Tree"= c(1:10), "Genesis Tree"= c(2:11),check.names=FALSE) head(dd,2) #? Phylo Tree Genesis Tree #1????????? 1??????????? 2 #2????????? 2??????????? 3 write.csv(dd,"Crish.csv",row.names=FALSE) ?yy<-
2005 Sep 19
1
new samba install
we have been trying to move our samba box to a faster server, with better NICs, faster processor and more memory. both the old and new server are using samba 3.0.14A both on debian based distributions (old was sarge, new is breezy) here are the steps we followed: install samba from the apt archives. confermed that they were the same version. copied smb.conf from old server to new server. changed
2007 Jan 13
1
Batch Processing for SpeexEnc and SpeexDec
Hello, I am a master's student using Speex for my thesis research. My question is this: I am running speex from a command line in Unix and I want to encode/decode numerous files at once. How can this be done since the speexenc requires [options] input_filename.wav output_filename.spx and the reverse extensions for the decoder. Sorry I am much more of a hardware (read: EE) then a CS guy. I
2017 Nov 21
0
[PATCH] builder: planner: Don't add some impossible transitions.
Certain transitions where the input and output filename are the same are impossible, eg copying a file to itself. Don't add these. Reported-by: David Kaylor. --- builder/builder.ml | 28 ++++++++++++++++------------ 1 file changed, 16 insertions(+), 12 deletions(-) diff --git a/builder/builder.ml b/builder/builder.ml index a4c830e89..843106a86 100644 --- a/builder/builder.ml +++
2019 Sep 30
5
[Bug 3074] New: memory leak reported in static code analysis
https://bugzilla.mindrot.org/show_bug.cgi?id=3074 Bug ID: 3074 Summary: memory leak reported in static code analysis Product: Portable OpenSSH Version: 8.0p1 Hardware: Other OS: Windows 10 Status: NEW Severity: minor Priority: P5 Component: sftp Assignee: unassigned-bugs at
2017 Oct 03
0
[PATCH v2 2/2] builder: Choose better weights in the planner.
--- builder/builder.ml | 84 +++++++++++++++++++++++++++++++++---------- common/mlutils/unix_utils-c.c | 27 ++++++++++++++ common/mlutils/unix_utils.ml | 3 ++ common/mlutils/unix_utils.mli | 4 +++ m4/guestfs_libraries.m4 | 1 + 5 files changed, 100 insertions(+), 19 deletions(-) diff --git a/builder/builder.ml b/builder/builder.ml index d8e625f68..fd19aa7d9 100644 ---
2015 Nov 11
2
[PATCH 1/2] dib: Make the interface between cmdline.ml and dib.ml explicit.
--- dib/Makefile.am | 5 ++- dib/cmdline.ml | 49 +++++++++++++++++++++--- dib/cmdline.mli | 51 +++++++++++++++++++++++++ dib/dib.ml | 113 ++++++++++++++++++++++++++++++-------------------------- 4 files changed, 158 insertions(+), 60 deletions(-) create mode 100644 dib/cmdline.mli diff --git a/dib/Makefile.am b/dib/Makefile.am index 0786d64..ad1fd6a 100644 --- a/dib/Makefile.am +++
2004 Dec 09
1
A waning console error
Hello, I am getting this kind of Warning in the Asterisk console, but i don't know why. WARNING[8200]: chan_sip.c:681 retrans_pkt: Maximum retries exceeded on call 46925e274af3b022219246016414b107@192.168.1.101 for seqno 102 (Non-critical Request) Could you give some clue to solve this problem? Thanks in advice. Ismael.
2017 Oct 04
2
[PATCH v3 0/2] builder: Choose better weights in the planner.
v2 -> v3: - Drop gnulib fallback.
2017 Oct 02
3
[PATCH 0/2] builder: Choose better weights in the planner.
It started out as "this'll be just a simple fix ..." and turned into something a bit over-engineered in the end. Here it is anyway. Rich.
2017 Oct 03
4
[PATCH v2 0/2] builder: Choose better weights in the planner.
v1 -> v2: - Removed the f_type field from StatVFS.statvfs structure. - New function StatVFS.filesystem_is_remote, written in C. [Thinking about it, this should probably be called ?is_network_filesystem?, but I can change that before pushing]. - Use statvfs instead of fstatvfs, and statfs instead of fstatfs. - Rejigged the comments in builder/builder.ml to make them simpler
2015 Nov 11
0
[PATCH] builder: Make the interface between cmdline.ml and builder.ml explicit.
--- builder/Makefile.am | 1 + builder/builder.ml | 69 +++++++++++++++++++++++++---------------------------- builder/cmdline.ml | 37 ++++++++++++++++++++++++---- builder/cmdline.mli | 44 ++++++++++++++++++++++++++++++++++ 4 files changed, 110 insertions(+), 41 deletions(-) create mode 100644 builder/cmdline.mli diff --git a/builder/Makefile.am b/builder/Makefile.am index 6742822..993cc7b
2017 Feb 02
7
[PATCH 0/6] dib: various improvements
Hi, this series improves virt-dib, adding some upstream changes, and refactoring the handling of output formats. Thanks, Pino Toscano (6): dib: clear up "already provided" message dib: add --checksum dib: pass custom mkfs options after the filesystem type dib: refactor output formats handling dib: clarify "output:" lines in --machine-readable documentation dib:
2010 Aug 09
1
network_biopair_interop
Hi, since I use TLS I'm getting the following waning when I send mail to somebody in the internet:| "warning: network_biopair_interop: error reading 5 bytes from the network: Connection reset by peer|" ... Mail seems to be delivered & sent as usual. I found a post about it: http://de.postfix.org/pipermail/postfix-users/2009-March/000891.html but it didn't help to
2007 Mar 24
0
prow blythe
Our Last pick Doubled in 48 hours Check this company out CRITICAL Care N E W SYM-C-C-T-I Stron g B reccomended at 20 Cents This is projected to go to $1 This is a Real Business not a fly by night Get in Monday, Don't Regret later!! two free throws made it 109-73 in the waning seconds of the third quarter. in a Freedom of Information Act request. Amaker had to be employed as
2008 May 23
2
New York Asterisk Users
This is an email to all New York based Asterisk users. For some time it's been bugging me that we don't have a local contact point/user community. If you are involved in Asterisk and in NY/NJ shoot me an email, I'm going to try and revitalize either meetup.com or some other shared environment for Asterisk users in NY. Shoot me an email and once I get an idea of how many