search for: loosers

Displaying 20 results from an estimated 94 matches for "loosers".

Did you mean: looser
2012 Mar 13
2
[Bug 1990] New: sftp segfaults when tab-completing a directory which contains umlauts
https://bugzilla.mindrot.org/show_bug.cgi?id=1990 Bug #: 1990 Summary: sftp segfaults when tab-completing a directory which contains umlauts Classification: Unclassified Product: Portable OpenSSH Version: 5.9p1 Platform: amd64 OS/Version: Linux Status: NEW Severity: normal
2016 Sep 29
5
[cfe-dev] a proposed script to help with test-suite programs that output _lots_ of FP numbers
----- Original Message ----- > From: "Sebastian Pop via cfe-dev" <cfe-dev at lists.llvm.org> > To: "Renato Golin" <renato.golin at linaro.org> > Cc: "llvm-dev" <llvm-dev at lists.llvm.org>, "Sebastian Paul Pop" <s.pop at samsung.com>, "Abe Skolnik" > <a.skolnik at samsung.com>, "cfe-dev"
2006 Jun 05
6
ISDN BRI (I.430) over ethernet
Does anyone know of a hardware adapter that can take ISDN BRI frames (I.430) and encapsulate them in Ethernet (any form, but TDMoE would be really cool), in much the same way that the redfone does for PRI? (yes I have asked this before in looser terms, but it was a while ago :) Would anyone find such a device useful? Thanks James
2016 Oct 08
2
unable to compile llvm with gcc 4.7.4
Hi, Encounter a compilation issue related to c++. Software versions: - gcc 4.7.4 - llvm git commit 98a1ca117e6743dd7f2d505443a96f591d083eab Build log: Scanning dependencies of target LLVMLTO [ 53%] Building CXX object lib/LTO/CMakeFiles/LLVMLTO.dir/Caching.cpp.o /tmp/pkgs/llvm/lib/LTO/Caching.cpp: In lambda function: /tmp/pkgs/llvm/lib/LTO/Caching.cpp:74:7: error: looser throw specifier for
2019 May 20
2
Re: [nbdkit PATCH 1/2] plugins: Add .thread_model callback
On Mon, May 20, 2019 at 07:30:31AM -0500, Eric Blake wrote: > +=head2 C<.thread_model> > + > + int thread_model (void) > + > +This optional callback is called after all the configuration has been > +passed to the plugin. It can be used to force a stricter thread model > +based on configuration, compared to C<THREAD_MODEL>. See L</THREADS> > +below for
2016 Oct 17
2
Is GCC 4.7 still supported?
Hello, http://llvm.org/docs/GettingStarted.html#software lists "GCC >=4.7.0" among requirements for building LLVM. However, my attempt of building LLVM+Clang with gcc 4.7.3 has failed with a multitude of errors, such as: lib/LTO/Caching.cpp:74:7: error: looser throw specifier for 'virtual llvm::lto::localCache(std::string, llvm::lto::AddFileFn)::<lambda(unsigned int,
2019 May 20
0
Re: [nbdkit PATCH 1/2] plugins: Add .thread_model callback
On 5/20/19 8:36 AM, Richard W.M. Jones wrote: > On Mon, May 20, 2019 at 07:30:31AM -0500, Eric Blake wrote: >> +=head2 C<.thread_model> >> + >> + int thread_model (void) >> + >> +This optional callback is called after all the configuration has been >> +passed to the plugin. It can be used to force a stricter thread model >> +based on
2005 Feb 24
3
Mailing list policy question
Hi all, While I was gone I thought a bit about the flame war a few weeks ago and some of the very unpleasant private emails some people decided to send me as a result, most of them demanding that I solve *their* particular problem for them. I wanted to get people's feel for what the policy should be for this mailing list. I have so far tried to limit it to the syslinux loader family
2019 Mar 06
2
Re: [PATCH nbdkit] Add ssh plugin using libssh.
On 3/6/19 9:40 AM, Richard W.M. Jones wrote: > --- > plugins/curl/nbdkit-curl-plugin.pod | 22 +- > plugins/ssh/nbdkit-ssh-plugin.pod | 150 ++++++++ > configure.ac | 17 + > plugins/ssh/ssh.c | 521 ++++++++++++++++++++++++++++ > README | 4 + > TODO | 10 +- >
2001 Aug 20
2
tytso's readdir speedup patch - adoptable?
Hello, recently Theodory Tso posted a patch for the ext2fs driver, which improves speed of find and similar programs. Background: the application access all entries in the directory in the order they are stored on the disk. The current ext2 (and apparently Ext3) run a lookup function for each readdir call, starting with the first node! Theodore stores a refference to the node which was accessed
2013 Aug 07
3
Documentation error: wrong permissions given in FAQ
Hi, I discovered yesterday that the instructions given at http://www.openssh.org/faq.html#3.14 regarding the correct permissions for the authorized_keys file mistakenly recommend chmod'ing the file to 600 when it should be 644. The requirement for public key authentication to work is in fact that ~/.ssh/authorized_keys is readable (but not writable) by group and other, not just owner. Someone
2011 Dec 03
0
[LLVMdev] RFC: Machine Instruction Bundle
Hi, I'm glad to see some action with regard to static instruction scheduling and VLIW support in LLVM. I have some questions and remarks which might not be relevant as I'm not totally familiar with the current code generation framework of LLVM nor your plan. On 12/02/2011 10:40 PM, Evan Cheng wrote: > 2. It must be flexible enough to represent more than VLIW bundles. It should be >
2019 Mar 11
2
How to insert a dummy NIC
Hi, I have to host (with KVM) an appliance which does not use its second and third NIC. They have to be present in the guest, but they'd better stay totally disconnected from anything in the host. "Second" and "third" apparently means bus order. Let's consider virtio devices only. I think the best technical solution is adding -device virtio-net-pci,addr=0x3 and
2008 Nov 13
6
.with(:anything) issue
Hi, I''m using a expectation like this : repository.should_receive(:add_gem).with("test.txt", :anything) When I run my spec, it fails with the following message : Spec::Mocks::MockExpectationError in ''MiniGemServer should add a new gem to the repository after it has been uploaded'' #<MiniGemServer::Repository:0xb11164> expected :add_gem with
2013 Aug 28
6
Request to relicense hash gnulib module to LGPLv2+
libguestfs (an LGPLv2+ library) uses the 'hash' module, which turns out to be "GPL". Actually this happened because we started to use it in a separate GPL'd utility program, but later on included this functionality in the core library, copying the same code from the utility but not checking the license of 'hash'. We'd therefore like to request that
2019 May 20
3
[nbdkit PATCH 0/2] More on .thread_model
Rich pointed out that making thread_model dynamic even for plugins makes some sense, so here is the code for doing it for 'sh'. I'm less confident on how to do it for OCaml and Rust (not to mention that those allow the plugin to already compile in their model, rather than the language binding glue forcing a model). The other languages (lua, perl, python, ruby) still need to be
2009 Feb 16
0
[LLVMdev] LLVM C bindings
Corrado Zoccolo wrote: > Unfortunately, it seems that llvm-c interface lacks major > functionalities, e.g. getting a pointer to a jit-ted function. > It is easy to write a small c++ wrapper to expose the functionality > that one wants (llvm-py does it for the many optimization passes not > available through c binding), but I wonder if it is possible to have a > simpler &
2019 Mar 06
1
Re: [PATCH nbdkit] Add ssh plugin using libssh.
On 3/6/19 10:05 AM, Richard W.M. Jones wrote: > On Wed, Mar 06, 2019 at 09:59:33AM -0600, Eric Blake wrote: >> On 3/6/19 9:40 AM, Richard W.M. Jones wrote: >>> +Parts derived from Pino Toscano’s qemu libssh driver. >> >> Is that a compatible license? Or I guess another way of wording it - >> what is the license of libssh itself? The resulting ssh plugin may
2005 May 12
1
FW: failure notice
Can we get this guy booted off the list somehow? > -----Original Message----- > From: MAILER-DAEMON@smtp.register.it [mailto:MAILER- > DAEMON@smtp.register.it] > Sent: Thursday, 12 May 2005 8:36 AM > To: Dean Collins > Subject: failure notice > > Hi. This is the qmail-send program at smtp.register.it. > I'm afraid I wasn't able to deliver your message to the
2003 Nov 18
4
multiple domains
G'day, Is it possible to have a windows XP-Pro Computer to be a member of more than 1 domain at a time. So a user could go to log on and get to local computer or a couple of domains rather than a single domain? I cann't find anything in the docs. WHen I tried it the second domain replaced the first :-( Just an idea I had to make life a bit easier but looks like a looser. If anybody